2020-06-15 14:18:57 +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│
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
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
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
|
|
#include "libc/calls/internal.h"
|
2021-01-25 21:08:05 +00:00
|
|
|
#include "libc/nt/enum/filemapflags.h"
|
2020-11-28 20:01:51 +00:00
|
|
|
#include "libc/nt/enum/pageflags.h"
|
2020-11-13 09:27:49 +00:00
|
|
|
#include "libc/nt/memory.h"
|
|
|
|
#include "libc/nt/runtime.h"
|
2021-02-24 04:23:19 +00:00
|
|
|
#include "libc/runtime/directmap.internal.h"
|
2021-02-05 02:24:33 +00:00
|
|
|
#include "libc/sysv/consts/map.h"
|
2021-01-25 21:08:05 +00:00
|
|
|
#include "libc/sysv/consts/prot.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2021-02-05 02:24:33 +00:00
|
|
|
textwindows noasan struct DirectMap sys_mmap_nt(void *addr, size_t size,
|
|
|
|
int prot, int flags,
|
|
|
|
int64_t handle, int64_t off) {
|
2022-03-24 07:05:59 +00:00
|
|
|
size_t i;
|
2021-01-25 21:08:05 +00:00
|
|
|
struct DirectMap dm;
|
2022-04-07 07:15:35 +00:00
|
|
|
struct ProtectNt fl;
|
2022-03-24 07:05:59 +00:00
|
|
|
const struct NtSecurityAttributes *sec;
|
|
|
|
|
|
|
|
if (flags & MAP_PRIVATE) {
|
|
|
|
sec = 0; // MAP_PRIVATE isn't inherited across fork()
|
|
|
|
} else {
|
|
|
|
sec = &kNtIsInheritable; // MAP_SHARED gives us zero-copy fork()
|
|
|
|
}
|
|
|
|
|
2021-02-05 02:24:33 +00:00
|
|
|
if ((prot & PROT_WRITE) && (flags & MAP_PRIVATE) && handle != -1) {
|
2022-03-24 07:05:59 +00:00
|
|
|
// windows has cow pages but they can't propagate across fork()
|
|
|
|
if (prot & PROT_EXEC) {
|
2022-04-07 07:15:35 +00:00
|
|
|
fl = (struct ProtectNt){kNtPageExecuteWritecopy,
|
|
|
|
kNtFileMapCopy | kNtFileMapExecute};
|
2022-03-24 07:05:59 +00:00
|
|
|
} else {
|
2022-04-07 07:15:35 +00:00
|
|
|
fl = (struct ProtectNt){kNtPageWritecopy, kNtFileMapCopy};
|
2020-11-13 09:27:49 +00:00
|
|
|
}
|
|
|
|
} else {
|
2022-04-07 07:15:35 +00:00
|
|
|
fl = __nt2prot(prot);
|
2022-03-24 07:05:59 +00:00
|
|
|
}
|
|
|
|
|
2022-04-07 07:15:35 +00:00
|
|
|
if ((dm.maphandle = CreateFileMapping(handle, sec, fl.flags1,
|
|
|
|
(size + off) >> 32, (size + off), 0))) {
|
|
|
|
if ((dm.addr = MapViewOfFileEx(dm.maphandle, fl.flags2, off >> 32, off,
|
|
|
|
size, addr))) {
|
2022-03-24 07:05:59 +00:00
|
|
|
return dm;
|
2021-02-05 02:24:33 +00:00
|
|
|
}
|
2022-03-24 07:05:59 +00:00
|
|
|
CloseHandle(dm.maphandle);
|
2020-11-13 09:27:49 +00:00
|
|
|
}
|
2022-03-24 07:05:59 +00:00
|
|
|
|
2021-02-05 02:24:33 +00:00
|
|
|
dm.maphandle = kNtInvalidHandleValue;
|
2022-03-20 15:01:14 +00:00
|
|
|
dm.addr = (void *)(intptr_t)-1;
|
2021-01-25 21:08:05 +00:00
|
|
|
return dm;
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|