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 /* Option -p clears the kernel umask, so it does not affect proper
119 restoration of file permissions. New intermediate directories will
120 comply with umask at start of program. */
122 newdir_umask
= umask (0);
123 if (0 < same_permissions_option
)
127 umask (newdir_umask
); /* restore the kernel umask */
128 current_umask
= newdir_umask
;
132 /* If restoring permissions, restore the mode for FILE_NAME from
133 information given in *STAT_INFO (where *CUR_INFO gives
134 the current status if CUR_INFO is nonzero); otherwise invert the
135 INVERT_PERMISSIONS bits from the file's current permissions.
136 PERMSTATUS specifies the status of the file's permissions.
137 TYPEFLAG specifies the type of the file. */
139 set_mode (char const *file_name
,
140 struct stat
const *stat_info
,
141 struct stat
const *cur_info
,
142 mode_t invert_permissions
, enum permstatus permstatus
,
147 if (0 < same_permissions_option
148 && permstatus
!= INTERDIR_PERMSTATUS
)
150 mode
= stat_info
->st_mode
;
152 /* If we created the file and it has a usual mode, then its mode
153 is normally set correctly already. But on many hosts, some
154 directories inherit the setgid bits from their parents, so we
155 we must set directories' modes explicitly. */
156 if (permstatus
== ARCHIVED_PERMSTATUS
157 && ! (mode
& ~ MODE_RWX
)
158 && typeflag
!= DIRTYPE
159 && typeflag
!= GNUTYPE_DUMPDIR
)
162 else if (! invert_permissions
)
166 /* We must inspect a directory's current permissions, since the
167 directory may have inherited its setgid bit from its parent.
169 INVERT_PERMISSIONS happens to be nonzero only for directories
170 that we created, so there's no point optimizing this code for
175 if (stat (file_name
, &st
) != 0)
177 stat_error (file_name
);
182 mode
= cur_info
->st_mode
^ invert_permissions
;
185 if (chmod (file_name
, mode
) != 0)
186 chmod_error_details (file_name
, mode
);
189 /* Check time after successfully setting FILE_NAME's time stamp to T. */
191 check_time (char const *file_name
, struct timespec t
)
194 WARN ((0, 0, _("%s: implausibly old time stamp %s"),
195 file_name
, tartime (t
, true)));
196 else if (timespec_cmp (start_time
, t
) < 0)
200 if (timespec_cmp (now
, t
) < 0)
202 char buf
[TIMESPEC_STRSIZE_BOUND
];
203 struct timespec diff
;
204 diff
.tv_sec
= t
.tv_sec
- now
.tv_sec
;
205 diff
.tv_nsec
= t
.tv_nsec
- now
.tv_nsec
;
206 if (diff
.tv_nsec
< 0)
208 diff
.tv_nsec
+= BILLION
;
211 WARN ((0, 0, _("%s: time stamp %s is %s s in the future"),
212 file_name
, tartime (t
, true), code_timespec (diff
, buf
)));
217 /* Restore stat attributes (owner, group, mode and times) for
218 FILE_NAME, using information given in *ST.
219 If CUR_INFO is nonzero, *CUR_INFO is the
220 file's currernt status.
221 If not restoring permissions, invert the
222 INVERT_PERMISSIONS bits from the file's current permissions.
223 PERMSTATUS specifies the status of the file's permissions.
224 TYPEFLAG specifies the type of the file. */
226 /* FIXME: About proper restoration of symbolic link attributes, we still do
227 not have it right. Pretesters' reports tell us we need further study and
228 probably more configuration. For now, just use lchown if it exists, and
229 punt for the rest. Sigh! */
232 set_stat (char const *file_name
,
233 struct tar_stat_info
const *st
,
234 struct stat
const *cur_info
,
235 mode_t invert_permissions
, enum permstatus permstatus
,
238 if (typeflag
!= SYMTYPE
)
240 /* We do the utime before the chmod because some versions of utime are
241 broken and trash the modes of the file. */
243 if (! touch_option
&& permstatus
!= INTERDIR_PERMSTATUS
)
245 /* We set the accessed time to `now', which is really the time we
246 started extracting files, unless incremental_option is used, in
247 which case .st_atime is used. */
249 /* FIXME: incremental_option should set ctime too, but how? */
251 struct timespec ts
[2];
252 if (incremental_option
)
258 if (utimens (file_name
, ts
) != 0)
259 utime_error (file_name
);
262 check_time (file_name
, ts
[0]);
263 check_time (file_name
, ts
[1]);
267 /* Some systems allow non-root users to give files away. Once this
268 done, it is not possible anymore to change file permissions, so we
269 have to set permissions prior to possibly giving files away. */
271 set_mode (file_name
, &st
->stat
, cur_info
,
272 invert_permissions
, permstatus
, typeflag
);
275 if (0 < same_owner_option
&& permstatus
!= INTERDIR_PERMSTATUS
)
277 /* When lchown exists, it should be used to change the attributes of
278 the symbolic link itself. In this case, a mere chown would change
279 the attributes of the file the symbolic link is pointing to, and
280 should be avoided. */
282 if (typeflag
== SYMTYPE
)
285 if (lchown (file_name
, st
->stat
.st_uid
, st
->stat
.st_gid
) < 0)
286 chown_error_details (file_name
,
287 st
->stat
.st_uid
, st
->stat
.st_gid
);
292 if (chown (file_name
, st
->stat
.st_uid
, st
->stat
.st_gid
) < 0)
293 chown_error_details (file_name
,
294 st
->stat
.st_uid
, st
->stat
.st_gid
);
296 /* On a few systems, and in particular, those allowing to give files
297 away, changing the owner or group destroys the suid or sgid bits.
298 So let's attempt setting these bits once more. */
299 if (st
->stat
.st_mode
& (S_ISUID
| S_ISGID
| S_ISVTX
))
300 set_mode (file_name
, &st
->stat
, 0,
301 invert_permissions
, permstatus
, typeflag
);
306 /* Remember to restore stat attributes (owner, group, mode and times)
307 for the directory FILE_NAME, using information given in *ST,
308 once we stop extracting files into that directory.
309 If not restoring permissions, remember to invert the
310 INVERT_PERMISSIONS bits from the file's current permissions.
311 PERMSTATUS specifies the status of the file's permissions.
313 NOTICE: this works only if the archive has usual member order, i.e.
314 directory, then the files in that directory. Incremental archive have
315 somewhat reversed order: first go subdirectories, then all other
316 members. To help cope with this case the variable
317 delay_directory_restore_option is set by prepare_to_extract.
319 If an archive was explicitely created so that its member order is
320 reversed, some directory timestamps can be restored incorrectly,
322 tar --no-recursion -cf archive dir dir/file1 foo dir/file2
325 delay_set_stat (char const *file_name
, struct tar_stat_info
const *st
,
326 mode_t invert_permissions
, enum permstatus permstatus
)
328 size_t file_name_len
= strlen (file_name
);
329 struct delayed_set_stat
*data
=
330 xmalloc (offsetof (struct delayed_set_stat
, file_name
)
331 + file_name_len
+ 1);
332 data
->next
= delayed_set_stat_head
;
333 data
->dev
= st
->stat
.st_dev
;
334 data
->ino
= st
->stat
.st_ino
;
335 data
->mode
= st
->stat
.st_mode
;
336 data
->uid
= st
->stat
.st_uid
;
337 data
->gid
= st
->stat
.st_gid
;
338 data
->atime
= st
->atime
;
339 data
->mtime
= st
->mtime
;
340 data
->file_name_len
= file_name_len
;
341 data
->invert_permissions
= invert_permissions
;
342 data
->permstatus
= permstatus
;
343 data
->after_links
= 0;
344 strcpy (data
->file_name
, file_name
);
345 delayed_set_stat_head
= data
;
348 /* Update the delayed_set_stat info for an intermediate directory
349 created within the file name of DIR. The intermediate directory turned
350 out to be the same as this directory, e.g. due to ".." or symbolic
351 links. *DIR_STAT_INFO is the status of the directory. */
353 repair_delayed_set_stat (char const *dir
,
354 struct stat
const *dir_stat_info
)
356 struct delayed_set_stat
*data
;
357 for (data
= delayed_set_stat_head
; data
; data
= data
->next
)
360 if (stat (data
->file_name
, &st
) != 0)
362 stat_error (data
->file_name
);
366 if (st
.st_dev
== dir_stat_info
->st_dev
367 && st
.st_ino
== dir_stat_info
->st_ino
)
369 data
->dev
= current_stat_info
.stat
.st_dev
;
370 data
->ino
= current_stat_info
.stat
.st_ino
;
371 data
->mode
= current_stat_info
.stat
.st_mode
;
372 data
->uid
= current_stat_info
.stat
.st_uid
;
373 data
->gid
= current_stat_info
.stat
.st_gid
;
374 data
->atime
= current_stat_info
.atime
;
375 data
->mtime
= current_stat_info
.mtime
;
376 data
->invert_permissions
=
377 (MODE_RWX
& (current_stat_info
.stat
.st_mode
^ st
.st_mode
));
378 data
->permstatus
= ARCHIVED_PERMSTATUS
;
383 ERROR ((0, 0, _("%s: Unexpected inconsistency when making directory"),
384 quotearg_colon (dir
)));
387 /* After a file/link/directory creation has failed, see if
388 it's because some required directory was not present, and if so,
389 create all required directories. Return non-zero if a directory
392 make_directories (char *file_name
)
394 char *cursor0
= file_name
+ FILE_SYSTEM_PREFIX_LEN (file_name
);
395 char *cursor
; /* points into the file name */
396 int did_something
= 0; /* did we do anything yet? */
398 int invert_permissions
;
402 for (cursor
= cursor0
; *cursor
; cursor
++)
404 if (! ISSLASH (*cursor
))
407 /* Avoid mkdir of empty string, if leading or double '/'. */
409 if (cursor
== cursor0
|| ISSLASH (cursor
[-1]))
412 /* Avoid mkdir where last part of file name is "." or "..". */
414 if (cursor
[-1] == '.'
415 && (cursor
== cursor0
+ 1 || ISSLASH (cursor
[-2])
416 || (cursor
[-2] == '.'
417 && (cursor
== cursor0
+ 2 || ISSLASH (cursor
[-3])))))
420 *cursor
= '\0'; /* truncate the name there */
421 mode
= MODE_RWX
& ~ newdir_umask
;
422 invert_permissions
= we_are_root
? 0 : MODE_WXUSR
& ~ mode
;
423 status
= mkdir (file_name
, mode
^ invert_permissions
);
427 /* Create a struct delayed_set_stat even if
428 invert_permissions is zero, because
429 repair_delayed_set_stat may need to update the struct. */
430 delay_set_stat (file_name
,
431 ¤t_stat_info
/* ignored */,
432 invert_permissions
, INTERDIR_PERMSTATUS
);
434 print_for_mkdir (file_name
, cursor
- file_name
, mode
);
444 continue; /* Directory already exists. */
445 else if ((errno
== ENOSYS
/* Automounted dirs on Solaris return
446 this. Reported by Warren Hyde
447 <Warren.Hyde@motorola.com> */
448 || ERRNO_IS_EACCES
) /* Turbo C mkdir gives a funny errno. */
449 && access (file_name
, W_OK
) == 0)
452 /* Some other error in the mkdir. We return to the caller. */
456 return did_something
; /* tell them to retry if we made one */
460 file_newer_p (const char *file_name
, struct tar_stat_info
*tar_stat
)
464 if (stat (file_name
, &st
))
466 stat_warn (file_name
);
467 /* Be on the safe side: if the file does exist assume it is newer */
468 return errno
!= ENOENT
;
470 if (!S_ISDIR (st
.st_mode
)
471 && tar_timespec_cmp (tar_stat
->mtime
, get_stat_mtime (&st
)) <= 0)
478 /* Attempt repairing what went wrong with the extraction. Delete an
479 already existing file or create missing intermediate directories.
480 Return nonzero if we somewhat increased our chances at a successful
481 extraction. errno is properly restored on zero return. */
483 maybe_recoverable (char *file_name
, int *interdir_made
)
493 /* Remove an old file, if the options allow this. */
495 switch (old_files_option
)
500 case KEEP_NEWER_FILES
:
501 if (file_newer_p (file_name
, ¤t_stat_info
))
508 case DEFAULT_OLD_FILES
:
509 case NO_OVERWRITE_DIR_OLD_FILES
:
510 case OVERWRITE_OLD_FILES
:
512 int r
= remove_any_file (file_name
, ORDINARY_REMOVE_OPTION
);
517 case UNLINK_FIRST_OLD_FILES
:
522 /* Attempt creating missing intermediate directories. */
523 if (! make_directories (file_name
))
532 /* Just say we can't do anything about it... */
538 /* Fix the statuses of all directories whose statuses need fixing, and
539 which are not ancestors of FILE_NAME. If AFTER_LINKS is
540 nonzero, do this for all such directories; otherwise, stop at the
541 first directory that is marked to be fixed up only after delayed
542 links are applied. */
544 apply_nonancestor_delayed_set_stat (char const *file_name
, bool after_links
)
546 size_t file_name_len
= strlen (file_name
);
547 bool check_for_renamed_directories
= 0;
549 while (delayed_set_stat_head
)
551 struct delayed_set_stat
*data
= delayed_set_stat_head
;
552 bool skip_this_one
= 0;
554 struct stat
const *cur_info
= 0;
556 check_for_renamed_directories
|= data
->after_links
;
558 if (after_links
< data
->after_links
559 || (data
->file_name_len
< file_name_len
560 && file_name
[data
->file_name_len
]
561 && (ISSLASH (file_name
[data
->file_name_len
])
562 || ISSLASH (file_name
[data
->file_name_len
- 1]))
563 && memcmp (file_name
, data
->file_name
, data
->file_name_len
) == 0))
566 if (check_for_renamed_directories
)
569 if (stat (data
->file_name
, &st
) != 0)
571 stat_error (data
->file_name
);
574 else if (! (st
.st_dev
== data
->dev
&& st
.st_ino
== data
->ino
))
577 _("%s: Directory renamed before its status could be extracted"),
578 quotearg_colon (data
->file_name
)));
585 struct tar_stat_info st
;
586 st
.stat
.st_mode
= data
->mode
;
587 st
.stat
.st_uid
= data
->uid
;
588 st
.stat
.st_gid
= data
->gid
;
589 st
.atime
= data
->atime
;
590 st
.mtime
= data
->mtime
;
591 set_stat (data
->file_name
, &st
, cur_info
,
592 data
->invert_permissions
, data
->permstatus
, DIRTYPE
);
595 delayed_set_stat_head
= data
->next
;
602 /* Extractor functions for various member types */
605 extract_dir (char *file_name
, int typeflag
)
609 int interdir_made
= 0;
611 /* Save 'root device' to avoid purging mount points. */
612 if (one_file_system_option
&& root_device
== 0)
615 char *dir
= xgetcwd ();
617 if (deref_stat (true, dir
, &st
))
620 root_device
= st
.st_dev
;
624 if (incremental_option
)
625 /* Read the entry and delete files that aren't listed in the archive. */
626 purge_directory (file_name
);
627 else if (typeflag
== GNUTYPE_DUMPDIR
)
630 mode
= (current_stat_info
.stat
.st_mode
|
631 (we_are_root
? 0 : MODE_WXUSR
)) & MODE_RWX
;
633 while ((status
= mkdir (file_name
, mode
)))
637 || old_files_option
== DEFAULT_OLD_FILES
638 || old_files_option
== OVERWRITE_OLD_FILES
))
641 if (stat (file_name
, &st
) == 0)
645 repair_delayed_set_stat (file_name
, &st
);
648 if (S_ISDIR (st
.st_mode
))
650 mode
= st
.st_mode
& ~ current_umask
;
657 if (maybe_recoverable (file_name
, &interdir_made
))
662 mkdir_error (file_name
);
669 || old_files_option
== DEFAULT_OLD_FILES
670 || old_files_option
== OVERWRITE_OLD_FILES
)
671 delay_set_stat (file_name
, ¤t_stat_info
,
672 MODE_RWX
& (mode
^ current_stat_info
.stat
.st_mode
),
674 ? ARCHIVED_PERMSTATUS
675 : UNKNOWN_PERMSTATUS
));
682 open_output_file (char *file_name
, int typeflag
)
685 int openflag
= (O_WRONLY
| O_BINARY
| O_CREAT
686 | (old_files_option
== OVERWRITE_OLD_FILES
689 mode_t mode
= current_stat_info
.stat
.st_mode
& MODE_RWX
& ~ current_umask
;
692 /* Contiguous files (on the Masscomp) have to specify the size in
693 the open call that creates them. */
695 if (typeflag
== CONTTYPE
)
696 fd
= open (file_name
, openflag
| O_CTG
, mode
, current_stat_info
.stat
.st_size
);
698 fd
= open (file_name
, openflag
, mode
);
700 #else /* not O_CTG */
701 if (typeflag
== CONTTYPE
)
703 static int conttype_diagnosed
;
705 if (!conttype_diagnosed
)
707 conttype_diagnosed
= 1;
708 WARN ((0, 0, _("Extracting contiguous files as regular files")));
711 fd
= open (file_name
, openflag
, mode
);
713 #endif /* not O_CTG */
719 extract_file (char *file_name
, int typeflag
)
723 union block
*data_block
;
727 int interdir_made
= 0;
729 /* FIXME: deal with protection issues. */
731 if (to_stdout_option
)
733 else if (to_command_option
)
735 fd
= sys_exec_command (file_name
, 'f', ¤t_stat_info
);
745 fd
= open_output_file (file_name
, typeflag
);
746 while (fd
< 0 && maybe_recoverable (file_name
, &interdir_made
));
750 open_error (file_name
);
755 mv_begin (¤t_stat_info
);
756 if (current_stat_info
.is_sparse
)
757 sparse_extract_file (fd
, ¤t_stat_info
, &size
);
759 for (size
= current_stat_info
.stat
.st_size
; size
> 0; )
763 /* Locate data, determine max length writeable, write it,
764 block that we have used the data, then check if the write
767 data_block
= find_next_block ();
770 ERROR ((0, 0, _("Unexpected EOF in archive")));
771 break; /* FIXME: What happens, then? */
774 written
= available_space_after (data_block
);
779 count
= full_write (fd
, data_block
->buffer
, written
);
782 set_next_block_after ((union block
*)
783 (data_block
->buffer
+ written
- 1));
784 if (count
!= written
)
786 if (!to_command_option
)
787 write_error_details (file_name
, count
, written
);
788 /* FIXME: shouldn't we restore from backup? */
797 /* If writing to stdout, don't try to do anything to the filename;
798 it doesn't exist, or we don't want to touch it anyway. */
800 if (to_stdout_option
)
805 close_error (file_name
);
807 if (to_command_option
)
810 set_stat (file_name
, ¤t_stat_info
, NULL
, 0,
811 (old_files_option
== OVERWRITE_OLD_FILES
?
812 UNKNOWN_PERMSTATUS
: ARCHIVED_PERMSTATUS
),
818 /* Create a placeholder file with name FILE_NAME, which will be
819 replaced after other extraction is done by a symbolic link if
820 IS_SYMLINK is true, and by a hard link otherwise. Set
821 *INTERDIR_MADE if an intermediate directory is made in the
825 create_placeholder_file (char *file_name
, bool is_symlink
, int *interdir_made
)
830 while ((fd
= open (file_name
, O_WRONLY
| O_CREAT
| O_EXCL
, 0)) < 0)
831 if (! maybe_recoverable (file_name
, interdir_made
))
835 open_error (file_name
);
836 else if (fstat (fd
, &st
) != 0)
838 stat_error (file_name
);
841 else if (close (fd
) != 0)
842 close_error (file_name
);
845 struct delayed_set_stat
*h
;
846 struct delayed_link
*p
=
847 xmalloc (offsetof (struct delayed_link
, target
)
848 + strlen (current_stat_info
.link_name
)
850 p
->next
= delayed_link_head
;
851 delayed_link_head
= p
;
854 p
->mtime
= get_stat_mtime (&st
);
855 p
->is_symlink
= is_symlink
;
858 p
->uid
= current_stat_info
.stat
.st_uid
;
859 p
->gid
= current_stat_info
.stat
.st_gid
;
861 p
->sources
= xmalloc (offsetof (struct string_list
, string
)
862 + strlen (file_name
) + 1);
863 p
->sources
->next
= 0;
864 strcpy (p
->sources
->string
, file_name
);
865 strcpy (p
->target
, current_stat_info
.link_name
);
867 h
= delayed_set_stat_head
;
868 if (h
&& ! h
->after_links
869 && strncmp (file_name
, h
->file_name
, h
->file_name_len
) == 0
870 && ISSLASH (file_name
[h
->file_name_len
])
871 && (base_name (file_name
) == file_name
+ h
->file_name_len
+ 1))
877 if (stat (h
->file_name
, &st
) != 0)
878 stat_error (h
->file_name
);
885 while ((h
= h
->next
) && ! h
->after_links
);
895 extract_link (char *file_name
, int typeflag
)
897 char const *link_name
= safer_name_suffix (current_stat_info
.link_name
,
898 true, absolute_names_option
);
899 int interdir_made
= 0;
901 if (! absolute_names_option
&& contains_dot_dot (link_name
))
902 return create_placeholder_file (file_name
, false, &interdir_made
);
906 struct stat st1
, st2
;
908 int status
= link (link_name
, file_name
);
913 struct delayed_link
*ds
= delayed_link_head
;
914 if (ds
&& lstat (link_name
, &st1
) == 0)
915 for (; ds
; ds
= ds
->next
)
916 if (ds
->dev
== st1
.st_dev
917 && ds
->ino
== st1
.st_ino
918 && timespec_cmp (ds
->mtime
, get_stat_mtime (&st1
)) == 0)
920 struct string_list
*p
= xmalloc (offsetof (struct string_list
, string
)
921 + strlen (file_name
) + 1);
922 strcpy (p
->string
, file_name
);
923 p
->next
= ds
->sources
;
929 else if ((e
== EEXIST
&& strcmp (link_name
, file_name
) == 0)
930 || (lstat (link_name
, &st1
) == 0
931 && lstat (file_name
, &st2
) == 0
932 && st1
.st_dev
== st2
.st_dev
933 && st1
.st_ino
== st2
.st_ino
))
938 while (maybe_recoverable (file_name
, &interdir_made
));
940 if (!(incremental_option
&& errno
== EEXIST
))
942 link_error (link_name
, file_name
);
949 extract_symlink (char *file_name
, int typeflag
)
953 int interdir_made
= 0;
955 if (! absolute_names_option
956 && (IS_ABSOLUTE_FILE_NAME (current_stat_info
.link_name
)
957 || contains_dot_dot (current_stat_info
.link_name
)))
958 return create_placeholder_file (file_name
, true, &interdir_made
);
960 while ((status
= symlink (current_stat_info
.link_name
, file_name
)))
961 if (!maybe_recoverable (file_name
, &interdir_made
))
965 set_stat (file_name
, ¤t_stat_info
, NULL
, 0, 0, SYMTYPE
);
967 symlink_error (current_stat_info
.link_name
, file_name
);
971 static int warned_once
;
976 WARN ((0, 0, _("Attempting extraction of symbolic links as hard links")));
978 return extract_link (file_name
, typeflag
);
982 #if S_IFCHR || S_IFBLK
984 extract_node (char *file_name
, int typeflag
)
987 int interdir_made
= 0;
990 status
= mknod (file_name
, current_stat_info
.stat
.st_mode
,
991 current_stat_info
.stat
.st_rdev
);
992 while (status
&& maybe_recoverable (file_name
, &interdir_made
));
995 mknod_error (file_name
);
997 set_stat (file_name
, ¤t_stat_info
, NULL
, 0,
998 ARCHIVED_PERMSTATUS
, typeflag
);
1003 #if HAVE_MKFIFO || defined mkfifo
1005 extract_fifo (char *file_name
, int typeflag
)
1008 int interdir_made
= 0;
1010 while ((status
= mkfifo (file_name
, current_stat_info
.stat
.st_mode
)))
1011 if (!maybe_recoverable (file_name
, &interdir_made
))
1015 set_stat (file_name
, ¤t_stat_info
, NULL
, 0,
1016 ARCHIVED_PERMSTATUS
, typeflag
);
1018 mkfifo_error (file_name
);
1024 extract_mangle_wrapper (char *file_name
, int typeflag
)
1032 extract_failure (char *file_name
, int typeflag
)
1037 typedef int (*tar_extractor_t
) (char *file_name
, int typeflag
);
1041 /* Prepare to extract a file. Find extractor function.
1042 Return zero if extraction should not proceed. */
1045 prepare_to_extract (char const *file_name
, int typeflag
, tar_extractor_t
*fun
)
1049 if (EXTRACT_OVER_PIPE
)
1052 /* Select the extractor */
1055 case GNUTYPE_SPARSE
:
1056 *fun
= extract_file
;
1063 /* Appears to be a file. But BSD tar uses the convention that a slash
1064 suffix means a directory. */
1065 if (current_stat_info
.had_trailing_slash
)
1069 *fun
= extract_file
;
1075 *fun
= extract_symlink
;
1079 *fun
= extract_link
;
1084 current_stat_info
.stat
.st_mode
|= S_IFCHR
;
1085 *fun
= extract_node
;
1091 current_stat_info
.stat
.st_mode
|= S_IFBLK
;
1092 *fun
= extract_node
;
1096 #if HAVE_MKFIFO || defined mkfifo
1098 *fun
= extract_fifo
;
1103 case GNUTYPE_DUMPDIR
:
1105 if (current_stat_info
.dumpdir
)
1106 delay_directory_restore_option
= true;
1109 case GNUTYPE_VOLHDR
:
1111 fprintf (stdlis
, _("Reading %s\n"), quote (current_stat_info
.file_name
));
1116 *fun
= extract_mangle_wrapper
;
1119 case GNUTYPE_MULTIVOL
:
1121 _("%s: Cannot extract -- file is continued from another volume"),
1122 quotearg_colon (current_stat_info
.file_name
)));
1123 *fun
= extract_failure
;
1126 case GNUTYPE_LONGNAME
:
1127 case GNUTYPE_LONGLINK
:
1128 ERROR ((0, 0, _("Unexpected long name header")));
1129 *fun
= extract_failure
;
1134 _("%s: Unknown file type `%c', extracted as normal file"),
1135 quotearg_colon (file_name
), typeflag
));
1136 *fun
= extract_file
;
1139 /* Determine whether the extraction should proceed */
1143 switch (old_files_option
)
1145 case UNLINK_FIRST_OLD_FILES
:
1146 if (!remove_any_file (file_name
,
1147 recursive_unlink_option
? RECURSIVE_REMOVE_OPTION
1148 : ORDINARY_REMOVE_OPTION
)
1149 && errno
&& errno
!= ENOENT
)
1151 unlink_error (file_name
);
1156 case KEEP_NEWER_FILES
:
1157 if (file_newer_p (file_name
, ¤t_stat_info
))
1159 WARN ((0, 0, _("Current %s is newer or same age"),
1160 quote (file_name
)));
1172 /* Extract a file from the archive. */
1174 extract_archive (void)
1178 tar_extractor_t fun
;
1180 set_next_block_after (current_header
);
1181 decode_header (current_header
, ¤t_stat_info
, ¤t_format
, 1);
1183 if (interactive_option
&& !confirm ("extract", current_stat_info
.file_name
))
1189 /* Print the block from current_header and current_stat. */
1192 print_header (¤t_stat_info
, -1);
1194 file_name
= safer_name_suffix (current_stat_info
.file_name
,
1195 false, absolute_names_option
);
1196 if (strip_name_components
)
1198 size_t prefix_len
= stripped_prefix_len (file_name
,
1199 strip_name_components
);
1200 if (prefix_len
== (size_t) -1)
1205 file_name
+= prefix_len
;
1208 /* Restore stats for all non-ancestor directories, unless
1209 it is an incremental archive.
1210 (see NOTICE in the comment to delay_set_stat above) */
1211 if (!delay_directory_restore_option
)
1212 apply_nonancestor_delayed_set_stat (file_name
, 0);
1214 /* Take a safety backup of a previously existing file. */
1217 if (!maybe_backup_file (file_name
, 0))
1220 ERROR ((0, e
, _("%s: Was unable to backup this file"),
1221 quotearg_colon (file_name
)));
1226 /* Extract the archive entry according to its type. */
1228 typeflag
= sparse_member_p (¤t_stat_info
) ?
1229 GNUTYPE_SPARSE
: current_header
->header
.typeflag
;
1231 if (prepare_to_extract (file_name
, typeflag
, &fun
))
1233 if (fun
&& (*fun
) (file_name
, typeflag
) && backup_option
)
1234 undo_last_backup ();
1241 /* Extract the symbolic links whose final extraction were delayed. */
1243 apply_delayed_links (void)
1245 struct delayed_link
*ds
;
1247 for (ds
= delayed_link_head
; ds
; )
1249 struct string_list
*sources
= ds
->sources
;
1250 char const *valid_source
= 0;
1252 for (sources
= ds
->sources
; sources
; sources
= sources
->next
)
1254 char const *source
= sources
->string
;
1257 /* Make sure the placeholder file is still there. If not,
1258 don't create a link, as the placeholder was probably
1259 removed by a later extraction. */
1260 if (lstat (source
, &st
) == 0
1261 && st
.st_dev
== ds
->dev
1262 && st
.st_ino
== ds
->ino
1263 && timespec_cmp (get_stat_mtime (&st
), ds
->mtime
) == 0)
1265 /* Unlink the placeholder, then create a hard link if possible,
1266 a symbolic link otherwise. */
1267 if (unlink (source
) != 0)
1268 unlink_error (source
);
1269 else if (valid_source
&& link (valid_source
, source
) == 0)
1271 else if (!ds
->is_symlink
)
1273 if (link (ds
->target
, source
) != 0)
1274 link_error (ds
->target
, source
);
1276 else if (symlink (ds
->target
, source
) != 0)
1277 symlink_error (ds
->target
, source
);
1280 struct tar_stat_info st1
;
1281 st1
.stat
.st_uid
= ds
->uid
;
1282 st1
.stat
.st_gid
= ds
->gid
;
1283 set_stat (source
, &st1
, NULL
, 0, 0, SYMTYPE
);
1284 valid_source
= source
;
1289 for (sources
= ds
->sources
; sources
; )
1291 struct string_list
*next
= sources
->next
;
1297 struct delayed_link
*next
= ds
->next
;
1303 delayed_link_head
= 0;
1306 /* Finish the extraction of an archive. */
1308 extract_finish (void)
1310 /* First, fix the status of ordinary directories that need fixing. */
1311 apply_nonancestor_delayed_set_stat ("", 0);
1313 /* Then, apply delayed links, so that they don't affect delayed
1314 directory status-setting for ordinary directories. */
1315 apply_delayed_links ();
1317 /* Finally, fix the status of directories that are ancestors
1318 of delayed links. */
1319 apply_nonancestor_delayed_set_stat ("", 1);
1326 error (TAREXIT_FAILURE
, 0, _("Error is not recoverable: exiting now"));
1333 error (0, 0, "%s", _("memory exhausted"));