1 /*- 2 * Copyright (c) 1991, 1993, 1994 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 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 * 3. All advertising materials mentioning features or use of this software 14 * must display the following acknowledgement: 15 * This product includes software developed by the University of 16 * California, Berkeley and its contributors. 17 * 4. Neither the name of the University nor the names of its contributors 18 * may be used to endorse or promote products derived from this software 19 * without specific prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31 * SUCH DAMAGE. 32 */ 33 34 #ifndef lint 35 #if 0 36 static char sccsid[] = "@(#)utils.c 8.3 (Berkeley) 4/1/94"; 37 #endif 38 static const char rcsid[] = 39 "$FreeBSD$"; 40 #endif /* not lint */ 41 42 #include <sys/param.h> 43 #include <sys/stat.h> 44 #include <sys/time.h> 45 #ifdef VM_AND_BUFFER_CACHE_SYNCHRONIZED 46 #include <sys/mman.h> 47 #endif 48 49 #include <err.h> 50 #include <errno.h> 51 #include <fcntl.h> 52 #include <fts.h> 53 #include <stdio.h> 54 #include <sysexits.h> 55 #include <unistd.h> 56 57 #include "extern.h" 58 59 int 60 copy_file(entp, dne) 61 FTSENT *entp; 62 int dne; 63 { 64 static char buf[MAXBSIZE]; 65 struct stat to_stat, *fs; 66 int ch, checkch, from_fd, rcount, rval, to_fd, wcount, wresid; 67 char *bufp; 68 #ifdef VM_AND_BUFFER_CACHE_SYNCHRONIZED 69 char *p; 70 #endif 71 72 if ((from_fd = open(entp->fts_path, O_RDONLY, 0)) == -1) { 73 warn("%s", entp->fts_path); 74 return (1); 75 } 76 77 fs = entp->fts_statp; 78 79 /* 80 * If the file exists and we're interactive, verify with the user. 81 * If the file DNE, set the mode to be the from file, minus setuid 82 * bits, modified by the umask; arguably wrong, but it makes copying 83 * executables work right and it's been that way forever. (The 84 * other choice is 666 or'ed with the execute bits on the from file 85 * modified by the umask.) 86 */ 87 if (!dne) { 88 #define YESNO "(y/n [n]) " 89 if (iflag) { 90 (void)fprintf(stderr, "overwrite %s? %s", 91 to.p_path, YESNO); 92 checkch = ch = getchar(); 93 while (ch != '\n' && ch != EOF) 94 ch = getchar(); 95 if (checkch != 'y' && checkch != 'Y') { 96 (void)close(from_fd); 97 (void)fprintf(stderr, "not overwritten\n"); 98 return (1); 99 } 100 } 101 102 if (fflag) { 103 /* remove existing destination file name, 104 * create a new file */ 105 (void)unlink(to.p_path); 106 to_fd = open(to.p_path, O_WRONLY | O_TRUNC | O_CREAT, 107 fs->st_mode & ~(S_ISUID | S_ISGID)); 108 } else 109 /* overwrite existing destination file name */ 110 to_fd = open(to.p_path, O_WRONLY | O_TRUNC, 0); 111 } else 112 to_fd = open(to.p_path, O_WRONLY | O_TRUNC | O_CREAT, 113 fs->st_mode & ~(S_ISUID | S_ISGID)); 114 115 if (to_fd == -1) { 116 warn("%s", to.p_path); 117 (void)close(from_fd); 118 return (1);; 119 } 120 121 rval = 0; 122 123 /* 124 * Mmap and write if less than 8M (the limit is so we don't totally 125 * trash memory on big files. This is really a minor hack, but it 126 * wins some CPU back. 127 */ 128 #ifdef VM_AND_BUFFER_CACHE_SYNCHRONIZED 129 if (S_ISREG(fs->st_mode) && fs->st_size <= 8 * 1048576) { 130 if ((p = mmap(NULL, (size_t)fs->st_size, PROT_READ, 131 MAP_SHARED, from_fd, (off_t)0)) == MAP_FAILED) { 132 warn("%s", entp->fts_path); 133 rval = 1; 134 } else { 135 for (bufp = p, wresid = fs->st_size; ; 136 bufp += wcount, wresid -= wcount) { 137 wcount = write(to_fd, bufp, wresid); 138 if (wcount >= wresid || wcount <= 0) 139 break; 140 } 141 if (wcount != wresid) { 142 warn("%s", to.p_path); 143 rval = 1; 144 } 145 /* Some systems don't unmap on close(2). */ 146 if (munmap(p, fs->st_size) < 0) { 147 warn("%s", entp->fts_path); 148 rval = 1; 149 } 150 } 151 } else 152 #endif 153 { 154 while ((rcount = read(from_fd, buf, MAXBSIZE)) > 0) { 155 for (bufp = buf, wresid = rcount; ; 156 bufp += wcount, wresid -= wcount) { 157 wcount = write(to_fd, bufp, wresid); 158 if (wcount >= wresid || wcount <= 0) 159 break; 160 } 161 if (wcount != wresid) { 162 warn("%s", to.p_path); 163 rval = 1; 164 break; 165 } 166 } 167 if (rcount < 0) { 168 warn("%s", entp->fts_path); 169 rval = 1; 170 } 171 } 172 173 /* 174 * Don't remove the target even after an error. The target might 175 * not be a regular file, or its attributes might be important, 176 * or its contents might be irreplaceable. It would only be safe 177 * to remove it if we created it and its length is 0. 178 */ 179 180 if (pflag && setfile(fs, to_fd)) 181 rval = 1; 182 /* 183 * If the source was setuid or setgid, lose the bits unless the 184 * copy is owned by the same user and group. 185 */ 186 #define RETAINBITS \ 187 (S_ISUID | S_ISGID | S_ISVTX | S_IRWXU | S_IRWXG | S_IRWXO) 188 else if (fs->st_mode & (S_ISUID | S_ISGID) && fs->st_uid == myuid) { 189 if (fstat(to_fd, &to_stat)) { 190 warn("%s", to.p_path); 191 rval = 1; 192 } else if (fs->st_gid == to_stat.st_gid && 193 fchmod(to_fd, fs->st_mode & RETAINBITS & ~myumask)) { 194 warn("%s", to.p_path); 195 rval = 1; 196 } 197 } 198 (void)close(from_fd); 199 if (close(to_fd)) { 200 warn("%s", to.p_path); 201 rval = 1; 202 } 203 return (rval); 204 } 205 206 int 207 copy_link(p, exists) 208 FTSENT *p; 209 int exists; 210 { 211 int len; 212 char link[MAXPATHLEN]; 213 214 if ((len = readlink(p->fts_path, link, sizeof(link) - 1)) == -1) { 215 warn("readlink: %s", p->fts_path); 216 return (1); 217 } 218 link[len] = '\0'; 219 if (exists && unlink(to.p_path)) { 220 warn("unlink: %s", to.p_path); 221 return (1); 222 } 223 if (symlink(link, to.p_path)) { 224 warn("symlink: %s", link); 225 return (1); 226 } 227 return (0); 228 } 229 230 int 231 copy_fifo(from_stat, exists) 232 struct stat *from_stat; 233 int exists; 234 { 235 if (exists && unlink(to.p_path)) { 236 warn("unlink: %s", to.p_path); 237 return (1); 238 } 239 if (mkfifo(to.p_path, from_stat->st_mode)) { 240 warn("mkfifo: %s", to.p_path); 241 return (1); 242 } 243 return (pflag ? setfile(from_stat, 0) : 0); 244 } 245 246 int 247 copy_special(from_stat, exists) 248 struct stat *from_stat; 249 int exists; 250 { 251 if (exists && unlink(to.p_path)) { 252 warn("unlink: %s", to.p_path); 253 return (1); 254 } 255 if (mknod(to.p_path, from_stat->st_mode, from_stat->st_rdev)) { 256 warn("mknod: %s", to.p_path); 257 return (1); 258 } 259 return (pflag ? setfile(from_stat, 0) : 0); 260 } 261 262 263 int 264 setfile(fs, fd) 265 register struct stat *fs; 266 int fd; 267 { 268 static struct timeval tv[2]; 269 struct stat ts; 270 int rval; 271 int gotstat; 272 273 rval = 0; 274 fs->st_mode &= S_ISUID | S_ISGID | S_ISVTX | 275 S_IRWXU | S_IRWXG | S_IRWXO; 276 277 TIMESPEC_TO_TIMEVAL(&tv[0], &fs->st_atimespec); 278 TIMESPEC_TO_TIMEVAL(&tv[1], &fs->st_mtimespec); 279 if (utimes(to.p_path, tv)) { 280 warn("utimes: %s", to.p_path); 281 rval = 1; 282 } 283 if (fd ? fstat(fd, &ts) : stat(to.p_path, &ts)) 284 gotstat = 0; 285 else { 286 gotstat = 1; 287 ts.st_mode &= S_ISUID | S_ISGID | S_ISVTX | 288 S_IRWXU | S_IRWXG | S_IRWXO; 289 } 290 /* 291 * Changing the ownership probably won't succeed, unless we're root 292 * or POSIX_CHOWN_RESTRICTED is not set. Set uid/gid before setting 293 * the mode; current BSD behavior is to remove all setuid bits on 294 * chown. If chown fails, lose setuid/setgid bits. 295 */ 296 if (!gotstat || fs->st_uid != ts.st_uid || fs->st_gid != ts.st_gid) 297 if (fd ? fchown(fd, fs->st_uid, fs->st_gid) : 298 chown(to.p_path, fs->st_uid, fs->st_gid)) { 299 if (errno != EPERM) { 300 warn("chown: %s", to.p_path); 301 rval = 1; 302 } 303 fs->st_mode &= ~(S_ISUID | S_ISGID); 304 } 305 306 if (!gotstat || fs->st_mode != ts.st_mode) 307 if (fd ? fchmod(fd, fs->st_mode) : chmod(to.p_path, fs->st_mode)) { 308 warn("chown: %s", to.p_path); 309 rval = 1; 310 } 311 312 if (!gotstat || fs->st_flags != ts.st_flags) 313 if (fd ? 314 fchflags(fd, fs->st_flags) : chflags(to.p_path, fs->st_flags)) { 315 warn("chflags: %s", to.p_path); 316 rval = 1; 317 } 318 319 return (rval); 320 } 321 322 void 323 usage() 324 { 325 326 (void)fprintf(stderr, "%s\n%s\n", 327 "usage: cp [-R [-H | -L | -P]] [-f | -i] [-pv] src target", 328 " cp [-R [-H | -L | -P]] [-f | -i] [-pv] src1 ... srcN directory"); 329 exit(EX_USAGE); 330 } 331