]>
Dogcows Code - chaz/tar/blob - src/extract.c
1 /* Extract files from a tar archive.
2 Copyright (C) 1988, 92,93,94,96,97,98, 1999 Free Software Foundation, Inc.
3 Written by John Gilmore, on 1985-11-19.
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
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.
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 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
36 static time_t now
; /* current time */
37 static int we_are_root
; /* true if our effective uid == 0 */
38 static mode_t newdir_umask
; /* umask when creating new directories */
39 static mode_t current_umask
; /* current umask (which is set to 0 if -p) */
42 /* "Scratch" space to store the information about a sparse file before
43 writing the info into the header or extended header. */
44 struct sp_array
*sparsearray
;
46 /* Number of elts storable in the sparsearray. */
47 int sp_array_size
= 10;
50 struct delayed_set_stat
52 struct delayed_set_stat
*next
;
54 struct stat stat_info
;
57 static struct delayed_set_stat
*delayed_set_stat_head
;
59 /*--------------------------.
60 | Set up to extract files. |
61 `--------------------------*/
66 now
= time ((time_t *) 0);
67 we_are_root
= geteuid () == 0;
69 /* Option -p clears the kernel umask, so it does not affect proper
70 restoration of file permissions. New intermediate directories will
71 comply with umask at start of program. */
73 newdir_umask
= umask (0);
74 if (same_permissions_option
)
78 umask (newdir_umask
); /* restore the kernel umask */
79 current_umask
= newdir_umask
;
82 /* FIXME: Just make sure we can add files in directories we create. Maybe
83 should we later remove permissions we are adding, here? */
84 newdir_umask
&= ~ MODE_WXUSR
;
87 /*------------------------------------------------------------------.
88 | Restore mode for FILE_NAME, from information given in STAT_INFO. |
89 `------------------------------------------------------------------*/
92 set_mode (char *file_name
, struct stat
*stat_info
)
94 /* We ought to force permission when -k is not selected, because if the
95 file already existed, open or creat would save the permission bits from
96 the previously created file, ignoring the ones we specified.
98 But with -k selected, we know *we* created this file, so the mode
99 bits were set by our open. If the file has abnormal mode bits, we must
100 chmod since writing or chown has probably reset them. If the file is
101 normal, we merely skip the chmod. This works because we did umask (0)
102 when -p, so umask will have left the specified mode alone. */
104 if (!keep_old_files_option
105 || (stat_info
->st_mode
& (S_ISUID
| S_ISGID
| S_ISVTX
)))
106 if (chmod (file_name
, ~current_umask
& stat_info
->st_mode
) < 0)
107 ERROR ((0, errno
, _("%s: Cannot change mode to %04lo"),
109 (unsigned long) (~current_umask
& stat_info
->st_mode
)));
112 /*----------------------------------------------------------------------.
113 | Restore stat attributes (owner, group, mode and times) for FILE_NAME, |
114 | using information given in STAT_INFO. SYMLINK_FLAG is non-zero for a |
115 | freshly restored symbolic link. |
116 `----------------------------------------------------------------------*/
118 /* FIXME: About proper restoration of symbolic link attributes, we still do
119 not have it right. Pretesters' reports tell us we need further study and
120 probably more configuration. For now, just use lchown if it exists, and
121 punt for the rest. Sigh! */
124 set_stat (char *file_name
, struct stat
*stat_info
, int symlink_flag
)
126 struct utimbuf utimbuf
;
130 /* We do the utime before the chmod because some versions of utime are
131 broken and trash the modes of the file. */
135 /* We set the accessed time to `now', which is really the time we
136 started extracting files, unless incremental_option is used, in
137 which case .st_atime is used. */
139 /* FIXME: incremental_option should set ctime too, but how? */
141 if (incremental_option
)
142 utimbuf
.actime
= stat_info
->st_atime
;
144 utimbuf
.actime
= now
;
146 utimbuf
.modtime
= stat_info
->st_mtime
;
148 if (utime (file_name
, &utimbuf
) < 0)
150 _("%s: Could not change access and modification times"),
154 /* Some systems allow non-root users to give files away. Once this
155 done, it is not possible anymore to change file permissions, so we
156 have to set permissions prior to possibly giving files away. */
158 set_mode (file_name
, stat_info
);
161 /* If we are root, set the owner and group of the extracted file, so we
162 extract as the original owner. Or else, if we are running as a user,
163 leave the owner and group as they are, so we extract as that user. */
165 if (we_are_root
|| same_owner_option
)
169 /* When lchown exists, it should be used to change the attributes of
170 the symbolic link itself. In this case, a mere chown would change
171 the attributes of the file the symbolic link is pointing to, and
172 should be avoided. */
176 if (lchown (file_name
, stat_info
->st_uid
, stat_info
->st_gid
) < 0)
177 ERROR ((0, errno
, _("%s: Cannot lchown to uid %lu gid %lu"),
179 (unsigned long) stat_info
->st_uid
,
180 (unsigned long) stat_info
->st_gid
));
184 if (chown (file_name
, stat_info
->st_uid
, stat_info
->st_gid
) < 0)
185 ERROR ((0, errno
, _("%s: Cannot chown to uid %lu gid %lu"),
187 (unsigned long) stat_info
->st_uid
,
188 (unsigned long) stat_info
->st_gid
));
191 #else /* not HAVE_LCHOWN */
195 if (chown (file_name
, stat_info
->st_uid
, stat_info
->st_gid
) < 0)
196 ERROR ((0, errno
, _("%s: Cannot chown to uid %lu gid %lu"),
198 (unsigned long) stat_info
->st_uid
,
199 (unsigned long) stat_info
->st_gid
));
201 #endif/* not HAVE_LCHOWN */
205 /* On a few systems, and in particular, those allowing to give files
206 away, changing the owner or group destroys the suid or sgid bits.
207 So let's attempt setting these bits once more. */
209 if (stat_info
->st_mode
& (S_ISUID
| S_ISGID
| S_ISVTX
))
210 set_mode (file_name
, stat_info
);
214 /*-----------------------------------------------------------------------.
215 | After a file/link/symlink/directory creation has failed, see if it's |
216 | because some required directory was not present, and if so, create all |
217 | required directories. Return non-zero if a directory was created. |
218 `-----------------------------------------------------------------------*/
221 make_directories (char *file_name
)
223 char *cursor
; /* points into path */
224 int did_something
= 0; /* did we do anything yet? */
225 int saved_errno
= errno
; /* remember caller's errno */
228 for (cursor
= strchr (file_name
, '/');
230 cursor
= strchr (cursor
+ 1, '/'))
232 /* Avoid mkdir of empty string, if leading or double '/'. */
234 if (cursor
== file_name
|| cursor
[-1] == '/')
237 /* Avoid mkdir where last part of path is '.'. */
239 if (cursor
[-1] == '.' && (cursor
== file_name
+ 1 || cursor
[-2] == '/'))
242 *cursor
= '\0'; /* truncate the path there */
243 status
= mkdir (file_name
, ~newdir_umask
& MODE_RWX
);
250 if (chown (file_name
, current_stat
.st_uid
, current_stat
.st_gid
) < 0)
252 _("%s: Cannot change owner to uid %lu, gid %lu"),
254 (unsigned long) current_stat
.st_uid
,
255 (unsigned long) current_stat
.st_gid
));
257 print_for_mkdir (file_name
, cursor
- file_name
,
258 ~newdir_umask
& MODE_RWX
);
269 /* Turbo C mkdir gives a funny errno. */
273 /* Directory already exists. */
276 /* Some other error in the mkdir. We return to the caller. */
280 errno
= saved_errno
; /* FIXME: errno should be read-only */
281 return did_something
; /* tell them to retry if we made one */
284 /*--------------------------------------------------------------------.
285 | Attempt repairing what went wrong with the extraction. Delete an |
286 | already existing file or create missing intermediate directories. |
287 | Return nonzero if we somewhat increased our chances at a successful |
288 | extraction. errno is properly restored on zero return. |
289 `--------------------------------------------------------------------*/
292 maybe_recoverable (char *file_name
)
297 /* Attempt deleting an existing file. However, with -k, just stay
300 if (keep_old_files_option
)
303 return remove_any_file (file_name
, 0);
306 /* Attempt creating missing intermediate directories. */
308 return make_directories (file_name
);
311 /* Just say we can't do anything about it... */
322 extract_sparse_file (int fd
, off_t
*sizeleft
, off_t totalsize
, char *name
)
328 /* assuming sizeleft is initially totalsize */
330 while (*sizeleft
> 0)
332 union block
*data_block
= find_next_block ();
333 if (data_block
== NULL
)
335 ERROR ((0, 0, _("Unexpected EOF on archive file")));
338 if (lseek (fd
, sparsearray
[sparse_ind
].offset
, SEEK_SET
) < 0)
340 char buf
[UINTMAX_STRSIZE_BOUND
];
341 ERROR ((0, errno
, _("%s: lseek error at byte %s"),
342 STRINGIFY_BIGINT (sparsearray
[sparse_ind
].offset
, buf
),
346 written
= sparsearray
[sparse_ind
++].numbytes
;
347 while (written
> BLOCKSIZE
)
349 count
= full_write (fd
, data_block
->buffer
, BLOCKSIZE
);
351 ERROR ((0, errno
, _("%s: Could not write to file"), name
));
354 set_next_block_after (data_block
);
355 data_block
= find_next_block ();
358 count
= full_write (fd
, data_block
->buffer
, written
);
361 ERROR ((0, errno
, _("%s: Could not write to file"), name
));
362 else if (count
!= written
)
364 char buf1
[UINTMAX_STRSIZE_BOUND
];
365 char buf2
[UINTMAX_STRSIZE_BOUND
];
366 ERROR ((0, 0, _("%s: Could only write %s of %s bytes"),
368 STRINGIFY_BIGINT (totalsize
- *sizeleft
, buf1
),
369 STRINGIFY_BIGINT (totalsize
, buf2
)));
370 skip_file (*sizeleft
);
375 set_next_block_after (data_block
);
381 /*----------------------------------.
382 | Extract a file from the archive. |
383 `----------------------------------*/
386 extract_archive (void)
388 union block
*data_block
;
403 struct delayed_set_stat
*data
;
405 #define CURRENT_FILE_NAME (skipcrud + current_file_name)
407 set_next_block_after (current_header
);
408 decode_header (current_header
, ¤t_stat
, ¤t_format
, 1);
410 if (interactive_option
&& !confirm ("extract", current_file_name
))
412 if (current_header
->oldgnu_header
.isextended
)
413 skip_extended_headers ();
414 skip_file (current_stat
.st_size
);
418 /* Print the block from `current_header' and `current_stat'. */
423 /* Check for fully specified file names and other atrocities. */
426 while (!absolute_names_option
&& CURRENT_FILE_NAME
[0] == '/')
428 static int warned_once
= 0;
430 skipcrud
++; /* force relative path */
435 Removing leading `/' from absolute path names in the archive")));
439 /* Take a safety backup of a previously existing file. */
441 if (backup_option
&& !to_stdout_option
)
442 if (!maybe_backup_file (CURRENT_FILE_NAME
, 0))
444 ERROR ((0, errno
, _("%s: Was unable to backup this file"),
446 if (current_header
->oldgnu_header
.isextended
)
447 skip_extended_headers ();
448 skip_file (current_stat
.st_size
);
452 /* Extract the archive entry according to its type. */
454 typeflag
= current_header
->header
.typeflag
;
457 /* JK - What we want to do if the file is sparse is loop through
458 the array of sparse structures in the header and read in and
459 translate the character strings representing 1) the offset at
460 which to write and 2) how many bytes to write into numbers,
461 which we store into the scratch array, "sparsearray". This
462 array makes our life easier the same way it did in creating the
463 tar file that had to deal with a sparse file.
465 After we read in the first five (at most) sparse structures, we
466 check to see if the file has an extended header, i.e., if more
467 sparse structures are needed to describe the contents of the new
468 file. If so, we read in the extended headers and continue to
469 store their contents into the sparsearray. */
473 sparsearray
= (struct sp_array
*)
474 xmalloc (sp_array_size
* sizeof (struct sp_array
));
476 for (counter
= 0; counter
< SPARSES_IN_OLDGNU_HEADER
; counter
++)
478 sparsearray
[counter
].offset
=
479 OFF_FROM_OCT (current_header
->oldgnu_header
.sp
[counter
].offset
);
480 sparsearray
[counter
].numbytes
=
481 SIZE_FROM_OCT (current_header
->oldgnu_header
.sp
[counter
].numbytes
);
482 if (!sparsearray
[counter
].numbytes
)
486 if (current_header
->oldgnu_header
.isextended
)
488 /* Read in the list of extended headers and translate them
489 into the sparsearray as before. Note that this
490 invalidates current_header. */
492 /* static */ int ind
= SPARSES_IN_OLDGNU_HEADER
;
496 exhdr
= find_next_block ();
497 for (counter
= 0; counter
< SPARSES_IN_SPARSE_HEADER
; counter
++)
499 if (counter
+ ind
> sp_array_size
- 1)
501 /* Realloc the scratch area since we've run out of
505 sparsearray
= (struct sp_array
*)
506 xrealloc (sparsearray
,
507 sp_array_size
* (sizeof (struct sp_array
)));
509 /* Compare to 0, or use !(int)..., for Pyramid's dumb
511 if (exhdr
->sparse_header
.sp
[counter
].numbytes
== 0)
513 sparsearray
[counter
+ ind
].offset
=
514 OFF_FROM_OCT (exhdr
->sparse_header
.sp
[counter
].offset
);
515 sparsearray
[counter
+ ind
].numbytes
=
516 SIZE_FROM_OCT (exhdr
->sparse_header
.sp
[counter
].numbytes
);
518 if (!exhdr
->sparse_header
.isextended
)
522 ind
+= SPARSES_IN_SPARSE_HEADER
;
523 set_next_block_after (exhdr
);
526 set_next_block_after (exhdr
);
534 /* Appears to be a file. But BSD tar uses the convention that a slash
535 suffix means a directory. */
537 name_length
= strlen (CURRENT_FILE_NAME
) - 1;
538 if (CURRENT_FILE_NAME
[name_length
] == '/')
541 /* FIXME: deal with protection issues. */
544 openflag
= (keep_old_files_option
?
545 O_BINARY
| O_NDELAY
| O_WRONLY
| O_CREAT
| O_EXCL
:
546 O_BINARY
| O_NDELAY
| O_WRONLY
| O_CREAT
| O_TRUNC
)
547 | ((typeflag
== GNUTYPE_SPARSE
) ? 0 : O_APPEND
);
549 /* JK - The last | is a kludge to solve the problem the O_APPEND
550 flag causes with files we are trying to make sparse: when a file
551 is opened with O_APPEND, it writes to the last place that
552 something was written, thereby ignoring any lseeks that we have
553 done. We add this extra condition to make it able to lseek when
554 a file is sparse, i.e., we don't open the new file with this
555 flag. (Grump -- this bug caused me to waste a good deal of
556 time, I might add) */
558 if (to_stdout_option
)
564 if (unlink_first_option
)
565 remove_any_file (CURRENT_FILE_NAME
, recursive_unlink_option
);
568 /* Contiguous files (on the Masscomp) have to specify the size in
569 the open call that creates them. */
571 if (typeflag
== CONTTYPE
)
572 fd
= open (CURRENT_FILE_NAME
, openflag
| O_CTG
,
573 current_stat
.st_mode
, current_stat
.st_size
);
575 fd
= open (CURRENT_FILE_NAME
, openflag
, current_stat
.st_mode
);
577 #else /* not O_CTG */
578 if (typeflag
== CONTTYPE
)
580 static int conttype_diagnosed
= 0;
582 if (!conttype_diagnosed
)
584 conttype_diagnosed
= 1;
585 WARN ((0, 0, _("Extracting contiguous files as regular files")));
588 fd
= open (CURRENT_FILE_NAME
, openflag
, current_stat
.st_mode
);
590 #endif /* not O_CTG */
594 if (maybe_recoverable (CURRENT_FILE_NAME
))
597 ERROR ((0, errno
, _("%s: Could not create file"),
599 if (current_header
->oldgnu_header
.isextended
)
600 skip_extended_headers ();
601 skip_file (current_stat
.st_size
);
608 if (typeflag
== GNUTYPE_SPARSE
)
611 size_t name_length_bis
;
613 /* Kludge alert. NAME is assigned to header.name because
614 during the extraction, the space that contains the header
615 will get scribbled on, and the name will get munged, so any
616 error messages that happen to contain the filename will look
617 REAL interesting unless we do this. */
619 name_length_bis
= strlen (CURRENT_FILE_NAME
) + 1;
620 name
= (char *) xmalloc (name_length_bis
);
621 memcpy (name
, CURRENT_FILE_NAME
, name_length_bis
);
622 size
= current_stat
.st_size
;
623 extract_sparse_file (fd
, &size
, current_stat
.st_size
, name
);
626 for (size
= current_stat
.st_size
;
630 if (multi_volume_option
)
632 assign_string (&save_name
, current_file_name
);
633 save_totsize
= current_stat
.st_size
;
634 save_sizeleft
= size
;
637 /* Locate data, determine max length writeable, write it,
638 block that we have used the data, then check if the write
641 data_block
= find_next_block ();
642 if (data_block
== NULL
)
644 ERROR ((0, 0, _("Unexpected EOF on archive file")));
645 break; /* FIXME: What happens, then? */
648 written
= available_space_after (data_block
);
652 errno
= 0; /* FIXME: errno should be read-only */
653 sstatus
= full_write (fd
, data_block
->buffer
, written
);
655 set_next_block_after ((union block
*)
656 (data_block
->buffer
+ written
- 1));
657 if (sstatus
== written
)
660 /* Error in writing to file. Print it, skip to next file in
664 ERROR ((0, errno
, _("%s: Could not write to file"),
667 ERROR ((0, 0, _("%s: Could only write %lu of %lu bytes"),
669 (unsigned long) sstatus
,
670 (unsigned long) written
));
671 skip_file (size
- written
);
672 break; /* still do the close, mod time, chmod, etc */
675 if (multi_volume_option
)
676 assign_string (&save_name
, NULL
);
678 /* If writing to stdout, don't try to do anything to the filename;
679 it doesn't exist, or we don't want to touch it anyway. */
681 if (to_stdout_option
)
687 ERROR ((0, errno
, _("%s: Error while closing"), CURRENT_FILE_NAME
));
692 set_stat (CURRENT_FILE_NAME
, ¤t_stat
, 0);
696 if (to_stdout_option
)
700 if (unlink_first_option
)
701 remove_any_file (CURRENT_FILE_NAME
, recursive_unlink_option
);
703 while (status
= symlink (current_link_name
, CURRENT_FILE_NAME
),
705 if (!maybe_recoverable (CURRENT_FILE_NAME
))
710 /* Setting the attributes of symbolic links might, on some systems,
711 change the pointed to file, instead of the symbolic link itself.
712 At least some of these systems have a lchown call, and the
713 set_stat routine knows about this. */
715 set_stat (CURRENT_FILE_NAME
, ¤t_stat
, 1);
719 ERROR ((0, errno
, _("%s: Could not create symlink to `%s'"),
720 CURRENT_FILE_NAME
, current_link_name
));
726 #else /* not S_ISLNK */
728 static int warned_once
= 0;
734 Attempting extraction of symbolic links as hard links")));
739 #endif /* not S_ISLNK */
742 if (to_stdout_option
)
745 if (unlink_first_option
)
746 remove_any_file (CURRENT_FILE_NAME
, recursive_unlink_option
);
750 struct stat st1
, st2
;
752 /* MSDOS does not implement links. However, djgpp's link() actually
754 status
= link (current_link_name
, CURRENT_FILE_NAME
);
758 if (maybe_recoverable (CURRENT_FILE_NAME
))
761 if (incremental_option
&& errno
== EEXIST
)
763 if (stat (current_link_name
, &st1
) == 0
764 && stat (CURRENT_FILE_NAME
, &st2
) == 0
765 && st1
.st_dev
== st2
.st_dev
766 && st1
.st_ino
== st2
.st_ino
)
769 ERROR ((0, errno
, _("%s: Could not link to `%s'"),
770 CURRENT_FILE_NAME
, current_link_name
));
778 current_stat
.st_mode
|= S_IFCHR
;
784 current_stat
.st_mode
|= S_IFBLK
;
787 #if S_IFCHR || S_IFBLK
789 if (to_stdout_option
)
792 if (unlink_first_option
)
793 remove_any_file (CURRENT_FILE_NAME
, recursive_unlink_option
);
795 status
= mknod (CURRENT_FILE_NAME
, current_stat
.st_mode
,
796 current_stat
.st_rdev
);
799 if (maybe_recoverable (CURRENT_FILE_NAME
))
802 ERROR ((0, errno
, _("%s: Could not make node"), CURRENT_FILE_NAME
));
807 set_stat (CURRENT_FILE_NAME
, ¤t_stat
, 0);
813 if (to_stdout_option
)
816 if (unlink_first_option
)
817 remove_any_file (CURRENT_FILE_NAME
, recursive_unlink_option
);
819 while (status
= mkfifo (CURRENT_FILE_NAME
, current_stat
.st_mode
),
821 if (!maybe_recoverable (CURRENT_FILE_NAME
))
825 set_stat (CURRENT_FILE_NAME
, ¤t_stat
, 0);
828 ERROR ((0, errno
, _("%s: Could not make fifo"), CURRENT_FILE_NAME
));
836 case GNUTYPE_DUMPDIR
:
837 name_length
= strlen (CURRENT_FILE_NAME
) - 1;
840 /* Check for trailing /, and zap as many as we find. */
841 while (name_length
&& CURRENT_FILE_NAME
[name_length
] == '/')
842 CURRENT_FILE_NAME
[name_length
--] = '\0';
844 if (incremental_option
)
846 /* Read the entry and delete files that aren't listed in the
849 gnu_restore (skipcrud
);
851 else if (typeflag
== GNUTYPE_DUMPDIR
)
852 skip_file (current_stat
.st_size
);
854 if (to_stdout_option
)
858 status
= mkdir (CURRENT_FILE_NAME
,
859 ((we_are_root
? 0 : MODE_WXUSR
)
860 | current_stat
.st_mode
));
863 /* If the directory creation fails, let's consider immediately the
864 case where the directory already exists. We have three good
865 reasons for clearing out this case before attempting recovery.
867 1) It would not be efficient recovering the error by deleting
868 the directory in maybe_recoverable, then recreating it right
869 away. We only hope we will be able to adjust its permissions
872 2) Removing the directory might fail if it is not empty. By
873 exception, this real error is traditionally not reported.
875 3) Let's suppose `DIR' already exists and we are about to
876 extract `DIR/../DIR'. This would fail because the directory
877 already exists, and maybe_recoverable would react by removing
878 `DIR'. This then would fail again because there are missing
879 intermediate directories, and maybe_recoverable would react by
880 creating `DIR'. We would then have an extraction loop. */
885 int saved_errno
= errno
;
887 if (stat (CURRENT_FILE_NAME
, &st1
) == 0 && S_ISDIR (st1
.st_mode
))
890 errno
= saved_errno
; /* FIXME: errno should be read-only */
893 if (maybe_recoverable (CURRENT_FILE_NAME
))
896 /* If we're trying to create '.', let it be. */
898 /* FIXME: Strange style... */
900 if (CURRENT_FILE_NAME
[name_length
] == '.'
902 || CURRENT_FILE_NAME
[name_length
- 1] == '/'))
905 ERROR ((0, errno
, _("%s: Could not create directory"),
913 if (!we_are_root
&& MODE_WXUSR
!= (MODE_WXUSR
& current_stat
.st_mode
))
915 current_stat
.st_mode
|= MODE_WXUSR
;
916 WARN ((0, 0, _("Added write and execute permission to directory %s"),
921 /* MSDOS does not associate timestamps with directories. In this
922 case, no need to try delaying their restoration. */
926 /* FIXME: I do not believe in this. Ignoring time stamps does not
927 alleviate the need of delaying the restoration of directories'
928 mode. Let's ponder this for a little while. */
930 set_mode (CURRENT_FILE_NAME
, ¤t_stat
);
934 data
= ((struct delayed_set_stat
*)
935 xmalloc (sizeof (struct delayed_set_stat
)));
936 data
->file_name
= xstrdup (CURRENT_FILE_NAME
);
937 data
->stat_info
= current_stat
;
938 data
->next
= delayed_set_stat_head
;
939 delayed_set_stat_head
= data
;
946 fprintf (stdlis
, _("Reading %s\n"), current_file_name
);
953 case GNUTYPE_MULTIVOL
:
955 Cannot extract `%s' -- file is continued from another volume"),
957 skip_file (current_stat
.st_size
);
962 case GNUTYPE_LONGNAME
:
963 case GNUTYPE_LONGLINK
:
964 ERROR ((0, 0, _("Visible long name error")));
965 skip_file (current_stat
.st_size
);
972 _("Unknown file type '%c' for %s, extracted as normal file"),
973 typeflag
, CURRENT_FILE_NAME
));
977 #undef CURRENT_FILE_NAME
980 /*----------------------------------------------------------------.
981 | Set back the utime and mode for all the extracted directories. |
982 `----------------------------------------------------------------*/
985 apply_delayed_set_stat (void)
987 struct delayed_set_stat
*data
;
989 while (delayed_set_stat_head
!= NULL
)
991 data
= delayed_set_stat_head
;
992 delayed_set_stat_head
= delayed_set_stat_head
->next
;
993 set_stat (data
->file_name
, &data
->stat_info
, 0);
994 free (data
->file_name
);
This page took 0.078851 seconds and 4 git commands to generate.