pacemaker  2.1.6-802a72226b
Scalable High-Availability cluster resource manager
pcmk_resource.c
Go to the documentation of this file.
1 /*
2  * Copyright 2021-2023 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 <errno.h>
13 #include <glib.h>
14 #include <libxml/tree.h>
15 
16 #include <crm/common/mainloop.h>
17 #include <crm/common/results.h>
19 #include <crm/pengine/internal.h>
20 
21 #include <pacemaker.h>
22 #include <pacemaker-internal.h>
23 
24 // Search path for resource operation history (takes node name and resource ID)
25 #define XPATH_OP_HISTORY "//" XML_CIB_TAG_STATUS \
26  "/" XML_CIB_TAG_STATE "[@" XML_ATTR_UNAME "='%s']" \
27  "/" XML_CIB_TAG_LRM "/" XML_LRM_TAG_RESOURCES \
28  "/" XML_LRM_TAG_RESOURCE "[@" XML_ATTR_ID "='%s']"
29 
30 static xmlNode *
31 best_op(const pe_resource_t *rsc, const pe_node_t *node,
33 {
34  char *xpath = NULL;
35  xmlNode *history = NULL;
36  xmlNode *best = NULL;
37  bool best_effective_op = false;
38  guint best_interval = 0;
39  bool best_failure = false;
40  const char *best_digest = NULL;
41 
42  // Find node's resource history
43  xpath = crm_strdup_printf(XPATH_OP_HISTORY, node->details->uname, rsc->id);
44  history = get_xpath_object(xpath, data_set->input, LOG_NEVER);
45  free(xpath);
46 
47  // Examine each history entry
48  for (xmlNode *lrm_rsc_op = first_named_child(history, XML_LRM_TAG_RSC_OP);
49  lrm_rsc_op != NULL; lrm_rsc_op = crm_next_same_xml(lrm_rsc_op)) {
50 
51  const char *digest = crm_element_value(lrm_rsc_op,
53  guint interval_ms = 0;
54  const char *task = crm_element_value(lrm_rsc_op, XML_LRM_ATTR_TASK);
55  bool effective_op = false;
56  bool failure = pcmk__ends_with(ID(lrm_rsc_op), "_last_failure_0");
57 
58 
59  crm_element_value_ms(lrm_rsc_op, XML_LRM_ATTR_INTERVAL, &interval_ms);
60  effective_op = interval_ms == 0
63  RSC_MIGRATED, NULL);
64 
65  if (best == NULL) {
66  goto is_best;
67  }
68 
69  if (best_effective_op) {
70  // Do not use an ineffective op if there's an effective one.
71  if (!effective_op) {
72  continue;
73  }
74  // Do not use an ineffective non-recurring op if there's a recurring one.
75  } else if (best_interval != 0
76  && !effective_op
77  && interval_ms == 0) {
78  continue;
79  }
80 
81  // Do not use last failure if there's a successful one.
82  if (!best_failure && failure) {
83  continue;
84  }
85 
86  // Do not use an op without a restart digest if there's one with.
87  if (best_digest != NULL && digest == NULL) {
88  continue;
89  }
90 
91  // Do not use an older op if there's a newer one.
92  if (pe__is_newer_op(best, lrm_rsc_op, true) > 0) {
93  continue;
94  }
95 
96 is_best:
97  best = lrm_rsc_op;
98  best_effective_op = effective_op;
99  best_interval = interval_ms;
100  best_failure = failure;
101  best_digest = digest;
102  }
103  return best;
104 }
105 
117 int
119  const pe_node_t *node, GHashTable *overrides)
120 {
121  const char *task = NULL;
122  xmlNode *xml_op = NULL;
123  op_digest_cache_t *digests = NULL;
124  guint interval_ms = 0;
125  int rc = pcmk_rc_ok;
126 
127  if ((out == NULL) || (rsc == NULL) || (node == NULL)) {
128  return EINVAL;
129  }
130  if (rsc->variant != pe_native) {
131  // Only primitives get operation digests
132  return EOPNOTSUPP;
133  }
134 
135  // Find XML of operation history to use
136  xml_op = best_op(rsc, node, rsc->cluster);
137 
138  // Generate an operation key
139  if (xml_op != NULL) {
140  task = crm_element_value(xml_op, XML_LRM_ATTR_TASK);
141  crm_element_value_ms(xml_op, XML_LRM_ATTR_INTERVAL_MS, &interval_ms);
142  }
143  if (task == NULL) { // Assume start if no history is available
144  task = RSC_START;
145  interval_ms = 0;
146  }
147 
148  // Calculate and show digests
149  digests = pe__calculate_digests(rsc, task, &interval_ms, node, xml_op,
150  overrides, true, rsc->cluster);
151  rc = out->message(out, "digests", rsc, node, task, interval_ms, digests);
152 
153  pe__free_digests(digests);
154  return rc;
155 }
156 
157 int
158 pcmk_resource_digests(xmlNodePtr *xml, pe_resource_t *rsc,
159  const pe_node_t *node, GHashTable *overrides,
161 {
162  pcmk__output_t *out = NULL;
163  int rc = pcmk_rc_ok;
164 
165  rc = pcmk__xml_output_new(&out, xml);
166  if (rc != pcmk_rc_ok) {
167  return rc;
168  }
170  rc = pcmk__resource_digests(out, rsc, node, overrides);
171  pcmk__xml_output_finish(out, xml);
172  return rc;
173 }
bool pcmk__strcase_any_of(const char *s,...) G_GNUC_NULL_TERMINATED
Definition: strings.c:933
int(* message)(pcmk__output_t *out, const char *message_id,...)
int pcmk_resource_digests(xmlNodePtr *xml, pe_resource_t *rsc, const pe_node_t *node, GHashTable *overrides, pe_working_set_t *data_set)
Calculate and output resource operation digests.
#define XPATH_OP_HISTORY
Definition: pcmk_resource.c:25
xmlNode * first_named_child(const xmlNode *parent, const char *name)
Definition: xml.c:2521
int pe__is_newer_op(const xmlNode *xml_a, const xmlNode *xml_b, bool same_node_default)
Definition: pe_actions.c:1497
#define XML_LRM_ATTR_INTERVAL
Definition: msg_xml.h:309
High Level API.
#define RSC_START
Definition: crm.h:199
bool pcmk__ends_with(const char *s, const char *match)
Definition: strings.c:536
#define LOG_NEVER
Definition: logging.h:47
xmlNode * get_xpath_object(const char *xpath, xmlNode *xml_obj, int error_level)
Definition: xpath.c:214
Wrappers for and extensions to glib mainloop.
int pcmk__resource_digests(pcmk__output_t *out, pe_resource_t *rsc, const pe_node_t *node, GHashTable *overrides)
#define XML_LRM_ATTR_TASK
Definition: msg_xml.h:315
Formatted output for pacemaker tools.
int crm_element_value_ms(const xmlNode *data, const char *name, guint *dest)
Retrieve the millisecond value of an XML attribute.
Definition: nvpair.c:589
const char * crm_element_value(const xmlNode *data, const char *name)
Retrieve the value of an XML attribute.
Definition: nvpair.c:496
int pcmk__xml_output_new(pcmk__output_t **out, xmlNodePtr *xml)
Definition: output.c:236
char * crm_strdup_printf(char const *format,...) G_GNUC_PRINTF(1
struct pe_node_shared_s * details
Definition: pe_types.h:268
const char * uname
Definition: pe_types.h:232
void pcmk__register_lib_messages(pcmk__output_t *out)
Definition: pcmk_output.c:2329
pe_working_set_t * data_set
#define XML_LRM_ATTR_RESTART_DIGEST
Definition: msg_xml.h:331
void pe__free_digests(gpointer ptr)
Definition: pe_digest.c:34
enum pe_obj_types variant
Definition: pe_types.h:356
xmlNode * input
Definition: pe_types.h:160
Function and executable result codes.
#define RSC_STATUS
Definition: crm.h:213
#define RSC_PROMOTE
Definition: crm.h:205
This structure contains everything that makes up a single output formatter.
#define XML_LRM_ATTR_INTERVAL_MS
Definition: msg_xml.h:313
void pcmk__xml_output_finish(pcmk__output_t *out, xmlNodePtr *xml)
Definition: output.c:258
pe_working_set_t * cluster
Definition: pe_types.h:353
#define XML_LRM_TAG_RSC_OP
Definition: msg_xml.h:281
op_digest_cache_t * pe__calculate_digests(pe_resource_t *rsc, const char *task, guint *interval_ms, const pe_node_t *node, const xmlNode *xml_op, GHashTable *overrides, bool calc_secure, pe_working_set_t *data_set)
Definition: pe_digest.c:298
#define ID(x)
Definition: msg_xml.h:480
char * id
Definition: pe_types.h:347
#define RSC_MIGRATED
Definition: crm.h:197
xmlNode * crm_next_same_xml(const xmlNode *sibling)
Get next instance of same XML tag.
Definition: xml.c:2547