blob: 5fb1ab2aed36994302982f293f9725eec171fc9b [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/*
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02003 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
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
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00009void FAST_FUNC 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
J. Tang77a2c512010-03-19 14:48:51 +010015#if ENABLE_FEATURE_TAR_SELINUX
16 char *sctx = archive_handle->tar__next_file_sctx;
17 if (!sctx)
18 sctx = archive_handle->tar__global_sctx;
19 if (sctx) { /* setfscreatecon is 4 syscalls, avoid if possible */
20 setfscreatecon(sctx);
21 free(archive_handle->tar__next_file_sctx);
22 archive_handle->tar__next_file_sctx = NULL;
23 }
24#endif
25
Denis Vlasenkoa60936d2008-06-28 05:04:09 +000026 if (archive_handle->ah_flags & ARCHIVE_CREATE_LEADING_DIRS) {
Denys Vlasenkof94c9bf2009-11-29 07:45:33 +010027 char *slash = strrchr(file_header->name, '/');
28 if (slash) {
29 *slash = '\0';
30 bb_make_directory(file_header->name, -1, FILEUTILS_RECUR);
31 *slash = '/';
32 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +000033 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000034
Denys Vlasenkod57d6262009-09-17 02:43:14 +020035 if (archive_handle->ah_flags & ARCHIVE_UNLINK_OLD) {
Denis Vlasenko1af00ed2008-04-05 02:44:30 +000036 /* Remove the entry if it exists */
Denys Vlasenko02365a62010-04-09 10:52:52 +020037 if (!S_ISDIR(file_header->mode)) {
38 /* Is it hardlink?
39 * We encode hard links as regular files of size 0 with a symlink */
40 if (S_ISREG(file_header->mode)
41 && file_header->link_target
42 && file_header->size == 0
43 ) {
44 /* Ugly special case:
45 * tar cf t.tar hardlink1 hardlink2 hardlink1
46 * results in this tarball structure:
47 * hardlink1
48 * hardlink2 -> hardlink1
49 * hardlink1 -> hardlink1 <== !!!
50 */
51 if (strcmp(file_header->link_target, file_header->name) == 0)
52 goto ret;
53 }
54 /* Proceed with deleting */
55 if (unlink(file_header->name) == -1
56 && errno != ENOENT
57 ) {
58 bb_perror_msg_and_die("can't remove old file %s",
59 file_header->name);
60 }
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000061 }
62 }
Denis Vlasenkoa60936d2008-06-28 05:04:09 +000063 else if (archive_handle->ah_flags & ARCHIVE_EXTRACT_NEWER) {
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000064 /* Remove the existing entry if its older than the extracted entry */
Denys Vlasenko6ccaa232009-11-24 01:16:12 +010065 struct stat existing_sb;
66 if (lstat(file_header->name, &existing_sb) == -1) {
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000067 if (errno != ENOENT) {
Denys Vlasenkod57d6262009-09-17 02:43:14 +020068 bb_perror_msg_and_die("can't stat old file");
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000069 }
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000070 }
Denys Vlasenko6ccaa232009-11-24 01:16:12 +010071 else if (existing_sb.st_mtime >= file_header->mtime) {
Pascal Bellard873bb312010-10-18 00:54:51 +020072 if (!(archive_handle->ah_flags & ARCHIVE_EXTRACT_QUIET)
73 && !S_ISDIR(file_header->mode)
74 ) {
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000075 bb_error_msg("%s not created: newer or "
76 "same age file exists", file_header->name);
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000077 }
78 data_skip(archive_handle);
J. Tang77a2c512010-03-19 14:48:51 +010079 goto ret;
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000080 }
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000081 else if ((unlink(file_header->name) == -1) && (errno != EISDIR)) {
Denys Vlasenkod57d6262009-09-17 02:43:14 +020082 bb_perror_msg_and_die("can't remove old file %s",
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000083 file_header->name);
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000084 }
85 }
86
Eric Andersenaff114c2004-04-14 17:51:38 +000087 /* Handle hard links separately
Denys Vlasenko02365a62010-04-09 10:52:52 +020088 * We encode hard links as regular files of size 0 with a symlink */
Denys Vlasenkof94c9bf2009-11-29 07:45:33 +010089 if (S_ISREG(file_header->mode)
90 && file_header->link_target
91 && file_header->size == 0
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000092 ) {
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000093 /* hard link */
Denis Vlasenko75103842007-06-20 14:49:47 +000094 res = link(file_header->link_target, file_header->name);
Denis Vlasenkoa60936d2008-06-28 05:04:09 +000095 if ((res == -1) && !(archive_handle->ah_flags & ARCHIVE_EXTRACT_QUIET)) {
Denys Vlasenkod57d6262009-09-17 02:43:14 +020096 bb_perror_msg("can't create %slink "
Denis Vlasenko75103842007-06-20 14:49:47 +000097 "from %s to %s", "hard",
98 file_header->name,
99 file_header->link_target);
Glenn L McGrath3d5828f2003-08-14 02:55:15 +0000100 }
Denys Vlasenkoe69ad872010-04-09 14:11:45 +0200101 /* Hardlinks have no separate mode/ownership, skip chown/chmod */
102 goto ret;
103 }
104
105 /* Create the filesystem entry */
106 switch (file_header->mode & S_IFMT) {
107 case S_IFREG: {
108 /* Regular file */
109 int flags = O_WRONLY | O_CREAT | O_EXCL;
110 if (archive_handle->ah_flags & ARCHIVE_O_TRUNC)
111 flags = O_WRONLY | O_CREAT | O_TRUNC;
112 dst_fd = xopen3(file_header->name,
113 flags,
114 file_header->mode
115 );
116 bb_copyfd_exact_size(archive_handle->src_fd, dst_fd, file_header->size);
117 close(dst_fd);
118 break;
119 }
120 case S_IFDIR:
121 res = mkdir(file_header->name, file_header->mode);
122 if ((res == -1)
123 && (errno != EISDIR) /* btw, Linux doesn't return this */
124 && (errno != EEXIST)
125 && !(archive_handle->ah_flags & ARCHIVE_EXTRACT_QUIET)
126 ) {
127 bb_perror_msg("can't make dir %s", file_header->name);
Denis Vlasenko714701c2006-12-22 00:21:07 +0000128 }
Denys Vlasenkoe69ad872010-04-09 14:11:45 +0200129 break;
130 case S_IFLNK:
131 /* Symlink */
Denys Vlasenko243d1752010-07-04 04:26:55 +0200132//TODO: what if file_header->link_target == NULL (say, corrupted tarball?)
Denys Vlasenkoe69ad872010-04-09 14:11:45 +0200133 res = symlink(file_header->link_target, file_header->name);
134 if ((res == -1)
135 && !(archive_handle->ah_flags & ARCHIVE_EXTRACT_QUIET)
136 ) {
137 bb_perror_msg("can't create %slink "
138 "from %s to %s", "sym",
139 file_header->name,
140 file_header->link_target);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000141 }
Denys Vlasenkoe69ad872010-04-09 14:11:45 +0200142 break;
143 case S_IFSOCK:
144 case S_IFBLK:
145 case S_IFCHR:
146 case S_IFIFO:
147 res = mknod(file_header->name, file_header->mode, file_header->device);
148 if ((res == -1)
149 && !(archive_handle->ah_flags & ARCHIVE_EXTRACT_QUIET)
150 ) {
151 bb_perror_msg("can't create node %s", file_header->name);
152 }
153 break;
154 default:
155 bb_error_msg_and_die("unrecognized file type");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000156 }
157
Denys Vlasenkod86b4c32010-06-18 02:00:55 +0200158 if (!S_ISLNK(file_header->mode)) {
159 if (!(archive_handle->ah_flags & ARCHIVE_DONT_RESTORE_OWNER)) {
Denis Vlasenko8b814b42009-04-21 00:52:21 +0000160 uid_t uid = file_header->uid;
161 gid_t gid = file_header->gid;
Denys Vlasenkod86b4c32010-06-18 02:00:55 +0200162#if ENABLE_FEATURE_TAR_UNAME_GNAME
163 if (!(archive_handle->ah_flags & ARCHIVE_NUMERIC_OWNER)) {
164 if (file_header->tar__uname) {
Denys Vlasenkof94c9bf2009-11-29 07:45:33 +0100165//TODO: cache last name/id pair?
Denys Vlasenkod86b4c32010-06-18 02:00:55 +0200166 struct passwd *pwd = getpwnam(file_header->tar__uname);
167 if (pwd) uid = pwd->pw_uid;
168 }
169 if (file_header->tar__gname) {
170 struct group *grp = getgrnam(file_header->tar__gname);
171 if (grp) gid = grp->gr_gid;
172 }
Denis Vlasenko8b814b42009-04-21 00:52:21 +0000173 }
Denys Vlasenkod86b4c32010-06-18 02:00:55 +0200174#endif
Denys Vlasenkof94c9bf2009-11-29 07:45:33 +0100175 /* GNU tar 1.15.1 uses chown, not lchown */
Denys Vlasenko885583e2009-09-17 03:02:57 +0200176 chown(file_header->name, uid, gid);
Denys Vlasenkod86b4c32010-06-18 02:00:55 +0200177 }
Denis Vlasenko75103842007-06-20 14:49:47 +0000178 /* uclibc has no lchmod, glibc is even stranger -
179 * it has lchmod which seems to do nothing!
180 * so we use chmod... */
Denys Vlasenkod57d6262009-09-17 02:43:14 +0200181 if (!(archive_handle->ah_flags & ARCHIVE_DONT_RESTORE_PERM)) {
Denis Vlasenko75103842007-06-20 14:49:47 +0000182 chmod(file_header->name, file_header->mode);
183 }
Denys Vlasenkod57d6262009-09-17 02:43:14 +0200184 if (archive_handle->ah_flags & ARCHIVE_RESTORE_DATE) {
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +0100185 struct timeval t[2];
Denys Vlasenko389cca42009-11-15 02:28:56 +0100186
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +0100187 t[1].tv_sec = t[0].tv_sec = file_header->mtime;
188 t[1].tv_usec = t[0].tv_usec = 0;
189 utimes(file_header->name, t);
Denis Vlasenko75103842007-06-20 14:49:47 +0000190 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000191 }
J. Tang77a2c512010-03-19 14:48:51 +0100192
193 ret: ;
194#if ENABLE_FEATURE_TAR_SELINUX
195 if (sctx) {
196 /* reset the context after creating an entry */
197 setfscreatecon(NULL);
198 }
199#endif
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000200}