forked from strace/strace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
file_handle.c
120 lines (96 loc) · 2.46 KB
/
file_handle.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
116
117
118
119
120
/*
* Copyright (c) 2015 Dmitry V. Levin <[email protected]>
* Copyright (c) 2015-2019 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "defs.h"
#include "xlat/name_to_handle_at_flags.h"
#ifndef MAX_HANDLE_SZ
# define MAX_HANDLE_SZ 128
#endif
typedef struct {
unsigned int handle_bytes;
int handle_type;
} file_handle_header;
SYS_FUNC(name_to_handle_at)
{
file_handle_header h;
const kernel_ulong_t addr = tcp->u_arg[2];
if (entering(tcp)) {
/* dirfd */
print_dirfd(tcp, tcp->u_arg[0]);
tprints(", ");
/* pathname */
printpath(tcp, tcp->u_arg[1]);
tprints(", ");
/* handle */
if (umove_or_printaddr(tcp, addr, &h)) {
tprints(", ");
/* mount_id */
printaddr(tcp->u_arg[3]);
tprints(", ");
/* flags */
printflags(name_to_handle_at_flags, tcp->u_arg[4],
"AT_???");
return RVAL_DECODED;
}
tprintf("{handle_bytes=%u", h.handle_bytes);
set_tcb_priv_ulong(tcp, h.handle_bytes);
return 0;
} else {
unsigned int i = get_tcb_priv_ulong(tcp);
if ((!syserror(tcp) || EOVERFLOW == tcp->u_error)
&& !umove(tcp, addr, &h)) {
unsigned char f_handle[MAX_HANDLE_SZ];
if (i != h.handle_bytes)
tprintf(" => %u", h.handle_bytes);
if (!syserror(tcp)) {
tprintf(", handle_type=%d", h.handle_type);
if (h.handle_bytes > MAX_HANDLE_SZ)
h.handle_bytes = MAX_HANDLE_SZ;
if (!umoven(tcp, addr + sizeof(h), h.handle_bytes,
f_handle)) {
tprints(", f_handle=0x");
for (i = 0; i < h.handle_bytes; ++i)
tprintf("%02x", f_handle[i]);
}
}
}
tprints("}, ");
/* mount_id */
printnum_int(tcp, tcp->u_arg[3], "%d");
tprints(", ");
/* flags */
printflags(name_to_handle_at_flags, tcp->u_arg[4], "AT_???");
}
return 0;
}
SYS_FUNC(open_by_handle_at)
{
file_handle_header h;
const kernel_ulong_t addr = tcp->u_arg[1];
/* mount_fd */
printfd(tcp, tcp->u_arg[0]);
tprints(", ");
/* handle */
if (!umove_or_printaddr(tcp, addr, &h)) {
unsigned char f_handle[MAX_HANDLE_SZ];
tprintf("{handle_bytes=%u, handle_type=%d",
h.handle_bytes, h.handle_type);
if (h.handle_bytes > MAX_HANDLE_SZ)
h.handle_bytes = MAX_HANDLE_SZ;
if (!umoven(tcp, addr + sizeof(h), h.handle_bytes, &f_handle)) {
unsigned int i;
tprints(", f_handle=0x");
for (i = 0; i < h.handle_bytes; ++i)
tprintf("%02x", f_handle[i]);
}
tprints("}");
}
tprints(", ");
/* flags */
tprint_open_modes(tcp->u_arg[2]);
return RVAL_DECODED;
}