24 #define RH_STONITH_PREFIX "fence_" 40 struct dirent **namelist;
43 #if _POSIX_C_SOURCE < 200809L && !(defined(O_SEARCH) || defined(O_PATH)) 44 char buffer[FILENAME_MAX + 1];
45 #elif defined(O_SEARCH) 51 for (i = 0; i < file_num; i++) {
55 #if _POSIX_C_SOURCE < 200809L && !(defined(O_SEARCH) || defined(O_PATH)) 58 if (stat(buffer, &prop) == 0 && S_ISREG(prop.st_mode)) {
71 if (fstatat(dirfd, namelist[i]->d_name, &prop, 0) == 0
72 && S_ISREG(prop.st_mode)) {
84 #if _POSIX_C_SOURCE >= 200809L || defined(O_SEARCH) || defined(O_PATH) 93 stonith_rhcs_parameter_not_required(xmlNode *metadata,
const char *parameter)
96 xmlXPathObject *xpathObj = NULL;
105 if (numXpathResults(xpathObj) > 0) {
124 stonith__rhcs_get_metadata(
const char *agent,
int timeout, xmlNode **metadata)
127 xmlNode *actions = NULL;
128 xmlXPathObject *xpathObj = NULL;
131 5, NULL, NULL, NULL);
135 crm_warn(
"Could not execute metadata action for %s: %s " 144 crm_warn(
"Could not execute metadata action for %s: %s",
151 if (!pcmk__result_ok(
result)) {
152 crm_warn(
"Metadata action for %s returned error code %d",
160 crm_warn(
"Metadata action for %s returned no data", agent);
169 crm_warn(
"Metadata for %s is invalid", agent);
174 if (numXpathResults(xpathObj) > 0) {
181 if (numXpathResults(xpathObj) <= 0) {
195 stonith_rhcs_parameter_not_required(xml,
"action");
196 stonith_rhcs_parameter_not_required(xml,
"plug");
197 stonith_rhcs_parameter_not_required(xml,
"port");
224 int rc = stonith__rhcs_get_metadata(agent,
timeout, &xml);
233 if (buffer == NULL) {
249 int rc = stat(buffer, &prop);
252 return (rc >= 0) && S_ISREG(prop.st_mode);
257 const char *agent, GHashTable *params,
258 const char * host_arg,
int timeout,
259 char **output,
char **error_output)
262 int remaining_timeout =
timeout;
263 xmlNode *metadata = NULL;
266 if (host_arg == NULL) {
267 time_t start_time = time(NULL);
269 rc = stonith__rhcs_get_metadata(agent, remaining_timeout, &metadata);
272 uint32_t device_flags = 0;
286 remaining_timeout -= time(NULL) - start_time;
288 if (rc == -
ETIME || remaining_timeout <= 0 ) {
297 target, 0, remaining_timeout, params,
307 if (output != NULL) {
311 if (error_output != NULL) {
void stonith__destroy_action(stonith_action_t *action)
#define CRM_CHECK(expr, failure_action)
struct stonith_action_s stonith_action_t
#define pcmk_err_schema_validation
#define crm_notice(fmt, args...)
bool stonith__agent_is_rhcs(const char *agent)
const char * pcmk_strerror(int rc)
#define PCMK__FENCE_BINDIR
int pcmk_rc2legacy(int rc)
int alphasort(const void *dirent1, const void *dirent2)
int stonith__result2rc(const pcmk__action_result_t *result)
enum pcmk_exec_status execution_status
const char * crm_xml_add(xmlNode *node, const char *name, const char *value)
Create an XML attribute with specified name and value.
stonith_action_t * stonith_action_create(const char *agent, const char *_action, const char *victim, uint32_t victim_nodeid, int timeout, GHashTable *device_args, GHashTable *port_map, const char *host_arg)
int stonith__rhcs_metadata(const char *agent, int timeout, char **output)
Execute RHCS-compatible agent's meta-data action.
int stonith__rhcs_validate(stonith_t *st, int call_options, const char *target, const char *agent, GHashTable *params, const char *host_arg, int timeout, char **output, char **error_output)
xmlNode * string2xml(const char *input)
stonith_key_value_t * stonith_key_value_add(stonith_key_value_t *kvp, const char *key, const char *value)
#define crm_warn(fmt, args...)
void stonith__device_parameter_flags(uint32_t *device_flags, const char *device_name, xmlNode *metadata)
pcmk__action_result_t * stonith__action_result(stonith_action_t *action)
char * crm_strdup_printf(char const *format,...) G_GNUC_PRINTF(1
#define pcmk_is_set(g, f)
Convenience alias for pcmk_all_flags_set(), to check single flag.
xmlNode * create_xml_node(xmlNode *parent, const char *name)
Action completed, result is known.
#define CRM_DEFAULT_OP_TIMEOUT_S
void free_xml(xmlNode *child)
#define RH_STONITH_PREFIX
pcmk__action_result_t result
int stonith__list_rhcs_agents(stonith_key_value_t **devices)
xmlXPathObjectPtr xpath_search(xmlNode *xml_top, const char *path)
xmlNode * getXpathResult(xmlXPathObjectPtr xpathObj, int index)
bool pcmk__starts_with(const char *str, const char *prefix)
Check whether a string starts with a certain sequence.
void freeXpathObject(xmlXPathObjectPtr xpathObj)
char * dump_xml_formatted_with_text(xmlNode *msg)
G_GNUC_INTERNAL int stonith__execute(stonith_action_t *action)