pacemaker  2.0.5-ba59be712
Scalable High-Availability cluster resource manager
pe_types.h
Go to the documentation of this file.
1 /*
2  * Copyright 2004-2020 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 #ifndef PE_TYPES__H
11 # define PE_TYPES__H
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
23 # include <stdbool.h> // bool
24 # include <sys/types.h> // time_t
25 # include <glib.h> // gboolean, guint, GList, GHashTable
26 # include <crm/crm.h> // GListPtr
27 # include <crm/common/iso8601.h>
28 # include <crm/pengine/common.h>
29 
30 typedef struct pe_node_s pe_node_t;
31 typedef struct pe_action_s pe_action_t;
34 
36  pe_unknown = -1,
37  pe_native = 0,
38  pe_group = 1,
39  pe_clone = 2,
41 };
42 
45  pe_resource_t *(*find_rsc) (pe_resource_t *parent, const char *search,
46  const pe_node_t *node, int flags);
47  /* parameter result must be free'd */
48  char *(*parameter) (pe_resource_t*, pe_node_t*, gboolean, const char*,
50  void (*print) (pe_resource_t*, const char*, long, void*);
51  gboolean (*active) (pe_resource_t*, gboolean);
52  enum rsc_role_e (*state) (const pe_resource_t*, gboolean);
53  pe_node_t *(*location) (const pe_resource_t*, GList**, int);
54  void (*free) (pe_resource_t*);
55  void (*count) (pe_resource_t*);
56  gboolean (*is_filtered) (pe_resource_t*, GListPtr, gboolean);
58 
60 
67 };
68 
69 enum node_type {
73 };
74 
76 enum pe_restart {
79 };
80 
82 enum pe_find {
83  pe_find_renamed = 0x001,
84  pe_find_anon = 0x002,
85  pe_find_clone = 0x004,
86  pe_find_current = 0x008,
87  pe_find_inactive = 0x010,
88  pe_find_any = 0x020,
89 };
90 
91 // @TODO Make these an enum
92 
93 # define pe_flag_have_quorum 0x00000001ULL
94 # define pe_flag_symmetric_cluster 0x00000002ULL
95 # define pe_flag_maintenance_mode 0x00000008ULL
96 
97 # define pe_flag_stonith_enabled 0x00000010ULL
98 # define pe_flag_have_stonith_resource 0x00000020ULL
99 # define pe_flag_enable_unfencing 0x00000040ULL
100 # define pe_flag_concurrent_fencing 0x00000080ULL
101 
102 # define pe_flag_stop_rsc_orphans 0x00000100ULL
103 # define pe_flag_stop_action_orphans 0x00000200ULL
104 # define pe_flag_stop_everything 0x00000400ULL
105 
106 # define pe_flag_start_failure_fatal 0x00001000ULL
107 # define pe_flag_remove_after_stop 0x00002000ULL
108 # define pe_flag_startup_fencing 0x00004000ULL
109 # define pe_flag_shutdown_lock 0x00008000ULL
110 
111 # define pe_flag_startup_probes 0x00010000ULL
112 # define pe_flag_have_status 0x00020000ULL
113 # define pe_flag_have_remote_nodes 0x00040000ULL
114 
115 # define pe_flag_quick_location 0x00100000ULL
116 # define pe_flag_sanitized 0x00200000ULL
117 # define pe_flag_stdout 0x00400000ULL
118 
120 # define pe_flag_no_counts 0x00800000ULL
121 
125 # define pe_flag_no_compat 0x01000000ULL
126 
128  xmlNode *input;
130 
131  /* options extracted from the input */
132  char *dc_uuid;
134  const char *stonith_action;
135  const char *placement_strategy;
136 
137  unsigned long long flags;
138 
141 
142  GHashTable *config_hash;
143  GHashTable *tickets;
144 
145  // Actions for which there can be only one (e.g. fence nodeX)
146  GHashTable *singletons;
147 
154 
156  xmlNode *failed;
157  xmlNode *op_defaults;
158  xmlNode *rsc_defaults;
159 
160  /* stats */
163  int order_id;
165 
166  /* final output */
167  xmlNode *graph;
168 
169  GHashTable *template_rsc_sets;
170  const char *localhost;
171  GHashTable *tags;
172 
175 
176  GList *param_check; // History entries that need to be checked
177  GList *stop_needed; // Containers that need stop actions
178  time_t recheck_by; // Hint to controller to re-run scheduler by this time
179  int ninstances; // Total number of resource instances
180  guint shutdown_lock;// How long (seconds) to lock resources to shutdown node
181  int priority_fencing_delay; // Priority fencing delay
182 };
183 
185  /* Clear fail count if parameters changed for un-expired start or monitor
186  * last_failure.
187  */
189 
190  /* Clear fail count if parameters changed for start, monitor, promote, or
191  * migrate_from actions for active resources.
192  */
194 };
195 
197  const char *id;
198  const char *uname;
200 
201  /* @TODO convert these flags into a bitfield */
202  gboolean online;
203  gboolean standby;
204  gboolean standby_onfail;
205  gboolean pending;
206  gboolean unclean;
207  gboolean unseen;
208  gboolean shutdown;
209  gboolean expected_up;
210  gboolean is_dc;
211  gboolean maintenance;
215  gboolean remote_maintenance; /* what the remote-rsc is thinking */
216  gboolean unpacked;
217 
220  GListPtr running_rsc; /* pe_resource_t* */
221  GListPtr allocated_rsc; /* pe_resource_t* */
222 
223  GHashTable *attrs; /* char* => char* */
224  GHashTable *utilization;
225  GHashTable *digest_cache;
226  int priority; // calculated based on the priority of resources running on the node
227 };
228 
229 struct pe_node_s {
230  int weight;
231  gboolean fixed;
232  int count;
235 };
236 
237 # define pe_rsc_orphan 0x00000001ULL
238 # define pe_rsc_managed 0x00000002ULL
239 # define pe_rsc_block 0x00000004ULL
240 # define pe_rsc_orphan_container_filler 0x00000008ULL
241 
242 # define pe_rsc_notify 0x00000010ULL
243 # define pe_rsc_unique 0x00000020ULL
244 # define pe_rsc_fence_device 0x00000040ULL
245 # define pe_rsc_promotable 0x00000080ULL
246 
247 # define pe_rsc_provisional 0x00000100ULL
248 # define pe_rsc_allocating 0x00000200ULL
249 # define pe_rsc_merging 0x00000400ULL
250 
251 # define pe_rsc_stop 0x00001000ULL
252 # define pe_rsc_reload 0x00002000ULL
253 # define pe_rsc_allow_remote_remotes 0x00004000ULL
254 
255 # define pe_rsc_failed 0x00010000ULL
256 # define pe_rsc_runnable 0x00040000ULL
257 # define pe_rsc_start_pending 0x00080000ULL
258 
259 # define pe_rsc_starting 0x00100000ULL
260 # define pe_rsc_stopping 0x00200000ULL
261 # define pe_rsc_allow_migrate 0x00800000ULL
262 
263 # define pe_rsc_failure_ignored 0x01000000ULL
264 # define pe_rsc_maintenance 0x04000000ULL
265 # define pe_rsc_is_container 0x08000000ULL
266 
267 # define pe_rsc_needs_quorum 0x10000000ULL
268 # define pe_rsc_needs_fencing 0x20000000ULL
269 # define pe_rsc_needs_unfencing 0x40000000ULL
270 
272  pe_graph_none = 0x00000,
275  pe_graph_disable = 0x00004,
276 };
277 
278 /* *INDENT-OFF* */
280  pe_action_pseudo = 0x00001,
284 
288 
289  pe_action_dumped = 0x00100,
291  pe_action_clear = 0x00400,
292  pe_action_dangle = 0x00800,
293 
294  /* This action requires one or more of its dependencies to be runnable.
295  * We use this to clear the runnable flag before checking dependencies.
296  */
298 
301  pe_action_dedup = 0x08000,
302 
303  pe_action_dc = 0x10000,
304 };
305 /* *INDENT-ON* */
306 
308  char *id;
309  char *clone_name;
310  xmlNode *xml;
311  xmlNode *orig_xml;
312  xmlNode *ops_xml;
313 
316 
321 
323 
324  // @TODO only pe_restart_restart is of interest, so merge into flags
326 
327  int priority;
334 
335  unsigned long long flags;
336 
337  // @TODO merge these into flags
338  gboolean is_remote_node;
340 
343  GListPtr rsc_cons_lhs; // List of rsc_colocation_t*
344  GListPtr rsc_cons; // List of rsc_colocation_t*
345  GListPtr rsc_location; // List of pe__location_t*
346  GListPtr actions; // List of pe_action_t*
347  GListPtr rsc_tickets; // List of rsc_ticket*
349 
353  GListPtr running_on; /* pe_node_t* */
354  GHashTable *known_on; /* pe_node_t* */
355  GHashTable *allowed_nodes; /* pe_node_t* */
356 
359 
360  GHashTable *meta;
361  GHashTable *parameters;
362  GHashTable *utilization;
363 
364  GListPtr children; /* pe_resource_t* */
365  GListPtr dangling_migrations; /* pe_node_t* */
366 
369 
370  pe_node_t *pending_node; // Node on which pending_task is happening
371  pe_node_t *lock_node; // Resource is shutdown-locked to this node
372  time_t lock_time; // When shutdown lock started
373 
374 #if ENABLE_VERSIONED_ATTRS
375  xmlNode *versioned_parameters;
376 #endif
377 };
378 
379 #if ENABLE_VERSIONED_ATTRS
380 // Used as action->action_details if action->rsc is not NULL
381 typedef struct pe_rsc_action_details_s {
382  xmlNode *versioned_parameters;
383  xmlNode *versioned_meta;
384 } pe_rsc_action_details_t;
385 #endif
386 
387 struct pe_action_s {
388  int id;
389  int priority;
390 
393  xmlNode *op_entry;
394 
395  char *task;
396  char *uuid;
397  char *cancel_task;
398  char *reason;
399 
404 
405  GHashTable *meta;
406  GHashTable *extra;
407 
408  /*
409  * These two varables are associated with the constraint logic
410  * that involves first having one or more actions runnable before
411  * then allowing this action to execute.
412  *
413  * These varables are used with features such as 'clone-min' which
414  * requires at minimum X number of cloned instances to be running
415  * before an order dependency can run. Another option that uses
416  * this is 'require-all=false' in ordering constrants. This option
417  * says "only require one instance of a resource to start before
418  * allowing dependencies to start" -- basically, require-all=false is
419  * the same as clone-min=1.
420  */
421 
422  /* current number of known runnable actions in the before list. */
424  /* the number of "before" runnable actions required for this action
425  * to be considered runnable */
427 
428  GListPtr actions_before; /* pe_action_wrapper_t* */
429  GListPtr actions_after; /* pe_action_wrapper_t* */
430 
431  /* Some of the above fields could be moved to the details,
432  * except for API backward compatibility.
433  */
434  void *action_details; // varies by type of action
435 };
436 
437 typedef struct pe_ticket_s {
438  char *id;
439  gboolean granted;
440  time_t last_granted;
441  gboolean standby;
442  GHashTable *state;
443 } pe_ticket_t;
444 
445 typedef struct pe_tag_s {
446  char *id;
448 } pe_tag_t;
449 
455 };
456 
461 };
462 
463 /* *INDENT-OFF* */
465  pe_order_none = 0x0, /* deleted */
466  pe_order_optional = 0x1, /* pure ordering, nothing implied */
467  pe_order_apply_first_non_migratable = 0x2, /* Only apply this constraint's ordering if first is not migratable. */
468 
469  pe_order_implies_first = 0x10, /* If 'then' is required, ensure 'first' is too */
470  pe_order_implies_then = 0x20, /* If 'first' is required, ensure 'then' is too */
471  pe_order_implies_first_master = 0x40, /* Imply 'first' is required when 'then' is required and then's rsc holds Master role. */
472 
473  /* first requires then to be both runnable and migrate runnable. */
475 
476  pe_order_runnable_left = 0x100, /* 'then' requires 'first' to be runnable */
477 
478  pe_order_pseudo_left = 0x200, /* 'then' can only be pseudo if 'first' is runnable */
479  pe_order_implies_then_on_node = 0x400, /* If 'first' is required on 'nodeX',
480  * ensure instances of 'then' on 'nodeX' are too.
481  * Only really useful if 'then' is a clone and 'first' is not
482  */
483  pe_order_probe = 0x800, /* If 'first->rsc' is
484  * - running but about to stop, ignore the constraint
485  * - otherwise, behave as runnable_left
486  */
487 
488  pe_order_restart = 0x1000, /* 'then' is runnable if 'first' is optional or runnable */
489  pe_order_stonith_stop = 0x2000, /* only applies if the action is non-pseudo */
490  pe_order_serialize_only = 0x4000, /* serialize */
491  pe_order_same_node = 0x8000, /* applies only if 'first' and 'then' are on same node */
492 
493  pe_order_implies_first_printed = 0x10000, /* Like ..implies_first but only ensures 'first' is printed, not mandatory */
494  pe_order_implies_then_printed = 0x20000, /* Like ..implies_then but only ensures 'then' is printed, not mandatory */
495 
496  pe_order_asymmetrical = 0x100000, /* Indicates asymmetrical one way ordering constraint. */
497  pe_order_load = 0x200000, /* Only relevant if... */
498  pe_order_one_or_more = 0x400000, /* 'then' is runnable only if one or more of its dependencies are too */
500 
501  pe_order_preserve = 0x1000000, /* Hack for breaking user ordering constraints with container resources */
502  pe_order_then_cancels_first = 0x2000000, // if 'then' becomes required, 'first' becomes optional
503  pe_order_trace = 0x4000000, /* test marker */
504 };
505 /* *INDENT-ON* */
506 
507 typedef struct pe_action_wrapper_s {
512 
513 #ifndef PCMK__NO_COMPAT
514 /* Everything here is deprecated and kept only for public API backward
515  * compatibility. It will be moved to compatibility.h in a future release.
516  */
517 
519 typedef struct pe_action_s action_t;
523 typedef struct pe_node_s node_t;
527 typedef struct pe_resource_s resource_t;
529 typedef struct pe_tag_s tag_t;
531 typedef struct pe_ticket_s ticket_t;
532 
533 #endif
534 
535 #ifdef __cplusplus
536 }
537 #endif
538 
539 #endif // PE_TYPES__H
GHashTable * tags
Definition: pe_types.h:171
enum pe_link_state state
Definition: pe_types.h:509
GListPtr nodes
Definition: pe_types.h:148
GListPtr allocated_rsc
Definition: pe_types.h:221
xmlNode * orig_xml
Definition: pe_types.h:311
struct pe_ticket_s pe_ticket_t
enum rsc_start_requirement needs
Definition: pe_types.h:401
pe_quorum_policy
Definition: pe_types.h:61
enum pe_quorum_policy no_quorum_policy
Definition: pe_types.h:140
A dumping ground.
GHashTable * known_on
Definition: pe_types.h:354
xmlNode * failed
Definition: pe_types.h:156
xmlNode * ops_xml
Definition: pe_types.h:312
GHashTable * attrs
Definition: pe_types.h:223
gboolean unseen
Definition: pe_types.h:207
gboolean fixed
Definition: pe_types.h:231
int runnable_before
Definition: pe_types.h:423
GListPtr dangling_migrations
Definition: pe_types.h:365
GHashTable * state
Definition: pe_types.h:442
pe_check_parameters
Definition: pe_types.h:184
int priority
Definition: pe_types.h:389
pe_resource_t * container
Definition: pe_types.h:367
pe_node_t * partial_migration_source
Definition: pe_types.h:352
struct crm_time_s crm_time_t
Definition: iso8601.h:32
enum rsc_role_e role
Definition: pe_types.h:357
int count
Definition: pe_types.h:232
resource_alloc_functions_t * cmds
Definition: pe_types.h:320
gboolean standby
Definition: pe_types.h:441
int priority_fencing_delay
Definition: pe_types.h:181
Internal tracking for transition graph creation.
Definition: pe_types.h:453
xmlNode * op_defaults
Definition: pe_types.h:157
Internal tracking for transition graph creation.
Definition: pe_types.h:454
GListPtr rsc_tickets
Definition: pe_types.h:347
xmlNode * xml
Definition: pe_types.h:310
pe_resource_t * rsc
Definition: pe_types.h:391
enum rsc_role_e next_role
Definition: pe_types.h:358
enum action_fail_response on_fail
Definition: pe_types.h:402
gboolean exclusive_discover
Definition: pe_types.h:339
struct resource_object_functions_s resource_object_functions_t
pe_resource_t * remote_rsc
Definition: pe_types.h:219
char * cancel_task
Definition: pe_types.h:397
GHashTable * meta
Definition: pe_types.h:360
match resource not running anywhere
Definition: pe_types.h:87
resource_object_functions_t * fns
Definition: pe_types.h:319
GHashTable * parameters
Definition: pe_types.h:361
GListPtr fillers
Definition: pe_types.h:368
gboolean pending
Definition: pe_types.h:205
GListPtr resources
Definition: pe_types.h:149
char * id
Definition: pe_types.h:446
gboolean(* is_filtered)(pe_resource_t *, GListPtr, gboolean)
Definition: pe_types.h:56
int order_id
Deprecated (will be removed in a future release)
Definition: pe_types.h:163
xmlNode * op_entry
Definition: pe_types.h:393
GListPtr rsc_cons
Definition: pe_types.h:344
pe_node_t * partial_migration_target
Definition: pe_types.h:351
int migration_threshold
Definition: pe_types.h:331
GHashTable * tickets
Definition: pe_types.h:143
pe_node_t * allocated_to
Definition: pe_types.h:350
pe_action_t * action
Definition: pe_types.h:510
gboolean remote_was_fenced
Definition: pe_types.h:214
pe_discover_e
Definition: pe_types.h:457
char * pending_task
Definition: pe_types.h:333
gboolean remote_requires_reset
Definition: pe_types.h:213
GListPtr actions_before
Definition: pe_types.h:428
action_fail_response
Definition: common.h:34
char * reason
Definition: pe_types.h:398
char * dc_uuid
Definition: pe_types.h:132
void * action_details
Definition: pe_types.h:434
GHashTable * extra
Definition: pe_types.h:406
pe_node_t * lock_node
Definition: pe_types.h:371
gboolean remote_maintenance
Definition: pe_types.h:215
gboolean is_dc
Definition: pe_types.h:210
GListPtr placement_constraints
Definition: pe_types.h:150
pe_link_state
Internal tracking for transition graph creation.
Definition: pe_types.h:451
rsc_recovery_type
Definition: common.h:79
int weight
Definition: pe_types.h:230
guint remote_reconnect_ms
Definition: pe_types.h:332
pe_action_flags
Definition: pe_types.h:279
enum pe_quorum_policy no_quorum_policy_t
Definition: pe_types.h:525
pe_find
Determine behavior of pe_find_resource_with_flags()
Definition: pe_types.h:82
gboolean unpacked
Definition: pe_types.h:216
int failure_timeout
Definition: pe_types.h:330
xmlNode * rsc_defaults
Definition: pe_types.h:158
match only clone instances
Definition: pe_types.h:85
char * task
Definition: pe_types.h:395
GListPtr refs
Definition: pe_types.h:447
GHashTable * meta
Definition: pe_types.h:405
int blocked_resources
Definition: pe_types.h:173
void(* count)(pe_resource_t *)
Definition: pe_types.h:55
const char * stonith_action
Definition: pe_types.h:134
struct pe_node_shared_s * details
Definition: pe_types.h:233
GListPtr running_on
Definition: pe_types.h:353
enum rsc_recovery_type recovery_type
Definition: pe_types.h:322
pe_node_t * node
Definition: pe_types.h:392
unsigned long long flags
Definition: pe_types.h:335
const char * uname
Definition: pe_types.h:198
GListPtr actions
Definition: pe_types.h:155
GHashTable * config_hash
Definition: pe_types.h:142
Internal state tracking when creating graph.
Definition: pe_types.h:303
char * clone_name
Definition: pe_types.h:309
ISO_8601 Date handling.
void(* print)(pe_resource_t *, const char *, long, void *)
Definition: pe_types.h:50
time_t lock_time
Definition: pe_types.h:372
enum pe_restart restart_type
Definition: pe_types.h:325
time_t recheck_by
Definition: pe_types.h:178
pe_graph_flags
Definition: pe_types.h:271
time_t last_granted
Definition: pe_types.h:440
GHashTable * utilization
Definition: pe_types.h:362
rsc_start_requirement
Definition: common.h:85
GListPtr rsc_cons_lhs
Definition: pe_types.h:343
void(* free)(pe_resource_t *)
Definition: pe_types.h:54
gboolean standby
Definition: pe_types.h:203
pe_restart
Definition: pe_types.h:76
char * uuid
Definition: pe_types.h:396
gboolean expected_up
Definition: pe_types.h:209
match base name of any clone instance
Definition: pe_types.h:88
enum pe_obj_types variant
Definition: pe_types.h:317
xmlNode * input
Definition: pe_types.h:128
gboolean granted
Definition: pe_types.h:439
const char * placement_strategy
Definition: pe_types.h:135
int rsc_discover_mode
Definition: pe_types.h:234
GListPtr actions
Definition: pe_types.h:346
GListPtr rsc_location
Definition: pe_types.h:345
const char * id
Definition: pe_types.h:197
char * id
Definition: pe_types.h:438
guint shutdown_lock
Definition: pe_types.h:180
GListPtr ordering_constraints
Definition: pe_types.h:151
GListPtr colocation_constraints
Definition: pe_types.h:152
match resource ID or LRM history ID
Definition: pe_types.h:83
gboolean rsc_discovery_enabled
Definition: pe_types.h:212
GListPtr running_rsc
Definition: pe_types.h:220
pe_node_t * dc_node
Definition: pe_types.h:133
enum rsc_role_e(* state)(const pe_resource_t *, gboolean)
Definition: pe_types.h:52
const char * localhost
Definition: pe_types.h:170
gboolean is_remote_node
Definition: pe_types.h:338
pe_node_t * pending_node
Definition: pe_types.h:370
GListPtr children
Definition: pe_types.h:364
void * variant_opaque
Definition: pe_types.h:318
int sort_index
Definition: pe_types.h:329
GList * param_check
Definition: pe_types.h:176
GListPtr ticket_constraints
Definition: pe_types.h:153
int disabled_resources
Definition: pe_types.h:174
node_type
Definition: pe_types.h:69
GListPtr actions_after
Definition: pe_types.h:429
GHashTable * utilization
Definition: pe_types.h:224
enum rsc_role_e fail_role
Definition: pe_types.h:403
gboolean shutdown
Definition: pe_types.h:208
struct pe_tag_s pe_tag_t
rsc_role_e
Definition: common.h:91
enum pe_action_flags flags
Definition: pe_types.h:400
gboolean maintenance
Definition: pe_types.h:211
GHashTable * digest_cache
cache of calculated resource digests
Definition: pe_types.h:225
pe_working_set_t * cluster
Definition: pe_types.h:314
struct pe_action_wrapper_s pe_action_wrapper_t
GHashTable * singletons
Definition: pe_types.h:146
unsigned long long flags
Definition: pe_types.h:137
int stickiness
Definition: pe_types.h:328
gboolean standby_onfail
Definition: pe_types.h:204
enum pe_ordering type
Definition: pe_types.h:508
gboolean unclean
Definition: pe_types.h:206
GList * GListPtr
Definition: crm.h:214
enum node_type type
Definition: pe_types.h:199
crm_time_t * now
Definition: pe_types.h:129
GHashTable * template_rsc_sets
Definition: pe_types.h:169
pe_ordering
Definition: pe_types.h:464
gboolean online
Definition: pe_types.h:202
uint64_t flags
Definition: remote.c:149
match resource active on specified node
Definition: pe_types.h:86
int required_runnable_before
Definition: pe_types.h:426
GList * stop_needed
Definition: pe_types.h:177
pe_resource_t * parent
Definition: pe_types.h:315
gboolean(* unpack)(pe_resource_t *, pe_working_set_t *)
Definition: pe_types.h:44
pe_obj_types
Definition: pe_types.h:35
gboolean(* active)(pe_resource_t *, gboolean)
Definition: pe_types.h:51
xmlNode * graph
Definition: pe_types.h:167
char * id
Definition: pe_types.h:308
GHashTable * allowed_nodes
Definition: pe_types.h:355
match base name of anonymous clone instances
Definition: pe_types.h:84