blob: 4172d649a0801f8f424d85af991a59ea0267aee2 [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>
Elliott Hughes39bac052017-05-25 16:56:11 -07007 * Copyright (c) 2015-2017 The strace developers.
Dmitry V. Levina367db82015-11-19 18:13:53 +00008 * 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
33#include "defs.h"
34#include <dirent.h>
35
36#include "xlat/dirent_types.h"
37
38#define D_NAME_LEN_MAX 256
39
40SYS_FUNC(getdents64)
41{
42 /* the minimum size of a valid dirent64 structure */
43 const unsigned int d_name_offset = offsetof(struct dirent64, d_name);
44
45 unsigned int i, len, dents = 0;
46 char *buf;
47
48 if (entering(tcp)) {
49 printfd(tcp, tcp->u_arg[0]);
Dmitry V. Levina367db82015-11-19 18:13:53 +000050 return 0;
51 }
Dmitry V. Levinf443fd42016-04-26 22:38:10 +000052
53 const unsigned int count = tcp->u_arg[2];
54
Dmitry V. Levina367db82015-11-19 18:13:53 +000055 if (syserror(tcp) || !verbose(tcp)) {
Elliott Hughes39bac052017-05-25 16:56:11 -070056 tprints(", ");
Dmitry V. Levina367db82015-11-19 18:13:53 +000057 printaddr(tcp->u_arg[1]);
Dmitry V. Levinf443fd42016-04-26 22:38:10 +000058 tprintf(", %u", count);
Dmitry V. Levina367db82015-11-19 18:13:53 +000059 return 0;
60 }
61
62 /* Beware of insanely large or too small values in tcp->u_rval */
63 if (tcp->u_rval > 1024*1024)
64 len = 1024*1024;
65 else if (tcp->u_rval < (int) d_name_offset)
66 len = 0;
67 else
68 len = tcp->u_rval;
69
70 if (len) {
71 buf = malloc(len);
72 if (!buf || umoven(tcp, tcp->u_arg[1], len, buf) < 0) {
Elliott Hughes39bac052017-05-25 16:56:11 -070073 tprints(", ");
Dmitry V. Levina367db82015-11-19 18:13:53 +000074 printaddr(tcp->u_arg[1]);
Dmitry V. Levinf443fd42016-04-26 22:38:10 +000075 tprintf(", %u", count);
Dmitry V. Levina367db82015-11-19 18:13:53 +000076 free(buf);
77 return 0;
78 }
79 } else {
80 buf = NULL;
81 }
82
Elliott Hughes39bac052017-05-25 16:56:11 -070083 tprints(",");
Dmitry V. Levina367db82015-11-19 18:13:53 +000084 if (!abbrev(tcp))
Elliott Hughes39bac052017-05-25 16:56:11 -070085 tprints(" [");
Dmitry V. Levina367db82015-11-19 18:13:53 +000086 for (i = 0; len && i <= len - d_name_offset; ) {
87 struct dirent64 *d = (struct dirent64 *) &buf[i];
88 if (!abbrev(tcp)) {
89 int d_name_len;
90 if (d->d_reclen >= d_name_offset
91 && i + d->d_reclen <= len) {
92 d_name_len = d->d_reclen - d_name_offset;
93 } else {
94 d_name_len = len - i - d_name_offset;
95 }
96 if (d_name_len > D_NAME_LEN_MAX)
97 d_name_len = D_NAME_LEN_MAX;
98
99 tprintf("%s{d_ino=%" PRIu64 ", d_off=%" PRId64
100 ", d_reclen=%u, d_type=",
101 i ? ", " : "",
102 d->d_ino,
103 d->d_off,
104 d->d_reclen);
105 printxval(dirent_types, d->d_type, "DT_???");
106
107 tprints(", d_name=");
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700108 print_quoted_cstring(d->d_name, d_name_len);
Dmitry V. Levina367db82015-11-19 18:13:53 +0000109
110 tprints("}");
111 }
112 if (d->d_reclen < d_name_offset) {
Elliott Hughes39bac052017-05-25 16:56:11 -0700113 tprints_comment("d_reclen < offsetof(struct dirent64, d_name)");
Dmitry V. Levina367db82015-11-19 18:13:53 +0000114 break;
115 }
116 i += d->d_reclen;
117 dents++;
118 }
119 if (!abbrev(tcp))
120 tprints("]");
121 else
Elliott Hughes39bac052017-05-25 16:56:11 -0700122 tprintf_comment("%u entries", dents);
Dmitry V. Levinf443fd42016-04-26 22:38:10 +0000123 tprintf(", %u", count);
Dmitry V. Levina367db82015-11-19 18:13:53 +0000124 free(buf);
125 return 0;
126}