root/lib/pacemaker/pcmk_graph_logging.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. pcmk__graph_status2text
  2. actiontype2text
  3. find_graph_action_by_id
  4. synapse_state_str
  5. synapse_pending_inputs
  6. log_unresolved_inputs
  7. log_synapse_action
  8. log_synapse
  9. pcmk__log_graph_action
  10. pcmk__log_graph

   1 /*
   2  * Copyright 2004-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/crm.h>
  13 #include <crm/msg_xml.h>
  14 #include <crm/common/xml.h>
  15 #include <pacemaker-internal.h>
  16 
  17 /*!
  18  * \internal
  19  * \brief Return text equivalent of an enum pcmk__graph_status for logging
  20  *
  21  * \param[in] state  Transition status
  22  *
  23  * \return Human-readable text equivalent of \p state
  24  */
  25 const char *
  26 pcmk__graph_status2text(enum pcmk__graph_status state)
     /* [previous][next][first][last][top][bottom][index][help] */
  27 {
  28     switch (state) {
  29         case pcmk__graph_active:
  30             return "active";
  31         case pcmk__graph_pending:
  32             return "pending";
  33         case pcmk__graph_complete:
  34             return "complete";
  35         case pcmk__graph_terminated:
  36             return "terminated";
  37     }
  38     return "unknown";
  39 }
  40 
  41 static const char *
  42 actiontype2text(enum pcmk__graph_action_type type)
     /* [previous][next][first][last][top][bottom][index][help] */
  43 {
  44     switch (type) {
  45         case pcmk__pseudo_graph_action:
  46             return "pseudo";
  47         case pcmk__rsc_graph_action:
  48             return "resource";
  49         case pcmk__cluster_graph_action:
  50             return "cluster";
  51     }
  52     return "invalid";
  53 }
  54 
  55 /*!
  56  * \internal
  57  * \brief Find a transition graph action by ID
  58  *
  59  * \param[in] graph  Transition graph to search
  60  * \param[in] id     Action ID to search for
  61  *
  62  * \return Transition graph action corresponding to \p id, or NULL if none
  63  */
  64 static pcmk__graph_action_t *
  65 find_graph_action_by_id(pcmk__graph_t *graph, int id)
     /* [previous][next][first][last][top][bottom][index][help] */
  66 {
  67     if (graph == NULL) {
  68         return NULL;
  69     }
  70 
  71     for (GList *sIter = graph->synapses; sIter != NULL; sIter = sIter->next) {
  72         pcmk__graph_synapse_t *synapse = (pcmk__graph_synapse_t *) sIter->data;
  73 
  74         for (GList *aIter = synapse->actions; aIter != NULL;
  75              aIter = aIter->next) {
  76 
  77             pcmk__graph_action_t *action = (pcmk__graph_action_t *) aIter->data;
  78 
  79             if (action->id == id) {
  80                 return action;
  81             }
  82         }
  83     }
  84     return NULL;
  85 }
  86 
  87 static const char *
  88 synapse_state_str(pcmk__graph_synapse_t *synapse)
     /* [previous][next][first][last][top][bottom][index][help] */
  89 {
  90     if (pcmk_is_set(synapse->flags, pcmk__synapse_failed)) {
  91         return "Failed";
  92 
  93     } else if (pcmk_is_set(synapse->flags, pcmk__synapse_confirmed)) {
  94         return "Completed";
  95 
  96     } else if (pcmk_is_set(synapse->flags, pcmk__synapse_executed)) {
  97         return "In-flight";
  98 
  99     } else if (pcmk_is_set(synapse->flags, pcmk__synapse_ready)) {
 100         return "Ready";
 101     }
 102     return "Pending";
 103 }
 104 
 105 /*!
 106  * \internal
 107  * \brief List the action IDs of pending inputs to a transition graph synapse
 108  *
 109  * \param[in] graph    Transition graph to which \p synapse belongs
 110  * \param[in] synapse  Synapse whose inputs to check
 111  *
 112  * \return A \p GString containing the space-delimited action IDs of inputs to
 113  *         \p synapse that haven't completed successfully
 114  *
 115  * \note The caller is responsible for freeing the return value using
 116  *       \p g_string_free().
 117  */
 118 static GString *
 119 synapse_pending_inputs(pcmk__graph_t *graph,
     /* [previous][next][first][last][top][bottom][index][help] */
 120                        const pcmk__graph_synapse_t *synapse)
 121 {
 122     GString *pending = NULL;
 123 
 124     for (const GList *lpc = synapse->inputs; lpc != NULL; lpc = lpc->next) {
 125         const pcmk__graph_action_t *input = (pcmk__graph_action_t *) lpc->data;
 126 
 127         if (pcmk_is_set(input->flags, pcmk__graph_action_failed)) {
 128             pcmk__add_word(&pending, 1024, ID(input->xml));
 129 
 130         } else if (pcmk_is_set(input->flags, pcmk__graph_action_confirmed)) {
 131             // Confirmed successful inputs are not pending
 132 
 133         } else if (find_graph_action_by_id(graph, input->id) != NULL) {
 134             // In-flight or pending
 135             pcmk__add_word(&pending, 1024, ID(input->xml));
 136         }
 137     }
 138     return pending;
 139 }
 140 
 141 // Log synapse inputs that aren't in graph
 142 static void
 143 log_unresolved_inputs(unsigned int log_level, pcmk__graph_t *graph,
     /* [previous][next][first][last][top][bottom][index][help] */
 144                       pcmk__graph_synapse_t *synapse)
 145 {
 146     for (GList *lpc = synapse->inputs; lpc != NULL; lpc = lpc->next) {
 147         pcmk__graph_action_t *input = (pcmk__graph_action_t *) lpc->data;
 148         const char *key = crm_element_value(input->xml, XML_LRM_ATTR_TASK_KEY);
 149         const char *host = crm_element_value(input->xml, XML_LRM_ATTR_TARGET);
 150 
 151         if (find_graph_action_by_id(graph, input->id) == NULL) {
 152             do_crm_log(log_level,
 153                        " * [Input %2d]: Unresolved dependency %s op %s%s%s",
 154                        input->id, actiontype2text(input->type), key,
 155                        (host? " on " : ""), (host? host : ""));
 156         }
 157     }
 158 }
 159 
 160 static void
 161 log_synapse_action(unsigned int log_level, pcmk__graph_synapse_t *synapse,
     /* [previous][next][first][last][top][bottom][index][help] */
 162                    pcmk__graph_action_t *action, const char *pending_inputs)
 163 {
 164     const char *key = crm_element_value(action->xml, XML_LRM_ATTR_TASK_KEY);
 165     const char *host = crm_element_value(action->xml, XML_LRM_ATTR_TARGET);
 166     char *desc = crm_strdup_printf("%s %s op %s",
 167                                    synapse_state_str(synapse),
 168                                    actiontype2text(action->type), key);
 169 
 170     do_crm_log(log_level,
 171                "[Action %4d]: %-50s%s%s (priority: %d, waiting: %s)",
 172                action->id, desc, (host? " on " : ""), (host? host : ""),
 173                synapse->priority, pending_inputs);
 174     free(desc);
 175 }
 176 
 177 static void
 178 log_synapse(unsigned int log_level, pcmk__graph_t *graph,
     /* [previous][next][first][last][top][bottom][index][help] */
 179             pcmk__graph_synapse_t *synapse)
 180 {
 181     GString *g_pending = NULL;
 182     const char *pending = "none";
 183 
 184     if (!pcmk_is_set(synapse->flags, pcmk__synapse_executed)) {
 185         g_pending = synapse_pending_inputs(graph, synapse);
 186 
 187         if (g_pending != NULL) {
 188             pending = (const char *) g_pending->str;
 189         }
 190     }
 191 
 192     for (GList *lpc = synapse->actions; lpc != NULL; lpc = lpc->next) {
 193         log_synapse_action(log_level, synapse,
 194                            (pcmk__graph_action_t *) lpc->data, pending);
 195     }
 196 
 197     if (g_pending != NULL) {
 198         g_string_free(g_pending, TRUE);
 199     }
 200 
 201     if (!pcmk_is_set(synapse->flags, pcmk__synapse_executed)) {
 202         log_unresolved_inputs(log_level, graph, synapse);
 203     }
 204 }
 205 
 206 void
 207 pcmk__log_graph_action(int log_level, pcmk__graph_action_t *action)
     /* [previous][next][first][last][top][bottom][index][help] */
 208 {
 209     log_synapse(log_level, NULL, action->synapse);
 210 }
 211 
 212 void
 213 pcmk__log_graph(unsigned int log_level, pcmk__graph_t *graph)
     /* [previous][next][first][last][top][bottom][index][help] */
 214 {
 215     if ((graph == NULL) || (graph->num_actions == 0)) {
 216         if (log_level == LOG_TRACE) {
 217             crm_debug("Empty transition graph");
 218         }
 219         return;
 220     }
 221 
 222     do_crm_log(log_level, "Graph %d with %d actions:"
 223                " batch-limit=%d jobs, network-delay=%ums",
 224                graph->id, graph->num_actions,
 225                graph->batch_limit, graph->network_delay);
 226 
 227     for (GList *lpc = graph->synapses; lpc != NULL; lpc = lpc->next) {
 228         log_synapse(log_level, graph, (pcmk__graph_synapse_t *) lpc->data);
 229     }
 230 }

/* [previous][next][first][last][top][bottom][index][help] */