]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/dynamic-user.h
Merge pull request #17732 from yuwata/core-use-synthetic_errno
[thirdparty/systemd.git] / src / core / dynamic-user.h
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
29206d46
LP
2#pragma once
3
29206d46
LP
4typedef struct DynamicUser DynamicUser;
5
6typedef struct DynamicCreds {
7 /* A combination of a dynamic user and group */
8 DynamicUser *user;
9 DynamicUser *group;
10} DynamicCreds;
11
12#include "manager.h"
13
14/* Note that this object always allocates a pair of user and group under the same name, even if one of them isn't
15 * used. This means, if you want to allocate a group and user pair, and they might have two different names, then you
16 * need to allocated two of these objects. DynamicCreds below makes that easy. */
17struct DynamicUser {
29206d46 18 Manager *manager;
0a6991e0 19 unsigned n_ref;
29206d46
LP
20
21 /* An AF_UNIX socket pair that contains a datagram containing both the numeric ID assigned, as well as a lock
22 * file fd locking the user ID we picked. */
23 int storage_socket[2];
24
25 char name[];
26};
27
29206d46
LP
28int dynamic_user_serialize(Manager *m, FILE *f, FDSet *fds);
29void dynamic_user_deserialize_one(Manager *m, const char *value, FDSet *fds);
30void dynamic_user_vacuum(Manager *m, bool close_user);
31
f9bfa696 32int dynamic_user_current(DynamicUser *d, uid_t *ret);
29206d46
LP
33int dynamic_user_lookup_uid(Manager *m, uid_t uid, char **ret);
34int dynamic_user_lookup_name(Manager *m, const char *name, uid_t *ret);
35
36int dynamic_creds_acquire(DynamicCreds *creds, Manager *m, const char *user, const char *group);
da50b85a 37int dynamic_creds_realize(DynamicCreds *creds, char **suggested_paths, uid_t *uid, gid_t *gid);
29206d46
LP
38
39void dynamic_creds_unref(DynamicCreds *creds);
40void dynamic_creds_destroy(DynamicCreds *creds);