2 * Copyright 1994-2002 Sun Microsystems, Inc. All rights reserved.
3 * Use is subject to license terms.
6 #pragma ident "%Z%%M% %I% %E% SMI"
9 * usr/src/cmd/cmd-inet/usr.bin/telnet/terminal.c
13 * Copyright (c) 1988, 1990, 1993
14 * The Regents of the University of California. All rights reserved.
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 * 3. All advertising materials mentioning features or use of this software
25 * must display the following acknowledgement:
26 * This product includes software developed by the University of
27 * California, Berkeley and its contributors.
28 * 4. Neither the name of the University nor the names of its contributors
29 * may be used to endorse or promote products derived from this software
30 * without specific prior written permission.
32 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
33 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
34 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
35 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
36 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
40 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
41 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
46 static char sccsid
[] = "@(#)terminal.c 8.1 (Berkeley) 6/6/93";
49 #include <arpa/telnet.h>
50 #include <sys/types.h>
60 static unsigned char ttyobuf
[2*BUFSIZ
];
61 static unsigned char ttyibuf
[BUFSIZ
];
63 int termdata
; /* Debugging flag */
73 * initialize the terminal data structures.
79 if (ring_init(&ttyoring
, ttyobuf
, sizeof (ttyobuf
)) != 1) {
82 if (ring_init(&ttyiring
, ttyibuf
, sizeof (ttyibuf
)) != 1) {
90 * Send as much data as possible to the terminal.
93 * -2: Error occurred other than EWOULDBLOCK; see
94 * 'errno' for specifics
95 * -1: No useful work done, although data was waiting.
96 * This may be due to EWOULDBLOCK error.
97 * 0: No data was waiting, so nothing was done.
98 * 1: All waiting data was written out.
99 * n: Part of data was written. 'n' is the number
100 * of bytes remaining which were not written.
107 register int n
, n0
, n1
;
109 n0
= ring_full_count(&ttyoring
);
110 if ((n1
= n
= ring_full_consecutive(&ttyoring
)) > 0) {
112 TerminalFlushOutput();
113 /* we leave 'n' alone! */
115 n
= TerminalWrite((char *)ttyoring
.consume
, n
);
116 if (n
== -1 && errno
!= EWOULDBLOCK
)
122 Dump('>', ttyoring
.consume
, n
);
125 * If we wrote everything, and the full count is
126 * larger than what we wrote, then write the
127 * rest of the buffer.
129 if (n1
== n
&& n0
> n
) {
132 n1
= TerminalWrite((char *)ttyoring
.bottom
, n1
);
134 if (errno
!= EWOULDBLOCK
)
141 ring_consumed(&ttyoring
, n
);
156 * These routines decides on what the mode should be (based on the values
157 * of various global variables).
166 #ifdef KLUDGELINEMODE
167 extern int kludgelinemode
;
170 if (my_want_state_is_dont(TELOPT_ECHO
))
176 if (my_want_state_is_will(TELOPT_BINARY
))
179 if (my_want_state_is_do(TELOPT_BINARY
))
182 #ifdef KLUDGELINEMODE
183 if (kludgelinemode
) {
184 if (my_want_state_is_dont(TELOPT_SGA
)) {
185 mode
|= (MODE_TRAPSIG
|MODE_EDIT
);
187 (clocks
.echotoggle
> clocks
.modenegotiated
)) {
194 if (my_want_state_is_will(TELOPT_LINEMODE
))
203 static int enc_passwd
= 0;
204 register int newmode
;
206 newmode
= getconnmode()|(force
?MODE_FORCE
:0);
208 TerminalNewMode(newmode
);
210 if ((newmode
& (MODE_ECHO
|MODE_EDIT
)) == MODE_EDIT
) {
211 if (my_want_state_is_will(TELOPT_ENCRYPT
) &&
212 (enc_passwd
== 0) && !encrypt_output
) {
213 encrypt_request_start(0, 0);
218 encrypt_request_end();