blob: f9fdb92defab7b16a60ef25aed38f889e5b03521 [file] [log] [blame]
dtucker@openbsd.org85701772018-02-16 04:43:11 +00001/* $OpenBSD: ttymodes.c,v 1.33 2018/02/16 04:43:11 dtucker 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"
dtucker@openbsd.org85701772018-02-16 04:43:11 +000059#include "compat.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
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000279tty_make_modes(int fd, struct termios *tiop)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000280{
Damien Miller95def091999-11-25 00:26:21 +1100281 struct termios tio;
282 int baud;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000283 Buffer buf;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000285 buffer_init(&buf);
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000286
287 if (tiop == NULL) {
Darren Tuckerdd392642008-06-08 12:53:20 +1000288 if (fd == -1) {
289 debug("tty_make_modes: no fd or tio");
290 goto end;
291 }
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000292 if (tcgetattr(fd, &tio) == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000293 logit("tcgetattr: %.100s", strerror(errno));
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000294 goto end;
295 }
296 } else
297 tio = *tiop;
298
Damien Miller95def091999-11-25 00:26:21 +1100299 /* Store input and output baud rates. */
300 baud = speed_to_baud(cfgetospeed(&tio));
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +0000301 buffer_put_char(&buf, TTY_OP_OSPEED);
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000302 buffer_put_int(&buf, baud);
Damien Miller95def091999-11-25 00:26:21 +1100303 baud = speed_to_baud(cfgetispeed(&tio));
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +0000304 buffer_put_char(&buf, TTY_OP_ISPEED);
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000305 buffer_put_int(&buf, baud);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306
Damien Miller95def091999-11-25 00:26:21 +1100307 /* Store values of mode flags. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000308#define TTYCHAR(NAME, OP) \
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000309 buffer_put_char(&buf, OP); \
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000310 buffer_put_int(&buf, special_char_encode(tio.c_cc[NAME]));
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000311
dtucker@openbsd.org85701772018-02-16 04:43:11 +0000312#define SSH_TTYMODE_IUTF8 42 /* for SSH_BUG_UTF8TTYMODE */
313
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000314#define TTYMODE(NAME, FIELD, OP) \
dtucker@openbsd.org85701772018-02-16 04:43:11 +0000315 if (OP == SSH_TTYMODE_IUTF8 && (datafellows & SSH_BUG_UTF8TTYMODE)) { \
316 debug3("%s: SSH_BUG_UTF8TTYMODE", __func__); \
317 } else { \
318 buffer_put_char(&buf, OP); \
319 buffer_put_int(&buf, ((tio.FIELD & NAME) != 0)); \
320 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000321
322#include "ttymodes.h"
323
324#undef TTYCHAR
325#undef TTYMODE
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000326
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000327end:
Damien Miller95def091999-11-25 00:26:21 +1100328 /* Mark end of mode data. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000329 buffer_put_char(&buf, TTY_OP_END);
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000330 packet_put_string(buffer_ptr(&buf), buffer_len(&buf));
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000331 buffer_free(&buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000332}
333
Damien Miller95def091999-11-25 00:26:21 +1100334/*
335 * Decodes terminal modes for the terminal referenced by fd in a portable
336 * manner from a packet being read.
337 */
Damien Miller4af51302000-04-16 11:18:38 +1000338void
Damien Miller95def091999-11-25 00:26:21 +1100339tty_parse_modes(int fd, int *n_bytes_ptr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000340{
Damien Miller95def091999-11-25 00:26:21 +1100341 struct termios tio;
342 int opcode, baud;
343 int n_bytes = 0;
344 int failure = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000345
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000346 *n_bytes_ptr = packet_get_int();
347 if (*n_bytes_ptr == 0)
348 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000349
Damien Miller95def091999-11-25 00:26:21 +1100350 /*
351 * Get old attributes for the terminal. We will modify these
352 * flags. I am hoping that if there are any machine-specific
353 * modes, they will initially have reasonable values.
354 */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000355 if (tcgetattr(fd, &tio) == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000356 logit("tcgetattr: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100357 failure = -1;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000358 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000359
Damien Miller95def091999-11-25 00:26:21 +1100360 for (;;) {
361 n_bytes += 1;
362 opcode = packet_get_char();
363 switch (opcode) {
364 case TTY_OP_END:
365 goto set;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000366
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +0000367 case TTY_OP_ISPEED:
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
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +0000375 case TTY_OP_OSPEED:
Damien Miller95def091999-11-25 00:26:21 +1100376 n_bytes += 4;
377 baud = packet_get_int();
Damien Millera5a28592006-03-26 14:10:34 +1100378 if (failure != -1 &&
379 cfsetospeed(&tio, baud_to_speed(baud)) == -1)
Damien Miller95def091999-11-25 00:26:21 +1100380 error("cfsetospeed failed for %d", baud);
381 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000382
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000383#define TTYCHAR(NAME, OP) \
384 case OP: \
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000385 n_bytes += 4; \
386 tio.c_cc[NAME] = special_char_decode(packet_get_int()); \
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000387 break;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000388#define TTYMODE(NAME, FIELD, OP) \
389 case OP: \
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000390 n_bytes += 4; \
391 if (packet_get_int()) \
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000392 tio.FIELD |= NAME; \
393 else \
394 tio.FIELD &= ~NAME; \
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000395 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000396
397#include "ttymodes.h"
398
399#undef TTYCHAR
400#undef TTYMODE
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000401
Damien Miller95def091999-11-25 00:26:21 +1100402 default:
403 debug("Ignoring unsupported tty mode opcode %d (0x%x)",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100404 opcode, opcode);
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000405 /*
406 * SSH2:
407 * Opcodes 1 to 159 are defined to have a uint32
408 * argument.
409 * Opcodes 160 to 255 are undefined and cause parsing
410 * to stop.
411 */
412 if (opcode > 0 && opcode < 160) {
413 n_bytes += 4;
414 (void) packet_get_int();
415 break;
Damien Miller95def091999-11-25 00:26:21 +1100416 } else {
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000417 logit("parse_tty_modes: unknown opcode %d",
418 opcode);
419 goto set;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000420 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000421 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000422 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000423
Damien Miller95def091999-11-25 00:26:21 +1100424set:
425 if (*n_bytes_ptr != n_bytes) {
426 *n_bytes_ptr = n_bytes;
Damien Miller996acd22003-04-09 20:59:48 +1000427 logit("parse_tty_modes: n_bytes_ptr != n_bytes: %d %d",
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000428 *n_bytes_ptr, n_bytes);
Damien Miller95def091999-11-25 00:26:21 +1100429 return; /* Don't process bytes passed */
430 }
431 if (failure == -1)
Ben Lindstromac2f0032001-04-15 14:25:12 +0000432 return; /* Packet parsed ok but tcgetattr() failed */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000433
Damien Miller95def091999-11-25 00:26:21 +1100434 /* Set the new modes for the terminal. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000435 if (tcsetattr(fd, TCSANOW, &tio) == -1)
Damien Miller996acd22003-04-09 20:59:48 +1000436 logit("Setting tty modes failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000437}