]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
nspawn,namespaces: make sure we recursively bind mount things in
authorLennart Poettering <lennart@poettering.net>
Mon, 13 Aug 2012 14:25:03 +0000 (16:25 +0200)
committerLennart Poettering <lennart@poettering.net>
Mon, 13 Aug 2012 14:25:03 +0000 (16:25 +0200)
We want to make sure that everything from the host is also visible in
the sandbox.

src/core/namespace.c
src/nspawn/nspawn.c

index 5c2a24653c72708d87f90a26e72ced8534c55060..ba18ddc5b0049dd005a1a7090850cd78826f0316 100644 (file)
@@ -156,7 +156,7 @@ static int apply_mount(
 
         assert(what);
 
-        r = mount(what, p->path, NULL, MS_BIND, NULL);
+        r = mount(what, p->path, NULL, MS_BIND|MS_REC, NULL);
         if (r >= 0)
                 log_debug("Successfully mounted %s to %s", what, p->path);
 
@@ -171,7 +171,7 @@ static int make_read_only(Path *p) {
         if (p->mode != INACCESSIBLE && p->mode != READONLY)
                 return 0;
 
-        r = mount(NULL, p->path, NULL, MS_BIND|MS_REMOUNT|MS_RDONLY, NULL);
+        r = mount(NULL, p->path, NULL, MS_BIND|MS_REMOUNT|MS_RDONLY|MS_REC, NULL);
         if (r < 0)
                 return -errno;
 
index 78b5602e58291875be9d676f2f26579953d7d160..7d188f0712820f9c171bcce10b076590405a1ec3 100644 (file)
@@ -1187,13 +1187,13 @@ int main(int argc, char *argv[]) {
                 }
 
                 /* Turn directory into bind mount */
-                if (mount(arg_directory, arg_directory, "bind", MS_BIND, NULL) < 0) {
+                if (mount(arg_directory, arg_directory, "bind", MS_BIND|MS_REC, NULL) < 0) {
                         log_error("Failed to make bind mount.");
                         goto child_fail;
                 }
 
                 if (arg_read_only)
-                        if (mount(arg_directory, arg_directory, "bind", MS_BIND|MS_REMOUNT|MS_RDONLY, NULL) < 0) {
+                        if (mount(arg_directory, arg_directory, "bind", MS_BIND|MS_REMOUNT|MS_RDONLY|MS_REC, NULL) < 0) {
                                 log_error("Failed to make read-only.");
                                 goto child_fail;
                         }