2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
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".
14 * SSH2 tty modes support by Kevin Steves.
15 * Copyright (c) 2001 Kevin Steves. All rights reserved.
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
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.
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.
39 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
40 * Use is subject to license terms.
44 * Encoding and decoding of terminal modes in a portable way.
45 * Much of the format is defined in ttymodes.h; it is included multiple times
46 * into this file with the appropriate macro definitions to generate the
51 RCSID("$OpenBSD: ttymodes.c,v 1.18 2002/06/19 00:27:55 deraadt Exp $");
62 * uint32 (u_int) follows speed in SSH1 and SSH2
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
70 * Converts POSIX speed_t to a baud rate. The values of the
71 * constants for speed_t are not themselves portable.
74 speed_to_baud(speed_t speed
)
168 * Converts a numeric baud rate to a POSIX speed_t.
171 baud_to_speed(int baud
)
265 * Encodes terminal modes for the terminal referenced by fd
266 * or tiop in a portable manner, and appends the modes to a packet
270 tty_make_modes(int fd
, struct termios
*tiop
)
275 int tty_op_ospeed
, tty_op_ispeed
;
276 void (*put_arg
)(Buffer
*, u_int
);
280 tty_op_ospeed
= TTY_OP_OSPEED_PROTO2
;
281 tty_op_ispeed
= TTY_OP_ISPEED_PROTO2
;
282 put_arg
= buffer_put_int
;
284 tty_op_ospeed
= TTY_OP_OSPEED_PROTO1
;
285 tty_op_ispeed
= TTY_OP_ISPEED_PROTO1
;
286 put_arg
= (void (*)(Buffer
*, u_int
)) buffer_put_char
;
290 if (tcgetattr(fd
, &tio
) == -1) {
291 log("tcgetattr: %.100s", strerror(errno
));
297 /* Store input and output baud rates. */
298 baud
= speed_to_baud(cfgetospeed(&tio
));
299 debug3("tty_make_modes: ospeed %d", baud
);
300 buffer_put_char(&buf
, tty_op_ospeed
);
301 buffer_put_int(&buf
, baud
);
302 baud
= speed_to_baud(cfgetispeed(&tio
));
303 debug3("tty_make_modes: ispeed %d", baud
);
304 buffer_put_char(&buf
, tty_op_ispeed
);
305 buffer_put_int(&buf
, baud
);
307 /* Store values of mode flags. */
308 #define TTYCHAR(NAME, OP) \
309 debug3("tty_make_modes: %d %d", OP, tio.c_cc[NAME]); \
310 buffer_put_char(&buf, OP); \
311 put_arg(&buf, tio.c_cc[NAME]);
313 #define TTYMODE(NAME, FIELD, OP) \
314 debug3("tty_make_modes: %d %d", OP, ((tio.FIELD & NAME) != 0)); \
315 buffer_put_char(&buf, OP); \
316 put_arg(&buf, ((tio.FIELD & NAME) != 0));
318 #include "ttymodes.h"
324 /* Mark end of mode data. */
325 buffer_put_char(&buf
, TTY_OP_END
);
327 packet_put_string(buffer_ptr(&buf
), buffer_len(&buf
));
329 packet_put_raw(buffer_ptr(&buf
), buffer_len(&buf
));
334 * Decodes terminal modes for the terminal referenced by fd in a portable
335 * manner from a packet being read.
338 tty_parse_modes(int fd
, int *n_bytes_ptr
)
344 u_int (*get_arg
)(void);
348 *n_bytes_ptr
= packet_get_int();
349 debug3("tty_parse_modes: SSH2 n_bytes %d", *n_bytes_ptr
);
350 if (*n_bytes_ptr
== 0)
352 get_arg
= packet_get_int
;
355 get_arg
= packet_get_char
;
360 * Get old attributes for the terminal. We will modify these
361 * flags. I am hoping that if there are any machine-specific
362 * modes, they will initially have reasonable values.
364 if (tcgetattr(fd
, &tio
) == -1) {
365 log("tcgetattr: %.100s", strerror(errno
));
371 opcode
= packet_get_char();
376 /* XXX: future conflict possible */
377 case TTY_OP_ISPEED_PROTO1
:
378 case TTY_OP_ISPEED_PROTO2
:
380 baud
= packet_get_int();
381 debug3("tty_parse_modes: ispeed %d", baud
);
382 if (failure
!= -1 && cfsetispeed(&tio
, baud_to_speed(baud
)) == -1)
383 error("cfsetispeed failed for %d", baud
);
386 /* XXX: future conflict possible */
387 case TTY_OP_OSPEED_PROTO1
:
388 case TTY_OP_OSPEED_PROTO2
:
390 baud
= packet_get_int();
391 debug3("tty_parse_modes: ospeed %d", baud
);
392 if (failure
!= -1 && cfsetospeed(&tio
, baud_to_speed(baud
)) == -1)
393 error("cfsetospeed failed for %d", baud
);
396 #define TTYCHAR(NAME, OP) \
398 n_bytes += arg_size; \
399 tio.c_cc[NAME] = get_arg(); \
400 debug3("tty_parse_modes: %d %d", OP, tio.c_cc[NAME]); \
402 #define TTYMODE(NAME, FIELD, OP) \
404 n_bytes += arg_size; \
405 if ((arg = get_arg())) \
408 tio.FIELD &= ~NAME; \
409 debug3("tty_parse_modes: %d %d", OP, arg); \
412 #include "ttymodes.h"
418 debug("Ignoring unsupported tty mode opcode %d (0x%x)",
423 * Opcodes 1 to 127 are defined to have
424 * a one-byte argument.
425 * Opcodes 128 to 159 are defined to have
426 * an integer argument.
428 if (opcode
> 0 && opcode
< 128) {
430 (void) packet_get_char();
432 } else if (opcode
>= 128 && opcode
< 160) {
434 (void) packet_get_int();
438 * It is a truly undefined opcode (160 to 255).
439 * We have no idea about its arguments. So we
440 * must stop parsing. Note that some data may be
441 * left in the packet; hopefully there is nothing
442 * more coming after the mode data.
444 log("parse_tty_modes: unknown opcode %d", opcode
);
450 * Opcodes 1 to 159 are defined to have
452 * Opcodes 160 to 255 are undefined and
453 * cause parsing to stop.
455 if (opcode
> 0 && opcode
< 160) {
457 (void) packet_get_int();
460 log("parse_tty_modes: unknown opcode %d", opcode
);
468 if (*n_bytes_ptr
!= n_bytes
) {
469 *n_bytes_ptr
= n_bytes
;
470 log("parse_tty_modes: n_bytes_ptr != n_bytes: %d %d",
471 *n_bytes_ptr
, n_bytes
);
472 return; /* Don't process bytes passed */
475 return; /* Packet parsed ok but tcgetattr() failed */
477 /* Set the new modes for the terminal. */
478 if (tcsetattr(fd
, TCSANOW
, &tio
) == -1)
479 log("Setting tty modes failed: %.100s", strerror(errno
));