blob: 5d1ec302a1aa8d8e48a4333e93d91630211b264b [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);
Eric Andersen0e020d12004-10-13 06:25:52 +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 */
Glenn L McGrath90c9df92003-11-20 08:00:38 +000024 if (((file_header->mode & S_IFMT) != S_IFDIR) && (unlink(file_header->name) == -1) && (errno != ENOENT)) {
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000025 bb_perror_msg_and_die("Couldnt remove old file");
26 }
27 }
28 else if (archive_handle->flags & ARCHIVE_EXTRACT_NEWER) {
29 /* Remove the existing entry if its older than the extracted entry */
30 struct stat statbuf;
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000031 if (lstat(file_header->name, &statbuf) == -1) {
32 if (errno != ENOENT) {
33 bb_perror_msg_and_die("Couldnt stat old file");
34 }
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000035 }
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000036 else if (statbuf.st_mtime <= file_header->mtime) {
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000037 if (!(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
38 bb_error_msg("%s not created: newer or same age file exists", file_header->name);
39 }
40 data_skip(archive_handle);
41 return;
42 }
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000043 else if ((unlink(file_header->name) == -1) && (errno != EISDIR)) {
44 bb_perror_msg_and_die("Couldnt remove old file %s", file_header->name);
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000045 }
46 }
47
Eric Andersenaff114c2004-04-14 17:51:38 +000048 /* Handle hard links separately
Glenn L McGrathe39ee012003-11-27 00:01:43 +000049 * We identified hard links as regular files of size 0 with a symlink */
50 if (S_ISREG(file_header->mode) && (file_header->link_name) && (file_header->size == 0)) {
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000051 /* hard link */
52 res = link(file_header->link_name, file_header->name);
53 if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
54 bb_perror_msg("Couldnt create hard link");
55 }
56 } else {
57 /* Create the filesystem entry */
58 switch(file_header->mode & S_IFMT) {
59 case S_IFREG: {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000060 /* Regular file */
Rob Landleyd921b2e2006-08-03 15:41:12 +000061 dst_fd = xopen(file_header->name, O_WRONLY | O_CREAT | O_EXCL);
Glenn L McGrath7ffe1332003-11-21 22:24:57 +000062 bb_copyfd_size(archive_handle->src_fd, dst_fd, file_header->size);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000063 close(dst_fd);
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000064 break;
65 }
66 case S_IFDIR:
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000067 res = mkdir(file_header->name, file_header->mode);
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000068 if ((errno != EISDIR) && (res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000069 bb_perror_msg("extract_archive: %s", file_header->name);
70 }
71 break;
72 case S_IFLNK:
73 /* Symlink */
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000074 res = symlink(file_header->link_name, file_header->name);
75 if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
76 bb_perror_msg("Cannot create symlink from %s to '%s'", file_header->name, file_header->link_name);
77 }
78 break;
79 case S_IFSOCK:
80 case S_IFBLK:
81 case S_IFCHR:
82 case S_IFIFO:
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000083 res = mknod(file_header->name, file_header->mode, file_header->device);
84 if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
85 bb_perror_msg("Cannot create node %s", file_header->name);
86 }
87 break;
88 default:
89 bb_error_msg_and_die("Unrecognised file type");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000090 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000091 }
92
Rob Landleyf3d6c942005-10-27 22:49:08 +000093 if (!(archive_handle->flags & ARCHIVE_NOPRESERVE_OWN)) {
94 lchown(file_header->name, file_header->uid, file_header->gid);
95 }
96 if (!(archive_handle->flags & ARCHIVE_NOPRESERVE_PERM) &&
97 (file_header->mode & S_IFMT) != S_IFLNK)
98 {
Eric Andersen67ff3a12003-12-21 08:59:24 +000099 chmod(file_header->name, file_header->mode);
100 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000101
102 if (archive_handle->flags & ARCHIVE_PRESERVE_DATE) {
103 struct utimbuf t;
104 t.actime = t.modtime = file_header->mtime;
105 utime(file_header->name, &t);
106 }
107}