1 /*
2 * Copyright 2004-2026 the Pacemaker project contributors
3 *
4 * The version control history for this file may have further details.
5 *
6 * This source code is licensed under the GNU General Public License version 2
7 * or later (GPLv2+) WITHOUT ANY WARRANTY.
8 */
9
10 #include <crm_internal.h>
11
12 #include <crm_resource.h>
13 #include <crm/lrmd_internal.h>
14 #include <crm/common/output.h>
15 #include <crm/fencing/internal.h> // stonith__agent_exists()
16 #include <pacemaker-internal.h>
17
18 #include <sys/param.h>
19 #include <stdbool.h> // bool, true, false
20 #include <stdint.h> // uint32_t
21 #include <stdio.h>
22 #include <sys/types.h>
23 #include <unistd.h>
24 #include <stdlib.h>
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <libgen.h>
28 #include <time.h>
29
30 #include <libxml/xpath.h> // xmlXPathObject, etc.
31
32 #include <crm/crm.h>
33 #include <crm/stonith-ng.h>
34 #include <crm/common/agents.h> // PCMK_RESOURCE_CLASS_*
35 #include <crm/common/ipc_controld.h>
36 #include <crm/cib/internal.h>
37
38 #define SUMMARY "crm_resource - perform tasks related to Pacemaker cluster resources"
39
40 enum rsc_command {
41 cmd_ban,
42 cmd_cleanup,
43 cmd_clear,
44 cmd_colocations,
45 cmd_cts,
46 cmd_delete,
47 cmd_delete_param,
48 cmd_digests,
49 cmd_execute_agent,
50 cmd_fail,
51 cmd_get_param,
52 cmd_list_active_ops,
53 cmd_list_agents,
54 cmd_list_all_ops,
55 cmd_list_alternatives,
56 cmd_list_instances,
57 cmd_list_options,
58 cmd_list_providers,
59 cmd_list_resources,
60 cmd_list_standards,
61 cmd_locate,
62 cmd_metadata,
63 cmd_move,
64 cmd_query_xml,
65 cmd_query_xml_raw,
66 cmd_refresh,
67 cmd_restart,
68 cmd_set_param,
69 cmd_wait,
70 cmd_why,
71
72 // Update this when adding new commands
73 cmd_max = cmd_why,
74 };
75
76 /*!
77 * \internal
78 * \brief Handler function for a crm_resource command
79 */
80 typedef crm_exit_t (*crm_resource_fn_t)(pcmk_resource_t *, pcmk_node_t *,
81 cib_t *, pcmk_scheduler_t *,
82 pcmk_ipc_api_t *, xmlNode *);
83
84 /*!
85 * \internal
86 * \brief Flags to define attributes of a given command
87 *
88 * These attributes may include required command-line options, how to look up a
89 * resource in the scheduler data, whether the command supports clone instances,
90 * etc.
91 */
92 enum crm_rsc_flags {
93 //! Use \c pcmk_rsc_match_anon_basename when looking up a resource
94 crm_rsc_find_match_anon_basename = (UINT32_C(1) << 0),
95
96 //! Use \c pcmk_rsc_match_basename when looking up a resource
97 crm_rsc_find_match_basename = (UINT32_C(1) << 1),
98
99 //! Use \c pcmk_rsc_match_history when looking up a resource
100 crm_rsc_find_match_history = (UINT32_C(1) << 2),
101
102 //! Fail if \c --resource refers to a particular clone instance
103 crm_rsc_rejects_clone_instance = (UINT32_C(1) << 3),
104
105 //! Require CIB connection unless resource is specified by agent
106 crm_rsc_requires_cib = (UINT32_C(1) << 4),
107
108 //! Require controller connection
109 crm_rsc_requires_controller = (UINT32_C(1) << 5),
110
111 //! Require \c --node argument
112 crm_rsc_requires_node = (UINT32_C(1) << 6),
113
114 //! Require \c --resource argument
115 crm_rsc_requires_resource = (UINT32_C(1) << 7),
116
117 //! Require scheduler data unless resource is specified by agent
118 crm_rsc_requires_scheduler = (UINT32_C(1) << 8),
119 };
120
121 /*!
122 * \internal
123 * \brief Handler function and flags for a given command
124 */
125 typedef struct {
126 crm_resource_fn_t fn; //!< Command handler function
127 uint32_t flags; //!< Group of <tt>enum crm_rsc_flags</tt>
128 } crm_resource_cmd_info_t;
129
130 struct {
131 enum rsc_command rsc_cmd; // crm_resource command to perform
132
133 // Command-line option values
134 gchar *rsc_id; // Value of --resource
135 gchar *rsc_type; // Value of --resource-type
136 gboolean all; // --all was given
137 gboolean force; // --force was given
138 gboolean clear_expired; // --expired was given
139 gboolean recursive; // --recursive was given
140 gboolean promoted_role_only; // --promoted was given
141 gchar *host_uname; // Value of --node
142 gchar *interval_spec; // Value of --interval
143 gchar *move_lifetime; // Value of --lifetime
144 gchar *operation; // Value of --operation
145 enum pcmk__opt_flags opt_list; // Parsed from --list-options
146 const char *attr_set_type; // Instance, meta, utilization, or element attribute
147 gchar *prop_id; // --nvpair (attribute XML ID)
148 char *prop_name; // Attribute name
149 gchar *prop_set; // --set-name (attribute block XML ID)
150 gchar *prop_value; // --parameter-value (attribute value)
151 guint timeout_ms; // Parsed from --timeout value
152 char *agent_spec; // Standard and/or provider and/or agent
153 int check_level; // Optional value of --validate or --force-check
154
155 // Resource configuration specified via command-line arguments
156 gchar *agent; // Value of --agent
157 gchar *class; // Value of --class
158 gchar *provider; // Value of --provider
159 GHashTable *cmdline_params; // Resource parameters specified
160
161 // Positional command-line arguments
162 gchar **remainder; // Positional arguments as given
163 GHashTable *override_params; // Resource parameter values that override config
164 } options = {
165 .attr_set_type = PCMK_XE_INSTANCE_ATTRIBUTES,
166 .check_level = -1,
167 .rsc_cmd = cmd_list_resources, // List all resources if no command given
168 };
169
170 static crm_exit_t exit_code = CRM_EX_OK;
171 static pcmk__output_t *out = NULL;
172 static pcmk__common_args_t *args = NULL;
173
174 // Things that should be cleaned up on exit
175 static GError *error = NULL;
176 static GMainLoop *mainloop = NULL;
177
178 #define MESSAGE_TIMEOUT_S 60
179
180 #define INDENT " "
181
182 static pcmk__supported_format_t formats[] = {
183 PCMK__SUPPORTED_FORMAT_NONE,
184 PCMK__SUPPORTED_FORMAT_TEXT,
185 PCMK__SUPPORTED_FORMAT_XML,
186 { NULL, NULL, NULL }
187 };
188
189 static void
190 quit_main_loop(crm_exit_t ec)
191 {
192 exit_code = ec;
193 if (mainloop != NULL) {
194 GMainLoop *mloop = mainloop;
195
196 mainloop = NULL; // Don't re-enter this block
197 pcmk_quit_main_loop(mloop, 10);
198 g_main_loop_unref(mloop);
199 }
200 }
201
202 static gboolean
203 resource_ipc_timeout(gpointer data)
204 {
205 // Start with newline because "Waiting for ..." message doesn't have one
206 if (error != NULL) {
207 g_clear_error(&error);
208 }
209
210 g_set_error(&error, PCMK__EXITC_ERROR, CRM_EX_TIMEOUT,
211 _("Aborting because no messages received in %d seconds"), MESSAGE_TIMEOUT_S);
212
213 quit_main_loop(CRM_EX_TIMEOUT);
214 return FALSE;
215 }
216
217 static void
218 controller_event_callback(pcmk_ipc_api_t *api, enum pcmk_ipc_event event_type,
219 crm_exit_t status, void *event_data, void *user_data)
220 {
221 crm_exit_t *ec = user_data;
222
223 pcmk__assert(ec != NULL);
224
225 switch (event_type) {
226 case pcmk_ipc_event_disconnect:
227 if (exit_code == CRM_EX_DISCONNECT) { // Unexpected
228 pcmk__info("Connection to controller was terminated");
229 }
230
231 *ec = exit_code;
232 quit_main_loop(*ec);
233 break;
234
235 case pcmk_ipc_event_reply:
236 if (status != CRM_EX_OK) {
237 out->err(out, "Error: bad reply from controller: %s",
238 crm_exit_str(status));
239 pcmk_disconnect_ipc(api);
240
241 *ec = status;
242 quit_main_loop(*ec);
243
244 } else {
245 if ((pcmk_controld_api_replies_expected(api) == 0)
246 && (mainloop != NULL)
247 && g_main_loop_is_running(mainloop)) {
248
249 out->info(out, "... got reply (done)");
250 pcmk__debug("Got all the replies we expected");
251 pcmk_disconnect_ipc(api);
252
253 *ec = CRM_EX_OK;
254 quit_main_loop(*ec);
255
256 } else {
257 out->info(out, "... got reply");
258 }
259 }
260 break;
261
262 default:
263 break;
264 }
265 }
266
267 static void
268 start_mainloop(pcmk_ipc_api_t *capi)
269 {
270 // @TODO See if we can avoid setting exit_code as a global variable
271 unsigned int count = pcmk_controld_api_replies_expected(capi);
272
273 if (count > 0) {
274 out->info(out, "Waiting for %u %s from the controller",
275 count, pcmk__plural_alt(count, "reply", "replies"));
276 exit_code = CRM_EX_DISCONNECT; // For unexpected disconnects
277 mainloop = g_main_loop_new(NULL, FALSE);
278 pcmk__create_timer(MESSAGE_TIMEOUT_S * 1000, resource_ipc_timeout, NULL);
279 g_main_loop_run(mainloop);
280 }
281 }
282
283 static GList *
284 build_constraint_list(xmlNode *root)
285 {
286 GList *retval = NULL;
287 xmlNode *cib_constraints = NULL;
288 xmlXPathObject *xpathObj = NULL;
289 int ndx = 0;
290 int num_results = 0;
291
292 cib_constraints = pcmk_find_cib_element(root, PCMK_XE_CONSTRAINTS);
293 xpathObj = pcmk__xpath_search(cib_constraints->doc,
294 "//" PCMK_XE_RSC_LOCATION);
295 num_results = pcmk__xpath_num_results(xpathObj);
296
297 for (ndx = 0; ndx < num_results; ndx++) {
298 xmlNode *match = pcmk__xpath_result(xpathObj, ndx);
299
300 if (match != NULL) {
301 // Insert a copy in case root is freed
302 retval = g_list_insert_sorted(retval,
303 pcmk__str_copy(pcmk__xe_id(match)),
304 (GCompareFunc) g_strcmp0);
305 }
306 }
307
308 xmlXPathFreeObject(xpathObj);
309 return retval;
310 }
311
312 static gboolean
313 validate_opt_list(const gchar *optarg)
314 {
315 if (pcmk__str_eq(optarg, PCMK_VALUE_FENCING, pcmk__str_none)) {
316 options.opt_list = pcmk__opt_fencing;
317
318 } else if (pcmk__str_eq(optarg, PCMK__VALUE_PRIMITIVE, pcmk__str_none)) {
319 options.opt_list = pcmk__opt_primitive;
320
321 } else {
322 return FALSE;
323 }
324
325 return TRUE;
326 }
327
328 // GOptionArgFunc callback functions
329
330 static gboolean
331 attr_set_type_cb(const gchar *option_name, const gchar *optarg, gpointer data,
332 GError **error) {
333 if (pcmk__str_any_of(option_name, "-m", "--meta", NULL)) {
334 options.attr_set_type = PCMK_XE_META_ATTRIBUTES;
335 } else if (pcmk__str_any_of(option_name, "-z", "--utilization", NULL)) {
336 options.attr_set_type = PCMK_XE_UTILIZATION;
337 } else if (pcmk__str_eq(option_name, "--element", pcmk__str_none)) {
338 options.attr_set_type = ATTR_SET_ELEMENT;
339 }
340 return TRUE;
341 }
342
343 /*!
344 * \internal
345 * \brief Process options that set the command
346 *
347 * Nothing else should set \c options.rsc_cmd.
348 *
349 * \param[in] option_name Name of the option being parsed
350 * \param[in] optarg Value to be parsed
351 * \param[in] data Ignored
352 * \param[out] error Where to store recoverable error, if any
353 *
354 * \return \c TRUE if the option was successfully parsed, or \c FALSE if an
355 * error occurred, in which case \p *error is set
356 */
357 static gboolean
358 command_cb(const gchar *option_name, const gchar *optarg, gpointer data,
359 GError **error)
360 {
361 // Sorted by enum rsc_command name
362 if (pcmk__str_any_of(option_name, "-B", "--ban", NULL)) {
363 options.rsc_cmd = cmd_ban;
364
365 } else if (pcmk__str_any_of(option_name, "-C", "--cleanup", NULL)) {
366 options.rsc_cmd = cmd_cleanup;
367
368 } else if (pcmk__str_any_of(option_name, "-U", "--clear", NULL)) {
369 options.rsc_cmd = cmd_clear;
370
371 } else if (pcmk__str_any_of(option_name, "-a", "--constraints", NULL)) {
372 options.rsc_cmd = cmd_colocations;
373
374 } else if (pcmk__str_any_of(option_name, "-A", "--stack", NULL)) {
375 options.rsc_cmd = cmd_colocations;
376 options.recursive = TRUE;
377
378 } else if (pcmk__str_any_of(option_name, "-c", "--list-cts", NULL)) {
379 options.rsc_cmd = cmd_cts;
380
381 } else if (pcmk__str_any_of(option_name, "-D", "--delete", NULL)) {
382 options.rsc_cmd = cmd_delete;
383
384 } else if (pcmk__str_any_of(option_name, "-d", "--delete-parameter",
385 NULL)) {
386 options.rsc_cmd = cmd_delete_param;
387 pcmk__str_update(&options.prop_name, optarg);
388
389 } else if (pcmk__str_eq(option_name, "--digests", pcmk__str_none)) {
390 options.rsc_cmd = cmd_digests;
391
392 if (options.override_params == NULL) {
393 options.override_params = pcmk__strkey_table(g_free, g_free);
394 }
395
396 } else if (pcmk__str_any_of(option_name,
397 "--force-demote", "--force-promote",
398 "--force-start", "--force-stop",
399 "--force-check", "--validate", NULL)) {
400 options.rsc_cmd = cmd_execute_agent;
401
402 g_free(options.operation);
403 options.operation = g_strdup(option_name + 2); // skip "--"
404
405 if (options.override_params == NULL) {
406 options.override_params = pcmk__strkey_table(g_free, g_free);
407 }
408
409 if (optarg != NULL) {
410 if (pcmk__scan_min_int(optarg, &options.check_level,
411 0) != pcmk_rc_ok) {
412 g_set_error(error, G_OPTION_ERROR, CRM_EX_INVALID_PARAM,
413 _("Invalid check level setting: %s"), optarg);
414 return FALSE;
415 }
416 }
417
418 } else if (pcmk__str_any_of(option_name, "-F", "--fail", NULL)) {
419 options.rsc_cmd = cmd_fail;
420
421 } else if (pcmk__str_any_of(option_name, "-g", "--get-parameter", NULL)) {
422 options.rsc_cmd = cmd_get_param;
423 pcmk__str_update(&options.prop_name, optarg);
424
425 } else if (pcmk__str_any_of(option_name, "-O", "--list-operations", NULL)) {
426 options.rsc_cmd = cmd_list_active_ops;
427
428 } else if (pcmk__str_eq(option_name, "--list-agents", pcmk__str_none)) {
429 options.rsc_cmd = cmd_list_agents;
430 pcmk__str_update(&options.agent_spec, optarg);
431
432 } else if (pcmk__str_any_of(option_name, "-o", "--list-all-operations",
433 NULL)) {
434 options.rsc_cmd = cmd_list_all_ops;
435
436 } else if (pcmk__str_eq(option_name, "--list-ocf-alternatives",
437 pcmk__str_none)) {
438 options.rsc_cmd = cmd_list_alternatives;
439 pcmk__str_update(&options.agent_spec, optarg);
440
441 } else if (pcmk__str_eq(option_name, "--list-options", pcmk__str_none)) {
442 options.rsc_cmd = cmd_list_options;
443 return validate_opt_list(optarg);
444
445 } else if (pcmk__str_any_of(option_name, "-l", "--list-raw", NULL)) {
446 options.rsc_cmd = cmd_list_instances;
447
448 } else if (pcmk__str_eq(option_name, "--list-ocf-providers",
449 pcmk__str_none)) {
450 options.rsc_cmd = cmd_list_providers;
451 pcmk__str_update(&options.agent_spec, optarg);
452
453 } else if (pcmk__str_any_of(option_name, "-L", "--list", NULL)) {
454 options.rsc_cmd = cmd_list_resources;
455
456 } else if (pcmk__str_eq(option_name, "--list-standards", pcmk__str_none)) {
457 options.rsc_cmd = cmd_list_standards;
458
459 } else if (pcmk__str_any_of(option_name, "-W", "--locate", NULL)) {
460 options.rsc_cmd = cmd_locate;
461
462 } else if (pcmk__str_eq(option_name, "--show-metadata", pcmk__str_none)) {
463 options.rsc_cmd = cmd_metadata;
464 pcmk__str_update(&options.agent_spec, optarg);
465
466 } else if (pcmk__str_any_of(option_name, "-M", "--move", NULL)) {
467 options.rsc_cmd = cmd_move;
468
469 } else if (pcmk__str_any_of(option_name, "-q", "--query-xml", NULL)) {
470 options.rsc_cmd = cmd_query_xml;
471
472 } else if (pcmk__str_any_of(option_name, "-w", "--query-xml-raw", NULL)) {
473 options.rsc_cmd = cmd_query_xml_raw;
474
475 } else if (pcmk__str_any_of(option_name, "-R", "--refresh", NULL)) {
476 options.rsc_cmd = cmd_refresh;
477
478 } else if (pcmk__str_eq(option_name, "--restart", pcmk__str_none)) {
479 options.rsc_cmd = cmd_restart;
480
481 } else if (pcmk__str_any_of(option_name, "-p", "--set-parameter", NULL)) {
482 options.rsc_cmd = cmd_set_param;
483 pcmk__str_update(&options.prop_name, optarg);
484
485 } else if (pcmk__str_eq(option_name, "--wait", pcmk__str_none)) {
486 options.rsc_cmd = cmd_wait;
487
488 } else if (pcmk__str_any_of(option_name, "-Y", "--why", NULL)) {
489 options.rsc_cmd = cmd_why;
490 }
491
492 return TRUE;
493 }
494
495 static gboolean
496 option_cb(const gchar *option_name, const gchar *optarg, gpointer data,
497 GError **error)
498 {
499 gchar *name = NULL;
500 gchar *value = NULL;
501
502 if (pcmk__scan_nvpair(optarg, &name, &value) != pcmk_rc_ok) {
503 return FALSE;
504 }
505
506 /* services__create_resource_action() ultimately takes ownership of
507 * options.cmdline_params. It's not worth trying to ensure that the entire
508 * call path uses (gchar *) strings and g_free(). So create the table for
509 * (char *) strings, and duplicate the (gchar *) strings when inserting.
510 */
511 if (options.cmdline_params == NULL) {
512 options.cmdline_params = pcmk__strkey_table(free, free);
513 }
514 pcmk__insert_dup(options.cmdline_params, name, value);
515 g_free(name);
516 g_free(value);
517 return TRUE;
518 }
519
520 static gboolean
521 timeout_cb(const gchar *option_name, const gchar *optarg, gpointer data,
522 GError **error)
523 {
524 long long timeout_ms = 0;
525
526 if ((pcmk__parse_ms(optarg, &timeout_ms) != pcmk_rc_ok)
527 || (timeout_ms < 0)) {
528 return FALSE;
529 }
530 options.timeout_ms = (guint) QB_MIN(timeout_ms, UINT_MAX);
531 return TRUE;
532 }
533
534 // Command line option specification
535
536 /* short option letters still available: eEJkKXyYZ */
537
538 static GOptionEntry query_entries[] = {
539 { "list", 'L', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
540 "List all cluster resources with status",
541 NULL },
542 { "list-raw", 'l', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
543 "List IDs of all instantiated resources (individual members\n"
544 INDENT "rather than groups etc.)",
545 NULL },
546 { "list-cts", 'c', G_OPTION_FLAG_HIDDEN|G_OPTION_FLAG_NO_ARG,
547 G_OPTION_ARG_CALLBACK, command_cb,
548 NULL,
549 NULL },
550 { "list-operations", 'O', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
551 command_cb,
552 "List active resource operations, optionally filtered by\n"
553 INDENT "--resource and/or --node",
554 NULL },
555 { "list-all-operations", 'o', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
556 command_cb,
557 "List all resource operations, optionally filtered by\n"
558 INDENT "--resource and/or --node",
559 NULL },
560 { "list-options", 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_CALLBACK, command_cb,
561 "List all available options of the given type.\n"
562 INDENT "Allowed values:\n"
563 INDENT PCMK__VALUE_PRIMITIVE " (primitive resource meta-attributes),\n"
564 INDENT PCMK_VALUE_FENCING " (parameters common to all fencing resources)",
565 "TYPE" },
566 { "list-standards", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
567 command_cb,
568 "List supported standards",
569 NULL },
570 { "list-ocf-providers", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
571 command_cb,
572 "List all available OCF providers",
573 NULL },
574 { "list-agents", 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_CALLBACK,
575 command_cb,
576 "List all agents available for the named standard and/or provider",
577 "STD:PROV" },
578 { "list-ocf-alternatives", 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_CALLBACK,
579 command_cb,
580 "List all available providers for the named OCF agent",
581 "AGENT" },
582 { "show-metadata", 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_CALLBACK, command_cb,
583 "Show the metadata for the named class:provider:agent",
584 "SPEC" },
585 { "query-xml", 'q', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
586 "Show XML configuration of resource (after any template expansion)",
587 NULL },
588 { "query-xml-raw", 'w', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
589 command_cb,
590 "Show XML configuration of resource (before any template expansion)",
591 NULL },
592 { "get-parameter", 'g', G_OPTION_FLAG_NONE, G_OPTION_ARG_CALLBACK,
593 command_cb,
594 "Display named parameter for resource (use instance attribute\n"
595 INDENT "unless --element, --meta, or --utilization is specified)",
596 "PARAM" },
597 { "locate", 'W', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
598 "Show node(s) currently running resource",
599 NULL },
600 { "constraints", 'a', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
601 command_cb,
602 "Display the location and colocation constraints that apply to a\n"
603 INDENT "resource, and if --recursive is specified, to the resources\n"
604 INDENT "directly or indirectly involved in those colocations.\n"
605 INDENT "If the named resource is part of a group, or a clone or\n"
606 INDENT "bundle instance, constraints for the collective resource\n"
607 INDENT "will be shown unless --force is given.",
608 NULL },
609 { "stack", 'A', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
610 "Equivalent to --constraints --recursive",
611 NULL },
612 { "why", 'Y', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
613 "Show why resources are not running, optionally filtered by\n"
614 INDENT "--resource and/or --node",
615 NULL },
616
617 { NULL }
618 };
619
620 static GOptionEntry command_entries[] = {
621 { "validate", 0, G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK,
622 command_cb,
623 "Validate resource configuration by calling agent's validate-all\n"
624 INDENT "action. The configuration may be specified either by giving an\n"
625 INDENT "existing resource name with -r, or by specifying --class,\n"
626 INDENT "--agent, and --provider arguments, along with any number of\n"
627 INDENT "--option arguments. An optional LEVEL argument can be given\n"
628 INDENT "to control the level of checking performed.",
629 "LEVEL" },
630 { "cleanup", 'C', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
631 "If resource has any past failures, clear its history and fail\n"
632 INDENT "count. Optionally filtered by --resource, --node, --operation\n"
633 INDENT "and --interval (otherwise all). --operation and --interval\n"
634 INDENT "apply to fail counts, but entire history is always clear, to\n"
635 INDENT "allow current state to be rechecked. If the named resource is\n"
636 INDENT "part of a group, or one numbered instance of a clone or bundled\n"
637 INDENT "resource, the clean-up applies to the whole collective resource\n"
638 INDENT "unless --force is given.",
639 NULL },
640 { "refresh", 'R', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
641 "Delete resource's history (including failures) so its current state\n"
642 INDENT "is rechecked. Optionally filtered by --resource and --node\n"
643 INDENT "(otherwise all). If the named resource is part of a group, or one\n"
644 INDENT "numbered instance of a clone or bundled resource, the refresh\n"
645 INDENT "applies to the whole collective resource unless --force is given.",
646 NULL },
647 { "set-parameter", 'p', G_OPTION_FLAG_NONE, G_OPTION_ARG_CALLBACK,
648 command_cb,
649 "Set named parameter for resource (requires -v). Use instance\n"
650 INDENT "attribute unless --element, --meta, or --utilization is "
651 "specified.",
652 "PARAM" },
653 { "delete-parameter", 'd', G_OPTION_FLAG_NONE, G_OPTION_ARG_CALLBACK,
654 command_cb,
655 "Delete named parameter for resource. Use instance attribute\n"
656 INDENT "unless --element, --meta or, --utilization is specified.",
657 "PARAM" },
658
659 { NULL }
660 };
661
662 static GOptionEntry location_entries[] = {
663 { "move", 'M', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
664 "Create a constraint to move resource. If --node is specified,\n"
665 INDENT "the constraint will be to move to that node, otherwise it\n"
666 INDENT "will be to ban the current node. Unless --force is specified\n"
667 INDENT "this will return an error if the resource is already running\n"
668 INDENT "on the specified node. If --force is specified, this will\n"
669 INDENT "always ban the current node.\n"
670 INDENT "Optional: --lifetime, --promoted. NOTE: This may prevent the\n"
671 INDENT "resource from running on its previous location until the\n"
672 INDENT "implicit constraint expires or is removed with --clear.",
673 NULL },
674 { "ban", 'B', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
675 "Create a constraint to keep resource off a node.\n"
676 INDENT "Optional: --node, --lifetime, --promoted.\n"
677 INDENT "NOTE: This will prevent the resource from running on the\n"
678 INDENT "affected node until the implicit constraint expires or is\n"
679 INDENT "removed with --clear. If --node is not specified, it defaults\n"
680 INDENT "to the node currently running the resource for primitives\n"
681 INDENT "and groups, or the promoted instance of promotable clones with\n"
682 INDENT PCMK_META_PROMOTED_MAX "=1 (all other situations result in an\n"
683 INDENT "error as there is no sane default).",
684 NULL },
685 { "clear", 'U', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
686 "Remove all constraints created by the --ban and/or --move\n"
687 INDENT "commands. Requires: --resource. Optional: --node, --promoted,\n"
688 INDENT "--expired. If --node is not specified, all constraints created\n"
689 INDENT "by --ban and --move will be removed for the named resource. If\n"
690 INDENT "--node and --force are specified, any constraint created by\n"
691 INDENT "--move will be cleared, even if it is not for the specified\n"
692 INDENT "node. If --expired is specified, only those constraints whose\n"
693 INDENT "lifetimes have expired will be removed.",
694 NULL },
695 { "expired", 'e', G_OPTION_FLAG_NONE, G_OPTION_ARG_NONE,
696 &options.clear_expired,
697 "Modifies the --clear argument to remove constraints with\n"
698 INDENT "expired lifetimes.",
699 NULL },
700 { "lifetime", 'u', G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING, &options.move_lifetime,
701 "Lifespan (as ISO 8601 duration) of created constraints (with\n"
702 INDENT "-B, -M) see https://en.wikipedia.org/wiki/ISO_8601#Durations)",
703 "TIMESPEC" },
704 { "promoted", 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_NONE,
705 &options.promoted_role_only,
706 "Limit scope of command to promoted role (with -B, -M, -U). For\n"
707 INDENT "-B and -M, previously promoted instances may remain\n"
708 INDENT "active in the unpromoted role.",
709 NULL },
710
711 // Deprecated since 2.1.0
712 { "master", 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_NONE,
713 &options.promoted_role_only,
714 "Deprecated: Use --promoted instead", NULL },
715
716 { NULL }
717 };
718
719 static GOptionEntry advanced_entries[] = {
720 { "delete", 'D', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
721 "(Advanced) Delete a resource from the CIB. Required: -t",
722 NULL },
723 { "fail", 'F', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
724 "(Advanced) Tell the cluster this resource has failed",
725 NULL },
726 { "restart", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
727 "(Advanced) Tell the cluster to restart this resource and\n"
728 INDENT "anything that depends on it. This temporarily modifies\n"
729 INDENT "the CIB, and other CIB modifications should be avoided\n"
730 INDENT "while this is in progress. If a node is fenced because\n"
731 INDENT "the stop portion of the restart fails, CIB modifications\n"
732 INDENT "such as target-role may remain.",
733 NULL },
734 { "wait", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
735 "(Advanced) Wait until the cluster settles into a stable state",
736 NULL },
737 { "digests", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
738 "(Advanced) Show parameter hashes that Pacemaker uses to detect\n"
739 INDENT "configuration changes (only accurate if there is resource\n"
740 INDENT "history on the specified node). Required: --resource, --node.\n"
741 INDENT "Optional: any NAME=VALUE parameters will be used to override\n"
742 INDENT "the configuration (to see what the hash would be with those\n"
743 INDENT "changes).",
744 NULL },
745 { "force-demote", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
746 command_cb,
747 "(Advanced) Bypass the cluster and demote a resource on the local\n"
748 INDENT "node. Unless --force is specified, this will refuse to do so if\n"
749 INDENT "the cluster believes the resource is a clone instance already\n"
750 INDENT "running on the local node.",
751 NULL },
752 { "force-stop", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
753 "(Advanced) Bypass the cluster and stop a resource on the local node",
754 NULL },
755 { "force-start", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, command_cb,
756 "(Advanced) Bypass the cluster and start a resource on the local\n"
757 INDENT "node. Unless --force is specified, this will refuse to do so if\n"
758 INDENT "the cluster believes the resource is a clone instance already\n"
759 INDENT "running on the local node.",
760 NULL },
761 { "force-promote", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
762 command_cb,
763 "(Advanced) Bypass the cluster and promote a resource on the local\n"
764 INDENT "node. Unless --force is specified, this will refuse to do so if\n"
765 INDENT "the cluster believes the resource is a clone instance already\n"
766 INDENT "running on the local node.",
767 NULL },
768 { "force-check", 0, G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK,
769 command_cb,
770 "(Advanced) Bypass the cluster and check the state of a resource on\n"
771 INDENT "the local node. An optional LEVEL argument can be given\n"
772 INDENT "to control the level of checking performed.",
773 "LEVEL" },
774
775 { NULL }
776 };
777
778 static GOptionEntry addl_entries[] = {
779 { "node", 'N', G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING, &options.host_uname,
780 "Node name",
781 "NAME" },
782 { "recursive", 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_NONE, &options.recursive,
783 "Follow colocation chains when using --set-parameter or --constraints",
784 NULL },
785 { "resource-type", 't', G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING, &options.rsc_type,
786 "Resource XML element (primitive, group, etc.) (with -D)",
787 "ELEMENT" },
788 { "parameter-value", 'v', G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING, &options.prop_value,
789 "Value to use with -p",
790 "PARAM" },
791 { "meta", 'm', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, attr_set_type_cb,
792 "Use resource meta-attribute instead of instance attribute\n"
793 INDENT "(with -p, -g, -d)",
794 NULL },
795 { "utilization", 'z', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, attr_set_type_cb,
796 "Use resource utilization attribute instead of instance attribute\n"
797 INDENT "(with -p, -g, -d)",
798 NULL },
799 { "element", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, attr_set_type_cb,
800 "Use resource element attribute instead of instance attribute\n"
801 INDENT "(with -p, -g, -d)",
802 NULL },
803 { "operation", 'n', G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING, &options.operation,
804 "Operation to clear instead of all (with -C -r)",
805 "OPERATION" },
806 { "interval", 'I', G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING, &options.interval_spec,
807 "Interval of operation to clear (default 0s) (with -C -r -n)",
808 "N" },
809 { "class", 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING, &options.class,
810 "The standard the resource agent conforms to (for example, ocf).\n"
811 INDENT "Use with --agent, --provider, --option, and --validate.",
812 "CLASS" },
813 { "agent", 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING, &options.agent,
814 "The agent to use (for example, IPaddr). Use with --class,\n"
815 INDENT "--provider, --option, and --validate.",
816 "AGENT" },
817 { "provider", 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING, &options.provider,
818 "The vendor that supplies the resource agent (for example,\n"
819 INDENT "heartbeat). Use with --class, --agent, --option, and --validate.",
820 "PROVIDER" },
821 { "option", 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_CALLBACK, option_cb,
822 "Specify a device configuration parameter as NAME=VALUE (may be\n"
823 INDENT "specified multiple times). Use with --validate and without the\n"
824 INDENT "-r option.",
825 "PARAM" },
826 { "set-name", 's', G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING, &options.prop_set,
827 "(Advanced) XML ID of attributes element to use (with -p, -d)",
828 "ID" },
829 { "nvpair", 'i', G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING, &options.prop_id,
830 "(Advanced) XML ID of nvpair element to use (with -p, -d)",
831 "ID" },
832 { "timeout", 'T', G_OPTION_FLAG_NONE, G_OPTION_ARG_CALLBACK, timeout_cb,
833 "(Advanced) Abort if command does not finish in this time (with\n"
834 INDENT "--restart, --wait, --force-*). The --restart command uses a\n"
835 INDENT "two-second granularity and the --wait command uses a one-second\n"
836 INDENT "granularity, with rounding.",
837 "N" },
838 { "all", 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_NONE, &options.all,
839 "List all options, including advanced and deprecated (with\n"
840 INDENT "--list-options)",
841 NULL },
842 { "force", 'f', G_OPTION_FLAG_NONE, G_OPTION_ARG_NONE, &options.force,
843 "Force the action to be performed. See help for individual commands for\n"
844 INDENT "additional behavior.",
845 NULL },
846
847 // @COMPAT Used in resource-agents prior to v4.2.0
848 { "host-uname", 'H', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_STRING, &options.host_uname,
849 NULL,
850 "HOST" },
851
852 { NULL }
853 };
854
855 static int
856 ban_or_move(pcmk__output_t *out, pcmk_resource_t *rsc, cib_t *cib_conn,
857 const char *move_lifetime)
858 {
859 int rc = pcmk_rc_ok;
860 pcmk_node_t *current = NULL;
861 unsigned int nactive = 0;
862
863 CRM_CHECK(rsc != NULL, return EINVAL);
864
865 current = pe__find_active_requires(rsc, &nactive);
866
867 if (nactive == 1) {
868 rc = cli_resource_ban(out, options.rsc_id, current->priv->name,
869 move_lifetime, cib_conn,
870 options.promoted_role_only, PCMK_ROLE_PROMOTED);
871
872 } else if (pcmk__is_set(rsc->flags, pcmk__rsc_promotable)) {
873 int count = 0;
874 GList *iter = NULL;
875
876 current = NULL;
877 for (iter = rsc->priv->children; iter != NULL; iter = iter->next) {
878 pcmk_resource_t *child = (pcmk_resource_t *)iter->data;
879 enum rsc_role_e child_role = child->priv->fns->state(child, true);
880
881 if (child_role == pcmk_role_promoted) {
882 count++;
883 current = pcmk__current_node(child);
884 }
885 }
886
887 if(count == 1 && current) {
888 rc = cli_resource_ban(out, options.rsc_id, current->priv->name,
889 move_lifetime, cib_conn,
890 options.promoted_role_only,
891 PCMK_ROLE_PROMOTED);
892
893 } else {
894 rc = EINVAL;
895 g_set_error(&error, PCMK__EXITC_ERROR, CRM_EX_USAGE,
896 _("Resource '%s' not moved: active in %d locations (promoted in %d).\n"
897 "To prevent '%s' from running on a specific location, "
898 "specify a node."
899 "To prevent '%s' from being promoted at a specific "
900 "location, specify a node and the --promoted option."),
901 options.rsc_id, nactive, count, options.rsc_id, options.rsc_id);
902 }
903
904 } else {
905 rc = EINVAL;
906 g_set_error(&error, PCMK__EXITC_ERROR, CRM_EX_USAGE,
907 _("Resource '%s' not moved: active in %d locations.\n"
908 "To prevent '%s' from running on a specific location, "
909 "specify a node."),
910 options.rsc_id, nactive, options.rsc_id);
911 }
912
913 return rc;
914 }
915
916 static void
917 cleanup(pcmk__output_t *out, pcmk_resource_t *rsc, pcmk_node_t *node,
918 pcmk_ipc_api_t *controld_api)
919 {
920 int rc = pcmk_rc_ok;
921
922 if (options.force == FALSE) {
923 rsc = uber_parent(rsc);
924 }
925
926 pcmk__debug("Erasing failures of %s (%s requested) on %s", rsc->id,
927 options.rsc_id,
928 ((node != NULL)? pcmk__node_name(node) : "all nodes"));
929 rc = cli_resource_delete(controld_api, rsc, node, options.operation,
930 options.interval_spec, true, options.force);
931
932 if ((rc == pcmk_rc_ok) && !out->is_quiet(out)) {
933 // Show any reasons why resource might stay stopped
934 cli_resource_check(out, rsc, node);
935 }
936
937 /* @FIXME The mainloop functions in this file set exit_code. What happens to
938 * exit_code if rc != pcmk_rc_ok here?
939 */
940 if (rc == pcmk_rc_ok) {
941 start_mainloop(controld_api);
942 }
943 }
944
945 /*!
946 * \internal
947 * \brief Allocate a scheduler data object and initialize it from the CIB
948 *
949 * We transform the queried CIB XML to the latest schema version before using it
950 * to populate the scheduler data.
951 *
952 * \param[out] scheduler Where to store scheduler data
953 * \param[in] cib_conn CIB connection
954 * \param[in] out Output object for new scheduler data object
955 * \param[out] cib_xml_orig Where to store queried CIB XML from before any
956 * schema upgrades
957 *
958 * \return Standard Pacemaker return code
959 *
960 * \note \p *scheduler and \p *cib_xml_orig must be \c NULL when this function
961 * is called.
962 * \note The caller is responsible for freeing \p *scheduler using
963 * \c pcmk_free_scheduler.
964 */
965 static int
966 initialize_scheduler_data(pcmk_scheduler_t **scheduler, cib_t *cib_conn,
967 pcmk__output_t *out, xmlNode **cib_xml_orig)
968 {
969 int rc = pcmk_rc_ok;
970
|
(1) Event path: |
Condition "scheduler != NULL", taking true branch. |
|
(2) Event path: |
Condition "*scheduler == NULL", taking true branch. |
|
(3) Event path: |
Condition "cib_conn != NULL", taking true branch. |
|
(4) Event path: |
Condition "out != NULL", taking true branch. |
|
(5) Event path: |
Condition "cib_xml_orig != NULL", taking true branch. |
|
(6) Event path: |
Condition "*cib_xml_orig == NULL", taking true branch. |
971 pcmk__assert((scheduler != NULL) && (*scheduler == NULL)
972 && (cib_conn != NULL) && (out != NULL)
973 && (cib_xml_orig != NULL) && (*cib_xml_orig == NULL));
974
975 *scheduler = pcmk_new_scheduler();
|
(7) Event path: |
Condition "*scheduler == NULL", taking false branch. |
976 if (*scheduler == NULL) {
977 return ENOMEM;
978 }
979
980 pcmk__set_scheduler_flags(*scheduler, pcmk__sched_no_counts);
981 (*scheduler)->priv->out = out;
982
983 rc = update_scheduler_input(out, *scheduler, cib_conn, cib_xml_orig);
|
(8) Event path: |
Condition "rc != pcmk_rc_ok", taking true branch. |
984 if (rc != pcmk_rc_ok) {
|
CID (unavailable; MK=c76f401d59c80ac3f52bbe50abcd99c1) (#1 of 1): Inconsistent C union access (INCONSISTENT_UNION_ACCESS): |
|
(9) Event assign_union_field: |
The union field "in" of "_pp" is written. |
|
(10) Event inconsistent_union_field_access: |
In "_pp.out", the union field used: "out" is inconsistent with the field most recently stored: "in". |
985 g_clear_pointer(scheduler, pcmk_free_scheduler);
986 return rc;
987 }
988
989 cluster_status(*scheduler);
990 return pcmk_rc_ok;
991 }
992
993 static crm_exit_t
994 refresh(pcmk__output_t *out, const pcmk_node_t *node,
995 pcmk_ipc_api_t *controld_api)
996 {
997 const char *node_name = NULL;
998 const char *log_node_name = "all nodes";
999 const char *router_node = NULL;
1000 int attr_options = pcmk__node_attr_none;
1001 int rc = pcmk_rc_ok;
1002
1003 if (node != NULL) {
1004 node_name = node->priv->name;
1005 log_node_name = pcmk__node_name(node);
1006 router_node = node->priv->name;
1007 }
1008
1009 if (pcmk__is_pacemaker_remote_node(node)) {
1010 const pcmk_node_t *conn_host = pcmk__current_node(node->priv->remote);
1011
1012 if (conn_host == NULL) {
1013 rc = ENXIO;
1014 g_set_error(&error, PCMK__RC_ERROR, rc,
1015 _("No cluster connection to Pacemaker Remote node %s "
1016 "detected"),
1017 log_node_name);
1018 return pcmk_rc2exitc(rc);
1019 }
1020 router_node = conn_host->priv->name;
1021 pcmk__set_node_attr_flags(attr_options, pcmk__node_attr_remote);
1022 }
1023
1024 if (controld_api == NULL) {
1025 out->info(out, "Dry run: skipping clean-up of %s due to CIB_file",
1026 log_node_name);
1027 return CRM_EX_OK;
1028 }
1029
1030 pcmk__debug("Re-checking the state of all resources on %s", log_node_name);
1031
1032 // @FIXME We shouldn't discard rc here
1033 rc = pcmk__attrd_api_clear_failures(NULL, node_name, NULL, NULL, NULL, NULL,
1034 attr_options);
1035
1036 /* @FIXME The mainloop functions in this file set exit_code. What happens to
1037 * exit_code if pcmk_controld_api_reprobe() doesn't return pcmk_rc_ok?
1038 */
1039 if (pcmk_controld_api_reprobe(controld_api, node_name,
1040 router_node) == pcmk_rc_ok) {
1041 start_mainloop(controld_api);
1042 return exit_code;
1043 }
1044
1045 return pcmk_rc2exitc(rc);
1046 }
1047
1048 static void
1049 refresh_resource(pcmk__output_t *out, pcmk_resource_t *rsc, pcmk_node_t *node,
1050 pcmk_ipc_api_t *controld_api)
1051 {
1052 int rc = pcmk_rc_ok;
1053
1054 if (options.force == FALSE) {
1055 rsc = uber_parent(rsc);
1056 }
1057
1058 pcmk__debug("Re-checking the state of %s (%s requested) on %s", rsc->id,
1059 options.rsc_id,
1060 ((node != NULL)? pcmk__node_name(node) : "all nodes"));
1061 rc = cli_resource_delete(controld_api, rsc, node, NULL, 0, false,
1062 options.force);
1063
1064 if ((rc == pcmk_rc_ok) && !out->is_quiet(out)) {
1065 // Show any reasons why resource might stay stopped
1066 cli_resource_check(out, rsc, node);
1067 }
1068
1069 /* @FIXME The mainloop functions in this file set exit_code. What happens to
1070 * exit_code if rc != pcmk_rc_ok here?
1071 */
1072 if (rc == pcmk_rc_ok) {
1073 start_mainloop(controld_api);
1074 }
1075 }
1076
1077 /*!
1078 * \internal
1079 * \brief Check whether a command-line resource configuration was given
1080 *
1081 * \return \c true if \c --class, \c --provider, or \c --agent was specified, or
1082 * \c false otherwise
1083 */
1084 static inline bool
1085 has_cmdline_config(void)
1086 {
1087 return ((options.class != NULL) || (options.provider != NULL)
1088 || (options.agent != NULL));
1089 }
1090
1091 static void
1092 validate_cmdline_config(void)
1093 {
1094 bool is_ocf = pcmk__str_eq(options.class, PCMK_RESOURCE_CLASS_OCF,
1095 pcmk__str_none);
1096
1097 // Sanity check before throwing any errors
1098 if (!has_cmdline_config()) {
1099 return;
1100 }
1101
1102 // Cannot use both --resource and command-line resource configuration
1103 if (options.rsc_id != NULL) {
1104 g_set_error(&error, PCMK__EXITC_ERROR, CRM_EX_USAGE,
1105 _("--class, --agent, and --provider cannot be used with "
1106 "-r/--resource"));
1107 return;
1108 }
1109
1110 /* Check whether command supports command-line resource configuration
1111 *
1112 * @FIXME According to the help text, these options can only be used with
1113 * --validate. The --force-* commands are documented for resources that are
1114 * configured in Pacemaker. So this is a bug. We have two choices:
1115 * * Throw an error if --force-* commands are used with these options.
1116 * * Document that --force-* commands can be used with these options.
1117 *
1118 * An error seems safer. If a user really wants to run a non-trivial
1119 * resource action based on CLI parameters, they can do so by executing the
1120 * resource agent directly. It's unsafe to do so if Pacemaker is managing
1121 * the resource that's specified via --class, --option, etc.
1122 *
1123 * On the other hand, besides safety concerns, running other actions is
1124 * exactly the same as running a validate action, and the implementation is
1125 * already in place.
1126 */
1127 if (options.rsc_cmd != cmd_execute_agent) {
1128 g_set_error(&error, PCMK__EXITC_ERROR, CRM_EX_USAGE,
1129 _("--class, --agent, and --provider can only be used with "
1130 "--validate and --force-*"));
1131 return;
1132 }
1133
1134 // Check for a valid combination of --class, --agent, and --provider
1135 if (is_ocf) {
1136 if ((options.provider == NULL) || (options.agent == NULL)) {
1137 g_set_error(&error, PCMK__EXITC_ERROR, CRM_EX_USAGE,
1138 _("--provider and --agent are required with "
1139 "--class=ocf"));
1140 return;
1141 }
1142
1143 } else {
1144 if (options.provider != NULL) {
1145 g_set_error(&error, PCMK__EXITC_ERROR, CRM_EX_USAGE,
1146 _("--provider is supported only with --class=ocf"));
1147 return;
1148 }
1149
1150 // Either --class or --agent was given
1151 if (options.agent == NULL) {
1152 g_set_error(&error, PCMK__EXITC_ERROR, CRM_EX_USAGE,
1153 _("--agent is required with --class"));
1154 return;
1155 }
1156 if (options.class == NULL) {
1157 g_set_error(&error, PCMK__EXITC_ERROR, CRM_EX_USAGE,
1158 _("--class is required with --agent"));
1159 return;
1160 }
1161 }
1162
1163 // Check whether agent exists
1164 if (pcmk__str_eq(options.class, PCMK_RESOURCE_CLASS_STONITH,
1165 pcmk__str_none)) {
1166 if (!stonith__agent_exists(options.agent)) {
1167 g_set_error(&error, PCMK__EXITC_ERROR, CRM_EX_USAGE,
1168 _("%s is not a known fencing agent"), options.agent);
1169 return;
1170 }
1171
1172 } else if (!resources_agent_exists(options.class, options.provider,
1173 options.agent)) {
1174 if (is_ocf) {
1175 g_set_error(&error, PCMK__EXITC_ERROR, CRM_EX_USAGE,
1176 _("%s:%s:%s is not a known resource agent"),
1177 options.class, options.provider, options.agent);
1178 } else {
1179 g_set_error(&error, PCMK__EXITC_ERROR, CRM_EX_USAGE,
1180 _("%s:%s is not a known resource agent"),
1181 options.class, options.agent);
1182 }
1183 return;
1184 }
1185
1186 if (options.cmdline_params == NULL) {
1187 options.cmdline_params = pcmk__strkey_table(free, free);
1188 }
1189 }
1190
1191 static crm_exit_t
1192 handle_ban(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1193 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1194 xmlNode *cib_xml_orig)
1195 {
1196 int rc = pcmk_rc_ok;
1197
1198 if (node == NULL) {
1199 rc = ban_or_move(out, rsc, cib_conn, options.move_lifetime);
1200 } else {
1201 rc = cli_resource_ban(out, options.rsc_id, node->priv->name,
1202 options.move_lifetime, cib_conn,
1203 options.promoted_role_only, PCMK_ROLE_PROMOTED);
1204 }
1205
1206 if (rc == EINVAL) {
1207 return CRM_EX_USAGE;
1208 }
1209 return pcmk_rc2exitc(rc);
1210 }
1211
1212 static crm_exit_t
1213 handle_cleanup(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1214 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1215 xmlNode *cib_xml_orig)
1216 {
1217 if (rsc == NULL) {
1218 int rc = cli_cleanup_all(controld_api, node, options.operation,
1219 options.interval_spec, scheduler);
1220
1221 if (rc == pcmk_rc_ok) {
1222 start_mainloop(controld_api);
1223 }
1224
1225 } else {
1226 cleanup(out, rsc, node, controld_api);
1227 }
1228
1229 /* @FIXME Both of the blocks above are supposed to set exit_code via
1230 * start_mainloop(). But if cli_cleanup_all() or cli_resource_delete()
1231 * fails, we never start the mainloop. It looks as if we exit with CRM_EX_OK
1232 * in those cases.
1233 */
1234 return exit_code;
1235 }
1236
1237 static crm_exit_t
1238 handle_clear(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1239 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1240 xmlNode *cib_xml_orig)
1241 {
1242 const char *node_name = (node != NULL)? node->priv->name : NULL;
1243 GList *before = NULL;
1244 GList *after = NULL;
1245 GList *remaining = NULL;
1246 int rc = pcmk_rc_ok;
1247
1248 if (!out->is_quiet(out)) {
1249 before = build_constraint_list(scheduler->input);
1250 }
1251
1252 if (options.clear_expired) {
1253 rc = cli_resource_clear_all_expired(scheduler->input, cib_conn,
1254 options.rsc_id, node_name,
1255 options.promoted_role_only);
1256
1257 } else if (node != NULL) {
1258 rc = cli_resource_clear(options.rsc_id, node_name, NULL, cib_conn, true,
1259 options.force);
1260
1261 } else {
1262 rc = cli_resource_clear(options.rsc_id, NULL, scheduler->nodes,
1263 cib_conn, true, options.force);
1264 }
1265
1266 if (out->is_quiet(out)) {
1267 goto done;
1268 }
1269
1270 pcmk_reset_scheduler(scheduler);
1271
1272 rc = cib_conn->cmds->query(cib_conn, NULL, &scheduler->input,
1273 cib_sync_call);
1274 rc = pcmk_legacy2rc(rc);
1275 if (rc != pcmk_rc_ok) {
1276 g_set_error(&error, PCMK__RC_ERROR, rc,
1277 _("Could not get modified CIB: %s"), pcmk_rc_str(rc));
1278 goto done;
1279 }
1280
1281 cluster_status(scheduler);
1282
1283 after = build_constraint_list(scheduler->input);
1284 remaining = pcmk__subtract_lists(before, after, (GCompareFunc) strcmp);
1285
1286 for (const GList *iter = remaining; iter != NULL; iter = iter->next) {
1287 const char *constraint = iter->data;
1288
1289 out->info(out, "Removing constraint: %s", constraint);
1290 }
1291
1292 done:
1293 g_list_free_full(before, free);
1294 g_list_free_full(after, free);
1295 g_list_free(remaining);
1296
1297 return pcmk_rc2exitc(rc);
1298 }
1299
1300 static crm_exit_t
1301 handle_colocations(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1302 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1303 xmlNode *cib_xml_orig)
1304 {
1305 int rc = out->message(out, "locations-and-colocations", rsc,
1306 options.recursive, options.force);
1307
1308 return pcmk_rc2exitc(rc);
1309 }
1310
1311 static crm_exit_t
1312 handle_cts(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1313 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1314 xmlNode *cib_xml_orig)
1315 {
1316 g_list_foreach(scheduler->priv->resources, (GFunc) cli_resource_print_cts,
1317 out);
1318 cli_resource_print_cts_constraints(scheduler);
1319 return CRM_EX_OK;
1320 }
1321
1322 static crm_exit_t
1323 handle_delete(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1324 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1325 xmlNode *cib_xml_orig)
1326 {
1327 /* rsc_id was already checked for NULL much earlier when validating command
1328 * line arguments
1329 */
1330 int rc = pcmk_rc_ok;
1331
1332 if (options.rsc_type == NULL) {
1333 crm_exit_t ec = CRM_EX_USAGE;
1334
1335 g_set_error(&error, PCMK__EXITC_ERROR, ec,
1336 _("You need to specify a resource type with -t"));
1337 return ec;
1338 }
1339
1340 rc = pcmk__resource_delete(cib_conn, cib_sync_call, options.rsc_id,
1341 options.rsc_type);
1342 if (rc != pcmk_rc_ok) {
1343 g_set_error(&error, PCMK__RC_ERROR, rc,
1344 _("Could not delete resource %s: %s"),
1345 options.rsc_id, pcmk_rc_str(rc));
1346 }
1347 return pcmk_rc2exitc(rc);
1348 }
1349
1350 static crm_exit_t
1351 handle_delete_param(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1352 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1353 xmlNode *cib_xml_orig)
1354 {
1355 int rc = cli_resource_delete_attribute(rsc, options.rsc_id,
1356 options.prop_set,
1357 options.attr_set_type,
1358 options.prop_id,
1359 options.prop_name, cib_conn,
1360 cib_xml_orig, options.force);
1361
1362 return pcmk_rc2exitc(rc);
1363 }
1364
1365 static crm_exit_t
1366 handle_digests(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1367 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1368 xmlNode *cib_xml_orig)
1369 {
1370 int rc = pcmk__resource_digests(out, rsc, node, options.override_params);
1371
1372 return pcmk_rc2exitc(rc);
1373 }
1374
1375 static crm_exit_t
1376 handle_execute_agent(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1377 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1378 xmlNode *cib_xml_orig)
1379 {
1380 if (has_cmdline_config()) {
1381 return cli_resource_execute_from_params(out, NULL, options.class,
1382 options.provider, options.agent,
1383 options.operation,
1384 options.cmdline_params,
1385 options.override_params,
1386 options.timeout_ms,
1387 args->verbosity, options.force,
1388 options.check_level);
1389 }
1390 return cli_resource_execute(rsc, options.rsc_id, options.operation,
1391 options.override_params, options.timeout_ms,
1392 cib_conn, args->verbosity, options.force,
1393 options.check_level);
1394 }
1395
1396 static crm_exit_t
1397 handle_fail(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1398 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1399 xmlNode *cib_xml_orig)
1400 {
1401 int rc = cli_resource_fail(controld_api, rsc, options.rsc_id, node);
1402
1403 if (rc == pcmk_rc_ok) {
1404 // start_mainloop() sets exit_code
1405 start_mainloop(controld_api);
1406 return exit_code;
1407 }
1408 return pcmk_rc2exitc(rc);;
1409 }
1410
1411 static crm_exit_t
1412 handle_get_param(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1413 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1414 xmlNode *cib_xml_orig)
1415 {
1416 unsigned int count = 0;
1417 pcmk_node_t *current = rsc->priv->fns->active_node(rsc, &count, NULL);
1418 const char *value = NULL;
1419 int rc = pcmk_rc_ok;
1420
1421 if (count > 1) {
1422 out->err(out,
1423 "%s is active on more than one node, returning the default "
1424 "value for %s",
1425 rsc->id, pcmk__s(options.prop_name, "unspecified property"));
1426 current = NULL;
1427 }
1428
1429 pcmk__debug("Looking up %s in %s", options.prop_name, rsc->id);
1430
1431 if (pcmk__str_eq(options.attr_set_type, PCMK_XE_INSTANCE_ATTRIBUTES,
1432 pcmk__str_none)) {
1433
1434 value = g_hash_table_lookup(pe_rsc_params(rsc, current, scheduler),
1435 options.prop_name);
1436
1437 } else if (pcmk__str_eq(options.attr_set_type, PCMK_XE_META_ATTRIBUTES,
1438 pcmk__str_none)) {
1439
1440 value = g_hash_table_lookup(rsc->priv->meta, options.prop_name);
1441
1442 } else if (pcmk__str_eq(options.attr_set_type, ATTR_SET_ELEMENT,
1443 pcmk__str_none)) {
1444
1445 value = pcmk__xe_get(rsc->priv->xml, options.prop_name);
1446
1447 } else {
1448 const pcmk_rule_input_t rule_input = {
1449 .now = scheduler->priv->now,
1450 };
1451
1452 GHashTable *params = pcmk__strkey_table(free, free);
1453
1454 pe__unpack_dataset_nvpairs(rsc->priv->xml, PCMK_XE_UTILIZATION,
1455 &rule_input, params, NULL, scheduler);
1456
1457 value = g_hash_table_lookup(params, options.prop_name);
1458 g_hash_table_destroy(params);
1459 }
1460
1461 rc = out->message(out, "attribute-list", rsc, options.prop_name, value);
1462 return pcmk_rc2exitc(rc);
1463 }
1464
1465 static crm_exit_t
1466 handle_list_active_ops(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1467 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1468 xmlNode *cib_xml_orig)
1469 {
1470 const char *node_name = (node != NULL)? node->priv->name : NULL;
1471 int rc = cli_resource_print_operations(options.rsc_id, node_name, true,
1472 scheduler);
1473
1474 return pcmk_rc2exitc(rc);
1475 }
1476
1477 static crm_exit_t
1478 handle_list_agents(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1479 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1480 xmlNode *cib_xml_orig)
1481 {
1482 int rc = pcmk__list_agents(out, options.agent_spec);
1483
1484 return pcmk_rc2exitc(rc);
1485 }
1486
1487 static crm_exit_t
1488 handle_list_all_ops(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1489 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1490 xmlNode *cib_xml_orig)
1491 {
1492 const char *node_name = (node != NULL)? node->priv->name : NULL;
1493 int rc = cli_resource_print_operations(options.rsc_id, node_name, false,
1494 scheduler);
1495
1496 return pcmk_rc2exitc(rc);
1497 }
1498
1499 static crm_exit_t
1500 handle_list_alternatives(pcmk_resource_t *rsc, pcmk_node_t *node,
1501 cib_t *cib_conn, pcmk_scheduler_t *scheduler,
1502 pcmk_ipc_api_t *controld_api, xmlNode *cib_xml_orig)
1503 {
1504 int rc = pcmk__list_alternatives(out, options.agent_spec);
1505
1506 return pcmk_rc2exitc(rc);
1507 }
1508
1509 static crm_exit_t
1510 handle_list_instances(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1511 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1512 xmlNode *cib_xml_orig)
1513 {
1514 int rc = out->message(out, "resource-names-list",
1515 scheduler->priv->resources);
1516
1517 if (rc == pcmk_rc_no_output) {
1518 // @COMPAT It seems wrong to return an error because there no resources
1519 return CRM_EX_NOSUCH;
1520 }
1521 return pcmk_rc2exitc(rc);
1522 }
1523
1524 static crm_exit_t
1525 handle_list_options(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1526 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1527 xmlNode *cib_xml_orig)
1528 {
1529 crm_exit_t ec = CRM_EX_OK;
1530 int rc = pcmk_rc_ok;
1531
1532 switch (options.opt_list) {
1533 case pcmk__opt_fencing:
1534 rc = pcmk__list_fencing_params(out, options.all);
1535 return pcmk_rc2exitc(rc);
1536
1537 case pcmk__opt_primitive:
1538 rc = pcmk__list_primitive_meta(out, options.all);
1539 return pcmk_rc2exitc(rc);
1540
1541 default:
1542 ec = CRM_EX_SOFTWARE;
1543 g_set_error(&error, PCMK__EXITC_ERROR, ec,
1544 "Bug: Invalid option list type");
1545 return ec;
1546 }
1547 }
1548
1549 static crm_exit_t
1550 handle_list_providers(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1551 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1552 xmlNode *cib_xml_orig)
1553 {
1554 int rc = pcmk__list_providers(out, options.agent_spec);
1555
1556 return pcmk_rc2exitc(rc);
1557 }
1558
1559 static crm_exit_t
1560 handle_list_resources(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1561 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1562 xmlNode *cib_xml_orig)
1563 {
1564 GList *all = g_list_prepend(NULL, (gpointer) "*");
1565 int rc = out->message(out, "resource-list", scheduler,
1566 pcmk_show_inactive_rscs
1567 |pcmk_show_rsc_only
1568 |pcmk_show_pending,
1569 true, all, all, false);
1570
1571 g_list_free(all);
1572
1573 if (rc == pcmk_rc_no_output) {
1574 // @COMPAT It seems wrong to return an error because there no resources
1575 return CRM_EX_NOSUCH;
1576 }
1577 return pcmk_rc2exitc(rc);
1578 }
1579
1580 static crm_exit_t
1581 handle_list_standards(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1582 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1583 xmlNode *cib_xml_orig)
1584 {
1585 int rc = pcmk__list_standards(out);
1586
1587 return pcmk_rc2exitc(rc);
1588 }
1589
1590 static crm_exit_t
1591 handle_locate(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1592 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1593 xmlNode *cib_xml_orig)
1594 {
1595 GList *nodes = cli_resource_search(rsc, options.rsc_id);
1596 int rc = out->message(out, "resource-search-list", nodes, options.rsc_id);
1597
1598 g_list_free_full(nodes, free);
1599 return pcmk_rc2exitc(rc);
1600 }
1601
1602 static crm_exit_t
1603 handle_metadata(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1604 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1605 xmlNode *cib_xml_orig)
1606 {
1607 int rc = pcmk_rc_ok;
1608 char *standard = NULL;
1609 char *provider = NULL;
1610 char *type = NULL;
1611 lrmd_t *lrmd_conn = NULL;
1612
1613 rc = lrmd__new(&lrmd_conn, NULL, NULL, 0);
1614 if (rc != pcmk_rc_ok) {
1615 g_set_error(&error, PCMK__RC_ERROR, rc,
1616 _("Could not create executor connection"));
1617 lrmd_api_delete(lrmd_conn);
1618 return pcmk_rc2exitc(rc);
1619 }
1620
1621 rc = crm_parse_agent_spec(options.agent_spec, &standard, &provider, &type);
1622 rc = pcmk_legacy2rc(rc);
1623
1624 if (rc == pcmk_rc_ok) {
1625 char *metadata = NULL;
1626
1627 rc = lrmd_conn->cmds->get_metadata(lrmd_conn, standard,
1628 provider, type,
1629 &metadata, 0);
1630 rc = pcmk_legacy2rc(rc);
1631
1632 if (metadata != NULL) {
1633 out->output_xml(out, PCMK_XE_METADATA, metadata);
1634 free(metadata);
1635
1636 } else {
1637 /* We were given a validly formatted spec, but it doesn't necessarily
1638 * match up with anything that exists. Use ENXIO as the return code
1639 * here because that maps to an exit code of CRM_EX_NOSUCH, which
1640 * probably is the most common reason to get here.
1641 */
1642 rc = ENXIO;
1643 g_set_error(&error, PCMK__RC_ERROR, rc,
1644 _("Metadata query for %s failed: %s"),
1645 options.agent_spec, pcmk_rc_str(rc));
1646 }
1647 } else {
1648 rc = ENXIO;
1649 g_set_error(&error, PCMK__RC_ERROR, rc,
1650 _("'%s' is not a valid agent specification"),
1651 options.agent_spec);
1652 }
1653
1654 free(standard);
1655 free(provider);
1656 free(type);
1657 lrmd_api_delete(lrmd_conn);
1658
1659 return pcmk_rc2exitc(rc);
1660 }
1661
1662 static crm_exit_t
1663 handle_move(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1664 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1665 xmlNode *cib_xml_orig)
1666 {
1667 int rc = pcmk_rc_ok;
1668
1669 if (node == NULL) {
1670 rc = ban_or_move(out, rsc, cib_conn, options.move_lifetime);
1671 } else {
1672 rc = cli_resource_move(rsc, options.rsc_id, node, options.move_lifetime,
1673 cib_conn, options.promoted_role_only,
1674 options.force);
1675 }
1676
1677 if (rc == EINVAL) {
1678 return CRM_EX_USAGE;
1679 }
1680 return pcmk_rc2exitc(rc);
1681 }
1682
1683 static crm_exit_t
1684 handle_query_xml(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1685 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1686 xmlNode *cib_xml_orig)
1687 {
1688 int rc = cli_resource_print(rsc, true);
1689
1690 return pcmk_rc2exitc(rc);
1691 }
1692
1693 static crm_exit_t
1694 handle_query_xml_raw(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1695 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1696 xmlNode *cib_xml_orig)
1697 {
1698 int rc = cli_resource_print(rsc, false);
1699
1700 return pcmk_rc2exitc(rc);
1701 }
1702
1703 static crm_exit_t
1704 handle_refresh(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1705 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1706 xmlNode *cib_xml_orig)
1707 {
1708 if (rsc == NULL) {
1709 return refresh(out, node, controld_api);
1710 }
1711 refresh_resource(out, rsc, node, controld_api);
1712
1713 /* @FIXME Both of the calls above are supposed to set exit_code via
1714 * start_mainloop(). But there appear to be cases in which we can return
1715 * from refresh() or refresh_resource() without starting the mainloop or
1716 * returning an error code. It looks as if we exit with CRM_EX_OK in those
1717 * cases.
1718 */
1719 return exit_code;
1720 }
1721
1722 static crm_exit_t
1723 handle_restart(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1724 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1725 xmlNode *cib_xml_orig)
1726 {
1727 /* We don't pass scheduler because rsc needs to stay valid for the entire
1728 * lifetime of cli_resource_restart(), but it will reset and update the
1729 * scheduler data multiple times, so it needs to use its own copy.
1730 */
1731 int rc = cli_resource_restart(out, rsc, node, options.move_lifetime,
1732 options.timeout_ms, cib_conn,
1733 options.promoted_role_only, options.force);
1734
1735 return pcmk_rc2exitc(rc);
1736 }
1737
1738 static crm_exit_t
1739 handle_set_param(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1740 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1741 xmlNode *cib_xml_orig)
1742 {
1743 int rc = pcmk_rc_ok;
1744
1745 if (pcmk__str_empty(options.prop_value)) {
1746 crm_exit_t ec = CRM_EX_USAGE;
1747
1748 g_set_error(&error, PCMK__EXITC_ERROR, ec,
1749 _("You need to supply a value with the -v option"));
1750 return ec;
1751 }
1752
1753 rc = cli_resource_update_attribute(rsc, options.rsc_id, options.prop_set,
1754 options.attr_set_type, options.prop_id,
1755 options.prop_name, options.prop_value,
1756 options.recursive, cib_conn,
1757 cib_xml_orig, options.force);
1758 return pcmk_rc2exitc(rc);
1759 }
1760
1761 static crm_exit_t
1762 handle_wait(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1763 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1764 xmlNode *cib_xml_orig)
1765 {
1766 int rc = wait_till_stable(out, options.timeout_ms, cib_conn);
1767
1768 return pcmk_rc2exitc(rc);
1769 }
1770
1771 static crm_exit_t
1772 handle_why(pcmk_resource_t *rsc, pcmk_node_t *node, cib_t *cib_conn,
1773 pcmk_scheduler_t *scheduler, pcmk_ipc_api_t *controld_api,
1774 xmlNode *cib_xml_orig)
1775 {
1776 int rc = out->message(out, "resource-reasons-list",
1777 scheduler->priv->resources, rsc, node);
1778
1779 return pcmk_rc2exitc(rc);
1780 }
1781
1782 static const crm_resource_cmd_info_t crm_resource_command_info[] = {
1783 [cmd_ban] = {
1784 handle_ban,
1785 crm_rsc_find_match_anon_basename
1786 |crm_rsc_find_match_history
1787 |crm_rsc_rejects_clone_instance
1788 |crm_rsc_requires_cib
1789 |crm_rsc_requires_resource
1790 |crm_rsc_requires_scheduler,
1791 },
1792 [cmd_cleanup] = {
1793 handle_cleanup,
1794 crm_rsc_find_match_anon_basename
1795 |crm_rsc_find_match_history
1796 |crm_rsc_requires_cib
1797 |crm_rsc_requires_controller
1798 |crm_rsc_requires_scheduler,
1799 },
1800 [cmd_clear] = {
1801 handle_clear,
1802 crm_rsc_find_match_anon_basename
1803 |crm_rsc_find_match_history
1804 |crm_rsc_rejects_clone_instance
1805 |crm_rsc_requires_cib
1806 |crm_rsc_requires_resource // Unless options.clear_expired
1807 |crm_rsc_requires_scheduler,
1808 },
1809 [cmd_colocations] = {
1810 handle_colocations,
1811 crm_rsc_find_match_anon_basename
1812 |crm_rsc_find_match_history
1813 |crm_rsc_requires_cib
1814 |crm_rsc_requires_resource
1815 |crm_rsc_requires_scheduler,
1816 },
1817 [cmd_cts] = {
1818 handle_cts,
1819 crm_rsc_requires_cib
1820 |crm_rsc_requires_scheduler,
1821 },
1822 [cmd_delete] = {
1823 handle_delete,
1824 crm_rsc_rejects_clone_instance
1825 |crm_rsc_requires_cib
1826 |crm_rsc_requires_resource,
1827 },
1828 [cmd_delete_param] = {
1829 handle_delete_param,
1830 crm_rsc_find_match_basename
1831 |crm_rsc_find_match_history
1832 |crm_rsc_requires_cib
1833 |crm_rsc_requires_resource
1834 |crm_rsc_requires_scheduler,
1835 },
1836 [cmd_digests] = {
1837 handle_digests,
1838 crm_rsc_find_match_anon_basename
1839 |crm_rsc_find_match_history
1840 |crm_rsc_requires_cib
1841 |crm_rsc_requires_node
1842 |crm_rsc_requires_resource
1843 |crm_rsc_requires_scheduler,
1844 },
1845 [cmd_execute_agent] = {
1846 handle_execute_agent,
1847 crm_rsc_find_match_anon_basename
1848 |crm_rsc_find_match_history
1849 |crm_rsc_requires_cib
1850 |crm_rsc_requires_resource
1851 |crm_rsc_requires_scheduler,
1852 },
1853 [cmd_fail] = {
1854 handle_fail,
1855 crm_rsc_find_match_history
1856 |crm_rsc_requires_cib
1857 |crm_rsc_requires_controller
1858 |crm_rsc_requires_node
1859 |crm_rsc_requires_resource
1860 |crm_rsc_requires_scheduler,
1861 },
1862 [cmd_get_param] = {
1863 handle_get_param,
1864 crm_rsc_find_match_basename
1865 |crm_rsc_find_match_history
1866 |crm_rsc_requires_cib
1867 |crm_rsc_requires_resource
1868 |crm_rsc_requires_scheduler,
1869 },
1870 [cmd_list_active_ops] = {
1871 handle_list_active_ops,
1872 crm_rsc_requires_cib
1873 |crm_rsc_requires_scheduler,
1874 },
1875 [cmd_list_agents] = {
1876 handle_list_agents,
1877 0,
1878 },
1879 [cmd_list_all_ops] = {
1880 handle_list_all_ops,
1881 crm_rsc_requires_cib
1882 |crm_rsc_requires_scheduler,
1883 },
1884 [cmd_list_alternatives] = {
1885 handle_list_alternatives,
1886 0,
1887 },
1888 [cmd_list_instances] = {
1889 handle_list_instances,
1890 crm_rsc_requires_cib
1891 |crm_rsc_requires_scheduler,
1892 },
1893 [cmd_list_options] = {
1894 handle_list_options,
1895 0,
1896 },
1897 [cmd_list_providers] = {
1898 handle_list_providers,
1899 0,
1900 },
1901 [cmd_list_resources] = {
1902 handle_list_resources,
1903 crm_rsc_requires_cib
1904 |crm_rsc_requires_scheduler,
1905 },
1906 [cmd_list_standards] = {
1907 handle_list_standards,
1908 0,
1909 },
1910 [cmd_locate] = {
1911 handle_locate,
1912 crm_rsc_find_match_anon_basename
1913 |crm_rsc_find_match_history
1914 |crm_rsc_requires_cib
1915 |crm_rsc_requires_resource
1916 |crm_rsc_requires_scheduler,
1917 },
1918 [cmd_metadata] = {
1919 handle_metadata,
1920 0,
1921 },
1922 [cmd_move] = {
1923 handle_move,
1924 crm_rsc_find_match_anon_basename
1925 |crm_rsc_find_match_history
1926 |crm_rsc_rejects_clone_instance
1927 |crm_rsc_requires_cib
1928 |crm_rsc_requires_resource
1929 |crm_rsc_requires_scheduler,
1930 },
1931 [cmd_query_xml] = {
1932 handle_query_xml,
1933 crm_rsc_find_match_basename
1934 |crm_rsc_find_match_history
1935 |crm_rsc_requires_cib
1936 |crm_rsc_requires_resource
1937 |crm_rsc_requires_scheduler,
1938 },
1939 [cmd_query_xml_raw] = {
1940 handle_query_xml_raw,
1941 crm_rsc_find_match_basename
1942 |crm_rsc_find_match_history
1943 |crm_rsc_requires_cib
1944 |crm_rsc_requires_resource
1945 |crm_rsc_requires_scheduler,
1946 },
1947 [cmd_refresh] = {
1948 handle_refresh,
1949 crm_rsc_find_match_anon_basename
1950 |crm_rsc_find_match_history
1951 |crm_rsc_requires_cib
1952 |crm_rsc_requires_controller
1953 |crm_rsc_requires_scheduler,
1954 },
1955 [cmd_restart] = {
1956 handle_restart,
1957 crm_rsc_find_match_anon_basename
1958 |crm_rsc_find_match_history
1959 |crm_rsc_rejects_clone_instance
1960 |crm_rsc_requires_cib
1961 |crm_rsc_requires_resource
1962 |crm_rsc_requires_scheduler,
1963 },
1964 [cmd_set_param] = {
1965 handle_set_param,
1966 crm_rsc_find_match_basename
1967 |crm_rsc_find_match_history
1968 |crm_rsc_requires_cib
1969 |crm_rsc_requires_resource
1970 |crm_rsc_requires_scheduler,
1971 },
1972 [cmd_wait] = {
1973 handle_wait,
1974 crm_rsc_requires_cib,
1975 },
1976 [cmd_why] = {
1977 handle_why,
1978 crm_rsc_find_match_anon_basename
1979 |crm_rsc_find_match_history
1980 |crm_rsc_requires_cib
1981 |crm_rsc_requires_scheduler,
1982 },
1983 };
1984
1985 static GOptionContext *
1986 build_arg_context(pcmk__common_args_t *args, GOptionGroup **group) {
1987 GOptionContext *context = NULL;
1988
1989 GOptionEntry extra_prog_entries[] = {
1990 { "quiet", 'Q', G_OPTION_FLAG_NONE, G_OPTION_ARG_NONE, &(args->quiet),
1991 "Be less descriptive in output.",
1992 NULL },
1993 { "resource", 'r', G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING, &options.rsc_id,
1994 "Resource ID",
1995 "ID" },
1996 { G_OPTION_REMAINING, 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING_ARRAY, &options.remainder,
1997 NULL,
1998 NULL },
1999
2000 { NULL }
2001 };
2002
2003 const char *description = "Examples:\n\n"
2004 "List the available OCF agents:\n\n"
2005 "\t# crm_resource --list-agents ocf\n\n"
2006 "List the available OCF agents from the linux-ha project:\n\n"
2007 "\t# crm_resource --list-agents ocf:heartbeat\n\n"
2008 "Move 'myResource' to a specific node:\n\n"
2009 "\t# crm_resource --resource myResource --move --node altNode\n\n"
2010 "Allow (but not force) 'myResource' to move back to its original "
2011 "location:\n\n"
2012 "\t# crm_resource --resource myResource --clear\n\n"
2013 "Stop 'myResource' (and anything that depends on it):\n\n"
2014 "\t# crm_resource --resource myResource --set-parameter "
2015 PCMK_META_TARGET_ROLE "--meta --parameter-value Stopped\n\n"
2016 "Tell the cluster not to manage 'myResource' (the cluster will not "
2017 "attempt to start or stop the\n"
2018 "resource under any circumstances; useful when performing maintenance "
2019 "tasks on a resource):\n\n"
2020 "\t# crm_resource --resource myResource --set-parameter "
2021 PCMK_META_IS_MANAGED "--meta --parameter-value false\n\n"
2022 "Erase the operation history of 'myResource' on 'aNode' (the cluster "
2023 "will 'forget' the existing\n"
2024 "resource state, including any errors, and attempt to recover the"
2025 "resource; useful when a resource\n"
2026 "had failed permanently and has been repaired by an administrator):\n\n"
2027 "\t# crm_resource --resource myResource --cleanup --node aNode\n\n";
2028
2029 context = pcmk__build_arg_context(args, "text (default), xml", group, NULL);
2030 g_option_context_set_description(context, description);
2031
2032 /* Add the -Q option, which cannot be part of the globally supported options
2033 * because some tools use that flag for something else.
2034 */
2035 pcmk__add_main_args(context, extra_prog_entries);
2036
2037 pcmk__add_arg_group(context, "queries", "Queries:",
2038 "Show query help", query_entries);
2039 pcmk__add_arg_group(context, "commands", "Commands:",
2040 "Show command help", command_entries);
2041 pcmk__add_arg_group(context, "locations", "Locations:",
2042 "Show location help", location_entries);
2043 pcmk__add_arg_group(context, "advanced", "Advanced:",
2044 "Show advanced option help", advanced_entries);
2045 pcmk__add_arg_group(context, "additional", "Additional Options:",
2046 "Show additional options", addl_entries);
2047 return context;
2048 }
2049
2050 int
2051 main(int argc, char **argv)
2052 {
2053 const crm_resource_cmd_info_t *command_info = NULL;
2054 pcmk_resource_t *rsc = NULL;
2055 pcmk_node_t *node = NULL;
2056 cib_t *cib_conn = NULL;
2057 pcmk_scheduler_t *scheduler = NULL;
2058 pcmk_ipc_api_t *controld_api = NULL;
2059 xmlNode *cib_xml_orig = NULL;
2060 uint32_t find_flags = 0;
2061 int rc = pcmk_rc_ok;
2062
2063 GOptionGroup *output_group = NULL;
2064 gchar **processed_args = NULL;
2065 GOptionContext *context = NULL;
2066
2067 /*
2068 * Parse command line arguments
2069 */
2070
2071 args = pcmk__new_common_args(SUMMARY);
2072 processed_args = pcmk__cmdline_preproc(argv, "GHINSTdginpstuvx");
2073 context = build_arg_context(args, &output_group);
2074
2075 pcmk__register_formats(output_group, formats);
2076 if (!g_option_context_parse_strv(context, &processed_args, &error)) {
2077 exit_code = CRM_EX_USAGE;
2078 goto done;
2079 }
2080
2081 pcmk__cli_init_logging("crm_resource", args->verbosity);
2082
2083 rc = pcmk__output_new(&out, args->output_ty, args->output_dest, argv);
2084 if (rc != pcmk_rc_ok) {
2085 exit_code = CRM_EX_ERROR;
2086 g_set_error(&error, PCMK__EXITC_ERROR, exit_code, _("Error creating output format %s: %s"),
2087 args->output_ty, pcmk_rc_str(rc));
2088 goto done;
2089 }
2090
2091 pe__register_messages(out);
2092 crm_resource_register_messages(out);
2093 lrmd__register_messages(out);
2094 pcmk__register_lib_messages(out);
2095
2096 out->quiet = args->quiet;
2097
2098 crm_log_args(argc, argv);
2099
2100 /*
2101 * Validate option combinations
2102 */
2103
2104 // --expired without --clear/-U doesn't make sense
2105 if (options.clear_expired && (options.rsc_cmd != cmd_clear)) {
2106 exit_code = CRM_EX_USAGE;
2107 g_set_error(&error, PCMK__EXITC_ERROR, exit_code, _("--expired requires --clear or -U"));
2108 goto done;
2109 }
2110
2111 if (options.remainder != NULL) {
2112 // Commands that use positional arguments will create override_params
2113 if (options.override_params == NULL) {
2114 GString *msg = g_string_sized_new(128);
2115 guint len = g_strv_length(options.remainder);
2116
2117 g_string_append(msg, "non-option ARGV-elements:");
2118
2119 for (int i = 0; i < len; i++) {
2120 g_string_append_printf(msg, "\n[%d of %u] %s",
2121 i + 1, len, options.remainder[i]);
2122 }
2123 exit_code = CRM_EX_USAGE;
2124 g_set_error(&error, PCMK__EXITC_ERROR, exit_code, "%s", msg->str);
2125 g_string_free(msg, TRUE);
2126 goto done;
2127 }
2128
2129 for (gchar **arg = options.remainder; *arg != NULL; arg++) {
2130 gchar *name = NULL;
2131 gchar *value = NULL;
2132 int rc = pcmk__scan_nvpair(*arg, &name, &value);
2133
2134 if (rc != pcmk_rc_ok) {
2135 exit_code = CRM_EX_USAGE;
2136 g_set_error(&error, PCMK__EXITC_ERROR, exit_code,
2137 _("Error parsing '%s' as a name=value pair"), *arg);
2138 goto done;
2139 }
2140
2141 g_hash_table_insert(options.override_params, name, value);
2142 }
2143 }
2144
2145 if (pcmk__str_eq(args->output_ty, "xml", pcmk__str_none)) {
2146 switch (options.rsc_cmd) {
2147 /* These are the only commands that have historically used the <list>
2148 * elements in their XML schema. For all others, use the simple list
2149 * argument.
2150 */
2151 case cmd_get_param:
2152 case cmd_list_instances:
2153 case cmd_list_standards:
2154 pcmk__output_enable_list_element(out);
2155 break;
2156
2157 default:
2158 break;
2159 }
2160
2161 } else if (pcmk__str_eq(args->output_ty, "text", pcmk__str_null_matches)) {
2162 switch (options.rsc_cmd) {
2163 case cmd_colocations:
2164 case cmd_list_resources:
2165 pcmk__output_text_set_fancy(out, true);
2166 break;
2167 default:
2168 break;
2169 }
2170 }
2171
2172 if (args->version) {
2173 out->version(out);
2174 goto done;
2175 }
2176
2177 // Ensure command is in valid range and has a handler function
2178 if ((options.rsc_cmd >= 0) && (options.rsc_cmd <= cmd_max)) {
2179 command_info = &crm_resource_command_info[options.rsc_cmd];
2180 }
2181 if ((command_info == NULL) || (command_info->fn == NULL)) {
2182 exit_code = CRM_EX_SOFTWARE;
2183 g_set_error(&error, PCMK__EXITC_ERROR, exit_code,
2184 _("Bug: Unimplemented command: %d"), (int) options.rsc_cmd);
2185 goto done;
2186 }
2187
2188 /* If a command-line resource agent specification was given, validate it.
2189 * Otherwise, ensure --option was not given.
2190 */
2191 if (has_cmdline_config()) {
2192 validate_cmdline_config();
2193 if (error != NULL) {
2194 exit_code = CRM_EX_USAGE;
2195 goto done;
2196 }
2197
2198 } else if (options.cmdline_params != NULL) {
2199 exit_code = CRM_EX_USAGE;
2200 g_set_error(&error, PCMK__EXITC_ERROR, exit_code,
2201 _("--option must be used with --validate and without -r"));
2202 g_hash_table_destroy(options.cmdline_params);
2203 goto done;
2204 }
2205
2206 // Ensure --resource is set if it's required
2207 if (pcmk__is_set(command_info->flags, crm_rsc_requires_resource)
2208 && !has_cmdline_config()
2209 && !options.clear_expired
2210 && (options.rsc_id == NULL)) {
2211
2212 exit_code = CRM_EX_USAGE;
2213 g_set_error(&error, PCMK__EXITC_ERROR, exit_code,
2214 _("Must supply a resource ID with -r/--resource"));
2215 goto done;
2216 }
2217
2218 // Ensure --node is set if it's required
2219 if (pcmk__is_set(command_info->flags, crm_rsc_requires_node)
2220 && (options.host_uname == NULL)) {
2221
2222 exit_code = CRM_EX_USAGE;
2223 g_set_error(&error, PCMK__EXITC_ERROR, exit_code,
2224 _("Must supply a node name with -N/--node"));
2225 goto done;
2226 }
2227
2228 // Establish a connection to the CIB if needed
2229 if (pcmk__is_set(command_info->flags, crm_rsc_requires_cib)
2230 && !has_cmdline_config()) {
2231
2232 rc = cib__create_signon(&cib_conn);
2233 if (rc != pcmk_rc_ok) {
2234 exit_code = pcmk_rc2exitc(rc);
2235 g_set_error(&error, PCMK__EXITC_ERROR, exit_code,
2236 _("Could not connect to the CIB: %s"), pcmk_rc_str(rc));
2237 goto done;
2238 }
2239 }
2240
2241 // Populate scheduler data from CIB query if needed
2242 if (pcmk__is_set(command_info->flags, crm_rsc_requires_scheduler)
2243 && !has_cmdline_config()) {
2244
2245 rc = initialize_scheduler_data(&scheduler, cib_conn, out,
2246 &cib_xml_orig);
2247 if (rc != pcmk_rc_ok) {
2248 exit_code = pcmk_rc2exitc(rc);
2249 goto done;
2250 }
2251 }
2252
2253 // Establish a connection to the controller if needed
2254 if (pcmk__is_set(command_info->flags, crm_rsc_requires_controller)
2255 && (getenv("CIB_file") == NULL)) {
2256
2257 rc = pcmk_new_ipc_api(&controld_api, pcmk_ipc_controld);
2258 if (rc != pcmk_rc_ok) {
2259 exit_code = pcmk_rc2exitc(rc);
2260 g_set_error(&error, PCMK__EXITC_ERROR, exit_code,
2261 _("Error connecting to the controller: %s"), pcmk_rc_str(rc));
2262 goto done;
2263 }
2264
2265 pcmk_register_ipc_callback(controld_api, controller_event_callback,
2266 &exit_code);
2267
2268 rc = pcmk__connect_ipc(controld_api, pcmk_ipc_dispatch_main, 5);
2269 if (rc != pcmk_rc_ok) {
2270 exit_code = pcmk_rc2exitc(rc);
2271 g_set_error(&error, PCMK__EXITC_ERROR, exit_code,
2272 _("Error connecting to %s: %s"),
2273 pcmk_ipc_name(controld_api, true), pcmk_rc_str(rc));
2274 goto done;
2275 }
2276 }
2277
2278 /* Find node if --node was given.
2279 *
2280 * @TODO Consider stricter validation. Currently we ignore the --node
2281 * argument for commands that don't require scheduler data, since we have no
2282 * way to find the node in that case. This is really a usage error, but we
2283 * don't validate strictly. We allow multiple commands (and in some cases
2284 * their options like --node) to be specified, and we use the last one in
2285 * case of conflicts.
2286 *
2287 * This isn't universally true. --expired results in a usage error unless
2288 * the final command is --clear.
2289 */
2290 if (options.host_uname != NULL) {
2291 node = pcmk_find_node(scheduler, options.host_uname);
2292
2293 if (node == NULL) {
2294 exit_code = CRM_EX_NOSUCH;
2295 g_set_error(&error, PCMK__EXITC_ERROR, exit_code,
2296 _("Node '%s' not found"), options.host_uname);
2297 goto done;
2298 }
2299 }
2300
2301 /* Find resource if --resource was given and any find flags are set.
2302 *
2303 * @TODO Consider stricter validation. See comment above for --node.
2304 * @TODO Setter macro for tracing?
2305 */
2306 if (pcmk__is_set(command_info->flags, crm_rsc_find_match_anon_basename)) {
2307 find_flags |= pcmk_rsc_match_anon_basename;
2308 }
2309 if (pcmk__is_set(command_info->flags, crm_rsc_find_match_basename)) {
2310 find_flags |= pcmk_rsc_match_basename;
2311 }
2312 if (pcmk__is_set(command_info->flags, crm_rsc_find_match_history)) {
2313 find_flags |= pcmk_rsc_match_history;
2314 }
2315 if ((find_flags != 0) && (options.rsc_id != NULL)) {
2316 pcmk__assert(scheduler != NULL);
2317
2318 rsc = pe_find_resource_with_flags(scheduler->priv->resources,
2319 options.rsc_id, find_flags);
2320 if (rsc == NULL) {
2321 exit_code = CRM_EX_NOSUCH;
2322 g_set_error(&error, PCMK__EXITC_ERROR, exit_code,
2323 _("Resource '%s' not found"), options.rsc_id);
2324 goto done;
2325 }
2326
2327 if (pcmk__is_set(command_info->flags, crm_rsc_rejects_clone_instance)
2328 && pcmk__is_clone(rsc->priv->parent)
2329 && (strchr(options.rsc_id, ':') != NULL)) {
2330
2331 exit_code = CRM_EX_INVALID_PARAM;
2332 g_set_error(&error, PCMK__EXITC_ERROR, exit_code,
2333 _("Cannot operate on clone resource instance '%s'"),
2334 options.rsc_id);
2335 goto done;
2336 }
2337 }
2338
2339 exit_code = command_info->fn(rsc, node, cib_conn, scheduler, controld_api,
2340 cib_xml_orig);
2341
2342 done:
2343 // For CRM_EX_USAGE, error is already set satisfactorily
2344 if ((exit_code != CRM_EX_OK) && (exit_code != CRM_EX_USAGE)) {
2345 if (error != NULL) {
2346 char *msg = pcmk__assert_asprintf("%s\nError performing operation: "
2347 "%s",
2348 error->message,
2349 crm_exit_str(exit_code));
2350 g_clear_error(&error);
2351 g_set_error(&error, PCMK__EXITC_ERROR, exit_code, "%s", msg);
2352 free(msg);
2353 } else {
2354 g_set_error(&error, PCMK__EXITC_ERROR, exit_code,
2355 _("Error performing operation: %s"), crm_exit_str(exit_code));
2356 }
2357 }
2358
2359 g_free(options.host_uname);
2360 g_free(options.interval_spec);
2361 g_free(options.move_lifetime);
2362 g_free(options.operation);
2363 g_free(options.prop_id);
2364 free(options.prop_name);
2365 g_free(options.prop_set);
2366 g_free(options.prop_value);
2367 g_free(options.rsc_id);
2368 g_free(options.rsc_type);
2369 free(options.agent_spec);
2370 g_free(options.agent);
2371 g_free(options.class);
2372 g_free(options.provider);
2373 g_clear_pointer(&options.override_params, g_hash_table_destroy);
2374 g_strfreev(options.remainder);
2375
2376 // Don't destroy options.cmdline_params here. See comment in option_cb().
2377
2378 g_strfreev(processed_args);
2379 g_option_context_free(context);
2380
2381 pcmk__xml_free(cib_xml_orig);
2382 cib__clean_up_connection(&cib_conn);
2383 pcmk_free_ipc_api(controld_api);
2384 pcmk_free_scheduler(scheduler);
2385 if (mainloop != NULL) {
2386 g_main_loop_unref(mainloop);
2387 }
2388
2389 pcmk__output_and_clear_error(&error, out);
2390
2391 if (out != NULL) {
2392 out->finish(out, exit_code, true, NULL);
2393 pcmk__output_free(out);
2394 }
2395
2396 pcmk__unregister_formats();
2397 return crm_exit(exit_code);
2398 }
2399