1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
16 #include <linux/magic.h>
18 #include <kern_util.h>
23 * kasan_map_memory - maps memory from @start with a size of @len.
24 * The allocated memory is filled with zeroes upon success.
25 * @start: the start address of the memory to be mapped
26 * @len: the length of the memory to be mapped
28 * This function is used to map shadow memory for KASAN in uml
30 void kasan_map_memory(void *start
, size_t len
)
35 MAP_FIXED
|MAP_ANONYMOUS
|MAP_PRIVATE
|MAP_NORESERVE
,
38 os_info("Couldn't allocate shadow memory: %s\n.",
43 if (madvise(start
, len
, MADV_DONTDUMP
)) {
44 os_info("Couldn't set MAD_DONTDUMP on shadow memory: %s\n.",
49 if (madvise(start
, len
, MADV_DONTFORK
)) {
50 os_info("Couldn't set MADV_DONTFORK on shadow memory: %s\n.",
56 /* Set by make_tempfile() during early boot. */
59 /* Check if dir is on tmpfs. Return 0 if yes, -1 if no or error. */
60 static int __init
check_tmpfs(const char *dir
)
64 os_info("Checking if %s is on tmpfs...", dir
);
65 if (statfs(dir
, &st
) < 0) {
66 os_info("%s\n", strerror(errno
));
67 } else if (st
.f_type
!= TMPFS_MAGIC
) {
77 * Choose the tempdir to use. We want something on tmpfs so that our memory is
78 * not subject to the host's vm.dirty_ratio. If a tempdir is specified in the
79 * environment, we use that even if it's not on tmpfs, but we warn the user.
80 * Otherwise, we try common tmpfs locations, and if no tmpfs directory is found
81 * then we fall back to /tmp.
83 static char * __init
choose_tempdir(void)
85 static const char * const vars
[] = {
91 static const char fallback_dir
[] = "/tmp";
92 static const char * const tmpfs_dirs
[] = {
100 os_info("Checking environment variables for a tempdir...");
101 for (i
= 0; vars
[i
]; i
++) {
102 dir
= getenv(vars
[i
]);
103 if ((dir
!= NULL
) && (*dir
!= '\0')) {
104 os_info("%s\n", dir
);
105 if (check_tmpfs(dir
) >= 0)
111 os_info("none found\n");
113 for (i
= 0; tmpfs_dirs
[i
]; i
++) {
115 if (check_tmpfs(dir
) >= 0)
121 os_warn("Warning: tempdir %s is not on tmpfs\n", dir
);
123 /* Make a copy since getenv results may not remain valid forever. */
128 * Create an unlinked tempfile in a suitable tempdir. template must be the
129 * basename part of the template with a leading '/'.
131 static int __init
make_tempfile(const char *template)
136 if (tempdir
== NULL
) {
137 tempdir
= choose_tempdir();
138 if (tempdir
== NULL
) {
139 os_warn("Failed to choose tempdir: %s\n",
146 fd
= open(tempdir
, O_CLOEXEC
| O_RDWR
| O_EXCL
| O_TMPFILE
, 0700);
148 * If the running system does not support O_TMPFILE flag then retry
151 if (fd
!= -1 || (errno
!= EINVAL
&& errno
!= EISDIR
&&
152 errno
!= EOPNOTSUPP
))
156 tempname
= malloc(strlen(tempdir
) + strlen(template) + 1);
157 if (tempname
== NULL
)
160 strcpy(tempname
, tempdir
);
161 strcat(tempname
, template);
162 fd
= mkstemp(tempname
);
164 os_warn("open - cannot create %s: %s\n", tempname
,
168 if (unlink(tempname
) < 0) {
181 #define TEMPNAME_TEMPLATE "/vm_file-XXXXXX"
183 static int __init
create_tmp_file(unsigned long long len
)
188 fd
= make_tempfile(TEMPNAME_TEMPLATE
);
193 * Seek to len - 1 because writing a character there will
194 * increase the file size by one byte, to the desired length.
196 if (lseek64(fd
, len
- 1, SEEK_SET
) < 0) {
203 err
= write(fd
, &zero
, 1);
212 int __init
create_mem_file(unsigned long long len
)
216 fd
= create_tmp_file(len
);
218 err
= os_set_exec_close(fd
);
221 perror("exec_close");
226 void __init
check_tmpexec(void)
229 int err
, fd
= create_tmp_file(UM_KERN_PAGE_SIZE
);
231 addr
= mmap(NULL
, UM_KERN_PAGE_SIZE
,
232 PROT_READ
| PROT_WRITE
| PROT_EXEC
, MAP_PRIVATE
, fd
, 0);
233 os_info("Checking PROT_EXEC mmap in %s...", tempdir
);
234 if (addr
== MAP_FAILED
) {
236 os_warn("%s\n", strerror(err
));
239 os_warn("%s must be not mounted noexec\n", tempdir
);
243 munmap(addr
, UM_KERN_PAGE_SIZE
);