1 /* Various processing of names.
3 Copyright 1988, 1992, 1994, 1996-2001, 2003-2007, 2009, 2013-2015
4 Free Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 3, or (at your option) any later
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
14 Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include <wordsplit.h>
29 /* User and group names. */
31 /* Make sure you link with the proper libraries if you are running the
32 Yellow Peril (thanks for the good laugh, Ian J.!), or, euh... NIS.
33 This code should also be modified for non-UNIX systems to do something
36 static char *cached_uname
;
37 static char *cached_gname
;
39 static uid_t cached_uid
; /* valid only if cached_uname is not empty */
40 static gid_t cached_gid
; /* valid only if cached_gname is not empty */
42 /* These variables are valid only if nonempty. */
43 static char *cached_no_such_uname
;
44 static char *cached_no_such_gname
;
46 /* These variables are valid only if nonzero. It's not worth optimizing
47 the case for weird systems where 0 is not a valid uid or gid. */
48 static uid_t cached_no_such_uid
;
49 static gid_t cached_no_such_gid
;
51 /* Given UID, find the corresponding UNAME. */
53 uid_to_uname (uid_t uid
, char **uname
)
55 struct passwd
*passwd
;
57 if (uid
!= 0 && uid
== cached_no_such_uid
)
59 *uname
= xstrdup ("");
63 if (!cached_uname
|| uid
!= cached_uid
)
65 passwd
= getpwuid (uid
);
69 assign_string (&cached_uname
, passwd
->pw_name
);
73 cached_no_such_uid
= uid
;
74 *uname
= xstrdup ("");
78 *uname
= xstrdup (cached_uname
);
81 /* Given GID, find the corresponding GNAME. */
83 gid_to_gname (gid_t gid
, char **gname
)
87 if (gid
!= 0 && gid
== cached_no_such_gid
)
89 *gname
= xstrdup ("");
93 if (!cached_gname
|| gid
!= cached_gid
)
95 group
= getgrgid (gid
);
99 assign_string (&cached_gname
, group
->gr_name
);
103 cached_no_such_gid
= gid
;
104 *gname
= xstrdup ("");
108 *gname
= xstrdup (cached_gname
);
111 /* Given UNAME, set the corresponding UID and return 1, or else, return 0. */
113 uname_to_uid (char const *uname
, uid_t
*uidp
)
115 struct passwd
*passwd
;
117 if (cached_no_such_uname
118 && strcmp (uname
, cached_no_such_uname
) == 0)
122 || uname
[0] != cached_uname
[0]
123 || strcmp (uname
, cached_uname
) != 0)
125 passwd
= getpwnam (uname
);
128 cached_uid
= passwd
->pw_uid
;
129 assign_string (&cached_uname
, passwd
->pw_name
);
133 assign_string (&cached_no_such_uname
, uname
);
141 /* Given GNAME, set the corresponding GID and return 1, or else, return 0. */
143 gname_to_gid (char const *gname
, gid_t
*gidp
)
147 if (cached_no_such_gname
148 && strcmp (gname
, cached_no_such_gname
) == 0)
152 || gname
[0] != cached_gname
[0]
153 || strcmp (gname
, cached_gname
) != 0)
155 group
= getgrnam (gname
);
158 cached_gid
= group
->gr_gid
;
159 assign_string (&cached_gname
, gname
);
163 assign_string (&cached_no_such_gname
, gname
);
173 make_name (const char *file_name
)
175 struct name
*p
= xzalloc (sizeof (*p
));
178 p
->name
= xstrdup (file_name
);
179 p
->length
= strlen (p
->name
);
184 free_name (struct name
*p
)
195 /* Names from the command call. */
197 static struct name
*namelist
; /* first name in list, if any */
198 static struct name
*nametail
; /* end of name list */
200 /* File name arguments are processed in two stages: first a
201 name element list (see below) is filled, then the names from it
202 are moved into the namelist.
204 This awkward process is needed only to implement --same-order option,
205 which is meant to help process large archives on machines with
206 limited memory. With this option on, namelist contains at most one
207 entry, which diminishes the memory consumption.
209 However, I very much doubt if we still need this -- Sergey */
211 /* A name_list element contains entries of three types: */
213 #define NELT_NAME 0 /* File name */
214 #define NELT_CHDIR 1 /* Change directory request */
215 #define NELT_FMASK 2 /* Change fnmatch options request */
216 #define NELT_FILE 3 /* Read file names from that file */
217 #define NELT_NOOP 4 /* No operation */
219 struct name_elt
/* A name_array element. */
221 struct name_elt
*next
, *prev
;
222 char type
; /* Element type, see NELT_* constants above */
225 const char *name
; /* File or directory name */
226 int matching_flags
;/* fnmatch options if type == NELT_FMASK */
227 struct /* File, if type == NELT_FILE */
229 const char *name
;/* File name */
230 int term
; /* File name terminator in the list */
231 bool verbatim
; /* Verbatim handling of file names: no white-space
232 trimming, no option processing */
238 static struct name_elt
*name_head
; /* store a list of names */
239 size_t name_count
; /* how many of the entries are names? */
241 static struct name_elt
*
242 name_elt_alloc (void)
244 struct name_elt
*elt
;
246 elt
= xmalloc (sizeof (*elt
));
250 name_head
->prev
= name_head
->next
= NULL
;
251 name_head
->type
= NELT_NOOP
;
252 elt
= xmalloc (sizeof (*elt
));
255 elt
->prev
= name_head
->prev
;
257 name_head
->prev
->next
= elt
;
258 elt
->next
= name_head
;
259 name_head
->prev
= elt
;
263 static struct name_elt
*
264 name_elt_alloc_matflags (int matflags
)
266 static int prev_flags
= 0; /* FIXME: Or EXCLUDE_ANCHORED? */
267 struct name_elt
*ep
= name_elt_alloc ();
268 if (prev_flags
!= matflags
)
270 ep
->type
= NELT_FMASK
;
271 ep
->v
.matching_flags
= matflags
;
272 prev_flags
= matflags
;
273 ep
= name_elt_alloc ();
279 name_list_adjust (void)
282 while (name_head
->prev
)
283 name_head
= name_head
->prev
;
287 name_list_advance (void)
289 struct name_elt
*elt
= name_head
;
290 name_head
= elt
->next
;
292 name_head
->prev
= NULL
;
297 /* Add to name_array the file NAME with fnmatch options MATFLAGS */
299 name_add_name (const char *name
, int matflags
)
301 struct name_elt
*ep
= name_elt_alloc_matflags (matflags
);
303 ep
->type
= NELT_NAME
;
308 /* Add to name_array a chdir request for the directory NAME */
310 name_add_dir (const char *name
)
312 struct name_elt
*ep
= name_elt_alloc ();
313 ep
->type
= NELT_CHDIR
;
318 name_add_file (const char *name
, int term
, bool verbatim
, int matflags
)
320 struct name_elt
*ep
= name_elt_alloc_matflags (matflags
);
322 ep
->type
= NELT_FILE
;
323 ep
->v
.file
.name
= name
;
324 ep
->v
.file
.term
= term
;
325 ep
->v
.file
.verbatim
= verbatim
;
326 ep
->v
.file
.fp
= NULL
;
329 /* Names from external name file. */
331 static char *name_buffer
; /* buffer to hold the current file name */
332 static size_t name_buffer_length
; /* allocated length of name_buffer */
334 /* Set up to gather file names for tar. They can either come from a
335 file or were saved from decoding arguments. */
339 name_buffer
= xmalloc (NAME_FIELD_SIZE
+ 2);
340 name_buffer_length
= NAME_FIELD_SIZE
;
350 /* Prevent recursive inclusion of the same file */
353 struct file_id_list
*next
;
356 const char *from_file
;
359 static struct file_id_list
*file_id_list
;
361 /* Return the name of the file from which the file names and options
365 file_list_name (void)
367 struct name_elt
*elt
;
369 for (elt
= name_head
; elt
; elt
= elt
->next
)
370 if (elt
->type
== NELT_FILE
&& elt
->v
.file
.fp
)
371 return elt
->v
.file
.name
;
372 return _("command line");
376 add_file_id (const char *filename
)
378 struct file_id_list
*p
;
380 const char *reading_from
;
382 if (stat (filename
, &st
))
383 stat_fatal (filename
);
384 reading_from
= file_list_name ();
385 for (p
= file_id_list
; p
; p
= p
->next
)
386 if (p
->ino
== st
.st_ino
&& p
->dev
== st
.st_dev
)
388 int oldc
= set_char_quoting (NULL
, ':', 1);
390 _("%s: file list requested from %s already read from %s"),
391 quotearg_n (0, filename
),
392 reading_from
, p
->from_file
));
393 set_char_quoting (NULL
, ':', oldc
);
396 p
= xmalloc (sizeof *p
);
397 p
->next
= file_id_list
;
400 p
->from_file
= reading_from
;
405 /* Chop trailing slashes. */
407 chopslash (char *str
)
409 char *p
= str
+ strlen (str
) - 1;
410 while (p
> str
&& ISSLASH (*p
))
414 enum read_file_list_state
/* Result of reading file name from the list file */
416 file_list_success
, /* OK, name read successfully */
417 file_list_end
, /* End of list file */
418 file_list_zero
, /* Zero separator encountered where it should not */
419 file_list_skip
/* Empty (zero-length) entry encountered, skip it */
422 /* Read from FP a sequence of characters up to TERM and put them
425 static enum read_file_list_state
426 read_name_from_file (struct name_elt
*ent
)
430 FILE *fp
= ent
->v
.file
.fp
;
431 int term
= ent
->v
.file
.term
;
433 for (c
= getc (fp
); c
!= EOF
&& c
!= term
; c
= getc (fp
))
435 if (counter
== name_buffer_length
)
436 name_buffer
= x2realloc (name_buffer
, &name_buffer_length
);
437 name_buffer
[counter
++] = c
;
440 /* We have read a zero separator. The file possibly is
442 return file_list_zero
;
446 if (counter
== 0 && c
!= EOF
)
447 return file_list_skip
;
449 if (counter
== name_buffer_length
)
450 name_buffer
= x2realloc (name_buffer
, &name_buffer_length
);
451 name_buffer
[counter
] = 0;
452 chopslash (name_buffer
);
453 return (counter
== 0 && c
== EOF
) ? file_list_end
: file_list_success
;
457 handle_option (const char *str
)
462 while (*str
&& isspace (*str
))
468 if (wordsplit (str
, &ws
, WRDSF_DEFFLAGS
|WRDSF_DOOFFS
))
469 FATAL_ERROR ((0, 0, _("cannot split string '%s': %s"),
470 str
, wordsplit_strerror (&ws
)));
471 ws
.ws_wordv
[0] = program_invocation_short_name
;
472 more_options (ws
.ws_wordc
+ws
.ws_offs
, ws
.ws_wordv
);
473 for (i
= 0; i
< ws
.ws_wordc
+ws
.ws_offs
; i
++)
474 ws
.ws_wordv
[i
] = NULL
;
476 wordsplit_free (&ws
);
481 read_next_name (struct name_elt
*ent
, struct name_elt
*ret
)
485 if (!strcmp (ent
->v
.file
.name
, "-"))
487 request_stdin ("-T");
488 ent
->v
.file
.fp
= stdin
;
492 if (add_file_id (ent
->v
.file
.name
))
494 name_list_advance ();
497 if ((ent
->v
.file
.fp
= fopen (ent
->v
.file
.name
, "r")) == NULL
)
498 open_fatal (ent
->v
.file
.name
);
504 switch (read_name_from_file (ent
))
510 WARNOPT (WARN_FILENAME_WITH_NULS
,
511 (0, 0, N_("%s: file name read contains nul character"),
512 quotearg_colon (ent
->v
.file
.name
)));
513 ent
->v
.file
.term
= 0;
515 case file_list_success
:
517 unquote_string (name_buffer
);
518 if (!ent
->v
.file
.verbatim
&& handle_option (name_buffer
) == 0)
523 ret
->type
= NELT_NAME
;
524 ret
->v
.name
= name_buffer
;
528 if (strcmp (ent
->v
.file
.name
, "-"))
529 fclose (ent
->v
.file
.fp
);
530 ent
->v
.file
.fp
= NULL
;
531 name_list_advance ();
538 copy_name (struct name_elt
*ep
)
544 source_len
= strlen (source
);
545 if (name_buffer_length
< source_len
)
549 name_buffer_length
*= 2;
550 if (! name_buffer_length
)
553 while (name_buffer_length
< source_len
);
556 name_buffer
= xmalloc(name_buffer_length
+ 2);
558 strcpy (name_buffer
, source
);
559 chopslash (name_buffer
);
563 static int matching_flags
; /* exclude_fnmatch options */
565 /* Get the next NELT_NAME element from name_array. Result is in
566 static storage and can't be relied upon across two calls.
568 If CHANGE_DIRS is true, treat any entries of type NELT_CHDIR as
569 the request to change to the given directory.
571 Entries of type NELT_FMASK cause updates of the matching_flags
574 static struct name_elt
*
575 name_next_elt (int change_dirs
)
577 static struct name_elt entry
;
580 while ((ep
= name_head
) != NULL
)
585 name_list_advance ();
589 matching_flags
= ep
->v
.matching_flags
;
590 recursion_option
= matching_flags
& FNM_LEADING_DIR
;
591 name_list_advance ();
595 if (read_next_name (ep
, &entry
) == 0)
602 chdir_do (chdir_arg (xstrdup (ep
->v
.name
)));
603 name_list_advance ();
610 unquote_string (name_buffer
);
611 entry
.type
= ep
->type
;
612 entry
.v
.name
= name_buffer
;
613 name_list_advance ();
622 name_next (int change_dirs
)
624 struct name_elt
*nelt
= name_next_elt (change_dirs
);
625 return nelt
? nelt
->v
.name
: NULL
;
628 /* Gather names in a list for scanning. Could hash them later if we
631 If the names are already sorted to match the archive, we just read
632 them one by one. name_gather reads the first one, and it is called
633 by name_match as appropriate to read the next ones. At EOF, the
634 last name read is just left in the buffer. This option lets users
635 of small machines extract an arbitrary number of files by doing
636 "tar t" and editing down the list of files. */
641 /* Buffer able to hold a single name. */
642 static struct name
*buffer
= NULL
;
646 if (same_order_option
)
648 static int change_dir
;
650 while ((ep
= name_next_elt (0)) && ep
->type
== NELT_CHDIR
)
651 change_dir
= chdir_arg (xstrdup (ep
->v
.name
));
656 buffer
= make_name (ep
->v
.name
);
657 buffer
->change_dir
= change_dir
;
659 buffer
->found_count
= 0;
660 buffer
->matching_flags
= matching_flags
;
661 buffer
->directory
= NULL
;
662 buffer
->parent
= NULL
;
663 buffer
->cmdline
= true;
665 namelist
= nametail
= buffer
;
668 addname (0, change_dir
, false, NULL
);
672 /* Non sorted names -- read them all in. */
677 int change_dir0
= change_dir
;
678 while ((ep
= name_next_elt (0)) && ep
->type
== NELT_CHDIR
)
679 change_dir
= chdir_arg (xstrdup (ep
->v
.name
));
682 addname (ep
->v
.name
, change_dir
, true, NULL
);
685 if (change_dir
!= change_dir0
)
686 addname (NULL
, change_dir
, false, NULL
);
693 /* Add a name to the namelist. */
695 addname (char const *string
, int change_dir
, bool cmdline
, struct name
*parent
)
697 struct name
*name
= make_name (string
);
699 name
->prev
= nametail
;
701 name
->found_count
= 0;
702 name
->matching_flags
= matching_flags
;
703 name
->change_dir
= change_dir
;
704 name
->directory
= NULL
;
705 name
->parent
= parent
;
706 name
->cmdline
= cmdline
;
709 nametail
->next
= name
;
716 /* Find a match for FILE_NAME (whose string length is LENGTH) in the name
719 namelist_match (char const *file_name
, size_t length
)
723 for (p
= namelist
; p
; p
= p
->next
)
726 && exclude_fnmatch (p
->name
, file_name
, p
->matching_flags
))
734 remname (struct name
*name
)
738 if ((p
= name
->prev
) != NULL
)
739 p
->next
= name
->next
;
741 namelist
= name
->next
;
743 if ((p
= name
->next
) != NULL
)
744 p
->prev
= name
->prev
;
746 nametail
= name
->prev
;
749 /* Return true if and only if name FILE_NAME (from an archive) matches any
750 name from the namelist. */
752 name_match (const char *file_name
)
754 size_t length
= strlen (file_name
);
758 struct name
*cursor
= namelist
;
763 if (cursor
->name
[0] == 0)
765 chdir_do (cursor
->change_dir
);
771 cursor
= namelist_match (file_name
, length
);
774 if (!(ISSLASH (file_name
[cursor
->length
]) && recursion_option
)
775 || cursor
->found_count
== 0)
776 cursor
->found_count
++; /* remember it matched */
777 if (starting_file_option
)
783 chdir_do (cursor
->change_dir
);
785 /* We got a match. */
786 return ISFOUND (cursor
);
789 /* Filename from archive not found in namelist. If we have the whole
790 namelist here, just return 0. Otherwise, read the next name in and
791 compare it. If this was the last name, namelist->found_count will
792 remain on. If not, we loop to compare the newly read name. */
794 if (same_order_option
&& namelist
->found_count
)
796 name_gather (); /* read one more */
797 if (namelist
->found_count
)
805 /* Returns true if all names from the namelist were processed.
806 P is the stat_info of the most recently processed entry.
807 The decision is postponed until the next entry is read if:
809 1) P ended with a slash (i.e. it was a directory)
810 2) P matches any entry from the namelist *and* represents a subdirectory
811 or a file lying under this entry (in the terms of directory structure).
813 This is necessary to handle contents of directories. */
815 all_names_found (struct tar_stat_info
*p
)
817 struct name
const *cursor
;
820 if (!p
->file_name
|| occurrence_option
== 0 || p
->had_trailing_slash
)
822 len
= strlen (p
->file_name
);
823 for (cursor
= namelist
; cursor
; cursor
= cursor
->next
)
825 if ((cursor
->name
[0] && !WASFOUND (cursor
))
826 || (len
>= cursor
->length
&& ISSLASH (p
->file_name
[cursor
->length
])))
833 regex_usage_warning (const char *name
)
835 static int warned_once
= 0;
837 if (warn_regex_usage
&& fnmatch_pattern_has_wildcards (name
, 0))
841 _("Pattern matching characters used in file names")));
843 _("Use --wildcards to enable pattern matching,"
844 " or --no-wildcards to suppress this warning")));
849 /* Print the names of things in the namelist that were not matched. */
851 names_notfound (void)
853 struct name
const *cursor
;
855 for (cursor
= namelist
; cursor
; cursor
= cursor
->next
)
856 if (!WASFOUND (cursor
) && cursor
->name
[0])
858 regex_usage_warning (cursor
->name
);
860 (cursor
->found_count
== 0) ?
861 _("%s: Not found in archive") :
862 _("%s: Required occurrence not found in archive"),
863 quotearg_colon (cursor
->name
)));
866 /* Don't bother freeing the name list; we're about to exit. */
870 if (same_order_option
)
874 while ((name
= name_next (1)) != NULL
)
876 regex_usage_warning (name
);
877 ERROR ((0, 0, _("%s: Not found in archive"),
878 quotearg_colon (name
)));
884 label_notfound (void)
886 struct name
const *cursor
;
891 for (cursor
= namelist
; cursor
; cursor
= cursor
->next
)
892 if (WASFOUND (cursor
))
896 error (0, 0, _("Archive label mismatch"));
897 set_exit_status (TAREXIT_DIFFERS
);
899 for (cursor
= namelist
; cursor
; cursor
= cursor
->next
)
901 if (regex_usage_warning (cursor
->name
))
905 /* Don't bother freeing the name list; we're about to exit. */
909 if (same_order_option
)
913 while ((name
= name_next (1)) != NULL
914 && regex_usage_warning (name
) == 0)
919 /* Sorting name lists. */
921 /* Sort *singly* linked LIST of names, of given LENGTH, using COMPARE
922 to order names. Return the sorted list. Note that after calling
923 this function, the 'prev' links in list elements are messed up.
925 Apart from the type 'struct name' and the definition of SUCCESSOR,
926 this is a generic list-sorting function, but it's too painful to
927 make it both generic and portable
931 merge_sort_sll (struct name
*list
, int length
,
932 int (*compare
) (struct name
const*, struct name
const*))
934 struct name
*first_list
;
935 struct name
*second_list
;
939 struct name
**merge_point
;
943 # define SUCCESSOR(name) ((name)->next)
950 if ((*compare
) (list
, SUCCESSOR (list
)) > 0)
952 result
= SUCCESSOR (list
);
953 SUCCESSOR (result
) = list
;
954 SUCCESSOR (list
) = 0;
961 first_length
= (length
+ 1) / 2;
962 second_length
= length
/ 2;
963 for (cursor
= list
, counter
= first_length
- 1;
965 cursor
= SUCCESSOR (cursor
), counter
--)
967 second_list
= SUCCESSOR (cursor
);
968 SUCCESSOR (cursor
) = 0;
970 first_list
= merge_sort_sll (first_list
, first_length
, compare
);
971 second_list
= merge_sort_sll (second_list
, second_length
, compare
);
973 merge_point
= &result
;
974 while (first_list
&& second_list
)
975 if ((*compare
) (first_list
, second_list
) < 0)
977 cursor
= SUCCESSOR (first_list
);
978 *merge_point
= first_list
;
979 merge_point
= &SUCCESSOR (first_list
);
984 cursor
= SUCCESSOR (second_list
);
985 *merge_point
= second_list
;
986 merge_point
= &SUCCESSOR (second_list
);
987 second_list
= cursor
;
990 *merge_point
= first_list
;
992 *merge_point
= second_list
;
999 /* Sort doubly linked LIST of names, of given LENGTH, using COMPARE
1000 to order names. Return the sorted list. */
1001 static struct name
*
1002 merge_sort (struct name
*list
, int length
,
1003 int (*compare
) (struct name
const*, struct name
const*))
1005 struct name
*head
, *p
, *prev
;
1006 head
= merge_sort_sll (list
, length
, compare
);
1007 /* Fixup prev pointers */
1008 for (prev
= NULL
, p
= head
; p
; prev
= p
, p
= p
->next
)
1013 /* A comparison function for sorting names. Put found names last;
1014 break ties by string comparison. */
1017 compare_names_found (struct name
const *n1
, struct name
const *n2
)
1019 int found_diff
= WASFOUND (n2
) - WASFOUND (n1
);
1020 return found_diff
? found_diff
: strcmp (n1
->name
, n2
->name
);
1023 /* Simple comparison by names. */
1025 compare_names (struct name
const *n1
, struct name
const *n2
)
1027 return strcmp (n1
->name
, n2
->name
);
1031 /* Add all the dirs under ST to the namelist NAME, descending the
1032 directory hierarchy recursively. */
1035 add_hierarchy_to_namelist (struct tar_stat_info
*st
, struct name
*name
)
1039 name
->directory
= scan_directory (st
);
1040 buffer
= directory_contents (name
->directory
);
1043 struct name
*child_head
= NULL
, *child_tail
= NULL
;
1044 size_t name_length
= name
->length
;
1045 size_t allocated_length
= (name_length
>= NAME_FIELD_SIZE
1046 ? name_length
+ NAME_FIELD_SIZE
1048 char *namebuf
= xmalloc (allocated_length
+ 1);
1049 /* FIXME: + 2 above? */
1051 size_t string_length
;
1052 int change_dir
= name
->change_dir
;
1054 strcpy (namebuf
, name
->name
);
1055 if (! ISSLASH (namebuf
[name_length
- 1]))
1057 namebuf
[name_length
++] = '/';
1058 namebuf
[name_length
] = '\0';
1061 for (string
= buffer
; *string
; string
+= string_length
+ 1)
1063 string_length
= strlen (string
);
1067 struct tar_stat_info subdir
;
1070 if (allocated_length
<= name_length
+ string_length
)
1074 allocated_length
*= 2;
1075 if (! allocated_length
)
1078 while (allocated_length
<= name_length
+ string_length
);
1080 namebuf
= xrealloc (namebuf
, allocated_length
+ 1);
1082 strcpy (namebuf
+ name_length
, string
+ 1);
1083 np
= addname (namebuf
, change_dir
, false, name
);
1087 child_tail
->sibling
= np
;
1090 tar_stat_init (&subdir
);
1098 subfd
= subfile_open (st
, string
+ 1,
1099 open_read_flags
| O_DIRECTORY
);
1101 open_diag (namebuf
);
1105 if (fstat (subfd
, &subdir
.stat
) != 0)
1106 stat_diag (namebuf
);
1107 else if (! (O_DIRECTORY
|| S_ISDIR (subdir
.stat
.st_mode
)))
1110 open_diag (namebuf
);
1114 subdir
.orig_file_name
= xstrdup (namebuf
);
1115 add_hierarchy_to_namelist (&subdir
, np
);
1116 restore_parent_fd (&subdir
);
1120 tar_stat_destroy (&subdir
);
1125 name
->child
= child_head
;
1129 /* Auxiliary functions for hashed table of struct name's. */
1132 name_hash (void const *entry
, size_t n_buckets
)
1134 struct name
const *name
= entry
;
1135 return hash_string (name
->caname
, n_buckets
);
1138 /* Compare two directories for equality of their names. */
1140 name_compare (void const *entry1
, void const *entry2
)
1142 struct name
const *name1
= entry1
;
1143 struct name
const *name2
= entry2
;
1144 return strcmp (name1
->caname
, name2
->caname
) == 0;
1148 /* Rebase 'name' member of CHILD and all its siblings to
1151 rebase_child_list (struct name
*child
, struct name
*parent
)
1153 size_t old_prefix_len
= child
->parent
->length
;
1154 size_t new_prefix_len
= parent
->length
;
1155 char *new_prefix
= parent
->name
;
1157 for (; child
; child
= child
->sibling
)
1159 size_t size
= child
->length
- old_prefix_len
+ new_prefix_len
;
1160 char *newp
= xmalloc (size
+ 1);
1161 strcpy (newp
, new_prefix
);
1162 strcat (newp
, child
->name
+ old_prefix_len
);
1165 child
->length
= size
;
1167 rebase_directory (child
->directory
,
1168 child
->parent
->name
, old_prefix_len
,
1169 new_prefix
, new_prefix_len
);
1173 /* Collect all the names from argv[] (or whatever), expand them into a
1174 directory tree, and sort them. This gets only subdirectories, not
1178 collect_and_sort_names (void)
1181 struct name
*next_name
, *prev_name
= NULL
;
1183 Hash_table
*nametab
;
1188 addname (".", 0, false, NULL
);
1190 if (listed_incremental_option
)
1192 switch (chdir_count ())
1198 if (namelist
->change_dir
== 0)
1200 _("Using -C option inside file list is not "
1201 "allowed with --listed-incremental")));
1206 _("Only one -C option is allowed with "
1207 "--listed-incremental")));
1210 read_directory_file ();
1214 for (name
= namelist
; name
; name
= name
->next
, num_names
++)
1216 struct tar_stat_info st
;
1218 if (name
->found_count
|| name
->directory
)
1220 if (name
->matching_flags
& EXCLUDE_WILDCARDS
)
1221 /* NOTE: EXCLUDE_ANCHORED is not relevant here */
1222 /* FIXME: just skip regexps for now */
1224 chdir_do (name
->change_dir
);
1226 if (name
->name
[0] == 0)
1229 tar_stat_init (&st
);
1231 if (deref_stat (name
->name
, &st
.stat
) != 0)
1233 stat_diag (name
->name
);
1236 if (S_ISDIR (st
.stat
.st_mode
))
1238 int dir_fd
= openat (chdir_fd
, name
->name
,
1239 open_read_flags
| O_DIRECTORY
);
1241 open_diag (name
->name
);
1245 if (fstat (dir_fd
, &st
.stat
) != 0)
1246 stat_diag (name
->name
);
1247 else if (O_DIRECTORY
|| S_ISDIR (st
.stat
.st_mode
))
1249 st
.orig_file_name
= xstrdup (name
->name
);
1250 name
->found_count
++;
1251 add_hierarchy_to_namelist (&st
, name
);
1256 tar_stat_destroy (&st
);
1259 namelist
= merge_sort (namelist
, num_names
, compare_names
);
1262 nametab
= hash_initialize (0, 0, name_hash
, name_compare
, NULL
);
1263 for (name
= namelist
; name
; name
= next_name
)
1265 next_name
= name
->next
;
1266 name
->caname
= normalize_filename (name
->change_dir
, name
->name
);
1269 struct name
*p
= hash_lookup (nametab
, name
);
1272 /* Keep the one listed in the command line */
1276 rebase_child_list (p
->child
, name
);
1277 hash_delete (nametab
, name
);
1278 /* FIXME: remove_directory (p->caname); ? */
1286 rebase_child_list (name
->child
, p
);
1287 /* FIXME: remove_directory (name->caname); ? */
1294 name
->found_count
= 0;
1295 if (!hash_insert (nametab
, name
))
1300 nametail
= prev_name
;
1301 hash_free (nametab
);
1303 namelist
= merge_sort (namelist
, num_names
, compare_names_found
);
1305 if (listed_incremental_option
)
1307 for (name
= namelist
; name
&& name
->name
[0] == 0; name
++)
1310 append_incremental_renames (name
->directory
);
1314 /* This is like name_match, except that
1315 1. It returns a pointer to the name it matched, and doesn't set FOUND
1316 in structure. The caller will have to do that if it wants to.
1317 2. If the namelist is empty, it returns null, unlike name_match, which
1320 name_scan (const char *file_name
)
1322 size_t length
= strlen (file_name
);
1326 struct name
*cursor
= namelist_match (file_name
, length
);
1330 /* Filename from archive not found in namelist. If we have the whole
1331 namelist here, just return 0. Otherwise, read the next name in and
1332 compare it. If this was the last name, namelist->found_count will
1333 remain on. If not, we loop to compare the newly read name. */
1335 if (same_order_option
&& namelist
&& namelist
->found_count
)
1337 name_gather (); /* read one more */
1338 if (namelist
->found_count
)
1346 /* This returns a name from the namelist which doesn't have ->found
1347 set. It sets ->found before returning, so successive calls will
1348 find and return all the non-found names in the namelist. */
1349 struct name
*gnu_list_name
;
1352 name_from_list (void)
1355 gnu_list_name
= namelist
;
1356 while (gnu_list_name
1357 && (gnu_list_name
->found_count
|| gnu_list_name
->name
[0] == 0))
1358 gnu_list_name
= gnu_list_name
->next
;
1361 gnu_list_name
->found_count
++;
1362 chdir_do (gnu_list_name
->change_dir
);
1363 return gnu_list_name
;
1369 blank_name_list (void)
1374 for (name
= namelist
; name
; name
= name
->next
)
1375 name
->found_count
= 0;
1378 /* Yield a newly allocated file name consisting of FILE_NAME concatenated to
1379 NAME, with an intervening slash if FILE_NAME does not already end in one. */
1381 new_name (const char *file_name
, const char *name
)
1383 size_t file_name_len
= strlen (file_name
);
1384 size_t namesize
= strlen (name
) + 1;
1385 int slash
= file_name_len
&& ! ISSLASH (file_name
[file_name_len
- 1]);
1386 char *buffer
= xmalloc (file_name_len
+ slash
+ namesize
);
1387 memcpy (buffer
, file_name
, file_name_len
);
1388 buffer
[file_name_len
] = '/';
1389 memcpy (buffer
+ file_name_len
+ slash
, name
, namesize
);
1395 /* Return the size of the prefix of FILE_NAME that is removed after
1396 stripping NUM leading file name components. NUM must be
1400 stripped_prefix_len (char const *file_name
, size_t num
)
1402 char const *p
= file_name
+ FILE_SYSTEM_PREFIX_LEN (file_name
);
1403 while (ISSLASH (*p
))
1407 bool slash
= ISSLASH (*p
);
1412 return p
- file_name
;
1413 while (ISSLASH (*p
))
1420 /* Return nonzero if NAME contains ".." as a file name component. */
1422 contains_dot_dot (char const *name
)
1424 char const *p
= name
+ FILE_SYSTEM_PREFIX_LEN (name
);
1428 if (p
[0] == '.' && p
[1] == '.' && (ISSLASH (p
[2]) || !p
[2]))
1431 while (! ISSLASH (*p
))