Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 1 | /* |
| 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 McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 17 | #include <sys/types.h> |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 18 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 19 | #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 McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 26 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 27 | #include "libbb.h" |
| 28 | #include "unarchive.h" |
| 29 | |
| 30 | extern 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) { |
Eric Andersen | 71ae64b | 2002-10-10 04:20:21 +0000 | [diff] [blame] | 37 | char *name = xstrdup(file_header->name); |
Eric Andersen | d9d47c3 | 2002-09-30 20:14:57 +0000 | [diff] [blame] | 38 | make_directory (dirname(name), 0777, FILEUTILS_RECUR); |
| 39 | free(name); |
| 40 | } |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 41 | |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 42 | /* Create the filesystem entry */ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 43 | switch(file_header->mode & S_IFMT) { |
| 44 | case S_IFREG: { |
| 45 | #ifdef CONFIG_CPIO |
| 46 | if (file_header->link_name) { |
| 47 | /* hard link */ |
| 48 | res = link(file_header->link_name, file_header->name); |
| 49 | if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) { |
| 50 | perror_msg("Couldnt create hard link"); |
| 51 | } |
| 52 | } else |
| 53 | #endif |
| 54 | { |
| 55 | /* Regular file */ |
| 56 | dst_fd = xopen(file_header->name, O_WRONLY | O_CREAT); |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 57 | archive_copy_file(archive_handle, dst_fd); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 58 | close(dst_fd); |
| 59 | } |
| 60 | break; |
| 61 | } |
| 62 | case S_IFDIR: |
Glenn L McGrath | 6f9b45b | 2002-12-04 22:26:30 +0000 | [diff] [blame^] | 63 | unlink(file_header->name); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 64 | res = mkdir(file_header->name, file_header->mode); |
| 65 | if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) { |
| 66 | perror_msg("extract_archive: %s", file_header->name); |
| 67 | } |
| 68 | break; |
| 69 | case S_IFLNK: |
| 70 | /* Symlink */ |
Glenn L McGrath | 6f9b45b | 2002-12-04 22:26:30 +0000 | [diff] [blame^] | 71 | unlink(file_header->name); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 72 | res = symlink(file_header->link_name, file_header->name); |
| 73 | if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) { |
| 74 | perror_msg("Cannot create symlink from %s to '%s'", file_header->name, file_header->link_name); |
| 75 | } |
| 76 | break; |
| 77 | case S_IFSOCK: |
| 78 | case S_IFBLK: |
| 79 | case S_IFCHR: |
| 80 | case S_IFIFO: |
Glenn L McGrath | 6f9b45b | 2002-12-04 22:26:30 +0000 | [diff] [blame^] | 81 | unlink(file_header->name); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 82 | res = mknod(file_header->name, file_header->mode, file_header->device); |
| 83 | if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) { |
| 84 | perror_msg("Cannot create node %s", file_header->name); |
| 85 | } |
| 86 | break; |
| 87 | } |
| 88 | |
| 89 | chmod(file_header->name, file_header->mode); |
| 90 | chown(file_header->name, file_header->uid, file_header->gid); |
| 91 | |
| 92 | if (archive_handle->flags & ARCHIVE_PRESERVE_DATE) { |
| 93 | struct utimbuf t; |
| 94 | t.actime = t.modtime = file_header->mtime; |
| 95 | utime(file_header->name, &t); |
| 96 | } |
| 97 | } |