#include "format-util.h"
#include "fs-util.h"
#include "io-util.h"
+#include "lock-util.h"
#include "nscd-flush.h"
#include "parse-util.h"
#include "random-util.h"
(void) make_uid_symlinks(uid, name, false); /* remove direct lookup symlinks */
}
-static int lockfp(int fd, int *fd_lock) {
- if (lockf(fd, F_LOCK, 0) < 0)
- return -errno;
- *fd_lock = fd;
- return 0;
-}
-
-static void unlockfp(int *fd_lock) {
- if (*fd_lock < 0)
- return;
- lockf(*fd_lock, F_ULOCK, 0);
- *fd_lock = -EBADF;
-}
-
static int dynamic_user_realize(
DynamicUser *d,
char **suggested_dirs,
uid_t *ret_uid, gid_t *ret_gid,
bool is_user) {
- _cleanup_(unlockfp) int storage_socket0_lock = -EBADF;
_cleanup_close_ int uid_lock_fd = -EBADF;
_cleanup_close_ int etc_passwd_lock_fd = -EBADF;
uid_t num = UID_INVALID; /* a uid if is_user, and a gid otherwise */
/* Acquire a UID for the user name. This will allocate a UID for the user name if the user doesn't exist
* yet. If it already exists its existing UID/GID will be reused. */
- r = lockfp(d->storage_socket[0], &storage_socket0_lock);
+ r = unposix_lock(d->storage_socket[0], LOCK_EX);
if (r < 0)
return r;
+ CLEANUP_UNPOSIX_UNLOCK(d->storage_socket[0]);
+
r = dynamic_user_pop(d, &num, &uid_lock_fd);
if (r < 0) {
int new_uid_lock_fd;
/* OK, nothing stored yet, let's try to find something useful. While we are working on this release the
* lock however, so that nobody else blocks on our NSS lookups. */
- unlockfp(&storage_socket0_lock);
+ r = unposix_lock(d->storage_socket[0], LOCK_UN);
+ if (r < 0)
+ return r;
/* Let's see if a proper, static user or group by this name exists. Try to take the lock on
* /etc/passwd, if that fails with EROFS then /etc is read-only. In that case it's fine if we don't
}
/* So, we found a working UID/lock combination. Let's see if we actually still need it. */
- r = lockfp(d->storage_socket[0], &storage_socket0_lock);
+ r = unposix_lock(d->storage_socket[0], LOCK_EX);
if (r < 0) {
unlink_uid_lock(uid_lock_fd, num, d->name);
return r;
}
int dynamic_user_current(DynamicUser *d, uid_t *ret) {
- _cleanup_(unlockfp) int storage_socket0_lock = -EBADF;
_cleanup_close_ int lock_fd = -EBADF;
uid_t uid;
int r;
/* Get the currently assigned UID for the user, if there's any. This simply pops the data from the
* storage socket, and pushes it back in right-away. */
- r = lockfp(d->storage_socket[0], &storage_socket0_lock);
+ r = unposix_lock(d->storage_socket[0], LOCK_EX);
if (r < 0)
return r;
+ CLEANUP_UNPOSIX_UNLOCK(d->storage_socket[0]);
+
r = dynamic_user_pop(d, &uid, &lock_fd);
if (r < 0)
return r;
}
static int dynamic_user_close(DynamicUser *d) {
- _cleanup_(unlockfp) int storage_socket0_lock = -EBADF;
_cleanup_close_ int lock_fd = -EBADF;
uid_t uid;
int r;
/* Release the user ID, by releasing the lock on it, and emptying the storage socket. After this the
* user is unrealized again, much like it was after it the DynamicUser object was first allocated. */
- r = lockfp(d->storage_socket[0], &storage_socket0_lock);
+ r = unposix_lock(d->storage_socket[0], LOCK_EX);
if (r < 0)
return r;
+ CLEANUP_UNPOSIX_UNLOCK(d->storage_socket[0]);
+
r = dynamic_user_pop(d, &uid, &lock_fd);
if (r == -EAGAIN)
/* User wasn't realized yet, nothing to do. */