blob: 6a7a65b801e4c9739d9478a0c5120b7e1e730f30 [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
2 * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
Elliott Hughes39bac052017-05-25 16:56:11 -07003 * Copyright (c) 1996-2017 The strace developers.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000027 */
28
29#include "defs.h"
Roland McGrath6e87ee02003-01-14 07:53:40 +000030/*
31 * The C library's definition of struct termios might differ from
32 * the kernel one, and we need to use the kernel layout.
33 */
34#include <linux/termios.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000035
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +000036#include "xlat/tcxonc_options.h"
37#include "xlat/tcflsh_options.h"
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +000038#include "xlat/baud_options.h"
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +000039#include "xlat/modem_flags.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000040
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +000041static void
Elliott Hughesd35df492017-02-15 15:19:05 -080042decode_termios(struct tcb *const tcp, const kernel_ulong_t addr)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000043{
44 struct termios tios;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000045 int i;
46
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +000047 tprints(", ");
48 if (umove_or_printaddr(tcp, addr, &tios))
49 return;
50 if (abbrev(tcp)) {
51 tprints("{");
52 printxval(baud_options, tios.c_cflag & CBAUD, "B???");
53 tprintf(" %sopost %sisig %sicanon %secho ...}",
54 (tios.c_oflag & OPOST) ? "" : "-",
55 (tios.c_lflag & ISIG) ? "" : "-",
56 (tios.c_lflag & ICANON) ? "" : "-",
57 (tios.c_lflag & ECHO) ? "" : "-");
58 return;
59 }
60 tprintf("{c_iflags=%#lx, c_oflags=%#lx, ",
61 (long) tios.c_iflag, (long) tios.c_oflag);
62 tprintf("c_cflags=%#lx, c_lflags=%#lx, ",
63 (long) tios.c_cflag, (long) tios.c_lflag);
64 tprintf("c_line=%u, ", tios.c_line);
65 if (!(tios.c_lflag & ICANON))
66 tprintf("c_cc[VMIN]=%d, c_cc[VTIME]=%d, ",
67 tios.c_cc[VMIN], tios.c_cc[VTIME]);
Dmitry V. Levincce5aae2016-10-02 16:20:05 +000068 tprints("c_cc=\"");
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +000069 for (i = 0; i < NCCS; i++)
70 tprintf("\\x%02x", tios.c_cc[i]);
Dmitry V. Levincce5aae2016-10-02 16:20:05 +000071 tprints("\"}");
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +000072}
73
74static void
Elliott Hughesd35df492017-02-15 15:19:05 -080075decode_termio(struct tcb *const tcp, const kernel_ulong_t addr)
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +000076{
77 struct termio tio;
78 int i;
79
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +000080 tprints(", ");
81 if (umove_or_printaddr(tcp, addr, &tio))
82 return;
83 if (abbrev(tcp)) {
84 tprints("{");
85 printxval(baud_options, tio.c_cflag & CBAUD, "B???");
86 tprintf(" %sopost %sisig %sicanon %secho ...}",
87 (tio.c_oflag & OPOST) ? "" : "-",
88 (tio.c_lflag & ISIG) ? "" : "-",
89 (tio.c_lflag & ICANON) ? "" : "-",
90 (tio.c_lflag & ECHO) ? "" : "-");
91 return;
92 }
93 tprintf("{c_iflags=%#lx, c_oflags=%#lx, ",
94 (long) tio.c_iflag, (long) tio.c_oflag);
95 tprintf("c_cflags=%#lx, c_lflags=%#lx, ",
96 (long) tio.c_cflag, (long) tio.c_lflag);
97 tprintf("c_line=%u, ", tio.c_line);
98#ifdef _VMIN
99 if (!(tio.c_lflag & ICANON))
100 tprintf("c_cc[_VMIN]=%d, c_cc[_VTIME]=%d, ",
101 tio.c_cc[_VMIN], tio.c_cc[_VTIME]);
102#else /* !_VMIN */
103 if (!(tio.c_lflag & ICANON))
104 tprintf("c_cc[VMIN]=%d, c_cc[VTIME]=%d, ",
105 tio.c_cc[VMIN], tio.c_cc[VTIME]);
106#endif /* !_VMIN */
Dmitry V. Levincce5aae2016-10-02 16:20:05 +0000107 tprints("c_cc=\"");
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000108 for (i = 0; i < NCC; i++)
109 tprintf("\\x%02x", tio.c_cc[i]);
Dmitry V. Levincce5aae2016-10-02 16:20:05 +0000110 tprints("\"}");
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000111}
112
113static void
Elliott Hughesd35df492017-02-15 15:19:05 -0800114decode_winsize(struct tcb *const tcp, const kernel_ulong_t addr)
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000115{
116 struct winsize ws;
117
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000118 tprints(", ");
119 if (umove_or_printaddr(tcp, addr, &ws))
120 return;
121 tprintf("{ws_row=%d, ws_col=%d, ws_xpixel=%d, ws_ypixel=%d}",
122 ws.ws_row, ws.ws_col, ws.ws_xpixel, ws.ws_ypixel);
123}
124
125#ifdef TIOCGSIZE
126static void
Elliott Hughesd35df492017-02-15 15:19:05 -0800127decode_ttysize(struct tcb *const tcp, const kernel_ulong_t addr)
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000128{
129 struct ttysize ts;
130
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000131 tprints(", ");
132 if (umove_or_printaddr(tcp, addr, &ts))
133 return;
134 tprintf("{ts_lines=%d, ts_cols=%d}",
135 ts.ts_lines, ts.ts_cols);
136}
137#endif
138
139static void
Elliott Hughesd35df492017-02-15 15:19:05 -0800140decode_modem_flags(struct tcb *const tcp, const kernel_ulong_t addr)
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000141{
142 int i;
143
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000144 tprints(", ");
145 if (umove_or_printaddr(tcp, addr, &i))
146 return;
147 tprints("[");
148 printflags(modem_flags, i, "TIOCM_???");
149 tprints("]");
150}
151
152int
Elliott Hughesd35df492017-02-15 15:19:05 -0800153term_ioctl(struct tcb *const tcp, const unsigned int code,
154 const kernel_ulong_t arg)
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000155{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000156 switch (code) {
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000157 /* struct termios */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000158 case TCGETS:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000159#ifdef TCGETS2
160 case TCGETS2:
161#endif
162 case TIOCGLCKTRMIOS:
163 if (entering(tcp))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000164 return 0;
165 case TCSETS:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000166#ifdef TCSETS2
167 case TCSETS2:
168#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000169 case TCSETSW:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000170#ifdef TCSETSW2
171 case TCSETSW2:
172#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000173 case TCSETSF:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000174#ifdef TCSETSF2
175 case TCSETSF2:
176#endif
177 case TIOCSLCKTRMIOS:
178 decode_termios(tcp, arg);
179 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000180
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000181 /* struct termio */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000182 case TCGETA:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000183 if (entering(tcp))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000184 return 0;
185 case TCSETA:
186 case TCSETAW:
187 case TCSETAF:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000188 decode_termio(tcp, arg);
189 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000190
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000191 /* struct winsize */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000192 case TIOCGWINSZ:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000193 if (entering(tcp))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000194 return 0;
195 case TIOCSWINSZ:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000196 decode_winsize(tcp, arg);
197 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000198
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000199 /* struct ttysize */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000200#ifdef TIOCGSIZE
201 case TIOCGSIZE:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000202 if (entering(tcp))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000203 return 0;
204 case TIOCSSIZE:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000205 decode_ttysize(tcp, arg);
206 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000207#endif
208
209 /* ioctls with a direct decodable arg */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000210 case TCXONC:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200211 tprints(", ");
Elliott Hughesd35df492017-02-15 15:19:05 -0800212 printxval64(tcxonc_options, arg, "TC???");
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000213 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000214 case TCFLSH:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200215 tprints(", ");
Elliott Hughesd35df492017-02-15 15:19:05 -0800216 printxval64(tcflsh_options, arg, "TC???");
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000217 break;
218 case TCSBRK:
219 case TCSBRKP:
Denys Vlasenko6a4ac6c2011-10-22 04:52:18 +0200220 case TIOCSCTTY:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000221 tprintf(", %d", (int) arg);
222 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000223
224 /* ioctls with an indirect parameter displayed as modem flags */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000225 case TIOCMGET:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000226 if (entering(tcp))
227 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000228 case TIOCMBIS:
229 case TIOCMBIC:
230 case TIOCMSET:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000231 decode_modem_flags(tcp, arg);
232 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000233
234 /* ioctls with an indirect parameter displayed in decimal */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000235 case TIOCGPGRP:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000236 case TIOCGSID:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000237 case TIOCGETD:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000238 case TIOCGSOFTCAR:
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000239 case TIOCGPTN:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000240 case FIONREAD:
241 case TIOCOUTQ:
242#ifdef TIOCGEXCL
243 case TIOCGEXCL:
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000244#endif
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000245#ifdef TIOCGDEV
246 case TIOCGDEV:
247#endif
248 if (entering(tcp))
249 return 0;
250 case TIOCSPGRP:
251 case TIOCSETD:
252 case FIONBIO:
253 case FIOASYNC:
254 case TIOCPKT:
255 case TIOCSSOFTCAR:
256 case TIOCSPTLCK:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200257 tprints(", ");
Roland McGrathbcd2c952008-07-22 00:21:43 +0000258 printnum_int(tcp, arg, "%d");
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000259 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000260
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000261 /* ioctls with an indirect parameter displayed as a char */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000262 case TIOCSTI:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200263 tprints(", ");
Elliott Hughesd35df492017-02-15 15:19:05 -0800264 printstrn(tcp, arg, 1);
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000265 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000266
267 /* ioctls with no parameters */
268
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000269 case TIOCSBRK:
270 case TIOCCBRK:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000271 case TIOCCONS:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000272 case TIOCNOTTY:
273 case TIOCEXCL:
274 case TIOCNXCL:
275 case FIOCLEX:
276 case FIONCLEX:
277#ifdef TIOCVHANGUP
278 case TIOCVHANGUP:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000279#endif
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000280#ifdef TIOCSSERIAL
281 case TIOCSSERIAL:
282#endif
283 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000284
285 /* ioctls which are unknown */
286
287 default:
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000288 return RVAL_DECODED;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000289 }
Dmitry V. Levinfd3cdc02015-07-13 20:10:20 +0000290
291 return RVAL_DECODED | 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000292}