xref: /freebsd/usr.bin/mail/tty.c (revision 6c951b37170f1fb2ae8b4827070743e61b6eaed2)
18a16b7a1SPedro F. Giffuni /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
49b50d902SRodney W. Grimes  * Copyright (c) 1980, 1993
59b50d902SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
69b50d902SRodney W. Grimes  *
79b50d902SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
89b50d902SRodney W. Grimes  * modification, are permitted provided that the following conditions
99b50d902SRodney W. Grimes  * are met:
109b50d902SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
119b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
129b50d902SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
139b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
149b50d902SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
169b50d902SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
179b50d902SRodney W. Grimes  *    without specific prior written permission.
189b50d902SRodney W. Grimes  *
199b50d902SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
209b50d902SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
219b50d902SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
229b50d902SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
239b50d902SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
249b50d902SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
259b50d902SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
269b50d902SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
279b50d902SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
289b50d902SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
299b50d902SRodney W. Grimes  * SUCH DAMAGE.
309b50d902SRodney W. Grimes  */
319b50d902SRodney W. Grimes 
329b50d902SRodney W. Grimes /*
339b50d902SRodney W. Grimes  * Mail -- a mail program
349b50d902SRodney W. Grimes  *
359b50d902SRodney W. Grimes  * Generally useful tty stuff.
369b50d902SRodney W. Grimes  */
379b50d902SRodney W. Grimes 
389b50d902SRodney W. Grimes #include "rcv.h"
399b50d902SRodney W. Grimes #include "extern.h"
409b50d902SRodney W. Grimes 
41856f23edSMike Heffner static	cc_t	c_erase;		/* Current erase char */
42856f23edSMike Heffner static	cc_t	c_kill;			/* Current kill char */
439b50d902SRodney W. Grimes static	jmp_buf	rewrite;		/* Place to go when continued */
449b50d902SRodney W. Grimes static	jmp_buf	intjmp;			/* Place to go when interrupted */
459b50d902SRodney W. Grimes #ifndef TIOCSTI
469b50d902SRodney W. Grimes static	int	ttyset;			/* We must now do erase/kill */
479b50d902SRodney W. Grimes #endif
489b50d902SRodney W. Grimes 
499b50d902SRodney W. Grimes /*
509b50d902SRodney W. Grimes  * Read all relevant header fields.
519b50d902SRodney W. Grimes  */
529b50d902SRodney W. Grimes 
539b50d902SRodney W. Grimes int
grabh(struct header * hp,int gflags)546d8484b0SPhilippe Charnier grabh(struct header *hp, int gflags)
559b50d902SRodney W. Grimes {
56856f23edSMike Heffner 	struct termios ttybuf;
57*6c951b37SLexi Winter 	volatile sig_t saveint;
589b50d902SRodney W. Grimes 	sig_t savetstp;
599b50d902SRodney W. Grimes 	sig_t savettou;
609b50d902SRodney W. Grimes 	sig_t savettin;
619b50d902SRodney W. Grimes 	int errs;
62856f23edSMike Heffner #ifndef TIOCSTI
63856f23edSMike Heffner 	sig_t savequit;
64856f23edSMike Heffner #else
65856f23edSMike Heffner # ifdef TIOCEXT
66856f23edSMike Heffner 	int extproc, flag;
67856f23edSMike Heffner # endif /* TIOCEXT */
68856f23edSMike Heffner #endif /* TIOCSTI */
699b50d902SRodney W. Grimes 
709b50d902SRodney W. Grimes 	savetstp = signal(SIGTSTP, SIG_DFL);
719b50d902SRodney W. Grimes 	savettou = signal(SIGTTOU, SIG_DFL);
729b50d902SRodney W. Grimes 	savettin = signal(SIGTTIN, SIG_DFL);
739b50d902SRodney W. Grimes 	errs = 0;
749b50d902SRodney W. Grimes #ifndef TIOCSTI
759b50d902SRodney W. Grimes 	ttyset = 0;
769b50d902SRodney W. Grimes #endif
77856f23edSMike Heffner 	if (tcgetattr(fileno(stdin), &ttybuf) < 0) {
780c3a8314SMike Heffner 		warn("tcgetattr(stdin)");
799b50d902SRodney W. Grimes 		return (-1);
809b50d902SRodney W. Grimes 	}
81856f23edSMike Heffner 	c_erase = ttybuf.c_cc[VERASE];
82856f23edSMike Heffner 	c_kill = ttybuf.c_cc[VKILL];
839b50d902SRodney W. Grimes #ifndef TIOCSTI
84856f23edSMike Heffner 	ttybuf.c_cc[VERASE] = _POSIX_VDISABLE;
85856f23edSMike Heffner 	ttybuf.c_cc[VKILL] = _POSIX_VDISABLE;
869b50d902SRodney W. Grimes 	if ((saveint = signal(SIGINT, SIG_IGN)) == SIG_DFL)
879ce73e90SMike Heffner 		(void)signal(SIGINT, SIG_DFL);
889b50d902SRodney W. Grimes 	if ((savequit = signal(SIGQUIT, SIG_IGN)) == SIG_DFL)
899ce73e90SMike Heffner 		(void)signal(SIGQUIT, SIG_DFL);
909b50d902SRodney W. Grimes #else
91856f23edSMike Heffner # ifdef		TIOCEXT
92856f23edSMike Heffner 	extproc = ((ttybuf.c_lflag & EXTPROC) ? 1 : 0);
93856f23edSMike Heffner 	if (extproc) {
94856f23edSMike Heffner 		flag = 0;
95856f23edSMike Heffner 		if (ioctl(fileno(stdin), TIOCEXT, &flag) < 0)
96856f23edSMike Heffner 			warn("TIOCEXT: off");
97856f23edSMike Heffner 	}
98856f23edSMike Heffner # endif	/* TIOCEXT */
999b50d902SRodney W. Grimes 	if (setjmp(intjmp))
1009b50d902SRodney W. Grimes 		goto out;
1019b50d902SRodney W. Grimes 	saveint = signal(SIGINT, ttyint);
1029b50d902SRodney W. Grimes #endif
1039b50d902SRodney W. Grimes 	if (gflags & GTO) {
1049b50d902SRodney W. Grimes #ifndef TIOCSTI
1059ce73e90SMike Heffner 		if (!ttyset && hp->h_to != NULL)
106856f23edSMike Heffner 			ttyset++, tcsetattr(fileno(stdin), TCSADRAIN, &ttybuf);
1079b50d902SRodney W. Grimes #endif
1089b50d902SRodney W. Grimes 		hp->h_to =
1099b50d902SRodney W. Grimes 			extract(readtty("To: ", detract(hp->h_to, 0)), GTO);
1109b50d902SRodney W. Grimes 	}
1119b50d902SRodney W. Grimes 	if (gflags & GSUBJECT) {
1129b50d902SRodney W. Grimes #ifndef TIOCSTI
1139ce73e90SMike Heffner 		if (!ttyset && hp->h_subject != NULL)
114856f23edSMike Heffner 			ttyset++, tcsetattr(fileno(stdin), TCSADRAIN, &ttybuf);
1159b50d902SRodney W. Grimes #endif
1169b50d902SRodney W. Grimes 		hp->h_subject = readtty("Subject: ", hp->h_subject);
1179b50d902SRodney W. Grimes 	}
1189b50d902SRodney W. Grimes 	if (gflags & GCC) {
1199b50d902SRodney W. Grimes #ifndef TIOCSTI
1209ce73e90SMike Heffner 		if (!ttyset && hp->h_cc != NULL)
121856f23edSMike Heffner 			ttyset++, tcsetattr(fileno(stdin), TCSADRAIN, &ttybuf);
1229b50d902SRodney W. Grimes #endif
1239b50d902SRodney W. Grimes 		hp->h_cc =
1249b50d902SRodney W. Grimes 			extract(readtty("Cc: ", detract(hp->h_cc, 0)), GCC);
1259b50d902SRodney W. Grimes 	}
1269b50d902SRodney W. Grimes 	if (gflags & GBCC) {
1279b50d902SRodney W. Grimes #ifndef TIOCSTI
1289ce73e90SMike Heffner 		if (!ttyset && hp->h_bcc != NULL)
129856f23edSMike Heffner 			ttyset++, tcsetattr(fileno(stdin), TCSADRAIN, &ttybuf);
1309b50d902SRodney W. Grimes #endif
1319b50d902SRodney W. Grimes 		hp->h_bcc =
1329b50d902SRodney W. Grimes 			extract(readtty("Bcc: ", detract(hp->h_bcc, 0)), GBCC);
1339b50d902SRodney W. Grimes 	}
134c3dbcadcSEd Maste #ifdef TIOCSTI
1359b50d902SRodney W. Grimes out:
136c3dbcadcSEd Maste #endif
1379ce73e90SMike Heffner 	(void)signal(SIGTSTP, savetstp);
1389ce73e90SMike Heffner 	(void)signal(SIGTTOU, savettou);
1399ce73e90SMike Heffner 	(void)signal(SIGTTIN, savettin);
1409b50d902SRodney W. Grimes #ifndef TIOCSTI
141856f23edSMike Heffner 	ttybuf.c_cc[VERASE] = c_erase;
142856f23edSMike Heffner 	ttybuf.c_cc[VKILL] = c_kill;
1439b50d902SRodney W. Grimes 	if (ttyset)
144856f23edSMike Heffner 		tcsetattr(fileno(stdin), TCSADRAIN, &ttybuf);
1459ce73e90SMike Heffner 	(void)signal(SIGQUIT, savequit);
146856f23edSMike Heffner #else
147856f23edSMike Heffner # ifdef		TIOCEXT
148856f23edSMike Heffner 	if (extproc) {
149856f23edSMike Heffner 		flag = 1;
150856f23edSMike Heffner 		if (ioctl(fileno(stdin), TIOCEXT, &flag) < 0)
151856f23edSMike Heffner 			warn("TIOCEXT: on");
152856f23edSMike Heffner 	}
153856f23edSMike Heffner # endif	/* TIOCEXT */
1549b50d902SRodney W. Grimes #endif
1559ce73e90SMike Heffner 	(void)signal(SIGINT, saveint);
1569b50d902SRodney W. Grimes 	return (errs);
1579b50d902SRodney W. Grimes }
1589b50d902SRodney W. Grimes 
1599b50d902SRodney W. Grimes /*
1609b50d902SRodney W. Grimes  * Read up a header from standard input.
1619b50d902SRodney W. Grimes  * The source string has the preliminary contents to
1629b50d902SRodney W. Grimes  * be read.
1639b50d902SRodney W. Grimes  *
1649b50d902SRodney W. Grimes  */
1659b50d902SRodney W. Grimes 
1669b50d902SRodney W. Grimes char *
readtty(const char * pr,char src[])1676d8484b0SPhilippe Charnier readtty(const char *pr, char src[])
1689b50d902SRodney W. Grimes {
169c3dbcadcSEd Maste 	char canonb[BUFSIZ];
170c3dbcadcSEd Maste #ifdef TIOCSTI
171c3dbcadcSEd Maste 	char ch;
172c3dbcadcSEd Maste #endif
1739b50d902SRodney W. Grimes 	int c;
1749ce73e90SMike Heffner 	char *cp, *cp2;
1759b50d902SRodney W. Grimes 
1769b50d902SRodney W. Grimes 	fputs(pr, stdout);
1779ce73e90SMike Heffner 	(void)fflush(stdout);
1789ce73e90SMike Heffner 	if (src != NULL && strlen(src) > BUFSIZ - 2) {
1799b50d902SRodney W. Grimes 		printf("too long to edit\n");
1809b50d902SRodney W. Grimes 		return (src);
1819b50d902SRodney W. Grimes 	}
1829b50d902SRodney W. Grimes #ifndef TIOCSTI
1839ce73e90SMike Heffner 	if (src != NULL)
1840c3a8314SMike Heffner 		strlcpy(canonb, src, sizeof(canonb));
1859b50d902SRodney W. Grimes 	else
1860c3a8314SMike Heffner 		*canonb = '\0';
1879b50d902SRodney W. Grimes 	fputs(canonb, stdout);
1889ce73e90SMike Heffner 	(void)fflush(stdout);
1899b50d902SRodney W. Grimes #else
1909ce73e90SMike Heffner 	cp = src == NULL ? "" : src;
1919ce73e90SMike Heffner 	while ((c = *cp++) != '\0') {
192856f23edSMike Heffner 		if ((c_erase != _POSIX_VDISABLE && c == c_erase) ||
193856f23edSMike Heffner 		    (c_kill != _POSIX_VDISABLE && c == c_kill)) {
1949b50d902SRodney W. Grimes 			ch = '\\';
1959b50d902SRodney W. Grimes 			ioctl(0, TIOCSTI, &ch);
1969b50d902SRodney W. Grimes 		}
1979b50d902SRodney W. Grimes 		ch = c;
1989b50d902SRodney W. Grimes 		ioctl(0, TIOCSTI, &ch);
1999b50d902SRodney W. Grimes 	}
2009b50d902SRodney W. Grimes 	cp = canonb;
2010c3a8314SMike Heffner 	*cp = '\0';
2029b50d902SRodney W. Grimes #endif
2039b50d902SRodney W. Grimes 	cp2 = cp;
2049b50d902SRodney W. Grimes 	while (cp2 < canonb + BUFSIZ)
2050c3a8314SMike Heffner 		*cp2++ = '\0';
2069b50d902SRodney W. Grimes 	cp2 = cp;
2079b50d902SRodney W. Grimes 	if (setjmp(rewrite))
2089b50d902SRodney W. Grimes 		goto redo;
2099ce73e90SMike Heffner 	(void)signal(SIGTSTP, ttystop);
2109ce73e90SMike Heffner 	(void)signal(SIGTTOU, ttystop);
2119ce73e90SMike Heffner 	(void)signal(SIGTTIN, ttystop);
2129b50d902SRodney W. Grimes 	clearerr(stdin);
2139b50d902SRodney W. Grimes 	while (cp2 < canonb + BUFSIZ) {
2149b50d902SRodney W. Grimes 		c = getc(stdin);
2159b50d902SRodney W. Grimes 		if (c == EOF || c == '\n')
2169b50d902SRodney W. Grimes 			break;
2179b50d902SRodney W. Grimes 		*cp2++ = c;
2189b50d902SRodney W. Grimes 	}
2199ce73e90SMike Heffner 	*cp2 = '\0';
2209ce73e90SMike Heffner 	(void)signal(SIGTSTP, SIG_DFL);
2219ce73e90SMike Heffner 	(void)signal(SIGTTOU, SIG_DFL);
2229ce73e90SMike Heffner 	(void)signal(SIGTTIN, SIG_DFL);
2239b50d902SRodney W. Grimes 	if (c == EOF && ferror(stdin)) {
2249b50d902SRodney W. Grimes redo:
2259ce73e90SMike Heffner 		cp = strlen(canonb) > 0 ? canonb : NULL;
2269b50d902SRodney W. Grimes 		clearerr(stdin);
2279b50d902SRodney W. Grimes 		return (readtty(pr, cp));
2289b50d902SRodney W. Grimes 	}
2299b50d902SRodney W. Grimes #ifndef TIOCSTI
2309ce73e90SMike Heffner 	if (cp == NULL || *cp == '\0')
2319b50d902SRodney W. Grimes 		return (src);
2329b50d902SRodney W. Grimes 	cp2 = cp;
2339b50d902SRodney W. Grimes 	if (!ttyset)
2349ce73e90SMike Heffner 		return (strlen(canonb) > 0 ? savestr(canonb) : NULL);
2359b50d902SRodney W. Grimes 	while (*cp != '\0') {
2369b50d902SRodney W. Grimes 		c = *cp++;
237856f23edSMike Heffner 		if (c_erase != _POSIX_VDISABLE && c == c_erase) {
2389b50d902SRodney W. Grimes 			if (cp2 == canonb)
2399b50d902SRodney W. Grimes 				continue;
2409b50d902SRodney W. Grimes 			if (cp2[-1] == '\\') {
2419b50d902SRodney W. Grimes 				cp2[-1] = c;
2429b50d902SRodney W. Grimes 				continue;
2439b50d902SRodney W. Grimes 			}
2449b50d902SRodney W. Grimes 			cp2--;
2459b50d902SRodney W. Grimes 			continue;
2469b50d902SRodney W. Grimes 		}
247856f23edSMike Heffner 		if (c_kill != _POSIX_VDISABLE && c == c_kill) {
2489b50d902SRodney W. Grimes 			if (cp2 == canonb)
2499b50d902SRodney W. Grimes 				continue;
2509b50d902SRodney W. Grimes 			if (cp2[-1] == '\\') {
2519b50d902SRodney W. Grimes 				cp2[-1] = c;
2529b50d902SRodney W. Grimes 				continue;
2539b50d902SRodney W. Grimes 			}
2549b50d902SRodney W. Grimes 			cp2 = canonb;
2559b50d902SRodney W. Grimes 			continue;
2569b50d902SRodney W. Grimes 		}
2579b50d902SRodney W. Grimes 		*cp2++ = c;
2589b50d902SRodney W. Grimes 	}
2599b50d902SRodney W. Grimes 	*cp2 = '\0';
2609b50d902SRodney W. Grimes #endif
2619b50d902SRodney W. Grimes 	if (equal("", canonb))
2629ce73e90SMike Heffner 		return (NULL);
2639b50d902SRodney W. Grimes 	return (savestr(canonb));
2649b50d902SRodney W. Grimes }
2659b50d902SRodney W. Grimes 
2669b50d902SRodney W. Grimes /*
2679b50d902SRodney W. Grimes  * Receipt continuation.
2689b50d902SRodney W. Grimes  */
2699b50d902SRodney W. Grimes void
ttystop(int s)2706d8484b0SPhilippe Charnier ttystop(int s)
2719b50d902SRodney W. Grimes {
2729b50d902SRodney W. Grimes 	sig_t old_action = signal(s, SIG_DFL);
273856f23edSMike Heffner 	sigset_t nset;
2749b50d902SRodney W. Grimes 
275856f23edSMike Heffner 	(void)sigemptyset(&nset);
276856f23edSMike Heffner 	(void)sigaddset(&nset, s);
277856f23edSMike Heffner 	(void)sigprocmask(SIG_BLOCK, &nset, NULL);
278856f23edSMike Heffner 	kill(0, s);
279856f23edSMike Heffner 	(void)sigprocmask(SIG_UNBLOCK, &nset, NULL);
2809ce73e90SMike Heffner 	(void)signal(s, old_action);
2819b50d902SRodney W. Grimes 	longjmp(rewrite, 1);
2829b50d902SRodney W. Grimes }
2839b50d902SRodney W. Grimes 
2849b50d902SRodney W. Grimes void
ttyint(int s __unused)2856d8484b0SPhilippe Charnier ttyint(int s __unused)
2869b50d902SRodney W. Grimes {
2879b50d902SRodney W. Grimes 	longjmp(intjmp, 1);
2889b50d902SRodney W. Grimes }
289