Home | History | Annotate | Line # | Download | only in mv
mv.c revision 1.36
      1 /* $NetBSD: mv.c,v 1.36 2006/08/21 23:09:50 christos Exp $ */
      2 
      3 /*
      4  * Copyright (c) 1989, 1993, 1994
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * This code is derived from software contributed to Berkeley by
      8  * Ken Smith of The State University of New York at Buffalo.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. Neither the name of the University nor the names of its contributors
     19  *    may be used to endorse or promote products derived from this software
     20  *    without specific prior written permission.
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32  * SUCH DAMAGE.
     33  */
     34 
     35 #include <sys/cdefs.h>
     36 #ifndef lint
     37 __COPYRIGHT("@(#) Copyright (c) 1989, 1993, 1994\n\
     38 	The Regents of the University of California.  All rights reserved.\n");
     39 #endif /* not lint */
     40 
     41 #ifndef lint
     42 #if 0
     43 static char sccsid[] = "@(#)mv.c	8.2 (Berkeley) 4/2/94";
     44 #else
     45 __RCSID("$NetBSD: mv.c,v 1.36 2006/08/21 23:09:50 christos Exp $");
     46 #endif
     47 #endif /* not lint */
     48 
     49 #include <sys/param.h>
     50 #include <sys/time.h>
     51 #include <sys/wait.h>
     52 #include <sys/stat.h>
     53 
     54 #include <err.h>
     55 #include <errno.h>
     56 #include <fcntl.h>
     57 #include <grp.h>
     58 #include <locale.h>
     59 #include <pwd.h>
     60 #include <stdio.h>
     61 #include <stdlib.h>
     62 #include <string.h>
     63 #include <unistd.h>
     64 
     65 #include "pathnames.h"
     66 
     67 int fflg, iflg, vflg;
     68 int stdin_ok;
     69 
     70 int	copy(char *, char *);
     71 int	do_move(char *, char *);
     72 int	fastcopy(char *, char *, struct stat *);
     73 void	usage(void);
     74 int	main(int, char *[]);
     75 
     76 int
     77 main(int argc, char *argv[])
     78 {
     79 	int baselen, ch, len, rval;
     80 	char *p, *endp;
     81 	struct stat sb;
     82 	char path[MAXPATHLEN + 1];
     83 
     84 	setprogname(argv[0]);
     85 	(void)setlocale(LC_ALL, "");
     86 
     87 	while ((ch = getopt(argc, argv, "ifv")) != -1)
     88 		switch (ch) {
     89 		case 'i':
     90 			fflg = 0;
     91 			iflg = 1;
     92 			break;
     93 		case 'f':
     94 			iflg = 0;
     95 			fflg = 1;
     96 			break;
     97 		case 'v':
     98 			vflg = 1;
     99 			break;
    100 		case '?':
    101 		default:
    102 			usage();
    103 		}
    104 	argc -= optind;
    105 	argv += optind;
    106 
    107 	if (argc < 2)
    108 		usage();
    109 
    110 	stdin_ok = isatty(STDIN_FILENO);
    111 
    112 	/*
    113 	 * If the stat on the target fails or the target isn't a directory,
    114 	 * try the move.  More than 2 arguments is an error in this case.
    115 	 */
    116 	if (stat(argv[argc - 1], &sb) || !S_ISDIR(sb.st_mode)) {
    117 		if (argc > 2)
    118 			usage();
    119 		exit(do_move(argv[0], argv[1]));
    120 	}
    121 
    122 	/* It's a directory, move each file into it. */
    123 	baselen = strlcpy(path, argv[argc - 1], sizeof(path));
    124 	if (baselen >= sizeof(path))
    125 		errx(1, "%s: destination pathname too long", argv[argc - 1]);
    126 	endp = &path[baselen];
    127 	if (!baselen || *(endp - 1) != '/') {
    128 		*endp++ = '/';
    129 		++baselen;
    130 	}
    131 	for (rval = 0; --argc; ++argv) {
    132 		p = *argv + strlen(*argv) - 1;
    133 		while (*p == '/' && p != *argv)
    134 			*p-- = '\0';
    135 		if ((p = strrchr(*argv, '/')) == NULL)
    136 			p = *argv;
    137 		else
    138 			++p;
    139 
    140 		if ((baselen + (len = strlen(p))) >= MAXPATHLEN) {
    141 			warnx("%s: destination pathname too long", *argv);
    142 			rval = 1;
    143 		} else {
    144 			memmove(endp, p, len + 1);
    145 			if (do_move(*argv, path))
    146 				rval = 1;
    147 		}
    148 	}
    149 	exit(rval);
    150 	/* NOTREACHED */
    151 }
    152 
    153 int
    154 do_move(char *from, char *to)
    155 {
    156 	struct stat sb;
    157 	char modep[15];
    158 
    159 	/*
    160 	 * (1)	If the destination path exists, the -f option is not specified
    161 	 *	and either of the following conditions are true:
    162 	 *
    163 	 *	(a) The permissions of the destination path do not permit
    164 	 *	    writing and the standard input is a terminal.
    165 	 *	(b) The -i option is specified.
    166 	 *
    167 	 *	the mv utility shall write a prompt to standard error and
    168 	 *	read a line from standard input.  If the response is not
    169 	 *	affirmative, mv shall do nothing more with the current
    170 	 *	source file...
    171 	 */
    172 	if (!fflg && !access(to, F_OK)) {
    173 		int ask = 1;
    174 		int ch;
    175 
    176 		if (iflg) {
    177 			if (access(from, F_OK)) {
    178 				warn("rename %s", from);
    179 				return (1);
    180 			}
    181 			(void)fprintf(stderr, "overwrite %s? ", to);
    182 		} else if (stdin_ok && access(to, W_OK) && !stat(to, &sb)) {
    183 			if (access(from, F_OK)) {
    184 				warn("rename %s", from);
    185 				return (1);
    186 			}
    187 			strmode(sb.st_mode, modep);
    188 			(void)fprintf(stderr, "override %s%s%s/%s for %s? ",
    189 			    modep + 1, modep[9] == ' ' ? "" : " ",
    190 			    user_from_uid(sb.st_uid, 0),
    191 			    group_from_gid(sb.st_gid, 0), to);
    192 		} else
    193 			ask = 0;
    194 		if (ask) {
    195 			if ((ch = getchar()) != EOF && ch != '\n')
    196 				while (getchar() != '\n');
    197 			if (ch != 'y' && ch != 'Y')
    198 				return (0);
    199 		}
    200 	}
    201 
    202 	/*
    203 	 * (2)	If rename() succeeds, mv shall do nothing more with the
    204 	 *	current source file.  If it fails for any other reason than
    205 	 *	EXDEV, mv shall write a diagnostic message to the standard
    206 	 *	error and do nothing more with the current source file.
    207 	 *
    208 	 * (3)	If the destination path exists, and it is a file of type
    209 	 *	directory and source_file is not a file of type directory,
    210 	 *	or it is a file not of type directory, and source file is
    211 	 *	a file of type directory, mv shall write a diagnostic
    212 	 *	message to standard error, and do nothing more with the
    213 	 *	current source file...
    214 	 */
    215 	if (!rename(from, to)) {
    216 		if (vflg)
    217 			printf("%s -> %s\n", from, to);
    218 		return (0);
    219 	}
    220 
    221 	if (errno != EXDEV) {
    222 		warn("rename %s to %s", from, to);
    223 		return (1);
    224 	}
    225 
    226 	/*
    227 	 * (4)	If the destination path exists, mv shall attempt to remove it.
    228 	 *	If this fails for any reason, mv shall write a diagnostic
    229 	 *	message to the standard error and do nothing more with the
    230 	 *	current source file...
    231 	 */
    232 	if (!lstat(to, &sb)) {
    233 		if ((S_ISDIR(sb.st_mode)) ? rmdir(to) : unlink(to)) {
    234 			warn("can't remove %s", to);
    235 			return (1);
    236 		}
    237 	}
    238 
    239 	/*
    240 	 * (5)	The file hierarchy rooted in source_file shall be duplicated
    241 	 *	as a file hierarchy rooted in the destination path...
    242 	 */
    243 	if (lstat(from, &sb)) {
    244 		warn("%s", from);
    245 		return (1);
    246 	}
    247 
    248 	return (S_ISREG(sb.st_mode) ?
    249 	    fastcopy(from, to, &sb) : copy(from, to));
    250 }
    251 
    252 int
    253 fastcopy(char *from, char *to, struct stat *sbp)
    254 {
    255 	struct timeval tval[2];
    256 	static u_int blen;
    257 	static char *bp;
    258 	int nread, from_fd, to_fd;
    259 
    260 	if ((from_fd = open(from, O_RDONLY, 0)) < 0) {
    261 		warn("%s", from);
    262 		return (1);
    263 	}
    264 	if ((to_fd =
    265 	    open(to, O_CREAT | O_TRUNC | O_WRONLY, sbp->st_mode)) < 0) {
    266 		warn("%s", to);
    267 		(void)close(from_fd);
    268 		return (1);
    269 	}
    270 	if (!blen && !(bp = malloc(blen = sbp->st_blksize))) {
    271 		warn(NULL);
    272 		return (1);
    273 	}
    274 	while ((nread = read(from_fd, bp, blen)) > 0)
    275 		if (write(to_fd, bp, nread) != nread) {
    276 			warn("%s", to);
    277 			goto err;
    278 		}
    279 	if (nread < 0) {
    280 		warn("%s", from);
    281 err:		if (unlink(to))
    282 			warn("%s: remove", to);
    283 		(void)close(from_fd);
    284 		(void)close(to_fd);
    285 		return (1);
    286 	}
    287 	(void)close(from_fd);
    288 #ifdef BSD4_4
    289 	TIMESPEC_TO_TIMEVAL(&tval[0], &sbp->st_atimespec);
    290 	TIMESPEC_TO_TIMEVAL(&tval[1], &sbp->st_mtimespec);
    291 #else
    292 	tval[0].tv_sec = sbp->st_atime;
    293 	tval[1].tv_sec = sbp->st_mtime;
    294 	tval[0].tv_usec = 0;
    295 	tval[1].tv_usec = 0;
    296 #endif
    297 #ifdef __SVR4
    298 	if (utimes(to, tval))
    299 #else
    300 	if (futimes(to_fd, tval))
    301 #endif
    302 		warn("%s: set times", to);
    303 	if (fchown(to_fd, sbp->st_uid, sbp->st_gid)) {
    304 		if (errno != EPERM)
    305 			warn("%s: set owner/group", to);
    306 		sbp->st_mode &= ~(S_ISUID | S_ISGID);
    307 	}
    308 	if (fchmod(to_fd, sbp->st_mode))
    309 		warn("%s: set mode", to);
    310 	if (fchflags(to_fd, sbp->st_flags) && (errno != EOPNOTSUPP))
    311 		warn("%s: set flags (was: 0%07o)", to, sbp->st_flags);
    312 
    313 	if (close(to_fd)) {
    314 		warn("%s", to);
    315 		return (1);
    316 	}
    317 
    318 	if (unlink(from)) {
    319 		warn("%s: remove", from);
    320 		return (1);
    321 	}
    322 
    323 	if (vflg)
    324 		printf("%s -> %s\n", from, to);
    325 
    326 	return (0);
    327 }
    328 
    329 int
    330 copy(char *from, char *to)
    331 {
    332 	int pid, status;
    333 
    334 	if ((pid = vfork()) == 0) {
    335 		execl(_PATH_CP, "mv", vflg ? "-PRpv" : "-PRp", from, to, NULL);
    336 		warn("%s", _PATH_CP);
    337 		_exit(1);
    338 	}
    339 	if (waitpid(pid, &status, 0) == -1) {
    340 		warn("%s: waitpid", _PATH_CP);
    341 		return (1);
    342 	}
    343 	if (!WIFEXITED(status)) {
    344 		warnx("%s: did not terminate normally", _PATH_CP);
    345 		return (1);
    346 	}
    347 	if (WEXITSTATUS(status)) {
    348 		warnx("%s: terminated with %d (non-zero) status",
    349 		    _PATH_CP, WEXITSTATUS(status));
    350 		return (1);
    351 	}
    352 	if (!(pid = vfork())) {
    353 		execl(_PATH_RM, "mv", "-rf", from, NULL);
    354 		warn("%s", _PATH_RM);
    355 		_exit(1);
    356 	}
    357 	if (waitpid(pid, &status, 0) == -1) {
    358 		warn("%s: waitpid", _PATH_RM);
    359 		return (1);
    360 	}
    361 	if (!WIFEXITED(status)) {
    362 		warnx("%s: did not terminate normally", _PATH_RM);
    363 		return (1);
    364 	}
    365 	if (WEXITSTATUS(status)) {
    366 		warnx("%s: terminated with %d (non-zero) status",
    367 		    _PATH_RM, WEXITSTATUS(status));
    368 		return (1);
    369 	}
    370 	return (0);
    371 }
    372 
    373 void
    374 usage(void)
    375 {
    376 	(void)fprintf(stderr, "usage: %s [-fiv] source target\n"
    377 	    "       %s [-fiv] source ... directory\n", getprogname(),
    378 	    getprogname());
    379 	exit(1);
    380 	/* NOTREACHED */
    381 }
    382