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.",
44 /* Set by make_tempfile() during early boot. */
45 static char *tempdir
= NULL
;
47 /* Check if dir is on tmpfs. Return 0 if yes, -1 if no or error. */
48 static int __init
check_tmpfs(const char *dir
)
52 os_info("Checking if %s is on tmpfs...", dir
);
53 if (statfs(dir
, &st
) < 0) {
54 os_info("%s\n", strerror(errno
));
55 } else if (st
.f_type
!= TMPFS_MAGIC
) {
65 * Choose the tempdir to use. We want something on tmpfs so that our memory is
66 * not subject to the host's vm.dirty_ratio. If a tempdir is specified in the
67 * environment, we use that even if it's not on tmpfs, but we warn the user.
68 * Otherwise, we try common tmpfs locations, and if no tmpfs directory is found
69 * then we fall back to /tmp.
71 static char * __init
choose_tempdir(void)
73 static const char * const vars
[] = {
79 static const char fallback_dir
[] = "/tmp";
80 static const char * const tmpfs_dirs
[] = {
88 os_info("Checking environment variables for a tempdir...");
89 for (i
= 0; vars
[i
]; i
++) {
90 dir
= getenv(vars
[i
]);
91 if ((dir
!= NULL
) && (*dir
!= '\0')) {
93 if (check_tmpfs(dir
) >= 0)
99 os_info("none found\n");
101 for (i
= 0; tmpfs_dirs
[i
]; i
++) {
103 if (check_tmpfs(dir
) >= 0)
109 os_warn("Warning: tempdir %s is not on tmpfs\n", dir
);
111 /* Make a copy since getenv results may not remain valid forever. */
116 * Create an unlinked tempfile in a suitable tempdir. template must be the
117 * basename part of the template with a leading '/'.
119 static int __init
make_tempfile(const char *template)
124 if (tempdir
== NULL
) {
125 tempdir
= choose_tempdir();
126 if (tempdir
== NULL
) {
127 os_warn("Failed to choose tempdir: %s\n",
134 fd
= open(tempdir
, O_CLOEXEC
| O_RDWR
| O_EXCL
| O_TMPFILE
, 0700);
136 * If the running system does not support O_TMPFILE flag then retry
139 if (fd
!= -1 || (errno
!= EINVAL
&& errno
!= EISDIR
&&
140 errno
!= EOPNOTSUPP
))
144 tempname
= malloc(strlen(tempdir
) + strlen(template) + 1);
145 if (tempname
== NULL
)
148 strcpy(tempname
, tempdir
);
149 strcat(tempname
, template);
150 fd
= mkstemp(tempname
);
152 os_warn("open - cannot create %s: %s\n", tempname
,
156 if (unlink(tempname
) < 0) {
169 #define TEMPNAME_TEMPLATE "/vm_file-XXXXXX"
171 static int __init
create_tmp_file(unsigned long long len
)
176 fd
= make_tempfile(TEMPNAME_TEMPLATE
);
181 * Seek to len - 1 because writing a character there will
182 * increase the file size by one byte, to the desired length.
184 if (lseek64(fd
, len
- 1, SEEK_SET
) < 0) {
191 err
= write(fd
, &zero
, 1);
200 int __init
create_mem_file(unsigned long long len
)
204 fd
= create_tmp_file(len
);
206 err
= os_set_exec_close(fd
);
209 perror("exec_close");
214 void __init
check_tmpexec(void)
217 int err
, fd
= create_tmp_file(UM_KERN_PAGE_SIZE
);
219 addr
= mmap(NULL
, UM_KERN_PAGE_SIZE
,
220 PROT_READ
| PROT_WRITE
| PROT_EXEC
, MAP_PRIVATE
, fd
, 0);
221 os_info("Checking PROT_EXEC mmap in %s...", tempdir
);
222 if (addr
== MAP_FAILED
) {
224 os_warn("%s\n", strerror(err
));
227 os_warn("%s must be not mounted noexec\n", tempdir
);
231 munmap(addr
, UM_KERN_PAGE_SIZE
);