Deleted Added
full compact
ttymodes.h (65668) ttymodes.h (76259)
1/* RCSID("$OpenBSD: ttymodes.h,v 1.11 2001/04/14 16:33:20 stevesk Exp $"); */
1/*
2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * SGTTY stuff contributed by Janne Snabb <snabb@niksula.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
6 *
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".
12 */
13
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
6 *
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".
12 */
13
14/* RCSID("$OpenBSD: ttymodes.h,v 1.9 2000/09/07 20:27:55 deraadt Exp $"); */
14/*
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 */
15
38
16/* The tty mode description is a stream of bytes. The stream consists of
39/*
40 * SSH1:
41 * The tty mode description is a stream of bytes. The stream consists of
17 * opcode-arguments pairs. It is terminated by opcode TTY_OP_END (0).
18 * Opcodes 1-127 have one-byte arguments. Opcodes 128-159 have integer
19 * arguments. Opcodes 160-255 are not yet defined, and cause parsing to
20 * stop (they should only be used after any other data).
21 *
42 * opcode-arguments pairs. It is terminated by opcode TTY_OP_END (0).
43 * Opcodes 1-127 have one-byte arguments. Opcodes 128-159 have integer
44 * arguments. Opcodes 160-255 are not yet defined, and cause parsing to
45 * stop (they should only be used after any other data).
46 *
47 * SSH2:
48 * Differences between SSH1 and SSH2 terminal mode encoding include:
49 * 1. Encoded terminal modes are represented as a string, and a stream
50 * of bytes within that string.
51 * 2. Opcode arguments are uint32 (1-159); 160-255 remain undefined.
52 * 3. The values for TTY_OP_ISPEED and TTY_OP_OSPEED are different;
53 * 128 and 129 vs. 192 and 193 respectively.
54 *
22 * The client puts in the stream any modes it knows about, and the
23 * server ignores any modes it does not know about. This allows some degree
24 * of machine-independence, at least between systems that use a posix-like
25 * tty interface. The protocol can support other systems as well, but might
26 * require reimplementing as mode names would likely be different.
27 */
28
29/*
30 * Some constants and prototypes are defined in packet.h; this file
31 * is only intended for including from ttymodes.c.
32 */
33
55 * The client puts in the stream any modes it knows about, and the
56 * server ignores any modes it does not know about. This allows some degree
57 * of machine-independence, at least between systems that use a posix-like
58 * tty interface. The protocol can support other systems as well, but might
59 * require reimplementing as mode names would likely be different.
60 */
61
62/*
63 * Some constants and prototypes are defined in packet.h; this file
64 * is only intended for including from ttymodes.c.
65 */
66
34/* termios macro */ /* sgtty macro */
67/* termios macro */
35/* name, op */
68/* name, op */
36TTYCHAR(VINTR, 1) SGTTYCHAR(tiotc.t_intrc, 1)
37TTYCHAR(VQUIT, 2) SGTTYCHAR(tiotc.t_quitc, 2)
38TTYCHAR(VERASE, 3) SGTTYCHAR(tio.sg_erase, 3)
69TTYCHAR(VINTR, 1)
70TTYCHAR(VQUIT, 2)
71TTYCHAR(VERASE, 3)
39#if defined(VKILL)
72#if defined(VKILL)
40TTYCHAR(VKILL, 4) SGTTYCHAR(tio.sg_kill, 4)
73TTYCHAR(VKILL, 4)
41#endif /* VKILL */
74#endif /* VKILL */
42TTYCHAR(VEOF, 5) SGTTYCHAR(tiotc.t_eofc, 5)
75TTYCHAR(VEOF, 5)
43#if defined(VEOL)
76#if defined(VEOL)
44TTYCHAR(VEOL, 6) SGTTYCHAR(tiotc.t_brkc, 6)
77TTYCHAR(VEOL, 6)
45#endif /* VEOL */
78#endif /* VEOL */
46#ifdef VEOL2 /* n/a */
79#ifdef VEOL2
47TTYCHAR(VEOL2, 7)
48#endif /* VEOL2 */
80TTYCHAR(VEOL2, 7)
81#endif /* VEOL2 */
49TTYCHAR(VSTART, 8) SGTTYCHAR(tiotc.t_startc, 8)
50TTYCHAR(VSTOP, 9) SGTTYCHAR(tiotc.t_stopc, 9)
82TTYCHAR(VSTART, 8)
83TTYCHAR(VSTOP, 9)
51#if defined(VSUSP)
84#if defined(VSUSP)
52TTYCHAR(VSUSP, 10) SGTTYCHAR(tioltc.t_suspc, 10)
85TTYCHAR(VSUSP, 10)
53#endif /* VSUSP */
54#if defined(VDSUSP)
86#endif /* VSUSP */
87#if defined(VDSUSP)
55TTYCHAR(VDSUSP, 11) SGTTYCHAR(tioltc.t_dsuspc, 11)
88TTYCHAR(VDSUSP, 11)
56#endif /* VDSUSP */
57#if defined(VREPRINT)
89#endif /* VDSUSP */
90#if defined(VREPRINT)
58TTYCHAR(VREPRINT, 12) SGTTYCHAR(tioltc.t_rprntc, 12)
91TTYCHAR(VREPRINT, 12)
59#endif /* VREPRINT */
60#if defined(VWERASE)
92#endif /* VREPRINT */
93#if defined(VWERASE)
61TTYCHAR(VWERASE, 13) SGTTYCHAR(tioltc.t_werasc, 13)
94TTYCHAR(VWERASE, 13)
62#endif /* VWERASE */
63#if defined(VLNEXT)
95#endif /* VWERASE */
96#if defined(VLNEXT)
64TTYCHAR(VLNEXT, 14) SGTTYCHAR(tioltc.t_lnextc, 14)
97TTYCHAR(VLNEXT, 14)
65#endif /* VLNEXT */
66#if defined(VFLUSH)
98#endif /* VLNEXT */
99#if defined(VFLUSH)
67TTYCHAR(VFLUSH, 15) SGTTYCHAR(tioltc.t_flushc, 15)
100TTYCHAR(VFLUSH, 15)
68#endif /* VFLUSH */
69#ifdef VSWTCH
101#endif /* VFLUSH */
102#ifdef VSWTCH
70TTYCHAR(VSWTCH, 16) /* n/a */
103TTYCHAR(VSWTCH, 16)
71#endif /* VSWTCH */
72#if defined(VSTATUS)
104#endif /* VSWTCH */
105#if defined(VSTATUS)
73TTYCHAR(VSTATUS, 17) SGTTYCHAR(tiots.tc_statusc, 17)
106TTYCHAR(VSTATUS, 17)
74#endif /* VSTATUS */
75#ifdef VDISCARD
107#endif /* VSTATUS */
108#ifdef VDISCARD
76TTYCHAR(VDISCARD, 18) /* n/a */
109TTYCHAR(VDISCARD, 18)
77#endif /* VDISCARD */
78
79/* name, field, op */
110#endif /* VDISCARD */
111
112/* name, field, op */
80TTYMODE(IGNPAR, c_iflag, 30) /* n/a */
81TTYMODE(PARMRK, c_iflag, 31) /* n/a */
82TTYMODE(INPCK, c_iflag, 32) SGTTYMODEN(ANYP, tio.sg_flags, 32)
83TTYMODE(ISTRIP, c_iflag, 33) SGTTYMODEN(LPASS8, tiolm, 33)
84TTYMODE(INLCR, c_iflag, 34) /* n/a */
85TTYMODE(IGNCR, c_iflag, 35) /* n/a */
86TTYMODE(ICRNL, c_iflag, 36) SGTTYMODE(CRMOD, tio.sg_flags, 36)
113TTYMODE(IGNPAR, c_iflag, 30)
114TTYMODE(PARMRK, c_iflag, 31)
115TTYMODE(INPCK, c_iflag, 32)
116TTYMODE(ISTRIP, c_iflag, 33)
117TTYMODE(INLCR, c_iflag, 34)
118TTYMODE(IGNCR, c_iflag, 35)
119TTYMODE(ICRNL, c_iflag, 36)
87#if defined(IUCLC)
120#if defined(IUCLC)
88TTYMODE(IUCLC, c_iflag, 37) SGTTYMODE(LCASE, tio.sg_flags, 37)
121TTYMODE(IUCLC, c_iflag, 37)
89#endif
122#endif
90TTYMODE(IXON, c_iflag, 38) /* n/a */
91TTYMODE(IXANY, c_iflag, 39) SGTTYMODEN(LDECCTQ, tiolm, 39)
92TTYMODE(IXOFF, c_iflag, 40) SGTTYMODE(TANDEM, tio.sg_flags, 40)
123TTYMODE(IXON, c_iflag, 38)
124TTYMODE(IXANY, c_iflag, 39)
125TTYMODE(IXOFF, c_iflag, 40)
93#ifdef IMAXBEL
126#ifdef IMAXBEL
94TTYMODE(IMAXBEL,c_iflag, 41) /* n/a */
127TTYMODE(IMAXBEL,c_iflag, 41)
95#endif /* IMAXBEL */
96
128#endif /* IMAXBEL */
129
97TTYMODE(ISIG, c_lflag, 50) /* n/a */
98TTYMODE(ICANON, c_lflag, 51) SGTTYMODEN(CBREAK, tio.sg_flags, 51)
130TTYMODE(ISIG, c_lflag, 50)
131TTYMODE(ICANON, c_lflag, 51)
99#ifdef XCASE
132#ifdef XCASE
100TTYMODE(XCASE, c_lflag, 52) /* n/a */
133TTYMODE(XCASE, c_lflag, 52)
101#endif
134#endif
102TTYMODE(ECHO, c_lflag, 53) SGTTYMODE(ECHO, tio.sg_flags, 53)
103TTYMODE(ECHOE, c_lflag, 54) SGTTYMODE(LCRTERA, tiolm, 54)
104TTYMODE(ECHOK, c_lflag, 55) SGTTYMODE(LCRTKIL, tiolm, 55)
105TTYMODE(ECHONL, c_lflag, 56) /* n/a */
106TTYMODE(NOFLSH, c_lflag, 57) SGTTYMODE(LNOFLSH, tiolm, 57)
107TTYMODE(TOSTOP, c_lflag, 58) SGTTYMODE(LTOSTOP, tiolm, 58)
135TTYMODE(ECHO, c_lflag, 53)
136TTYMODE(ECHOE, c_lflag, 54)
137TTYMODE(ECHOK, c_lflag, 55)
138TTYMODE(ECHONL, c_lflag, 56)
139TTYMODE(NOFLSH, c_lflag, 57)
140TTYMODE(TOSTOP, c_lflag, 58)
108#ifdef IEXTEN
141#ifdef IEXTEN
109TTYMODE(IEXTEN, c_lflag, 59) /* n/a */
142TTYMODE(IEXTEN, c_lflag, 59)
110#endif /* IEXTEN */
111#if defined(ECHOCTL)
143#endif /* IEXTEN */
144#if defined(ECHOCTL)
112TTYMODE(ECHOCTL,c_lflag, 60) SGTTYMODE(LCTLECH, tiolm, 60)
145TTYMODE(ECHOCTL,c_lflag, 60)
113#endif /* ECHOCTL */
114#ifdef ECHOKE
146#endif /* ECHOCTL */
147#ifdef ECHOKE
115TTYMODE(ECHOKE, c_lflag, 61) /* n/a */
148TTYMODE(ECHOKE, c_lflag, 61)
116#endif /* ECHOKE */
117#if defined(PENDIN)
149#endif /* ECHOKE */
150#if defined(PENDIN)
118TTYMODE(PENDIN, c_lflag, 62) SGTTYMODE(LPENDIN, tiolm, 62)
151TTYMODE(PENDIN, c_lflag, 62)
119#endif /* PENDIN */
120
152#endif /* PENDIN */
153
121TTYMODE(OPOST, c_oflag, 70) /* n/a */
154TTYMODE(OPOST, c_oflag, 70)
122#if defined(OLCUC)
155#if defined(OLCUC)
123TTYMODE(OLCUC, c_oflag, 71) SGTTYMODE(LCASE, tio.sg_flags, 71)
156TTYMODE(OLCUC, c_oflag, 71)
124#endif
157#endif
125TTYMODE(ONLCR, c_oflag, 72) SGTTYMODE(CRMOD, tio.sg_flags, 72)
158TTYMODE(ONLCR, c_oflag, 72)
126#ifdef OCRNL
159#ifdef OCRNL
127TTYMODE(OCRNL, c_oflag, 73) /* n/a */
160TTYMODE(OCRNL, c_oflag, 73)
128#endif
129#ifdef ONOCR
161#endif
162#ifdef ONOCR
130TTYMODE(ONOCR, c_oflag, 74) /* n/a */
163TTYMODE(ONOCR, c_oflag, 74)
131#endif
132#ifdef ONLRET
164#endif
165#ifdef ONLRET
133TTYMODE(ONLRET, c_oflag, 75) /* n/a */
166TTYMODE(ONLRET, c_oflag, 75)
134#endif
135
167#endif
168
136TTYMODE(CS7, c_cflag, 90) /* n/a */
137TTYMODE(CS8, c_cflag, 91) SGTTYMODE(LPASS8, tiolm, 91)
138TTYMODE(PARENB, c_cflag, 92) /* n/a */
139TTYMODE(PARODD, c_cflag, 93) SGTTYMODE(ODDP, tio.sg_flags, 93)
140
169TTYMODE(CS7, c_cflag, 90)
170TTYMODE(CS8, c_cflag, 91)
171TTYMODE(PARENB, c_cflag, 92)
172TTYMODE(PARODD, c_cflag, 93)