blob: 1b43502ca4f0a83f00e9068293d232710e02a2c7 [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
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000019static void FAST_FUNC header_verbose_list_ar(const file_header_t *file_header)
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000020{
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;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +010041int ar_main(int argc UNUSED_PARAM, 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 McGrath930453b2004-01-04 10:28:22 +000048
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000049 archive_handle = init_handle();
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000050
"Vladimir N. Oleynik"f1ab1272005-10-12 08:34:27 +000051 /* Prepend '-' to the first argument if required */
Denis Vlasenko09196572007-07-21 13:27:44 +000052 opt_complementary = "--:p:t:x:-1:p--tx:t--px:x--pt";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000053 opt = getopt32(argv, "ptxovcr");
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +010054 argv += optind;
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) {
Denys Vlasenkod57d6262009-09-17 02:43:14 +020066 archive_handle->ah_flags |= ARCHIVE_RESTORE_DATE;
Glenn L McGrath930453b2004-01-04 10:28:22 +000067 }
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
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +010080 while (*argv) {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000081 archive_handle->filter = filter_accept_list;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +010082 llist_add_to(&archive_handle->accept, *argv++);
Glenn L McGrath4f1b0122000-12-15 06:50:09 +000083 }
Glenn L McGrath4949faf2001-04-11 16:23:35 +000084
Denis Vlasenko0381d422008-07-10 23:06:00 +000085 unpack_ar_archive(archive_handle);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000086
Matt Kraai3e856ce2000-12-01 02:55:13 +000087 return EXIT_SUCCESS;
Eric Andersen86ab8a32000-06-02 03:21:42 +000088}