1139743Simp/*
243412Snewton * Copyright (c) 1988, 1990, 1993
343412Snewton *	The Regents of the University of California.  All rights reserved.
443412Snewton *
543412Snewton * Redistribution and use in source and binary forms, with or without
643412Snewton * modification, are permitted provided that the following conditions
743412Snewton * are met:
843412Snewton * 1. Redistributions of source code must retain the above copyright
943412Snewton *    notice, this list of conditions and the following disclaimer.
1043412Snewton * 2. Redistributions in binary form must reproduce the above copyright
1143412Snewton *    notice, this list of conditions and the following disclaimer in the
1243412Snewton *    documentation and/or other materials provided with the distribution.
1343412Snewton * 3. All advertising materials mentioning features or use of this software
1443412Snewton *    must display the following acknowledgement:
1543412Snewton *	This product includes software developed by the University of
1643412Snewton *	California, Berkeley and its contributors.
1743412Snewton * 4. Neither the name of the University nor the names of its contributors
1843412Snewton *    may be used to endorse or promote products derived from this software
1943412Snewton *    without specific prior written permission.
2043412Snewton *
2143412Snewton * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2243412Snewton * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2343412Snewton * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2443412Snewton * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2543412Snewton * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2643412Snewton * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2749264Snewton * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2850477Speter * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2943412Snewton * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3043412Snewton * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3143412Snewton * SUCH DAMAGE.
3243412Snewton */
3343412Snewton
3443412Snewton#include "telnet_locl.h"
3543412Snewton
3643412SnewtonRCSID("$Id$");
3743412Snewton
3843412SnewtonRing		ttyoring, ttyiring;
3943412Snewtonunsigned char	ttyobuf[2*BUFSIZ], ttyibuf[BUFSIZ];
4043412Snewton
4143412Snewtonint termdata;			/* Debugging flag */
4243412Snewton
4343412Snewton# ifndef VDISCARD
4443412Snewtoncc_t termFlushChar;
4543412Snewton# endif
4643412Snewton# ifndef VLNEXT
4743412Snewtoncc_t termLiteralNextChar;
4843412Snewton# endif
4943412Snewton# ifndef VSUSP
5043412Snewtoncc_t termSuspChar;
5143412Snewton# endif
5243412Snewton# ifndef VWERASE
5343412Snewtoncc_t termWerasChar;
5443412Snewton# endif
5543412Snewton# ifndef VREPRINT
5643412Snewtoncc_t termRprntChar;
5743412Snewton# endif
5843412Snewton# ifndef VSTART
5943412Snewtoncc_t termStartChar;
6043412Snewton# endif
6143412Snewton# ifndef VSTOP
6243412Snewtoncc_t termStopChar;
6343412Snewton# endif
6443412Snewton# ifndef VEOL
6543412Snewtoncc_t termForw1Char;
6643412Snewton# endif
6743412Snewton# ifndef VEOL2
6843412Snewtoncc_t termForw2Char;
6943412Snewton# endif
7043412Snewton# ifndef VSTATUS
71130640Sphkcc_t termAytChar;
72187830Sed# endif
7343412Snewton
7443412Snewton/*
7543412Snewton * initialize the terminal data structures.
7643412Snewton */
7743412Snewton
78130640Sphkvoid
79187830Sedinit_terminal(void)
8043412Snewton{
8143412Snewton    if (ring_init(&ttyoring, ttyobuf, sizeof ttyobuf) != 1) {
82	exit(1);
83    }
84    if (ring_init(&ttyiring, ttyibuf, sizeof ttyibuf) != 1) {
85	exit(1);
86    }
87    autoflush = TerminalAutoFlush();
88}
89
90
91/*
92 *		Send as much data as possible to the terminal.
93 *
94 *		Return value:
95 *			-1: No useful work done, data waiting to go out.
96 *			 0: No data was waiting, so nothing was done.
97 *			 1: All waiting data was written out.
98 *			 n: All data - n was written out.
99 */
100
101
102int
103ttyflush(int drop)
104{
105    int n, n0, n1;
106
107    n0 = ring_full_count(&ttyoring);
108    if ((n1 = n = ring_full_consecutive(&ttyoring)) > 0) {
109	if (drop) {
110	    TerminalFlushOutput();
111	    /* we leave 'n' alone! */
112	} else {
113	    n = TerminalWrite((char *)ttyoring.consume, n);
114	}
115    }
116    if (n > 0) {
117	if (termdata && n) {
118	    Dump('>', ttyoring.consume, n);
119	}
120	/*
121	 * If we wrote everything, and the full count is
122	 * larger than what we wrote, then write the
123	 * rest of the buffer.
124	 */
125	if (n1 == n && n0 > n) {
126		n1 = n0 - n;
127		if (!drop)
128			n1 = TerminalWrite((char *)ttyoring.bottom, n1);
129		if (n1 > 0)
130			n += n1;
131	}
132	ring_consumed(&ttyoring, n);
133    }
134    if (n < 0)
135	return -1;
136    if (n == n0) {
137	if (n0)
138	    return -1;
139	return 0;
140    }
141    return n0 - n + 1;
142}
143
144
145/*
146 * These routines decides on what the mode should be (based on the values
147 * of various global variables).
148 */
149
150
151int
152getconnmode(void)
153{
154    int mode = 0;
155
156    if (my_want_state_is_dont(TELOPT_ECHO))
157	mode |= MODE_ECHO;
158
159    if (localflow)
160	mode |= MODE_FLOW;
161
162    if ((eight & 1) || my_want_state_is_will(TELOPT_BINARY))
163	mode |= MODE_INBIN;
164
165    if (eight & 2)
166	mode |= MODE_OUT8;
167    if (his_want_state_is_will(TELOPT_BINARY))
168	mode |= MODE_OUTBIN;
169
170#ifdef	KLUDGELINEMODE
171    if (kludgelinemode) {
172	if (my_want_state_is_dont(TELOPT_SGA)) {
173	    mode |= (MODE_TRAPSIG|MODE_EDIT);
174	    if (dontlecho && (clocks.echotoggle > clocks.modenegotiated)) {
175		mode &= ~MODE_ECHO;
176	    }
177	}
178	return(mode);
179    }
180#endif
181    if (my_want_state_is_will(TELOPT_LINEMODE))
182	mode |= linemode;
183    return(mode);
184}
185
186    void
187setconnmode(force)
188    int force;
189{
190#ifdef	ENCRYPTION
191    static int enc_passwd = 0;
192#endif
193    int newmode;
194
195    newmode = getconnmode()|(force?MODE_FORCE:0);
196
197    TerminalNewMode(newmode);
198
199#ifdef  ENCRYPTION
200    if ((newmode & (MODE_ECHO|MODE_EDIT)) == MODE_EDIT) {
201	if (my_want_state_is_will(TELOPT_ENCRYPT)
202				&& (enc_passwd == 0) && !encrypt_output) {
203	    encrypt_request_start(0, 0);
204	    enc_passwd = 1;
205	}
206    } else {
207	if (enc_passwd) {
208	    encrypt_request_end();
209	    enc_passwd = 0;
210	}
211    }
212#endif
213
214}
215
216
217    void
218setcommandmode()
219{
220    TerminalNewMode(-1);
221}
222