1 /* Extract files from a tar archive.
3 Copyright (C) 1988, 1992, 1993, 1994, 1996, 1997, 1998, 1999, 2000,
4 2001, 2003, 2004, 2005 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 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
30 static bool we_are_root
; /* true if our effective uid == 0 */
31 static mode_t newdir_umask
; /* umask when creating new directories */
32 static mode_t current_umask
; /* current umask (which is set to 0 if -p) */
34 /* Status of the permissions of a file that we are extracting. */
37 /* This file may have existed already; its permissions are unknown. */
40 /* This file was created using the permissions from the archive. */
43 /* This is an intermediate directory; the archive did not specify
48 /* List of directories whose statuses we need to extract after we've
49 finished extracting their subsidiary files. If you consider each
50 contiguous subsequence of elements of the form [D]?[^D]*, where [D]
51 represents an element where AFTER_LINKS is nonzero and [^D]
52 represents an element where AFTER_LINKS is zero, then the head
53 of the subsequence has the longest name, and each non-head element
54 in the prefix is an ancestor (in the directory hierarchy) of the
57 struct delayed_set_stat
59 struct delayed_set_stat
*next
;
65 struct timespec atime
;
66 struct timespec mtime
;
68 mode_t invert_permissions
;
69 enum permstatus permstatus
;
74 static struct delayed_set_stat
*delayed_set_stat_head
;
76 /* List of links whose creation we have delayed. */
79 /* The next delayed link in the list. */
80 struct delayed_link
*next
;
82 /* The device, inode number and last-modified time of the placeholder. */
85 struct timespec mtime
;
87 /* True if the link is symbolic. */
90 /* The desired owner and group of the link, if it is a symlink. */
94 /* A list of sources for this link. 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_link
*delayed_link_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
;
118 /* Save 'root device' to avoid purging mount points.
119 FIXME: Should the same be done after handling -C option ? */
120 if (one_file_system_option
)
123 char *dir
= xgetcwd ();
125 if (deref_stat (true, dir
, &st
))
128 root_device
= st
.st_dev
;
131 /* Option -p clears the kernel umask, so it does not affect proper
132 restoration of file permissions. New intermediate directories will
133 comply with umask at start of program. */
135 newdir_umask
= umask (0);
136 if (0 < same_permissions_option
)
140 umask (newdir_umask
); /* restore the kernel umask */
141 current_umask
= newdir_umask
;
145 /* If restoring permissions, restore the mode for FILE_NAME from
146 information given in *STAT_INFO (where *CUR_INFO gives
147 the current status if CUR_INFO is nonzero); otherwise invert the
148 INVERT_PERMISSIONS bits from the file's current permissions.
149 PERMSTATUS specifies the status of the file's permissions.
150 TYPEFLAG specifies the type of the file. */
152 set_mode (char const *file_name
,
153 struct stat
const *stat_info
,
154 struct stat
const *cur_info
,
155 mode_t invert_permissions
, enum permstatus permstatus
,
160 if (0 < same_permissions_option
161 && permstatus
!= INTERDIR_PERMSTATUS
)
163 mode
= stat_info
->st_mode
;
165 /* If we created the file and it has a usual mode, then its mode
166 is normally set correctly already. But on many hosts, some
167 directories inherit the setgid bits from their parents, so we
168 we must set directories' modes explicitly. */
169 if (permstatus
== ARCHIVED_PERMSTATUS
170 && ! (mode
& ~ MODE_RWX
)
171 && typeflag
!= DIRTYPE
172 && typeflag
!= GNUTYPE_DUMPDIR
)
175 else if (! invert_permissions
)
179 /* We must inspect a directory's current permissions, since the
180 directory may have inherited its setgid bit from its parent.
182 INVERT_PERMISSIONS happens to be nonzero only for directories
183 that we created, so there's no point optimizing this code for
188 if (stat (file_name
, &st
) != 0)
190 stat_error (file_name
);
195 mode
= cur_info
->st_mode
^ invert_permissions
;
198 if (chmod (file_name
, mode
) != 0)
199 chmod_error_details (file_name
, mode
);
202 /* Check time after successfully setting FILE_NAME's time stamp to T. */
204 check_time (char const *file_name
, struct timespec t
)
207 WARN ((0, 0, _("%s: implausibly old time stamp %s"),
208 file_name
, tartime (t
, true)));
209 else if (timespec_cmp (start_time
, t
) < 0)
213 if (timespec_cmp (now
, t
) < 0)
215 char buf
[TIMESPEC_STRSIZE_BOUND
];
216 struct timespec diff
;
217 diff
.tv_sec
= t
.tv_sec
- now
.tv_sec
;
218 diff
.tv_nsec
= t
.tv_nsec
- now
.tv_nsec
;
219 if (diff
.tv_nsec
< 0)
221 diff
.tv_nsec
+= BILLION
;
224 WARN ((0, 0, _("%s: time stamp %s is %s s in the future"),
225 file_name
, tartime (t
, true), code_timespec (diff
, buf
)));
230 /* Restore stat attributes (owner, group, mode and times) for
231 FILE_NAME, using information given in *ST.
232 If CUR_INFO is nonzero, *CUR_INFO is the
233 file's currernt status.
234 If not restoring permissions, invert the
235 INVERT_PERMISSIONS bits from the file's current permissions.
236 PERMSTATUS specifies the status of the file's permissions.
237 TYPEFLAG specifies the type of the file. */
239 /* FIXME: About proper restoration of symbolic link attributes, we still do
240 not have it right. Pretesters' reports tell us we need further study and
241 probably more configuration. For now, just use lchown if it exists, and
242 punt for the rest. Sigh! */
245 set_stat (char const *file_name
,
246 struct tar_stat_info
const *st
,
247 struct stat
const *cur_info
,
248 mode_t invert_permissions
, enum permstatus permstatus
,
251 if (typeflag
!= SYMTYPE
)
253 /* We do the utime before the chmod because some versions of utime are
254 broken and trash the modes of the file. */
256 if (! touch_option
&& permstatus
!= INTERDIR_PERMSTATUS
)
258 /* We set the accessed time to `now', which is really the time we
259 started extracting files, unless incremental_option is used, in
260 which case .st_atime is used. */
262 /* FIXME: incremental_option should set ctime too, but how? */
264 struct timespec ts
[2];
265 if (incremental_option
)
271 if (utimens (file_name
, ts
) != 0)
272 utime_error (file_name
);
275 check_time (file_name
, ts
[0]);
276 check_time (file_name
, ts
[1]);
280 /* Some systems allow non-root users to give files away. Once this
281 done, it is not possible anymore to change file permissions, so we
282 have to set permissions prior to possibly giving files away. */
284 set_mode (file_name
, &st
->stat
, cur_info
,
285 invert_permissions
, permstatus
, typeflag
);
288 if (0 < same_owner_option
&& permstatus
!= INTERDIR_PERMSTATUS
)
290 /* When lchown exists, it should be used to change the attributes of
291 the symbolic link itself. In this case, a mere chown would change
292 the attributes of the file the symbolic link is pointing to, and
293 should be avoided. */
295 if (typeflag
== SYMTYPE
)
298 if (lchown (file_name
, st
->stat
.st_uid
, st
->stat
.st_gid
) < 0)
299 chown_error_details (file_name
,
300 st
->stat
.st_uid
, st
->stat
.st_gid
);
305 if (chown (file_name
, st
->stat
.st_uid
, st
->stat
.st_gid
) < 0)
306 chown_error_details (file_name
,
307 st
->stat
.st_uid
, st
->stat
.st_gid
);
309 /* On a few systems, and in particular, those allowing to give files
310 away, changing the owner or group destroys the suid or sgid bits.
311 So let's attempt setting these bits once more. */
312 if (st
->stat
.st_mode
& (S_ISUID
| S_ISGID
| S_ISVTX
))
313 set_mode (file_name
, &st
->stat
, 0,
314 invert_permissions
, permstatus
, typeflag
);
319 /* Remember to restore stat attributes (owner, group, mode and times)
320 for the directory FILE_NAME, using information given in *ST,
321 once we stop extracting files into that directory.
322 If not restoring permissions, remember to invert the
323 INVERT_PERMISSIONS bits from the file's current permissions.
324 PERMSTATUS specifies the status of the file's permissions. */
326 delay_set_stat (char const *file_name
, struct tar_stat_info
const *st
,
327 mode_t invert_permissions
, enum permstatus permstatus
)
329 size_t file_name_len
= strlen (file_name
);
330 struct delayed_set_stat
*data
=
331 xmalloc (offsetof (struct delayed_set_stat
, file_name
)
332 + file_name_len
+ 1);
333 data
->next
= delayed_set_stat_head
;
334 data
->dev
= st
->stat
.st_dev
;
335 data
->ino
= st
->stat
.st_ino
;
336 data
->mode
= st
->stat
.st_mode
;
337 data
->uid
= st
->stat
.st_uid
;
338 data
->gid
= st
->stat
.st_gid
;
339 data
->atime
= st
->atime
;
340 data
->mtime
= st
->mtime
;
341 data
->file_name_len
= file_name_len
;
342 data
->invert_permissions
= invert_permissions
;
343 data
->permstatus
= permstatus
;
344 data
->after_links
= 0;
345 strcpy (data
->file_name
, file_name
);
346 delayed_set_stat_head
= data
;
349 /* Update the delayed_set_stat info for an intermediate directory
350 created within the file name of DIR. The intermediate directory turned
351 out to be the same as this directory, e.g. due to ".." or symbolic
352 links. *DIR_STAT_INFO is the status of the directory. */
354 repair_delayed_set_stat (char const *dir
,
355 struct stat
const *dir_stat_info
)
357 struct delayed_set_stat
*data
;
358 for (data
= delayed_set_stat_head
; data
; data
= data
->next
)
361 if (stat (data
->file_name
, &st
) != 0)
363 stat_error (data
->file_name
);
367 if (st
.st_dev
== dir_stat_info
->st_dev
368 && st
.st_ino
== dir_stat_info
->st_ino
)
370 data
->dev
= current_stat_info
.stat
.st_dev
;
371 data
->ino
= current_stat_info
.stat
.st_ino
;
372 data
->mode
= current_stat_info
.stat
.st_mode
;
373 data
->uid
= current_stat_info
.stat
.st_uid
;
374 data
->gid
= current_stat_info
.stat
.st_gid
;
375 data
->atime
= current_stat_info
.atime
;
376 data
->mtime
= current_stat_info
.mtime
;
377 data
->invert_permissions
=
378 (MODE_RWX
& (current_stat_info
.stat
.st_mode
^ st
.st_mode
));
379 data
->permstatus
= ARCHIVED_PERMSTATUS
;
384 ERROR ((0, 0, _("%s: Unexpected inconsistency when making directory"),
385 quotearg_colon (dir
)));
388 /* After a file/link/directory creation has failed, see if
389 it's because some required directory was not present, and if so,
390 create all required directories. Return non-zero if a directory
393 make_directories (char *file_name
)
395 char *cursor0
= file_name
+ FILE_SYSTEM_PREFIX_LEN (file_name
);
396 char *cursor
; /* points into the file name */
397 int did_something
= 0; /* did we do anything yet? */
399 int invert_permissions
;
403 for (cursor
= cursor0
; *cursor
; cursor
++)
405 if (! ISSLASH (*cursor
))
408 /* Avoid mkdir of empty string, if leading or double '/'. */
410 if (cursor
== cursor0
|| ISSLASH (cursor
[-1]))
413 /* Avoid mkdir where last part of file name is "." or "..". */
415 if (cursor
[-1] == '.'
416 && (cursor
== cursor0
+ 1 || ISSLASH (cursor
[-2])
417 || (cursor
[-2] == '.'
418 && (cursor
== cursor0
+ 2 || ISSLASH (cursor
[-3])))))
421 *cursor
= '\0'; /* truncate the name there */
422 mode
= MODE_RWX
& ~ newdir_umask
;
423 invert_permissions
= we_are_root
? 0 : MODE_WXUSR
& ~ mode
;
424 status
= mkdir (file_name
, mode
^ invert_permissions
);
428 /* Create a struct delayed_set_stat even if
429 invert_permissions is zero, because
430 repair_delayed_set_stat may need to update the struct. */
431 delay_set_stat (file_name
,
432 ¤t_stat_info
/* ignored */,
433 invert_permissions
, INTERDIR_PERMSTATUS
);
435 print_for_mkdir (file_name
, cursor
- file_name
, mode
);
445 continue; /* Directory already exists. */
446 else if ((errno
== ENOSYS
/* Automounted dirs on Solaris return
447 this. Reported by Warren Hyde
448 <Warren.Hyde@motorola.com> */
449 || ERRNO_IS_EACCES
) /* Turbo C mkdir gives a funny errno. */
450 && access (file_name
, W_OK
) == 0)
453 /* Some other error in the mkdir. We return to the caller. */
457 return did_something
; /* tell them to retry if we made one */
461 file_newer_p (const char *file_name
, struct tar_stat_info
*tar_stat
)
465 if (stat (file_name
, &st
))
467 stat_warn (file_name
);
468 /* Be on the safe side: if the file does exist assume it is newer */
469 return errno
!= ENOENT
;
471 if (!S_ISDIR (st
.st_mode
)
472 && tar_timespec_cmp (tar_stat
->mtime
, get_stat_mtime (&st
)) <= 0)
479 /* Attempt repairing what went wrong with the extraction. Delete an
480 already existing file or create missing intermediate directories.
481 Return nonzero if we somewhat increased our chances at a successful
482 extraction. errno is properly restored on zero return. */
484 maybe_recoverable (char *file_name
, int *interdir_made
)
494 /* Remove an old file, if the options allow this. */
496 switch (old_files_option
)
501 case KEEP_NEWER_FILES
:
502 if (file_newer_p (file_name
, ¤t_stat_info
))
509 case DEFAULT_OLD_FILES
:
510 case NO_OVERWRITE_DIR_OLD_FILES
:
511 case OVERWRITE_OLD_FILES
:
513 int r
= remove_any_file (file_name
, ORDINARY_REMOVE_OPTION
);
518 case UNLINK_FIRST_OLD_FILES
:
523 /* Attempt creating missing intermediate directories. */
524 if (! make_directories (file_name
))
533 /* Just say we can't do anything about it... */
539 /* Fix the statuses of all directories whose statuses need fixing, and
540 which are not ancestors of FILE_NAME. If AFTER_LINKS is
541 nonzero, do this for all such directories; otherwise, stop at the
542 first directory that is marked to be fixed up only after delayed
543 links are applied. */
545 apply_nonancestor_delayed_set_stat (char const *file_name
, bool after_links
)
547 size_t file_name_len
= strlen (file_name
);
548 bool check_for_renamed_directories
= 0;
550 while (delayed_set_stat_head
)
552 struct delayed_set_stat
*data
= delayed_set_stat_head
;
553 bool skip_this_one
= 0;
555 struct stat
const *cur_info
= 0;
557 check_for_renamed_directories
|= data
->after_links
;
559 if (after_links
< data
->after_links
560 || (data
->file_name_len
< file_name_len
561 && file_name
[data
->file_name_len
]
562 && (ISSLASH (file_name
[data
->file_name_len
])
563 || ISSLASH (file_name
[data
->file_name_len
- 1]))
564 && memcmp (file_name
, data
->file_name
, data
->file_name_len
) == 0))
567 if (check_for_renamed_directories
)
570 if (stat (data
->file_name
, &st
) != 0)
572 stat_error (data
->file_name
);
575 else if (! (st
.st_dev
== data
->dev
&& st
.st_ino
== data
->ino
))
578 _("%s: Directory renamed before its status could be extracted"),
579 quotearg_colon (data
->file_name
)));
586 struct tar_stat_info st
;
587 st
.stat
.st_mode
= data
->mode
;
588 st
.stat
.st_uid
= data
->uid
;
589 st
.stat
.st_gid
= data
->gid
;
590 st
.atime
= data
->atime
;
591 st
.mtime
= data
->mtime
;
592 set_stat (data
->file_name
, &st
, cur_info
,
593 data
->invert_permissions
, data
->permstatus
, DIRTYPE
);
596 delayed_set_stat_head
= data
->next
;
603 /* Extractor functions for various member types */
606 extract_dir (char *file_name
, int typeflag
)
610 int interdir_made
= 0;
612 if (incremental_option
)
613 /* Read the entry and delete files that aren't listed in the archive. */
614 purge_directory (file_name
);
615 else if (typeflag
== GNUTYPE_DUMPDIR
)
618 mode
= (current_stat_info
.stat
.st_mode
| (we_are_root
? 0 : MODE_WXUSR
)) & MODE_RWX
;
620 while ((status
= mkdir (file_name
, mode
)))
624 || old_files_option
== DEFAULT_OLD_FILES
625 || old_files_option
== OVERWRITE_OLD_FILES
))
628 if (stat (file_name
, &st
) == 0)
632 repair_delayed_set_stat (file_name
, &st
);
635 if (S_ISDIR (st
.st_mode
))
637 mode
= st
.st_mode
& ~ current_umask
;
644 if (maybe_recoverable (file_name
, &interdir_made
))
649 mkdir_error (file_name
);
656 || old_files_option
== DEFAULT_OLD_FILES
657 || old_files_option
== OVERWRITE_OLD_FILES
)
658 delay_set_stat (file_name
, ¤t_stat_info
,
659 MODE_RWX
& (mode
^ current_stat_info
.stat
.st_mode
),
661 ? ARCHIVED_PERMSTATUS
662 : UNKNOWN_PERMSTATUS
));
669 open_output_file (char *file_name
, int typeflag
)
672 int openflag
= (O_WRONLY
| O_BINARY
| O_CREAT
673 | (old_files_option
== OVERWRITE_OLD_FILES
676 mode_t mode
= current_stat_info
.stat
.st_mode
& MODE_RWX
& ~ current_umask
;
679 /* Contiguous files (on the Masscomp) have to specify the size in
680 the open call that creates them. */
682 if (typeflag
== CONTTYPE
)
683 fd
= open (file_name
, openflag
| O_CTG
, mode
, current_stat_info
.stat
.st_size
);
685 fd
= open (file_name
, openflag
, mode
);
687 #else /* not O_CTG */
688 if (typeflag
== CONTTYPE
)
690 static int conttype_diagnosed
;
692 if (!conttype_diagnosed
)
694 conttype_diagnosed
= 1;
695 WARN ((0, 0, _("Extracting contiguous files as regular files")));
698 fd
= open (file_name
, openflag
, mode
);
700 #endif /* not O_CTG */
706 extract_file (char *file_name
, int typeflag
)
710 union block
*data_block
;
714 int interdir_made
= 0;
716 /* FIXME: deal with protection issues. */
718 if (to_stdout_option
)
720 else if (to_command_option
)
722 fd
= sys_exec_command (file_name
, 'f', ¤t_stat_info
);
732 fd
= open_output_file (file_name
, typeflag
);
733 while (fd
< 0 && maybe_recoverable (file_name
, &interdir_made
));
737 open_error (file_name
);
742 mv_begin (¤t_stat_info
);
743 if (current_stat_info
.is_sparse
)
744 sparse_extract_file (fd
, ¤t_stat_info
, &size
);
746 for (size
= current_stat_info
.stat
.st_size
; size
> 0; )
750 /* Locate data, determine max length writeable, write it,
751 block that we have used the data, then check if the write
754 data_block
= find_next_block ();
757 ERROR ((0, 0, _("Unexpected EOF in archive")));
758 break; /* FIXME: What happens, then? */
761 written
= available_space_after (data_block
);
766 count
= full_write (fd
, data_block
->buffer
, written
);
769 set_next_block_after ((union block
*)
770 (data_block
->buffer
+ written
- 1));
771 if (count
!= written
)
773 if (!to_command_option
)
774 write_error_details (file_name
, count
, written
);
775 /* FIXME: shouldn't we restore from backup? */
784 /* If writing to stdout, don't try to do anything to the filename;
785 it doesn't exist, or we don't want to touch it anyway. */
787 if (to_stdout_option
)
792 close_error (file_name
);
794 if (to_command_option
)
797 set_stat (file_name
, ¤t_stat_info
, NULL
, 0,
798 (old_files_option
== OVERWRITE_OLD_FILES
?
799 UNKNOWN_PERMSTATUS
: ARCHIVED_PERMSTATUS
),
805 /* Create a placeholder file with name FILE_NAME, which will be
806 replaced after other extraction is done by a symbolic link if
807 IS_SYMLINK is true, and by a hard link otherwise. Set
808 *INTERDIR_MADE if an intermediate directory is made in the
812 create_placeholder_file (char *file_name
, bool is_symlink
, int *interdir_made
)
817 while ((fd
= open (file_name
, O_WRONLY
| O_CREAT
| O_EXCL
, 0)) < 0)
818 if (! maybe_recoverable (file_name
, interdir_made
))
822 open_error (file_name
);
823 else if (fstat (fd
, &st
) != 0)
825 stat_error (file_name
);
828 else if (close (fd
) != 0)
829 close_error (file_name
);
832 struct delayed_set_stat
*h
;
833 struct delayed_link
*p
=
834 xmalloc (offsetof (struct delayed_link
, target
)
835 + strlen (current_stat_info
.link_name
)
837 p
->next
= delayed_link_head
;
838 delayed_link_head
= p
;
841 p
->mtime
= get_stat_mtime (&st
);
842 p
->is_symlink
= is_symlink
;
845 p
->uid
= current_stat_info
.stat
.st_uid
;
846 p
->gid
= current_stat_info
.stat
.st_gid
;
848 p
->sources
= xmalloc (offsetof (struct string_list
, string
)
849 + strlen (file_name
) + 1);
850 p
->sources
->next
= 0;
851 strcpy (p
->sources
->string
, file_name
);
852 strcpy (p
->target
, current_stat_info
.link_name
);
854 h
= delayed_set_stat_head
;
855 if (h
&& ! h
->after_links
856 && strncmp (file_name
, h
->file_name
, h
->file_name_len
) == 0
857 && ISSLASH (file_name
[h
->file_name_len
])
858 && (base_name (file_name
) == file_name
+ h
->file_name_len
+ 1))
864 if (stat (h
->file_name
, &st
) != 0)
865 stat_error (h
->file_name
);
872 while ((h
= h
->next
) && ! h
->after_links
);
882 extract_link (char *file_name
, int typeflag
)
884 char const *link_name
= safer_name_suffix (current_stat_info
.link_name
,
885 true, absolute_names_option
);
886 int interdir_made
= 0;
888 if (! absolute_names_option
&& contains_dot_dot (link_name
))
889 return create_placeholder_file (file_name
, false, &interdir_made
);
893 struct stat st1
, st2
;
895 int status
= link (link_name
, file_name
);
900 struct delayed_link
*ds
= delayed_link_head
;
901 if (ds
&& lstat (link_name
, &st1
) == 0)
902 for (; ds
; ds
= ds
->next
)
903 if (ds
->dev
== st1
.st_dev
904 && ds
->ino
== st1
.st_ino
905 && timespec_cmp (ds
->mtime
, get_stat_mtime (&st1
)) == 0)
907 struct string_list
*p
= xmalloc (offsetof (struct string_list
, string
)
908 + strlen (file_name
) + 1);
909 strcpy (p
->string
, file_name
);
910 p
->next
= ds
->sources
;
916 else if ((e
== EEXIST
&& strcmp (link_name
, file_name
) == 0)
917 || (lstat (link_name
, &st1
) == 0
918 && lstat (file_name
, &st2
) == 0
919 && st1
.st_dev
== st2
.st_dev
920 && st1
.st_ino
== st2
.st_ino
))
925 while (maybe_recoverable (file_name
, &interdir_made
));
927 if (!(incremental_option
&& errno
== EEXIST
))
929 link_error (link_name
, file_name
);
936 extract_symlink (char *file_name
, int typeflag
)
940 int interdir_made
= 0;
942 if (! absolute_names_option
943 && (IS_ABSOLUTE_FILE_NAME (current_stat_info
.link_name
)
944 || contains_dot_dot (current_stat_info
.link_name
)))
945 return create_placeholder_file (file_name
, true, &interdir_made
);
947 while ((status
= symlink (current_stat_info
.link_name
, file_name
)))
948 if (!maybe_recoverable (file_name
, &interdir_made
))
952 set_stat (file_name
, ¤t_stat_info
, NULL
, 0, 0, SYMTYPE
);
954 symlink_error (current_stat_info
.link_name
, file_name
);
958 static int warned_once
;
963 WARN ((0, 0, _("Attempting extraction of symbolic links as hard links")));
965 return extract_link (file_name
, typeflag
);
969 #if S_IFCHR || S_IFBLK
971 extract_node (char *file_name
, int typeflag
)
974 int interdir_made
= 0;
977 status
= mknod (file_name
, current_stat_info
.stat
.st_mode
,
978 current_stat_info
.stat
.st_rdev
);
979 while (status
&& maybe_recoverable (file_name
, &interdir_made
));
982 mknod_error (file_name
);
984 set_stat (file_name
, ¤t_stat_info
, NULL
, 0,
985 ARCHIVED_PERMSTATUS
, typeflag
);
990 #if HAVE_MKFIFO || defined mkfifo
992 extract_fifo (char *file_name
, int typeflag
)
995 int interdir_made
= 0;
997 while ((status
= mkfifo (file_name
, current_stat_info
.stat
.st_mode
)))
998 if (!maybe_recoverable (file_name
, &interdir_made
))
1002 set_stat (file_name
, ¤t_stat_info
, NULL
, 0,
1003 ARCHIVED_PERMSTATUS
, typeflag
);
1005 mkfifo_error (file_name
);
1011 extract_mangle_wrapper (char *file_name
, int typeflag
)
1019 extract_failure (char *file_name
, int typeflag
)
1024 typedef int (*tar_extractor_t
) (char *file_name
, int typeflag
);
1028 /* Prepare to extract a file. Find extractor function.
1029 Return zero if extraction should not proceed. */
1032 prepare_to_extract (char const *file_name
, int typeflag
, tar_extractor_t
*fun
)
1036 if (EXTRACT_OVER_PIPE
)
1039 /* Select the extractor */
1042 case GNUTYPE_SPARSE
:
1043 *fun
= extract_file
;
1050 /* Appears to be a file. But BSD tar uses the convention that a slash
1051 suffix means a directory. */
1052 if (current_stat_info
.had_trailing_slash
)
1056 *fun
= extract_file
;
1062 *fun
= extract_symlink
;
1066 *fun
= extract_link
;
1071 current_stat_info
.stat
.st_mode
|= S_IFCHR
;
1072 *fun
= extract_node
;
1078 current_stat_info
.stat
.st_mode
|= S_IFBLK
;
1079 *fun
= extract_node
;
1083 #if HAVE_MKFIFO || defined mkfifo
1085 *fun
= extract_fifo
;
1090 case GNUTYPE_DUMPDIR
:
1094 case GNUTYPE_VOLHDR
:
1096 fprintf (stdlis
, _("Reading %s\n"), quote (current_stat_info
.file_name
));
1101 *fun
= extract_mangle_wrapper
;
1104 case GNUTYPE_MULTIVOL
:
1106 _("%s: Cannot extract -- file is continued from another volume"),
1107 quotearg_colon (current_stat_info
.file_name
)));
1108 *fun
= extract_failure
;
1111 case GNUTYPE_LONGNAME
:
1112 case GNUTYPE_LONGLINK
:
1113 ERROR ((0, 0, _("Unexpected long name header")));
1114 *fun
= extract_failure
;
1119 _("%s: Unknown file type `%c', extracted as normal file"),
1120 quotearg_colon (file_name
), typeflag
));
1121 *fun
= extract_file
;
1124 /* Determine whether the extraction should proceed */
1128 switch (old_files_option
)
1130 case UNLINK_FIRST_OLD_FILES
:
1131 if (!remove_any_file (file_name
,
1132 recursive_unlink_option
? RECURSIVE_REMOVE_OPTION
1133 : ORDINARY_REMOVE_OPTION
)
1134 && errno
&& errno
!= ENOENT
)
1136 unlink_error (file_name
);
1141 case KEEP_NEWER_FILES
:
1142 if (file_newer_p (file_name
, ¤t_stat_info
))
1144 WARN ((0, 0, _("Current %s is newer or same age"),
1145 quote (file_name
)));
1157 /* Extract a file from the archive. */
1159 extract_archive (void)
1163 tar_extractor_t fun
;
1165 set_next_block_after (current_header
);
1166 decode_header (current_header
, ¤t_stat_info
, ¤t_format
, 1);
1168 if (interactive_option
&& !confirm ("extract", current_stat_info
.file_name
))
1174 /* Print the block from current_header and current_stat. */
1177 print_header (¤t_stat_info
, -1);
1179 file_name
= safer_name_suffix (current_stat_info
.file_name
,
1180 false, absolute_names_option
);
1181 if (strip_name_components
)
1183 size_t prefix_len
= stripped_prefix_len (file_name
, strip_name_components
);
1184 if (prefix_len
== (size_t) -1)
1189 file_name
+= prefix_len
;
1192 apply_nonancestor_delayed_set_stat (file_name
, 0);
1194 /* Take a safety backup of a previously existing file. */
1197 if (!maybe_backup_file (file_name
, 0))
1200 ERROR ((0, e
, _("%s: Was unable to backup this file"),
1201 quotearg_colon (file_name
)));
1206 /* Extract the archive entry according to its type. */
1209 typeflag
= sparse_member_p (¤t_stat_info
) ?
1210 GNUTYPE_SPARSE
: current_header
->header
.typeflag
;
1212 if (prepare_to_extract (file_name
, typeflag
, &fun
))
1214 if (fun
&& (*fun
) (file_name
, typeflag
) && backup_option
)
1215 undo_last_backup ();
1222 /* Extract the symbolic links whose final extraction were delayed. */
1224 apply_delayed_links (void)
1226 struct delayed_link
*ds
;
1228 for (ds
= delayed_link_head
; ds
; )
1230 struct string_list
*sources
= ds
->sources
;
1231 char const *valid_source
= 0;
1233 for (sources
= ds
->sources
; sources
; sources
= sources
->next
)
1235 char const *source
= sources
->string
;
1238 /* Make sure the placeholder file is still there. If not,
1239 don't create a link, as the placeholder was probably
1240 removed by a later extraction. */
1241 if (lstat (source
, &st
) == 0
1242 && st
.st_dev
== ds
->dev
1243 && st
.st_ino
== ds
->ino
1244 && timespec_cmp (get_stat_mtime (&st
), ds
->mtime
) == 0)
1246 /* Unlink the placeholder, then create a hard link if possible,
1247 a symbolic link otherwise. */
1248 if (unlink (source
) != 0)
1249 unlink_error (source
);
1250 else if (valid_source
&& link (valid_source
, source
) == 0)
1252 else if (!ds
->is_symlink
)
1254 if (link (ds
->target
, source
) != 0)
1255 link_error (ds
->target
, source
);
1257 else if (symlink (ds
->target
, source
) != 0)
1258 symlink_error (ds
->target
, source
);
1261 struct tar_stat_info st1
;
1262 st1
.stat
.st_uid
= ds
->uid
;
1263 st1
.stat
.st_gid
= ds
->gid
;
1264 set_stat (source
, &st1
, NULL
, 0, 0, SYMTYPE
);
1265 valid_source
= source
;
1270 for (sources
= ds
->sources
; sources
; )
1272 struct string_list
*next
= sources
->next
;
1278 struct delayed_link
*next
= ds
->next
;
1284 delayed_link_head
= 0;
1287 /* Finish the extraction of an archive. */
1289 extract_finish (void)
1291 /* First, fix the status of ordinary directories that need fixing. */
1292 apply_nonancestor_delayed_set_stat ("", 0);
1294 /* Then, apply delayed links, so that they don't affect delayed
1295 directory status-setting for ordinary directories. */
1296 apply_delayed_links ();
1298 /* Finally, fix the status of directories that are ancestors
1299 of delayed links. */
1300 apply_nonancestor_delayed_set_stat ("", 1);
1307 error (TAREXIT_FAILURE
, 0, _("Error is not recoverable: exiting now"));
1314 error (0, 0, "%s", _("memory exhausted"));