File: notifier_ftb_module.c

package info (click to toggle)
openmpi 1.6.5-9.1%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 91,628 kB
  • ctags: 44,305
  • sloc: ansic: 408,966; cpp: 44,454; sh: 27,828; makefile: 10,486; asm: 3,882; python: 1,239; lex: 805; perl: 549; csh: 253; fortran: 232; f90: 126; tcl: 12
file content (296 lines) | stat: -rw-r--r-- 8,703 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
/*
 * Copyright (c) 2004-2011 The Trustees of Indiana University and Indiana
 *                         University Research and Technology
 *                         Corporation.  All rights reserved.
 * Copyright (c) 2004-2005 The University of Tennessee and The University
 *                         of Tennessee Research Foundation.  All rights
 *                         reserved.
 * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
 *                         University of Stuttgart.  All rights reserved.
 * Copyright (c) 2004-2005 The Regents of the University of California.
 *                         All rights reserved.
 * Copyright (c) 2007      Sun Microsystems, Inc.  All rights reserved.
 * $COPYRIGHT$
 *
 * Additional copyrights may follow
 *
 * $HEADER$
 */

#include "orte_config.h"
#include "orte/constants.h"

#include <stdio.h>
#include <string.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif  /* HAVE_SYS_TIME_H */
#ifdef HAVE_STDARG_H
#include <stdarg.h>
#endif

#include "opal/mca/installdirs/installdirs.h"
#include "opal/util/show_help.h"
#include "opal/util/os_path.h"

#include "orte/mca/plm/base/plm_private.h"
#include "orte/mca/plm/plm.h"
#include "orte/mca/ess/ess.h"
#include "orte/util/show_help.h"
#include "orte/mca/snapc/snapc.h"
#include "orte/mca/snapc/base/base.h"
#include "orte/mca/errmgr/errmgr.h"
#include "orte/mca/errmgr/base/base.h"
#include "orte/mca/notifier/base/base.h"

#include "notifier_ftb.h"

/* Static API's */
static int init(void);
static void finalize(void);
static void ftb_log(int severity, int errcode, const char *msg, ...);
static void ftb_help(int severity, int errcode, const char *filename, const char *topic, ...);
static void ftb_peer(int severity, int errcode, orte_process_name_t *peer_proc, const char *msg, ...);

/* Module def */
orte_notifier_base_module_t orte_notifier_ftb_module = {
    init,
    finalize,
    ftb_log,
    ftb_help,
    ftb_peer
};

/* FTB client information */
FTB_client_t ftb_client_info;

/* FTB client handle */
FTB_client_handle_t ftb_client_handle;

static int init(void) {
    int ret;
    char *schema_file;

    /* Locate the FTB events schema file */
    if (NULL == (schema_file = opal_os_path(false, opal_install_dirs.pkgdatadir,
                                            "help-ftb-event-schema.txt", NULL))) {
        schema_file = strdup("help-ftb-event-schema.txt");
    }

    /* Declare the Open MPI publishable events to the FTB */
    ret = FTB_Declare_publishable_events(ftb_client_handle, schema_file, NULL, 0);
    free(schema_file);

    if (FTB_SUCCESS != ret) {
        orte_show_help("help-orte-notifier-ftb.txt", "declare events failed", true, 
                       "FTB_Declare_publishable_events() failed", ret);

        FTB_Disconnect(ftb_client_handle);
        return ORTE_ERROR;
    }

    return ORTE_SUCCESS;
}

static void finalize(void) {
    /* If the FTB client handle is valid, disconnect the client from FTB. */
    if (1 == ftb_client_handle.valid) {
	    FTB_Disconnect(ftb_client_handle);
    }
}

static const char* get_ftb_event_severity(int severity)
{
    switch (severity) {
    case ORTE_NOTIFIER_EMERG:
    case ORTE_NOTIFIER_ALERT:
        return "ALL";
    case ORTE_NOTIFIER_CRIT:
        return "FATAL";
    case ORTE_NOTIFIER_ERROR:
        return "ERROR";
    case ORTE_NOTIFIER_WARN:
    case ORTE_NOTIFIER_NOTICE:
        return "WARNING";
    case ORTE_NOTIFIER_INFO:
    case ORTE_NOTIFIER_DEBUG:
        return "INFO";
    default:
        return "UNKNOWN";
    }
}

static const char* get_ftb_event_name(int errnum)
{
    /* Handle checkpoint/restart and migration events */
    if ( CHECK_ORTE_SNAPC_CKPT_STATE(errnum) ) {
        errnum = ORTE_SNAPC_CKPT_STATE(errnum);
        switch (errnum) {
        case ORTE_SNAPC_CKPT_STATE_FINISHED:
            return FTB_EVENT(FTB_MPI_PROCS_CKPTED);

        case ORTE_SNAPC_CKPT_STATE_NO_CKPT:
        case ORTE_SNAPC_CKPT_STATE_ERROR:
            return FTB_EVENT(FTB_MPI_PROCS_CKPT_FAIL);

        default:
            return NULL;
        }
    } else {
        /* Handle process and communication failure events */
        switch (errnum) {
        case ORTE_ERR_CONNECTION_REFUSED:
        case ORTE_ERR_CONNECTION_FAILED:
        case ORTE_ERR_UNREACH:
            return FTB_EVENT(FTB_MPI_PROCS_UNREACHABLE);

        case ORTE_ERR_COMM_FAILURE:
            return FTB_EVENT(FTB_MPI_PROCS_COMM_ERROR);

        case ORTE_PROC_STATE_FAILED_TO_START:
            return FTB_EVENT(FTB_MPI_PROCS_ABORTED);

        case ORTE_PROC_STATE_ABORTED:
        case ORTE_PROC_STATE_ABORTED_BY_SIG:
        case ORTE_PROC_STATE_TERM_WO_SYNC:
        case ORTE_PROC_STATE_TERMINATED:
        case ORTE_PROC_STATE_KILLED_BY_CMD:
            return FTB_EVENT(FTB_MPI_PROCS_DEAD);

        default:
            return NULL;
        }
    }

    return NULL;
}

/* Extracts the FTB payload (inside the brackets []) from notifier
 * message payload. 
 * For instance: "<FTB message [payload]>" would return "payload".
 */
static unsigned int extract_payload(char *dest, char *src, unsigned int size)
{
    unsigned int ret;
    char *lbrace, *rbrace;
    rbrace = strrchr(src, ']');
    lbrace = strchr(src, '[');

    if (NULL == rbrace || NULL == lbrace) {
        strncpy(dest, src, size);
        ret = size;
    } else {
        ret = rbrace - lbrace + 1;
        if (ret > size) {
            ret = size;
        }
        strncpy(dest, lbrace, ret);
    }
    return ret;
}

static void publish_ftb_event(int severity, int errcode, FTB_event_properties_t *eprop)
{
    int ret;
    const char *event_name;
    FTB_event_handle_t ehandle;

    /* Publish the event to the Fault Tolerant Backplane */
    event_name = get_ftb_event_name(errcode);
    if (NULL != event_name) {
        ret = FTB_Publish(ftb_client_handle, event_name, eprop, &ehandle);
        if (FTB_SUCCESS != ret) {
            orte_show_help("help-orte-notifier-ftb.txt", "publish failed", true,
                           "FTB_Publish() failed", ret, get_ftb_event_severity(severity),
                           event_name, eprop->event_payload, errcode);
        }
    }
}

static void ftb_log(int severity, int errcode, const char *msg, ...)
{
    va_list arglist;
    char *payload;
    FTB_event_properties_t ev_prop;

    /* Only normal FTB events are supported currently. */
    ev_prop.event_type = (int) FTB_EVENT_NORMAL;

    /* is the severity value above the threshold - I know
     * this seems backward, but lower severity values are
     * considered "more severe"
     */
    if (severity > orte_notifier_threshold_severity) {
        return;
    }

    /* If there was a message, output it */
    va_start(arglist, msg);
    vasprintf(&payload, msg, arglist);
    va_end(arglist);    

    if (NULL != payload) {
        extract_payload(ev_prop.event_payload, payload, FTB_MAX_PAYLOAD_DATA);
        free(payload);
        publish_ftb_event(severity, errcode, &ev_prop);
    }
}

static void ftb_help(int severity, int errcode, const char *filename, const char *topic, ...)
{
    va_list arglist;
    char *payload;
    FTB_event_properties_t ev_prop;
    
    /* is the severity value above the threshold - I know
     * this seems backward, but lower severity values are
     * considered "more severe"
     */
    if (severity > orte_notifier_threshold_severity) {
        return;
    }

    va_start(arglist, topic);
    payload = opal_show_help_vstring(filename, topic, false, arglist);
    va_end(arglist);    

    if (NULL != payload) {
        extract_payload(ev_prop.event_payload, payload, FTB_MAX_PAYLOAD_DATA);
        free(payload);
        publish_ftb_event(severity, errcode, &ev_prop);
    }
}

static void ftb_peer(int severity, int errcode, orte_process_name_t *peer_proc, const char *msg, ...)
{
    va_list arglist;
    char *payload, *peer_host;
    FTB_event_properties_t ev_prop;

    /* Only normal FTB events are supported currently. */
    ev_prop.event_type = (int) FTB_EVENT_NORMAL;

    /* is the severity value above the threshold - I know
     * this seems backward, but lower severity values are
     * considered "more severe"
     */
    if (severity > orte_notifier_threshold_severity) {
        return;
    }

    peer_host = NULL;
    if (peer_proc) {
        peer_host = orte_ess.proc_get_hostname(peer_proc);
        /* Ignore the peer_host for now. */
    }

    va_start(arglist, msg);
    vasprintf(&payload, msg, arglist);
    va_end(arglist);

    if (NULL != payload) {
        extract_payload(ev_prop.event_payload, payload, FTB_MAX_PAYLOAD_DATA);
        free(payload);
        publish_ftb_event(severity, errcode, &ev_prop);
    }
}