source: trunk/kernel/syscalls/sys_stat.c @ 635

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

This version is a major evolution: The physical memory allocators,
defined in the kmem.c, ppm.c, and kcm.c files have been modified
to support remote accesses. The RPCs that were previously user
to allocate physical memory in a remote cluster have been removed.
This has been done to cure a dead-lock in case of concurrent page-faults.

This version 2.2 has been tested on a (4 clusters / 2 cores per cluster)
TSAR architecture, for both the "sort" and the "fft" applications.

File size: 4.3 KB
RevLine 
[1]1/*
[610]2 * sys_stat.c - kernel function implementing the "stat" syscall.
[1]3 *
[624]4 * Author    Alain Greiner  (2016,2017,2018,2019)
[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
[457]24#include <hal_kernel_types.h>
[23]25#include <hal_uspace.h>
[624]26#include <hal_vmm.h>
[23]27#include <hal_special.h>
[1]28#include <errno.h>
29#include <thread.h>
[23]30#include <printk.h>
[1]31#include <vfs.h>
[23]32#include <vmm.h>
33#include <process.h>
[1]34
[506]35#include <syscalls.h>
36
[407]37/////////////////////////////////////
[566]38int sys_stat( char        * pathname,
[407]39              struct stat * u_stat )
[1]40{
[407]41    error_t       error;
[594]42    vseg_t      * vseg;                   // for user space checking
43    struct stat   k_stat;                 // in kernel space
[610]44    xptr_t        root_inode_xp;          // extended pointer on path root inode
[594]45
[407]46    char          kbuf[CONFIG_VFS_MAX_PATH_LENGTH];
[23]47       
48        thread_t  * this    = CURRENT_THREAD;
49        process_t * process = this->process;
[1]50
[594]51#if (DEBUG_SYS_STAT || CONFIG_INSTRUMENTATION_SYSCALLS)
52uint64_t     tm_start = hal_get_cycles();
53#endif
54
[23]55    // check stat structure in user space
[440]56    error = vmm_get_vseg( process , (intptr_t)u_stat , &vseg );
[1]57
[23]58        if( error )
[1]59        {
[440]60
[509]61#if DEBUG_SYSCALLS_ERROR
[610]62printk("\n[ERROR] in %s / thread[%x,%x] : stat structure %x unmapped\n",
63__FUNCTION__ , process->pid , this->trdid, u_stat );
[440]64#endif
[23]65                this->errno = EINVAL;
[1]66                return -1;
[23]67        }       
[1]68
[407]69    // check pathname length
70    if( hal_strlen_from_uspace( pathname ) >= CONFIG_VFS_MAX_PATH_LENGTH )
71    {
[594]72
73#if DEBUG_SYSCALLS_ERROR
74printk("\n[ERROR] in %s / thread[%x,%x] : pathname too long\n",
75 __FUNCTION__ , process->pid , this->trdid );
76#endif
[407]77        this->errno = ENFILE;
78        return -1;
79    }
80
81    // copy pathname in kernel space
82    hal_strcpy_from_uspace( kbuf , pathname , CONFIG_VFS_MAX_PATH_LENGTH );
83
[594]84#if DEBUG_SYS_STAT
85if( DEBUG_SYS_STAT < tm_start )
86printk("\n[%s] thread[%x,%x] enter for file <%s> / cycle %d\n",
87__FUNCTION__, process->pid, this->trdid, kbuf, (uint32_t)tm_start );
88#endif
89
[610]90    // compute root inode for path
91    if( kbuf[0] == '/' )                        // absolute path
[23]92    {
[610]93        // use extended pointer on VFS root inode
94        root_inode_xp = process->vfs_root_xp;
95    }
96    else                                        // relative path
97    {
98        // get cluster and local pointer on reference process
99        xptr_t      ref_xp  = process->ref_xp;
100        process_t * ref_ptr = (process_t *)GET_PTR( ref_xp );
101        cxy_t       ref_cxy = GET_CXY( ref_xp );
[594]102
[610]103        // use extended pointer on CWD inode
104        root_inode_xp = hal_remote_l64( XPTR( ref_cxy , &ref_ptr->cwd_xp ) );
[23]105    }
106
[610]107    // call the relevant VFS function
108    error = vfs_stat( root_inode_xp,
109                      kbuf,
110                      &k_stat ); 
[23]111    if( error )
[1]112        {
[594]113
114#if DEBUG_SYSCALLS_ERROR
115printk("\n[ERROR] in %s / thread[%x,%x] : cannot get stats for inode <%s>\n",
116__FUNCTION__ , process->pid , this->trdid , pathname );
117#endif
118                this->errno = ENFILE;
[1]119                return -1;
120        }
[23]121   
[407]122    // copy k_stat to u_stat
[626]123    hal_copy_to_uspace( local_cxy,
124                        &k_stat,
125                        u_stat,
126                        sizeof(struct stat) );
[1]127
[124]128    hal_fence();
[23]129
[594]130#if (DEBUG_SYS_STAT || CONFIG_INSTRUMENTATION_SYSCALLS)
131uint64_t     tm_end = hal_get_cycles();
132#endif
133
134#if DEBUG_SYS_STAT
135if( DEBUG_SYS_STAT < tm_end )
[604]136printk("\n[%s] thread[%x,%x] exit for file <%s> / size %d / mode %d / cycle %d\n",
137__FUNCTION__, process->pid, this->trdid, kbuf,
138k_stat.st_size, k_stat.st_mode, (uint32_t)tm_end );
[594]139#endif
140 
141#if CONFIG_INSTRUMENTATION_SYSCALLS
142hal_atomic_add( &syscalls_cumul_cost[SYS_STAT] , tm_end - tm_start );
143hal_atomic_add( &syscalls_occurences[SYS_STAT] , 1 );
144#endif
145
[1]146        return 0;
[23]147
148}  // end sys_stat()
149
Note: See TracBrowser for help on using the repository browser.