use unshare(CLONE_NEWNS) instead of a complicated 'clone(NEWNS) ... waitpid()' operation
[util-vserver.git] / src / vspace.c
index 4c1c64f..4819138 100644 (file)
@@ -22,7 +22,7 @@
 #endif
 
 #include "util.h"
-#include <lib_internal/sys_clone.h>
+#include <lib_internal/sys_unshare.h>
 
 #include <vserver.h>
 
@@ -106,30 +106,14 @@ showVersion()
 }
 
 static void
-newSpaces(uint_least64_t mask, const char *cmd)
+newSpaces(uint_least64_t mask)
 {
-  pid_t pid;
+  int rc;
 
-  /* optimize default case */
-  if (mask == 0)
-    return;
-
-  signal(SIGCHLD, SIG_DFL);
-
-#ifdef NDEBUG
-  pid = sys_clone((int) mask | CLONE_VFORK|SIGCHLD, 0);
-#else
-  pid = sys_clone((int) mask | SIGCHLD, 0);
-#endif
-
-  switch (pid) {
-    case -1    :
-      perror(ENSC_WRAPPERS_PREFIX "clone()");
-      exit(wrapper_exit_code);
-    case 0     :
-      break;
-    default    :
-      exitLikeProcess(pid, cmd, wrapper_exit_code);
+  rc = sys_unshare(mask);
+  if (rc) {
+         perror(ENSC_WRAPPERS_PREFIX "unshare()");
+         exit(wrapper_exit_code);
   }
 }
 
@@ -211,7 +195,7 @@ int main(int argc, char *argv[])
   else if (optind==argc && (do_new || do_enter))
     WRITE_MSG(2, "No command specified; try '--help' for more information\n");
   else {
-    if      (do_new)     newSpaces(mask, argv[optind]);
+    if      (do_new)     newSpaces(mask);
     else if (do_set)     setSpaces(VC_SAMECTX, mask);
     else if (do_enter)   enterSpaces(xid, mask);