blob: 5aba30de0fe5bffa017afaa13ab1d09bb12502e6 [file] [log] [blame]
Eric Andersen86ab8a32000-06-02 03:21:42 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini ar implementation for busybox
4 *
5 * Copyright (C) 2000 by Glenn McGrath
Glenn L McGrath4f1b0122000-12-15 06:50:09 +00006 * Written by Glenn McGrath <bug1@optushome.com.au> 1 June 2000
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +00007 *
Eric Andersen86ab8a32000-06-02 03:21:42 +00008 * Based in part on BusyBox tar, Debian dpkg-deb and GNU ar.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
24 */
Eric Andersen86ab8a32000-06-02 03:21:42 +000025#include <fcntl.h>
Eric Andersened3ef502001-01-27 08:24:39 +000026#include <string.h>
27#include <stdlib.h>
28#include <getopt.h>
29#include <unistd.h>
Eric Andersen3570a342000-09-25 21:45:58 +000030#include "busybox.h"
Eric Andersen86ab8a32000-06-02 03:21:42 +000031
Glenn L McGrath4f1b0122000-12-15 06:50:09 +000032typedef struct ar_headers_s {
33 char *name;
34 size_t size;
35 uid_t uid;
36 gid_t gid;
37 mode_t mode;
38 time_t mtime;
39 off_t offset;
40 struct ar_headers_s *next;
41} ar_headers_t;
Eric Andersen852ff132000-06-16 04:56:40 +000042
Eric Andersen852ff132000-06-16 04:56:40 +000043/*
Glenn L McGrath4f1b0122000-12-15 06:50:09 +000044 * return the headerL_t struct for the filename descriptor
Glenn L McGrathfca80502000-09-11 05:25:39 +000045 */
Glenn L McGrath7541e3a2001-01-02 23:41:50 +000046extern ar_headers_t get_headers(int srcFd)
Glenn L McGrathfca80502000-09-11 05:25:39 +000047{
Glenn L McGrath4f1b0122000-12-15 06:50:09 +000048 typedef struct raw_ar_header_s { /* Byte Offset */
49 char name[16]; /* 0-15 */
50 char date[12]; /* 16-27 */
51 char uid[6];
52 char gid[6]; /* 28-39 */
53 char mode[8]; /* 40-47 */
54 char size[10]; /* 48-57 */
55 char fmag[2]; /* 58-59 */
56 } raw_ar_header_t;
57 raw_ar_header_t raw_ar_header;
Glenn L McGrathfca80502000-09-11 05:25:39 +000058
Glenn L McGrath4f1b0122000-12-15 06:50:09 +000059 ar_headers_t *head, *entry;
60 char ar_magic[8];
61 char *long_name=NULL;
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000062
Glenn L McGrath4f1b0122000-12-15 06:50:09 +000063 head = (ar_headers_t *) xmalloc(sizeof(ar_headers_t));
64 entry = (ar_headers_t *) xmalloc(sizeof(ar_headers_t));
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000065
Glenn L McGrath4f1b0122000-12-15 06:50:09 +000066 /* check ar magic */
67 if (full_read(srcFd, ar_magic, 8) != 8)
Matt Kraaidd19c692001-01-31 19:00:21 +000068 error_msg_and_die("cannot read magic");
Glenn L McGrath4f1b0122000-12-15 06:50:09 +000069 if (strncmp(ar_magic,"!<arch>",7) != 0)
Matt Kraaidd19c692001-01-31 19:00:21 +000070 error_msg_and_die("invalid magic");
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000071
Glenn L McGrath4f1b0122000-12-15 06:50:09 +000072 while (full_read(srcFd, (char *) &raw_ar_header, 60)==60) {
73 /* check the end of header markers are valid */
74 if ((raw_ar_header.fmag[0]!='`') || (raw_ar_header.fmag[1]!='\n')) {
75 char newline[1];
76 if (raw_ar_header.fmag[1]!='`') {
77 break;
78 }
79 /* some version of ar, have an extra '\n' after each entry */
80 read(srcFd, newline, 1);
81 if (newline[0]!='\n') {
82 break;
83 }
84 /* fix up the header, we started reading 1 byte too early due to a '\n' */
85 memmove((char *) &raw_ar_header, (char *)&raw_ar_header+1, 59);
86 /* dont worry about adding the last '\n', we dont need it now */
87 }
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000088
Glenn L McGrath4f1b0122000-12-15 06:50:09 +000089 entry->size = (size_t) atoi(raw_ar_header.size);
90 /* long filenames have '/' as the first character */
91 if (raw_ar_header.name[0] == '/') {
92 if (raw_ar_header.name[1] == '/') {
93 /* multiple long filenames are stored as data in one entry */
94 long_name = (char *) xrealloc(long_name, entry->size);
95 full_read(srcFd, long_name, entry->size);
96 continue;
97 }
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000098 else {
Glenn L McGrath4f1b0122000-12-15 06:50:09 +000099 /* The number after the '/' indicates the offset in the ar data section
100 (saved in variable long_name) that conatains the real filename */
101 const int long_name_offset = (int) atoi((char *) &raw_ar_header.name[1]);
102 entry->name = xmalloc(strlen(&long_name[long_name_offset]));
103 strcpy(entry->name, &long_name[long_name_offset]);
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000104 }
105 }
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000106 else {
107 /* short filenames */
108 entry->name = xmalloc(16);
109 strncpy(entry->name, raw_ar_header.name, 16);
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000110 }
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000111 entry->name[strcspn(entry->name, " /")]='\0';
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000112
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000113 /* convert the rest of the now valid char header to its typed struct */
114 parse_mode(raw_ar_header.mode, &entry->mode);
115 entry->mtime = atoi(raw_ar_header.date);
116 entry->uid = atoi(raw_ar_header.uid);
117 entry->gid = atoi(raw_ar_header.gid);
118 entry->offset = lseek(srcFd, 0, SEEK_CUR);
119
120 /* add this entries header to our combined list */
121 entry->next = (ar_headers_t *) xmalloc(sizeof(ar_headers_t));
122 *entry->next = *head;
123 *head = *entry;
124 lseek(srcFd, (off_t) entry->size, SEEK_CUR);
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000125 }
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000126 return(*head);
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000127}
Eric Andersen852ff132000-06-16 04:56:40 +0000128
Eric Andersen86ab8a32000-06-02 03:21:42 +0000129extern int ar_main(int argc, char **argv)
130{
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000131 const int preserve_date = 1; /* preserve original dates */
132 const int verbose = 2; /* be verbose */
133 const int display = 4; /* display contents */
134 const int extract_to_file = 8; /* extract contents of archive */
135 const int extract_to_stdout = 16; /* extract to stdout */
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000136
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000137 int funct = 0, opt=0;
138 int srcFd=0, dstFd=0;
139
140 ar_headers_t head, *extract_list=NULL;
141
142 extract_list = (ar_headers_t *) xmalloc(sizeof(ar_headers_t));
143
144 while ((opt = getopt(argc, argv, "ovtpx")) != -1) {
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000145 switch (opt) {
Eric Andersen57ebebf2000-07-05 17:21:58 +0000146 case 'o':
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000147 funct |= preserve_date;
Eric Andersen86ab8a32000-06-02 03:21:42 +0000148 break;
Eric Andersen57ebebf2000-07-05 17:21:58 +0000149 case 'v':
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000150 funct |= verbose;
Eric Andersen86ab8a32000-06-02 03:21:42 +0000151 break;
Eric Andersen57ebebf2000-07-05 17:21:58 +0000152 case 't':
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000153 funct |= display;
Glenn L McGrath437bf722000-09-09 13:38:26 +0000154 break;
Eric Andersen57ebebf2000-07-05 17:21:58 +0000155 case 'p':
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000156 funct |= extract_to_stdout;
Eric Andersen86ab8a32000-06-02 03:21:42 +0000157 break;
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000158 case 'x':
159 funct |= extract_to_file;
Glenn L McGrathe2b345a2000-09-09 14:50:04 +0000160 break;
Eric Andersen86ab8a32000-06-02 03:21:42 +0000161 default:
162 usage(ar_usage);
163 }
164 }
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000165
Matt Kraaid9954932000-09-22 03:36:27 +0000166 /* check the src filename was specified */
167 if (optind == argc)
168 usage(ar_usage);
Eric Andersen852ff132000-06-16 04:56:40 +0000169
Matt Kraaid9954932000-09-22 03:36:27 +0000170 if ( (srcFd = open(argv[optind], O_RDONLY)) < 0)
Matt Kraaidd19c692001-01-31 19:00:21 +0000171 error_msg_and_die("Cannot read %s", argv[optind]);
Matt Kraaid9954932000-09-22 03:36:27 +0000172
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000173 optind++;
174 head = get_headers(srcFd);
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000175
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000176 /* find files to extract or display */
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000177 /* search through argv and build extract list */
178 for (;optind<argc; optind++) {
179 ar_headers_t *ar_entry;
180 ar_entry = (ar_headers_t *) xmalloc(sizeof(ar_headers_t));
181 ar_entry = &head;
182 while (ar_entry->next != NULL) {
183 if (strcmp(argv[optind], ar_entry->name) == 0) {
184 ar_headers_t *tmp;
185 tmp = (ar_headers_t *) xmalloc(sizeof(ar_headers_t));
186 *tmp = *extract_list;
187 *extract_list = *ar_entry;
188 extract_list->next = tmp;
189 break;
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000190 }
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000191 ar_entry=ar_entry->next;
192 }
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000193 }
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000194
195 /* if individual files not found extract all files */
196 if (extract_list->next==NULL) {
197 extract_list = &head;
198 }
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000199
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000200 /* find files to extract or display */
201 while (extract_list->next != NULL) {
202 if (funct & extract_to_file) {
203 dstFd = open(extract_list->name, O_WRONLY | O_CREAT, extract_list->mode);
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000204 }
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000205 else if (funct & extract_to_stdout) {
206 dstFd = fileno(stdout);
Glenn L McGrathfca80502000-09-11 05:25:39 +0000207 }
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000208 if ((funct & extract_to_file) || (funct & extract_to_stdout)) {
209 lseek(srcFd, extract_list->offset, SEEK_SET);
210 copy_file_chunk(srcFd, dstFd, (size_t) extract_list->size);
Glenn L McGrathfca80502000-09-11 05:25:39 +0000211 }
Glenn L McGrath4f1b0122000-12-15 06:50:09 +0000212 if (funct & verbose) {
213 printf("%s %d/%d %8d %s ", mode_string(extract_list->mode),
214 extract_list->uid, extract_list->gid,
215 extract_list->size, time_string(extract_list->mtime));
216 }
217 if ((funct & display) || (funct & verbose)){
218 printf("%s\n", extract_list->name);
219 }
220 extract_list=extract_list->next;
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000221 }
Matt Kraai3e856ce2000-12-01 02:55:13 +0000222 return EXIT_SUCCESS;
Eric Andersen86ab8a32000-06-02 03:21:42 +0000223}