]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Wrapper.pm
simplify
[ikiwiki.git] / IkiWiki / Wrapper.pm
index 7d27abd06a6e742b66349115ef4107136f36e11f..0f64a59f4c039ab24872457cc3529c364deee172 100644 (file)
@@ -47,10 +47,6 @@ EOF
 EOF
        }
        
-       # This is only set by plugins, which append to it on startup, so
-       # avoid storing it in the wrapper.
-       $config{headercontent}="";
-       
        $Data::Dumper::Indent=0; # no newlines
        my $configstring=Data::Dumper->Dump([\%config], ['*config']);
        $configstring=~s/\\/\\\\/g;
@@ -62,6 +58,7 @@ EOF
 /* A wrapper for ikiwiki, can be safely made suid. */
 #define _GNU_SOURCE
 #include <stdio.h>
+#include <sys/types.h>
 #include <unistd.h>
 #include <stdlib.h>
 #include <string.h>
@@ -79,6 +76,11 @@ $envsave
        newenviron[i]=NULL;
        environ=newenviron;
 
+       if (setregid(getegid(), -1) != 0 || setreuid(geteuid(), -1) != 0) {
+               perror("failed to drop real uid/gid");
+               exit(1);
+       }
+
        execl("$this", "$this", NULL);
        perror("failed to run $this");
        exit(1);