ln.c revision 1.11 1 /* $NetBSD: ln.c,v 1.11 1997/05/16 02:59:39 jtk Exp $ */
2
3 /*
4 * Copyright (c) 1987, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 */
35
36 #ifndef lint
37 static char copyright[] =
38 "@(#) Copyright (c) 1987, 1993, 1994\n\
39 The Regents of the University of California. All rights reserved.\n";
40 #endif /* not lint */
41
42 #ifndef lint
43 #if 0
44 static char sccsid[] = "@(#)ln.c 8.2 (Berkeley) 3/31/94";
45 #else
46 static char rcsid[] = "$NetBSD: ln.c,v 1.11 1997/05/16 02:59:39 jtk Exp $";
47 #endif
48 #endif /* not lint */
49
50 #include <sys/param.h>
51 #include <sys/stat.h>
52
53 #include <err.h>
54 #include <errno.h>
55 #include <stdio.h>
56 #include <stdlib.h>
57 #include <string.h>
58 #include <unistd.h>
59
60 int dirflag; /* Undocumented directory flag. */
61 int fflag; /* Unlink existing files. */
62 int lflag; /* Check new name for symlink first. */
63 int sflag; /* Symbolic, not hard, link. */
64 /* System link call. */
65 int (*linkf) __P((const char *, const char *));
66
67 int linkit __P((char *, char *, int));
68 void usage __P((void));
69
70 int
71 main(argc, argv)
72 int argc;
73 char *argv[];
74 {
75 struct stat sb;
76 int ch, exitval;
77 char *sourcedir;
78
79 while ((ch = getopt(argc, argv, "hnFfs")) != -1)
80 switch (ch) {
81 case 'F':
82 dirflag = 1; /* XXX: deliberately undocumented. */
83 break;
84 case 'f':
85 fflag = 1;
86 break;
87 case 's':
88 sflag = 1;
89 break;
90 case 'h':
91 case 'n': /* GNU compat; undocumented */
92 lflag = 1;
93 break;
94 case '?':
95 default:
96 usage();
97 }
98
99 argv += optind;
100 argc -= optind;
101
102 linkf = sflag ? symlink : link;
103
104 switch(argc) {
105 case 0:
106 usage();
107 case 1: /* ln target */
108 exit(linkit(argv[0], ".", 1));
109 case 2: /* ln target source */
110 exit(linkit(argv[0], argv[1], 0));
111 }
112 /* ln target1 target2 directory */
113 sourcedir = argv[argc - 1];
114 if (lflag && lstat(sourcedir, &sb) == 0 && S_ISLNK(sb.st_mode)) {
115 /* we were asked not to follow symlinks, but found one at
116 the target--simulate "not a directory" error */
117 errno = ENOTDIR;
118 err(1, "%s", sourcedir);
119 }
120 if (stat(sourcedir, &sb))
121 err(1, "%s", sourcedir);
122 if (!S_ISDIR(sb.st_mode))
123 usage();
124 for (exitval = 0; *argv != sourcedir; ++argv)
125 exitval |= linkit(*argv, sourcedir, 1);
126 exit(exitval);
127 }
128
129 int
130 linkit(target, source, isdir)
131 char *target, *source;
132 int isdir;
133 {
134 struct stat sb;
135 char *p, path[MAXPATHLEN];
136
137 if (!sflag) {
138 /* If target doesn't exist, quit now. */
139 if (stat(target, &sb)) {
140 warn("%s", target);
141 return (1);
142 }
143 /* Only symbolic links to directories, unless -F option used. */
144 if (!dirflag && S_ISDIR(sb.st_mode)) {
145 warnx("%s: is a directory", target);
146 return (1);
147 }
148 }
149
150 /* If the source is a directory (and not a symlink if lflag),
151 append the target's name. */
152 if (isdir ||
153 !lstat(source, &sb) && S_ISDIR(sb.st_mode) ||
154 !lflag && !stat(source, &sb) && S_ISDIR(sb.st_mode)) {
155 if ((p = strrchr(target, '/')) == NULL)
156 p = target;
157 else
158 ++p;
159 (void)snprintf(path, sizeof(path), "%s/%s", source, p);
160 source = path;
161 }
162
163 /*
164 * If the file exists, and -f was specified, unlink it.
165 * Attempt the link.
166 */
167 if (fflag && unlink(source) < 0 && errno != ENOENT ||
168 (*linkf)(target, source)) {
169 warn("%s", source);
170 return (1);
171 }
172
173 return (0);
174 }
175
176 void
177 usage()
178 {
179
180 (void)fprintf(stderr,
181 "usage:\tln [-fsh] file1 file2\n\tln [-fsh] file ... directory\n");
182 exit(1);
183 }
184