blob: 7f621e30e09990ac750f4e7bad3f8415d51e34f4 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11005 *
6 * As far as I am concerned, the code I have written for this software
7 * can be used freely for any purpose. Any derived versions of this
8 * software must be clearly marked as such, and if the derived work is
9 * incompatible with the protocol description in the RFC file, it must be
10 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110011 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100012
Ben Lindstromae8e2d32001-04-14 23:13:02 +000013/*
14 * SSH2 tty modes support by Kevin Steves.
15 * Copyright (c) 2001 Kevin Steves. All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 */
37
38/*
39 * Encoding and decoding of terminal modes in a portable way.
40 * Much of the format is defined in ttymodes.h; it is included multiple times
41 * into this file with the appropriate macro definitions to generate the
42 * suitable code.
43 */
44
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045#include "includes.h"
Damien Miller99bd21e2006-03-15 11:11:28 +110046RCSID("$OpenBSD: ttymodes.c,v 1.20 2006/02/07 01:42:00 stevesk Exp $");
47
48#include <termios.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049
50#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000051#include "log.h"
52#include "ssh1.h"
Ben Lindstromae8e2d32001-04-14 23:13:02 +000053#include "compat.h"
54#include "buffer.h"
55#include "bufaux.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056
Ben Lindstromae8e2d32001-04-14 23:13:02 +000057#define TTY_OP_END 0
58/*
59 * uint32 (u_int) follows speed in SSH1 and SSH2
60 */
61#define TTY_OP_ISPEED_PROTO1 192
62#define TTY_OP_OSPEED_PROTO1 193
63#define TTY_OP_ISPEED_PROTO2 128
64#define TTY_OP_OSPEED_PROTO2 129
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065
Damien Miller95def091999-11-25 00:26:21 +110066/*
67 * Converts POSIX speed_t to a baud rate. The values of the
68 * constants for speed_t are not themselves portable.
69 */
Damien Miller4af51302000-04-16 11:18:38 +100070static int
Damien Miller95def091999-11-25 00:26:21 +110071speed_to_baud(speed_t speed)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072{
Damien Miller95def091999-11-25 00:26:21 +110073 switch (speed) {
74 case B0:
75 return 0;
76 case B50:
77 return 50;
78 case B75:
79 return 75;
80 case B110:
81 return 110;
82 case B134:
83 return 134;
84 case B150:
85 return 150;
86 case B200:
87 return 200;
88 case B300:
89 return 300;
90 case B600:
91 return 600;
92 case B1200:
93 return 1200;
94 case B1800:
95 return 1800;
96 case B2400:
97 return 2400;
98 case B4800:
99 return 4800;
100 case B9600:
101 return 9600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102
103#ifdef B19200
Damien Miller95def091999-11-25 00:26:21 +1100104 case B19200:
105 return 19200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106#else /* B19200 */
107#ifdef EXTA
Damien Miller95def091999-11-25 00:26:21 +1100108 case EXTA:
109 return 19200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110#endif /* EXTA */
111#endif /* B19200 */
112
113#ifdef B38400
Damien Miller95def091999-11-25 00:26:21 +1100114 case B38400:
115 return 38400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116#else /* B38400 */
117#ifdef EXTB
Damien Miller95def091999-11-25 00:26:21 +1100118 case EXTB:
119 return 38400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120#endif /* EXTB */
121#endif /* B38400 */
122
123#ifdef B7200
Damien Miller95def091999-11-25 00:26:21 +1100124 case B7200:
125 return 7200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126#endif /* B7200 */
127#ifdef B14400
Damien Miller95def091999-11-25 00:26:21 +1100128 case B14400:
129 return 14400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130#endif /* B14400 */
131#ifdef B28800
Damien Miller95def091999-11-25 00:26:21 +1100132 case B28800:
133 return 28800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000134#endif /* B28800 */
135#ifdef B57600
Damien Miller95def091999-11-25 00:26:21 +1100136 case B57600:
137 return 57600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138#endif /* B57600 */
139#ifdef B76800
Damien Miller95def091999-11-25 00:26:21 +1100140 case B76800:
141 return 76800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142#endif /* B76800 */
143#ifdef B115200
Damien Miller95def091999-11-25 00:26:21 +1100144 case B115200:
145 return 115200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146#endif /* B115200 */
147#ifdef B230400
Damien Miller95def091999-11-25 00:26:21 +1100148 case B230400:
149 return 230400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150#endif /* B230400 */
Damien Miller95def091999-11-25 00:26:21 +1100151 default:
152 return 9600;
153 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154}
155
Damien Miller95def091999-11-25 00:26:21 +1100156/*
157 * Converts a numeric baud rate to a POSIX speed_t.
158 */
Damien Miller4af51302000-04-16 11:18:38 +1000159static speed_t
Damien Miller95def091999-11-25 00:26:21 +1100160baud_to_speed(int baud)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161{
Damien Miller95def091999-11-25 00:26:21 +1100162 switch (baud) {
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000163 case 0:
Damien Miller95def091999-11-25 00:26:21 +1100164 return B0;
165 case 50:
166 return B50;
167 case 75:
168 return B75;
169 case 110:
170 return B110;
171 case 134:
172 return B134;
173 case 150:
174 return B150;
175 case 200:
176 return B200;
177 case 300:
178 return B300;
179 case 600:
180 return B600;
181 case 1200:
182 return B1200;
183 case 1800:
184 return B1800;
185 case 2400:
186 return B2400;
187 case 4800:
188 return B4800;
189 case 9600:
190 return B9600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191
192#ifdef B19200
Damien Miller95def091999-11-25 00:26:21 +1100193 case 19200:
194 return B19200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195#else /* B19200 */
196#ifdef EXTA
Damien Miller95def091999-11-25 00:26:21 +1100197 case 19200:
198 return EXTA;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199#endif /* EXTA */
200#endif /* B19200 */
201
202#ifdef B38400
Damien Miller95def091999-11-25 00:26:21 +1100203 case 38400:
204 return B38400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205#else /* B38400 */
206#ifdef EXTB
Damien Miller95def091999-11-25 00:26:21 +1100207 case 38400:
208 return EXTB;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209#endif /* EXTB */
210#endif /* B38400 */
211
212#ifdef B7200
Damien Miller95def091999-11-25 00:26:21 +1100213 case 7200:
214 return B7200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215#endif /* B7200 */
216#ifdef B14400
Damien Miller95def091999-11-25 00:26:21 +1100217 case 14400:
218 return B14400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000219#endif /* B14400 */
220#ifdef B28800
Damien Miller95def091999-11-25 00:26:21 +1100221 case 28800:
222 return B28800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223#endif /* B28800 */
224#ifdef B57600
Damien Miller95def091999-11-25 00:26:21 +1100225 case 57600:
226 return B57600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000227#endif /* B57600 */
228#ifdef B76800
Damien Miller95def091999-11-25 00:26:21 +1100229 case 76800:
230 return B76800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000231#endif /* B76800 */
232#ifdef B115200
Damien Miller95def091999-11-25 00:26:21 +1100233 case 115200:
234 return B115200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000235#endif /* B115200 */
236#ifdef B230400
Damien Miller95def091999-11-25 00:26:21 +1100237 case 230400:
238 return B230400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000239#endif /* B230400 */
Damien Miller95def091999-11-25 00:26:21 +1100240 default:
241 return B9600;
242 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000243}
244
Damien Miller95def091999-11-25 00:26:21 +1100245/*
Damien Miller1d109762005-08-16 21:32:09 +1000246 * Encode a special character into SSH line format.
247 */
248static u_int
249special_char_encode(cc_t c)
250{
251#ifdef _POSIX_VDISABLE
252 if (c == _POSIX_VDISABLE)
253 return 255;
254#endif /* _POSIX_VDISABLE */
255 return c;
256}
257
258/*
259 * Decode a special character from SSH line format.
260 */
261static cc_t
262special_char_decode(u_int c)
263{
264#ifdef _POSIX_VDISABLE
265 if (c == 255)
266 return _POSIX_VDISABLE;
267#endif /* _POSIX_VDISABLE */
268 return c;
269}
270
271/*
Damien Miller95def091999-11-25 00:26:21 +1100272 * Encodes terminal modes for the terminal referenced by fd
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000273 * or tiop in a portable manner, and appends the modes to a packet
Damien Miller95def091999-11-25 00:26:21 +1100274 * being constructed.
275 */
Damien Miller4af51302000-04-16 11:18:38 +1000276void
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000277tty_make_modes(int fd, struct termios *tiop)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278{
Damien Miller95def091999-11-25 00:26:21 +1100279 struct termios tio;
280 int baud;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000281 Buffer buf;
282 int tty_op_ospeed, tty_op_ispeed;
283 void (*put_arg)(Buffer *, u_int);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000285 buffer_init(&buf);
286 if (compat20) {
287 tty_op_ospeed = TTY_OP_OSPEED_PROTO2;
288 tty_op_ispeed = TTY_OP_ISPEED_PROTO2;
289 put_arg = buffer_put_int;
290 } else {
291 tty_op_ospeed = TTY_OP_OSPEED_PROTO1;
292 tty_op_ispeed = TTY_OP_ISPEED_PROTO1;
293 put_arg = (void (*)(Buffer *, u_int)) buffer_put_char;
Damien Miller95def091999-11-25 00:26:21 +1100294 }
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000295
296 if (tiop == NULL) {
297 if (tcgetattr(fd, &tio) == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000298 logit("tcgetattr: %.100s", strerror(errno));
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000299 goto end;
300 }
301 } else
302 tio = *tiop;
303
Damien Miller95def091999-11-25 00:26:21 +1100304 /* Store input and output baud rates. */
305 baud = speed_to_baud(cfgetospeed(&tio));
Ben Lindstrom491bbb82001-06-25 05:24:16 +0000306 debug3("tty_make_modes: ospeed %d", baud);
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000307 buffer_put_char(&buf, tty_op_ospeed);
308 buffer_put_int(&buf, baud);
Damien Miller95def091999-11-25 00:26:21 +1100309 baud = speed_to_baud(cfgetispeed(&tio));
Ben Lindstrom491bbb82001-06-25 05:24:16 +0000310 debug3("tty_make_modes: ispeed %d", baud);
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000311 buffer_put_char(&buf, tty_op_ispeed);
312 buffer_put_int(&buf, baud);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000313
Damien Miller95def091999-11-25 00:26:21 +1100314 /* Store values of mode flags. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000315#define TTYCHAR(NAME, OP) \
Ben Lindstrom491bbb82001-06-25 05:24:16 +0000316 debug3("tty_make_modes: %d %d", OP, tio.c_cc[NAME]); \
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000317 buffer_put_char(&buf, OP); \
Damien Miller1d109762005-08-16 21:32:09 +1000318 put_arg(&buf, special_char_encode(tio.c_cc[NAME]));
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000319
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000320#define TTYMODE(NAME, FIELD, OP) \
Ben Lindstrom491bbb82001-06-25 05:24:16 +0000321 debug3("tty_make_modes: %d %d", OP, ((tio.FIELD & NAME) != 0)); \
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000322 buffer_put_char(&buf, OP); \
323 put_arg(&buf, ((tio.FIELD & NAME) != 0));
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. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000332 buffer_put_char(&buf, TTY_OP_END);
333 if (compat20)
334 packet_put_string(buffer_ptr(&buf), buffer_len(&buf));
335 else
336 packet_put_raw(buffer_ptr(&buf), buffer_len(&buf));
337 buffer_free(&buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000338}
339
Damien Miller95def091999-11-25 00:26:21 +1100340/*
341 * Decodes terminal modes for the terminal referenced by fd in a portable
342 * manner from a packet being read.
343 */
Damien Miller4af51302000-04-16 11:18:38 +1000344void
Damien Miller95def091999-11-25 00:26:21 +1100345tty_parse_modes(int fd, int *n_bytes_ptr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000346{
Damien Miller95def091999-11-25 00:26:21 +1100347 struct termios tio;
348 int opcode, baud;
349 int n_bytes = 0;
350 int failure = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000351 u_int (*get_arg)(void);
352 int arg, arg_size;
353
354 if (compat20) {
355 *n_bytes_ptr = packet_get_int();
Ben Lindstrom491bbb82001-06-25 05:24:16 +0000356 debug3("tty_parse_modes: SSH2 n_bytes %d", *n_bytes_ptr);
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000357 if (*n_bytes_ptr == 0)
358 return;
359 get_arg = packet_get_int;
360 arg_size = 4;
361 } else {
362 get_arg = packet_get_char;
363 arg_size = 1;
364 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000365
Damien Miller95def091999-11-25 00:26:21 +1100366 /*
367 * Get old attributes for the terminal. We will modify these
368 * flags. I am hoping that if there are any machine-specific
369 * modes, they will initially have reasonable values.
370 */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000371 if (tcgetattr(fd, &tio) == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000372 logit("tcgetattr: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100373 failure = -1;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000374 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000375
Damien Miller95def091999-11-25 00:26:21 +1100376 for (;;) {
377 n_bytes += 1;
378 opcode = packet_get_char();
379 switch (opcode) {
380 case TTY_OP_END:
381 goto set;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000382
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000383 /* XXX: future conflict possible */
384 case TTY_OP_ISPEED_PROTO1:
385 case TTY_OP_ISPEED_PROTO2:
Damien Miller95def091999-11-25 00:26:21 +1100386 n_bytes += 4;
387 baud = packet_get_int();
Ben Lindstrom491bbb82001-06-25 05:24:16 +0000388 debug3("tty_parse_modes: ispeed %d", baud);
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000389 if (failure != -1 && cfsetispeed(&tio, baud_to_speed(baud)) == -1)
Damien Miller95def091999-11-25 00:26:21 +1100390 error("cfsetispeed failed for %d", baud);
391 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000392
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000393 /* XXX: future conflict possible */
394 case TTY_OP_OSPEED_PROTO1:
395 case TTY_OP_OSPEED_PROTO2:
Damien Miller95def091999-11-25 00:26:21 +1100396 n_bytes += 4;
397 baud = packet_get_int();
Ben Lindstrom491bbb82001-06-25 05:24:16 +0000398 debug3("tty_parse_modes: ospeed %d", baud);
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000399 if (failure != -1 && cfsetospeed(&tio, baud_to_speed(baud)) == -1)
Damien Miller95def091999-11-25 00:26:21 +1100400 error("cfsetospeed failed for %d", baud);
401 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000402
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000403#define TTYCHAR(NAME, OP) \
404 case OP: \
405 n_bytes += arg_size; \
Damien Miller1d109762005-08-16 21:32:09 +1000406 tio.c_cc[NAME] = special_char_decode(get_arg()); \
Ben Lindstrom491bbb82001-06-25 05:24:16 +0000407 debug3("tty_parse_modes: %d %d", OP, tio.c_cc[NAME]); \
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000408 break;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000409#define TTYMODE(NAME, FIELD, OP) \
410 case OP: \
411 n_bytes += arg_size; \
412 if ((arg = get_arg())) \
413 tio.FIELD |= NAME; \
414 else \
415 tio.FIELD &= ~NAME; \
Ben Lindstrom491bbb82001-06-25 05:24:16 +0000416 debug3("tty_parse_modes: %d %d", OP, arg); \
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000417 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000418
419#include "ttymodes.h"
420
421#undef TTYCHAR
422#undef TTYMODE
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000423
Damien Miller95def091999-11-25 00:26:21 +1100424 default:
425 debug("Ignoring unsupported tty mode opcode %d (0x%x)",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100426 opcode, opcode);
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000427 if (!compat20) {
428 /*
429 * SSH1:
430 * Opcodes 1 to 127 are defined to have
431 * a one-byte argument.
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000432 * Opcodes 128 to 159 are defined to have
433 * an integer argument.
434 */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000435 if (opcode > 0 && opcode < 128) {
436 n_bytes += 1;
437 (void) packet_get_char();
438 break;
439 } else if (opcode >= 128 && opcode < 160) {
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000440 n_bytes += 4;
441 (void) packet_get_int();
442 break;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000443 } else {
444 /*
445 * It is a truly undefined opcode (160 to 255).
446 * We have no idea about its arguments. So we
447 * must stop parsing. Note that some data may be
448 * left in the packet; hopefully there is nothing
449 * more coming after the mode data.
450 */
Damien Miller996acd22003-04-09 20:59:48 +1000451 logit("parse_tty_modes: unknown opcode %d", opcode);
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000452 goto set;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000453 }
Damien Miller95def091999-11-25 00:26:21 +1100454 } else {
455 /*
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000456 * SSH2:
Ben Lindstromac2f0032001-04-15 14:25:12 +0000457 * Opcodes 1 to 159 are defined to have
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000458 * a uint32 argument.
459 * Opcodes 160 to 255 are undefined and
460 * cause parsing to stop.
Damien Miller95def091999-11-25 00:26:21 +1100461 */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000462 if (opcode > 0 && opcode < 160) {
Damien Miller95def091999-11-25 00:26:21 +1100463 n_bytes += 4;
464 (void) packet_get_int();
465 break;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000466 } else {
Damien Miller996acd22003-04-09 20:59:48 +1000467 logit("parse_tty_modes: unknown opcode %d", opcode);
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000468 goto set;
Damien Miller95def091999-11-25 00:26:21 +1100469 }
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000470 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000471 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000472 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000473
Damien Miller95def091999-11-25 00:26:21 +1100474set:
475 if (*n_bytes_ptr != n_bytes) {
476 *n_bytes_ptr = n_bytes;
Damien Miller996acd22003-04-09 20:59:48 +1000477 logit("parse_tty_modes: n_bytes_ptr != n_bytes: %d %d",
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000478 *n_bytes_ptr, n_bytes);
Damien Miller95def091999-11-25 00:26:21 +1100479 return; /* Don't process bytes passed */
480 }
481 if (failure == -1)
Ben Lindstromac2f0032001-04-15 14:25:12 +0000482 return; /* Packet parsed ok but tcgetattr() failed */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000483
Damien Miller95def091999-11-25 00:26:21 +1100484 /* Set the new modes for the terminal. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000485 if (tcsetattr(fd, TCSANOW, &tio) == -1)
Damien Miller996acd22003-04-09 20:59:48 +1000486 logit("Setting tty modes failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000487}