blob: 2fc783b2f75d367f0e304959f76cf4d84d4755f0 [file] [log] [blame]
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001/* $OpenBSD: ttymodes.c,v 1.31 2017/04/30 23:13:25 djm 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"
58#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059
Ben Lindstromae8e2d32001-04-14 23:13:02 +000060#define TTY_OP_END 0
61/*
62 * uint32 (u_int) follows speed in SSH1 and SSH2
63 */
64#define TTY_OP_ISPEED_PROTO1 192
65#define TTY_OP_OSPEED_PROTO1 193
66#define TTY_OP_ISPEED_PROTO2 128
67#define TTY_OP_OSPEED_PROTO2 129
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068
Damien Miller95def091999-11-25 00:26:21 +110069/*
70 * Converts POSIX speed_t to a baud rate. The values of the
71 * constants for speed_t are not themselves portable.
72 */
Damien Miller4af51302000-04-16 11:18:38 +100073static int
Damien Miller95def091999-11-25 00:26:21 +110074speed_to_baud(speed_t speed)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075{
Damien Miller95def091999-11-25 00:26:21 +110076 switch (speed) {
77 case B0:
78 return 0;
79 case B50:
80 return 50;
81 case B75:
82 return 75;
83 case B110:
84 return 110;
85 case B134:
86 return 134;
87 case B150:
88 return 150;
89 case B200:
90 return 200;
91 case B300:
92 return 300;
93 case B600:
94 return 600;
95 case B1200:
96 return 1200;
97 case B1800:
98 return 1800;
99 case B2400:
100 return 2400;
101 case B4800:
102 return 4800;
103 case B9600:
104 return 9600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105
106#ifdef B19200
Damien Miller95def091999-11-25 00:26:21 +1100107 case B19200:
108 return 19200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000109#else /* B19200 */
110#ifdef EXTA
Damien Miller95def091999-11-25 00:26:21 +1100111 case EXTA:
112 return 19200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113#endif /* EXTA */
114#endif /* B19200 */
115
116#ifdef B38400
Damien Miller95def091999-11-25 00:26:21 +1100117 case B38400:
118 return 38400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119#else /* B38400 */
120#ifdef EXTB
Damien Miller95def091999-11-25 00:26:21 +1100121 case EXTB:
122 return 38400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123#endif /* EXTB */
124#endif /* B38400 */
125
126#ifdef B7200
Damien Miller95def091999-11-25 00:26:21 +1100127 case B7200:
128 return 7200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129#endif /* B7200 */
130#ifdef B14400
Damien Miller95def091999-11-25 00:26:21 +1100131 case B14400:
132 return 14400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133#endif /* B14400 */
134#ifdef B28800
Damien Miller95def091999-11-25 00:26:21 +1100135 case B28800:
136 return 28800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137#endif /* B28800 */
138#ifdef B57600
Damien Miller95def091999-11-25 00:26:21 +1100139 case B57600:
140 return 57600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141#endif /* B57600 */
142#ifdef B76800
Damien Miller95def091999-11-25 00:26:21 +1100143 case B76800:
144 return 76800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000145#endif /* B76800 */
146#ifdef B115200
Damien Miller95def091999-11-25 00:26:21 +1100147 case B115200:
148 return 115200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149#endif /* B115200 */
150#ifdef B230400
Damien Miller95def091999-11-25 00:26:21 +1100151 case B230400:
152 return 230400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153#endif /* B230400 */
Damien Miller95def091999-11-25 00:26:21 +1100154 default:
155 return 9600;
156 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000157}
158
Damien Miller95def091999-11-25 00:26:21 +1100159/*
160 * Converts a numeric baud rate to a POSIX speed_t.
161 */
Damien Miller4af51302000-04-16 11:18:38 +1000162static speed_t
Damien Miller95def091999-11-25 00:26:21 +1100163baud_to_speed(int baud)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164{
Damien Miller95def091999-11-25 00:26:21 +1100165 switch (baud) {
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000166 case 0:
Damien Miller95def091999-11-25 00:26:21 +1100167 return B0;
168 case 50:
169 return B50;
170 case 75:
171 return B75;
172 case 110:
173 return B110;
174 case 134:
175 return B134;
176 case 150:
177 return B150;
178 case 200:
179 return B200;
180 case 300:
181 return B300;
182 case 600:
183 return B600;
184 case 1200:
185 return B1200;
186 case 1800:
187 return B1800;
188 case 2400:
189 return B2400;
190 case 4800:
191 return B4800;
192 case 9600:
193 return B9600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194
195#ifdef B19200
Damien Miller95def091999-11-25 00:26:21 +1100196 case 19200:
197 return B19200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198#else /* B19200 */
199#ifdef EXTA
Damien Miller95def091999-11-25 00:26:21 +1100200 case 19200:
201 return EXTA;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202#endif /* EXTA */
203#endif /* B19200 */
204
205#ifdef B38400
Damien Miller95def091999-11-25 00:26:21 +1100206 case 38400:
207 return B38400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208#else /* B38400 */
209#ifdef EXTB
Damien Miller95def091999-11-25 00:26:21 +1100210 case 38400:
211 return EXTB;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212#endif /* EXTB */
213#endif /* B38400 */
214
215#ifdef B7200
Damien Miller95def091999-11-25 00:26:21 +1100216 case 7200:
217 return B7200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000218#endif /* B7200 */
219#ifdef B14400
Damien Miller95def091999-11-25 00:26:21 +1100220 case 14400:
221 return B14400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222#endif /* B14400 */
223#ifdef B28800
Damien Miller95def091999-11-25 00:26:21 +1100224 case 28800:
225 return B28800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226#endif /* B28800 */
227#ifdef B57600
Damien Miller95def091999-11-25 00:26:21 +1100228 case 57600:
229 return B57600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230#endif /* B57600 */
231#ifdef B76800
Damien Miller95def091999-11-25 00:26:21 +1100232 case 76800:
233 return B76800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000234#endif /* B76800 */
235#ifdef B115200
Damien Miller95def091999-11-25 00:26:21 +1100236 case 115200:
237 return B115200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000238#endif /* B115200 */
239#ifdef B230400
Damien Miller95def091999-11-25 00:26:21 +1100240 case 230400:
241 return B230400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000242#endif /* B230400 */
Damien Miller95def091999-11-25 00:26:21 +1100243 default:
244 return B9600;
245 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000246}
247
Damien Miller95def091999-11-25 00:26:21 +1100248/*
Damien Miller1d109762005-08-16 21:32:09 +1000249 * Encode a special character into SSH line format.
250 */
251static u_int
252special_char_encode(cc_t c)
253{
254#ifdef _POSIX_VDISABLE
255 if (c == _POSIX_VDISABLE)
256 return 255;
257#endif /* _POSIX_VDISABLE */
258 return c;
259}
260
261/*
262 * Decode a special character from SSH line format.
263 */
264static cc_t
265special_char_decode(u_int c)
266{
267#ifdef _POSIX_VDISABLE
268 if (c == 255)
269 return _POSIX_VDISABLE;
270#endif /* _POSIX_VDISABLE */
271 return c;
272}
273
274/*
Damien Miller95def091999-11-25 00:26:21 +1100275 * Encodes terminal modes for the terminal referenced by fd
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000276 * or tiop in a portable manner, and appends the modes to a packet
Damien Miller95def091999-11-25 00:26:21 +1100277 * being constructed.
278 */
Damien Miller4af51302000-04-16 11:18:38 +1000279void
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000280tty_make_modes(int fd, struct termios *tiop)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000281{
Damien Miller95def091999-11-25 00:26:21 +1100282 struct termios tio;
283 int baud;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000284 Buffer buf;
285 int tty_op_ospeed, tty_op_ispeed;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000286
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000287 buffer_init(&buf);
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000288 tty_op_ospeed = TTY_OP_OSPEED_PROTO2;
289 tty_op_ispeed = TTY_OP_ISPEED_PROTO2;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000290
291 if (tiop == NULL) {
Darren Tuckerdd392642008-06-08 12:53:20 +1000292 if (fd == -1) {
293 debug("tty_make_modes: no fd or tio");
294 goto end;
295 }
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000296 if (tcgetattr(fd, &tio) == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000297 logit("tcgetattr: %.100s", strerror(errno));
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000298 goto end;
299 }
300 } else
301 tio = *tiop;
302
Damien Miller95def091999-11-25 00:26:21 +1100303 /* Store input and output baud rates. */
304 baud = speed_to_baud(cfgetospeed(&tio));
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000305 buffer_put_char(&buf, tty_op_ospeed);
306 buffer_put_int(&buf, baud);
Damien Miller95def091999-11-25 00:26:21 +1100307 baud = speed_to_baud(cfgetispeed(&tio));
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000308 buffer_put_char(&buf, tty_op_ispeed);
309 buffer_put_int(&buf, baud);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000310
Damien Miller95def091999-11-25 00:26:21 +1100311 /* Store values of mode flags. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000312#define TTYCHAR(NAME, OP) \
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000313 buffer_put_char(&buf, OP); \
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000314 buffer_put_int(&buf, special_char_encode(tio.c_cc[NAME]));
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000315
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000316#define TTYMODE(NAME, FIELD, OP) \
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000317 buffer_put_char(&buf, OP); \
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000318 buffer_put_int(&buf, ((tio.FIELD & NAME) != 0));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000319
320#include "ttymodes.h"
321
322#undef TTYCHAR
323#undef TTYMODE
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000324
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000325end:
Damien Miller95def091999-11-25 00:26:21 +1100326 /* Mark end of mode data. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000327 buffer_put_char(&buf, TTY_OP_END);
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000328 packet_put_string(buffer_ptr(&buf), buffer_len(&buf));
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000329 buffer_free(&buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000330}
331
Damien Miller95def091999-11-25 00:26:21 +1100332/*
333 * Decodes terminal modes for the terminal referenced by fd in a portable
334 * manner from a packet being read.
335 */
Damien Miller4af51302000-04-16 11:18:38 +1000336void
Damien Miller95def091999-11-25 00:26:21 +1100337tty_parse_modes(int fd, int *n_bytes_ptr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000338{
Damien Miller95def091999-11-25 00:26:21 +1100339 struct termios tio;
340 int opcode, baud;
341 int n_bytes = 0;
342 int failure = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000343
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000344 *n_bytes_ptr = packet_get_int();
345 if (*n_bytes_ptr == 0)
346 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000347
Damien Miller95def091999-11-25 00:26:21 +1100348 /*
349 * Get old attributes for the terminal. We will modify these
350 * flags. I am hoping that if there are any machine-specific
351 * modes, they will initially have reasonable values.
352 */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000353 if (tcgetattr(fd, &tio) == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000354 logit("tcgetattr: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100355 failure = -1;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000356 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000357
Damien Miller95def091999-11-25 00:26:21 +1100358 for (;;) {
359 n_bytes += 1;
360 opcode = packet_get_char();
361 switch (opcode) {
362 case TTY_OP_END:
363 goto set;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000364
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000365 /* XXX: future conflict possible */
366 case TTY_OP_ISPEED_PROTO1:
367 case TTY_OP_ISPEED_PROTO2:
Damien Miller95def091999-11-25 00:26:21 +1100368 n_bytes += 4;
369 baud = packet_get_int();
Damien Millera5a28592006-03-26 14:10:34 +1100370 if (failure != -1 &&
371 cfsetispeed(&tio, baud_to_speed(baud)) == -1)
Damien Miller95def091999-11-25 00:26:21 +1100372 error("cfsetispeed failed for %d", baud);
373 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000374
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000375 /* XXX: future conflict possible */
376 case TTY_OP_OSPEED_PROTO1:
377 case TTY_OP_OSPEED_PROTO2:
Damien Miller95def091999-11-25 00:26:21 +1100378 n_bytes += 4;
379 baud = packet_get_int();
Damien Millera5a28592006-03-26 14:10:34 +1100380 if (failure != -1 &&
381 cfsetospeed(&tio, baud_to_speed(baud)) == -1)
Damien Miller95def091999-11-25 00:26:21 +1100382 error("cfsetospeed failed for %d", baud);
383 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000384
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000385#define TTYCHAR(NAME, OP) \
386 case OP: \
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000387 n_bytes += 4; \
388 tio.c_cc[NAME] = special_char_decode(packet_get_int()); \
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000389 break;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000390#define TTYMODE(NAME, FIELD, OP) \
391 case OP: \
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000392 n_bytes += 4; \
393 if (packet_get_int()) \
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000394 tio.FIELD |= NAME; \
395 else \
396 tio.FIELD &= ~NAME; \
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000397 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000398
399#include "ttymodes.h"
400
401#undef TTYCHAR
402#undef TTYMODE
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000403
Damien Miller95def091999-11-25 00:26:21 +1100404 default:
405 debug("Ignoring unsupported tty mode opcode %d (0x%x)",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100406 opcode, opcode);
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000407 /*
408 * SSH2:
409 * Opcodes 1 to 159 are defined to have a uint32
410 * argument.
411 * Opcodes 160 to 255 are undefined and cause parsing
412 * to stop.
413 */
414 if (opcode > 0 && opcode < 160) {
415 n_bytes += 4;
416 (void) packet_get_int();
417 break;
Damien Miller95def091999-11-25 00:26:21 +1100418 } else {
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000419 logit("parse_tty_modes: unknown opcode %d",
420 opcode);
421 goto set;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000422 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000423 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000424 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000425
Damien Miller95def091999-11-25 00:26:21 +1100426set:
427 if (*n_bytes_ptr != n_bytes) {
428 *n_bytes_ptr = n_bytes;
Damien Miller996acd22003-04-09 20:59:48 +1000429 logit("parse_tty_modes: n_bytes_ptr != n_bytes: %d %d",
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000430 *n_bytes_ptr, n_bytes);
Damien Miller95def091999-11-25 00:26:21 +1100431 return; /* Don't process bytes passed */
432 }
433 if (failure == -1)
Ben Lindstromac2f0032001-04-15 14:25:12 +0000434 return; /* Packet parsed ok but tcgetattr() failed */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000435
Damien Miller95def091999-11-25 00:26:21 +1100436 /* Set the new modes for the terminal. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000437 if (tcsetattr(fd, TCSANOW, &tio) == -1)
Damien Miller996acd22003-04-09 20:59:48 +1000438 logit("Setting tty modes failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000439}