"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Rob Landley | 1ec5b29 | 2006-05-29 07:42:02 +0000 | [diff] [blame] | 2 | /* Copyright 2002 Laurence Anderson |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 3 | * |
Rob Landley | 1ec5b29 | 2006-05-29 07:42:02 +0000 | [diff] [blame] | 4 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 7 | #include "libbb.h" |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 8 | #include "unarchive.h" |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 9 | |
Denis Vlasenko | 2b407b1 | 2008-07-11 21:42:12 +0000 | [diff] [blame] | 10 | typedef struct hardlinks_t { |
| 11 | struct hardlinks_t *next; |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 12 | int inode; /* TODO: must match maj/min too! */ |
| 13 | int mode ; |
| 14 | int mtime; /* These three are useful only in corner case */ |
| 15 | int uid ; /* of hardlinks with zero size body */ |
| 16 | int gid ; |
| 17 | char name[1]; |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 18 | } hardlinks_t; |
| 19 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 20 | char FAST_FUNC get_header_cpio(archive_handle_t *archive_handle) |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 21 | { |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 22 | file_header_t *file_header = archive_handle->file_header; |
| 23 | char cpio_header[110]; |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 24 | int namesize; |
| 25 | int major, minor, nlink, mode, inode; |
| 26 | unsigned size, uid, gid, mtime; |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 27 | |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 28 | #define hardlinks_to_create (*(hardlinks_t **)(&archive_handle->ah_priv[0])) |
| 29 | #define created_hardlinks (*(hardlinks_t **)(&archive_handle->ah_priv[1])) |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 30 | // if (!archive_handle->ah_priv_inited) { |
| 31 | // archive_handle->ah_priv_inited = 1; |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 32 | // hardlinks_to_create = NULL; |
| 33 | // created_hardlinks = NULL; |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 34 | // } |
| 35 | |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 36 | /* There can be padding before archive header */ |
| 37 | data_align(archive_handle, 4); |
| 38 | |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 39 | size = full_read(archive_handle->src_fd, cpio_header, 110); |
| 40 | if (size == 0) { |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 41 | goto create_hardlinks; |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 42 | } |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 43 | if (size != 110) { |
| 44 | bb_error_msg_and_die("short read"); |
| 45 | } |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 46 | archive_handle->offset += 110; |
| 47 | |
Denis Vlasenko | 3eb91c2 | 2006-11-21 00:55:46 +0000 | [diff] [blame] | 48 | if (strncmp(&cpio_header[0], "07070", 5) != 0 |
| 49 | || (cpio_header[5] != '1' && cpio_header[5] != '2') |
| 50 | ) { |
Denis Vlasenko | e1a0d48 | 2006-10-20 13:28:22 +0000 | [diff] [blame] | 51 | bb_error_msg_and_die("unsupported cpio format, use newc or crc"); |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 52 | } |
| 53 | |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 54 | if (sscanf(cpio_header + 6, |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 55 | "%8x" "%8x" "%8x" "%8x" |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 56 | "%8x" "%8x" "%8x" /*maj,min:*/ "%*16c" |
| 57 | /*rmaj,rmin:*/"%8x" "%8x" "%8x" /*chksum: "%*8c"*/, |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 58 | &inode, &mode, &uid, &gid, |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 59 | &nlink, &mtime, &size, |
| 60 | &major, &minor, &namesize) != 10) |
| 61 | bb_error_msg_and_die("damaged cpio file"); |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 62 | file_header->mode = mode; |
| 63 | file_header->uid = uid; |
| 64 | file_header->gid = gid; |
| 65 | file_header->mtime = mtime; |
| 66 | file_header->size = size; |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 67 | |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 68 | namesize &= 0x1fff; /* paranoia: limit names to 8k chars */ |
Denis Vlasenko | 3eb91c2 | 2006-11-21 00:55:46 +0000 | [diff] [blame] | 69 | file_header->name = xzalloc(namesize + 1); |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 70 | /* Read in filename */ |
| 71 | xread(archive_handle->src_fd, file_header->name, namesize); |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 72 | archive_handle->offset += namesize; |
| 73 | |
| 74 | /* Update offset amount and skip padding before file contents */ |
| 75 | data_align(archive_handle, 4); |
| 76 | |
| 77 | if (strcmp(file_header->name, "TRAILER!!!") == 0) { |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 78 | /* Always round up. ">> 9" divides by 512 */ |
| 79 | printf("%"OFF_FMT"u blocks\n", (archive_handle->offset + 511) >> 9); |
| 80 | goto create_hardlinks; |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 81 | } |
| 82 | |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 83 | file_header->link_target = NULL; |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 84 | if (S_ISLNK(file_header->mode)) { |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 85 | file_header->size &= 0x1fff; /* paranoia: limit names to 8k chars */ |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 86 | file_header->link_target = xzalloc(file_header->size + 1); |
| 87 | xread(archive_handle->src_fd, file_header->link_target, file_header->size); |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 88 | archive_handle->offset += file_header->size; |
| 89 | file_header->size = 0; /* Stop possible seeks in future */ |
| 90 | } |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 91 | |
| 92 | // TODO: data_extract_all can't deal with hardlinks to non-files... |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 93 | // when fixed, change S_ISREG to !S_ISDIR here |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 94 | |
| 95 | if (nlink > 1 && S_ISREG(file_header->mode)) { |
| 96 | hardlinks_t *new = xmalloc(sizeof(*new) + namesize); |
| 97 | new->inode = inode; |
| 98 | new->mode = mode ; |
| 99 | new->mtime = mtime; |
| 100 | new->uid = uid ; |
| 101 | new->gid = gid ; |
| 102 | strcpy(new->name, file_header->name); |
| 103 | /* Put file on a linked list for later */ |
| 104 | if (size == 0) { |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 105 | new->next = hardlinks_to_create; |
| 106 | hardlinks_to_create = new; |
Denis Vlasenko | 3eb91c2 | 2006-11-21 00:55:46 +0000 | [diff] [blame] | 107 | return EXIT_SUCCESS; /* Skip this one */ |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 108 | /* TODO: this breaks cpio -t (it does not show hardlinks) */ |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 109 | } |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 110 | new->next = created_hardlinks; |
| 111 | created_hardlinks = new; |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 112 | } |
Eric Andersen | 4f807a8 | 2004-07-26 09:11:12 +0000 | [diff] [blame] | 113 | file_header->device = makedev(major, minor); |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 114 | |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 115 | if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) { |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 116 | archive_handle->action_data(archive_handle); |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 117 | archive_handle->action_header(file_header); |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 118 | } else { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 119 | data_skip(archive_handle); |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 120 | } |
Glenn L McGrath | 4cee66d | 2003-08-28 19:12:23 +0000 | [diff] [blame] | 121 | |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 122 | archive_handle->offset += file_header->size; |
Glenn L McGrath | faa3546 | 2004-04-29 09:24:19 +0000 | [diff] [blame] | 123 | |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 124 | free(file_header->link_target); |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 125 | free(file_header->name); |
| 126 | file_header->link_target = NULL; |
| 127 | file_header->name = NULL; |
Glenn L McGrath | faa3546 | 2004-04-29 09:24:19 +0000 | [diff] [blame] | 128 | |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 129 | return EXIT_SUCCESS; |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 130 | |
| 131 | create_hardlinks: |
| 132 | free(file_header->link_target); |
| 133 | free(file_header->name); |
| 134 | |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 135 | while (hardlinks_to_create) { |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 136 | hardlinks_t *cur; |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 137 | hardlinks_t *make_me = hardlinks_to_create; |
| 138 | |
| 139 | hardlinks_to_create = make_me->next; |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 140 | |
| 141 | memset(file_header, 0, sizeof(*file_header)); |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 142 | file_header->mtime = make_me->mtime; |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 143 | file_header->name = make_me->name; |
| 144 | file_header->mode = make_me->mode; |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 145 | file_header->uid = make_me->uid; |
| 146 | file_header->gid = make_me->gid; |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 147 | /*file_header->size = 0;*/ |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 148 | /*file_header->link_target = NULL;*/ |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 149 | |
| 150 | /* Try to find a file we are hardlinked to */ |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 151 | cur = created_hardlinks; |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 152 | while (cur) { |
| 153 | /* TODO: must match maj/min too! */ |
| 154 | if (cur->inode == make_me->inode) { |
| 155 | file_header->link_target = cur->name; |
| 156 | /* link_target != NULL, size = 0: "I am a hardlink" */ |
| 157 | if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) |
| 158 | archive_handle->action_data(archive_handle); |
| 159 | free(make_me); |
| 160 | goto next_link; |
| 161 | } |
Denis Vlasenko | 2b407b1 | 2008-07-11 21:42:12 +0000 | [diff] [blame] | 162 | cur = cur->next; |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 163 | } |
| 164 | /* Oops... no file with such inode was created... do it now |
| 165 | * (happens when hardlinked files are empty (zero length)) */ |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 166 | if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) |
| 167 | archive_handle->action_data(archive_handle); |
| 168 | /* Move to the list of created hardlinked files */ |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 169 | make_me->next = created_hardlinks; |
| 170 | created_hardlinks = make_me; |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 171 | next_link: ; |
| 172 | } |
| 173 | |
Denis Vlasenko | a46dd89 | 2008-07-12 09:20:44 +0000 | [diff] [blame] | 174 | while (created_hardlinks) { |
| 175 | hardlinks_t *p = created_hardlinks; |
| 176 | created_hardlinks = p->next; |
Denis Vlasenko | 1af00ed | 2008-04-05 02:44:30 +0000 | [diff] [blame] | 177 | free(p); |
| 178 | } |
| 179 | |
| 180 | return EXIT_FAILURE; /* "No more files to process" */ |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 181 | } |