]>
Dogcows Code - chaz/tar/blob - src/tar.c
1 /* Tar -- a tape archiver.
2 Copyright (C) 1988, 1992 Free Software Foundation
4 This file is part of GNU Tar.
6 GNU Tar is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Tar is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Tar; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 * A tar (tape archiver) program.
23 * Written by John Gilmore, ihnp4!hoptoad!gnu, starting 25 Aug 85.
27 #include <sys/types.h> /* Needed for typedefs in tar.h */
32 * The following causes "tar.h" to produce definitions of all the
33 * global variables, rather than just "extern" declarations of them.
35 #define TAR_EXTERN /**/
42 * We should use a conversion routine that does reasonable error
43 * checking -- atoi doesn't. For now, punt. FIXME.
48 extern int getoldopt ();
49 extern void read_and ();
50 extern void list_archive ();
51 extern void extract_archive ();
52 extern void diff_archive ();
53 extern void create_archive ();
54 extern void update_archive ();
55 extern void junk_archive ();
56 extern void init_volume_number ();
57 extern void closeout_volume_number ();
60 extern time_t get_date ();
64 static FILE *namef
; /* File to read names from */
65 static char **n_argv
; /* Argv used by name routines */
66 static int n_argc
; /* Argc used by name routines */
67 static char **n_ind
; /* Store an array of names */
68 static int n_indalloc
; /* How big is the array? */
69 static int n_indused
; /* How many entries does it have? */
70 static int n_indscan
; /* How many of the entries have we scanned? */
73 extern FILE *msg_file
;
77 void add_exclude_file ();
86 char *un_quote_string ();
93 #define DEFBLOCKING 20
97 #define DEF_AR_FILE "tar.out"
100 /* For long options that unconditionally set a single flag, we have getopt
101 do it. For the others, we share the code for the equivalent short
102 named option, the name of which is stored in the otherwise-unused `val'
103 field of the `struct option'; for long options that have no equivalent
104 short option, we use nongraphic characters as pseudo short option
105 characters, starting (for no particular reason) with character 10. */
107 struct option long_options
[] =
109 {"create", 0, 0, 'c'},
110 {"append", 0, 0, 'r'},
111 {"extract", 0, 0, 'x'},
114 {"update", 0, 0, 'u'},
115 {"catenate", 0, 0, 'A'},
116 {"concatenate", 0, 0, 'A'},
117 {"compare", 0, 0, 'd'},
119 {"delete", 0, 0, 14},
123 {"directory", 1, 0, 'C'},
124 {"record-number", 0, &f_sayblock
, 1},
125 {"files-from", 1, 0, 'T'},
126 {"label", 1, 0, 'V'},
127 {"exclude-from", 1, 0, 'X'},
128 {"exclude", 1, 0, 15},
130 {"block-size", 1, 0, 'b'},
131 {"version", 0, 0, 11},
132 {"verbose", 0, 0, 'v'},
133 {"totals", 0, &f_totals
, 1},
135 {"read-full-blocks", 0, &f_reblock
, 1},
136 {"starting-file", 1, 0, 'K'},
137 {"to-stdout", 0, &f_exstdout
, 1},
138 {"ignore-zeros", 0, &f_ignorez
, 1},
139 {"keep-old-files", 0, 0, 'k'},
140 {"uncompress", 0, &f_compress
, 1},
141 {"same-permissions", 0, &f_use_protection
, 1},
142 {"preserve-permissions", 0, &f_use_protection
, 1},
143 {"modification-time", 0, &f_modified
, 1},
144 {"preserve", 0, 0, 10},
145 {"same-order", 0, &f_sorted_names
, 1},
146 {"same-owner", 0, &f_do_chown
, 1},
147 {"preserve-order", 0, &f_sorted_names
, 1},
149 {"newer", 1, 0, 'N'},
150 {"after-date", 1, 0, 'N'},
151 {"newer-mtime", 1, 0, 13},
152 {"incremental", 0, 0, 'G'},
153 {"listed-incremental", 1, 0, 'g'},
154 {"multi-volume", 0, &f_multivol
, 1},
155 {"info-script", 1, 0, 'F'},
156 {"absolute-paths", 0, &f_absolute_paths
, 1},
157 {"interactive", 0, &f_confirm
, 1},
158 {"confirmation", 0, &f_confirm
, 1},
160 {"verify", 0, &f_verify
, 1},
161 {"dereference", 0, &f_follow_links
, 1},
162 {"one-file-system", 0, &f_local_filesys
, 1},
163 {"old-archive", 0, 0, 'o'},
164 {"portability", 0, 0, 'o'},
165 {"compress", 0, &f_compress
, 1},
166 {"compress-block", 0, &f_compress
, 2},
167 {"sparse", 0, &f_sparse_files
, 1},
168 {"tape-length", 1, 0, 'L'},
169 {"remove-files", 0, &f_remove_files
, 1},
170 {"ignore-failed-read", 0, &f_ignore_failed_read
, 1},
171 {"checkpoint", 0, &f_checkpoint
, 1},
172 {"show-omitted-dirs", 0, &f_show_omitted_dirs
, 1},
173 {"volno-file", 1, 0, 17},
174 {"force-local", 0, &f_force_local
, 1},
175 {"atime-preserve", 0, &f_atime_preserve
, 1},
181 * Main routine for tar.
188 extern char version_string
[];
190 tar
= argv
[0]; /* JF: was "tar" Set program name */
191 filename_terminator
= '\n';
194 options (argc
, argv
);
197 name_init (argc
, argv
);
200 init_volume_number ();
215 fprintf (stderr
, "Total bytes written: %d\n", tot_written
);
221 label_pattern
= (struct re_pattern_buffer
*)
222 ck_malloc (sizeof *label_pattern
);
223 err
= re_compile_pattern (f_volhdr
, strlen (f_volhdr
),
227 fprintf (stderr
, "Bad regular expression: %s\n",
235 read_and (extract_archive
);
241 label_pattern
= (struct re_pattern_buffer
*)
242 ck_malloc (sizeof *label_pattern
);
243 err
= re_compile_pattern (f_volhdr
, strlen (f_volhdr
),
247 fprintf (stderr
, "Bad regular expression: %s\n",
253 read_and (list_archive
);
261 read_and (diff_archive
);
264 fprintf (stderr
, "%s\n", version_string
);
267 msg ("you must specify exactly one of the r, c, t, x, or d options\n");
268 fprintf (stderr
, "For more information, type ``%s --help''.\n", tar
);
272 closeout_volume_number ();
279 * Parse the options for tar.
286 register int c
; /* Option letter */
289 /* Set default option values */
290 blocking
= DEFBLOCKING
; /* From Makefile */
291 ar_files
= (char **) malloc (sizeof (char *) * 10);
297 while ((c
= getoldopt (argc
, argv
,
298 "-01234567Ab:BcC:df:F:g:GhikK:lL:mMN:oOpPrRsStT:uvV:wWxX:zZ",
299 long_options
, &ind
)) != EOF
)
303 case 0: /* long options that set a single flag */
306 /* File name or non-parsed option */
313 case 10: /* preserve */
314 f_use_protection
= f_sorted_names
= 1;
317 if (cmd_mode
!= CMD_NONE
)
319 cmd_mode
= CMD_VERSION
;
322 printf ("This is GNU tar, the tape archiving program.\n");
329 case 14: /* Delete in the archive */
330 if (cmd_mode
!= CMD_NONE
)
332 cmd_mode
= CMD_DELETE
;
337 add_exclude (optarg
);
340 case 16: /* -T reads null terminated filenames. */
341 filename_terminator
= '\0';
345 f_volno_file
= optarg
;
348 case 'g': /* We are making a GNU dump; save
349 directories at the beginning of
350 the archive, and include in each
351 directory its contents */
355 gnu_dumpfile
= optarg
;
368 /* JF this'll have to be modified for other
369 systems, of course! */
373 d
= getoldopt (argc
, argv
, "lmh");
375 sprintf (buf
, "/dev/rmt/%d%c", c
, d
);
391 sprintf (buf
, "/dev/rmt%d", add
+ c
- '0');
393 if (n_ar_files
== ar_files_len
)
396 ck_malloc (sizeof (char *)
397 * (ar_files_len
*= 2));
398 ar_files
[n_ar_files
++] = buf
;
402 case 'A': /* Arguments are tar files,
403 just cat them onto the end
405 if (cmd_mode
!= CMD_NONE
)
410 case 'b': /* Set blocking factor */
411 blocking
= intconv (optarg
);
414 case 'B': /* Try to reblock input */
415 f_reblock
++; /* For reading 4.2BSD pipes */
418 case 'c': /* Create an archive */
419 if (cmd_mode
!= CMD_NONE
)
421 cmd_mode
= CMD_CREATE
;
426 if (chdir (optarg
) < 0)
427 msg_perror ("Can't change directory to %d", optarg
);
431 case 'd': /* Find difference tape/disk */
432 if (cmd_mode
!= CMD_NONE
)
437 case 'f': /* Use ar_file for the archive */
438 if (n_ar_files
== ar_files_len
)
440 = (char **) ck_malloc (sizeof (char *)
441 * (ar_files_len
*= 2));
443 ar_files
[n_ar_files
++] = optarg
;
447 /* Since -F is only useful with -M , make it implied */
448 f_run_script_at_end
++;/* run this script at the end */
449 info_script
= optarg
; /* of each tape */
453 case 'G': /* We are making a GNU dump; save
454 directories at the beginning of
455 the archive, and include in each
456 directory its contents */
464 f_follow_links
++; /* follow symbolic links */
468 f_ignorez
++; /* Ignore zero records (eofs) */
470 * This can't be the default, because Unix tar
471 * writes two records of zeros, then pads out the
472 * block with garbage.
476 case 'k': /* Don't overwrite files */
478 msg ("can't keep old files on this system");
490 case 'l': /* When dumping directories, don't
491 dump files/subdirectories that are
492 on other filesystems. */
497 tape_length
= intconv (optarg
);
504 case 'M': /* Make Multivolume archive:
505 When we can't write any more
506 into the archive, re-open it,
507 and continue writing */
511 case 'N': /* Only write files newer than X */
514 new_time
= get_date (optarg
, (PTR
) 0);
515 if (new_time
== (time_t) - 1)
517 msg ("invalid date format `%s'", optarg
);
522 case 'o': /* Generate old archive */
523 if (f_gnudump
/* || f_dironly */ )
540 case 'r': /* Append files to the archive */
541 if (cmd_mode
!= CMD_NONE
)
543 cmd_mode
= CMD_APPEND
;
547 f_sayblock
++; /* Print block #s for debug */
548 break; /* of bad tar archives */
551 f_sorted_names
++; /* Names to extr are sorted */
554 case 'S': /* deal with sparse files */
558 if (cmd_mode
!= CMD_NONE
)
561 f_verbose
++; /* "t" output == "cv" or "xv" */
569 case 'u': /* Append files to the archive that
570 aren't there, or are newer than the
571 copy in the archive */
572 if (cmd_mode
!= CMD_NONE
)
574 cmd_mode
= CMD_UPDATE
;
593 case 'x': /* Extract files from the archive */
594 if (cmd_mode
!= CMD_NONE
)
596 cmd_mode
= CMD_EXTRACT
;
601 add_exclude_file (optarg
);
604 case 'z': /* Easy to type */
605 case 'Z': /* Like the filename extension .Z */
611 msg ("Unknown option. Use '%s --help' for a complete list of options.", tar
);
617 blocksize
= blocking
* RECORDSIZE
;
621 ar_files
[0] = getenv ("TAPE"); /* From environment, or */
622 if (ar_files
[0] == 0)
623 ar_files
[0] = DEF_AR_FILE
; /* From Makefile */
625 if (n_ar_files
> 1 && !f_multivol
)
627 msg ("Multiple archive files requires --multi-volume\n");
634 * Print as much help as the user's gonna get.
636 * We have to sprinkle in the KLUDGE lines because too many compilers
637 * cannot handle character strings longer than about 512 bytes. Yuk!
638 * In particular, MS-DOS and Xenix MSC and PDP-11 V7 Unix have this
644 puts ("choose one of the following:");
647 --concatenate append tar files to an archive\n\
648 -c, --create create a new archive\n\
650 --compare find differences between archive and file system\n\
651 --delete delete from the archive (not for use on mag tapes!)\n\
652 -r, --append append files to the end of an archive\n\
653 -t, --list list the contents of an archive\n\
654 -u, --update only append files that are newer than copy in archive\n\
656 --get extract files from an archive\n", stdout
);
660 --atime-preserve don't change access times on dumped files\n\
661 -b, --block-size N block size of Nx512 bytes (default N=%d)\n", DEFBLOCKING
);
663 -B, --read-full-blocks reblock as we read (for reading 4.2BSD pipes)\n\
664 -C, --directory DIR change to directory DIR\n\
665 --checkpoint print directory names while reading the archive\n\
666 ", stdout
); /* KLUDGE */
668 -f, --file [HOSTNAME:]F use archive file or device F (default %s)\n",
671 --force-local archive file is local even if has a colon\n\
672 -F, --info-script F run script at end of each tape (implies -M)\n\
673 -G, --incremental create/list/extract old GNU-format incremental backup\n\
674 -g, --listed-incremental F create/list/extract new GNU-format incremental backup\n\
675 -h, --dereference don't dump symlinks; dump the files they point to\n\
676 -i, --ignore-zeros ignore blocks of zeros in archive (normally mean EOF)\n\
677 --ignore-failed-read don't exit with non-zero status on unreadable files\n\
678 -k, --keep-old-files keep existing files; don't overwrite them from archive\n\
679 -K, --starting-file F begin at file F in the archive\n\
680 -l, --one-file-system stay in local file system when creating an archive\n\
681 -L, --tape-length LENGTH change tapes after writing LENGTH\n\
682 ", stdout
); /* KLUDGE */
684 -m, --modification-time don't extract file modified time\n\
685 -M, --multi-volume create/list/extract multi-volume archive\n\
686 -N, --after-date DATE,\n\
687 --newer DATE only store files newer than DATE\n\
688 -o, --old-archive,\n\
689 --portability write a V7 format archive, rather than ANSI format\n\
690 -O, --to-stdout extract files to standard output\n\
691 -p, --same-permissions,\n\
692 --preserve-permissions extract all protection information\n\
693 -P, --absolute-paths don't strip leading `/'s from file names\n\
694 --preserve like -p -s\n\
695 ", stdout
); /* KLUDGE */
697 -R, --record-number show record number within archive with each message\n\
698 --remove-files remove files after adding them to the archive\n\
700 --preserve-order list of names to extract is sorted to match archive\n\
701 --same-owner create extracted files with the same ownership \n\
702 -S, --sparse handle sparse files efficiently\n\
703 -T, --files-from F get names to extract or create from file F\n\
704 --null -T reads null-terminated names, disable -C\n\
705 --totals print total bytes written with --create\n\
706 -v, --verbose verbosely list files processed\n\
707 -V, --label NAME create archive with volume name NAME\n\
708 --version print tar program version number\n\
709 -w, --interactive,\n\
710 --confirmation ask for confirmation for every action\n\
711 ", stdout
); /* KLUDGE */
713 -W, --verify attempt to verify the archive after writing it\n\
714 --exclude FILE exclude file FILE\n\
715 -X, --exclude-from FILE exclude files listed in FILE\n\
716 -z, -Z, --compress,\n\
717 --uncompress filter the archive through compress\n\
718 -[0-7][lmh] specify drive and density\n\
726 if (n_indalloc
== n_indused
)
729 n_ind
= (char **) (n_indused
? ck_realloc (n_ind
, n_indalloc
* sizeof (char *)): ck_malloc (n_indalloc
* sizeof (char *)));
731 n_ind
[n_indused
++] = name
;
735 * Set up to gather file names for tar.
737 * They can either come from stdin or from argv.
740 name_init (argc
, argv
)
749 msg ("too many args with -T option");
752 if (!strcmp (name_file
, "-"))
758 namef
= fopen (name_file
, "r");
761 msg_perror ("can't open file %s", name_file
);
768 /* Get file names from argv, after options. */
774 /* Read the next filename read from STREAM and null-terminate it.
775 Put it into BUFFER, reallocating and adjusting *PBUFFER_SIZE if necessary.
776 Return the new value for BUFFER, or NULL at end of file. */
779 read_name_from_file (buffer
, pbuffer_size
, stream
)
781 size_t *pbuffer_size
;
785 register int indx
= 0;
786 register size_t buffer_size
= *pbuffer_size
;
788 while ((c
= getc (stream
)) != EOF
&& c
!= filename_terminator
)
790 if (indx
== buffer_size
)
792 buffer_size
+= NAMSIZ
;
793 buffer
= ck_realloc (buffer
, buffer_size
+ 2);
797 if (indx
== 0 && c
== EOF
)
799 if (indx
== buffer_size
)
801 buffer_size
+= NAMSIZ
;
802 buffer
= ck_realloc (buffer
, buffer_size
+ 2);
805 *pbuffer_size
= buffer_size
;
810 * Get the next name from argv or the name file.
812 * Result is in static storage and can't be relied upon across two calls.
814 * If CHANGE_DIRS is non-zero, treat a filename of the form "-C" as
815 * meaning that the next filename is the name of a directory to change to.
816 * If `filename_terminator' is '\0', CHANGE_DIRS is effectively always 0.
820 name_next (change_dirs
)
823 static char *buffer
; /* Holding pattern */
824 static int buffer_siz
;
826 register char *q
= 0;
827 register int next_name_is_dir
= 0;
828 extern char *un_quote_string ();
832 buffer
= ck_malloc (NAMSIZ
+ 2);
835 if (filename_terminator
== '\0')
840 if (n_indscan
< n_indused
)
841 p
= n_ind
[n_indscan
++];
842 else if (optind
< n_argc
)
843 /* Names come from argv, after options */
844 p
= n_argv
[optind
++];
848 msg ("Missing filename after -C");
852 /* JF trivial support for -C option. I don't know if
853 chdir'ing at this point is dangerous or not.
854 It seems to work, which is all I ask. */
855 if (change_dirs
&& !q
&& p
[0] == '-' && p
[1] == 'C' && p
[2] == '\0')
863 msg_perror ("Can't chdir to %s", p
);
867 /* End of JF quick -C hack */
869 if (f_exclude
&& check_exclude (p
))
871 return un_quote_string (p
);
873 while (p
= read_name_from_file (buffer
, &buffer_siz
, namef
))
877 continue; /* Ignore empty lines. */
878 q
= p
+ strlen (p
) - 1;
879 while (q
> p
&& *q
== '/')/* Zap trailing "/"s. */
881 if (change_dirs
&& next_name_is_dir
== 0
882 && p
[0] == '-' && p
[1] == 'C' && p
[2] == '\0')
884 next_name_is_dir
= 1;
887 if (next_name_is_dir
)
890 msg_perror ("Can't change to directory %s", p
);
891 next_name_is_dir
= 0;
894 if (f_exclude
&& check_exclude (p
))
896 return un_quote_string (p
);
903 * Close the name file, if any.
909 if (namef
!= NULL
&& namef
!= stdin
)
915 * Gather names in a list for scanning.
916 * Could hash them later if we really care.
918 * If the names are already sorted to match the archive, we just
919 * read them one by one. name_gather reads the first one, and it
920 * is called by name_match as appropriate to read the next ones.
921 * At EOF, the last name read is just left in the buffer.
922 * This option lets users of small machines extract an arbitrary
923 * number of files by doing "tar t" and editing down the list of files.
929 static struct name
*namebuf
; /* One-name buffer */
931 static char *chdir_name
;
938 namebuf
= (struct name
*) ck_malloc (sizeof (struct name
) + NAMSIZ
);
943 if (*p
== '-' && p
[1] == 'C' && p
[2] == '\0')
945 chdir_name
= name_next (0);
949 msg ("Missing file name after -C");
952 namebuf
->change_dir
= chdir_name
;
954 namebuf
->length
= strlen (p
);
955 if (namebuf
->length
>= namelen
)
957 namebuf
= (struct name
*) ck_realloc (namebuf
, sizeof (struct name
) + namebuf
->length
);
958 namelen
= namebuf
->length
;
960 strncpy (namebuf
->name
, p
, namebuf
->length
);
961 namebuf
->name
[namebuf
->length
] = 0;
962 namebuf
->next
= (struct name
*) NULL
;
970 /* Non sorted names -- read them all in */
971 while (p
= name_next (0))
976 * Add a name to the namelist.
980 char *name
; /* pointer to name */
982 register int i
; /* Length of string */
983 register struct name
*p
; /* Current struct pointer */
984 static char *chdir_name
;
987 if (name
[0] == '-' && name
[1] == 'C' && name
[2] == '\0')
989 chdir_name
= name_next (0);
990 name
= name_next (0);
993 msg ("Missing file name after -C");
996 if (chdir_name
[0] != '/')
998 char *path
= ck_malloc (PATH_MAX
);
999 #if defined(__MSDOS__) || defined(HAVE_GETCWD) || defined(_POSIX_VERSION)
1000 if (!getcwd (path
, PATH_MAX
))
1002 msg ("Couldn't get current directory.");
1010 msg ("Couldn't get current directory: %s", path
);
1014 chdir_name
= new_name (path
, chdir_name
);
1023 p
= (struct name
*) malloc ((unsigned) (sizeof (struct name
) + i
));
1026 p
= (struct name
*) malloc ((unsigned) (sizeof (struct name
)));
1030 msg ("cannot allocate mem for name '%s'.", name
);
1032 msg ("cannot allocate mem for chdir record.");
1035 p
->next
= (struct name
*) NULL
;
1040 strncpy (p
->name
, name
, i
);
1041 p
->name
[i
] = '\0'; /* Null term */
1046 p
->regexp
= 0; /* Assume not a regular expression */
1047 p
->firstch
= 1; /* Assume first char is literal */
1048 p
->change_dir
= chdir_name
;
1049 p
->dir_contents
= 0; /* JF */
1052 if (index (name
, '*') || index (name
, '[') || index (name
, '?'))
1054 p
->regexp
= 1; /* No, it's a regexp */
1055 if (name
[0] == '*' || name
[0] == '[' || name
[0] == '?')
1056 p
->firstch
= 0; /* Not even 1st char literal */
1068 * Return nonzero if name P (from an archive) matches any name from
1069 * the namelist, zero if not.
1075 register struct name
*nlp
;
1079 if (0 == (nlp
= namelist
)) /* Empty namelist is easy */
1083 if (nlp
->change_dir
&& chdir (nlp
->change_dir
))
1084 msg_perror ("Can't change to directory %d", nlp
->change_dir
);
1089 for (; nlp
!= 0; nlp
= nlp
->next
)
1091 /* If first chars don't match, quick skip */
1092 if (nlp
->firstch
&& nlp
->name
[0] != p
[0])
1095 /* Regular expressions (shell globbing, actually). */
1098 if (fnmatch (nlp
->name
, p
, FNM_LEADING_DIR
) == 0)
1100 nlp
->found
= 1; /* Remember it matched */
1103 free ((void *) namelist
);
1106 if (nlp
->change_dir
&& chdir (nlp
->change_dir
))
1107 msg_perror ("Can't change to directory %s", nlp
->change_dir
);
1108 return 1; /* We got a match */
1113 /* Plain Old Strings */
1114 if (nlp
->length
<= len
/* Archive len >= specified */
1115 && (p
[nlp
->length
] == '\0' || p
[nlp
->length
] == '/')
1116 /* Full match on file/dirname */
1117 && strncmp (p
, nlp
->name
, nlp
->length
) == 0) /* Name compare */
1119 nlp
->found
= 1; /* Remember it matched */
1122 free ((void *) namelist
);
1125 if (nlp
->change_dir
&& chdir (nlp
->change_dir
))
1126 msg_perror ("Can't change to directory %s", nlp
->change_dir
);
1127 return 1; /* We got a match */
1132 * Filename from archive not found in namelist.
1133 * If we have the whole namelist here, just return 0.
1134 * Otherwise, read the next name in and compare it.
1135 * If this was the last name, namelist->found will remain on.
1136 * If not, we loop to compare the newly read name.
1138 if (f_sorted_names
&& namelist
->found
)
1140 name_gather (); /* Read one more */
1141 if (!namelist
->found
)
1149 * Print the names of things in the namelist that were not matched.
1154 register struct name
*nlp
, *next
;
1157 for (nlp
= namelist
; nlp
!= 0; nlp
= next
)
1161 msg ("%s not found in archive", nlp
->name
);
1164 * We could free() the list, but the process is about
1165 * to die anyway, so save some CPU time. Amigas and
1166 * other similarly broken software will need to waste
1170 if (!f_sorted_names
)
1174 namelist
= (struct name
*) NULL
;
1175 namelast
= (struct name
*) NULL
;
1179 while (0 != (p
= name_next (1)))
1180 msg ("%s not found in archive", p
);
1184 /* These next routines were created by JF */
1192 /* This is like name_match(), except that it returns a pointer to the name
1193 it matched, and doesn't set ->found The caller will have to do that
1194 if it wants to. Oh, and if the namelist is empty, it returns 0, unlike
1195 name_match(), which returns TRUE */
1201 register struct name
*nlp
;
1205 if (0 == (nlp
= namelist
)) /* Empty namelist is easy */
1208 for (; nlp
!= 0; nlp
= nlp
->next
)
1210 /* If first chars don't match, quick skip */
1211 if (nlp
->firstch
&& nlp
->name
[0] != p
[0])
1214 /* Regular expressions */
1217 if (fnmatch (nlp
->name
, p
, FNM_LEADING_DIR
) == 0)
1218 return nlp
; /* We got a match */
1222 /* Plain Old Strings */
1223 if (nlp
->length
<= len
/* Archive len >= specified */
1224 && (p
[nlp
->length
] == '\0' || p
[nlp
->length
] == '/')
1225 /* Full match on file/dirname */
1226 && strncmp (p
, nlp
->name
, nlp
->length
) == 0) /* Name compare */
1227 return nlp
; /* We got a match */
1231 * Filename from archive not found in namelist.
1232 * If we have the whole namelist here, just return 0.
1233 * Otherwise, read the next name in and compare it.
1234 * If this was the last name, namelist->found will remain on.
1235 * If not, we loop to compare the newly read name.
1237 if (f_sorted_names
&& namelist
->found
)
1239 name_gather (); /* Read one more */
1240 if (!namelist
->found
)
1243 return (struct name
*) 0;
1246 /* This returns a name from the namelist which doesn't have ->found set.
1247 It sets ->found before returning, so successive calls will find and return
1248 all the non-found names in the namelist */
1250 struct name
*gnu_list_name
;
1256 gnu_list_name
= namelist
;
1257 while (gnu_list_name
&& gnu_list_name
->found
)
1258 gnu_list_name
= gnu_list_name
->next
;
1261 gnu_list_name
->found
++;
1262 if (gnu_list_name
->change_dir
)
1263 if (chdir (gnu_list_name
->change_dir
) < 0)
1264 msg_perror ("can't chdir to %s", gnu_list_name
->change_dir
);
1265 return gnu_list_name
->name
;
1276 for (n
= namelist
; n
; n
= n
->next
)
1281 new_name (path
, name
)
1286 path_buf
= (char *) malloc (strlen (path
) + strlen (name
) + 2);
1289 msg ("Can't allocate memory for name '%s/%s", path
, name
);
1292 (void) sprintf (path_buf
, "%s/%s", path
, name
);
1296 /* returns non-zero if the luser typed 'y' or 'Y', zero otherwise. */
1299 confirm (action
, file
)
1300 char *action
, *file
;
1303 static FILE *confirm_file
= 0;
1304 extern FILE *msg_file
;
1305 extern char TTY_NAME
[];
1307 fprintf (msg_file
, "%s %s?", action
, file
);
1311 confirm_file
= (archive
== 0) ? fopen (TTY_NAME
, "r") : stdin
;
1314 msg ("Can't read confirmation from user");
1318 c
= getc (confirm_file
);
1319 for (nl
= c
; nl
!= '\n' && nl
!= EOF
; nl
= getc (confirm_file
))
1321 return (c
== 'y' || c
== 'Y');
1329 int size_exclude
= 0;
1330 int free_exclude
= 0;
1332 char **re_exclude
= 0;
1333 int size_re_exclude
= 0;
1334 int free_re_exclude
= 0;
1341 /* char **tmp_ptr;*/
1344 un_quote_string (name
);
1345 size_buf
= strlen (name
);
1349 x_buffer
= (char *) ck_malloc (size_buf
+ 1024);
1350 free_x_buffer
= 1024;
1352 else if (free_x_buffer
<= size_buf
)
1357 old_x_buffer
= x_buffer
;
1358 x_buffer
= (char *) ck_realloc (x_buffer
, size_x_buffer
+ 1024);
1359 free_x_buffer
= 1024;
1360 for (tmp_ptr
= exclude
; tmp_ptr
< exclude
+ size_exclude
; tmp_ptr
++)
1361 *tmp_ptr
= x_buffer
+ ((*tmp_ptr
) - old_x_buffer
);
1362 for (tmp_ptr
= re_exclude
; tmp_ptr
< re_exclude
+ size_re_exclude
; tmp_ptr
++)
1363 *tmp_ptr
= x_buffer
+ ((*tmp_ptr
) - old_x_buffer
);
1366 if (is_regex (name
))
1368 if (free_re_exclude
== 0)
1370 re_exclude
= (char **) (re_exclude
? ck_realloc (re_exclude
, (size_re_exclude
+ 32) * sizeof (char *)): ck_malloc (sizeof (char *) * 32));
1371 free_re_exclude
+= 32;
1373 re_exclude
[size_re_exclude
] = x_buffer
+ size_x_buffer
;
1379 if (free_exclude
== 0)
1381 exclude
= (char **) (exclude
? ck_realloc (exclude
, (size_exclude
+ 32) * sizeof (char *)): ck_malloc (sizeof (char *) * 32));
1384 exclude
[size_exclude
] = x_buffer
+ size_x_buffer
;
1388 strcpy (x_buffer
+ size_x_buffer
, name
);
1389 size_x_buffer
+= size_buf
+ 1;
1390 free_x_buffer
-= size_buf
+ 1;
1394 add_exclude_file (file
)
1400 if (strcmp (file
, "-"))
1401 fp
= fopen (file
, "r");
1403 /* Let's hope the person knows what they're doing. */
1404 /* Using -X - -T - -f - will get you *REALLY* strange
1410 msg_perror ("can't open %s", file
);
1413 while (fgets (buf
, 1024, fp
))
1418 end_str
= rindex (buf
, '\n');
1431 return index (str
, '*') || index (str
, '[') || index (str
, '?');
1434 /* Returns non-zero if the file 'name' should not be added/extracted */
1436 check_exclude (name
)
1441 extern char *strstr ();
1443 for (n
= 0; n
< size_re_exclude
; n
++)
1445 if (fnmatch (re_exclude
[n
], name
, FNM_LEADING_DIR
) == 0)
1448 for (n
= 0; n
< size_exclude
; n
++)
1450 /* Accept the output from strstr only if it is the last
1451 part of the string. There is certainly a faster way to
1453 if ((str
= strstr (name
, exclude
[n
]))
1454 && (str
== name
|| str
[-1] == '/')
1455 && str
[strlen (exclude
[n
])] == '\0')
This page took 0.095434 seconds and 5 git commands to generate.