mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-27 02:50:46 +08:00
* libcsupport/src/chdir.c, libcsupport/src/chmod.c, libcsupport/src/chown.c, libcsupport/src/close.c, libcsupport/src/eval.c, libcsupport/src/fchdir.c, libcsupport/src/fchmod.c, libcsupport/src/fchown.c, libcsupport/src/fcntl.c, libcsupport/src/fdatasync.c, libcsupport/src/freenode.c, libcsupport/src/fstat.c, libcsupport/src/fsync.c, libcsupport/src/ftruncate.c, libcsupport/src/ioctl.c, libcsupport/src/link.c, libcsupport/src/lseek.c, libcsupport/src/mknod.c, libcsupport/src/mount.c, libcsupport/src/open.c, libcsupport/src/read.c, libcsupport/src/readlink.c, libcsupport/src/readv.c, libcsupport/src/rmdir.c, libcsupport/src/stat.c, libcsupport/src/statvfs.c, libcsupport/src/symlink.c, libcsupport/src/unlink.c, libcsupport/src/unmount.c, libcsupport/src/write.c: Removed filesystem checks for NULL methods checks from the main posix rountines. These are now required to have at a miminum default routines in the tables.
58 lines
1.2 KiB
C
58 lines
1.2 KiB
C
/*
|
|
* chdir() - POSIX 1003.1b - 5.2.1 - Change Current Working Directory
|
|
*
|
|
* COPYRIGHT (c) 1989-2010.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#if HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <rtems.h>
|
|
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
|
|
#include <rtems/libio_.h>
|
|
#include <rtems/seterr.h>
|
|
|
|
int chdir(
|
|
const char *pathname
|
|
)
|
|
{
|
|
rtems_filesystem_location_info_t loc;
|
|
int result;
|
|
|
|
if ( !pathname )
|
|
rtems_set_errno_and_return_minus_one( EFAULT );
|
|
|
|
/*
|
|
* Get the node where we wish to go.
|
|
*/
|
|
result = rtems_filesystem_evaluate_path(
|
|
pathname, strlen( pathname ), RTEMS_LIBIO_PERMS_SEARCH, &loc, true );
|
|
if ( result != 0 )
|
|
return -1;
|
|
|
|
/*
|
|
* Verify you can change directory into this node.
|
|
*/
|
|
if ( (*loc.ops->node_type_h)( &loc ) != RTEMS_FILESYSTEM_DIRECTORY ) {
|
|
rtems_filesystem_freenode( &loc );
|
|
rtems_set_errno_and_return_minus_one( ENOTDIR );
|
|
}
|
|
|
|
rtems_filesystem_freenode( &rtems_filesystem_current );
|
|
|
|
rtems_filesystem_current = loc;
|
|
|
|
return 0;
|
|
}
|