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
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. */
31 linkat (fromfd
, from
, tofd
, to
, flags
)
41 # ifndef __ASSUME_ATFCTS
42 if (__have_atfcts
>= 0)
45 result
= INLINE_SYSCALL (linkat
, 5, fromfd
, from
, tofd
, to
, flags
);
46 # ifndef __ASSUME_ATFCTS
47 if (result
== -1 && errno
== ENOSYS
)
55 #ifndef __ASSUME_ATFCTS
56 /* Without kernel support we cannot handle AT_SYMLINK_FOLLOW. */
63 static const char procfd
[] = "/proc/self/fd/%d/%s";
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
76 size_t buflen
= sizeof (procfd
) + sizeof (int) * 3 + filelen
;
77 buffrom
= alloca (buflen
);
79 __snprintf (buffrom
, buflen
, procfd
, fromfd
, from
);
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
95 size_t buflen
= sizeof (procfd
) + sizeof (int) * 3 + filelen
;
96 bufto
= alloca (buflen
);
98 __snprintf (bufto
, buflen
, procfd
, tofd
, to
);
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
,