blob: ae576c822283ba443bfaa839ec8a255a06b127ec [file] [log] [blame]
Dmitry V. Levina367db82015-11-19 18:13:53 +00001/*
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
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000032#include "defs.h"
Dmitry V. Levina367db82015-11-19 18:13:53 +000033
34#include DEF_MPERS_TYPE(kernel_dirent)
35
Dmitry V. Levinbdb07e32015-11-27 01:51:22 +000036#include "kernel_types.h"
Dmitry V. Levina367db82015-11-19 18:13:53 +000037
38#include MPERS_DEFS
39
40#define D_NAME_LEN_MAX 256
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000041
42static void
43print_old_dirent(struct tcb *tcp, long addr)
44{
Dmitry V. Levina367db82015-11-19 18:13:53 +000045 kernel_dirent d;
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000046
Dmitry V. Levin3ef50212015-07-20 15:42:22 +000047 if (umove_or_printaddr(tcp, addr, &d))
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000048 return;
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000049
Dmitry V. Levine67c8e42015-12-16 00:07:16 +000050 tprintf("{d_ino=%llu, d_off=%llu, d_reclen=%u, d_name=",
Dmitry V. Levinbdb07e32015-11-27 01:51:22 +000051 (unsigned long long) d.d_ino,
52 (unsigned long long) d.d_off, d.d_reclen);
Dmitry V. Levinc9297712015-01-25 00:04:20 +000053 if (d.d_reclen > D_NAME_LEN_MAX)
54 d.d_reclen = D_NAME_LEN_MAX;
Dmitry V. Levina367db82015-11-19 18:13:53 +000055 printpathn(tcp, addr + offsetof(kernel_dirent, d_name), d.d_reclen);
Dmitry V. Levinc9297712015-01-25 00:04:20 +000056 tprints("}");
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000057}
58
Dmitry V. Levina0bd3742015-04-07 01:36:50 +000059SYS_FUNC(readdir)
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000060{
61 if (entering(tcp)) {
62 printfd(tcp, tcp->u_arg[0]);
63 tprints(", ");
64 } else {
Dmitry V. Levin3ef50212015-07-20 15:42:22 +000065 if (tcp->u_rval == 0)
66 printaddr(tcp->u_arg[1]);
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000067 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
Dmitry V. Levina0bd3742015-04-07 01:36:50 +000076SYS_FUNC(getdents)
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000077{
78 unsigned int i, len, dents = 0;
79 char *buf;
80
81 if (entering(tcp)) {
82 printfd(tcp, tcp->u_arg[0]);
83 tprints(", ");
84 return 0;
85 }
86 if (syserror(tcp) || !verbose(tcp)) {
Dmitry V. Levin3ef50212015-07-20 15:42:22 +000087 printaddr(tcp->u_arg[1]);
88 tprintf(", %lu", tcp->u_arg[2]);
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000089 return 0;
90 }
91
92 /* Beware of insanely large or too small values in tcp->u_rval */
93 if (tcp->u_rval > 1024*1024)
94 len = 1024*1024;
Dmitry V. Levina367db82015-11-19 18:13:53 +000095 else if (tcp->u_rval < (int) sizeof(kernel_dirent))
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000096 len = 0;
97 else
98 len = tcp->u_rval;
99
100 if (len) {
Dmitry V. Levin3ef50212015-07-20 15:42:22 +0000101 buf = malloc(len);
102 if (!buf || umoven(tcp, tcp->u_arg[1], len, buf) < 0) {
103 printaddr(tcp->u_arg[1]);
104 tprintf(", %lu", tcp->u_arg[2]);
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000105 free(buf);
106 return 0;
107 }
108 } else {
109 buf = NULL;
110 }
111
112 if (!abbrev(tcp))
Gabriel Laskara2df1c12015-11-19 11:44:30 +0100113 tprints("[");
Dmitry V. Levina367db82015-11-19 18:13:53 +0000114 for (i = 0; len && i <= len - sizeof(kernel_dirent); ) {
115 kernel_dirent *d = (kernel_dirent *) &buf[i];
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000116
117 if (!abbrev(tcp)) {
Dmitry V. Levina367db82015-11-19 18:13:53 +0000118 int oob = d->d_reclen < sizeof(kernel_dirent) ||
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000119 i + d->d_reclen - 1 >= len;
120 int d_name_len = oob ? len - i : d->d_reclen;
Dmitry V. Levina367db82015-11-19 18:13:53 +0000121 d_name_len -= offsetof(kernel_dirent, d_name) + 1;
Dmitry V. Levinc9297712015-01-25 00:04:20 +0000122 if (d_name_len > D_NAME_LEN_MAX)
123 d_name_len = D_NAME_LEN_MAX;
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000124
Dmitry V. Levine67c8e42015-12-16 00:07:16 +0000125 tprintf("%s{d_ino=%llu, d_off=%llu, d_reclen=%u"
Dmitry V. Levinbdb07e32015-11-27 01:51:22 +0000126 ", d_name=", i ? ", " : "",
127 (unsigned long long) d->d_ino,
128 (unsigned long long) d->d_off, d->d_reclen);
Dmitry V. Levinc9297712015-01-25 00:04:20 +0000129
130 if (print_quoted_string(d->d_name, d_name_len,
131 QUOTE_0_TERMINATED) > 0) {
132 tprints("...");
133 }
134
135 tprints(", d_type=");
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000136 if (oob)
137 tprints("?");
138 else
Dmitry V. Levina367db82015-11-19 18:13:53 +0000139 printxval(dirent_types, buf[i + d->d_reclen - 1], "DT_???");
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000140 tprints("}");
141 }
142 dents++;
Dmitry V. Levina367db82015-11-19 18:13:53 +0000143 if (d->d_reclen < sizeof(kernel_dirent)) {
Dmitry V. Levinbdb07e32015-11-27 01:51:22 +0000144 tprints("/* d_reclen < sizeof(struct dirent) */");
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000145 break;
146 }
147 i += d->d_reclen;
148 }
149 if (!abbrev(tcp))
Gabriel Laskara2df1c12015-11-19 11:44:30 +0100150 tprints("]");
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000151 else
152 tprintf("/* %u entries */", dents);
153 tprintf(", %lu", tcp->u_arg[2]);
154 free(buf);
155 return 0;
156}