source: trunk/kernel/syscalls/sys_write.c @ 433

Last change on this file since 433 was 433, checked in by alain, 6 years ago

blip

File size: 4.9 KB
RevLine 
[1]1/*
[23]2 * sys_write.c - write bytes to a file
[1]3 *
[23]4 * Author        Alain Greiner (2016,2017)
[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>
25#include <hal_types.h>
26#include <hal_uspace.h>
[409]27#include <hal_irqmask.h>
[23]28#include <hal_special.h>
[1]29#include <errno.h>
30#include <vfs.h>
31#include <thread.h>
[23]32#include <printk.h>
33#include <process.h>
[1]34
[407]35/* TODO: concurrent user page(s) unmap need to be handled [AG] */
[23]36
37//////////////////////////////////
38int sys_write( uint32_t   file_id,
[407]39               void     * vaddr,
[23]40               uint32_t   count )
[1]41{
[23]42    error_t      error;
[408]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
[407]47
[433]48        thread_t   * this = CURRENT_THREAD;
49        process_t  * process = this->process;
50
51#if CONFIG_DEBUG_SYS_WRITE
[409]52uint32_t     tm_start;
53uint32_t     tm_end;
54tm_start = hal_get_cycles();
[433]55if( CONFIG_DEBUG_SYS_WRITE < tm_start )
56printk("\n[DBG] %s : thread %x / process %x / vaddr %x / count %d / cycle %d\n",
57__FUNCTION__, this, process->pid, vaddr, count, (uint32_t)tm_start );
[409]58#endif
[1]59 
[23]60    // check file_id argument
61        if( file_id >= CONFIG_PROCESS_FILE_MAX_NR )
[1]62        {
[433]63
64#if CONFIG_DEBUG_SYSCALLS_ERROR
65printk("\n[ERROR] in %s : illegal file descriptor index\n", __FUNCTION__ );
66#endif
[23]67        this->errno = EBADFD;
[1]68                return -1;
69        }
70
[23]71    // check user buffer in user space
[407]72    error = vmm_v2p_translate( false , vaddr , &paddr );
[23]73
74    if ( error )
75    {
[433]76
77#if CONFIG_DEBUG_SYSCALLS_ERROR
78printk("\n[ERROR] in %s : user buffer unmapped = %x\n", __FUNCTION__ , (intptr_t)vaddr );
79#endif
[23]80                this->errno = EINVAL;
81                return -1;
82    }
83
[408]84    // enable IRQs
85    hal_enable_irq( &save_sr );
86
[23]87    // get extended pointer on remote file descriptor
88    file_xp = process_fd_get_xptr( process , file_id );
89
90    if( file_xp == XPTR_NULL )
91    {
[433]92
93#if CONFIG_DEBUG_SYSCALLS_ERROR
94printk("\n[ERROR] in %s : undefined file descriptor index = %d in process %x\n",
95__FUNCTION__ , file_id , process->pid );
96#endif
[23]97                this->errno = EBADFD;
98                return -1;
99    }
100
101    // get file descriptor cluster and local pointer
102    vfs_file_t * file_ptr = (vfs_file_t *)GET_PTR( file_xp );
103    cxy_t        file_cxy = GET_CXY( file_xp );
104
[421]105 
[407]106    // get file type
107    vfs_inode_type_t type = hal_remote_lw( XPTR( file_cxy , &file_ptr->type ) );
[313]108
[407]109    // action depend on file type
[421]110    if( type == INODE_TYPE_FILE )  // check file writable & write to mapper
[23]111    {
[421]112        // check file writable
113        uint32_t attr = hal_remote_lw( XPTR( file_cxy , &file_ptr->attr ) );
114        if( (attr & FD_ATTR_WRITE_ENABLE) == 0 )
115            {
[433]116
117#if CONFIG_DEBUG_SYSCALLS_ERROR
118printk("\n[ERROR] in %s : file %d not writable in process %x\n",
119__FUNCTION__ , file_id , process->pid );
120#endif
[421]121                    this->errno = EBADFD;
122                    return -1;
123            }
124
125        // move count bytes to mapper
[407]126        nbytes = vfs_user_move( false,               // from buffer to mapper
127                                file_xp,
128                                vaddr, 
129                                count );
130    }
[421]131    else if( type == INODE_TYPE_DEV )  // check ownership & write to device
[407]132    {
[421]133        // move count bytes to device
[407]134        nbytes = devfs_user_move( false,             // from buffer to device
135                                 file_xp,
136                                 vaddr,
137                                 count );
138    }
139    else
140    {
141        nbytes = 0;
[421]142        assert( false , __FUNCTION__ , "file type %d non supported\n", type );
[407]143    }
144
145    if( nbytes != count )
146    {
[433]147
148#if CONFIG_DEBUG_SYSCALLS_ERROR
149printk("\n[ERROR] in %s cannot write data to file %d in process %x\n",
150__FUNCTION__ , file_id , process->pid );
151#endif
[313]152        this->errno = error;
153        return -1;
[23]154    }
155
[408]156    // restore IRQs
157    hal_restore_irq( save_sr );
158
[124]159    hal_fence();
[23]160
[433]161#if CONFIG_DEBUG_SYS_WRITE
[409]162tm_end = hal_get_cycles();
[433]163if( CONFIG_DEBUG_SYS_WRITE < tm_end )
164printk("\n[DBG] %s : thread %x in process %x / cycle %d\n"
[408]165"nbytes = %d / first byte = %c / file_id = %d / cost = %d\n",
[433]166__FUNCTION__, this, process->pid, (uint32_t)tm_start,
167nbytes, *((char *)(intptr_t)paddr) , file_id , (uint32_t)(tm_end - tm_start) );
[409]168#endif
[407]169 
170        return nbytes;
171
[23]172}  // end sys_write()
Note: See TracBrowser for help on using the repository browser.