From 9bbc744c3b5e0584ad7c9abe244128572a692229 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sun, 1 May 2016 18:54:03 -0700 Subject: Adding setgroups function. * configure: Test for setgroups. New HAVE_SETGROUPS preprocessor symbol for config/config.h. * sysif.c (setgroups_wrap): New static function. (sysif_init): Register intrinsic setgroups function. * txr.1: Documented setgroups. Rearranged sections so getgroups and setgroups descriptions are consecutive. --- sysif.c | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'sysif.c') diff --git a/sysif.c b/sysif.c index a3fdbb69..bc0dc822 100644 --- a/sysif.c +++ b/sysif.c @@ -946,6 +946,38 @@ void simulate_setuid(val open_script) #endif +#if HAVE_SETGROUPS + +static val setgroups_wrap(val list) +{ + cnum len = c_num(length(list)); + size_t size = len; + + if ((cnum) size != len) { + uw_throwf(system_error_s, lit("setgroups: list too long"), nao); + } else { + gid_t *arr = coerce(gid_t *, chk_malloc(size *sizeof *arr)); + int i = 0, res; + + for (; list; i++, list = cdr(list)) { + cnum gid = c_num(car(list)); + arr[i] = gid; + } + + res = setgroups(size, arr); + + free(arr); + + if (res != 0) + uw_throwf(system_error_s, lit("setgroups failed: ~d/~s"), + num(errno), string_utf8(strerror(errno)), nao); + + return t; + } +} + +#endif + #if HAVE_PWUID static val setpwent_wrap(void) @@ -1506,6 +1538,10 @@ void sysif_init(void) reg_fun(intern(lit("setegid"), user_package), func_n1(setegid_wrap)); #endif +#if HAVE_SETGROUPS + reg_fun(intern(lit("setgroups"), user_package), func_n1(setgroups_wrap)); +#endif + #if HAVE_PWUID reg_fun(intern(lit("setpwent"), user_package), func_n0(setpwent_wrap)); reg_fun(intern(lit("endpwent"), user_package), func_n0(endpwent_wrap)); -- cgit v1.2.3