blob: 0a95e5c85452116590da25f293d71628bd400669 [file] [log] [blame]
Eric Andersen86ab8a32000-06-02 03:21:42 +00001/* vi: set sw=4 ts=4: */
2/*
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003 * Mini ar implementation for busybox
Eric Andersen86ab8a32000-06-02 03:21:42 +00004 *
5 * Copyright (C) 2000 by Glenn McGrath
Eric Andersenc7bda1c2004-03-15 08:29:22 +00006 *
Eric Andersen86ab8a32000-06-02 03:21:42 +00007 * Based in part on BusyBox tar, Debian dpkg-deb and GNU ar.
8 *
"Robert P. J. Day"801ab142006-07-12 07:56:04 +00009 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersen86ab8a32000-06-02 03:21:42 +000010 *
Glenn L McGrath930453b2004-01-04 10:28:22 +000011 * There is no single standard to adhere to so ar may not portable
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000012 * between different systems
13 * http://www.unix-systems.org/single_unix_specification_v2/xcu/ar.html
Eric Andersen86ab8a32000-06-02 03:21:42 +000014 */
Glenn L McGrath930453b2004-01-04 10:28:22 +000015
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000016#include "libbb.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000017#include "unarchive.h"
Eric Andersen86ab8a32000-06-02 03:21:42 +000018
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000019static void header_verbose_list_ar(const file_header_t *file_header)
20{
Manuel Novoa III cad53642003-03-19 09:13:01 +000021 const char *mode = bb_mode_string(file_header->mode);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000022 char *mtime;
23
24 mtime = ctime(&file_header->mtime);
25 mtime[16] = ' ';
26 memmove(&mtime[17], &mtime[20], 4);
27 mtime[21] = '\0';
Denis Vlasenkoce979602006-09-27 23:31:08 +000028 printf("%s %d/%d%7d %s %s\n", &mode[1], file_header->uid, file_header->gid,
29 (int) file_header->size, &mtime[4], file_header->name);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000030}
31
"Vladimir N. Oleynik"f1ab1272005-10-12 08:34:27 +000032#define AR_CTX_PRINT 0x01
33#define AR_CTX_LIST 0x02
34#define AR_CTX_EXTRACT 0x04
Eric Andersend952ee22004-10-07 00:35:59 +000035#define AR_OPT_PRESERVE_DATE 0x08
"Vladimir N. Oleynik"f1ab1272005-10-12 08:34:27 +000036#define AR_OPT_VERBOSE 0x10
37#define AR_OPT_CREATE 0x20
38#define AR_OPT_INSERT 0x40
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000039
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000040int ar_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +000041int ar_main(int argc, char **argv)
Eric Andersen86ab8a32000-06-02 03:21:42 +000042{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000043 static const char msg_unsupported_err[] ALIGN1 =
44 "archive %s is not supported";
45
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000046 archive_handle_t *archive_handle;
Denis Vlasenko67b23e62006-10-03 21:00:06 +000047 unsigned opt;
Glenn L McGratha47a3ea2002-09-26 16:01:21 +000048 char magic[8];
Glenn L McGrath930453b2004-01-04 10:28:22 +000049
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000050 archive_handle = init_handle();
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000051
"Vladimir N. Oleynik"f1ab1272005-10-12 08:34:27 +000052 /* Prepend '-' to the first argument if required */
Denis Vlasenko09196572007-07-21 13:27:44 +000053 opt_complementary = "--:p:t:x:-1:p--tx:t--px:x--pt";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000054 opt = getopt32(argv, "ptxovcr");
Glenn L McGrath930453b2004-01-04 10:28:22 +000055
Glenn L McGrath930453b2004-01-04 10:28:22 +000056 if (opt & AR_CTX_PRINT) {
57 archive_handle->action_data = data_extract_to_stdout;
58 }
59 if (opt & AR_CTX_LIST) {
60 archive_handle->action_header = header_list;
61 }
62 if (opt & AR_CTX_EXTRACT) {
63 archive_handle->action_data = data_extract_all;
64 }
65 if (opt & AR_OPT_PRESERVE_DATE) {
66 archive_handle->flags |= ARCHIVE_PRESERVE_DATE;
67 }
68 if (opt & AR_OPT_VERBOSE) {
69 archive_handle->action_header = header_verbose_list_ar;
70 }
Eric Andersend952ee22004-10-07 00:35:59 +000071 if (opt & AR_OPT_CREATE) {
Mike Frysingerae38d652005-05-09 21:51:41 +000072 bb_error_msg_and_die(msg_unsupported_err, "creation");
73 }
74 if (opt & AR_OPT_INSERT) {
75 bb_error_msg_and_die(msg_unsupported_err, "insertion");
Eric Andersend952ee22004-10-07 00:35:59 +000076 }
Glenn L McGrath930453b2004-01-04 10:28:22 +000077
Rob Landleyd921b2e2006-08-03 15:41:12 +000078 archive_handle->src_fd = xopen(argv[optind++], O_RDONLY);
Matt Kraaid9954932000-09-22 03:36:27 +000079
Glenn L McGratheb1c9402001-06-20 07:48:00 +000080 while (optind < argc) {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000081 archive_handle->filter = filter_accept_list;
Rob Landley8bb50782006-05-26 23:44:51 +000082 llist_add_to(&(archive_handle->accept), argv[optind++]);
Glenn L McGrath4f1b0122000-12-15 06:50:09 +000083 }
Glenn L McGrath4949faf2001-04-11 16:23:35 +000084
Rob Landley53437472006-07-16 08:14:35 +000085 xread(archive_handle->src_fd, magic, 7);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000086 if (strncmp(magic, "!<arch>", 7) != 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +000087 bb_error_msg_and_die("invalid ar magic");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000088 }
89 archive_handle->offset += 7;
90
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000091 while (get_header_ar(archive_handle) == EXIT_SUCCESS)
92 continue;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000093
Matt Kraai3e856ce2000-12-01 02:55:13 +000094 return EXIT_SUCCESS;
Eric Andersen86ab8a32000-06-02 03:21:42 +000095}