[1] | 1 | /* |
---|
| 2 | * vmm.h - virtual memory management related operations |
---|
| 3 | * |
---|
| 4 | * Authors Ghassan Almaless (2008,2009,2010,2011, 2012) |
---|
[672] | 5 | * Alain Greiner (2016,2017,2018,2019,2020)) |
---|
[18] | 6 | * |
---|
[1] | 7 | * Copyright (c) UPMC Sorbonne Universites |
---|
| 8 | * |
---|
| 9 | * This file is part of ALMOS-MKH. |
---|
| 10 | * |
---|
| 11 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
| 12 | * under the terms of the GNU General Public License as published by |
---|
| 13 | * the Free Software Foundation; version 2.0 of the License. |
---|
| 14 | * |
---|
| 15 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
| 16 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 18 | * General Public License for more details. |
---|
| 19 | * |
---|
| 20 | * You should have received a copy of the GNU General Public License |
---|
| 21 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
| 22 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
| 23 | */ |
---|
| 24 | |
---|
| 25 | #ifndef _VMM_H_ |
---|
| 26 | #define _VMM_H_ |
---|
| 27 | |
---|
[457] | 28 | #include <hal_kernel_types.h> |
---|
[1] | 29 | #include <bits.h> |
---|
| 30 | #include <list.h> |
---|
[567] | 31 | #include <queuelock.h> |
---|
[657] | 32 | #include <remote_queuelock.h> |
---|
[1] | 33 | #include <hal_gpt.h> |
---|
| 34 | #include <vseg.h> |
---|
| 35 | #include <page.h> |
---|
| 36 | |
---|
| 37 | /**** Forward declarations ****/ |
---|
| 38 | |
---|
| 39 | struct process_s; |
---|
[611] | 40 | struct vseg_s; |
---|
[1] | 41 | |
---|
| 42 | /********************************************************************************************* |
---|
[407] | 43 | * This structure defines the STACK allocator used by the VMM to dynamically handle |
---|
[611] | 44 | * vseg allocation or release requests for an user thread. |
---|
| 45 | * This allocator handles a fixed size array of fixed size slots in STACK zone of user space. |
---|
[1] | 46 | * The stack size and the number of slots are defined by the CONFIG_VMM_STACK_SIZE, and |
---|
[407] | 47 | * CONFIG_VMM_STACK_BASE parameters. |
---|
[611] | 48 | * Each slot can contain one user stack vseg. The first 4 Kbytes page in the slot is not |
---|
| 49 | * mapped to detect stack overflow. |
---|
[625] | 50 | * In this implementation, the slot index is defined by the user thead LTID. |
---|
| 51 | * All allocated stacks are registered in a bitmap defining the STACK zone state: |
---|
| 52 | * - The allocator checks that the requested slot has not been already allocated, and set the |
---|
| 53 | * corresponding bit in the bitmap. |
---|
[635] | 54 | * - The de-allocator reset the corresponding bit in the bitmap. |
---|
[672] | 55 | * |
---|
| 56 | * An architecture dependant hal_vmm_display() function is defined in <hal_vmm.h> file. |
---|
[1] | 57 | ********************************************************************************************/ |
---|
| 58 | |
---|
| 59 | typedef struct stack_mgr_s |
---|
| 60 | { |
---|
[567] | 61 | busylock_t lock; /*! lock protecting STACK allocator */ |
---|
[1] | 62 | vpn_t vpn_base; /*! first page of STACK zone */ |
---|
[625] | 63 | bitmap_t bitmap; /*! bit vector of allocated stacks */ |
---|
[1] | 64 | } |
---|
| 65 | stack_mgr_t; |
---|
| 66 | |
---|
| 67 | /********************************************************************************************* |
---|
[651] | 68 | * This structure defines the MMAP allocator used by the VMM to dynamically handle MMAP vsegs |
---|
| 69 | * requested or released by an user process. It must be called in the reference cluster. |
---|
| 70 | * - allocation policy : |
---|
| 71 | * This allocator implements the buddy algorithm. All allocated vsegs occupy an integer |
---|
| 72 | * number of pages, that is power of 2, and are aligned (vpn_base is multiple of vpn_size). |
---|
| 73 | * The requested number of pages is rounded if required. The global allocator state is |
---|
| 74 | * completely defined by the free_pages_root[] array indexed by the vseg order. |
---|
| 75 | * These free lists are local, but are implemented as xlist because we use the existing |
---|
| 76 | * vseg.xlist to register a free vseg in its free list. |
---|
| 77 | * - release policy : |
---|
| 78 | * A released vseg is recursively merged with the "buddy" vseg when it is free, in |
---|
| 79 | * order to build the largest possible aligned free vsegs. The resulting vseg.vpn_size |
---|
| 80 | * field is updated. |
---|
| 81 | * Implementation note: |
---|
| 82 | * The only significant (and documented) fiels in the vsegs registered in the MMAP allocator |
---|
| 83 | * free lists are "xlist", "vpn_base", and "vpn_size". |
---|
[1] | 84 | ********************************************************************************************/ |
---|
| 85 | |
---|
| 86 | typedef struct mmap_mgr_s |
---|
| 87 | { |
---|
[567] | 88 | busylock_t lock; /*! lock protecting MMAP allocator */ |
---|
[1] | 89 | vpn_t vpn_base; /*! first page of MMAP zone */ |
---|
| 90 | vpn_t vpn_size; /*! number of pages in MMAP zone */ |
---|
[651] | 91 | xlist_entry_t free_list_root[CONFIG_VMM_HEAP_MAX_ORDER + 1]; /* roots of free lists */ |
---|
[1] | 92 | } |
---|
| 93 | mmap_mgr_t; |
---|
| 94 | |
---|
| 95 | /********************************************************************************************* |
---|
| 96 | * This structure defines the Virtual Memory Manager for a given process in a given cluster. |
---|
[672] | 97 | * This VMM implements four main services: |
---|
| 98 | * 1) It contains the local copy of the vseg list (VSL), only complete in reference cluster. |
---|
[567] | 99 | * 2) It contains the local copy of the generic page table (GPT), only complete in reference. |
---|
[408] | 100 | * 3) The stack manager dynamically allocates virtual memory space for the STACK vsegs. |
---|
| 101 | * 4) The mmap manager dynamically allocates virtual memory for the (FILE/ANON/REMOTE) vsegs. |
---|
| 102 | ******************************************************a************************************** |
---|
| 103 | * Implementation notes: |
---|
[585] | 104 | * 1. In most clusters, the VSL and GPT are only partial copies of the reference VSL and GPT |
---|
| 105 | * structures, stored in the reference cluster. |
---|
| 106 | * 2. The VSL contains only local vsegs, but it is implemented as an xlist, and protected by |
---|
[408] | 107 | * a remote_rwlock, because it can be accessed by a thread running in a remote cluster. |
---|
[651] | 108 | * An example is the vmm_fork_copy() function. |
---|
[585] | 109 | * 3. The GPT in the reference cluster can be directly accessed by remote threads to handle |
---|
| 110 | * false page-fault (page is mapped in the reference GPT, but the PTE copy is missing |
---|
[629] | 111 | * in the local GPT). As each PTE can be protected by a specific GPT_LOCKED attribute |
---|
| 112 | * for exclusive access, it is NOT protected by a global lock. |
---|
[1] | 113 | ********************************************************************************************/ |
---|
| 114 | |
---|
| 115 | typedef struct vmm_s |
---|
| 116 | { |
---|
[640] | 117 | remote_queuelock_t vsl_lock; /*! lock protecting the local VSL */ |
---|
| 118 | xlist_entry_t vsegs_root; /*! Virtual Segment List root */ |
---|
| 119 | uint32_t vsegs_nr; /*! total number of local vsegs */ |
---|
[1] | 120 | |
---|
[640] | 121 | gpt_t gpt; /*! Generic Page Table descriptor */ |
---|
[1] | 122 | |
---|
[640] | 123 | stack_mgr_t stack_mgr; /*! embedded STACK vsegs allocator */ |
---|
[651] | 124 | |
---|
[640] | 125 | mmap_mgr_t mmap_mgr; /*! embedded MMAP vsegs allocator */ |
---|
[1] | 126 | |
---|
[640] | 127 | uint32_t false_pgfault_nr; /*! false page fault counter (for all threads) */ |
---|
| 128 | uint32_t local_pgfault_nr; /*! false page fault counter (for all threads) */ |
---|
| 129 | uint32_t global_pgfault_nr; /*! false page fault counter (for all threads) */ |
---|
| 130 | uint32_t false_pgfault_cost; /*! cumulated cost (for all threads) */ |
---|
| 131 | uint32_t local_pgfault_cost; /*! cumulated cost (for all threads) */ |
---|
| 132 | uint32_t global_pgfault_cost; /*! cumulated cost (for all threads) */ |
---|
[1] | 133 | |
---|
[640] | 134 | vpn_t args_vpn_base; /*! args vseg first page */ |
---|
| 135 | vpn_t envs_vpn_base; /*! envs vseg first page */ |
---|
| 136 | vpn_t code_vpn_base; /*! code vseg first page */ |
---|
| 137 | vpn_t data_vpn_base; /*! data vseg first page */ |
---|
| 138 | vpn_t heap_vpn_base; /*! heap zone first page */ |
---|
[1] | 139 | |
---|
[640] | 140 | intptr_t entry_point; /*! main thread entry point */ |
---|
[1] | 141 | } |
---|
| 142 | vmm_t; |
---|
| 143 | |
---|
| 144 | /********************************************************************************************* |
---|
[672] | 145 | * This function makes a partial initialisation of the VMM attached to an user process. |
---|
| 146 | * It intializes the STACK and MMAP allocators, the VSL lock, and the instrumentation |
---|
| 147 | * counters, but it does not register any vseg in the VSL: |
---|
| 148 | * - The "kernel" vsegs are registered, by the hal_vmm_kernel_update() function. |
---|
| 149 | * - The "args" & "envs" vsegs are registered by the process_make_exec() function. |
---|
| 150 | * - The "code" and "data" vsegs are registered by the elf_load_process() function. |
---|
| 151 | * - The "stack" vsegs are registered by process_make_exec() / thread_user_create(). |
---|
[625] | 152 | * - The "file", "anon", "remote" vsegs are dynamically registered by the mmap() syscall. |
---|
[1] | 153 | ********************************************************************************************* |
---|
| 154 | * @ process : pointer on process descriptor |
---|
[415] | 155 | * @ return 0 if success / return -1 if failure. |
---|
[1] | 156 | ********************************************************************************************/ |
---|
[625] | 157 | error_t vmm_user_init( struct process_s * process ); |
---|
[1] | 158 | |
---|
| 159 | /********************************************************************************************* |
---|
[672] | 160 | * This function is called by the process_make_exec() function to re-initialises the VMM |
---|
| 161 | * attached to an user process: |
---|
| 162 | * - It removes from the VMM of the process identified by the <process> argument all user |
---|
| 163 | * vsegs, by calling the vmm_remove_vseg() function: the vsegs are removed from the VSL, |
---|
| 164 | * the corresponding GPT entries are removed from the GPT, and the physical pages are |
---|
| 165 | * released to the relevant kmem when they are not shared. |
---|
| 166 | * - The VSL and the GPT are not modified for the kernel vsegs. |
---|
| 167 | * - Finally, it calls the vmm_user_init() function to re-initialize the STAK and MMAP |
---|
| 168 | * allocators, and the lock protecting GPT. |
---|
[23] | 169 | ********************************************************************************************* |
---|
[407] | 170 | * @ process : pointer on process descriptor. |
---|
| 171 | ********************************************************************************************/ |
---|
[625] | 172 | void vmm_user_reset( struct process_s * process ); |
---|
[407] | 173 | |
---|
[610] | 174 | /********************************************************************************************* |
---|
[433] | 175 | * This function is called by the process_make_fork() function. It partially copies |
---|
[408] | 176 | * the content of a remote parent process VMM to the local child process VMM: |
---|
[635] | 177 | * - The KERNEL vsegs required by the architecture must have been previously |
---|
| 178 | * created in the child VMM, using the hal_vmm_kernel_update() function. |
---|
[629] | 179 | * - The DATA, ANON, REMOTE vsegs registered in the parent VSL are registered in the |
---|
[635] | 180 | * child VSL. All valid PTEs in parent GPT are copied to the child GPT. |
---|
| 181 | * The WRITABLE and COW flags are not modified, as it will be done later for those |
---|
| 182 | * shared pages by the vmm_set_cow() function. |
---|
[629] | 183 | * - The CODE vsegs registered in the parent VSL are registered in the child VSL, but the |
---|
[625] | 184 | * GPT entries are not copied in the child GPT, and will be dynamically updated from |
---|
[408] | 185 | * the .elf file when a page fault is reported. |
---|
[629] | 186 | * - The FILE vsegs registered in the parent VSL are registered in the child VSL, and all |
---|
[408] | 187 | * valid GPT entries in parent GPT are copied to the child GPT. The COW flag is not set. |
---|
[635] | 188 | * - No STACK vseg is copied from parent VMM to child VMM: the child stack vseg is copied |
---|
| 189 | * later from the cluster containing the user thread requesting the fork(). |
---|
[407] | 190 | ********************************************************************************************* |
---|
[408] | 191 | * @ child_process : local pointer on local child process descriptor. |
---|
| 192 | * @ parent_process_xp : extended pointer on remote parent process descriptor. |
---|
[415] | 193 | * @ return 0 if success / return -1 if failure. |
---|
[23] | 194 | ********************************************************************************************/ |
---|
[408] | 195 | error_t vmm_fork_copy( struct process_s * child_process, |
---|
| 196 | xptr_t parent_process_xp ); |
---|
[23] | 197 | |
---|
| 198 | /********************************************************************************************* |
---|
[629] | 199 | * This function is called by the process_make_fork() function to update the COW attribute |
---|
| 200 | * in the parent parent process vsegs. It set the COW flag, and reset the WRITABLE flag of |
---|
| 201 | * all GPT entries of the DATA, MMAP, and REMOTE vsegs of the <process> argument. |
---|
[408] | 202 | * It must be called by a thread running in the reference cluster, that contains the complete |
---|
[433] | 203 | * VSL and GPT (use the rpc_vmm_set_cow_client() when the calling thread client is remote). |
---|
[408] | 204 | * It updates all copies of the process in all clusters, to maintain coherence in GPT copies, |
---|
| 205 | * using the list of copies stored in the owner process, and using remote_write accesses to |
---|
[433] | 206 | * update the remote GPTs. It atomically increment the pending_fork counter, in all involved |
---|
| 207 | * physical page descriptors. It cannot fail, as only mapped entries in GPTs are updated. |
---|
[1] | 208 | ********************************************************************************************* |
---|
[408] | 209 | * @ process : local pointer on local reference process descriptor. |
---|
| 210 | ********************************************************************************************/ |
---|
| 211 | void vmm_set_cow( struct process_s * process ); |
---|
| 212 | |
---|
| 213 | /********************************************************************************************* |
---|
[657] | 214 | * This function modifies the vseg identified by <process> and <base> arguments in all |
---|
| 215 | * clusters containing a VSL copy, as defined by <new_base> and <new_size> arguments. |
---|
| 216 | * The new vseg, defined by the <new_base> and <new_size> arguments must be included |
---|
| 217 | * in the existing vseg. The target VSL size and base fields are modified in the VSL. |
---|
| 218 | * This is done in all clusters containing a VMM copy to maintain VMM coherence. |
---|
| 219 | * It is called by the sys_munmap() and dev_fbf_resize_window() functions. |
---|
| 220 | * It can be called by a thread running in any cluster, as it uses the vmm_resize_vseg() in |
---|
| 221 | * the local cluster, and parallel RPC_VMM_RESIZE_VSEG for remote clusters. |
---|
[640] | 222 | * It cannot fail, as only vseg registered in VSL copies are updated. |
---|
| 223 | ********************************************************************************************* |
---|
| 224 | * @ process : local pointer on process descriptor. |
---|
| 225 | * @ base : current vseg base address in user space. |
---|
| 226 | * @ new_base : new vseg base. |
---|
| 227 | * @ new_size : new vseg size. |
---|
| 228 | ********************************************************************************************/ |
---|
| 229 | void vmm_global_resize_vseg( struct process_s * process, |
---|
| 230 | intptr_t base, |
---|
| 231 | intptr_t new_base, |
---|
| 232 | intptr_t new_size ); |
---|
| 233 | |
---|
| 234 | /********************************************************************************************* |
---|
| 235 | * This function removes the vseg identified by the <process> and <base> arguments from |
---|
| 236 | * the VSL and remove all associated PTE entries from the GPT. |
---|
| 237 | * This is done in all clusters containing a VMM copy to maintain VMM coherence. |
---|
[657] | 238 | * It is called by the sys_munmap() and dev_fbf_resize_window() functions. |
---|
| 239 | * It can be called by a thread running in any cluster, as it uses the vmm_remove_vseg() in |
---|
| 240 | * the local cluster, and parallel RPC_VMM_REMOVE_VSEG for remote clusters. |
---|
[640] | 241 | * It cannot fail, as only vseg registered in VSL copies are deleted. |
---|
| 242 | ********************************************************************************************* |
---|
| 243 | * @ pid : local pointer on process identifier. |
---|
| 244 | * @ base : vseg base address in user space. |
---|
| 245 | ********************************************************************************************/ |
---|
| 246 | void vmm_global_delete_vseg( struct process_s * process, |
---|
| 247 | intptr_t base ); |
---|
| 248 | |
---|
| 249 | /********************************************************************************************* |
---|
[629] | 250 | * This function modifies one GPT entry identified by the <process> and <vpn> arguments |
---|
[640] | 251 | * in all clusters containing a process copy. It maintains coherence in GPT copies, |
---|
| 252 | * using remote_write accesses. |
---|
[629] | 253 | * It cannot fail, as only mapped PTE2 in GPT copies are updated. |
---|
[408] | 254 | ********************************************************************************************* |
---|
| 255 | * @ process : local pointer on local process descriptor. |
---|
| 256 | * @ vpn : PTE index. |
---|
| 257 | * @ attr : PTE / attributes. |
---|
| 258 | * @ ppn : PTE / physical page index. |
---|
| 259 | ********************************************************************************************/ |
---|
[433] | 260 | void vmm_global_update_pte( struct process_s * process, |
---|
| 261 | vpn_t vpn, |
---|
| 262 | uint32_t attr, |
---|
| 263 | ppn_t ppn ); |
---|
[408] | 264 | |
---|
| 265 | /********************************************************************************************* |
---|
[433] | 266 | * This function deletes, in the local cluster, all vsegs registered in the VSL |
---|
| 267 | * of the process identified by the <process> argument. For each vseg: |
---|
| 268 | * - it unmaps all vseg PTEs from the GPT (release the physical pages when required). |
---|
| 269 | * - it removes the vseg from the local VSL. |
---|
| 270 | * - it releases the memory allocated to the local vseg descriptors. |
---|
[611] | 271 | * - it releases the memory allocated to the GPT itself. |
---|
[408] | 272 | ********************************************************************************************* |
---|
[23] | 273 | * @ process : pointer on process descriptor. |
---|
[1] | 274 | ********************************************************************************************/ |
---|
| 275 | void vmm_destroy( struct process_s * process ); |
---|
| 276 | |
---|
| 277 | /********************************************************************************************* |
---|
[18] | 278 | * This function scans the list of vsegs registered in the VMM of a given process descriptor |
---|
[1] | 279 | * to check if a given virtual region (defined by a base and size) overlap an existing vseg. |
---|
| 280 | ********************************************************************************************* |
---|
| 281 | * @ process : pointer on process descriptor. |
---|
| 282 | * @ base : region virtual base address. |
---|
| 283 | * @ size : region size (bytes). |
---|
| 284 | * @ returns NULL if no conflict / return conflicting vseg pointer if conflict. |
---|
| 285 | ********************************************************************************************/ |
---|
| 286 | vseg_t * vmm_check_conflict( struct process_s * process, |
---|
| 287 | vpn_t base, |
---|
| 288 | vpn_t size ); |
---|
| 289 | |
---|
| 290 | /********************************************************************************************* |
---|
[18] | 291 | * This function allocates memory for a vseg descriptor, initialises it, and register it |
---|
[651] | 292 | * in the VSL of the local process descriptor. |
---|
| 293 | * - For the FILE, ANON, & REMOTE types, it does not use the <base> argument, but uses |
---|
| 294 | * the specific VMM MMAP allocator. |
---|
[635] | 295 | * - For the STACK type, it does not use the <base> and <size> arguments, but uses the |
---|
[651] | 296 | * the specific VMM STACK allocator. |
---|
[635] | 297 | * It checks collision with pre-existing vsegs. |
---|
[625] | 298 | * To comply with the "on-demand" paging policy, this function does NOT modify the GPT, |
---|
[407] | 299 | * and does not allocate physical memory for vseg data. |
---|
| 300 | * It should be called by a local thread (could be a RPC thread if the client thread is not |
---|
[625] | 301 | * running in the reference cluster). |
---|
[1] | 302 | ********************************************************************************************* |
---|
[407] | 303 | * @ process : pointer on local processor descriptor. |
---|
| 304 | * @ type : vseg type. |
---|
[625] | 305 | * @ base : vseg base address (or user thread ltid for an user stack vseg). |
---|
[407] | 306 | * @ size : vseg size (bytes). |
---|
| 307 | * @ file_offset : offset in file for CODE, DATA, FILE types. |
---|
| 308 | * @ file_size : can be smaller than "size" for DATA type. |
---|
| 309 | * @ mapper_xp : extended pointer on mapper for CODE, DATA, FILE types. |
---|
| 310 | * @ cxy : physical mapping cluster (for non distributed vsegs). |
---|
| 311 | * @ returns pointer on vseg if success / returns NULL if no memory, or conflict. |
---|
[1] | 312 | ********************************************************************************************/ |
---|
| 313 | vseg_t * vmm_create_vseg( struct process_s * process, |
---|
[407] | 314 | vseg_type_t type, |
---|
[18] | 315 | intptr_t base, |
---|
[407] | 316 | uint32_t size, |
---|
| 317 | uint32_t file_offset, |
---|
| 318 | uint32_t file_size, |
---|
| 319 | xptr_t mapper_xp, |
---|
| 320 | cxy_t cxy ); |
---|
[1] | 321 | |
---|
| 322 | /********************************************************************************************* |
---|
[656] | 323 | * This function removes from the VMM of a local process descriptor, identified by |
---|
| 324 | * the <process> argument, the vseg identified by the <vseg> argument. |
---|
| 325 | * It is called by the vmm_user_reset(), vmm_global_delete_vseg(), vmm_destroy() functions. |
---|
[640] | 326 | * It must be called by a local thread, running in the cluster containing the modified VMM. |
---|
| 327 | * Use the RPC_VMM_REMOVE_VSEG if required. |
---|
[657] | 328 | * It makes a kernel panic if the process is not registered in the local cluster. |
---|
[625] | 329 | * For all vseg types, the vseg is detached from local VSL, and all associated PTEs are |
---|
| 330 | * unmapped from local GPT. Other actions depend on the vseg type: |
---|
[640] | 331 | * Regarding the vseg descriptor release: |
---|
[625] | 332 | * . for ANON and REMOTE, the vseg is not released, but registered in local zombi_list. |
---|
| 333 | * . for STACK the vseg is released to the local stack allocator. |
---|
[656] | 334 | * . for all other types, the vseg descriptor is released to the local kmem. |
---|
[640] | 335 | * Regarding the physical pages release: |
---|
[625] | 336 | * . for KERNEL and FILE, the pages are not released to kmem. |
---|
[656] | 337 | * . for CODE and STACK, the pages are released to local kmem. |
---|
[625] | 338 | * . for DATA, ANON and REMOTE, the pages are released to relevant kmem only when |
---|
| 339 | * the local cluster is the reference cluster. |
---|
[640] | 340 | * The VSL lock protecting the VSL must be taken by the caller. |
---|
[1] | 341 | ********************************************************************************************* |
---|
[640] | 342 | * @ process : local pointer on process descriptor. |
---|
| 343 | * @ vseg : local pointer on target vseg. |
---|
[1] | 344 | ********************************************************************************************/ |
---|
[625] | 345 | void vmm_remove_vseg( struct process_s * process, |
---|
| 346 | struct vseg_s * vseg ); |
---|
[1] | 347 | |
---|
| 348 | /********************************************************************************************* |
---|
[640] | 349 | * This function resize a local vseg identified by the <process> and <vseg> arguments. |
---|
[657] | 350 | * Both the "size" and "base" fields are modified in the process VSL. When the new vseg |
---|
| 351 | * contains less pages than the target vseg, the relevant pages are removed from the GPT. |
---|
| 352 | * It is called by the vmm_global_resize() and dev_fbf_resize_window() functions. |
---|
| 353 | * It must be called by a local thread, running in the cluster containing the modified VSL. |
---|
[640] | 354 | * Use the RPC_VMM_RESIZE_VSEG if required. |
---|
| 355 | * The VSL lock protecting the VSL must be taken by the caller. |
---|
[611] | 356 | ********************************************************************************************* |
---|
[640] | 357 | * @ process : local pointer on process descriptor |
---|
| 358 | * @ vseg : local pointer on target vseg |
---|
| 359 | * @ new_base : vseg base address |
---|
| 360 | * @ new_size : vseg size (bytes) |
---|
[611] | 361 | ********************************************************************************************/ |
---|
[640] | 362 | void vmm_resize_vseg( struct process_s * process, |
---|
| 363 | struct vseg_s * vseg, |
---|
| 364 | intptr_t new_base, |
---|
| 365 | intptr_t new_size ); |
---|
[611] | 366 | |
---|
| 367 | /********************************************************************************************* |
---|
[640] | 368 | * This function checks that a given virtual address <vaddr> in a given <process> is |
---|
| 369 | * contained in a registered vseg. It can be called by any thread running in any cluster. |
---|
| 370 | * - if the vseg is registered in the local process VSL, it returns the local vseg pointer. |
---|
| 371 | * - if the vseg is missing in local VSL, it access directly the reference VSL. |
---|
| 372 | * - if the vseg is found in reference VSL, it updates the local VSL and returns this pointer. |
---|
| 373 | * It returns an error when the vseg is missing in the reference VMM, or when there is |
---|
| 374 | * not enough memory for a new vseg descriptor in the calling thread cluster. |
---|
| 375 | * For both the local and the reference VSL, it takes the VSL lock before scanning the VSL. |
---|
[1] | 376 | ********************************************************************************************* |
---|
[640] | 377 | * @ process : [in] pointer on process descriptor. |
---|
| 378 | * @ vaddr : [in] virtual address. |
---|
| 379 | * @ vseg : [out] local pointer on local vseg. |
---|
| 380 | * @ returns 0 if success / returns -1 if user error |
---|
[1] | 381 | ********************************************************************************************/ |
---|
[388] | 382 | error_t vmm_get_vseg( struct process_s * process, |
---|
| 383 | intptr_t vaddr, |
---|
[394] | 384 | vseg_t ** vseg ); |
---|
[1] | 385 | |
---|
| 386 | /********************************************************************************************* |
---|
[585] | 387 | * This function is called by the generic exception handler in case of page-fault event, |
---|
[610] | 388 | * detected for a given <vpn>. The <process> argument is used to access the relevant VMM. |
---|
[585] | 389 | * It checks the missing VPN and returns an user error if it is not in a registered vseg. |
---|
| 390 | * For a legal VPN, there is actually 3 cases: |
---|
| 391 | * 1) if the missing VPN belongs to a private vseg (STACK or CODE segment types, non |
---|
| 392 | * replicated in all clusters), it allocates a new physical page, computes the attributes, |
---|
| 393 | * depending on vseg type, and updates directly the local GPT. |
---|
| 394 | * 2) if the missing VPN belongs to a public vseg, it can be a false page-fault, when the VPN |
---|
| 395 | * is mapped in the reference GPT, but not in the local GPT. For this false page-fault, |
---|
| 396 | * the local GPT is simply updated from the reference GPT. |
---|
[629] | 397 | * 3) if the missing VPN is public, and unmapped in the ref GPT, it is a true page fault. |
---|
[585] | 398 | * The calling thread allocates a new physical page, computes the attributes, depending |
---|
| 399 | * on vseg type, and updates directly (without RPC) the local GPT and the reference GPT. |
---|
| 400 | * Other GPT copies will updated on demand. |
---|
[629] | 401 | * Concurrent accesses to the GPT(s) are handled, by locking the target PTE before accessing |
---|
| 402 | * the local and/or reference GPT(s). |
---|
[1] | 403 | ********************************************************************************************* |
---|
[610] | 404 | * @ process : local pointer on local process. |
---|
| 405 | * @ vpn : VPN of the missing PTE. |
---|
[585] | 406 | * @ returns EXCP_NON_FATAL / EXCP_USER_ERROR / EXCP_KERNEL_PANIC after analysis |
---|
[1] | 407 | ********************************************************************************************/ |
---|
| 408 | error_t vmm_handle_page_fault( struct process_s * process, |
---|
[585] | 409 | vpn_t vpn ); |
---|
[1] | 410 | |
---|
| 411 | /********************************************************************************************* |
---|
[610] | 412 | * This function is called by the generic exception handler in case of WRITE violation event, |
---|
| 413 | * detected for a given <vpn>. The <process> argument is used to access the relevant VMM. |
---|
[640] | 414 | * It returns a kernel panic if the faulty VPN is not in a registered vseg, or is not mapped. |
---|
[585] | 415 | * For a legal mapped vseg there is two cases: |
---|
[629] | 416 | * 1) If the missing VPN belongs to a private vseg (STACK), it access only the local GPT. |
---|
[585] | 417 | * It access the forks counter in the current physical page descriptor. |
---|
| 418 | * If there is a pending fork, it allocates a new physical page from the cluster defined |
---|
| 419 | * by the vseg type, copies the old physical page content to the new physical page, |
---|
| 420 | * and decrements the pending_fork counter in old physical page descriptor. |
---|
| 421 | * Finally, it reset the COW flag and set the WRITE flag in local GPT. |
---|
[629] | 422 | * 2) If the missing VPN is public, it access only the reference GPT. |
---|
| 423 | * It access the forks counter in the current physical page descriptor. |
---|
[585] | 424 | * If there is a pending fork, it allocates a new physical page from the cluster defined |
---|
| 425 | * by the vseg type, copies the old physical page content to the new physical page, |
---|
| 426 | * and decrements the pending_fork counter in old physical page descriptor. |
---|
| 427 | * Finally it calls the vmm_global_update_pte() function to reset the COW flag and set |
---|
| 428 | * the WRITE flag in all the GPT copies, using a RPC if the reference cluster is remote. |
---|
[629] | 429 | * In both cases, concurrent accesses to the GPT are handled by locking the target PTE |
---|
| 430 | * before accessing the GPT. |
---|
[407] | 431 | ********************************************************************************************* |
---|
[585] | 432 | * @ process : pointer on local process descriptor copy. |
---|
| 433 | * @ vpn : VPN of the faulting PTE. |
---|
| 434 | * @ returns EXCP_NON_FATAL / EXCP_USER_ERROR / EXCP_KERNEL_PANIC after analysis |
---|
[1] | 435 | ********************************************************************************************/ |
---|
[585] | 436 | error_t vmm_handle_cow( struct process_s * process, |
---|
| 437 | vpn_t vpn ); |
---|
[1] | 438 | |
---|
| 439 | /********************************************************************************************* |
---|
[401] | 440 | * This function is called by the vmm_get_pte() function when a page is unmapped. |
---|
[313] | 441 | * Depending on the vseg type, defined by the <vseg> argument, it returns the PPN |
---|
| 442 | * (Physical Page Number) associated to a missing page defined by the <vpn> argument. |
---|
[406] | 443 | * - For the FILE type, it returns directly the physical page from the file mapper. |
---|
[433] | 444 | * - For the CODE and DATA types, it allocates a new physical page from the cluster defined |
---|
[406] | 445 | * by the <vseg->cxy> field, or by the <vpn> MSB bits for a distributed vseg, |
---|
| 446 | * and initialize this page from the .elf file mapper. |
---|
| 447 | * - For all other types, it allocates a new physical page from the cluster defined |
---|
| 448 | * by the <vseg->cxy> field, or by the <vpn> MSB bits for a distributed vseg, |
---|
| 449 | * but the new page is not initialized. |
---|
[313] | 450 | ********************************************************************************************* |
---|
| 451 | * @ vseg : local pointer on vseg containing the mising page. |
---|
| 452 | * @ vpn : Virtual Page Number identifying the missing page. |
---|
| 453 | * @ ppn : [out] returned Physical Page Number. |
---|
[401] | 454 | * return 0 if success / return EINVAL or ENOMEM if error. |
---|
[313] | 455 | ********************************************************************************************/ |
---|
| 456 | error_t vmm_get_one_ppn( vseg_t * vseg, |
---|
| 457 | vpn_t vpn, |
---|
| 458 | ppn_t * ppn ); |
---|
| 459 | |
---|
[1] | 460 | #endif /* _VMM_H_ */ |
---|