atexit.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. /* Copyright (C) 1995,1996 Robert de Bath <rdebath@cix.compulink.co.uk>
  2. * This file is part of the Linux-8086 C library and is distributed
  3. * under the GNU Library General Public License.
  4. */
  5. /*
  6. * Dec 2000 Manuel Novoa III
  7. *
  8. * Made atexit handling conform to standards... i.e. no args.
  9. * Removed on_exit since it did not match gnu libc definition.
  10. * Combined atexit and __do_exit into one object file.
  11. *
  12. * Feb 2001 Manuel Novoa III
  13. *
  14. * Reworked file after addition of __uClibc_main.
  15. * Changed name of __do_exit to atexit_handler.
  16. * Changed name of __cleanup to __uClibc_cleanup.
  17. * Moved declaration of __uClibc_cleanup to __uClibc_main
  18. * where it is initialized with (possibly weak alias)
  19. * _stdio_term.
  20. *
  21. * Jul 2001 Steve Thayer
  22. *
  23. * Added an on_exit implementation (that now matches gnu libc definition.)
  24. * Pulled atexit_handler out of the atexit object since it is now required by
  25. * on_exit as well. Renamed it to __exit_handler.
  26. * Fixed a problem where exit functions stop getting called if one of
  27. * them calls exit().
  28. * As a side effect of these changes, abort() no longer calls the exit
  29. * functions (it now matches the gnu libc definition).
  30. *
  31. * August 2002 Erik Andersen
  32. * Added locking so atexit and friends can be thread safe
  33. *
  34. */
  35. #define _GNU_SOURCE
  36. #include <features.h>
  37. #include <unistd.h>
  38. #include <stdlib.h>
  39. #include <errno.h>
  40. #ifdef __UCLIBC_HAS_THREADS__
  41. #include <pthread.h>
  42. extern pthread_mutex_t mylock;
  43. # define LOCK pthread_mutex_lock(&mylock)
  44. # define UNLOCK pthread_mutex_unlock(&mylock);
  45. #else
  46. # define LOCK
  47. # define UNLOCK
  48. #endif
  49. typedef void (*aefuncp) (void); /* atexit function pointer */
  50. typedef void (*oefuncp) (int, void *); /* on_exit function pointer */
  51. typedef enum {
  52. ef_atexit,
  53. ef_on_exit
  54. } ef_type; /* exit function types */
  55. /* this is in the L_exit object */
  56. extern void (*__exit_cleanup) (int);
  57. /* these are in the L___do_exit object */
  58. extern int __exit_slots;
  59. extern int __exit_count;
  60. extern void __exit_handler(int);
  61. struct exit_function {
  62. ef_type type; /* ef_atexit or ef_on_exit */
  63. union {
  64. aefuncp atexit;
  65. struct {
  66. oefuncp func;
  67. void *arg;
  68. } on_exit;
  69. } funcs;
  70. };
  71. #ifdef __UCLIBC_DYNAMIC_ATEXIT__
  72. extern struct exit_function *__exit_function_table;
  73. #else
  74. extern struct exit_function __exit_function_table[__UCLIBC_MAX_ATEXIT];
  75. #endif
  76. #ifdef L_atexit
  77. /*
  78. * register a function to be called at normal program termination
  79. * (the registered function takes no arguments)
  80. */
  81. int atexit(aefuncp func)
  82. {
  83. struct exit_function *efp;
  84. LOCK;
  85. if (func) {
  86. #ifdef __UCLIBC_DYNAMIC_ATEXIT__
  87. /* If we are out of function table slots, make some more */
  88. if (__exit_slots < __exit_count+1) {
  89. __exit_function_table=realloc(__exit_function_table,
  90. (__exit_slots+20)*sizeof(struct exit_function));
  91. if (__exit_function_table==NULL) {
  92. UNLOCK;
  93. __set_errno(ENOMEM);
  94. return -1;
  95. }
  96. __exit_slots+=20;
  97. }
  98. #else
  99. if (__exit_count >= __UCLIBC_MAX_ATEXIT) {
  100. UNLOCK;
  101. __set_errno(ENOMEM);
  102. return -1;
  103. }
  104. #endif
  105. __exit_cleanup = __exit_handler; /* enable cleanup */
  106. efp = &__exit_function_table[__exit_count++];
  107. efp->type = ef_atexit;
  108. efp->funcs.atexit = func;
  109. }
  110. UNLOCK;
  111. return 0;
  112. }
  113. #endif
  114. #ifdef L_on_exit
  115. /*
  116. * register a function to be called at normal program termination
  117. * the registered function takes two arguments:
  118. * status - the exit status that was passed to the exit() function
  119. * arg - generic argument
  120. */
  121. int on_exit(oefuncp func, void *arg)
  122. {
  123. struct exit_function *efp;
  124. LOCK;
  125. if (func) {
  126. #ifdef __UCLIBC_DYNAMIC_ATEXIT__
  127. /* If we are out of function table slots, make some more */
  128. if (__exit_slots < __exit_count+1) {
  129. __exit_function_table=realloc(__exit_function_table,
  130. (__exit_slots+20)*sizeof(struct exit_function));
  131. if (__exit_function_table==NULL) {
  132. UNLOCK;
  133. __set_errno(ENOMEM);
  134. return -1;
  135. }
  136. __exit_slots+=20;
  137. }
  138. #else
  139. if (__exit_count >= __UCLIBC_MAX_ATEXIT) {
  140. UNLOCK;
  141. __set_errno(ENOMEM);
  142. return -1;
  143. }
  144. #endif
  145. __exit_cleanup = __exit_handler; /* enable cleanup */
  146. efp = &__exit_function_table[__exit_count++];
  147. efp->type = ef_on_exit;
  148. efp->funcs.on_exit.func = func;
  149. efp->funcs.on_exit.arg = arg;
  150. }
  151. UNLOCK;
  152. return 0;
  153. }
  154. #endif
  155. #ifdef L___exit_handler
  156. int __exit_count = 0; /* Number of registered exit functions */
  157. #ifdef __UCLIBC_DYNAMIC_ATEXIT__
  158. struct exit_function *__exit_function_table = NULL;
  159. int __exit_slots = 0; /* Size of __exit_function_table */
  160. #else
  161. struct exit_function __exit_function_table[__UCLIBC_MAX_ATEXIT];
  162. #endif
  163. /*
  164. * Handle the work of executing the registered exit functions
  165. * This is called while we are locked, so no additional locking
  166. * is needed...
  167. */
  168. void __exit_handler(int status)
  169. {
  170. struct exit_function *efp;
  171. /* In reverse order */
  172. while ( __exit_count ) {
  173. efp = &__exit_function_table[--__exit_count];
  174. switch (efp->type) {
  175. case ef_on_exit:
  176. if (efp->funcs.on_exit.func) {
  177. (efp->funcs.on_exit.func) (status, efp->funcs.on_exit.arg);
  178. }
  179. break;
  180. case ef_atexit:
  181. if (efp->funcs.atexit) {
  182. (efp->funcs.atexit) ();
  183. }
  184. break;
  185. }
  186. }
  187. #ifdef __UCLIBC_DYNAMIC_ATEXIT__
  188. /* Free up memory used by the __exit_function_table structure */
  189. if (__exit_function_table)
  190. free(__exit_function_table);
  191. #endif
  192. }
  193. #endif
  194. #ifdef L_exit
  195. extern void weak_function _stdio_term(void);
  196. void (*__exit_cleanup) (int) = 0;
  197. #ifdef __UCLIBC_HAS_THREADS__
  198. pthread_mutex_t mylock = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
  199. #endif
  200. /*
  201. * Normal program termination
  202. */
  203. void exit(int rv)
  204. {
  205. /* Perform exit-specific cleanup (atexit and on_exit) */
  206. LOCK;
  207. if (__exit_cleanup) {
  208. __exit_cleanup(rv);
  209. }
  210. UNLOCK;
  211. /* If we are using stdio, try to shut it down. At the very least,
  212. * this will attempt to commit all buffered writes. It may also
  213. * unbuffer all writable files, or close them outright.
  214. * Check the stdio routines for details. */
  215. if (_stdio_term)
  216. _stdio_term();
  217. _exit(rv);
  218. }
  219. #endif