16 #include <sys/types.h> 48 static int operations = 0;
49 static GHashTable *recurring_actions = NULL;
53 static GList *blocked_ops = NULL;
56 static GList *inflight_ops = NULL;
58 static void handle_blocked_ops(
void);
93 init_recurring_actions(
void)
95 if (recurring_actions == NULL) {
108 static inline gboolean
113 g_list_find(inflight_ops, op) != NULL;
129 expand_resource_class(
const char *rsc,
const char *standard,
const char *agent)
131 char *expanded_class = NULL;
137 crm_debug(
"Found %s agent %s for %s", found_class, agent, rsc);
138 expanded_class = strdup(found_class);
140 crm_info(
"Assuming resource class lsb for agent %s for %s",
145 expanded_class = strdup(standard);
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,
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",
327 crm_err(
"Cannot prepare %s operation for %s: %s",
336 const char *provider,
const char *agent,
343 if (op == NULL || op->
rc != 0) {
375 for (
int cur_arg = 1; args[cur_arg - 1] != NULL; cur_arg++) {
378 crm_info(
"Cannot prepare action for '%s': Too many arguments",
385 op->
opaque->
args[cur_arg] = strdup(args[cur_arg - 1]);
387 crm_crit(
"Cannot prepare action for '%s': %s",
414 GHashTable *params,
int sequence,
void *cb_data)
421 action->sequence = sequence;
422 action->cb_data = cb_data;
444 CRM_CHECK((op != NULL) && (user != NULL),
return -EINVAL);
462 action->synchronous =
false;
463 action->opaque->callback = cb;
476 services_set_op_pending(
svc_action_t *op, DBusPendingCall *pending)
478 if (op->
opaque->pending && (op->
opaque->pending != pending)) {
484 dbus_pending_call_unref(op->
opaque->pending);
486 op->
opaque->pending = pending;
488 crm_trace(
"Updated pending %s DBus call (%p)", op->
id, pending);
498 if ((op == NULL) || (op->
opaque == NULL)) {
503 if(op->
opaque->timerid != 0) {
505 g_source_remove(op->
opaque->timerid);
510 if (dbus_pending_call_get_completed(op->
opaque->pending)) {
512 crm_warn(
"Result of %s op %s was unhandled",
515 crm_debug(
"Will ignore any result of canceled %s op %s",
518 dbus_pending_call_cancel(op->
opaque->pending);
519 services_set_op_pending(op, NULL);
573 crm_warn(
"Treating result from unknown standard '%s' as OCF",
574 ((standard == NULL)?
"unspecified" : standard));
592 CRM_CHECK(g_list_find(inflight_ops, op) == NULL,
return);
593 CRM_CHECK(g_list_find(blocked_ops, op) == NULL,
return);
595 || (g_hash_table_lookup(recurring_actions, op->
id) == NULL),
625 g_hash_table_destroy(op->
params);
637 if (recurring_actions) {
638 g_hash_table_remove(recurring_actions, op->
id);
661 gboolean cancelled = FALSE;
666 init_recurring_actions();
667 op = g_hash_table_lookup(recurring_actions,
id);
685 crm_info(
"Terminating in-flight op %s[%d] early because it was cancelled",
688 if (cancelled == FALSE) {
689 crm_err(
"Termination of %s[%d] failed",
id, op->
pid);
696 if (inflight_systemd_or_upstart(op)) {
697 inflight_ops = g_list_remove(inflight_ops, op);
716 blocked_ops = g_list_remove(blocked_ops, op);
732 init_recurring_actions();
733 op = g_hash_table_lookup(recurring_actions,
id);
741 if (op->
pid || inflight_systemd_or_upstart(op)) {
768 dup = g_hash_table_lookup(recurring_actions, op->
id);
770 if (dup && (dup != op)) {
840 inflight_ops = g_list_append(inflight_ops, op);
854 inflight_ops = g_list_remove(inflight_ops, op);
855 blocked_ops = g_list_remove(blocked_ops, op);
858 handle_blocked_ops();
867 if (action_callback) {
870 if (action_fork_callback) {
875 init_recurring_actions();
876 if (handle_duplicate_recurring(op) == TRUE) {
881 g_hash_table_replace(recurring_actions, op->
id, op);
886 blocked_ops = g_list_append(blocked_ops, op);
900 static gboolean processing_blocked_ops = FALSE;
908 for (gIter = inflight_ops; gIter != NULL; gIter = gIter->next) {
919 handle_blocked_ops(
void)
921 GList *executed_ops = NULL;
925 if (processing_blocked_ops) {
930 processing_blocked_ops = TRUE;
934 for (gIter = blocked_ops; gIter != NULL; gIter = gIter->next) {
939 executed_ops = g_list_append(executed_ops, op);
947 for (gIter = executed_ops; gIter != NULL; gIter = gIter->next) {
949 blocked_ops = g_list_remove(blocked_ops, op);
951 g_list_free(executed_ops);
953 processing_blocked_ops = FALSE;
967 const char *
class = op->standard;
969 if (op->
agent == NULL) {
970 crm_err(
"meta-data requested without specifying agent");
977 crm_err(
"meta-data requested for agent %s without specifying class",
981 "Agent standard not specified");
989 crm_err(
"meta-data requested for %s, but could not determine class",
993 "Agent standard could not be determined");
1009 return execute_action(op);
1056 GList *standards = NULL;
1066 if (agents != NULL) {
1067 standards = g_list_append(standards,
1069 g_list_free_full(agents, free);
1078 if (agents != NULL) {
1079 standards = g_list_append(standards,
1081 g_list_free_full(agents, free);
1090 if (agents != NULL) {
1091 standards = g_list_append(standards,
1093 g_list_free_full(agents, free);
1114 if ((standard == NULL)
1121 if (standard == NULL) {
1125 result = g_list_concat(tmp1, tmp2);
1132 result = g_list_concat(tmp1, tmp2);
1140 result = g_list_concat(tmp1, tmp2);
1170 GList *standards = NULL;
1171 GList *providers = NULL;
1173 gboolean
rc = FALSE;
1174 gboolean has_providers = FALSE;
1177 for (iter = standards; iter != NULL; iter = iter->next) {
1191 if (has_providers == TRUE && provider != NULL) {
1193 for (iter = providers; iter != NULL; iter = iter->next) {
1199 }
else if (has_providers == FALSE && provider == NULL) {
1249 g_list_free(standards);
1250 g_list_free(providers);
1271 action->rc = agent_status;
1272 action->status = exec_status;
1274 if (!pcmk__str_eq(
action->opaque->exit_reason, reason,
1276 free(
action->opaque->exit_reason);
1277 action->opaque->exit_reason = (reason == NULL)? NULL : strdup(reason);
1294 free(
action->opaque->exit_reason);
1295 action->opaque->exit_reason = NULL;
1310 return action->opaque->exit_reason;
1326 char *output =
action->stdout_data;
1328 action->stdout_data = NULL;
1345 char *output =
action->stderr_data;
1347 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.
char * standard
Resource standard for resource actions, otherwise NULL.
bool pcmk__strcase_any_of(const char *s,...) G_GNUC_NULL_TERMINATED
gboolean upstart_job_exists(const char *name)
gboolean mainloop_child_kill(pid_t pid)
enum ocf_exitcode services__upstart2ocf(int exit_status)
int services__nagios_prepare(svc_action_t *op)
char * services__grab_stdout(svc_action_t *action)
mainloop_io_t * stderr_gsource
#define PCMK_RESOURCE_CLASS_SYSTEMD
gboolean recurring_action_timer(gpointer data)
int services__get_nagios_metadata(const char *type, char **output)
GList * services_os_get_directory_list(const char *root, gboolean files, gboolean executable)
const char * services__exit_reason(svc_action_t *action)
gboolean services_action_async(svc_action_t *op, void(*action_callback)(svc_action_t *))
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)
int timeout
Action timeout (in milliseconds)
char * strerror(int errnum)
Execution failed, do not retry on node.
gboolean resources_agent_exists(const char *standard, const char *provider, const char *agent)
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[])
int services__generic_error(svc_action_t *op)
int services__get_lsb_metadata(const char *type, char **output)
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)
#define PCMK_RESOURCE_CLASS_OCF
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.
GList * upstart_job_listall(void)
#define crm_debug(fmt, args...)
Used only to initialize variables.
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 PCMK_RESOURCE_CLASS_SERVICE
#define crm_trace(fmt, args...)
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.
gboolean services__nagios_agent_exists(const char *name)
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)
int services__upstart_prepare(svc_action_t *op)
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.
char * pcmk__op_key(const char *rsc_id, const char *op_type, guint interval_ms)
Generate an operation key (RESOURCE_ACTION_INTERVAL)
int services__execute_upstart(svc_action_t *op)
GList * systemd_unit_listall(void)
const char * resources_find_service_class(const char *agent)
Find first service class that can provide a specified agent.
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)
void services_untrack_op(svc_action_t *op)
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.
#define PCMK_RESOURCE_CLASS_NAGIOS
#define PCMK_RESOURCE_CLASS_LSB
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_UPSTART
GList * services__list_nagios_agents(void)
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.
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_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.
enum ocf_exitcode services__nagios2ocf(int exit_status)
gboolean services_action_kick(const char *name, const char *action, guint interval_ms)
bool services__lsb_agent_exists(const char *agent)
int services__execute_file(svc_action_t *op)
char * stderr_data
Action stderr (set by library)