source: trunk/kernel/syscalls/sys_getcwd.c @ 457

Last change on this file since 457 was 457, checked in by alain, 6 years ago

This version modifies the exec syscall and fixes a large number of small bugs.
The version number has been updated (0.1)

File size: 2.7 KB
RevLine 
[1]1/*
[23]2 * sys_getcwd.c - get process current work directory
[1]3 *
[440]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
[23]24#include <kernel_config.h>
[457]25#include <hal_kernel_types.h>
[23]26#include <hal_uspace.h>
27#include <hal_special.h>
28#include <errno.h>
[1]29#include <vfs.h>
[23]30#include <vmm.h>
31#include <process.h>
[1]32#include <thread.h>
[23]33#include <printk.h>
[1]34
[23]35/* TODO: user page(s) need to be locked  [AG] */
[1]36
[23]37////////////////////////////////
38int sys_getcwd ( char     * buf, 
39                 uint32_t   nbytes )
[1]40{
[23]41        error_t    error;
[440]42    vseg_t   * vseg;
[23]43    char       kbuf[CONFIG_VFS_MAX_PATH_LENGTH];
[1]44 
[23]45        thread_t  * this    = CURRENT_THREAD;
46    process_t * process = this->process;
[1]47
[23]48    // check buffer size
49        if( nbytes < CONFIG_VFS_MAX_PATH_LENGTH )
[1]50        {
[440]51
52#if DEBUG_SYSCALLS_ERROR
53printk("\n[ERROR] in %s : buffer too small / thread %x / process %x\n",
54__FUNCTION__ , this->trdid , process->pid );
55#endif
56                this->errno = EINVAL;
[23]57        return -1;
[1]58        }
59
[23]60    // check buffer in user space
[440]61    error = vmm_get_vseg( process, (intptr_t)buf , &vseg );
[23]62
63        if( error )
[1]64        {
[440]65
66#if DEBUG_SYSCALLS_ERROR
67printk("\n[ERROR] in %s : user buffer unmapped %x / thread %x / process %x\n",
68__FUNCTION__ , (intptr_t)buf , this->trdid , process->pid );
69#endif
70                this->errno = EINVAL;
[23]71        return -1;
[1]72        }
73
[23]74    // get reference process cluster and local pointer
75    xptr_t      ref_xp  = process->ref_xp;
76    cxy_t       ref_cxy = GET_CXY( ref_xp );
77    process_t * ref_ptr = (process_t *)GET_PTR( ref_xp );
[1]78
[23]79    // get CWD lock in read mode
80        remote_rwlock_rd_lock( XPTR( ref_cxy , &ref_ptr->cwd_lock ) );
[1]81
[23]82    // call relevant VFS function
83        error = vfs_get_path( XPTR( ref_cxy , &ref_ptr->vfs_cwd_xp ) ,
84                          kbuf , CONFIG_VFS_MAX_PATH_LENGTH );
[1]85
[23]86    // release CWD lock
87        remote_rwlock_rd_unlock( XPTR( ref_cxy , &ref_ptr->cwd_lock ) );
[1]88
[23]89    // copy kernel buffer to user space
90    hal_copy_to_uspace( buf , kbuf , CONFIG_VFS_MAX_PATH_LENGTH );
[1]91
[124]92    hal_fence();
[23]93
94        return 0;
95
96}  // end sys_getcwd()
Note: See TracBrowser for help on using the repository browser.