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