source: trunk/kernel/mm/vmm.c @ 651

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

1) Improve the VMM MMAP allocator: implement the "buddy" algorithm
to allocate only aligned blocks.
2) fix a bug in the pthread_join() / pthread_exit() mmechanism.

File size: 100.5 KB
Line 
1/*
2 * vmm.c - virtual memory manager related operations definition.
3 *
4 * Authors   Ghassan Almaless (2008,2009,2010,2011, 2012)
5 *           Alain Greiner (2016,2017,2018,2019)
6 *
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#include <kernel_config.h>
26#include <hal_kernel_types.h>
27#include <hal_special.h>
28#include <hal_gpt.h>
29#include <hal_vmm.h>
30#include <hal_irqmask.h>
31#include <hal_macros.h>
32#include <printk.h>
33#include <memcpy.h>
34#include <remote_queuelock.h>
35#include <list.h>
36#include <xlist.h>
37#include <bits.h>
38#include <process.h>
39#include <thread.h>
40#include <vseg.h>
41#include <cluster.h>
42#include <scheduler.h>
43#include <vfs.h>
44#include <mapper.h>
45#include <page.h>
46#include <kmem.h>
47#include <vmm.h>
48#include <hal_exception.h>
49
50////////////////////////////////////////////////////////////////////////////////////////////
51//   Extern global variables
52////////////////////////////////////////////////////////////////////////////////////////////
53
54extern  process_t  process_zero;      // allocated in cluster.c
55
56////////////////////////////////////////////////////////////////////////////////////////////
57// This static function is called by the vmm_user_init() function.
58// It initialises the free lists of vsegs used by the VMM MMAP allocator.
59// It makes the assumption that HEAP_BASE == 1 Gbytes and HEAP_SIZE == 2 Gbytes.
60////////////////////////////////////////////////////////////////////////////////////////////
61static void vmm_stack_init( vmm_t * vmm )
62{
63
64// check STACK zone
65assert( ((CONFIG_VMM_STACK_SIZE * CONFIG_THREADS_MAX_PER_CLUSTER) <=
66(CONFIG_VMM_VSPACE_SIZE - CONFIG_VMM_STACK_BASE)) , "STACK zone too small\n");
67
68    // get pointer on STACK allocator
69    stack_mgr_t * mgr = &vmm->stack_mgr;
70
71    mgr->bitmap   = 0;
72    mgr->vpn_base = CONFIG_VMM_STACK_BASE;
73    busylock_init( &mgr->lock , LOCK_VMM_STACK );
74
75}
76
77////////////////////////////////////////////////////////////////////////////////////////////
78// This static function is called by the vmm_create_vseg() function, and implements
79// the VMM STACK specific allocator. Depending on the local thread index <ltid>,
80// it ckeks availability of the corresponding slot in the process STACKS region,
81// allocates a vseg descriptor, and initializes the "vpn_base" and "vpn_size" fields.
82////////////////////////////////////////////////////////////////////////////////////////////
83// @ vmm      : [in]  pointer on VMM.
84// @ ltid     : [in]  requested slot == local user thread identifier.
85////////////////////////////////////////////////////////////////////////////////////////////
86static vseg_t * vmm_stack_alloc( vmm_t  * vmm,
87                                 ltid_t   ltid )
88{
89
90// check ltid argument
91assert( (ltid <= ((CONFIG_VMM_VSPACE_SIZE - CONFIG_VMM_STACK_BASE) / CONFIG_VMM_STACK_SIZE)),
92"slot index %d too large for an user stack vseg", ltid );
93
94    // get stack allocator pointer
95    stack_mgr_t * mgr = &vmm->stack_mgr;
96
97    // get lock protecting stack allocator
98    busylock_acquire( &mgr->lock );
99
100// check requested slot is available
101assert( (bitmap_state( &mgr->bitmap , ltid ) == false),
102"slot index %d already allocated", ltid );
103
104    // allocate a vseg descriptor
105    vseg_t * vseg = vseg_alloc();
106
107    if( vseg == NULL )
108        {
109        // release lock protecting free lists
110        busylock_release( &mgr->lock );
111
112        printk("\n[ERROR] %s cannot allocate memory for vseg in cluster %x\n",
113        __FUNCTION__ , local_cxy );
114
115        return NULL;
116    }
117
118    // update bitmap
119    bitmap_set( &mgr->bitmap , ltid );
120
121    // release lock on stack allocator
122    busylock_release( &mgr->lock );
123
124    // set "vpn_base" & "vpn_size" fields (first page non allocated)
125    vseg->vpn_base = mgr->vpn_base + (ltid * CONFIG_VMM_STACK_SIZE) + 1;
126    vseg->vpn_size = CONFIG_VMM_STACK_SIZE - 1;
127
128    return vseg;
129
130} // end vmm_stack_alloc()
131
132////////////////////////////////////////////////////////////////////////////////////////////
133// This static function is called by the vmm_remove_vseg() function, and implements
134// the VMM STACK specific desallocator.
135// It updates the bitmap to release the corresponding slot in the process STACKS region,
136// and releases memory allocated to vseg descriptor.
137////////////////////////////////////////////////////////////////////////////////////////////
138// @ vmm      : [in] pointer on VMM.
139// @ vseg     : [in] pointer on released vseg.
140////////////////////////////////////////////////////////////////////////////////////////////
141static void vmm_stack_free( vmm_t  * vmm,
142                            vseg_t * vseg )
143{
144    // get stack allocator pointer
145    stack_mgr_t * mgr = &vmm->stack_mgr;
146
147    // compute slot index
148    uint32_t index = (vseg->vpn_base - 1 - mgr->vpn_base) / CONFIG_VMM_STACK_SIZE;
149
150// check index
151assert( (index <= ((CONFIG_VMM_VSPACE_SIZE - CONFIG_VMM_STACK_BASE) / CONFIG_VMM_STACK_SIZE)),
152"slot index %d too large for an user stack vseg", index );
153
154// check released slot is allocated
155assert( (bitmap_state( &mgr->bitmap , index ) == true),
156"released slot index %d non allocated", index );
157
158    // get lock on stack allocator
159    busylock_acquire( &mgr->lock );
160
161    // update stacks_bitmap
162    bitmap_clear( &mgr->bitmap , index );
163
164    // release lock on stack allocator
165    busylock_release( &mgr->lock );
166
167    // release memory allocated to vseg descriptor
168    vseg_free( vseg );
169
170}  // end vmm_stack_free()
171
172
173
174////////////////////////////////////////////////////////////////////////////////////////////
175// This function display the current state of the VMM MMAP allocator of a process VMM
176// identified by the <vmm> argument.
177////////////////////////////////////////////////////////////////////////////////////////////
178void vmm_mmap_display( vmm_t * vmm )
179{
180    uint32_t  order;
181    xptr_t    root_xp;
182    xptr_t    iter_xp;
183
184    // get pointer on process
185    process_t * process = (process_t *)(((char*)vmm) - OFFSETOF( process_t , vmm ));
186
187    // get process PID
188    pid_t pid = process->pid;
189
190    // get pointer on VMM MMAP allocator
191    mmap_mgr_t * mgr = &vmm->mmap_mgr;
192
193    // display header
194    printk("***** VMM MMAP allocator / process %x *****\n", pid );
195
196    // scan the array of free lists of vsegs
197    for( order = 0 ; order <= CONFIG_VMM_HEAP_MAX_ORDER ; order++ )
198    {
199        root_xp = XPTR( local_cxy , &mgr->free_list_root[order] );
200
201        if( !xlist_is_empty( root_xp ) )
202        {
203            printk(" - %d (%x pages) : ", order , 1<<order );
204
205            XLIST_FOREACH( root_xp , iter_xp )
206            {
207                xptr_t   vseg_xp = XLIST_ELEMENT( iter_xp , vseg_t , xlist );
208                vseg_t * vseg    = GET_PTR( vseg_xp );
209
210                printk("%x | ", vseg->vpn_base );
211            }
212
213            printk("\n");
214        }
215    }
216}  // end vmm_mmap_display()
217
218////////////////////////////////////////////////////////////////////////////////////////////
219// This static function is called by the vmm_user_init() function.
220// It initialises the free lists of vsegs used by the VMM MMAP allocator.
221// TODO this function is only valid for 32 bits cores, and makes three assumptions:
222// HEAP_BASE == 1 Gbytes / HEAP_SIZE == 2 Gbytes / MMAP_MAX_SIZE == 1 Gbytes
223////////////////////////////////////////////////////////////////////////////////////////////
224void vmm_mmap_init( vmm_t * vmm )
225{
226
227// check HEAP base and size
228assert( (CONFIG_VMM_HEAP_BASE == 0x40000) & (CONFIG_VMM_STACK_BASE == 0xc0000),
229"CONFIG_VMM_HEAP_BASE != 0x40000 or CONFIG_VMM_STACK_BASE != 0xc0000" );
230
231// check  MMAP vseg max order
232assert( (CONFIG_VMM_HEAP_MAX_ORDER == 18), "max mmap vseg size is 256K pages" );
233
234    // get pointer on MMAP allocator
235    mmap_mgr_t * mgr = &vmm->mmap_mgr;
236
237    // initialize HEAP base and size
238    mgr->vpn_base        = CONFIG_VMM_HEAP_BASE;
239    mgr->vpn_size        = CONFIG_VMM_STACK_BASE - CONFIG_VMM_HEAP_BASE;
240
241    // initialize lock
242    busylock_init( &mgr->lock , LOCK_VMM_MMAP );
243
244    // initialize free lists
245    uint32_t   i;
246    for( i = 0 ; i <= CONFIG_VMM_HEAP_MAX_ORDER ; i++ )
247    {
248        xlist_root_init( XPTR( local_cxy , &mgr->free_list_root[i] ) );
249    }
250
251    // allocate and register first 1 Gbytes vseg
252    vseg_t * vseg0 = vseg_alloc();
253
254assert( (vseg0 != NULL) , "cannot allocate vseg" );
255
256    vseg0->vpn_base = CONFIG_VMM_HEAP_BASE;
257    vseg0->vpn_size = CONFIG_VMM_HEAP_BASE;
258
259    xlist_add_first( XPTR( local_cxy , &mgr->free_list_root[CONFIG_VMM_HEAP_MAX_ORDER] ),
260                     XPTR( local_cxy , &vseg0->xlist ) );
261
262    // allocate and register second 1 Gbytes vseg
263    vseg_t * vseg1 = vseg_alloc();
264
265assert( (vseg1 != NULL) , "cannot allocate vseg" );
266
267    vseg1->vpn_base = CONFIG_VMM_HEAP_BASE << 1;
268    vseg1->vpn_size = CONFIG_VMM_HEAP_BASE;
269
270    xlist_add_first( XPTR( local_cxy , &mgr->free_list_root[CONFIG_VMM_HEAP_MAX_ORDER] ),
271                     XPTR( local_cxy , &vseg1->xlist ) );
272
273#if DEBUG_VMM_MMAP
274thread_t * this = CURRENT_THREAD;
275uint32_t cycle = (uint32_t)hal_get_cycles();
276printk("\n[%s] thread[%x,%x] / cycle %d\n",
277__FUNCTION__, this->process->pid, this->trdid, cycle );
278vmm_mmap_display( vmm );
279#endif
280
281}  // end vmm_mmap_init()
282
283////////////////////////////////////////////////////////////////////////////////////////////
284// This static function is called by the vmm_create_vseg() function, and implements
285// the VMM MMAP specific allocator.  Depending on the requested number of pages <npages>,
286// it get a free vseg from the relevant free_list, and initializes the "vpn_base" and
287// "vpn_size" fields.
288////////////////////////////////////////////////////////////////////////////////////////////
289// @ vmm      : [in] pointer on VMM.
290// @ npages   : [in] requested number of pages.
291// @ returns local pointer on vseg if success / returns NULL if failure.
292////////////////////////////////////////////////////////////////////////////////////////////
293static vseg_t * vmm_mmap_alloc( vmm_t * vmm,
294                                vpn_t   npages )
295{
296
297#if DEBUG_VMM_MMAP
298thread_t * this = CURRENT_THREAD;
299uint32_t cycle = (uint32_t)hal_get_cycles();
300if( DEBUG_VMM_MMAP < cycle )
301printk("\n[%s] thread[%x,%x] for %x pages / cycle %d\n",
302__FUNCTION__, this->process->pid, this->trdid, npages, cycle );
303#endif
304
305    // number of allocated pages must be power of 2
306    // compute actual size and order
307    vpn_t    required_vpn_size = POW2_ROUNDUP( npages );
308    uint32_t required_order    = bits_log2( required_vpn_size );
309
310    // get mmap allocator pointer
311    mmap_mgr_t * mgr = &vmm->mmap_mgr;
312
313    // take lock protecting free lists in MMAP allocator
314    busylock_acquire( &mgr->lock );
315
316    // initialises the while loop variables
317    uint32_t   current_order = required_order;
318    vseg_t   * current_vseg  = NULL;
319
320    // search a free vseg equal or larger than requested size
321        while( current_order <= CONFIG_VMM_HEAP_MAX_ORDER )
322        {
323        // build extended pointer on free_pages_root[current_order]
324        xptr_t root_xp = XPTR( local_cxy , &mgr->free_list_root[current_order] );
325
326                if( !xlist_is_empty( root_xp ) )
327                {
328            // get extended pointer on first vseg in this free_list
329                        xptr_t current_vseg_xp = XLIST_FIRST( root_xp , vseg_t , xlist );
330            current_vseg = GET_PTR( current_vseg_xp );
331
332            // build extended pointer on xlist field in vseg descriptor
333            xptr_t list_entry_xp = XPTR( local_cxy , &current_vseg->xlist );
334
335            // remove this vseg from the free_list
336                        xlist_unlink( list_entry_xp );
337
338                        break; 
339                }
340
341        // increment loop index
342        current_order++;
343
344    }  // end while loop
345
346    if( current_vseg == NULL )  // return failure
347    {
348        // release lock protecting free lists
349        busylock_release( &mgr->lock );
350
351        printk("\n[ERROR] %s cannot allocate ) %d page(s) in cluster %x\n",
352        __FUNCTION__, npages , local_cxy );
353
354        return NULL;
355    }
356
357        // split recursively the found vseg in smaller vsegs
358    // if required, and update the free-lists accordingly
359        while( current_order > required_order )
360        {
361        // get found vseg base and size
362        vpn_t  vpn_base = current_vseg->vpn_base;
363        vpn_t  vpn_size = current_vseg->vpn_size;
364       
365        // allocate a new vseg for the upper half of current vseg
366            vseg_t * new_vseg = vseg_alloc();
367
368            if( new_vseg == NULL )
369        {
370                // release lock protecting free lists
371            busylock_release( &mgr->lock );
372
373            printk("\n[ERROR] %s cannot allocate memory for vseg in cluster %x\n",
374            __FUNCTION__ , local_cxy );
375
376            return NULL;
377            }
378
379        // initialise new vseg (upper half of found vseg)
380        new_vseg->vmm      = vmm;
381        new_vseg->vpn_base = vpn_base + (vpn_size >> 1);
382        new_vseg->vpn_size = vpn_size >> 1;
383
384        // insert new vseg in relevant free_list
385                xlist_add_first( XPTR( local_cxy , &mgr->free_list_root[current_order-1] ),
386                         XPTR( local_cxy , &new_vseg->xlist ) );
387
388        // update found vseg
389        current_vseg->vpn_size = vpn_size>>1; 
390
391        // update order
392                current_order --;
393        }
394
395        // release lock protecting free lists
396        busylock_release( &mgr->lock );
397
398#if DEBUG_VMM_MMAP
399vmm_mmap_display( vmm );
400#endif
401
402    return current_vseg;
403
404}  // end vmm_mmap_alloc()
405
406////////////////////////////////////////////////////////////////////////////////////////////
407// This static function implements the VMM MMAP specific desallocator.
408// It is called by the vmm_remove_vseg() function.
409// It releases the vseg to the relevant free_list, after trying (recursively) to
410// merge it to the buddy vseg.
411////////////////////////////////////////////////////////////////////////////////////////////
412// @ vmm      : [in] pointer on VMM.
413// @ vseg     : [in] pointer on released vseg.
414////////////////////////////////////////////////////////////////////////////////////////////
415static void vmm_mmap_free( vmm_t  * vmm,
416                           vseg_t * vseg )
417{
418
419#if DEBUG_VMM_MMAP
420thread_t * this = CURRENT_THREAD;
421uint32_t cycle = (uint32_t)hal_get_cycles();
422if( DEBUG_VMM_MMAP < cycle )
423printk("\n[%s] thread[%x,%x] for vpn_base %x / vpn_size %x / cycle %d\n",
424__FUNCTION__, this->process->pid, this->trdid, vseg->vpn_base, vseg->vpn_size, cycle );
425#endif
426
427    vseg_t * buddy_vseg;
428
429    // get mmap allocator pointer
430    mmap_mgr_t * mgr = &vmm->mmap_mgr;
431
432    // take lock protecting free lists
433    busylock_acquire( &mgr->lock );
434
435    // initialise loop variables
436    // released_vseg is the currently released vseg
437    vseg_t * released_vseg     = vseg;
438    uint32_t released_order    = bits_log2( vseg->vpn_size );
439
440        // iteratively merge the released vseg to the buddy vseg
441        // release the current page and exit when buddy not found
442    while( released_order <= CONFIG_VMM_HEAP_MAX_ORDER )
443    {
444        // compute buddy_vseg vpn_base
445                vpn_t buddy_vpn_base = released_vseg->vpn_base ^ (1 << released_order);
446       
447        // build extended pointer on free_pages_root[current_order]
448        xptr_t root_xp = XPTR( local_cxy , &mgr->free_list_root[released_order] );
449
450        // scan this free list to find the buddy vseg
451        xptr_t   iter_xp;
452        buddy_vseg = NULL;
453        XLIST_FOREACH( root_xp , iter_xp )
454        {
455            xptr_t   current_vseg_xp = XLIST_ELEMENT( iter_xp , vseg_t , xlist );
456            vseg_t * current_vseg    = GET_PTR( current_vseg_xp );
457
458            if( current_vseg->vpn_base == buddy_vpn_base )
459            {
460                buddy_vseg = current_vseg;
461                break;
462            }
463        }
464       
465        if( buddy_vseg != NULL )     // buddy found => merge released & buddy
466        {
467            // update released vseg fields
468            released_vseg->vpn_size = buddy_vseg->vpn_size<<1;
469            if( released_vseg->vpn_base > buddy_vseg->vpn_base) 
470                released_vseg->vpn_base = buddy_vseg->vpn_base;
471
472            // remove buddy vseg from free_list
473            xlist_unlink( XPTR( local_cxy , &buddy_vseg->xlist ) );
474
475            // release memory allocated to buddy descriptor
476            vseg_free( buddy_vseg );
477        }
478        else                         // buddy not found => register & exit
479        {
480            // register released vseg in free list
481            xlist_add_first( root_xp , XPTR( local_cxy , &released_vseg->xlist ) );
482
483            // exit while loop
484            break;
485        }
486
487        // increment released_order
488        released_order++;
489    }
490
491    // release lock
492    busylock_release( &mgr->lock );
493
494#if DEBUG_VMM_MMAP
495vmm_mmap_display( vmm );
496#endif
497
498}  // end vmm_mmap_free()
499
500////////////////////////////////////////////////////////////////////////////////////////////
501// This static function registers one vseg in the VSL of a local process descriptor.
502////////////////////////////////////////////////////////////////////////////////////////////
503// vmm       : [in] pointer on VMM.
504// vseg      : [in] pointer on vseg.
505////////////////////////////////////////////////////////////////////////////////////////////
506void vmm_attach_vseg_to_vsl( vmm_t  * vmm,
507                             vseg_t * vseg )
508{
509    // update vseg descriptor
510    vseg->vmm = vmm;
511
512    // increment vsegs number
513    vmm->vsegs_nr++;
514
515    // add vseg in vmm list
516    xlist_add_last( XPTR( local_cxy , &vmm->vsegs_root ),
517                    XPTR( local_cxy , &vseg->xlist ) );
518
519}  // end vmm_attach_vseg_from_vsl()
520
521////////////////////////////////////////////////////////////////////////////////////////////
522// This static function removes one vseg from the VSL of a local process descriptor.
523////////////////////////////////////////////////////////////////////////////////////////////
524// vmm       : [in] pointer on VMM.
525// vseg      : [in] pointer on vseg.
526////////////////////////////////////////////////////////////////////////////////////////////
527void vmm_detach_vseg_from_vsl( vmm_t  * vmm,
528                               vseg_t * vseg )
529{
530    // update vseg descriptor
531    vseg->vmm = NULL;
532
533    // decrement vsegs number
534    vmm->vsegs_nr--;
535
536    // remove vseg from VSL
537    xlist_unlink( XPTR( local_cxy , &vseg->xlist ) );
538
539}  // end vmm_detach_from_vsl()
540
541////////////////////////////////////////////
542error_t vmm_user_init( process_t * process )
543{
544
545#if DEBUG_VMM_USER_INIT
546thread_t * this = CURRENT_THREAD;
547uint32_t cycle = (uint32_t)hal_get_cycles();
548if( DEBUG_VMM_USER_INIT )
549printk("\n[%s] thread[%x,%x] enter for process %x in cluster %x / cycle %d\n", 
550__FUNCTION__ , this->process->pid, this->trdid, process->pid, local_cxy, cycle );
551#endif
552
553    // get pointer on VMM
554    vmm_t   * vmm = &process->vmm;
555
556// check UTILS zone
557assert( ((CONFIG_VMM_ARGS_SIZE + CONFIG_VMM_ENVS_SIZE) <= 
558         (CONFIG_VMM_ELF_BASE - CONFIG_VMM_UTILS_BASE)) ,
559         "UTILS zone too small\n" );
560
561    // initialize lock protecting the VSL
562        remote_queuelock_init( XPTR( local_cxy , &vmm->vsl_lock ) , LOCK_VMM_VSL );
563
564
565    // initialize STACK allocator
566    vmm_stack_init( vmm );
567
568    // initialize MMAP allocator
569    vmm_mmap_init( vmm );
570
571    // initialize instrumentation counters
572        vmm->false_pgfault_nr    = 0;
573        vmm->local_pgfault_nr    = 0;
574        vmm->global_pgfault_nr   = 0;
575        vmm->false_pgfault_cost  = 0;
576        vmm->local_pgfault_cost  = 0;
577        vmm->global_pgfault_cost = 0;
578
579/*
580    // register "args" vseg in VSL
581    base = CONFIG_VMM_UTILS_BASE << CONFIG_PPM_PAGE_SHIFT;
582    size = CONFIG_VMM_ARGS_SIZE << CONFIG_PPM_PAGE_SHIFT;
583
584    vseg_args = vmm_create_vseg( process,
585                                 VSEG_TYPE_DATA,
586                                 base,
587                                 size,
588                                 0,             // file_offset unused
589                                 0,             // file_size unused
590                                 XPTR_NULL,     // mapper_xp unused
591                                 local_cxy );
592    if( vseg_args == NULL )
593    {
594        printk("\n[ERROR] in %s : cannot register args vseg\n", __FUNCTION__ );
595        return -1;
596    }
597
598    vmm->args_vpn_base = base;
599
600    // register "envs" vseg in VSL
601    base = (CONFIG_VMM_UTILS_BASE + CONFIG_VMM_ARGS_SIZE) << CONFIG_PPM_PAGE_SHIFT;
602    size = CONFIG_VMM_ENVS_SIZE << CONFIG_PPM_PAGE_SHIFT;
603
604    vseg_envs = vmm_create_vseg( process,
605                                 VSEG_TYPE_DATA,
606                                 base,
607                                 size,
608                                 0,             // file_offset unused
609                                 0,             // file_size unused
610                                 XPTR_NULL,     // mapper_xp unused
611                                 local_cxy );
612    if( vseg_envs == NULL )
613    {
614        printk("\n[ERROR] in %s : cannot register envs vseg\n", __FUNCTION__ );
615        return -1;
616    }
617
618    vmm->envs_vpn_base = base;
619*/
620    hal_fence();
621
622#if DEBUG_VMM_USER_INIT
623cycle = (uint32_t)hal_get_cycles();
624if( DEBUG_VMM_USER_INIT )
625printk("\n[%s] thread[%x,%x] exit for process %x in cluster %x / cycle %d\n", 
626__FUNCTION__, this->process->pid, this->trdid, process->pid, local_cxy, cycle );
627#endif
628
629    return 0;
630
631}  // end vmm_user_init()
632
633//////////////////////////////////////////
634void vmm_user_reset( process_t * process )
635{
636    xptr_t       vseg_xp;
637        vseg_t     * vseg;
638    vseg_type_t  vseg_type;
639
640#if DEBUG_VMM_USER_RESET
641uint32_t   cycle;
642thread_t * this = CURRENT_THREAD;
643#endif
644
645#if (DEBUG_VMM_USER_RESET & 1 )
646cycle = (uint32_t)hal_get_cycles();
647if( DEBUG_VMM_USER_RESET < cycle )
648printk("\n[%s] thread[%x,%x] enter for process %x in cluster %x / cycle %d\n",
649__FUNCTION__, this->process->pid, this->trdid, process->pid, local_cxy, cycle );
650#endif
651
652#if (DEBUG_VMM_USER_RESET & 1 )
653if( DEBUG_VMM_USER_RESET < cycle )
654hal_vmm_display( XPTR( local_cxy , process ) , true );
655#endif
656
657    // get pointer on local VMM
658    vmm_t * vmm = &process->vmm;
659
660    // build extended pointer on VSL root and VSL lock
661    xptr_t   root_xp = XPTR( local_cxy , &vmm->vsegs_root );
662    xptr_t   lock_xp = XPTR( local_cxy , &vmm->vsl_lock );
663
664    // take the VSL lock
665        remote_queuelock_acquire( lock_xp );
666
667    // scan the VSL to delete all non kernel vsegs
668    // (we don't use a FOREACH in case of item deletion)
669    xptr_t   iter_xp;
670    xptr_t   next_xp;
671        for( iter_xp = hal_remote_l64( root_xp ) ; 
672         iter_xp != root_xp ;
673         iter_xp = next_xp )
674        {
675        // save extended pointer on next item in xlist
676        next_xp = hal_remote_l64( iter_xp );
677
678        // get pointers on current vseg in VSL
679        vseg_xp   = XLIST_ELEMENT( iter_xp , vseg_t , xlist );
680        vseg      = GET_PTR( vseg_xp );
681        vseg_type = vseg->type;
682
683#if( DEBUG_VMM_USER_RESET & 1 )
684if( DEBUG_VMM_USER_RESET < cycle )
685printk("\n[%s] found %s vseg / vpn_base %x / vpn_size %d\n",
686__FUNCTION__ , vseg_type_str( vseg->type ), vseg->vpn_base, vseg->vpn_size );
687#endif
688        // delete non kernel vseg 
689        if( (vseg_type != VSEG_TYPE_KCODE) && 
690            (vseg_type != VSEG_TYPE_KDATA) && 
691            (vseg_type != VSEG_TYPE_KDEV ) )
692        {
693            // remove vseg from VSL
694            vmm_remove_vseg( process , vseg );
695
696#if( DEBUG_VMM_USER_RESET & 1 )
697if( DEBUG_VMM_USER_RESET < cycle )
698printk("\n[%s] %s vseg deleted / vpn_base %x / vpn_size %d\n",
699__FUNCTION__ , vseg_type_str( vseg->type ), vseg->vpn_base, vseg->vpn_size );
700#endif
701        }
702        else
703        {
704
705#if( DEBUG_VMM_USER_RESET & 1 )
706if( DEBUG_VMM_USER_RESET < cycle )
707printk("\n[%s] keep %s vseg / vpn_base %x / vpn_size %d\n",
708__FUNCTION__ , vseg_type_str( vseg->type ), vseg->vpn_base, vseg->vpn_size );
709#endif
710        }
711        }  // end loop on vsegs in VSL
712
713    // release the VSL lock
714        remote_queuelock_release( lock_xp );
715
716// FIXME il faut gérer les process copies...
717
718#if DEBUG_VMM_USER_RESET
719cycle = (uint32_t)hal_get_cycles();
720if( DEBUG_VMM_USER_RESET < cycle )
721printk("\n[%s] thread[%x,%x] exit for process %x in cluster %x / cycle %d\n",
722__FUNCTION__, this->process->pid, this->trdid, process->pid, local_cxy , cycle );
723#endif
724
725#if (DEBUG_VMM_USER_RESET & 1 )
726if( DEBUG_VMM_USER_RESET < cycle )
727hal_vmm_display( XPTR( local_cxy , process ) , true );
728#endif
729
730}  // end vmm_user_reset()
731
732/////////////////////////////////////////////////
733void vmm_global_delete_vseg( process_t * process,
734                             intptr_t    base )
735{
736    cxy_t           owner_cxy;
737    lpid_t          owner_lpid;
738    reg_t           save_sr;
739
740    xptr_t          process_lock_xp;
741    xptr_t          process_root_xp;
742    xptr_t          process_iter_xp;
743
744    xptr_t          remote_process_xp;
745    cxy_t           remote_process_cxy;
746    process_t     * remote_process_ptr;
747
748    xptr_t          vsl_root_xp;
749    xptr_t          vsl_lock_xp;
750    xptr_t          vsl_iter_xp;
751
752    rpc_desc_t      rpc;                  // shared rpc descriptor for parallel RPCs
753    uint32_t        responses;            // RPC responses counter
754
755    thread_t      * this    = CURRENT_THREAD;
756    pid_t           pid     = process->pid;
757    cluster_t     * cluster = LOCAL_CLUSTER;
758
759#if DEBUG_VMM_GLOBAL_DELETE_VSEG
760uint32_t cycle = (uint32_t)hal_get_cycles();
761#endif
762
763#if (DEBUG_VMM_GLOBAL_DELETE_VSEG & 1)
764if( DEBUG_VMM_GLOBAL_DELETE_VSEG < cycle )
765printk("\n[%s] thread[%x,%x] enters / process %x / base %x / cycle %d\n",
766__FUNCTION__, this->process->pid, this->trdid, process->pid, base, cycle );
767#endif
768
769    // initialize a shared RPC descriptor
770    rpc.rsp       = &responses;
771    rpc.blocking  = false;                  // non blocking behaviour for rpc_send()
772    rpc.index     = RPC_VMM_REMOVE_VSEG;
773    rpc.thread    = this;
774    rpc.lid       = this->core->lid;
775    rpc.args[0]   = this->process->pid;
776    rpc.args[1]   = base;
777
778    // get owner process cluster and local index
779    owner_cxy        = CXY_FROM_PID( pid );
780    owner_lpid       = LPID_FROM_PID( pid );
781
782    // get extended pointer on root and lock of process copies xlist in owner cluster
783    process_root_xp  = XPTR( owner_cxy , &cluster->pmgr.copies_root[owner_lpid] );
784    process_lock_xp  = XPTR( owner_cxy , &cluster->pmgr.copies_lock[owner_lpid] );
785
786    // mask IRQs
787    hal_disable_irq( &save_sr );
788
789    // client thread blocks itself
790    thread_block( XPTR( local_cxy , this ) , THREAD_BLOCKED_RPC );
791
792    // take the lock protecting process copies
793    remote_queuelock_acquire( process_lock_xp );
794
795    // initialize responses counter
796    responses = 0;
797
798    // loop on process copies
799    XLIST_FOREACH( process_root_xp , process_iter_xp )
800    {
801        // get cluster and local pointer on remote process
802        remote_process_xp  = XLIST_ELEMENT( process_iter_xp , process_t , copies_list );
803        remote_process_ptr = GET_PTR( remote_process_xp );
804        remote_process_cxy = GET_CXY( remote_process_xp );
805
806        // build extended pointers on remote VSL root and lock
807        vsl_root_xp = XPTR( remote_process_cxy , &remote_process_ptr->vmm.vsegs_root );
808        vsl_lock_xp = XPTR( remote_process_cxy , &remote_process_ptr->vmm.vsl_lock );
809
810        // get lock on remote VSL
811        remote_queuelock_acquire( vsl_lock_xp );
812
813        // loop on vsegs in remote process VSL
814        XLIST_FOREACH( vsl_root_xp , vsl_iter_xp )
815        {
816            // get pointers on current vseg
817            xptr_t   vseg_xp  = XLIST_ELEMENT( vsl_iter_xp , vseg_t , xlist );
818            vseg_t * vseg_ptr = GET_PTR( vseg_xp );
819
820            // get current vseg base address
821            intptr_t vseg_base = (intptr_t)hal_remote_lpt( XPTR( remote_process_cxy,
822                                                                 &vseg_ptr->min ) );
823
824            if( vseg_base == base )   // found searched vseg
825            {
826                // atomically increment responses counter
827                hal_atomic_add( &responses , 1 );
828
829#if (DEBUG_VMM_GLOBAL_DELETE_VSEG & 1)
830if( DEBUG_VMM_GLOBAL_DELETE_VSEG < cycle )
831printk("\n[%s] thread[%x,%x] register RPC request in cluster %x\n",
832__FUNCTION__, this->process->pid, this->trdid, remote_process_cxy );
833#endif
834                // send RPC to remote cluster
835                rpc_send( remote_process_cxy , &rpc );
836
837                // exit loop on vsegs
838                break;
839            }
840        }  // end of loop on vsegs
841
842        // release lock on remote VSL
843        remote_queuelock_release( vsl_lock_xp );
844
845    }  // end of loop on process copies
846
847    // release the lock protecting process copies
848    remote_queuelock_release( process_lock_xp );
849
850#if (DEBUG_VMM_GLOBAL_DELETE_VSEG & 1)
851if( DEBUG_VMM_GLOBAL_DELETE_VSEG < cycle )
852printk("\n[%s] thread[%x,%x] deschedule / process %x / base %x\n",
853__FUNCTION__, this->process->pid, this->trdid, process->pid, base );
854#endif
855
856    // client thread deschedule
857    sched_yield("blocked on rpc_vmm_delete_vseg");
858 
859    // restore IRQs
860    hal_restore_irq( save_sr );
861
862#if DEBUG_VMM_GLOBAL_DELETE_VSEG
863cycle = (uint32_t)hal_get_cycles();
864if( DEBUG_VMM_GLOBAL_DELETE_VSEG < cycle )
865printk("\n[%s] thread[%x,%x] exit / process %x / base %x / cycle %d\n",
866__FUNCTION__, this->process->pid, this->trdid, process->pid, base, cycle );
867#endif
868
869}  // end vmm_global_delete_vseg()
870
871////////////////////////////////////////////////
872void vmm_global_resize_vseg( process_t * process,
873                             intptr_t    base,
874                             intptr_t    new_base,
875                             intptr_t    new_size )
876{
877    cxy_t           owner_cxy;
878    lpid_t          owner_lpid;
879    reg_t           save_sr;
880
881    xptr_t          process_lock_xp;
882    xptr_t          process_root_xp;
883    xptr_t          process_iter_xp;
884
885    xptr_t          remote_process_xp;
886    cxy_t           remote_process_cxy;
887    process_t     * remote_process_ptr;
888
889    xptr_t          vsl_root_xp;
890    xptr_t          vsl_lock_xp;
891    xptr_t          vsl_iter_xp;
892
893    rpc_desc_t      rpc;                  // shared rpc descriptor for parallel RPCs
894    uint32_t        responses;            // RPC responses counter
895
896    thread_t      * this    = CURRENT_THREAD; 
897    pid_t           pid     = process->pid;
898    cluster_t     * cluster = LOCAL_CLUSTER;
899
900#if DEBUG_VMM_GLOBAL_RESIZE_VSEG
901uint32_t cycle = (uint32_t)hal_get_cycles();
902#endif
903
904#if (DEBUG_VMM_GLOBAL_RESIZE_VSEG & 1)
905if( DEBUG_VMM_GLOBAL_RESIZE_VSEG < cycle )
906printk("\n[%s] thread[%x,%x] : process %x / base %x / new_base %x / new_size %x / cycle %d\n",
907__FUNCTION__, this->process->pid, this->trdid, process->pid, base, new_base, new_size, cycle );
908#endif
909
910    // initialize a shared RPC descriptor
911    rpc.rsp       = &responses;
912    rpc.blocking  = false;                  // non blocking behaviour for rpc_send()
913    rpc.index     = RPC_VMM_REMOVE_VSEG;
914    rpc.thread    = this;
915    rpc.lid       = this->core->lid;
916    rpc.args[0]   = this->process->pid;
917    rpc.args[1]   = base;
918    rpc.args[2]   = new_base;
919    rpc.args[3]   = new_size;
920
921    // get owner process cluster and local index
922    owner_cxy        = CXY_FROM_PID( pid );
923    owner_lpid       = LPID_FROM_PID( pid );
924
925    // get extended pointer on root and lock of process copies xlist in owner cluster
926    process_root_xp  = XPTR( owner_cxy , &cluster->pmgr.copies_root[owner_lpid] );
927    process_lock_xp  = XPTR( owner_cxy , &cluster->pmgr.copies_lock[owner_lpid] );
928
929    // mask IRQs
930    hal_disable_irq( &save_sr );
931
932    // client thread blocks itself
933    thread_block( XPTR( local_cxy , this ) , THREAD_BLOCKED_RPC );
934
935    // take the lock protecting process copies
936    remote_queuelock_acquire( process_lock_xp );
937
938    // initialize responses counter
939    responses = 0;
940
941    // loop on process copies
942    XLIST_FOREACH( process_root_xp , process_iter_xp )
943    {
944        // get cluster and local pointer on remote process
945        remote_process_xp  = XLIST_ELEMENT( process_iter_xp , process_t , copies_list );
946        remote_process_ptr = GET_PTR( remote_process_xp );
947        remote_process_cxy = GET_CXY( remote_process_xp );
948
949        // build extended pointers on remote VSL root and lock
950        vsl_root_xp = XPTR( remote_process_cxy , &remote_process_ptr->vmm.vsegs_root );
951        vsl_lock_xp = XPTR( remote_process_cxy , &remote_process_ptr->vmm.vsl_lock );
952
953        // get lock on remote VSL
954        remote_queuelock_acquire( vsl_lock_xp );
955
956        // loop on vsegs in remote process VSL
957        XLIST_FOREACH( vsl_root_xp , vsl_iter_xp )
958        {
959            // get pointers on current vseg
960            xptr_t   vseg_xp  = XLIST_ELEMENT( vsl_iter_xp , vseg_t , xlist );
961            vseg_t * vseg_ptr = GET_PTR( vseg_xp );
962
963            // get current vseg base address
964            intptr_t vseg_base = (intptr_t)hal_remote_lpt( XPTR( remote_process_cxy,
965                                                                 &vseg_ptr->min ) );
966
967            if( vseg_base == base )   // found searched vseg
968            {
969                // atomically increment responses counter
970                hal_atomic_add( &responses , 1 );
971
972#if (DEBUG_VMM_GLOBAL_RESIZE_VSEG & 1)
973if( DEBUG_VMM_GLOBAL_RESIZE_VSEG < cycle )
974printk("\n[%s] thread[%x,%x] register RPC request in cluster %x\n",
975__FUNCTION__, this->process->pid, this->trdid, remote_process_cxy );
976#endif
977                // send RPC to remote cluster
978                rpc_send( remote_process_cxy , & rpc );
979
980                // exit loop on vsegs
981                break;
982            }
983
984        }  // end of loop on vsegs
985
986#if (DEBUG_VMM_GLOBAL_RESIZE_VSEG & 1)
987if( DEBUG_VMM_GLOBAL_RESIZE_VSEG < cycle )
988hal_vmm_display( remote_process_xp , false );
989#endif
990
991        // release lock on remote VSL
992        remote_queuelock_release( vsl_lock_xp );
993
994    }  // end of loop on process copies
995
996    // release the lock protecting process copies
997    remote_queuelock_release( process_lock_xp );
998
999#if (DEBUG_VMM_GLOBAL_RESIZE_VSEG & 1)
1000if( DEBUG_VMM_GLOBAL_RESIZE_VSEG < cycle )
1001printk("\n[%s] thread[%x,%x] deschedule / process %x / base %x\n",
1002__FUNCTION__, this->process->pid, this->trdid, process->pid, base );
1003#endif
1004
1005    // client thread deschedule
1006    sched_yield("blocked on rpc_vmm_delete_vseg");
1007
1008    // restore IRQs
1009    hal_restore_irq( save_sr );
1010
1011#if DEBUG_VMM_GLOBAL_RESIZE_VSEG
1012cycle = (uint32_t)hal_get_cycles();
1013if( DEBUG_VMM_GLOBAL_RESIZE_VSEG < cycle )
1014printk("\n[%s] thread[%x,%x] exit for process %x / base %x / cycle %d\n",
1015__FUNCTION__, this->process->pid, this->trdid, process->pid , base, cycle );
1016#endif
1017
1018}  // end vmm_global_resize_vseg()
1019
1020////////////////////////////////////////////////
1021void vmm_global_update_pte( process_t * process,
1022                            vpn_t       vpn,
1023                            uint32_t    attr,
1024                            ppn_t       ppn )
1025{
1026    pid_t           pid;
1027    cxy_t           owner_cxy;
1028    lpid_t          owner_lpid;
1029
1030    xlist_entry_t * process_root_ptr;
1031    xptr_t          process_root_xp;
1032    xptr_t          process_iter_xp;
1033
1034    xptr_t          remote_process_xp;
1035    cxy_t           remote_process_cxy;
1036    process_t     * remote_process_ptr;
1037    xptr_t          remote_gpt_xp;
1038
1039#if DEBUG_VMM_GLOBAL_UPDATE_PTE
1040uint32_t cycle = (uint32_t)hal_get_cycles();
1041thread_t * this = CURRENT_THREAD;
1042#endif
1043
1044
1045#if (DEBUG_VMM_GLOBAL_UPDATE_PTE & 1)
1046if( DEBUG_VMM_GLOBAL_UPDATE_PTE < cycle )
1047printk("\n[%s] thread[%x,%x] enter for process %x / vpn %x / attr %x / ppn %x / ycle %d\n",
1048__FUNCTION__, this->process->pid, this->trdid, process->pid, vpn, attr, ppn, cycle );
1049#endif
1050
1051    // get owner process cluster and local index
1052    pid              = process->pid;
1053    owner_cxy        = CXY_FROM_PID( pid );
1054    owner_lpid       = LPID_FROM_PID( pid );
1055
1056    // get extended pointer on root of process copies xlist in owner cluster
1057    process_root_ptr = &LOCAL_CLUSTER->pmgr.copies_root[owner_lpid];
1058    process_root_xp  = XPTR( owner_cxy , process_root_ptr );
1059
1060    // loop on process copies
1061    XLIST_FOREACH( process_root_xp , process_iter_xp )
1062    {
1063        // get cluster and local pointer on remote process
1064        remote_process_xp  = XLIST_ELEMENT( process_iter_xp , process_t , copies_list );
1065        remote_process_ptr = GET_PTR( remote_process_xp );
1066        remote_process_cxy = GET_CXY( remote_process_xp );
1067
1068#if (DEBUG_VMM_GLOBAL_UPDATE_PTE & 1)
1069if( DEBUG_VMM_GLOBAL_UPDATE_PTE < cycle )
1070printk("\n[%s] thread[%x,%x] handling vpn %x for process %x in cluster %x\n",
1071__FUNCTION__, this->process->pid, this->trdid, vpn, process->pid, remote_process_cxy );
1072#endif
1073
1074        // get extended pointer on remote gpt
1075        remote_gpt_xp = XPTR( remote_process_cxy , &remote_process_ptr->vmm.gpt );
1076
1077        // update remote GPT
1078        hal_gpt_update_pte( remote_gpt_xp, vpn, attr, ppn );
1079    } 
1080
1081#if DEBUG_VMM_GLOBAL_UPDATE_PTE
1082cycle = (uint32_t)hal_get_cycles();
1083if( DEBUG_VMM_GLOBAL_UPDATE_PTE < cycle )
1084printk("\n[%s] thread[%x,%x] exit for process %x / vpn %x / cycle %d\n",
1085__FUNCTION__, this->process->pid, this->trdid, process->pid , vpn , cycle );
1086#endif
1087
1088#if (DEBUG_VMM_GLOBAL_UPDATE_PTE & 1)
1089hal_vmm_display( process , true );
1090#endif
1091
1092}  // end vmm_global_update_pte()
1093
1094///////////////////////////////////////
1095void vmm_set_cow( process_t * process )
1096{
1097    vmm_t         * vmm;
1098
1099    xlist_entry_t * process_root_ptr;
1100    xptr_t          process_root_xp;
1101    xptr_t          process_iter_xp;
1102
1103    xptr_t          remote_process_xp;
1104    cxy_t           remote_process_cxy;
1105    process_t     * remote_process_ptr;
1106    xptr_t          remote_gpt_xp;
1107
1108    xptr_t          vseg_root_xp;
1109    xptr_t          vseg_iter_xp;
1110
1111    xptr_t          vseg_xp;
1112    vseg_t        * vseg;
1113
1114    pid_t           pid;
1115    cxy_t           owner_cxy;
1116    lpid_t          owner_lpid;
1117
1118    // get target process PID
1119    pid = process->pid;
1120
1121#if DEBUG_VMM_SET_COW
1122uint32_t   cycle = (uint32_t)hal_get_cycles();
1123thread_t * this  = CURRENT_THREAD;
1124if( DEBUG_VMM_SET_COW < cycle )
1125printk("\n[%s] thread[%x,%x] enter for process %x / cycle %d\n",
1126__FUNCTION__, this->process->pid, this->trdid, pid , cycle );
1127#endif
1128
1129#if (DEBUG_VMM_SET_COW & 1)
1130if( DEBUG_VMM_SET_COW < cycle )
1131hal_vmm_display( process , true );
1132#endif
1133
1134// check cluster is reference
1135assert( (XPTR( local_cxy , process ) == process->ref_xp),
1136"local cluster must be process reference cluster\n");
1137
1138    // get pointer on reference VMM
1139    vmm = &process->vmm;
1140
1141    // get extended pointer on root of process copies xlist in owner cluster
1142    owner_cxy        = CXY_FROM_PID( pid );
1143    owner_lpid       = LPID_FROM_PID( pid );
1144    process_root_ptr = &LOCAL_CLUSTER->pmgr.copies_root[owner_lpid];
1145    process_root_xp  = XPTR( owner_cxy , process_root_ptr );
1146
1147    // get extended pointer on root of vsegs xlist from reference VMM
1148    vseg_root_xp  = XPTR( local_cxy , &vmm->vsegs_root ); 
1149
1150    // loop on target process copies
1151    XLIST_FOREACH( process_root_xp , process_iter_xp )
1152    {
1153        // get cluster and local pointer on remote process copy
1154        remote_process_xp  = XLIST_ELEMENT( process_iter_xp , process_t , copies_list );
1155        remote_process_ptr = GET_PTR( remote_process_xp );
1156        remote_process_cxy = GET_CXY( remote_process_xp );
1157
1158#if (DEBUG_VMM_SET_COW & 1)
1159if( DEBUG_VMM_SET_COW < cycle )
1160printk("\n[%s] thread[%x,%x] (%x) handles process %x in cluster %x\n",
1161__FUNCTION__, this->process->pid, this->trdid, this, pid, remote_process_cxy );
1162#endif
1163
1164        // get extended pointer on remote gpt
1165        remote_gpt_xp = XPTR( remote_process_cxy , &remote_process_ptr->vmm.gpt );
1166
1167        // loop on vsegs in (local) reference process VSL
1168        XLIST_FOREACH( vseg_root_xp , vseg_iter_xp )
1169        {
1170            // get pointer on vseg
1171            vseg_xp  = XLIST_ELEMENT( vseg_iter_xp , vseg_t , xlist );
1172            vseg     = GET_PTR( vseg_xp );
1173
1174            // get vseg type, base and size
1175            uint32_t type     = vseg->type;
1176            vpn_t    vpn_base = vseg->vpn_base;
1177            vpn_t    vpn_size = vseg->vpn_size;
1178
1179#if (DEBUG_VMM_SET_COW & 1)
1180if( DEBUG_VMM_SET_COW < cycle )
1181printk("\n[%s] thread[%x,%x] found vseg %s / vpn_base = %x / vpn_size = %x\n",
1182__FUNCTION__, this->process->pid, this->trdid, vseg_type_str(type), vpn_base, vpn_size );
1183#endif
1184            // only DATA, ANON and REMOTE vsegs
1185            if( (type == VSEG_TYPE_DATA)  ||
1186                (type == VSEG_TYPE_ANON)  ||
1187                (type == VSEG_TYPE_REMOTE) )
1188            {
1189                vpn_t      vpn;
1190                uint32_t   attr;
1191                ppn_t      ppn;
1192                xptr_t     page_xp;
1193                cxy_t      page_cxy;
1194                page_t   * page_ptr;
1195                xptr_t     forks_xp;
1196                xptr_t     lock_xp;
1197
1198                // update flags in remote GPT
1199                hal_gpt_set_cow( remote_gpt_xp,
1200                                 vpn_base,
1201                                 vpn_size ); 
1202
1203                // atomically increment pending forks counter in physical pages,
1204                // this is only done once, when handling the reference copy
1205                if( remote_process_cxy == local_cxy )
1206                {
1207
1208#if (DEBUG_VMM_SET_COW & 1)
1209if( DEBUG_VMM_SET_COW < cycle )
1210printk("\n[%s] thread[%x,%x] handles vseg %s / vpn_base = %x / vpn_size = %x\n",
1211__FUNCTION__, this->process->pid, this->trdid, vseg_type_str(type), vpn_base, vpn_size );
1212#endif
1213                    // scan all pages in vseg
1214                    for( vpn = vpn_base ; vpn < (vpn_base + vpn_size) ; vpn++ )
1215                    {
1216                        // get page attributes and PPN from reference GPT
1217                        hal_gpt_get_pte( remote_gpt_xp , vpn , &attr , &ppn ); 
1218
1219                        // atomically update pending forks counter if page is mapped
1220                        if( attr & GPT_MAPPED )
1221                        {
1222                            // get pointers and cluster on page descriptor
1223                            page_xp  = ppm_ppn2page( ppn );
1224                            page_cxy = GET_CXY( page_xp );
1225                            page_ptr = GET_PTR( page_xp );
1226
1227                            // get extended pointers on "forks" and "lock"
1228                            forks_xp = XPTR( page_cxy , &page_ptr->forks );
1229                            lock_xp  = XPTR( page_cxy , &page_ptr->lock );
1230
1231                            // take lock protecting "forks" counter
1232                            remote_busylock_acquire( lock_xp );
1233
1234                            // increment "forks"
1235                            hal_remote_atomic_add( forks_xp , 1 );
1236
1237                            // release lock protecting "forks" counter
1238                            remote_busylock_release( lock_xp );
1239                        }
1240                    }   // end loop on vpn
1241
1242#if (DEBUG_VMM_SET_COW & 1)
1243if( DEBUG_VMM_SET_COW < cycle )
1244printk("\n[%s] thread[%x,%x] completes vseg %s / vpn_base = %x / vpn_size = %x\n",
1245__FUNCTION__, this->process->pid, this->trdid, vseg_type_str(type), vpn_base, vpn_size );
1246#endif
1247                }   // end if local
1248            }   // end if vseg type
1249        }   // end loop on vsegs
1250    }   // end loop on process copies
1251 
1252#if DEBUG_VMM_SET_COW
1253cycle = (uint32_t)hal_get_cycles();
1254if( DEBUG_VMM_SET_COW < cycle )
1255printk("\n[%s] thread[%x,%x] exit for process %x / cycle %d\n",
1256__FUNCTION__, this->process->pid, this->trdid, process->pid , cycle );
1257#endif
1258
1259}  // end vmm_set-cow()
1260
1261/////////////////////////////////////////////////
1262error_t vmm_fork_copy( process_t * child_process,
1263                       xptr_t      parent_process_xp )
1264{
1265    error_t     error;
1266    cxy_t       parent_cxy;
1267    process_t * parent_process;
1268    vmm_t     * parent_vmm;
1269    xptr_t      parent_lock_xp;
1270    vmm_t     * child_vmm;
1271    xptr_t      iter_xp;
1272    xptr_t      parent_vseg_xp;
1273    vseg_t    * parent_vseg;
1274    vseg_t    * child_vseg;
1275    uint32_t    type;
1276    vpn_t       vpn;           
1277    vpn_t       vpn_base;
1278    vpn_t       vpn_size;
1279    xptr_t      parent_root_xp;
1280    bool_t      mapped; 
1281    ppn_t       ppn;
1282
1283#if DEBUG_VMM_FORK_COPY
1284uint32_t cycle = (uint32_t)hal_get_cycles();
1285thread_t * this = CURRENT_THREAD;
1286if( DEBUG_VMM_FORK_COPY < cycle )
1287printk("\n[%s] thread %x enter / cycle %d\n",
1288__FUNCTION__ , this->process->pid, this->trdid, cycle );
1289#endif
1290
1291    // get parent process cluster and local pointer
1292    parent_cxy     = GET_CXY( parent_process_xp );
1293    parent_process = GET_PTR( parent_process_xp );
1294
1295    // get local pointers on parent and child VMM
1296    parent_vmm = &parent_process->vmm; 
1297    child_vmm  = &child_process->vmm;
1298
1299    // build extended pointer on parent VSL root and lock
1300    parent_root_xp = XPTR( parent_cxy , &parent_vmm->vsegs_root );
1301    parent_lock_xp = XPTR( parent_cxy , &parent_vmm->vsl_lock );
1302
1303    // take the lock protecting the parent VSL
1304    remote_queuelock_acquire( parent_lock_xp );
1305
1306    // loop on parent VSL xlist
1307    XLIST_FOREACH( parent_root_xp , iter_xp )
1308    {
1309        // get pointers on current parent vseg
1310        parent_vseg_xp = XLIST_ELEMENT( iter_xp , vseg_t , xlist );
1311        parent_vseg    = GET_PTR( parent_vseg_xp );
1312
1313        // get vseg type
1314        type = hal_remote_l32( XPTR( parent_cxy , &parent_vseg->type ) );
1315       
1316#if DEBUG_VMM_FORK_COPY
1317cycle = (uint32_t)hal_get_cycles();
1318if( DEBUG_VMM_FORK_COPY < cycle )
1319printk("\n[%s] thread[%x,%x] found parent vseg %s / vpn_base = %x / cycle %d\n",
1320__FUNCTION__ , this->process->pid, this->trdid, vseg_type_str(type),
1321hal_remote_l32( XPTR( parent_cxy , &parent_vseg->vpn_base ) ) , cycle );
1322#endif
1323
1324        // all parent vsegs - but STACK and kernel vsegs - must be copied in child VSL
1325        if( (type != VSEG_TYPE_STACK) && (type != VSEG_TYPE_KCODE) &&
1326            (type != VSEG_TYPE_KDATA) && (type != VSEG_TYPE_KDEV) )
1327        {
1328            // allocate memory for a new child vseg
1329            child_vseg = vseg_alloc();
1330            if( child_vseg == NULL )   // release all allocated vsegs
1331            {
1332                vmm_destroy( child_process );
1333                printk("\n[ERROR] in %s : cannot create vseg for child\n", __FUNCTION__ );
1334                return -1;
1335            }
1336
1337            // copy parent vseg to child vseg
1338            vseg_init_from_ref( child_vseg , parent_vseg_xp );
1339
1340            // build extended pointer on child VSL lock
1341            xptr_t child_lock_xp = XPTR( local_cxy , &child_vmm->vsl_lock );
1342 
1343            // take the child VSL lock
1344            remote_queuelock_acquire( child_lock_xp );
1345
1346            // register child vseg in child VSL
1347            vmm_attach_vseg_to_vsl( child_vmm , child_vseg );
1348
1349            // release the child VSL lock
1350            remote_queuelock_release( child_lock_xp );
1351
1352#if DEBUG_VMM_FORK_COPY
1353cycle = (uint32_t)hal_get_cycles();
1354if( DEBUG_VMM_FORK_COPY < cycle )
1355printk("\n[%s] thread[%x,%x] copied vseg %s / vpn_base = %x to child VSL / cycle %d\n",
1356__FUNCTION__ , this->process->pid, this->trdid, vseg_type_str(type),
1357hal_remote_l32( XPTR( parent_cxy , &parent_vseg->vpn_base ) ) , cycle );
1358#endif
1359            // copy DATA, ANON, REMOTE, FILE parent GPT entries to child GPT
1360            if( type != VSEG_TYPE_CODE )
1361            {
1362                // activate the COW for DATA, ANON, REMOTE vsegs only
1363                // cow = ( type != VSEG_TYPE_FILE );
1364
1365                vpn_base = child_vseg->vpn_base;
1366                vpn_size = child_vseg->vpn_size;
1367
1368                // scan pages in parent vseg
1369                for( vpn = vpn_base ; vpn < (vpn_base + vpn_size) ; vpn++ )
1370                {
1371                    error = hal_gpt_pte_copy( &child_vmm->gpt,
1372                                              vpn,
1373                                              XPTR( parent_cxy , &parent_vmm->gpt ),
1374                                              vpn,
1375                                              false,      // does not handle COW flag
1376                                              &ppn,       // unused
1377                                              &mapped );  // unused
1378                    if( error )
1379                    {
1380                        vmm_destroy( child_process );
1381                        printk("\n[ERROR] in %s : cannot copy GPT\n", __FUNCTION__ );
1382                        return -1;
1383                    }
1384
1385#if DEBUG_VMM_FORK_COPY
1386cycle = (uint32_t)hal_get_cycles();
1387if( DEBUG_VMM_FORK_COPY < cycle )
1388printk("\n[%s] thread[%x,%x] copied vpn %x to child GPT / cycle %d\n",
1389__FUNCTION__ , this->process->pid, this->trdid , vpn , cycle );
1390#endif
1391                }
1392            }   // end if no code & no stack
1393        }   // end if no stack
1394    }   // end loop on vsegs
1395
1396    // release the parent VSL lock in read mode
1397    remote_queuelock_release( parent_lock_xp );
1398
1399/* deprecated [AG] : this is already done by the vmm_user_init() funcfion
1400
1401    // initialize the child VMM STACK allocator
1402    vmm_stack_init( child_vmm );
1403
1404    // initialize the child VMM MMAP allocator
1405    vmm_mmap_init( child_vmm );
1406
1407    // initialize instrumentation counters
1408        child_vmm->false_pgfault_nr    = 0;
1409        child_vmm->local_pgfault_nr    = 0;
1410        child_vmm->global_pgfault_nr   = 0;
1411        child_vmm->false_pgfault_cost  = 0;
1412        child_vmm->local_pgfault_cost  = 0;
1413        child_vmm->global_pgfault_cost = 0;
1414*/
1415    // copy base addresses from parent VMM to child VMM
1416    child_vmm->args_vpn_base = (vpn_t)hal_remote_lpt(XPTR(parent_cxy, &parent_vmm->args_vpn_base));
1417    child_vmm->envs_vpn_base = (vpn_t)hal_remote_lpt(XPTR(parent_cxy, &parent_vmm->envs_vpn_base));
1418    child_vmm->heap_vpn_base = (vpn_t)hal_remote_lpt(XPTR(parent_cxy, &parent_vmm->heap_vpn_base));
1419    child_vmm->code_vpn_base = (vpn_t)hal_remote_lpt(XPTR(parent_cxy, &parent_vmm->code_vpn_base));
1420    child_vmm->data_vpn_base = (vpn_t)hal_remote_lpt(XPTR(parent_cxy, &parent_vmm->data_vpn_base));
1421
1422    child_vmm->entry_point = (intptr_t)hal_remote_lpt(XPTR(parent_cxy, &parent_vmm->entry_point));
1423
1424    hal_fence();
1425
1426#if DEBUG_VMM_FORK_COPY
1427cycle = (uint32_t)hal_get_cycles();
1428if( DEBUG_VMM_FORK_COPY < cycle )
1429printk("\n[%s] thread[%x,%x] exit successfully / cycle %d\n",
1430__FUNCTION__ , this->process->pid, this->trdid , cycle );
1431#endif
1432
1433    return 0;
1434
1435}  // vmm_fork_copy()
1436
1437///////////////////////////////////////
1438void vmm_destroy( process_t * process )
1439{
1440    xptr_t   vseg_xp;
1441        vseg_t * vseg;
1442
1443#if DEBUG_VMM_DESTROY
1444uint32_t   cycle = (uint32_t)hal_get_cycles();
1445thread_t * this  = CURRENT_THREAD;
1446if( DEBUG_VMM_DESTROY < cycle )
1447printk("\n[%s] thread[%x,%x] enter for process %x in cluster %x / cycle %d\n",
1448__FUNCTION__, this->process->pid, this->trdid, process->pid, local_cxy, cycle );
1449#endif
1450
1451#if (DEBUG_VMM_DESTROY & 1 )
1452if( DEBUG_VMM_DESTROY < cycle )
1453hal_vmm_display( XPTR( local_cxy, process ) , true );
1454#endif
1455
1456    // get pointer on local VMM
1457    vmm_t  * vmm = &process->vmm;
1458
1459    // build extended pointer on VSL root, VSL lock and GPT lock
1460    xptr_t   vsl_root_xp = XPTR( local_cxy , &vmm->vsegs_root );
1461    xptr_t   vsl_lock_xp = XPTR( local_cxy , &vmm->vsl_lock );
1462
1463    // take the VSL lock
1464    remote_queuelock_acquire( vsl_lock_xp );
1465
1466    // scan the VSL to delete all registered vsegs
1467    // (we don't use a FOREACH in case of item deletion)
1468    xptr_t  iter_xp;
1469    xptr_t  next_xp;
1470        for( iter_xp = hal_remote_l64( vsl_root_xp ) ; 
1471         iter_xp != vsl_root_xp ;
1472         iter_xp = next_xp )
1473        {
1474        // save extended pointer on next item in xlist
1475        next_xp = hal_remote_l64( iter_xp );
1476
1477        // get pointers on current vseg in VSL
1478        vseg_xp   = XLIST_ELEMENT( iter_xp , vseg_t , xlist );
1479        vseg      = GET_PTR( vseg_xp );
1480
1481        // delete vseg and release physical pages
1482        vmm_remove_vseg( process , vseg );
1483
1484#if( DEBUG_VMM_DESTROY & 1 )
1485if( DEBUG_VMM_DESTROY < cycle )
1486printk("\n[%s] %s vseg deleted / vpn_base %x / vpn_size %d\n",
1487__FUNCTION__ , vseg_type_str( vseg->type ), vseg->vpn_base, vseg->vpn_size );
1488#endif
1489
1490        }
1491
1492    // release the VSL lock
1493    remote_queuelock_release( vsl_lock_xp );
1494
1495    // remove all registered MMAP vsegs from free_lists in MMAP allocator
1496    uint32_t i;
1497    for( i = 0 ; i <= CONFIG_VMM_HEAP_MAX_ORDER ; i++ )
1498    {
1499        // build extended pointer on free list root
1500        xptr_t root_xp = XPTR( local_cxy , &vmm->mmap_mgr.free_list_root[i] );
1501 
1502        // scan zombi_list[i]
1503            while( !xlist_is_empty( root_xp ) )
1504            {
1505                    vseg_xp = XLIST_FIRST( root_xp , vseg_t , xlist );
1506            vseg    = GET_PTR( vseg_xp );
1507
1508#if( DEBUG_VMM_DESTROY & 1 )
1509if( DEBUG_VMM_DESTROY < cycle )
1510printk("\n[%s] found zombi vseg / vpn_base %x / vpn_size %d\n",
1511__FUNCTION__ , vseg_type_str( vseg->type ), vseg->vpn_base, vseg->vpn_size );
1512#endif
1513            // clean vseg descriptor
1514            vseg->vmm = NULL;
1515
1516            // remove vseg from  zombi_list
1517            xlist_unlink( XPTR( local_cxy , &vseg->xlist ) );
1518
1519                    // release vseg descriptor
1520            vseg_free( vseg );
1521
1522#if( DEBUG_VMM_DESTROY & 1 )
1523if( DEBUG_VMM_DESTROY < cycle )
1524printk("\n[%s] zombi vseg released / vpn_base %x / vpn_size %d\n",
1525__FUNCTION__ , vseg_type_str( vseg->type ), vseg->vpn_base, vseg->vpn_size );
1526#endif
1527            }
1528    }
1529
1530    // release memory allocated to the GPT itself
1531    hal_gpt_destroy( &vmm->gpt );
1532
1533#if DEBUG_VMM_DESTROY
1534cycle = (uint32_t)hal_get_cycles();
1535if( DEBUG_VMM_DESTROY < cycle )
1536printk("\n[%s] thread[%x,%x] exit for process %x in cluster %x / cycle %d\n",
1537__FUNCTION__, this->process->pid, this->trdid, process->pid, local_cxy , cycle );
1538#endif
1539
1540}  // end vmm_destroy()
1541
1542/////////////////////////////////////////////////
1543vseg_t * vmm_check_conflict( process_t * process,
1544                             vpn_t       vpn_base,
1545                             vpn_t       vpn_size )
1546{
1547    vmm_t        * vmm = &process->vmm;
1548
1549    // scan the VSL
1550        vseg_t       * vseg;
1551    xptr_t         iter_xp;
1552    xptr_t         vseg_xp;
1553    xptr_t         root_xp = XPTR( local_cxy , &vmm->vsegs_root );
1554
1555        XLIST_FOREACH( root_xp , iter_xp )
1556        {
1557                vseg_xp = XLIST_ELEMENT( iter_xp , vseg_t , xlist );
1558        vseg    = GET_PTR( vseg_xp );
1559
1560                if( ((vpn_base + vpn_size) > vseg->vpn_base) &&
1561             (vpn_base < (vseg->vpn_base + vseg->vpn_size)) ) return vseg;
1562        }
1563    return NULL;
1564
1565}  // end vmm_check_conflict()
1566
1567////////////////////////////////////////////////
1568vseg_t * vmm_create_vseg( process_t   * process,
1569                              vseg_type_t   type,
1570                          intptr_t      base,         // ltid for VSEG_TYPE_STACK
1571                              uint32_t      size,
1572                          uint32_t      file_offset,
1573                          uint32_t      file_size,
1574                          xptr_t        mapper_xp,
1575                          cxy_t         cxy )
1576{
1577    vseg_t     * vseg;          // pointer on allocated vseg descriptor
1578
1579#if DEBUG_VMM_CREATE_VSEG
1580thread_t * this  = CURRENT_THREAD;
1581uint32_t   cycle;
1582#endif
1583
1584#if (DEBUG_VMM_CREATE_VSEG & 1)
1585cycle = (uint32_t)hal_get_cycles();
1586if( DEBUG_VMM_CREATE_VSEG < cycle )
1587printk("\n[%s] thread[%x,%x] enter / process %x / %s / base %x / cxy %x / cycle %d\n",
1588__FUNCTION__, this->process->pid, this->trdid,
1589process->pid, vseg_type_str(type), base, cxy, cycle );
1590#endif
1591
1592    // get pointer on VMM
1593        vmm_t * vmm    = &process->vmm;
1594
1595    // allocate a vseg descriptor and initialize it, depending on type
1596    // we use specific allocators for "stack" and "mmap" types
1597
1598    /////////////////////////////
1599    if( type == VSEG_TYPE_STACK )
1600    {
1601        // get vseg from STACK allocator
1602        vseg = vmm_stack_alloc( vmm , base );    // base == ltid
1603       
1604        if( vseg == NULL )
1605        {
1606            printk("\n[ERROR] %s cannot create %s vseg for process %x in cluster %x\n",
1607            __FUNCTION__ , vseg_type_str( type ) , process->pid , local_cxy );
1608            return NULL;
1609        }
1610
1611        // initialize vseg
1612        vseg->type = type;
1613        vseg->vmm  = vmm;
1614        vseg->min  = vseg->vpn_base << CONFIG_PPM_PAGE_SHIFT;
1615        vseg->max  = vseg->min + (vseg->vpn_size << CONFIG_PPM_PAGE_SHIFT);
1616        vseg->cxy  = cxy;
1617
1618        vseg_init_flags( vseg , type );
1619    }
1620    /////////////////////////////////
1621    else if( type == VSEG_TYPE_FILE )
1622    {
1623        // compute page index (in mapper) for first and last byte
1624        vpn_t    vpn_min    = file_offset >> CONFIG_PPM_PAGE_SHIFT;
1625        vpn_t    vpn_max    = (file_offset + size - 1) >> CONFIG_PPM_PAGE_SHIFT;
1626
1627        // compute offset in first page and number of pages
1628        uint32_t offset = file_offset & CONFIG_PPM_PAGE_MASK;
1629        vpn_t    npages      = vpn_max - vpn_min + 1;
1630
1631        // get vseg from MMAP allocator
1632        vseg = vmm_mmap_alloc( vmm , npages );
1633
1634        if( vseg == NULL )
1635        {
1636            printk("\n[ERROR] %s cannot create %s vseg for process %x in cluster %x\n",
1637            __FUNCTION__ , vseg_type_str( type ) , process->pid , local_cxy );
1638            return NULL;
1639        }
1640
1641        // initialize vseg
1642        vseg->type        = type;
1643        vseg->vmm         = vmm;
1644        vseg->min         = (vseg->vpn_base << CONFIG_PPM_PAGE_SHIFT) + offset; 
1645        vseg->max         = vseg->min + size;
1646        vseg->file_offset = file_offset;
1647        vseg->file_size   = file_size;
1648        vseg->mapper_xp   = mapper_xp;
1649        vseg->cxy         = cxy;
1650
1651        vseg_init_flags( vseg , type );
1652    }
1653    /////////////////////////////////////////////////////////////////
1654    else if( (type == VSEG_TYPE_ANON) || (type == VSEG_TYPE_REMOTE) )
1655    {
1656        // compute number of required pages in virtual space
1657        vpn_t npages = size >> CONFIG_PPM_PAGE_SHIFT;
1658        if( size & CONFIG_PPM_PAGE_MASK) npages++;
1659       
1660        // allocate vseg from MMAP allocator
1661        vseg = vmm_mmap_alloc( vmm , npages );
1662
1663        if( vseg == NULL )
1664        {
1665            printk("\n[ERROR] %s cannot create %s vseg for process %x in cluster %x\n",
1666            __FUNCTION__ , vseg_type_str( type ) , process->pid , local_cxy );
1667            return NULL;
1668        }
1669
1670        // initialize vseg
1671        vseg->type = type;
1672        vseg->vmm  = vmm;
1673        vseg->min  = vseg->vpn_base << CONFIG_PPM_PAGE_SHIFT;
1674        vseg->max  = vseg->min + (vseg->vpn_size << CONFIG_PPM_PAGE_SHIFT);
1675        vseg->cxy  = cxy;
1676
1677        vseg_init_flags( vseg , type );
1678    }
1679    /////////////////////////////////////////////////////////////////
1680    else    // VSEG_TYPE_DATA, VSEG_TYPE_CODE or KERNEL vseg
1681    {
1682        uint32_t vpn_min = base >> CONFIG_PPM_PAGE_SHIFT;
1683        uint32_t vpn_max = (base + size - 1) >> CONFIG_PPM_PAGE_SHIFT;
1684
1685        // allocate vseg descriptor
1686            vseg = vseg_alloc();
1687
1688            if( vseg == NULL )
1689            {
1690            printk("\n[ERROR] %s cannot create %s vseg for process %x in cluster %x\n",
1691            __FUNCTION__ , vseg_type_str( type ) , process->pid , local_cxy );
1692            return NULL;
1693            }
1694        // initialize vseg
1695        vseg->type        = type;
1696        vseg->vmm         = vmm;
1697        vseg->min         = base;
1698        vseg->max         = base + size;
1699        vseg->vpn_base    = base >> CONFIG_PPM_PAGE_SHIFT;
1700        vseg->vpn_size    = vpn_max - vpn_min + 1;
1701        vseg->file_offset = file_offset;
1702        vseg->file_size   = file_size;
1703        vseg->mapper_xp   = mapper_xp;
1704        vseg->cxy         = cxy;
1705
1706        vseg_init_flags( vseg , type );
1707    }
1708
1709    // check collisions
1710    vseg_t * existing_vseg = vmm_check_conflict( process , vseg->vpn_base , vseg->vpn_size );
1711
1712    if( existing_vseg != NULL )
1713    {
1714        printk("\n[ERROR] in %s for process %x : new vseg %s [vpn_base %x / vpn_size %x]\n"
1715               "        overlap existing vseg %s [vpn_base %x / vpn_size %x]\n",
1716        __FUNCTION__ , process->pid, vseg_type_str(vseg->type), vseg->vpn_base, vseg->vpn_size, 
1717        vseg_type_str(existing_vseg->type), existing_vseg->vpn_base, existing_vseg->vpn_size );
1718        vseg_free( vseg );
1719        return NULL;
1720    }
1721
1722    // build extended pointer on VSL lock
1723    xptr_t lock_xp = XPTR( local_cxy , &vmm->vsl_lock );
1724 
1725    // take the VSL lock in write mode
1726    remote_queuelock_acquire( lock_xp );
1727
1728    // attach vseg to VSL
1729        vmm_attach_vseg_to_vsl( vmm , vseg );
1730
1731    // release the VSL lock
1732    remote_queuelock_release( lock_xp );
1733
1734#if DEBUG_VMM_CREATE_VSEG
1735cycle = (uint32_t)hal_get_cycles();
1736if( DEBUG_VMM_CREATE_VSEG < cycle )
1737printk("\n[%s] thread[%x,%x] exit / %s / vpn_base %x / vpn_size %x / cycle %d\n",
1738__FUNCTION__, this->process->pid, this->trdid,
1739vseg_type_str(type), vseg->vpn_base, vseg->vpn_size, cycle );
1740#endif
1741
1742        return vseg;
1743
1744}  // vmm_create_vseg()
1745
1746////////////////////////////////////////////////////////////////////////////////////////////
1747// This static function is called by the vmm_remove_vseg() and vmm_resize_vseg() functions.
1748// Depending on the vseg <type>, it decrements the physical page refcount, and
1749// conditionnally release to the relevant kmem the physical page identified by <ppn>.
1750////////////////////////////////////////////////////////////////////////////////////////////
1751// @ process  : local pointer on process.
1752// @ vseg     : local pointer on vseg.
1753// @ ppn      : released pysical page index.
1754////////////////////////////////////////////////////////////////////////////////////////////
1755static void vmm_ppn_release( process_t * process,
1756                             vseg_t    * vseg,
1757                             ppn_t       ppn )
1758{
1759    bool_t do_release;
1760
1761    // get vseg type
1762    vseg_type_t type = vseg->type;
1763
1764    // compute is_ref
1765    bool_t is_ref = (GET_CXY( process->ref_xp ) == local_cxy);
1766
1767    // get pointers on physical page descriptor
1768    xptr_t   page_xp  = ppm_ppn2page( ppn );
1769    cxy_t    page_cxy = GET_CXY( page_xp );
1770    page_t * page_ptr = GET_PTR( page_xp );
1771
1772    // decrement page refcount
1773    xptr_t count_xp = XPTR( page_cxy , &page_ptr->refcount );
1774    hal_remote_atomic_add( count_xp , -1 );
1775
1776    // compute the do_release condition depending on vseg type
1777    if( (type == VSEG_TYPE_FILE)  ||
1778        (type == VSEG_TYPE_KCODE) || 
1779        (type == VSEG_TYPE_KDATA) || 
1780        (type == VSEG_TYPE_KDEV) )           
1781    {
1782        // no physical page release for FILE and KERNEL
1783        do_release = false;
1784    }
1785    else if( (type == VSEG_TYPE_CODE)  ||
1786             (type == VSEG_TYPE_STACK) ) 
1787    {
1788        // always release physical page for private vsegs
1789        do_release = true;
1790    }
1791    else if( (type == VSEG_TYPE_ANON)  ||
1792             (type == VSEG_TYPE_REMOTE) )
1793    {
1794        // release physical page if reference cluster
1795        do_release = is_ref;
1796    }
1797    else if( is_ref )  // vseg_type == DATA in reference cluster
1798    {
1799        // get extended pointers on forks and lock field in page descriptor
1800        xptr_t forks_xp = XPTR( page_cxy , &page_ptr->forks );
1801        xptr_t lock_xp  = XPTR( page_cxy , &page_ptr->lock );
1802
1803        // take lock protecting "forks" counter
1804        remote_busylock_acquire( lock_xp );
1805
1806        // get number of pending forks from page descriptor
1807        uint32_t forks = hal_remote_l32( forks_xp );
1808
1809        // decrement pending forks counter if required
1810        if( forks )  hal_remote_atomic_add( forks_xp , -1 );
1811
1812        // release lock protecting "forks" counter
1813        remote_busylock_release( lock_xp );
1814
1815        // release physical page if forks == 0
1816        do_release = (forks == 0); 
1817    }
1818    else              // vseg_type == DATA not in reference cluster
1819    {
1820        // no physical page release if not in reference cluster
1821        do_release = false;
1822    }
1823
1824    // release physical page to relevant kmem when required
1825    if( do_release )
1826    {
1827        ppm_remote_free_pages( page_cxy , page_ptr );
1828
1829#if DEBUG_VMM_PPN_RELEASE
1830thread_t * this = CURRENT_THREAD;
1831if( DEBUG_VMM_PPN_RELEASE < cycle )
1832printk("\n[%s] thread[%x,%x] released ppn %x to kmem\n",
1833__FUNCTION__, this->process->pid, this->trdid, ppn );
1834#endif
1835
1836    }
1837} // end vmm_ppn_release()
1838
1839//////////////////////////////////////////
1840void vmm_remove_vseg( process_t * process,
1841                      vseg_t    * vseg )
1842{
1843    uint32_t    vseg_type;  // vseg type
1844    vpn_t       vpn;        // VPN of current PTE
1845    vpn_t       vpn_min;    // VPN of first PTE
1846    vpn_t       vpn_max;    // VPN of last PTE (excluded)
1847    ppn_t       ppn;        // current PTE ppn value
1848    uint32_t    attr;       // current PTE attributes
1849
1850// check arguments
1851assert( (process != NULL), "process argument is NULL" );
1852assert( (vseg    != NULL), "vseg argument is NULL" );
1853
1854    // get pointers on local process VMM
1855    vmm_t * vmm = &process->vmm;
1856
1857    // build extended pointer on GPT
1858    xptr_t gpt_xp = XPTR( local_cxy , &vmm->gpt );
1859
1860    // get relevant vseg infos
1861    vseg_type = vseg->type;
1862    vpn_min   = vseg->vpn_base;
1863    vpn_max   = vpn_min + vseg->vpn_size;
1864
1865#if DEBUG_VMM_REMOVE_VSEG
1866uint32_t   cycle = (uint32_t)hal_get_cycles();
1867thread_t * this  = CURRENT_THREAD;
1868#endif
1869
1870#if (DEBUG_VMM_REMOVE_VSEG & 1 )
1871if( DEBUG_VMM_REMOVE_VSEG < cycle )
1872printk("\n[%s] thread[%x,%x] enters / process %x / type %s / base %x / cycle %d\n",
1873__FUNCTION__, this->process->pid, this->trdid, 
1874process->pid, vseg_type_str(vseg->type), vseg->min, cycle );
1875#endif
1876
1877    // loop on PTEs in GPT to unmap all mapped PTE
1878        for( vpn = vpn_min ; vpn < vpn_max ; vpn++ )
1879    {
1880        // get ppn and attr
1881        hal_gpt_get_pte( gpt_xp , vpn , &attr , &ppn );
1882
1883        if( attr & GPT_MAPPED )  // PTE is mapped
1884        { 
1885
1886#if( DEBUG_VMM_REMOVE_VSEG & 1 )
1887if( DEBUG_VMM_REMOVE_VSEG < cycle )
1888printk("\n[%s] thread[%x,%x] unmap vpn %x / ppn %x / type %s\n",
1889__FUNCTION__, this->process->pid, this->trdid, vpn , ppn, vseg_type_str(vseg_type) );
1890#endif
1891            // unmap GPT entry in local GPT
1892            hal_gpt_reset_pte( gpt_xp , vpn );
1893
1894            // release physical page when required
1895            vmm_ppn_release( process , vseg , ppn );
1896        }
1897    }
1898
1899    // remove vseg from VSL
1900    vmm_detach_vseg_from_vsl( vmm , vseg );
1901
1902    // release vseg descriptor depending on vseg type
1903    if( vseg_type == VSEG_TYPE_STACK )
1904    {
1905        // release slot to local stack allocator
1906        vmm_stack_free( vmm , vseg );
1907    }
1908    else if( (vseg_type == VSEG_TYPE_ANON) || 
1909             (vseg_type == VSEG_TYPE_FILE) || 
1910             (vseg_type == VSEG_TYPE_REMOTE) ) 
1911    {
1912        // release vseg to local mmap allocator
1913        vmm_mmap_free( vmm , vseg );
1914    }
1915    else
1916    {
1917        // release vseg descriptor to local kmem
1918        vseg_free( vseg );
1919    }
1920
1921#if DEBUG_VMM_REMOVE_VSEG
1922cycle = (uint32_t)hal_get_cycles();
1923if( DEBUG_VMM_REMOVE_VSEG < cycle )
1924printk("\n[%s] thread[%x,%x] exit / process %x / type %s / base %x / cycle %d\n",
1925__FUNCTION__, this->process->pid, this->trdid, 
1926process->pid, vseg_type_str(vseg->type), vseg->min, cycle );
1927#endif
1928
1929}  // end vmm_remove_vseg()
1930
1931/////////////////////////////////////////////
1932void vmm_resize_vseg( process_t * process,
1933                      vseg_t    * vseg,
1934                      intptr_t    new_base,
1935                      intptr_t    new_size )
1936{
1937    vpn_t     vpn;
1938    ppn_t     ppn;
1939    uint32_t  attr;
1940
1941// check arguments
1942assert( (process != NULL), "process argument is NULL" );
1943assert( (vseg    != NULL), "vseg argument is NULL" );
1944
1945#if DEBUG_VMM_RESIZE_VSEG
1946uint32_t   cycle = (uint32_t)hal_get_cycles();
1947thread_t * this  = CURRENT_THREAD;
1948#endif
1949
1950#if (DEBUG_VMM_RESIZE_VSEG & 1)
1951if( DEBUG_VMM_RESIZE_VSEG < cycle )
1952printk("\n[%s] thread[%x,%x] enter / process %x / %s / base %x / cycle %d\n",
1953__FUNCTION__, this->process->pid, this->trdid, 
1954process->pid, vseg_type_str(vseg->type), old_base, cycle );
1955#endif
1956
1957    // get existing vseg vpn_min and vpn_max
1958    vpn_t     old_vpn_min = vseg->vpn_base;
1959    vpn_t     old_vpn_max = old_vpn_min + vseg->vpn_size - 1;
1960
1961    // compute new vseg vpn_min & vpn_max 
1962    intptr_t min          = new_base;
1963    intptr_t max          = new_base + new_size;
1964    vpn_t    new_vpn_min  = min >> CONFIG_PPM_PAGE_SHIFT;
1965    vpn_t    new_vpn_max  = (max - 1) >> CONFIG_PPM_PAGE_SHIFT;
1966
1967    // build extended pointer on GPT
1968    xptr_t gpt_xp = XPTR( local_cxy , &process->vmm.gpt );
1969
1970    // loop on PTEs in GPT to unmap PTE if (oldd_vpn_min <= vpn < new_vpn_min)
1971        for( vpn = old_vpn_min ; vpn < new_vpn_min ; vpn++ )
1972    {
1973        // get ppn and attr
1974        hal_gpt_get_pte( gpt_xp , vpn , &attr , &ppn );
1975
1976        if( attr & GPT_MAPPED )  // PTE is mapped
1977        { 
1978
1979#if( DEBUG_VMM_RESIZE_VSEG & 1 )
1980if( DEBUG_VMM_RESIZE_VSEG < cycle )
1981printk("\n[%s] thread[%x,%x] unmap vpn %x / ppn %x / %s",
1982__FUNCTION__, this->process->pid, this->trdid, vpn , ppn, vseg_type_str(vseg_type) );
1983#endif
1984            // unmap GPT entry
1985            hal_gpt_reset_pte( gpt_xp , vpn );
1986
1987            // release physical page when required
1988            vmm_ppn_release( process , vseg , ppn );
1989        }
1990    }
1991
1992    // loop on PTEs in GPT to unmap PTE if (new vpn_max <= vpn < old_vpn_max)
1993        for( vpn = new_vpn_max ; vpn < old_vpn_max ; vpn++ )
1994    {
1995        // get ppn and attr
1996        hal_gpt_get_pte( gpt_xp , vpn , &attr , &ppn );
1997
1998        if( attr & GPT_MAPPED )  // PTE is mapped
1999        { 
2000
2001#if( DEBUG_VMM_RESIZE_VSEG & 1 )
2002if( DEBUG_VMM_RESIZE_VSEG < cycle )
2003printk("\n[%s] thread[%x,%x] unmap vpn %x / ppn %x / %s",
2004__FUNCTION__, this->process->pid, this->trdid, vpn , ppn, vseg_type_str(vseg_type) );
2005#endif
2006            // unmap GPT entry in local GPT
2007            hal_gpt_reset_pte( gpt_xp , vpn );
2008
2009            // release physical page when required
2010            vmm_ppn_release( process , vseg , ppn );
2011        }
2012    }
2013
2014    // resize vseg in VSL
2015    vseg->min      = min;
2016    vseg->max      = max;
2017    vseg->vpn_base = new_vpn_min;
2018    vseg->vpn_size = new_vpn_max - new_vpn_min + 1;
2019
2020#if DEBUG_VMM_RESIZE_VSEG
2021cycle = (uint32_t)hal_get_cycles();
2022if( DEBUG_VMM_RESIZE_VSEG < cycle )
2023printk("[%s] thread[%x,%x] exit / process %x / %s / base %x / cycle %d\n",
2024__FUNCTION__, this->process->pid, this->trdid, 
2025process->pid, vseg_type_str(vseg->type), vseg->min, cycle );
2026#endif
2027
2028}  // end vmm_resize_vseg
2029
2030/////////////////////////////////////////////////////////////////////////////////////////////
2031// This static function is called twice by the vmm_get_vseg() function.
2032// It scan the - possibly remote - VSL defined by the <vmm_xp> argument to find the vseg
2033// containing a given virtual address <vaddr>. It uses remote accesses to access the remote
2034// VSL if required. The VSL lock protecting the VSL must be taken by the caller.
2035/////////////////////////////////////////////////////////////////////////////////////////////
2036// @ vmm_xp  : extended pointer on the process VMM.
2037// @ vaddr   : virtual address.
2038// @ return local pointer on remote vseg if success / return NULL if not found.
2039/////////////////////////////////////////////////////////////////////////////////////////////
2040static vseg_t * vmm_vseg_from_vaddr( xptr_t     vmm_xp,
2041                                     intptr_t   vaddr )
2042{
2043    xptr_t   iter_xp;
2044    xptr_t   vseg_xp;
2045    vseg_t * vseg;
2046    intptr_t min;
2047    intptr_t max;
2048
2049    // get cluster and local pointer on target VMM
2050    vmm_t * vmm_ptr = GET_PTR( vmm_xp );
2051    cxy_t   vmm_cxy = GET_CXY( vmm_xp );
2052
2053    // build extended pointer on VSL root
2054    xptr_t root_xp = XPTR( vmm_cxy , &vmm_ptr->vsegs_root );
2055
2056    // scan the list of vsegs in VSL
2057    XLIST_FOREACH( root_xp , iter_xp )
2058    {
2059        vseg_xp = XLIST_ELEMENT( iter_xp , vseg_t , xlist );
2060        vseg    = GET_PTR( vseg_xp );
2061
2062        min = hal_remote_l32( XPTR( vmm_cxy , &vseg->min ) );
2063        max = hal_remote_l32( XPTR( vmm_cxy , &vseg->max ) );
2064
2065        // return success when match
2066        if( (vaddr >= min) && (vaddr < max) ) return vseg;
2067    }
2068
2069    // return failure
2070    return NULL;
2071
2072}  // end vmm_vseg_from_vaddr()
2073
2074///////////////////////////////////////////
2075error_t  vmm_get_vseg( process_t * process,
2076                       intptr_t    vaddr,
2077                       vseg_t   ** found_vseg )
2078{
2079    xptr_t    loc_lock_xp;     // extended pointer on local VSL lock
2080    xptr_t    ref_lock_xp;     // extended pointer on reference VSL lock
2081    vseg_t  * loc_vseg;        // local pointer on local vseg
2082    vseg_t  * ref_vseg;        // local pointer on reference vseg
2083
2084    // build extended pointer on local VSL lock
2085    loc_lock_xp = XPTR( local_cxy , &process->vmm.vsl_lock );
2086     
2087    // get local VSL lock
2088    remote_queuelock_acquire( loc_lock_xp );
2089
2090    // try to get vseg from local VMM
2091    loc_vseg = vmm_vseg_from_vaddr( XPTR( local_cxy, &process->vmm ) , vaddr );
2092
2093    if (loc_vseg == NULL)   // vseg not found => access reference VSL
2094    {
2095        // get extended pointer on reference process
2096        xptr_t ref_xp = process->ref_xp;
2097
2098        // get cluster and local pointer on reference process
2099        cxy_t       ref_cxy = GET_CXY( ref_xp );
2100        process_t * ref_ptr = GET_PTR( ref_xp );
2101
2102        // build extended pointer on reference VSL lock
2103        ref_lock_xp = XPTR( ref_cxy , &ref_ptr->vmm.vsl_lock );
2104     
2105        // get reference VSL lock
2106        remote_queuelock_acquire( ref_lock_xp );
2107
2108        // try to get vseg from reference VMM
2109        ref_vseg = vmm_vseg_from_vaddr( XPTR( ref_cxy , &ref_ptr->vmm ) , vaddr );
2110
2111        if( ref_vseg == NULL )  // vseg not found => return error
2112        {
2113            printk("\n[ERROR] in %s : vaddr %x in process %x out of segment\n",
2114            __FUNCTION__, vaddr, process->pid );
2115
2116            // release reference VSL lock
2117            remote_queuelock_release( ref_lock_xp );
2118
2119            return -1;
2120        }
2121        else                    // vseg found => try to update local VSL
2122        {
2123            // allocate a local vseg descriptor
2124            loc_vseg = vseg_alloc();
2125
2126            if( loc_vseg == NULL )   // no memory => return error
2127            {
2128                printk("\n[ERROR] in %s : vaddr %x in process %x / no memory for local vseg\n",
2129                __FUNCTION__, vaddr, process->pid );
2130
2131                // release reference VSL & local VSL locks
2132                remote_queuelock_release( ref_lock_xp );
2133                remote_queuelock_release( loc_lock_xp );
2134
2135                return -1;
2136            }
2137            else                     // update local VSL and return success
2138            {
2139                // initialize local vseg
2140                vseg_init_from_ref( loc_vseg , XPTR( ref_cxy , ref_vseg ) );
2141
2142                // register local vseg in local VSL
2143                vmm_attach_vseg_to_vsl( &process->vmm , loc_vseg );
2144
2145                // release reference VSL & local VSL locks
2146                remote_queuelock_release( ref_lock_xp );
2147                remote_queuelock_release( loc_lock_xp );
2148
2149                *found_vseg = loc_vseg;
2150                return 0;
2151            }
2152        }
2153    }
2154    else                        // vseg found in local VSL => return success
2155    {
2156        // release local VSL lock
2157        remote_queuelock_release( loc_lock_xp );
2158
2159        *found_vseg = loc_vseg;
2160        return 0;
2161    }
2162}  // end vmm_get_vseg()
2163
2164//////////////////////////////////////////////////////////////////////////////////////
2165// This static function compute the target cluster to allocate a physical page
2166// for a given <vpn> in a given <vseg>, allocates the page and returns an extended
2167// pointer on the allocated page descriptor.
2168// The vseg cannot have the FILE type.
2169//////////////////////////////////////////////////////////////////////////////////////
2170// @ vseg   : local pointer on vseg.
2171// @ vpn    : unmapped vpn.
2172// @ return an extended pointer on the allocated page
2173//////////////////////////////////////////////////////////////////////////////////////
2174static xptr_t vmm_page_allocate( vseg_t * vseg,
2175                                 vpn_t    vpn )
2176{
2177
2178#if DEBUG_VMM_PAGE_ALLOCATE
2179uint32_t   cycle   = (uint32_t)hal_get_cycles();
2180thread_t * this    = CURRENT_THREAD;
2181if( DEBUG_VMM_PAGE_ALLOCATE < cycle )
2182printk("\n[%s] thread[%x,%x] enter for vpn %x / cycle %d\n",
2183__FUNCTION__ , this->process->pid, this->trdid, vpn, cycle );
2184#endif
2185
2186    xptr_t       page_xp;
2187    cxy_t        page_cxy;
2188    page_t     * page_ptr;
2189    uint32_t     index;
2190
2191    uint32_t     type   = vseg->type;
2192    uint32_t     flags  = vseg->flags;
2193    uint32_t     x_size = LOCAL_CLUSTER->x_size;
2194    uint32_t     y_size = LOCAL_CLUSTER->y_size;
2195
2196// check vseg type
2197assert( ( type != VSEG_TYPE_FILE ) , "illegal vseg type\n" );
2198
2199    if( flags & VSEG_DISTRIB )    // distributed => cxy depends on vpn LSB
2200    {
2201        index    = vpn & ((x_size * y_size) - 1);
2202        page_cxy = HAL_CXY_FROM_XY( (index / y_size) , (index % y_size) );
2203
2204        // If the cluster selected from VPN's LSBs is empty, we select one randomly
2205        if ( cluster_is_active( page_cxy ) == false )
2206        {
2207            page_cxy = cluster_random_select();
2208        }
2209    }
2210    else                          // other cases => cxy specified in vseg
2211    {
2212        page_cxy = vseg->cxy;
2213    }
2214
2215    // allocate one small physical page from target cluster
2216    page_ptr = ppm_remote_alloc_pages( page_cxy , 0 );
2217
2218    page_xp = XPTR( page_cxy , page_ptr );
2219
2220#if DEBUG_VMM_PAGE_ALLOCATE
2221cycle = (uint32_t)hal_get_cycles();
2222if( DEBUG_VMM_PAGE_ALLOCATE < cycle )
2223printk("\n[%s] thread[%x,%x] exit for vpn %x / ppn %x / cycle %d\n",
2224__FUNCTION__ , this->process->pid, this->trdid, vpn, ppm_page2ppn(page_xp), cycle );
2225#endif
2226
2227    return page_xp;
2228
2229}  // end vmm_page_allocate() 
2230
2231////////////////////////////////////////
2232error_t vmm_get_one_ppn( vseg_t * vseg,
2233                         vpn_t    vpn,
2234                         ppn_t  * ppn )
2235{
2236    error_t    error;
2237    xptr_t     page_xp;           // extended pointer on physical page descriptor
2238    uint32_t   page_id;           // missing page index in vseg mapper
2239    uint32_t   type;              // vseg type;
2240
2241    type      = vseg->type;
2242    page_id   = vpn - vseg->vpn_base;
2243
2244#if DEBUG_VMM_GET_ONE_PPN
2245uint32_t   cycle = (uint32_t)hal_get_cycles();
2246thread_t * this  = CURRENT_THREAD;
2247if( (DEBUG_VMM_GET_ONE_PPN < cycle) && (vpn == 0x40b) )
2248printk("\n[%s] thread[%x,%x] enter for vpn %x / type %s / page_id  %d / cycle %d\n",
2249__FUNCTION__, this->process->pid, this->trdid, vpn, vseg_type_str(type), page_id, cycle );
2250#endif
2251
2252    // FILE type : get the physical page from the file mapper
2253    if( type == VSEG_TYPE_FILE )
2254    {
2255        // get extended pointer on mapper
2256        xptr_t mapper_xp = vseg->mapper_xp;
2257
2258assert( (mapper_xp != XPTR_NULL),
2259"mapper not defined for a FILE vseg\n" );
2260       
2261        // get extended pointer on page descriptor
2262        page_xp = mapper_remote_get_page( mapper_xp , page_id );
2263
2264        if ( page_xp == XPTR_NULL ) return EINVAL;
2265    }
2266
2267    // Other types : allocate a physical page from target cluster,
2268    // as defined by vseg type and vpn value
2269    else
2270    {
2271        // allocate one physical page
2272        page_xp = vmm_page_allocate( vseg , vpn );
2273
2274        if( page_xp == XPTR_NULL ) return -1;
2275
2276        // initialise missing page from .elf file mapper for DATA and CODE types
2277        // the vseg->mapper_xp field is an extended pointer on the .elf file mapper
2278        if( (type == VSEG_TYPE_CODE) || (type == VSEG_TYPE_DATA) )
2279        {
2280            // get extended pointer on mapper
2281            xptr_t     mapper_xp = vseg->mapper_xp;
2282
2283assert( (mapper_xp != XPTR_NULL),
2284"mapper not defined for a CODE or DATA vseg\n" );
2285       
2286            // compute missing page offset in vseg
2287            uint32_t offset = page_id << CONFIG_PPM_PAGE_SHIFT;
2288
2289            // compute missing page offset in .elf file
2290            uint32_t elf_offset = vseg->file_offset + offset;
2291
2292#if (DEBUG_VMM_GET_ONE_PPN & 0x1)
2293if( (DEBUG_VMM_GET_ONE_PPN < cycle) && (vpn == 0x40b) )
2294printk("\n[%s] thread[%x,%x] for vpn = %x / elf_offset = %x\n",
2295__FUNCTION__, this->process->pid, this->trdid, vpn, elf_offset );
2296#endif
2297            // compute extended pointer on page base
2298            xptr_t base_xp  = ppm_page2base( page_xp );
2299
2300            // file_size (in .elf mapper) can be smaller than vseg_size (BSS)
2301            uint32_t file_size = vseg->file_size;
2302
2303            if( file_size < offset )                 // missing page fully in  BSS
2304            {
2305
2306#if (DEBUG_VMM_GET_ONE_PPN & 0x1)
2307if( (DEBUG_VMM_GET_ONE_PPN < cycle) && (vpn == 0x40b) )
2308printk("\n[%s] thread[%x,%x] for vpn  %x / fully in BSS\n",
2309__FUNCTION__, this->process->pid, this->trdid, vpn );
2310#endif
2311                if( GET_CXY( page_xp ) == local_cxy )
2312                {
2313                    memset( GET_PTR( base_xp ) , 0 , CONFIG_PPM_PAGE_SIZE );
2314                }
2315                else
2316                {
2317                   hal_remote_memset( base_xp , 0 , CONFIG_PPM_PAGE_SIZE );       
2318                }
2319            }
2320            else if( file_size >= (offset + CONFIG_PPM_PAGE_SIZE) )  // fully in  mapper
2321            {
2322
2323#if (DEBUG_VMM_GET_ONE_PPN & 0x1)
2324if( (DEBUG_VMM_GET_ONE_PPN < cycle) && (vpn == 0x40b) )
2325printk("\n[%s] thread[%x,%x] for vpn  %x / fully in mapper\n",
2326__FUNCTION__, this->process->pid, this->trdid, vpn );
2327#endif
2328                error = mapper_move_kernel( mapper_xp,
2329                                            true,             // to_buffer
2330                                            elf_offset,
2331                                            base_xp,
2332                                            CONFIG_PPM_PAGE_SIZE ); 
2333                if( error ) return EINVAL;
2334            }
2335            else  // both in mapper and in BSS :
2336                  // - (file_size - offset)             bytes from mapper
2337                  // - (page_size + offset - file_size) bytes from BSS
2338            {
2339
2340#if (DEBUG_VMM_GET_ONE_PPN & 0x1)
2341if( (DEBUG_VMM_GET_ONE_PPN < cycle) && (vpn == 0x40b) )
2342printk("\n[%s] thread[%x,%x] for vpn  %x / both mapper & BSS\n"
2343"      %d bytes from mapper / %d bytes from BSS\n",
2344__FUNCTION__, this->process->pid, this->trdid, vpn,
2345file_size - offset , offset + CONFIG_PPM_PAGE_SIZE - file_size  );
2346#endif
2347                // initialize mapper part
2348                error = mapper_move_kernel( mapper_xp,
2349                                            true,         // to buffer
2350                                            elf_offset,
2351                                            base_xp,
2352                                            file_size - offset ); 
2353                if( error ) return EINVAL;
2354
2355                // initialize BSS part
2356                if( GET_CXY( page_xp ) == local_cxy )
2357                {
2358                    memset( GET_PTR( base_xp ) + file_size - offset , 0 , 
2359                            offset + CONFIG_PPM_PAGE_SIZE - file_size );
2360                }
2361                else
2362                {
2363                   hal_remote_memset( base_xp + file_size - offset , 0 , 
2364                                      offset + CONFIG_PPM_PAGE_SIZE - file_size );
2365                }
2366            }   
2367        }  // end initialisation for CODE or DATA types   
2368    } 
2369
2370    // return ppn
2371    *ppn = ppm_page2ppn( page_xp );
2372
2373#if DEBUG_VMM_GET_ONE_PPN
2374cycle = (uint32_t)hal_get_cycles();
2375if( (DEBUG_VMM_GET_ONE_PPN < cycle) && (vpn == 0x40b) )
2376printk("\n[%s] thread[%x,%x] exit for vpn %x / ppn %x / cycle %d\n",
2377__FUNCTION__ , this->process->pid, this->trdid , vpn , *ppn, cycle );
2378#endif
2379
2380    return 0;
2381
2382}  // end vmm_get_one_ppn()
2383
2384///////////////////////////////////////////////////
2385error_t vmm_handle_page_fault( process_t * process,
2386                               vpn_t       vpn )
2387{
2388    vseg_t         * vseg;            // vseg containing vpn
2389    uint32_t         attr;            // PTE_ATTR value
2390    ppn_t            ppn;             // PTE_PPN value
2391    uint32_t         ref_attr;        // PTE_ATTR value in reference GPT
2392    ppn_t            ref_ppn;         // PTE_PPN value in reference GPT
2393    cxy_t            ref_cxy;         // reference cluster for missing vpn
2394    process_t      * ref_ptr;         // reference process for missing vpn
2395    xptr_t           local_gpt_xp;    // extended pointer on local GPT
2396    xptr_t           ref_gpt_xp;      // extended pointer on reference GPT
2397    error_t          error;           // value returned by called functions
2398
2399    thread_t * this  = CURRENT_THREAD;
2400
2401#if (CONFIG_INSTRUMENTATION_PGFAULTS || DEBUG_VMM_HANDLE_PAGE_FAULT)
2402uint32_t start_cycle = (uint32_t)hal_get_cycles();
2403#endif
2404
2405#if DEBUG_VMM_HANDLE_PAGE_FAULT
2406if( (start_cycle > DEBUG_VMM_HANDLE_PAGE_FAULT) && (vpn > 0) )
2407printk("\n[%s] thread[%x,%x] enter for vpn %x / cycle %d\n",
2408__FUNCTION__, this->process->pid, this->trdid, vpn, start_cycle );
2409#endif
2410
2411#if (DEBUG_VMM_HANDLE_PAGE_FAULT & 1)
2412if( (start_cycle > DEBUG_VMM_HANDLE_PAGE_FAULT) && (vpn > 0) )
2413hal_vmm_display( this->process , true );
2414#endif
2415
2416    // get local vseg (access to reference VSL can be required)
2417    error = vmm_get_vseg( process, 
2418                          (intptr_t)vpn<<CONFIG_PPM_PAGE_SHIFT,
2419                          &vseg );
2420    if( error )
2421    {
2422        printk("\n[ERROR] in %s : vpn %x in thread[%x,%x] not in registered vseg\n",
2423        __FUNCTION__ , vpn , process->pid, this->trdid );
2424       
2425        return EXCP_USER_ERROR;
2426    }
2427
2428#if (DEBUG_VMM_HANDLE_PAGE_FAULT & 1)
2429if( (start_cycle > DEBUG_VMM_HANDLE_PAGE_FAULT) && (vpn > 0) )
2430printk("\n[%s] thread[%x,%x] found vseg %s\n",
2431__FUNCTION__, this->process->pid, this->trdid, vseg_type_str(vseg->type) );
2432#endif
2433
2434    // build extended pointer on local GPT
2435    local_gpt_xp  = XPTR( local_cxy , &process->vmm.gpt );
2436
2437    // lock PTE in local GPT and get current PPN and attributes
2438    error = hal_gpt_lock_pte( local_gpt_xp,
2439                              vpn,
2440                              &attr,
2441                              &ppn );
2442    if( error )
2443    {
2444        printk("\n[PANIC] in %s : cannot lock PTE in local GPT / vpn %x / process %x\n",
2445        __FUNCTION__ , vpn , process->pid );
2446       
2447        return EXCP_KERNEL_PANIC;
2448    }
2449
2450#if (DEBUG_VMM_HANDLE_PAGE_FAULT & 1)
2451if( (start_cycle > DEBUG_VMM_HANDLE_PAGE_FAULT) && (vpn > 0) )
2452printk("\n[%s] thread[%x,%x] locked vpn %x in cluster %x\n",
2453__FUNCTION__, this->process->pid, this->trdid, vpn, local_cxy );
2454#endif
2455
2456    // handle page fault only if local PTE still unmapped after lock
2457    if( (attr & GPT_MAPPED) == 0 )
2458    {
2459        // get reference process cluster and local pointer
2460        ref_cxy = GET_CXY( process->ref_xp );
2461        ref_ptr = GET_PTR( process->ref_xp );
2462
2463        /////////////// private vseg or (local == reference)
2464        /////////////// => access only the local GPT
2465        if( (vseg->type == VSEG_TYPE_STACK) ||
2466            (vseg->type == VSEG_TYPE_CODE)  ||
2467            (ref_cxy    == local_cxy ) )
2468        {
2469
2470#if (DEBUG_VMM_HANDLE_PAGE_FAULT & 1)
2471if( (start_cycle > DEBUG_VMM_HANDLE_PAGE_FAULT) && (vpn > 0) )
2472printk("\n[%s] thread[%x,%x] access local gpt : cxy %x / ref_cxy %x / type %s / cycle %d\n",
2473__FUNCTION__, this->process->pid, this->trdid,
2474local_cxy, ref_cxy, vseg_type_str(vseg->type), (uint32_t)hal_get_cycles() );
2475#endif
2476            // allocate and initialise a physical page
2477            error = vmm_get_one_ppn( vseg , vpn , &ppn );
2478
2479            if( error )
2480            {
2481                printk("\n[ERROR] in %s : no physical page / process = %x / vpn = %x\n",
2482                __FUNCTION__ , process->pid , vpn );
2483
2484                // unlock PTE in local GPT
2485                hal_gpt_unlock_pte( local_gpt_xp , vpn );
2486
2487                return EXCP_KERNEL_PANIC;
2488            }
2489
2490            // define attr from vseg flags
2491            attr = GPT_MAPPED | GPT_SMALL | GPT_READABLE;
2492            if( vseg->flags & VSEG_USER  ) attr |= GPT_USER;
2493            if( vseg->flags & VSEG_WRITE ) attr |= GPT_WRITABLE;
2494            if( vseg->flags & VSEG_EXEC  ) attr |= GPT_EXECUTABLE;
2495            if( vseg->flags & VSEG_CACHE ) attr |= GPT_CACHABLE;
2496
2497            // set PTE to local GPT
2498            // it unlocks this PTE
2499            hal_gpt_set_pte( local_gpt_xp,
2500                             vpn,
2501                             attr,
2502                             ppn );
2503
2504#if (CONFIG_INSTRUMENTATION_PGFAULTS || DEBUG_VMM_HANDLE_PAGE_FAULT)
2505uint32_t end_cycle = (uint32_t)hal_get_cycles();
2506uint32_t cost      = end_cycle - start_cycle;
2507#endif
2508
2509#if DEBUG_VMM_HANDLE_PAGE_FAULT
2510if( (end_cycle > DEBUG_VMM_HANDLE_PAGE_FAULT) && (vpn > 0) )
2511printk("\n[%s] thread[%x,%x] handled local pgfault / ppn %x / attr %x / cycle %d\n",
2512__FUNCTION__, this->process->pid, this->trdid, ppn, attr, end_cycle );
2513#endif
2514
2515#if CONFIG_INSTRUMENTATION_PGFAULTS
2516this->info.local_pgfault_nr++;
2517this->info.local_pgfault_cost += cost;
2518if( cost > this->info.local_pgfault_max ) this->info.local_pgfault_max = cost;
2519#endif
2520            return EXCP_NON_FATAL;
2521
2522        }   // end local GPT access
2523
2524        /////////////////// public vseg and (local != reference)
2525        /////////////////// => access ref GPT to update local GPT
2526        else                               
2527        {
2528
2529#if (DEBUG_VMM_HANDLE_PAGE_FAULT & 1)
2530if( (start_cycle > DEBUG_VMM_HANDLE_PAGE_FAULT) && (vpn > 0) )
2531printk("\n[%s] thread[%x,%x] access ref gpt : cxy %x / ref_cxy %x / type %s / cycle %d\n",
2532__FUNCTION__, this->process->pid, this->trdid, 
2533local_cxy, ref_cxy, vseg_type_str(vseg->type), (uint32_t)hal_get_cycles() );
2534#endif
2535            // build extended pointer on reference GPT
2536            ref_gpt_xp = XPTR( ref_cxy , &ref_ptr->vmm.gpt );
2537
2538            // lock PTE in reference GPT and get current PPN and attributes
2539            error = hal_gpt_lock_pte( ref_gpt_xp,
2540                                      vpn,
2541                                      &ref_attr,
2542                                      &ref_ppn );
2543            if( error )
2544            {
2545                printk("\n[PANIC] in %s : cannot lock PTE in ref GPT / vpn %x / process %x\n",
2546                __FUNCTION__ , vpn , process->pid );
2547       
2548                // unlock PTE in local GPT
2549                hal_gpt_unlock_pte( local_gpt_xp , vpn );
2550                   
2551                return EXCP_KERNEL_PANIC;
2552            }
2553
2554#if (DEBUG_VMM_HANDLE_PAGE_FAULT & 1)
2555if( (start_cycle > DEBUG_VMM_HANDLE_PAGE_FAULT) && (vpn > 0) )
2556printk("\n[%s] thread[%x,%x] get pte from ref gpt / attr %x / ppn %x\n",
2557__FUNCTION__, this->process->pid, this->trdid, ref_attr, ref_ppn );
2558#endif
2559
2560            if( ref_attr & GPT_MAPPED )        // false page fault
2561            {
2562                // update local GPT from reference GPT values
2563                // this unlocks the PTE in local GPT
2564                hal_gpt_set_pte( local_gpt_xp,
2565                                 vpn,
2566                                 ref_attr,
2567                                 ref_ppn );
2568
2569#if (DEBUG_VMM_HANDLE_PAGE_FAULT & 1)
2570if( (start_cycle > DEBUG_VMM_HANDLE_PAGE_FAULT) && (vpn > 0) )
2571printk("\n[%s] thread[%x,%x] updated local gpt for a false pgfault\n",
2572__FUNCTION__, this->process->pid, this->trdid );
2573#endif
2574
2575                // unlock the PTE in reference GPT
2576                hal_gpt_unlock_pte( ref_gpt_xp, vpn );
2577                             
2578#if (DEBUG_VMM_HANDLE_PAGE_FAULT &1)
2579if( (start_cycle > DEBUG_VMM_HANDLE_PAGE_FAULT) && (vpn > 0) )
2580printk("\n[%s] thread[%x,%x] unlock the ref gpt after a false pgfault\n",
2581__FUNCTION__, this->process->pid, this->trdid );
2582#endif
2583
2584#if (CONFIG_INSTRUMENTATION_PGFAULTS || DEBUG_VMM_HANDLE_PAGE_FAULT)
2585uint32_t end_cycle = (uint32_t)hal_get_cycles();
2586uint32_t cost      = end_cycle - start_cycle;
2587#endif
2588
2589#if DEBUG_VMM_HANDLE_PAGE_FAULT
2590if( (end_cycle > DEBUG_VMM_HANDLE_PAGE_FAULT) && (vpn > 0) )
2591printk("\n[%s] thread[%x,%x] handled false pgfault / ppn %x / attr %x / cycle %d\n",
2592__FUNCTION__, this->process->pid, this->trdid, ref_ppn, ref_attr, end_cycle );
2593#endif
2594
2595#if CONFIG_INSTRUMENTATION_PGFAULTS
2596this->info.false_pgfault_nr++;
2597this->info.false_pgfault_cost += cost;
2598if( cost > this->info.false_pgfault_max ) this->info.false_pgfault_max = cost;
2599#endif
2600                return EXCP_NON_FATAL;
2601            }
2602            else                            // true page fault
2603            {
2604                // allocate and initialise a physical page depending on the vseg type
2605                error = vmm_get_one_ppn( vseg , vpn , &ppn );
2606
2607                if( error )
2608                {
2609                    printk("\n[ERROR] in %s : no memory / process = %x / vpn = %x\n",
2610                    __FUNCTION__ , process->pid , vpn );
2611
2612                    // unlock PTE in local GPT and in reference GPT
2613                    hal_gpt_unlock_pte( local_gpt_xp , vpn );
2614                    hal_gpt_unlock_pte( ref_gpt_xp   , vpn );
2615                   
2616                    return EXCP_KERNEL_PANIC;
2617                }
2618
2619                // define attr from vseg flags
2620                attr = GPT_MAPPED | GPT_SMALL | GPT_READABLE;
2621                if( vseg->flags & VSEG_USER  ) attr |= GPT_USER;
2622                if( vseg->flags & VSEG_WRITE ) attr |= GPT_WRITABLE;
2623                if( vseg->flags & VSEG_EXEC  ) attr |= GPT_EXECUTABLE;
2624                if( vseg->flags & VSEG_CACHE ) attr |= GPT_CACHABLE;
2625
2626#if (DEBUG_VMM_HANDLE_PAGE_FAULT & 1)
2627if( (start_cycle > DEBUG_VMM_HANDLE_PAGE_FAULT) && (vpn > 0) )
2628printk("\n[%s] thread[%x,%x] build a new PTE for a true pgfault\n",
2629__FUNCTION__, this->process->pid, this->trdid );
2630#endif
2631                // set PTE in reference GPT
2632                // this unlock the PTE
2633                hal_gpt_set_pte( ref_gpt_xp,
2634                                 vpn,
2635                                 attr,
2636                                 ppn );
2637
2638#if (DEBUG_VMM_HANDLE_PAGE_FAULT & 1)
2639if( (start_cycle > DEBUG_VMM_HANDLE_PAGE_FAULT) && (vpn > 0) )
2640printk("\n[%s] thread[%x,%x] set new PTE in ref gpt for a true page fault\n",
2641__FUNCTION__, this->process->pid, this->trdid );
2642#endif
2643
2644                // set PTE in local GPT
2645                // this unlock the PTE
2646                hal_gpt_set_pte( local_gpt_xp,
2647                                 vpn,
2648                                 attr,
2649                                 ppn );
2650
2651#if (CONFIG_INSTRUMENTATION_PGFAULTS || DEBUG_VMM_HANDLE_PAGE_FAULT)
2652uint32_t end_cycle = (uint32_t)hal_get_cycles();
2653uint32_t cost      = end_cycle - start_cycle;
2654#endif
2655
2656#if DEBUG_VMM_HANDLE_PAGE_FAULT
2657if( (end_cycle > DEBUG_VMM_HANDLE_PAGE_FAULT) && (vpn > 0) )
2658printk("\n[%s] thread[%x,%x] handled global pgfault / ppn %x / attr %x / cycle %d\n",
2659__FUNCTION__, this->process->pid, this->trdid, ppn, attr, end_cycle );
2660#endif
2661
2662#if CONFIG_INSTRUMENTATION_PGFAULTS
2663this->info.global_pgfault_nr++;
2664this->info.global_pgfault_cost += cost;
2665if( cost > this->info.global_pgfault_max ) this->info.global_pgfault_max = cost;
2666#endif
2667                return EXCP_NON_FATAL;
2668            }
2669        }
2670    }
2671    else   // page has been locally mapped by another concurrent thread
2672    {
2673        // unlock the PTE in local GPT
2674        hal_gpt_unlock_pte( local_gpt_xp , vpn );
2675
2676#if (CONFIG_INSTRUMENTATION_PGFAULTS || DEBUG_VMM_HANDLE_PAGE_FAULT)
2677uint32_t end_cycle = (uint32_t)hal_get_cycles();
2678uint32_t cost      = end_cycle - start_cycle;
2679#endif
2680
2681#if DEBUG_VMM_HANDLE_PAGE_FAULT
2682if( (end_cycle > DEBUG_VMM_HANDLE_PAGE_FAULT) && (vpn > 0) )
2683printk("\n[%s] handled by another thread / vpn %x / ppn %x / attr %x / cycle %d\n",
2684__FUNCTION__, vpn, ppn, attr, end_cycle );
2685#endif
2686
2687#if CONFIG_INSTRUMENTATION_PGFAULTS
2688this->info.false_pgfault_nr++;
2689this->info.false_pgfault_cost += cost;
2690if( cost > this->info.false_pgfault_max ) this->info.false_pgfault_max = cost;
2691#endif
2692        return EXCP_NON_FATAL;
2693    }
2694
2695}   // end vmm_handle_page_fault()
2696
2697////////////////////////////////////////////
2698error_t vmm_handle_cow( process_t * process,
2699                        vpn_t       vpn )
2700{
2701    vseg_t         * vseg;            // vseg containing vpn
2702    xptr_t           gpt_xp;          // extended pointer on GPT (local or reference)
2703    gpt_t          * gpt_ptr;         // local pointer on GPT (local or reference)
2704    cxy_t            gpt_cxy;         // GPT cluster identifier
2705    uint32_t         old_attr;        // current PTE_ATTR value
2706    ppn_t            old_ppn;         // current PTE_PPN value
2707    uint32_t         new_attr;        // new PTE_ATTR value
2708    ppn_t            new_ppn;         // new PTE_PPN value
2709    cxy_t            ref_cxy;         // reference process cluster
2710    process_t      * ref_ptr;         // local pointer on reference process
2711    error_t          error;
2712
2713    thread_t * this  = CURRENT_THREAD;
2714
2715#if DEBUG_VMM_HANDLE_COW
2716uint32_t   cycle = (uint32_t)hal_get_cycles();
2717if( (DEBUG_VMM_HANDLE_COW < cycle) && (vpn > 0) )
2718printk("\n[%s] thread[%x,%x] enter for vpn %x / core[%x,%d] / cycle %d\n",
2719__FUNCTION__, this->process->pid, this->trdid, vpn, local_cxy, this->core->lid, cycle );
2720#endif
2721
2722#if ((DEBUG_VMM_HANDLE_COW & 3) == 3 )
2723hal_vmm_display( XPTR( local_cxy , process ) , true );
2724#endif
2725
2726    // get local vseg
2727    error = vmm_get_vseg( process, 
2728                          (intptr_t)vpn<<CONFIG_PPM_PAGE_SHIFT,
2729                          &vseg );
2730    if( error )
2731    {
2732        printk("\n[ERROR] in %s : vpn %x in thread[%x,%x] not in a registered vseg\n",
2733        __FUNCTION__, vpn, process->pid, this->trdid );
2734
2735        return EXCP_USER_ERROR;
2736    }
2737
2738#if DEBUG_VMM_HANDLE_COW
2739if( (DEBUG_VMM_HANDLE_COW < cycle) && (vpn > 0) )
2740printk("\n[%s] thread[%x,%x] get vseg %s\n",
2741__FUNCTION__, this->process->pid, this->trdid, vseg_type_str(vseg->type) );
2742#endif
2743
2744    // get reference process cluster and local pointer
2745    ref_cxy = GET_CXY( process->ref_xp );
2746    ref_ptr = GET_PTR( process->ref_xp );
2747
2748    // build pointers on relevant GPT
2749    // - access only local GPT for a private vseg 
2750    // - access reference GPT and all copies for a public vseg
2751    if( (vseg->type == VSEG_TYPE_STACK) || (vseg->type == VSEG_TYPE_CODE) )
2752    {
2753        gpt_cxy = local_cxy;
2754        gpt_ptr = &process->vmm.gpt;
2755        gpt_xp  = XPTR( gpt_cxy , gpt_ptr );
2756    }
2757    else
2758    {
2759        gpt_cxy = ref_cxy;
2760        gpt_ptr = &ref_ptr->vmm.gpt;
2761        gpt_xp  = XPTR( gpt_cxy , gpt_ptr );
2762    }
2763
2764    // lock target PTE in relevant GPT (local or reference)
2765    // and get current PTE value
2766    error = hal_gpt_lock_pte( gpt_xp,
2767                              vpn,
2768                              &old_attr,
2769                              &old_ppn );
2770    if( error )
2771    {
2772        printk("\n[PANIC] in %s : cannot lock PTE in GPT / cxy %x / vpn %x / process %x\n",
2773        __FUNCTION__ , gpt_cxy, vpn , process->pid );
2774       
2775        return EXCP_KERNEL_PANIC;
2776    }
2777
2778#if DEBUG_VMM_HANDLE_COW
2779if( (DEBUG_VMM_HANDLE_COW < cycle) && (vpn > 0) )
2780printk("\n[%s] thread[%x,%x] get pte for vpn %x : ppn %x / attr %x\n",
2781__FUNCTION__, this->process->pid, this->trdid, vpn, old_ppn, old_attr );
2782#endif
2783
2784    // return user error if COW attribute not set or PTE2 unmapped
2785    if( ((old_attr & GPT_COW) == 0) || ((old_attr & GPT_MAPPED) == 0) )
2786    {
2787        hal_gpt_unlock_pte( gpt_xp , vpn );
2788
2789        return EXCP_USER_ERROR;
2790    }
2791
2792    // get pointers on physical page descriptor
2793    xptr_t   page_xp  = ppm_ppn2page( old_ppn );
2794    cxy_t    page_cxy = GET_CXY( page_xp );
2795    page_t * page_ptr = GET_PTR( page_xp );
2796
2797    // get extended pointers on forks and lock field in page descriptor
2798    xptr_t forks_xp       = XPTR( page_cxy , &page_ptr->forks );
2799    xptr_t forks_lock_xp  = XPTR( page_cxy , &page_ptr->lock );
2800
2801    // take lock protecting "forks" counter
2802    remote_busylock_acquire( forks_lock_xp );
2803
2804    // get number of pending forks from page descriptor
2805    uint32_t forks = hal_remote_l32( forks_xp );
2806
2807#if DEBUG_VMM_HANDLE_COW
2808if( (DEBUG_VMM_HANDLE_COW < cycle) && (vpn > 0) )
2809printk("\n[%s] thread[%x,%x] get forks = %d for vpn %x\n",
2810__FUNCTION__, this->process->pid, this->trdid, forks, vpn );
2811#endif
2812
2813    if( forks )        // pending fork => allocate a new page, and copy old to new
2814    {
2815        // decrement pending forks counter in page descriptor
2816        hal_remote_atomic_add( forks_xp , -1 );
2817
2818        // release lock protecting "forks" counter
2819        remote_busylock_release( forks_lock_xp );
2820
2821        // allocate a new physical page depending on vseg type
2822        page_xp = vmm_page_allocate( vseg , vpn );
2823
2824        if( page_xp == XPTR_NULL ) 
2825        {
2826            printk("\n[PANIC] in %s : no memory for vpn %x in process %x\n",
2827            __FUNCTION__ , vpn, process->pid );
2828
2829            hal_gpt_unlock_pte( gpt_xp , vpn ); 
2830
2831            return EXCP_KERNEL_PANIC;
2832        }
2833
2834        // compute allocated page PPN
2835        new_ppn = ppm_page2ppn( page_xp );
2836
2837#if DEBUG_VMM_HANDLE_COW
2838if( (DEBUG_VMM_HANDLE_COW < cycle) && (vpn > 0) )
2839printk("\n[%s] thread[%x,%x] get new ppn %x for vpn %x\n",
2840__FUNCTION__, this->process->pid, this->trdid, new_ppn, vpn );
2841#endif
2842
2843        // copy old page content to new page
2844        hal_remote_memcpy( ppm_ppn2base( new_ppn ),
2845                           ppm_ppn2base( old_ppn ),
2846                           CONFIG_PPM_PAGE_SIZE );
2847
2848#if DEBUG_VMM_HANDLE_COW
2849if( (DEBUG_VMM_HANDLE_COW < cycle) && (vpn > 0) )
2850printk("\n[%s] thread[%x,%x] copied old page to new page\n",
2851__FUNCTION__, this->process->pid, this->trdid );
2852#endif
2853
2854    }             
2855    else               // no pending fork => keep the existing page
2856    {
2857        // release lock protecting "forks" counter
2858        remote_busylock_release( forks_lock_xp );
2859
2860#if(DEBUG_VMM_HANDLE_COW & 1)
2861if( (DEBUG_VMM_HANDLE_COW < cycle) && (vpn > 0) )
2862printk("\n[%s] thread[%x,%x] no pending forks / keep existing PPN %x\n",
2863__FUNCTION__, this->process->pid, this->trdid, old_ppn );
2864#endif
2865        new_ppn = old_ppn;
2866    }
2867
2868    // build new_attr : set WRITABLE, reset COW, reset LOCKED
2869    new_attr = (((old_attr | GPT_WRITABLE) & (~GPT_COW)) & (~GPT_LOCKED));
2870
2871#if(DEBUG_VMM_HANDLE_COW & 1)
2872if( (DEBUG_VMM_HANDLE_COW < cycle) && (vpn > 0) )
2873printk("\n[%s] thread[%x,%x] new_attr %x / new_ppn %x\n",
2874__FUNCTION__, this->process->pid, this->trdid, new_attr, new_ppn );
2875#endif
2876
2877    // update the relevant GPT(s)
2878    // - private vseg => update only the local GPT
2879    // - public vseg => update the reference GPT AND all the GPT copies
2880    if( (vseg->type == VSEG_TYPE_STACK) || (vseg->type == VSEG_TYPE_CODE) )
2881    {
2882        // set new PTE in local gpt
2883        hal_gpt_set_pte( gpt_xp,
2884                         vpn,
2885                         new_attr,
2886                         new_ppn );
2887    }
2888    else
2889    {
2890        // set new PTE in all GPT copies
2891        vmm_global_update_pte( process,
2892                               vpn,
2893                               new_attr,
2894                               new_ppn );
2895    }
2896
2897#if DEBUG_VMM_HANDLE_COW
2898cycle = (uint32_t)hal_get_cycles();
2899if( (DEBUG_VMM_HANDLE_COW < cycle) && (vpn > 0) )
2900printk("\n[%s] thread[%x,%x] exit for vpn %x / core[%x,%d] / cycle %d\n",
2901__FUNCTION__, this->process->pid, this->trdid, vpn, local_cxy, this->core->lid, cycle );
2902#endif
2903
2904#if ((DEBUG_VMM_HANDLE_COW & 3) == 3)
2905hal_vmm_display( XPTR( local_cxy , process ) , true );
2906#endif
2907
2908     return EXCP_NON_FATAL;
2909
2910}   // end vmm_handle_cow()
2911
Note: See TracBrowser for help on using the repository browser.