chiark / gitweb /
nspawn: mount a new /proc instance in the container so that we don't see the hosts...
authorLennart Poettering <lennart@poettering.net>
Sat, 23 Jul 2011 13:54:52 +0000 (15:54 +0200)
committerLennart Poettering <lennart@poettering.net>
Sat, 23 Jul 2011 13:54:52 +0000 (15:54 +0200)
This partially reverts f5c1b9eeb94c112e5dac09fc6a47c571356c30c0.

src/nspawn.c

index 8f3cd749e525ebb7a854994ad7d30c8b5b43ff0c..8d7e0d03a973304662d8fbf757c7dae27356248f 100644 (file)
@@ -124,7 +124,7 @@ static int mount_all(const char *dest) {
         } MountPoint;
 
         static const MountPoint mount_table[] = {
-                { "/proc",     "/proc",     "bind",  NULL,       MS_BIND, true                       },
+                { "proc",      "/proc",     "proc",  NULL,       MS_NOSUID|MS_NOEXEC|MS_NODEV, true  },
                 { "/proc/sys", "/proc/sys", "bind",  NULL,       MS_BIND, true                       },   /* Bind mount first */
                 { "/proc/sys", "/proc/sys", "bind",  NULL,       MS_BIND|MS_RDONLY|MS_REMOUNT, true  },   /* Then, make it r/o */
                 { "/sys",      "/sys",      "bind",  NULL,       MS_BIND,                      true  },   /* Bind mount first */