blob: 5803ad1a7096f7a2cd46858fec6f54983434e234 [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
6 * Written by Glenn McGrath <bug1@netconnect.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 *
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000024 * Last modified 9 September 2000
Eric Andersen86ab8a32000-06-02 03:21:42 +000025 */
Eric Andersen86ab8a32000-06-02 03:21:42 +000026#include <stdio.h>
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000027#include <string.h>
Eric Andersen86ab8a32000-06-02 03:21:42 +000028#include <fcntl.h>
29#include <errno.h>
30#include <ctype.h>
Eric Andersen852ff132000-06-16 04:56:40 +000031#include <time.h>
32#include <utime.h>
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000033#include <unistd.h>
34#include <stdlib.h>
Eric Andersen852ff132000-06-16 04:56:40 +000035#include <sys/types.h>
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000036#include <sys/stat.h>
37#include <malloc.h>
Eric Andersen86ab8a32000-06-02 03:21:42 +000038#include "internal.h"
39
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +000040#define BLOCK_SIZE 60
41#define PRESERVE_DATE 1 /* preserve original dates */
42#define VERBOSE 2 /* be verbose */
43#define DISPLAY 4 /* display contents */
44#define EXT_TO_FILE 8 /* extract contents of archive */
45#define EXT_TO_STDOUT 16 /* extract to stdout */
Glenn L McGrathe2b345a2000-09-09 14:50:04 +000046#define RECURSIVE 32
Eric Andersen852ff132000-06-16 04:56:40 +000047
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000048#define MAX_NAME_LENGTH 100
Eric Andersen86ab8a32000-06-02 03:21:42 +000049
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000050//#define BB_DECLARE_EXTERN
51//#define bb_need_io_error
52//#include "messages.c"
53
54typedef struct rawArHeader { /* Byte Offset */
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +000055 char name[16]; /* 0-15 */
56 char date[12]; /* 16-27 */
57 char uid[6], gid[6]; /* 28-39 */
58 char mode[8]; /* 40-47 */
59 char size[10]; /* 48-57 */
60 char fmag[2]; /* 58-59 */
61} rawArHeader_t;
Eric Andersen86ab8a32000-06-02 03:21:42 +000062
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +000063typedef struct headerL {
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000064 char name[MAX_NAME_LENGTH];
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +000065 size_t size;
66 uid_t uid;
67 gid_t gid;
68 mode_t mode;
69 time_t mtime;
70 off_t offset;
71 struct headerL *next;
72} headerL_t;
Eric Andersen86ab8a32000-06-02 03:21:42 +000073
Eric Andersen852ff132000-06-16 04:56:40 +000074/*
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000075 * identify Ar header (magic) and set srcFd to first header entry
Eric Andersen852ff132000-06-16 04:56:40 +000076 */
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000077static int checkArMagic(int srcFd)
Eric Andersen86ab8a32000-06-02 03:21:42 +000078{
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000079 char arMagic[8];
80 if (fullRead(srcFd, arMagic, 8) != 8)
Eric Andersen852ff132000-06-16 04:56:40 +000081 return (FALSE);
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000082
83 if (strncmp(arMagic,"!<arch>",7) != 0)
Eric Andersen852ff132000-06-16 04:56:40 +000084 return(FALSE);
Glenn L McGrath8324b9f2000-09-09 08:35:45 +000085 return(TRUE);
86}
87
88/*
89 * read, convert and check the raw ar header
90 * srcFd should be pointing to the start of header prior to entry
91 * srcFd will be pointing at the start of data after successful exit
92 * if returns FALSE srcFd is reset to initial position
93 */
94static int readRawArHeader(int srcFd, headerL_t *header)
95{
96 rawArHeader_t rawArHeader;
97 off_t initialOffset;
98 size_t nameLength;
99
100 initialOffset = lseek(srcFd, 0, SEEK_CUR);
101 if (fullRead(srcFd, (char *) &rawArHeader, 60) != 60) {
102 lseek(srcFd, initialOffset, SEEK_SET);
103 return(FALSE);
104 }
105 if ((rawArHeader.fmag[0]!='`') || (rawArHeader.fmag[1]!='\n')) {
106 lseek(srcFd, initialOffset, SEEK_SET);
107 return(FALSE);
108 }
109
110 strncpy(header->name, rawArHeader.name, 16);
111 nameLength=strcspn(header->name, " \\");
112 header->name[nameLength]='\0';
113 parse_mode(rawArHeader.mode, &header->mode);
114 header->mtime = atoi(rawArHeader.date);
115 header->uid = atoi(rawArHeader.uid);
116 header->gid = atoi(rawArHeader.gid);
117 header->size = (size_t) atoi(rawArHeader.size);
118 header->offset = initialOffset + (off_t) 60;
119 return(TRUE);
120}
121
122/*
123 * get, check and correct the converted header
124 */
125static int readArEntry(int srcFd, headerL_t *newEntry)
126{
127 size_t nameLength;
128
129 if(readRawArHeader(srcFd, newEntry)==FALSE)
130 return(FALSE);
131
132 nameLength = strcspn(newEntry->name, "/");
133
134 /* handle GNU style short filenames, strip trailing '/' */
135 if (nameLength > 0)
136 newEntry->name[nameLength]='\0';
137
138 /* handle GNU style long filenames */
139 if (nameLength == 0) {
140 /* escape from recursive call */
141 if (newEntry->name[1]=='0')
142 return(TRUE);
143
144 /* the data section contains the real filename */
145 if (newEntry->name[1]=='/') {
146 char tempName[MAX_NAME_LENGTH];
147
148 if (newEntry->size > MAX_NAME_LENGTH)
149 newEntry->size = MAX_NAME_LENGTH;
150 fullRead(srcFd, tempName, newEntry->size);
151 tempName[newEntry->size-3]='\0';
152
153 /* read the second header for this entry */
154 /* be carefull, this is recursive */
155 if (readArEntry(srcFd, newEntry)==FALSE)
156 return(FALSE);
157
158 if ((newEntry->name[0]='/') && (newEntry->name[1]='0'))
159 strcpy(newEntry->name, tempName);
160 else {
161 errorMsg("Invalid long filename\n");
162 return(FALSE);
163 }
164 }
165 }
166 return(TRUE);
Eric Andersen852ff132000-06-16 04:56:40 +0000167}
168
169/*
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000170 * return the headerL_t struct for the specified filename
Eric Andersen852ff132000-06-16 04:56:40 +0000171 */
Glenn L McGrathe2b345a2000-09-09 14:50:04 +0000172static headerL_t *getHeaders(int srcFd, headerL_t *head, int funct)
Eric Andersen852ff132000-06-16 04:56:40 +0000173{
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000174 headerL_t *list;
175 list = (headerL_t *) malloc(sizeof(headerL_t));
Eric Andersen86ab8a32000-06-02 03:21:42 +0000176
Glenn L McGrathe2b345a2000-09-09 14:50:04 +0000177 if (checkArMagic(srcFd)==TRUE) {
178 printf("found ar header ");
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000179 while(readArEntry(srcFd, list) == TRUE) {
180 list->next = (headerL_t *) malloc(sizeof(headerL_t));
181 *list->next = *head;
182 *head = *list;
Glenn L McGrathe2b345a2000-09-09 14:50:04 +0000183
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000184 /* recursive check for sub-archives */
Glenn L McGrathe2b345a2000-09-09 14:50:04 +0000185 if ((funct & RECURSIVE) == RECURSIVE)
186 head = getHeaders(srcFd, head, funct);
187 lseek(srcFd, head->offset + head->size, SEEK_SET);
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000188 }
189 }
Glenn L McGrathe2b345a2000-09-09 14:50:04 +0000190 else
191 printf("not an ar header\n");
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000192 return(head);
193}
194
195/*
196 * find an entry in the linked list matching the filename
197 */
198static headerL_t *findEntry(headerL_t *head, const char *filename)
199{
200 while(head->next != NULL) {
201 if (strcmp(filename, head->name)==0)
202 return(head);
203 head=head->next;
204 }
205 return(NULL);
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000206}
Eric Andersen852ff132000-06-16 04:56:40 +0000207
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000208/*
209 * populate linked list with all ar file entries and offset
210 */
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000211static int displayEntry(headerL_t *head, int funct)
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000212{
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000213 if ((funct & VERBOSE) == VERBOSE) {
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000214 printf("%s %d/%d %8d %s ", modeString(head->mode), head->uid, head->gid, head->size, timeString(head->mtime));
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000215 }
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000216 printf("%s\n", head->name);
217 head = head->next;
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000218 return(TRUE);
219}
Eric Andersen852ff132000-06-16 04:56:40 +0000220
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000221static int extractAr(int srcFd, int dstFd, headerL_t *file)
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000222{
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000223 lseek(srcFd, file->offset, SEEK_SET);
224 if (copySubFile(srcFd, dstFd, (size_t) file->size) == TRUE)
225 return(TRUE);
226 return(FALSE);
Eric Andersen86ab8a32000-06-02 03:21:42 +0000227}
228
229extern int ar_main(int argc, char **argv)
230{
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000231 int funct = 0, opt=0;
232 int srcFd=0, dstFd=0;
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000233 headerL_t *header, *entry, *extractList;
234
Glenn L McGrathe2b345a2000-09-09 14:50:04 +0000235 while ((opt = getopt(argc, argv, "ovtpxR")) != -1) {
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000236 switch (opt) {
Eric Andersen57ebebf2000-07-05 17:21:58 +0000237 case 'o':
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000238 funct = funct | PRESERVE_DATE;
Eric Andersen86ab8a32000-06-02 03:21:42 +0000239 break;
Eric Andersen57ebebf2000-07-05 17:21:58 +0000240 case 'v':
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000241 funct = funct | VERBOSE;
Eric Andersen86ab8a32000-06-02 03:21:42 +0000242 break;
Eric Andersen57ebebf2000-07-05 17:21:58 +0000243 case 't':
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000244 funct = funct | DISPLAY;
Glenn L McGrath437bf722000-09-09 13:38:26 +0000245 break;
Eric Andersen57ebebf2000-07-05 17:21:58 +0000246 case 'x':
Glenn L McGrath437bf722000-09-09 13:38:26 +0000247 funct = funct | EXT_TO_FILE;
248 break;
Eric Andersen57ebebf2000-07-05 17:21:58 +0000249 case 'p':
Glenn L McGrath437bf722000-09-09 13:38:26 +0000250 funct = funct | EXT_TO_STDOUT;
Eric Andersen86ab8a32000-06-02 03:21:42 +0000251 break;
Glenn L McGrathe2b345a2000-09-09 14:50:04 +0000252 case 'R':
253 funct = funct | RECURSIVE;
254 break;
Eric Andersen86ab8a32000-06-02 03:21:42 +0000255 default:
256 usage(ar_usage);
257 }
258 }
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000259
Glenn L McGrath437bf722000-09-09 13:38:26 +0000260 /* check the src filename was specified */
261 if (optind == argc) {
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000262 usage(ar_usage);
263 return(FALSE);
264 }
Eric Andersen852ff132000-06-16 04:56:40 +0000265
Glenn L McGrath437bf722000-09-09 13:38:26 +0000266 if ( (srcFd = open(argv[optind], O_RDONLY)) < 0) {
267 errorMsg("Cannot read %s\n", optarg);
268 return (FALSE);
269 }
270 optind++;
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000271 entry = (headerL_t *) malloc(sizeof(headerL_t));
272 header = (headerL_t *) malloc(sizeof(headerL_t));
273 extractList = (headerL_t *) malloc(sizeof(headerL_t));
274
Glenn L McGrathe2b345a2000-09-09 14:50:04 +0000275 header = getHeaders(srcFd, header, funct);
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000276
277 /* find files to extract or display */
278 if (optind<argc) {
279 /* only handle specified files */
280 while(optind < argc) {
281 if ( (entry = findEntry(header, argv[optind])) != NULL) {
282 entry->next = (headerL_t *) malloc(sizeof(headerL_t));
283 *entry->next = *extractList;
284 *extractList = *entry;
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000285 }
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000286 optind++;
287 }
288 }
289 else
290 /* extract everything */
291 extractList = header;
292
293 while(extractList->next != NULL) {
294 if ( (funct & EXT_TO_FILE) == EXT_TO_FILE) {
Glenn L McGrath6fb88e72000-09-09 12:48:40 +0000295 dstFd = open(extractList->name, O_WRONLY | O_CREAT, extractList->mode);
296
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000297 extractAr(srcFd, dstFd, extractList);
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000298 }
Glenn L McGrath8324b9f2000-09-09 08:35:45 +0000299 if ( (funct & EXT_TO_STDOUT) == EXT_TO_STDOUT)
300 extractAr(srcFd, fileno(stdout), extractList);
301 if ( (funct & DISPLAY) == DISPLAY)
302 displayEntry(extractList, funct);
303 extractList=extractList->next;
304 }
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000305 return (TRUE);
Eric Andersen86ab8a32000-06-02 03:21:42 +0000306}