blob: 2ba6fe7abef6249f4a16e8a656dab16ad4aa5ba4 [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. Levina367db82015-11-19 18:13:53 +000036#include MPERS_DEFS
37
38#define D_NAME_LEN_MAX 256
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000039
40static void
Elliott Hughesd35df492017-02-15 15:19:05 -080041print_old_dirent(struct tcb *const tcp, const kernel_ulong_t addr)
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000042{
Dmitry V. Levina367db82015-11-19 18:13:53 +000043 kernel_dirent d;
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000044
Dmitry V. Levin3ef50212015-07-20 15:42:22 +000045 if (umove_or_printaddr(tcp, addr, &d))
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000046 return;
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000047
Dmitry V. Levine67c8e42015-12-16 00:07:16 +000048 tprintf("{d_ino=%llu, d_off=%llu, d_reclen=%u, d_name=",
Dmitry V. Levin031fc802016-08-23 00:24:10 +000049 zero_extend_signed_to_ull(d.d_ino),
50 zero_extend_signed_to_ull(d.d_off), d.d_reclen);
Dmitry V. Levinc9297712015-01-25 00:04:20 +000051 if (d.d_reclen > D_NAME_LEN_MAX)
52 d.d_reclen = D_NAME_LEN_MAX;
Dmitry V. Levina367db82015-11-19 18:13:53 +000053 printpathn(tcp, addr + offsetof(kernel_dirent, d_name), d.d_reclen);
Dmitry V. Levinc9297712015-01-25 00:04:20 +000054 tprints("}");
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000055}
56
Dmitry V. Levina0bd3742015-04-07 01:36:50 +000057SYS_FUNC(readdir)
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000058{
59 if (entering(tcp)) {
60 printfd(tcp, tcp->u_arg[0]);
61 tprints(", ");
62 } else {
Dmitry V. Levin3ef50212015-07-20 15:42:22 +000063 if (tcp->u_rval == 0)
64 printaddr(tcp->u_arg[1]);
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000065 else
66 print_old_dirent(tcp, tcp->u_arg[1]);
67 /* Not much point in printing this out, it is always 1. */
68 if (tcp->u_arg[2] != 1)
Elliott Hughesd35df492017-02-15 15:19:05 -080069 tprintf(", %" PRI_klu, tcp->u_arg[2]);
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000070 }
71 return 0;
72}
73
Dmitry V. Levina0bd3742015-04-07 01:36:50 +000074SYS_FUNC(getdents)
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000075{
76 unsigned int i, len, dents = 0;
Dmitry V. Levin7fb984e2016-05-16 21:35:07 +000077 unsigned char *buf;
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000078
79 if (entering(tcp)) {
80 printfd(tcp, tcp->u_arg[0]);
81 tprints(", ");
82 return 0;
83 }
Dmitry V. Levinf443fd42016-04-26 22:38:10 +000084
85 const unsigned int count = tcp->u_arg[2];
86
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000087 if (syserror(tcp) || !verbose(tcp)) {
Dmitry V. Levin3ef50212015-07-20 15:42:22 +000088 printaddr(tcp->u_arg[1]);
Dmitry V. Levinf443fd42016-04-26 22:38:10 +000089 tprintf(", %u", count);
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000090 return 0;
91 }
92
93 /* Beware of insanely large or too small values in tcp->u_rval */
94 if (tcp->u_rval > 1024*1024)
95 len = 1024*1024;
Dmitry V. Levina367db82015-11-19 18:13:53 +000096 else if (tcp->u_rval < (int) sizeof(kernel_dirent))
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000097 len = 0;
98 else
99 len = tcp->u_rval;
100
101 if (len) {
Dmitry V. Levin3ef50212015-07-20 15:42:22 +0000102 buf = malloc(len);
103 if (!buf || umoven(tcp, tcp->u_arg[1], len, buf) < 0) {
104 printaddr(tcp->u_arg[1]);
Dmitry V. Levinf443fd42016-04-26 22:38:10 +0000105 tprintf(", %u", count);
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000106 free(buf);
107 return 0;
108 }
109 } else {
110 buf = NULL;
111 }
112
113 if (!abbrev(tcp))
Gabriel Laskara2df1c12015-11-19 11:44:30 +0100114 tprints("[");
Dmitry V. Levina367db82015-11-19 18:13:53 +0000115 for (i = 0; len && i <= len - sizeof(kernel_dirent); ) {
116 kernel_dirent *d = (kernel_dirent *) &buf[i];
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000117
118 if (!abbrev(tcp)) {
Dmitry V. Levina367db82015-11-19 18:13:53 +0000119 int oob = d->d_reclen < sizeof(kernel_dirent) ||
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000120 i + d->d_reclen - 1 >= len;
121 int d_name_len = oob ? len - i : d->d_reclen;
Dmitry V. Levina367db82015-11-19 18:13:53 +0000122 d_name_len -= offsetof(kernel_dirent, d_name) + 1;
Dmitry V. Levinc9297712015-01-25 00:04:20 +0000123 if (d_name_len > D_NAME_LEN_MAX)
124 d_name_len = D_NAME_LEN_MAX;
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000125
Dmitry V. Levine67c8e42015-12-16 00:07:16 +0000126 tprintf("%s{d_ino=%llu, d_off=%llu, d_reclen=%u"
Dmitry V. Levinbdb07e32015-11-27 01:51:22 +0000127 ", d_name=", i ? ", " : "",
Dmitry V. Levin031fc802016-08-23 00:24:10 +0000128 zero_extend_signed_to_ull(d->d_ino),
129 zero_extend_signed_to_ull(d->d_off),
130 d->d_reclen);
Dmitry V. Levinc9297712015-01-25 00:04:20 +0000131
132 if (print_quoted_string(d->d_name, d_name_len,
133 QUOTE_0_TERMINATED) > 0) {
134 tprints("...");
135 }
136
137 tprints(", d_type=");
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000138 if (oob)
139 tprints("?");
140 else
Dmitry V. Levina367db82015-11-19 18:13:53 +0000141 printxval(dirent_types, buf[i + d->d_reclen - 1], "DT_???");
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000142 tprints("}");
143 }
144 dents++;
Dmitry V. Levina367db82015-11-19 18:13:53 +0000145 if (d->d_reclen < sizeof(kernel_dirent)) {
Dmitry V. Levinbdb07e32015-11-27 01:51:22 +0000146 tprints("/* d_reclen < sizeof(struct dirent) */");
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000147 break;
148 }
149 i += d->d_reclen;
150 }
151 if (!abbrev(tcp))
Gabriel Laskara2df1c12015-11-19 11:44:30 +0100152 tprints("]");
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000153 else
154 tprintf("/* %u entries */", dents);
Dmitry V. Levinf443fd42016-04-26 22:38:10 +0000155 tprintf(", %u", count);
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +0000156 free(buf);
157 return 0;
158}