source: trunk/kernel/syscalls/sys_read.c @ 418

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

Fix a bug in hal_kentry.S : the "uzone" pointer in the thread descriptor
must not be modified in case of interrupt.

File size: 6.6 KB
RevLine 
[1]1/*
[23]2 * sys_read.c - read bytes from 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>
[23]30#include <vfs.h>
31#include <vmm.h>
[1]32#include <thread.h>
[23]33#include <printk.h>
34#include <process.h>
[1]35
[407]36// TODO: concurrent user page(s) munmap need to be handled [AG]
[23]37
[409]38// TODO : remove these debug variables
[407]39extern uint32_t enter_sys_read;
40extern uint32_t enter_devfs_move;
41extern uint32_t enter_txt_read;
42extern uint32_t enter_chdev_cmd;
43extern uint32_t enter_chdev_server;
44extern uint32_t enter_tty_cmd;
45extern uint32_t enter_tty_isr;
46extern uint32_t exit_tty_isr;
47extern uint32_t exit_tty_cmd;
48extern uint32_t exit_chdev_server;
49extern uint32_t exit_chdev_cmd;
50extern uint32_t exit_txt_read;
51extern uint32_t exit_devfs_move;
52extern uint32_t exit_sys_read;
53
54
[23]55/////////////////////////////////
56int sys_read( uint32_t   file_id,
[407]57              void     * vaddr,
[23]58              uint32_t   count )
[1]59{
[23]60    error_t      error;
[313]61    paddr_t      paddr;       // required for user space checking
[23]62        xptr_t       file_xp;     // remote file extended pointer
[407]63    uint32_t     nbytes;      // number of bytes actually read
[408]64    reg_t        save_sr;     // required to enable IRQs during syscall
[407]65
[418]66#if CONFIG_READ_DEBUG
67uint64_t     tm_start;
68uint64_t     tm_end;
[409]69tm_start = hal_get_cycles();
70#endif
[407]71
[409]72#if CONFIG_READ_DEBUG
[418]73enter_sys_read = (uint32_t)tm_start;
[407]74#endif
75
[23]76        thread_t  *  this    = CURRENT_THREAD;
77        process_t *  process = this->process;
78 
79    // check file_id argument
80        if( file_id >= CONFIG_PROCESS_FILE_MAX_NR )
[1]81        {
[23]82        printk("\n[ERROR] in %s : illegal file descriptor index = %d\n",
[407]83        __FUNCTION__ , file_id );
[23]84                this->errno = EBADFD;
[1]85                return -1;
86        }
87
[23]88    // check user buffer in user space
[407]89    error = vmm_v2p_translate( false , vaddr , &paddr );
[23]90
91    if ( error )
92    {
93        printk("\n[ERROR] in %s : user buffer unmapped = %x\n",
[407]94        __FUNCTION__ , (intptr_t)vaddr );
[23]95                this->errno = EINVAL;
96                return -1;
97    }
98
[408]99    // enable IRQs
[418]100    // hal_enable_irq( &save_sr );
[408]101
[23]102    // get extended pointer on remote file descriptor
103    file_xp = process_fd_get_xptr( process , file_id );
104
105    if( file_xp == XPTR_NULL )
106    {
[407]107        printk("\n[ERROR] in %s : undefined file descriptor index = %d in process %x\n",
108        __FUNCTION__ , file_id , process->pid );
[23]109        this->errno = EBADFD;
110        return -1;
111    }
112
113    // get file descriptor cluster and local pointer
114    vfs_file_t * file_ptr = (vfs_file_t *)GET_PTR( file_xp );
115    cxy_t        file_cxy = GET_CXY( file_xp );
116
117    // check file readable
118    uint32_t attr = hal_remote_lw( XPTR( file_cxy , &file_ptr->attr ) );
119    if( (attr & FD_ATTR_READ_ENABLE) == 0 )
[1]120        {
[407]121        printk("\n[ERROR] in %s : file %d not readable in process %x\n",
122        __FUNCTION__ , file_id , process->pid );
[23]123                this->errno = EBADFD;
[1]124                return -1;
125        }
[313]126   
[407]127    // get file type
128    vfs_inode_type_t type = hal_remote_lw( XPTR( file_cxy , &file_ptr->type ) );
[313]129
[407]130    // action depend on file type
131    if( type == INODE_TYPE_FILE )      // transfer count bytes from file mapper
[23]132    {
[407]133        nbytes = vfs_user_move( true,               // from mapper to buffer
134                                file_xp,
135                                vaddr, 
136                                count );
137    }
138    else if( type == INODE_TYPE_DEV )  // transfer count bytes from device
139    {
140        nbytes = devfs_user_move( true,             // from device to buffer
141                                  file_xp,
142                                  vaddr,
143                                  count );
144    }
145    else
146    {
147        nbytes = 0;
148        panic("file type %d non supported yet", type );
149    }
150
151    if( nbytes != count )
152    {
153        printk("\n[ERROR] in %s cannot read data from file %d in process %x\n",
154        __FUNCTION__ , file_id , process->pid );
[313]155        this->errno = error;
156        return -1;
[23]157    }
158
[408]159    // restore IRQs
[418]160    // hal_restore_irq( save_sr );
[408]161
[124]162    hal_fence();
[23]163
[418]164#if CONFIG_READ_DEBUG
[409]165tm_end = hal_get_cycles();
[416]166printk("\n[DBG] %s : core[%x,%d] / thread %x in process %x / cycle %d\n"
[409]167"nbytes = %d / first byte = %c / file_id = %d / cost = %d\n",
168__FUNCTION__ , local_cxy , this->core->lid , this->trdid , this->process->pid ,
[416]169(uint32_t)tm_start , nbytes , *((char *)(intptr_t)paddr) , file_id ,
170(uint32_t)(tm_end - tm_start) );
[409]171#endif
[23]172
[418]173#if CONFIG_READ_DEBUG
174exit_sys_read = (uint32_t)tm_end;
[407]175
[409]176printk("\n@@@@@@@@@@@@ timing to read character %c\n"
[407]177" - enter_sys_read     = %d / delta %d\n"
178" - enter_devfs_move   = %d / delta %d\n"
179" - enter_txt_read     = %d / delta %d\n"
180" - enter_chdev_cmd    = %d / delta %d\n"
181" - enter_chdev_server = %d / delta %d\n"
182" - enter_tty_cmd      = %d / delta %d\n"
183" - enter_tty_isr      = %d / delta %d\n"
184" - exit_tty_isr       = %d / delta %d\n"
185" - exit_tty_cmd       = %d / delta %d\n"
186" - exit_chdev_server  = %d / delta %d\n"
187" - exit_chdev_cmd     = %d / delta %d\n"
188" - exit_txt_read      = %d / delta %d\n"
189" - exit_devfs_move    = %d / delta %d\n"
190" - exit_sys_read      = %d / delta %d\n",
191*((char *)(intptr_t)paddr) ,
192enter_sys_read     , 0 ,
193enter_devfs_move   , enter_devfs_move   - enter_sys_read     ,
194enter_txt_read     , enter_txt_read     - enter_devfs_move   ,
195enter_chdev_cmd    , enter_chdev_cmd    - enter_txt_read     ,
196enter_chdev_server , enter_chdev_server - enter_chdev_cmd    ,
197enter_tty_cmd      , enter_tty_cmd      - enter_chdev_server ,
198enter_tty_isr      , enter_tty_isr      - enter_tty_cmd      ,
199exit_tty_isr       , exit_tty_isr       - enter_tty_isr      ,
200exit_tty_cmd       , exit_tty_cmd       - exit_tty_isr       ,
201exit_chdev_server  , exit_chdev_server  - exit_tty_cmd       ,
202exit_chdev_cmd     , exit_chdev_cmd     - exit_chdev_server  ,
203exit_txt_read      , exit_txt_read      - exit_chdev_cmd     ,
204exit_devfs_move    , exit_devfs_move    - exit_txt_read      ,
205exit_sys_read      , exit_sys_read      - exit_devfs_move    );
206#endif
207 
208        return nbytes;
209
[23]210}  // end sys_read()
Note: See TracBrowser for help on using the repository browser.