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

Last change on this file since 418 was 418, checked in by alain, 9 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
Line 
1/*
2 * sys_read.c - read bytes from 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 <vmm.h>
32#include <thread.h>
33#include <printk.h>
34#include <process.h>
35
36// TODO: concurrent user page(s) munmap need to be handled [AG]
37
38// TODO : remove these debug variables
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
55/////////////////////////////////
56int sys_read( uint32_t file_id,
57 void * vaddr,
58 uint32_t count )
59{
60 error_t error;
61 paddr_t paddr; // required for user space checking
62 xptr_t file_xp; // remote file extended pointer
63 uint32_t nbytes; // number of bytes actually read
64 reg_t save_sr; // required to enable IRQs during syscall
65
66#if CONFIG_READ_DEBUG
67uint64_t tm_start;
68uint64_t tm_end;
69tm_start = hal_get_cycles();
70#endif
71
72#if CONFIG_READ_DEBUG
73enter_sys_read = (uint32_t)tm_start;
74#endif
75
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 )
81 {
82 printk("\n[ERROR] in %s : illegal file descriptor index = %d\n",
83 __FUNCTION__ , file_id );
84 this->errno = EBADFD;
85 return -1;
86 }
87
88 // check user buffer in user space
89 error = vmm_v2p_translate( false , vaddr , &paddr );
90
91 if ( error )
92 {
93 printk("\n[ERROR] in %s : user buffer unmapped = %x\n",
94 __FUNCTION__ , (intptr_t)vaddr );
95 this->errno = EINVAL;
96 return -1;
97 }
98
99 // enable IRQs
100 // hal_enable_irq( &save_sr );
101
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 {
107 printk("\n[ERROR] in %s : undefined file descriptor index = %d in process %x\n",
108 __FUNCTION__ , file_id , process->pid );
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 )
120 {
121 printk("\n[ERROR] in %s : file %d not readable in process %x\n",
122 __FUNCTION__ , file_id , process->pid );
123 this->errno = EBADFD;
124 return -1;
125 }
126
127 // get file type
128 vfs_inode_type_t type = hal_remote_lw( XPTR( file_cxy , &file_ptr->type ) );
129
130 // action depend on file type
131 if( type == INODE_TYPE_FILE ) // transfer count bytes from file mapper
132 {
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 );
155 this->errno = error;
156 return -1;
157 }
158
159 // restore IRQs
160 // hal_restore_irq( save_sr );
161
162 hal_fence();
163
164#if CONFIG_READ_DEBUG
165tm_end = hal_get_cycles();
166printk("\n[DBG] %s : core[%x,%d] / thread %x in process %x / cycle %d\n"
167"nbytes = %d / first byte = %c / file_id = %d / cost = %d\n",
168__FUNCTION__ , local_cxy , this->core->lid , this->trdid , this->process->pid ,
169(uint32_t)tm_start , nbytes , *((char *)(intptr_t)paddr) , file_id ,
170(uint32_t)(tm_end - tm_start) );
171#endif
172
173#if CONFIG_READ_DEBUG
174exit_sys_read = (uint32_t)tm_end;
175
176printk("\n@@@@@@@@@@@@ timing to read character %c\n"
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
210} // end sys_read()
Note: See TracBrowser for help on using the repository browser.