[1] | 1 | /* |
---|
| 2 | * vseg.c - virtual segment (vseg) related operations |
---|
| 3 | * |
---|
| 4 | * Authors Ghassan Almaless (2008,2009,2010,2011, 2012) |
---|
| 5 | * Mohamed Lamine Karaoui (2015) |
---|
[595] | 6 | * Alain Greiner (2016,2018,2019) |
---|
[1] | 7 | * |
---|
| 8 | * Copyright (c) UPMC Sorbonne Universites |
---|
| 9 | * |
---|
| 10 | * This file is part of ALMOS-MKH. |
---|
| 11 | * |
---|
[184] | 12 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
[1] | 13 | * under the terms of the GNU General Public License as published by |
---|
| 14 | * the Free Software Foundation; version 2.0 of the License. |
---|
| 15 | * |
---|
[184] | 16 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
[1] | 17 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 19 | * General Public License for more details. |
---|
| 20 | * |
---|
| 21 | * You should have received a copy of the GNU General Public License |
---|
[184] | 22 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
[1] | 23 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
| 24 | */ |
---|
| 25 | |
---|
[457] | 26 | #include <hal_kernel_types.h> |
---|
[1] | 27 | #include <hal_special.h> |
---|
| 28 | #include <hal_remote.h> |
---|
| 29 | #include <list.h> |
---|
| 30 | #include <errno.h> |
---|
| 31 | #include <printk.h> |
---|
| 32 | #include <bits.h> |
---|
| 33 | #include <thread.h> |
---|
| 34 | #include <process.h> |
---|
| 35 | #include <ppm.h> |
---|
| 36 | #include <mapper.h> |
---|
| 37 | #include <vfs.h> |
---|
| 38 | #include <page.h> |
---|
| 39 | #include <vmm.h> |
---|
| 40 | #include <kmem.h> |
---|
| 41 | #include <vseg.h> |
---|
| 42 | |
---|
| 43 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
[18] | 44 | // global variables for display / must be consistent with enum in "vseg.h" |
---|
[1] | 45 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
| 46 | |
---|
[101] | 47 | |
---|
| 48 | ////////////////////////////////////////// |
---|
[184] | 49 | char * vseg_type_str( uint32_t vseg_type ) |
---|
[1] | 50 | { |
---|
[101] | 51 | if ( vseg_type == VSEG_TYPE_CODE ) return "CODE"; |
---|
| 52 | else if( vseg_type == VSEG_TYPE_DATA ) return "DATA"; |
---|
[407] | 53 | else if( vseg_type == VSEG_TYPE_STACK ) return "STAK"; |
---|
[101] | 54 | else if( vseg_type == VSEG_TYPE_ANON ) return "ANON"; |
---|
| 55 | else if( vseg_type == VSEG_TYPE_FILE ) return "FILE"; |
---|
[407] | 56 | else if( vseg_type == VSEG_TYPE_REMOTE ) return "REMO"; |
---|
[101] | 57 | else return "undefined"; |
---|
| 58 | } |
---|
[1] | 59 | |
---|
| 60 | ///////////////////// |
---|
[503] | 61 | vseg_t * vseg_alloc( void ) |
---|
[1] | 62 | { |
---|
| 63 | kmem_req_t req; |
---|
| 64 | |
---|
| 65 | req.type = KMEM_VSEG; |
---|
| 66 | req.size = sizeof(vseg_t); |
---|
| 67 | req.flags = AF_KERNEL; |
---|
| 68 | |
---|
| 69 | return (vseg_t *)kmem_alloc( &req ); |
---|
| 70 | } |
---|
| 71 | |
---|
| 72 | /////////////////////////////// |
---|
| 73 | void vseg_free( vseg_t * vseg ) |
---|
| 74 | { |
---|
| 75 | kmem_req_t req; |
---|
| 76 | |
---|
| 77 | req.type = KMEM_VSEG; |
---|
| 78 | req.ptr = vseg; |
---|
| 79 | kmem_free( &req ); |
---|
| 80 | } |
---|
| 81 | |
---|
| 82 | /////////////////////////////////// |
---|
| 83 | void vseg_init( vseg_t * vseg, |
---|
[407] | 84 | vseg_type_t type, |
---|
[18] | 85 | intptr_t base, |
---|
[407] | 86 | uint32_t size, |
---|
[1] | 87 | vpn_t vpn_base, |
---|
| 88 | vpn_t vpn_size, |
---|
[407] | 89 | uint32_t file_offset, |
---|
| 90 | uint32_t file_size, |
---|
| 91 | xptr_t mapper_xp, |
---|
[315] | 92 | cxy_t cxy ) |
---|
[1] | 93 | { |
---|
[407] | 94 | vseg->type = type; |
---|
| 95 | vseg->min = base; |
---|
| 96 | vseg->max = base + size; |
---|
| 97 | vseg->vpn_base = vpn_base; |
---|
| 98 | vseg->vpn_size = vpn_size; |
---|
| 99 | vseg->file_offset = file_offset; |
---|
| 100 | vseg->file_size = file_size; |
---|
| 101 | vseg->mapper_xp = mapper_xp; |
---|
| 102 | vseg->cxy = cxy; |
---|
[1] | 103 | |
---|
| 104 | // set vseg flags depending on type |
---|
[18] | 105 | if ( type == VSEG_TYPE_CODE ) |
---|
[1] | 106 | { |
---|
| 107 | vseg->flags = VSEG_USER | |
---|
[18] | 108 | VSEG_EXEC | |
---|
[1] | 109 | VSEG_CACHE | |
---|
| 110 | VSEG_PRIVATE ; |
---|
| 111 | } |
---|
| 112 | else if( type == VSEG_TYPE_STACK ) |
---|
| 113 | { |
---|
| 114 | vseg->flags = VSEG_USER | |
---|
| 115 | VSEG_WRITE | |
---|
| 116 | VSEG_CACHE | |
---|
[18] | 117 | VSEG_PRIVATE ; |
---|
[1] | 118 | } |
---|
[18] | 119 | else if( type == VSEG_TYPE_DATA ) |
---|
[1] | 120 | { |
---|
| 121 | vseg->flags = VSEG_USER | |
---|
| 122 | VSEG_WRITE | |
---|
[18] | 123 | VSEG_CACHE | |
---|
[1] | 124 | VSEG_DISTRIB ; |
---|
| 125 | } |
---|
[18] | 126 | else if( type == VSEG_TYPE_REMOTE ) |
---|
[1] | 127 | { |
---|
| 128 | vseg->flags = VSEG_USER | |
---|
[18] | 129 | VSEG_WRITE | |
---|
| 130 | VSEG_CACHE ; |
---|
[1] | 131 | } |
---|
[18] | 132 | else if( type == VSEG_TYPE_ANON ) |
---|
[1] | 133 | { |
---|
| 134 | vseg->flags = VSEG_USER | |
---|
| 135 | VSEG_WRITE | |
---|
[407] | 136 | VSEG_CACHE; |
---|
[1] | 137 | } |
---|
[18] | 138 | else if( type == VSEG_TYPE_FILE ) |
---|
[1] | 139 | { |
---|
| 140 | vseg->flags = VSEG_USER | |
---|
| 141 | VSEG_WRITE | |
---|
| 142 | VSEG_CACHE ; |
---|
| 143 | } |
---|
[18] | 144 | else |
---|
[1] | 145 | { |
---|
[492] | 146 | assert( false , "illegal vseg type\n" ); |
---|
[18] | 147 | } |
---|
[1] | 148 | |
---|
[315] | 149 | } // end vseg_init() |
---|
| 150 | |
---|
[1] | 151 | ////////////////////////////////////////// |
---|
| 152 | void vseg_init_from_ref( vseg_t * vseg, |
---|
[407] | 153 | xptr_t ref_xp ) |
---|
[1] | 154 | { |
---|
| 155 | // get remote vseg cluster and pointer |
---|
[407] | 156 | cxy_t cxy = (cxy_t )GET_CXY( ref_xp ); |
---|
| 157 | vseg_t * ptr = (vseg_t *)GET_PTR( ref_xp ); |
---|
[1] | 158 | |
---|
| 159 | // initialize vseg with remote_read access |
---|
[567] | 160 | vseg->type = hal_remote_l32 ( XPTR( cxy , &ptr->type ) ); |
---|
[407] | 161 | vseg->min = (intptr_t)hal_remote_lpt( XPTR( cxy , &ptr->min ) ); |
---|
| 162 | vseg->max = (intptr_t)hal_remote_lpt( XPTR( cxy , &ptr->max ) ); |
---|
[567] | 163 | vseg->vpn_base = hal_remote_l32 ( XPTR( cxy , &ptr->vpn_base ) ); |
---|
| 164 | vseg->vpn_size = hal_remote_l32 ( XPTR( cxy , &ptr->vpn_size ) ); |
---|
| 165 | vseg->flags = hal_remote_l32 ( XPTR( cxy , &ptr->flags ) ); |
---|
| 166 | vseg->file_offset = hal_remote_l32 ( XPTR( cxy , &ptr->file_offset ) ); |
---|
| 167 | vseg->file_size = hal_remote_l32 ( XPTR( cxy , &ptr->file_size ) ); |
---|
| 168 | vseg->mapper_xp = (xptr_t) hal_remote_l64( XPTR( cxy , &ptr->mapper_xp ) ); |
---|
[453] | 169 | |
---|
| 170 | switch (vseg->type) |
---|
| 171 | { |
---|
[457] | 172 | case VSEG_TYPE_DATA: |
---|
| 173 | { |
---|
[453] | 174 | vseg->cxy = 0xffff; |
---|
| 175 | break; |
---|
| 176 | } |
---|
| 177 | case VSEG_TYPE_CODE: |
---|
[457] | 178 | case VSEG_TYPE_STACK: |
---|
| 179 | { |
---|
[453] | 180 | vseg->cxy = local_cxy; |
---|
| 181 | break; |
---|
| 182 | } |
---|
| 183 | case VSEG_TYPE_ANON: |
---|
| 184 | case VSEG_TYPE_FILE: |
---|
[457] | 185 | case VSEG_TYPE_REMOTE: |
---|
| 186 | { |
---|
[567] | 187 | vseg->cxy = (cxy_t) hal_remote_l32( XPTR(cxy, &ptr->cxy) ); |
---|
[453] | 188 | break; |
---|
| 189 | } |
---|
[457] | 190 | default: |
---|
| 191 | { |
---|
[492] | 192 | assert( false, "Illegal vseg type" ); |
---|
[453] | 193 | break; |
---|
| 194 | } |
---|
| 195 | } |
---|
[184] | 196 | } |
---|
[1] | 197 | |
---|
| 198 | |
---|