summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libcsupport/src/chroot.c
blob: e05e51029e50a059b237161b02e617fe2d6a6a9c (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
/*  
 *  chroot() -  Change Root Directory
 *  Author: fernando.ruiz@ctv.es
 *
 *  COPYRIGHT (c) 1989-1999.
 *  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$
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems.h>

#include <unistd.h>
#include <errno.h>

#include <rtems/libio_.h>

int chroot(
  const char *pathname
)
{
  int                               result;
  rtems_filesystem_location_info_t  loc;
  
  if (rtems_current_user_env == &rtems_global_user_env)
    set_errno_and_return_minus_one( ENOTSUP );

  loc = rtems_filesystem_root;     /* save the value */

  /* if has been already changed */
  rtems_filesystem_root = rtems_global_user_env.root_directory;

  result = chdir(pathname);
  if (result) {
    rtems_filesystem_root = loc; /* restore the value */
    set_errno_and_return_minus_one( errno );
  };
  rtems_filesystem_root = rtems_filesystem_current;

  result = chdir("/");
  if (result) {
    rtems_filesystem_root = loc; /* restore the value */
    set_errno_and_return_minus_one( errno );
  };

  /*XXX : Call this? Sorry but I don't known if it is necesary */
  /* The old root.
   rtems_filesystem_freenode( &loc );
   */
  return 0;
}