pacemaker  2.1.7-0f7f88312f
Scalable High-Availability cluster resource manager
pcmk_graph_logging.c
Go to the documentation of this file.
1 /*
2  * Copyright 2004-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 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/crm.h>
13 #include <crm/msg_xml.h>
14 #include <crm/common/xml.h>
15 #include <pacemaker-internal.h>
16 
25 const char *
27 {
28  switch (state) {
29  case pcmk__graph_active:
30  return "active";
32  return "pending";
34  return "complete";
36  return "terminated";
37  }
38  return "unknown";
39 }
40 
41 static const char *
42 actiontype2text(enum pcmk__graph_action_type type)
43 {
44  switch (type) {
46  return "pseudo";
48  return "resource";
50  return "cluster";
51  }
52  return "invalid";
53 }
54 
64 static const pcmk__graph_action_t *
65 find_graph_action_by_id(const pcmk__graph_t *graph, int id)
66 {
67  if (graph == NULL) {
68  return NULL;
69  }
70 
71  for (const GList *synapse_iter = graph->synapses;
72  synapse_iter != NULL; synapse_iter = synapse_iter->next) {
73 
74  const pcmk__graph_synapse_t *synapse = synapse_iter->data;
75 
76  for (const GList *action_iter = synapse->actions;
77  action_iter != NULL; action_iter = action_iter->next) {
78 
79  const pcmk__graph_action_t *action = action_iter->data;
80  if (action->id == id) {
81  return action;
82  }
83  }
84  }
85  return NULL;
86 }
87 
88 static const char *
89 synapse_state_str(pcmk__graph_synapse_t *synapse)
90 {
91  if (pcmk_is_set(synapse->flags, pcmk__synapse_failed)) {
92  return "Failed";
93 
94  } else if (pcmk_is_set(synapse->flags, pcmk__synapse_confirmed)) {
95  return "Completed";
96 
97  } else if (pcmk_is_set(synapse->flags, pcmk__synapse_executed)) {
98  return "In-flight";
99 
100  } else if (pcmk_is_set(synapse->flags, pcmk__synapse_ready)) {
101  return "Ready";
102  }
103  return "Pending";
104 }
105 
119 static GString *
120 synapse_pending_inputs(const pcmk__graph_t *graph,
121  const pcmk__graph_synapse_t *synapse)
122 {
123  GString *pending = NULL;
124 
125  for (const GList *lpc = synapse->inputs; lpc != NULL; lpc = lpc->next) {
126  const pcmk__graph_action_t *input = (pcmk__graph_action_t *) lpc->data;
127 
129  pcmk__add_word(&pending, 1024, ID(input->xml));
130 
131  } else if (pcmk_is_set(input->flags, pcmk__graph_action_confirmed)) {
132  // Confirmed successful inputs are not pending
133 
134  } else if (find_graph_action_by_id(graph, input->id) != NULL) {
135  // In-flight or pending
136  pcmk__add_word(&pending, 1024, ID(input->xml));
137  }
138  }
139  return pending;
140 }
141 
142 // Log synapse inputs that aren't in graph
143 static void
144 log_unresolved_inputs(unsigned int log_level, pcmk__graph_t *graph,
145  pcmk__graph_synapse_t *synapse)
146 {
147  for (GList *lpc = synapse->inputs; lpc != NULL; lpc = lpc->next) {
149  const char *key = crm_element_value(input->xml, XML_LRM_ATTR_TASK_KEY);
150  const char *host = crm_element_value(input->xml, XML_LRM_ATTR_TARGET);
151 
152  if (find_graph_action_by_id(graph, input->id) == NULL) {
153  do_crm_log(log_level,
154  " * [Input %2d]: Unresolved dependency %s op %s%s%s",
155  input->id, actiontype2text(input->type), key,
156  (host? " on " : ""), (host? host : ""));
157  }
158  }
159 }
160 
161 static void
162 log_synapse_action(unsigned int log_level, pcmk__graph_synapse_t *synapse,
163  pcmk__graph_action_t *action, const char *pending_inputs)
164 {
165  const char *key = crm_element_value(action->xml, XML_LRM_ATTR_TASK_KEY);
166  const char *host = crm_element_value(action->xml, XML_LRM_ATTR_TARGET);
167  char *desc = crm_strdup_printf("%s %s op %s",
168  synapse_state_str(synapse),
169  actiontype2text(action->type), key);
170 
171  do_crm_log(log_level,
172  "[Action %4d]: %-50s%s%s (priority: %d, waiting: %s)",
173  action->id, desc, (host? " on " : ""), (host? host : ""),
174  synapse->priority, pending_inputs);
175  free(desc);
176 }
177 
178 static void
179 log_synapse(unsigned int log_level, pcmk__graph_t *graph,
180  pcmk__graph_synapse_t *synapse)
181 {
182  GString *g_pending = NULL;
183  const char *pending = "none";
184 
185  if (!pcmk_is_set(synapse->flags, pcmk__synapse_executed)) {
186  g_pending = synapse_pending_inputs(graph, synapse);
187 
188  if (g_pending != NULL) {
189  pending = (const char *) g_pending->str;
190  }
191  }
192 
193  for (GList *lpc = synapse->actions; lpc != NULL; lpc = lpc->next) {
194  log_synapse_action(log_level, synapse,
195  (pcmk__graph_action_t *) lpc->data, pending);
196  }
197 
198  if (g_pending != NULL) {
199  g_string_free(g_pending, TRUE);
200  }
201 
202  if (!pcmk_is_set(synapse->flags, pcmk__synapse_executed)) {
203  log_unresolved_inputs(log_level, graph, synapse);
204  }
205 }
206 
207 void
209 {
210  log_synapse(log_level, NULL, action->synapse);
211 }
212 
213 void
214 pcmk__log_graph(unsigned int log_level, pcmk__graph_t *graph)
215 {
216  if ((graph == NULL) || (graph->num_actions == 0)) {
217  if (log_level == LOG_TRACE) {
218  crm_debug("Empty transition graph");
219  }
220  return;
221  }
222 
223  do_crm_log(log_level, "Graph %d with %d actions:"
224  " batch-limit=%d jobs, network-delay=%ums",
225  graph->id, graph->num_actions,
226  graph->batch_limit, graph->network_delay);
227 
228  for (GList *lpc = graph->synapses; lpc != NULL; lpc = lpc->next) {
229  log_synapse(log_level, graph, (pcmk__graph_synapse_t *) lpc->data);
230  }
231 }
#define LOG_TRACE
Definition: logging.h:38
pcmk__cpg_host_t host
Definition: cpg.c:49
A dumping ground.
pcmk__graph_action_type
const char * pcmk__graph_status2text(enum pcmk__graph_status state)
enum crm_ais_msg_types type
Definition: cpg.c:48
const char * action
Definition: pcmk_fence.c:30
#define XML_LRM_ATTR_TASK_KEY
Definition: msg_xml.h:307
#define crm_debug(fmt, args...)
Definition: logging.h:386
pcmk__graph_status
const char * crm_element_value(const xmlNode *data, const char *name)
Retrieve the value of an XML attribute.
Definition: nvpair.c:447
#define do_crm_log(level, fmt, args...)
Log a message.
Definition: logging.h:175
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.
Definition: util.h:99
Wrappers for and extensions to libxml2.
void pcmk__log_graph_action(int log_level, pcmk__graph_action_t *action)
xmlNode * input
void pcmk__log_graph(unsigned int log_level, pcmk__graph_t *graph)
#define XML_LRM_ATTR_TARGET
Definition: msg_xml.h:308
#define ID(x)
Definition: msg_xml.h:474