2021-02-22 00:26:36 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
2020-06-15 14:18:57 +00:00
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
2021-02-22 00:26:36 +00:00
|
|
|
│ Copyright 2021 Justine Alexandra Roberts Tunney │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
2020-06-15 14:18:57 +00:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2021-02-22 00:26:36 +00:00
|
|
|
#include "libc/calls/calls.h"
|
2022-11-06 07:29:47 +00:00
|
|
|
#include "libc/calls/internal.h"
|
|
|
|
#include "libc/calls/metalfile.internal.h"
|
2023-04-27 03:45:01 +00:00
|
|
|
#include "libc/intrin/directmap.internal.h"
|
2021-03-01 07:42:35 +00:00
|
|
|
#include "libc/macros.internal.h"
|
2021-02-24 04:23:19 +00:00
|
|
|
#include "libc/runtime/pc.internal.h"
|
|
|
|
#include "libc/str/str.h"
|
|
|
|
#include "libc/sysv/consts/prot.h"
|
2021-02-22 00:26:36 +00:00
|
|
|
#include "libc/sysv/errfuns.h"
|
2023-05-02 02:43:59 +00:00
|
|
|
#ifdef __x86_64__
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2022-11-06 07:29:47 +00:00
|
|
|
#define MAP_ANONYMOUS_linux 0x00000020
|
|
|
|
#define MAP_FIXED_linux 0x00000010
|
|
|
|
|
2021-02-24 04:23:19 +00:00
|
|
|
static uint64_t sys_mmap_metal_break;
|
|
|
|
|
2023-07-26 20:54:49 +00:00
|
|
|
dontasan static struct DirectMap bad_mmap(void) {
|
2022-11-06 07:29:47 +00:00
|
|
|
struct DirectMap res;
|
|
|
|
res.addr = (void *)-1;
|
|
|
|
res.maphandle = -1;
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2023-07-26 20:54:49 +00:00
|
|
|
dontasan struct DirectMap sys_mmap_metal(void *vaddr, size_t size, int prot,
|
|
|
|
int flags, int fd, int64_t off) {
|
2021-10-14 00:27:13 +00:00
|
|
|
/* asan runtime depends on this function */
|
2021-02-24 04:23:19 +00:00
|
|
|
size_t i;
|
|
|
|
struct mman *mm;
|
|
|
|
struct DirectMap res;
|
2022-12-18 01:51:20 +00:00
|
|
|
uint64_t addr, faddr = 0, page, e, *pte, *fdpte, *pml4t;
|
2023-06-11 17:32:39 +00:00
|
|
|
mm = __get_mm();
|
2021-02-24 04:23:19 +00:00
|
|
|
pml4t = __get_pml4t();
|
|
|
|
size = ROUNDUP(size, 4096);
|
2022-11-06 07:29:47 +00:00
|
|
|
addr = (uint64_t)vaddr;
|
|
|
|
if (!(flags & MAP_ANONYMOUS_linux)) {
|
|
|
|
struct Fd *sfd;
|
|
|
|
struct MetalFile *file;
|
|
|
|
if (off < 0 || fd < 0 || fd >= g_fds.n) return bad_mmap();
|
|
|
|
sfd = &g_fds.p[fd];
|
|
|
|
if (sfd->kind != kFdFile) return bad_mmap();
|
|
|
|
file = (struct MetalFile *)sfd->handle;
|
|
|
|
/* TODO: allow mapping partial page at end of file, if file size not
|
|
|
|
* multiple of page size */
|
|
|
|
if (off > file->size || size > file->size - off) return bad_mmap();
|
|
|
|
faddr = (uint64_t)file->base + off;
|
|
|
|
if (faddr % 4096 != 0) return bad_mmap();
|
|
|
|
}
|
|
|
|
if (!(flags & MAP_FIXED_linux)) {
|
|
|
|
if (!addr) {
|
|
|
|
addr = 4096;
|
|
|
|
} else {
|
|
|
|
addr = ROUNDUP(addr, 4096);
|
|
|
|
}
|
2021-02-24 04:23:19 +00:00
|
|
|
for (i = 0; i < size; i += 4096) {
|
2022-10-06 23:27:52 +00:00
|
|
|
pte = __get_virtual(mm, pml4t, addr + i, false);
|
2022-10-12 18:07:11 +00:00
|
|
|
if (pte && (*pte & (PAGE_V | PAGE_RSRV))) {
|
2021-02-24 04:23:19 +00:00
|
|
|
addr = MAX(addr, sys_mmap_metal_break) + i + 4096;
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sys_mmap_metal_break = MAX(addr + size, sys_mmap_metal_break);
|
|
|
|
}
|
|
|
|
for (i = 0; i < size; i += 4096) {
|
|
|
|
pte = __get_virtual(mm, pml4t, addr + i, true);
|
2022-11-06 07:29:47 +00:00
|
|
|
if (pte) {
|
|
|
|
if ((flags & MAP_ANONYMOUS_linux)) {
|
|
|
|
page = __new_page(mm);
|
|
|
|
if (!page) return bad_mmap();
|
|
|
|
__clear_page(BANE + page);
|
2022-12-18 01:51:20 +00:00
|
|
|
e = page | PAGE_RSRV | PAGE_U;
|
2022-11-06 07:29:47 +00:00
|
|
|
if ((prot & PROT_WRITE))
|
2022-12-18 01:51:20 +00:00
|
|
|
e |= PAGE_V | PAGE_RW;
|
2022-11-06 07:29:47 +00:00
|
|
|
else if ((prot & (PROT_READ | PROT_EXEC)))
|
2022-12-18 01:51:20 +00:00
|
|
|
e |= PAGE_V;
|
|
|
|
if (!(prot & PROT_EXEC)) e |= PAGE_XD;
|
2022-11-06 07:29:47 +00:00
|
|
|
} else {
|
|
|
|
fdpte = __get_virtual(mm, pml4t, faddr + i, false);
|
2022-12-18 01:51:20 +00:00
|
|
|
e = *fdpte | PAGE_RSRV | PAGE_U;
|
|
|
|
page = e & PAGE_TA;
|
|
|
|
if (!(prot & PROT_WRITE)) e &= ~PAGE_RW;
|
|
|
|
if (!(prot & PROT_EXEC)) e |= PAGE_XD;
|
2022-11-06 07:29:47 +00:00
|
|
|
}
|
2022-12-18 01:51:20 +00:00
|
|
|
__ref_page(mm, pml4t, page);
|
|
|
|
*pte = e;
|
2022-11-06 07:29:47 +00:00
|
|
|
invlpg(addr + i);
|
2021-02-24 04:23:19 +00:00
|
|
|
} else {
|
|
|
|
addr = -1;
|
|
|
|
break;
|
2021-02-22 00:26:36 +00:00
|
|
|
}
|
|
|
|
}
|
2021-02-24 04:23:19 +00:00
|
|
|
res.addr = (void *)addr;
|
|
|
|
res.maphandle = -1;
|
|
|
|
return res;
|
2021-02-22 00:26:36 +00:00
|
|
|
}
|
2023-05-02 02:43:59 +00:00
|
|
|
|
|
|
|
#endif /* __x86_64__ */
|