diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:35:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:35:18 +0000 |
commit | b750101eb236130cf056c675997decbac904cc49 (patch) | |
tree | a5df1a06754bdd014cb975c051c83b01c9a97532 /src/basic/xattr-util.h | |
parent | Initial commit. (diff) | |
download | systemd-b750101eb236130cf056c675997decbac904cc49.tar.xz systemd-b750101eb236130cf056c675997decbac904cc49.zip |
Adding upstream version 252.22.upstream/252.22
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/basic/xattr-util.h')
-rw-r--r-- | src/basic/xattr-util.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/basic/xattr-util.h b/src/basic/xattr-util.h new file mode 100644 index 0000000..0eb745a --- /dev/null +++ b/src/basic/xattr-util.h @@ -0,0 +1,38 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +#pragma once + +#include <stdbool.h> +#include <stddef.h> +#include <sys/types.h> + +#include "time-util.h" + +int getxattr_at_malloc(int fd, const char *path, const char *name, int flags, char **ret); +static inline int getxattr_malloc(const char *path, const char *name, char **ret) { + return getxattr_at_malloc(AT_FDCWD, path, name, AT_SYMLINK_FOLLOW, ret); +} +static inline int lgetxattr_malloc(const char *path, const char *name, char **ret) { + return getxattr_at_malloc(AT_FDCWD, path, name, 0, ret); +} +static inline int fgetxattr_malloc(int fd, const char *name, char **ret) { + return getxattr_at_malloc(fd, NULL, name, AT_EMPTY_PATH, ret); +} + +int fd_setcrtime(int fd, usec_t usec); + +int fd_getcrtime_at(int fd, const char *name, int flags, usec_t *ret); +static inline int fd_getcrtime(int fd, usec_t *ret) { + return fd_getcrtime_at(fd, NULL, 0, ret); +} + + +int listxattr_at_malloc(int fd, const char *path, int flags, char **ret); +static inline int listxattr_malloc(const char *path, char **ret) { + return listxattr_at_malloc(AT_FDCWD, path, AT_SYMLINK_FOLLOW, ret); +} +static inline int llistxattr_malloc(const char *path, char **ret) { + return listxattr_at_malloc(AT_FDCWD, path, 0, ret); +} +static inline int flistxattr_malloc(int fd, char **ret) { + return listxattr_at_malloc(fd, NULL, AT_EMPTY_PATH, ret); +} |