10f80bc85SJeff Dike #include <stdio.h> 20f80bc85SJeff Dike #include <stdlib.h> 30f80bc85SJeff Dike #include <stddef.h> 40f80bc85SJeff Dike #include <stdarg.h> 50f80bc85SJeff Dike #include <unistd.h> 60f80bc85SJeff Dike #include <errno.h> 70f80bc85SJeff Dike #include <string.h> 80f80bc85SJeff Dike #include <fcntl.h> 90f80bc85SJeff Dike #include <sys/types.h> 100f80bc85SJeff Dike #include <sys/mman.h> 11966a082fSRob Landley #include <sys/statfs.h> 120f80bc85SJeff Dike #include "kern_util.h" 130f80bc85SJeff Dike #include "user.h" 140f80bc85SJeff Dike #include "mem_user.h" 150f80bc85SJeff Dike #include "init.h" 160f80bc85SJeff Dike #include "os.h" 170f80bc85SJeff Dike #include "tempfile.h" 180f80bc85SJeff Dike #include "kern_constants.h" 190f80bc85SJeff Dike 200f80bc85SJeff Dike #include <sys/param.h> 210f80bc85SJeff Dike 226bf79482SJeff Dike /* Modified by which_tmpdir, which is called during early boot */ 23966a082fSRob Landley static char *default_tmpdir = "/tmp"; 246bf79482SJeff Dike 256bf79482SJeff Dike /* 266bf79482SJeff Dike * Modified when creating the physical memory file and when checking 276bf79482SJeff Dike * the tmp filesystem for usability, both happening during early boot. 286bf79482SJeff Dike */ 290f80bc85SJeff Dike static char *tempdir = NULL; 300f80bc85SJeff Dike 310f80bc85SJeff Dike static void __init find_tempdir(void) 320f80bc85SJeff Dike { 330f80bc85SJeff Dike char *dirs[] = { "TMP", "TEMP", "TMPDIR", NULL }; 340f80bc85SJeff Dike int i; 350f80bc85SJeff Dike char *dir = NULL; 360f80bc85SJeff Dike 3781999a01SJeff Dike if(tempdir != NULL) /* We've already been called */ 3881999a01SJeff Dike return; 390f80bc85SJeff Dike for(i = 0; dirs[i]; i++){ 400f80bc85SJeff Dike dir = getenv(dirs[i]); 410f80bc85SJeff Dike if((dir != NULL) && (*dir != '\0')) 420f80bc85SJeff Dike break; 430f80bc85SJeff Dike } 440f80bc85SJeff Dike if((dir == NULL) || (*dir == '\0')) 45966a082fSRob Landley dir = default_tmpdir; 460f80bc85SJeff Dike 470f80bc85SJeff Dike tempdir = malloc(strlen(dir) + 2); 480f80bc85SJeff Dike if(tempdir == NULL){ 490f80bc85SJeff Dike fprintf(stderr, "Failed to malloc tempdir, " 500f80bc85SJeff Dike "errno = %d\n", errno); 510f80bc85SJeff Dike return; 520f80bc85SJeff Dike } 530f80bc85SJeff Dike strcpy(tempdir, dir); 540f80bc85SJeff Dike strcat(tempdir, "/"); 550f80bc85SJeff Dike } 560f80bc85SJeff Dike 57966a082fSRob Landley /* This will return 1, with the first character in buf being the 58966a082fSRob Landley * character following the next instance of c in the file. This will 59966a082fSRob Landley * read the file as needed. If there's an error, -errno is returned; 60966a082fSRob Landley * if the end of the file is reached, 0 is returned. 61966a082fSRob Landley */ 62966a082fSRob Landley static int next(int fd, char *buf, int size, char c) 63966a082fSRob Landley { 64c2b7a4bbSJeff Dike int n, len; 65966a082fSRob Landley char *ptr; 66966a082fSRob Landley 67966a082fSRob Landley while((ptr = strchr(buf, c)) == NULL){ 68966a082fSRob Landley n = read(fd, buf, size - 1); 69966a082fSRob Landley if(n == 0) 70966a082fSRob Landley return 0; 71966a082fSRob Landley else if(n < 0) 72966a082fSRob Landley return -errno; 73966a082fSRob Landley 74966a082fSRob Landley buf[n] = '\0'; 75966a082fSRob Landley } 76966a082fSRob Landley 77966a082fSRob Landley ptr++; 78c2b7a4bbSJeff Dike len = strlen(ptr); 79c2b7a4bbSJeff Dike memmove(buf, ptr, len + 1); 80c2b7a4bbSJeff Dike 81c2b7a4bbSJeff Dike /* Refill the buffer so that if there's a partial string that we care 82c2b7a4bbSJeff Dike * about, it will be completed, and we can recognize it. 83c2b7a4bbSJeff Dike */ 84c2b7a4bbSJeff Dike n = read(fd, &buf[len], size - len - 1); 85c2b7a4bbSJeff Dike if(n < 0) 86c2b7a4bbSJeff Dike return -errno; 87c2b7a4bbSJeff Dike 88c2b7a4bbSJeff Dike buf[len + n] = '\0'; 89966a082fSRob Landley return 1; 90966a082fSRob Landley } 91966a082fSRob Landley 926bf79482SJeff Dike /* which_tmpdir is called only during early boot */ 93966a082fSRob Landley static int checked_tmpdir = 0; 94966a082fSRob Landley 95966a082fSRob Landley /* Look for a tmpfs mounted at /dev/shm. I couldn't find a cleaner 96966a082fSRob Landley * way to do this than to parse /proc/mounts. statfs will return the 97966a082fSRob Landley * same filesystem magic number and fs id for both /dev and /dev/shm 98966a082fSRob Landley * when they are both tmpfs, so you can't tell if they are different 99966a082fSRob Landley * filesystems. Also, there seems to be no other way of finding the 100966a082fSRob Landley * mount point of a filesystem from within it. 101966a082fSRob Landley * 102966a082fSRob Landley * If a /dev/shm tmpfs entry is found, then we switch to using it. 103966a082fSRob Landley * Otherwise, we stay with the default /tmp. 104966a082fSRob Landley */ 105966a082fSRob Landley static void which_tmpdir(void) 106966a082fSRob Landley { 107966a082fSRob Landley int fd, found; 108966a082fSRob Landley char buf[128] = { '\0' }; 109966a082fSRob Landley 110966a082fSRob Landley if(checked_tmpdir) 111966a082fSRob Landley return; 112966a082fSRob Landley 113966a082fSRob Landley checked_tmpdir = 1; 114966a082fSRob Landley 115966a082fSRob Landley printf("Checking for tmpfs mount on /dev/shm..."); 116966a082fSRob Landley 117966a082fSRob Landley fd = open("/proc/mounts", O_RDONLY); 118966a082fSRob Landley if(fd < 0){ 119966a082fSRob Landley printf("failed to open /proc/mounts, errno = %d\n", errno); 120966a082fSRob Landley return; 121966a082fSRob Landley } 122966a082fSRob Landley 123966a082fSRob Landley while(1){ 12491b165c0SJeff Dike found = next(fd, buf, ARRAY_SIZE(buf), ' '); 125966a082fSRob Landley if(found != 1) 126966a082fSRob Landley break; 127966a082fSRob Landley 128966a082fSRob Landley if(!strncmp(buf, "/dev/shm", strlen("/dev/shm"))) 129966a082fSRob Landley goto found; 130966a082fSRob Landley 13191b165c0SJeff Dike found = next(fd, buf, ARRAY_SIZE(buf), '\n'); 132966a082fSRob Landley if(found != 1) 133966a082fSRob Landley break; 134966a082fSRob Landley } 135966a082fSRob Landley 136966a082fSRob Landley err: 137966a082fSRob Landley if(found == 0) 138966a082fSRob Landley printf("nothing mounted on /dev/shm\n"); 139966a082fSRob Landley else if(found < 0) 140966a082fSRob Landley printf("read returned errno %d\n", -found); 141966a082fSRob Landley 14280c13749SJeff Dike out: 14380c13749SJeff Dike close(fd); 14480c13749SJeff Dike 145966a082fSRob Landley return; 146966a082fSRob Landley 147966a082fSRob Landley found: 14891b165c0SJeff Dike found = next(fd, buf, ARRAY_SIZE(buf), ' '); 149966a082fSRob Landley if(found != 1) 150966a082fSRob Landley goto err; 151966a082fSRob Landley 152966a082fSRob Landley if(strncmp(buf, "tmpfs", strlen("tmpfs"))){ 153966a082fSRob Landley printf("not tmpfs\n"); 15480c13749SJeff Dike goto out; 155966a082fSRob Landley } 156966a082fSRob Landley 157966a082fSRob Landley printf("OK\n"); 158966a082fSRob Landley default_tmpdir = "/dev/shm"; 15980c13749SJeff Dike goto out; 160966a082fSRob Landley } 161966a082fSRob Landley 1620f80bc85SJeff Dike /* 1630f80bc85SJeff Dike * This proc still used in tt-mode 1640f80bc85SJeff Dike * (file: kernel/tt/ptproxy/proxy.c, proc: start_debugger). 1650f80bc85SJeff Dike * So it isn't 'static' yet. 1660f80bc85SJeff Dike */ 16736e45463SJeff Dike int __init make_tempfile(const char *template, char **out_tempname, 16836e45463SJeff Dike int do_unlink) 1690f80bc85SJeff Dike { 17087276f72SPaolo 'Blaisorblade' Giarrusso char *tempname; 1710f80bc85SJeff Dike int fd; 1720f80bc85SJeff Dike 173966a082fSRob Landley which_tmpdir(); 17487276f72SPaolo 'Blaisorblade' Giarrusso tempname = malloc(MAXPATHLEN); 17587276f72SPaolo 'Blaisorblade' Giarrusso 1760f80bc85SJeff Dike find_tempdir(); 17787276f72SPaolo 'Blaisorblade' Giarrusso if (template[0] != '/') 1780f80bc85SJeff Dike strcpy(tempname, tempdir); 1790f80bc85SJeff Dike else 18087276f72SPaolo 'Blaisorblade' Giarrusso tempname[0] = '\0'; 1810f80bc85SJeff Dike strcat(tempname, template); 1820f80bc85SJeff Dike fd = mkstemp(tempname); 1830f80bc85SJeff Dike if(fd < 0){ 1840f80bc85SJeff Dike fprintf(stderr, "open - cannot create %s: %s\n", tempname, 1850f80bc85SJeff Dike strerror(errno)); 18687276f72SPaolo 'Blaisorblade' Giarrusso goto out; 1870f80bc85SJeff Dike } 1880f80bc85SJeff Dike if(do_unlink && (unlink(tempname) < 0)){ 1890f80bc85SJeff Dike perror("unlink"); 19087276f72SPaolo 'Blaisorblade' Giarrusso goto out; 1910f80bc85SJeff Dike } 1920f80bc85SJeff Dike if(out_tempname){ 19387276f72SPaolo 'Blaisorblade' Giarrusso *out_tempname = tempname; 19487276f72SPaolo 'Blaisorblade' Giarrusso } else { 19587276f72SPaolo 'Blaisorblade' Giarrusso free(tempname); 1960f80bc85SJeff Dike } 19781999a01SJeff Dike return fd; 19887276f72SPaolo 'Blaisorblade' Giarrusso out: 19987276f72SPaolo 'Blaisorblade' Giarrusso free(tempname); 20087276f72SPaolo 'Blaisorblade' Giarrusso return -1; 2010f80bc85SJeff Dike } 2020f80bc85SJeff Dike 2030f80bc85SJeff Dike #define TEMPNAME_TEMPLATE "vm_file-XXXXXX" 2040f80bc85SJeff Dike 2050f80bc85SJeff Dike /* 2060f80bc85SJeff Dike * This proc is used in start_up.c 2070f80bc85SJeff Dike * So it isn't 'static'. 2080f80bc85SJeff Dike */ 20936e45463SJeff Dike int __init create_tmp_file(unsigned long long len) 2100f80bc85SJeff Dike { 2110f80bc85SJeff Dike int fd, err; 2120f80bc85SJeff Dike char zero; 2130f80bc85SJeff Dike 2140f80bc85SJeff Dike fd = make_tempfile(TEMPNAME_TEMPLATE, NULL, 1); 2150f80bc85SJeff Dike if(fd < 0) { 2160f80bc85SJeff Dike exit(1); 2170f80bc85SJeff Dike } 2180f80bc85SJeff Dike 2190f80bc85SJeff Dike err = fchmod(fd, 0777); 2200f80bc85SJeff Dike if(err < 0){ 2210f80bc85SJeff Dike perror("os_mode_fd"); 2220f80bc85SJeff Dike exit(1); 2230f80bc85SJeff Dike } 2240f80bc85SJeff Dike 225190f4939SJeff Dike /* Seek to len - 1 because writing a character there will 226190f4939SJeff Dike * increase the file size by one byte, to the desired length. 227190f4939SJeff Dike */ 228190f4939SJeff Dike if (lseek64(fd, len - 1, SEEK_SET) < 0) { 2290f80bc85SJeff Dike perror("os_seek_file"); 2300f80bc85SJeff Dike exit(1); 2310f80bc85SJeff Dike } 2320f80bc85SJeff Dike 2330f80bc85SJeff Dike zero = 0; 2340f80bc85SJeff Dike 235*a61f334fSJeff Dike err = write(fd, &zero, 1); 2360f80bc85SJeff Dike if(err != 1){ 237*a61f334fSJeff Dike perror("write"); 2380f80bc85SJeff Dike exit(1); 2390f80bc85SJeff Dike } 2400f80bc85SJeff Dike 24181999a01SJeff Dike return fd; 2420f80bc85SJeff Dike } 2430f80bc85SJeff Dike 24436e45463SJeff Dike int __init create_mem_file(unsigned long long len) 2450f80bc85SJeff Dike { 2460f80bc85SJeff Dike int err, fd; 2470f80bc85SJeff Dike 24802dea087SJeff Dike fd = create_tmp_file(len); 2490f80bc85SJeff Dike 2500f80bc85SJeff Dike err = os_set_exec_close(fd, 1); 2510f80bc85SJeff Dike if(err < 0){ 2520f80bc85SJeff Dike errno = -err; 2530f80bc85SJeff Dike perror("exec_close"); 2540f80bc85SJeff Dike } 25581999a01SJeff Dike return fd; 2560f80bc85SJeff Dike } 257966a082fSRob Landley 258966a082fSRob Landley 25936e45463SJeff Dike void __init check_tmpexec(void) 260966a082fSRob Landley { 261966a082fSRob Landley void *addr; 262966a082fSRob Landley int err, fd = create_tmp_file(UM_KERN_PAGE_SIZE); 263966a082fSRob Landley 264966a082fSRob Landley addr = mmap(NULL, UM_KERN_PAGE_SIZE, 265966a082fSRob Landley PROT_READ | PROT_WRITE | PROT_EXEC, MAP_PRIVATE, fd, 0); 266966a082fSRob Landley printf("Checking PROT_EXEC mmap in %s...",tempdir); 267966a082fSRob Landley fflush(stdout); 268966a082fSRob Landley if(addr == MAP_FAILED){ 269966a082fSRob Landley err = errno; 270966a082fSRob Landley perror("failed"); 271966a082fSRob Landley if(err == EPERM) 272966a082fSRob Landley printf("%s must be not mounted noexec\n",tempdir); 273966a082fSRob Landley exit(1); 274966a082fSRob Landley } 275966a082fSRob Landley printf("OK\n"); 276966a082fSRob Landley munmap(addr, UM_KERN_PAGE_SIZE); 277966a082fSRob Landley 278966a082fSRob Landley close(fd); 279966a082fSRob Landley } 280