Glenn L McGrath | 8f5b63e | 2001-06-22 09:22:06 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Mini cpio implementation for busybox |
| 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 2001 by Glenn McGrath |
Glenn L McGrath | 8f5b63e | 2001-06-22 09:22:06 +0000 | [diff] [blame] | 6 | * |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Glenn L McGrath | 8f5b63e | 2001-06-22 09:22:06 +0000 | [diff] [blame] | 8 | * |
| 9 | * Limitations: |
| 10 | * Doesn't check CRC's |
| 11 | * Only supports new ASCII and CRC formats |
Glenn L McGrath | 8f5b63e | 2001-06-22 09:22:06 +0000 | [diff] [blame] | 12 | * |
| 13 | */ |
| 14 | #include <fcntl.h> |
Glenn L McGrath | 8f5b63e | 2001-06-22 09:22:06 +0000 | [diff] [blame] | 15 | #include <stdlib.h> |
| 16 | #include <string.h> |
| 17 | #include <unistd.h> |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 18 | #include "unarchive.h" |
Glenn L McGrath | 8f5b63e | 2001-06-22 09:22:06 +0000 | [diff] [blame] | 19 | #include "busybox.h" |
| 20 | |
Rob Landley | b7128c6 | 2005-09-11 01:05:30 +0000 | [diff] [blame] | 21 | #define CPIO_OPT_EXTRACT 0x01 |
| 22 | #define CPIO_OPT_TEST 0x02 |
| 23 | #define CPIO_OPT_UNCONDITIONAL 0x04 |
| 24 | #define CPIO_OPT_VERBOSE 0x08 |
| 25 | #define CPIO_OPT_FILE 0x10 |
Glenn L McGrath | 10b7813 | 2004-02-25 09:30:06 +0000 | [diff] [blame] | 26 | #define CPIO_OPT_CREATE_LEADING_DIR 0x20 |
Rob Landley | b7128c6 | 2005-09-11 01:05:30 +0000 | [diff] [blame] | 27 | #define CPIO_OPT_PRESERVE_MTIME 0x40 |
Glenn L McGrath | 10b7813 | 2004-02-25 09:30:06 +0000 | [diff] [blame] | 28 | |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 29 | int cpio_main(int argc, char **argv) |
Glenn L McGrath | 8f5b63e | 2001-06-22 09:22:06 +0000 | [diff] [blame] | 30 | { |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 31 | archive_handle_t *archive_handle; |
Glenn L McGrath | 10b7813 | 2004-02-25 09:30:06 +0000 | [diff] [blame] | 32 | char *cpio_filename = NULL; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 33 | unsigned opt; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 34 | |
| 35 | /* Initialise */ |
| 36 | archive_handle = init_handle(); |
Eric Andersen | 70060d2 | 2004-03-27 10:02:48 +0000 | [diff] [blame] | 37 | archive_handle->src_fd = STDIN_FILENO; |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 38 | archive_handle->seek = seek_by_read; |
Glenn L McGrath | 4cee66d | 2003-08-28 19:12:23 +0000 | [diff] [blame] | 39 | archive_handle->flags = ARCHIVE_EXTRACT_NEWER | ARCHIVE_PRESERVE_DATE; |
Glenn L McGrath | 10b7813 | 2004-02-25 09:30:06 +0000 | [diff] [blame] | 40 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 41 | opt = getopt32(argc, argv, "ituvF:dm", &cpio_filename); |
Glenn L McGrath | 10b7813 | 2004-02-25 09:30:06 +0000 | [diff] [blame] | 42 | |
| 43 | /* One of either extract or test options must be given */ |
| 44 | if ((opt & (CPIO_OPT_TEST | CPIO_OPT_EXTRACT)) == 0) { |
| 45 | bb_show_usage(); |
| 46 | } |
| 47 | |
| 48 | if (opt & CPIO_OPT_TEST) { |
Rob Landley | b7128c6 | 2005-09-11 01:05:30 +0000 | [diff] [blame] | 49 | /* if both extract and test options are given, ignore extract option */ |
Glenn L McGrath | 10b7813 | 2004-02-25 09:30:06 +0000 | [diff] [blame] | 50 | if (opt & CPIO_OPT_EXTRACT) { |
| 51 | opt &= ~CPIO_OPT_EXTRACT; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 52 | } |
Glenn L McGrath | 10b7813 | 2004-02-25 09:30:06 +0000 | [diff] [blame] | 53 | archive_handle->action_header = header_list; |
| 54 | } |
| 55 | if (opt & CPIO_OPT_EXTRACT) { |
| 56 | archive_handle->action_data = data_extract_all; |
| 57 | } |
| 58 | if (opt & CPIO_OPT_UNCONDITIONAL) { |
| 59 | archive_handle->flags |= ARCHIVE_EXTRACT_UNCONDITIONAL; |
| 60 | archive_handle->flags &= ~ARCHIVE_EXTRACT_NEWER; |
| 61 | } |
| 62 | if (opt & CPIO_OPT_VERBOSE) { |
| 63 | if (archive_handle->action_header == header_list) { |
| 64 | archive_handle->action_header = header_verbose_list; |
| 65 | } else { |
| 66 | archive_handle->action_header = header_list; |
Glenn L McGrath | 8f5b63e | 2001-06-22 09:22:06 +0000 | [diff] [blame] | 67 | } |
| 68 | } |
Rob Landley | b7128c6 | 2005-09-11 01:05:30 +0000 | [diff] [blame] | 69 | if (cpio_filename) { /* CPIO_OPT_FILE */ |
Rob Landley | 86b4d64 | 2006-08-03 17:58:17 +0000 | [diff] [blame] | 70 | archive_handle->src_fd = xopen(cpio_filename, O_RDONLY); |
Glenn L McGrath | 10b7813 | 2004-02-25 09:30:06 +0000 | [diff] [blame] | 71 | archive_handle->seek = seek_by_jump; |
| 72 | } |
| 73 | if (opt & CPIO_OPT_CREATE_LEADING_DIR) { |
| 74 | archive_handle->flags |= ARCHIVE_CREATE_LEADING_DIRS; |
| 75 | } |
Glenn L McGrath | 8f5b63e | 2001-06-22 09:22:06 +0000 | [diff] [blame] | 76 | |
Glenn L McGrath | 8f5b63e | 2001-06-22 09:22:06 +0000 | [diff] [blame] | 77 | while (optind < argc) { |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 78 | archive_handle->filter = filter_accept_list; |
Rob Landley | 8bb5078 | 2006-05-26 23:44:51 +0000 | [diff] [blame] | 79 | llist_add_to(&(archive_handle->accept), argv[optind]); |
Glenn L McGrath | 8f5b63e | 2001-06-22 09:22:06 +0000 | [diff] [blame] | 80 | optind++; |
| 81 | } |
| 82 | |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 83 | while (get_header_cpio(archive_handle) == EXIT_SUCCESS); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 84 | |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 85 | return EXIT_SUCCESS; |
Glenn L McGrath | 8f5b63e | 2001-06-22 09:22:06 +0000 | [diff] [blame] | 86 | } |