]> Dogcows Code - chaz/tar/blob - src/sparse.c
(tar_sparse_init): Fill structure with zeros. Call
[chaz/tar] / src / sparse.c
1 /* Functions for dealing with sparse files
2
3 Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
4
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2, or (at your option) any later
8 version.
9
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
13 Public License for more details.
14
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
18
19 #include <system.h>
20 #include <inttostr.h>
21 #include <quotearg.h>
22 #include "common.h"
23
24 struct tar_sparse_file;
25 static bool sparse_select_optab (struct tar_sparse_file *file);
26
27 enum sparse_scan_state
28 {
29 scan_begin,
30 scan_block,
31 scan_end
32 };
33
34 struct tar_sparse_optab
35 {
36 bool (*init) (struct tar_sparse_file *);
37 bool (*done) (struct tar_sparse_file *);
38 bool (*sparse_member_p) (struct tar_sparse_file *);
39 bool (*dump_header) (struct tar_sparse_file *);
40 bool (*fixup_header) (struct tar_sparse_file *);
41 bool (*decode_header) (struct tar_sparse_file *);
42 bool (*scan_block) (struct tar_sparse_file *, enum sparse_scan_state,
43 void *);
44 bool (*dump_region) (struct tar_sparse_file *, size_t);
45 bool (*extract_region) (struct tar_sparse_file *, size_t);
46 };
47
48 struct tar_sparse_file
49 {
50 int fd; /* File descriptor */
51 bool seekable; /* Is fd seekable? */
52 off_t offset; /* Current offset in fd if seekable==false.
53 Otherwise unused */
54 off_t dumped_size; /* Number of bytes actually written
55 to the archive */
56 struct tar_stat_info *stat_info; /* Information about the file */
57 struct tar_sparse_optab const *optab;
58 void *closure; /* Any additional data optab calls might
59 require */
60 };
61
62 /* Dump zeros to file->fd until offset is reached. It is used instead of
63 lseek if the output file is not seekable */
64 static bool
65 dump_zeros (struct tar_sparse_file *file, off_t offset)
66 {
67 static char const zero_buf[BLOCKSIZE];
68
69 if (offset < file->offset)
70 {
71 errno = EINVAL;
72 return false;
73 }
74
75 while (file->offset < offset)
76 {
77 size_t size = (BLOCKSIZE < offset - file->offset
78 ? BLOCKSIZE
79 : offset - file->offset);
80 ssize_t wrbytes;
81
82 wrbytes = write (file->fd, zero_buf, size);
83 if (wrbytes <= 0)
84 {
85 if (wrbytes == 0)
86 errno = EINVAL;
87 return false;
88 }
89 file->offset += wrbytes;
90 }
91
92 return true;
93 }
94
95 static bool
96 tar_sparse_member_p (struct tar_sparse_file *file)
97 {
98 if (file->optab->sparse_member_p)
99 return file->optab->sparse_member_p (file);
100 return false;
101 }
102
103 static bool
104 tar_sparse_init (struct tar_sparse_file *file)
105 {
106 memset (file, 0, sizeof *file);
107
108 if (!sparse_select_optab (file))
109 return false;
110
111 if (file->optab->init)
112 return file->optab->init (file);
113
114 return true;
115 }
116
117 static bool
118 tar_sparse_done (struct tar_sparse_file *file)
119 {
120 if (file->optab->done)
121 return file->optab->done (file);
122 return true;
123 }
124
125 static bool
126 tar_sparse_scan (struct tar_sparse_file *file, enum sparse_scan_state state,
127 void *block)
128 {
129 if (file->optab->scan_block)
130 return file->optab->scan_block (file, state, block);
131 return true;
132 }
133
134 static bool
135 tar_sparse_dump_region (struct tar_sparse_file *file, size_t i)
136 {
137 if (file->optab->dump_region)
138 return file->optab->dump_region (file, i);
139 return false;
140 }
141
142 static bool
143 tar_sparse_extract_region (struct tar_sparse_file *file, size_t i)
144 {
145 if (file->optab->extract_region)
146 return file->optab->extract_region (file, i);
147 return false;
148 }
149
150 static bool
151 tar_sparse_dump_header (struct tar_sparse_file *file)
152 {
153 if (file->optab->dump_header)
154 return file->optab->dump_header (file);
155 return false;
156 }
157
158 static bool
159 tar_sparse_decode_header (struct tar_sparse_file *file)
160 {
161 if (file->optab->decode_header)
162 return file->optab->decode_header (file);
163 return true;
164 }
165
166 static bool
167 tar_sparse_fixup_header (struct tar_sparse_file *file)
168 {
169 if (file->optab->fixup_header)
170 return file->optab->fixup_header (file);
171 return true;
172 }
173
174 \f
175 static bool
176 lseek_or_error (struct tar_sparse_file *file, off_t offset)
177 {
178 if (file->seekable
179 ? lseek (file->fd, offset, SEEK_SET) < 0
180 : ! dump_zeros (file, offset))
181 {
182 seek_diag_details (file->stat_info->orig_file_name, offset);
183 return false;
184 }
185 return true;
186 }
187
188 /* Takes a blockful of data and basically cruises through it to see if
189 it's made *entirely* of zeros, returning a 0 the instant it finds
190 something that is a nonzero, i.e., useful data. */
191 static bool
192 zero_block_p (char const *buffer, size_t size)
193 {
194 while (size--)
195 if (*buffer++)
196 return false;
197 return true;
198 }
199
200 static void
201 sparse_add_map (struct tar_stat_info *st, struct sp_array const *sp)
202 {
203 struct sp_array *sparse_map = st->sparse_map;
204 size_t avail = st->sparse_map_avail;
205 if (avail == st->sparse_map_size)
206 st->sparse_map = sparse_map =
207 x2nrealloc (sparse_map, &st->sparse_map_size, sizeof *sparse_map);
208 sparse_map[avail] = *sp;
209 st->sparse_map_avail = avail + 1;
210 }
211
212 /* Scan the sparse file and create its map */
213 static bool
214 sparse_scan_file (struct tar_sparse_file *file)
215 {
216 struct tar_stat_info *st = file->stat_info;
217 int fd = file->fd;
218 char buffer[BLOCKSIZE];
219 size_t count;
220 off_t offset = 0;
221 struct sp_array sp = {0, 0};
222
223 if (!lseek_or_error (file, 0))
224 return false;
225
226 st->archive_file_size = 0;
227
228 if (!tar_sparse_scan (file, scan_begin, NULL))
229 return false;
230
231 while ((count = safe_read (fd, buffer, sizeof buffer)) != 0
232 && count != SAFE_READ_ERROR)
233 {
234 /* Analyze the block. */
235 if (zero_block_p (buffer, count))
236 {
237 if (sp.numbytes)
238 {
239 sparse_add_map (st, &sp);
240 sp.numbytes = 0;
241 if (!tar_sparse_scan (file, scan_block, NULL))
242 return false;
243 }
244 }
245 else
246 {
247 if (sp.numbytes == 0)
248 sp.offset = offset;
249 sp.numbytes += count;
250 st->archive_file_size += count;
251 if (!tar_sparse_scan (file, scan_block, buffer))
252 return false;
253 }
254
255 offset += count;
256 }
257
258 if (sp.numbytes == 0)
259 sp.offset = offset;
260
261 sparse_add_map (st, &sp);
262 st->archive_file_size += count;
263 return tar_sparse_scan (file, scan_end, NULL);
264 }
265
266 static struct tar_sparse_optab const oldgnu_optab;
267 static struct tar_sparse_optab const star_optab;
268 static struct tar_sparse_optab const pax_optab;
269
270 static bool
271 sparse_select_optab (struct tar_sparse_file *file)
272 {
273 switch (current_format == DEFAULT_FORMAT ? archive_format : current_format)
274 {
275 case V7_FORMAT:
276 case USTAR_FORMAT:
277 return false;
278
279 case OLDGNU_FORMAT:
280 case GNU_FORMAT: /*FIXME: This one should disappear? */
281 file->optab = &oldgnu_optab;
282 break;
283
284 case POSIX_FORMAT:
285 file->optab = &pax_optab;
286 break;
287
288 case STAR_FORMAT:
289 file->optab = &star_optab;
290 break;
291
292 default:
293 return false;
294 }
295 return true;
296 }
297
298 static bool
299 sparse_dump_region (struct tar_sparse_file *file, size_t i)
300 {
301 union block *blk;
302 off_t bytes_left = file->stat_info->sparse_map[i].numbytes;
303
304 if (!lseek_or_error (file, file->stat_info->sparse_map[i].offset))
305 return false;
306
307 while (bytes_left > 0)
308 {
309 size_t bufsize = (bytes_left > BLOCKSIZE) ? BLOCKSIZE : bytes_left;
310 size_t bytes_read;
311
312 blk = find_next_block ();
313 bytes_read = safe_read (file->fd, blk->buffer, bufsize);
314 if (bytes_read == SAFE_READ_ERROR)
315 {
316 read_diag_details (file->stat_info->orig_file_name,
317 (file->stat_info->sparse_map[i].offset
318 + file->stat_info->sparse_map[i].numbytes
319 - bytes_left),
320 bufsize);
321 return false;
322 }
323
324 memset (blk->buffer + bytes_read, 0, BLOCKSIZE - bytes_read);
325 bytes_left -= bytes_read;
326 file->dumped_size += bytes_read;
327 set_next_block_after (blk);
328 }
329
330 return true;
331 }
332
333 static bool
334 sparse_extract_region (struct tar_sparse_file *file, size_t i)
335 {
336 size_t write_size;
337
338 if (!lseek_or_error (file, file->stat_info->sparse_map[i].offset))
339 return false;
340
341 write_size = file->stat_info->sparse_map[i].numbytes;
342
343 if (write_size == 0)
344 {
345 /* Last block of the file is a hole */
346 if (file->seekable && sys_truncate (file->fd))
347 truncate_warn (file->stat_info->orig_file_name);
348 }
349 else while (write_size > 0)
350 {
351 size_t count;
352 size_t wrbytes = (write_size > BLOCKSIZE) ? BLOCKSIZE : write_size;
353 union block *blk = find_next_block ();
354 if (!blk)
355 {
356 ERROR ((0, 0, _("Unexpected EOF in archive")));
357 return false;
358 }
359 set_next_block_after (blk);
360 count = full_write (file->fd, blk->buffer, wrbytes);
361 write_size -= count;
362 file->dumped_size += count;
363 file->offset += count;
364 if (count != wrbytes)
365 {
366 write_error_details (file->stat_info->orig_file_name,
367 count, wrbytes);
368 return false;
369 }
370 }
371 return true;
372 }
373
374 \f
375
376 /* Interface functions */
377 enum dump_status
378 sparse_dump_file (int fd, struct tar_stat_info *st)
379 {
380 bool rc;
381 struct tar_sparse_file file;
382
383 if (!tar_sparse_init (&file))
384 return dump_status_not_implemented;
385
386 file.stat_info = st;
387 file.fd = fd;
388 file.seekable = true; /* File *must* be seekable for dump to work */
389
390 rc = sparse_scan_file (&file);
391 if (rc && file.optab->dump_region)
392 {
393 tar_sparse_dump_header (&file);
394
395 if (fd >= 0)
396 {
397 size_t i;
398
399 for (i = 0; rc && i < file.stat_info->sparse_map_avail; i++)
400 rc = tar_sparse_dump_region (&file, i);
401 }
402 }
403
404 pad_archive (file.stat_info->archive_file_size - file.dumped_size);
405 return (tar_sparse_done (&file) && rc) ? dump_status_ok : dump_status_short;
406 }
407
408 /* Returns true if the file represented by stat is a sparse one */
409 bool
410 sparse_file_p (struct tar_stat_info *st)
411 {
412 return (ST_NBLOCKS (st->stat)
413 < (st->stat.st_size / ST_NBLOCKSIZE
414 + (st->stat.st_size % ST_NBLOCKSIZE != 0)));
415 }
416
417 bool
418 sparse_member_p (struct tar_stat_info *st)
419 {
420 struct tar_sparse_file file;
421
422 if (!tar_sparse_init (&file))
423 return false;
424 file.stat_info = st;
425 return tar_sparse_member_p (&file);
426 }
427
428 bool
429 sparse_fixup_header (struct tar_stat_info *st)
430 {
431 struct tar_sparse_file file;
432
433 if (!tar_sparse_init (&file))
434 return false;
435 file.stat_info = st;
436 return tar_sparse_fixup_header (&file);
437 }
438
439 enum dump_status
440 sparse_extract_file (int fd, struct tar_stat_info *st, off_t *size)
441 {
442 bool rc = true;
443 struct tar_sparse_file file;
444 size_t i;
445
446 if (!tar_sparse_init (&file))
447 return dump_status_not_implemented;
448
449 file.stat_info = st;
450 file.fd = fd;
451 file.seekable = lseek (fd, 0, SEEK_SET) == 0;
452 file.offset = 0;
453
454 rc = tar_sparse_decode_header (&file);
455 for (i = 0; rc && i < file.stat_info->sparse_map_avail; i++)
456 rc = tar_sparse_extract_region (&file, i);
457 *size = file.stat_info->archive_file_size - file.dumped_size;
458 return (tar_sparse_done (&file) && rc) ? dump_status_ok : dump_status_short;
459 }
460
461 enum dump_status
462 sparse_skip_file (struct tar_stat_info *st)
463 {
464 bool rc = true;
465 struct tar_sparse_file file;
466
467 if (!tar_sparse_init (&file))
468 return dump_status_not_implemented;
469
470 file.stat_info = st;
471 file.fd = -1;
472
473 rc = tar_sparse_decode_header (&file);
474 skip_file (file.stat_info->archive_file_size);
475 return (tar_sparse_done (&file) && rc) ? dump_status_ok : dump_status_short;
476 }
477
478 \f
479 static bool
480 check_sparse_region (struct tar_sparse_file *file, off_t beg, off_t end)
481 {
482 if (!lseek_or_error (file, beg))
483 return false;
484
485 while (beg < end)
486 {
487 size_t bytes_read;
488 size_t rdsize = BLOCKSIZE < end - beg ? BLOCKSIZE : end - beg;
489 char diff_buffer[BLOCKSIZE];
490
491 bytes_read = safe_read (file->fd, diff_buffer, rdsize);
492 if (bytes_read == SAFE_READ_ERROR)
493 {
494 read_diag_details (file->stat_info->orig_file_name,
495 beg,
496 rdsize);
497 return false;
498 }
499 if (!zero_block_p (diff_buffer, bytes_read))
500 {
501 char begbuf[INT_BUFSIZE_BOUND (off_t)];
502 report_difference (file->stat_info,
503 _("File fragment at %s is not a hole"),
504 offtostr (beg, begbuf));
505 return false;
506 }
507
508 beg += bytes_read;
509 }
510 return true;
511 }
512
513 static bool
514 check_data_region (struct tar_sparse_file *file, size_t i)
515 {
516 size_t size_left;
517
518 if (!lseek_or_error (file, file->stat_info->sparse_map[i].offset))
519 return false;
520 size_left = file->stat_info->sparse_map[i].numbytes;
521 while (size_left > 0)
522 {
523 size_t bytes_read;
524 size_t rdsize = (size_left > BLOCKSIZE) ? BLOCKSIZE : size_left;
525 char diff_buffer[BLOCKSIZE];
526
527 union block *blk = find_next_block ();
528 if (!blk)
529 {
530 ERROR ((0, 0, _("Unexpected EOF in archive")));
531 return false;
532 }
533 set_next_block_after (blk);
534 bytes_read = safe_read (file->fd, diff_buffer, rdsize);
535 if (bytes_read == SAFE_READ_ERROR)
536 {
537 read_diag_details (file->stat_info->orig_file_name,
538 (file->stat_info->sparse_map[i].offset
539 + file->stat_info->sparse_map[i].numbytes
540 - size_left),
541 rdsize);
542 return false;
543 }
544 file->dumped_size += bytes_read;
545 size_left -= bytes_read;
546 if (memcmp (blk->buffer, diff_buffer, rdsize))
547 {
548 report_difference (file->stat_info, _("Contents differ"));
549 return false;
550 }
551 }
552 return true;
553 }
554
555 bool
556 sparse_diff_file (int fd, struct tar_stat_info *st)
557 {
558 bool rc = true;
559 struct tar_sparse_file file;
560 size_t i;
561 off_t offset = 0;
562
563 if (!tar_sparse_init (&file))
564 return dump_status_not_implemented;
565
566 file.stat_info = st;
567 file.fd = fd;
568
569 rc = tar_sparse_decode_header (&file);
570 for (i = 0; rc && i < file.stat_info->sparse_map_avail; i++)
571 {
572 rc = check_sparse_region (&file,
573 offset, file.stat_info->sparse_map[i].offset)
574 && check_data_region (&file, i);
575 offset = file.stat_info->sparse_map[i].offset
576 + file.stat_info->sparse_map[i].numbytes;
577 }
578
579 if (!rc)
580 skip_file (file.stat_info->archive_file_size - file.dumped_size);
581
582 tar_sparse_done (&file);
583 return rc;
584 }
585
586 \f
587 /* Old GNU Format. The sparse file information is stored in the
588 oldgnu_header in the following manner:
589
590 The header is marked with type 'S'. Its `size' field contains
591 the cumulative size of all non-empty blocks of the file. The
592 actual file size is stored in `realsize' member of oldgnu_header.
593
594 The map of the file is stored in a list of `struct sparse'.
595 Each struct contains offset to the block of data and its
596 size (both as octal numbers). The first file header contains
597 at most 4 such structs (SPARSES_IN_OLDGNU_HEADER). If the map
598 contains more structs, then the field `isextended' of the main
599 header is set to 1 (binary) and the `struct sparse_header'
600 header follows, containing at most 21 following structs
601 (SPARSES_IN_SPARSE_HEADER). If more structs follow, `isextended'
602 field of the extended header is set and next next extension header
603 follows, etc... */
604
605 enum oldgnu_add_status
606 {
607 add_ok,
608 add_finish,
609 add_fail
610 };
611
612 static bool
613 oldgnu_sparse_member_p (struct tar_sparse_file *file __attribute__ ((unused)))
614 {
615 return current_header->header.typeflag == GNUTYPE_SPARSE;
616 }
617
618 /* Add a sparse item to the sparse file and its obstack */
619 static enum oldgnu_add_status
620 oldgnu_add_sparse (struct tar_sparse_file *file, struct sparse *s)
621 {
622 struct sp_array sp;
623
624 if (s->numbytes[0] == '\0')
625 return add_finish;
626 sp.offset = OFF_FROM_HEADER (s->offset);
627 sp.numbytes = SIZE_FROM_HEADER (s->numbytes);
628 if (sp.offset < 0
629 || file->stat_info->stat.st_size < sp.offset + sp.numbytes
630 || file->stat_info->archive_file_size < 0)
631 return add_fail;
632
633 sparse_add_map (file->stat_info, &sp);
634 return add_ok;
635 }
636
637 static bool
638 oldgnu_fixup_header (struct tar_sparse_file *file)
639 {
640 /* NOTE! st_size was initialized from the header
641 which actually contains archived size. The following fixes it */
642 file->stat_info->archive_file_size = file->stat_info->stat.st_size;
643 file->stat_info->stat.st_size =
644 OFF_FROM_HEADER (current_header->oldgnu_header.realsize);
645 return true;
646 }
647
648 /* Convert old GNU format sparse data to internal representation */
649 static bool
650 oldgnu_get_sparse_info (struct tar_sparse_file *file)
651 {
652 size_t i;
653 union block *h = current_header;
654 int ext_p;
655 enum oldgnu_add_status rc;
656
657 file->stat_info->sparse_map_avail = 0;
658 for (i = 0; i < SPARSES_IN_OLDGNU_HEADER; i++)
659 {
660 rc = oldgnu_add_sparse (file, &h->oldgnu_header.sp[i]);
661 if (rc != add_ok)
662 break;
663 }
664
665 for (ext_p = h->oldgnu_header.isextended;
666 rc == add_ok && ext_p; ext_p = h->sparse_header.isextended)
667 {
668 h = find_next_block ();
669 if (!h)
670 {
671 ERROR ((0, 0, _("Unexpected EOF in archive")));
672 return false;
673 }
674 set_next_block_after (h);
675 for (i = 0; i < SPARSES_IN_SPARSE_HEADER && rc == add_ok; i++)
676 rc = oldgnu_add_sparse (file, &h->sparse_header.sp[i]);
677 }
678
679 if (rc == add_fail)
680 {
681 ERROR ((0, 0, _("%s: invalid sparse archive member"),
682 file->stat_info->orig_file_name));
683 return false;
684 }
685 return true;
686 }
687
688 static void
689 oldgnu_store_sparse_info (struct tar_sparse_file *file, size_t *pindex,
690 struct sparse *sp, size_t sparse_size)
691 {
692 for (; *pindex < file->stat_info->sparse_map_avail
693 && sparse_size > 0; sparse_size--, sp++, ++*pindex)
694 {
695 OFF_TO_CHARS (file->stat_info->sparse_map[*pindex].offset,
696 sp->offset);
697 SIZE_TO_CHARS (file->stat_info->sparse_map[*pindex].numbytes,
698 sp->numbytes);
699 }
700 }
701
702 static bool
703 oldgnu_dump_header (struct tar_sparse_file *file)
704 {
705 off_t block_ordinal = current_block_ordinal ();
706 union block *blk;
707 size_t i;
708
709 blk = start_header (file->stat_info);
710 blk->header.typeflag = GNUTYPE_SPARSE;
711 if (file->stat_info->sparse_map_avail > SPARSES_IN_OLDGNU_HEADER)
712 blk->oldgnu_header.isextended = 1;
713
714 /* Store the real file size */
715 OFF_TO_CHARS (file->stat_info->stat.st_size, blk->oldgnu_header.realsize);
716 /* Store the effective (shrunken) file size */
717 OFF_TO_CHARS (file->stat_info->archive_file_size, blk->header.size);
718
719 i = 0;
720 oldgnu_store_sparse_info (file, &i,
721 blk->oldgnu_header.sp,
722 SPARSES_IN_OLDGNU_HEADER);
723 blk->oldgnu_header.isextended = i < file->stat_info->sparse_map_avail;
724 finish_header (file->stat_info, blk, block_ordinal);
725
726 while (i < file->stat_info->sparse_map_avail)
727 {
728 blk = find_next_block ();
729 memset (blk->buffer, 0, BLOCKSIZE);
730 oldgnu_store_sparse_info (file, &i,
731 blk->sparse_header.sp,
732 SPARSES_IN_SPARSE_HEADER);
733 set_next_block_after (blk);
734 if (i < file->stat_info->sparse_map_avail)
735 blk->sparse_header.isextended = 1;
736 else
737 break;
738 }
739 return true;
740 }
741
742 static struct tar_sparse_optab const oldgnu_optab = {
743 NULL, /* No init function */
744 NULL, /* No done function */
745 oldgnu_sparse_member_p,
746 oldgnu_dump_header,
747 oldgnu_fixup_header,
748 oldgnu_get_sparse_info,
749 NULL, /* No scan_block function */
750 sparse_dump_region,
751 sparse_extract_region,
752 };
753
754 \f
755 /* Star */
756
757 static bool
758 star_sparse_member_p (struct tar_sparse_file *file __attribute__ ((unused)))
759 {
760 return current_header->header.typeflag == GNUTYPE_SPARSE;
761 }
762
763 static bool
764 star_fixup_header (struct tar_sparse_file *file)
765 {
766 /* NOTE! st_size was initialized from the header
767 which actually contains archived size. The following fixes it */
768 file->stat_info->archive_file_size = file->stat_info->stat.st_size;
769 file->stat_info->stat.st_size =
770 OFF_FROM_HEADER (current_header->star_in_header.realsize);
771 return true;
772 }
773
774 /* Convert STAR format sparse data to internal representation */
775 static bool
776 star_get_sparse_info (struct tar_sparse_file *file)
777 {
778 size_t i;
779 union block *h = current_header;
780 int ext_p;
781 enum oldgnu_add_status rc = add_ok;
782
783 file->stat_info->sparse_map_avail = 0;
784
785 if (h->star_in_header.prefix[0] == '\0'
786 && h->star_in_header.sp[0].offset[10] != '\0')
787 {
788 /* Old star format */
789 for (i = 0; i < SPARSES_IN_STAR_HEADER; i++)
790 {
791 rc = oldgnu_add_sparse (file, &h->star_in_header.sp[i]);
792 if (rc != add_ok)
793 break;
794 }
795 ext_p = h->star_in_header.isextended;
796 }
797 else
798 ext_p = 1;
799
800 for (; rc == add_ok && ext_p; ext_p = h->star_ext_header.isextended)
801 {
802 h = find_next_block ();
803 if (!h)
804 {
805 ERROR ((0, 0, _("Unexpected EOF in archive")));
806 return false;
807 }
808 set_next_block_after (h);
809 for (i = 0; i < SPARSES_IN_STAR_EXT_HEADER && rc == add_ok; i++)
810 rc = oldgnu_add_sparse (file, &h->star_ext_header.sp[i]);
811 }
812
813 if (rc == add_fail)
814 {
815 ERROR ((0, 0, _("%s: invalid sparse archive member"),
816 file->stat_info->orig_file_name));
817 return false;
818 }
819 return true;
820 }
821
822
823 static struct tar_sparse_optab const star_optab = {
824 NULL, /* No init function */
825 NULL, /* No done function */
826 star_sparse_member_p,
827 NULL,
828 star_fixup_header,
829 star_get_sparse_info,
830 NULL, /* No scan_block function */
831 NULL, /* No dump region function */
832 sparse_extract_region,
833 };
834
835 \f
836 /* GNU PAX sparse file format. The sparse file map is stored in
837 x header:
838
839 GNU.sparse.size Real size of the stored file
840 GNU.sparse.numblocks Number of blocks in the sparse map
841 repeat numblocks time
842 GNU.sparse.offset Offset of the next data block
843 GNU.sparse.numbytes Size of the next data block
844 end repeat
845 */
846
847 static bool
848 pax_sparse_member_p (struct tar_sparse_file *file)
849 {
850 return file->stat_info->sparse_map_avail > 0;
851 }
852
853 static bool
854 pax_dump_header (struct tar_sparse_file *file)
855 {
856 off_t block_ordinal = current_block_ordinal ();
857 union block *blk;
858 size_t i;
859
860 /* Store the real file size */
861 xheader_store ("GNU.sparse.size", file->stat_info, NULL);
862 xheader_store ("GNU.sparse.numblocks", file->stat_info, NULL);
863 for (i = 0; i < file->stat_info->sparse_map_avail; i++)
864 {
865 xheader_store ("GNU.sparse.offset", file->stat_info, &i);
866 xheader_store ("GNU.sparse.numbytes", file->stat_info, &i);
867 }
868
869 blk = start_header (file->stat_info);
870 /* Store the effective (shrunken) file size */
871 OFF_TO_CHARS (file->stat_info->archive_file_size, blk->header.size);
872 finish_header (file->stat_info, blk, block_ordinal);
873 return true;
874 }
875
876 static struct tar_sparse_optab const pax_optab = {
877 NULL, /* No init function */
878 NULL, /* No done function */
879 pax_sparse_member_p,
880 pax_dump_header,
881 NULL, /* No decode_header function */
882 NULL, /* No fixup_header function */
883 NULL, /* No scan_block function */
884 sparse_dump_region,
885 sparse_extract_region,
886 };
This page took 0.070266 seconds and 5 git commands to generate.