From 5f1aaea6f15933c161772fb6330b95104f2766f2 Mon Sep 17 00:00:00 2001 From: tickelton Date: Fri, 8 May 2015 09:03:16 +0200 Subject: [PATCH] Issue #243: Cannot look up group "shellinabox" at service start _SC_GETGR_R_SIZE_MAX was treated as a maximum buffer size while it should only be a proposition for an initial size. The buffer size is now increased dynamically if the initial size is not sufficient. --- shellinabox/privileges.c | 62 +++++++++++++++++++++++++++------------- 1 file changed, 42 insertions(+), 20 deletions(-) diff --git a/shellinabox/privileges.c b/shellinabox/privileges.c index 4da1cbc..00b5641 100644 --- a/shellinabox/privileges.c +++ b/shellinabox/privileges.c @@ -363,8 +363,12 @@ static int getgrnam_r(const char *name, struct group *grp, char *buf, #endif gid_t getGroupId(const char *name) { + static const long gr_max = 64 * 1024; struct group grbuf, *gr; + char *temp; char *buf; + int ret; + int gr_baselen; #ifdef _SC_GETGR_R_SIZE_MAX int gr_len = sysconf(_SC_GETGR_R_SIZE_MAX); if (gr_len <= 0) { @@ -373,29 +377,47 @@ gid_t getGroupId(const char *name) { #else int gr_len = 4096; #endif + gr_baselen = gr_len; check(buf = malloc(gr_len)); - if (getgrnam_r(name, &grbuf, buf, gr_len, &gr) || !gr) { - // Maybe, this system does not have a "nogroup" group. Substitute the - // group of the "nobody" user. - if (!strcmp(name, "nogroup")) { - struct passwd pwbuf, *pw; - #ifdef _SC_GETPW_R_SIZE_MAX - int pw_len = sysconf(_SC_GETPW_R_SIZE_MAX); - if (pw_len <= 0) { - pw_len = 4096; + for(;;) { + errno = 0; + ret = getgrnam_r(name, &grbuf, buf, gr_len, &gr); + if(!ret) { + if(gr) { + break; + } else if(!strcmp(name, "nogroup")) { + // Maybe, this system does not have a "nogroup" group. Substitute the + // group of the "nobody" user. + struct passwd pwbuf, *pw; + #ifdef _SC_GETPW_R_SIZE_MAX + int pw_len = sysconf(_SC_GETPW_R_SIZE_MAX); + if (pw_len <= 0) { + pw_len = 4096; + } + #else + int pw_len = 4096; + #endif + if (pw_len > gr_len) { + check(buf = realloc(buf, pw_len)); + } + if (!getpwnam_r("nobody", &pwbuf, buf, pw_len, &pw) && pw) { + debug("Substituting \"nobody's\" primary group for \"nogroup\""); + gid_t gid = pw->pw_gid; + free(buf); + return gid; + } } - #else - int pw_len = 4096; - #endif - if (pw_len > gr_len) { - check(buf = realloc(buf, pw_len)); - } - if (!getpwnam_r("nobody", &pwbuf, buf, pw_len, &pw) && pw) { - debug("Substituting \"nobody's\" primary group for \"nogroup\""); - gid_t gid = pw->pw_gid; - free(buf); - return gid; + } + if(ret && errno == ERANGE) { + if ((gr_len + gr_baselen) < gr_len || (gr_len + gr_baselen) > gr_max) { + fatal("Cannot look up group \"%s\": buffer limit reached", name); + break; } + // grow the buffer by 'gr_baselen' each time getgrnam_r fails + gr_len += gr_baselen; + check(temp = realloc (buf, gr_len)); + buf = temp; + continue; } fatal("Cannot look up group \"%s\"", name); }