pacemaker 2.1.5-a3f44794f94
Scalable High-Availability cluster resource manager
pcmk_rule.c
Go to the documentation of this file.
1/*
2 * Copyright 2022 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 Lesser General Public License
7 * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
8 */
9
10#include <crm_internal.h>
11
12#include <crm/cib/internal.h>
13#include <crm/common/cib.h>
14#include <crm/common/iso8601.h>
15#include <crm/msg_xml.h>
17#include <pacemaker-internal.h>
18
28static int
29eval_date_expression(xmlNodePtr expr, crm_time_t *now)
30{
31 pe_rule_eval_data_t rule_data = {
32 .node_hash = NULL,
33 .role = RSC_ROLE_UNKNOWN,
34 .now = now,
35 .match_data = NULL,
36 .rsc_data = NULL,
37 .op_data = NULL
38 };
39
40 return pe__eval_date_expr(expr, &rule_data, NULL);
41}
42
59static int
60init_rule_check(pcmk__output_t *out, xmlNodePtr input, const crm_time_t *date,
62{
63 // Allows for cleaner syntax than dereferencing the data_set argument
64 pe_working_set_t *new_data_set = NULL;
65
66 new_data_set = pe_new_working_set();
67 if (new_data_set == NULL) {
68 return ENOMEM;
69 }
70
71 pe__set_working_set_flags(new_data_set,
73
74 // Populate the working set instance
75
76 // Make our own copy of the given input or fetch the CIB and use that
77 if (input != NULL) {
78 new_data_set->input = copy_xml(input);
79 if (new_data_set->input == NULL) {
80 out->err(out, "Failed to copy input XML");
81 pe_free_working_set(new_data_set);
82 return ENOMEM;
83 }
84
85 } else {
86 int rc = cib__signon_query(NULL, &(new_data_set->input));
87
88 if (rc != pcmk_rc_ok) {
89 out->err(out, "CIB query failed: %s", pcmk_rc_str(rc));
90 pe_free_working_set(new_data_set);
91 return rc;
92 }
93 }
94
95 // Make our own copy of the given crm_time_t object; otherwise
96 // cluster_status() populates with the current time
97 if (date != NULL) {
98 // pcmk_copy_time() guarantees non-NULL
99 new_data_set->now = pcmk_copy_time(date);
100 }
101
102 // Unpack everything
103 cluster_status(new_data_set);
104 *data_set = new_data_set;
105
106 return pcmk_rc_ok;
107}
108
109#define XPATH_NODE_RULE "//" XML_TAG_RULE "[@" XML_ATTR_ID "='%s']"
110
121static int
122eval_rule(pe_working_set_t *data_set, const char *rule_id, const char **error)
123{
124 xmlNodePtr cib_constraints = NULL;
125 xmlNodePtr match = NULL;
126 xmlXPathObjectPtr xpath_obj = NULL;
127 char *xpath = NULL;
128 int rc = pcmk_rc_ok;
129 int num_results = 0;
130
131 *error = NULL;
132
133 /* Rules are under the constraints node in the XML, so first find that. */
134 cib_constraints = pcmk_find_cib_element(data_set->input,
136
137 /* Get all rules matching the given ID that are also simple enough for us
138 * to check. For the moment, these rules must only have a single
139 * date_expression child and:
140 * - Do not have a date_spec operation, or
141 * - Have a date_spec operation that contains years= but does not contain
142 * moon=.
143 *
144 * We do this in steps to provide better error messages. First, check that
145 * there's any rule with the given ID.
146 */
147 xpath = crm_strdup_printf(XPATH_NODE_RULE, rule_id);
148 xpath_obj = xpath_search(cib_constraints, xpath);
149 num_results = numXpathResults(xpath_obj);
150
151 free(xpath);
152 freeXpathObject(xpath_obj);
153
154 if (num_results == 0) {
155 *error = "Rule not found";
156 return ENXIO;
157 }
158
159 if (num_results > 1) {
160 // Should not be possible; schema prevents this
161 *error = "Found more than one rule with matching ID";
163 }
164
165 /* Next, make sure it has exactly one date_expression. */
166 xpath = crm_strdup_printf(XPATH_NODE_RULE "//date_expression", rule_id);
167 xpath_obj = xpath_search(cib_constraints, xpath);
168 num_results = numXpathResults(xpath_obj);
169
170 free(xpath);
171 freeXpathObject(xpath_obj);
172
173 if (num_results != 1) {
174 if (num_results == 0) {
175 *error = "Rule does not have a date expression";
176 } else {
177 *error = "Rule has more than one date expression";
178 }
179 return EOPNOTSUPP;
180 }
181
182 /* Then, check that it's something we actually support. */
183 xpath = crm_strdup_printf(XPATH_NODE_RULE "//date_expression["
184 "@" XML_EXPR_ATTR_OPERATION "!='date_spec']",
185 rule_id);
186 xpath_obj = xpath_search(cib_constraints, xpath);
187 num_results = numXpathResults(xpath_obj);
188
189 free(xpath);
190
191 if (num_results == 0) {
192 freeXpathObject(xpath_obj);
193
194 xpath = crm_strdup_printf(XPATH_NODE_RULE "//date_expression["
195 "@" XML_EXPR_ATTR_OPERATION "='date_spec' "
196 "and date_spec/@years "
197 "and not(date_spec/@moon)]", rule_id);
198 xpath_obj = xpath_search(cib_constraints, xpath);
199 num_results = numXpathResults(xpath_obj);
200
201 free(xpath);
202
203 if (num_results == 0) {
204 freeXpathObject(xpath_obj);
205 *error = "Rule must either not use date_spec, or use date_spec "
206 "with years= but not moon=";
207 return EOPNOTSUPP;
208 }
209 }
210
211 match = getXpathResult(xpath_obj, 0);
212
213 /* We should have ensured this with the xpath query above, but double-
214 * checking can't hurt.
215 */
216 CRM_ASSERT(match != NULL);
218
219 rc = eval_date_expression(match, data_set->now);
220 if (rc == pcmk_rc_undetermined) {
221 /* pe__eval_date_expr() should return this only if something is
222 * malformed or missing
223 */
224 *error = "Error parsing rule";
225 }
226
227 freeXpathObject(xpath_obj);
228 return rc;
229}
230
244int
245pcmk__check_rules(pcmk__output_t *out, xmlNodePtr input, const crm_time_t *date,
246 const char **rule_ids)
247{
249 int rc = pcmk_rc_ok;
250
251 CRM_ASSERT(out != NULL);
252
253 if (rule_ids == NULL) {
254 // Trivial case; every rule specified is in effect
255 return pcmk_rc_ok;
256 }
257
258 rc = init_rule_check(out, input, date, &data_set);
259 if (rc != pcmk_rc_ok) {
260 return rc;
261 }
262
263 for (const char **rule_id = rule_ids; *rule_id != NULL; rule_id++) {
264 const char *error = NULL;
265 int last_rc = eval_rule(data_set, *rule_id, &error);
266
267 out->message(out, "rule-check", *rule_id, last_rc, error);
268
269 if (last_rc != pcmk_rc_ok) {
270 rc = last_rc;
271 }
272 }
273
275 return rc;
276}
277
278// Documented in pacemaker.h
279int
280pcmk_check_rules(xmlNodePtr *xml, xmlNodePtr input, const crm_time_t *date,
281 const char **rule_ids)
282{
283 pcmk__output_t *out = NULL;
284 int rc = pcmk_rc_ok;
285
286 rc = pcmk__xml_output_new(&out, xml);
287 if (rc != pcmk_rc_ok) {
288 return rc;
289 }
290
292
293 rc = pcmk__check_rules(out, input, date, rule_ids);
294 pcmk__xml_output_finish(out, xml);
295 return rc;
296}
int cib__signon_query(cib_t **cib, xmlNode **cib_object)
Definition: cib_utils.c:719
xmlNode * pcmk_find_cib_element(xmlNode *cib, const char *element_name)
Find an element in the CIB.
Definition: cib.c:153
char * crm_strdup_printf(char const *format,...) G_GNUC_PRINTF(1
@ RSC_ROLE_UNKNOWN
Definition: common.h:93
ISO_8601 Date handling.
crm_time_t * pcmk_copy_time(const crm_time_t *source)
Definition: iso8601.c:1265
struct crm_time_s crm_time_t
Definition: iso8601.h:32
#define XML_EXPR_ATTR_OPERATION
Definition: msg_xml.h:346
#define XML_CIB_TAG_CONSTRAINTS
Definition: msg_xml.h:189
pe_working_set_t * data_set
xmlNode * input
int pcmk__xml_output_new(pcmk__output_t **out, xmlNodePtr *xml)
Definition: output.c:201
void pcmk__xml_output_finish(pcmk__output_t *out, xmlNodePtr *xml)
Definition: output.c:223
int pcmk__check_rules(pcmk__output_t *out, xmlNodePtr input, const crm_time_t *date, const char **rule_ids)
Definition: pcmk_rule.c:245
#define XPATH_NODE_RULE
Definition: pcmk_rule.c:109
int pcmk_check_rules(xmlNodePtr *xml, xmlNodePtr input, const crm_time_t *date, const char **rule_ids)
Check whether each rule in a list is in effect.
Definition: pcmk_rule.c:280
void pcmk__register_lib_messages(pcmk__output_t *out)
Definition: pcmk_output.c:2195
#define pe_flag_no_compat
Definition: pe_types.h:132
#define pe_flag_no_counts
Don't count total, disabled and blocked resource instances.
Definition: pe_types.h:127
#define pe__set_working_set_flags(working_set, flags_to_set)
Definition: internal.h:62
#define CRM_ASSERT(expr)
Definition: results.h:42
const char * pcmk_rc_str(int rc)
Get a user-friendly description of a return code.
Definition: results.c:476
@ pcmk_rc_ok
Definition: results.h:148
@ pcmk_rc_undetermined
Definition: results.h:122
@ pcmk_rc_duplicate_id
Definition: results.h:111
enum expression_type find_expression_type(xmlNode *expr)
Definition: rules.c:105
@ time_expr
Definition: rules.h:28
int pe__eval_date_expr(xmlNode *expr, pe_rule_eval_data_t *rule_data, crm_time_t *next_change)
gboolean cluster_status(pe_working_set_t *data_set)
Definition: status.c:71
void pe_free_working_set(pe_working_set_t *data_set)
Free a working set.
Definition: status.c:50
pe_working_set_t * pe_new_working_set(void)
Create a new working set.
Definition: status.c:34
This structure contains everything that makes up a single output formatter.
int(* message)(pcmk__output_t *out, const char *message_id,...)
int(*) void(* err)(pcmk__output_t *out, const char *format,...) G_GNUC_PRINTF(2
GHashTable * node_hash
Definition: common.h:194
xmlNode * input
Definition: pe_types.h:144
crm_time_t * now
Definition: pe_types.h:145
xmlXPathObjectPtr xpath_search(xmlNode *xml_top, const char *path)
Definition: xpath.c:139
xmlNode * getXpathResult(xmlXPathObjectPtr xpathObj, int index)
Definition: xpath.c:58
void freeXpathObject(xmlXPathObjectPtr xpathObj)
Definition: xpath.c:39
xmlNode * copy_xml(xmlNode *src_node)
Definition: xml.c:891