Loading...
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 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | /* Copyright (C) 1995,1996 Robert de Bath <rdebath@cix.compulink.co.uk> * This file is part of the Linux-8086 C library and is distributed * under the GNU Library General Public License. */ #include <features.h> #include <unistd.h> #include <stdlib.h> #include <stdio.h> #include <errno.h> #include <atomic.h> #if defined __UCLIBC_HAS_THREADS__ && defined __UCLIBC_HAS_THREADS_NATIVE__ # include <fork.h> #endif #include <bits/uClibc_mutex.h> __UCLIBC_MUTEX_EXTERN(__atexit_lock) attribute_hidden; typedef void (*aefuncp)(void); /* atexit function pointer */ typedef void (*oefuncp)(int, void *); /* on_exit function pointer */ typedef void (*cxaefuncp)(void *); /* __cxa_atexit function pointer */ typedef enum { ef_free, ef_in_use, ef_on_exit, ef_cxa_atexit } ef_type; /* exit function types */ /* this is in the L_exit object */ extern void (*__exit_cleanup)(int) attribute_hidden; /* these are in the L___do_exit object */ extern int __exit_slots attribute_hidden; extern int __exit_count attribute_hidden; extern void __exit_handler(int) attribute_hidden; struct exit_function { /* * 'type' should be of type of the 'enum ef_type' above but since we * need this element in an atomic operation we have to use 'long int'. */ long int type; /* enum ef_type */ union { struct { oefuncp func; void *arg; } on_exit; struct { cxaefuncp func; void *arg; void* dso_handle; } cxa_atexit; } funcs; }; #ifdef __UCLIBC_DYNAMIC_ATEXIT__ extern struct exit_function *__exit_function_table attribute_hidden; #else extern struct exit_function __exit_function_table[__UCLIBC_MAX_ATEXIT] attribute_hidden; #endif extern struct exit_function *__new_exitfn(void) attribute_hidden; /* this is in the L___cxa_atexit object */ extern int __cxa_atexit(cxaefuncp, void *arg, void *dso_handle); #if defined(L_atexit) extern void *__dso_handle __attribute__ ((__weak__)); /* * register a function to be called at normal program termination * (the registered function takes no arguments) */ #ifdef L_atexit int attribute_hidden atexit(aefuncp func) #endif { /* * glibc casts aefuncp to cxaefuncp. * This seems dodgy, but I guess calling a function with more * parameters than it needs will work everywhere? */ return __cxa_atexit((cxaefuncp)func, NULL, &__dso_handle == NULL ? NULL : __dso_handle); } #endif #ifdef L_on_exit /* * register a function to be called at normal program termination * the registered function takes two arguments: * status - the exit status that was passed to the exit() function * arg - generic argument */ int on_exit(oefuncp func, void *arg) { struct exit_function *efp; if (func == NULL) { return 0; } efp = __new_exitfn(); if (efp == NULL) { return -1; } efp->funcs.on_exit.func = func; efp->funcs.on_exit.arg = arg; /* assign last for thread safety, since we're now unlocked */ efp->type = ef_on_exit; return 0; } #endif #ifdef L___cxa_atexit libc_hidden_proto(__cxa_atexit) int __cxa_atexit(cxaefuncp func, void *arg, void *dso_handle) { struct exit_function *efp; if (func == NULL) { return 0; } efp = __new_exitfn(); if (efp == NULL) { return -1; } efp->funcs.cxa_atexit.func = func; efp->funcs.cxa_atexit.arg = arg; efp->funcs.cxa_atexit.dso_handle = dso_handle; /* assign last for thread safety, since we're now unlocked */ efp->type = ef_cxa_atexit; return 0; } libc_hidden_def(__cxa_atexit) #endif #ifdef L___cxa_finalize /* * If D is non-NULL, call all functions registered with `__cxa_atexit' * with the same dso handle. Otherwise, if D is NULL, call all of the * registered handlers. */ void __cxa_finalize(void *dso_handle); void __cxa_finalize(void *dso_handle) { struct exit_function *efp; int exit_count_snapshot = __exit_count; /* In reverse order */ while (exit_count_snapshot) { efp = &__exit_function_table[--exit_count_snapshot]; /* * We check dso_handle match before we verify the type of the union entry. * However, the atomic_exchange will validate that we were really "allowed" * to read dso_handle... */ if ((dso_handle == NULL || dso_handle == efp->funcs.cxa_atexit.dso_handle) /* We don't want to run this cleanup more than once. */ && !atomic_compare_and_exchange_bool_acq(&efp->type, ef_free, ef_cxa_atexit) ) { /* glibc passes status (0) too, but that's not in the prototype */ (*efp->funcs.cxa_atexit.func)(efp->funcs.cxa_atexit.arg); } } /* * Remove the registered fork handlers. We do not have to * unregister anything if the program is going to terminate anyway. */ #ifdef UNREGISTER_ATFORK if (dso_handle != NULL) { UNREGISTER_ATFORK(dso_handle); } #endif } #endif #ifdef L___exit_handler int __exit_count = 0; /* Number of registered exit functions */ #ifdef __UCLIBC_DYNAMIC_ATEXIT__ struct exit_function *__exit_function_table = NULL; int __exit_slots = 0; /* Size of __exit_function_table */ #else struct exit_function __exit_function_table[__UCLIBC_MAX_ATEXIT]; #endif /* * Find and return a new exit_function pointer, for atexit, * onexit and __cxa_atexit to initialize */ struct exit_function attribute_hidden *__new_exitfn(void) { struct exit_function *efp; __UCLIBC_MUTEX_LOCK(__atexit_lock); /* * Reuse free slots at the end of the list. * This avoids eating memory when dlopen and dlclose modules multiple times. */ while (__exit_count > 0) { if (__exit_function_table[__exit_count-1].type == ef_free) { --__exit_count; } else break; } #ifdef __UCLIBC_DYNAMIC_ATEXIT__ /* If we are out of function table slots, make some more */ if (__exit_slots < __exit_count+1) { efp = realloc(__exit_function_table, (__exit_slots+20)*sizeof(struct exit_function)); if (efp == NULL) { /* __set_errno(ENOMEM); */ goto DONE; } __exit_function_table = efp; __exit_slots += 20; } #else if (__exit_count >= __UCLIBC_MAX_ATEXIT) { __set_errno(ENOMEM); efp = NULL; goto DONE; } #endif __exit_cleanup = __exit_handler; /* enable cleanup */ efp = &__exit_function_table[__exit_count++]; efp->type = ef_in_use; DONE: __UCLIBC_MUTEX_UNLOCK(__atexit_lock); return efp; } /* * Handle the work of executing the registered exit functions * This is called while we are locked, so no additional locking * is needed... */ void __exit_handler(int status) { struct exit_function *efp; /* In reverse order */ while (__exit_count) { efp = &__exit_function_table[--__exit_count]; switch (efp->type) { case ef_on_exit: if (efp->funcs.on_exit.func) { (efp->funcs.on_exit.func)(status, efp->funcs.on_exit.arg); } break; case ef_cxa_atexit: if (efp->funcs.cxa_atexit.func) { /* glibc passes status too, but that's not in the prototype */ (efp->funcs.cxa_atexit.func)(efp->funcs.cxa_atexit.arg); } break; } } #ifdef __UCLIBC_DYNAMIC_ATEXIT__ /* Free up memory used by the __exit_function_table structure */ free(__exit_function_table); #endif } #endif #ifdef L_exit /* Defeat compiler optimization which assumes function addresses are never NULL */ static __always_inline int not_null_ptr(const void *p) { const void *q; __asm__ ("" : "=r" (q) /* output */ : "0" (p) /* input */ ); return q != 0; } extern void weak_function _stdio_term(void) attribute_hidden; attribute_hidden void (*__exit_cleanup)(int) = 0; __UCLIBC_MUTEX_INIT(__atexit_lock, PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP); extern void __uClibc_fini(void) attribute_hidden; /* * Normal program termination */ void exit(int rv) { /* Perform exit-specific cleanup (atexit and on_exit) */ __UCLIBC_MUTEX_LOCK(__atexit_lock); if (not_null_ptr(__exit_cleanup)) { __exit_cleanup(rv); } __UCLIBC_MUTEX_UNLOCK(__atexit_lock); __uClibc_fini(); /* If we are using stdio, try to shut it down. At the very least, * this will attempt to commit all buffered writes. It may also * unbuffer all writable files, or close them outright. * Check the stdio routines for details. */ if (not_null_ptr(_stdio_term)) _stdio_term(); _exit(rv); } libc_hidden_def(exit) #endif |