1 /* Extract files from a tar archive.
3 Copyright (C) 1988, 1992, 1993, 1994, 1996, 1997, 1998, 1999, 2000,
4 2001, 2003, 2004 Free Software Foundation, Inc.
6 Written by John Gilmore, on 1985-11-19.
8 This program is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 2, or (at your option) any later
13 This program is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
16 Public License for more details.
18 You should have received a copy of the GNU General Public License along
19 with this program; if not, write to the Free Software Foundation, Inc.,
20 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
39 bool we_are_root
; /* true if our effective uid == 0 */
40 static mode_t newdir_umask
; /* umask when creating new directories */
41 static mode_t current_umask
; /* current umask (which is set to 0 if -p) */
43 /* Status of the permissions of a file that we are extracting. */
46 /* This file may have existed already; its permissions are unknown. */
49 /* This file was created using the permissions from the archive. */
52 /* This is an intermediate directory; the archive did not specify
57 /* List of directories whose statuses we need to extract after we've
58 finished extracting their subsidiary files. If you consider each
59 contiguous subsequence of elements of the form [D]?[^D]*, where [D]
60 represents an element where AFTER_SYMLINKS is nonzero and [^D]
61 represents an element where AFTER_SYMLINKS is zero, then the head
62 of the subsequence has the longest name, and each non-head element
63 in the prefix is an ancestor (in the directory hierarchy) of the
66 struct delayed_set_stat
68 struct delayed_set_stat
*next
;
69 struct stat stat_info
;
71 mode_t invert_permissions
;
72 enum permstatus permstatus
;
77 static struct delayed_set_stat
*delayed_set_stat_head
;
79 /* List of symbolic links whose creation we have delayed. */
80 struct delayed_symlink
82 /* The next delayed symbolic link in the list. */
83 struct delayed_symlink
*next
;
85 /* The device, inode number and last-modified time of the placeholder. */
90 /* The desired owner and group of the symbolic link. */
94 /* A list of sources for this symlink. The sources are all to be
95 hard-linked together. */
96 struct string_list
*sources
;
98 /* The desired target of the desired link. */
102 static struct delayed_symlink
*delayed_symlink_head
;
106 struct string_list
*next
;
110 /* Set up to extract files. */
114 we_are_root
= geteuid () == 0;
115 same_permissions_option
+= we_are_root
;
116 same_owner_option
+= we_are_root
;
117 xalloc_fail_func
= extract_finish
;
119 /* Save 'root device' to avoid purging mount points.
120 FIXME: Should the same be done after handling -C option ? */
121 if (one_file_system_option
)
124 char *dir
= xgetcwd ();
126 if (deref_stat (true, dir
, &st
))
129 root_device
= st
.st_dev
;
132 /* Option -p clears the kernel umask, so it does not affect proper
133 restoration of file permissions. New intermediate directories will
134 comply with umask at start of program. */
136 newdir_umask
= umask (0);
137 if (0 < same_permissions_option
)
141 umask (newdir_umask
); /* restore the kernel umask */
142 current_umask
= newdir_umask
;
146 /* If restoring permissions, restore the mode for FILE_NAME from
147 information given in *STAT_INFO (where *CUR_INFO gives
148 the current status if CUR_INFO is nonzero); otherwise invert the
149 INVERT_PERMISSIONS bits from the file's current permissions.
150 PERMSTATUS specifies the status of the file's permissions.
151 TYPEFLAG specifies the type of the file. */
153 set_mode (char const *file_name
,
154 struct stat
const *stat_info
,
155 struct stat
const *cur_info
,
156 mode_t invert_permissions
, enum permstatus permstatus
,
161 if (0 < same_permissions_option
162 && permstatus
!= INTERDIR_PERMSTATUS
)
164 mode
= stat_info
->st_mode
;
166 /* If we created the file and it has a usual mode, then its mode
167 is normally set correctly already. But on many hosts, some
168 directories inherit the setgid bits from their parents, so we
169 we must set directories' modes explicitly. */
170 if (permstatus
== ARCHIVED_PERMSTATUS
171 && ! (mode
& ~ MODE_RWX
)
172 && typeflag
!= DIRTYPE
173 && typeflag
!= GNUTYPE_DUMPDIR
)
176 else if (! invert_permissions
)
180 /* We must inspect a directory's current permissions, since the
181 directory may have inherited its setgid bit from its parent.
183 INVERT_PERMISSIONS happens to be nonzero only for directories
184 that we created, so there's no point optimizing this code for
189 if (stat (file_name
, &st
) != 0)
191 stat_error (file_name
);
196 mode
= cur_info
->st_mode
^ invert_permissions
;
199 if (chmod (file_name
, mode
) != 0)
200 chmod_error_details (file_name
, mode
);
203 /* Check time after successfully setting FILE_NAME's time stamp to T. */
205 check_time (char const *file_name
, time_t t
)
209 WARN ((0, 0, _("%s: implausibly old time stamp %s"),
210 file_name
, tartime (t
)));
211 else if (start_time
< t
&& (now
= time (0)) < t
)
212 WARN ((0, 0, _("%s: time stamp %s is %lu s in the future"),
213 file_name
, tartime (t
), (unsigned long) (t
- now
)));
216 /* Restore stat attributes (owner, group, mode and times) for
217 FILE_NAME, using information given in *STAT_INFO.
218 If CUR_INFO is nonzero, *CUR_INFO is the
219 file's currernt status.
220 If not restoring permissions, invert the
221 INVERT_PERMISSIONS bits from the file's current permissions.
222 PERMSTATUS specifies the status of the file's permissions.
223 TYPEFLAG specifies the type of the file. */
225 /* FIXME: About proper restoration of symbolic link attributes, we still do
226 not have it right. Pretesters' reports tell us we need further study and
227 probably more configuration. For now, just use lchown if it exists, and
228 punt for the rest. Sigh! */
231 set_stat (char const *file_name
,
232 struct stat
const *stat_info
,
233 struct stat
const *cur_info
,
234 mode_t invert_permissions
, enum permstatus permstatus
,
237 struct utimbuf utimbuf
;
239 if (typeflag
!= SYMTYPE
)
241 /* We do the utime before the chmod because some versions of utime are
242 broken and trash the modes of the file. */
244 if (! touch_option
&& permstatus
!= INTERDIR_PERMSTATUS
)
246 /* We set the accessed time to `now', which is really the time we
247 started extracting files, unless incremental_option is used, in
248 which case .st_atime is used. */
250 /* FIXME: incremental_option should set ctime too, but how? */
252 if (incremental_option
)
253 utimbuf
.actime
= stat_info
->st_atime
;
255 utimbuf
.actime
= start_time
;
257 utimbuf
.modtime
= stat_info
->st_mtime
;
259 if (utime (file_name
, &utimbuf
) < 0)
260 utime_error (file_name
);
263 check_time (file_name
, utimbuf
.actime
);
264 check_time (file_name
, utimbuf
.modtime
);
268 /* Some systems allow non-root users to give files away. Once this
269 done, it is not possible anymore to change file permissions, so we
270 have to set permissions prior to possibly giving files away. */
272 set_mode (file_name
, stat_info
, cur_info
,
273 invert_permissions
, permstatus
, typeflag
);
276 if (0 < same_owner_option
&& permstatus
!= INTERDIR_PERMSTATUS
)
278 /* When lchown exists, it should be used to change the attributes of
279 the symbolic link itself. In this case, a mere chown would change
280 the attributes of the file the symbolic link is pointing to, and
281 should be avoided. */
283 if (typeflag
== SYMTYPE
)
286 if (lchown (file_name
, stat_info
->st_uid
, stat_info
->st_gid
) < 0)
287 chown_error_details (file_name
,
288 stat_info
->st_uid
, stat_info
->st_gid
);
293 if (chown (file_name
, stat_info
->st_uid
, stat_info
->st_gid
) < 0)
294 chown_error_details (file_name
,
295 stat_info
->st_uid
, stat_info
->st_gid
);
297 /* On a few systems, and in particular, those allowing to give files
298 away, changing the owner or group destroys the suid or sgid bits.
299 So let's attempt setting these bits once more. */
300 if (stat_info
->st_mode
& (S_ISUID
| S_ISGID
| S_ISVTX
))
301 set_mode (file_name
, stat_info
, 0,
302 invert_permissions
, permstatus
, typeflag
);
307 /* Remember to restore stat attributes (owner, group, mode and times)
308 for the directory FILE_NAME, using information given in *STAT_INFO,
309 once we stop extracting files into that directory.
310 If not restoring permissions, remember to invert the
311 INVERT_PERMISSIONS bits from the file's current permissions.
312 PERMSTATUS specifies the status of the file's permissions. */
314 delay_set_stat (char const *file_name
, struct stat
const *stat_info
,
315 mode_t invert_permissions
, enum permstatus permstatus
)
317 size_t file_name_len
= strlen (file_name
);
318 struct delayed_set_stat
*data
=
319 xmalloc (offsetof (struct delayed_set_stat
, file_name
)
320 + file_name_len
+ 1);
321 data
->file_name_len
= file_name_len
;
322 strcpy (data
->file_name
, file_name
);
323 data
->invert_permissions
= invert_permissions
;
324 data
->permstatus
= permstatus
;
325 data
->after_symlinks
= 0;
326 data
->stat_info
= *stat_info
;
327 data
->next
= delayed_set_stat_head
;
328 delayed_set_stat_head
= data
;
331 /* Update the delayed_set_stat info for an intermediate directory
332 created within the file name of DIR. The intermediate directory turned
333 out to be the same as this directory, e.g. due to ".." or symbolic
334 links. *DIR_STAT_INFO is the status of the directory. */
336 repair_delayed_set_stat (char const *dir
,
337 struct stat
const *dir_stat_info
)
339 struct delayed_set_stat
*data
;
340 for (data
= delayed_set_stat_head
; data
; data
= data
->next
)
343 if (stat (data
->file_name
, &st
) != 0)
345 stat_error (data
->file_name
);
349 if (st
.st_dev
== dir_stat_info
->st_dev
350 && st
.st_ino
== dir_stat_info
->st_ino
)
352 data
->stat_info
= current_stat_info
.stat
;
353 data
->invert_permissions
=
354 (MODE_RWX
& (current_stat_info
.stat
.st_mode
^ st
.st_mode
));
355 data
->permstatus
= ARCHIVED_PERMSTATUS
;
360 ERROR ((0, 0, _("%s: Unexpected inconsistency when making directory"),
361 quotearg_colon (dir
)));
364 /* After a file/link/symlink/directory creation has failed, see if
365 it's because some required directory was not present, and if so,
366 create all required directories. Return non-zero if a directory
369 make_directories (char *file_name
)
371 char *cursor0
= file_name
+ FILE_SYSTEM_PREFIX_LEN (file_name
);
372 char *cursor
; /* points into the file name */
373 int did_something
= 0; /* did we do anything yet? */
375 int invert_permissions
;
379 for (cursor
= cursor0
; *cursor
; cursor
++)
381 if (! ISSLASH (*cursor
))
384 /* Avoid mkdir of empty string, if leading or double '/'. */
386 if (cursor
== cursor0
|| ISSLASH (cursor
[-1]))
389 /* Avoid mkdir where last part of file name is "." or "..". */
391 if (cursor
[-1] == '.'
392 && (cursor
== cursor0
+ 1 || ISSLASH (cursor
[-2])
393 || (cursor
[-2] == '.'
394 && (cursor
== cursor0
+ 2 || ISSLASH (cursor
[-3])))))
397 *cursor
= '\0'; /* truncate the name there */
398 mode
= MODE_RWX
& ~ newdir_umask
;
399 invert_permissions
= we_are_root
? 0 : MODE_WXUSR
& ~ mode
;
400 status
= mkdir (file_name
, mode
^ invert_permissions
);
404 /* Create a struct delayed_set_stat even if
405 invert_permissions is zero, because
406 repair_delayed_set_stat may need to update the struct. */
407 delay_set_stat (file_name
,
408 ¤t_stat_info
.stat
/* ignored */,
409 invert_permissions
, INTERDIR_PERMSTATUS
);
411 print_for_mkdir (file_name
, cursor
- file_name
, mode
);
421 continue; /* Directory already exists. */
422 else if ((errno
== ENOSYS
/* Automounted dirs on Solaris return
423 this. Reported by Warren Hyde
424 <Warren.Hyde@motorola.com> */
425 || ERRNO_IS_EACCES
) /* Turbo C mkdir gives a funny errno. */
426 && access (file_name
, W_OK
) == 0)
429 /* Some other error in the mkdir. We return to the caller. */
433 return did_something
; /* tell them to retry if we made one */
437 file_newer_p (const char *file_name
, struct tar_stat_info
*tar_stat
)
441 if (stat (file_name
, &st
))
443 stat_warn (file_name
);
444 return true; /* Be on the safe side */
446 if (!S_ISDIR (st
.st_mode
)
447 && st
.st_mtime
>= tar_stat
->stat
.st_mtime
)
454 /* Prepare to extract a file.
455 Return zero if extraction should not proceed. */
458 prepare_to_extract (char const *file_name
)
460 if (to_stdout_option
)
463 switch (old_files_option
)
465 case UNLINK_FIRST_OLD_FILES
:
466 if (!remove_any_file (file_name
, recursive_unlink_option
)
467 && errno
&& errno
!= ENOENT
)
469 unlink_error (file_name
);
474 case KEEP_NEWER_FILES
:
475 if (file_newer_p (file_name
, ¤t_stat_info
))
477 WARN ((0, 0, _("Current `%s' is newer"), file_name
));
489 /* Attempt repairing what went wrong with the extraction. Delete an
490 already existing file or create missing intermediate directories.
491 Return nonzero if we somewhat increased our chances at a successful
492 extraction. errno is properly restored on zero return. */
494 maybe_recoverable (char *file_name
, int *interdir_made
)
504 /* Remove an old file, if the options allow this. */
506 switch (old_files_option
)
511 case KEEP_NEWER_FILES
:
512 if (file_newer_p (file_name
, ¤t_stat_info
))
519 case DEFAULT_OLD_FILES
:
520 case NO_OVERWRITE_DIR_OLD_FILES
:
521 case OVERWRITE_OLD_FILES
:
523 int r
= remove_any_file (file_name
, 0);
528 case UNLINK_FIRST_OLD_FILES
:
533 /* Attempt creating missing intermediate directories. */
534 if (! make_directories (file_name
))
543 /* Just say we can't do anything about it... */
549 /* Fix the statuses of all directories whose statuses need fixing, and
550 which are not ancestors of FILE_NAME. If AFTER_SYMLINKS is
551 nonzero, do this for all such directories; otherwise, stop at the
552 first directory that is marked to be fixed up only after delayed
553 symlinks are applied. */
555 apply_nonancestor_delayed_set_stat (char const *file_name
, bool after_symlinks
)
557 size_t file_name_len
= strlen (file_name
);
558 bool check_for_renamed_directories
= 0;
560 while (delayed_set_stat_head
)
562 struct delayed_set_stat
*data
= delayed_set_stat_head
;
563 bool skip_this_one
= 0;
565 struct stat
const *cur_info
= 0;
567 check_for_renamed_directories
|= data
->after_symlinks
;
569 if (after_symlinks
< data
->after_symlinks
570 || (data
->file_name_len
< file_name_len
571 && file_name
[data
->file_name_len
]
572 && (ISSLASH (file_name
[data
->file_name_len
])
573 || ISSLASH (file_name
[data
->file_name_len
- 1]))
574 && memcmp (file_name
, data
->file_name
, data
->file_name_len
) == 0))
577 if (check_for_renamed_directories
)
580 if (stat (data
->file_name
, &st
) != 0)
582 stat_error (data
->file_name
);
585 else if (! (st
.st_dev
== data
->stat_info
.st_dev
586 && (st
.st_ino
== data
->stat_info
.st_ino
)))
589 _("%s: Directory renamed before its status could be extracted"),
590 quotearg_colon (data
->file_name
)));
596 set_stat (data
->file_name
, &data
->stat_info
, cur_info
,
597 data
->invert_permissions
, data
->permstatus
, DIRTYPE
);
599 delayed_set_stat_head
= data
->next
;
604 /* Extract a file from the archive. */
606 extract_archive (void)
608 union block
*data_block
;
616 int interdir_made
= 0;
620 set_next_block_after (current_header
);
621 decode_header (current_header
, ¤t_stat_info
, ¤t_format
, 1);
623 if (interactive_option
&& !confirm ("extract", current_stat_info
.file_name
))
629 /* Print the block from current_header and current_stat. */
632 print_header (¤t_stat_info
, -1);
634 file_name
= safer_name_suffix (current_stat_info
.file_name
, false);
635 if (strip_name_components
)
637 size_t prefix_len
= stripped_prefix_len (file_name
, strip_name_components
);
638 if (prefix_len
== (size_t) -1)
643 file_name
+= prefix_len
;
646 apply_nonancestor_delayed_set_stat (file_name
, 0);
648 /* Take a safety backup of a previously existing file. */
650 if (backup_option
&& !to_stdout_option
)
651 if (!maybe_backup_file (file_name
, 0))
654 ERROR ((0, e
, _("%s: Was unable to backup this file"),
655 quotearg_colon (file_name
)));
660 /* Extract the archive entry according to its type. */
663 typeflag
= sparse_member_p (¤t_stat_info
) ?
664 GNUTYPE_SPARSE
: current_header
->header
.typeflag
;
675 /* Appears to be a file. But BSD tar uses the convention that a slash
676 suffix means a directory. */
678 if (current_stat_info
.had_trailing_slash
)
681 /* FIXME: deal with protection issues. */
684 openflag
= (O_WRONLY
| O_BINARY
| O_CREAT
685 | (old_files_option
== OVERWRITE_OLD_FILES
688 mode
= current_stat_info
.stat
.st_mode
& MODE_RWX
& ~ current_umask
;
690 if (to_stdout_option
)
696 if (! prepare_to_extract (file_name
))
705 /* Contiguous files (on the Masscomp) have to specify the size in
706 the open call that creates them. */
708 if (typeflag
== CONTTYPE
)
709 fd
= open (file_name
, openflag
| O_CTG
, mode
, current_stat_info
.stat
.st_size
);
711 fd
= open (file_name
, openflag
, mode
);
713 #else /* not O_CTG */
714 if (typeflag
== CONTTYPE
)
716 static int conttype_diagnosed
;
718 if (!conttype_diagnosed
)
720 conttype_diagnosed
= 1;
721 WARN ((0, 0, _("Extracting contiguous files as regular files")));
724 fd
= open (file_name
, openflag
, mode
);
726 #endif /* not O_CTG */
730 if (maybe_recoverable (file_name
, &interdir_made
))
733 open_error (file_name
);
741 if (current_stat_info
.is_sparse
)
743 sparse_extract_file (fd
, ¤t_stat_info
, &size
);
746 for (size
= current_stat_info
.stat
.st_size
; size
> 0; )
748 if (multi_volume_option
)
750 assign_string (&save_name
, current_stat_info
.file_name
);
751 save_totsize
= current_stat_info
.stat
.st_size
;
752 save_sizeleft
= size
;
755 /* Locate data, determine max length writeable, write it,
756 block that we have used the data, then check if the write
759 data_block
= find_next_block ();
762 ERROR ((0, 0, _("Unexpected EOF in archive")));
763 break; /* FIXME: What happens, then? */
766 written
= available_space_after (data_block
);
771 count
= full_write (fd
, data_block
->buffer
, written
);
774 set_next_block_after ((union block
*)
775 (data_block
->buffer
+ written
- 1));
776 if (count
!= written
)
778 write_error_details (file_name
, count
, written
);
785 if (multi_volume_option
)
786 assign_string (&save_name
, 0);
788 /* If writing to stdout, don't try to do anything to the filename;
789 it doesn't exist, or we don't want to touch it anyway. */
791 if (to_stdout_option
)
797 close_error (file_name
);
802 set_stat (file_name
, ¤t_stat_info
.stat
, 0, 0,
803 (old_files_option
== OVERWRITE_OLD_FILES
805 : ARCHIVED_PERMSTATUS
),
811 if (! prepare_to_extract (file_name
))
814 if (absolute_names_option
815 || ! (IS_ABSOLUTE_FILE_NAME (current_stat_info
.link_name
)
816 || contains_dot_dot (current_stat_info
.link_name
)))
818 while (status
= symlink (current_stat_info
.link_name
, file_name
),
820 if (!maybe_recoverable (file_name
, &interdir_made
))
824 set_stat (file_name
, ¤t_stat_info
.stat
, 0, 0, 0, SYMTYPE
);
826 symlink_error (current_stat_info
.link_name
, file_name
);
830 /* This symbolic link is potentially dangerous. Don't
831 create it now; instead, create a placeholder file, which
832 will be replaced after other extraction is done. */
835 while (fd
= open (file_name
, O_WRONLY
| O_CREAT
| O_EXCL
, 0),
837 if (! maybe_recoverable (file_name
, &interdir_made
))
842 open_error (file_name
);
843 else if (fstat (fd
, &st
) != 0)
845 stat_error (file_name
);
848 else if (close (fd
) != 0)
849 close_error (file_name
);
852 struct delayed_set_stat
*h
;
853 struct delayed_symlink
*p
=
854 xmalloc (offsetof (struct delayed_symlink
, target
)
855 + strlen (current_stat_info
.link_name
) + 1);
856 p
->next
= delayed_symlink_head
;
857 delayed_symlink_head
= p
;
860 p
->mtime
= st
.st_mtime
;
861 p
->uid
= current_stat_info
.stat
.st_uid
;
862 p
->gid
= current_stat_info
.stat
.st_gid
;
863 p
->sources
= xmalloc (offsetof (struct string_list
, string
)
864 + strlen (file_name
) + 1);
865 p
->sources
->next
= 0;
866 strcpy (p
->sources
->string
, file_name
);
867 strcpy (p
->target
, current_stat_info
.link_name
);
869 h
= delayed_set_stat_head
;
870 if (h
&& ! h
->after_symlinks
871 && strncmp (file_name
, h
->file_name
, h
->file_name_len
) == 0
872 && ISSLASH (file_name
[h
->file_name_len
])
873 && (base_name (file_name
)
874 == file_name
+ h
->file_name_len
+ 1))
878 h
->after_symlinks
= 1;
880 if (stat (h
->file_name
, &st
) != 0)
881 stat_error (h
->file_name
);
884 h
->stat_info
.st_dev
= st
.st_dev
;
885 h
->stat_info
.st_ino
= st
.st_ino
;
888 while ((h
= h
->next
) && ! h
->after_symlinks
);
895 if (status
!= 0 && backup_option
)
901 static int warned_once
;
907 _("Attempting extraction of symbolic links as hard links")));
915 if (! prepare_to_extract (file_name
))
920 char const *link_name
= safer_name_suffix (current_stat_info
.link_name
,
922 struct stat st1
, st2
;
925 /* MSDOS does not implement links. However, djgpp's link() actually
927 status
= link (link_name
, file_name
);
932 struct delayed_symlink
*ds
= delayed_symlink_head
;
933 if (ds
&& lstat (link_name
, &st1
) == 0)
934 for (; ds
; ds
= ds
->next
)
935 if (ds
->dev
== st1
.st_dev
936 && ds
->ino
== st1
.st_ino
937 && ds
->mtime
== st1
.st_mtime
)
939 struct string_list
*p
=
940 xmalloc (offsetof (struct string_list
, string
)
941 + strlen (file_name
) + 1);
942 strcpy (p
->string
, file_name
);
943 p
->next
= ds
->sources
;
950 if ((e
== EEXIST
&& strcmp (link_name
, file_name
) == 0)
951 || (lstat (link_name
, &st1
) == 0
952 && lstat (file_name
, &st2
) == 0
953 && st1
.st_dev
== st2
.st_dev
954 && st1
.st_ino
== st2
.st_ino
))
958 if (maybe_recoverable (file_name
, &interdir_made
))
961 if (incremental_option
&& errno
== EEXIST
)
964 link_error (link_name
, file_name
);
972 current_stat_info
.stat
.st_mode
|= S_IFCHR
;
978 current_stat_info
.stat
.st_mode
|= S_IFBLK
;
981 #if S_IFCHR || S_IFBLK
983 if (! prepare_to_extract (file_name
))
986 status
= mknod (file_name
, current_stat_info
.stat
.st_mode
,
987 current_stat_info
.stat
.st_rdev
);
990 if (maybe_recoverable (file_name
, &interdir_made
))
992 mknod_error (file_name
);
997 set_stat (file_name
, ¤t_stat_info
.stat
, 0, 0,
998 ARCHIVED_PERMSTATUS
, typeflag
);
1002 #if HAVE_MKFIFO || defined mkfifo
1004 if (! prepare_to_extract (file_name
))
1007 while (status
= mkfifo (file_name
, current_stat_info
.stat
.st_mode
),
1009 if (!maybe_recoverable (file_name
, &interdir_made
))
1013 set_stat (file_name
, ¤t_stat_info
.stat
, NULL
, 0,
1014 ARCHIVED_PERMSTATUS
, typeflag
);
1017 mkfifo_error (file_name
);
1019 undo_last_backup ();
1025 case GNUTYPE_DUMPDIR
:
1027 if (incremental_option
)
1029 /* Read the entry and delete files that aren't listed in the
1032 purge_directory (file_name
);
1034 else if (typeflag
== GNUTYPE_DUMPDIR
)
1037 mode
= ((current_stat_info
.stat
.st_mode
1038 | (we_are_root
? 0 : MODE_WXUSR
))
1041 status
= prepare_to_extract (file_name
);
1045 goto directory_exists
;
1048 status
= mkdir (file_name
, mode
);
1054 || old_files_option
== DEFAULT_OLD_FILES
1055 || old_files_option
== OVERWRITE_OLD_FILES
))
1058 if (stat (file_name
, &st
) == 0)
1062 repair_delayed_set_stat (file_name
, &st
);
1065 if (S_ISDIR (st
.st_mode
))
1067 mode
= st
.st_mode
& ~ current_umask
;
1068 goto directory_exists
;
1074 if (maybe_recoverable (file_name
, &interdir_made
))
1077 if (errno
!= EEXIST
)
1079 mkdir_error (file_name
);
1081 undo_last_backup ();
1088 || old_files_option
== DEFAULT_OLD_FILES
1089 || old_files_option
== OVERWRITE_OLD_FILES
)
1090 delay_set_stat (file_name
, ¤t_stat_info
.stat
,
1091 MODE_RWX
& (mode
^ current_stat_info
.stat
.st_mode
),
1093 ? ARCHIVED_PERMSTATUS
1094 : UNKNOWN_PERMSTATUS
));
1097 case GNUTYPE_VOLHDR
:
1099 fprintf (stdlis
, _("Reading %s\n"), quote (current_stat_info
.file_name
));
1106 case GNUTYPE_MULTIVOL
:
1108 _("%s: Cannot extract -- file is continued from another volume"),
1109 quotearg_colon (current_stat_info
.file_name
)));
1112 undo_last_backup ();
1115 case GNUTYPE_LONGNAME
:
1116 case GNUTYPE_LONGLINK
:
1117 ERROR ((0, 0, _("Visible long name error")));
1120 undo_last_backup ();
1125 _("%s: Unknown file type '%c', extracted as normal file"),
1126 quotearg_colon (file_name
), typeflag
));
1131 /* Extract the symbolic links whose final extraction were delayed. */
1133 apply_delayed_symlinks (void)
1135 struct delayed_symlink
*ds
;
1137 for (ds
= delayed_symlink_head
; ds
; )
1139 struct string_list
*sources
= ds
->sources
;
1140 char const *valid_source
= 0;
1142 for (sources
= ds
->sources
; sources
; sources
= sources
->next
)
1144 char const *source
= sources
->string
;
1147 /* Make sure the placeholder file is still there. If not,
1148 don't create a symlink, as the placeholder was probably
1149 removed by a later extraction. */
1150 if (lstat (source
, &st
) == 0
1151 && st
.st_dev
== ds
->dev
1152 && st
.st_ino
== ds
->ino
1153 && st
.st_mtime
== ds
->mtime
)
1155 /* Unlink the placeholder, then create a hard link if possible,
1156 a symbolic link otherwise. */
1157 if (unlink (source
) != 0)
1158 unlink_error (source
);
1159 else if (valid_source
&& link (valid_source
, source
) == 0)
1161 else if (symlink (ds
->target
, source
) != 0)
1162 symlink_error (ds
->target
, source
);
1165 valid_source
= source
;
1166 st
.st_uid
= ds
->uid
;
1167 st
.st_gid
= ds
->gid
;
1168 set_stat (source
, &st
, 0, 0, 0, SYMTYPE
);
1173 for (sources
= ds
->sources
; sources
; )
1175 struct string_list
*next
= sources
->next
;
1181 struct delayed_symlink
*next
= ds
->next
;
1187 delayed_symlink_head
= 0;
1190 /* Finish the extraction of an archive. */
1192 extract_finish (void)
1194 /* First, fix the status of ordinary directories that need fixing. */
1195 apply_nonancestor_delayed_set_stat ("", 0);
1197 /* Then, apply delayed symlinks, so that they don't affect delayed
1198 directory status-setting for ordinary directories. */
1199 apply_delayed_symlinks ();
1201 /* Finally, fix the status of directories that are ancestors
1202 of delayed symlinks. */
1203 apply_nonancestor_delayed_set_stat ("", 1);
1210 error (TAREXIT_FAILURE
, 0, _("Error is not recoverable: exiting now"));