blob: 8451396353c9e4dce69a5c08c76fd45774a10f07 [file] [log] [blame]
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +00001/* $OpenBSD: ttymodes.c,v 1.32 2017/04/30 23:26:54 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/*
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +000062 * uint32 (u_int) follows speed.
Ben Lindstromae8e2d32001-04-14 23:13:02 +000063 */
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +000064#define TTY_OP_ISPEED 128
65#define TTY_OP_OSPEED 129
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066
Damien Miller95def091999-11-25 00:26:21 +110067/*
68 * Converts POSIX speed_t to a baud rate. The values of the
69 * constants for speed_t are not themselves portable.
70 */
Damien Miller4af51302000-04-16 11:18:38 +100071static int
Damien Miller95def091999-11-25 00:26:21 +110072speed_to_baud(speed_t speed)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100073{
Damien Miller95def091999-11-25 00:26:21 +110074 switch (speed) {
75 case B0:
76 return 0;
77 case B50:
78 return 50;
79 case B75:
80 return 75;
81 case B110:
82 return 110;
83 case B134:
84 return 134;
85 case B150:
86 return 150;
87 case B200:
88 return 200;
89 case B300:
90 return 300;
91 case B600:
92 return 600;
93 case B1200:
94 return 1200;
95 case B1800:
96 return 1800;
97 case B2400:
98 return 2400;
99 case B4800:
100 return 4800;
101 case B9600:
102 return 9600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
104#ifdef B19200
Damien Miller95def091999-11-25 00:26:21 +1100105 case B19200:
106 return 19200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107#else /* B19200 */
108#ifdef EXTA
Damien Miller95def091999-11-25 00:26:21 +1100109 case EXTA:
110 return 19200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111#endif /* EXTA */
112#endif /* B19200 */
113
114#ifdef B38400
Damien Miller95def091999-11-25 00:26:21 +1100115 case B38400:
116 return 38400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117#else /* B38400 */
118#ifdef EXTB
Damien Miller95def091999-11-25 00:26:21 +1100119 case EXTB:
120 return 38400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121#endif /* EXTB */
122#endif /* B38400 */
123
124#ifdef B7200
Damien Miller95def091999-11-25 00:26:21 +1100125 case B7200:
126 return 7200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127#endif /* B7200 */
128#ifdef B14400
Damien Miller95def091999-11-25 00:26:21 +1100129 case B14400:
130 return 14400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131#endif /* B14400 */
132#ifdef B28800
Damien Miller95def091999-11-25 00:26:21 +1100133 case B28800:
134 return 28800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000135#endif /* B28800 */
136#ifdef B57600
Damien Miller95def091999-11-25 00:26:21 +1100137 case B57600:
138 return 57600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139#endif /* B57600 */
140#ifdef B76800
Damien Miller95def091999-11-25 00:26:21 +1100141 case B76800:
142 return 76800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143#endif /* B76800 */
144#ifdef B115200
Damien Miller95def091999-11-25 00:26:21 +1100145 case B115200:
146 return 115200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000147#endif /* B115200 */
148#ifdef B230400
Damien Miller95def091999-11-25 00:26:21 +1100149 case B230400:
150 return 230400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151#endif /* B230400 */
Damien Miller95def091999-11-25 00:26:21 +1100152 default:
153 return 9600;
154 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155}
156
Damien Miller95def091999-11-25 00:26:21 +1100157/*
158 * Converts a numeric baud rate to a POSIX speed_t.
159 */
Damien Miller4af51302000-04-16 11:18:38 +1000160static speed_t
Damien Miller95def091999-11-25 00:26:21 +1100161baud_to_speed(int baud)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162{
Damien Miller95def091999-11-25 00:26:21 +1100163 switch (baud) {
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000164 case 0:
Damien Miller95def091999-11-25 00:26:21 +1100165 return B0;
166 case 50:
167 return B50;
168 case 75:
169 return B75;
170 case 110:
171 return B110;
172 case 134:
173 return B134;
174 case 150:
175 return B150;
176 case 200:
177 return B200;
178 case 300:
179 return B300;
180 case 600:
181 return B600;
182 case 1200:
183 return B1200;
184 case 1800:
185 return B1800;
186 case 2400:
187 return B2400;
188 case 4800:
189 return B4800;
190 case 9600:
191 return B9600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192
193#ifdef B19200
Damien Miller95def091999-11-25 00:26:21 +1100194 case 19200:
195 return B19200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196#else /* B19200 */
197#ifdef EXTA
Damien Miller95def091999-11-25 00:26:21 +1100198 case 19200:
199 return EXTA;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200#endif /* EXTA */
201#endif /* B19200 */
202
203#ifdef B38400
Damien Miller95def091999-11-25 00:26:21 +1100204 case 38400:
205 return B38400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000206#else /* B38400 */
207#ifdef EXTB
Damien Miller95def091999-11-25 00:26:21 +1100208 case 38400:
209 return EXTB;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210#endif /* EXTB */
211#endif /* B38400 */
212
213#ifdef B7200
Damien Miller95def091999-11-25 00:26:21 +1100214 case 7200:
215 return B7200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216#endif /* B7200 */
217#ifdef B14400
Damien Miller95def091999-11-25 00:26:21 +1100218 case 14400:
219 return B14400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220#endif /* B14400 */
221#ifdef B28800
Damien Miller95def091999-11-25 00:26:21 +1100222 case 28800:
223 return B28800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000224#endif /* B28800 */
225#ifdef B57600
Damien Miller95def091999-11-25 00:26:21 +1100226 case 57600:
227 return B57600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228#endif /* B57600 */
229#ifdef B76800
Damien Miller95def091999-11-25 00:26:21 +1100230 case 76800:
231 return B76800;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232#endif /* B76800 */
233#ifdef B115200
Damien Miller95def091999-11-25 00:26:21 +1100234 case 115200:
235 return B115200;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236#endif /* B115200 */
237#ifdef B230400
Damien Miller95def091999-11-25 00:26:21 +1100238 case 230400:
239 return B230400;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240#endif /* B230400 */
Damien Miller95def091999-11-25 00:26:21 +1100241 default:
242 return B9600;
243 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000244}
245
Damien Miller95def091999-11-25 00:26:21 +1100246/*
Damien Miller1d109762005-08-16 21:32:09 +1000247 * Encode a special character into SSH line format.
248 */
249static u_int
250special_char_encode(cc_t c)
251{
252#ifdef _POSIX_VDISABLE
253 if (c == _POSIX_VDISABLE)
254 return 255;
255#endif /* _POSIX_VDISABLE */
256 return c;
257}
258
259/*
260 * Decode a special character from SSH line format.
261 */
262static cc_t
263special_char_decode(u_int c)
264{
265#ifdef _POSIX_VDISABLE
266 if (c == 255)
267 return _POSIX_VDISABLE;
268#endif /* _POSIX_VDISABLE */
269 return c;
270}
271
272/*
Damien Miller95def091999-11-25 00:26:21 +1100273 * Encodes terminal modes for the terminal referenced by fd
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000274 * or tiop in a portable manner, and appends the modes to a packet
Damien Miller95def091999-11-25 00:26:21 +1100275 * being constructed.
276 */
Damien Miller4af51302000-04-16 11:18:38 +1000277void
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000278tty_make_modes(int fd, struct termios *tiop)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000279{
Damien Miller95def091999-11-25 00:26:21 +1100280 struct termios tio;
281 int baud;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000282 Buffer buf;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000283
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000284 buffer_init(&buf);
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000285
286 if (tiop == NULL) {
Darren Tuckerdd392642008-06-08 12:53:20 +1000287 if (fd == -1) {
288 debug("tty_make_modes: no fd or tio");
289 goto end;
290 }
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000291 if (tcgetattr(fd, &tio) == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000292 logit("tcgetattr: %.100s", strerror(errno));
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000293 goto end;
294 }
295 } else
296 tio = *tiop;
297
Damien Miller95def091999-11-25 00:26:21 +1100298 /* Store input and output baud rates. */
299 baud = speed_to_baud(cfgetospeed(&tio));
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +0000300 buffer_put_char(&buf, TTY_OP_OSPEED);
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000301 buffer_put_int(&buf, baud);
Damien Miller95def091999-11-25 00:26:21 +1100302 baud = speed_to_baud(cfgetispeed(&tio));
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +0000303 buffer_put_char(&buf, TTY_OP_ISPEED);
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000304 buffer_put_int(&buf, baud);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000305
Damien Miller95def091999-11-25 00:26:21 +1100306 /* Store values of mode flags. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000307#define TTYCHAR(NAME, OP) \
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000308 buffer_put_char(&buf, OP); \
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000309 buffer_put_int(&buf, special_char_encode(tio.c_cc[NAME]));
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000310
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000311#define TTYMODE(NAME, FIELD, OP) \
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000312 buffer_put_char(&buf, OP); \
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000313 buffer_put_int(&buf, ((tio.FIELD & NAME) != 0));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000314
315#include "ttymodes.h"
316
317#undef TTYCHAR
318#undef TTYMODE
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000319
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000320end:
Damien Miller95def091999-11-25 00:26:21 +1100321 /* Mark end of mode data. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000322 buffer_put_char(&buf, TTY_OP_END);
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000323 packet_put_string(buffer_ptr(&buf), buffer_len(&buf));
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000324 buffer_free(&buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000325}
326
Damien Miller95def091999-11-25 00:26:21 +1100327/*
328 * Decodes terminal modes for the terminal referenced by fd in a portable
329 * manner from a packet being read.
330 */
Damien Miller4af51302000-04-16 11:18:38 +1000331void
Damien Miller95def091999-11-25 00:26:21 +1100332tty_parse_modes(int fd, int *n_bytes_ptr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000333{
Damien Miller95def091999-11-25 00:26:21 +1100334 struct termios tio;
335 int opcode, baud;
336 int n_bytes = 0;
337 int failure = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000338
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000339 *n_bytes_ptr = packet_get_int();
340 if (*n_bytes_ptr == 0)
341 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000342
Damien Miller95def091999-11-25 00:26:21 +1100343 /*
344 * Get old attributes for the terminal. We will modify these
345 * flags. I am hoping that if there are any machine-specific
346 * modes, they will initially have reasonable values.
347 */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000348 if (tcgetattr(fd, &tio) == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000349 logit("tcgetattr: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100350 failure = -1;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000351 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000352
Damien Miller95def091999-11-25 00:26:21 +1100353 for (;;) {
354 n_bytes += 1;
355 opcode = packet_get_char();
356 switch (opcode) {
357 case TTY_OP_END:
358 goto set;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000359
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +0000360 case TTY_OP_ISPEED:
Damien Miller95def091999-11-25 00:26:21 +1100361 n_bytes += 4;
362 baud = packet_get_int();
Damien Millera5a28592006-03-26 14:10:34 +1100363 if (failure != -1 &&
364 cfsetispeed(&tio, baud_to_speed(baud)) == -1)
Damien Miller95def091999-11-25 00:26:21 +1100365 error("cfsetispeed failed for %d", baud);
366 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000367
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +0000368 case TTY_OP_OSPEED:
Damien Miller95def091999-11-25 00:26:21 +1100369 n_bytes += 4;
370 baud = packet_get_int();
Damien Millera5a28592006-03-26 14:10:34 +1100371 if (failure != -1 &&
372 cfsetospeed(&tio, baud_to_speed(baud)) == -1)
Damien Miller95def091999-11-25 00:26:21 +1100373 error("cfsetospeed failed for %d", baud);
374 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000375
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000376#define TTYCHAR(NAME, OP) \
377 case OP: \
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000378 n_bytes += 4; \
379 tio.c_cc[NAME] = special_char_decode(packet_get_int()); \
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000380 break;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000381#define TTYMODE(NAME, FIELD, OP) \
382 case OP: \
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000383 n_bytes += 4; \
384 if (packet_get_int()) \
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000385 tio.FIELD |= NAME; \
386 else \
387 tio.FIELD &= ~NAME; \
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000388 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000389
390#include "ttymodes.h"
391
392#undef TTYCHAR
393#undef TTYMODE
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000394
Damien Miller95def091999-11-25 00:26:21 +1100395 default:
396 debug("Ignoring unsupported tty mode opcode %d (0x%x)",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100397 opcode, opcode);
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000398 /*
399 * SSH2:
400 * Opcodes 1 to 159 are defined to have a uint32
401 * argument.
402 * Opcodes 160 to 255 are undefined and cause parsing
403 * to stop.
404 */
405 if (opcode > 0 && opcode < 160) {
406 n_bytes += 4;
407 (void) packet_get_int();
408 break;
Damien Miller95def091999-11-25 00:26:21 +1100409 } else {
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000410 logit("parse_tty_modes: unknown opcode %d",
411 opcode);
412 goto set;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000413 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000414 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000415 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000416
Damien Miller95def091999-11-25 00:26:21 +1100417set:
418 if (*n_bytes_ptr != n_bytes) {
419 *n_bytes_ptr = n_bytes;
Damien Miller996acd22003-04-09 20:59:48 +1000420 logit("parse_tty_modes: n_bytes_ptr != n_bytes: %d %d",
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000421 *n_bytes_ptr, n_bytes);
Damien Miller95def091999-11-25 00:26:21 +1100422 return; /* Don't process bytes passed */
423 }
424 if (failure == -1)
Ben Lindstromac2f0032001-04-15 14:25:12 +0000425 return; /* Packet parsed ok but tcgetattr() failed */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000426
Damien Miller95def091999-11-25 00:26:21 +1100427 /* Set the new modes for the terminal. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000428 if (tcsetattr(fd, TCSANOW, &tio) == -1)
Damien Miller996acd22003-04-09 20:59:48 +1000429 logit("Setting tty modes failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000430}