diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-11-16 17:10:07 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-11-16 17:10:07 +0000 |
commit | ea3df69903ba07d2a69c47af08cc3c0da9764b8d (patch) | |
tree | f60a6dd4b5516d879ae7e4040979a92c78201124 /usr.bin/mail/cmd1.c | |
parent | cb8b27e414038a9ede4e7df3653fdb54a0f836b3 (diff) |
Instead of using a longjmp to catch SIGPIPE, just set to SIG_IGN and
check the return value on writes for error.
Save and restore terminal modes when piping to a command so we end
up with a known good state if the command terminates uncleanly.
Diffstat (limited to 'usr.bin/mail/cmd1.c')
-rw-r--r-- | usr.bin/mail/cmd1.c | 38 |
1 files changed, 13 insertions, 25 deletions
diff --git a/usr.bin/mail/cmd1.c b/usr.bin/mail/cmd1.c index 647d1891fa4..fd2315be97b 100644 --- a/usr.bin/mail/cmd1.c +++ b/usr.bin/mail/cmd1.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd1.c,v 1.18 2001/06/23 23:04:21 millert Exp $ */ +/* $OpenBSD: cmd1.c,v 1.19 2001/11/16 17:10:06 millert Exp $ */ /* $NetBSD: cmd1.c,v 1.9 1997/07/09 05:29:48 mikel Exp $ */ /*- @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)cmd1.c 8.2 (Berkeley) 4/20/95"; #else -static char rcsid[] = "$OpenBSD: cmd1.c,v 1.18 2001/06/23 23:04:21 millert Exp $"; +static char rcsid[] = "$OpenBSD: cmd1.c,v 1.19 2001/11/16 17:10:06 millert Exp $"; #endif #endif /* not lint */ @@ -335,32 +335,32 @@ Type(v) /* * Type out the messages requested. */ -sigjmp_buf pipestop; int type1(msgvec, cmd, doign, page) int *msgvec; char *cmd; int doign, page; { - int nlines, *ip; + int nlines, *ip, restoreterm; struct message *mp; + struct termios tbuf; char * volatile cp; FILE * volatile obuf; obuf = stdout; - if (sigsetjmp(pipestop, 1)) - goto close_pipe; + restoreterm = 0; /* * start a pipe if needed. */ if (cmd) { + restoreterm = (tcgetattr(fileno(stdin), &tbuf) == 0); obuf = Popen(cmd, "w"); if (obuf == NULL) { warn("%s", cp); obuf = stdout; } else { - (void)signal(SIGPIPE, brokpipe); + (void)signal(SIGPIPE, SIG_IGN); } } else if (value("interactive") != NULL && (page || (cp = value("crt")) != NULL)) { @@ -370,12 +370,13 @@ type1(msgvec, cmd, doign, page) nlines += message[*ip - 1].m_lines; } if (page || nlines > (*cp ? atoi(cp) : realscreenheight)) { + restoreterm = (tcgetattr(fileno(stdin), &tbuf) == 0); obuf = Popen(value("PAGER"), "w"); if (obuf == NULL) { warn("%s", cp); obuf = stdout; } else - (void)signal(SIGPIPE, brokpipe); + (void)signal(SIGPIPE, SIG_IGN); } } @@ -388,33 +389,20 @@ type1(msgvec, cmd, doign, page) dot = mp; if (cmd == NULL && value("quiet") == NULL) fprintf(obuf, "Message %d:\n", *ip); - (void)sendmessage(mp, obuf, doign ? ignore : 0, NULL); + if (sendmessage(mp, obuf, doign ? ignore : 0, NULL) == -1) + break; } -close_pipe: if (obuf != stdout) { - /* - * Ignore SIGPIPE so it can't cause a duplicate close. - */ - (void)signal(SIGPIPE, SIG_IGN); (void)Pclose(obuf); (void)signal(SIGPIPE, SIG_DFL); + if (restoreterm) + (void)tcsetattr(fileno(stdin), TCSADRAIN, &tbuf); } return(0); } /* - * Respond to a broken pipe signal -- - * probably caused by quitting more. - */ -void -brokpipe(signo) - int signo; -{ - siglongjmp(pipestop, 1); -} - -/* * Print the top so many lines of each desired message. * The number of lines is taken from the variable "toplines" * and defaults to 5. |