blob: 06a879b9306c2c4715d9719820485efb0a5544f4 [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
Glenn L McGrathc6992fe2004-04-25 05:11:19 +00006 * Written by Glenn McGrath <bug1@iinet.net.au> 1 June 2000
Eric Andersenc7bda1c2004-03-15 08:29:22 +00007 *
Eric Andersen86ab8a32000-06-02 03:21:42 +00008 * Based in part on BusyBox tar, Debian dpkg-deb and GNU ar.
9 *
"Robert P. J. Day"801ab142006-07-12 07:56:04 +000010 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersen86ab8a32000-06-02 03:21:42 +000011 *
Glenn L McGrath930453b2004-01-04 10:28:22 +000012 * There is no single standard to adhere to so ar may not portable
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000013 * between different systems
14 * http://www.unix-systems.org/single_unix_specification_v2/xcu/ar.html
Eric Andersen86ab8a32000-06-02 03:21:42 +000015 */
Glenn L McGrath930453b2004-01-04 10:28:22 +000016
Eric Andersen3570a342000-09-25 21:45:58 +000017#include "busybox.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000018#include "unarchive.h"
Eric Andersen86ab8a32000-06-02 03:21:42 +000019
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000020static void header_verbose_list_ar(const file_header_t *file_header)
21{
Manuel Novoa III cad53642003-03-19 09:13:01 +000022 const char *mode = bb_mode_string(file_header->mode);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000023 char *mtime;
24
25 mtime = ctime(&file_header->mtime);
26 mtime[16] = ' ';
27 memmove(&mtime[17], &mtime[20], 4);
28 mtime[21] = '\0';
Denis Vlasenkoce979602006-09-27 23:31:08 +000029 printf("%s %d/%d%7d %s %s\n", &mode[1], file_header->uid, file_header->gid,
30 (int) file_header->size, &mtime[4], file_header->name);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000031}
32
"Vladimir N. Oleynik"f1ab1272005-10-12 08:34:27 +000033#define AR_CTX_PRINT 0x01
34#define AR_CTX_LIST 0x02
35#define AR_CTX_EXTRACT 0x04
Eric Andersend952ee22004-10-07 00:35:59 +000036#define AR_OPT_PRESERVE_DATE 0x08
"Vladimir N. Oleynik"f1ab1272005-10-12 08:34:27 +000037#define AR_OPT_VERBOSE 0x10
38#define AR_OPT_CREATE 0x20
39#define AR_OPT_INSERT 0x40
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000040
Rob Landleydfba7412006-03-06 20:47:33 +000041int ar_main(int argc, char **argv)
Eric Andersen86ab8a32000-06-02 03:21:42 +000042{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000043 archive_handle_t *archive_handle;
Denis Vlasenko67b23e62006-10-03 21:00:06 +000044 unsigned opt;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000045 static const char msg_unsupported_err[] =
"Vladimir N. Oleynik"f1ab1272005-10-12 08:34:27 +000046 "Archive %s not supported. Install binutils 'ar'.";
Glenn L McGratha47a3ea2002-09-26 16:01:21 +000047 char magic[8];
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 Vlasenko67b23e62006-10-03 21:00:06 +000052 opt_complementary = "--:p:t:x:-1:?:p--tx:t--px:x--pt";
53 opt = getopt32(argc, argv, "ptxovcr");
Glenn L McGrath930453b2004-01-04 10:28:22 +000054
Glenn L McGrath930453b2004-01-04 10:28:22 +000055 if (opt & AR_CTX_PRINT) {
56 archive_handle->action_data = data_extract_to_stdout;
57 }
58 if (opt & AR_CTX_LIST) {
59 archive_handle->action_header = header_list;
60 }
61 if (opt & AR_CTX_EXTRACT) {
62 archive_handle->action_data = data_extract_all;
63 }
64 if (opt & AR_OPT_PRESERVE_DATE) {
65 archive_handle->flags |= ARCHIVE_PRESERVE_DATE;
66 }
67 if (opt & AR_OPT_VERBOSE) {
68 archive_handle->action_header = header_verbose_list_ar;
69 }
Eric Andersend952ee22004-10-07 00:35:59 +000070 if (opt & AR_OPT_CREATE) {
Mike Frysingerae38d652005-05-09 21:51:41 +000071 bb_error_msg_and_die(msg_unsupported_err, "creation");
72 }
73 if (opt & AR_OPT_INSERT) {
74 bb_error_msg_and_die(msg_unsupported_err, "insertion");
Eric Andersend952ee22004-10-07 00:35:59 +000075 }
Glenn L McGrath930453b2004-01-04 10:28:22 +000076
Rob Landleyd921b2e2006-08-03 15:41:12 +000077 archive_handle->src_fd = xopen(argv[optind++], O_RDONLY);
Matt Kraaid9954932000-09-22 03:36:27 +000078
Glenn L McGratheb1c9402001-06-20 07:48:00 +000079 while (optind < argc) {
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000080 archive_handle->filter = filter_accept_list;
Rob Landley8bb50782006-05-26 23:44:51 +000081 llist_add_to(&(archive_handle->accept), argv[optind++]);
Glenn L McGrath4f1b0122000-12-15 06:50:09 +000082 }
Glenn L McGrath4949faf2001-04-11 16:23:35 +000083
Rob Landley53437472006-07-16 08:14:35 +000084 xread(archive_handle->src_fd, magic, 7);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000085 if (strncmp(magic, "!<arch>", 7) != 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000086 bb_error_msg_and_die("Invalid ar magic");
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000087 }
88 archive_handle->offset += 7;
89
90 while (get_header_ar(archive_handle) == EXIT_SUCCESS);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000091
Matt Kraai3e856ce2000-12-01 02:55:13 +000092 return EXIT_SUCCESS;
Eric Andersen86ab8a32000-06-02 03:21:42 +000093}