[1] | 1 | /* |
---|
[611] | 2 | * sys_closedir.c - Close an open VFS directory. |
---|
[1] | 3 | * |
---|
[611] | 4 | * Author Alain Greiner (2016,2017,2018) |
---|
[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 | |
---|
[611] | 24 | #include <kernel_config.h> |
---|
[457] | 25 | #include <hal_kernel_types.h> |
---|
[1] | 26 | #include <vfs.h> |
---|
[407] | 27 | #include <printk.h> |
---|
[1] | 28 | #include <thread.h> |
---|
| 29 | #include <process.h> |
---|
[612] | 30 | #include <user_dir.h> |
---|
[407] | 31 | #include <errno.h> |
---|
| 32 | #include <syscalls.h> |
---|
| 33 | #include <shared_syscalls.h> |
---|
[1] | 34 | |
---|
[407] | 35 | /////////////////////////////// |
---|
| 36 | int sys_closedir ( DIR * dirp ) |
---|
[1] | 37 | { |
---|
[612] | 38 | xptr_t dir_xp; // extended pointer on user_dir_t structure |
---|
| 39 | user_dir_t * dir_ptr; // lcal pointer on user_dir_t structure |
---|
| 40 | cxy_t dir_cxy; // cluster identifier (inode cluster) |
---|
[611] | 41 | |
---|
| 42 | thread_t * this = CURRENT_THREAD; // client thread |
---|
| 43 | process_t * process = this->process; // client process |
---|
| 44 | |
---|
| 45 | #if (DEBUG_SYS_CLOSEDIR || CONFIG_INSTRUMENTATION_SYSCALLS) |
---|
| 46 | uint64_t tm_start = hal_get_cycles(); |
---|
| 47 | #endif |
---|
| 48 | |
---|
| 49 | #if DEBUG_SYS_CLOSEDIR |
---|
| 50 | if( DEBUG_SYS_CLOSEDIR < tm_start ) |
---|
| 51 | printk("\n[%s] thread[%x,%x] enter for DIR <%x> / cycle %d\n", |
---|
| 52 | __FUNCTION__, process->pid, this->trdid, dirp, (uint32_t)tm_start ); |
---|
| 53 | #endif |
---|
| 54 | |
---|
[612] | 55 | // get extended pointer on kernel user_dir_t structure from dirp |
---|
| 56 | dir_xp = user_dir_from_ident( (intptr_t)dirp ); |
---|
[611] | 57 | |
---|
| 58 | if( dir_xp == XPTR_NULL ) |
---|
| 59 | { |
---|
| 60 | |
---|
| 61 | #if DEBUG_SYSCALLS_ERROR |
---|
| 62 | printk("\n[ERROR] in %s / thread[%x,%x] : DIR pointer %x not registered\n", |
---|
| 63 | __FUNCTION__ , process->pid , this->trdid, dirp ); |
---|
| 64 | #endif |
---|
| 65 | this->errno = EINVAL; |
---|
| 66 | return -1; |
---|
| 67 | } |
---|
| 68 | |
---|
[612] | 69 | // get cluster and localpointer for user_dir_t structure |
---|
| 70 | dir_ptr = GET_PTR( dir_xp ); |
---|
| 71 | dir_cxy = GET_CXY( dir_xp ); |
---|
| 72 | |
---|
| 73 | // delete both user_dir_t structure and dirent array |
---|
| 74 | if( dir_cxy == local_cxy ) |
---|
| 75 | { |
---|
| 76 | user_dir_destroy( dir_ptr ); |
---|
| 77 | } |
---|
| 78 | else |
---|
| 79 | { |
---|
| 80 | rpc_user_dir_destroy_client( dir_cxy, |
---|
| 81 | dir_ptr ); |
---|
| 82 | } |
---|
[611] | 83 | |
---|
| 84 | hal_fence(); |
---|
| 85 | |
---|
| 86 | #if (DEBUG_SYS_CLOSEDIR || CONFIG_INSTRUMENTATION_SYSCALLS) |
---|
| 87 | uint64_t tm_end = hal_get_cycles(); |
---|
| 88 | #endif |
---|
| 89 | |
---|
| 90 | #if DEBUG_SYS_CLOSEDIR |
---|
| 91 | if( DEBUG_SYS_CLOSEDIR < tm_end ) |
---|
| 92 | printk("\n[%s] thread[%x,%x] exit for DIR <%x> / cycle %d\n", |
---|
| 93 | __FUNCTION__, process->pid, this->trdid, dirp, (uint32_t)tm_end ); |
---|
| 94 | #endif |
---|
| 95 | |
---|
| 96 | #if CONFIG_INSTRUMENTATION_SYSCALLS |
---|
| 97 | hal_atomic_add( &syscalls_cumul_cost[SYS_CLOSEDIR] , tm_end - tm_start ); |
---|
| 98 | hal_atomic_add( &syscalls_occurences[SYS_CLOSEDIR] , 1 ); |
---|
| 99 | #endif |
---|
| 100 | |
---|
| 101 | return 0; |
---|
| 102 | |
---|
[23] | 103 | } // end sys_closedir() |
---|