| 1 | /* |
| 2 | * Copyright (c) 2000-2020 Apple Computer, Inc. All rights reserved. |
| 3 | * |
| 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
| 5 | * |
| 6 | * This file contains Original Code and/or Modifications of Original Code |
| 7 | * as defined in and that are subject to the Apple Public Source License |
| 8 | * Version 2.0 (the 'License'). You may not use this file except in |
| 9 | * compliance with the License. The rights granted to you under the License |
| 10 | * may not be used to create, or enable the creation or redistribution of, |
| 11 | * unlawful or unlicensed copies of an Apple operating system, or to |
| 12 | * circumvent, violate, or enable the circumvention or violation of, any |
| 13 | * terms of an Apple operating system software license agreement. |
| 14 | * |
| 15 | * Please obtain a copy of the License at |
| 16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. |
| 17 | * |
| 18 | * The Original Code and all software distributed under the License are |
| 19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER |
| 20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
| 21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, |
| 22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
| 23 | * Please see the License for the specific language governing rights and |
| 24 | * limitations under the License. |
| 25 | * |
| 26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
| 27 | */ |
| 28 | /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */ |
| 29 | /*- |
| 30 | * Copyright (c) 1982, 1986, 1993 |
| 31 | * The Regents of the University of California. All rights reserved. |
| 32 | * |
| 33 | * Redistribution and use in source and binary forms, with or without |
| 34 | * modification, are permitted provided that the following conditions |
| 35 | * are met: |
| 36 | * 1. Redistributions of source code must retain the above copyright |
| 37 | * notice, this list of conditions and the following disclaimer. |
| 38 | * 2. Redistributions in binary form must reproduce the above copyright |
| 39 | * notice, this list of conditions and the following disclaimer in the |
| 40 | * documentation and/or other materials provided with the distribution. |
| 41 | * 3. All advertising materials mentioning features or use of this software |
| 42 | * must display the following acknowledgement: |
| 43 | * This product includes software developed by the University of |
| 44 | * California, Berkeley and its contributors. |
| 45 | * 4. Neither the name of the University nor the names of its contributors |
| 46 | * may be used to endorse or promote products derived from this software |
| 47 | * without specific prior written permission. |
| 48 | * |
| 49 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 50 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 51 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 52 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 53 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 54 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 55 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 56 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 57 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 58 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 59 | * SUCH DAMAGE. |
| 60 | * |
| 61 | * @(#)mman.h 8.1 (Berkeley) 6/2/93 |
| 62 | */ |
| 63 | |
| 64 | /* |
| 65 | * Currently unsupported: |
| 66 | * |
| 67 | * [TYM] POSIX_TYPED_MEM_ALLOCATE |
| 68 | * [TYM] POSIX_TYPED_MEM_ALLOCATE_CONTIG |
| 69 | * [TYM] POSIX_TYPED_MEM_MAP_ALLOCATABLE |
| 70 | * [TYM] struct posix_typed_mem_info |
| 71 | * [TYM] posix_mem_offset() |
| 72 | * [TYM] posix_typed_mem_get_info() |
| 73 | * [TYM] posix_typed_mem_open() |
| 74 | */ |
| 75 | |
| 76 | #ifndef _SYS_MMAN_H_ |
| 77 | #define _SYS_MMAN_H_ |
| 78 | |
| 79 | #include <sys/appleapiopts.h> |
| 80 | #include <sys/cdefs.h> |
| 81 | |
| 82 | #include <sys/_types.h> |
| 83 | |
| 84 | /* |
| 85 | * [various] The mode_t, off_t, and size_t types shall be defined as |
| 86 | * described in <sys/types.h> |
| 87 | */ |
| 88 | #include <sys/_types/_mode_t.h> |
| 89 | #include <sys/_types/_off_t.h> |
| 90 | #include <sys/_types/_size_t.h> |
| 91 | |
| 92 | #ifndef KERNEL |
| 93 | #if __DARWIN_C_LEVEL >= 200809L |
| 94 | #include <Availability.h> |
| 95 | #endif /* __DARWIN_C_LEVEL */ |
| 96 | #endif /* KERNEL */ |
| 97 | |
| 98 | /* |
| 99 | * Protections are chosen from these bits, or-ed together |
| 100 | */ |
| 101 | #define PROT_NONE 0x00 /* [MC2] no permissions */ |
| 102 | #define PROT_READ 0x01 /* [MC2] pages can be read */ |
| 103 | #define PROT_WRITE 0x02 /* [MC2] pages can be written */ |
| 104 | #define PROT_EXEC 0x04 /* [MC2] pages can be executed */ |
| 105 | |
| 106 | /* |
| 107 | * Flags contain sharing type and options. |
| 108 | * Sharing types; choose one. |
| 109 | */ |
| 110 | #define MAP_SHARED 0x0001 /* [MF|SHM] share changes */ |
| 111 | #define MAP_PRIVATE 0x0002 /* [MF|SHM] changes are private */ |
| 112 | #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) |
| 113 | #define MAP_COPY MAP_PRIVATE /* Obsolete */ |
| 114 | #endif /* (!_POSIX_C_SOURCE || _DARWIN_C_SOURCE) */ |
| 115 | |
| 116 | /* |
| 117 | * Other flags |
| 118 | */ |
| 119 | #define MAP_FIXED 0x0010 /* [MF|SHM] interpret addr exactly */ |
| 120 | #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) |
| 121 | #define MAP_RENAME 0x0020 /* Sun: rename private pages to file */ |
| 122 | #define MAP_NORESERVE 0x0040 /* Sun: don't reserve needed swap area */ |
| 123 | #define MAP_RESERVED0080 0x0080 /* previously unimplemented MAP_INHERIT */ |
| 124 | #define MAP_NOEXTEND 0x0100 /* for MAP_FILE, don't change file size */ |
| 125 | #define MAP_HASSEMAPHORE 0x0200 /* region may contain semaphores */ |
| 126 | #define MAP_NOCACHE 0x0400 /* don't cache pages for this mapping */ |
| 127 | #define MAP_JIT 0x0800 /* Allocate a region that will be used for JIT purposes */ |
| 128 | |
| 129 | /* |
| 130 | * Mapping type |
| 131 | */ |
| 132 | #define MAP_FILE 0x0000 /* map from file (default) */ |
| 133 | #define MAP_ANON 0x1000 /* allocated from memory, swap space */ |
| 134 | #define MAP_ANONYMOUS MAP_ANON |
| 135 | |
| 136 | /* |
| 137 | * The MAP_RESILIENT_* flags can be used when the caller wants to map some |
| 138 | * possibly unreliable memory and be able to access it safely, possibly |
| 139 | * getting the wrong contents rather than raising any exception. |
| 140 | * For safety reasons, such mappings have to be read-only (PROT_READ access |
| 141 | * only). |
| 142 | * |
| 143 | * MAP_RESILIENT_CODESIGN: |
| 144 | * accessing this mapping will not generate code-signing violations, |
| 145 | * even if the contents are tainted. |
| 146 | * MAP_RESILIENT_MEDIA: |
| 147 | * accessing this mapping will not generate an exception if the contents |
| 148 | * are not available (unreachable removable or remote media, access beyond |
| 149 | * end-of-file, ...). Missing contents will be replaced with zeroes. |
| 150 | */ |
| 151 | #define MAP_RESILIENT_CODESIGN 0x2000 /* no code-signing failures */ |
| 152 | #define MAP_RESILIENT_MEDIA 0x4000 /* no backing-store failures */ |
| 153 | |
| 154 | #if defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101500 |
| 155 | #define MAP_32BIT 0x8000 /* Return virtual addresses <4G only */ |
| 156 | #endif /* defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101500 */ |
| 157 | |
| 158 | |
| 159 | /* |
| 160 | * Flags used to support translated processes. |
| 161 | */ |
| 162 | #define MAP_TRANSLATED_ALLOW_EXECUTE 0x20000 /* allow execute in translated processes */ |
| 163 | |
| 164 | #define MAP_UNIX03 0x40000 /* UNIX03 compliance */ |
| 165 | |
| 166 | #define MAP_TPRO 0x80000 /* Allocate a region that will be protected by TPRO */ |
| 167 | |
| 168 | #endif /* (!_POSIX_C_SOURCE || _DARWIN_C_SOURCE) */ |
| 169 | |
| 170 | /* |
| 171 | * Process memory locking |
| 172 | */ |
| 173 | #define MCL_CURRENT 0x0001 /* [ML] Lock only current memory */ |
| 174 | #define MCL_FUTURE 0x0002 /* [ML] Lock all future memory as well */ |
| 175 | |
| 176 | /* |
| 177 | * Error return from mmap() |
| 178 | */ |
| 179 | #define MAP_FAILED ((void *)-1) /* [MF|SHM] mmap failed */ |
| 180 | |
| 181 | /* |
| 182 | * msync() flags |
| 183 | */ |
| 184 | #define MS_ASYNC 0x0001 /* [MF|SIO] return immediately */ |
| 185 | #define MS_INVALIDATE 0x0002 /* [MF|SIO] invalidate all cached data */ |
| 186 | #define MS_SYNC 0x0010 /* [MF|SIO] msync synchronously */ |
| 187 | |
| 188 | #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) |
| 189 | #define MS_KILLPAGES 0x0004 /* invalidate pages, leave mapped */ |
| 190 | #define MS_DEACTIVATE 0x0008 /* deactivate pages, leave mapped */ |
| 191 | |
| 192 | #endif /* (!_POSIX_C_SOURCE || _DARWIN_C_SOURCE) */ |
| 193 | |
| 194 | |
| 195 | /* |
| 196 | * Advice to madvise |
| 197 | */ |
| 198 | #define POSIX_MADV_NORMAL 0 /* [MC1] no further special treatment */ |
| 199 | #define POSIX_MADV_RANDOM 1 /* [MC1] expect random page refs */ |
| 200 | #define POSIX_MADV_SEQUENTIAL 2 /* [MC1] expect sequential page refs */ |
| 201 | #define POSIX_MADV_WILLNEED 3 /* [MC1] will need these pages */ |
| 202 | #define POSIX_MADV_DONTNEED 4 /* [MC1] dont need these pages */ |
| 203 | |
| 204 | #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) |
| 205 | #define MADV_NORMAL POSIX_MADV_NORMAL |
| 206 | #define MADV_RANDOM POSIX_MADV_RANDOM |
| 207 | #define MADV_SEQUENTIAL POSIX_MADV_SEQUENTIAL |
| 208 | #define MADV_WILLNEED POSIX_MADV_WILLNEED |
| 209 | #define MADV_DONTNEED POSIX_MADV_DONTNEED |
| 210 | #define MADV_FREE 5 /* pages unneeded, discard contents */ |
| 211 | #define MADV_ZERO_WIRED_PAGES 6 /* zero the wired pages that have not been unwired before the entry is deleted */ |
| 212 | #define MADV_FREE_REUSABLE 7 /* pages can be reused (by anyone) */ |
| 213 | #define MADV_FREE_REUSE 8 /* caller wants to reuse those pages */ |
| 214 | #define MADV_CAN_REUSE 9 |
| 215 | #define MADV_PAGEOUT 10 /* page out now (internal only) */ |
| 216 | #define MADV_ZERO 11 /* zero pages without faulting in additional pages */ |
| 217 | |
| 218 | /* |
| 219 | * Return bits from mincore |
| 220 | */ |
| 221 | #define MINCORE_INCORE 0x1 /* Page is incore */ |
| 222 | #define MINCORE_REFERENCED 0x2 /* Page has been referenced by us */ |
| 223 | #define MINCORE_MODIFIED 0x4 /* Page has been modified by us */ |
| 224 | #define MINCORE_REFERENCED_OTHER 0x8 /* Page has been referenced */ |
| 225 | #define MINCORE_MODIFIED_OTHER 0x10 /* Page has been modified */ |
| 226 | #define MINCORE_PAGED_OUT 0x20 /* Page has been paged out */ |
| 227 | #define MINCORE_COPIED 0x40 /* Page has been copied */ |
| 228 | #define MINCORE_ANONYMOUS 0x80 /* Page belongs to an anonymous object */ |
| 229 | #endif /* (!_POSIX_C_SOURCE || _DARWIN_C_SOURCE) */ |
| 230 | |
| 231 | #ifdef PRIVATE |
| 232 | |
| 233 | /* |
| 234 | * Crypt ID for decryption flow |
| 235 | */ |
| 236 | #define CRYPTID_NO_ENCRYPTION 0 /* File is unencrypted */ |
| 237 | #define CRYPTID_APP_ENCRYPTION 1 /* App binary is encrypted */ |
| 238 | #define CRYPTID_MODEL_ENCRYPTION 2 /* ML Model is encrypted */ |
| 239 | |
| 240 | /* |
| 241 | * Model encryption header |
| 242 | */ |
| 243 | typedef struct { |
| 244 | __uint64_t ; |
| 245 | __uint64_t ; |
| 246 | __uint64_t [4]; |
| 247 | } ; |
| 248 | |
| 249 | #endif /* #ifdef PRIVATE */ |
| 250 | |
| 251 | |
| 252 | #ifndef KERNEL |
| 253 | |
| 254 | __BEGIN_DECLS |
| 255 | /* [ML] */ |
| 256 | int mlockall(int); |
| 257 | int munlockall(void); |
| 258 | /* [MR] */ |
| 259 | int mlock(const void *, size_t); |
| 260 | #ifndef _MMAP |
| 261 | #define _MMAP |
| 262 | /* [MC3]*/ |
| 263 | void * mmap(void *, size_t, int, int, int, off_t) __DARWIN_ALIAS(mmap); |
| 264 | #endif |
| 265 | /* [MPR] */ |
| 266 | int mprotect(void *, size_t, int) __DARWIN_ALIAS(mprotect); |
| 267 | /* [MF|SIO] */ |
| 268 | int msync(void *, size_t, int) __DARWIN_ALIAS_C(msync); |
| 269 | /* [MR] */ |
| 270 | int munlock(const void *, size_t); |
| 271 | /* [MC3]*/ |
| 272 | int munmap(void *, size_t) __DARWIN_ALIAS(munmap); |
| 273 | /* [SHM] */ |
| 274 | int shm_open(const char *, int, ...); |
| 275 | int shm_unlink(const char *); |
| 276 | /* [ADV] */ |
| 277 | int posix_madvise(void *, size_t, int); |
| 278 | |
| 279 | #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) |
| 280 | int madvise(void *, size_t, int); |
| 281 | int mincore(const void *, size_t, char *); |
| 282 | int minherit(void *, size_t, int); |
| 283 | #endif |
| 284 | |
| 285 | #ifdef PRIVATE |
| 286 | int mremap_encrypted(void *, size_t, __uint32_t, __uint32_t, __uint32_t); |
| 287 | #endif |
| 288 | |
| 289 | __END_DECLS |
| 290 | |
| 291 | #else /* KERNEL */ |
| 292 | #ifdef XNU_KERNEL_PRIVATE |
| 293 | void pshm_cache_init(void); /* for bsd_init() */ |
| 294 | |
| 295 | /* |
| 296 | * XXX routine exported by posix_shm.c, but never used there, only used in |
| 297 | * XXX kern_mman.c in the implementation of mmap(). |
| 298 | */ |
| 299 | struct mmap_args; |
| 300 | struct fileproc; |
| 301 | int pshm_mmap(struct proc *p, struct mmap_args *uap, user_addr_t *retval, |
| 302 | struct fileproc *fp, off_t pageoff); |
| 303 | /* Really need to overhaul struct fileops to avoid this... */ |
| 304 | struct pshmnode; |
| 305 | struct stat; |
| 306 | int pshm_stat(struct pshmnode *pnode, void *ub, int isstat64); |
| 307 | struct fileproc; |
| 308 | int pshm_truncate(struct proc *p, struct fileproc *fp, int fd, off_t length, int32_t *retval); |
| 309 | |
| 310 | #endif /* XNU_KERNEL_PRIVATE */ |
| 311 | #endif /* KERNEL */ |
| 312 | #endif /* !_SYS_MMAN_H_ */ |
| 313 | |