]>
git.cameronkatri.com Git - apple_cmds.git/blob - mail_cmds/mail/tty.c
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 static char sccsid
[] = "@(#)tty.c 8.2 (Berkeley) 6/6/93";
38 static const char rcsid
[] =
39 "$FreeBSD: src/usr.bin/mail/tty.c,v 1.6 2002/06/30 05:25:06 obrien Exp $";
42 #include <sys/cdefs.h>
43 #include <sys/ioctl.h>
46 * Mail -- a mail program
48 * Generally useful tty stuff.
54 static cc_t c_erase
; /* Current erase char */
55 static cc_t c_kill
; /* Current kill char */
56 static jmp_buf rewrite
; /* Place to go when continued */
57 static jmp_buf intjmp
; /* Place to go when interrupted */
59 static int ttyset
; /* We must now do erase/kill */
63 * Read all relevant header fields.
71 struct termios ttybuf
;
85 savetstp
= signal(SIGTSTP
, SIG_DFL
);
86 savettou
= signal(SIGTTOU
, SIG_DFL
);
87 savettin
= signal(SIGTTIN
, SIG_DFL
);
92 if (tcgetattr(fileno(stdin
), &ttybuf
) < 0) {
93 warn("tcgetattr(stdin)");
96 c_erase
= ttybuf
.c_cc
[VERASE
];
97 c_kill
= ttybuf
.c_cc
[VKILL
];
99 ttybuf
.c_cc
[VERASE
] = _POSIX_VDISABLE
;
100 ttybuf
.c_cc
[VKILL
] = _POSIX_VDISABLE
;
101 if ((saveint
= signal(SIGINT
, SIG_IGN
)) == SIG_DFL
)
102 (void)signal(SIGINT
, SIG_DFL
);
103 if ((savequit
= signal(SIGQUIT
, SIG_IGN
)) == SIG_DFL
)
104 (void)signal(SIGQUIT
, SIG_DFL
);
107 extproc
= ((ttybuf
.c_lflag
& EXTPROC
) ? 1 : 0);
110 if (ioctl(fileno(stdin
), TIOCEXT
, &flag
) < 0)
111 warn("TIOCEXT: off");
113 # endif /* TIOCEXT */
114 saveint
= signal(SIGINT
, ttyint
);
115 if (setjmp(intjmp
)) {
116 /* Interrupt from headers needs to be told to caller */
123 if (!ttyset
&& hp
->h_to
!= NULL
)
124 ttyset
++, tcsetattr(fileno(stdin
), TCSADRAIN
, &ttybuf
);
127 extract(readtty("To: ", detract(hp
->h_to
, 0)), GTO
);
129 if (gflags
& GSUBJECT
) {
131 if (!ttyset
&& hp
->h_subject
!= NULL
)
132 ttyset
++, tcsetattr(fileno(stdin
), TCSADRAIN
, &ttybuf
);
134 hp
->h_subject
= readtty("Subject: ", hp
->h_subject
);
138 if (!ttyset
&& hp
->h_cc
!= NULL
)
139 ttyset
++, tcsetattr(fileno(stdin
), TCSADRAIN
, &ttybuf
);
142 extract(readtty("Cc: ", detract(hp
->h_cc
, 0)), GCC
);
146 if (!ttyset
&& hp
->h_bcc
!= NULL
)
147 ttyset
++, tcsetattr(fileno(stdin
), TCSADRAIN
, &ttybuf
);
150 extract(readtty("Bcc: ", detract(hp
->h_bcc
, 0)), GBCC
);
153 (void)signal(SIGTSTP
, savetstp
);
154 (void)signal(SIGTTOU
, savettou
);
155 (void)signal(SIGTTIN
, savettin
);
157 ttybuf
.c_cc
[VERASE
] = c_erase
;
158 ttybuf
.c_cc
[VKILL
] = c_kill
;
160 tcsetattr(fileno(stdin
), TCSADRAIN
, &ttybuf
);
161 (void)signal(SIGQUIT
, savequit
);
166 if (ioctl(fileno(stdin
), TIOCEXT
, &flag
) < 0)
169 # endif /* TIOCEXT */
171 (void)signal(SIGINT
, saveint
);
176 * Read up a header from standard input.
177 * The source string has the preliminary contents to
187 char ch
, canonb
[BUFSIZ
];
192 (void)fflush(stdout
);
193 if (src
!= NULL
&& strlen(src
) > BUFSIZ
- 2) {
194 printf("too long to edit\n");
199 strlcpy(canonb
, src
, sizeof(canonb
));
202 fputs(canonb
, stdout
);
203 (void)fflush(stdout
);
205 cp
= src
== NULL
? "" : src
;
206 while ((c
= *cp
++) != '\0') {
207 if ((c_erase
!= _POSIX_VDISABLE
&& c
== c_erase
) ||
208 (c_kill
!= _POSIX_VDISABLE
&& c
== c_kill
)) {
210 ioctl(0, TIOCSTI
, &ch
);
213 ioctl(0, TIOCSTI
, &ch
);
219 while (cp2
< canonb
+ BUFSIZ
)
224 (void)signal(SIGTSTP
, ttystop
);
225 (void)signal(SIGTTOU
, ttystop
);
226 (void)signal(SIGTTIN
, ttystop
);
228 while (cp2
< canonb
+ BUFSIZ
) {
230 if (c
== EOF
|| c
== '\n')
235 (void)signal(SIGTSTP
, SIG_DFL
);
236 (void)signal(SIGTTOU
, SIG_DFL
);
237 (void)signal(SIGTTIN
, SIG_DFL
);
238 if (c
== EOF
&& ferror(stdin
)) {
240 cp
= strlen(canonb
) > 0 ? canonb
: NULL
;
242 return (readtty(pr
, cp
));
245 if (cp
== NULL
|| *cp
== '\0')
249 return (strlen(canonb
) > 0 ? savestr(canonb
) : NULL
);
250 while (*cp
!= '\0') {
252 if (c_erase
!= _POSIX_VDISABLE
&& c
== c_erase
) {
255 if (cp2
[-1] == '\\') {
262 if (c_kill
!= _POSIX_VDISABLE
&& c
== c_kill
) {
265 if (cp2
[-1] == '\\') {
276 if (equal("", canonb
))
278 return (savestr(canonb
));
282 * Receipt continuation.
288 sig_t old_action
= signal(s
, SIG_DFL
);
291 (void)sigemptyset(&nset
);
292 (void)sigaddset(&nset
, s
);
293 (void)sigprocmask(SIG_BLOCK
, &nset
, NULL
);
295 (void)sigprocmask(SIG_UNBLOCK
, &nset
, NULL
);
296 (void)signal(s
, old_action
);