blob: d3902ffbe43f902aa20cece633d4bfcb8744df21 [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
Matt Kraai91b28552001-04-23 18:53:07 +00003 * Mini copy_file implementation for busybox
Eric Andersenaad1a882001-03-16 22:47:14 +00004 *
Matt Kraai91b28552001-04-23 18:53:07 +00005 *
6 * Copyright (C) 2001 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
Eric Andersenaad1a882001-03-16 22:47:14 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
Eric Andersenaad1a882001-03-16 22:47:14 +000022 */
23
Matt Kraai91b28552001-04-23 18:53:07 +000024#include <sys/types.h>
25#include <sys/stat.h>
Eric Andersenaad1a882001-03-16 22:47:14 +000026#include <unistd.h>
27#include <fcntl.h>
Matt Kraai91b28552001-04-23 18:53:07 +000028#include <utime.h>
29#include <errno.h>
30#include <dirent.h>
31#include <stdlib.h>
Manuel Novoa III a2949aa2001-06-29 18:59:32 +000032#include <string.h>
Matt Kraai91b28552001-04-23 18:53:07 +000033
Eric Andersenaad1a882001-03-16 22:47:14 +000034#include "libbb.h"
35
Matt Kraai91b28552001-04-23 18:53:07 +000036int copy_file(const char *source, const char *dest, int flags)
Eric Andersenaad1a882001-03-16 22:47:14 +000037{
Matt Kraai91b28552001-04-23 18:53:07 +000038 struct stat source_stat;
39 struct stat dest_stat;
40 int dest_exists = 1;
41 int status = 0;
Eric Andersenaad1a882001-03-16 22:47:14 +000042
Matt Kraai4c557bf2001-10-05 01:35:10 +000043 if ((!(flags & FILEUTILS_DEREFERENCE) &&
Matt Kraai01441032001-04-24 01:30:02 +000044 lstat(source, &source_stat) < 0) ||
Matt Kraai4c557bf2001-10-05 01:35:10 +000045 ((flags & FILEUTILS_DEREFERENCE) &&
Matt Kraai91b28552001-04-23 18:53:07 +000046 stat(source, &source_stat) < 0)) {
47 perror_msg("%s", source);
48 return -1;
Glenn L McGrath4949faf2001-04-11 16:23:35 +000049 }
Eric Andersenaad1a882001-03-16 22:47:14 +000050
Matt Kraai91b28552001-04-23 18:53:07 +000051 if (stat(dest, &dest_stat) < 0) {
52 if (errno != ENOENT) {
53 perror_msg("unable to stat `%s'", dest);
54 return -1;
Glenn L McGrath4949faf2001-04-11 16:23:35 +000055 }
Matt Kraai91b28552001-04-23 18:53:07 +000056 dest_exists = 0;
Eric Andersenaad1a882001-03-16 22:47:14 +000057 }
58
Matt Kraai91b28552001-04-23 18:53:07 +000059 if (dest_exists && source_stat.st_rdev == dest_stat.st_rdev &&
60 source_stat.st_ino == dest_stat.st_ino) {
61 error_msg("`%s' and `%s' are the same file", source, dest);
62 return -1;
Eric Andersenaad1a882001-03-16 22:47:14 +000063 }
64
Matt Kraai91b28552001-04-23 18:53:07 +000065 if (S_ISDIR(source_stat.st_mode)) {
66 DIR *dp;
67 struct dirent *d;
Matt Kraai218aa372001-04-30 17:32:43 +000068 mode_t saved_umask = 0;
Matt Kraai91b28552001-04-23 18:53:07 +000069
Matt Kraai01441032001-04-24 01:30:02 +000070 if (!(flags & FILEUTILS_RECUR)) {
Matt Kraai91b28552001-04-23 18:53:07 +000071 error_msg("%s: omitting directory", source);
72 return -1;
Glenn L McGrath4949faf2001-04-11 16:23:35 +000073 }
Eric Andersenaad1a882001-03-16 22:47:14 +000074
Matt Kraai91b28552001-04-23 18:53:07 +000075 /* Create DEST. */
76 if (dest_exists) {
77 if (!S_ISDIR(dest_stat.st_mode)) {
78 error_msg("`%s' is not a directory", dest);
79 return -1;
Glenn L McGrath4949faf2001-04-11 16:23:35 +000080 }
Matt Kraai91b28552001-04-23 18:53:07 +000081 } else {
Matt Kraai218aa372001-04-30 17:32:43 +000082 mode_t mode;
Matt Kraai91b28552001-04-23 18:53:07 +000083 saved_umask = umask(0);
Eric Andersenaad1a882001-03-16 22:47:14 +000084
Matt Kraai91b28552001-04-23 18:53:07 +000085 mode = source_stat.st_mode;
Matt Kraai01441032001-04-24 01:30:02 +000086 if (!(flags & FILEUTILS_PRESERVE_STATUS))
Matt Kraai91b28552001-04-23 18:53:07 +000087 mode = source_stat.st_mode & ~saved_umask;
88 mode |= S_IRWXU;
89
90 if (mkdir(dest, mode) < 0) {
91 umask(saved_umask);
92 perror_msg("cannot create directory `%s'", dest);
93 return -1;
Glenn L McGrath4949faf2001-04-11 16:23:35 +000094 }
Matt Kraai91b28552001-04-23 18:53:07 +000095
96 umask(saved_umask);
Eric Andersenaad1a882001-03-16 22:47:14 +000097 }
Matt Kraaibf0a0102001-06-11 13:58:02 +000098
Matt Kraai91b28552001-04-23 18:53:07 +000099 /* Recursively copy files in SOURCE. */
100 if ((dp = opendir(source)) == NULL) {
101 perror_msg("unable to open directory `%s'", source);
102 status = -1;
103 goto end;
104 }
105
106 while ((d = readdir(dp)) != NULL) {
107 char *new_source, *new_dest;
108
109 if (strcmp(d->d_name, ".") == 0 ||
110 strcmp(d->d_name, "..") == 0)
111 continue;
112
113 new_source = concat_path_file(source, d->d_name);
114 new_dest = concat_path_file(dest, d->d_name);
115 if (copy_file(new_source, new_dest, flags) < 0)
116 status = -1;
117 free(new_source);
118 free(new_dest);
119 }
Matt Kraaibf0a0102001-06-11 13:58:02 +0000120
Matt Kraai91b28552001-04-23 18:53:07 +0000121 /* ??? What if an error occurs in readdir? */
122
123 if (closedir(dp) < 0) {
124 perror_msg("unable to close directory `%s'", source);
125 status = -1;
126 }
Matt Kraai218aa372001-04-30 17:32:43 +0000127
128 if (!dest_exists &&
129 chmod(dest, source_stat.st_mode & ~saved_umask) < 0) {
130 perror_msg("unable to change permissions of `%s'", dest);
131 status = -1;
132 }
Matt Kraai91b28552001-04-23 18:53:07 +0000133 } else if (S_ISREG(source_stat.st_mode)) {
Eric Andersen75220b52001-08-21 23:36:32 +0000134 FILE *sfp, *dfp=NULL;
Matt Kraai91b28552001-04-23 18:53:07 +0000135
136 if (dest_exists) {
Matt Kraai01441032001-04-24 01:30:02 +0000137 if (flags & FILEUTILS_INTERACTIVE) {
Matt Kraai9ff93252001-04-24 01:12:33 +0000138 fprintf(stderr, "%s: overwrite `%s'? ", applet_name, dest);
Matt Kraai91b28552001-04-23 18:53:07 +0000139 if (!ask_confirmation())
140 return 0;
Glenn L McGrath4949faf2001-04-11 16:23:35 +0000141 }
Matt Kraai91b28552001-04-23 18:53:07 +0000142
143 if ((dfp = fopen(dest, "w")) == NULL) {
Matt Kraai01441032001-04-24 01:30:02 +0000144 if (!(flags & FILEUTILS_FORCE)) {
Matt Kraai91b28552001-04-23 18:53:07 +0000145 perror_msg("unable to open `%s'", dest);
146 return -1;
147 }
148
149 if (unlink(dest) < 0) {
150 perror_msg("unable to remove `%s'", dest);
151 return -1;
152 }
153
154 dest_exists = 0;
155 }
Eric Andersenaad1a882001-03-16 22:47:14 +0000156 }
Matt Kraai91b28552001-04-23 18:53:07 +0000157
158 if (!dest_exists) {
159 int fd;
160
161 if ((fd = open(dest, O_WRONLY|O_CREAT, source_stat.st_mode)) < 0 ||
162 (dfp = fdopen(fd, "w")) == NULL) {
163 if (fd >= 0)
164 close(fd);
165 perror_msg("unable to open `%s'", dest);
166 return -1;
167 }
168 }
169
170 if ((sfp = fopen(source, "r")) == NULL) {
171 fclose(dfp);
172 perror_msg("unable to open `%s'", source);
173 status = -1;
174 goto end;
175 }
176
Matt Kraaibf0a0102001-06-11 13:58:02 +0000177 if (copy_file_chunk(sfp, dfp, -1) < 0)
178 status = -1;
Matt Kraai91b28552001-04-23 18:53:07 +0000179
180 if (fclose(dfp) < 0) {
181 perror_msg("unable to close `%s'", dest);
182 status = -1;
183 }
184
185 if (fclose(sfp) < 0) {
186 perror_msg("unable to close `%s'", source);
187 status = -1;
188 }
189 } else if (S_ISBLK(source_stat.st_mode) || S_ISCHR(source_stat.st_mode) ||
190 S_ISSOCK(source_stat.st_mode)) {
191 if (mknod(dest, source_stat.st_mode, source_stat.st_rdev) < 0) {
192 perror_msg("unable to create `%s'", dest);
193 return -1;
194 }
195 } else if (S_ISFIFO(source_stat.st_mode)) {
Matt Kraai43ca1372001-04-30 16:43:21 +0000196 if (mkfifo(dest, source_stat.st_mode) < 0) {
Matt Kraai91b28552001-04-23 18:53:07 +0000197 perror_msg("cannot create fifo `%s'", dest);
198 return -1;
199 }
Matt Kraai91b28552001-04-23 18:53:07 +0000200 } else if (S_ISLNK(source_stat.st_mode)) {
Mark Whitley8a633262001-04-30 18:17:00 +0000201 char *lpath = xreadlink(source);
202 if (symlink(lpath, dest) < 0) {
Matt Kraai91b28552001-04-23 18:53:07 +0000203 perror_msg("cannot create symlink `%s'", dest);
204 return -1;
205 }
Mark Whitley8a633262001-04-30 18:17:00 +0000206 free(lpath);
Matt Kraai91b28552001-04-23 18:53:07 +0000207
Eric Andersenaad1a882001-03-16 22:47:14 +0000208#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
Matt Kraai01441032001-04-24 01:30:02 +0000209 if (flags & FILEUTILS_PRESERVE_STATUS)
Matt Kraai91b28552001-04-23 18:53:07 +0000210 if (lchown(dest, source_stat.st_uid, source_stat.st_gid) < 0)
211 perror_msg("unable to preserve ownership of `%s'", dest);
Eric Andersenaad1a882001-03-16 22:47:14 +0000212#endif
Matt Kraai91b28552001-04-23 18:53:07 +0000213 return 0;
214 } else {
215 error_msg("internal error: unrecognized file type");
216 return -1;
Eric Andersenaad1a882001-03-16 22:47:14 +0000217 }
218
Matt Kraai91b28552001-04-23 18:53:07 +0000219end:
220
Matt Kraai01441032001-04-24 01:30:02 +0000221 if (flags & FILEUTILS_PRESERVE_STATUS) {
Matt Kraai91b28552001-04-23 18:53:07 +0000222 struct utimbuf times;
223
224 times.actime = source_stat.st_atime;
225 times.modtime = source_stat.st_mtime;
226 if (utime(dest, &times) < 0)
227 perror_msg("unable to preserve times of `%s'", dest);
228 if (chown(dest, source_stat.st_uid, source_stat.st_gid) < 0) {
229 source_stat.st_mode &= ~(S_ISUID | S_ISGID);
230 perror_msg("unable to preserve ownership of `%s'", dest);
231 }
232 if (chmod(dest, source_stat.st_mode) < 0)
233 perror_msg("unable to preserve permissions of `%s'", dest);
Eric Andersenaad1a882001-03-16 22:47:14 +0000234 }
235
Matt Kraai24abecc2001-04-30 16:37:04 +0000236 return status;
Eric Andersenaad1a882001-03-16 22:47:14 +0000237}