blob: 0bb5bfe33d23531b3be16c8df46249bde3dbee3e [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath237ae422002-11-03 14:05:15 +00002/*
"Robert P. J. Day"801ab142006-07-12 07:56:04 +00003 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGrath237ae422002-11-03 14:05:15 +00004 */
5
Glenn L McGrath7ca04f32002-09-25 02:47:48 +00006#include "libbb.h"
7#include "unarchive.h"
8
Rob Landleydfba7412006-03-06 20:47:33 +00009void data_extract_all(archive_handle_t *archive_handle)
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000010{
11 file_header_t *file_header = archive_handle->file_header;
12 int dst_fd;
13 int res;
14
15 if (archive_handle->flags & ARCHIVE_CREATE_LEADING_DIRS) {
Rob Landleyd921b2e2006-08-03 15:41:12 +000016 char *name = xstrdup(file_header->name);
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000017 bb_make_directory(dirname(name), -1, FILEUTILS_RECUR);
Eric Andersend9d47c32002-09-30 20:14:57 +000018 free(name);
Eric Andersenc7bda1c2004-03-15 08:29:22 +000019 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000020
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000021 /* Check if the file already exists */
22 if (archive_handle->flags & ARCHIVE_EXTRACT_UNCONDITIONAL) {
23 /* Remove the existing entry if it exists */
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000024 if (((file_header->mode & S_IFMT) != S_IFDIR)
25 && (unlink(file_header->name) == -1)
26 && (errno != ENOENT)
27 ) {
28 bb_perror_msg_and_die("cannot remove old file");
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000029 }
30 }
31 else if (archive_handle->flags & ARCHIVE_EXTRACT_NEWER) {
32 /* Remove the existing entry if its older than the extracted entry */
33 struct stat statbuf;
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000034 if (lstat(file_header->name, &statbuf) == -1) {
35 if (errno != ENOENT) {
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000036 bb_perror_msg_and_die("cannot stat old file");
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000037 }
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000038 }
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000039 else if (statbuf.st_mtime <= file_header->mtime) {
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000040 if (!(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000041 bb_error_msg("%s not created: newer or "
42 "same age file exists", file_header->name);
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000043 }
44 data_skip(archive_handle);
45 return;
46 }
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000047 else if ((unlink(file_header->name) == -1) && (errno != EISDIR)) {
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000048 bb_perror_msg_and_die("cannot remove old file %s",
49 file_header->name);
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000050 }
51 }
52
Eric Andersenaff114c2004-04-14 17:51:38 +000053 /* Handle hard links separately
Glenn L McGrathe39ee012003-11-27 00:01:43 +000054 * We identified hard links as regular files of size 0 with a symlink */
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000055 if (S_ISREG(file_header->mode) && (file_header->link_name)
56 && (file_header->size == 0)
57 ) {
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000058 /* hard link */
59 res = link(file_header->link_name, file_header->name);
60 if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000061 bb_perror_msg("cannot create hard link");
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000062 }
63 } else {
64 /* Create the filesystem entry */
Denis Vlasenkoc16bd212006-09-27 19:51:06 +000065 switch (file_header->mode & S_IFMT) {
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000066 case S_IFREG: {
67 /* Regular file */
68 dst_fd = xopen3(file_header->name, O_WRONLY | O_CREAT | O_EXCL,
69 file_header->mode);
Denis Vlasenko714701c2006-12-22 00:21:07 +000070 bb_copyfd_exact_size(archive_handle->src_fd, dst_fd, file_header->size);
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000071 close(dst_fd);
72 break;
Denis Vlasenko714701c2006-12-22 00:21:07 +000073 }
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000074 case S_IFDIR:
75 res = mkdir(file_header->name, file_header->mode);
76 if ((errno != EISDIR) && (res == -1)
77 && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)
78 ) {
79 bb_perror_msg("extract_archive: %s", file_header->name);
80 }
81 break;
82 case S_IFLNK:
83 /* Symlink */
84 res = symlink(file_header->link_name, file_header->name);
85 if ((res == -1)
86 && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)
87 ) {
88 bb_perror_msg("cannot create symlink "
89 "from %s to '%s'",
90 file_header->name,
91 file_header->link_name);
92 }
93 break;
94 case S_IFSOCK:
95 case S_IFBLK:
96 case S_IFCHR:
97 case S_IFIFO:
98 res = mknod(file_header->name, file_header->mode, file_header->device);
99 if ((res == -1)
100 && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)
101 ) {
102 bb_perror_msg("cannot create node %s", file_header->name);
103 }
104 break;
105 default:
106 bb_error_msg_and_die("unrecognized file type");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000107 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000108 }
109
Rob Landleyf3d6c942005-10-27 22:49:08 +0000110 if (!(archive_handle->flags & ARCHIVE_NOPRESERVE_OWN)) {
111 lchown(file_header->name, file_header->uid, file_header->gid);
112 }
Denis Vlasenkoe54b4722007-02-12 22:06:56 +0000113 /* uclibc has no lchmod, glibc is even stranger -
114 * it has lchmod which seems to do nothing!
115 * so we use chmod... */
116 if (!(archive_handle->flags & ARCHIVE_NOPRESERVE_PERM)
117 && (file_header->mode & S_IFMT) != S_IFLNK
118 ) {
119 chmod(file_header->name, file_header->mode);
120 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000121
122 if (archive_handle->flags & ARCHIVE_PRESERVE_DATE) {
123 struct utimbuf t;
124 t.actime = t.modtime = file_header->mtime;
125 utime(file_header->name, &t);
126 }
127}