Branch data Line data Source code
1 : : /*
2 : : * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
3 : : * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
4 : : * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
5 : : * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
6 : : * Copyright (c) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
7 : : * Linux for s390 port by D.J. Barrow
8 : : * <barrow_dj@mail.yahoo.com,djbarrow@de.ibm.com>
9 : : * All rights reserved.
10 : : *
11 : : * Redistribution and use in source and binary forms, with or without
12 : : * modification, are permitted provided that the following conditions
13 : : * are met:
14 : : * 1. Redistributions of source code must retain the above copyright
15 : : * notice, this list of conditions and the following disclaimer.
16 : : * 2. Redistributions in binary form must reproduce the above copyright
17 : : * notice, this list of conditions and the following disclaimer in the
18 : : * documentation and/or other materials provided with the distribution.
19 : : * 3. The name of the author may not be used to endorse or promote products
20 : : * derived from this software without specific prior written permission.
21 : : *
22 : : * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 : : * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 : : * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 : : * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 : : * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 : : * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 : : * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 : : * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 : : * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 : : * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 : : */
33 : :
34 : : #include "defs.h"
35 : : #include <sys/param.h>
36 : : #include <fcntl.h>
37 : : #include <stdarg.h>
38 : : #ifdef HAVE_SYS_XATTR_H
39 : : # include <sys/xattr.h>
40 : : #endif
41 : : #include <sys/uio.h>
42 : : #include <asm/unistd.h>
43 : :
44 : : #include "scno.h"
45 : : #include "regs.h"
46 : : #include "ptrace.h"
47 : :
48 : : int
49 : 20691 : string_to_uint_ex(const char *const str, char **const endptr,
50 : : const unsigned int max_val, const char *const accepted_ending)
51 : : {
52 : : char *end;
53 : : long val;
54 : :
55 [ + + ]: 20691 : if (!*str)
56 : 40 : return -1;
57 : :
58 : 20651 : errno = 0;
59 : 20651 : val = strtol(str, &end, 10);
60 : :
61 [ + + ][ + + ]: 20651 : if (str == end || val < 0 || (unsigned long) val > max_val
[ + + ]
62 [ - + ][ # # ]: 19408 : || (val == LONG_MAX && errno == ERANGE))
63 : 1243 : return -1;
64 : :
65 [ + + ][ + + ]: 19408 : if (*end && (!accepted_ending || !strchr(accepted_ending, *end)))
[ + + ]
66 : 70 : return -1;
67 : :
68 [ + + ]: 19338 : if (endptr)
69 : 2036 : *endptr = end;
70 : :
71 : 20691 : return (int) val;
72 : : }
73 : :
74 : : int
75 : 15151 : string_to_uint(const char *const str)
76 : : {
77 : 15151 : return string_to_uint_upto(str, INT_MAX);
78 : : }
79 : :
80 : : int
81 : 11812 : tv_nz(const struct timeval *a)
82 : : {
83 [ + - ][ + + ]: 11812 : return a->tv_sec || a->tv_usec;
84 : : }
85 : :
86 : : int
87 : 76546 : tv_cmp(const struct timeval *a, const struct timeval *b)
88 : : {
89 [ + + ]: 76546 : if (a->tv_sec < b->tv_sec
90 [ + + ][ + + ]: 76470 : || (a->tv_sec == b->tv_sec && a->tv_usec < b->tv_usec))
91 : 1723 : return -1;
92 [ + + ]: 74823 : if (a->tv_sec > b->tv_sec
93 [ + - ][ + + ]: 74748 : || (a->tv_sec == b->tv_sec && a->tv_usec > b->tv_usec))
94 : 25887 : return 1;
95 : 48936 : return 0;
96 : : }
97 : :
98 : : double
99 : 464 : tv_float(const struct timeval *tv)
100 : : {
101 : 464 : return tv->tv_sec + tv->tv_usec/1000000.0;
102 : : }
103 : :
104 : : void
105 : 13336 : tv_add(struct timeval *tv, const struct timeval *a, const struct timeval *b)
106 : : {
107 : 13336 : tv->tv_sec = a->tv_sec + b->tv_sec;
108 : 13336 : tv->tv_usec = a->tv_usec + b->tv_usec;
109 [ - + ]: 13336 : if (tv->tv_usec >= 1000000) {
110 : 0 : tv->tv_sec++;
111 : 0 : tv->tv_usec -= 1000000;
112 : : }
113 : 13336 : }
114 : :
115 : : void
116 : 228279 : tv_sub(struct timeval *tv, const struct timeval *a, const struct timeval *b)
117 : : {
118 : 228279 : tv->tv_sec = a->tv_sec - b->tv_sec;
119 : 228279 : tv->tv_usec = a->tv_usec - b->tv_usec;
120 [ + + ]: 228279 : if (((long) tv->tv_usec) < 0) {
121 : 12 : tv->tv_sec--;
122 : 12 : tv->tv_usec += 1000000;
123 : : }
124 : 228279 : }
125 : :
126 : : void
127 : 459 : tv_div(struct timeval *tv, const struct timeval *a, int n)
128 : : {
129 : 459 : tv->tv_usec = (a->tv_sec % n * 1000000 + a->tv_usec + n / 2) / n;
130 : 459 : tv->tv_sec = a->tv_sec / n + tv->tv_usec / 1000000;
131 : 459 : tv->tv_usec %= 1000000;
132 : 459 : }
133 : :
134 : : void
135 : 459 : tv_mul(struct timeval *tv, const struct timeval *a, int n)
136 : : {
137 : 459 : tv->tv_usec = a->tv_usec * n;
138 : 459 : tv->tv_sec = a->tv_sec * n + tv->tv_usec / 1000000;
139 : 459 : tv->tv_usec %= 1000000;
140 : 459 : }
141 : :
142 : : const char *
143 : 729900 : xlookup(const struct xlat *xlat, const uint64_t val)
144 : : {
145 [ + + ]: 1313071 : for (; xlat->str != NULL; xlat++)
146 [ + + ]: 1301637 : if (xlat->val == val)
147 : 718466 : return xlat->str;
148 : 11434 : return NULL;
149 : : }
150 : :
151 : : static int
152 : 12464 : xlat_bsearch_compare(const void *a, const void *b)
153 : : {
154 : 12464 : const uint64_t val1 = *(const uint64_t *) a;
155 : 12464 : const uint64_t val2 = ((const struct xlat *) b)->val;
156 [ + + ][ + + ]: 12464 : return (val1 > val2) ? 1 : (val1 < val2) ? -1 : 0;
157 : : }
158 : :
159 : : const char *
160 : 5309 : xlat_search(const struct xlat *xlat, const size_t nmemb, const uint64_t val)
161 : : {
162 : 5309 : const struct xlat *e =
163 : : bsearch((const void*) &val,
164 : : xlat, nmemb, sizeof(*xlat), xlat_bsearch_compare);
165 : :
166 [ + + ]: 5309 : return e ? e->str : NULL;
167 : : }
168 : :
169 : : #if !defined HAVE_STPCPY
170 : : char *
171 : : stpcpy(char *dst, const char *src)
172 : : {
173 : : while ((*dst = *src++) != '\0')
174 : : dst++;
175 : : return dst;
176 : : }
177 : : #endif
178 : :
179 : : /* Find a next bit which is set.
180 : : * Starts testing at cur_bit.
181 : : * Returns -1 if no more bits are set.
182 : : *
183 : : * We never touch bytes we don't need to.
184 : : * On big-endian, array is assumed to consist of
185 : : * current_wordsize wide words: for example, is current_wordsize is 4,
186 : : * the bytes are walked in 3,2,1,0, 7,6,5,4, 11,10,9,8 ... sequence.
187 : : * On little-endian machines, word size is immaterial.
188 : : */
189 : : int
190 : 1142 : next_set_bit(const void *bit_array, unsigned cur_bit, unsigned size_bits)
191 : : {
192 : 1142 : const unsigned endian = 1;
193 : 1142 : int little_endian = * (char *) (void *) &endian;
194 : :
195 : 1142 : const uint8_t *array = bit_array;
196 : 1142 : unsigned pos = cur_bit / 8;
197 [ - + ]: 1142 : unsigned pos_xor_mask = little_endian ? 0 : current_wordsize-1;
198 : :
199 : 6045 : for (;;) {
200 : : uint8_t bitmask;
201 : : uint8_t cur_byte;
202 : :
203 [ + + ]: 6045 : if (cur_bit >= size_bits)
204 : 389 : return -1;
205 : 5656 : cur_byte = array[pos ^ pos_xor_mask];
206 [ + + ]: 5656 : if (cur_byte == 0) {
207 : 4558 : cur_bit = (cur_bit + 8) & (-8);
208 : 4558 : pos++;
209 : 4558 : continue;
210 : : }
211 : 1098 : bitmask = 1 << (cur_bit & 7);
212 : : for (;;) {
213 [ + + ]: 3367 : if (cur_byte & bitmask)
214 : 741 : return cur_bit;
215 : 2626 : cur_bit++;
216 [ + + ]: 2626 : if (cur_bit >= size_bits)
217 : 12 : return -1;
218 : 2614 : bitmask <<= 1;
219 : : /* This check *can't be* optimized out: */
220 [ + + ]: 2614 : if (bitmask == 0)
221 : 345 : break;
222 : : }
223 : 345 : pos++;
224 : : }
225 : : }
226 : :
227 : : /**
228 : : * Print entry in struct xlat table, if there.
229 : : *
230 : : * @param val Value to search a literal representation for.
231 : : * @param dflt String (abbreviated in comment syntax) which should be emitted
232 : : * if no appropriate xlat value has been found.
233 : : * @param xlat (And the following arguments) Pointers to arrays of xlat values.
234 : : * The last argument should be NULL.
235 : : * @return 1 if appropriate xlat value has been found, 0 otherwise.
236 : : */
237 : : int
238 : 719819 : printxvals(const uint64_t val, const char *dflt, const struct xlat *xlat, ...)
239 : : {
240 : : va_list args;
241 : :
242 : 719819 : va_start(args, xlat);
243 [ + + ]: 725109 : for (; xlat; xlat = va_arg(args, const struct xlat *)) {
244 : 719819 : const char *str = xlookup(xlat, val);
245 : :
246 [ + + ]: 719819 : if (str) {
247 : 714529 : tprints(str);
248 : 714529 : va_end(args);
249 : 714529 : return 1;
250 : : }
251 : : }
252 : : /* No hits -- print raw # instead. */
253 : 5290 : tprintf("%#" PRIx64, val);
254 [ + + ]: 5290 : if (dflt)
255 : 5070 : tprintf(" /* %s */", dflt);
256 : :
257 : 5290 : va_end(args);
258 : :
259 : 719819 : return 0;
260 : : }
261 : :
262 : : /**
263 : : * Print entry in sorted struct xlat table, if it is there.
264 : : *
265 : : * @param xlat Pointer to an array of xlat values (not terminated with
266 : : * XLAT_END).
267 : : * @param xlat_size Number of xlat elements present in array (usually ARRAY_SIZE
268 : : * if array is declared in the unit's scope and not
269 : : * terminated with XLAT_END).
270 : : * @param val Value to search literal representation for.
271 : : * @param dflt String (abbreviated in comment syntax) which should be
272 : : * emitted if no appropriate xlat value has been found.
273 : : * @return 1 if appropriate xlat value has been found, 0
274 : : * otherwise.
275 : : */
276 : : int
277 : 5309 : printxval_searchn(const struct xlat *xlat, size_t xlat_size, uint64_t val,
278 : : const char *dflt)
279 : : {
280 : 5309 : const char *s = xlat_search(xlat, xlat_size, val);
281 : :
282 [ + + ]: 5309 : if (s) {
283 : 3514 : tprints(s);
284 : 3514 : return 1;
285 : : }
286 : :
287 : 1795 : tprintf("%#" PRIx64, val);
288 [ + - ]: 1795 : if (dflt)
289 : 1795 : tprintf(" /* %s */", dflt);
290 : :
291 : 1795 : return 0;
292 : : }
293 : :
294 : : /*
295 : : * Fetch 64bit argument at position arg_no and
296 : : * return the index of the next argument.
297 : : */
298 : : int
299 : 4294 : getllval(struct tcb *tcp, unsigned long long *val, int arg_no)
300 : : {
301 : : #if SIZEOF_KERNEL_LONG_T > 4
302 : : # ifndef current_klongsize
303 [ + + ]: 4294 : if (current_klongsize < SIZEOF_KERNEL_LONG_T) {
304 : : # if defined(AARCH64) || defined(POWERPC64)
305 : : /* Align arg_no to the next even number. */
306 : : arg_no = (arg_no + 1) & 0xe;
307 : : # endif /* AARCH64 || POWERPC64 */
308 : 862 : *val = ULONG_LONG(tcp->u_arg[arg_no], tcp->u_arg[arg_no + 1]);
309 : 862 : arg_no += 2;
310 : : } else
311 : : # endif /* !current_klongsize */
312 : : {
313 : 3432 : *val = tcp->u_arg[arg_no];
314 : 3432 : arg_no++;
315 : : }
316 : : #else /* SIZEOF_KERNEL_LONG_T == 4 */
317 : : # if defined __ARM_EABI__ || \
318 : : defined LINUX_MIPSO32 || \
319 : : defined POWERPC || \
320 : : defined XTENSA
321 : : /* Align arg_no to the next even number. */
322 : : arg_no = (arg_no + 1) & 0xe;
323 : : # elif defined SH
324 : : /*
325 : : * The SH4 ABI does allow long longs in odd-numbered registers, but
326 : : * does not allow them to be split between registers and memory - and
327 : : * there are only four argument registers for normal functions. As a
328 : : * result, pread, for example, takes an extra padding argument before
329 : : * the offset. This was changed late in the 2.4 series (around 2.4.20).
330 : : */
331 : : if (arg_no == 3)
332 : : arg_no++;
333 : : # endif /* __ARM_EABI__ || LINUX_MIPSO32 || POWERPC || XTENSA || SH */
334 : : *val = ULONG_LONG(tcp->u_arg[arg_no], tcp->u_arg[arg_no + 1]);
335 : : arg_no += 2;
336 : : #endif
337 : :
338 : 4294 : return arg_no;
339 : : }
340 : :
341 : : /*
342 : : * Print 64bit argument at position arg_no and
343 : : * return the index of the next argument.
344 : : */
345 : : int
346 : 1409 : printllval(struct tcb *tcp, const char *format, int arg_no)
347 : : {
348 : 1409 : unsigned long long val = 0;
349 : :
350 : 1409 : arg_no = getllval(tcp, &val, arg_no);
351 : 1409 : tprintf(format, val);
352 : 1409 : return arg_no;
353 : : }
354 : :
355 : : /*
356 : : * Interpret `xlat' as an array of flags
357 : : * print the entries whose bits are on in `flags'
358 : : */
359 : : void
360 : 260 : addflags(const struct xlat *xlat, uint64_t flags)
361 : : {
362 [ + + ]: 4160 : for (; xlat->str; xlat++) {
363 [ + + ][ + + ]: 3900 : if (xlat->val && (flags & xlat->val) == xlat->val) {
364 : 280 : tprintf("|%s", xlat->str);
365 : 280 : flags &= ~xlat->val;
366 : : }
367 : : }
368 [ - + ]: 260 : if (flags) {
369 : 0 : tprintf("|%#" PRIx64, flags);
370 : : }
371 : 260 : }
372 : :
373 : : /*
374 : : * Interpret `xlat' as an array of flags.
375 : : * Print to static string the entries whose bits are on in `flags'
376 : : * Return static string.
377 : : */
378 : : const char *
379 : 230 : sprintflags(const char *prefix, const struct xlat *xlat, uint64_t flags)
380 : : {
381 : : static char outstr[1024];
382 : : char *outptr;
383 : 230 : int found = 0;
384 : :
385 : 230 : outptr = stpcpy(outstr, prefix);
386 : :
387 [ - + ][ # # ]: 230 : if (flags == 0 && xlat->val == 0 && xlat->str) {
[ # # ]
388 : 0 : strcpy(outptr, xlat->str);
389 : 0 : return outstr;
390 : : }
391 : :
392 [ + + ]: 1200 : for (; xlat->str; xlat++) {
393 [ + + ][ + + ]: 1170 : if (xlat->val && (flags & xlat->val) == xlat->val) {
394 [ + + ]: 345 : if (found)
395 : 130 : *outptr++ = '|';
396 : 345 : outptr = stpcpy(outptr, xlat->str);
397 : 345 : found = 1;
398 : 345 : flags &= ~xlat->val;
399 [ + + ]: 345 : if (!flags)
400 : 200 : break;
401 : : }
402 : : }
403 [ + + ]: 230 : if (flags) {
404 [ + + ]: 30 : if (found)
405 : 15 : *outptr++ = '|';
406 : 30 : outptr += sprintf(outptr, "%#" PRIx64, flags);
407 : : }
408 : :
409 : 230 : return outstr;
410 : : }
411 : :
412 : : int
413 : 382922 : printflags64(const struct xlat *xlat, uint64_t flags, const char *dflt)
414 : : {
415 : : int n;
416 : : const char *sep;
417 : :
418 [ + + ][ + + ]: 382922 : if (flags == 0 && xlat->val == 0 && xlat->str) {
[ + - ]
419 : 69 : tprints(xlat->str);
420 : 69 : return 1;
421 : : }
422 : :
423 : 382853 : sep = "";
424 [ + + ]: 7430794 : for (n = 0; xlat->str; xlat++) {
425 [ + + ][ + + ]: 7047941 : if (xlat->val && (flags & xlat->val) == xlat->val) {
426 : 42828 : tprintf("%s%s", sep, xlat->str);
427 : 42828 : flags &= ~xlat->val;
428 : 42828 : sep = "|";
429 : 42828 : n++;
430 : : }
431 : : }
432 : :
433 [ + + ]: 382853 : if (n) {
434 [ + + ]: 11556 : if (flags) {
435 : 5019 : tprintf("%s%#" PRIx64, sep, flags);
436 : 11556 : n++;
437 : : }
438 : : } else {
439 [ + + ]: 371297 : if (flags) {
440 : 3592 : tprintf("%#" PRIx64, flags);
441 [ + + ]: 3592 : if (dflt)
442 : 3592 : tprintf(" /* %s */", dflt);
443 : : } else {
444 [ + + ]: 367705 : if (dflt)
445 : 367675 : tprints("0");
446 : : }
447 : : }
448 : :
449 : 382853 : return n;
450 : : }
451 : :
452 : : void
453 : 312138 : printaddr(const kernel_ulong_t addr)
454 : : {
455 [ + + ]: 312138 : if (!addr)
456 : 185485 : tprints("NULL");
457 : : else
458 : 126653 : tprintf("%#" PRI_klx, addr);
459 : 312138 : }
460 : :
461 : : #define DEF_PRINTNUM(name, type) \
462 : : bool \
463 : : printnum_ ## name(struct tcb *const tcp, const kernel_ulong_t addr, \
464 : : const char *const fmt) \
465 : : { \
466 : : type num; \
467 : : if (umove_or_printaddr(tcp, addr, &num)) \
468 : : return false; \
469 : : tprints("["); \
470 : : tprintf(fmt, num); \
471 : : tprints("]"); \
472 : : return true; \
473 : : }
474 : :
475 : : #define DEF_PRINTNUM_ADDR(name, type) \
476 : : bool \
477 : : printnum_addr_ ## name(struct tcb *tcp, const kernel_ulong_t addr) \
478 : : { \
479 : : type num; \
480 : : if (umove_or_printaddr(tcp, addr, &num)) \
481 : : return false; \
482 : : tprints("["); \
483 : : printaddr(num); \
484 : : tprints("]"); \
485 : : return true; \
486 : : }
487 : :
488 : : #define DEF_PRINTPAIR(name, type) \
489 : : bool \
490 : : printpair_ ## name(struct tcb *const tcp, const kernel_ulong_t addr, \
491 : : const char *const fmt) \
492 : : { \
493 : : type pair[2]; \
494 : : if (umove_or_printaddr(tcp, addr, &pair)) \
495 : : return false; \
496 : : tprints("["); \
497 : : tprintf(fmt, pair[0]); \
498 : : tprints(", "); \
499 : : tprintf(fmt, pair[1]); \
500 : : tprints("]"); \
501 : : return true; \
502 : : }
503 : :
504 [ + + ]: 5298 : DEF_PRINTNUM(int, int)
505 [ + + ]: 38 : DEF_PRINTNUM_ADDR(int, unsigned int)
506 [ + - ]: 40 : DEF_PRINTPAIR(int, int)
507 [ + - ]: 30 : DEF_PRINTNUM(short, short)
508 [ + + ]: 450 : DEF_PRINTNUM(int64, uint64_t)
509 [ + + ]: 96 : DEF_PRINTNUM_ADDR(int64, uint64_t)
510 [ + + ]: 60 : DEF_PRINTPAIR(int64, uint64_t)
511 : :
512 : : #ifndef current_wordsize
513 : : bool
514 : 79 : printnum_long_int(struct tcb *const tcp, const kernel_ulong_t addr,
515 : : const char *const fmt_long, const char *const fmt_int)
516 : : {
517 [ + + ]: 79 : if (current_wordsize > sizeof(int)) {
518 : 56 : return printnum_int64(tcp, addr, fmt_long);
519 : : } else {
520 : 23 : return printnum_int(tcp, addr, fmt_int);
521 : : }
522 : : }
523 : :
524 : : bool
525 : 47 : printnum_addr_long_int(struct tcb *tcp, const kernel_ulong_t addr)
526 : : {
527 [ + + ]: 47 : if (current_wordsize > sizeof(int)) {
528 : 32 : return printnum_addr_int64(tcp, addr);
529 : : } else {
530 : 15 : return printnum_addr_int(tcp, addr);
531 : : }
532 : : }
533 : : #endif /* !current_wordsize */
534 : :
535 : : #ifndef current_klongsize
536 : : bool
537 : 20 : printnum_addr_klong_int(struct tcb *tcp, const kernel_ulong_t addr)
538 : : {
539 [ + + ]: 20 : if (current_klongsize > sizeof(int)) {
540 : 16 : return printnum_addr_int64(tcp, addr);
541 : : } else {
542 : 4 : return printnum_addr_int(tcp, addr);
543 : : }
544 : : }
545 : : #endif /* !current_klongsize */
546 : :
547 : : const char *
548 : 206 : sprinttime(time_t t)
549 : : {
550 : : struct tm *tmp;
551 : : static char buf[sizeof(int) * 3 * 6 + sizeof("+0000")];
552 : :
553 [ + + ]: 206 : if (t == 0) {
554 : 10 : strcpy(buf, "0");
555 : 10 : return buf;
556 : : }
557 : 196 : tmp = localtime(&t);
558 [ + - ]: 196 : if (tmp)
559 : 196 : strftime(buf, sizeof(buf), "%FT%T%z", tmp);
560 : : else
561 : 0 : snprintf(buf, sizeof(buf), "%lu", (unsigned long) t);
562 : :
563 : 196 : return buf;
564 : : }
565 : :
566 : : enum sock_proto
567 : 279 : getfdproto(struct tcb *tcp, int fd)
568 : 279 : {
569 : : #ifdef HAVE_SYS_XATTR_H
570 : 279 : size_t bufsize = 256;
571 : 279 : char buf[bufsize];
572 : : ssize_t r;
573 : : char path[sizeof("/proc/%u/fd/%u") + 2 * sizeof(int)*3];
574 : :
575 [ - + ]: 279 : if (fd < 0)
576 : 0 : return SOCK_PROTO_UNKNOWN;
577 : :
578 : 279 : sprintf(path, "/proc/%u/fd/%u", tcp->pid, fd);
579 : 279 : r = getxattr(path, "system.sockprotoname", buf, bufsize - 1);
580 [ - + ]: 279 : if (r <= 0)
581 : 0 : return SOCK_PROTO_UNKNOWN;
582 : : else {
583 : : /*
584 : : * This is a protection for the case when the kernel
585 : : * side does not append a null byte to the buffer.
586 : : */
587 : 279 : buf[r] = '\0';
588 : :
589 : 279 : return get_proto_by_name(buf);
590 : : }
591 : : #else
592 : : return SOCK_PROTO_UNKNOWN;
593 : : #endif
594 : : }
595 : :
596 : : void
597 : 749713 : printfd(struct tcb *tcp, int fd)
598 : : {
599 : : char path[PATH_MAX + 1];
600 [ + + ][ + - ]: 750178 : if (show_fd_path && getfdpath(tcp, fd, path, sizeof(path)) >= 0) {
601 : : static const char socket_prefix[] = "socket:[";
602 : 465 : const size_t socket_prefix_len = sizeof(socket_prefix) - 1;
603 : 465 : const size_t path_len = strlen(path);
604 : :
605 : 465 : tprintf("%d<", fd);
606 [ + + ][ + + ]: 465 : if (show_fd_path > 1 &&
607 [ + - ]: 235 : strncmp(path, socket_prefix, socket_prefix_len) == 0 &&
608 : 235 : path[path_len - 1] == ']') {
609 : 235 : unsigned long inode =
610 : 235 : strtoul(path + socket_prefix_len, NULL, 10);
611 : :
612 [ + + ]: 235 : if (!print_sockaddr_by_inode_cached(inode)) {
613 : 115 : const enum sock_proto proto =
614 : : getfdproto(tcp, fd);
615 [ - + ]: 115 : if (!print_sockaddr_by_inode(inode, proto))
616 : 0 : tprints(path);
617 : : }
618 : : } else {
619 : 230 : print_quoted_string(path, path_len,
620 : : QUOTE_OMIT_LEADING_TRAILING_QUOTES);
621 : : }
622 : 465 : tprints(">");
623 : : } else
624 : 749248 : tprintf("%d", fd);
625 : 749713 : }
626 : :
627 : : /*
628 : : * Quote string `instr' of length `size'
629 : : * Write up to (3 + `size' * 4) bytes to `outstr' buffer.
630 : : *
631 : : * If QUOTE_0_TERMINATED `style' flag is set,
632 : : * treat `instr' as a NUL-terminated string,
633 : : * checking up to (`size' + 1) bytes of `instr'.
634 : : *
635 : : * If QUOTE_OMIT_LEADING_TRAILING_QUOTES `style' flag is set,
636 : : * do not add leading and trailing quoting symbols.
637 : : *
638 : : * Returns 0 if QUOTE_0_TERMINATED is set and NUL was seen, 1 otherwise.
639 : : * Note that if QUOTE_0_TERMINATED is not set, always returns 1.
640 : : */
641 : : int
642 : 69285 : string_quote(const char *instr, char *outstr, const unsigned int size,
643 : : const unsigned int style)
644 : : {
645 : 69285 : const unsigned char *ustr = (const unsigned char *) instr;
646 : 69285 : char *s = outstr;
647 : : unsigned int i;
648 : : int usehex, c, eol;
649 : :
650 [ + + ]: 69285 : if (style & QUOTE_0_TERMINATED)
651 : 25788 : eol = '\0';
652 : : else
653 : 43497 : eol = 0x100; /* this can never match a char */
654 : :
655 : 69285 : usehex = 0;
656 [ + + ][ + + ]: 69285 : if ((xflag > 1) || (style & QUOTE_FORCE_HEX)) {
657 : 75 : usehex = 1;
658 [ + + ]: 69210 : } else if (xflag) {
659 : : /* Check for presence of symbol which require
660 : : to hex-quote the whole string. */
661 [ + + ]: 3743 : for (i = 0; i < size; ++i) {
662 : 3688 : c = ustr[i];
663 : : /* Check for NUL-terminated string. */
664 [ - + ]: 3688 : if (c == eol)
665 : 0 : break;
666 : :
667 : : /* Force hex unless c is printable or whitespace */
668 [ + + ]: 3688 : if (c > 0x7e) {
669 : 10 : usehex = 1;
670 : 10 : break;
671 : : }
672 : : /* In ASCII isspace is only these chars: "\t\n\v\f\r".
673 : : * They happen to have ASCII codes 9,10,11,12,13.
674 : : */
675 [ + + ][ - + ]: 3678 : if (c < ' ' && (unsigned)(c - 9) >= 5) {
676 : 0 : usehex = 1;
677 : 0 : break;
678 : : }
679 : : }
680 : : }
681 : :
682 [ + + ]: 69285 : if (!(style & QUOTE_OMIT_LEADING_TRAILING_QUOTES))
683 : 69055 : *s++ = '\"';
684 : :
685 [ + + ]: 69285 : if (usehex) {
686 : : /* Hex-quote the whole string. */
687 [ + + ]: 960 : for (i = 0; i < size; ++i) {
688 : 895 : c = ustr[i];
689 : : /* Check for NUL-terminated string. */
690 [ + + ]: 895 : if (c == eol)
691 : 20 : goto asciz_ended;
692 : 875 : *s++ = '\\';
693 : 875 : *s++ = 'x';
694 : 875 : *s++ = "0123456789abcdef"[c >> 4];
695 : 875 : *s++ = "0123456789abcdef"[c & 0xf];
696 : : }
697 : : } else {
698 [ + + ]: 1385852 : for (i = 0; i < size; ++i) {
699 : 1333987 : c = ustr[i];
700 : : /* Check for NUL-terminated string. */
701 [ + + ]: 1333987 : if (c == eol)
702 : 17325 : goto asciz_ended;
703 [ + + ][ + + ]: 1316662 : if ((i == (size - 1)) &&
704 [ + + ]: 55 : (style & QUOTE_OMIT_TRAILING_0) && (c == '\0'))
705 : 10 : goto asciz_ended;
706 [ + + + + : 1316652 : switch (c) {
+ + + ]
707 : : case '\"': case '\\':
708 : 1985 : *s++ = '\\';
709 : 1985 : *s++ = c;
710 : 1985 : break;
711 : : case '\f':
712 : 200 : *s++ = '\\';
713 : 200 : *s++ = 'f';
714 : 200 : break;
715 : : case '\n':
716 : 3144 : *s++ = '\\';
717 : 3144 : *s++ = 'n';
718 : 3144 : break;
719 : : case '\r':
720 : 194 : *s++ = '\\';
721 : 194 : *s++ = 'r';
722 : 194 : break;
723 : : case '\t':
724 : 230 : *s++ = '\\';
725 : 230 : *s++ = 't';
726 : 230 : break;
727 : : case '\v':
728 : 210 : *s++ = '\\';
729 : 210 : *s++ = 'v';
730 : 210 : break;
731 : : default:
732 [ + + ][ + + ]: 1310689 : if (c >= ' ' && c <= 0x7e)
733 : 1276468 : *s++ = c;
734 : : else {
735 : : /* Print \octal */
736 : 34221 : *s++ = '\\';
737 [ + + ]: 34221 : if (i + 1 < size
738 [ + + ]: 32299 : && ustr[i + 1] >= '0'
739 [ + + ]: 2837 : && ustr[i + 1] <= '9'
740 : : ) {
741 : : /* Print \ooo */
742 : 15 : *s++ = '0' + (c >> 6);
743 : 15 : *s++ = '0' + ((c >> 3) & 0x7);
744 : : } else {
745 : : /* Print \[[o]o]o */
746 [ + + ]: 34206 : if ((c >> 3) != 0) {
747 [ + + ]: 24207 : if ((c >> 6) != 0)
748 : 2522 : *s++ = '0' + (c >> 6);
749 : 24207 : *s++ = '0' + ((c >> 3) & 0x7);
750 : : }
751 : : }
752 : 34221 : *s++ = '0' + (c & 0x7);
753 : : }
754 : 1310689 : break;
755 : : }
756 : : }
757 : : }
758 : :
759 [ + + ]: 51930 : if (!(style & QUOTE_OMIT_LEADING_TRAILING_QUOTES))
760 : 51700 : *s++ = '\"';
761 : 51930 : *s = '\0';
762 : :
763 : : /* Return zero if we printed entire ASCIZ string (didn't truncate it) */
764 [ + + ][ + + ]: 51930 : if (style & QUOTE_0_TERMINATED && ustr[i] == '\0') {
765 : : /* We didn't see NUL yet (otherwise we'd jump to 'asciz_ended')
766 : : * but next char is NUL.
767 : : */
768 : 1217 : return 0;
769 : : }
770 : :
771 : 50713 : return 1;
772 : :
773 : : asciz_ended:
774 [ + - ]: 17355 : if (!(style & QUOTE_OMIT_LEADING_TRAILING_QUOTES))
775 : 17355 : *s++ = '\"';
776 : 17355 : *s = '\0';
777 : : /* Return zero: we printed entire ASCIZ string (didn't truncate it) */
778 : 17355 : return 0;
779 : : }
780 : :
781 : : #ifndef ALLOCA_CUTOFF
782 : : # define ALLOCA_CUTOFF 4032
783 : : #endif
784 : : #define use_alloca(n) ((n) <= ALLOCA_CUTOFF)
785 : :
786 : : /*
787 : : * Quote string `str' of length `size' and print the result.
788 : : *
789 : : * If QUOTE_0_TERMINATED `style' flag is set,
790 : : * treat `str' as a NUL-terminated string and
791 : : * quote at most (`size' - 1) bytes.
792 : : *
793 : : * If QUOTE_OMIT_LEADING_TRAILING_QUOTES `style' flag is set,
794 : : * do not add leading and trailing quoting symbols.
795 : : *
796 : : * Returns 0 if QUOTE_0_TERMINATED is set and NUL was seen, 1 otherwise.
797 : : * Note that if QUOTE_0_TERMINATED is not set, always returns 1.
798 : : */
799 : : int
800 : 15864 : print_quoted_string(const char *str, unsigned int size,
801 : : const unsigned int style)
802 : : {
803 : : char *buf;
804 : : char *outstr;
805 : : unsigned int alloc_size;
806 : : int rc;
807 : :
808 [ + - ][ + + ]: 15864 : if (size && style & QUOTE_0_TERMINATED)
809 : 11428 : --size;
810 : :
811 : 15864 : alloc_size = 4 * size;
812 [ - + ]: 15864 : if (alloc_size / 4 != size) {
813 : 0 : error_msg("Out of memory");
814 : 0 : tprints("???");
815 : 0 : return -1;
816 : : }
817 [ + + ]: 15864 : alloc_size += 1 + (style & QUOTE_OMIT_LEADING_TRAILING_QUOTES ? 0 : 2);
818 : :
819 [ + + ]: 15864 : if (use_alloca(alloc_size)) {
820 : 12402 : outstr = alloca(alloc_size);
821 : 12402 : buf = NULL;
822 : : } else {
823 : 3462 : outstr = buf = malloc(alloc_size);
824 [ - + ]: 3462 : if (!buf) {
825 : 0 : error_msg("Out of memory");
826 : 0 : tprints("???");
827 : 0 : return -1;
828 : : }
829 : : }
830 : :
831 : 15864 : rc = string_quote(str, outstr, size, style);
832 : 15864 : tprints(outstr);
833 : :
834 : 15864 : free(buf);
835 : 15864 : return rc;
836 : : }
837 : :
838 : : /*
839 : : * Print path string specified by address `addr' and length `n'.
840 : : * If path length exceeds `n', append `...' to the output.
841 : : */
842 : : void
843 : 28095 : printpathn(struct tcb *const tcp, const kernel_ulong_t addr, unsigned int n)
844 : : {
845 : : char path[PATH_MAX + 1];
846 : : int nul_seen;
847 : :
848 [ + + ]: 28095 : if (!addr) {
849 : 1465 : tprints("NULL");
850 : 1465 : return;
851 : : }
852 : :
853 : : /* Cap path length to the path buffer size */
854 [ - + ]: 26630 : if (n > sizeof path - 1)
855 : 0 : n = sizeof path - 1;
856 : :
857 : : /* Fetch one byte more to find out whether path length > n. */
858 : 26630 : nul_seen = umovestr(tcp, addr, n + 1, path);
859 [ + + ]: 26630 : if (nul_seen < 0)
860 : 23360 : printaddr(addr);
861 : : else {
862 : 3270 : path[n++] = '\0';
863 : 3270 : print_quoted_string(path, n, QUOTE_0_TERMINATED);
864 [ - + ]: 3270 : if (!nul_seen)
865 : 26630 : tprints("...");
866 : : }
867 : : }
868 : :
869 : : void
870 : 28087 : printpath(struct tcb *const tcp, const kernel_ulong_t addr)
871 : : {
872 : : /* Size must correspond to char path[] size in printpathn */
873 : 28087 : printpathn(tcp, addr, PATH_MAX);
874 : 28087 : }
875 : :
876 : : /*
877 : : * Print string specified by address `addr' and length `len'.
878 : : * If `user_style' has QUOTE_0_TERMINATED bit set, treat the string
879 : : * as a NUL-terminated string.
880 : : * Pass `user_style' on to `string_quote'.
881 : : * Append `...' to the output if either the string length exceeds `max_strlen',
882 : : * or QUOTE_0_TERMINATED bit is set and the string length exceeds `len'.
883 : : */
884 : : void
885 : 65526 : printstr_ex(struct tcb *const tcp, const kernel_ulong_t addr,
886 : : const kernel_ulong_t len, const unsigned int user_style)
887 : : {
888 : : static char *str = NULL;
889 : : static char *outstr;
890 : : unsigned int size;
891 : 65526 : unsigned int style = user_style;
892 : : int rc;
893 : : int ellipsis;
894 : :
895 [ + + ]: 65526 : if (!addr) {
896 : 3961 : tprints("NULL");
897 : 3961 : return;
898 : : }
899 : : /* Allocate static buffers if they are not allocated yet. */
900 [ + + ]: 61565 : if (!str) {
901 : 2034 : unsigned int outstr_size = 4 * max_strlen + /*for quotes and NUL:*/ 3;
902 : :
903 [ - + ]: 2034 : if (outstr_size / 4 != max_strlen)
904 : 0 : die_out_of_memory();
905 : 2034 : str = xmalloc(max_strlen + 1);
906 : 2034 : outstr = xmalloc(outstr_size);
907 : : }
908 : :
909 : : /* Fetch one byte more because string_quote may look one byte ahead. */
910 : 61565 : size = max_strlen + 1;
911 : :
912 [ + + ]: 61565 : if (size > len)
913 : 39049 : size = len;
914 [ + + ]: 61565 : if (style & QUOTE_0_TERMINATED)
915 : 21060 : rc = umovestr(tcp, addr, size, str);
916 : : else
917 : 40505 : rc = umoven(tcp, addr, size, str);
918 : :
919 [ + + ]: 61565 : if (rc < 0) {
920 : 8164 : printaddr(addr);
921 : 8164 : return;
922 : : }
923 : :
924 [ + + ]: 53401 : if (size > max_strlen)
925 : 15064 : size = max_strlen;
926 : : else
927 : 38337 : str[size] = '\xff';
928 : :
929 : : /* If string_quote didn't see NUL and (it was supposed to be ASCIZ str
930 : : * or we were requested to print more than -s NUM chars)...
931 : : */
932 : 53401 : ellipsis = string_quote(str, outstr, size, style)
933 [ + + ]: 41642 : && len
934 [ + + ][ + + ]: 133369 : && ((style & QUOTE_0_TERMINATED)
935 [ + + ]: 38326 : || len > max_strlen);
936 : :
937 : 53401 : tprints(outstr);
938 [ + + ]: 53401 : if (ellipsis)
939 : 3415 : tprints("...");
940 : : }
941 : :
942 : : void
943 : 220 : dumpiov_upto(struct tcb *const tcp, const int len, const kernel_ulong_t addr,
944 : : kernel_ulong_t data_size)
945 : : {
946 : : #if ANY_WORDSIZE_LESS_THAN_KERNEL_LONG
947 : : union {
948 : : struct { uint32_t base; uint32_t len; } *iov32;
949 : : struct { uint64_t base; uint64_t len; } *iov64;
950 : : } iovu;
951 : : #define iov iovu.iov64
952 : : #define sizeof_iov \
953 : : (current_wordsize == 4 ? sizeof(*iovu.iov32) : sizeof(*iovu.iov64))
954 : : #define iov_iov_base(i) \
955 : : (current_wordsize == 4 ? (uint64_t) iovu.iov32[i].base : iovu.iov64[i].base)
956 : : #define iov_iov_len(i) \
957 : : (current_wordsize == 4 ? (uint64_t) iovu.iov32[i].len : iovu.iov64[i].len)
958 : : #else
959 : : struct iovec *iov;
960 : : #define sizeof_iov sizeof(*iov)
961 : : #define iov_iov_base(i) ptr_to_kulong(iov[i].iov_base)
962 : : #define iov_iov_len(i) iov[i].iov_len
963 : : #endif
964 : : int i;
965 : : unsigned size;
966 : :
967 [ + + ]: 220 : size = sizeof_iov * len;
968 : : /* Assuming no sane program has millions of iovs */
969 [ + - ]: 220 : if ((unsigned)len > 1024*1024 /* insane or negative size? */
970 [ - + ]: 220 : || (iov = malloc(size)) == NULL) {
971 : 0 : error_msg("Out of memory");
972 : 0 : return;
973 : : }
974 [ + - ]: 220 : if (umoven(tcp, addr, size, iov) >= 0) {
975 [ + + ]: 510 : for (i = 0; i < len; i++) {
976 [ + + ]: 345 : kernel_ulong_t iov_len = iov_iov_len(i);
977 [ + + ]: 345 : if (iov_len > data_size)
978 : 110 : iov_len = data_size;
979 [ + + ]: 345 : if (!iov_len)
980 : 55 : break;
981 : 290 : data_size -= iov_len;
982 : : /* include the buffer number to make it easy to
983 : : * match up the trace with the source */
984 : 290 : tprintf(" * %" PRI_klu " bytes in buffer %d\n", iov_len, i);
985 [ + + ]: 290 : dumpstr(tcp, iov_iov_base(i), iov_len);
986 : : }
987 : : }
988 : 220 : free(iov);
989 : : #undef sizeof_iov
990 : : #undef iov_iov_base
991 : : #undef iov_iov_len
992 : : #undef iov
993 : : }
994 : :
995 : : void
996 : 1032 : dumpstr(struct tcb *const tcp, const kernel_ulong_t addr, const int len)
997 : : {
998 : : static int strsize = -1;
999 : : static unsigned char *str;
1000 : :
1001 : : char outbuf[
1002 : : (
1003 : : (sizeof(
1004 : : "xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx "
1005 : : "1234567890123456") + /*in case I'm off by few:*/ 4)
1006 : : /*align to 8 to make memset easier:*/ + 7) & -8
1007 : : ];
1008 : : const unsigned char *src;
1009 : : int i;
1010 : :
1011 : 1032 : memset(outbuf, ' ', sizeof(outbuf));
1012 : :
1013 [ + + ]: 1032 : if (strsize < len + 16) {
1014 : 451 : free(str);
1015 : 451 : str = malloc(len + 16);
1016 [ - + ]: 451 : if (!str) {
1017 : 0 : strsize = -1;
1018 : 0 : error_msg("Out of memory");
1019 : 0 : return;
1020 : : }
1021 : 451 : strsize = len + 16;
1022 : : }
1023 : :
1024 [ - + ]: 1032 : if (umoven(tcp, addr, len, str) < 0)
1025 : 0 : return;
1026 : :
1027 : : /* Space-pad to 16 bytes */
1028 : 1032 : i = len;
1029 [ + + ]: 9079 : while (i & 0xf)
1030 : 8047 : str[i++] = ' ';
1031 : :
1032 : 1032 : i = 0;
1033 : 1032 : src = str;
1034 [ + + ]: 2386 : while (i < len) {
1035 : 1354 : char *dst = outbuf;
1036 : : /* Hex dump */
1037 : : do {
1038 [ + + ]: 21664 : if (i < len) {
1039 : 13617 : *dst++ = "0123456789abcdef"[*src >> 4];
1040 : 13617 : *dst++ = "0123456789abcdef"[*src & 0xf];
1041 : : }
1042 : : else {
1043 : 8047 : *dst++ = ' ';
1044 : 8047 : *dst++ = ' ';
1045 : : }
1046 : 21664 : dst++; /* space is there by memset */
1047 : 21664 : i++;
1048 [ + + ]: 21664 : if ((i & 7) == 0)
1049 : 2708 : dst++; /* space is there by memset */
1050 : 21664 : src++;
1051 [ + + ]: 21664 : } while (i & 0xf);
1052 : : /* ASCII dump */
1053 : 1354 : i -= 16;
1054 : 1354 : src -= 16;
1055 : : do {
1056 [ + + ][ + + ]: 21664 : if (*src >= ' ' && *src < 0x7f)
1057 : 10384 : *dst++ = *src;
1058 : : else
1059 : 11280 : *dst++ = '.';
1060 : 21664 : src++;
1061 [ + + ]: 21664 : } while (++i & 0xf);
1062 : 1354 : *dst = '\0';
1063 : 1354 : tprintf(" | %05x %s |\n", i - 16, outbuf);
1064 : : }
1065 : : }
1066 : :
1067 : : static bool process_vm_readv_not_supported = 0;
1068 : : #ifndef HAVE_PROCESS_VM_READV
1069 : : /*
1070 : : * Need to do this since process_vm_readv() is not yet available in libc.
1071 : : * When libc is be updated, only "static bool process_vm_readv_not_supported"
1072 : : * line should remain.
1073 : : */
1074 : : /* Have to avoid duplicating with the C library headers. */
1075 : : static ssize_t strace_process_vm_readv(pid_t pid,
1076 : : const struct iovec *lvec,
1077 : : unsigned long liovcnt,
1078 : : const struct iovec *rvec,
1079 : : unsigned long riovcnt,
1080 : : unsigned long flags)
1081 : : {
1082 : : return syscall(__NR_process_vm_readv, (long)pid, lvec, liovcnt, rvec, riovcnt, flags);
1083 : : }
1084 : : # define process_vm_readv strace_process_vm_readv
1085 : : #endif /* !HAVE_PROCESS_VM_READV */
1086 : :
1087 : : static ssize_t
1088 : 614428 : vm_read_mem(const pid_t pid, void *const laddr,
1089 : : const kernel_ulong_t raddr, const size_t len)
1090 : : {
1091 : 614428 : const unsigned long truncated_raddr = raddr;
1092 : :
1093 [ - + ]: 614428 : if (raddr != (kernel_ulong_t) truncated_raddr) {
1094 : 0 : errno = EIO;
1095 : 0 : return -1;
1096 : : }
1097 : :
1098 : 614428 : const struct iovec local = {
1099 : : .iov_base = laddr,
1100 : : .iov_len = len
1101 : : };
1102 : 614428 : const struct iovec remote = {
1103 : 614428 : .iov_base = (void *) truncated_raddr,
1104 : : .iov_len = len
1105 : : };
1106 : :
1107 : 614428 : return process_vm_readv(pid, &local, 1, &remote, 1, 0);
1108 : : }
1109 : :
1110 : : /*
1111 : : * move `len' bytes of data from process `pid'
1112 : : * at address `addr' to our space at `our_addr'
1113 : : */
1114 : : int
1115 : 540122 : umoven(struct tcb *const tcp, kernel_ulong_t addr, unsigned int len,
1116 : : void *const our_addr)
1117 : : {
1118 : 540122 : char *laddr = our_addr;
1119 : 540122 : int pid = tcp->pid;
1120 : : unsigned int n, m, nread;
1121 : : union {
1122 : : long val;
1123 : : char x[sizeof(long)];
1124 : : } u;
1125 : :
1126 : : #if ANY_WORDSIZE_LESS_THAN_KERNEL_LONG
1127 [ + + ]: 540122 : if (current_wordsize < sizeof(addr)
1128 [ - + ]: 111014 : && (addr & (~ (kernel_ulong_t) -1U))) {
1129 : 0 : return -1;
1130 : : }
1131 : : #endif
1132 : :
1133 [ + - ]: 540122 : if (!process_vm_readv_not_supported) {
1134 : 540122 : int r = vm_read_mem(pid, laddr, addr, len);
1135 [ + + ]: 540122 : if ((unsigned int) r == len)
1136 : 536901 : return 0;
1137 [ + + ]: 3221 : if (r >= 0) {
1138 : 816 : error_msg("umoven: short read (%u < %u) @0x%" PRI_klx,
1139 : : (unsigned int) r, len, addr);
1140 : 816 : return -1;
1141 : : }
1142 [ - - - + : 2405 : switch (errno) {
- ]
1143 : : case ENOSYS:
1144 : 0 : process_vm_readv_not_supported = 1;
1145 : 0 : break;
1146 : : case EPERM:
1147 : : /* operation not permitted, try PTRACE_PEEKDATA */
1148 : 0 : break;
1149 : : case ESRCH:
1150 : : /* the process is gone */
1151 : 0 : return -1;
1152 : : case EFAULT: case EIO:
1153 : : /* address space is inaccessible */
1154 : 2405 : return -1;
1155 : : default:
1156 : : /* all the rest is strange and should be reported */
1157 : 0 : perror_msg("process_vm_readv");
1158 : 0 : return -1;
1159 : : }
1160 : : }
1161 : :
1162 : 0 : nread = 0;
1163 [ # # ]: 0 : if (addr & (sizeof(long) - 1)) {
1164 : : /* addr not a multiple of sizeof(long) */
1165 : 0 : n = addr & (sizeof(long) - 1); /* residue */
1166 : 0 : addr &= -sizeof(long); /* aligned address */
1167 : 0 : errno = 0;
1168 : 0 : u.val = ptrace(PTRACE_PEEKDATA, pid, addr, 0);
1169 [ # # # # ]: 0 : switch (errno) {
1170 : : case 0:
1171 : 0 : break;
1172 : : case ESRCH: case EINVAL:
1173 : : /* these could be seen if the process is gone */
1174 : 0 : return -1;
1175 : : case EFAULT: case EIO: case EPERM:
1176 : : /* address space is inaccessible */
1177 : 0 : return -1;
1178 : : default:
1179 : : /* all the rest is strange and should be reported */
1180 : 0 : perror_msg("umoven: PTRACE_PEEKDATA pid:%d @0x%" PRI_klx,
1181 : : pid, addr);
1182 : 0 : return -1;
1183 : : }
1184 : 0 : m = MIN(sizeof(long) - n, len);
1185 : 0 : memcpy(laddr, &u.x[n], m);
1186 : 0 : addr += sizeof(long);
1187 : 0 : laddr += m;
1188 : 0 : nread += m;
1189 : 0 : len -= m;
1190 : : }
1191 [ # # ]: 0 : while (len) {
1192 : 0 : errno = 0;
1193 : 0 : u.val = ptrace(PTRACE_PEEKDATA, pid, addr, 0);
1194 [ # # # # ]: 0 : switch (errno) {
1195 : : case 0:
1196 : 0 : break;
1197 : : case ESRCH: case EINVAL:
1198 : : /* these could be seen if the process is gone */
1199 : 0 : return -1;
1200 : : case EFAULT: case EIO: case EPERM:
1201 : : /* address space is inaccessible */
1202 [ # # ]: 0 : if (nread) {
1203 : 0 : perror_msg("umoven: short read (%u < %u) @0x%" PRI_klx,
1204 : : nread, nread + len, addr - nread);
1205 : : }
1206 : 0 : return -1;
1207 : : default:
1208 : : /* all the rest is strange and should be reported */
1209 : 0 : perror_msg("umoven: PTRACE_PEEKDATA pid:%d @0x%" PRI_klx,
1210 : : pid, addr);
1211 : 0 : return -1;
1212 : : }
1213 : 0 : m = MIN(sizeof(long), len);
1214 : 0 : memcpy(laddr, u.x, m);
1215 : 0 : addr += sizeof(long);
1216 : 0 : laddr += m;
1217 : 0 : nread += m;
1218 : 0 : len -= m;
1219 : : }
1220 : :
1221 : 540122 : return 0;
1222 : : }
1223 : :
1224 : : int
1225 : 45692 : umoven_or_printaddr(struct tcb *const tcp, const kernel_ulong_t addr,
1226 : : const unsigned int len, void *const our_addr)
1227 : : {
1228 [ + + ][ + + ]: 86163 : if (!addr || !verbose(tcp) || (exiting(tcp) && syserror(tcp)) ||
[ + + ]
[ + + + + ]
1229 : 40471 : umoven(tcp, addr, len, our_addr) < 0) {
1230 : 6476 : printaddr(addr);
1231 : 6476 : return -1;
1232 : : }
1233 : 39216 : return 0;
1234 : : }
1235 : :
1236 : : int
1237 : 36666 : umoven_or_printaddr_ignore_syserror(struct tcb *const tcp,
1238 : : const kernel_ulong_t addr,
1239 : : const unsigned int len,
1240 : : void *const our_addr)
1241 : : {
1242 [ + - ][ + - ]: 36666 : if (!addr || !verbose(tcp) || umoven(tcp, addr, len, our_addr) < 0) {
[ + + ]
1243 : 252 : printaddr(addr);
1244 : 252 : return -1;
1245 : : }
1246 : 36414 : return 0;
1247 : : }
1248 : :
1249 : : /*
1250 : : * Like `umove' but make the additional effort of looking
1251 : : * for a terminating zero byte.
1252 : : *
1253 : : * Returns < 0 on error, > 0 if NUL was seen,
1254 : : * (TODO if useful: return count of bytes including NUL),
1255 : : * else 0 if len bytes were read but no NUL byte seen.
1256 : : *
1257 : : * Note: there is no guarantee we won't overwrite some bytes
1258 : : * in laddr[] _after_ terminating NUL (but, of course,
1259 : : * we never write past laddr[len-1]).
1260 : : */
1261 : : int
1262 : 48992 : umovestr(struct tcb *const tcp, kernel_ulong_t addr, unsigned int len, char *laddr)
1263 : : {
1264 : 48992 : const unsigned long x01010101 = (unsigned long) 0x0101010101010101ULL;
1265 : 48992 : const unsigned long x80808080 = (unsigned long) 0x8080808080808080ULL;
1266 : :
1267 : 48992 : int pid = tcp->pid;
1268 : : unsigned int n, m, nread;
1269 : : union {
1270 : : unsigned long val;
1271 : : char x[sizeof(long)];
1272 : : } u;
1273 : :
1274 : : #if ANY_WORDSIZE_LESS_THAN_KERNEL_LONG
1275 [ + + ]: 48992 : if (current_wordsize < sizeof(addr)
1276 [ - + ]: 8856 : && (addr & (~ (kernel_ulong_t) -1U))) {
1277 : 0 : return -1;
1278 : : }
1279 : : #endif
1280 : :
1281 : 48992 : nread = 0;
1282 [ + - ]: 48992 : if (!process_vm_readv_not_supported) {
1283 : 48992 : const size_t page_size = get_pagesize();
1284 : 48992 : const size_t page_mask = page_size - 1;
1285 : :
1286 [ + + ]: 76897 : while (len > 0) {
1287 : : unsigned int chunk_len;
1288 : : unsigned int end_in_page;
1289 : :
1290 : : /*
1291 : : * Don't cross pages, otherwise we can get EFAULT
1292 : : * and fail to notice that terminating NUL lies
1293 : : * in the existing (first) page.
1294 : : */
1295 : 74306 : chunk_len = len > page_size ? page_size : len;
1296 : 74306 : end_in_page = (addr + chunk_len) & page_mask;
1297 [ + + ]: 74306 : if (chunk_len > end_in_page) /* crosses to the next page */
1298 : 31872 : chunk_len -= end_in_page;
1299 : :
1300 : 74306 : int r = vm_read_mem(pid, laddr, addr, chunk_len);
1301 [ + + ]: 74306 : if (r > 0) {
1302 [ + + ]: 44226 : if (memchr(laddr, '\0', r))
1303 : 16321 : return 1;
1304 : 27905 : addr += r;
1305 : 27905 : laddr += r;
1306 : 27905 : nread += r;
1307 : 27905 : len -= r;
1308 : 27905 : continue;
1309 : : }
1310 [ - - - + : 30080 : switch (errno) {
- ]
1311 : : case ENOSYS:
1312 : 0 : process_vm_readv_not_supported = 1;
1313 : 0 : goto vm_readv_didnt_work;
1314 : : case ESRCH:
1315 : : /* the process is gone */
1316 : 0 : return -1;
1317 : : case EPERM:
1318 : : /* operation not permitted, try PTRACE_PEEKDATA */
1319 [ # # ]: 0 : if (!nread)
1320 : 0 : goto vm_readv_didnt_work;
1321 : : /* fall through */
1322 : : case EFAULT: case EIO:
1323 : : /* address space is inaccessible */
1324 [ + + ]: 30080 : if (nread) {
1325 : 25230 : perror_msg("umovestr: short read (%d < %d) @0x%" PRI_klx,
1326 : : nread, nread + len, addr - nread);
1327 : : }
1328 : 30080 : return -1;
1329 : : default:
1330 : : /* all the rest is strange and should be reported */
1331 : 0 : perror_msg("process_vm_readv");
1332 : 0 : return -1;
1333 : : }
1334 : : }
1335 : 2591 : return 0;
1336 : : }
1337 : : vm_readv_didnt_work:
1338 : :
1339 [ # # ]: 0 : if (addr & (sizeof(long) - 1)) {
1340 : : /* addr not a multiple of sizeof(long) */
1341 : 0 : n = addr & (sizeof(long) - 1); /* residue */
1342 : 0 : addr &= -sizeof(long); /* aligned address */
1343 : 0 : errno = 0;
1344 : 0 : u.val = ptrace(PTRACE_PEEKDATA, pid, addr, 0);
1345 [ # # # # ]: 0 : switch (errno) {
1346 : : case 0:
1347 : 0 : break;
1348 : : case ESRCH: case EINVAL:
1349 : : /* these could be seen if the process is gone */
1350 : 0 : return -1;
1351 : : case EFAULT: case EIO: case EPERM:
1352 : : /* address space is inaccessible */
1353 : 0 : return -1;
1354 : : default:
1355 : : /* all the rest is strange and should be reported */
1356 : 0 : perror_msg("umovestr: PTRACE_PEEKDATA pid:%d @0x%" PRI_klx,
1357 : : pid, addr);
1358 : 0 : return -1;
1359 : : }
1360 : 0 : m = MIN(sizeof(long) - n, len);
1361 : 0 : memcpy(laddr, &u.x[n], m);
1362 [ # # ]: 0 : while (n & (sizeof(long) - 1))
1363 [ # # ]: 0 : if (u.x[n++] == '\0')
1364 : 0 : return 1;
1365 : 0 : addr += sizeof(long);
1366 : 0 : laddr += m;
1367 : 0 : nread += m;
1368 : 0 : len -= m;
1369 : : }
1370 : :
1371 [ # # ]: 0 : while (len) {
1372 : 0 : errno = 0;
1373 : 0 : u.val = ptrace(PTRACE_PEEKDATA, pid, addr, 0);
1374 [ # # # # ]: 0 : switch (errno) {
1375 : : case 0:
1376 : 0 : break;
1377 : : case ESRCH: case EINVAL:
1378 : : /* these could be seen if the process is gone */
1379 : 0 : return -1;
1380 : : case EFAULT: case EIO: case EPERM:
1381 : : /* address space is inaccessible */
1382 [ # # ]: 0 : if (nread) {
1383 : 0 : perror_msg("umovestr: short read (%d < %d) @0x%" PRI_klx,
1384 : : nread, nread + len, addr - nread);
1385 : : }
1386 : 0 : return -1;
1387 : : default:
1388 : : /* all the rest is strange and should be reported */
1389 : 0 : perror_msg("umovestr: PTRACE_PEEKDATA pid:%d @0x%" PRI_klx,
1390 : : pid, addr);
1391 : 0 : return -1;
1392 : : }
1393 : 0 : m = MIN(sizeof(long), len);
1394 : 0 : memcpy(laddr, u.x, m);
1395 : : /* "If a NUL char exists in this word" */
1396 [ # # ]: 0 : if ((u.val - x01010101) & ~u.val & x80808080)
1397 : 0 : return 1;
1398 : 0 : addr += sizeof(long);
1399 : 0 : laddr += m;
1400 : 0 : nread += m;
1401 : 0 : len -= m;
1402 : : }
1403 : 48992 : return 0;
1404 : : }
1405 : :
1406 : : /*
1407 : : * Iteratively fetch and print up to nmemb elements of elem_size size
1408 : : * from the array that starts at tracee's address start_addr.
1409 : : *
1410 : : * Array elements are being fetched to the address specified by elem_buf.
1411 : : *
1412 : : * The fetcher callback function specified by umoven_func should follow
1413 : : * the same semantics as umoven_or_printaddr function.
1414 : : *
1415 : : * The printer callback function specified by print_func is expected
1416 : : * to print something; if it returns false, no more iterations will be made.
1417 : : *
1418 : : * The pointer specified by opaque_data is passed to each invocation
1419 : : * of print_func callback function.
1420 : : *
1421 : : * This function prints:
1422 : : * - "NULL", if start_addr is NULL;
1423 : : * - "[]", if nmemb is 0;
1424 : : * - start_addr, if nmemb * elem_size overflows or wraps around;
1425 : : * - nothing, if the first element cannot be fetched
1426 : : * (if umoven_func returns non-zero), but it is assumed that
1427 : : * umoven_func has printed the address it failed to fetch data from;
1428 : : * - elements of the array, delimited by ", ", with the array itself
1429 : : * enclosed with [] brackets.
1430 : : *
1431 : : * If abbrev(tcp) is true, then
1432 : : * - the maximum number of elements printed equals to max_strlen;
1433 : : * - "..." is printed instead of max_strlen+1 element
1434 : : * and no more iterations will be made.
1435 : : *
1436 : : * This function returns true only if
1437 : : * - umoven_func has been called at least once AND
1438 : : * - umoven_func has not returned false.
1439 : : */
1440 : : bool
1441 : 212449 : print_array(struct tcb *const tcp,
1442 : : const kernel_ulong_t start_addr,
1443 : : const size_t nmemb,
1444 : : void *const elem_buf,
1445 : : const size_t elem_size,
1446 : : int (*const umoven_func)(struct tcb *,
1447 : : kernel_ulong_t,
1448 : : unsigned int,
1449 : : void *),
1450 : : bool (*const print_func)(struct tcb *,
1451 : : void *elem_buf,
1452 : : size_t elem_size,
1453 : : void *opaque_data),
1454 : : void *const opaque_data)
1455 : : {
1456 [ + + ]: 212449 : if (!start_addr) {
1457 : 175508 : tprints("NULL");
1458 : 175508 : return false;
1459 : : }
1460 : :
1461 [ + + ]: 36941 : if (!nmemb) {
1462 : 176 : tprints("[]");
1463 : 176 : return false;
1464 : : }
1465 : :
1466 : 36765 : const size_t size = nmemb * elem_size;
1467 : 36765 : const kernel_ulong_t end_addr = start_addr + size;
1468 : :
1469 [ + + ][ + + ]: 36765 : if (end_addr <= start_addr || size / elem_size != nmemb) {
1470 : 68 : printaddr(start_addr);
1471 : 68 : return false;
1472 : : }
1473 : :
1474 : 36697 : const kernel_ulong_t abbrev_end =
1475 [ + + ]: 24952 : (abbrev(tcp) && max_strlen < nmemb) ?
1476 [ + + ]: 61649 : start_addr + elem_size * max_strlen : end_addr;
1477 : : kernel_ulong_t cur;
1478 : :
1479 [ + + ]: 107460 : for (cur = start_addr; cur < end_addr; cur += elem_size) {
1480 [ + + ]: 71696 : if (cur != start_addr)
1481 : 34999 : tprints(", ");
1482 : :
1483 [ + + ]: 71696 : if (umoven_func(tcp, cur, elem_size, elem_buf))
1484 : 640 : break;
1485 : :
1486 [ + + ]: 71056 : if (cur == start_addr)
1487 : 36334 : tprints("[");
1488 : :
1489 [ + + ]: 71056 : if (cur >= abbrev_end) {
1490 : 273 : tprints("...");
1491 : 273 : cur = end_addr;
1492 : 273 : break;
1493 : : }
1494 : :
1495 [ + + ]: 70783 : if (!print_func(tcp, elem_buf, elem_size, opaque_data)) {
1496 : 20 : cur = end_addr;
1497 : 20 : break;
1498 : : }
1499 : : }
1500 [ + + ]: 36697 : if (cur != start_addr)
1501 : 36334 : tprints("]");
1502 : :
1503 : 36697 : return cur >= end_addr;
1504 : : }
1505 : :
1506 : : int
1507 : 8257 : printargs(struct tcb *tcp)
1508 : : {
1509 : 8257 : const int n = tcp->s_ent->nargs;
1510 : : int i;
1511 [ + + ]: 32944 : for (i = 0; i < n; ++i)
1512 [ + + ]: 24687 : tprintf("%s%#" PRI_klx, i ? ", " : "", tcp->u_arg[i]);
1513 : 8257 : return RVAL_DECODED;
1514 : : }
1515 : :
1516 : : int
1517 : 5 : printargs_u(struct tcb *tcp)
1518 : : {
1519 : 5 : const int n = tcp->s_ent->nargs;
1520 : : int i;
1521 [ + + ]: 10 : for (i = 0; i < n; ++i)
1522 [ - + ]: 5 : tprintf("%s%u", i ? ", " : "",
1523 : 5 : (unsigned int) tcp->u_arg[i]);
1524 : 5 : return RVAL_DECODED;
1525 : : }
1526 : :
1527 : : int
1528 : 90 : printargs_d(struct tcb *tcp)
1529 : : {
1530 : 90 : const int n = tcp->s_ent->nargs;
1531 : : int i;
1532 [ + + ]: 185 : for (i = 0; i < n; ++i)
1533 [ + + ]: 95 : tprintf("%s%d", i ? ", " : "",
1534 : 95 : (int) tcp->u_arg[i]);
1535 : 90 : return RVAL_DECODED;
1536 : : }
1537 : :
1538 : : #if defined _LARGEFILE64_SOURCE && defined HAVE_OPEN64
1539 : : # define open_file open64
1540 : : #else
1541 : : # define open_file open
1542 : : #endif
1543 : :
1544 : : int
1545 : 20 : read_int_from_file(const char *const fname, int *const pvalue)
1546 : : {
1547 : 20 : const int fd = open_file(fname, O_RDONLY);
1548 [ - + ]: 20 : if (fd < 0)
1549 : 0 : return -1;
1550 : :
1551 : : long lval;
1552 : : char buf[sizeof(lval) * 3];
1553 : 20 : int n = read(fd, buf, sizeof(buf) - 1);
1554 : 20 : int saved_errno = errno;
1555 : 20 : close(fd);
1556 : :
1557 [ - + ]: 20 : if (n < 0) {
1558 : 0 : errno = saved_errno;
1559 : 0 : return -1;
1560 : : }
1561 : :
1562 : 20 : buf[n] = '\0';
1563 : 20 : char *endptr = 0;
1564 : 20 : errno = 0;
1565 : 20 : lval = strtol(buf, &endptr, 10);
1566 [ + - ][ + - ]: 20 : if (!endptr || (*endptr && '\n' != *endptr)
[ + - ]
1567 : : #if INT_MAX < LONG_MAX
1568 [ + - ][ + - ]: 20 : || lval > INT_MAX || lval < INT_MIN
1569 : : #endif
1570 [ - + ]: 20 : || ERANGE == errno) {
1571 [ # # ]: 0 : if (!errno)
1572 : 0 : errno = EINVAL;
1573 : 0 : return -1;
1574 : : }
1575 : :
1576 : 20 : *pvalue = (int) lval;
1577 : 20 : return 0;
1578 : : }
|