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