1/* $OpenBSD: ttymodes.h,v 1.16 2017/04/30 23:26:54 djm Exp $ */
2
3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 *                    All rights reserved
7 *
8 * 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".
13 */
14
15/*
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 */
39
40/*
41 * The tty mode description is a string, consisting of
42 * opcode-arguments pairs.  It is terminated by opcode TTY_OP_END (0).
43 * 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).
46 *
47 * The client puts in the string any modes it knows about, and the
48 * 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 */
53
54/*
55 * Some constants and prototypes are defined in packet.h; this file
56 * is only intended for including from ttymodes.c.
57 */
58
59/* termios macro */
60/* name, op */
61TTYCHAR(VINTR, 1)
62TTYCHAR(VQUIT, 2)
63TTYCHAR(VERASE, 3)
64#if defined(VKILL)
65TTYCHAR(VKILL, 4)
66#endif /* VKILL */
67TTYCHAR(VEOF, 5)
68#if defined(VEOL)
69TTYCHAR(VEOL, 6)
70#endif /* VEOL */
71#ifdef VEOL2
72TTYCHAR(VEOL2, 7)
73#endif /* VEOL2 */
74TTYCHAR(VSTART, 8)
75TTYCHAR(VSTOP, 9)
76#if defined(VSUSP)
77TTYCHAR(VSUSP, 10)
78#endif /* VSUSP */
79#if defined(VDSUSP)
80TTYCHAR(VDSUSP, 11)
81#endif /* VDSUSP */
82#if defined(VREPRINT)
83TTYCHAR(VREPRINT, 12)
84#endif /* VREPRINT */
85#if defined(VWERASE)
86TTYCHAR(VWERASE, 13)
87#endif /* VWERASE */
88#if defined(VLNEXT)
89TTYCHAR(VLNEXT, 14)
90#endif /* VLNEXT */
91#if defined(VFLUSH)
92TTYCHAR(VFLUSH, 15)
93#endif /* VFLUSH */
94#ifdef VSWTCH
95TTYCHAR(VSWTCH, 16)
96#endif /* VSWTCH */
97#if defined(VSTATUS)
98TTYCHAR(VSTATUS, 17)
99#endif /* VSTATUS */
100#ifdef VDISCARD
101TTYCHAR(VDISCARD, 18)
102#endif /* VDISCARD */
103
104/* name, field, op */
105TTYMODE(IGNPAR,	c_iflag, 30)
106TTYMODE(PARMRK,	c_iflag, 31)
107TTYMODE(INPCK,	c_iflag, 32)
108TTYMODE(ISTRIP,	c_iflag, 33)
109TTYMODE(INLCR,	c_iflag, 34)
110TTYMODE(IGNCR,	c_iflag, 35)
111TTYMODE(ICRNL,	c_iflag, 36)
112#if defined(IUCLC)
113TTYMODE(IUCLC,	c_iflag, 37)
114#endif
115TTYMODE(IXON,	c_iflag, 38)
116TTYMODE(IXANY,	c_iflag, 39)
117TTYMODE(IXOFF,	c_iflag, 40)
118#ifdef IMAXBEL
119TTYMODE(IMAXBEL,c_iflag, 41)
120#endif /* IMAXBEL */
121#ifdef IUTF8
122TTYMODE(IUTF8,  c_iflag, 42)
123#endif /* IUTF8 */
124
125TTYMODE(ISIG,	c_lflag, 50)
126TTYMODE(ICANON,	c_lflag, 51)
127#ifdef XCASE
128TTYMODE(XCASE,	c_lflag, 52)
129#endif
130TTYMODE(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)
136#ifdef IEXTEN
137TTYMODE(IEXTEN, c_lflag, 59)
138#endif /* IEXTEN */
139#if defined(ECHOCTL)
140TTYMODE(ECHOCTL,c_lflag, 60)
141#endif /* ECHOCTL */
142#ifdef ECHOKE
143TTYMODE(ECHOKE,	c_lflag, 61)
144#endif /* ECHOKE */
145#if defined(PENDIN)
146TTYMODE(PENDIN,	c_lflag, 62)
147#endif /* PENDIN */
148
149TTYMODE(OPOST,	c_oflag, 70)
150#if defined(OLCUC)
151TTYMODE(OLCUC,	c_oflag, 71)
152#endif
153#ifdef ONLCR
154TTYMODE(ONLCR,	c_oflag, 72)
155#endif
156#ifdef OCRNL
157TTYMODE(OCRNL,	c_oflag, 73)
158#endif
159#ifdef ONOCR
160TTYMODE(ONOCR,	c_oflag, 74)
161#endif
162#ifdef ONLRET
163TTYMODE(ONLRET,	c_oflag, 75)
164#endif
165
166TTYMODE(CS7,	c_cflag, 90)
167TTYMODE(CS8,	c_cflag, 91)
168TTYMODE(PARENB,	c_cflag, 92)
169TTYMODE(PARODD,	c_cflag, 93)
170