1 /* Copyright (C) 1991-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
22 #include <hurd/port.h>
24 /* Make PATH be the root directory (the starting point for absolute
25 paths). Note that while on traditional UNIX systems this call is
26 restricted to the super-user, it isn't on the Hurd. */
28 chroot (const char *path
)
35 /* Append trailing "/." to directory name to force ENOTDIR if it's not a
36 directory and EACCES if we don't have search permission. */
38 if (len
>= 2 && path
[len
- 2] == '/' && path
[len
- 1] == '.')
41 /* Special-case empty file name according to POSIX. */
42 return __hurd_fail (ENOENT
);
45 char *n
= alloca (len
+ 3);
46 memcpy (n
, path
, len
);
53 dir
= __file_name_lookup (lookup
, 0, 0);
54 if (dir
== MACH_PORT_NULL
)
57 /* Prevent going through DIR's .. */
58 err
= __file_reparent (dir
, MACH_PORT_NULL
, &root
);
59 __mach_port_deallocate (__mach_task_self (), dir
);
61 return __hurd_fail (err
);
63 _hurd_port_set (&_hurd_ports
[INIT_PORT_CRDIR
], root
);