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