Dmitry V. Levin | a367db8 | 2015-11-19 18:13:53 +0000 | [diff] [blame] | 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) 2005-2015 Dmitry V. Levin <ldv@altlinux.org> |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame] | 7 | * Copyright (c) 2014-2017 The strace developers. |
Dmitry V. Levin | a367db8 | 2015-11-19 18:13:53 +0000 | [diff] [blame] | 8 | * All rights reserved. |
| 9 | * |
| 10 | * Redistribution and use in source and binary forms, with or without |
| 11 | * modification, are permitted provided that the following conditions |
| 12 | * are met: |
| 13 | * 1. Redistributions of source code must retain the above copyright |
| 14 | * notice, this list of conditions and the following disclaimer. |
| 15 | * 2. Redistributions in binary form must reproduce the above copyright |
| 16 | * notice, this list of conditions and the following disclaimer in the |
| 17 | * documentation and/or other materials provided with the distribution. |
| 18 | * 3. The name of the author may not be used to endorse or promote products |
| 19 | * derived from this software without specific prior written permission. |
| 20 | * |
| 21 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 22 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 23 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 24 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 25 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 26 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 27 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 28 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 29 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 30 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 | */ |
| 32 | |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 33 | #include "defs.h" |
Dmitry V. Levin | a367db8 | 2015-11-19 18:13:53 +0000 | [diff] [blame] | 34 | |
| 35 | #include DEF_MPERS_TYPE(kernel_dirent) |
| 36 | |
Dmitry V. Levin | a367db8 | 2015-11-19 18:13:53 +0000 | [diff] [blame] | 37 | #include MPERS_DEFS |
| 38 | |
| 39 | #define D_NAME_LEN_MAX 256 |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 40 | |
| 41 | static void |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 42 | print_old_dirent(struct tcb *const tcp, const kernel_ulong_t addr) |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 43 | { |
Dmitry V. Levin | a367db8 | 2015-11-19 18:13:53 +0000 | [diff] [blame] | 44 | kernel_dirent d; |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 45 | |
Dmitry V. Levin | 3ef5021 | 2015-07-20 15:42:22 +0000 | [diff] [blame] | 46 | if (umove_or_printaddr(tcp, addr, &d)) |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 47 | return; |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 48 | |
Dmitry V. Levin | e67c8e4 | 2015-12-16 00:07:16 +0000 | [diff] [blame] | 49 | tprintf("{d_ino=%llu, d_off=%llu, d_reclen=%u, d_name=", |
Dmitry V. Levin | 031fc80 | 2016-08-23 00:24:10 +0000 | [diff] [blame] | 50 | zero_extend_signed_to_ull(d.d_ino), |
| 51 | zero_extend_signed_to_ull(d.d_off), d.d_reclen); |
Dmitry V. Levin | c929771 | 2015-01-25 00:04:20 +0000 | [diff] [blame] | 52 | if (d.d_reclen > D_NAME_LEN_MAX) |
| 53 | d.d_reclen = D_NAME_LEN_MAX; |
Dmitry V. Levin | a367db8 | 2015-11-19 18:13:53 +0000 | [diff] [blame] | 54 | printpathn(tcp, addr + offsetof(kernel_dirent, d_name), d.d_reclen); |
Dmitry V. Levin | c929771 | 2015-01-25 00:04:20 +0000 | [diff] [blame] | 55 | tprints("}"); |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 56 | } |
| 57 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 58 | SYS_FUNC(readdir) |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 59 | { |
| 60 | if (entering(tcp)) { |
| 61 | printfd(tcp, tcp->u_arg[0]); |
| 62 | tprints(", "); |
| 63 | } else { |
Dmitry V. Levin | 3ef5021 | 2015-07-20 15:42:22 +0000 | [diff] [blame] | 64 | if (tcp->u_rval == 0) |
| 65 | printaddr(tcp->u_arg[1]); |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 66 | else |
| 67 | print_old_dirent(tcp, tcp->u_arg[1]); |
| 68 | /* Not much point in printing this out, it is always 1. */ |
| 69 | if (tcp->u_arg[2] != 1) |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 70 | tprintf(", %" PRI_klu, tcp->u_arg[2]); |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 71 | } |
| 72 | return 0; |
| 73 | } |
| 74 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 75 | SYS_FUNC(getdents) |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 76 | { |
| 77 | unsigned int i, len, dents = 0; |
Dmitry V. Levin | 7fb984e | 2016-05-16 21:35:07 +0000 | [diff] [blame] | 78 | unsigned char *buf; |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 79 | |
| 80 | if (entering(tcp)) { |
| 81 | printfd(tcp, tcp->u_arg[0]); |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 82 | return 0; |
| 83 | } |
Dmitry V. Levin | f443fd4 | 2016-04-26 22:38:10 +0000 | [diff] [blame] | 84 | |
| 85 | const unsigned int count = tcp->u_arg[2]; |
| 86 | |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 87 | if (syserror(tcp) || !verbose(tcp)) { |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame] | 88 | tprints(", "); |
Dmitry V. Levin | 3ef5021 | 2015-07-20 15:42:22 +0000 | [diff] [blame] | 89 | printaddr(tcp->u_arg[1]); |
Dmitry V. Levin | f443fd4 | 2016-04-26 22:38:10 +0000 | [diff] [blame] | 90 | tprintf(", %u", count); |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 91 | return 0; |
| 92 | } |
| 93 | |
| 94 | /* Beware of insanely large or too small values in tcp->u_rval */ |
| 95 | if (tcp->u_rval > 1024*1024) |
| 96 | len = 1024*1024; |
Dmitry V. Levin | a367db8 | 2015-11-19 18:13:53 +0000 | [diff] [blame] | 97 | else if (tcp->u_rval < (int) sizeof(kernel_dirent)) |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 98 | len = 0; |
| 99 | else |
| 100 | len = tcp->u_rval; |
| 101 | |
| 102 | if (len) { |
Dmitry V. Levin | 3ef5021 | 2015-07-20 15:42:22 +0000 | [diff] [blame] | 103 | buf = malloc(len); |
| 104 | if (!buf || umoven(tcp, tcp->u_arg[1], len, buf) < 0) { |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame] | 105 | tprints(", "); |
Dmitry V. Levin | 3ef5021 | 2015-07-20 15:42:22 +0000 | [diff] [blame] | 106 | printaddr(tcp->u_arg[1]); |
Dmitry V. Levin | f443fd4 | 2016-04-26 22:38:10 +0000 | [diff] [blame] | 107 | tprintf(", %u", count); |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 108 | free(buf); |
| 109 | return 0; |
| 110 | } |
| 111 | } else { |
| 112 | buf = NULL; |
| 113 | } |
| 114 | |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame] | 115 | tprints(","); |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 116 | if (!abbrev(tcp)) |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame] | 117 | tprints(" ["); |
Dmitry V. Levin | a367db8 | 2015-11-19 18:13:53 +0000 | [diff] [blame] | 118 | for (i = 0; len && i <= len - sizeof(kernel_dirent); ) { |
| 119 | kernel_dirent *d = (kernel_dirent *) &buf[i]; |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 120 | |
| 121 | if (!abbrev(tcp)) { |
Dmitry V. Levin | a367db8 | 2015-11-19 18:13:53 +0000 | [diff] [blame] | 122 | int oob = d->d_reclen < sizeof(kernel_dirent) || |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 123 | i + d->d_reclen - 1 >= len; |
| 124 | int d_name_len = oob ? len - i : d->d_reclen; |
Dmitry V. Levin | a367db8 | 2015-11-19 18:13:53 +0000 | [diff] [blame] | 125 | d_name_len -= offsetof(kernel_dirent, d_name) + 1; |
Dmitry V. Levin | c929771 | 2015-01-25 00:04:20 +0000 | [diff] [blame] | 126 | if (d_name_len > D_NAME_LEN_MAX) |
| 127 | d_name_len = D_NAME_LEN_MAX; |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 128 | |
Dmitry V. Levin | e67c8e4 | 2015-12-16 00:07:16 +0000 | [diff] [blame] | 129 | tprintf("%s{d_ino=%llu, d_off=%llu, d_reclen=%u" |
Dmitry V. Levin | bdb07e3 | 2015-11-27 01:51:22 +0000 | [diff] [blame] | 130 | ", d_name=", i ? ", " : "", |
Dmitry V. Levin | 031fc80 | 2016-08-23 00:24:10 +0000 | [diff] [blame] | 131 | zero_extend_signed_to_ull(d->d_ino), |
| 132 | zero_extend_signed_to_ull(d->d_off), |
| 133 | d->d_reclen); |
Dmitry V. Levin | c929771 | 2015-01-25 00:04:20 +0000 | [diff] [blame] | 134 | |
Elliott Hughes | 77c3ff8 | 2017-09-08 17:11:00 -0700 | [diff] [blame] | 135 | print_quoted_cstring(d->d_name, d_name_len); |
Dmitry V. Levin | c929771 | 2015-01-25 00:04:20 +0000 | [diff] [blame] | 136 | |
| 137 | tprints(", d_type="); |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 138 | if (oob) |
| 139 | tprints("?"); |
| 140 | else |
Dmitry V. Levin | a367db8 | 2015-11-19 18:13:53 +0000 | [diff] [blame] | 141 | printxval(dirent_types, buf[i + d->d_reclen - 1], "DT_???"); |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 142 | tprints("}"); |
| 143 | } |
| 144 | dents++; |
Dmitry V. Levin | a367db8 | 2015-11-19 18:13:53 +0000 | [diff] [blame] | 145 | if (d->d_reclen < sizeof(kernel_dirent)) { |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame] | 146 | tprints_comment("d_reclen < sizeof(struct dirent)"); |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 147 | break; |
| 148 | } |
| 149 | i += d->d_reclen; |
| 150 | } |
| 151 | if (!abbrev(tcp)) |
Gabriel Laskar | a2df1c1 | 2015-11-19 11:44:30 +0100 | [diff] [blame] | 152 | tprints("]"); |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 153 | else |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame] | 154 | tprintf_comment("%u entries", dents); |
Dmitry V. Levin | f443fd4 | 2016-04-26 22:38:10 +0000 | [diff] [blame] | 155 | tprintf(", %u", count); |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 156 | free(buf); |
| 157 | return 0; |
| 158 | } |