i-bash/builtins/trap.def

250 lines
6.1 KiB
Modula-2
Raw Normal View History

1996-08-26 18:22:31 +00:00
This file is trap.def, from which is created trap.c.
It implements the builtin "trap" in Bash.
Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
Bash is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
2000-03-17 21:46:59 +00:00
Software Foundation; either version 2, or (at your option) any later
1996-08-26 18:22:31 +00:00
version.
Bash is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License along
with Bash; see the file COPYING. If not, write to the Free Software
2000-03-17 21:46:59 +00:00
Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.
1996-08-26 18:22:31 +00:00
$PRODUCES trap.c
$BUILTIN trap
$FUNCTION trap_builtin
1997-06-05 14:59:13 +00:00
$SHORT_DOC trap [arg] [signal_spec ...] or trap -l
1996-08-26 18:22:31 +00:00
The command ARG is to be read and executed when the shell receives
signal(s) SIGNAL_SPEC. If ARG is absent all specified signals are
1996-12-23 17:02:34 +00:00
reset to their original values. If ARG is the null string each
SIGNAL_SPEC is ignored by the shell and by the commands it invokes.
1997-06-05 14:59:13 +00:00
If a SIGNAL_SPEC is EXIT (0) the command ARG is executed on exit from
the shell. If a SIGNAL_SPEC is DEBUG, ARG is executed after every
1996-12-23 17:02:34 +00:00
command. If ARG is `-p' then the trap commands associated with
each SIGNAL_SPEC are displayed. If no arguments are supplied or if
only `-p' is given, trap prints the list of commands associated with
1997-06-05 14:59:13 +00:00
each signal number. Each SIGNAL_SPEC is either a signal name in <signal.h>
1996-12-23 17:02:34 +00:00
or a signal number. `trap -l' prints a list of signal names and their
corresponding numbers. Note that a signal can be sent to the shell
with "kill -signal $$".
1996-08-26 18:22:31 +00:00
$END
1996-12-23 17:02:34 +00:00
#include <config.h>
#if defined (HAVE_UNISTD_H)
1998-04-17 19:52:44 +00:00
# ifdef _MINIX
# include <sys/types.h>
# endif
1996-12-23 17:02:34 +00:00
# include <unistd.h>
#endif
#include "../bashtypes.h"
1996-08-26 18:22:31 +00:00
#include <signal.h>
1996-12-23 17:02:34 +00:00
#include <stdio.h>
#include "../bashansi.h"
1996-08-26 18:22:31 +00:00
#include "../shell.h"
#include "../trap.h"
#include "common.h"
1996-12-23 17:02:34 +00:00
#include "bashgetopt.h"
static int display_traps ();
1996-08-26 18:22:31 +00:00
/* The trap command:
trap <arg> <signal ...>
trap <signal ...>
trap -l
1996-12-23 17:02:34 +00:00
trap -p [sigspec ...]
1996-08-26 18:22:31 +00:00
trap [--]
Set things up so that ARG is executed when SIGNAL(s) N is recieved.
If ARG is the empty string, then ignore the SIGNAL(s). If there is
no ARG, then set the trap for SIGNAL(s) to its original value. Just
plain "trap" means to print out the list of commands associated with
each signal number. Single arg of "-l" means list the signal names. */
/* Possible operations to perform on the list of signals.*/
#define SET 0 /* Set this signal to first_arg. */
#define REVERT 1 /* Revert to this signals original value. */
#define IGNORE 2 /* Ignore this signal. */
2001-04-06 19:14:31 +00:00
extern int interactive, posixly_correct;
1996-08-26 18:22:31 +00:00
1996-12-23 17:02:34 +00:00
int
1996-08-26 18:22:31 +00:00
trap_builtin (list)
WORD_LIST *list;
{
1996-12-23 17:02:34 +00:00
int list_signal_names, display, result, opt;
1996-08-26 18:22:31 +00:00
1996-12-23 17:02:34 +00:00
list_signal_names = display = 0;
result = EXECUTION_SUCCESS;
reset_internal_getopt ();
while ((opt = internal_getopt (list, "lp")) != -1)
1996-08-26 18:22:31 +00:00
{
1996-12-23 17:02:34 +00:00
switch (opt)
1996-08-26 18:22:31 +00:00
{
1996-12-23 17:02:34 +00:00
case 'l':
1996-08-26 18:22:31 +00:00
list_signal_names++;
break;
1996-12-23 17:02:34 +00:00
case 'p':
display++;
break;
default:
builtin_usage ();
1996-08-26 18:22:31 +00:00
return (EX_USAGE);
}
}
1996-12-23 17:02:34 +00:00
list = loptend;
1996-08-26 18:22:31 +00:00
if (list_signal_names)
1996-12-23 17:02:34 +00:00
return (display_signal_list ((WORD_LIST *)NULL, 1));
else if (display || list == 0)
return (display_traps (list));
else
1996-08-26 18:22:31 +00:00
{
1996-12-23 17:02:34 +00:00
char *first_arg;
int operation, sig;
1996-08-26 18:22:31 +00:00
1996-12-23 17:02:34 +00:00
operation = SET;
first_arg = list->word->word;
1997-06-05 14:59:13 +00:00
if (first_arg && *first_arg && (*first_arg != '-' || first_arg[1]) &&
signal_object_p (first_arg))
1996-08-26 18:22:31 +00:00
operation = REVERT;
else
{
list = list->next;
if (*first_arg == '\0')
operation = IGNORE;
else if (first_arg[0] == '-' && !first_arg[1])
operation = REVERT;
}
while (list)
{
sig = decode_signal (list->word->word);
if (sig == NO_SIG)
{
builtin_error ("%s: not a signal specification",
list->word->word);
1996-12-23 17:02:34 +00:00
result = EXECUTION_FAILURE;
1996-08-26 18:22:31 +00:00
}
else
{
switch (operation)
{
case SET:
set_signal (sig, first_arg);
break;
case REVERT:
restore_default_signal (sig);
/* Signals that the shell treats specially need special
handling. */
switch (sig)
{
case SIGINT:
if (interactive)
set_signal_handler (SIGINT, sigint_sighandler);
else
set_signal_handler (SIGINT, termination_unwind_protect);
break;
case SIGQUIT:
/* Always ignore SIGQUIT. */
set_signal_handler (SIGQUIT, SIG_IGN);
break;
case SIGTERM:
#if defined (JOB_CONTROL)
case SIGTTIN:
case SIGTTOU:
case SIGTSTP:
#endif /* JOB_CONTROL */
if (interactive)
set_signal_handler (sig, SIG_IGN);
break;
}
break;
case IGNORE:
ignore_signal (sig);
break;
}
}
list = list->next;
}
}
1996-12-23 17:02:34 +00:00
return (result);
}
static void
showtrap (i)
int i;
{
1997-09-22 20:22:27 +00:00
char *t, *p, *sn;
1996-12-23 17:02:34 +00:00
p = trap_list[i];
if (p == (char *)DEFAULT_SIG)
return;
2001-04-06 19:14:31 +00:00
t = (p == (char *)IGNORE_SIG) ? (char *)NULL : sh_single_quote (p);
1997-09-22 20:22:27 +00:00
sn = signal_name (i);
/* Make sure that signals whose names are unknown (for whatever reason)
are printed as signal numbers. */
if (STREQN (sn, "SIGJUNK", 7) || STREQN (sn, "unknown", 7))
printf ("trap -- %s %d\n", t ? t : "''", i);
2001-04-06 19:14:31 +00:00
else if (posixly_correct)
{
if (STREQN (sn, "SIG", 3))
printf ("trap -- %s %s\n", t ? t : "''", sn+3);
else
printf ("trap -- %s %s\n", t ? t : "''", sn);
}
1997-09-22 20:22:27 +00:00
else
printf ("trap -- %s %s\n", t ? t : "''", sn);
FREE (t);
1996-12-23 17:02:34 +00:00
}
1996-08-26 18:22:31 +00:00
1996-12-23 17:02:34 +00:00
static int
display_traps (list)
WORD_LIST *list;
{
int result, i;
1996-08-26 18:22:31 +00:00
1996-12-23 17:02:34 +00:00
if (list == 0)
{
for (i = 0; i <= NSIG; i++)
showtrap (i);
return (EXECUTION_SUCCESS);
}
1996-08-26 18:22:31 +00:00
1996-12-23 17:02:34 +00:00
for (result = EXECUTION_SUCCESS; list; list = list->next)
{
i = decode_signal (list->word->word);
if (i == NO_SIG)
{
result = EXECUTION_FAILURE;
builtin_error ("%s: not a signal specification", list->word->word);
}
else
showtrap (i);
1996-08-26 18:22:31 +00:00
}
1996-12-23 17:02:34 +00:00
return (result);
1996-08-26 18:22:31 +00:00
}