]> Dogcows Code - chaz/tar/blob - src/names.c
Fix `--test-label' and `--label -r' behavior.
[chaz/tar] / src / names.c
1 /* Various processing of names.
2
3 Copyright (C) 1988, 1992, 1994, 1996, 1997, 1998, 1999, 2000, 2001,
4 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
5
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
9 version.
10
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.
15
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
19
20 #include <system.h>
21
22 #include <fnmatch.h>
23 #include <hash.h>
24 #include <quotearg.h>
25
26 #include "common.h"
27 \f
28 /* User and group names. */
29
30 struct group *getgrnam ();
31 struct passwd *getpwnam ();
32 #if ! HAVE_DECL_GETPWUID
33 struct passwd *getpwuid ();
34 #endif
35 #if ! HAVE_DECL_GETGRGID
36 struct group *getgrgid ();
37 #endif
38
39 /* Make sure you link with the proper libraries if you are running the
40 Yellow Peril (thanks for the good laugh, Ian J.!), or, euh... NIS.
41 This code should also be modified for non-UNIX systems to do something
42 reasonable. */
43
44 static char *cached_uname;
45 static char *cached_gname;
46
47 static uid_t cached_uid; /* valid only if cached_uname is not empty */
48 static gid_t cached_gid; /* valid only if cached_gname is not empty */
49
50 /* These variables are valid only if nonempty. */
51 static char *cached_no_such_uname;
52 static char *cached_no_such_gname;
53
54 /* These variables are valid only if nonzero. It's not worth optimizing
55 the case for weird systems where 0 is not a valid uid or gid. */
56 static uid_t cached_no_such_uid;
57 static gid_t cached_no_such_gid;
58
59 static void register_individual_file (char const *name);
60
61 /* Given UID, find the corresponding UNAME. */
62 void
63 uid_to_uname (uid_t uid, char **uname)
64 {
65 struct passwd *passwd;
66
67 if (uid != 0 && uid == cached_no_such_uid)
68 {
69 *uname = xstrdup ("");
70 return;
71 }
72
73 if (!cached_uname || uid != cached_uid)
74 {
75 passwd = getpwuid (uid);
76 if (passwd)
77 {
78 cached_uid = uid;
79 assign_string (&cached_uname, passwd->pw_name);
80 }
81 else
82 {
83 cached_no_such_uid = uid;
84 *uname = xstrdup ("");
85 return;
86 }
87 }
88 *uname = xstrdup (cached_uname);
89 }
90
91 /* Given GID, find the corresponding GNAME. */
92 void
93 gid_to_gname (gid_t gid, char **gname)
94 {
95 struct group *group;
96
97 if (gid != 0 && gid == cached_no_such_gid)
98 {
99 *gname = xstrdup ("");
100 return;
101 }
102
103 if (!cached_gname || gid != cached_gid)
104 {
105 group = getgrgid (gid);
106 if (group)
107 {
108 cached_gid = gid;
109 assign_string (&cached_gname, group->gr_name);
110 }
111 else
112 {
113 cached_no_such_gid = gid;
114 *gname = xstrdup ("");
115 return;
116 }
117 }
118 *gname = xstrdup (cached_gname);
119 }
120
121 /* Given UNAME, set the corresponding UID and return 1, or else, return 0. */
122 int
123 uname_to_uid (char const *uname, uid_t *uidp)
124 {
125 struct passwd *passwd;
126
127 if (cached_no_such_uname
128 && strcmp (uname, cached_no_such_uname) == 0)
129 return 0;
130
131 if (!cached_uname
132 || uname[0] != cached_uname[0]
133 || strcmp (uname, cached_uname) != 0)
134 {
135 passwd = getpwnam (uname);
136 if (passwd)
137 {
138 cached_uid = passwd->pw_uid;
139 assign_string (&cached_uname, passwd->pw_name);
140 }
141 else
142 {
143 assign_string (&cached_no_such_uname, uname);
144 return 0;
145 }
146 }
147 *uidp = cached_uid;
148 return 1;
149 }
150
151 /* Given GNAME, set the corresponding GID and return 1, or else, return 0. */
152 int
153 gname_to_gid (char const *gname, gid_t *gidp)
154 {
155 struct group *group;
156
157 if (cached_no_such_gname
158 && strcmp (gname, cached_no_such_gname) == 0)
159 return 0;
160
161 if (!cached_gname
162 || gname[0] != cached_gname[0]
163 || strcmp (gname, cached_gname) != 0)
164 {
165 group = getgrnam (gname);
166 if (group)
167 {
168 cached_gid = group->gr_gid;
169 assign_string (&cached_gname, gname);
170 }
171 else
172 {
173 assign_string (&cached_no_such_gname, gname);
174 return 0;
175 }
176 }
177 *gidp = cached_gid;
178 return 1;
179 }
180
181 \f
182 struct name *
183 make_name (const char *file_name)
184 {
185 struct name *p = xzalloc (sizeof (*p));
186 if (!file_name)
187 file_name = "";
188 p->name = xstrdup (file_name);
189 p->length = strlen (p->name);
190 return p;
191 }
192
193 void
194 free_name (struct name *p)
195 {
196 if (p)
197 {
198 free (p->name);
199 free (p->caname);
200 free (p);
201 }
202 }
203
204 \f
205 /* Names from the command call. */
206
207 static struct name *namelist; /* first name in list, if any */
208 static struct name *nametail; /* end of name list */
209
210 /* File name arguments are processed in two stages: first a
211 name_array (see below) is filled, then the names from it
212 are moved into the namelist.
213
214 This awkward process is needed only to implement --same-order option,
215 which is meant to help process large archives on machines with
216 limited memory. With this option on, namelist contains at most one
217 entry, which diminishes the memory consumption.
218
219 However, I very much doubt if we still need this -- Sergey */
220
221 /* A name_array element contains entries of three types: */
222
223 #define NELT_NAME 0 /* File name */
224 #define NELT_CHDIR 1 /* Change directory request */
225 #define NELT_FMASK 2 /* Change fnmatch options request */
226
227 struct name_elt /* A name_array element. */
228 {
229 char type; /* Element type, see NELT_* constants above */
230 union
231 {
232 const char *name; /* File or directory name */
233 int matching_flags;/* fnmatch options if type == NELT_FMASK */
234 } v;
235 };
236
237 static struct name_elt *name_array; /* store an array of names */
238 static size_t allocated_names; /* how big is the array? */
239 static size_t names; /* how many entries does it have? */
240 static size_t name_index; /* how many of the entries have we scanned? */
241
242 /* Check the size of name_array, reallocating it as necessary. */
243 static void
244 check_name_alloc ()
245 {
246 if (names == allocated_names)
247 {
248 if (allocated_names == 0)
249 allocated_names = 10; /* Set initial allocation */
250 name_array = x2nrealloc (name_array, &allocated_names,
251 sizeof (name_array[0]));
252 }
253 }
254
255 /* Add to name_array the file NAME with fnmatch options MATCHING_FLAGS */
256 void
257 name_add_name (const char *name, int matching_flags)
258 {
259 static int prev_flags = 0; /* FIXME: Or EXCLUDE_ANCHORED? */
260 struct name_elt *ep;
261
262 check_name_alloc ();
263 ep = &name_array[names++];
264 if (prev_flags != matching_flags)
265 {
266 ep->type = NELT_FMASK;
267 ep->v.matching_flags = matching_flags;
268 prev_flags = matching_flags;
269 check_name_alloc ();
270 ep = &name_array[names++];
271 }
272 ep->type = NELT_NAME;
273 ep->v.name = name;
274 }
275
276 /* Add to name_array a chdir request for the directory NAME */
277 void
278 name_add_dir (const char *name)
279 {
280 struct name_elt *ep;
281 check_name_alloc ();
282 ep = &name_array[names++];
283 ep->type = NELT_CHDIR;
284 ep->v.name = name;
285 }
286
287 \f
288 /* Names from external name file. */
289
290 static char *name_buffer; /* buffer to hold the current file name */
291 static size_t name_buffer_length; /* allocated length of name_buffer */
292
293 /* Set up to gather file names for tar. They can either come from a
294 file or were saved from decoding arguments. */
295 void
296 name_init (void)
297 {
298 name_buffer = xmalloc (NAME_FIELD_SIZE + 2);
299 name_buffer_length = NAME_FIELD_SIZE;
300 }
301
302 void
303 name_term (void)
304 {
305 free (name_buffer);
306 free (name_array);
307 }
308
309 static int matching_flags; /* exclude_fnmatch options */
310
311 /* Get the next NELT_NAME element from name_array. Result is in
312 static storage and can't be relied upon across two calls.
313
314 If CHANGE_DIRS is true, treat any entries of type NELT_CHDIR as
315 the request to change to the given directory.
316
317 Entries of type NELT_FMASK cause updates of the matching_flags
318 value. */
319 struct name_elt *
320 name_next_elt (int change_dirs)
321 {
322 static struct name_elt entry;
323 const char *source;
324 char *cursor;
325
326 while (name_index != names)
327 {
328 struct name_elt *ep;
329 size_t source_len;
330
331 ep = &name_array[name_index++];
332 if (ep->type == NELT_FMASK)
333 {
334 matching_flags = ep->v.matching_flags;
335 continue;
336 }
337
338 source = ep->v.name;
339 source_len = strlen (source);
340 if (name_buffer_length < source_len)
341 {
342 do
343 {
344 name_buffer_length *= 2;
345 if (! name_buffer_length)
346 xalloc_die ();
347 }
348 while (name_buffer_length < source_len);
349
350 free (name_buffer);
351 name_buffer = xmalloc (name_buffer_length + 2);
352 }
353 strcpy (name_buffer, source);
354
355 /* Zap trailing slashes. */
356
357 cursor = name_buffer + strlen (name_buffer) - 1;
358 while (cursor > name_buffer && ISSLASH (*cursor))
359 *cursor-- = '\0';
360
361 if (change_dirs && ep->type == NELT_CHDIR)
362 {
363 if (chdir (name_buffer) < 0)
364 chdir_fatal (name_buffer);
365 }
366 else
367 {
368 if (unquote_option)
369 unquote_string (name_buffer);
370 if (incremental_option)
371 register_individual_file (name_buffer);
372 entry.type = ep->type;
373 entry.v.name = name_buffer;
374 return &entry;
375 }
376 }
377
378 return NULL;
379 }
380
381 const char *
382 name_next (int change_dirs)
383 {
384 struct name_elt *nelt = name_next_elt (change_dirs);
385 return nelt ? nelt->v.name : NULL;
386 }
387
388 /* Gather names in a list for scanning. Could hash them later if we
389 really care.
390
391 If the names are already sorted to match the archive, we just read
392 them one by one. name_gather reads the first one, and it is called
393 by name_match as appropriate to read the next ones. At EOF, the
394 last name read is just left in the buffer. This option lets users
395 of small machines extract an arbitrary number of files by doing
396 "tar t" and editing down the list of files. */
397
398 void
399 name_gather (void)
400 {
401 /* Buffer able to hold a single name. */
402 static struct name *buffer = NULL;
403
404 struct name_elt *ep;
405
406 if (same_order_option)
407 {
408 static int change_dir;
409
410 while ((ep = name_next_elt (0)) && ep->type == NELT_CHDIR)
411 change_dir = chdir_arg (xstrdup (ep->v.name));
412
413 if (ep)
414 {
415 free_name (buffer);
416 buffer = make_name (ep->v.name);
417 buffer->change_dir = change_dir;
418 buffer->next = 0;
419 buffer->found_count = 0;
420 buffer->matching_flags = matching_flags;
421 buffer->directory = NULL;
422 buffer->parent = NULL;
423 buffer->cmdline = true;
424
425 namelist = nametail = buffer;
426 }
427 else if (change_dir)
428 addname (0, change_dir, false, NULL);
429 }
430 else
431 {
432 /* Non sorted names -- read them all in. */
433 int change_dir = 0;
434
435 for (;;)
436 {
437 int change_dir0 = change_dir;
438 while ((ep = name_next_elt (0)) && ep->type == NELT_CHDIR)
439 change_dir = chdir_arg (xstrdup (ep->v.name));
440
441 if (ep)
442 addname (ep->v.name, change_dir, true, NULL);
443 else
444 {
445 if (change_dir != change_dir0)
446 addname (NULL, change_dir, false, NULL);
447 break;
448 }
449 }
450 }
451 }
452
453 /* Add a name to the namelist. */
454 struct name *
455 addname (char const *string, int change_dir, bool cmdline, struct name *parent)
456 {
457 struct name *name = make_name (string);
458
459 name->prev = nametail;
460 name->next = NULL;
461 name->found_count = 0;
462 name->matching_flags = matching_flags;
463 name->change_dir = change_dir;
464 name->directory = NULL;
465 name->parent = parent;
466 name->cmdline = cmdline;
467
468 if (nametail)
469 nametail->next = name;
470 else
471 namelist = name;
472 nametail = name;
473 return name;
474 }
475
476 /* Find a match for FILE_NAME (whose string length is LENGTH) in the name
477 list. */
478 static struct name *
479 namelist_match (char const *file_name, size_t length)
480 {
481 struct name *p;
482
483 for (p = namelist; p; p = p->next)
484 {
485 if (p->name[0]
486 && exclude_fnmatch (p->name, file_name, p->matching_flags))
487 return p;
488 }
489
490 return NULL;
491 }
492
493 void
494 remname (struct name *name)
495 {
496 struct name *p;
497
498 if ((p = name->prev) != NULL)
499 p->next = name->next;
500 else
501 namelist = name->next;
502
503 if ((p = name->next) != NULL)
504 p->prev = name->prev;
505 else
506 nametail = name->prev;
507 }
508
509 /* Return true if and only if name FILE_NAME (from an archive) matches any
510 name from the namelist. */
511 bool
512 name_match (const char *file_name)
513 {
514 size_t length = strlen (file_name);
515
516 while (1)
517 {
518 struct name *cursor = namelist;
519
520 if (!cursor)
521 return true;
522
523 if (cursor->name[0] == 0)
524 {
525 chdir_do (cursor->change_dir);
526 namelist = NULL;
527 nametail = NULL;
528 return true;
529 }
530
531 cursor = namelist_match (file_name, length);
532 if (cursor)
533 {
534 if (!(ISSLASH (file_name[cursor->length]) && recursion_option)
535 || cursor->found_count == 0)
536 cursor->found_count++; /* remember it matched */
537 if (starting_file_option)
538 {
539 free (namelist);
540 namelist = NULL;
541 nametail = NULL;
542 }
543 chdir_do (cursor->change_dir);
544
545 /* We got a match. */
546 return ISFOUND (cursor);
547 }
548
549 /* Filename from archive not found in namelist. If we have the whole
550 namelist here, just return 0. Otherwise, read the next name in and
551 compare it. If this was the last name, namelist->found_count will
552 remain on. If not, we loop to compare the newly read name. */
553
554 if (same_order_option && namelist->found_count)
555 {
556 name_gather (); /* read one more */
557 if (namelist->found_count)
558 return false;
559 }
560 else
561 return false;
562 }
563 }
564
565 /* Returns true if all names from the namelist were processed.
566 P is the stat_info of the most recently processed entry.
567 The decision is postponed until the next entry is read if:
568
569 1) P ended with a slash (i.e. it was a directory)
570 2) P matches any entry from the namelist *and* represents a subdirectory
571 or a file lying under this entry (in the terms of directory structure).
572
573 This is necessary to handle contents of directories. */
574 bool
575 all_names_found (struct tar_stat_info *p)
576 {
577 struct name const *cursor;
578 size_t len;
579
580 if (!p->file_name || occurrence_option == 0 || p->had_trailing_slash)
581 return false;
582 len = strlen (p->file_name);
583 for (cursor = namelist; cursor; cursor = cursor->next)
584 {
585 if ((cursor->name[0] && !WASFOUND (cursor))
586 || (len >= cursor->length && ISSLASH (p->file_name[cursor->length])))
587 return false;
588 }
589 return true;
590 }
591
592 static int
593 regex_usage_warning (const char *name)
594 {
595 static int warned_once = 0;
596
597 if (warn_regex_usage && fnmatch_pattern_has_wildcards (name, 0))
598 {
599 warned_once = 1;
600 WARN ((0, 0,
601 _("Pattern matching characters used in file names")));
602 WARN ((0, 0,
603 _("Use --wildcards to enable pattern matching,"
604 " or --no-wildcards to suppress this warning")));
605 }
606 return warned_once;
607 }
608
609 /* Print the names of things in the namelist that were not matched. */
610 void
611 names_notfound (void)
612 {
613 struct name const *cursor;
614
615 for (cursor = namelist; cursor; cursor = cursor->next)
616 if (!WASFOUND (cursor) && cursor->name[0])
617 {
618 regex_usage_warning (cursor->name);
619 ERROR ((0, 0,
620 (cursor->found_count == 0) ?
621 _("%s: Not found in archive") :
622 _("%s: Required occurrence not found in archive"),
623 quotearg_colon (cursor->name)));
624 }
625
626 /* Don't bother freeing the name list; we're about to exit. */
627 namelist = NULL;
628 nametail = NULL;
629
630 if (same_order_option)
631 {
632 const char *name;
633
634 while ((name = name_next (1)) != NULL)
635 {
636 regex_usage_warning (name);
637 ERROR ((0, 0, _("%s: Not found in archive"),
638 quotearg_colon (name)));
639 }
640 }
641 }
642
643 void
644 label_notfound (void)
645 {
646 struct name const *cursor;
647
648 if (!namelist)
649 return;
650
651 for (cursor = namelist; cursor; cursor = cursor->next)
652 if (WASFOUND (cursor))
653 return;
654
655 if (verbose_option)
656 error (0, 0, _("Archive label mismatch"));
657 set_exit_status (TAREXIT_DIFFERS);
658
659 for (cursor = namelist; cursor; cursor = cursor->next)
660 {
661 if (regex_usage_warning (cursor->name))
662 break;
663 }
664
665 /* Don't bother freeing the name list; we're about to exit. */
666 namelist = NULL;
667 nametail = NULL;
668
669 if (same_order_option)
670 {
671 const char *name;
672
673 while ((name = name_next (1)) != NULL
674 && regex_usage_warning (name) == 0)
675 ;
676 }
677 }
678 \f
679 /* Sorting name lists. */
680
681 /* Sort *singly* linked LIST of names, of given LENGTH, using COMPARE
682 to order names. Return the sorted list. Note that after calling
683 this function, the `prev' links in list elements are messed up.
684
685 Apart from the type `struct name' and the definition of SUCCESSOR,
686 this is a generic list-sorting function, but it's too painful to
687 make it both generic and portable
688 in C. */
689
690 static struct name *
691 merge_sort_sll (struct name *list, int length,
692 int (*compare) (struct name const*, struct name const*))
693 {
694 struct name *first_list;
695 struct name *second_list;
696 int first_length;
697 int second_length;
698 struct name *result;
699 struct name **merge_point;
700 struct name *cursor;
701 int counter;
702
703 # define SUCCESSOR(name) ((name)->next)
704
705 if (length == 1)
706 return list;
707
708 if (length == 2)
709 {
710 if ((*compare) (list, SUCCESSOR (list)) > 0)
711 {
712 result = SUCCESSOR (list);
713 SUCCESSOR (result) = list;
714 SUCCESSOR (list) = 0;
715 return result;
716 }
717 return list;
718 }
719
720 first_list = list;
721 first_length = (length + 1) / 2;
722 second_length = length / 2;
723 for (cursor = list, counter = first_length - 1;
724 counter;
725 cursor = SUCCESSOR (cursor), counter--)
726 continue;
727 second_list = SUCCESSOR (cursor);
728 SUCCESSOR (cursor) = 0;
729
730 first_list = merge_sort_sll (first_list, first_length, compare);
731 second_list = merge_sort_sll (second_list, second_length, compare);
732
733 merge_point = &result;
734 while (first_list && second_list)
735 if ((*compare) (first_list, second_list) < 0)
736 {
737 cursor = SUCCESSOR (first_list);
738 *merge_point = first_list;
739 merge_point = &SUCCESSOR (first_list);
740 first_list = cursor;
741 }
742 else
743 {
744 cursor = SUCCESSOR (second_list);
745 *merge_point = second_list;
746 merge_point = &SUCCESSOR (second_list);
747 second_list = cursor;
748 }
749 if (first_list)
750 *merge_point = first_list;
751 else
752 *merge_point = second_list;
753
754 return result;
755
756 #undef SUCCESSOR
757 }
758
759 /* Sort doubly linked LIST of names, of given LENGTH, using COMPARE
760 to order names. Return the sorted list. */
761 static struct name *
762 merge_sort (struct name *list, int length,
763 int (*compare) (struct name const*, struct name const*))
764 {
765 struct name *head, *p, *prev;
766 head = merge_sort_sll (list, length, compare);
767 /* Fixup prev pointers */
768 for (prev = NULL, p = head; p; prev = p, p = p->next)
769 p->prev = prev;
770 return head;
771 }
772
773 /* A comparison function for sorting names. Put found names last;
774 break ties by string comparison. */
775
776 static int
777 compare_names_found (struct name const *n1, struct name const *n2)
778 {
779 int found_diff = WASFOUND (n2) - WASFOUND (n1);
780 return found_diff ? found_diff : strcmp (n1->name, n2->name);
781 }
782
783 /* Simple comparison by names. */
784 static int
785 compare_names (struct name const *n1, struct name const *n2)
786 {
787 return strcmp (n1->name, n2->name);
788 }
789
790 \f
791 /* Add all the dirs under NAME, which names a directory, to the namelist.
792 If any of the files is a directory, recurse on the subdirectory.
793 DEVICE is the device not to leave, if the -l option is specified.
794 CMDLINE is true, if the NAME appeared on the command line. */
795
796 static void
797 add_hierarchy_to_namelist (struct name *name, dev_t device, bool cmdline)
798 {
799 const char *buffer;
800
801 name_fill_directory (name, device, cmdline);
802 buffer = directory_contents (name->directory);
803 if (buffer)
804 {
805 struct name *child_head = NULL, *child_tail = NULL;
806 size_t name_length = name->length;
807 size_t allocated_length = (name_length >= NAME_FIELD_SIZE
808 ? name_length + NAME_FIELD_SIZE
809 : NAME_FIELD_SIZE);
810 char *namebuf = xmalloc (allocated_length + 1);
811 /* FIXME: + 2 above? */
812 const char *string;
813 size_t string_length;
814 int change_dir = name->change_dir;
815
816 strcpy (namebuf, name->name);
817 if (! ISSLASH (namebuf[name_length - 1]))
818 {
819 namebuf[name_length++] = '/';
820 namebuf[name_length] = '\0';
821 }
822
823 for (string = buffer; *string; string += string_length + 1)
824 {
825 string_length = strlen (string);
826 if (*string == 'D')
827 {
828 struct name *np;
829
830 if (allocated_length <= name_length + string_length)
831 {
832 do
833 {
834 allocated_length *= 2;
835 if (! allocated_length)
836 xalloc_die ();
837 }
838 while (allocated_length <= name_length + string_length);
839
840 namebuf = xrealloc (namebuf, allocated_length + 1);
841 }
842 strcpy (namebuf + name_length, string + 1);
843 np = addname (namebuf, change_dir, false, name);
844 if (!child_head)
845 child_head = np;
846 else
847 child_tail->sibling = np;
848 child_tail = np;
849 add_hierarchy_to_namelist (np, device, false);
850 }
851 }
852
853 free (namebuf);
854 name->child = child_head;
855 }
856 }
857 \f
858 /* Auxiliary functions for hashed table of struct name's. */
859
860 static size_t
861 name_hash (void const *entry, size_t n_buckets)
862 {
863 struct name const *name = entry;
864 return hash_string (name->caname, n_buckets);
865 }
866
867 /* Compare two directories for equality of their names. */
868 static bool
869 name_compare (void const *entry1, void const *entry2)
870 {
871 struct name const *name1 = entry1;
872 struct name const *name2 = entry2;
873 return strcmp (name1->caname, name2->caname) == 0;
874 }
875
876 \f
877 /* Rebase `name' member of CHILD and all its siblings to
878 the new PARENT. */
879 static void
880 rebase_child_list (struct name *child, struct name *parent)
881 {
882 size_t old_prefix_len = child->parent->length;
883 size_t new_prefix_len = parent->length;
884 char *new_prefix = parent->name;
885
886 for (; child; child = child->sibling)
887 {
888 size_t size = child->length - old_prefix_len + new_prefix_len;
889 char *newp = xmalloc (size + 1);
890 strcpy (newp, new_prefix);
891 strcat (newp, child->name + old_prefix_len);
892 free (child->name);
893 child->name = newp;
894 child->length = size;
895
896 rebase_directory (child->directory,
897 child->parent->name, old_prefix_len,
898 new_prefix, new_prefix_len);
899 }
900 }
901
902 /* Collect all the names from argv[] (or whatever), expand them into a
903 directory tree, and sort them. This gets only subdirectories, not
904 all files. */
905
906 void
907 collect_and_sort_names (void)
908 {
909 struct name *name;
910 struct name *next_name, *prev_name = NULL;
911 int num_names;
912 struct stat statbuf;
913 Hash_table *nametab;
914
915 name_gather ();
916
917 if (!namelist)
918 addname (".", 0, false, NULL);
919
920 if (listed_incremental_option)
921 {
922 switch (chdir_count ())
923 {
924 case 0:
925 break;
926
927 case 1:
928 if (namelist->change_dir == 0)
929 USAGE_ERROR ((0, 0,
930 _("Using -C option inside file list is not "
931 "allowed with --listed-incremental")));
932 break;
933
934 default:
935 USAGE_ERROR ((0, 0,
936 _("Only one -C option is allowed with "
937 "--listed-incremental")));
938 }
939
940 read_directory_file ();
941 }
942
943 num_names = 0;
944 for (name = namelist; name; name = name->next, num_names++)
945 {
946 if (name->found_count || name->directory)
947 continue;
948 if (name->matching_flags & EXCLUDE_WILDCARDS)
949 /* NOTE: EXCLUDE_ANCHORED is not relevant here */
950 /* FIXME: just skip regexps for now */
951 continue;
952 chdir_do (name->change_dir);
953
954 if (name->name[0] == 0)
955 continue;
956
957 if (deref_stat (dereference_option, name->name, &statbuf) != 0)
958 {
959 stat_diag (name->name);
960 continue;
961 }
962 if (S_ISDIR (statbuf.st_mode))
963 {
964 name->found_count++;
965 add_hierarchy_to_namelist (name, statbuf.st_dev, true);
966 }
967 }
968
969 namelist = merge_sort (namelist, num_names, compare_names);
970
971 num_names = 0;
972 nametab = hash_initialize (0, 0,
973 name_hash,
974 name_compare, NULL);
975 for (name = namelist; name; name = next_name)
976 {
977 next_name = name->next;
978 name->caname = normalize_filename (name->name);
979 if (prev_name)
980 {
981 struct name *p = hash_lookup (nametab, name);
982 if (p)
983 {
984 /* Keep the one listed in the command line */
985 if (!name->parent)
986 {
987 if (p->child)
988 rebase_child_list (p->child, name);
989 /* FIXME: remove_directory (p->caname); ? */
990 remname (p);
991 free_name (p);
992 num_names--;
993 }
994 else
995 {
996 if (name->child)
997 rebase_child_list (name->child, p);
998 /* FIXME: remove_directory (name->caname); ? */
999 remname (name);
1000 free_name (name);
1001 continue;
1002 }
1003 }
1004 }
1005 name->found_count = 0;
1006 if (!hash_insert (nametab, name))
1007 xalloc_die ();
1008 prev_name = name;
1009 num_names++;
1010 }
1011 nametail = prev_name;
1012 hash_free (nametab);
1013
1014 namelist = merge_sort (namelist, num_names, compare_names_found);
1015
1016 if (listed_incremental_option)
1017 {
1018 for (name = namelist; name && name->name[0] == 0; name++)
1019 ;
1020 if (name)
1021 append_incremental_renames (name->directory);
1022 }
1023 }
1024
1025 /* This is like name_match, except that
1026 1. It returns a pointer to the name it matched, and doesn't set FOUND
1027 in structure. The caller will have to do that if it wants to.
1028 2. If the namelist is empty, it returns null, unlike name_match, which
1029 returns TRUE. */
1030 struct name *
1031 name_scan (const char *file_name)
1032 {
1033 size_t length = strlen (file_name);
1034
1035 while (1)
1036 {
1037 struct name *cursor = namelist_match (file_name, length);
1038 if (cursor)
1039 return cursor;
1040
1041 /* Filename from archive not found in namelist. If we have the whole
1042 namelist here, just return 0. Otherwise, read the next name in and
1043 compare it. If this was the last name, namelist->found_count will
1044 remain on. If not, we loop to compare the newly read name. */
1045
1046 if (same_order_option && namelist && namelist->found_count)
1047 {
1048 name_gather (); /* read one more */
1049 if (namelist->found_count)
1050 return 0;
1051 }
1052 else
1053 return 0;
1054 }
1055 }
1056
1057 /* This returns a name from the namelist which doesn't have ->found
1058 set. It sets ->found before returning, so successive calls will
1059 find and return all the non-found names in the namelist. */
1060 struct name *gnu_list_name;
1061
1062 struct name const *
1063 name_from_list ()
1064 {
1065 if (!gnu_list_name)
1066 gnu_list_name = namelist;
1067 while (gnu_list_name
1068 && (gnu_list_name->found_count || gnu_list_name->name[0] == 0))
1069 gnu_list_name = gnu_list_name->next;
1070 if (gnu_list_name)
1071 {
1072 gnu_list_name->found_count++;
1073 chdir_do (gnu_list_name->change_dir);
1074 return gnu_list_name;
1075 }
1076 return NULL;
1077 }
1078
1079 void
1080 blank_name_list (void)
1081 {
1082 struct name *name;
1083
1084 gnu_list_name = 0;
1085 for (name = namelist; name; name = name->next)
1086 name->found_count = 0;
1087 }
1088
1089 /* Yield a newly allocated file name consisting of FILE_NAME concatenated to
1090 NAME, with an intervening slash if FILE_NAME does not already end in one. */
1091 char *
1092 new_name (const char *file_name, const char *name)
1093 {
1094 size_t file_name_len = strlen (file_name);
1095 size_t namesize = strlen (name) + 1;
1096 int slash = file_name_len && ! ISSLASH (file_name[file_name_len - 1]);
1097 char *buffer = xmalloc (file_name_len + slash + namesize);
1098 memcpy (buffer, file_name, file_name_len);
1099 buffer[file_name_len] = '/';
1100 memcpy (buffer + file_name_len + slash, name, namesize);
1101 return buffer;
1102 }
1103
1104 /* Return nonzero if file NAME is excluded. */
1105 bool
1106 excluded_name (char const *name)
1107 {
1108 return excluded_file_name (excluded, name + FILE_SYSTEM_PREFIX_LEN (name));
1109 }
1110 \f
1111 static Hash_table *individual_file_table;
1112
1113 static void
1114 register_individual_file (char const *name)
1115 {
1116 struct stat st;
1117
1118 if (deref_stat (dereference_option, name, &st) != 0)
1119 return; /* Will be complained about later */
1120 if (S_ISDIR (st.st_mode))
1121 return;
1122
1123 hash_string_insert (&individual_file_table, name);
1124 }
1125
1126 bool
1127 is_individual_file (char const *name)
1128 {
1129 return hash_string_lookup (individual_file_table, name);
1130 }
1131
1132 \f
1133
1134 /* Return the size of the prefix of FILE_NAME that is removed after
1135 stripping NUM leading file name components. NUM must be
1136 positive. */
1137
1138 size_t
1139 stripped_prefix_len (char const *file_name, size_t num)
1140 {
1141 char const *p = file_name + FILE_SYSTEM_PREFIX_LEN (file_name);
1142 while (ISSLASH (*p))
1143 p++;
1144 while (*p)
1145 {
1146 bool slash = ISSLASH (*p);
1147 p++;
1148 if (slash)
1149 {
1150 if (--num == 0)
1151 return p - file_name;
1152 while (ISSLASH (*p))
1153 p++;
1154 }
1155 }
1156 return -1;
1157 }
1158 \f
1159 /* Return nonzero if NAME contains ".." as a file name component. */
1160 bool
1161 contains_dot_dot (char const *name)
1162 {
1163 char const *p = name + FILE_SYSTEM_PREFIX_LEN (name);
1164
1165 for (;; p++)
1166 {
1167 if (p[0] == '.' && p[1] == '.' && (ISSLASH (p[2]) || !p[2]))
1168 return 1;
1169
1170 while (! ISSLASH (*p))
1171 {
1172 if (! *p++)
1173 return 0;
1174 }
1175 }
1176 }
This page took 0.095249 seconds and 5 git commands to generate.