blob: 24f07560c9fdcb5af02b4bc5d22ced253d414112 [file] [log] [blame]
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +00001/* $OpenBSD: ttymodes.h,v 1.16 2017/04/30 23:26:54 djm Exp $ */
Ben Lindstrom05764b92002-03-05 01:53:02 +00002
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003/*
Damien Miller95def091999-11-25 00:26:21 +11004 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11005 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10007 *
Damien Millere4340be2000-09-16 13:29:08 +11008 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
Ben Lindstromae8e2d32001-04-14 23:13:02 +000015/*
16 * SSH2 tty modes support by Kevin Steves.
17 * Copyright (c) 2001 Kevin Steves. All rights reserved.
18 *
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
21 * are met:
22 * 1. Redistributions of source code must retain the above copyright
23 * notice, this list of conditions and the following disclaimer.
24 * 2. Redistributions in binary form must reproduce the above copyright
25 * notice, this list of conditions and the following disclaimer in the
26 * documentation and/or other materials provided with the distribution.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
29 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
30 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
31 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
32 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
33 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
37 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100039
Ben Lindstromae8e2d32001-04-14 23:13:02 +000040/*
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +000041 * The tty mode description is a string, consisting of
Damien Miller95def091999-11-25 00:26:21 +110042 * opcode-arguments pairs. It is terminated by opcode TTY_OP_END (0).
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +000043 * Opcodes 1-159 have uint32 arguments.
44 * Opcodes 160-255 are not yet defined and cause parsing to stop (they
45 * should only be used after any other data).
Damien Miller95def091999-11-25 00:26:21 +110046 *
djm@openbsd.orgaebd0ab2017-04-30 23:26:54 +000047 * The client puts in the string any modes it knows about, and the
Damien Miller95def091999-11-25 00:26:21 +110048 * server ignores any modes it does not know about. This allows some degree
49 * of machine-independence, at least between systems that use a posix-like
50 * tty interface. The protocol can support other systems as well, but might
51 * require reimplementing as mode names would likely be different.
52 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Damien Miller95def091999-11-25 00:26:21 +110054/*
55 * Some constants and prototypes are defined in packet.h; this file
Damien Miller5428f641999-11-25 11:54:57 +110056 * is only intended for including from ttymodes.c.
Damien Miller95def091999-11-25 00:26:21 +110057 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058
Ben Lindstrom00261542001-03-10 17:17:28 +000059/* termios macro */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060/* name, op */
Ben Lindstrom00261542001-03-10 17:17:28 +000061TTYCHAR(VINTR, 1)
62TTYCHAR(VQUIT, 2)
63TTYCHAR(VERASE, 3)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064#if defined(VKILL)
Ben Lindstrom00261542001-03-10 17:17:28 +000065TTYCHAR(VKILL, 4)
Damien Miller5428f641999-11-25 11:54:57 +110066#endif /* VKILL */
Ben Lindstrom00261542001-03-10 17:17:28 +000067TTYCHAR(VEOF, 5)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068#if defined(VEOL)
Ben Lindstrom00261542001-03-10 17:17:28 +000069TTYCHAR(VEOL, 6)
Damien Miller5428f641999-11-25 11:54:57 +110070#endif /* VEOL */
Ben Lindstrom00261542001-03-10 17:17:28 +000071#ifdef VEOL2
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072TTYCHAR(VEOL2, 7)
Damien Miller5428f641999-11-25 11:54:57 +110073#endif /* VEOL2 */
Ben Lindstrom00261542001-03-10 17:17:28 +000074TTYCHAR(VSTART, 8)
75TTYCHAR(VSTOP, 9)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076#if defined(VSUSP)
Ben Lindstrom00261542001-03-10 17:17:28 +000077TTYCHAR(VSUSP, 10)
Damien Miller5428f641999-11-25 11:54:57 +110078#endif /* VSUSP */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079#if defined(VDSUSP)
Ben Lindstrom00261542001-03-10 17:17:28 +000080TTYCHAR(VDSUSP, 11)
Damien Miller5428f641999-11-25 11:54:57 +110081#endif /* VDSUSP */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082#if defined(VREPRINT)
Ben Lindstrom00261542001-03-10 17:17:28 +000083TTYCHAR(VREPRINT, 12)
Damien Miller5428f641999-11-25 11:54:57 +110084#endif /* VREPRINT */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085#if defined(VWERASE)
Ben Lindstrom00261542001-03-10 17:17:28 +000086TTYCHAR(VWERASE, 13)
Damien Miller5428f641999-11-25 11:54:57 +110087#endif /* VWERASE */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088#if defined(VLNEXT)
Ben Lindstrom00261542001-03-10 17:17:28 +000089TTYCHAR(VLNEXT, 14)
Damien Miller5428f641999-11-25 11:54:57 +110090#endif /* VLNEXT */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100091#if defined(VFLUSH)
Ben Lindstrom00261542001-03-10 17:17:28 +000092TTYCHAR(VFLUSH, 15)
Damien Miller5428f641999-11-25 11:54:57 +110093#endif /* VFLUSH */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094#ifdef VSWTCH
Ben Lindstrom00261542001-03-10 17:17:28 +000095TTYCHAR(VSWTCH, 16)
Damien Miller5428f641999-11-25 11:54:57 +110096#endif /* VSWTCH */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097#if defined(VSTATUS)
Ben Lindstrom00261542001-03-10 17:17:28 +000098TTYCHAR(VSTATUS, 17)
Damien Miller5428f641999-11-25 11:54:57 +110099#endif /* VSTATUS */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100#ifdef VDISCARD
Ben Lindstrom00261542001-03-10 17:17:28 +0000101TTYCHAR(VDISCARD, 18)
Damien Miller5428f641999-11-25 11:54:57 +1100102#endif /* VDISCARD */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
104/* name, field, op */
Ben Lindstrom00261542001-03-10 17:17:28 +0000105TTYMODE(IGNPAR, c_iflag, 30)
106TTYMODE(PARMRK, c_iflag, 31)
Darren Tuckerfc959702004-07-17 16:12:08 +1000107TTYMODE(INPCK, c_iflag, 32)
Ben Lindstrom00261542001-03-10 17:17:28 +0000108TTYMODE(ISTRIP, c_iflag, 33)
Darren Tuckerfc959702004-07-17 16:12:08 +1000109TTYMODE(INLCR, c_iflag, 34)
110TTYMODE(IGNCR, c_iflag, 35)
111TTYMODE(ICRNL, c_iflag, 36)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112#if defined(IUCLC)
Darren Tuckerfc959702004-07-17 16:12:08 +1000113TTYMODE(IUCLC, c_iflag, 37)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114#endif
Darren Tuckerfc959702004-07-17 16:12:08 +1000115TTYMODE(IXON, c_iflag, 38)
116TTYMODE(IXANY, c_iflag, 39)
117TTYMODE(IXOFF, c_iflag, 40)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118#ifdef IMAXBEL
Ben Lindstrom00261542001-03-10 17:17:28 +0000119TTYMODE(IMAXBEL,c_iflag, 41)
Damien Miller5428f641999-11-25 11:54:57 +1100120#endif /* IMAXBEL */
dtucker@openbsd.org7f3d7632016-05-03 09:03:49 +0000121#ifdef IUTF8
122TTYMODE(IUTF8, c_iflag, 42)
123#endif /* IUTF8 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124
Ben Lindstrom00261542001-03-10 17:17:28 +0000125TTYMODE(ISIG, c_lflag, 50)
126TTYMODE(ICANON, c_lflag, 51)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127#ifdef XCASE
Ben Lindstrom00261542001-03-10 17:17:28 +0000128TTYMODE(XCASE, c_lflag, 52)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129#endif
Ben Lindstrom00261542001-03-10 17:17:28 +0000130TTYMODE(ECHO, c_lflag, 53)
131TTYMODE(ECHOE, c_lflag, 54)
132TTYMODE(ECHOK, c_lflag, 55)
133TTYMODE(ECHONL, c_lflag, 56)
134TTYMODE(NOFLSH, c_lflag, 57)
135TTYMODE(TOSTOP, c_lflag, 58)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136#ifdef IEXTEN
Ben Lindstrom00261542001-03-10 17:17:28 +0000137TTYMODE(IEXTEN, c_lflag, 59)
Damien Miller5428f641999-11-25 11:54:57 +1100138#endif /* IEXTEN */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139#if defined(ECHOCTL)
Ben Lindstrom00261542001-03-10 17:17:28 +0000140TTYMODE(ECHOCTL,c_lflag, 60)
Damien Miller5428f641999-11-25 11:54:57 +1100141#endif /* ECHOCTL */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142#ifdef ECHOKE
Ben Lindstrom00261542001-03-10 17:17:28 +0000143TTYMODE(ECHOKE, c_lflag, 61)
Damien Miller5428f641999-11-25 11:54:57 +1100144#endif /* ECHOKE */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000145#if defined(PENDIN)
Ben Lindstrom00261542001-03-10 17:17:28 +0000146TTYMODE(PENDIN, c_lflag, 62)
Damien Miller5428f641999-11-25 11:54:57 +1100147#endif /* PENDIN */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148
Ben Lindstrom00261542001-03-10 17:17:28 +0000149TTYMODE(OPOST, c_oflag, 70)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150#if defined(OLCUC)
Ben Lindstrom00261542001-03-10 17:17:28 +0000151TTYMODE(OLCUC, c_oflag, 71)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152#endif
Ben Lindstromb7ae94d2002-06-12 17:32:30 +0000153#ifdef ONLCR
Ben Lindstrom00261542001-03-10 17:17:28 +0000154TTYMODE(ONLCR, c_oflag, 72)
Ben Lindstromb7ae94d2002-06-12 17:32:30 +0000155#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000156#ifdef OCRNL
Ben Lindstrom00261542001-03-10 17:17:28 +0000157TTYMODE(OCRNL, c_oflag, 73)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158#endif
159#ifdef ONOCR
Ben Lindstrom00261542001-03-10 17:17:28 +0000160TTYMODE(ONOCR, c_oflag, 74)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161#endif
162#ifdef ONLRET
Ben Lindstrom00261542001-03-10 17:17:28 +0000163TTYMODE(ONLRET, c_oflag, 75)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164#endif
165
Ben Lindstrom00261542001-03-10 17:17:28 +0000166TTYMODE(CS7, c_cflag, 90)
167TTYMODE(CS8, c_cflag, 91)
168TTYMODE(PARENB, c_cflag, 92)
169TTYMODE(PARODD, c_cflag, 93)