[1] | 1 | /* |
---|
[625] | 2 | * sys_read.c - Kernel function implementing the "read" system call. |
---|
[1] | 3 | * |
---|
[625] | 4 | * Author Alain Greiner (2016,2017,2018,2019) |
---|
[1] | 5 | * |
---|
[23] | 6 | * Copyright (c) UPMC Sorbonne Universites |
---|
[1] | 7 | * |
---|
[23] | 8 | * This file is part of ALMOS-MKH. |
---|
| 9 | * |
---|
| 10 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
[1] | 11 | * under the terms of the GNU General Public License as published by |
---|
| 12 | * the Free Software Foundation; version 2.0 of the License. |
---|
| 13 | * |
---|
[23] | 14 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
[1] | 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 17 | * General Public License for more details. |
---|
| 18 | * |
---|
| 19 | * You should have received a copy of the GNU General Public License |
---|
[23] | 20 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
[1] | 21 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
| 22 | */ |
---|
| 23 | |
---|
[23] | 24 | #include <kernel_config.h> |
---|
[457] | 25 | #include <hal_kernel_types.h> |
---|
[625] | 26 | #include <hal_vmm.h> |
---|
[23] | 27 | #include <hal_uspace.h> |
---|
[409] | 28 | #include <hal_irqmask.h> |
---|
[23] | 29 | #include <hal_special.h> |
---|
[1] | 30 | #include <errno.h> |
---|
[23] | 31 | #include <vfs.h> |
---|
| 32 | #include <vmm.h> |
---|
[1] | 33 | #include <thread.h> |
---|
[23] | 34 | #include <printk.h> |
---|
| 35 | #include <process.h> |
---|
[1] | 36 | |
---|
[506] | 37 | |
---|
[407] | 38 | extern uint32_t enter_sys_read; |
---|
[436] | 39 | extern uint32_t enter_devfs_read; |
---|
[407] | 40 | extern uint32_t enter_txt_read; |
---|
[436] | 41 | extern uint32_t enter_chdev_cmd_read; |
---|
| 42 | extern uint32_t enter_chdev_server_read; |
---|
| 43 | extern uint32_t enter_tty_cmd_read; |
---|
| 44 | extern uint32_t enter_tty_isr_read; |
---|
| 45 | extern uint32_t exit_tty_isr_read; |
---|
| 46 | extern uint32_t exit_tty_cmd_read; |
---|
| 47 | extern uint32_t exit_chdev_server_read; |
---|
| 48 | extern uint32_t exit_chdev_cmd_read; |
---|
[407] | 49 | extern uint32_t exit_txt_read; |
---|
[436] | 50 | extern uint32_t exit_devfs_read; |
---|
[407] | 51 | extern uint32_t exit_sys_read; |
---|
| 52 | |
---|
| 53 | |
---|
[23] | 54 | ///////////////////////////////// |
---|
| 55 | int sys_read( uint32_t file_id, |
---|
[407] | 56 | void * vaddr, |
---|
[23] | 57 | uint32_t count ) |
---|
[1] | 58 | { |
---|
[604] | 59 | error_t error; |
---|
| 60 | vseg_t * vseg; // required for user space checking |
---|
[633] | 61 | xptr_t file_xp; // remote file extended pointer |
---|
[604] | 62 | vfs_file_t * file_ptr; // remote file local pointer |
---|
| 63 | cxy_t file_cxy; // remote file cluster identifier |
---|
| 64 | uint32_t file_type; // file type |
---|
[656] | 65 | uint32_t file_offset; // file offset |
---|
| 66 | uint32_t file_attr; // file attributes |
---|
| 67 | vfs_inode_t * inode_ptr; // local pointer on file inode |
---|
[604] | 68 | uint32_t nbytes; // number of bytes actually read |
---|
| 69 | reg_t save_sr; // required to enable IRQs during syscall |
---|
[407] | 70 | |
---|
[604] | 71 | thread_t * this = CURRENT_THREAD; |
---|
| 72 | process_t * process = this->process; |
---|
| 73 | xptr_t process_owner_xp = process->owner_xp; |
---|
[23] | 74 | |
---|
[566] | 75 | #if (DEBUG_SYS_READ || CONFIG_INSTRUMENTATION_SYSCALLS) |
---|
| 76 | uint64_t tm_start = hal_get_cycles(); |
---|
| 77 | #endif |
---|
| 78 | |
---|
[438] | 79 | #if DEBUG_SYS_READ |
---|
| 80 | if( DEBUG_SYS_READ < tm_start ) |
---|
[610] | 81 | printk("\n[%s] thread[%x,%x] enter / vaddr %x / count %d / cycle %d\n", |
---|
[584] | 82 | __FUNCTION__, process->pid, this->trdid, vaddr, count, (uint32_t)tm_start ); |
---|
[433] | 83 | #endif |
---|
| 84 | |
---|
[438] | 85 | #if (DEBUG_SYS_READ & 1) |
---|
[436] | 86 | enter_sys_read = (uint32_t)tm_start; |
---|
| 87 | #endif |
---|
| 88 | |
---|
[23] | 89 | // check file_id argument |
---|
| 90 | if( file_id >= CONFIG_PROCESS_FILE_MAX_NR ) |
---|
[1] | 91 | { |
---|
[435] | 92 | |
---|
[438] | 93 | #if DEBUG_SYSCALLS_ERROR |
---|
[604] | 94 | printk("\n[ERROR] in %s : thread[%x,%x] illegal file descriptor index %d\n", |
---|
[584] | 95 | __FUNCTION__ , process->pid, this->trdid, file_id ); |
---|
[435] | 96 | #endif |
---|
[23] | 97 | this->errno = EBADFD; |
---|
[1] | 98 | return -1; |
---|
| 99 | } |
---|
| 100 | |
---|
[23] | 101 | // check user buffer in user space |
---|
[440] | 102 | error = vmm_get_vseg( process , (intptr_t)vaddr , &vseg ); |
---|
[23] | 103 | |
---|
| 104 | if ( error ) |
---|
| 105 | { |
---|
[435] | 106 | |
---|
[438] | 107 | #if DEBUG_SYSCALLS_ERROR |
---|
[584] | 108 | printk("\n[ERROR] in %s : thread[%x,%x] user buffer unmapped %x\n", |
---|
| 109 | __FUNCTION__ , process->pid, this->trdid, (intptr_t)vaddr ); |
---|
[435] | 110 | #endif |
---|
[23] | 111 | this->errno = EINVAL; |
---|
| 112 | return -1; |
---|
| 113 | } |
---|
| 114 | |
---|
| 115 | // get extended pointer on remote file descriptor |
---|
[664] | 116 | file_xp = process_fd_get_xptr_from_local( process , file_id ); |
---|
[23] | 117 | |
---|
| 118 | if( file_xp == XPTR_NULL ) |
---|
| 119 | { |
---|
[435] | 120 | |
---|
[438] | 121 | #if DEBUG_SYSCALLS_ERROR |
---|
[584] | 122 | printk("\n[ERROR] in %s : thread[%x,%x] undefined fd_id %d\n", |
---|
| 123 | __FUNCTION__, process->pid, this->trdid, file_id ); |
---|
[435] | 124 | #endif |
---|
[23] | 125 | this->errno = EBADFD; |
---|
| 126 | return -1; |
---|
| 127 | } |
---|
| 128 | |
---|
| 129 | // get file descriptor cluster and local pointer |
---|
[604] | 130 | file_ptr = GET_PTR( file_xp ); |
---|
| 131 | file_cxy = GET_CXY( file_xp ); |
---|
[23] | 132 | |
---|
[656] | 133 | // get inode, file type, offset and attributes |
---|
| 134 | inode_ptr = hal_remote_lpt( XPTR( file_cxy , &file_ptr->inode ) ); |
---|
| 135 | file_type = hal_remote_l32( XPTR( file_cxy , &file_ptr->type ) ); |
---|
| 136 | file_offset = hal_remote_l32( XPTR( file_cxy , &file_ptr->offset ) ); |
---|
| 137 | file_attr = hal_remote_l32( XPTR( file_cxy , &file_ptr->attr ) ); |
---|
[313] | 138 | |
---|
[604] | 139 | // enable IRQs |
---|
| 140 | hal_enable_irq( &save_sr ); |
---|
| 141 | |
---|
[656] | 142 | // action depend on file type: |
---|
| 143 | |
---|
[604] | 144 | if( file_type == INODE_TYPE_FILE ) // read from file mapper |
---|
[23] | 145 | { |
---|
[421] | 146 | // check file readable |
---|
[604] | 147 | if( (file_attr & FD_ATTR_READ_ENABLE) == 0 ) |
---|
[421] | 148 | { |
---|
[435] | 149 | |
---|
[438] | 150 | #if DEBUG_SYSCALLS_ERROR |
---|
[584] | 151 | printk("\n[ERROR] in %s : thread[%x,%x] file %d not readable\n", |
---|
| 152 | __FUNCTION__, process->pid, this->trdid, file_id ); |
---|
[435] | 153 | #endif |
---|
[604] | 154 | hal_restore_irq( save_sr ); |
---|
[421] | 155 | this->errno = EBADFD; |
---|
| 156 | return -1; |
---|
| 157 | } |
---|
| 158 | |
---|
[656] | 159 | // try to move count bytes from mapper |
---|
[407] | 160 | nbytes = vfs_user_move( true, // from mapper to buffer |
---|
| 161 | file_xp, |
---|
| 162 | vaddr, |
---|
| 163 | count ); |
---|
| 164 | } |
---|
[604] | 165 | else if( file_type == INODE_TYPE_DEV ) // read from TXT device |
---|
[407] | 166 | { |
---|
[436] | 167 | // get cluster and pointers on TXT_RX chdev |
---|
| 168 | xptr_t chdev_xp = chdev_from_file( file_xp ); |
---|
| 169 | cxy_t chdev_cxy = GET_CXY( chdev_xp ); |
---|
| 170 | chdev_t * chdev_ptr = GET_PTR( chdev_xp ); |
---|
| 171 | |
---|
[446] | 172 | volatile xptr_t txt_owner_xp; |
---|
| 173 | uint32_t iter = 0; |
---|
[436] | 174 | |
---|
| 175 | while( 1 ) |
---|
| 176 | { |
---|
[446] | 177 | // extended pointer on TXT owner process |
---|
[566] | 178 | txt_owner_xp = hal_remote_l64( XPTR( chdev_cxy , &chdev_ptr->ext.txt.owner_xp ) ); |
---|
[436] | 179 | |
---|
[656] | 180 | // wait for TXT_RX ownership |
---|
[446] | 181 | if ( process_owner_xp != txt_owner_xp ) |
---|
[436] | 182 | { |
---|
[446] | 183 | if( (iter & 0xFFF) == 0 ) |
---|
[584] | 184 | printk("\n[WARNING] in %s : thread[%x,%x] wait TXT_RX / cycle %d\n", |
---|
| 185 | __FUNCTION__, process->pid, this->trdid, (uint32_t)hal_get_cycles() ); |
---|
[446] | 186 | |
---|
[436] | 187 | // deschedule without blocking |
---|
[446] | 188 | sched_yield( "wait TXT_RX ownership" ); |
---|
| 189 | |
---|
| 190 | iter++; |
---|
[436] | 191 | } |
---|
| 192 | else |
---|
| 193 | { |
---|
| 194 | break; |
---|
| 195 | } |
---|
| 196 | } |
---|
| 197 | |
---|
[656] | 198 | // try to move count bytes from TXT device |
---|
[407] | 199 | nbytes = devfs_user_move( true, // from device to buffer |
---|
| 200 | file_xp, |
---|
| 201 | vaddr, |
---|
| 202 | count ); |
---|
| 203 | } |
---|
[594] | 204 | else // not FILE and not DEV |
---|
[407] | 205 | { |
---|
[594] | 206 | |
---|
| 207 | #if DEBUG_SYSCALLS_ERROR |
---|
| 208 | printk("\n[ERROR] in %s : thread[%x,%x] / illegal inode type %\n", |
---|
[604] | 209 | __FUNCTION__, vfs_inode_type_str( file_type ) ); |
---|
[594] | 210 | #endif |
---|
| 211 | this->errno = EBADFD; |
---|
[604] | 212 | hal_restore_irq( save_sr ); |
---|
[594] | 213 | return -1; |
---|
[407] | 214 | } |
---|
| 215 | |
---|
[656] | 216 | // check error |
---|
| 217 | if( nbytes == 0xFFFFFFFF ) |
---|
| 218 | { |
---|
| 219 | |
---|
| 220 | #if DEBUG_SYSCALLS_ERROR |
---|
| 221 | printk("\n[ERROR] in %s : thread[%x,‰x] cannot read data from file %d\n", |
---|
| 222 | __FUNCTION__, process->pid, this->trdid, file_id ); |
---|
| 223 | #endif |
---|
| 224 | this->errno = EIO; |
---|
| 225 | hal_restore_irq( save_sr ); |
---|
| 226 | return -1; |
---|
| 227 | } |
---|
| 228 | |
---|
[408] | 229 | // restore IRQs |
---|
[421] | 230 | hal_restore_irq( save_sr ); |
---|
[408] | 231 | |
---|
[124] | 232 | hal_fence(); |
---|
[23] | 233 | |
---|
[566] | 234 | #if (DEBUG_SYS_READ || CONFIG_INSTRUMENTATION_SYSCALLS) |
---|
| 235 | uint64_t tm_end = hal_get_cycles(); |
---|
| 236 | #endif |
---|
| 237 | |
---|
[438] | 238 | #if DEBUG_SYS_READ |
---|
| 239 | if( DEBUG_SYS_READ < tm_end ) |
---|
[610] | 240 | printk("\n[%s] thread[%x,%x] exit / cycle %d\n", |
---|
[584] | 241 | __FUNCTION__ , process->pid, this->trdid, (uint32_t)tm_end ); |
---|
[409] | 242 | #endif |
---|
[23] | 243 | |
---|
[566] | 244 | #if CONFIG_INSTRUMENTATION_SYSCALLS |
---|
| 245 | hal_atomic_add( &syscalls_cumul_cost[SYS_READ] , tm_end - tm_start ); |
---|
| 246 | hal_atomic_add( &syscalls_occurences[SYS_READ] , 1 ); |
---|
| 247 | #endif |
---|
| 248 | |
---|
[438] | 249 | #if (DEBUG_SYS_READ & 1) |
---|
[418] | 250 | exit_sys_read = (uint32_t)tm_end; |
---|
[407] | 251 | |
---|
[443] | 252 | printk("\n***** timing to read one character *****\n" |
---|
[435] | 253 | " - enter_sys_read = %d / delta %d\n" |
---|
| 254 | " - enter_devfs_read = %d / delta %d\n" |
---|
| 255 | " - enter_txt_read = %d / delta %d\n" |
---|
| 256 | " - enter_chdev_cmd_read = %d / delta %d\n" |
---|
| 257 | " - enter_chdev_server_read = %d / delta %d\n" |
---|
| 258 | " - enter_tty_cmd_read = %d / delta %d\n" |
---|
| 259 | " - enter_tty_isr_read = %d / delta %d\n" |
---|
| 260 | " - exit_tty_isr_read = %d / delta %d\n" |
---|
| 261 | " - exit_tty_cmd_read = %d / delta %d\n" |
---|
| 262 | " - exit_chdev_server_read = %d / delta %d\n" |
---|
| 263 | " - exit_chdev_cmd_read = %d / delta %d\n" |
---|
| 264 | " - exit_txt_read = %d / delta %d\n" |
---|
| 265 | " - exit_devfs_read = %d / delta %d\n" |
---|
| 266 | " - exit_sys_read = %d / delta %d\n", |
---|
| 267 | enter_sys_read , 0 , |
---|
| 268 | enter_devfs_read , enter_devfs_read - enter_sys_read , |
---|
| 269 | enter_txt_read , enter_txt_read - enter_devfs_read , |
---|
| 270 | enter_chdev_cmd_read , enter_chdev_cmd_read - enter_txt_read , |
---|
| 271 | enter_chdev_server_read , enter_chdev_server_read - enter_chdev_cmd_read , |
---|
| 272 | enter_tty_cmd_read , enter_tty_cmd_read - enter_chdev_server_read , |
---|
| 273 | enter_tty_isr_read , enter_tty_isr_read - enter_tty_cmd_read , |
---|
| 274 | exit_tty_isr_read , exit_tty_isr_read - enter_tty_isr_read , |
---|
| 275 | exit_tty_cmd_read , exit_tty_cmd_read - exit_tty_isr_read , |
---|
| 276 | exit_chdev_server_read , exit_chdev_server_read - exit_tty_cmd_read , |
---|
| 277 | exit_chdev_cmd_read , exit_chdev_cmd_read - exit_chdev_server_read , |
---|
| 278 | exit_txt_read , exit_txt_read - exit_chdev_cmd_read , |
---|
| 279 | exit_devfs_read , exit_devfs_read - exit_txt_read , |
---|
| 280 | exit_sys_read , exit_sys_read - exit_devfs_read ); |
---|
[407] | 281 | #endif |
---|
| 282 | |
---|
| 283 | return nbytes; |
---|
| 284 | |
---|
[23] | 285 | } // end sys_read() |
---|