um: Use race-free temporary file creation
authorMickaël Salaün <mic@digikod.net>
Tue, 22 Dec 2015 21:15:10 +0000 (22:15 +0100)
committerRichard Weinberger <richard@nod.at>
Sun, 10 Jan 2016 20:49:50 +0000 (21:49 +0100)
Open the memory mapped file with the O_TMPFILE flag when available.

Signed-off-by: Mickaël Salaün <mic@digikod.net>
Cc: Jeff Dike <jdike@addtoit.com>
Cc: Richard Weinberger <richard@nod.at>
Acked-by: Tristan Schmelcher <tschmelcher@google.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
arch/um/os-Linux/mem.c

index 840d573..8b17676 100644 (file)
@@ -106,6 +106,17 @@ static int __init make_tempfile(const char *template)
                }
        }
 
+#ifdef O_TMPFILE
+       fd = open(tempdir, O_CLOEXEC | O_RDWR | O_EXCL | O_TMPFILE, 0700);
+       /*
+        * If the running system does not support O_TMPFILE flag then retry
+        * without it.
+        */
+       if (fd != -1 || (errno != EINVAL && errno != EISDIR &&
+                       errno != EOPNOTSUPP))
+               return fd;
+#endif
+
        tempname = malloc(strlen(tempdir) + strlen(template) + 1);
        if (tempname == NULL)
                return -1;