| [3228] | 1 | /* I can't stand it anymore! Please can't we just write the
|
|---|
| 2 | whole Unix system in lisp or something? */
|
|---|
| 3 |
|
|---|
| 4 | /* Copyright (C) 1987-2002 Free Software Foundation, Inc.
|
|---|
| 5 |
|
|---|
| 6 | This file is part of GNU Bash, the Bourne Again SHell.
|
|---|
| 7 |
|
|---|
| 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.
|
|---|
| 12 |
|
|---|
| 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.
|
|---|
| 17 |
|
|---|
| 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. */
|
|---|
| 21 |
|
|---|
| 22 | /* **************************************************************** */
|
|---|
| 23 | /* */
|
|---|
| 24 | /* Unwind Protection Scheme for Bash */
|
|---|
| 25 | /* */
|
|---|
| 26 | /* **************************************************************** */
|
|---|
| 27 | #include "config.h"
|
|---|
| 28 |
|
|---|
| 29 | #include "bashtypes.h"
|
|---|
| 30 | #include "bashansi.h"
|
|---|
| 31 |
|
|---|
| 32 | #if defined (HAVE_UNISTD_H)
|
|---|
| 33 | # include <unistd.h>
|
|---|
| 34 | #endif
|
|---|
| 35 |
|
|---|
| 36 | #if STDC_HEADERS
|
|---|
| 37 | # include <stddef.h>
|
|---|
| 38 | #endif
|
|---|
| 39 |
|
|---|
| 40 | #ifndef offsetof
|
|---|
| 41 | # define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
|
|---|
| 42 | #endif
|
|---|
| 43 |
|
|---|
| 44 | #include "command.h"
|
|---|
| 45 | #include "general.h"
|
|---|
| 46 | #include "unwind_prot.h"
|
|---|
| 47 | #include "quit.h"
|
|---|
| 48 | #include "sig.h"
|
|---|
| 49 |
|
|---|
| 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;
|
|---|
| 56 |
|
|---|
| 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;
|
|---|
| 74 |
|
|---|
| 75 |
|
|---|
| 76 | extern int interrupt_immediately;
|
|---|
| 77 |
|
|---|
| 78 | static void without_interrupts __P((VFunction *, char *, char *));
|
|---|
| 79 | static void unwind_frame_discard_internal __P((char *, char *));
|
|---|
| 80 | static void unwind_frame_run_internal __P((char *, char *));
|
|---|
| 81 | static void add_unwind_protect_internal __P((Function *, char *));
|
|---|
| 82 | static void remove_unwind_protect_internal __P((char *, char *));
|
|---|
| 83 | static void run_unwind_protects_internal __P((char *, char *));
|
|---|
| 84 | static void clear_unwind_protects_internal __P((char *, char *));
|
|---|
| 85 | static inline void restore_variable __P((SAVED_VAR *));
|
|---|
| 86 | static void unwind_protect_mem_internal __P((char *, char *));
|
|---|
| 87 |
|
|---|
| 88 | static UNWIND_ELT *unwind_protect_list = (UNWIND_ELT *)NULL;
|
|---|
| 89 |
|
|---|
| 90 | #define uwpalloc(elt) (elt) = (UNWIND_ELT *)xmalloc (sizeof (UNWIND_ELT))
|
|---|
| 91 | #define uwpfree(elt) free(elt)
|
|---|
| 92 |
|
|---|
| 93 | /* Run a function without interrupts. This relies on the fact that the
|
|---|
| 94 | FUNCTION cannot change the value of interrupt_immediately. (I.e., does
|
|---|
| 95 | not call QUIT (). */
|
|---|
| 96 | static void
|
|---|
| 97 | without_interrupts (function, arg1, arg2)
|
|---|
| 98 | VFunction *function;
|
|---|
| 99 | char *arg1, *arg2;
|
|---|
| 100 | {
|
|---|
| 101 | int old_interrupt_immediately;
|
|---|
| 102 |
|
|---|
| 103 | old_interrupt_immediately = interrupt_immediately;
|
|---|
| 104 | interrupt_immediately = 0;
|
|---|
| 105 |
|
|---|
| 106 | (*function)(arg1, arg2);
|
|---|
| 107 |
|
|---|
| 108 | interrupt_immediately = old_interrupt_immediately;
|
|---|
| 109 | }
|
|---|
| 110 |
|
|---|
| 111 | /* Start the beginning of a region. */
|
|---|
| 112 | void
|
|---|
| 113 | begin_unwind_frame (tag)
|
|---|
| 114 | char *tag;
|
|---|
| 115 | {
|
|---|
| 116 | add_unwind_protect ((Function *)NULL, tag);
|
|---|
| 117 | }
|
|---|
| 118 |
|
|---|
| 119 | /* Discard the unwind protects back to TAG. */
|
|---|
| 120 | void
|
|---|
| 121 | discard_unwind_frame (tag)
|
|---|
| 122 | char *tag;
|
|---|
| 123 | {
|
|---|
| 124 | if (unwind_protect_list)
|
|---|
| 125 | without_interrupts (unwind_frame_discard_internal, tag, (char *)NULL);
|
|---|
| 126 | }
|
|---|
| 127 |
|
|---|
| 128 | /* Run the unwind protects back to TAG. */
|
|---|
| 129 | void
|
|---|
| 130 | run_unwind_frame (tag)
|
|---|
| 131 | char *tag;
|
|---|
| 132 | {
|
|---|
| 133 | if (unwind_protect_list)
|
|---|
| 134 | without_interrupts (unwind_frame_run_internal, tag, (char *)NULL);
|
|---|
| 135 | }
|
|---|
| 136 |
|
|---|
| 137 | /* Add the function CLEANUP with ARG to the list of unwindable things. */
|
|---|
| 138 | void
|
|---|
| 139 | add_unwind_protect (cleanup, arg)
|
|---|
| 140 | Function *cleanup;
|
|---|
| |
|---|