File: hook_base.c

package info (click to toggle)
openmpi 5.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 202,312 kB
  • sloc: ansic: 612,441; makefile: 42,495; sh: 11,230; javascript: 9,244; f90: 7,052; java: 6,404; perl: 5,154; python: 1,856; lex: 740; fortran: 61; cpp: 20; tcl: 12
file content (300 lines) | stat: -rw-r--r-- 11,037 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
297
298
299
300
/*
 * Copyright (c) 2017      IBM Corporation.  All rights reserved.
 * Copyright (c) 2018      Research Organization for Information Science
 *                         and Technology (RIST).  All rights reserved.
 * $COPYRIGHT$
 *
 * Additional copyrights may follow
 *
 * $HEADER$
 */

#include "ompi_config.h"

#include <sys/types.h>
#include <unistd.h>

#include "ompi/mca/mca.h"
#include "opal/mca/base/base.h"

#include "opal/runtime/opal.h"
#include "opal/util/output.h"
#include "opal/util/show_help.h"
#include "opal/class/opal_list.h"
#include "opal/include/opal/prefetch.h"

#include "ompi/constants.h"
#include "ompi/mca/hook/hook.h"
#include "ompi/mca/hook/base/base.h"

/*
 * The following file was created by configure.  It contains extern
 * statements and the definition of an array of pointers to each
 * component's public mca_base_component_t struct.
 */
#include "ompi/mca/hook/base/static-components.h"


// Is the framework open - or has it been closed and we need to reopen it.
static bool ompi_hook_is_framework_open = false;

static opal_list_t *additional_callback_components = NULL;


static int ompi_hook_base_register( mca_base_register_flag_t flags )
{
    return OMPI_SUCCESS;
}

static int ompi_hook_base_open( mca_base_open_flag_t flags )
{
    int ret;
    const mca_base_component_t **static_components = ompi_hook_base_framework.framework_static_components;
    mca_base_component_list_item_t *cli = NULL;
    mca_base_component_t *component = NULL;
    bool found = false;

    additional_callback_components = OBJ_NEW(opal_list_t);

    /* Open up all available components */
    ret = mca_base_framework_components_open( &ompi_hook_base_framework, flags );
    if (ret != OMPI_SUCCESS) {
        return ret;
    }

    /*
     * Make sure that the `MCA_BASE_COMPONENT_FLAG_REQUIRED` components defined
     * as static are loaded. If we find one that was avoided then error out.
     */
    if( NULL != static_components ) {
        for (int i = 0 ; NULL != static_components[i]; ++i) {
            if( static_components[i]->mca_component_flags & MCA_BASE_COMPONENT_FLAG_REQUIRED ) {
                // Make sure that this component is in the list of components that
                // were included in the earlier framework_components_open() call.
                found = false;
                OPAL_LIST_FOREACH(cli, &ompi_hook_base_framework.framework_components, mca_base_component_list_item_t) {
                    component = (mca_base_component_t*)cli->cli_component;
                    if( component == static_components[i] ) {
                        found = true;
                        break;
                    }
                }
                if( !found ) {
                    opal_show_help("help-mca-hook-base.txt", "hook:missing-required-component", true,
                                   ompi_hook_base_framework.framework_name,
                                   static_components[i]->mca_component_name);
                    return OPAL_ERR_NOT_SUPPORTED;
                }
            }
        }
    }

    /* Assume that if the component is present then it wants to be used.
     * It has the option to have NULL as the function pointer for any
     * functions call hook locations they do not want to hear about
     */

    /*
     * There are three classes of components - we want them processed in this order
     * 1) static components
     * 2) dynamic components
     * 3) internal 'component' hooks (from other places in the code)
     *
     * The ordering of (1) and (2) is managed by mca_base_component_find().
     * We keep a separate list for the 'internal' hooks.
     */

    ompi_hook_is_framework_open = true;

    /* All done */
    return OMPI_SUCCESS;
}

static int ompi_hook_base_close( void )
{
    int ret;

    /*
     * Close our components
     */
    ret = mca_base_framework_components_close( &ompi_hook_base_framework, NULL );
    if( OMPI_SUCCESS != ret ) {
        return ret;
    }
    OBJ_RELEASE(additional_callback_components);
    ompi_hook_is_framework_open = false;

    return OMPI_SUCCESS;
}


int ompi_hook_base_register_callbacks(ompi_hook_base_component_t *comp)
{
    mca_base_component_list_item_t *cli;

    // Check if it is already there
    OPAL_LIST_FOREACH(cli, additional_callback_components, mca_base_component_list_item_t) {
        if( cli->cli_component == (mca_base_component_t*)comp ) {
            return OMPI_SUCCESS;
        }
    }

    // Not found, so add it to the list
    cli = OBJ_NEW(mca_base_component_list_item_t);
    cli->cli_component = (mca_base_component_t*)comp;
    opal_list_append(additional_callback_components, (opal_list_item_t*) cli);

    return OMPI_SUCCESS;
}

int ompi_hook_base_deregister_callbacks(ompi_hook_base_component_t *comp)
{
    mca_base_component_list_item_t *cli;

    // Check if it is already there
    OPAL_LIST_FOREACH(cli, additional_callback_components, mca_base_component_list_item_t) {
        if( cli->cli_component == (mca_base_component_t*)comp ) {
            opal_list_remove_item(additional_callback_components, (opal_list_item_t*) cli);
            OBJ_RELEASE(cli);
            return OMPI_SUCCESS;
        }
    }

    return OMPI_ERR_NOT_FOUND;
}

MCA_BASE_FRAMEWORK_DECLARE(ompi, hook, "hook hooks",
                           ompi_hook_base_register,
                           ompi_hook_base_open,
                           ompi_hook_base_close,
                           mca_hook_base_static_components, 0);


/* ***********************************************************************
 * ***********************************************************************
 * *********************************************************************** */

/*
 * If the framework has not been opened, then we can only use the static components.
 *
 * Otherwise we would need to initialize opal outside of ompi_mpi_init and possibly
 * after ompi_mpi_finalize which gets messy (especially when trying to cleanup).
 */
#define HOOK_CALL_COMMON_HOOK_NOT_INITIALIZED(fn_name, ...)             \
    do {                                                                \
        ompi_hook_base_component_t *component;                          \
        int idx;                                                        \
                                                                        \
        for(idx = 0; NULL != mca_hook_base_static_components[idx]; ++idx ) { \
            component = (ompi_hook_base_component_t*)mca_hook_base_static_components[idx]; \
            if( NULL != component->hookm_ ## fn_name &&                 \
                ompi_hook_base_ ## fn_name != component->hookm_ ## fn_name ) { \
                component->hookm_ ## fn_name ( __VA_ARGS__ );           \
            }                                                           \
        }                                                               \
    } while(0)

/*
 * Once the framework is open then call all available components with
 * the appropriate function pointer. Call order:
 * 1) static components
 * 2) dynamic components
 * 3) 'registered' components (those registered by ompi_hook_base_register_callbacks)
 */
#define HOOK_CALL_COMMON_HOOK_INITIALIZED(fn_name, ...)                 \
    do {                                                                \
        mca_base_component_list_item_t *cli;                            \
        ompi_hook_base_component_t *component;                          \
                                                                        \
        OPAL_LIST_FOREACH(cli, &ompi_hook_base_framework.framework_components, mca_base_component_list_item_t) { \
            component = (ompi_hook_base_component_t*)cli->cli_component; \
            if( NULL != component->hookm_ ## fn_name &&                 \
                ompi_hook_base_ ## fn_name != component->hookm_ ## fn_name ) { \
                component->hookm_ ## fn_name ( __VA_ARGS__ );           \
            }                                                           \
        }                                                               \
                                                                        \
        OPAL_LIST_FOREACH(cli, additional_callback_components, mca_base_component_list_item_t) { \
            component = (ompi_hook_base_component_t*)cli->cli_component; \
            if( NULL != component->hookm_ ## fn_name &&                 \
                ompi_hook_base_ ## fn_name != component->hookm_ ## fn_name ) { \
                component->hookm_ ## fn_name ( __VA_ARGS__ );           \
            }                                                           \
        }                                                               \
    } while(0)

#define HOOK_CALL_COMMON(fn_name, ...)                                  \
    do {                                                                \
        if( OPAL_LIKELY(ompi_hook_is_framework_open) ) {                \
            HOOK_CALL_COMMON_HOOK_INITIALIZED(fn_name, __VA_ARGS__);    \
        }                                                               \
        else {                                                          \
            HOOK_CALL_COMMON_HOOK_NOT_INITIALIZED(fn_name, __VA_ARGS__); \
        }                                                               \
    } while(0)



void ompi_hook_base_mpi_initialized_top(int *flag)
{
    HOOK_CALL_COMMON( mpi_initialized_top, flag );
}

void ompi_hook_base_mpi_initialized_bottom(int *flag)
{
    HOOK_CALL_COMMON( mpi_initialized_bottom, flag );
}


void ompi_hook_base_mpi_init_thread_top(int *argc, char ***argv, int required, int *provided)
{
    HOOK_CALL_COMMON( mpi_init_thread_top, argc, argv, required, provided );
}

void ompi_hook_base_mpi_init_thread_bottom(int *argc, char ***argv, int required, int *provided)
{
    HOOK_CALL_COMMON( mpi_init_thread_bottom, argc, argv, required, provided );
}


void ompi_hook_base_mpi_finalized_top(int *flag)
{
    HOOK_CALL_COMMON( mpi_finalized_top, flag );
}

void ompi_hook_base_mpi_finalized_bottom(int *flag)
{
    HOOK_CALL_COMMON( mpi_finalized_bottom, flag );
}


void ompi_hook_base_mpi_init_top(int argc, char **argv, int requested, int *provided)
{
    HOOK_CALL_COMMON( mpi_init_top, argc, argv, requested, provided);
}

void ompi_hook_base_mpi_init_top_post_opal(int argc, char **argv, int requested, int *provided)
{
    HOOK_CALL_COMMON( mpi_init_top_post_opal, argc, argv, requested, provided);
}

void ompi_hook_base_mpi_init_bottom(int argc, char **argv, int requested, int *provided)
{
    HOOK_CALL_COMMON( mpi_init_bottom, argc, argv, requested, provided);
}

void ompi_hook_base_mpi_init_error(int argc, char **argv, int requested, int *provided)
{
    HOOK_CALL_COMMON( mpi_init_error, argc, argv, requested, provided);
}


void ompi_hook_base_mpi_finalize_top(void)
{
    HOOK_CALL_COMMON( mpi_finalize_top, );
}

void ompi_hook_base_mpi_finalize_bottom(void)
{
    HOOK_CALL_COMMON( mpi_finalize_bottom, );
}