Updated to fedora-glibc-20051219T1003
[glibc.git] / sysdeps / unix / sysv / linux / mkdirat.c
blob367441b05b559f21742b857e6ba5cc9c79d5b0f7
1 /* Copyright (C) 2005 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, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 #include <errno.h>
20 #include <fcntl.h>
21 #include <stddef.h>
22 #include <stdio.h>
23 #include <string.h>
24 #include <sys/stat.h>
25 #include <sysdep-cancel.h>
28 /* Create a new directory with permission bits MODE. But interpret
29 relative PATH names relative to the directory associated with FD. */
30 int
31 mkdirat (fd, file, mode)
32 int fd;
33 const char *file;
34 mode_t mode;
36 char *buf = NULL;
38 if (fd != AT_FDCWD && file[0] != '/')
40 size_t filelen = strlen (file);
41 static const char procfd[] = "/proc/self/fd/%d/%s";
42 /* Buffer for the path name we are going to use. It consists of
43 - the string /proc/self/fd/
44 - the file descriptor number
45 - the file name provided.
46 The final NUL is included in the sizeof. A bit of overhead
47 due to the format elements compensates for possible negative
48 numbers. */
49 size_t buflen = sizeof (procfd) + sizeof (int) * 3 + filelen;
50 buf = alloca (buflen);
52 __snprintf (buf, buflen, procfd, fd, file);
53 file = buf;
56 INTERNAL_SYSCALL_DECL (err);
57 int res = INTERNAL_SYSCALL (mkdir, err, 2, file, mode);
59 if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (res, err), 0))
61 __atfct_seterrno (INTERNAL_SYSCALL_ERRNO (res, err), fd, buf);
62 res = -1;
65 return res;