]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
lxc_setup_fs: Create /dev/shm folder if it doesn't exist
authorBogdan Purcareata <bogdan.purcareata@nxp.com>
Fri, 8 Jan 2016 15:38:44 +0000 (15:38 +0000)
committerStéphane Graber <stgraber@ubuntu.com>
Thu, 17 Nov 2016 22:44:32 +0000 (17:44 -0500)
When running application containers with lxc-execute, /dev is
populated only with device entries. Since /dev is a tmpfs mount in
the container environment, the /dev/shm folder not being present is not
a sufficient reason for the /dev/shm mount to fail.

Create the /dev/shm directory if not present.

Signed-off-by: Bogdan Purcareata <bogdan.purcareata@nxp.com>
Acked-by: Serge E. Hallyn <serge.hallyn@ubuntu.com>
src/lxc/initutils.c

index dbb5d52f5105a30dc292949dc0f1f8e0422647b7..26194ca08b1ab933b41d203b50c5f87518b89753 100644 (file)
@@ -47,6 +47,10 @@ extern void lxc_setup_fs(void)
        if (mount_fs("proc", "/proc", "proc"))
                INFO("failed to remount proc");
 
+       /* if /dev has been populated by us, /dev/shm does not exist */
+       if (access("/dev/shm", F_OK) && mkdir("/dev/shm", 0777))
+               INFO("failed to create /dev/shm");
+
        /* if we can't mount /dev/shm, continue anyway */
        if (mount_fs("shmfs", "/dev/shm", "tmpfs"))
                INFO("failed to mount /dev/shm");