1
1
openmpi/opal/memoryhooks/memory.c
Nathan Hjelm 0edfd328f8 opal: clean up init/finalize
This commit contains the following changes:

 - Remove the unused opal_test_init/opal_test_finalize
   functions. These functions are not used by anything in the code
   base or MTT. Tests use opal_init_util/opal_finalize_util instead.

 - Get rid of gotos in opal_init_util and opal_init. Replaced them
   with a cleaner solution.

 - Automatically register cleanup functions in init functions. The
   cleanup functions are executed in the reverse order of the
   initialization functions. The cleanup functions are run in
   opal_finalize_util() before tearing down the class system.

Signed-off-by: Nathan Hjelm <hjelmn@lanl.gov>
2018-12-18 14:37:04 -07:00

230 строки
6.5 KiB
C

/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2006 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) 2017 Los Alamos National Security, LLC. All rights
* reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "opal_config.h"
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif /* HAVE_SYS_TYPES_H */
#ifdef HAVE_SYS_MMAN_H
#include <sys/mman.h>
#endif /* HAVE_SYS_MMAN_H */
#include "opal/constants.h"
#include "opal/memoryhooks/memory.h"
#include "opal/memoryhooks/memory_internal.h"
#include "opal/class/opal_list.h"
#include "opal/class/opal_object.h"
#include "opal/sys/atomic.h"
#include "opal/runtime/opal.h"
/*
* local types
*/
struct callback_list_item_t {
opal_list_item_t super;
opal_mem_hooks_callback_fn_t *cbfunc;
void *cbdata;
};
typedef struct callback_list_item_t callback_list_item_t;
static OBJ_CLASS_INSTANCE(callback_list_item_t, opal_list_item_t, NULL, NULL);
/*
* local data
*/
static int hooks_support = 0;
static opal_list_t release_cb_list;
static opal_atomic_lock_t release_lock;
static int release_run_callbacks;
/**
* Finalize the memory hooks subsystem
*
* Finalize the memory hooks subsystem. This is generally called
* during opal_finalize() and no other memory hooks functions should
* be called after this function is called. opal_mem_hooks_finalize()
* will automatically deregister any callbacks that have not already
* been deregistered. In a multi-threaded application, it is possible
* that one thread will have a memory hook callback while the other
* thread is in opal_mem_hooks_finalize(), however, no threads will
* receive a callback once the calling thread has exited
* opal_mem_hooks_finalize().
*
* @retval OPAL_SUCCESS Shutdown completed successfully
*/
static void opal_mem_hooks_finalize(void)
{
/* don't try to run callbacks any more */
release_run_callbacks = false;
opal_atomic_mb();
/* aquire the lock, just to make sure no one is currently
twiddling with the list. We know this won't last long, since
no new calls will come in after we set run_callbacks to false */
opal_atomic_lock(&release_lock);
/* clean out the lists */
OPAL_LIST_DESTRUCT(&release_cb_list);
opal_atomic_unlock(&release_lock);
}
int opal_mem_hooks_init (void)
{
OBJ_CONSTRUCT(&release_cb_list, opal_list_t);
opal_atomic_lock_init(&release_lock, OPAL_ATOMIC_LOCK_UNLOCKED);
/* delay running callbacks until there is something in the
registration */
release_run_callbacks = false;
opal_atomic_mb();
opal_finalize_register_cleanup (opal_mem_hooks_finalize);
return OPAL_SUCCESS;
}
/* called from memory manager / memory-manager specific hooks */
void
opal_mem_hooks_set_support(int support)
{
hooks_support = support;
}
/* called from the memory manager / memory-manager specific hooks */
void
opal_mem_hooks_release_hook(void *buf, size_t length, bool from_alloc)
{
callback_list_item_t *cbitem, *next;
if (!release_run_callbacks) return;
/*
* This is not really thread safe - but we can't hold the lock
* while calling the callback function as this routine can
* be called recursively.
*
* Instead, we could set a flag if we are already in the callback,
* and if called recursively queue the new address/length and allow
* the initial callback to dispatch this
*/
opal_atomic_lock(&release_lock);
OPAL_LIST_FOREACH_SAFE(cbitem, next, &release_cb_list, callback_list_item_t) {
opal_atomic_unlock(&release_lock);
cbitem->cbfunc(buf, length, cbitem->cbdata, (bool) from_alloc);
opal_atomic_lock(&release_lock);
}
opal_atomic_unlock(&release_lock);
}
int
opal_mem_hooks_support_level(void)
{
return hooks_support;
}
int
opal_mem_hooks_register_release(opal_mem_hooks_callback_fn_t *func, void *cbdata)
{
callback_list_item_t *cbitem, *new_cbitem;
int ret = OPAL_SUCCESS;
if (0 == ((OPAL_MEMORY_FREE_SUPPORT|OPAL_MEMORY_MUNMAP_SUPPORT) & hooks_support)) {
return OPAL_ERR_NOT_SUPPORTED;
}
/* pre-allocate a callback item on the assumption it won't be
found. We can't call OBJ_NEW inside the lock because it might
call alloc / realloc */
new_cbitem = OBJ_NEW(callback_list_item_t);
if (NULL == new_cbitem) {
ret = OPAL_ERR_OUT_OF_RESOURCE;
goto done;
}
opal_atomic_lock(&release_lock);
/* we either have or are about to have a registration that needs
calling back. Let the system know it needs to run callbacks
now */
release_run_callbacks = true;
opal_atomic_mb();
/* make sure the callback isn't already in the list */
OPAL_LIST_FOREACH(cbitem, &release_cb_list, callback_list_item_t) {
if (cbitem->cbfunc == func) {
ret = OPAL_EXISTS;
goto done;
}
}
new_cbitem->cbfunc = func;
new_cbitem->cbdata = cbdata;
opal_list_append(&release_cb_list, (opal_list_item_t*) new_cbitem);
done:
opal_atomic_unlock(&release_lock);
if (OPAL_EXISTS == ret && NULL != new_cbitem) {
OBJ_RELEASE(new_cbitem);
}
return ret;
}
int
opal_mem_hooks_unregister_release(opal_mem_hooks_callback_fn_t* func)
{
callback_list_item_t *cbitem, *found_item = NULL;
int ret = OPAL_ERR_NOT_FOUND;
opal_atomic_lock(&release_lock);
/* make sure the callback isn't already in the list */
OPAL_LIST_FOREACH(cbitem, &release_cb_list, callback_list_item_t) {
if (cbitem->cbfunc == func) {
opal_list_remove_item(&release_cb_list, (opal_list_item_t *) cbitem);
found_item = cbitem;
ret = OPAL_SUCCESS;
break;
}
}
opal_atomic_unlock(&release_lock);
/* OBJ_RELEASE calls free, so we can't release until we get out of
the lock */
if (NULL != found_item) {
OBJ_RELEASE(found_item);
}
return ret;
}