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