forked from strace/strace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dirent.c
115 lines (96 loc) · 2.55 KB
/
dirent.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
* Copyright (c) 1991, 1992 Paul Kranenburg <[email protected]>
* Copyright (c) 1993 Branko Lankester <[email protected]>
* Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <[email protected]>
* Copyright (c) 1996-1999 Wichert Akkerman <[email protected]>
* Copyright (c) 2005-2015 Dmitry V. Levin <[email protected]>
* Copyright (c) 2014-2020 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "defs.h"
#include "kernel_dirent.h"
#include DEF_MPERS_TYPE(kernel_dirent_t)
#include MPERS_DEFS
#include "xgetdents.h"
#include "print_fields.h"
#define D_NAME_LEN_MAX 256
/* The minimum size of a valid directory entry. */
static const unsigned int header_size =
offsetof(kernel_dirent_t, d_name);
static void
print_dentry_head(const kernel_dirent_t *const dent)
{
PRINT_FIELD_U("{", *dent, d_ino);
PRINT_FIELD_U(", ", *dent, d_off);
PRINT_FIELD_U(", ", *dent, d_reclen);
}
static unsigned int
decode_dentry_head(struct tcb *const tcp, const void *const arg)
{
const kernel_dirent_t *const dent = arg;
if (!abbrev(tcp))
print_dentry_head(dent);
return dent->d_reclen;
}
static int
decode_dentry_tail(struct tcb *const tcp, kernel_ulong_t addr,
const void *const arg, const unsigned int d_name_type_len)
{
int rc = 0;
/* !abbrev(tcp) */
if (d_name_type_len) {
unsigned int d_name_len = d_name_type_len - 1;
if (d_name_len) {
if (d_name_len > D_NAME_LEN_MAX)
d_name_len = D_NAME_LEN_MAX;
tprints(", d_name=");
rc = printpathn(tcp, addr, d_name_len - 1);
}
tprints(", d_type=");
const kernel_ulong_t d_type_addr =
addr + (d_name_type_len - 1);
unsigned char d_type;
if (umove_or_printaddr(tcp, d_type_addr, &d_type))
rc = -1;
else
printxval(dirent_types, d_type, "DT_???");
}
tprints("}");
return rc;
}
SYS_FUNC(getdents)
{
return xgetdents(tcp, header_size,
decode_dentry_head, decode_dentry_tail);
}
static void
print_old_dirent(struct tcb *const tcp, const kernel_ulong_t addr)
{
kernel_dirent_t dent;
if (umove_or_printaddr(tcp, addr, &dent))
return;
print_dentry_head(&dent);
tprints(", d_name=");
printpathn(tcp, addr + header_size,
MIN(dent.d_reclen, D_NAME_LEN_MAX));
tprints("}");
}
SYS_FUNC(readdir)
{
if (entering(tcp)) {
printfd(tcp, tcp->u_arg[0]);
tprints(", ");
} else {
if (tcp->u_rval == 0)
printaddr(tcp->u_arg[1]);
else
print_old_dirent(tcp, tcp->u_arg[1]);
const unsigned int count = tcp->u_arg[2];
/* Not much point in printing this out, it is always 1. */
if (count != 1)
tprintf(", %u", count);
}
return 0;
}