chdir, setgroups

This commit is contained in:
Graham Christensen 2019-05-11 15:57:38 -04:00
parent 6df61db060
commit dde8eeb39a
No known key found for this signature in database
GPG Key ID: ACA1C1D120C83D5C
1 changed files with 4 additions and 0 deletions

View File

@ -466,8 +466,12 @@ void handleDiffHook(bool allowVfork, uid_t uid, uid_t gid, Path tryA, Path tryB,
auto diffHook = settings.diffHook;
if (diffHook != "" && settings.runDiffHook) {
auto wrapper = [&]() {
if (chdir("/") == -1)
throw SysError("chdir / failed");
if (setgid(gid) == -1)
throw SysError("setgid failed");
if (setgroups(0, 0) == -1)
throw SysError("setgroups failed");
if (setuid(uid) == -1)
throw SysError("setuid failed");