forked from strace/strace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fs_x_ioctl.c
47 lines (41 loc) · 900 Bytes
/
fs_x_ioctl.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
/*
* Copyright (c) 2014 Mike Frysinger <vapier@gentoo.org>
* Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org>
* Copyright (c) 2016-2018 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "defs.h"
#include <linux/fs.h>
int
fs_x_ioctl(struct tcb *const tcp, const unsigned int code,
const kernel_ulong_t arg)
{
switch (code) {
#ifdef FITRIM
/* First seen in linux-2.6.37 */
case FITRIM: {
struct fstrim_range fstrim;
tprints(", ");
if (!umove_or_printaddr(tcp, arg, &fstrim))
tprintf("{start=%#" PRIx64
", len=%#" PRIx64
", minlen=%#" PRIx64 "}",
(uint64_t) fstrim.start,
(uint64_t) fstrim.len,
(uint64_t) fstrim.minlen);
break;
}
#endif
/* No arguments */
#ifdef FIFREEZE
case FIFREEZE:
case FITHAW:
break;
#endif
default:
return RVAL_DECODED;
}
return RVAL_IOCTL_DECODED;
}