]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/user-util.h
tree-wide: remove Lennart's copyright lines
[thirdparty/systemd.git] / src / basic / user-util.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
b1d4f8e1
LP
2#pragma once
3
100d5f6e
FB
4#include <grp.h>
5#include <gshadow.h>
6#include <pwd.h>
7#include <shadow.h>
b1d4f8e1 8#include <stdbool.h>
61755fda 9#include <stdint.h>
71d35b6b 10#include <sys/types.h>
ccabee0d 11#include <unistd.h>
b1d4f8e1
LP
12
13bool uid_is_valid(uid_t uid);
14
15static inline bool gid_is_valid(gid_t gid) {
16 return uid_is_valid((uid_t) gid);
17}
18
19int parse_uid(const char *s, uid_t* ret_uid);
20
21static inline int parse_gid(const char *s, gid_t *ret_gid) {
22 return parse_uid(s, (uid_t*) ret_gid);
23}
24
b1d4f8e1
LP
25char* getlogname_malloc(void);
26char* getusername_malloc(void);
27
28int get_user_creds(const char **username, uid_t *uid, gid_t *gid, const char **home, const char **shell);
be39ccf3 29int get_user_creds_clean(const char **username, uid_t *uid, gid_t *gid, const char **home, const char **shell);
b1d4f8e1
LP
30int get_group_creds(const char **groupname, gid_t *gid);
31
32char* uid_to_name(uid_t uid);
33char* gid_to_name(gid_t gid);
34
35int in_gid(gid_t gid);
36int in_group(const char *name);
37
38int get_home_dir(char **ret);
39int get_shell(char **_ret);
40
41int reset_uid_gid(void);
e929bee0
LP
42
43int take_etc_passwd_lock(const char *root);
ee104e11
LP
44
45#define UID_INVALID ((uid_t) -1)
46#define GID_INVALID ((gid_t) -1)
47
3a664727
LP
48#define UID_NOBODY ((uid_t) 65534U)
49#define GID_NOBODY ((gid_t) 65534U)
50
d1e4b8fd
ZJS
51#define ETC_PASSWD_LOCK_PATH "/etc/.pwd.lock"
52
61755fda
ZJS
53static inline bool uid_is_dynamic(uid_t uid) {
54 return DYNAMIC_UID_MIN <= uid && uid <= DYNAMIC_UID_MAX;
55}
56
83438277
LP
57static inline bool gid_is_dynamic(gid_t gid) {
58 return uid_is_dynamic((uid_t) gid);
59}
60
ece877d4
LP
61static inline bool uid_is_system(uid_t uid) {
62 return uid <= SYSTEM_UID_MAX;
63}
64
65static inline bool gid_is_system(gid_t gid) {
66 return gid <= SYSTEM_GID_MAX;
67}
68
61755fda
ZJS
69/* The following macros add 1 when converting things, since UID 0 is a valid UID, while the pointer
70 * NULL is special */
ee104e11
LP
71#define PTR_TO_UID(p) ((uid_t) (((uintptr_t) (p))-1))
72#define UID_TO_PTR(u) ((void*) (((uintptr_t) (u))+1))
73
74#define PTR_TO_GID(p) ((gid_t) (((uintptr_t) (p))-1))
75#define GID_TO_PTR(u) ((void*) (((uintptr_t) (u))+1))
ccabee0d
LP
76
77static inline bool userns_supported(void) {
78 return access("/proc/self/uid_map", F_OK) >= 0;
79}
e4631b48
LP
80
81bool valid_user_group_name(const char *u);
82bool valid_user_group_name_or_id(const char *u);
83bool valid_gecos(const char *d);
84bool valid_home(const char *p);
36d85478 85
7b1aaf66
ZJS
86static inline bool valid_shell(const char *p) {
87 /* We have the same requirements, so just piggy-back on the home check.
88 *
89 * Let's ignore /etc/shells because this is only applicable to real and
90 * not system users. It is also incompatible with the idea of empty /etc.
91 */
92 return valid_home(p);
93}
94
36d85478 95int maybe_setgroups(size_t size, const gid_t *list);
24eccc34
LP
96
97bool synthesize_nobody(void);
100d5f6e
FB
98
99int fgetpwent_sane(FILE *stream, struct passwd **pw);
100int fgetspent_sane(FILE *stream, struct spwd **sp);
101int fgetgrent_sane(FILE *stream, struct group **gr);
102int putpwent_sane(const struct passwd *pw, FILE *stream);
103int putspent_sane(const struct spwd *sp, FILE *stream);
104int putgrent_sane(const struct group *gr, FILE *stream);
105#ifdef ENABLE_GSHADOW
106int fgetsgent_sane(FILE *stream, struct sgrp **sg);
107int putsgent_sane(const struct sgrp *sg, FILE *stream);
108#endif