Skip to content

Latest commit

 

History

History
802 lines (657 loc) · 21.8 KB

archive_tar.c

File metadata and controls

802 lines (657 loc) · 21.8 KB
 
May 12, 2007
May 12, 2007
1
2
3
4
5
6
7
/**
* MojoSetup; a portable, flexible installation application.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/
May 5, 2007
May 5, 2007
8
Jan 11, 2009
Jan 11, 2009
9
10
11
// Specs for the tar format can be found here...
// http://www.gnu.org/software/tar/manual/html_section/Standard.html
May 5, 2007
May 5, 2007
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include "fileio.h"
#if !SUPPORT_TAR
MojoArchive *MojoArchive_createTAR(MojoInput *io) { return NULL; }
#else
#if SUPPORT_TAR_GZ
#include "zlib-1.2.3/zlib.h"
#define GZIP_READBUFSIZE (128 * 1024)
typedef struct GZIPinfo
{
MojoInput *origio;
uint64 uncompressed_position;
uint8 *buffer;
z_stream stream;
} GZIPinfo;
static MojoInput *make_gzip_input(MojoInput *origio);
static voidpf mojoZlibAlloc(voidpf opaque, uInt items, uInt size)
{
return xmalloc(items * size);
} // mojoZlibAlloc
static void mojoZlibFree(voidpf opaque, voidpf address)
{
free(address);
} // mojoZlibFree
static void initializeZStream(z_stream *pstr)
{
memset(pstr, '\0', sizeof (z_stream));
pstr->zalloc = mojoZlibAlloc;
pstr->zfree = mojoZlibFree;
May 5, 2007
May 5, 2007
50
} // initializeZStream
May 5, 2007
May 5, 2007
51
May 7, 2007
May 7, 2007
52
53
static boolean MojoInput_gzip_ready(MojoInput *io)
{
May 10, 2009
May 10, 2009
54
return true; // !!! FIXME: ready if there are bytes uncompressed.
May 7, 2007
May 7, 2007
55
} // MojoInput_gzip_ready
May 5, 2007
May 5, 2007
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
static boolean MojoInput_gzip_seek(MojoInput *io, uint64 offset)
{
// This is all really expensive.
GZIPinfo *info = (GZIPinfo *) io->opaque;
/*
* If seeking backwards, we need to redecode the file
* from the start and throw away the compressed bits until we hit
* the offset we need. If seeking forward, we still need to
* decode, but we don't rewind first.
*/
if (offset < info->uncompressed_position)
{
if (!info->origio->seek(info->origio, 0))
May 5, 2007
May 5, 2007
71
return false;
May 5, 2007
May 5, 2007
72
inflateEnd(&info->stream);
May 5, 2007
May 5, 2007
73
74
75
initializeZStream(&info->stream);
if (inflateInit2(&info->stream, 31) != Z_OK)
return false;
May 5, 2007
May 5, 2007
76
77
78
79
80
81
82
info->uncompressed_position = 0;
} // if
while (info->uncompressed_position != offset)
{
uint8 buf[512];
uint32 maxread;
May 5, 2007
May 5, 2007
83
int64 br;
May 5, 2007
May 5, 2007
84
85
86
87
88
maxread = (uint32) (offset - info->uncompressed_position);
if (maxread > sizeof (buf))
maxread = sizeof (buf);
May 5, 2007
May 5, 2007
89
br = io->read(io, buf, maxread);
May 5, 2007
May 5, 2007
90
if (br != maxread)
May 5, 2007
May 5, 2007
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
return false;
} /* while */
return true;
} // MojoInput_gzip_seek
static int64 MojoInput_gzip_tell(MojoInput *io)
{
return (((GZIPinfo *) io->opaque)->uncompressed_position);
} // MojoInput_gzip_tell
static int64 MojoInput_gzip_length(MojoInput *io)
{
return -1;
} // MojoInput_gzip_length
static int64 MojoInput_gzip_read(MojoInput *io, void *buf, uint32 bufsize)
{
GZIPinfo *info = (GZIPinfo *) io->opaque;
MojoInput *origio = info->origio;
int64 retval = 0;
May 5, 2007
May 5, 2007
113
114
if (bufsize == 0)
return 0; // quick rejection.
May 5, 2007
May 5, 2007
115
116
117
118
119
120
121
else
{
info->stream.next_out = buf;
info->stream.avail_out = bufsize;
while (retval < ((int64) bufsize))
{
May 5, 2007
May 5, 2007
122
const uint32 before = info->stream.total_out;
May 5, 2007
May 5, 2007
123
124
125
126
127
128
129
130
131
132
133
134
int rc;
if (info->stream.avail_in == 0)
{
int64 br;
br = origio->length(origio) - origio->tell(origio);
if (br > 0)
{
if (br > GZIP_READBUFSIZE)
br = GZIP_READBUFSIZE;
Sep 25, 2007
Sep 25, 2007
135
br = origio->read(origio, info->buffer, (uint32) br);
May 5, 2007
May 5, 2007
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
if (br <= 0)
return -1;
info->stream.next_in = info->buffer;
info->stream.avail_in = (uint32) br;
} // if
} // if
rc = inflate(&info->stream, Z_SYNC_FLUSH);
retval += (info->stream.total_out - before);
if (rc != Z_OK)
return -1;
} // while
} // else
if (retval > 0)
info->uncompressed_position += (uint32) retval;
return retval;
} // MojoInput_gzip_read
static MojoInput* MojoInput_gzip_duplicate(MojoInput *io)
{
GZIPinfo *info = (GZIPinfo *) io->opaque;
MojoInput *retval = NULL;
MojoInput *newio = info->origio->duplicate(info->origio);
if (newio != NULL)
{
May 5, 2007
May 5, 2007
165
166
167
retval = make_gzip_input(newio);
if (retval != NULL)
retval->seek(retval, io->tell(io)); // slow, slow, slow...
May 5, 2007
May 5, 2007
168
169
170
171
} // if
return retval;
} // MojoInput_gzip_duplicate
Jan 14, 2008
Jan 14, 2008
172
static void free_gzip_input(MojoInput *io)
May 5, 2007
May 5, 2007
173
174
175
176
177
178
{
GZIPinfo *info = (GZIPinfo *) io->opaque;
inflateEnd(&info->stream);
free(info->buffer);
free(info);
free(io);
Jan 14, 2008
Jan 14, 2008
179
180
181
182
183
184
185
186
} // free_gzip_input
static void MojoInput_gzip_close(MojoInput *io)
{
GZIPinfo *info = (GZIPinfo *) io->opaque;
if (info->origio != NULL)
info->origio->close(info->origio);
free_gzip_input(io);
May 5, 2007
May 5, 2007
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
} // MojoInput_gzip_close
static MojoInput *make_gzip_input(MojoInput *origio)
{
MojoInput *io = NULL;
GZIPinfo *info = (GZIPinfo *) xmalloc(sizeof (GZIPinfo));
initializeZStream(&info->stream);
if (inflateInit2(&info->stream, 31) != Z_OK)
{
free(info);
return NULL;
} // if
info->origio = origio;
info->buffer = (uint8 *) xmalloc(GZIP_READBUFSIZE);
io = (MojoInput *) xmalloc(sizeof (MojoInput));
May 7, 2007
May 7, 2007
205
io->ready = MojoInput_gzip_ready;
May 5, 2007
May 5, 2007
206
207
208
209
210
211
212
213
214
215
216
217
218
io->read = MojoInput_gzip_read;
io->seek = MojoInput_gzip_seek;
io->tell = MojoInput_gzip_tell;
io->length = MojoInput_gzip_length;
io->duplicate = MojoInput_gzip_duplicate;
io->close = MojoInput_gzip_close;
io->opaque = info;
return io;
} // make_gzip_info
#endif // SUPPORT_TAR_GZ
May 5, 2007
May 5, 2007
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
#if SUPPORT_TAR_BZ2
#include "bzip2-1.0.4/bzlib.h"
#define BZIP2_READBUFSIZE (128 * 1024)
typedef struct BZIP2info
{
MojoInput *origio;
uint64 uncompressed_position;
uint8 *buffer;
bz_stream stream;
} BZIP2info;
static MojoInput *make_bzip2_input(MojoInput *origio);
May 9, 2007
May 9, 2007
236
static void *mojoBzlib2Alloc(void *opaque, int items, int size)
May 5, 2007
May 5, 2007
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
{
return xmalloc(items * size);
} // mojoBzlib2Alloc
static void mojoBzlib2Free(void *opaque, void *address)
{
free(address);
} // mojoBzlib2Free
static void initializeBZ2Stream(bz_stream *pstr)
{
memset(pstr, '\0', sizeof (bz_stream));
pstr->bzalloc = mojoBzlib2Alloc;
pstr->bzfree = mojoBzlib2Free;
} // initializeBZ2Stream
May 7, 2007
May 7, 2007
253
254
static boolean MojoInput_bzip2_ready(MojoInput *io)
{
May 10, 2009
May 10, 2009
255
return true; // !!! FIXME: ready if there are bytes uncompressed.
May 7, 2007
May 7, 2007
256
} // MojoInput_bzip2_ready
May 5, 2007
May 5, 2007
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
static boolean MojoInput_bzip2_seek(MojoInput *io, uint64 offset)
{
// This is all really expensive.
BZIP2info *info = (BZIP2info *) io->opaque;
/*
* If seeking backwards, we need to redecode the file
* from the start and throw away the compressed bits until we hit
* the offset we need. If seeking forward, we still need to
* decode, but we don't rewind first.
*/
if (offset < info->uncompressed_position)
{
#if 0
/* we do a copy so state is sane if inflateInit2() fails. */
bz_stream str;
initializeBZ2Stream(&str);
if (BZ2_bzDecompressInit(&str, 0, 0) != BZ_OK)
return false;
if (!info->origio->seek(info->origio, 0))
return false; // !!! FIXME: leaking (str)?
BZ2_bzDecompressEnd(&info->stream);
memcpy(&info->stream, &str, sizeof (bz_stream));
#endif
if (!info->origio->seek(info->origio, 0))
return false;
BZ2_bzDecompressEnd(&info->stream);
initializeBZ2Stream(&info->stream);
if (BZ2_bzDecompressInit(&info->stream, 0, 0) != BZ_OK)
return false;
info->uncompressed_position = 0;
} // if
while (info->uncompressed_position != offset)
{
uint8 buf[512];
uint32 maxread;
int64 br;
maxread = (uint32) (offset - info->uncompressed_position);
if (maxread > sizeof (buf))
maxread = sizeof (buf);
br = io->read(io, buf, maxread);
if (br != maxread)
return false;
} /* while */
return true;
} // MojoInput_bzip2_seek
static int64 MojoInput_bzip2_tell(MojoInput *io)
{
return (((BZIP2info *) io->opaque)->uncompressed_position);
} // MojoInput_bzip2_tell
static int64 MojoInput_bzip2_length(MojoInput *io)
{
return -1;
} // MojoInput_bzip2_length
static int64 MojoInput_bzip2_read(MojoInput *io, void *buf, uint32 bufsize)
{
BZIP2info *info = (BZIP2info *) io->opaque;
MojoInput *origio = info->origio;
int64 retval = 0;
if (bufsize == 0)
return 0; // quick rejection.
else
{
info->stream.next_out = buf;
info->stream.avail_out = bufsize;
while (retval < ((int64) bufsize))
{
const uint32 before = info->stream.total_out_lo32;
int rc;
if (info->stream.avail_in == 0)
{
int64 br;
br = origio->length(origio) - origio->tell(origio);
if (br > 0)
{
if (br > BZIP2_READBUFSIZE)
br = BZIP2_READBUFSIZE;
Sep 25, 2007
Sep 25, 2007
350
br = origio->read(origio, info->buffer, (uint32) br);
May 5, 2007
May 5, 2007
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
if (br <= 0)
return -1;
info->stream.next_in = (char *) info->buffer;
info->stream.avail_in = (uint32) br;
} // if
} // if
rc = BZ2_bzDecompress(&info->stream);
retval += (info->stream.total_out_lo32 - before);
if (rc != BZ_OK)
return -1;
} // while
} // else
if (retval > 0)
info->uncompressed_position += (uint32) retval;
return retval;
} // MojoInput_bzip2_read
static MojoInput* MojoInput_bzip2_duplicate(MojoInput *io)
{
BZIP2info *info = (BZIP2info *) io->opaque;
MojoInput *retval = NULL;
MojoInput *newio = info->origio->duplicate(info->origio);
if (newio != NULL)
{
retval = make_bzip2_input(newio);
if (retval != NULL)
retval->seek(retval, io->tell(io)); // slow, slow, slow...
} // if
return retval;
} // MojoInput_bzip2_duplicate
Jan 14, 2008
Jan 14, 2008
386
static void free_bzip2_input(MojoInput *io)
May 5, 2007
May 5, 2007
387
388
389
390
391
392
{
BZIP2info *info = (BZIP2info *) io->opaque;
BZ2_bzDecompressEnd(&info->stream);
free(info->buffer);
free(info);
free(io);
Jan 14, 2008
Jan 14, 2008
393
394
395
396
397
398
399
400
} // free_bzip2_input
static void MojoInput_bzip2_close(MojoInput *io)
{
BZIP2info *info = (BZIP2info *) io->opaque;
if (info->origio != NULL)
info->origio->close(info->origio);
free_bzip2_input(io);
May 5, 2007
May 5, 2007
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
} // MojoInput_bzip2_close
static MojoInput *make_bzip2_input(MojoInput *origio)
{
MojoInput *io = NULL;
BZIP2info *info = (BZIP2info *) xmalloc(sizeof (BZIP2info));
initializeBZ2Stream(&info->stream);
if (BZ2_bzDecompressInit(&info->stream, 0, 0) != BZ_OK)
{
free(info);
return NULL;
} // if
info->origio = origio;
info->buffer = (uint8 *) xmalloc(BZIP2_READBUFSIZE);
io = (MojoInput *) xmalloc(sizeof (MojoInput));
May 7, 2007
May 7, 2007
419
io->ready = MojoInput_bzip2_ready;
May 5, 2007
May 5, 2007
420
421
422
423
424
425
426
427
428
429
430
431
432
io->read = MojoInput_bzip2_read;
io->seek = MojoInput_bzip2_seek;
io->tell = MojoInput_bzip2_tell;
io->length = MojoInput_bzip2_length;
io->duplicate = MojoInput_bzip2_duplicate;
io->close = MojoInput_bzip2_close;
io->opaque = info;
return io;
} // make_bzip2_info
#endif // SUPPORT_TAR_BZ2
May 5, 2007
May 5, 2007
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
// MojoInput implementation...
// Decompression is handled in the parent MojoInput, so this just needs to
// make sure we stay within the bounds of the tarfile entry.
typedef struct TARinput
{
int64 fsize;
int64 offset;
MojoArchive *ar;
} TARinput;
typedef struct TARinfo
{
MojoInput *input;
May 5, 2007
May 5, 2007
448
uint64 curFileStart;
May 5, 2007
May 5, 2007
449
450
451
uint64 nextEnumPos;
} TARinfo;
May 7, 2007
May 7, 2007
452
453
static boolean MojoInput_tar_ready(MojoInput *io)
{
May 10, 2009
May 10, 2009
454
return true; // !!! FIXME: ready if there are bytes uncompressed.
May 7, 2007
May 7, 2007
455
456
} // MojoInput_tar_ready
May 5, 2007
May 5, 2007
457
458
459
460
461
static int64 MojoInput_tar_read(MojoInput *io, void *buf, uint32 bufsize)
{
TARinput *input = (TARinput *) io->opaque;
int64 pos = io->tell(io);
if ((pos + bufsize) > input->fsize)
Sep 25, 2007
Sep 25, 2007
462
bufsize = (uint32) (input->fsize - pos);
May 5, 2007
May 5, 2007
463
464
465
466
467
468
469
return input->ar->io->read(input->ar->io, buf, bufsize);
} // MojoInput_tar_read
static boolean MojoInput_tar_seek(MojoInput *io, uint64 pos)
{
TARinput *input = (TARinput *) io->opaque;
boolean retval = false;
Sep 25, 2007
Sep 25, 2007
470
if (pos < ((uint64) input->fsize))
May 5, 2007
May 5, 2007
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
retval = input->ar->io->seek(input->ar->io, input->offset + pos);
return retval;
} // MojoInput_tar_seek
static int64 MojoInput_tar_tell(MojoInput *io)
{
TARinput *input = (TARinput *) io->opaque;
return input->ar->io->tell(input->ar->io) - input->offset;
} // MojoInput_tar_tell
static int64 MojoInput_tar_length(MojoInput *io)
{
return ((TARinput *) io->opaque)->fsize;
} // MojoInput_tar_length
static MojoInput *MojoInput_tar_duplicate(MojoInput *io)
{
MojoInput *retval = NULL;
Jan 14, 2008
Jan 14, 2008
489
fatal(_("BUG: Can't duplicate tar inputs")); // !!! FIXME: why not?
May 5, 2007
May 5, 2007
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
#if 0
TARinput *input = (TARinput *) io->opaque;
MojoInput *origio = (MojoInput *) io->opaque;
MojoInput *newio = origio->duplicate(origio);
if (newio != NULL)
{
TARinput *newopaque = (TARinput *) xmalloc(sizeof (TARinput));
newopaque->origio = newio;
newopaque->fsize = input->fsize;
newopaque->offset = input->offset;
retval = (MojoInput *) xmalloc(sizeof (MojoInput));
memcpy(retval, io, sizeof (MojoInput));
retval->opaque = newopaque;
} // if
#endif
return retval;
} // MojoInput_tar_duplicate
static void MojoInput_tar_close(MojoInput *io)
{
TARinput *input = (TARinput *) io->opaque;
TARinfo *info = (TARinfo *) input->ar->opaque;
//input->ar->io->close(input->ar->io);
info->input = NULL;
free(input);
free(io);
} // MojoInput_tar_close
// MojoArchive implementation...
static boolean MojoArchive_tar_enumerate(MojoArchive *ar)
{
TARinfo *info = (TARinfo *) ar->opaque;
MojoArchive_resetEntry(&ar->prevEnum);
if (info->input != NULL)
fatal("BUG: tar entry still open on new enumeration");
May 5, 2007
May 5, 2007
528
info->curFileStart = info->nextEnumPos = 0;
May 5, 2007
May 5, 2007
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
return true;
} // MojoArchive_tar_enumerate
// These are byte offsets where fields start in the tar header blocks.
#define TAR_FNAME 0
#define TAR_FNAMELEN 100
#define TAR_MODE 100
#define TAR_MODELEN 8
#define TAR_UID 108
#define TAR_UIDLEN 8
#define TAR_GID 116
#define TAR_GIDLEN 8
#define TAR_SIZE 124
#define TAR_SIZELEN 12
#define TAR_MTIME 136
#define TAR_MTIMELEN 12
#define TAR_CHKSUM 148
#define TAR_CHKSUMLEN 8
#define TAR_TYPE 156
#define TAR_TYPELEN 1
#define TAR_LINKNAME 157
#define TAR_LINKNAMELEN 100
#define TAR_MAGIC 257
#define TAR_MAGICLEN 6
#define TAR_VERSION 263
#define TAR_VERSIONLEN 2
#define TAR_UNAME 265
#define TAR_UNAMELEN 32
#define TAR_GNAME 297
#define TAR_GNAMELEN 32
#define TAR_DEVMAJOR 329
#define TAR_DEVMAJORLEN 8
#define TAR_DEVMINOR 337
#define TAR_DEVMINORLEN 8
#define TAR_FNAMEPRE 345
#define TAR_FNAMEPRELEN 155
// tar entry types...
#define TAR_TYPE_FILE '0'
#define TAR_TYPE_HARDLINK '1'
#define TAR_TYPE_SYMLINK '2'
#define TAR_TYPE_CHARDEV '3'
#define TAR_TYPE_BLOCKDEV '4'
#define TAR_TYPE_DIRECTORY '5'
#define TAR_TYPE_FIFO '6'
static boolean is_ustar(const uint8 *block)
{
return ( (memcmp(&block[TAR_MAGIC], "ustar ", TAR_MAGICLEN) == 0) ||
(memcmp(&block[TAR_MAGIC], "ustar\0", TAR_MAGICLEN) == 0) );
} // is_ustar
Jan 11, 2009
Jan 11, 2009
582
static int64 octal_convert(const uint8 *str, const size_t len)
May 5, 2007
May 5, 2007
583
584
585
{
int64 retval = 0;
int64 multiplier = 1;
Jan 11, 2009
Jan 11, 2009
586
587
588
const uint8 *end = str + len;
const uint8 *ptr;
Jan 11, 2009
Jan 11, 2009
589
590
591
while ((*str == ' ') && (str != end))
str++;
Jan 11, 2009
Jan 11, 2009
592
593
ptr = str;
while ((ptr != end) && (*ptr >= '0') && (*ptr <= '7'))
May 5, 2007
May 5, 2007
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
ptr++;
while (--ptr >= str)
{
uint64 val = *ptr - '0';
retval += val * multiplier;
multiplier *= 8;
} // while
return retval;
} // octal_convert
static const MojoArchiveEntry *MojoArchive_tar_enumNext(MojoArchive *ar)
{
TARinfo *info = (TARinfo *) ar->opaque;
boolean zeroes = true;
boolean ustar = false;
uint8 scratch[512];
uint8 block[512];
size_t fnamelen = 0;
int type = 0;
memset(scratch, '\0', sizeof (scratch));
MojoArchive_resetEntry(&ar->prevEnum);
if (info->input != NULL)
fatal("BUG: tar entry still open on new enumeration");
if (!ar->io->seek(ar->io, info->nextEnumPos))
return NULL;
// Find a non-zero block of data. Tarballs have two 512 blocks filled with
// null bytes at the end of the archive, but you can cat tarballs
// together, so you can't treat them as EOF indicators. Just skip them.
while (zeroes)
{
if (ar->io->read(ar->io, block, sizeof (block)) != sizeof (block))
May 5, 2007
May 5, 2007
632
return NULL; // !!! FIXME: fatal() ?
May 5, 2007
May 5, 2007
633
634
635
636
637
638
639
zeroes = (memcmp(block, scratch, sizeof (block)) == 0);
} // while
// !!! FIXME We should probably check the checksum.
ustar = is_ustar(block);
Jan 11, 2009
Jan 11, 2009
640
641
ar->prevEnum.perms = (uint16) octal_convert(&block[TAR_MODE], TAR_MODELEN);
ar->prevEnum.filesize = octal_convert(&block[TAR_SIZE], TAR_SIZELEN);
May 5, 2007
May 5, 2007
642
info->curFileStart = info->nextEnumPos + 512;
May 5, 2007
May 5, 2007
643
644
645
646
647
648
649
650
651
652
653
info->nextEnumPos += 512 + ar->prevEnum.filesize;
if (ar->prevEnum.filesize % 512)
info->nextEnumPos += 512 - (ar->prevEnum.filesize % 512);
// We count on (scratch) being zeroed out here!
// prefix of filename is at the end for legacy compat.
if (ustar)
memcpy(scratch, &block[TAR_FNAMEPRE], TAR_FNAMEPRELEN);
fnamelen = strlen((const char *) scratch);
memcpy(&scratch[fnamelen], &block[TAR_FNAME], TAR_FNAMELEN);
fnamelen += strlen((const char *) &scratch[fnamelen]);
May 5, 2007
May 5, 2007
654
655
656
657
if (fnamelen == 0)
return NULL; // corrupt file. !!! FIXME: fatal() ?
May 5, 2007
May 5, 2007
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
ar->prevEnum.filename = xstrdup((const char *) scratch);
type = block[TAR_TYPE];
if (type == 0) // some archivers do the file type as 0 instead of '0'.
type = TAR_TYPE_FILE;
if (ar->prevEnum.filename[fnamelen-1] == '/')
{
while (ar->prevEnum.filename[fnamelen-1] == '/')
ar->prevEnum.filename[--fnamelen] = '\0';
// legacy tar entries don't have a dir type, they just append a '/' to
// the filename...
if ((!ustar) && (type == TAR_TYPE_FILE))
type = TAR_TYPE_DIRECTORY;
} // if
ar->prevEnum.type = MOJOARCHIVE_ENTRY_UNKNOWN;
if (type == TAR_TYPE_FILE)
ar->prevEnum.type = MOJOARCHIVE_ENTRY_FILE;
else if (type == TAR_TYPE_DIRECTORY)
ar->prevEnum.type = MOJOARCHIVE_ENTRY_DIR;
else if (type == TAR_TYPE_SYMLINK)
{
ar->prevEnum.type = MOJOARCHIVE_ENTRY_SYMLINK;
memcpy(scratch, &block[TAR_LINKNAME], TAR_LINKNAMELEN);
scratch[TAR_LINKNAMELEN] = '\0'; // just in case.
ar->prevEnum.linkdest = xstrdup((const char *) scratch);
} // else if
return &ar->prevEnum;
} // MojoArchive_tar_enumNext
static MojoInput *MojoArchive_tar_openCurrentEntry(MojoArchive *ar)
{
TARinfo *info = (TARinfo *) ar->opaque;
MojoInput *io = NULL;
TARinput *opaque = NULL;
May 5, 2007
May 5, 2007
698
699
700
if (info->curFileStart == 0)
return NULL;
May 5, 2007
May 5, 2007
701
702
703
704
705
706
707
708
// Can't open multiple, since we would end up decompressing twice
// to enumerate the next file, so I imposed this limitation for now.
if (info->input != NULL)
fatal("BUG: tar entry double open");
opaque = (TARinput *) xmalloc(sizeof (TARinput));
opaque->ar = ar;
opaque->fsize = ar->prevEnum.filesize;
May 5, 2007
May 5, 2007
709
opaque->offset = info->curFileStart;
May 5, 2007
May 5, 2007
710
711
io = (MojoInput *) xmalloc(sizeof (MojoInput));
May 7, 2007
May 7, 2007
712
io->ready = MojoInput_tar_ready;
May 5, 2007
May 5, 2007
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
io->read = MojoInput_tar_read;
io->seek = MojoInput_tar_seek;
io->tell = MojoInput_tar_tell;
io->length = MojoInput_tar_length;
io->duplicate = MojoInput_tar_duplicate;
io->close = MojoInput_tar_close;
io->opaque = opaque;
info->input = io;
return io;
} // MojoArchive_tar_openCurrentEntry
static void MojoArchive_tar_close(MojoArchive *ar)
{
TARinfo *info = (TARinfo *) ar->opaque;
MojoArchive_resetEntry(&ar->prevEnum);
ar->io->close(ar->io);
free(info);
free(ar);
} // MojoArchive_tar_close
Jan 14, 2008
Jan 14, 2008
735
736
static void free_wrapper_noop(MojoInput *io) {}
May 5, 2007
May 5, 2007
737
738
739
740
741
MojoArchive *MojoArchive_createTAR(MojoInput *io)
{
MojoArchive *ar = NULL;
uint8 sig[512];
int64 br = io->read(io, sig, 4);
Jan 14, 2008
Jan 14, 2008
742
void (*free_wrapper)(MojoInput *io) = free_wrapper_noop;
May 5, 2007
May 5, 2007
743
744
745
746
747
748
749
750
751
752
753
if ((!io->seek(io, 0)) || (br != 4))
return NULL;
if (br == 4)
{
// Look at the first piece of the file to decide if it is compressed,
// and if so, wrap the MojoInput in a decompressor.
#if SUPPORT_TAR_GZ // gzip compressed?
if ((sig[0] == 0x1F) && (sig[1] == 0x8B) && (sig[2] == 0x08))
Jan 14, 2008
Jan 14, 2008
754
755
{
free_wrapper = free_gzip_input;
May 5, 2007
May 5, 2007
756
io = make_gzip_input(io);
Jan 14, 2008
Jan 14, 2008
757
} // if
May 5, 2007
May 5, 2007
758
759
760
761
#endif
// BZ2 compressed?
#if SUPPORT_TAR_BZ2 // bzip2 compressed?
May 9, 2007
May 9, 2007
762
if ((sig[0] == 0x42) && (sig[1] == 0x5A))
Jan 14, 2008
Jan 14, 2008
763
764
{
free_wrapper = free_bzip2_input;
May 5, 2007
May 5, 2007
765
io = make_bzip2_input(io);
Jan 14, 2008
Jan 14, 2008
766
} // if
May 5, 2007
May 5, 2007
767
768
769
770
771
772
773
774
775
#endif
} // if
// Now see if this is a tar archive. We only support "USTAR" format,
// since it has a detectable header. GNU and BSD tar has been creating
// these for years, so it's okay to ignore other ones, I guess.
br = io->read(io, sig, sizeof (sig)); // potentially compressed.
if ((!io->seek(io, 0)) || (br != sizeof (sig)))
Jan 14, 2008
Jan 14, 2008
776
777
778
779
{
free_wrapper(io);
return NULL;
} // if
May 5, 2007
May 5, 2007
780
781
if (!is_ustar(sig))
Jan 14, 2008
Jan 14, 2008
782
783
784
785
786
{
free_wrapper(io);
return NULL;
} // if
May 5, 2007
May 5, 2007
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
// okay, it's a tarball, we're good to go.
ar = (MojoArchive *) xmalloc(sizeof (MojoArchive));
ar->opaque = (TARinfo *) xmalloc(sizeof (TARinfo));
ar->enumerate = MojoArchive_tar_enumerate;
ar->enumNext = MojoArchive_tar_enumNext;
ar->openCurrentEntry = MojoArchive_tar_openCurrentEntry;
ar->close = MojoArchive_tar_close;
ar->io = io;
return ar;
} // MojoArchive_createTAR
#endif // SUPPORT_TAR
// end of archive_tar.c ...