summaryrefslogtreecommitdiffstats
path: root/sysif.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-05-01 18:56:11 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-05-01 18:56:11 -0700
commit7f1562fbf9262270b31d1007e400dd6605d81f99 (patch)
treeb8d14ffd980000ca8a4293c279f5e4d8244df6d9 /sysif.c
parent9bbc744c3b5e0584ad7c9abe244128572a692229 (diff)
downloadtxr-7f1562fbf9262270b31d1007e400dd6605d81f99.tar.gz
txr-7f1562fbf9262270b31d1007e400dd6605d81f99.tar.bz2
txr-7f1562fbf9262270b31d1007e400dd6605d81f99.zip
Adding getresuid, getresuid, getresgid and setresgid.
* configure: Test for these functions. * sysif.c (getresuid_wrap, getresgid_wrap, setresuid_wrap, setresgid_wrap): New static function. (sysif_init): Registered getresuid, setresgid, setresuid and setresgid intrinsics. * txr.1: Documented all four functions.
Diffstat (limited to 'sysif.c')
-rw-r--r--sysif.c45
1 files changed, 45 insertions, 0 deletions
diff --git a/sysif.c b/sysif.c
index bc0dc822..cb0ae918 100644
--- a/sysif.c
+++ b/sysif.c
@@ -978,6 +978,44 @@ static val setgroups_wrap(val list)
#endif
+#if HAVE_SETRESUID
+
+static val getresuid_wrap(void)
+{
+ uid_t r, e, s;
+ if (getresuid(&r, &e, &s) != 0)
+ uw_throwf(system_error_s, lit("getresuid failed: ~d/~s"),
+ num(errno), string_utf8(strerror(errno)), nao);
+ return list(num(r), num(e), num(s), nao);
+}
+
+static val getresgid_wrap(void)
+{
+ gid_t r, e, s;
+ if (getresgid(&r, &e, &s) != 0)
+ uw_throwf(system_error_s, lit("getresgid failed: ~d/~s"),
+ num(errno), string_utf8(strerror(errno)), nao);
+ return list(num(r), num(e), num(s), nao);
+}
+
+static val setresuid_wrap(val r, val e, val s)
+{
+ if (setresuid(c_num(r), c_num(e), c_num(s)) != 0)
+ uw_throwf(system_error_s, lit("setresuid failed: ~d/~s"),
+ num(errno), string_utf8(strerror(errno)), nao);
+ return t;
+}
+
+static val setresgid_wrap(val r, val e, val s)
+{
+ if (setresuid(c_num(r), c_num(e), c_num(s)) != 0)
+ uw_throwf(system_error_s, lit("setresuid failed: ~d/~s"),
+ num(errno), string_utf8(strerror(errno)), nao);
+ return t;
+}
+
+#endif
+
#if HAVE_PWUID
static val setpwent_wrap(void)
@@ -1542,6 +1580,13 @@ void sysif_init(void)
reg_fun(intern(lit("setgroups"), user_package), func_n1(setgroups_wrap));
#endif
+#if HAVE_SETRESUID
+ reg_fun(intern(lit("getresuid"), user_package), func_n0(getresuid_wrap));
+ reg_fun(intern(lit("getresgid"), user_package), func_n0(getresgid_wrap));
+ reg_fun(intern(lit("setresuid"), user_package), func_n3(setresuid_wrap));
+ reg_fun(intern(lit("setresgid"), user_package), func_n3(setresgid_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));