aboutgitcodebugslistschat
path: root/conf.c
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2023-05-21 14:47:07 +0200
committerStefano Brivio <sbrivio@redhat.com>2023-05-23 16:13:18 +0200
commitb0881aae6d91845821b2732f3fc8890e3d9ec4d2 (patch)
treef509bda5008a4f1737725eaa6d37295e8da0d937 /conf.c
parent25f1d1a84f459fe197508b07fc7cdb858d7468ee (diff)
downloadpasst-b0881aae6d91845821b2732f3fc8890e3d9ec4d2.tar
passt-b0881aae6d91845821b2732f3fc8890e3d9ec4d2.tar.gz
passt-b0881aae6d91845821b2732f3fc8890e3d9ec4d2.tar.bz2
passt-b0881aae6d91845821b2732f3fc8890e3d9ec4d2.tar.lz
passt-b0881aae6d91845821b2732f3fc8890e3d9ec4d2.tar.xz
passt-b0881aae6d91845821b2732f3fc8890e3d9ec4d2.tar.zst
passt-b0881aae6d91845821b2732f3fc8890e3d9ec4d2.zip
util, conf: Add and use ns_is_init() helper
We'll need this in isolate_initial(). While at it, don't rely on BUFSIZ: the earlier issue we had with musl reminded me it's not a magic "everything will fit" value. Size the read buffer to what we actually need from uid_map, and check for the final newline too, because uid_map is organised in lines. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/conf.c b/conf.c
index 447b000..984c3ce 100644
--- a/conf.c
+++ b/conf.c
@@ -1096,10 +1096,6 @@ static int conf_runas(char *opt, unsigned int *uid, unsigned int *gid)
*/
static void conf_ugid(char *runas, uid_t *uid, gid_t *gid)
{
- const char root_uid_map[] = " 0 0 4294967295";
- char buf[BUFSIZ];
- int fd;
-
/* If user has specified --runas, that takes precedence... */
if (runas) {
if (conf_runas(runas, uid, gid))
@@ -1116,18 +1112,8 @@ static void conf_ugid(char *runas, uid_t *uid, gid_t *gid)
return;
/* ...or at least not root in the init namespace... */
- if ((fd = open("/proc/self/uid_map", O_RDONLY | O_CLOEXEC)) < 0) {
- die("Can't determine if we're in init namespace: %s",
- strerror(errno));
- }
-
- if (read(fd, buf, BUFSIZ) != sizeof(root_uid_map) ||
- strncmp(buf, root_uid_map, sizeof(root_uid_map) - 1)) {
- close(fd);
+ if (!ns_is_init())
return;
- }
-
- close(fd);
/* ...otherwise use nobody:nobody */
warn("Don't run as root. Changing to nobody...");