aboutsummaryrefslogtreecommitdiff
path: root/libbb/copy_file.c
blob: eb9cb1a16b6bec90458465340ead4b39a80d97dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/* vi: set sw=4 ts=4: */
/*
 * Utility routines.
 *
 * Copyright (C) tons of folks.  Tracking down who wrote what
 * isn't something I'm going to worry about...  If you wrote something
 * here, please feel free to acknowledge your work.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
 * Based in part on code from sash, Copyright (c) 1999 by David I. Bell 
 * Permission has been granted to redistribute this code under the GPL.
 *
 */

#include <stdio.h>
#include <errno.h>
#include <utime.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
#include "libbb.h"


/*
 * Copy one file to another, while possibly preserving its modes, times, and
 * modes.  Returns TRUE if successful, or FALSE on a failure with an error
 * message output.  (Failure is not indicated if attributes cannot be set.)
 * -Erik Andersen
 */
int
copy_file(const char *src_name, const char *dst_name,
		 int set_modes, int follow_links, int force_flag, int quiet_flag)
{
	FILE *src_file = NULL;
	FILE *dst_file = NULL;
	struct stat srcStatBuf;
	struct stat dstStatBuf;
	struct utimbuf times;
	int src_status;
	int dst_status;

	if (follow_links == TRUE) {
		src_status = stat(src_name, &srcStatBuf);
		dst_status = stat(dst_name, &dstStatBuf);
	} else {
		src_status = lstat(src_name, &srcStatBuf);
		dst_status = lstat(dst_name, &dstStatBuf);
	}

	if (src_status < 0) {
		if (!quiet_flag) {
			perror_msg("%s", src_name);
		}
		return FALSE;
	}

	if ((dst_status < 0) || force_flag) {
		unlink(dst_name);
		dstStatBuf.st_ino = -1;
		dstStatBuf.st_dev = -1;
	}

	if ((srcStatBuf.st_dev == dstStatBuf.st_dev) &&
		(srcStatBuf.st_ino == dstStatBuf.st_ino)) {
		if (!quiet_flag) {
			error_msg("Copying file \"%s\" to itself", src_name);
		}
		return FALSE;
	}

	if (S_ISDIR(srcStatBuf.st_mode)) {
		//fprintf(stderr, "copying directory %s to %s\n", srcName, destName);
		/* Make sure the directory is writable */
		dst_status = create_path(dst_name, 0777777 ^ umask(0));
		if ((dst_status < 0) && (errno != EEXIST)) {
			if (!quiet_flag) {
				perror_msg("%s", dst_name);
			}
			return FALSE;
		}
	} else if (S_ISLNK(srcStatBuf.st_mode)) {
		char link_val[BUFSIZ + 1];
		int link_size;

		//fprintf(stderr, "copying link %s to %s\n", srcName, destName);
		/* Warning: This could possibly truncate silently, to BUFSIZ chars */
		link_size = readlink(src_name, &link_val[0], BUFSIZ);
		if (link_size < 0) {
			if (quiet_flag) {
				perror_msg("%s", src_name);
			}
			return FALSE;
		}
		link_val[link_size] = '\0';
		src_status = symlink(link_val, dst_name);
		if (src_status < 0) {
			if (!quiet_flag) {
				perror_msg("%s", dst_name);
			}
			return FALSE;
		}
#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
		if (set_modes == TRUE) {
			/* Try to set owner, but fail silently like GNU cp */
			lchown(dst_name, srcStatBuf.st_uid, srcStatBuf.st_gid);
		}
#endif
		return TRUE;
	} else if (S_ISFIFO(srcStatBuf.st_mode)) {
		//fprintf(stderr, "copying fifo %s to %s\n", srcName, destName);
		if (mkfifo(dst_name, 0644) < 0) {
			if (!quiet_flag) {
				perror_msg("%s", dst_name);
			}
			return FALSE;
		}
	} else if (S_ISBLK(srcStatBuf.st_mode) || S_ISCHR(srcStatBuf.st_mode)
			   || S_ISSOCK(srcStatBuf.st_mode)) {
		//fprintf(stderr, "copying soc, blk, or chr %s to %s\n", srcName, destName);
		if (mknod(dst_name, srcStatBuf.st_mode, srcStatBuf.st_rdev) < 0) {
			if (!quiet_flag) {
				perror_msg("%s", dst_name);
			}
			return FALSE;
		}
	} else if (S_ISREG(srcStatBuf.st_mode)) {
		//fprintf(stderr, "copying regular file %s to %s\n", srcName, destName);
		src_file = fopen(src_name, "r");
		if (src_file == NULL) {
			if (!quiet_flag) {
				perror_msg("%s", src_name);
			}
			return FALSE;
		}

	 	dst_file = fopen(dst_name, "w");
		if (dst_file == NULL) {
			if (!quiet_flag) {
				perror_msg("%s", dst_name);
			}
			fclose(src_file);
			return FALSE;
		}

		if (copy_file_chunk(src_file, dst_file, srcStatBuf.st_size)==FALSE) {
			goto error_exit;
		}

		fclose(src_file);
		if (fclose(dst_file) < 0) {
			return FALSE;
		}
	}

	if (set_modes == TRUE) {
		/* This is fine, since symlinks never get here */
		if (chown(dst_name, srcStatBuf.st_uid, srcStatBuf.st_gid) < 0)
			perror_msg("%s", dst_name);
		if (chmod(dst_name, srcStatBuf.st_mode) < 0)
			perror_msg("%s", dst_name);
		times.actime = srcStatBuf.st_atime;
		times.modtime = srcStatBuf.st_mtime;
		if (utime(dst_name, &times) < 0)
			perror_msg("%s", dst_name);
	}

	return TRUE;

error_exit:
	perror_msg("%s", dst_name);
	fclose(src_file);
	fclose(dst_file);

	return FALSE;
}

/* END CODE */
/*
Local Variables:
c-file-style: "linux"
c-basic-offset: 4
tab-width: 4
End:
*/