]>
git.proxmox.com Git - systemd.git/blob - src/nspawn/nspawn-setuid.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2015 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 #include <sys/types.h>
26 #include "alloc-util.h"
29 #include "nspawn-setuid.h"
30 #include "process-util.h"
31 #include "signal-util.h"
32 #include "string-util.h"
33 #include "user-util.h"
36 static int spawn_getent(const char *database
, const char *key
, pid_t
*rpid
) {
44 if (pipe2(pipe_fds
, O_CLOEXEC
) < 0)
45 return log_error_errno(errno
, "Failed to allocate pipe: %m");
49 return log_error_errno(errno
, "Failed to fork getent child: %m");
52 char *empty_env
= NULL
;
54 if (dup3(pipe_fds
[1], STDOUT_FILENO
, 0) < 0)
58 safe_close(pipe_fds
[0]);
60 safe_close(pipe_fds
[1]);
62 nullfd
= open("/dev/null", O_RDWR
);
66 if (dup3(nullfd
, STDIN_FILENO
, 0) < 0)
69 if (dup3(nullfd
, STDERR_FILENO
, 0) < 0)
75 (void) reset_all_signal_handlers();
76 (void) reset_signal_mask();
77 close_all_fds(NULL
, 0);
79 execle("/usr/bin/getent", "getent", database
, key
, NULL
, &empty_env
);
80 execle("/bin/getent", "getent", database
, key
, NULL
, &empty_env
);
84 pipe_fds
[1] = safe_close(pipe_fds
[1]);
91 int change_uid_gid(const char *user
, char **_home
) {
92 char line
[LINE_MAX
], *x
, *u
, *g
, *h
;
93 const char *word
, *state
;
94 _cleanup_free_ uid_t
*uids
= NULL
;
95 _cleanup_free_
char *home
= NULL
;
96 _cleanup_fclose_
FILE *f
= NULL
;
97 _cleanup_close_
int fd
= -1;
107 if (!user
|| streq(user
, "root") || streq(user
, "0")) {
108 /* Reset everything fully to 0, just in case */
112 return log_error_errno(r
, "Failed to become root: %m");
118 /* First, get user credentials */
119 fd
= spawn_getent("passwd", user
, &pid
);
128 if (!fgets(line
, sizeof(line
), f
)) {
131 log_error("Failed to resolve user %s.", user
);
135 log_error_errno(errno
, "Failed to read from getent: %m");
141 wait_for_terminate_and_warn("getent passwd", pid
, true);
143 x
= strchr(line
, ':');
145 log_error("/etc/passwd entry has invalid user field.");
149 u
= strchr(x
+1, ':');
151 log_error("/etc/passwd entry has invalid password field.");
158 log_error("/etc/passwd entry has invalid UID field.");
166 log_error("/etc/passwd entry has invalid GID field.");
171 h
= strchr(x
+1, ':');
173 log_error("/etc/passwd entry has invalid GECOS field.");
180 log_error("/etc/passwd entry has invalid home directory field.");
186 r
= parse_uid(u
, &uid
);
188 log_error("Failed to parse UID of user.");
192 r
= parse_gid(g
, &gid
);
194 log_error("Failed to parse GID of user.");
202 /* Second, get group memberships */
203 fd
= spawn_getent("initgroups", user
, &pid
);
213 if (!fgets(line
, sizeof(line
), f
)) {
215 log_error("Failed to resolve user %s.", user
);
219 log_error_errno(errno
, "Failed to read from getent: %m");
225 wait_for_terminate_and_warn("getent initgroups", pid
, true);
227 /* Skip over the username and subsequent separator whitespace */
229 x
+= strcspn(x
, WHITESPACE
);
230 x
+= strspn(x
, WHITESPACE
);
232 FOREACH_WORD(word
, l
, x
, state
) {
238 if (!GREEDY_REALLOC(uids
, sz
, n_uids
+1))
241 r
= parse_uid(c
, &uids
[n_uids
++]);
243 log_error("Failed to parse group data from getent.");
248 r
= mkdir_parents(home
, 0775);
250 return log_error_errno(r
, "Failed to make home root directory: %m");
252 r
= mkdir_safe(home
, 0755, uid
, gid
);
253 if (r
< 0 && r
!= -EEXIST
)
254 return log_error_errno(r
, "Failed to make home directory: %m");
256 (void) fchown(STDIN_FILENO
, uid
, gid
);
257 (void) fchown(STDOUT_FILENO
, uid
, gid
);
258 (void) fchown(STDERR_FILENO
, uid
, gid
);
260 if (setgroups(n_uids
, uids
) < 0)
261 return log_error_errno(errno
, "Failed to set auxiliary groups: %m");
263 if (setresgid(gid
, gid
, gid
) < 0)
264 return log_error_errno(errno
, "setregid() failed: %m");
266 if (setresuid(uid
, uid
, uid
) < 0)
267 return log_error_errno(errno
, "setreuid() failed: %m");