| 1 | /*
|
|---|
| 2 | * sys_write.c - write bytes to a file
|
|---|
| 3 | *
|
|---|
| 4 | * Author Alain Greiner (2016,2017)
|
|---|
| 5 | *
|
|---|
| 6 | * Copyright (c) UPMC Sorbonne Universites
|
|---|
| 7 | *
|
|---|
| 8 | * This file is part of ALMOS-MKH.
|
|---|
| 9 | *
|
|---|
| 10 | * ALMOS-MKH is free software; you can redistribute it and/or modify it
|
|---|
| 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 | *
|
|---|
| 14 | * ALMOS-MKH is distributed in the hope that it will be useful, but
|
|---|
| 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
|
|---|
| 20 | * along with ALMOS-MKH; if not, write to the Free Software Foundation,
|
|---|
| 21 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|---|
| 22 | */
|
|---|
| 23 |
|
|---|
| 24 | #include <kernel_config.h>
|
|---|
| 25 | #include <hal_types.h>
|
|---|
| 26 | #include <hal_uspace.h>
|
|---|
| 27 | #include <hal_irqmask.h>
|
|---|
| 28 | #include <hal_special.h>
|
|---|
| 29 | #include <errno.h>
|
|---|
| 30 | #include <vfs.h>
|
|---|
| 31 | #include <thread.h>
|
|---|
| 32 | #include <printk.h>
|
|---|
| 33 | #include <process.h>
|
|---|
| 34 |
|
|---|
| 35 | /* TODO: concurrent user page(s) unmap need to be handled [AG] */
|
|---|
| 36 |
|
|---|
| 37 | //////////////////////////////////
|
|---|
| 38 | int sys_write( uint32_t file_id,
|
|---|
| 39 | void * vaddr,
|
|---|
| 40 | uint32_t count )
|
|---|
| 41 | {
|
|---|
| 42 | error_t error;
|
|---|
| 43 | paddr_t paddr; // unused, but required for user space checking
|
|---|
| 44 | xptr_t file_xp; // remote file extended pointer
|
|---|
| 45 | uint32_t nbytes; // number of bytes actually written
|
|---|
| 46 | reg_t save_sr; // required to enable IRQs during syscall
|
|---|
| 47 |
|
|---|
| 48 | #if CONFIG_WRITE_DEBUG
|
|---|
| 49 | uint32_t tm_start;
|
|---|
| 50 | uint32_t tm_end;
|
|---|
| 51 | tm_start = hal_get_cycles();
|
|---|
| 52 | #endif
|
|---|
| 53 |
|
|---|
| 54 | thread_t * this = CURRENT_THREAD;
|
|---|
| 55 | process_t * process = this->process;
|
|---|
| 56 |
|
|---|
| 57 | // check file_id argument
|
|---|
| 58 | if( file_id >= CONFIG_PROCESS_FILE_MAX_NR )
|
|---|
| 59 | {
|
|---|
| 60 | printk("\n[ERROR] in %s : illegal file descriptor index\n", __FUNCTION__ );
|
|---|
| 61 | this->errno = EBADFD;
|
|---|
| 62 | return -1;
|
|---|
| 63 | }
|
|---|
| 64 |
|
|---|
| 65 | // check user buffer in user space
|
|---|
| 66 | error = vmm_v2p_translate( false , vaddr , &paddr );
|
|---|
| 67 |
|
|---|
| 68 | if ( error )
|
|---|
| 69 | {
|
|---|
| 70 | printk("\n[ERROR] in %s : user buffer unmapped = %x\n",
|
|---|
| 71 | __FUNCTION__ , (intptr_t)vaddr );
|
|---|
| 72 | this->errno = EINVAL;
|
|---|
| 73 | return -1;
|
|---|
| 74 | }
|
|---|
| 75 |
|
|---|
| 76 | // enable IRQs
|
|---|
| 77 | hal_enable_irq( &save_sr );
|
|---|
| 78 |
|
|---|
| 79 | // get extended pointer on remote file descriptor
|
|---|
| 80 | file_xp = process_fd_get_xptr( process , file_id );
|
|---|
| 81 |
|
|---|
| 82 | if( file_xp == XPTR_NULL )
|
|---|
| 83 | {
|
|---|
| 84 | printk("\n[ERROR] in %s : undefined file descriptor index = %d in process %x\n",
|
|---|
| 85 | __FUNCTION__ , file_id , process->pid );
|
|---|
| 86 | this->errno = EBADFD;
|
|---|
| 87 | return -1;
|
|---|
| 88 | }
|
|---|
| 89 |
|
|---|
| 90 | // get file descriptor cluster and local pointer
|
|---|
| 91 | vfs_file_t * file_ptr = (vfs_file_t *)GET_PTR( file_xp );
|
|---|
| 92 | cxy_t file_cxy = GET_CXY( file_xp );
|
|---|
| 93 |
|
|---|
| 94 | // check file writable
|
|---|
| 95 | uint32_t attr = hal_remote_lw( XPTR( file_cxy , &file_ptr->attr ) );
|
|---|
| 96 | if( (attr & FD_ATTR_WRITE_ENABLE) == 0 )
|
|---|
| 97 | {
|
|---|
| 98 | printk("\n[ERROR] in %s : file %d not writable in process %x\n",
|
|---|
| 99 | __FUNCTION__ , file_id , process->pid );
|
|---|
| 100 | this->errno = EBADFD;
|
|---|
| 101 | return -1;
|
|---|
| 102 | }
|
|---|
| 103 |
|
|---|
| 104 | // get file type
|
|---|
| 105 | vfs_inode_type_t type = hal_remote_lw( XPTR( file_cxy , &file_ptr->type ) );
|
|---|
| 106 |
|
|---|
| 107 | // action depend on file type
|
|---|
| 108 | if( type == INODE_TYPE_FILE ) // transfer count bytes to file mapper
|
|---|
| 109 | {
|
|---|
| 110 | nbytes = vfs_user_move( false, // from buffer to mapper
|
|---|
| 111 | file_xp,
|
|---|
| 112 | vaddr,
|
|---|
| 113 | count );
|
|---|
| 114 | }
|
|---|
| 115 | else if( type == INODE_TYPE_DEV ) // transfer count bytes to device
|
|---|
| 116 | {
|
|---|
| 117 | nbytes = devfs_user_move( false, // from buffer to device
|
|---|
| 118 | file_xp,
|
|---|
| 119 | vaddr,
|
|---|
| 120 | count );
|
|---|
| 121 | }
|
|---|
| 122 | else
|
|---|
| 123 | {
|
|---|
| 124 | nbytes = 0;
|
|---|
| 125 | panic("file type %d non supported", type );
|
|---|
| 126 | }
|
|---|
| 127 |
|
|---|
| 128 | if( nbytes != count )
|
|---|
| 129 | {
|
|---|
| 130 | printk("\n[ERROR] in %s cannot write data to file %d in process %x\n",
|
|---|
| 131 | __FUNCTION__ , file_id , process->pid );
|
|---|
| 132 | this->errno = error;
|
|---|
| 133 | return -1;
|
|---|
| 134 | }
|
|---|
| 135 |
|
|---|
| 136 | // restore IRQs
|
|---|
| 137 | hal_restore_irq( save_sr );
|
|---|
| 138 |
|
|---|
| 139 | hal_fence();
|
|---|
| 140 |
|
|---|
| 141 | #if CONFIG_WRITE_DEBUG
|
|---|
| 142 | tm_end = hal_get_cycles();
|
|---|
| 143 | printk("\n[DBG] %s : core[%x,%d] / thread %x in process %x / cycle %d\n"
|
|---|
| 144 | "nbytes = %d / first byte = %c / file_id = %d / cost = %d\n",
|
|---|
| 145 | __FUNCTION__ , local_cxy , this->core->lid , this->trdid , this->process->pid ,
|
|---|
| 146 | (uint32_t)tm_start , nbytes , *((char *)(intptr_t)paddr) , file_id ,
|
|---|
| 147 | (uint32_t)(tm_end - tm_start) );
|
|---|
| 148 | #endif
|
|---|
| 149 |
|
|---|
| 150 | #if CONFIG_WRITE_DEBUG
|
|---|
| 151 | printk("\n@@@@@@@@@@@@ timing to write character %c\n"
|
|---|
| 152 | " - enter_sys_write = %d\n"
|
|---|
| 153 | " - exit_sys_write = %d\n",
|
|---|
| 154 | *((char *)(intptr_t)paddr) , (uint32_t)tm_start , (uint32_t)tm_end );
|
|---|
| 155 | #endif
|
|---|
| 156 |
|
|---|
| 157 | return nbytes;
|
|---|
| 158 |
|
|---|
| 159 | } // end sys_write()
|
|---|