X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=instrumentation%2Fsyscalls%2Fheaders%2Fsyscalls_integers_override.h;h=a96d600303e5c263acdb74ab6eb17005066a9162;hb=c1c07d681a68ba37da066d6f0456129957073169;hp=db9137085987c0b03e3252c59351e01e5c998c71;hpb=644d6e9c2807041db2b4fd9c3350d4fa243060b1;p=lttng-modules.git diff --git a/instrumentation/syscalls/headers/syscalls_integers_override.h b/instrumentation/syscalls/headers/syscalls_integers_override.h index db913708..a96d6003 100644 --- a/instrumentation/syscalls/headers/syscalls_integers_override.h +++ b/instrumentation/syscalls/headers/syscalls_integers_override.h @@ -1,14 +1,84 @@ -#define OVERRIDE_32_mmap -#define OVERRIDE_64_mmap +/* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1) */ #ifndef CREATE_SYSCALL_TABLE -SC_TRACE_EVENT(mmap, - TP_PROTO(sc_exit(long ret,) unsigned long addr, unsigned long len, unsigned long prot, unsigned long flags, unsigned long fd, unsigned long off), +#define OVERRIDE_32_mmap +#define OVERRIDE_64_mmap +SC_LTTNG_TRACEPOINT_EVENT(mmap, + TP_PROTO(sc_exit(unsigned long ret,) + unsigned long addr, unsigned long len, + unsigned long prot, unsigned long flags, + unsigned long fd, unsigned long off), TP_ARGS(sc_exit(ret,) addr, len, prot, flags, fd, off), - TP_STRUCT__entry(sc_exit(__field(long, ret)) sc_in(__field_hex(unsigned long, addr)) sc_in(__field(size_t, len)) sc_in(__field(int, prot)) sc_in(__field(int, flags)) sc_in(__field(int, fd)) sc_in(__field(off_t, offset))), - TP_fast_assign(sc_exit(tp_assign(ret, ret)) sc_in(tp_assign(addr, addr)) sc_in(tp_assign(len, len)) sc_in(tp_assign(prot, prot)) sc_in(tp_assign(flags, flags)) sc_in(tp_assign(fd, fd)) sc_in(tp_assign(offset, off))), - TP_printk() + TP_FIELDS(sc_exit(ctf_integer_hex(unsigned long, ret, ret)) + sc_in(ctf_integer_hex(unsigned long, addr, addr)) + sc_in(ctf_integer(size_t, len, len)) + sc_in(ctf_integer(int, prot, prot)) + sc_in(ctf_integer(int, flags, flags)) + sc_in(ctf_integer(int, fd, fd)) + sc_in(ctf_integer(off_t, offset, off)) + ) +) + +/* + * Enumeration of the open flags, as described in the 'open' + * system call man page. + */ +SC_LTTNG_TRACEPOINT_ENUM(lttng_fcntl_cmd_flags, + TP_ENUM_VALUES( + ctf_enum_value("F_DUPFD", F_DUPFD) + ctf_enum_value("F_GETFD", F_GETFD) + ctf_enum_value("F_SETFD", F_SETFD) + ctf_enum_value("F_GETFL", F_GETFL) + ctf_enum_value("F_SETFL", F_SETFL) + ctf_enum_value("F_GETLK", F_GETLK) + ctf_enum_value("F_SETLK", F_SETLK) + ctf_enum_value("F_SETLKW", F_SETLKW) + ctf_enum_value("F_SETOWN", F_SETOWN) + ctf_enum_value("F_GETOWN", F_GETOWN) + ctf_enum_value("F_SETSIG", F_SETSIG) + ctf_enum_value("F_GETSIG", F_GETSIG) + ctf_enum_value("F_GETLK64", F_GETLK64) + ctf_enum_value("F_SETLK64", F_SETLK64) + ctf_enum_value("F_SETLKW64", F_SETLKW64) + ctf_enum_value("F_SETOWN_EX", F_SETOWN_EX) + ctf_enum_value("F_GETOWN_EX", F_GETOWN_EX) + ctf_enum_value("F_GETOWNER_UIDS", F_GETOWNER_UIDS) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,15,0)) + ctf_enum_value("F_OFD_GETLK", F_OFD_GETLK) + ctf_enum_value("F_OFD_SETLK", F_OFD_SETLK) + ctf_enum_value("F_OFD_SETLKW", F_OFD_SETLKW) +#endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3,15,0)) */ + ctf_enum_value("F_SETLEASE", F_SETLEASE) + ctf_enum_value("F_GETLEASE", F_GETLEASE) + ctf_enum_value("F_NOTIFY", F_NOTIFY) + ctf_enum_value("F_CANCELLK", F_CANCELLK) + ctf_enum_value("F_DUPFD_CLOEXEC", F_DUPFD_CLOEXEC) + ctf_enum_value("F_SETPIPE_SZ", F_SETPIPE_SZ) + ctf_enum_value("F_GETPIPE_SZ", F_GETPIPE_SZ) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0)) + ctf_enum_value("F_ADD_SEALS", F_ADD_SEALS) + ctf_enum_value("F_GET_SEALS", F_GET_SEALS) +#endif /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0)) */ +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0)) + ctf_enum_value("F_GET_RW_HINT", F_GET_RW_HINT) + ctf_enum_value("F_SET_RW_HINT", F_SET_RW_HINT) + ctf_enum_value("F_GET_FILE_RW_HINT", F_GET_FILE_RW_HINT) + ctf_enum_value("F_SET_FILE_RW_HINT", F_SET_FILE_RW_HINT) +#endif /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0)) */ + ) +) + +#define OVERRIDE_32_fcntl +#define OVERRIDE_64_fcntl +SC_LTTNG_TRACEPOINT_EVENT(fcntl, + TP_PROTO(sc_exit(long ret,) unsigned int fd, unsigned int cmd, unsigned long arg), + TP_ARGS(sc_exit(ret,) fd, cmd, arg), + TP_FIELDS( + sc_exit(ctf_integer(long, ret, ret)) + sc_in(ctf_integer(unsigned int, fd, fd)) + sc_in(ctf_enum(lttng_fcntl_cmd_flags, unsigned int, cmd, cmd)) + sc_inout(ctf_integer(unsigned long, arg, arg))) ) #endif /* CREATE_SYSCALL_TABLE */