forked from aosp-mirror/platform_external_strace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
term.c
420 lines (395 loc) · 8.31 KB
/
term.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
/*
* Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "defs.h"
/*
* The C library's definition of struct termios might differ from
* the kernel one, and we need to use the kernel layout.
*/
#include <linux/termios.h>
#ifdef HAVE_SYS_FILIO_H
# include <sys/filio.h>
#endif
static const struct xlat tcxonc_options[] = {
XLAT(TCOOFF),
XLAT(TCOON),
XLAT(TCIOFF),
XLAT(TCION),
XLAT_END
};
#ifdef TCLFLSH
static const struct xlat tcflsh_options[] = {
XLAT(TCIFLUSH),
XLAT(TCOFLUSH),
XLAT(TCIOFLUSH),
XLAT_END
};
#endif
static const struct xlat baud_options[] = {
XLAT(B0),
XLAT(B50),
XLAT(B75),
XLAT(B110),
XLAT(B134),
XLAT(B150),
XLAT(B200),
XLAT(B300),
XLAT(B600),
XLAT(B1200),
XLAT(B1800),
XLAT(B2400),
XLAT(B4800),
XLAT(B9600),
#ifdef B19200
XLAT(B19200),
#endif
#ifdef B38400
XLAT(B38400),
#endif
#ifdef B57600
XLAT(B57600),
#endif
#ifdef B115200
XLAT(B115200),
#endif
#ifdef B230400
XLAT(B230400),
#endif
#ifdef B460800
XLAT(B460800),
#endif
#ifdef B500000
XLAT(B500000),
#endif
#ifdef B576000
XLAT(B576000),
#endif
#ifdef B921600
XLAT(B921600),
#endif
#ifdef B1000000
XLAT(B1000000),
#endif
#ifdef B1152000
XLAT(B1152000),
#endif
#ifdef B1500000
XLAT(B1500000),
#endif
#ifdef B2000000
XLAT(B2000000),
#endif
#ifdef B2500000
XLAT(B2500000),
#endif
#ifdef B3000000
XLAT(B3000000),
#endif
#ifdef B3500000
XLAT(B3500000),
#endif
#ifdef B4000000
XLAT(B4000000),
#endif
#ifdef EXTA
XLAT(EXTA),
#endif
#ifdef EXTB
XLAT(EXTB),
#endif
XLAT_END
};
static const struct xlat modem_flags[] = {
#ifdef TIOCM_LE
XLAT(TIOCM_LE),
#endif
#ifdef TIOCM_DTR
XLAT(TIOCM_DTR),
#endif
#ifdef TIOCM_RTS
XLAT(TIOCM_RTS),
#endif
#ifdef TIOCM_ST
XLAT(TIOCM_ST),
#endif
#ifdef TIOCM_SR
XLAT(TIOCM_SR),
#endif
#ifdef TIOCM_CTS
XLAT(TIOCM_CTS),
#endif
#ifdef TIOCM_CAR
XLAT(TIOCM_CAR),
#endif
#ifdef TIOCM_CD
XLAT(TIOCM_CD),
#endif
#ifdef TIOCM_RNG
XLAT(TIOCM_RNG),
#endif
#ifdef TIOCM_RI
XLAT(TIOCM_RI),
#endif
#ifdef TIOCM_DSR
XLAT(TIOCM_DSR),
#endif
XLAT_END
};
int term_ioctl(struct tcb *tcp, long code, long arg)
{
struct termios tios;
struct termio tio;
struct winsize ws;
#ifdef TIOCGSIZE
struct ttysize ts;
#endif
int i;
if (entering(tcp))
return 0;
switch (code) {
/* ioctls with termios or termio args */
#ifdef TCGETS
case TCGETS:
if (syserror(tcp))
return 0;
case TCSETS:
case TCSETSW:
case TCSETSF:
if (!verbose(tcp) || umove(tcp, arg, &tios) < 0)
return 0;
if (abbrev(tcp)) {
tprints(", {");
printxval(baud_options, tios.c_cflag & CBAUD, "B???");
tprintf(" %sopost %sisig %sicanon %secho ...}",
(tios.c_oflag & OPOST) ? "" : "-",
(tios.c_lflag & ISIG) ? "" : "-",
(tios.c_lflag & ICANON) ? "" : "-",
(tios.c_lflag & ECHO) ? "" : "-");
return 1;
}
tprintf(", {c_iflags=%#lx, c_oflags=%#lx, ",
(long) tios.c_iflag, (long) tios.c_oflag);
tprintf("c_cflags=%#lx, c_lflags=%#lx, ",
(long) tios.c_cflag, (long) tios.c_lflag);
tprintf("c_line=%u, ", tios.c_line);
if (!(tios.c_lflag & ICANON))
tprintf("c_cc[VMIN]=%d, c_cc[VTIME]=%d, ",
tios.c_cc[VMIN], tios.c_cc[VTIME]);
tprintf("c_cc=\"");
for (i = 0; i < NCCS; i++)
tprintf("\\x%02x", tios.c_cc[i]);
tprintf("\"}");
return 1;
#endif /* TCGETS */
#ifdef TCGETA
case TCGETA:
if (syserror(tcp))
return 0;
case TCSETA:
case TCSETAW:
case TCSETAF:
if (!verbose(tcp) || umove(tcp, arg, &tio) < 0)
return 0;
if (abbrev(tcp)) {
tprints(", {");
printxval(baud_options, tio.c_cflag & CBAUD, "B???");
tprintf(" %sopost %sisig %sicanon %secho ...}",
(tio.c_oflag & OPOST) ? "" : "-",
(tio.c_lflag & ISIG) ? "" : "-",
(tio.c_lflag & ICANON) ? "" : "-",
(tio.c_lflag & ECHO) ? "" : "-");
return 1;
}
tprintf(", {c_iflags=%#lx, c_oflags=%#lx, ",
(long) tio.c_iflag, (long) tio.c_oflag);
tprintf("c_cflags=%#lx, c_lflags=%#lx, ",
(long) tio.c_cflag, (long) tio.c_lflag);
tprintf("c_line=%u, ", tio.c_line);
#ifdef _VMIN
if (!(tio.c_lflag & ICANON))
tprintf("c_cc[_VMIN]=%d, c_cc[_VTIME]=%d, ",
tio.c_cc[_VMIN], tio.c_cc[_VTIME]);
#else /* !_VMIN */
if (!(tio.c_lflag & ICANON))
tprintf("c_cc[VMIN]=%d, c_cc[VTIME]=%d, ",
tio.c_cc[VMIN], tio.c_cc[VTIME]);
#endif /* !_VMIN */
tprintf("c_cc=\"");
for (i = 0; i < NCC; i++)
tprintf("\\x%02x", tio.c_cc[i]);
tprintf("\"}");
return 1;
#endif /* TCGETA */
/* ioctls with winsize or ttysize args */
#ifdef TIOCGWINSZ
case TIOCGWINSZ:
if (syserror(tcp))
return 0;
case TIOCSWINSZ:
if (!verbose(tcp) || umove(tcp, arg, &ws) < 0)
return 0;
tprintf(", {ws_row=%d, ws_col=%d, ws_xpixel=%d, ws_ypixel=%d}",
ws.ws_row, ws.ws_col, ws.ws_xpixel, ws.ws_ypixel);
return 1;
#endif /* TIOCGWINSZ */
#ifdef TIOCGSIZE
case TIOCGSIZE:
if (syserror(tcp))
return 0;
case TIOCSSIZE:
if (!verbose(tcp) || umove(tcp, arg, &ts) < 0)
return 0;
tprintf(", {ts_lines=%d, ts_cols=%d}",
ts.ts_lines, ts.ts_cols);
return 1;
#endif
/* ioctls with a direct decodable arg */
#ifdef TCXONC
case TCXONC:
tprints(", ");
printxval(tcxonc_options, arg, "TC???");
return 1;
#endif
#ifdef TCLFLSH
case TCFLSH:
tprints(", ");
printxval(tcflsh_options, arg, "TC???");
return 1;
#endif
#ifdef TIOCSCTTY
case TIOCSCTTY:
tprintf(", %ld", arg);
return 1;
#endif
/* ioctls with an indirect parameter displayed as modem flags */
#ifdef TIOCMGET
case TIOCMGET:
case TIOCMBIS:
case TIOCMBIC:
case TIOCMSET:
if (umove(tcp, arg, &i) < 0)
return 0;
tprints(", [");
printflags(modem_flags, i, "TIOCM_???");
tprints("]");
return 1;
#endif /* TIOCMGET */
/* ioctls with an indirect parameter displayed in decimal */
case TIOCSPGRP:
case TIOCGPGRP:
#ifdef TIOCGETPGRP
case TIOCGETPGRP:
#endif
#ifdef TIOCSETPGRP
case TIOCSETPGRP:
#endif
#ifdef FIONREAD
case FIONREAD:
#endif
case TIOCOUTQ:
#ifdef FIONBIO
case FIONBIO:
#endif
#ifdef FIOASYNC
case FIOASYNC:
#endif
#ifdef FIOGETOWN
case FIOGETOWN:
#endif
#ifdef FIOSETOWN
case FIOSETOWN:
#endif
#ifdef TIOCGETD
case TIOCGETD:
#endif
#ifdef TIOCSETD
case TIOCSETD:
#endif
#ifdef TIOCPKT
case TIOCPKT:
#endif
#ifdef TIOCREMOTE
case TIOCREMOTE:
#endif
#ifdef TIOCUCNTL
case TIOCUCNTL:
#endif
#ifdef TIOCTCNTL
case TIOCTCNTL:
#endif
#ifdef TIOCSIGNAL
case TIOCSIGNAL:
#endif
#ifdef TIOCSSOFTCAR
case TIOCSSOFTCAR:
#endif
#ifdef TIOCGSOFTCAR
case TIOCGSOFTCAR:
#endif
#ifdef TIOCISPACE
case TIOCISPACE:
#endif
#ifdef TIOCISIZE
case TIOCISIZE:
#endif
#ifdef TIOCSINTR
case TIOCSINTR:
#endif
#ifdef TIOCSPTLCK
case TIOCSPTLCK:
#endif
#ifdef TIOCGPTN
case TIOCGPTN:
#endif
tprints(", ");
printnum_int(tcp, arg, "%d");
return 1;
/* ioctls with an indirect parameter displayed as a char */
#ifdef TIOCSTI
case TIOCSTI:
#endif
tprints(", ");
printstr(tcp, arg, 1);
return 1;
/* ioctls with no parameters */
#ifdef TIOCNOTTY
case TIOCNOTTY:
#endif
#ifdef FIOCLEX
case FIOCLEX:
#endif
#ifdef FIONCLEX
case FIONCLEX:
#endif
#ifdef TIOCCONS
case TIOCCONS:
#endif
return 1;
/* ioctls which are unknown */
default:
return 0;
}
}