[1] | 1 | /* |
---|
[566] | 2 | * sys_write.c - Kernel function implementing the "write" 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> |
---|
[624] | 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> |
---|
| 31 | #include <vfs.h> |
---|
[566] | 32 | #include <vmm.h> |
---|
[1] | 33 | #include <thread.h> |
---|
[23] | 34 | #include <printk.h> |
---|
| 35 | #include <process.h> |
---|
[1] | 36 | |
---|
[23] | 37 | |
---|
[440] | 38 | extern uint32_t enter_sys_write; |
---|
| 39 | extern uint32_t enter_devfs_write; |
---|
| 40 | extern uint32_t enter_txt_write; |
---|
| 41 | extern uint32_t enter_chdev_cmd_write; |
---|
| 42 | extern uint32_t enter_chdev_server_write; |
---|
| 43 | extern uint32_t enter_tty_cmd_write; |
---|
| 44 | extern uint32_t enter_tty_isr_write; |
---|
| 45 | extern uint32_t exit_tty_isr_write; |
---|
| 46 | extern uint32_t exit_tty_cmd_write; |
---|
| 47 | extern uint32_t exit_chdev_server_write; |
---|
| 48 | extern uint32_t exit_chdev_cmd_write; |
---|
| 49 | extern uint32_t exit_txt_write; |
---|
| 50 | extern uint32_t exit_devfs_write; |
---|
| 51 | extern uint32_t exit_sys_write; |
---|
| 52 | |
---|
[23] | 53 | ////////////////////////////////// |
---|
| 54 | int sys_write( uint32_t file_id, |
---|
[407] | 55 | void * vaddr, |
---|
[23] | 56 | uint32_t count ) |
---|
[1] | 57 | { |
---|
[604] | 58 | error_t error; |
---|
| 59 | vseg_t * vseg; // required for user space checking |
---|
| 60 | xptr_t file_xp; // remote file extended pointer |
---|
| 61 | vfs_file_t * file_ptr; // remote file local pointer |
---|
| 62 | cxy_t file_cxy; // remote file cluster identifier |
---|
| 63 | uint32_t file_type; // file type |
---|
| 64 | uint32_t file_offset; // current file offset |
---|
| 65 | uint32_t file_attr; // file_attribute |
---|
| 66 | vfs_inode_t * inode_ptr; // local pointer on associated inode |
---|
| 67 | uint32_t nbytes; // number of bytes actually written |
---|
| 68 | reg_t save_sr; // required to enable IRQs during syscall |
---|
[407] | 69 | |
---|
[604] | 70 | thread_t * this = CURRENT_THREAD; |
---|
| 71 | process_t * process = this->process; |
---|
[433] | 72 | |
---|
[566] | 73 | #if (DEBUG_SYS_WRITE || CONFIG_INSTRUMENTATION_SYSCALLS) |
---|
| 74 | uint64_t tm_start = hal_get_cycles(); |
---|
| 75 | #endif |
---|
| 76 | |
---|
[438] | 77 | #if DEBUG_SYS_WRITE |
---|
| 78 | if( DEBUG_SYS_WRITE < tm_start ) |
---|
[625] | 79 | printk("\n[%s] thread[%x,%x] enter / vaddr %x / %d bytes / cycle %d\n", |
---|
[584] | 80 | __FUNCTION__, process->pid, this->trdid, vaddr, count, (uint32_t)tm_start ); |
---|
[409] | 81 | #endif |
---|
[1] | 82 | |
---|
[469] | 83 | #if (DEBUG_SYS_WRITE & 1) |
---|
| 84 | enter_sys_write = (uint32_t)tm_start; |
---|
| 85 | #endif |
---|
| 86 | |
---|
[23] | 87 | // check file_id argument |
---|
| 88 | if( file_id >= CONFIG_PROCESS_FILE_MAX_NR ) |
---|
[1] | 89 | { |
---|
[433] | 90 | |
---|
[438] | 91 | #if DEBUG_SYSCALLS_ERROR |
---|
[584] | 92 | printk("\n[ERROR] in %s : thread[%x,%x] illegal file descriptor index %d\n", |
---|
| 93 | __FUNCTION__, process->pid, this->trdid, file_id ); |
---|
[433] | 94 | #endif |
---|
[23] | 95 | this->errno = EBADFD; |
---|
[1] | 96 | return -1; |
---|
| 97 | } |
---|
| 98 | |
---|
[23] | 99 | // check user buffer in user space |
---|
[440] | 100 | error = vmm_get_vseg( process , (intptr_t)vaddr , &vseg ); |
---|
[23] | 101 | |
---|
| 102 | if ( error ) |
---|
| 103 | { |
---|
[433] | 104 | |
---|
[438] | 105 | #if DEBUG_SYSCALLS_ERROR |
---|
[584] | 106 | printk("\n[ERROR] in %s : thread[%x,%x] user buffer unmapped %x\n", |
---|
| 107 | __FUNCTION__ , process->pid, this->trdid, (intptr_t)vaddr ); |
---|
[433] | 108 | #endif |
---|
[23] | 109 | this->errno = EINVAL; |
---|
| 110 | return -1; |
---|
| 111 | } |
---|
| 112 | |
---|
| 113 | // get extended pointer on remote file descriptor |
---|
| 114 | file_xp = process_fd_get_xptr( process , file_id ); |
---|
| 115 | |
---|
| 116 | if( file_xp == XPTR_NULL ) |
---|
| 117 | { |
---|
[433] | 118 | |
---|
[438] | 119 | #if DEBUG_SYSCALLS_ERROR |
---|
[604] | 120 | printk("\n[ERROR] in %s : thread[%x,%x] undefined file descriptor = %d\n", |
---|
[584] | 121 | __FUNCTION__, process->pid, this->trdid, file_id ); |
---|
[433] | 122 | #endif |
---|
[23] | 123 | this->errno = EBADFD; |
---|
| 124 | return -1; |
---|
| 125 | } |
---|
| 126 | |
---|
| 127 | // get file descriptor cluster and local pointer |
---|
[604] | 128 | file_ptr = GET_PTR( file_xp ); |
---|
| 129 | file_cxy = GET_CXY( file_xp ); |
---|
[23] | 130 | |
---|
[604] | 131 | // get file type, offset, aatributes, and associated inode |
---|
| 132 | file_type = hal_remote_l32( XPTR( file_cxy , &file_ptr->type ) ); |
---|
| 133 | file_offset = hal_remote_l32( XPTR( file_cxy , &file_ptr->offset ) ); |
---|
| 134 | inode_ptr = hal_remote_lpt( XPTR( file_cxy , &file_ptr->inode ) ); |
---|
| 135 | file_attr = hal_remote_l32( XPTR( file_cxy , &file_ptr->attr ) ); |
---|
[313] | 136 | |
---|
[443] | 137 | // enable IRQs |
---|
| 138 | hal_enable_irq( &save_sr ); |
---|
| 139 | |
---|
[625] | 140 | // action depend on file type |
---|
| 141 | if( file_type == INODE_TYPE_FILE ) // write to a file mapper |
---|
[23] | 142 | { |
---|
[421] | 143 | // check file writable |
---|
[604] | 144 | if( (file_attr & FD_ATTR_WRITE_ENABLE) == 0 ) |
---|
[421] | 145 | { |
---|
[433] | 146 | |
---|
[438] | 147 | #if DEBUG_SYSCALLS_ERROR |
---|
[584] | 148 | printk("\n[ERROR] in %s : thread[%x,%x] file %d not writable\n", |
---|
| 149 | __FUNCTION__ , process->pid, this->trdid, file_id ); |
---|
[433] | 150 | #endif |
---|
[604] | 151 | hal_restore_irq( save_sr ); |
---|
[421] | 152 | this->errno = EBADFD; |
---|
| 153 | return -1; |
---|
| 154 | } |
---|
| 155 | |
---|
| 156 | // move count bytes to mapper |
---|
[407] | 157 | nbytes = vfs_user_move( false, // from buffer to mapper |
---|
| 158 | file_xp, |
---|
| 159 | vaddr, |
---|
| 160 | count ); |
---|
[604] | 161 | if ( nbytes != count ) |
---|
| 162 | { |
---|
| 163 | |
---|
| 164 | #if DEBUG_SYSCALLS_ERROR |
---|
| 165 | printk("\n[ERROR] in %s : thread[%x,%x] cannot write %d bytes into file %d\n", |
---|
| 166 | __FUNCTION__ , process->pid, this->trdid, count, file_id ); |
---|
| 167 | #endif |
---|
| 168 | hal_restore_irq( save_sr ); |
---|
| 169 | this->errno = EIO; |
---|
| 170 | return -1; |
---|
| 171 | |
---|
| 172 | } |
---|
| 173 | |
---|
[623] | 174 | // update file size in inode descriptor |
---|
| 175 | // only if (file_offset + count) > current_size |
---|
| 176 | // note: the parent directory entry in mapper will |
---|
| 177 | // be updated by the close syscall |
---|
| 178 | xptr_t inode_xp = XPTR( file_cxy , inode_ptr ); |
---|
| 179 | vfs_inode_update_size( inode_xp , file_offset + count ); |
---|
[407] | 180 | } |
---|
[604] | 181 | else if( file_type == INODE_TYPE_DEV ) // write to TXT device |
---|
[407] | 182 | { |
---|
[421] | 183 | // move count bytes to device |
---|
[407] | 184 | nbytes = devfs_user_move( false, // from buffer to device |
---|
[604] | 185 | file_xp, |
---|
| 186 | vaddr, |
---|
| 187 | count ); |
---|
| 188 | if( nbytes != count ) |
---|
| 189 | { |
---|
| 190 | |
---|
| 191 | #if DEBUG_SYSCALLS_ERROR |
---|
| 192 | printk("\n[ERROR] in %s : thread[%x,‰x] cannot write data to file %d\n", |
---|
| 193 | __FUNCTION__ , process->pid, this->trdid, file_id ); |
---|
| 194 | #endif |
---|
| 195 | hal_restore_irq( save_sr ); |
---|
| 196 | this->errno = EIO; |
---|
| 197 | return -1; |
---|
| 198 | } |
---|
[407] | 199 | } |
---|
[443] | 200 | else // not FILE and not DEV |
---|
[407] | 201 | { |
---|
[594] | 202 | |
---|
| 203 | #if DEBUG_SYSCALLS_ERROR |
---|
| 204 | printk("\n[ERROR] in %s : thread[%x,%x] / illegal inode type %\n", |
---|
[604] | 205 | __FUNCTION__, vfs_inode_type_str( file_type ) ); |
---|
[594] | 206 | #endif |
---|
[604] | 207 | hal_restore_irq( save_sr ); |
---|
[594] | 208 | this->errno = EBADFD; |
---|
| 209 | return -1; |
---|
[407] | 210 | } |
---|
| 211 | |
---|
[408] | 212 | // restore IRQs |
---|
| 213 | hal_restore_irq( save_sr ); |
---|
| 214 | |
---|
[124] | 215 | hal_fence(); |
---|
[23] | 216 | |
---|
[566] | 217 | #if (DEBUG_SYS_WRITE || CONFIG_INSTRUMENTATION_SYSCALLS) |
---|
| 218 | uint64_t tm_end = hal_get_cycles(); |
---|
| 219 | #endif |
---|
| 220 | |
---|
[438] | 221 | #if DEBUG_SYS_WRITE |
---|
| 222 | if( DEBUG_SYS_WRITE < tm_end ) |
---|
[610] | 223 | printk("\n[%s] thread[%x,%x] exit / cycle %d\n", |
---|
[584] | 224 | __FUNCTION__, process->pid, this->trdid, (uint32_t)tm_end ); |
---|
[409] | 225 | #endif |
---|
[407] | 226 | |
---|
[566] | 227 | #if CONFIG_INSTRUMENTATION_SYSCALLS |
---|
| 228 | hal_atomic_add( &syscalls_cumul_cost[SYS_WRITE] , tm_end - tm_start ); |
---|
| 229 | hal_atomic_add( &syscalls_occurences[SYS_WRITE] , 1 ); |
---|
| 230 | #endif |
---|
| 231 | |
---|
[438] | 232 | #if (DEBUG_SYS_WRITE & 1) |
---|
[435] | 233 | exit_sys_write = (uint32_t)tm_end; |
---|
| 234 | |
---|
[443] | 235 | printk("\n***** timing to write a string *****\n" |
---|
[435] | 236 | " - enter_sys_write = %d / delta %d\n" |
---|
| 237 | " - enter_devfs_write = %d / delta %d\n" |
---|
| 238 | " - enter_txt_write = %d / delta %d\n" |
---|
| 239 | " - enter_chdev_cmd_write = %d / delta %d\n" |
---|
| 240 | " - enter_chdev_server_write = %d / delta %d\n" |
---|
| 241 | " - enter_tty_cmd_write = %d / delta %d\n" |
---|
| 242 | " - enter_tty_isr_write = %d / delta %d\n" |
---|
| 243 | " - exit_tty_isr_write = %d / delta %d\n" |
---|
| 244 | " - exit_tty_cmd_write = %d / delta %d\n" |
---|
| 245 | " - exit_chdev_server_write = %d / delta %d\n" |
---|
| 246 | " - exit_chdev_cmd_write = %d / delta %d\n" |
---|
| 247 | " - exit_txt_write = %d / delta %d\n" |
---|
| 248 | " - exit_devfs_write = %d / delta %d\n" |
---|
| 249 | " - exit_sys_write = %d / delta %d\n", |
---|
| 250 | enter_sys_write , 0 , |
---|
| 251 | enter_devfs_write , enter_devfs_write - enter_sys_write , |
---|
| 252 | enter_txt_write , enter_txt_write - enter_devfs_write , |
---|
| 253 | enter_chdev_cmd_write , enter_chdev_cmd_write - enter_txt_write , |
---|
| 254 | enter_chdev_server_write , enter_chdev_server_write - enter_chdev_cmd_write , |
---|
| 255 | enter_tty_cmd_write , enter_tty_cmd_write - enter_chdev_server_write , |
---|
| 256 | enter_tty_isr_write , enter_tty_isr_write - enter_tty_cmd_write , |
---|
| 257 | exit_tty_isr_write , exit_tty_isr_write - enter_tty_isr_write , |
---|
| 258 | exit_tty_cmd_write , exit_tty_cmd_write - exit_tty_isr_write , |
---|
| 259 | exit_chdev_server_write , exit_chdev_server_write - exit_tty_cmd_write , |
---|
| 260 | exit_chdev_cmd_write , exit_chdev_cmd_write - exit_chdev_server_write , |
---|
| 261 | exit_txt_write , exit_txt_write - exit_chdev_cmd_write , |
---|
| 262 | exit_devfs_write , exit_devfs_write - exit_txt_write , |
---|
| 263 | exit_sys_write , exit_sys_write - exit_devfs_write ); |
---|
| 264 | #endif |
---|
| 265 | |
---|
[407] | 266 | return nbytes; |
---|
| 267 | |
---|
[23] | 268 | } // end sys_write() |
---|