Cleanup: Move instrumentation/ headers to include/instrumentation/
[lttng-modules.git] / include / instrumentation / syscalls / headers / syscalls_integers_override.h
1 /* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only) */
2
3 #ifndef CREATE_SYSCALL_TABLE
4
5 #define OVERRIDE_32_mmap
6 #define OVERRIDE_64_mmap
7 SC_LTTNG_TRACEPOINT_EVENT(mmap,
8 TP_PROTO(sc_exit(unsigned long ret,)
9 unsigned long addr, unsigned long len,
10 unsigned long prot, unsigned long flags,
11 unsigned long fd, unsigned long off),
12 TP_ARGS(sc_exit(ret,) addr, len, prot, flags, fd, off),
13 TP_FIELDS(sc_exit(ctf_integer_hex(unsigned long, ret, ret))
14 sc_in(ctf_integer_hex(unsigned long, addr, addr))
15 sc_in(ctf_integer(size_t, len, len))
16 sc_in(ctf_integer(int, prot, prot))
17 sc_in(ctf_integer(int, flags, flags))
18 sc_in(ctf_integer(int, fd, fd))
19 sc_in(ctf_integer(off_t, offset, off))
20 )
21 )
22
23 /*
24 * Enumeration of the open flags, as described in the 'open'
25 * system call man page.
26 */
27 SC_LTTNG_TRACEPOINT_ENUM(lttng_fcntl_cmd_flags,
28 TP_ENUM_VALUES(
29 ctf_enum_value("F_DUPFD", F_DUPFD)
30 ctf_enum_value("F_GETFD", F_GETFD)
31 ctf_enum_value("F_SETFD", F_SETFD)
32 ctf_enum_value("F_GETFL", F_GETFL)
33 ctf_enum_value("F_SETFL", F_SETFL)
34 ctf_enum_value("F_GETLK", F_GETLK)
35 ctf_enum_value("F_SETLK", F_SETLK)
36 ctf_enum_value("F_SETLKW", F_SETLKW)
37 ctf_enum_value("F_SETOWN", F_SETOWN)
38 ctf_enum_value("F_GETOWN", F_GETOWN)
39 ctf_enum_value("F_SETSIG", F_SETSIG)
40 ctf_enum_value("F_GETSIG", F_GETSIG)
41 ctf_enum_value("F_GETLK64", F_GETLK64)
42 ctf_enum_value("F_SETLK64", F_SETLK64)
43 ctf_enum_value("F_SETLKW64", F_SETLKW64)
44 ctf_enum_value("F_SETOWN_EX", F_SETOWN_EX)
45 ctf_enum_value("F_GETOWN_EX", F_GETOWN_EX)
46 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0))
47 ctf_enum_value("F_GETOWNER_UIDS", F_GETOWNER_UIDS)
48 #endif /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0)) */
49 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,15,0))
50 ctf_enum_value("F_OFD_GETLK", F_OFD_GETLK)
51 ctf_enum_value("F_OFD_SETLK", F_OFD_SETLK)
52 ctf_enum_value("F_OFD_SETLKW", F_OFD_SETLKW)
53 #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3,15,0)) */
54 ctf_enum_value("F_SETLEASE", F_SETLEASE)
55 ctf_enum_value("F_GETLEASE", F_GETLEASE)
56 ctf_enum_value("F_NOTIFY", F_NOTIFY)
57 ctf_enum_value("F_CANCELLK", F_CANCELLK)
58 ctf_enum_value("F_DUPFD_CLOEXEC", F_DUPFD_CLOEXEC)
59 ctf_enum_value("F_SETPIPE_SZ", F_SETPIPE_SZ)
60 ctf_enum_value("F_GETPIPE_SZ", F_GETPIPE_SZ)
61 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0))
62 ctf_enum_value("F_ADD_SEALS", F_ADD_SEALS)
63 ctf_enum_value("F_GET_SEALS", F_GET_SEALS)
64 #endif /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0)) */
65 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0))
66 ctf_enum_value("F_GET_RW_HINT", F_GET_RW_HINT)
67 ctf_enum_value("F_SET_RW_HINT", F_SET_RW_HINT)
68 ctf_enum_value("F_GET_FILE_RW_HINT", F_GET_FILE_RW_HINT)
69 ctf_enum_value("F_SET_FILE_RW_HINT", F_SET_FILE_RW_HINT)
70 #endif /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0)) */
71 )
72 )
73
74 #define OVERRIDE_32_fcntl
75 #define OVERRIDE_64_fcntl
76 SC_LTTNG_TRACEPOINT_EVENT(fcntl,
77 TP_PROTO(sc_exit(long ret,) unsigned int fd, unsigned int cmd, unsigned long arg),
78 TP_ARGS(sc_exit(ret,) fd, cmd, arg),
79 TP_FIELDS(
80 sc_exit(ctf_integer(long, ret, ret))
81 sc_in(ctf_integer(unsigned int, fd, fd))
82 sc_in(ctf_enum(lttng_fcntl_cmd_flags, unsigned int, cmd, cmd))
83 sc_inout(ctf_integer(unsigned long, arg, arg)))
84 )
85
86 #endif /* CREATE_SYSCALL_TABLE */
This page took 0.03132 seconds and 4 git commands to generate.