blob: 6337e0c85b806772dc6c45f013d6d75e475f9012 [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 <sys/types.h>
Glenn L McGrath237ae422002-11-03 14:05:15 +00007
Glenn L McGrath7ca04f32002-09-25 02:47:48 +00008#include <errno.h>
9#include <fcntl.h>
10#include <stdlib.h>
11#include <string.h>
12#include <utime.h>
13#include <unistd.h>
14#include <stdlib.h>
Glenn L McGrath237ae422002-11-03 14:05:15 +000015
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000016#include "libbb.h"
17#include "unarchive.h"
18
Rob Landleydfba7412006-03-06 20:47:33 +000019void data_extract_all(archive_handle_t *archive_handle)
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000020{
21 file_header_t *file_header = archive_handle->file_header;
22 int dst_fd;
23 int res;
24
25 if (archive_handle->flags & ARCHIVE_CREATE_LEADING_DIRS) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000026 char *name = bb_xstrdup(file_header->name);
Eric Andersen0e020d12004-10-13 06:25:52 +000027 bb_make_directory (dirname(name), -1, FILEUTILS_RECUR);
Eric Andersend9d47c32002-09-30 20:14:57 +000028 free(name);
Eric Andersenc7bda1c2004-03-15 08:29:22 +000029 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000030
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000031 /* Check if the file already exists */
32 if (archive_handle->flags & ARCHIVE_EXTRACT_UNCONDITIONAL) {
33 /* Remove the existing entry if it exists */
Glenn L McGrath90c9df92003-11-20 08:00:38 +000034 if (((file_header->mode & S_IFMT) != S_IFDIR) && (unlink(file_header->name) == -1) && (errno != ENOENT)) {
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000035 bb_perror_msg_and_die("Couldnt remove old file");
36 }
37 }
38 else if (archive_handle->flags & ARCHIVE_EXTRACT_NEWER) {
39 /* Remove the existing entry if its older than the extracted entry */
40 struct stat statbuf;
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000041 if (lstat(file_header->name, &statbuf) == -1) {
42 if (errno != ENOENT) {
43 bb_perror_msg_and_die("Couldnt stat old file");
44 }
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000045 }
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000046 else if (statbuf.st_mtime <= file_header->mtime) {
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000047 if (!(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
48 bb_error_msg("%s not created: newer or same age file exists", file_header->name);
49 }
50 data_skip(archive_handle);
51 return;
52 }
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000053 else if ((unlink(file_header->name) == -1) && (errno != EISDIR)) {
54 bb_perror_msg_and_die("Couldnt remove old file %s", file_header->name);
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000055 }
56 }
57
Eric Andersenaff114c2004-04-14 17:51:38 +000058 /* Handle hard links separately
Glenn L McGrathe39ee012003-11-27 00:01:43 +000059 * We identified hard links as regular files of size 0 with a symlink */
60 if (S_ISREG(file_header->mode) && (file_header->link_name) && (file_header->size == 0)) {
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000061 /* hard link */
62 res = link(file_header->link_name, file_header->name);
63 if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
64 bb_perror_msg("Couldnt create hard link");
65 }
66 } else {
67 /* Create the filesystem entry */
68 switch(file_header->mode & S_IFMT) {
69 case S_IFREG: {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000070 /* Regular file */
Glenn L McGrathafc01cd2003-04-21 11:03:29 +000071 dst_fd = bb_xopen(file_header->name, O_WRONLY | O_CREAT | O_EXCL);
Glenn L McGrath7ffe1332003-11-21 22:24:57 +000072 bb_copyfd_size(archive_handle->src_fd, dst_fd, file_header->size);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000073 close(dst_fd);
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000074 break;
75 }
76 case S_IFDIR:
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000077 res = mkdir(file_header->name, file_header->mode);
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000078 if ((errno != EISDIR) && (res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000079 bb_perror_msg("extract_archive: %s", file_header->name);
80 }
81 break;
82 case S_IFLNK:
83 /* Symlink */
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000084 res = symlink(file_header->link_name, file_header->name);
85 if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
86 bb_perror_msg("Cannot create symlink from %s to '%s'", file_header->name, file_header->link_name);
87 }
88 break;
89 case S_IFSOCK:
90 case S_IFBLK:
91 case S_IFCHR:
92 case S_IFIFO:
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000093 res = mknod(file_header->name, file_header->mode, file_header->device);
94 if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
95 bb_perror_msg("Cannot create node %s", file_header->name);
96 }
97 break;
98 default:
99 bb_error_msg_and_die("Unrecognised file type");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000100 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000101 }
102
Rob Landleyf3d6c942005-10-27 22:49:08 +0000103 if (!(archive_handle->flags & ARCHIVE_NOPRESERVE_OWN)) {
104 lchown(file_header->name, file_header->uid, file_header->gid);
105 }
106 if (!(archive_handle->flags & ARCHIVE_NOPRESERVE_PERM) &&
107 (file_header->mode & S_IFMT) != S_IFLNK)
108 {
Eric Andersen67ff3a12003-12-21 08:59:24 +0000109 chmod(file_header->name, file_header->mode);
110 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000111
112 if (archive_handle->flags & ARCHIVE_PRESERVE_DATE) {
113 struct utimbuf t;
114 t.actime = t.modtime = file_header->mtime;
115 utime(file_header->name, &t);
116 }
117}