]>
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>
73 #include <sys/mount.h>
77 #include <get_compat.h>
79 #define COMPAT_MODE(a,b) (1)
80 #endif /* __APPLE__ */
82 #include "pathnames.h"
84 int fflg
, iflg
, nflg
, vflg
;
86 int copy(char *, char *);
87 int do_move(char *, char *);
88 int fastcopy(char *, char *, struct stat
*);
92 main(int argc
, char *argv
[])
100 #endif /* __APPLE__ */
104 while ((ch
= getopt(argc
, argv
, "finv")) != -1)
131 * If the stat on the target fails or the target isn't a directory,
132 * try the move. More than 2 arguments is an error in this case.
134 if (stat(argv
[argc
- 1], &sb
) || !S_ISDIR(sb
.st_mode
)) {
137 exit(do_move(argv
[0], argv
[1]));
141 if (argc
== 2 && !lstat(argv
[0], &fsb
) && !lstat(argv
[1], &tsb
) &&
142 fsb
.st_ino
== tsb
.st_ino
&& fsb
.st_dev
== tsb
.st_dev
&&
143 fsb
.st_gen
== tsb
.st_gen
) {
145 * We appear to be trying to move a directory into itself,
146 * but it may be that the filesystem is case insensitive and
147 * we are trying to rename the directory to a case-variant.
148 * Ignoring trailing slashes, we look for any difference in
149 * the directory names. If there is a difference we do
150 * the rename, otherwise we fall-thru to the traditional
151 * error. Note the lstat calls above (rather than stat)
152 * permit the renaming of symlinks to case-variants.
156 for (p
= argv
[0] + strlen(argv
[0]); p
!= argv
[0]; ) {
161 for (q
= argv
[1] + strlen(argv
[1]); q
!= argv
[1]; ) {
166 for ( ; ; p
--, q
--) {
168 exit(do_move(argv
[0], argv
[1]));
172 if (q
== argv
[1] || *(q
-1) == '/')
174 exit(do_move(argv
[0], argv
[1]));
177 if (p
== argv
[0] || *(p
-1) == '/')
179 exit(do_move(argv
[0], argv
[1]));
183 #endif /* __APPLE__ */
185 /* It's a directory, move each file into it. */
186 if (strlen(argv
[argc
- 1]) > sizeof(path
) - 1)
187 errx(1, "%s: destination pathname too long", *argv
);
188 (void)strcpy(path
, argv
[argc
- 1]);
189 baselen
= strlen(path
);
190 endp
= &path
[baselen
];
191 if (!baselen
|| *(endp
- 1) != '/') {
195 for (rval
= 0; --argc
; ++argv
) {
197 * Find the last component of the source pathname. It
198 * may have trailing slashes.
200 p
= *argv
+ strlen(*argv
);
201 while (p
!= *argv
&& p
[-1] == '/')
203 while (p
!= *argv
&& p
[-1] != '/')
206 if ((baselen
+ (len
= strlen(p
))) >= PATH_MAX
) {
207 warnx("%s: destination pathname too long", *argv
);
210 memmove(endp
, p
, (size_t)len
+ 1);
211 if (COMPAT_MODE("bin/mv", "unix2003")) {
213 * For Unix 2003 compatibility, check if old and new are
214 * same file, and produce an error * (like on Sun) that
215 * conformance test 66 in mv.ex expects.
217 if (!stat(*argv
, &fsb
) && !stat(path
, &tsb
) &&
218 fsb
.st_ino
== tsb
.st_ino
&&
219 fsb
.st_dev
== tsb
.st_dev
&&
220 fsb
.st_gen
== tsb
.st_gen
) {
221 (void)fprintf(stderr
, "mv: %s and %s are identical\n",
223 rval
= 2; /* Like the Sun */
225 if (do_move(*argv
, path
))
229 if (do_move(*argv
, path
))
238 do_move(char *from
, char *to
)
245 * Check access. If interactive and file exists, ask user if it
246 * should be replaced. Otherwise if file exists but isn't writable
247 * make sure the user wants to clobber it.
249 if (!fflg
&& !access(to
, F_OK
)) {
251 /* prompt only if source exist */
252 if (lstat(from
, &sb
) == -1) {
257 #define YESNO "(y/n [n]) "
261 printf("%s not overwritten\n", to
);
264 (void)fprintf(stderr
, "overwrite %s? %s", to
, YESNO
);
266 } else if (access(to
, W_OK
) && !stat(to
, &sb
)) {
267 strmode(sb
.st_mode
, modep
);
268 (void)fprintf(stderr
, "override %s%s%s/%s for %s? %s",
269 modep
+ 1, modep
[9] == ' ' ? "" : " ",
270 user_from_uid(sb
.st_uid
, 0),
271 group_from_gid(sb
.st_gid
, 0), to
, YESNO
);
275 first
= ch
= getchar();
276 while (ch
!= '\n' && ch
!= EOF
)
278 if (first
!= 'y' && first
!= 'Y') {
279 (void)fprintf(stderr
, "not overwritten\n");
284 if (!rename(from
, to
)) {
286 printf("%s -> %s\n", from
, to
);
290 if (errno
== EXDEV
) {
294 /* Can't mv(1) a mount point. */
295 if (realpath(from
, path
) == NULL
) {
296 warnx("cannot resolve %s: %s", from
, path
);
299 if (!statfs(path
, &sfs
) && !strcmp(path
, sfs
.f_mntonname
)) {
300 warnx("cannot rename a mount point");
304 warn("rename %s to %s", from
, to
);
309 * If rename fails because we're trying to cross devices, and
310 * it's a regular file, do the copy internally; otherwise, use
313 if (lstat(from
, &sb
)) {
317 return (S_ISREG(sb
.st_mode
) ?
318 fastcopy(from
, to
, &sb
) : copy(from
, to
));
322 fastcopy(char *from
, char *to
, struct stat
*sbp
)
324 struct timeval tval
[2];
331 if ((from_fd
= open(from
, O_RDONLY
, 0)) < 0) {
335 if (blen
< sbp
->st_blksize
) {
338 if ((bp
= malloc((size_t)sbp
->st_blksize
)) == NULL
) {
340 warnx("malloc failed");
343 blen
= sbp
->st_blksize
;
346 open(to
, O_CREAT
| O_EXCL
| O_TRUNC
| O_WRONLY
, 0)) < 0) {
347 if (errno
== EEXIST
&& unlink(to
) == 0)
350 (void)close(from_fd
);
358 * Pre-allocate blocks for the destination file if it
361 if (fstatfs(to_fd
, &sfs
) == 0 &&
362 strcmp(sfs
.f_fstypename
, "acfs") == 0) {
366 fst
.fst_posmode
= F_PEOFPOSMODE
;
368 fst
.fst_length
= sbp
->st_size
;
370 (void) fcntl(to_fd
, F_PREALLOCATE
, &fst
);
373 #endif /* __APPLE__ */
374 while ((nread
= read(from_fd
, bp
, (size_t)blen
)) > 0)
375 if (write(to_fd
, bp
, (size_t)nread
) != nread
) {
382 warn("%s: remove", to
);
383 (void)close(from_fd
);
388 /* XATTR can fail if to_fd has mode 000 */
389 if (fcopyfile(from_fd
, to_fd
, NULL
, COPYFILE_ACL
| COPYFILE_XATTR
) < 0) {
390 warn("%s: unable to move extended attributes and ACL from %s",
394 (void)close(from_fd
);
396 oldmode
= sbp
->st_mode
& ALLPERMS
;
397 if (fchown(to_fd
, sbp
->st_uid
, sbp
->st_gid
)) {
398 warn("%s: set owner/group (was: %lu/%lu)", to
,
399 (u_long
)sbp
->st_uid
, (u_long
)sbp
->st_gid
);
400 if (oldmode
& (S_ISUID
| S_ISGID
)) {
402 "%s: owner/group changed; clearing suid/sgid (mode was 0%03o)",
404 sbp
->st_mode
&= ~(S_ISUID
| S_ISGID
);
407 if (fchmod(to_fd
, sbp
->st_mode
))
408 warn("%s: set mode (was: 0%03o)", to
, oldmode
);
411 * NFS doesn't support chflags; ignore errors unless there's reason
412 * to believe we're losing bits. (Note, this still won't be right
413 * if the server supports flags and we were trying to *remove* flags
414 * on a file that we copied, i.e., that we didn't create.)
417 if (fchflags(to_fd
, (u_int
)sbp
->st_flags
))
418 if (errno
!= ENOTSUP
|| sbp
->st_flags
!= 0)
419 warn("%s: set flags (was: 0%07o)", to
, sbp
->st_flags
);
421 tval
[0].tv_sec
= sbp
->st_atime
;
422 tval
[1].tv_sec
= sbp
->st_mtime
;
423 tval
[0].tv_usec
= tval
[1].tv_usec
= 0;
424 if (utimes(to
, tval
))
425 warn("%s: set times", to
);
433 warn("%s: remove", from
);
437 printf("%s -> %s\n", from
, to
);
442 copy(char *from
, char *to
)
446 /* posix_spawn mv from to && rm from */
448 if ((pid
= fork()) == 0) {
449 execl(_PATH_CP
, "mv", vflg
? "-PRpv" : "-PRp", "--", from
, to
,
451 warn("%s", _PATH_CP
);
454 if (waitpid(pid
, &status
, 0) == -1) {
455 warn("%s: waitpid", _PATH_CP
);
458 if (!WIFEXITED(status
)) {
459 warnx("%s: did not terminate normally", _PATH_CP
);
462 if (WEXITSTATUS(status
)) {
463 warnx("%s: terminated with %d (non-zero) status",
464 _PATH_CP
, WEXITSTATUS(status
));
467 if (!(pid
= vfork())) {
468 execl(_PATH_RM
, "mv", "-rf", "--", from
, (char *)NULL
);
469 warn("%s", _PATH_RM
);
472 if (waitpid(pid
, &status
, 0) == -1) {
473 warn("%s: waitpid", _PATH_RM
);
476 if (!WIFEXITED(status
)) {
477 warnx("%s: did not terminate normally", _PATH_RM
);
480 if (WEXITSTATUS(status
)) {
481 warnx("%s: terminated with %d (non-zero) status",
482 _PATH_RM
, WEXITSTATUS(status
));
492 (void)fprintf(stderr
, "%s\n%s\n",
493 "usage: mv [-f | -i | -n] [-v] source target",
494 " mv [-f | -i | -n] [-v] source ... directory");