fb76669a3fd94ec9d0ba4813f6f833e6368faa8d
[oweals/opkg-lede.git] / libbb / copy_file.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini copy_file implementation for busybox
4  *
5  *
6  * Copyright (C) 2001 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
7  *
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  *
22  */
23
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <unistd.h>
27 #include <fcntl.h>
28 #include <utime.h>
29 #include <errno.h>
30 #include <dirent.h>
31 #include <stdlib.h>
32 #include <string.h>
33
34 #include "libbb.h"
35
36 int copy_file(const char *source, const char *dest, int flags)
37 {
38         struct stat source_stat;
39         struct stat dest_stat;
40         int dest_exists = 1;
41         int status = 0;
42
43         if (((flags & FILEUTILS_PRESERVE_SYMLINKS) &&
44                         lstat(source, &source_stat) < 0) ||
45                         (!(flags & FILEUTILS_PRESERVE_SYMLINKS) &&
46                          stat(source, &source_stat) < 0)) {
47                 perror_msg("%s", source);
48                 return -1;
49         }
50
51         if (stat(dest, &dest_stat) < 0) {
52                 if (errno != ENOENT) {
53                         perror_msg("unable to stat `%s'", dest);
54                         return -1;
55                 }
56                 dest_exists = 0;
57         }
58
59         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;
63         }
64
65         if (S_ISDIR(source_stat.st_mode)) {
66                 DIR *dp;
67                 struct dirent *d;
68                 mode_t saved_umask = 0;
69
70                 if (!(flags & FILEUTILS_RECUR)) {
71                         error_msg("%s: omitting directory", source);
72                         return -1;
73                 }
74
75                 /* 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;
80                         }
81                 } else {
82                         mode_t mode;
83                         saved_umask = umask(0);
84
85                         mode = source_stat.st_mode;
86                         if (!(flags & FILEUTILS_PRESERVE_STATUS))
87                                 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;
94                         }
95
96                         umask(saved_umask);
97                 }
98
99                 /* 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                 }
120
121                 /* ??? 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                 }
127
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                 }
133         } else if (S_ISREG(source_stat.st_mode)) {
134                 FILE *sfp, *dfp;
135
136                 if (dest_exists) {
137                         if ((dfp = fopen(dest, "w")) == NULL) {
138                                 if (!(flags & FILEUTILS_FORCE)) {
139                                         perror_msg("unable to open `%s'", dest);
140                                         return -1;
141                                 }
142
143                                 if (unlink(dest) < 0) {
144                                         perror_msg("unable to remove `%s'", dest);
145                                         return -1;
146                                 }
147
148                                 dest_exists = 0;
149                         }
150                 }
151
152                 if (!dest_exists) {
153                         int fd;
154
155                         if ((fd = open(dest, O_WRONLY|O_CREAT, source_stat.st_mode)) < 0 ||
156                                         (dfp = fdopen(fd, "w")) == NULL) {
157                                 if (fd >= 0)
158                                         close(fd);
159                                 perror_msg("unable to open `%s'", dest);
160                                 return -1;
161                         }
162                 }
163
164                 if ((sfp = fopen(source, "r")) == NULL) {
165                         fclose(dfp);
166                         perror_msg("unable to open `%s'", source);
167                         status = -1;
168                         goto end;
169                 }
170
171                 if (copy_file_chunk(sfp, dfp, -1) < 0)
172                         status = -1;
173
174                 if (fclose(dfp) < 0) {
175                         perror_msg("unable to close `%s'", dest);
176                         status = -1;
177                 }
178
179                 if (fclose(sfp) < 0) {
180                         perror_msg("unable to close `%s'", source);
181                         status = -1;
182                 }
183         } else if (S_ISBLK(source_stat.st_mode) || S_ISCHR(source_stat.st_mode) ||
184                         S_ISSOCK(source_stat.st_mode)) {
185                 if (mknod(dest, source_stat.st_mode, source_stat.st_rdev) < 0) {
186                         perror_msg("unable to create `%s'", dest);
187                         return -1;
188                 }
189         } else if (S_ISFIFO(source_stat.st_mode)) {
190                 if (mkfifo(dest, source_stat.st_mode) < 0) {
191                         perror_msg("cannot create fifo `%s'", dest);
192                         return -1;
193                 }
194         } else if (S_ISLNK(source_stat.st_mode)) {
195                 char *lpath = xreadlink(source);
196                 if (symlink(lpath, dest) < 0) {
197                         perror_msg("cannot create symlink `%s'", dest);
198                         return -1;
199                 }
200                 free(lpath);
201
202 #if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
203                 if (flags & FILEUTILS_PRESERVE_STATUS)
204                         if (lchown(dest, source_stat.st_uid, source_stat.st_gid) < 0)
205                                 perror_msg("unable to preserve ownership of `%s'", dest);
206 #endif
207                 return 0;
208         } else {
209                 error_msg("internal error: unrecognized file type");
210                 return -1;
211         }
212
213 end:
214
215         if (flags & FILEUTILS_PRESERVE_STATUS) {
216                 struct utimbuf times;
217
218                 times.actime = source_stat.st_atime;
219                 times.modtime = source_stat.st_mtime;
220                 if (utime(dest, &times) < 0)
221                         perror_msg("unable to preserve times of `%s'", dest);
222                 if (chown(dest, source_stat.st_uid, source_stat.st_gid) < 0) {
223                         source_stat.st_mode &= ~(S_ISUID | S_ISGID);
224                         perror_msg("unable to preserve ownership of `%s'", dest);
225                 }
226                 if (chmod(dest, source_stat.st_mode) < 0)
227                         perror_msg("unable to preserve permissions of `%s'", dest);
228         }
229
230         return status;
231 }