[1] | 1 | /* |
---|
[611] | 2 | * sys_readdir.c - Copy one entry from an open VFS directory to an user buffer. |
---|
[1] | 3 | * |
---|
[611] | 4 | * Author Alain Greiner (2016,2017,2018) |
---|
[1] | 5 | * |
---|
[23] | 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 |
---|
[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> |
---|
[23] | 26 | #include <hal_uspace.h> |
---|
| 27 | #include <errno.h> |
---|
| 28 | #include <thread.h> |
---|
| 29 | #include <printk.h> |
---|
[1] | 30 | #include <vfs.h> |
---|
[23] | 31 | #include <process.h> |
---|
[612] | 32 | #include <user_dir.h> |
---|
[23] | 33 | #include <syscalls.h> |
---|
[407] | 34 | #include <shared_syscalls.h> |
---|
[1] | 35 | |
---|
[407] | 36 | /////////////////////////////////////// |
---|
| 37 | int sys_readdir( DIR * dirp, |
---|
[611] | 38 | struct dirent ** buffer ) |
---|
[1] | 39 | { |
---|
[611] | 40 | error_t error; |
---|
| 41 | vseg_t * vseg; // for user space checking of buffer |
---|
[612] | 42 | xptr_t dir_xp; // extended pointer on user_dir structure |
---|
| 43 | user_dir_t * dir_ptr; // local pointer on user_dir structure |
---|
| 44 | cxy_t dir_cxy; // user_dir stucture cluster identifier |
---|
[611] | 45 | struct dirent * direntp; // dirent pointer in user space |
---|
| 46 | uint32_t entries; // total number of dirent entries |
---|
| 47 | uint32_t current; // current dirent index |
---|
| 48 | |
---|
| 49 | thread_t * this = CURRENT_THREAD; // client thread |
---|
| 50 | process_t * process = this->process; // client process |
---|
| 51 | |
---|
| 52 | #if (DEBUG_SYS_READDIR || CONFIG_INSTRUMENTATION_SYSCALLS) |
---|
| 53 | uint64_t tm_start = hal_get_cycles(); |
---|
| 54 | #endif |
---|
| 55 | |
---|
| 56 | #if DEBUG_SYS_READDIR |
---|
| 57 | if( DEBUG_SYS_READDIR < tm_start ) |
---|
| 58 | printk("\n[%s] thread[%x,%x] enter / dirp %x / cycle %d\n", |
---|
| 59 | __FUNCTION__, process->pid, this->trdid, dirp, (uint32_t)tm_start ); |
---|
| 60 | #endif |
---|
| 61 | |
---|
| 62 | // check buffer in user space |
---|
| 63 | error = vmm_get_vseg( process , (intptr_t)buffer, &vseg ); |
---|
| 64 | |
---|
| 65 | if( error ) |
---|
| 66 | { |
---|
| 67 | |
---|
| 68 | #if DEBUG_SYSCALLS_ERROR |
---|
| 69 | printk("\n[ERROR] in %s / thread[%x,%x] : user buffer %x unmapped\n", |
---|
| 70 | __FUNCTION__ , process->pid , this->trdid, buffer ); |
---|
| 71 | vmm_display( process , false ); |
---|
| 72 | #endif |
---|
| 73 | this->errno = EINVAL; |
---|
| 74 | return -1; |
---|
| 75 | } |
---|
| 76 | |
---|
[612] | 77 | // get pointers on user_dir structure from dirp |
---|
| 78 | dir_xp = user_dir_from_ident( (intptr_t)dirp ); |
---|
[611] | 79 | dir_ptr = GET_PTR( dir_xp ); |
---|
| 80 | dir_cxy = GET_CXY( dir_xp ); |
---|
| 81 | |
---|
| 82 | if( dir_xp == XPTR_NULL ) |
---|
| 83 | { |
---|
| 84 | |
---|
| 85 | #if DEBUG_SYSCALLS_ERROR |
---|
| 86 | printk("\n[ERROR] in %s / thread[%x,%x] : dirp %x not registered\n", |
---|
| 87 | __FUNCTION__ , process->pid , this->trdid, dirp ); |
---|
| 88 | #endif |
---|
| 89 | this->errno = EBADF; |
---|
| 90 | return -1; |
---|
| 91 | } |
---|
| 92 | |
---|
[612] | 93 | // get "current" and "entries_nr" values from user_dir_t structure |
---|
[611] | 94 | current = hal_remote_l32( XPTR( dir_cxy , &dir_ptr->current ) ); |
---|
| 95 | entries = hal_remote_l32( XPTR( dir_cxy , &dir_ptr->entries ) ); |
---|
| 96 | |
---|
| 97 | // check "current" index |
---|
| 98 | if( current >= entries ) |
---|
| 99 | { |
---|
| 100 | this->errno = 0; |
---|
| 101 | return -1; |
---|
| 102 | } |
---|
| 103 | |
---|
| 104 | // compute dirent pointer in user space |
---|
| 105 | direntp = (struct dirent *)dirp + current; |
---|
| 106 | |
---|
| 107 | #if (DEBUG_SYS_READDIR & 1) |
---|
| 108 | if( DEBUG_SYS_READDIR < tm_start ) |
---|
| 109 | printk("\n[%s] entries = %d / current = %d / direntp = %x\n", |
---|
| 110 | __FUNCTION__, entries, current, direntp ); |
---|
| 111 | #endif |
---|
| 112 | |
---|
| 113 | // copy dirent pointer to user buffer |
---|
| 114 | hal_copy_to_uspace( buffer, &direntp , sizeof(void *) ); |
---|
| 115 | |
---|
[612] | 116 | // update current index in user_dir structure |
---|
[611] | 117 | hal_remote_atomic_add( XPTR( dir_cxy , &dir_ptr->current ) , 1 ); |
---|
| 118 | |
---|
| 119 | hal_fence(); |
---|
| 120 | |
---|
| 121 | #if (DEBUG_SYS_READDIR || CONFIG_INSTRUMENTATION_SYSCALLS) |
---|
| 122 | uint64_t tm_end = hal_get_cycles(); |
---|
| 123 | #endif |
---|
| 124 | |
---|
| 125 | #if DEBUG_SYS_READDIR |
---|
| 126 | if( DEBUG_SYS_READDIR < tm_end ) |
---|
| 127 | printk("\n[%s] thread[%x,%x] exit / cycle %d\n", |
---|
| 128 | __FUNCTION__, process->pid, this->trdid, (uint32_t)tm_end ); |
---|
| 129 | #endif |
---|
| 130 | |
---|
| 131 | #if CONFIG_INSTRUMENTATION_SYSCALLS |
---|
| 132 | hal_atomic_add( &syscalls_cumul_cost[SYS_READDIR] , tm_end - tm_start ); |
---|
| 133 | hal_atomic_add( &syscalls_occurences[SYS_READDIR] , 1 ); |
---|
| 134 | #endif |
---|
| 135 | |
---|
| 136 | return 0; |
---|
| 137 | |
---|
[23] | 138 | } // end sys_readdir() |
---|