Patch-ID: bash32-028
[bash.git] / unwind_prot.c
blob4fd194e8f8e6f1adf9ae2cdd3d96aedf1e5e1057
1 /* I can't stand it anymore! Please can't we just write the
2 whole Unix system in lisp or something? */
4 /* Copyright (C) 1987-2002 Free Software Foundation, Inc.
6 This file is part of GNU Bash, the Bourne Again SHell.
8 Bash is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
11 version.
13 Bash is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License along
19 with Bash; see the file COPYING. If not, write to the Free Software
20 Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
22 /* **************************************************************** */
23 /* */
24 /* Unwind Protection Scheme for Bash */
25 /* */
26 /* **************************************************************** */
27 #include "config.h"
29 #include "bashtypes.h"
30 #include "bashansi.h"
32 #if defined (HAVE_UNISTD_H)
33 # include <unistd.h>
34 #endif
36 #if STDC_HEADERS
37 # include <stddef.h>
38 #endif
40 #ifndef offsetof
41 # define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
42 #endif
44 #include "command.h"
45 #include "general.h"
46 #include "unwind_prot.h"
47 #include "quit.h"
48 #include "sig.h"
50 /* Structure describing a saved variable and the value to restore it to. */
51 typedef struct {
52 char *variable;
53 int size;
54 char desired_setting[1]; /* actual size is `size' */
55 } SAVED_VAR;
57 /* If HEAD.CLEANUP is null, then ARG.V contains a tag to throw back to.
58 If HEAD.CLEANUP is restore_variable, then SV.V contains the saved
59 variable. Otherwise, call HEAD.CLEANUP (ARG.V) to clean up. */
60 typedef union uwp {
61 struct uwp_head {
62 union uwp *next;
63 Function *cleanup;
64 } head;
65 struct {
66 struct uwp_head uwp_head;
67 char *v;
68 } arg;
69 struct {
70 struct uwp_head uwp_head;
71 SAVED_VAR v;
72 } sv;
73 } UNWIND_ELT;
76 static void without_interrupts __P((VFunction *, char *, char *));
77 static void unwind_frame_discard_internal __P((char *, char *));
78 static void unwind_frame_run_internal __P((char *, char *));
79 static void add_unwind_protect_internal __P((Function *, char *));
80 static void remove_unwind_protect_internal __P((char *, char *));
81 static void run_unwind_protects_internal __P((char *, char *));
82 static void clear_unwind_protects_internal __P((char *, char *));
83 static inline void restore_variable __P((SAVED_VAR *));
84 static void unwind_protect_mem_internal __P((char *, char *));
86 static UNWIND_ELT *unwind_protect_list = (UNWIND_ELT *)NULL;
88 #define uwpalloc(elt) (elt) = (UNWIND_ELT *)xmalloc (sizeof (UNWIND_ELT))
89 #define uwpfree(elt) free(elt)
91 /* Run a function without interrupts. This relies on the fact that the
92 FUNCTION cannot change the value of interrupt_immediately. (I.e., does
93 not call QUIT (). */
94 static void
95 without_interrupts (function, arg1, arg2)
96 VFunction *function;
97 char *arg1, *arg2;
99 int old_interrupt_immediately;
101 old_interrupt_immediately = interrupt_immediately;
102 interrupt_immediately = 0;
104 (*function)(arg1, arg2);
106 interrupt_immediately = old_interrupt_immediately;
109 /* Start the beginning of a region. */
110 void
111 begin_unwind_frame (tag)
112 char *tag;
114 add_unwind_protect ((Function *)NULL, tag);
117 /* Discard the unwind protects back to TAG. */
118 void
119 discard_unwind_frame (tag)
120 char *tag;
122 if (unwind_protect_list)
123 without_interrupts (unwind_frame_discard_internal, tag, (char *)NULL);
126 /* Run the unwind protects back to TAG. */
127 void
128 run_unwind_frame (tag)
129 char *tag;
131 if (unwind_protect_list)
132 without_interrupts (unwind_frame_run_internal, tag, (char *)NULL);
135 /* Add the function CLEANUP with ARG to the list of unwindable things. */
136 void
137 add_unwind_protect (cleanup, arg)
138 Function *cleanup;
139 char *arg;
141 without_interrupts (add_unwind_protect_internal, (char *)cleanup, arg);
144 /* Remove the top unwind protect from the list. */
145 void
146 remove_unwind_protect ()
148 if (unwind_protect_list)
149 without_interrupts
150 (remove_unwind_protect_internal, (char *)NULL, (char *)NULL);
153 /* Run the list of cleanup functions in unwind_protect_list. */
154 void
155 run_unwind_protects ()
157 if (unwind_protect_list)
158 without_interrupts
159 (run_unwind_protects_internal, (char *)NULL, (char *)NULL);
162 /* Erase the unwind-protect list. If flags is 1, free the elements. */
163 void
164 clear_unwind_protect_list (flags)
165 int flags;
167 char *flag;
169 if (unwind_protect_list)
171 flag = flags ? "" : (char *)NULL;
172 without_interrupts
173 (clear_unwind_protects_internal, flag, (char *)NULL);
177 /* **************************************************************** */
178 /* */
179 /* The Actual Functions */
180 /* */
181 /* **************************************************************** */
183 static void
184 add_unwind_protect_internal (cleanup, arg)
185 Function *cleanup;
186 char *arg;
188 UNWIND_ELT *elt;
190 uwpalloc (elt);
191 elt->head.next = unwind_protect_list;
192 elt->head.cleanup = cleanup;
193 elt->arg.v = arg;
194 unwind_protect_list = elt;
197 static void
198 remove_unwind_protect_internal (ignore1, ignore2)
199 char *ignore1, *ignore2;
201 UNWIND_ELT *elt;
203 elt = unwind_protect_list;
204 if (elt)
206 unwind_protect_list = unwind_protect_list->head.next;
207 uwpfree (elt);
211 static void
212 run_unwind_protects_internal (ignore1, ignore2)
213 char *ignore1, *ignore2;
215 unwind_frame_run_internal ((char *) NULL, (char *) NULL);
218 static void
219 clear_unwind_protects_internal (flag, ignore)
220 char *flag, *ignore;
222 if (flag)
224 while (unwind_protect_list)
225 remove_unwind_protect_internal ((char *)NULL, (char *)NULL);
227 unwind_protect_list = (UNWIND_ELT *)NULL;
230 static void
231 unwind_frame_discard_internal (tag, ignore)
232 char *tag, *ignore;
234 UNWIND_ELT *elt;
236 while (elt = unwind_protect_list)
238 unwind_protect_list = unwind_protect_list->head.next;
239 if (elt->head.cleanup == 0 && (STREQ (elt->arg.v, tag)))
241 uwpfree (elt);
242 break;
244 else
245 uwpfree (elt);
249 /* Restore the value of a variable, based on the contents of SV.
250 sv->desired_setting is a block of memory SIZE bytes long holding the
251 value itself. This block of memory is copied back into the variable. */
252 static inline void
253 restore_variable (sv)
254 SAVED_VAR *sv;
256 FASTCOPY (sv->desired_setting, sv->variable, sv->size);
259 static void
260 unwind_frame_run_internal (tag, ignore)
261 char *tag, *ignore;
263 UNWIND_ELT *elt;
265 while (elt = unwind_protect_list)
267 unwind_protect_list = elt->head.next;
269 /* If tag, then compare. */
270 if (!elt->head.cleanup)
272 if (tag && STREQ (elt->arg.v, tag))
274 uwpfree (elt);
275 break;
278 else
280 if (elt->head.cleanup == (Function *) restore_variable)
281 restore_variable (&elt->sv.v);
282 else
283 (*(elt->head.cleanup)) (elt->arg.v);
286 uwpfree (elt);
290 static void
291 unwind_protect_mem_internal (var, psize)
292 char *var;
293 char *psize;
295 int size, allocated;
296 UNWIND_ELT *elt;
298 size = *(int *) psize;
299 allocated = size + offsetof (UNWIND_ELT, sv.v.desired_setting[0]);
300 elt = (UNWIND_ELT *)xmalloc (allocated);
301 elt->head.next = unwind_protect_list;
302 elt->head.cleanup = (Function *) restore_variable;
303 elt->sv.v.variable = var;
304 elt->sv.v.size = size;
305 FASTCOPY (var, elt->sv.v.desired_setting, size);
306 unwind_protect_list = elt;
309 /* Save the value of a variable so it will be restored when unwind-protects
310 are run. VAR is a pointer to the variable. SIZE is the size in
311 bytes of VAR. */
312 void
313 unwind_protect_mem (var, size)
314 char *var;
315 int size;
317 without_interrupts (unwind_protect_mem_internal, var, (char *) &size);