Skip to content

Commit 58f969b

Browse files
committed
tools include UAPI: Sync linux/fcntl.h copy with the kernel sources
Picking the changes from: 4356d57 ("fhandle: expose u64 mount id to name_to_handle_at(2)") b4fef22 ("uapi: explain how per-syscall AT_* flags should be allocated") 820a185 ("fcntl: add F_CREATED_QUERY") It just moves AT_REMOVEDIR around, and adds a bunch more AT_ for renameat2() and name_to_handle_at(). We need to improve this situation, as not all AT_ defines are applicable to all fs flags... This adds support for those new AT_ defines, addressing this build warning: diff -u tools/perf/trace/beauty/include/uapi/sound/asound.h include/uapi/sound/asound.h Reviewed-by: Aleksa Sarai <cyphar@cyphar.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Christian Brauner <brauner@kernel.org> Cc: Ian Rogers <irogers@google.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Kan Liang <kan.liang@linux.intel.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Tejun Heo <tj@kernel.org> Link: https://lore.kernel.org/lkml/ZvrIKL3cREoRHIQd@x1 Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
1 parent 7ae76b3 commit 58f969b

2 files changed

Lines changed: 65 additions & 24 deletions

File tree

tools/perf/trace/beauty/fs_at_flags.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,14 @@ printf "static const char *fs_at_flags[] = {\n"
1313
regex='^[[:space:]]*#[[:space:]]*define[[:space:]]+AT_([^_]+[[:alnum:]_]+)[[:space:]]+(0x[[:xdigit:]]+)[[:space:]]*.*'
1414
# AT_EACCESS is only meaningful to faccessat, so we will special case it there...
1515
# AT_STATX_SYNC_TYPE is not a bit, its a mask of AT_STATX_SYNC_AS_STAT, AT_STATX_FORCE_SYNC and AT_STATX_DONT_SYNC
16+
# AT_HANDLE_FID and AT_HANDLE_MNT_ID_UNIQUE are reusing values and are valid only for name_to_handle_at()
17+
# AT_RENAME_NOREPLACE reuses 0x1 and is valid only for renameat2()
1618
grep -E $regex ${linux_fcntl} | \
1719
grep -v AT_EACCESS | \
1820
grep -v AT_STATX_SYNC_TYPE | \
21+
grep -v AT_HANDLE_FID | \
22+
grep -v AT_HANDLE_MNT_ID_UNIQUE | \
23+
grep -v AT_RENAME_NOREPLACE | \
1924
sed -r "s/$regex/\2 \1/g" | \
2025
xargs printf "\t[ilog2(%s) + 1] = \"%s\",\n"
2126
printf "};\n"

tools/perf/trace/beauty/include/uapi/linux/fcntl.h

Lines changed: 60 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616

1717
#define F_DUPFD_QUERY (F_LINUX_SPECIFIC_BASE + 3)
1818

19+
/* Was the file just created? */
20+
#define F_CREATED_QUERY (F_LINUX_SPECIFIC_BASE + 4)
21+
1922
/*
2023
* Cancel a blocking posix lock; internal use only until we expose an
2124
* asynchronous lock api to userspace:
@@ -87,37 +90,70 @@
8790
#define DN_ATTRIB 0x00000020 /* File changed attibutes */
8891
#define DN_MULTISHOT 0x80000000 /* Don't remove notifier */
8992

93+
#define AT_FDCWD -100 /* Special value for dirfd used to
94+
indicate openat should use the
95+
current working directory. */
96+
97+
98+
/* Generic flags for the *at(2) family of syscalls. */
99+
100+
/* Reserved for per-syscall flags 0xff. */
101+
#define AT_SYMLINK_NOFOLLOW 0x100 /* Do not follow symbolic
102+
links. */
103+
/* Reserved for per-syscall flags 0x200 */
104+
#define AT_SYMLINK_FOLLOW 0x400 /* Follow symbolic links. */
105+
#define AT_NO_AUTOMOUNT 0x800 /* Suppress terminal automount
106+
traversal. */
107+
#define AT_EMPTY_PATH 0x1000 /* Allow empty relative
108+
pathname to operate on dirfd
109+
directly. */
110+
/*
111+
* These flags are currently statx(2)-specific, but they could be made generic
112+
* in the future and so they should not be used for other per-syscall flags.
113+
*/
114+
#define AT_STATX_SYNC_TYPE 0x6000 /* Type of synchronisation required from statx() */
115+
#define AT_STATX_SYNC_AS_STAT 0x0000 /* - Do whatever stat() does */
116+
#define AT_STATX_FORCE_SYNC 0x2000 /* - Force the attributes to be sync'd with the server */
117+
#define AT_STATX_DONT_SYNC 0x4000 /* - Don't sync attributes with the server */
118+
119+
#define AT_RECURSIVE 0x8000 /* Apply to the entire subtree */
120+
90121
/*
91-
* The constants AT_REMOVEDIR and AT_EACCESS have the same value. AT_EACCESS is
92-
* meaningful only to faccessat, while AT_REMOVEDIR is meaningful only to
93-
* unlinkat. The two functions do completely different things and therefore,
94-
* the flags can be allowed to overlap. For example, passing AT_REMOVEDIR to
95-
* faccessat would be undefined behavior and thus treating it equivalent to
96-
* AT_EACCESS is valid undefined behavior.
122+
* Per-syscall flags for the *at(2) family of syscalls.
123+
*
124+
* These are flags that are so syscall-specific that a user passing these flags
125+
* to the wrong syscall is so "clearly wrong" that we can safely call such
126+
* usage "undefined behaviour".
127+
*
128+
* For example, the constants AT_REMOVEDIR and AT_EACCESS have the same value.
129+
* AT_EACCESS is meaningful only to faccessat, while AT_REMOVEDIR is meaningful
130+
* only to unlinkat. The two functions do completely different things and
131+
* therefore, the flags can be allowed to overlap. For example, passing
132+
* AT_REMOVEDIR to faccessat would be undefined behavior and thus treating it
133+
* equivalent to AT_EACCESS is valid undefined behavior.
134+
*
135+
* Note for implementers: When picking a new per-syscall AT_* flag, try to
136+
* reuse already existing flags first. This leaves us with as many unused bits
137+
* as possible, so we can use them for generic bits in the future if necessary.
97138
*/
98-
#define AT_FDCWD -100 /* Special value used to indicate
99-
openat should use the current
100-
working directory. */
101-
#define AT_SYMLINK_NOFOLLOW 0x100 /* Do not follow symbolic links. */
139+
140+
/* Flags for renameat2(2) (must match legacy RENAME_* flags). */
141+
#define AT_RENAME_NOREPLACE 0x0001
142+
#define AT_RENAME_EXCHANGE 0x0002
143+
#define AT_RENAME_WHITEOUT 0x0004
144+
145+
/* Flag for faccessat(2). */
102146
#define AT_EACCESS 0x200 /* Test access permitted for
103147
effective IDs, not real IDs. */
148+
/* Flag for unlinkat(2). */
104149
#define AT_REMOVEDIR 0x200 /* Remove directory instead of
105150
unlinking file. */
106-
#define AT_SYMLINK_FOLLOW 0x400 /* Follow symbolic links. */
107-
#define AT_NO_AUTOMOUNT 0x800 /* Suppress terminal automount traversal */
108-
#define AT_EMPTY_PATH 0x1000 /* Allow empty relative pathname */
109-
110-
#define AT_STATX_SYNC_TYPE 0x6000 /* Type of synchronisation required from statx() */
111-
#define AT_STATX_SYNC_AS_STAT 0x0000 /* - Do whatever stat() does */
112-
#define AT_STATX_FORCE_SYNC 0x2000 /* - Force the attributes to be sync'd with the server */
113-
#define AT_STATX_DONT_SYNC 0x4000 /* - Don't sync attributes with the server */
114-
115-
#define AT_RECURSIVE 0x8000 /* Apply to the entire subtree */
151+
/* Flags for name_to_handle_at(2). */
152+
#define AT_HANDLE_FID 0x200 /* File handle is needed to compare
153+
object identity and may not be
154+
usable with open_by_handle_at(2). */
155+
#define AT_HANDLE_MNT_ID_UNIQUE 0x001 /* Return the u64 unique mount ID. */
116156

117-
/* Flags for name_to_handle_at(2). We reuse AT_ flag space to save bits... */
118-
#define AT_HANDLE_FID AT_REMOVEDIR /* file handle is needed to
119-
compare object identity and may not
120-
be usable to open_by_handle_at(2) */
121157
#if defined(__KERNEL__)
122158
#define AT_GETATTR_NOSEC 0x80000000
123159
#endif

0 commit comments

Comments
 (0)