blob: 8152610367928f5d4a69ac51c1f687716e212fdc [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
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) {
Denis Vlasenkoa60936d2008-06-28 05:04:09 +000072 if (!(archive_handle->ah_flags & ARCHIVE_EXTRACT_QUIET)) {
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000073 bb_error_msg("%s not created: newer or "
74 "same age file exists", file_header->name);
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000075 }
76 data_skip(archive_handle);
J. Tang77a2c512010-03-19 14:48:51 +010077 goto ret;
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000078 }
Glenn L McGrath8dc8cb12003-11-15 23:44:31 +000079 else if ((unlink(file_header->name) == -1) && (errno != EISDIR)) {
Denys Vlasenkod57d6262009-09-17 02:43:14 +020080 bb_perror_msg_and_die("can't remove old file %s",
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000081 file_header->name);
Glenn L McGrath4cee66d2003-08-28 19:12:23 +000082 }
83 }
84
Eric Andersenaff114c2004-04-14 17:51:38 +000085 /* Handle hard links separately
Denys Vlasenko02365a62010-04-09 10:52:52 +020086 * We encode hard links as regular files of size 0 with a symlink */
Denys Vlasenkof94c9bf2009-11-29 07:45:33 +010087 if (S_ISREG(file_header->mode)
88 && file_header->link_target
89 && file_header->size == 0
Denis Vlasenkocba9ef52006-10-10 21:00:47 +000090 ) {
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000091 /* hard link */
Denis Vlasenko75103842007-06-20 14:49:47 +000092 res = link(file_header->link_target, file_header->name);
Denis Vlasenkoa60936d2008-06-28 05:04:09 +000093 if ((res == -1) && !(archive_handle->ah_flags & ARCHIVE_EXTRACT_QUIET)) {
Denys Vlasenkod57d6262009-09-17 02:43:14 +020094 bb_perror_msg("can't create %slink "
Denis Vlasenko75103842007-06-20 14:49:47 +000095 "from %s to %s", "hard",
96 file_header->name,
97 file_header->link_target);
Glenn L McGrath3d5828f2003-08-14 02:55:15 +000098 }
Denys Vlasenkoe69ad872010-04-09 14:11:45 +020099 /* Hardlinks have no separate mode/ownership, skip chown/chmod */
100 goto ret;
101 }
102
103 /* Create the filesystem entry */
104 switch (file_header->mode & S_IFMT) {
105 case S_IFREG: {
106 /* Regular file */
107 int flags = O_WRONLY | O_CREAT | O_EXCL;
108 if (archive_handle->ah_flags & ARCHIVE_O_TRUNC)
109 flags = O_WRONLY | O_CREAT | O_TRUNC;
110 dst_fd = xopen3(file_header->name,
111 flags,
112 file_header->mode
113 );
114 bb_copyfd_exact_size(archive_handle->src_fd, dst_fd, file_header->size);
115 close(dst_fd);
116 break;
117 }
118 case S_IFDIR:
119 res = mkdir(file_header->name, file_header->mode);
120 if ((res == -1)
121 && (errno != EISDIR) /* btw, Linux doesn't return this */
122 && (errno != EEXIST)
123 && !(archive_handle->ah_flags & ARCHIVE_EXTRACT_QUIET)
124 ) {
125 bb_perror_msg("can't make dir %s", file_header->name);
Denis Vlasenko714701c2006-12-22 00:21:07 +0000126 }
Denys Vlasenkoe69ad872010-04-09 14:11:45 +0200127 break;
128 case S_IFLNK:
129 /* Symlink */
130 res = symlink(file_header->link_target, file_header->name);
131 if ((res == -1)
132 && !(archive_handle->ah_flags & ARCHIVE_EXTRACT_QUIET)
133 ) {
134 bb_perror_msg("can't create %slink "
135 "from %s to %s", "sym",
136 file_header->name,
137 file_header->link_target);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000138 }
Denys Vlasenkoe69ad872010-04-09 14:11:45 +0200139 break;
140 case S_IFSOCK:
141 case S_IFBLK:
142 case S_IFCHR:
143 case S_IFIFO:
144 res = mknod(file_header->name, file_header->mode, file_header->device);
145 if ((res == -1)
146 && !(archive_handle->ah_flags & ARCHIVE_EXTRACT_QUIET)
147 ) {
148 bb_perror_msg("can't create node %s", file_header->name);
149 }
150 break;
151 default:
152 bb_error_msg_and_die("unrecognized file type");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000153 }
154
Denys Vlasenkod57d6262009-09-17 02:43:14 +0200155 if (!(archive_handle->ah_flags & ARCHIVE_DONT_RESTORE_OWNER)) {
Mike Frysinger4f239b12009-05-05 07:00:27 -0400156#if ENABLE_FEATURE_TAR_UNAME_GNAME
157 if (!(archive_handle->ah_flags & ARCHIVE_NUMERIC_OWNER)) {
Denis Vlasenko8b814b42009-04-21 00:52:21 +0000158 uid_t uid = file_header->uid;
159 gid_t gid = file_header->gid;
Denis Vlasenkoe00e5022008-02-14 20:37:54 +0000160
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +0100161 if (file_header->tar__uname) {
Denys Vlasenkof94c9bf2009-11-29 07:45:33 +0100162//TODO: cache last name/id pair?
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +0100163 struct passwd *pwd = getpwnam(file_header->tar__uname);
Denis Vlasenko8b814b42009-04-21 00:52:21 +0000164 if (pwd) uid = pwd->pw_uid;
165 }
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +0100166 if (file_header->tar__gname) {
167 struct group *grp = getgrnam(file_header->tar__gname);
Denis Vlasenko8b814b42009-04-21 00:52:21 +0000168 if (grp) gid = grp->gr_gid;
169 }
Denys Vlasenkof94c9bf2009-11-29 07:45:33 +0100170 /* GNU tar 1.15.1 uses chown, not lchown */
Denys Vlasenko885583e2009-09-17 03:02:57 +0200171 chown(file_header->name, uid, gid);
Mike Frysinger4f239b12009-05-05 07:00:27 -0400172 } else
173#endif
Denys Vlasenko885583e2009-09-17 03:02:57 +0200174 chown(file_header->name, file_header->uid, file_header->gid);
Rob Landleyf3d6c942005-10-27 22:49:08 +0000175 }
Denys Vlasenkob9762922009-08-30 01:10:17 +0200176 if (!S_ISLNK(file_header->mode)) {
Denis Vlasenko75103842007-06-20 14:49:47 +0000177 /* uclibc has no lchmod, glibc is even stranger -
178 * it has lchmod which seems to do nothing!
179 * so we use chmod... */
Denys Vlasenkod57d6262009-09-17 02:43:14 +0200180 if (!(archive_handle->ah_flags & ARCHIVE_DONT_RESTORE_PERM)) {
Denis Vlasenko75103842007-06-20 14:49:47 +0000181 chmod(file_header->name, file_header->mode);
182 }
183 /* same for utime */
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}