blob: 2e18ffb5749a2a40b2c9f009c66892d91831dbfe [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"
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +02007#include "bb_archive.h"
Glenn L McGrath7ca04f32002-09-25 02:47:48 +00008
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
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020016 char *sctx = archive_handle->tar__sctx[PAX_NEXT_FILE];
maxwen27116ba2015-08-14 21:41:28 +020017#ifdef __BIONIC__
18 matchpathcon_init(NULL);
19#endif
J. Tang77a2c512010-03-19 14:48:51 +010020 if (!sctx)
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020021 sctx = archive_handle->tar__sctx[PAX_GLOBAL];
J. Tang77a2c512010-03-19 14:48:51 +010022 if (sctx) { /* setfscreatecon is 4 syscalls, avoid if possible */
23 setfscreatecon(sctx);
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020024 free(archive_handle->tar__sctx[PAX_NEXT_FILE]);
25 archive_handle->tar__sctx[PAX_NEXT_FILE] = NULL;
J. Tang77a2c512010-03-19 14:48:51 +010026 }
27#endif
28
Denis Vlasenkoa60936d2008-06-28 05:04:09 +000029 if (archive_handle->ah_flags & ARCHIVE_CREATE_LEADING_DIRS) {
Denys Vlasenkof94c9bf2009-11-29 07:45:33 +010030 char *slash = strrchr(file_header->name, '/');
31 if (slash) {
32 *slash = '\0';
33 bb_make_directory(file_header->name, -1, FILEUTILS_RECUR);
34 *slash = '/';
35 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +000036 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000037
Denys Vlasenkod57d6262009-09-17 02:43:14 +020038 if (archive_handle->ah_flags & ARCHIVE_UNLINK_OLD) {
Denis Vlasenko1af00ed2008-04-05 02:44:30 +000039 /* Remove the entry if it exists */
Denys Vlasenko02365a62010-04-09 10:52:52 +020040 if (!S_ISDIR(file_header->mode)) {
41 /* Is it hardlink?
42 * We encode hard links as regular files of size 0 with a symlink */
43 if (S_ISREG(file_header->mode)
44 && file_header->link_target
45 && file_header->size == 0
46 ) {
47 /* Ugly special case:
48 * tar cf t.tar hardlink1 hardlink2 hardlink1
49 * results in this tarball structure:
50 * hardlink1
51 * hardlink2 -> hardlink1
52 * hardlink1 -> hardlink1 <== !!!
53 */
54 if (strcmp(file_header->link_target, file_header->name) == 0)
55 goto ret;
56 }
57 /* Proceed with deleting */
58 if (unlink(file_header->name) == -1
59 && errno != ENOENT
60 ) {
61 bb_perror_msg_and_die("can't remove old file %s",
62 file_header->name);
63 }
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000064 }
65 }
Denis Vlasenkoa60936d2008-06-28 05:04:09 +000066 else if (archive_handle->ah_flags & ARCHIVE_EXTRACT_NEWER) {
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000067 /* Remove the existing entry if its older than the extracted entry */
Denys Vlasenko6ccaa232009-11-24 01:16:12 +010068 struct stat existing_sb;
69 if (lstat(file_header->name, &existing_sb) == -1) {
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000070 if (errno != ENOENT) {
Denys Vlasenkod57d6262009-09-17 02:43:14 +020071 bb_perror_msg_and_die("can't stat old file");
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000072 }
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000073 }
Tanguy Pruvot6fef6a32012-05-05 15:26:43 +020074 else if ((time_t) existing_sb.st_mtime >= (time_t) file_header->mtime) {
Pascal Bellard873bb312010-10-18 00:54:51 +020075 if (!(archive_handle->ah_flags & ARCHIVE_EXTRACT_QUIET)
76 && !S_ISDIR(file_header->mode)
77 ) {
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000078 bb_error_msg("%s not created: newer or "
79 "same age file exists", file_header->name);
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000080 }
81 data_skip(archive_handle);
J. Tang77a2c512010-03-19 14:48:51 +010082 goto ret;
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000083 }
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000084 else if ((unlink(file_header->name) == -1) && (errno != EISDIR)) {
Denys Vlasenkod57d6262009-09-17 02:43:14 +020085 bb_perror_msg_and_die("can't remove old file %s",
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000086 file_header->name);
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000087 }
88 }
89
Eric Andersenaff114c2004-04-14 17:51:38 +000090 /* Handle hard links separately
Denys Vlasenko02365a62010-04-09 10:52:52 +020091 * We encode hard links as regular files of size 0 with a symlink */
Denys Vlasenkof94c9bf2009-11-29 07:45:33 +010092 if (S_ISREG(file_header->mode)
93 && file_header->link_target
94 && file_header->size == 0
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000095 ) {
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000096 /* hard link */
Denis Vlasenko75103842007-06-20 14:49:47 +000097 res = link(file_header->link_target, file_header->name);
Denis Vlasenkoa60936d2008-06-28 05:04:09 +000098 if ((res == -1) && !(archive_handle->ah_flags & ARCHIVE_EXTRACT_QUIET)) {
Denys Vlasenkod57d6262009-09-17 02:43:14 +020099 bb_perror_msg("can't create %slink "
Denis Vlasenko75103842007-06-20 14:49:47 +0000100 "from %s to %s", "hard",
101 file_header->name,
102 file_header->link_target);
Glenn L McGrath3d5828f2003-08-14 02:55:15 +0000103 }
Denys Vlasenkoe69ad872010-04-09 14:11:45 +0200104 /* Hardlinks have no separate mode/ownership, skip chown/chmod */
105 goto ret;
106 }
107
108 /* Create the filesystem entry */
109 switch (file_header->mode & S_IFMT) {
110 case S_IFREG: {
111 /* Regular file */
maxwen27116ba2015-08-14 21:41:28 +0200112 char *dst_name;
Denys Vlasenkoe69ad872010-04-09 14:11:45 +0200113 int flags = O_WRONLY | O_CREAT | O_EXCL;
114 if (archive_handle->ah_flags & ARCHIVE_O_TRUNC)
115 flags = O_WRONLY | O_CREAT | O_TRUNC;
maxwen27116ba2015-08-14 21:41:28 +0200116 dst_name = file_header->name;
117#ifdef ARCHIVE_REPLACE_VIA_RENAME
118 if (archive_handle->ah_flags & ARCHIVE_REPLACE_VIA_RENAME)
119 /* rpm-style temp file name */
120 dst_name = xasprintf("%s;%x", dst_name, (int)getpid());
121#endif
122 dst_fd = xopen3(dst_name,
Denys Vlasenkoe69ad872010-04-09 14:11:45 +0200123 flags,
124 file_header->mode
125 );
126 bb_copyfd_exact_size(archive_handle->src_fd, dst_fd, file_header->size);
127 close(dst_fd);
maxwen27116ba2015-08-14 21:41:28 +0200128#ifdef ARCHIVE_REPLACE_VIA_RENAME
129 if (archive_handle->ah_flags & ARCHIVE_REPLACE_VIA_RENAME) {
130 xrename(dst_name, file_header->name);
131 free(dst_name);
132 }
133#endif
Denys Vlasenkoe69ad872010-04-09 14:11:45 +0200134 break;
135 }
136 case S_IFDIR:
137 res = mkdir(file_header->name, file_header->mode);
138 if ((res == -1)
139 && (errno != EISDIR) /* btw, Linux doesn't return this */
140 && (errno != EEXIST)
141 && !(archive_handle->ah_flags & ARCHIVE_EXTRACT_QUIET)
142 ) {
143 bb_perror_msg("can't make dir %s", file_header->name);
Denis Vlasenko714701c2006-12-22 00:21:07 +0000144 }
Denys Vlasenkoe69ad872010-04-09 14:11:45 +0200145 break;
146 case S_IFLNK:
147 /* Symlink */
Denys Vlasenko243d1752010-07-04 04:26:55 +0200148//TODO: what if file_header->link_target == NULL (say, corrupted tarball?)
Denys Vlasenkoe69ad872010-04-09 14:11:45 +0200149 res = symlink(file_header->link_target, file_header->name);
150 if ((res == -1)
151 && !(archive_handle->ah_flags & ARCHIVE_EXTRACT_QUIET)
152 ) {
153 bb_perror_msg("can't create %slink "
154 "from %s to %s", "sym",
155 file_header->name,
156 file_header->link_target);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000157 }
Denys Vlasenkoe69ad872010-04-09 14:11:45 +0200158 break;
159 case S_IFSOCK:
160 case S_IFBLK:
161 case S_IFCHR:
162 case S_IFIFO:
163 res = mknod(file_header->name, file_header->mode, file_header->device);
164 if ((res == -1)
165 && !(archive_handle->ah_flags & ARCHIVE_EXTRACT_QUIET)
166 ) {
167 bb_perror_msg("can't create node %s", file_header->name);
168 }
169 break;
170 default:
171 bb_error_msg_and_die("unrecognized file type");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000172 }
173
Denys Vlasenkod86b4c32010-06-18 02:00:55 +0200174 if (!S_ISLNK(file_header->mode)) {
175 if (!(archive_handle->ah_flags & ARCHIVE_DONT_RESTORE_OWNER)) {
Denis Vlasenko8b814b42009-04-21 00:52:21 +0000176 uid_t uid = file_header->uid;
177 gid_t gid = file_header->gid;
Denys Vlasenkod86b4c32010-06-18 02:00:55 +0200178#if ENABLE_FEATURE_TAR_UNAME_GNAME
179 if (!(archive_handle->ah_flags & ARCHIVE_NUMERIC_OWNER)) {
180 if (file_header->tar__uname) {
Denys Vlasenkof94c9bf2009-11-29 07:45:33 +0100181//TODO: cache last name/id pair?
Denys Vlasenkod86b4c32010-06-18 02:00:55 +0200182 struct passwd *pwd = getpwnam(file_header->tar__uname);
183 if (pwd) uid = pwd->pw_uid;
184 }
185 if (file_header->tar__gname) {
186 struct group *grp = getgrnam(file_header->tar__gname);
187 if (grp) gid = grp->gr_gid;
188 }
Denis Vlasenko8b814b42009-04-21 00:52:21 +0000189 }
Denys Vlasenkod86b4c32010-06-18 02:00:55 +0200190#endif
Denys Vlasenkof94c9bf2009-11-29 07:45:33 +0100191 /* GNU tar 1.15.1 uses chown, not lchown */
Denys Vlasenko885583e2009-09-17 03:02:57 +0200192 chown(file_header->name, uid, gid);
Denys Vlasenkod86b4c32010-06-18 02:00:55 +0200193 }
Denis Vlasenko75103842007-06-20 14:49:47 +0000194 /* uclibc has no lchmod, glibc is even stranger -
195 * it has lchmod which seems to do nothing!
196 * so we use chmod... */
Denys Vlasenkod57d6262009-09-17 02:43:14 +0200197 if (!(archive_handle->ah_flags & ARCHIVE_DONT_RESTORE_PERM)) {
Denis Vlasenko75103842007-06-20 14:49:47 +0000198 chmod(file_header->name, file_header->mode);
199 }
Denys Vlasenkod57d6262009-09-17 02:43:14 +0200200 if (archive_handle->ah_flags & ARCHIVE_RESTORE_DATE) {
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +0100201 struct timeval t[2];
Denys Vlasenko389cca42009-11-15 02:28:56 +0100202
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +0100203 t[1].tv_sec = t[0].tv_sec = file_header->mtime;
204 t[1].tv_usec = t[0].tv_usec = 0;
205 utimes(file_header->name, t);
Denis Vlasenko75103842007-06-20 14:49:47 +0000206 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000207 }
J. Tang77a2c512010-03-19 14:48:51 +0100208
209 ret: ;
210#if ENABLE_FEATURE_TAR_SELINUX
211 if (sctx) {
212 /* reset the context after creating an entry */
213 setfscreatecon(NULL);
214 }
215#endif
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000216}