2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / linkat.c
blobcfd0e18223bdd35d9d5d05f0e6234de196147621
1 /* Copyright (C) 2005, 2006 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 <string.h>
22 #include <stdio.h>
23 #include <sysdep.h>
24 #include <unistd.h>
25 #include <kernel-features.h>
28 /* Make a link to FROM named TO but relative paths in TO and FROM are
29 interpreted relative to FROMFD and TOFD respectively. */
30 int
31 linkat (fromfd, from, tofd, to, flags)
32 int fromfd;
33 const char *from;
34 int tofd;
35 const char *to;
36 int flags;
38 int result;
40 #ifdef __NR_linkat
41 # ifndef __ASSUME_ATFCTS
42 if (__have_atfcts >= 0)
43 # endif
45 result = INLINE_SYSCALL (linkat, 5, fromfd, from, tofd, to, flags);
46 # ifndef __ASSUME_ATFCTS
47 if (result == -1 && errno == ENOSYS)
48 __have_atfcts = -1;
49 else
50 # endif
51 return result;
53 #endif
55 #ifndef __ASSUME_ATFCTS
56 /* Without kernel support we cannot handle AT_SYMLINK_FOLLOW. */
57 if (flags != 0)
59 __set_errno (EINVAL);
60 return -1;
63 static const char procfd[] = "/proc/self/fd/%d/%s";
64 char *buffrom = NULL;
66 if (fromfd != AT_FDCWD && from[0] != '/')
68 size_t filelen = strlen (from);
69 /* Buffer for the path name we are going to use. It consists of
70 - the string /proc/self/fd/
71 - the file descriptor number
72 - the file name provided.
73 The final NUL is included in the sizeof. A bit of overhead
74 due to the format elements compensates for possible negative
75 numbers. */
76 size_t buflen = sizeof (procfd) + sizeof (int) * 3 + filelen;
77 buffrom = alloca (buflen);
79 __snprintf (buffrom, buflen, procfd, fromfd, from);
80 from = buffrom;
83 char *bufto = NULL;
85 if (tofd != AT_FDCWD && to[0] != '/')
87 size_t filelen = strlen (to);
88 /* Buffer for the path name we are going to use. It consists of
89 - the string /proc/self/fd/
90 - the file descriptor number
91 - the file name provided.
92 The final NUL is included in the sizeof. A bit of overhead
93 due to the format elements compensates for possible negative
94 numbers. */
95 size_t buflen = sizeof (procfd) + sizeof (int) * 3 + filelen;
96 bufto = alloca (buflen);
98 __snprintf (bufto, buflen, procfd, tofd, to);
99 to = bufto;
102 INTERNAL_SYSCALL_DECL (err);
104 result = INTERNAL_SYSCALL (link, err, 2, from, to);
106 if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (result, err), 0))
108 __atfct_seterrno_2 (INTERNAL_SYSCALL_ERRNO (result, err), tofd, bufto,
109 fromfd, buffrom);
110 result = -1;
113 return result;
114 #endif