summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc/fchdir.c
blob: 99380514df9547f8345a6742102c336bc18069c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
 *  fchdir() - compatible with SVr4, 4.4BSD and X/OPEN - Change Directory
 *
 *  COPYRIGHT (c) 1989-2000.
 *  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.OARcorp.com/rtems/license.html.
 *
 *  $Id$
 */

#include <unistd.h>
#include <sys/stat.h>
#include <errno.h>

#include <rtems.h>
#include <rtems/libio.h>
#include "libio_.h"

int fchdir(
  int       fd
)
{
  rtems_libio_t *iop;
  
  rtems_libio_check_fd( fd );
  iop = rtems_libio_iop( fd );
  rtems_libio_check_is_open(iop);

  /*
   *  Now process the fchmod().
   */

  rtems_libio_check_permissions( iop, LIBIO_FLAGS_READ );

  /*
   * Verify you can change directory into this node.
   */

  if ( !iop->pathinfo.ops ) {
    set_errno_and_return_minus_one( ENOTSUP );
  }

  if ( !iop->pathinfo.ops->node_type ) {
    set_errno_and_return_minus_one( ENOTSUP );
  }

  if (  (*iop->pathinfo.ops->node_type)( &iop->pathinfo ) !=
                                          RTEMS_FILESYSTEM_DIRECTORY ) {
    set_errno_and_return_minus_one( ENOTDIR );
  }
  
  rtems_filesystem_freenode( &rtems_filesystem_current );

  /*
   * FIXME : I feel there should be another call to
   *         actually take into account the extra reference to
   *         this node which we are making here. I can
   *         see the freenode interface but do not see
   *         allocnode node interface. It maybe node_type.
   */
  
  rtems_filesystem_current = iop->pathinfo;
  
  return 0;
}