12 #include <sys/types.h> 39 static int operations = 0;
40 static GHashTable *recurring_actions = NULL;
44 static GList *blocked_ops = NULL;
47 static GList *inflight_ops = NULL;
49 static void handle_blocked_ops(
void);
81 init_recurring_actions(
void)
83 if (recurring_actions == NULL) {
96 static inline gboolean
101 && (g_list_find(inflight_ops, op) != NULL);
117 expand_resource_class(
const char *rsc,
const char *standard,
const char *agent)
119 char *expanded_class = NULL;
121 #if PCMK__ENABLE_SERVICE 125 if (found_class != NULL) {
126 crm_debug(
"Found %s agent %s for %s", found_class, agent, rsc);
129 const char *default_standard = NULL;
133 #elif SUPPORT_SYSTEMD 136 #error No standards supported for service alias (configure script bug) 138 crm_info(
"Assuming resource class %s for agent %s for %s",
139 default_standard, agent, rsc);
145 if (expanded_class == NULL) {
148 return expanded_class;
178 required_argument_missing(uint32_t ra_caps,
const char *
name,
179 const char *standard,
const char *provider,
180 const char *agent,
const char *
action)
182 if (pcmk__str_empty(
name)) {
183 crm_info(
"Cannot create operation without resource name (bug?)");
187 if (pcmk__str_empty(standard)) {
188 crm_info(
"Cannot create operation for %s without resource class (bug?)",
194 && pcmk__str_empty(provider)) {
195 crm_info(
"Cannot create operation for %s resource %s " 196 "without provider (bug?)", standard,
name);
200 if (pcmk__str_empty(agent)) {
201 crm_info(
"Cannot create operation for %s without agent name (bug?)",
206 if (pcmk__str_empty(
action)) {
207 crm_info(
"Cannot create operation for %s without action name (bug?)",
217 const char *standard,
const char *provider,
218 const char *agent,
const char *
action)
221 if (op->
rsc == NULL) {
225 op->
agent = strdup(agent);
226 if (op->
agent == NULL) {
230 op->
standard = expand_resource_class(
name, standard, agent);
255 const char *provider,
const char *agent,
265 crm_crit(
"Cannot prepare action: %s", strerror(ENOMEM));
266 if (params != NULL) {
267 g_hash_table_destroy(params);
280 }
else if (params != NULL) {
281 g_hash_table_destroy(params);
285 if (required_argument_missing(ra_caps,
name, standard, provider, agent,
289 "Required agent or action information missing");
295 if (copy_action_arguments(op, ra_caps,
name, standard, provider, agent,
297 crm_crit(
"Cannot prepare %s action for %s: %s",
320 crm_info(
"Cannot prepare %s operation for %s: %s",
329 const char *provider,
const char *agent,
336 if (op == NULL || op->
rc != 0) {
358 crm_crit(
"Cannot prepare action for '%s': %s", exec, strerror(ENOMEM));
368 for (
int cur_arg = 1; args[cur_arg - 1] != NULL; cur_arg++) {
371 crm_info(
"Cannot prepare action for '%s': Too many arguments",
378 op->
opaque->
args[cur_arg] = strdup(args[cur_arg - 1]);
380 crm_crit(
"Cannot prepare action for '%s': %s",
381 exec, strerror(ENOMEM));
407 GHashTable *params,
int sequence,
void *cb_data)
415 action->sequence = sequence;
416 action->cb_data = cb_data;
437 CRM_CHECK((op != NULL) && (user != NULL),
return -EINVAL);
457 action->synchronous =
false;
458 action->opaque->callback = cb;
471 services_set_op_pending(
svc_action_t *op, DBusPendingCall *pending)
473 if (op->
opaque->pending && (op->
opaque->pending != pending)) {
479 dbus_pending_call_unref(op->
opaque->pending);
481 op->
opaque->pending = pending;
483 crm_trace(
"Updated pending %s DBus call (%p)", op->
id, pending);
493 if ((op == NULL) || (op->
opaque == NULL)) {
498 if(op->
opaque->timerid != 0) {
500 g_source_remove(op->
opaque->timerid);
505 if (dbus_pending_call_get_completed(op->
opaque->pending)) {
507 crm_warn(
"Result of %s op %s was unhandled",
510 crm_debug(
"Will ignore any result of canceled %s op %s",
513 dbus_pending_call_cancel(op->
opaque->pending);
514 services_set_op_pending(op, NULL);
558 crm_warn(
"Treating result from unknown standard '%s' as OCF",
559 ((standard == NULL)?
"unspecified" : standard));
577 CRM_CHECK(g_list_find(inflight_ops, op) == NULL,
return);
578 CRM_CHECK(g_list_find(blocked_ops, op) == NULL,
return);
580 || (g_hash_table_lookup(recurring_actions, op->
id) == NULL),
610 g_hash_table_destroy(op->
params);
622 if (recurring_actions) {
623 g_hash_table_remove(recurring_actions, op->
id);
646 gboolean cancelled = FALSE;
651 init_recurring_actions();
652 op = g_hash_table_lookup(recurring_actions,
id);
670 crm_info(
"Terminating in-flight op %s[%d] early because it was cancelled",
673 if (cancelled == FALSE) {
674 crm_err(
"Termination of %s[%d] failed",
id, op->
pid);
681 if (inflight_systemd(op)) {
682 inflight_ops = g_list_remove(inflight_ops, op);
701 blocked_ops = g_list_remove(blocked_ops, op);
717 init_recurring_actions();
718 op = g_hash_table_lookup(recurring_actions,
id);
726 if (op->
pid || inflight_systemd(op)) {
753 dup = g_hash_table_lookup(recurring_actions, op->
id);
755 if (dup && (dup != op)) {
818 inflight_ops = g_list_append(inflight_ops, op);
832 inflight_ops = g_list_remove(inflight_ops, op);
833 blocked_ops = g_list_remove(blocked_ops, op);
836 handle_blocked_ops();
847 if (action_callback != NULL) {
850 if (action_fork_callback != NULL) {
855 init_recurring_actions();
856 if (handle_duplicate_recurring(op)) {
861 g_hash_table_replace(recurring_actions, op->
id, op);
866 blocked_ops = g_list_append(blocked_ops, op);
880 static gboolean processing_blocked_ops = FALSE;
888 for (gIter = inflight_ops; gIter != NULL; gIter = gIter->next) {
899 handle_blocked_ops(
void)
901 GList *executed_ops = NULL;
905 if (processing_blocked_ops) {
910 processing_blocked_ops = TRUE;
914 for (gIter = blocked_ops; gIter != NULL; gIter = gIter->next) {
919 executed_ops = g_list_append(executed_ops, op);
927 for (gIter = executed_ops; gIter != NULL; gIter = gIter->next) {
929 blocked_ops = g_list_remove(blocked_ops, op);
931 g_list_free(executed_ops);
933 processing_blocked_ops = FALSE;
947 const char *
class = op->standard;
949 if (op->
agent == NULL) {
950 crm_info(
"Meta-data requested without specifying agent");
957 crm_info(
"Meta-data requested for agent %s without specifying class",
961 "Agent standard not specified");
965 #if PCMK__ENABLE_SERVICE 970 crm_info(
"Meta-data requested for %s, but could not determine class",
974 "Agent standard could not be determined");
986 return execute_action(op);
1009 rc = (execute_metadata_action(op) ==
pcmk_rc_ok);
1033 GList *standards = NULL;
1037 #if PCMK__ENABLE_SERVICE 1041 #if PCMK__ENABLE_LSB 1049 if (agents != NULL) {
1050 standards = g_list_append(standards,
1052 g_list_free_full(agents, free);
1073 if ((standard == NULL)
1083 if (standard == NULL) {
1087 result = g_list_concat(tmp1, tmp2);
1091 #if PCMK__ENABLE_LSB 1099 result = g_list_concat(tmp1, tmp2);
1107 #if PCMK__ENABLE_LSB 1123 GList *standards = NULL;
1124 GList *providers = NULL;
1126 gboolean rc = FALSE;
1127 gboolean has_providers = FALSE;
1130 for (iter = standards; iter != NULL; iter = iter->next) {
1144 if (has_providers == TRUE && provider != NULL) {
1146 for (iter = providers; iter != NULL; iter = iter->next) {
1152 }
else if (has_providers == FALSE && provider == NULL) {
1160 #if PCMK__ENABLE_SERVICE 1162 #if PCMK__ENABLE_LSB 1182 #if PCMK__ENABLE_LSB 1197 g_list_free(standards);
1198 g_list_free(providers);
1219 action->rc = agent_status;
1220 action->status = exec_status;
1222 if (!pcmk__str_eq(
action->opaque->exit_reason, reason,
1224 free(
action->opaque->exit_reason);
1225 action->opaque->exit_reason = (reason == NULL)? NULL : strdup(reason);
1243 const char *format, ...)
1247 char *reason = NULL;
1253 action->rc = agent_status;
1254 action->status = exec_status;
1256 if (format != NULL) {
1257 va_start(ap, format);
1258 len = vasprintf(&reason, format, ap);
1262 free(
action->opaque->exit_reason);
1263 action->opaque->exit_reason = reason;
1279 free(
action->opaque->exit_reason);
1280 action->opaque->exit_reason = NULL;
1299 return "Fence agent";
1302 return "Alert agent";
1304 return "Resource agent";
1319 return action->opaque->exit_reason;
1335 char *output =
action->stdout_data;
1337 action->stdout_data = NULL;
1354 char *output =
action->stderr_data;
1356 action->stderr_data = NULL;
int rc
Exit status of action (set by library upon completion)
#define CRM_CHECK(expr, failure_action)
void(* callback)(svc_action_t *op)
int services__execute_systemd(svc_action_t *op)
ocf_exitcode
Exit status codes for resource agents.
#define crm_crit(fmt, args...)
guint interval_ms
Action interval for recurring resource actions, otherwise 0.
GList * resources_list_providers(const char *standard)
Get a list of providers.
gboolean services_action_async_fork_notify(svc_action_t *op, void(*action_callback)(svc_action_t *), void(*action_fork_callback)(svc_action_t *))
Run an action asynchronously, with callback after process is forked.
#define PCMK_RESOURCE_CLASS_SERVICE
char * standard
Resource standard for resource actions, otherwise NULL.
gboolean mainloop_child_kill(pid_t pid)
#define PCMK__OP_FMT
printf-style format to create operation key from resource, action, interval
char * services__grab_stdout(svc_action_t *action)
mainloop_io_t * stderr_gsource
#define PCMK_ACTION_META_DATA
#define PCMK_ACTION_MONITOR
gboolean recurring_action_timer(gpointer data)
GList * services_os_get_directory_list(const char *root, gboolean files, gboolean executable)
int services__generic_error(const svc_action_t *op)
gboolean services_action_async(svc_action_t *op, void(*action_callback)(svc_action_t *))
Request asynchronous execution of an action.
#define PCMK_RESOURCE_CLASS_OCF
char * rsc
XML ID of resource being executed for resource actions, otherwise NULL.
int crm_user_lookup(const char *name, uid_t *uid, gid_t *gid)
const char * services__action_kind(const svc_action_t *action)
#define PCMK_RESOURCE_CLASS_SYSTEMD
int timeout
Action timeout (in milliseconds)
Execution failed, do not retry on node.
gboolean resources_agent_exists(const char *standard, const char *provider, const char *agent)
Check whether a resource agent exists on the local host.
gboolean is_op_blocked(const char *rsc)
Wrappers for and extensions to glib mainloop.
svc_action_t * services_action_create_generic(const char *exec, const char *args[])
Request execution of an arbitrary command.
int services__get_lsb_metadata(const char *type, char **output)
#define PCMK__ENABLE_SERVICE
#define PCMK_ACTION_STATUS
GList * services__list_lsb_agents(void)
enum svc_action_flags flags
Flag group of enum svc_action_flags.
#define crm_warn(fmt, args...)
void services__set_cancelled(svc_action_t *action)
gboolean cancel_recurring_action(svc_action_t *op)
GList * resources_os_list_ocf_providers(void)
svc_action_private_t * opaque
This field should be treated as internal to Pacemaker.
#define crm_debug(fmt, args...)
Used only to initialize variables.
void services_untrack_op(const svc_action_t *op)
char * stdout_data
Action stdout (set by library)
svc_action_t * services_alert_create(const char *id, const char *exec, int timeout, GHashTable *params, int sequence, void *cb_data)
Create an alert agent action.
gboolean systemd_unit_exists(const char *name)
#define crm_trace(fmt, args...)
#define PCMK_RESOURCE_CLASS_STONITH
int services__finalize_async_op(svc_action_t *op)
int services__ocf_prepare(svc_action_t *op)
Object for executing external actions.
#define pcmk_is_set(g, f)
Convenience alias for pcmk_all_flags_set(), to check single flag.
gboolean services_alert_async(svc_action_t *action, void(*cb)(svc_action_t *op))
Execute an alert agent action.
char * agent
Resource agent name for resource actions, otherwise NULL.
Wrappers for and extensions to libxml2.
Action completed, result is known.
int services__lsb_prepare(svc_action_t *op)
int pcmk_legacy2rc(int legacy_rc)
Execution failed, do not retry anywhere.
gboolean services_action_sync(svc_action_t *op)
char * pcmk__op_key(const char *rsc_id, const char *op_type, guint interval_ms)
Generate an operation key (RESOURCE_ACTION_INTERVAL)
#define pcmk__str_copy(str)
svc_action_t * services__create_resource_action(const char *name, const char *standard, const char *provider, const char *agent, const char *action, guint interval_ms, int timeout, GHashTable *params, enum svc_action_flags flags)
Create a new resource action.
GList * systemd_unit_listall(void)
const char * resources_find_service_class(const char *agent)
Find first service class that can provide a specified agent.
#define pcmk__assert(expr)
GList * resources_list_agents(const char *standard, const char *provider)
Get a list of resource agents.
enum ocf_exitcode services__lsb2ocf(const char *action, int exit_status)
void services_add_inflight_op(svc_action_t *op)
int services__systemd_prepare(svc_action_t *op)
GList * resources_list_standards(void)
char * action
Name of action being executed for resource actions, otherwise NULL.
GHashTable * pcmk__strkey_table(GDestroyNotify key_destroy_func, GDestroyNotify value_destroy_func)
GList * get_directory_list(const char *root, gboolean files, gboolean executable)
Get a list of files or directories in a given path.
pcmk__action_result_t result
svc_action_t * resources_action_create(const char *name, const char *standard, const char *provider, const char *agent, const char *action, guint interval_ms, int timeout, GHashTable *params, enum svc_action_flags flags)
Create a new resource action.
#define crm_err(fmt, args...)
enum ocf_exitcode services__systemd2ocf(int exit_status)
char * services__grab_stderr(svc_action_t *action)
int status
Execution status (enum pcmk_exec_status set by library)
#define PCMK_RESOURCE_CLASS_LSB
void services__handle_exec_error(svc_action_t *op, int error)
int services_action_user(svc_action_t *op, const char *user)
Set the user and group that an action will execute as.
#define pcmk__mem_assert(ptr)
void services__set_result(svc_action_t *action, int agent_status, enum pcmk_exec_status exec_status, const char *reason)
mainloop_io_t * stdout_gsource
enum ocf_exitcode services__ocf2ocf(int exit_status)
void mainloop_del_fd(mainloop_io_t *client)
GList * resources_os_list_ocf_agents(const char *provider)
void * cb_data
For caller's use (not used by library)
uint32_t pcmk_get_ra_caps(const char *standard)
Get capabilities of a resource agent standard.
void services_action_cleanup(svc_action_t *op)
pcmk_exec_status
Execution status.
void services__format_result(svc_action_t *action, int agent_status, enum pcmk_exec_status exec_status, const char *format,...)
#define PCMK_RESOURCE_CLASS_ALERT
const char * services__exit_reason(const svc_action_t *action)
void services_action_free(svc_action_t *op)
enum ocf_exitcode services_result2ocf(const char *standard, const char *action, int exit_status)
gboolean services__ocf_agent_exists(const char *provider, const char *agent)
char * provider
Resource provider for resource actions that require it, otherwise NULL.
void(* fork_callback)(svc_action_t *op)
Execution failed, may be retried.
#define crm_info(fmt, args...)
gboolean services_action_cancel(const char *name, const char *action, guint interval_ms)
Cancel a recurring action.
gboolean services_action_kick(const char *name, const char *action, guint interval_ms)
Reschedule a recurring action for immediate execution.
bool services__lsb_agent_exists(const char *agent)
int services__execute_file(svc_action_t *op)
char * stderr_data
Action stderr (set by library)