From: David Rheinsberg Date: Mon, 17 Jul 2023 10:16:01 +0000 (+0200) Subject: basic/memfd: add fcntl() wrappers X-Git-Tag: v255-rc1~850^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4d903003715b160acf7bf4baeffee7829ff99f85;p=thirdparty%2Fsystemd.git basic/memfd: add fcntl() wrappers Add wrappers around GET/ADD_SEALS to allow future use outside of the current `memfd_get/set_sealed()` helpers. --- diff --git a/src/basic/memfd-util.c b/src/basic/memfd-util.c index e21514fa9ea..a80d586ffa6 100644 --- a/src/basic/memfd-util.c +++ b/src/basic/memfd-util.c @@ -68,6 +68,26 @@ int memfd_new(const char *name) { return memfd_create_wrapper(name, MFD_ALLOW_SEALING | MFD_CLOEXEC | MFD_NOEXEC_SEAL); } +int memfd_add_seals(int fd, unsigned int seals) { + assert(fd >= 0); + + return RET_NERRNO(fcntl(fd, F_ADD_SEALS, seals)); +} + +int memfd_get_seals(int fd, unsigned int *ret_seals) { + int r; + + assert(fd >= 0); + + r = RET_NERRNO(fcntl(fd, F_GET_SEALS)); + if (r < 0) + return r; + + if (ret_seals) + *ret_seals = r; + return 0; +} + int memfd_map(int fd, uint64_t offset, size_t size, void **p) { void *q; int sealed; @@ -92,22 +112,19 @@ int memfd_map(int fd, uint64_t offset, size_t size, void **p) { } int memfd_set_sealed(int fd) { - assert(fd >= 0); - - return RET_NERRNO(fcntl(fd, F_ADD_SEALS, F_SEAL_SEAL | F_SEAL_SHRINK | F_SEAL_GROW | F_SEAL_WRITE)); + return memfd_add_seals(fd, F_SEAL_SEAL | F_SEAL_SHRINK | F_SEAL_GROW | F_SEAL_WRITE); } int memfd_get_sealed(int fd) { + unsigned int seals; int r; - assert(fd >= 0); - - r = fcntl(fd, F_GET_SEALS); + r = memfd_get_seals(fd, &seals); if (r < 0) - return -errno; + return r; /* We ignore F_SEAL_EXEC here to support older kernels. */ - return FLAGS_SET(r, F_SEAL_SHRINK | F_SEAL_GROW | F_SEAL_WRITE); + return FLAGS_SET(seals, F_SEAL_SHRINK | F_SEAL_GROW | F_SEAL_WRITE); } int memfd_get_size(int fd, uint64_t *sz) { diff --git a/src/basic/memfd-util.h b/src/basic/memfd-util.h index 0fe8e3a3c4d..9b2103e0ced 100644 --- a/src/basic/memfd-util.h +++ b/src/basic/memfd-util.h @@ -12,6 +12,8 @@ int memfd_new(const char *name); int memfd_new_and_map(const char *name, size_t sz, void **p); int memfd_new_and_seal(const char *name, const void *data, size_t sz); +int memfd_add_seals(int fd, unsigned int seals); +int memfd_get_seals(int fd, unsigned int *ret_seals); int memfd_map(int fd, uint64_t offset, size_t size, void **p); int memfd_set_sealed(int fd);