blob: f0c2a5d37d37348f6f849cd347f786fb9a5ecdbe [file] [log] [blame]
markus@openbsd.org89dd6152018-07-09 21:20:26 +00001/* $OpenBSD: ttymodes.c,v 1.34 2018/07/09 21:20:26 markus Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11006 *
7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
Ben Lindstromae8e2d32001-04-14 23:13:02 +000014/*
15 * SSH2 tty modes support by Kevin Steves.
16 * Copyright (c) 2001 Kevin Steves. All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions
20 * are met:
21 * 1. Redistributions of source code must retain the above copyright
22 * notice, this list of conditions and the following disclaimer.
23 * 2. Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
28 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
29 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
30 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
31 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
32 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
36 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 */
38
39/*
40 * Encoding and decoding of terminal modes in a portable way.
41 * Much of the format is defined in ttymodes.h; it is included multiple times
42 * into this file with the appropriate macro definitions to generate the
43 * suitable code.
44 */
45
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046#include "includes.h"
Damien Miller99bd21e2006-03-15 11:11:28 +110047
Damien Millerd7834352006-08-05 12:39:39 +100048#include <sys/types.h>
49
Darren Tucker39972492006-07-12 22:22:46 +100050#include <errno.h>
Damien Millere3476ed2006-07-24 14:13:33 +100051#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110052#include <termios.h>
Damien Millerd7834352006-08-05 12:39:39 +100053#include <stdarg.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054
55#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000056#include "log.h"
Ben Lindstromae8e2d32001-04-14 23:13:02 +000057#include "compat.h"
markus@openbsd.org89dd6152018-07-09 21:20:26 +000058#include "sshbuf.h"
59#include "ssherr.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
Ben Lindstromae8e2d32001-04-14 23:13:02 +000061#define TTY_OP_END 0
62/*
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +000063 * uint32 (u_int) follows speed.
Ben Lindstromae8e2d32001-04-14 23:13:02 +000064 */
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +000065#define TTY_OP_ISPEED 128
66#define TTY_OP_OSPEED 129
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067
Damien Miller95def091999-11-25 00:26:21 +110068/*
69 * Converts POSIX speed_t to a baud rate. The values of the
70 * constants for speed_t are not themselves portable.
71 */
Damien Miller4af51302000-04-16 11:18:38 +100072static int
Damien Miller95def091999-11-25 00:26:21 +110073speed_to_baud(speed_t speed)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074{
Damien Miller95def091999-11-25 00:26:21 +110075 switch (speed) {
76 case B0:
77 return 0;
78 case B50:
79 return 50;
80 case B75:
81 return 75;
82 case B110:
83 return 110;
84 case B134:
85 return 134;
86 case B150:
87 return 150;
88 case B200:
89 return 200;
90 case B300:
91 return 300;
92 case B600:
93 return 600;
94 case B1200:
95 return 1200;
96 case B1800:
97 return 1800;
98 case B2400:
99 return 2400;
100 case B4800:
101 return 4800;
102 case B9600:
103 return 9600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104
105#ifdef B19200
Damien Miller95def091999-11-25 00:26:21 +1100106 case B19200:
107 return 19200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108#else /* B19200 */
109#ifdef EXTA
Damien Miller95def091999-11-25 00:26:21 +1100110 case EXTA:
111 return 19200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112#endif /* EXTA */
113#endif /* B19200 */
114
115#ifdef B38400
Damien Miller95def091999-11-25 00:26:21 +1100116 case B38400:
117 return 38400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118#else /* B38400 */
119#ifdef EXTB
Damien Miller95def091999-11-25 00:26:21 +1100120 case EXTB:
121 return 38400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122#endif /* EXTB */
123#endif /* B38400 */
124
125#ifdef B7200
Damien Miller95def091999-11-25 00:26:21 +1100126 case B7200:
127 return 7200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128#endif /* B7200 */
129#ifdef B14400
Damien Miller95def091999-11-25 00:26:21 +1100130 case B14400:
131 return 14400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132#endif /* B14400 */
133#ifdef B28800
Damien Miller95def091999-11-25 00:26:21 +1100134 case B28800:
135 return 28800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136#endif /* B28800 */
137#ifdef B57600
Damien Miller95def091999-11-25 00:26:21 +1100138 case B57600:
139 return 57600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140#endif /* B57600 */
141#ifdef B76800
Damien Miller95def091999-11-25 00:26:21 +1100142 case B76800:
143 return 76800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144#endif /* B76800 */
145#ifdef B115200
Damien Miller95def091999-11-25 00:26:21 +1100146 case B115200:
147 return 115200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148#endif /* B115200 */
149#ifdef B230400
Damien Miller95def091999-11-25 00:26:21 +1100150 case B230400:
151 return 230400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152#endif /* B230400 */
Damien Miller95def091999-11-25 00:26:21 +1100153 default:
154 return 9600;
155 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000156}
157
Damien Miller95def091999-11-25 00:26:21 +1100158/*
159 * Converts a numeric baud rate to a POSIX speed_t.
160 */
Damien Miller4af51302000-04-16 11:18:38 +1000161static speed_t
Damien Miller95def091999-11-25 00:26:21 +1100162baud_to_speed(int baud)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000163{
Damien Miller95def091999-11-25 00:26:21 +1100164 switch (baud) {
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000165 case 0:
Damien Miller95def091999-11-25 00:26:21 +1100166 return B0;
167 case 50:
168 return B50;
169 case 75:
170 return B75;
171 case 110:
172 return B110;
173 case 134:
174 return B134;
175 case 150:
176 return B150;
177 case 200:
178 return B200;
179 case 300:
180 return B300;
181 case 600:
182 return B600;
183 case 1200:
184 return B1200;
185 case 1800:
186 return B1800;
187 case 2400:
188 return B2400;
189 case 4800:
190 return B4800;
191 case 9600:
192 return B9600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193
194#ifdef B19200
Damien Miller95def091999-11-25 00:26:21 +1100195 case 19200:
196 return B19200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197#else /* B19200 */
198#ifdef EXTA
Damien Miller95def091999-11-25 00:26:21 +1100199 case 19200:
200 return EXTA;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201#endif /* EXTA */
202#endif /* B19200 */
203
204#ifdef B38400
Damien Miller95def091999-11-25 00:26:21 +1100205 case 38400:
206 return B38400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207#else /* B38400 */
208#ifdef EXTB
Damien Miller95def091999-11-25 00:26:21 +1100209 case 38400:
210 return EXTB;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211#endif /* EXTB */
212#endif /* B38400 */
213
214#ifdef B7200
Damien Miller95def091999-11-25 00:26:21 +1100215 case 7200:
216 return B7200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217#endif /* B7200 */
218#ifdef B14400
Damien Miller95def091999-11-25 00:26:21 +1100219 case 14400:
220 return B14400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221#endif /* B14400 */
222#ifdef B28800
Damien Miller95def091999-11-25 00:26:21 +1100223 case 28800:
224 return B28800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000225#endif /* B28800 */
226#ifdef B57600
Damien Miller95def091999-11-25 00:26:21 +1100227 case 57600:
228 return B57600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000229#endif /* B57600 */
230#ifdef B76800
Damien Miller95def091999-11-25 00:26:21 +1100231 case 76800:
232 return B76800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233#endif /* B76800 */
234#ifdef B115200
Damien Miller95def091999-11-25 00:26:21 +1100235 case 115200:
236 return B115200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000237#endif /* B115200 */
238#ifdef B230400
Damien Miller95def091999-11-25 00:26:21 +1100239 case 230400:
240 return B230400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000241#endif /* B230400 */
Damien Miller95def091999-11-25 00:26:21 +1100242 default:
243 return B9600;
244 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245}
246
Damien Miller95def091999-11-25 00:26:21 +1100247/*
Damien Miller1d109762005-08-16 21:32:09 +1000248 * Encode a special character into SSH line format.
249 */
250static u_int
251special_char_encode(cc_t c)
252{
253#ifdef _POSIX_VDISABLE
254 if (c == _POSIX_VDISABLE)
255 return 255;
256#endif /* _POSIX_VDISABLE */
257 return c;
258}
259
260/*
261 * Decode a special character from SSH line format.
262 */
263static cc_t
264special_char_decode(u_int c)
265{
266#ifdef _POSIX_VDISABLE
267 if (c == 255)
268 return _POSIX_VDISABLE;
269#endif /* _POSIX_VDISABLE */
270 return c;
271}
272
273/*
Damien Miller95def091999-11-25 00:26:21 +1100274 * Encodes terminal modes for the terminal referenced by fd
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000275 * or tiop in a portable manner, and appends the modes to a packet
Damien Miller95def091999-11-25 00:26:21 +1100276 * being constructed.
277 */
Damien Miller4af51302000-04-16 11:18:38 +1000278void
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000279ssh_tty_make_modes(struct ssh *ssh, int fd, struct termios *tiop)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000280{
Damien Miller95def091999-11-25 00:26:21 +1100281 struct termios tio;
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000282 struct sshbuf *buf;
283 int r, ibaud, obaud;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000285 if ((buf = sshbuf_new()) == NULL)
286 fatal("%s: sshbuf_new failed", __func__);
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000287
288 if (tiop == NULL) {
Darren Tuckerdd392642008-06-08 12:53:20 +1000289 if (fd == -1) {
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000290 debug("%s: no fd or tio", __func__);
Darren Tuckerdd392642008-06-08 12:53:20 +1000291 goto end;
292 }
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000293 if (tcgetattr(fd, &tio) == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000294 logit("tcgetattr: %.100s", strerror(errno));
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000295 goto end;
296 }
297 } else
298 tio = *tiop;
299
Damien Miller95def091999-11-25 00:26:21 +1100300 /* Store input and output baud rates. */
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000301 obaud = speed_to_baud(cfgetospeed(&tio));
302 ibaud = speed_to_baud(cfgetispeed(&tio));
303 if ((r = sshbuf_put_u8(buf, TTY_OP_OSPEED)) != 0 ||
304 (r = sshbuf_put_u32(buf, obaud)) != 0 ||
305 (r = sshbuf_put_u8(buf, TTY_OP_ISPEED)) != 0 ||
306 (r = sshbuf_put_u32(buf, ibaud)) != 0)
307 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000308
Damien Miller95def091999-11-25 00:26:21 +1100309 /* Store values of mode flags. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000310#define TTYCHAR(NAME, OP) \
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000311 if ((r = sshbuf_put_u8(buf, OP)) != 0 || \
312 (r = sshbuf_put_u32(buf, \
313 special_char_encode(tio.c_cc[NAME]))) != 0) \
314 fatal("%s: buffer error: %s", __func__, ssh_err(r)); \
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000315
dtucker@openbsd.org85701772018-02-16 04:43:11 +0000316#define SSH_TTYMODE_IUTF8 42 /* for SSH_BUG_UTF8TTYMODE */
317
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000318#define TTYMODE(NAME, FIELD, OP) \
dtucker@openbsd.org85701772018-02-16 04:43:11 +0000319 if (OP == SSH_TTYMODE_IUTF8 && (datafellows & SSH_BUG_UTF8TTYMODE)) { \
320 debug3("%s: SSH_BUG_UTF8TTYMODE", __func__); \
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000321 } else if ((r = sshbuf_put_u8(buf, OP)) != 0 || \
322 (r = sshbuf_put_u32(buf, ((tio.FIELD & NAME) != 0))) != 0) \
323 fatal("%s: buffer error: %s", __func__, ssh_err(r)); \
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000324
325#include "ttymodes.h"
326
327#undef TTYCHAR
328#undef TTYMODE
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000329
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000330end:
Damien Miller95def091999-11-25 00:26:21 +1100331 /* Mark end of mode data. */
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000332 if ((r = sshbuf_put_u8(buf, TTY_OP_END)) != 0 ||
333 (r = sshpkt_put_stringb(ssh, buf)) != 0)
334 fatal("%s: packet error: %s", __func__, ssh_err(r));
335 sshbuf_free(buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000336}
337
Damien Miller95def091999-11-25 00:26:21 +1100338/*
339 * Decodes terminal modes for the terminal referenced by fd in a portable
340 * manner from a packet being read.
341 */
Damien Miller4af51302000-04-16 11:18:38 +1000342void
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000343ssh_tty_parse_modes(struct ssh *ssh, int fd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000344{
Damien Miller95def091999-11-25 00:26:21 +1100345 struct termios tio;
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000346 struct sshbuf *buf;
347 const u_char *data;
348 u_char opcode;
349 u_int baud, u;
350 int r, failure = 0;
351 size_t len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000352
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000353 if ((r = sshpkt_get_string_direct(ssh, &data, &len)) != 0)
354 fatal("%s: packet error: %s", __func__, ssh_err(r));
355 if (len == 0)
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000356 return;
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000357 if ((buf = sshbuf_from(data, len)) == NULL) {
358 error("%s: sshbuf_from failed", __func__);
359 return;
360 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000361
Damien Miller95def091999-11-25 00:26:21 +1100362 /*
363 * Get old attributes for the terminal. We will modify these
364 * flags. I am hoping that if there are any machine-specific
365 * modes, they will initially have reasonable values.
366 */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000367 if (tcgetattr(fd, &tio) == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000368 logit("tcgetattr: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100369 failure = -1;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000370 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000371
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000372 while (sshbuf_len(buf) > 0) {
373 if ((r = sshbuf_get_u8(buf, &opcode)) != 0)
374 fatal("%s: packet error: %s", __func__, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +1100375 switch (opcode) {
376 case TTY_OP_END:
377 goto set;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000378
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +0000379 case TTY_OP_ISPEED:
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000380 if ((r = sshbuf_get_u32(buf, &baud)) != 0)
381 fatal("%s: packet error: %s",
382 __func__, ssh_err(r));
Damien Millera5a28592006-03-26 14:10:34 +1100383 if (failure != -1 &&
384 cfsetispeed(&tio, baud_to_speed(baud)) == -1)
Damien Miller95def091999-11-25 00:26:21 +1100385 error("cfsetispeed failed for %d", baud);
386 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000387
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +0000388 case TTY_OP_OSPEED:
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000389 if ((r = sshbuf_get_u32(buf, &baud)) != 0)
390 fatal("%s: packet error: %s",
391 __func__, ssh_err(r));
Damien Millera5a28592006-03-26 14:10:34 +1100392 if (failure != -1 &&
393 cfsetospeed(&tio, baud_to_speed(baud)) == -1)
Damien Miller95def091999-11-25 00:26:21 +1100394 error("cfsetospeed failed for %d", baud);
395 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000396
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000397#define TTYCHAR(NAME, OP) \
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000398 case OP: \
399 if ((r = sshbuf_get_u32(buf, &u)) != 0) \
400 fatal("%s: packet error: %s", __func__, \
401 ssh_err(r)); \
402 tio.c_cc[NAME] = special_char_decode(u); \
403 break;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000404#define TTYMODE(NAME, FIELD, OP) \
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000405 case OP: \
406 if ((r = sshbuf_get_u32(buf, &u)) != 0) \
407 fatal("%s: packet error: %s", __func__, \
408 ssh_err(r)); \
409 if (u) \
410 tio.FIELD |= NAME; \
411 else \
412 tio.FIELD &= ~NAME; \
413 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000414
415#include "ttymodes.h"
416
417#undef TTYCHAR
418#undef TTYMODE
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000419
Damien Miller95def091999-11-25 00:26:21 +1100420 default:
421 debug("Ignoring unsupported tty mode opcode %d (0x%x)",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100422 opcode, opcode);
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000423 /*
424 * SSH2:
425 * Opcodes 1 to 159 are defined to have a uint32
426 * argument.
427 * Opcodes 160 to 255 are undefined and cause parsing
428 * to stop.
429 */
430 if (opcode > 0 && opcode < 160) {
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000431 if ((r = sshbuf_get_u32(buf, NULL)) != 0)
432 fatal("%s: packet error: %s", __func__,
433 ssh_err(r));
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000434 break;
Damien Miller95def091999-11-25 00:26:21 +1100435 } else {
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000436 logit("%s: unknown opcode %d", __func__,
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000437 opcode);
438 goto set;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000439 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000440 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000441 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000442
Damien Miller95def091999-11-25 00:26:21 +1100443set:
markus@openbsd.org89dd6152018-07-09 21:20:26 +0000444 len = sshbuf_len(buf);
445 sshbuf_free(buf);
446 if (len > 0) {
447 logit("%s: %zu bytes left", __func__, len);
Damien Miller95def091999-11-25 00:26:21 +1100448 return; /* Don't process bytes passed */
449 }
450 if (failure == -1)
Ben Lindstromac2f0032001-04-15 14:25:12 +0000451 return; /* Packet parsed ok but tcgetattr() failed */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000452
Damien Miller95def091999-11-25 00:26:21 +1100453 /* Set the new modes for the terminal. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000454 if (tcsetattr(fd, TCSANOW, &tio) == -1)
Damien Miller996acd22003-04-09 20:59:48 +1000455 logit("Setting tty modes failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000456}