Dont unlink when testing !
[oweals/busybox.git] / archival / libunarchive / data_extract_all.c
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or
5  *  (at your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful,
8  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *  GNU General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15  */
16
17 #include <sys/types.h>
18
19 #include <errno.h>
20 #include <fcntl.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <utime.h>
24 #include <unistd.h>
25 #include <stdlib.h>
26
27 #include "libbb.h"
28 #include "unarchive.h"
29
30 extern void data_extract_all(archive_handle_t *archive_handle)
31 {
32         file_header_t *file_header = archive_handle->file_header;
33         int dst_fd;
34         int res;
35
36         if (archive_handle->flags & ARCHIVE_CREATE_LEADING_DIRS) {
37                 char *name = bb_xstrdup(file_header->name);
38                 bb_make_directory (dirname(name), 0777, FILEUTILS_RECUR);
39                 free(name);
40         }                  
41
42         /* Check if the file already exists */
43         if (archive_handle->flags & ARCHIVE_EXTRACT_UNCONDITIONAL) {
44                 /* Remove the existing entry if it exists */
45                 if ((unlink(file_header->name) == -1) && (errno != ENOENT)) {
46                         bb_perror_msg_and_die("Couldnt remove old file");
47                 }
48         }
49         else if (archive_handle->flags & ARCHIVE_EXTRACT_NEWER) {
50                 /* Remove the existing entry if its older than the extracted entry */
51                 struct stat statbuf;
52                 if ((lstat(file_header->name, &statbuf) == -1) && (errno != ENOENT)) {
53                         bb_perror_msg_and_die("Couldnt stat old file");
54                 }
55                 if (statbuf.st_mtime <= file_header->mtime) {
56                         if (!(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
57                                 bb_error_msg("%s not created: newer or same age file exists", file_header->name);
58                         }
59                         data_skip(archive_handle);
60                         return;
61                 }
62                 if ((unlink(file_header->name) == -1) && (errno != ENOENT)) {
63                         bb_perror_msg_and_die("Couldnt remove old file");
64                 }
65         }
66
67         /* Handle hard links seperately */
68         if (!S_ISLNK(file_header->mode) && (file_header->link_name) && (file_header->size == 0)) {
69                 /* hard link */
70                 res = link(file_header->link_name, file_header->name);
71                 if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
72                         bb_perror_msg("Couldnt create hard link");
73                 }
74         } else {
75                 /* Create the filesystem entry */
76                 switch(file_header->mode & S_IFMT) {
77                         case S_IFREG: {
78                                 /* Regular file */
79                                 unlink(file_header->name);
80                                 dst_fd = bb_xopen(file_header->name, O_WRONLY | O_CREAT | O_EXCL);
81                                 archive_copy_file(archive_handle, dst_fd);
82                                 close(dst_fd);
83                                 break;
84                                 }
85                         case S_IFDIR:
86                                 unlink(file_header->name);
87                                 res = mkdir(file_header->name, file_header->mode);
88                                 if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
89                                         bb_perror_msg("extract_archive: %s", file_header->name);
90                                 }
91                                 break;
92                         case S_IFLNK:
93                                 /* Symlink */
94                                 unlink(file_header->name);
95                                 res = symlink(file_header->link_name, file_header->name);
96                                 if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
97                                         bb_perror_msg("Cannot create symlink from %s to '%s'", file_header->name, file_header->link_name);
98                                 }
99                                 break;
100                         case S_IFSOCK:
101                         case S_IFBLK:
102                         case S_IFCHR:
103                         case S_IFIFO:
104                                 unlink(file_header->name);
105                                 res = mknod(file_header->name, file_header->mode, file_header->device);
106                                 if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
107                                         bb_perror_msg("Cannot create node %s", file_header->name);
108                                 }
109                                 break;
110                         default:
111                                 bb_error_msg_and_die("Unrecognised file type");
112                 }
113         }
114
115         chmod(file_header->name, file_header->mode);
116         chown(file_header->name, file_header->uid, file_header->gid);
117
118         if (archive_handle->flags & ARCHIVE_PRESERVE_DATE) {
119                 struct utimbuf t;
120                 t.actime = t.modtime = file_header->mtime;
121                 utime(file_header->name, &t);
122         }
123 }