ronnie
2022-10-14 1504bb53e29d3d46222c0b3ea994fc494b48e153
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
/*
 * atexit.c --- Clean things up when we exit normally.
 *
 * Copyright Oracle, 2014
 * Author Darrick J. Wong <darrick.wong@oracle.com>
 *
 * %Begin-Header%
 * This file may be redistributed under the terms of the GNU Library
 * General Public License, version 2.
 * %End-Header%
 */
 
#ifndef _LARGEFILE_SOURCE
#define _LARGEFILE_SOURCE
#endif
#ifndef _LARGEFILE64_SOURCE
#define _LARGEFILE64_SOURCE
#endif
 
#include "config.h"
#include <stdlib.h>
 
#include "ext2_fs.h"
#include "ext2fs.h"
#include "ext2fsP.h"
 
struct exit_data {
   ext2_exit_fn func;
   void *data;
};
 
static struct exit_data *items;
static size_t nr_items;
 
static void handle_exit(void)
{
   struct exit_data *ed;
 
   for (ed = items + nr_items - 1; ed >= items; ed--) {
       if (ed->func == NULL)
           continue;
       ed->func(ed->data);
   }
 
   ext2fs_free_mem(&items);
   nr_items = 0;
}
 
/*
 * Schedule a function to be called at (normal) program termination.
 * If you want this to be called during a signal exit, you must capture
 * the signal and call exit() yourself!
 */
errcode_t ext2fs_add_exit_fn(ext2_exit_fn func, void *data)
{
   struct exit_data *ed, *free_ed = NULL;
   size_t x;
   errcode_t ret;
 
   if (func == NULL)
       return EXT2_ET_INVALID_ARGUMENT;
 
   for (x = 0, ed = items; x < nr_items; x++, ed++) {
       if (ed->func == func && ed->data == data)
           return EXT2_ET_FILE_EXISTS;
       if (ed->func == NULL)
           free_ed = ed;
   }
 
   if (free_ed) {
       free_ed->func = func;
       free_ed->data = data;
       return 0;
   }
 
   if (nr_items == 0) {
       ret = atexit(handle_exit);
       if (ret)
           return ret;
   }
 
   ret = ext2fs_resize_mem(0, (nr_items + 1) * sizeof(struct exit_data),
               &items);
   if (ret)
       return ret;
 
   items[nr_items].func = func;
   items[nr_items].data = data;
   nr_items++;
 
   return 0;
}
 
/* Remove a function from the exit cleanup list. */
errcode_t ext2fs_remove_exit_fn(ext2_exit_fn func, void *data)
{
   struct exit_data *ed;
   size_t x;
 
   if (func == NULL)
       return EXT2_ET_INVALID_ARGUMENT;
 
   for (x = 0, ed = items; x < nr_items; x++, ed++) {
       if (ed->func == NULL)
           return 0;
       if (ed->func == func && ed->data == data) {
           size_t sz = (nr_items - (x + 1)) *
                   sizeof(struct exit_data);
           memmove(ed, ed + 1, sz);
           memset(items + nr_items - 1, 0,
                  sizeof(struct exit_data));
       }
   }
 
   return 0;
}