]>
git.saurik.com Git - apple/file_cmds.git/blob - mv/mv.c
2 * Copyright (c) 1989, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Ken Smith of The State University of New York at Buffalo.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 #include <sys/cdefs.h>
39 __used
static char const copyright
[] =
40 "@(#) Copyright (c) 1989, 1993, 1994\n\
41 The Regents of the University of California. All rights reserved.\n";
46 static char sccsid
[] = "@(#)mv.c 8.2 (Berkeley) 4/2/94";
49 #include <sys/cdefs.h>
50 __RCSID("$FreeBSD: src/bin/mv/mv.c,v 1.39 2002/07/09 17:45:13 johan Exp $");
52 #include <sys/param.h>
56 #include <sys/mount.h>
74 #include <sys/mount.h>
78 #include <get_compat.h>
80 #define COMPAT_MODE(a,b) (1)
81 #endif /* __APPLE__ */
83 #include "pathnames.h"
85 int fflg
, iflg
, nflg
, vflg
;
87 int copy(char *, char *);
88 int do_move(char *, char *);
89 int fastcopy(char *, char *, struct stat
*);
93 main(int argc
, char *argv
[])
100 struct stat fsb
, tsb
;
101 #endif /* __APPLE__ */
105 while ((ch
= getopt(argc
, argv
, "finv")) != -1)
132 * If the stat on the target fails or the target isn't a directory,
133 * try the move. More than 2 arguments is an error in this case.
135 if (stat(argv
[argc
- 1], &sb
) || !S_ISDIR(sb
.st_mode
)) {
138 exit(do_move(argv
[0], argv
[1]));
142 if (argc
== 2 && !lstat(argv
[0], &fsb
) && !lstat(argv
[1], &tsb
) &&
143 fsb
.st_ino
== tsb
.st_ino
&& fsb
.st_dev
== tsb
.st_dev
&&
144 fsb
.st_gen
== tsb
.st_gen
) {
146 * We appear to be trying to move a directory into itself,
147 * but it may be that the filesystem is case insensitive and
148 * we are trying to rename the directory to a case-variant.
149 * Ignoring trailing slashes, we look for any difference in
150 * the directory names. If there is a difference we do
151 * the rename, otherwise we fall-thru to the traditional
152 * error. Note the lstat calls above (rather than stat)
153 * permit the renaming of symlinks to case-variants.
157 for (p
= argv
[0] + strlen(argv
[0]); p
!= argv
[0]; ) {
162 for (q
= argv
[1] + strlen(argv
[1]); q
!= argv
[1]; ) {
167 for ( ; ; p
--, q
--) {
169 exit(do_move(argv
[0], argv
[1]));
173 if (q
== argv
[1] || *(q
-1) == '/')
175 exit(do_move(argv
[0], argv
[1]));
178 if (p
== argv
[0] || *(p
-1) == '/')
180 exit(do_move(argv
[0], argv
[1]));
184 #endif /* __APPLE__ */
186 /* It's a directory, move each file into it. */
187 if (strlen(argv
[argc
- 1]) > sizeof(path
) - 1)
188 errx(1, "%s: destination pathname too long", *argv
);
189 (void)strcpy(path
, argv
[argc
- 1]);
190 baselen
= strlen(path
);
191 endp
= &path
[baselen
];
192 if (!baselen
|| *(endp
- 1) != '/') {
196 for (rval
= 0; --argc
; ++argv
) {
198 * Find the last component of the source pathname. It
199 * may have trailing slashes.
201 p
= *argv
+ strlen(*argv
);
202 while (p
!= *argv
&& p
[-1] == '/')
204 while (p
!= *argv
&& p
[-1] != '/')
207 if ((baselen
+ (len
= strlen(p
))) >= PATH_MAX
) {
208 warnx("%s: destination pathname too long", *argv
);
211 memmove(endp
, p
, (size_t)len
+ 1);
212 if (COMPAT_MODE("bin/mv", "unix2003")) {
214 * For Unix 2003 compatibility, check if old and new are
215 * same file, and produce an error * (like on Sun) that
216 * conformance test 66 in mv.ex expects.
218 if (!stat(*argv
, &fsb
) && !stat(path
, &tsb
) &&
219 fsb
.st_ino
== tsb
.st_ino
&&
220 fsb
.st_dev
== tsb
.st_dev
&&
221 fsb
.st_gen
== tsb
.st_gen
) {
222 (void)fprintf(stderr
, "mv: %s and %s are identical\n",
224 rval
= 2; /* Like the Sun */
226 if (do_move(*argv
, path
))
230 if (do_move(*argv
, path
))
239 do_move(char *from
, char *to
)
244 char resp
[] = {'\0', '\0'};
247 * Check access. If interactive and file exists, ask user if it
248 * should be replaced. Otherwise if file exists but isn't writable
249 * make sure the user wants to clobber it.
251 if (!fflg
&& !access(to
, F_OK
)) {
253 /* prompt only if source exist */
254 if (lstat(from
, &sb
) == -1) {
259 #define YESNO "(y/n [n]) "
263 printf("%s not overwritten\n", to
);
266 (void)fprintf(stderr
, "overwrite %s? %s", to
, YESNO
);
268 } else if (access(to
, W_OK
) && !stat(to
, &sb
)) {
269 strmode(sb
.st_mode
, modep
);
270 (void)fprintf(stderr
, "override %s%s%s/%s for %s? %s",
271 modep
+ 1, modep
[9] == ' ' ? "" : " ",
272 user_from_uid(sb
.st_uid
, 0),
273 group_from_gid(sb
.st_gid
, 0), to
, YESNO
);
277 /* Load user specified locale */
278 setlocale(LC_MESSAGES
, "");
280 first
= ch
= getchar();
281 while (ch
!= '\n' && ch
!= EOF
)
284 /* only care about the first character */
287 if (rpmatch(resp
) != 1) {
288 (void)fprintf(stderr
, "not overwritten\n");
293 if (!rename(from
, to
)) {
295 printf("%s -> %s\n", from
, to
);
299 if (errno
== EXDEV
) {
303 /* Can't mv(1) a mount point. */
304 if (realpath(from
, path
) == NULL
) {
305 warnx("cannot resolve %s: %s", from
, path
);
308 if (!statfs(path
, &sfs
) && !strcmp(path
, sfs
.f_mntonname
)) {
309 warnx("cannot rename a mount point");
313 warn("rename %s to %s", from
, to
);
318 * If rename fails because we're trying to cross devices, and
319 * it's a regular file, do the copy internally; otherwise, use
322 if (lstat(from
, &sb
)) {
326 return (S_ISREG(sb
.st_mode
) ?
327 fastcopy(from
, to
, &sb
) : copy(from
, to
));
331 fastcopy(char *from
, char *to
, struct stat
*sbp
)
333 struct timeval tval
[2];
340 if ((from_fd
= open(from
, O_RDONLY
, 0)) < 0) {
344 if (blen
< sbp
->st_blksize
) {
347 if ((bp
= malloc((size_t)sbp
->st_blksize
)) == NULL
) {
349 warnx("malloc failed");
352 blen
= sbp
->st_blksize
;
355 open(to
, O_CREAT
| O_EXCL
| O_TRUNC
| O_WRONLY
, 0)) < 0) {
356 if (errno
== EEXIST
&& unlink(to
) == 0)
359 (void)close(from_fd
);
367 * Pre-allocate blocks for the destination file if it
370 if (fstatfs(to_fd
, &sfs
) == 0 &&
371 strcmp(sfs
.f_fstypename
, "acfs") == 0) {
375 fst
.fst_posmode
= F_PEOFPOSMODE
;
377 fst
.fst_length
= sbp
->st_size
;
379 (void) fcntl(to_fd
, F_PREALLOCATE
, &fst
);
382 #endif /* __APPLE__ */
383 while ((nread
= read(from_fd
, bp
, (size_t)blen
)) > 0)
384 if (write(to_fd
, bp
, (size_t)nread
) != nread
) {
391 warn("%s: remove", to
);
392 (void)close(from_fd
);
397 /* XATTR can fail if to_fd has mode 000 */
398 if (fcopyfile(from_fd
, to_fd
, NULL
, COPYFILE_ACL
| COPYFILE_XATTR
) < 0) {
399 warn("%s: unable to move extended attributes and ACL from %s",
403 (void)close(from_fd
);
405 oldmode
= sbp
->st_mode
& ALLPERMS
;
406 if (fchown(to_fd
, sbp
->st_uid
, sbp
->st_gid
)) {
407 warn("%s: set owner/group (was: %lu/%lu)", to
,
408 (u_long
)sbp
->st_uid
, (u_long
)sbp
->st_gid
);
409 if (oldmode
& (S_ISUID
| S_ISGID
)) {
411 "%s: owner/group changed; clearing suid/sgid (mode was 0%03o)",
413 sbp
->st_mode
&= ~(S_ISUID
| S_ISGID
);
416 if (fchmod(to_fd
, sbp
->st_mode
))
417 warn("%s: set mode (was: 0%03o)", to
, oldmode
);
420 * NFS doesn't support chflags; ignore errors unless there's reason
421 * to believe we're losing bits. (Note, this still won't be right
422 * if the server supports flags and we were trying to *remove* flags
423 * on a file that we copied, i.e., that we didn't create.)
426 if (fchflags(to_fd
, (u_int
)sbp
->st_flags
))
427 if (errno
!= ENOTSUP
|| sbp
->st_flags
!= 0)
428 warn("%s: set flags (was: 0%07o)", to
, sbp
->st_flags
);
430 tval
[0].tv_sec
= sbp
->st_atime
;
431 tval
[1].tv_sec
= sbp
->st_mtime
;
432 tval
[0].tv_usec
= tval
[1].tv_usec
= 0;
433 if (utimes(to
, tval
))
434 warn("%s: set times", to
);
442 warn("%s: remove", from
);
446 printf("%s -> %s\n", from
, to
);
451 copy(char *from
, char *to
)
455 /* posix_spawn cp from to && rm from */
457 if ((pid
= fork()) == 0) {
458 execl(_PATH_CP
, "mv", vflg
? "-PRpv" : "-PRp", "--", from
, to
,
460 warn("%s", _PATH_CP
);
463 if (waitpid(pid
, &status
, 0) == -1) {
464 warn("%s: waitpid", _PATH_CP
);
467 if (!WIFEXITED(status
)) {
468 warnx("%s: did not terminate normally", _PATH_CP
);
471 if (WEXITSTATUS(status
)) {
472 warnx("%s: terminated with %d (non-zero) status",
473 _PATH_CP
, WEXITSTATUS(status
));
476 if (!(pid
= vfork())) {
477 execl(_PATH_RM
, "mv", "-rf", "--", from
, (char *)NULL
);
478 warn("%s", _PATH_RM
);
481 if (waitpid(pid
, &status
, 0) == -1) {
482 warn("%s: waitpid", _PATH_RM
);
485 if (!WIFEXITED(status
)) {
486 warnx("%s: did not terminate normally", _PATH_RM
);
489 if (WEXITSTATUS(status
)) {
490 warnx("%s: terminated with %d (non-zero) status",
491 _PATH_RM
, WEXITSTATUS(status
));
501 (void)fprintf(stderr
, "%s\n%s\n",
502 "usage: mv [-f | -i | -n] [-v] source target",
503 " mv [-f | -i | -n] [-v] source ... directory");