source: trunk/kernel/mm/vmm.h @ 656

Last change on this file since 656 was 656, checked in by alain, 4 years ago

Fix several bugs in the FATFS and in the VFS,
related to the creation of big files requiring
more than 4 Kbytes (one cluster) on device.

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