"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 2 | /* |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 3 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 6 | #include "libbb.h" |
| 7 | #include "unarchive.h" |
| 8 | |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 9 | void data_extract_all(archive_handle_t *archive_handle) |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 10 | { |
| 11 | file_header_t *file_header = archive_handle->file_header; |
| 12 | int dst_fd; |
| 13 | int res; |
| 14 | |
| 15 | if (archive_handle->flags & ARCHIVE_CREATE_LEADING_DIRS) { |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 16 | char *name = xstrdup(file_header->name); |
Eric Andersen | 0e020d1 | 2004-10-13 06:25:52 +0000 | [diff] [blame] | 17 | bb_make_directory (dirname(name), -1, FILEUTILS_RECUR); |
Eric Andersen | d9d47c3 | 2002-09-30 20:14:57 +0000 | [diff] [blame] | 18 | free(name); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 19 | } |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 20 | |
Glenn L McGrath | 4cee66d | 2003-08-28 19:12:23 +0000 | [diff] [blame] | 21 | /* Check if the file already exists */ |
| 22 | if (archive_handle->flags & ARCHIVE_EXTRACT_UNCONDITIONAL) { |
| 23 | /* Remove the existing entry if it exists */ |
Glenn L McGrath | 90c9df9 | 2003-11-20 08:00:38 +0000 | [diff] [blame] | 24 | if (((file_header->mode & S_IFMT) != S_IFDIR) && (unlink(file_header->name) == -1) && (errno != ENOENT)) { |
Glenn L McGrath | 4cee66d | 2003-08-28 19:12:23 +0000 | [diff] [blame] | 25 | bb_perror_msg_and_die("Couldnt remove old file"); |
| 26 | } |
| 27 | } |
| 28 | else if (archive_handle->flags & ARCHIVE_EXTRACT_NEWER) { |
| 29 | /* Remove the existing entry if its older than the extracted entry */ |
| 30 | struct stat statbuf; |
Glenn L McGrath | 8dc8cb1 | 2003-11-15 23:44:31 +0000 | [diff] [blame] | 31 | if (lstat(file_header->name, &statbuf) == -1) { |
| 32 | if (errno != ENOENT) { |
| 33 | bb_perror_msg_and_die("Couldnt stat old file"); |
| 34 | } |
Glenn L McGrath | 4cee66d | 2003-08-28 19:12:23 +0000 | [diff] [blame] | 35 | } |
Glenn L McGrath | 8dc8cb1 | 2003-11-15 23:44:31 +0000 | [diff] [blame] | 36 | else if (statbuf.st_mtime <= file_header->mtime) { |
Glenn L McGrath | 4cee66d | 2003-08-28 19:12:23 +0000 | [diff] [blame] | 37 | if (!(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) { |
| 38 | bb_error_msg("%s not created: newer or same age file exists", file_header->name); |
| 39 | } |
| 40 | data_skip(archive_handle); |
| 41 | return; |
| 42 | } |
Glenn L McGrath | 8dc8cb1 | 2003-11-15 23:44:31 +0000 | [diff] [blame] | 43 | else if ((unlink(file_header->name) == -1) && (errno != EISDIR)) { |
| 44 | bb_perror_msg_and_die("Couldnt remove old file %s", file_header->name); |
Glenn L McGrath | 4cee66d | 2003-08-28 19:12:23 +0000 | [diff] [blame] | 45 | } |
| 46 | } |
| 47 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 48 | /* Handle hard links separately |
Glenn L McGrath | e39ee01 | 2003-11-27 00:01:43 +0000 | [diff] [blame] | 49 | * We identified hard links as regular files of size 0 with a symlink */ |
| 50 | if (S_ISREG(file_header->mode) && (file_header->link_name) && (file_header->size == 0)) { |
Glenn L McGrath | 3d5828f | 2003-08-14 02:55:15 +0000 | [diff] [blame] | 51 | /* hard link */ |
| 52 | res = link(file_header->link_name, file_header->name); |
| 53 | if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) { |
| 54 | bb_perror_msg("Couldnt create hard link"); |
| 55 | } |
| 56 | } else { |
| 57 | /* Create the filesystem entry */ |
Denis Vlasenko | c16bd21 | 2006-09-27 19:51:06 +0000 | [diff] [blame^] | 58 | switch (file_header->mode & S_IFMT) { |
Glenn L McGrath | 3d5828f | 2003-08-14 02:55:15 +0000 | [diff] [blame] | 59 | case S_IFREG: { |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 60 | /* Regular file */ |
Rob Landley | daf58ef | 2006-08-04 17:26:58 +0000 | [diff] [blame] | 61 | dst_fd = xopen3(file_header->name, O_WRONLY | O_CREAT | O_EXCL, |
| 62 | file_header->mode); |
Glenn L McGrath | 7ffe133 | 2003-11-21 22:24:57 +0000 | [diff] [blame] | 63 | bb_copyfd_size(archive_handle->src_fd, dst_fd, file_header->size); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 64 | close(dst_fd); |
Glenn L McGrath | 3d5828f | 2003-08-14 02:55:15 +0000 | [diff] [blame] | 65 | break; |
| 66 | } |
| 67 | case S_IFDIR: |
Glenn L McGrath | 3d5828f | 2003-08-14 02:55:15 +0000 | [diff] [blame] | 68 | res = mkdir(file_header->name, file_header->mode); |
Glenn L McGrath | 8dc8cb1 | 2003-11-15 23:44:31 +0000 | [diff] [blame] | 69 | if ((errno != EISDIR) && (res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) { |
Glenn L McGrath | 3d5828f | 2003-08-14 02:55:15 +0000 | [diff] [blame] | 70 | bb_perror_msg("extract_archive: %s", file_header->name); |
| 71 | } |
| 72 | break; |
| 73 | case S_IFLNK: |
| 74 | /* Symlink */ |
Glenn L McGrath | 3d5828f | 2003-08-14 02:55:15 +0000 | [diff] [blame] | 75 | res = symlink(file_header->link_name, file_header->name); |
| 76 | if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) { |
| 77 | bb_perror_msg("Cannot create symlink from %s to '%s'", file_header->name, file_header->link_name); |
| 78 | } |
| 79 | break; |
| 80 | case S_IFSOCK: |
| 81 | case S_IFBLK: |
| 82 | case S_IFCHR: |
| 83 | case S_IFIFO: |
Glenn L McGrath | 3d5828f | 2003-08-14 02:55:15 +0000 | [diff] [blame] | 84 | res = mknod(file_header->name, file_header->mode, file_header->device); |
| 85 | if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) { |
| 86 | bb_perror_msg("Cannot create node %s", file_header->name); |
| 87 | } |
| 88 | break; |
| 89 | default: |
| 90 | bb_error_msg_and_die("Unrecognised file type"); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 91 | } |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 92 | } |
| 93 | |
Rob Landley | f3d6c94 | 2005-10-27 22:49:08 +0000 | [diff] [blame] | 94 | if (!(archive_handle->flags & ARCHIVE_NOPRESERVE_OWN)) { |
| 95 | lchown(file_header->name, file_header->uid, file_header->gid); |
| 96 | } |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 97 | |
| 98 | if (archive_handle->flags & ARCHIVE_PRESERVE_DATE) { |
| 99 | struct utimbuf t; |
| 100 | t.actime = t.modtime = file_header->mtime; |
| 101 | utime(file_header->name, &t); |
| 102 | } |
| 103 | } |