Handle read-only bind-mounts the new way.
[util-vserver.git] / src / vspace.c
index 940255f..30d1ab4 100644 (file)
@@ -106,7 +106,7 @@ showVersion()
 }
 
 static void
-newSpaces(uint_least64_t mask, const char *cmd)
+newSpaces(uint_least64_t mask)
 {
   pid_t pid;
 
@@ -114,6 +114,8 @@ newSpaces(uint_least64_t mask, const char *cmd)
   if (mask == 0)
     return;
 
+  mask &= ~CLONE_FS;
+
   signal(SIGCHLD, SIG_DFL);
 
 #ifdef NDEBUG
@@ -129,7 +131,7 @@ newSpaces(uint_least64_t mask, const char *cmd)
     case 0     :
       break;
     default    :
-      exitLikeProcess(pid, cmd, wrapper_exit_code);
+      vc_exitLikeProcess(pid, wrapper_exit_code);
   }
 }
 
@@ -173,14 +175,17 @@ int main(int argc, char *argv[])
        do_enter = true;
        xid      = Evc_xidopt2xid(optarg,true);
        break;
-      case 'm'         :
-       if (!isNumberUnsigned(optarg, &mask, true)) {
+      case 'm'         :  {
+       unsigned long   mask_l;
+       if (!isNumberUnsigned(optarg, &mask_l, true)) {
          WRITE_MSG(2, "Invalid mask '");
          WRITE_STR(2, optarg);
          WRITE_MSG(2, "'; try '--help' for more information\n");
          return wrapper_exit_code;
        }
+       mask = mask_l;
        break;
+      }
       case 'M'         :  mask |= CLONE_NEWNS;         break;
       case 'F'         :  mask |= CLONE_FS;            break;
       case 'I'         :  mask |= CLONE_NEWIPC;        break;
@@ -205,12 +210,10 @@ int main(int argc, char *argv[])
     WRITE_MSG(2, "No operation was specified; try '--help' for more information\n");
   else if (sum>1)
     WRITE_MSG(2, "Can not specify multiple operations; try '--help' for more information\n");
-  else if (mask==0)
-    WRITE_MSG(2, "Must specify at least one space; try '--help' for more information\n");
   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);