source: trunk/kernel/syscalls/sys_closedir.c @ 612

Last change on this file since 612 was 612, checked in by alain, 5 years ago

Fix several bugs in vfs.c, fatfs.c, and devfs.c to support
the <.> and <..> directory entries.

File size: 3.0 KB
Line 
1/*
2 * sys_closedir.c - Close an open VFS directory.
3 *
4 * Author    Alain Greiner  (2016,2017,2018)
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_kernel_types.h>
26#include <vfs.h>
27#include <printk.h>
28#include <thread.h>
29#include <process.h>
30#include <user_dir.h>
31#include <errno.h>
32#include <syscalls.h>
33#include <shared_syscalls.h>
34
35///////////////////////////////
36int sys_closedir ( DIR * dirp )
37{
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)
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)
46uint64_t     tm_start = hal_get_cycles();
47#endif
48
49#if DEBUG_SYS_CLOSEDIR
50if( DEBUG_SYS_CLOSEDIR < tm_start )
51printk("\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 
55    // get extended pointer on kernel user_dir_t structure from dirp
56    dir_xp  = user_dir_from_ident( (intptr_t)dirp );
57
58    if( dir_xp == XPTR_NULL )
59        {
60
61#if DEBUG_SYSCALLS_ERROR
62printk("\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
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    }
83
84    hal_fence();
85
86#if (DEBUG_SYS_CLOSEDIR || CONFIG_INSTRUMENTATION_SYSCALLS)
87uint64_t     tm_end = hal_get_cycles();
88#endif
89
90#if DEBUG_SYS_CLOSEDIR
91if( DEBUG_SYS_CLOSEDIR < tm_end )
92printk("\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
97hal_atomic_add( &syscalls_cumul_cost[SYS_CLOSEDIR] , tm_end - tm_start );
98hal_atomic_add( &syscalls_occurences[SYS_CLOSEDIR] , 1 );
99#endif
100
101    return 0;
102
103}  // end sys_closedir()
Note: See TracBrowser for help on using the repository browser.