]>
Dogcows Code - chaz/tar/blob - src/list.c
2 Copyright (C) 1988, 1992 Free Software Foundation
4 This file is part of GNU Tar.
6 GNU Tar is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Tar is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Tar; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
23 * Also includes support routines for reading a tar archive.
25 * this version written 26 Aug 1985 by John Gilmore (ihnp4!hoptoad!gnu).
30 #include <sys/types.h>
45 #define isodigit(c) ( ((c) >= '0') && ((c) <= '7') )
50 extern FILE *msg_file
;
52 long from_oct(); /* Decode octal number */
53 void demode(); /* Print file mode */
55 union record
*head
; /* Points to current archive header */
56 struct stat hstat
; /* Stat struct corresponding */
57 int head_standard
; /* Tape header is in ANSI format */
66 void names_notfound();
72 void skip_extended_headers();
74 extern char *quote_copy_string();
78 * Main loop for reading an archive.
81 read_and(do_something
)
82 void (*do_something
)();
84 int status
= 3; /* Initial status at start of archive */
86 extern time_t new_time
;
89 name_gather(); /* Gather all the names */
90 open_archive(1); /* Open for reading */
94 status
= read_header();
97 case 1: /* Valid header */
98 /* We should decode next field (mode) first... */
99 /* Ensure incoming names are null terminated. */
100 head
->header
.name
[NAMSIZ
-1] = '\0';
102 if ( !name_match(head
->header
.name
)
103 || (f_new_files
&& hstat
.st_mtime
<new_time
)
104 || (f_exclude
&& check_exclude(head
->header
.name
))) {
108 if( head
->header
.linkflag
==LF_VOLHDR
109 || head
->header
.linkflag
==LF_MULTIVOL
110 || head
->header
.linkflag
==LF_NAMES
) {
114 if (f_show_omitted_dirs
115 && head
->header
.linkflag
== LF_DIR
)
116 msg ("Omitting %s\n", head
->header
.name
);
117 /* Skip past it in the archive */
118 if (head
->header
.isextended
)
120 save_linkflag
= head
->header
.linkflag
;
123 /* register union record *exhdr;
127 if (!exhdr->ext_hdr.isextended) {
133 skip_extended_headers();
135 /* Skip to the next header on the archive */
136 if(save_linkflag
!= LF_DIR
)
137 skip_file((long)hstat
.st_size
);
146 * If the previous header was good, tell them
147 * that we are skipping bad ones.
149 case 0: /* Invalid header */
151 switch (prev_status
) {
152 case 3: /* Error on first record */
153 msg("Hmm, this doesn't look like a tar archive.");
155 case 2: /* Error after record of zeroes */
156 case 1: /* Error after header rec */
157 msg("Skipping to next file header...");
158 case 0: /* Error after error */
163 case 2: /* Record of zeroes */
165 status
= prev_status
; /* If error after 0's */
169 case EOF
: /* End of archive */
176 names_notfound(); /* Print names not found */
181 * Print a header record, based on tar options.
186 extern char *save_name
;
187 int isextended
= 0; /* Flag to remember if head is extended */
189 /* Save the record */
192 /* Print the header record */
195 decode_header(head
, &hstat
, &head_standard
, 0);
199 if(f_gnudump
&& head
->header
.linkflag
==LF_DUMPDIR
) {
200 size_t size
, written
, check
;
202 extern long save_totsize
;
203 extern long save_sizeleft
;
207 save_name
= head
->header
.name
;
208 save_totsize
=hstat
.st_size
;
210 for(size
= hstat
.st_size
;size
>0;size
-=written
) {
213 data
= findrec()->charptr
;
215 msg("EOF in archive file?");
218 written
= endofrecs()->charptr
- data
;
222 check
=fwrite(data
,sizeof(char), written
, msg_file
);
223 userec((union record
*)(data
+written
- 1));
225 msg_perror("only wrote %ld of %ld bytes to file %s",check
, written
,head
->header
.name
);
226 skip_file((long)(size
)-written
);
232 saverec((union record
**) 0); /* Unsave it */
233 fputc('\n',msg_file
);
238 saverec((union record
**) 0); /* Unsave it */
239 /* Check to see if we have an extended header to skip over also */
240 if (head
->header
.isextended
)
243 /* Skip past the header in the archive */
247 * If we needed to skip any extended headers, do so now, by
248 * reading extended headers and skipping past them in the
252 /* register union record *exhdr;
257 if (!exhdr->ext_hdr.isextended) {
263 skip_extended_headers();
267 save_name
=head
->header
.name
;
268 /* Skip to the next header on the archive */
270 skip_file((long) hstat
.st_size
);
278 * Read a record that's supposed to be a header record.
279 * Return its address in "head", and if it is good, the file's
280 * size in hstat.st_size.
282 * Return 1 for success, 0 if the checksum is bad, EOF on eof,
283 * 2 for a record full of zeros (EOF marker).
285 * You must always userec(head) to skip past the header which this
292 register long sum
, recsum
;
294 register union record
*header
;
298 head
= header
; /* This is our current header */
302 recsum
= from_oct(8, header
->header
.chksum
);
306 for (i
= sizeof(*header
); --i
>= 0;) {
308 * We can't use unsigned char here because of old compilers,
314 /* Adjust checksum to count the "chksum" field as blanks. */
315 for (i
= sizeof(header
->header
.chksum
); --i
>= 0;)
316 sum
-= 0xFF & header
->header
.chksum
[i
];
317 sum
+= ' '* sizeof header
->header
.chksum
;
321 * Good record. Decode file size and return.
323 if (header
->header
.linkflag
== LF_LINK
)
324 hstat
.st_size
= 0; /* Links 0 size on tape */
326 hstat
.st_size
= from_oct(1+12, header
->header
.size
);
332 * This is a zeroed record...whole record is 0's except
333 * for the 8 blanks we faked for the checksum field.
343 * Decode things from a file header record into a "struct stat".
344 * Also set "*stdp" to !=0 or ==0 depending whether header record is "Unix
345 * Standard" tar format or regular old tar format.
347 * read_header() has already decoded the checksum and length, so we don't.
349 * If wantug != 0, we want the uid/group info decoded from Unix Standard
350 * tapes (for extraction). If == 0, we are just printing anyway, so save time.
352 * decode_header should NOT be called twice for the same record, since the
353 * two calls might use different "wantug" values and thus might end up with
354 * different uid/gid for the two calls. If anybody wants the uid/gid they
355 * should decode it first, and other callers should decode it without uid/gid
356 * before calling a routine, e.g. print_header, that assumes decoded data.
359 decode_header(header
, st
, stdp
, wantug
)
360 register union record
*header
;
361 register struct stat
*st
;
368 st
->st_mode
= from_oct(8, header
->header
.mode
);
369 st
->st_mtime
= from_oct(1+12, header
->header
.mtime
);
371 st
->st_atime
= from_oct(1+12, header
->header
.atime
);
372 st
->st_ctime
= from_oct(1+12, header
->header
.ctime
);
375 /* Older versions of GNU tar wrote "ustar \0" instead of
376 "ustar\0""00" for the magic/version field. Recognize both. */
377 if (0==strncmp(header
->header
.magic
, TMAGIC
, 5)) {
378 /* Unix Standard tar archive */
382 st
->st_uid
= from_oct(8, header
->header
.uid
);
383 st
->st_gid
= from_oct(8, header
->header
.gid
);
385 st
->st_uid
= finduid(header
->header
.uname
);
386 st
->st_gid
= findgid(header
->header
.gname
);
389 #if defined(S_IFBLK) || defined(S_IFCHR)
390 switch (header
->header
.linkflag
) {
391 case LF_BLK
: case LF_CHR
:
392 st
->st_rdev
= makedev(from_oct(8, header
->header
.devmajor
),
393 from_oct(8, header
->header
.devminor
));
397 /* Old fashioned tar archive */
399 st
->st_uid
= from_oct(8, header
->header
.uid
);
400 st
->st_gid
= from_oct(8, header
->header
.gid
);
407 * Quick and dirty octal conversion.
409 * Result is -1 if the field is invalid (all blank, or nonoctal).
412 from_oct(digs
, where
)
414 register char *where
;
418 while (isspace(*where
)) { /* Skip spaces */
421 return -1; /* All blank field */
424 while (digs
> 0 && isodigit(*where
)) { /* Scan til nonoctal */
425 value
= (value
<< 3) | (*where
++ - '0');
429 if (digs
> 0 && *where
&& !isspace(*where
))
430 return -1; /* Ended on non-space/nul */
439 * Plain and fancy file header block logging.
440 * Non-verbose just prints the name, e.g. for "tar t" or "tar x".
441 * This should just contain file names, so it can be fed back into tar
442 * with xargs or the "-T" option. The verbose option can give a bunch
443 * of info, one line per file. I doubt anybody tries to parse its
444 * format, or if they do, they shouldn't. Unix tar is pretty random here
447 * Note that print_header uses the globals <head>, <hstat>, and
448 * <head_standard>, which must be set up in advance. This is not very clean
449 * and should be cleaned up. FIXME.
451 #define UGSWIDTH 18 /* min width of User, group, size */
452 /* UGSWIDTH of 18 means that with user and group names <= 8 chars the columns
453 never shift during the listing. */
454 #define DATEWIDTH 19 /* Last mod date */
455 static int ugswidth
= UGSWIDTH
; /* Max width encountered so far */
462 char uform
[11], gform
[11]; /* These hold formatted ints */
464 char size
[24]; /* Holds a formatted long or maj, min */
465 time_t longie
; /* To make ctime() call portable */
471 fprintf(msg_file
,"rec %10d: ",baserec
+ (ar_record
- ar_block
));
472 /* annofile(msg_file, (char *)NULL); */
474 if (f_verbose
<= 1) {
475 /* Just the fax, mam. */
478 name
=quote_copy_string(head
->header
.name
);
480 name
=head
->header
.name
;
481 fprintf(msg_file
, "%s\n", name
);
482 if(name
!=head
->header
.name
)
485 /* File type and modes */
487 switch (head
->header
.linkflag
) {
505 if ('/' == head
->header
.name
[strlen(head
->header
.name
)-1])
508 case LF_DUMPDIR
:modes
[0] = 'd'; break;
509 case LF_DIR
: modes
[0] = 'd'; break;
510 case LF_SYMLINK
:modes
[0] = 'l'; break;
511 case LF_BLK
: modes
[0] = 'b'; break;
512 case LF_CHR
: modes
[0] = 'c'; break;
513 case LF_FIFO
: modes
[0] = 'p'; break;
514 case LF_CONTIG
: modes
[0] = 'C'; break;
517 demode((unsigned)hstat
.st_mode
, modes
+1);
520 longie
= hstat
.st_mtime
;
521 timestamp
= ctime(&longie
);
522 timestamp
[16] = '\0';
523 timestamp
[24] = '\0';
525 /* User and group names */
526 if (*head
->header
.uname
&& head_standard
) {
527 user
= head
->header
.uname
;
530 (void)sprintf(uform
, "%d", (int)hstat
.st_uid
);
532 if (*head
->header
.gname
&& head_standard
) {
533 group
= head
->header
.gname
;
536 (void)sprintf(gform
, "%d", (int)hstat
.st_gid
);
539 /* Format the file size or major/minor device numbers */
540 switch (head
->header
.linkflag
) {
541 #if defined(S_IFBLK) || defined(S_IFCHR)
544 (void)sprintf(size
, "%d,%d",
545 major(hstat
.st_rdev
),
546 minor(hstat
.st_rdev
));
550 (void)sprintf(size
, "%ld",
551 from_oct(1+12, head
->header
.realsize
));
554 (void)sprintf(size
, "%ld", (long)hstat
.st_size
);
557 /* Figure out padding and print the whole line. */
558 pad
= strlen(user
) + strlen(group
) + strlen(size
) + 1;
559 if (pad
> ugswidth
) ugswidth
= pad
;
561 name
= quote_copy_string(head
->header
.name
);
563 name
=head
->header
.name
;
564 fprintf(msg_file
, "%s %s/%s %*s%s %s %s %.*s",
571 timestamp
+4, timestamp
+20,
572 sizeof(head
->header
.name
),
575 if(name
!=head
->header
.name
)
577 switch (head
->header
.linkflag
) {
579 name
=quote_copy_string(head
->header
.linkname
);
581 name
=head
->header
.linkname
;
582 fprintf(msg_file
, " -> %s\n", name
);
583 if(name
!=head
->header
.linkname
)
588 name
=quote_copy_string(head
->header
.linkname
);
590 name
=head
->header
.linkname
;
591 fprintf(msg_file
, " link to %s\n", head
->header
.linkname
);
592 if(name
!=head
->header
.linkname
)
597 fprintf(msg_file
, " unknown file type '%c'\n",
598 head
->header
.linkflag
);
610 putc('\n', msg_file
);
614 fprintf(msg_file
, "--Volume Header--\n");
618 fprintf(msg_file
, "--Continued at byte %ld--\n",from_oct(1+12,head
->header
.offset
));
622 fprintf(msg_file
,"--Mangled file names--\n");
630 * Print a similar line when we make a directory automatically.
633 pr_mkdir(pathname
, length
, mode
)
643 /* File type and modes */
645 demode((unsigned)mode
, modes
+1);
648 fprintf(msg_file
,"rec %10d: ",baserec
+ (ar_record
- ar_block
));
649 /* annofile(msg_file, (char *)NULL); */
650 name
=quote_copy_string(pathname
);
653 fprintf(msg_file
, "%s %*s %.*s\n",
656 "Creating directory:",
666 * Skip over <size> bytes of data in records in the archive.
673 extern long save_totsize
;
674 extern long save_sizeleft
;
683 if (x
== NULL
) { /* Check it... */
684 msg("Unexpected EOF on archive file");
690 save_sizeleft
-=RECORDSIZE
;
695 skip_extended_headers()
697 register union record
*exhdr
;
701 if (!exhdr
->ext_hdr
.isextended
) {
710 * Decode the mode string from a stat entry into a 9-char string and a null.
714 register unsigned mode
;
715 register char *string
;
717 register unsigned mask
;
718 register char *rwx
= "rwxrwxrwx";
720 for (mask
= 0400; mask
!= 0; mask
>>= 1) {
730 if (string
[-7] == 'x')
735 if (string
[-4] == 'x')
740 if (string
[-1] == 'x')
This page took 0.07224 seconds and 5 git commands to generate.