pacemaker  2.1.2-ada5c3b36
Scalable High-Availability cluster resource manager
nvpair.c
Go to the documentation of this file.
1 /*
2  * Copyright 2004-2021 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 <stdio.h>
13 #include <sys/types.h>
14 #include <string.h>
15 #include <ctype.h>
16 #include <glib.h>
17 #include <libxml/tree.h>
18 
19 #include <crm/crm.h>
20 #include <crm/msg_xml.h>
21 #include <crm/common/xml.h>
23 #include "crmcommon_private.h"
24 
25 /*
26  * This file isolates handling of three types of name/value pairs:
27  *
28  * - pcmk_nvpair_t data type
29  * - XML attributes (<TAG ... NAME=VALUE ...>)
30  * - XML nvpair elements (<nvpair id=ID name=NAME value=VALUE>)
31  */
32 
33 // pcmk_nvpair_t handling
34 
46 static pcmk_nvpair_t *
47 pcmk__new_nvpair(const char *name, const char *value)
48 {
49  pcmk_nvpair_t *nvpair = NULL;
50 
52 
53  nvpair = calloc(1, sizeof(pcmk_nvpair_t));
54  CRM_ASSERT(nvpair);
55 
56  nvpair->name = strdup(name);
57  nvpair->value = value? strdup(value) : NULL;
58  return nvpair;
59 }
60 
67 static void
68 pcmk__free_nvpair(gpointer data)
69 {
70  if (data) {
71  pcmk_nvpair_t *nvpair = data;
72 
73  free(nvpair->name);
74  free(nvpair->value);
75  free(nvpair);
76  }
77 }
78 
90 GSList *
91 pcmk_prepend_nvpair(GSList *nvpairs, const char *name, const char *value)
92 {
93  return g_slist_prepend(nvpairs, pcmk__new_nvpair(name, value));
94 }
95 
101 void
102 pcmk_free_nvpairs(GSList *nvpairs)
103 {
104  g_slist_free_full(nvpairs, pcmk__free_nvpair);
105 }
106 
116 static gint
117 pcmk__compare_nvpair(gconstpointer a, gconstpointer b)
118 {
119  int rc = 0;
120  const pcmk_nvpair_t *pair_a = a;
121  const pcmk_nvpair_t *pair_b = b;
122 
123  CRM_ASSERT(a != NULL);
124  CRM_ASSERT(pair_a->name != NULL);
125 
126  CRM_ASSERT(b != NULL);
127  CRM_ASSERT(pair_b->name != NULL);
128 
129  rc = strcmp(pair_a->name, pair_b->name);
130  if (rc < 0) {
131  return -1;
132  } else if (rc > 0) {
133  return 1;
134  }
135  return 0;
136 }
137 
145 GSList *
146 pcmk_sort_nvpairs(GSList *list)
147 {
148  return g_slist_sort(list, pcmk__compare_nvpair);
149 }
150 
160 GSList *
162 {
163  GSList *result = NULL;
164 
165  for (xmlAttrPtr iter = pcmk__xe_first_attr(xml); iter != NULL;
166  iter = iter->next) {
167 
168  result = pcmk_prepend_nvpair(result,
169  (const char *) iter->name,
170  (const char *) pcmk__xml_attr_value(iter));
171  }
172  return result;
173 }
174 
185 static void
186 pcmk__nvpair_add_xml_attr(gpointer data, gpointer user_data)
187 {
188  pcmk_nvpair_t *pair = data;
189  xmlNode *parent = user_data;
190 
191  crm_xml_add(parent, pair->name, pair->value);
192 }
193 
200 void
201 pcmk_nvpairs2xml_attrs(GSList *list, xmlNode *xml)
202 {
203  g_slist_foreach(list, pcmk__nvpair_add_xml_attr, xml);
204 }
205 
206 // convenience function for name=value strings
207 
220 int
221 pcmk__scan_nvpair(const char *input, char **name, char **value)
222 {
223 #ifdef SSCANF_HAS_M
224  *name = NULL;
225  *value = NULL;
226  if (sscanf(input, "%m[^=]=%m[^\n]", name, value) <= 0) {
227  return -pcmk_err_bad_nvpair;
228  }
229 #else
230  char *sep = NULL;
231  *name = NULL;
232  *value = NULL;
233 
234  sep = strstr(optarg, "=");
235  if (sep == NULL) {
236  return -pcmk_err_bad_nvpair;
237  }
238 
239  *name = strndup(input, sep-input);
240 
241  if (*name == NULL) {
242  return -ENOMEM;
243  }
244 
245  /* If the last char in optarg is =, the user gave no
246  * value for the option. Leave it as NULL.
247  */
248  if (*(sep+1) != '\0') {
249  *value = strdup(sep+1);
250 
251  if (*value == NULL) {
252  return -ENOMEM;
253  }
254  }
255 #endif
256 
257  if (*name != NULL && *value != NULL) {
258  return 2;
259  } else if (*name != NULL || *value != NULL) {
260  return 1;
261  } else {
262  return -pcmk_err_bad_nvpair;
263  }
264 }
265 
283 char *
284 pcmk__format_nvpair(const char *name, const char *value, const char *units)
285 {
286  return crm_strdup_printf("%s=\"%s%s\"", name, value, units ? units : "");
287 }
288 
302 char *
303 pcmk__format_named_time(const char *name, time_t epoch_time)
304 {
305  const char *now_str = pcmk__epoch2str(&epoch_time);
306 
307  return crm_strdup_printf("%s=\"%s\"", name, now_str ? now_str : "");
308 }
309 
310 // XML attribute handling
311 
322 const char *
323 crm_xml_add(xmlNode *node, const char *name, const char *value)
324 {
325  bool dirty = FALSE;
326  xmlAttr *attr = NULL;
327 
328  CRM_CHECK(node != NULL, return NULL);
329  CRM_CHECK(name != NULL, return NULL);
330 
331  if (value == NULL) {
332  return NULL;
333  }
334 #if XML_PARANOIA_CHECKS
335  {
336  const char *old_value = NULL;
337 
338  old_value = crm_element_value(node, name);
339 
340  /* Could be re-setting the same value */
341  CRM_CHECK(old_value != value,
342  crm_err("Cannot reset %s with crm_xml_add(%s)", name, value);
343  return value);
344  }
345 #endif
346 
347  if (pcmk__tracking_xml_changes(node, FALSE)) {
348  const char *old = crm_element_value(node, name);
349 
350  if (old == NULL || value == NULL || strcmp(old, value) != 0) {
351  dirty = TRUE;
352  }
353  }
354 
355  if (dirty && (pcmk__check_acl(node, name, pcmk__xf_acl_create) == FALSE)) {
356  crm_trace("Cannot add %s=%s to %s", name, value, node->name);
357  return NULL;
358  }
359 
360  attr = xmlSetProp(node, (pcmkXmlStr) name, (pcmkXmlStr) value);
361  if (dirty) {
363  }
364 
365  CRM_CHECK(attr && attr->children && attr->children->content, return NULL);
366  return (char *)attr->children->content;
367 }
368 
379 const char *
380 crm_xml_replace(xmlNode *node, const char *name, const char *value)
381 {
382  bool dirty = FALSE;
383  xmlAttr *attr = NULL;
384  const char *old_value = NULL;
385 
386  CRM_CHECK(node != NULL, return NULL);
387  CRM_CHECK(name != NULL && name[0] != 0, return NULL);
388 
389  old_value = crm_element_value(node, name);
390 
391  /* Could be re-setting the same value */
392  CRM_CHECK(old_value != value, return value);
393 
394  if (pcmk__check_acl(node, name, pcmk__xf_acl_write) == FALSE) {
395  /* Create a fake object linked to doc->_private instead? */
396  crm_trace("Cannot replace %s=%s to %s", name, value, node->name);
397  return NULL;
398 
399  } else if (old_value && !value) {
400  xml_remove_prop(node, name);
401  return NULL;
402  }
403 
404  if (pcmk__tracking_xml_changes(node, FALSE)) {
405  if (!old_value || !value || !strcmp(old_value, value)) {
406  dirty = TRUE;
407  }
408  }
409 
410  attr = xmlSetProp(node, (pcmkXmlStr) name, (pcmkXmlStr) value);
411  if (dirty) {
413  }
414  CRM_CHECK(attr && attr->children && attr->children->content, return NULL);
415  return (char *) attr->children->content;
416 }
417 
430 const char *
431 crm_xml_add_int(xmlNode *node, const char *name, int value)
432 {
433  char *number = pcmk__itoa(value);
434  const char *added = crm_xml_add(node, name, number);
435 
436  free(number);
437  return added;
438 }
439 
452 const char *
453 crm_xml_add_ms(xmlNode *node, const char *name, guint ms)
454 {
455  char *number = crm_strdup_printf("%u", ms);
456  const char *added = crm_xml_add(node, name, number);
457 
458  free(number);
459  return added;
460 }
461 
462 // Maximum size of null-terminated string representation of 64-bit integer
463 // -9223372036854775808
464 #define LLSTRSIZE 21
465 
480 const char *
481 crm_xml_add_ll(xmlNode *xml, const char *name, long long value)
482 {
483  char s[LLSTRSIZE] = { '\0', };
484 
485  if (snprintf(s, LLSTRSIZE, "%lld", (long long) value) == LLSTRSIZE) {
486  return NULL;
487  }
488  return crm_xml_add(xml, name, s);
489 }
490 
504 const char *
505 crm_xml_add_timeval(xmlNode *xml, const char *name_sec, const char *name_usec,
506  const struct timeval *value)
507 {
508  const char *added = NULL;
509 
510  if (xml && name_sec && value) {
511  added = crm_xml_add_ll(xml, name_sec, (long long) value->tv_sec);
512  if (added && name_usec) {
513  // Any error is ignored (we successfully added seconds)
514  crm_xml_add_ll(xml, name_usec, (long long) value->tv_usec);
515  }
516  }
517  return added;
518 }
519 
528 const char *
529 crm_element_value(const xmlNode *data, const char *name)
530 {
531  xmlAttr *attr = NULL;
532 
533  if (data == NULL) {
534  crm_err("Couldn't find %s in NULL", name ? name : "<null>");
535  CRM_LOG_ASSERT(data != NULL);
536  return NULL;
537 
538  } else if (name == NULL) {
539  crm_err("Couldn't find NULL in %s", crm_element_name(data));
540  return NULL;
541  }
542 
543  /* The first argument to xmlHasProp() has always been const,
544  * but libxml2 <2.9.2 didn't declare that, so cast it
545  */
546  attr = xmlHasProp((xmlNode *) data, (pcmkXmlStr) name);
547  if (!attr || !attr->children) {
548  return NULL;
549  }
550  return (const char *) attr->children->content;
551 }
552 
564 int
565 crm_element_value_int(const xmlNode *data, const char *name, int *dest)
566 {
567  const char *value = NULL;
568 
569  CRM_CHECK(dest != NULL, return -1);
570  value = crm_element_value(data, name);
571  if (value) {
572  long long value_ll;
573 
574  if ((pcmk__scan_ll(value, &value_ll, 0LL) != pcmk_rc_ok)
575  || (value_ll < INT_MIN) || (value_ll > INT_MAX)) {
576  *dest = PCMK__PARSE_INT_DEFAULT;
577  } else {
578  *dest = (int) value_ll;
579  return 0;
580  }
581  }
582  return -1;
583 }
584 
596 int
597 crm_element_value_ll(const xmlNode *data, const char *name, long long *dest)
598 {
599  const char *value = NULL;
600 
601  CRM_CHECK(dest != NULL, return -1);
602  value = crm_element_value(data, name);
603  if ((value != NULL)
604  && (pcmk__scan_ll(value, dest, PCMK__PARSE_INT_DEFAULT) == pcmk_rc_ok)) {
605  return 0;
606  }
607  return -1;
608 }
609 
621 int
622 crm_element_value_ms(const xmlNode *data, const char *name, guint *dest)
623 {
624  const char *value = NULL;
625  long long value_ll;
626 
627  CRM_CHECK(dest != NULL, return -1);
628  *dest = 0;
629  value = crm_element_value(data, name);
630  if ((pcmk__scan_ll(value, &value_ll, 0LL) != pcmk_rc_ok)
631  || (value_ll < 0) || (value_ll > G_MAXUINT)) {
632  return -1;
633  }
634  *dest = (guint) value_ll;
635  return pcmk_ok;
636 }
637 
649 int
650 crm_element_value_epoch(const xmlNode *xml, const char *name, time_t *dest)
651 {
652  long long value_ll = 0;
653 
654  if (crm_element_value_ll(xml, name, &value_ll) < 0) {
655  return -1;
656  }
657 
658  /* Unfortunately, we can't do any bounds checking, since time_t has neither
659  * standardized bounds nor constants defined for them.
660  */
661  *dest = (time_t) value_ll;
662  return pcmk_ok;
663 }
664 
678 int
679 crm_element_value_timeval(const xmlNode *xml, const char *name_sec,
680  const char *name_usec, struct timeval *dest)
681 {
682  long long value_i = 0;
683 
684  CRM_CHECK(dest != NULL, return -EINVAL);
685  dest->tv_sec = 0;
686  dest->tv_usec = 0;
687 
688  if (xml == NULL) {
689  return pcmk_ok;
690  }
691 
692  /* Unfortunately, we can't do any bounds checking, since there are no
693  * constants provided for the bounds of time_t and suseconds_t, and
694  * calculating them isn't worth the effort. If there are XML values
695  * beyond the native sizes, there will probably be worse problems anyway.
696  */
697 
698  // Parse seconds
699  errno = 0;
700  if (crm_element_value_ll(xml, name_sec, &value_i) < 0) {
701  return -errno;
702  }
703  dest->tv_sec = (time_t) value_i;
704 
705  // Parse microseconds
706  if (crm_element_value_ll(xml, name_usec, &value_i) < 0) {
707  return -errno;
708  }
709  dest->tv_usec = (suseconds_t) value_i;
710 
711  return pcmk_ok;
712 }
713 
725 char *
726 crm_element_value_copy(const xmlNode *data, const char *name)
727 {
728  char *value_copy = NULL;
729  const char *value = crm_element_value(data, name);
730 
731  if (value != NULL) {
732  value_copy = strdup(value);
733  }
734  return value_copy;
735 }
736 
750 void
751 hash2smartfield(gpointer key, gpointer value, gpointer user_data)
752 {
753  const char *name = key;
754  const char *s_value = value;
755 
756  xmlNode *xml_node = user_data;
757 
758  if (isdigit(name[0])) {
759  xmlNode *tmp = create_xml_node(xml_node, XML_TAG_PARAM);
760 
762  crm_xml_add(tmp, XML_NVPAIR_ATTR_VALUE, s_value);
763 
764  } else if (crm_element_value(xml_node, name) == NULL) {
765  crm_xml_add(xml_node, name, s_value);
766  crm_trace("dumped: %s=%s", name, s_value);
767 
768  } else {
769  crm_trace("duplicate: %s=%s", name, s_value);
770  }
771 }
772 
784 void
785 hash2field(gpointer key, gpointer value, gpointer user_data)
786 {
787  const char *name = key;
788  const char *s_value = value;
789 
790  xmlNode *xml_node = user_data;
791 
792  if (crm_element_value(xml_node, name) == NULL) {
793  crm_xml_add(xml_node, name, s_value);
794 
795  } else {
796  crm_trace("duplicate: %s=%s", name, s_value);
797  }
798 }
799 
812 void
813 hash2metafield(gpointer key, gpointer value, gpointer user_data)
814 {
815  char *crm_name = NULL;
816 
817  if (key == NULL || value == NULL) {
818  return;
819  }
820 
821  /* Filter out cluster-generated attributes that contain a '#' or ':'
822  * (like fail-count and last-failure).
823  */
824  for (crm_name = key; *crm_name; ++crm_name) {
825  if ((*crm_name == '#') || (*crm_name == ':')) {
826  return;
827  }
828  }
829 
830  crm_name = crm_meta_name(key);
831  hash2field(crm_name, value, user_data);
832  free(crm_name);
833 }
834 
835 // nvpair handling
836 
847 xmlNode *
848 crm_create_nvpair_xml(xmlNode *parent, const char *id, const char *name,
849  const char *value)
850 {
851  xmlNode *nvp;
852 
853  /* id can be NULL so we auto-generate one, and name can be NULL if this
854  * will be used to delete a name/value pair by ID, but both can't be NULL
855  */
856  CRM_CHECK(id || name, return NULL);
857 
858  nvp = create_xml_node(parent, XML_CIB_TAG_NVPAIR);
859  CRM_CHECK(nvp, return NULL);
860 
861  if (id) {
862  crm_xml_add(nvp, XML_ATTR_ID, id);
863  } else {
864  const char *parent_id = ID(parent);
865 
866  crm_xml_set_id(nvp, "%s-%s",
867  (parent_id? parent_id : XML_CIB_TAG_NVPAIR), name);
868  }
870  crm_xml_add(nvp, XML_NVPAIR_ATTR_VALUE, value);
871  return nvp;
872 }
873 
885 void
886 hash2nvpair(gpointer key, gpointer value, gpointer user_data)
887 {
888  const char *name = key;
889  const char *s_value = value;
890  xmlNode *xml_node = user_data;
891 
892  crm_create_nvpair_xml(xml_node, name, name, s_value);
893  crm_trace("dumped: name=%s value=%s", name, s_value);
894 }
895 
910 GHashTable *
911 xml2list(xmlNode *parent)
912 {
913  xmlNode *child = NULL;
914  xmlAttrPtr pIter = NULL;
915  xmlNode *nvpair_list = NULL;
916  GHashTable *nvpair_hash = pcmk__strkey_table(free, free);
917 
918  CRM_CHECK(parent != NULL, return nvpair_hash);
919 
920  nvpair_list = find_xml_node(parent, XML_TAG_ATTRS, FALSE);
921  if (nvpair_list == NULL) {
922  crm_trace("No attributes in %s", crm_element_name(parent));
923  crm_log_xml_trace(parent, "No attributes for resource op");
924  }
925 
926  crm_log_xml_trace(nvpair_list, "Unpacking");
927 
928  for (pIter = pcmk__xe_first_attr(nvpair_list); pIter != NULL;
929  pIter = pIter->next) {
930 
931  const char *p_name = (const char *)pIter->name;
932  const char *p_value = pcmk__xml_attr_value(pIter);
933 
934  crm_trace("Added %s=%s", p_name, p_value);
935 
936  g_hash_table_insert(nvpair_hash, strdup(p_name), strdup(p_value));
937  }
938 
939  for (child = pcmk__xml_first_child(nvpair_list); child != NULL;
940  child = pcmk__xml_next(child)) {
941 
942  if (strcmp((const char *)child->name, XML_TAG_PARAM) == 0) {
943  const char *key = crm_element_value(child, XML_NVPAIR_ATTR_NAME);
944  const char *value = crm_element_value(child, XML_NVPAIR_ATTR_VALUE);
945 
946  crm_trace("Added %s=%s", key, value);
947  if (key != NULL && value != NULL) {
948  g_hash_table_insert(nvpair_hash, strdup(key), strdup(value));
949  }
950  }
951  }
952 
953  return nvpair_hash;
954 }
955 
956 // Deprecated functions kept only for backward API compatibility
957 // LCOV_EXCL_START
958 
959 #include <crm/common/util_compat.h>
960 
961 int
962 pcmk_scan_nvpair(const char *input, char **name, char **value)
963 {
964  return pcmk__scan_nvpair(input, name, value);
965 }
966 
967 char *
968 pcmk_format_nvpair(const char *name, const char *value,
969  const char *units)
970 {
971  return pcmk__format_nvpair(name, value, units);
972 }
973 
974 char *
975 pcmk_format_named_time(const char *name, time_t epoch_time)
976 {
977  return pcmk__format_named_time(name, epoch_time);
978 }
979 
980 // LCOV_EXCL_STOP
981 // End deprecated API
#define CRM_CHECK(expr, failure_action)
Definition: logging.h:225
xmlNode * find_xml_node(xmlNode *cib, const char *node_path, gboolean must_find)
Definition: xml.c:445
GSList * pcmk_prepend_nvpair(GSList *nvpairs, const char *name, const char *value)
Prepend a name/value pair to a list.
Definition: nvpair.c:91
A dumping ground.
char * name
Definition: nvpair.h:29
char data[0]
Definition: cpg.c:55
int crm_element_value_ll(const xmlNode *data, const char *name, long long *dest)
Retrieve the long long integer value of an XML attribute.
Definition: nvpair.c:597
GSList * pcmk_xml_attrs2nvpairs(xmlNode *xml)
Create a list of name/value pairs from an XML node&#39;s attributes.
Definition: nvpair.c:161
char * value
Definition: nvpair.h:30
char * pcmk__format_nvpair(const char *name, const char *value, const char *units)
Definition: nvpair.c:284
G_GNUC_INTERNAL void pcmk__mark_xml_attr_dirty(xmlAttr *a)
Definition: xml.c:173
int crm_element_value_ms(const xmlNode *data, const char *name, guint *dest)
Retrieve the millisecond value of an XML attribute.
Definition: nvpair.c:622
#define XML_TAG_ATTRS
Definition: msg_xml.h:205
#define XML_NVPAIR_ATTR_NAME
Definition: msg_xml.h:377
#define CRM_LOG_ASSERT(expr)
Definition: logging.h:209
#define XML_CIB_TAG_NVPAIR
Definition: msg_xml.h:200
xmlNode * crm_create_nvpair_xml(xmlNode *parent, const char *id, const char *name, const char *value)
Create an XML name/value pair.
Definition: nvpair.c:848
char * strndup(const char *str, size_t len)
char * crm_meta_name(const char *field)
Definition: utils.c:511
int crm_element_value_timeval(const xmlNode *xml, const char *name_sec, const char *name_usec, struct timeval *dest)
Retrieve the value of XML second/microsecond attributes as time.
Definition: nvpair.c:679
#define PCMK__PARSE_INT_DEFAULT
int pcmk__scan_ll(const char *text, long long *result, long long default_value)
Definition: strings.c:97
bool pcmk__check_acl(xmlNode *xml, const char *name, enum xml_private_flags mode)
Definition: acl.c:599
void hash2metafield(gpointer key, gpointer value, gpointer user_data)
Set XML attribute based on hash table entry, as meta-attribute name.
Definition: nvpair.c:813
GHashTable * xml2list(xmlNode *parent)
Retrieve XML attributes as a hash table.
Definition: nvpair.c:911
int rc
Definition: pcmk_fence.c:35
void pcmk_nvpairs2xml_attrs(GSList *list, xmlNode *xml)
Add XML attributes based on a list of name/value pairs.
Definition: nvpair.c:201
#define XML_ATTR_ID
Definition: msg_xml.h:129
char * pcmk_format_nvpair(const char *name, const char *value, const char *units)
Definition: nvpair.c:968
#define crm_trace(fmt, args...)
Definition: logging.h:363
void hash2field(gpointer key, gpointer value, gpointer user_data)
Set XML attribute based on hash table entry.
Definition: nvpair.c:785
void pcmk_free_nvpairs(GSList *nvpairs)
Free a list of name/value pairs.
Definition: nvpair.c:102
char * crm_strdup_printf(char const *format,...) G_GNUC_PRINTF(1
void crm_xml_set_id(xmlNode *xml, const char *format,...) G_GNUC_PRINTF(2
void hash2smartfield(gpointer key, gpointer value, gpointer user_data)
Add hash table entry to XML as (possibly legacy) name/value.
Definition: nvpair.c:751
Wrappers for and extensions to libxml2.
char * pcmk_format_named_time(const char *name, time_t epoch_time)
Definition: nvpair.c:975
xmlNode * create_xml_node(xmlNode *parent, const char *name)
Definition: xml.c:696
#define LLSTRSIZE
Definition: nvpair.c:464
void hash2nvpair(gpointer key, gpointer value, gpointer user_data)
Add XML nvpair element based on hash table entry.
Definition: nvpair.c:886
const char * pcmk__epoch2str(time_t *when)
Definition: iso8601.c:1714
GSList * pcmk_sort_nvpairs(GSList *list)
Sort a list of name/value pairs.
Definition: nvpair.c:146
const xmlChar * pcmkXmlStr
Definition: xml.h:51
const char * crm_element_value(const xmlNode *data, const char *name)
Retrieve the value of an XML attribute.
Definition: nvpair.c:529
const char * crm_xml_replace(xmlNode *node, const char *name, const char *value)
Replace an XML attribute with specified name and (possibly NULL) value.
Definition: nvpair.c:380
GHashTable * pcmk__strkey_table(GDestroyNotify key_destroy_func, GDestroyNotify value_destroy_func)
Definition: strings.c:611
char * pcmk__format_named_time(const char *name, time_t epoch_time)
Definition: nvpair.c:303
#define crm_err(fmt, args...)
Definition: logging.h:357
#define CRM_ASSERT(expr)
Definition: results.h:42
const char * crm_xml_add_int(xmlNode *node, const char *name, int value)
Create an XML attribute with specified name and integer value.
Definition: nvpair.c:431
int crm_element_value_epoch(const xmlNode *xml, const char *name, time_t *dest)
Retrieve the seconds-since-epoch value of an XML attribute.
Definition: nvpair.c:650
void xml_remove_prop(xmlNode *obj, const char *name)
Definition: xml.c:2032
const char * crm_xml_add(xmlNode *node, const char *name, const char *value)
Create an XML attribute with specified name and value.
Definition: nvpair.c:323
#define XML_NVPAIR_ATTR_VALUE
Definition: msg_xml.h:378
const char * crm_xml_add_ll(xmlNode *xml, const char *name, long long value)
Create an XML attribute with specified name and long long int value.
Definition: nvpair.c:481
#define pcmk_ok
Definition: results.h:68
char * crm_element_value_copy(const xmlNode *data, const char *name)
Retrieve a copy of the value of an XML attribute.
Definition: nvpair.c:726
const char * crm_xml_add_timeval(xmlNode *xml, const char *name_sec, const char *name_usec, const struct timeval *value)
Create XML attributes for seconds and microseconds.
Definition: nvpair.c:505
#define crm_log_xml_trace(xml, text)
Definition: logging.h:371
const char * crm_xml_add_ms(xmlNode *node, const char *name, guint ms)
Create an XML attribute with specified name and unsigned value.
Definition: nvpair.c:453
G_GNUC_INTERNAL bool pcmk__tracking_xml_changes(xmlNode *xml, bool lazy)
Definition: xml.c:51
int crm_element_value_int(const xmlNode *data, const char *name, int *dest)
Retrieve the integer value of an XML attribute.
Definition: nvpair.c:565
#define ID(x)
Definition: msg_xml.h:456
char * name
Definition: pcmk_fence.c:31
int pcmk_scan_nvpair(const char *input, char **name, char **value)
Definition: nvpair.c:962
#define pcmk_err_bad_nvpair
Definition: results.h:91
#define XML_TAG_PARAM
Definition: msg_xml.h:210
Deprecated Pacemaker utilities.
int pcmk__scan_nvpair(const char *input, char **name, char **value)
Definition: nvpair.c:221