blob: c6ace2c33311d44d23b184d0e4dcbe3a99d640cd [file] [log] [blame]
Glenn L McGrath237ae422002-11-03 14:05:15 +00001/*
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
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000017#include <sys/types.h>
Glenn L McGrath237ae422002-11-03 14:05:15 +000018
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000019#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>
Glenn L McGrath237ae422002-11-03 14:05:15 +000026
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000027#include "libbb.h"
28#include "unarchive.h"
29
30extern 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) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000037 char *name = bb_xstrdup(file_header->name);
38 bb_make_directory (dirname(name), 0777, FILEUTILS_RECUR);
Eric Andersend9d47c32002-09-30 20:14:57 +000039 free(name);
40 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000041
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000042 /* Handle hard links seperately */
43 if (!S_ISLNK(file_header->mode) && (file_header->link_name) && (file_header->size == 0)) {
44 /* hard link */
45 res = link(file_header->link_name, file_header->name);
46 if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
47 bb_perror_msg("Couldnt create hard link");
48 }
49 } else {
50 /* Create the filesystem entry */
51 switch(file_header->mode & S_IFMT) {
52 case S_IFREG: {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000053 /* Regular file */
Glenn L McGrathafc01cd2003-04-21 11:03:29 +000054 unlink(file_header->name);
55 dst_fd = bb_xopen(file_header->name, O_WRONLY | O_CREAT | O_EXCL);
Glenn L McGrath237ae422002-11-03 14:05:15 +000056 archive_copy_file(archive_handle, dst_fd);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000057 close(dst_fd);
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000058 break;
59 }
60 case S_IFDIR:
61 unlink(file_header->name);
62 res = mkdir(file_header->name, file_header->mode);
63 if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
64 bb_perror_msg("extract_archive: %s", file_header->name);
65 }
66 break;
67 case S_IFLNK:
68 /* Symlink */
69 unlink(file_header->name);
70 res = symlink(file_header->link_name, file_header->name);
71 if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
72 bb_perror_msg("Cannot create symlink from %s to '%s'", file_header->name, file_header->link_name);
73 }
74 break;
75 case S_IFSOCK:
76 case S_IFBLK:
77 case S_IFCHR:
78 case S_IFIFO:
79 unlink(file_header->name);
80 res = mknod(file_header->name, file_header->mode, file_header->device);
81 if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
82 bb_perror_msg("Cannot create node %s", file_header->name);
83 }
84 break;
85 default:
86 bb_error_msg_and_die("Unrecognised file type");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000087 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000088 }
89
90 chmod(file_header->name, file_header->mode);
91 chown(file_header->name, file_header->uid, file_header->gid);
92
93 if (archive_handle->flags & ARCHIVE_PRESERVE_DATE) {
94 struct utimbuf t;
95 t.actime = t.modtime = file_header->mtime;
96 utime(file_header->name, &t);
97 }
98}