]>
git.saurik.com Git - apple/file_cmds.git/blob - ln/ln.c
183800e31ee4e334442bb931e1ccca220491b7e0
2 * Copyright (c) 1987, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 4. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 static char const copyright
[] =
33 "@(#) Copyright (c) 1987, 1993, 1994\n\
34 The Regents of the University of California. All rights reserved.\n";
38 static char sccsid
[] = "@(#)ln.c 8.2 (Berkeley) 3/31/94";
41 #include <sys/cdefs.h>
42 __FBSDID("$FreeBSD: src/bin/ln/ln.c,v 1.34 2006/02/14 11:08:05 glebius Exp $");
44 #include <sys/param.h>
56 int fflag
; /* Unlink existing files. */
57 int Fflag
; /* Remove empty directories also. */
58 int hflag
; /* Check new name for symlink first. */
59 int iflag
; /* Interactive mode. */
60 int sflag
; /* Symbolic, not hard, link. */
61 int vflag
; /* Verbose output. */
62 /* System link call. */
63 int (*linkf
)(const char *, const char *);
66 int linkit(const char *, const char *, int);
70 main(int argc
, char *argv
[])
79 * Test for the special case where the utility is called as
80 * "link", for which the functionality provided is greatly
83 if ((p
= rindex(argv
[0], '/')) == NULL
)
87 if (strcmp(p
, "link") == 0) {
88 while (getopt(argc
, argv
, "") != -1)
95 /* UNIX conformance requires that both operands be NOT a dir */
96 for (int i
= 0; i
< 2; i
++) {
97 if (stat(argv
[i
], &sb
) == 0 && S_ISDIR(sb
.st_mode
)){
104 exit(linkit(argv
[0], argv
[1], 0));
107 while ((ch
= getopt(argc
, argv
, "Ffhinsv")) != -1)
138 linkf
= sflag
? symlink
: link
;
139 linkch
= sflag
? '-' : '=';
142 if (Fflag
== 1 && iflag
== 0)
149 case 1: /* ln target */
150 exit(linkit(argv
[0], ".", 1));
151 case 2: /* ln target source */
152 exit(linkit(argv
[0], argv
[1], 0));
156 /* ln target1 target2 directory */
157 sourcedir
= argv
[argc
- 1];
158 if (hflag
&& lstat(sourcedir
, &sb
) == 0 && S_ISLNK(sb
.st_mode
)) {
160 * We were asked not to follow symlinks, but found one at
161 * the target--simulate "not a directory" error
164 err(1, "%s", sourcedir
);
166 if (stat(sourcedir
, &sb
))
167 err(1, "%s", sourcedir
);
168 if (!S_ISDIR(sb
.st_mode
))
170 for (exitval
= 0; *argv
!= sourcedir
; ++argv
)
171 exitval
|= linkit(*argv
, sourcedir
, 1);
176 linkit(const char *target
, const char *source
, int isdir
)
180 int ch
, exists
, first
;
185 /* If target doesn't exist, quit now. */
186 if (stat(target
, &sb
)) {
190 /* Only symbolic links to directories. */
191 if (S_ISDIR(sb
.st_mode
)) {
199 * If the source is a directory (and not a symlink if hflag),
200 * append the target's name.
203 (lstat(source
, &sb
) == 0 && S_ISDIR(sb
.st_mode
)) ||
204 (!hflag
&& stat(source
, &sb
) == 0 && S_ISDIR(sb
.st_mode
))) {
205 if (strlcpy(bbuf
, target
, sizeof(bbuf
)) >= sizeof(bbuf
) ||
206 (p
= basename(bbuf
)) == NULL
||
207 snprintf(path
, sizeof(path
), "%s/%s", source
, p
) >=
208 (ssize_t
)sizeof(path
)) {
209 errno
= ENAMETOOLONG
;
216 exists
= !lstat(source
, &sb
);
218 * If the file exists, then unlink it forcibly if -f was specified
219 * and interactively if -i was specified.
221 if (fflag
&& exists
) {
222 if (Fflag
&& S_ISDIR(sb
.st_mode
)) {
227 } else if (unlink(source
)) {
231 } else if (iflag
&& exists
) {
233 fprintf(stderr
, "replace %s? ", source
);
235 first
= ch
= getchar();
236 while(ch
!= '\n' && ch
!= EOF
)
238 if (first
!= 'y' && first
!= 'Y') {
239 fprintf(stderr
, "not replaced\n");
243 if (Fflag
&& S_ISDIR(sb
.st_mode
)) {
248 } else if (unlink(source
)) {
254 /* Attempt the link. */
255 if ((*linkf
)(target
, source
)) {
260 (void)printf("%s %c> %s\n", source
, linkch
, target
);
267 (void)fprintf(stderr
, "%s\n%s\n%s\n",
268 "usage: ln [-Ffhinsv] source_file [target_file]",
269 " ln [-Ffhinsv] source_file ... target_dir",
270 " link source_file target_file");