]> Dogcows Code - chaz/tar/blob - ChangeLog
New test verbose.at
[chaz/tar] / ChangeLog
1 2006-10-02 Sergey Poznyakoff <gray@gnu.org.ua>
2
3 * THANKS: Add Joerg Weilbier
4 * src/buffer.c (new_volume): Initialize current_block
5 * src/xheader.c (xheader_string_end): Fix diagnostic message.
6 * tests/multiv05.at: New testcase.
7 * tests/Makefile.am, tests/testsuite.at: Add multiv05.at
8
9 2006-09-27 Sergey Poznyakoff <gray@gnu.org.ua>
10
11 * bootstrap: Use ${package} instead of hardcoding package name
12 * doc/tar.texi: Minor fix
13 * src/tar.c (doc0, doc1, initialize_argp_doc): Removed. Rely on
14 the new argp method instead.
15
16 2006-09-12 Sergey Poznyakoff <gray@gnu.org.ua>
17
18 * README: Fix a typo
19
20 2006-09-08 Paul Eggert <eggert@cs.ucla.edu>
21
22 Adjust to latest gnulib.
23 * lib/.cvsignore: Add at-func.c, configmake.h, fchmodat.c,
24 fcntl.h, fcntl_.h, inttypes_.h, lstat.c, lstat.h.
25 * tests/testsuite.at (AT_TAR_MKHIER): Use install-sh -d
26 rather than the no-longer-included mkinstalldirs.
27
28 2006-09-08 Sergey Poznyakoff <gray@gnu.org.ua>
29
30 * src/incremen.c (try_purge_directory): Initialize struct st. Fix
31 condition for selecting candidates for removal.
32 * README-alpha: List texinfo among build prerequisites for the CVS
33 version.
34
35 * bootstrap (intl_files_to_remove): Do not remove m4/inttypes-h.m4
36 and m4/inttypes-pri.m4
37
38 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
39
40 * bootstrap: Set XGETTEXT_OPTIONS to flag our printf-format functions,
41 so that translators are warned about strings that are formats but
42 don't look like formats. This might help prevent core dumps.
43 * configure.ac (AM_GNU_GETTEXT): Upgrade to need-formatstring-macros.
44 Suggested by Eric Blake to avoid problems like
45 <http://lists.gnu.org/archive/html/bug-coreutils/2006-07/msg00087.html>.
46 (AM_GNU_GETTEXT_VERSION): Upgrade from 0.12.1 to 0.15. The gettext
47 manual says we should use the version number normally expected of
48 maintainers, neither more nor less.
49
50 * bootstrap (get_translations):
51 Don't exclude ky.po; it is working again.
52
53 2006-08-09 Paul Eggert <eggert@cs.ucla.edu>
54
55 * bootstrap (get_translations):
56 Don't exclude ja.po; it is working again.
57 Don't remove all old .po files if we're merely updating one.
58 * po/.cvsignore: Add Makevars.
59
60 2006-08-07 Paul Eggert <eggert@cs.ucla.edu>
61
62 * src/tar.c: Work around limitation imposed by gettext 0.15
63 by concatenating strings with "\v" after translation.
64 (doc): Remove, splitting into:
65 (doc0, doc1): New constants.
66 (argp): Don't use doc; just initialize to NULL.
67 (initialize_argp_doc): New function.
68 (decode_options): Use it.
69
70 * bootstrap: Redo po file retrieval to match Bison's method,
71 since the translation project changed its index format.
72 Don't use --assume-autoconf; it's now replaced
73 by looking in configure.ac.
74 (m4/codeset.m4, m4/intdiv.m4, m4/inttypes-pri.m4, m4/isc-posix.m4):
75 (m4/lcmessage.m4, m4/onceonly_2_57.m4, m4/gettext.m4, m4/glibc21.m4):
76 (m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4):
77 (m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4):
78 Don't rename to ..._gl.m4, as this is no longer needed.
79 (m4/geteext.m4): Patch to remove the need for intl/*.
80 Use autopoint manually, then remove the intl files,
81 then undo changes to gnulib files that autoreconf made,
82 and then run aclocal/autoconf/autoheader/automake.
83 This makes our bootstrap procedure closer to Bison's.
84 (po/Makevars): Generate automatically.
85 * configure.ac (AC_PREREQ): Update from 2.59 to 2.60.
86 (gl_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T): Remove.
87 * gnulib.modules: Add inttypes, stdint.
88 * lib/.cvsignore: Add close-stream.c, close-stream.h,
89 stdint.h, stdint_.h.
90 * po/Makefile: Remove; now automatically generated.
91
92 * src/incremen.c (read_incr_db_01): Check input strings more
93 carefully. Do not pass arbitrary char values to isspace, as
94 this has undefined behavior. Likewise for assigning arbitrary
95 uintmax_t values to other types.
96 (read_negative_num, read_unsigned_num, read_timespec):
97 New functions, to check input values a bit more carefuly.
98 (read_num): Use read_unsigned_num. New arg MAX_VAL;
99 all callers changed.
100 (read_incr_db_2): Use these new functions.
101 Use a consistent diagnostic for unexpected EOF.
102 (read_directory_file): Do not assign arbitrary uintmax_t value
103 to int.
104 (read_timespec, write_directory_file_entry, write_directory_file):
105 Handle negative time_t values correctly. We don't bother to do
106 this with pre-2 formats, since presumably the time stamps were
107 output incorrectly.
108
109 * src/tar.c (doc): Don't use \v in an argument to gettext;
110 gettext 0.15 rejects this.
111
112 2006-07-24 Sergey Poznyakoff <gray@gnu.org.ua>
113
114 * src/tar.c (decode_options): Do not require -L with -M -Hpax.
115 It could be needed in future, but currently it is not.
116 * src/create.c (to_chars_subst): Update comment regarding OLDGNU
117 vs. GNU format differences.
118 (mode_to_chars): Treat OLDGNU_FORMAT same as GNU_FORMAT. Fixes bug
119 reported by TAMUKI Shoichi <tamuki@linet.gr.jp>, which caused
120 equivalent `tar cf ...' and `tar rf ...' commands to produce
121 different archives.
122
123 * tests/append02.at: New test case
124 * tests/Makefile.am, tests/testsuite.at: Add append02.at
125
126 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
127
128 * bootstrap: Adjust to today's change to gnulib-tool by invoking
129 it with --assume-autoconf='latest-stable'.
130
131 2006-07-16 Paul Eggert <eggert@cs.ucla.edu>
132
133 Adjust to recent gnulib changes.
134 * lib/.cvsignore: Remove atexit.c, exit.c, getndelim2.c, getndelim2.h,
135 pathmax.h, paxconvert.c, paxerror.h, xstrdup.c.
136 Add inttypes.h, mktime.c, wcwidth.h, xstrndup.c, xstrndup.h.
137 * src/create.c (start_header): Adjust to API change to mode_adjust.
138
139 2006-07-09 Sergey Poznyakoff <gray@gnu.org.ua>
140
141 * THANKS: Add Ralf Wildenhues
142 * NEWS: Update
143
144 2006-07-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
145
146 * doc/dumpdir.texi, doc/snapshot.texi, doc/sparse.texi,
147 doc/tar.texi: Fix some typos.
148
149 2006-07-06 Sergey Poznyakoff <gray@gnu.org.ua>
150
151 tar --index-file=FILE --file=- sent the archive to FILE, and
152 the listing to stderr. Bug reported by Marcin Gryszkalis
153 <mg@fork.pl>
154
155 * src/buffer.c (_open_archive): Remove stdlis initialization
156 * src/tar.c (decode_options): Initialize stdlis
157 * tests/indexfile.at: New test case
158 * tests/testsuite.at: Include indexfile.at
159 * tests/Makefile.am (TESTSUITE_AT): Add indexfile.at
160
161 2006-07-05 Sergey Poznyakoff <gray@gnu.org.ua>
162
163 * doc/Makefile.am (manual): Fix TEXINPUTS
164 * doc/rendition.texi (FIXME): Do not use deprecated @quote-args.
165 Do not use @allow-recursion. In its current form the macro is not
166 recursive.
167
168 2006-07-03 Sergey Poznyakoff <gray@gnu.org.ua>
169
170 * bootstrap (update_po): Fix single translation update
171
172 2006-07-03 Sergey Poznyakoff <gray@gnu.org.ua>
173
174 * configure.ac (AC_CHECK_FUNCS): Check for getdtablesize
175 * src/common.h (closeopen): New function
176 * src/misc.c (chdir_arg): Use x2nrealloc to reallocate wd.
177 (get_max_open_files,closeopen): New functions
178 (chdir_do): Do not use save_cwd if it was already used more than
179 max_open_files-4 times to avoid running off the file
180 descriptors.
181 * src/tar.c (main): Call closeopen
182 * doc/tar.texi: Update --directory description
183 * NEWS: Update
184
185 2006-06-26 Sergey Poznyakoff <gray@gnu.org.ua>
186
187 * doc/tar.texi: Update. Add cross-references.
188 * doc/sparse.texi: Add cross-references.
189
190 2006-06-25 Sergey Poznyakoff <gray@gnu.org.ua>
191
192 * scripts/xsparse.c: A sample utility to expand sparse files
193 extracted by third-party tars. It is not meant to be installed nor
194 to be included in the distribution. It is here, so that it can be
195 obtained either from CVS or from the tar web site.
196 * doc/Makefile.am (tar_TEXINFOS): Sorted
197 * doc/tar.texi (Other Tars): New node describing how to extract
198 GNU-specific member formats using third-party tars.
199 * src/common.h (sparse_file_p): Remove
200 * src/sparse.c: Likewise
201 * src/create.c: Use ST_IS_SPARSE instead of sparse_file_p (update
202 paxutils first)
203 * src/tar.c: --sparse-version turns on --sparse
204
205 2006-06-24 Sergey Poznyakoff <gray@gnu.org.ua>
206
207 * src/buffer.c (print_total_stats): Add default case.
208 * src/common.h (name_init): New prototype.
209 (xheader_string_end): Return bool.
210 * src/extract.c (extract_volhdr): Add missing return
211 * src/incremen.c: Remove not used variables
212 * src/sparse.c (pax_dump_header_0): Return false if
213 xheader_string_end fails (for 0.1 formats).
214 (pax_dump_header): Return meaningful value
215 * src/transform.c (segm_count): Change type to size_t
216 * src/xheader.c (xhdr_tab.decoder): pass keyword as a second
217 argument. All callers changed.
218 (decode_record): Check for numeric overflow
219 (xheader_string_end): Return boolean value. Check for possible
220 numeric overflow
221
222 2006-06-23 Sergey Poznyakoff <gray@gnu.org.ua>
223
224 * doc/sparse.texi: New file
225 * doc/Makefile.am (tar_TEXINFOS): Add sparse.texi
226 * doc/intern.texi (Sparse Formats): New node
227 * doc/tar.texi: Update master menu
228
229 * src/common.h (tar_sparse_major,tar_sparse_minor): New globals.
230 * src/sparse.c: Implement sparse format versioning. Implement new
231 version (1.0) of PAX sparse format.
232 (pax_sparse_member_p): Fix condition
233 (pax_dump_header): A dispatcher function
234 (pax_dump_header_0,pax_dump_header_1): New functions.
235 (pax_optab): Update
236 (oldgnu_dump_header): Minor fix: make sure
237 sparse_header.isextended is set before calling
238 set_next_block_after
239 * src/tar.c: New option --sparse-version
240 * src/tar.h (struct tar_stat_info.sparse_major,sparse_minor): New
241 members.
242 * src/xheader.c: Implement new keywords: GNU.sparse.name,
243 GNU.sparse.major, GNU.sparse.minor, GNU.sparse.realsize
244
245 * tests/spmpv00.at, tests/spmvp01.at, tests/spmvp10.at: New
246 testcases.
247
248 * tests/Makefile.am: Add spmvp00.at, spmpv01.at, spmpv10.at
249 * tests/shortrec.at: Explicitely give `-f -' to the tar invocation
250 * tests/sparsemvp.at: Rewritten as an include file.
251 (TAR_MVP_TEST): New macro
252 * tests/testsuite.at: Include sparsemvp.at, spmvp00.at,
253 spmvp01.at, spmvp10.at
254
255 2006-06-21 Sergey Poznyakoff <gray@gnu.org.ua>
256
257 * doc/tar.texi (Overriding File Metadata): New node
258 Document --mtime option.
259 * src/common.h (set_mtime_option,mtime_option): New globals
260 * src/create.c (start_header): Override mtime if requested
261 * src/tar.c: Implement new option, --mtime, allowing to set
262 modification times for all archive members during creation.
263 (struct tar_args): textual_date_option replaced with a linked list
264 textual_date. All references updated.
265 (get_date_or_file,report_textual_dates): New functions.
266 * configure.ac: Raise version number to 1.15.92
267 * NEWS: Update
268
269 2006-06-20 Sergey Poznyakoff <gray@gnu.org.ua>
270
271 * src/common.h (struct name.explicit): Remove
272 Use variable names in all declarations
273 (name_scan): Remove second argument
274 * src/delete.c: Remove second argument from calls to name_scan
275 * src/update.c: Likewise
276 * src/incremen.c (procdir): Use is_individual_file to check for
277 files explicitely specified in the command line. Fixes bug
278 reported by Dat Head on 19 Jun 2006 (descending into mountpoints
279 with --one-file-system in use)
280 * src/misc.c (maybe_backup_file): Second argument is bool
281 * src/names.c (name_next_elt): Call register_individual_file
282 (namelist_match): Remove third argument
283 (name_match): Change return type to bool
284 (name_scan): Remove second argument
285 * src/sparse.c (pax_dump_header): Store original sparse file name
286 in GNU.sparse.name variable. The name field in the ustar header
287 now contains generated name (%d/GNUSparseFile.%p/%f), so that
288 non-pax-aware tars won't extract the file under the original
289 filename.
290 * src/xheader.c (GNU.sparse.name): New variable for storing sparse
291 file name.
292
293 2006-06-13 Sergey Poznyakoff <gray@gnu.org.ua>
294
295 * doc/Makefile.am (check-options): Expand macros before grepping
296 in $(info_TEXINFOS)
297 * doc/rendition.texi (FIXME) [!PROOF_FOOTNOTED]: Enclose in a
298 cartouche
299 * doc/tar.texi: Define op as codeindex. Use special macros to
300 populate it
301 Consequently prefer @dfn{long options} over @dfn{mnemonic
302 options}.
303 Document --unquote, --no-unquote
304 (Short Option Summary): Build a table of cross-references to the
305 corresponding long options.
306 (Using Multiple Tapes,Multi-Volume Archives): Rewritten
307
308 * doc/value.texi (xopindex,opsummary): New macros
309
310 * doc/Makefile.am (check-options): New goal
311 * doc/tar.texi: Update
312 * src/tar.c: Implement --overwrite-dir option (long ago
313 documented).
314
315 2006-06-12 Sergey Poznyakoff <gray@gnu.org.ua>
316
317 * doc/tar.texi: Document better the --totals option
318 * NEWS: Update
319 * src/buffer.c (total_blocks_deleted): New variable
320 (set_start_time): Set volume_start_time and last_stat_time as well
321 (set_volume_start_time): New function
322 (compute_duration): Do not call set_start_time, update
323 last_stat_time instead. Use it in calculation instead of
324 start_time, which is now set only once, upon startup.
325 (print_total_written): Removed.
326 (print_total_stats): New function for printing byte/speed statistics.
327 (_open_archive): Detect attempts to update compressed archives.
328 (_gnu_flush_write): Always update prev_written.
329 (open_archive): Call set_volume_start_time.
330 * src/common.h (volume_start_time,last_stat_time): New globals
331 (print_total_written): Replaced with:
332 (print_total_stats): New function
333 * src/delete.c (records_skipped): Remove static qualifier, the
334 variable is used by print_total_stats in buffer.c
335 * src/extract.c (check_time): Use volume_start_time when checking
336 for timestamp plausability.
337 * src/tar.c: (options, parse_opt): Allow for optional argument to
338 the --totals option, which specifies a signal upon delivery of which
339 the statistics must be output.
340 (main): Call print_total_stats if total_option is set.
341
342 2006-06-11 Sergey Poznyakoff <gray@gnu.org.ua>
343
344 * src/xheader.c (xheader_set_single_keyword): Fix typo.
345 (decode_time): Avoid using gotos.
346
347 * doc/mastermenu.el: New file
348 * doc/Makefile.am (master-menu): New goal
349 * doc/tar.texi: Update master menu
350
351 2006-06-10 Sergey Poznyakoff <gray@gnu.org.ua>
352
353 * doc/tar.texi: Remove leftover include
354
355 2006-06-09 Sergey Poznyakoff <gray@gnu.org.ua>
356
357 * doc/Makefile.am (tar_TEXINFOS): Add intern.texi
358 (EXTRA_DIST): Remove convtexi.pl, add texify.sed
359 * doc/intern.texi: New file
360 * doc/convtexi.pl: Remove
361 * doc/texify.sed: Auxiliary script to convert ../src/tar.h to
362 header.texi
363 * doc/rendition.texi: Fix typo
364 * doc/tar.texi: Update
365 * src/tar.h: Fix indentation, introduce end-of-format marker for
366 texify.sed
367
368 * THANKS: Add Jason Armistead
369 * doc/tar.texi: Update
370 * NEWS: Update
371 * src/buffer.c: Implement more flexible checkpoint style
372 * src/common.h (checkpoint_option): Change type to unsigned
373 (checkpoint_style): New variable.
374 * src/tar.c: --checkpoint takes an optional argument specifying
375 number of records between two successive checkpoints (proposed
376 by Jason Armistead on 2004-06-22). Optional dot starting the
377 argument means "print dots instead of textual checkpoints".
378 (tar_help): New function
379 * src/transform.c: Minor fixes.
380
381 2006-06-08 Sergey Poznyakoff <gray@gnu.org.ua>
382
383 * gnulib.modules: Add mkdtemp
384 * doc/dumpdir.texi: New file
385 * doc/Makefile.am (tar_TEXINFOS): Add dumpdir.texi
386 * doc/tar.texi: Document dumpdir format
387 * src/incremen.c (dumpdir_locate,obstack_code_rename):
388 (purge_directory): Re-implement renaming. Introduce
389 'X' control code.
390 (make_tmp_dir_name): Remove
391
392 * src/transform.c (set_transform_expr,_transform_name_to_obstack):
393 Implement NUMBER flag.
394 (add_char_segment): Fix length assignement
395
396 * doc/tar.texi: Update
397
398 2006-06-07 Sergey Poznyakoff <gray@gnu.org.ua>
399
400 * src/transform.c (transform_name_fp): Run fun even if
401 _transform_name_to_obstack returns false.
402 (_transform_name_to_obstack,set_transform_expr): Implement GNU
403 extension case conversion operations.
404
405 * doc/tar.texi (transform): Document the option.
406
407 2006-06-02 Sergey Poznyakoff <gray@gnu.org.ua>
408
409 * NEWS: Update
410 * src/common.h (set_transform_expr): New function
411 * tests/Makefile.am: Add incr04.at
412 * tests/testsuite.at: Likewise
413 * tests/incr04.at: New test case
414 * tests/long01.at: Fix typo in the comment
415 * tests/multiv04.at: Use genfile --files-from
416
417 (Above changes need new genfile.c from paxutils)
418
419 * TODO: Update
420 * NEWS: Update
421 * doc/tar.texi: Update
422 * src/transform.c: New file
423 * src/Makefile.am (tar_SOURCES): New module transform.c
424 * src/common.h (transform_name, transform_name_fp): New functions
425 (show_stored_names_option): Renamed to
426 show_transformed_names_option. All uses changed
427 * src/create.c (dump_file0): Transform file name
428 * src/extract.c (extract_archive): safer_name_suffix and
429 stripped_prefix_len are now called by decode_header
430 * src/list.c (print_header): Update displayable name selection.
431 * src/tar.c: New option --transform
432 New option --show-transformed-names generalizes
433 --show-stored-names. The latter is retained as an alias.
434
435 2006-05-31 Sergey Poznyakoff <gray@gnu.org.ua>
436
437 * src/incremen.c (make_directory): Fix initialization of struct
438 directory.
439
440 2006-05-25 Sergey Poznyakoff <gray@gnu.org.ua>
441
442 * doc/tar.texi: Document use of globbing patterns.
443 * src/tar.c (parse_opt): Add comment before --preserve case.
444
445 2006-05-24 Sergey Poznyakoff <gray@gnu.org.ua>
446
447 * NEWS: Update
448 * doc/tar.texi: Update
449 * configure.ac (AM_INIT_AUTOMAKE): Use tar-ustar option. Raise
450 version requirement to 1.9
451 * src/common.h (struct name): Refactured
452 (warn_regex_usage): New variable.
453 (dump_file): First argument is const char*.
454 (name_init,name_add): Removed
455 (name_add_name,name_add_dir): New functions
456 (name_next): Return const char*.
457 * src/create.c: (dump_file,dump_file0): First argument is const
458 char*. All callers updated.
459 * src/names.c: Rewritten handling of member names in the command
460 line. Tar no longer attempts to guess globbing patterns, instead
461 it relies on --wildcard option.
462 (init_names): Removed.
463 (struct name_elt): New structure.
464 (name_array): Change type to struct name_elt. All references updated
465 (name_add_name,name_add_dir): New functions
466 (name_next_elt): New function
467 (name_next): Rewritten using name_next_elt.
468 (namelist_match): Rewritten pattern matching using
469 exclude_fnmatch.
470 (names_notfound): Warn if globbing patterns were used without
471 --wildcards option
472 * src/tar.c (options): Move globbing-related options into a
473 separate group. Set -l as an alias to --check-links, as required
474 by UNIX98
475 (struct tar_args): New fields
476 wildcards,matching_flags,include_anchored
477 (MAKE_EXCL_OPTIONS,MAKE_INCL_OPTIONS): New macros
478 (parse_opt): Use x2nrealloc to grow archive_name_array.
479 Use MAKE_EXCL_OPTIONS,MAKE_INCL_OPTIONS to create appropriate
480 fnmatch options, and name_add_name,name_add_dir to handle member
481 name and -C arguments.
482 (decode_options): Likewise
483 (main): Remove call to init_names.
484
485 * tests/append.at, tests/append01.at, tests/extrac01.at,
486 tests/options.at, tests/options02.at, tests/same-order01.at,
487 tests/same-order02.at: Make AT_SETUP more readable.
488
489 2006-05-23 Sergey Poznyakoff <gray@gnu.org.ua>
490
491 * src/buffer.c (change_tape_menu): Fix typo (uninitialized
492 variable) introduced yesterday.
493
494 2006-05-22 Sergey Poznyakoff <gray@gnu.org.ua>
495
496 * doc/tar.texi: Use @var{file_name} instead of @var{file name}
497 * src/buffer.c (change_tape_menu): Break the loop after obtaining
498 new archive name. Check for empty input line.
499
500 2006-05-15 Sergey Poznyakoff <gray@gnu.org.ua>
501
502 * tests/atlocal.in (XFAILFILE): New variable
503 * tests/version.at: Create $XFAILFILE on failure
504 * tests/testsuite.at (AT_TAR_CHECK): Declare expected failure if
505 $XFAILFILE exists.
506
507 2006-05-13 Sergey Poznyakoff <gray@gnu.org.ua>
508
509 * THANKS: Update
510 * src/buffer.c (read_header0): Use read_header_primitive to avoid
511 clubbering current_tar_info. All callers updated.
512 * src/common.h (read_header_primitive): New function
513 * src/extract.c (extract_volhdr): New function
514 (prepare_to_extract): Use extract_volhdr as extractor for volume
515 names.
516 * src/list.c (read_header_primitive): New function
517 (read_header): Front end for read_header_primitive
518 * tests/chtype.at: New file
519 * tests/volsize.at: New file
520 * tests/Makefile.am (TESTSUITE_AT): Add chtype.at, volsize.at
521 (check-full): New target.
522 * tests/atlocal.in (TEST_DATA_URL,STAR_DATA_URL)
523 (STAR_TESTSCRIPTS): Provide default values.
524 (tarball_prereq): New function
525 * tests/testsuite.at (AT_TARBALL_PREREQ): New defun
526 (AT_STAR_PREREQ): Rewrite using tarball_prereq
527 Include chtype.at and volsize.at
528 * tests/volume.at: Add keywords.
529
530 * tests/star/gtarfail.at, tests/star/gtarfail2.at,
531 tests/star/multi-fail.at, tests/star/pax-big-10g.at,
532 tests/star/ustar-big-2g.at, tests/star/ustar-big-8g.at
533 (AT_STAR_PREREQ): Provide md5 sum.
534
535 * lib/.cvsignore: Update
536
537 2006-05-08 Sergey Poznyakoff <gray@gnu.org.ua>
538
539 * tests/testsuite.at (AT_SORT_PREREQ, AT_UNPRIVILEGED_PREREQ): New
540 defines
541
542 * tests/extrac04.at, tests/incr03.at, tests/listed02.at,
543 tests/pipe.at, tests/rename01.at, tests/rename02.at,
544 tests/rename03.at, tests/same-order01.at: Call
545 AT_SORT_PREREQ. Remove fd 2 redirection after calls to sort
546 * ignfail.at: Call AT_UNPRIVILEGED_PREREQ
547
548 2006-05-08 Sergey Poznyakoff <gray@gnu.org.ua>
549
550 Listed incremental backups: keep more information about
551 directories. Handle renamed directories more effectively
552 (initial implementation, more updates to follow).
553 Source tree before this point is tagged
554 alpha_1_15_90_incremental_1.
555
556 * NEWS: Update
557 * configure.ac: Raise version number to 1.15.91
558 * src/common.h (rename_directory,append_incremental_renames): New
559 functions.
560 * src/extract.c (rename_directory): New function
561 * src/incremen.c (struct directory.contents, flags): New members
562 (nfs,found,new): Remove. Replaced by appropriate bitmask values in
563 `flags' field. All uses updated.
564 (directory_meta_table): New table.
565 (hash_directory): Rename to hash_directory_name
566 (compare_directories): Rename to compare_directory_names
567 (hash_directory_meta,compare_directory_meta,find_directory_meta):
568 New functions
569 (compare_dirents): Removed
570 (note_directory): Get 7th argument: directory contents.
571 All callers updated
572 (dumpdir_locate,makedumpdir): New functions
573 (scan_directory): Rewritten. Use makedumpdir to create a sorted
574 dumpdir array. This makes the obstack argument unnecessary. Besides,
575 ALL_CHILDREN flag is set only for new directories.
576 (procdir): Change return type to struct directory. Return
577 immediately if the directory was already initialized. Discover
578 directory renames using directory_meta_table.
579 (append_incremental_renames): New function.
580 (read_directory_file, write_directory_file): Use new snapshot file
581 format.
582 * src/names.c (collect_and_sort_names): Update dir_contents of the
583 first non-fake name entry when in listed incremental mode.
584
585 * tests/incr03.at: New testcase
586 * tests/rename01.at: New testcase
587 * tests/rename02.at: New testcase
588 * tests/rename03.at: New testcase
589 * tests/Makefile.am: Add
590 incr03.at,rename01.at,rename02.at,rename03.at
591 * tests/testsuite.at: Likewise.
592 * tests/listed02.at: Update for the new behavior
593 * tests/multiv04.at (AT_KEYWORDS): Add missing incremental kw.
594
595 2006-05-02 Sergey Poznyakoff <gray@gnu.org.ua>
596
597 * src/buffer.c (try_new_volume): Attempt to continue if the name
598 is apparently truncated in a GNU format volume.
599
600 * tests/comprec.at, tests/delete01.at, tests/delete02.at,
601 tests/delete04.at, tests/delete05.at, tests/extrac05.at,
602 tests/listed01.at, tests/multiv01.at, tests/multiv02.at,
603 tests/pipe.at, tests/same-order01.at, tests/same-order02.at,
604 tests/sparse01.at, tests/sparse03.at: Always use genfile --file,
605 this enables extra error checking.
606
607 * tests/multiv03.at: Attempt to extract a member with truncated
608 file name from the archive.
609
610 * src/buffer.c (_open_archive): Remove unnecessary argument to
611 check_compressed_archive.
612
613 2006-04-25 Sergey Poznyakoff <gray@gnu.org.ua>
614
615 * tests/sparse01.at, tests/sparse02.at, tests/sparse03.at,
616 tests/sparsemv.at, tests/sparsemvp.at: Skip the test if the file
617 system does not support sparse files.
618 * doc/tar.texi (@copying): Remove the reference to not existing
619 invariant section.
620
621 2006-04-11 Sergey Poznyakoff <gray@gnu.org.ua>
622
623 * src/extract.c (extract_dir): Fix toggling existing directory
624 permissions (Debian bug #361077). Use parts of patch provided by
625 Ian Jackson <iwj@ubuntu.com>.
626 * src/compare.c: Minor changes
627 * src/incremen.c (directory.new): New member
628 (note_directory,find_directory: Use make_directory to create
629 struct directory entries
630 (procdir): Avoid duplicating directories in the incremental
631 backup map.
632 * tests/Makefile.am (TESTSUITE_AT): Add extrac06.at
633 * tests/testsuite.at: Include extrac06.at
634
635 2006-03-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (trivial change)
636
637 * tests/atlocal.in (PATH): Add build-aux from the source tree,
638 not the build tree.
639
640 2006-03-13 Sergey Poznyakoff <gray@gnu.org.ua>
641
642 * THANKS: Add Benno Schulenberg
643
644 2006-03-13 Jim Meyering <jim@meyering.net>
645
646 * tests/listed02.at: Sort the two lines of stderr from the
647 first `tar -v --listed-incremental'. They would come out
648 reversed and provoke a test failure on a tmpfs
649 file system.
650
651 2006-03-13 Benno Schulenberg <benno@nietvergeten.nl>
652
653 * doc/tar.texi: Minor fixes.
654 * src/tar.c (options): Consistently begin help messages with a
655 lowercase letter.
656
657 2006-03-12 Sergey Poznyakoff <gray@gnu.org.ua>
658
659 * tests/Makefile.am (AM_CPPFLAGS): Define LOCALEDIR
660
661 2006-03-07 Paul Eggert <eggert@cs.ucla.edu>
662
663 * src/buffer.c (record_buffer_aligned): New var.
664 (init_buffer): Use it to ensure that the buffer is aligned.
665 This doesn't result in any measurable performance improvement
666 on my host (Debian GNU/Linux 3.1 stable, with default block size),
667 but I assume it does help on some hosts.
668
669 * lib/.cvsignore: Sort.
670
671 2006-03-04 Sergey Poznyakoff <gray@gnu.org.ua>
672
673 * tests/shortrec.at: Use -f - to read from stdin.
674
675 2006-02-21 Sergey Poznyakoff <gray@gnu.org.ua>
676
677 * doc/tar.texi: Fix typo: --to-command instead of --to-program
678
679 2006-02-20 Paul Eggert <eggert@cs.ucla.edu>
680
681 * tests/multiv04.at (split directory members in a MV archive):
682 Don't use %X in an awk printf format; this doesn't work with
683 Solaris 10 /usr/bin/awk. Use %x instead.
684
685 2006-02-20 Sergey Poznyakoff <gray@gnu.org.ua>
686
687 * src/create.c (split_long_name): Fix maximum length estimation.
688 Patch by Jim Lowe.
689 * tests/Makefile.am (lustar01.at,lustar02.at,lustar03.at): New
690 tests.
691 * tests/atlocal.in: Add build-aux to the PATH
692 * tests/long01.at: Remove mkhier, use AT_TAR_MKHIER instead
693 * tests/longv7.at: Reword test title
694 * tests/lustar01.at: New test
695 * tests/lustar02.at: New test
696 * tests/lustar03.at: New test
697 * tests/testsuite.at (AT_TAR_MKHIER): New macro
698 (lustar01.at,lustar02.at,lustar03.at): New tests.
699
700 2006-02-20 Paul Eggert <eggert@cs.ucla.edu>
701
702 * bootstrap: Don't claim lib/Makefile.am is generated automatically
703 from itself.
704
705 Avoid installation glitches on Solaris 8 with Sun C 5.4.
706 * lib/.cvsignore: Add system-ioctl.h.
707 * lib/Makefile.tmpl (noinst_HEADERS): Add system-ioctl.h.
708 * src/buffer.c: Include system-ioctl.h.
709 * src/compare.c: Likewise.
710 * src/delete.c: Likewise.
711 * src/system.c: Include <getline.h>, <setenv.h>.
712 * src/tar.c: Include <getline.h>.
713
714 2006-02-19 Sergey Poznyakoff <gray@gnu.org.ua>
715
716 * src/buffer.c (add_chunk_header): Free st.orig_file_name after
717 calling finish_header().
718 (new_volume): Prompt the user for archive name if unable to open
719 next archive.
720
721 * src/create.c (dump_file0): Restore file_count_links,
722 accidentally removed on 2005-11-29.
723 * configure.ac: Raise version number to 1.15.90
724 * NEWS: Likewise.
725
726 2006-02-08 Sergey Poznyakoff <gray@gnu.org.ua>
727
728 * src/tar.c (tar_set_quoting_style): Provide second argument to
729 the format spec: program_invocation_short_name. Reported by Jim
730 Meyering.
731
732 2006-02-07 Paul Eggert <eggert@cs.ucla.edu>
733
734 * gnulib.modules: Add closeout, exitfial.
735 * lib/.cvsignore: Add __fpending.c, __fpending.h, closeout.c,
736 closeout.h.
737 * src/buffer.c: Incluse closeout.h.
738 (_open_archive): Use freopen rather than fopen, so
739 that stdlis is always either stdout or stderr. Use
740 close_stdout_set_file_name to report its name.
741 * src/tar.c: Include closeout.h and exitfail.h.
742 (parse_opt, usage): Call close_stdout as appropriate, to check for
743 write errors.
744 (decode_options): Exit with status TAREXIT_FAILURE, not 1.
745 (main): Set exit_failure, to exit with proper status on memory
746 allocation failure and the like.
747 Use close_stdout rather than rolling our own test.
748
749 * NEWS: --version now outputs copyright etc., to conform to the
750 GNU coding standards. Remove --license.
751 * gnulib.modules: Add version-etc-fsf.
752 * doc/tar.texi: Document the change.
753 * lib/.cvsignore: Add version-etc-fsf.c, version-etc.c, version-etc.h.
754 * scripts/Makefile.am (SED_CMD): Update PAKCAGE_NAME, not PACKAGE.
755 * scripts/backup.in: Remove --license. Change --version to conform
756 to GCS.
757 * scripts/restore.in: Likewise.
758 * scripts/backup.sh.in (license): Output briefer license in the
759 style of coreutils, for consistency with other changes.
760 * src/tar.c: Include <version-etc.h>.
761 (LICENSE_OPTION): Remove.
762 (options): Remove --license.
763 (license): Remove.
764 (parse_opt): Use version_etc instead of rolling it ourselves.
765 Remove --license.
766 * tests/version.at (tar --version): Check only the first line of
767 output.
768
769 * ChangeLog, NEWS, src/common.h, src/extract.c, src/incremen.c:
770 * src/list.c, src/names.c, src/tar.h, src/xheader.c:
771 Update copyright year to 2006.
772
773 2006-02-07 Jim Meyering <jim@meyering.net>
774
775 * src/xheader.c (sparse_map_decoder): Fix misleading diagnostic.
776
777 2006-01-31 Sergey Poznyakoff <gray@gnu.org.ua>
778
779 * src/common.h (get_gnu_dumpdir): Remove prototype
780 (is_dumpdir): New function
781 * src/extract.c (prepare_to_extract): Use is_dumpdir member to
782 check for dumpdirs.
783 * src/incremen.c (get_gnu_dumpdir): Static
784 (is_dumpdir): New function
785 (purge_directory): Use is_dumpdir
786 * src/list.c (list_archive): Use is_dumpdir
787 Do not wrap skip_member in mv_begin/mv_end, the function itself
788 takes care of it.
789 (decode_header): Set stat_info->is_dumpdir
790 (skip_member): Do nothing if skipped is true
791 * src/tar.h (struct tar_stat_info): New members is_dumpdir and skipped.
792
793 2006-01-22 Sergey Poznyakoff <gray@gnu.org.ua>
794
795 * src/tar.c (decode_options): Refuse using --delete with
796 compression options.
797
798 2006-01-18 Sergey Poznyakoff <gray@gnu.org.ua>
799
800 * NEWS: Updated.
801 * configure.ac (DEFAULT_QUOTING_STYLE): New configuration variable
802 * doc/tar.texi: Initial documentation for --quoting-style,
803 --quote-chars and --no-quote-chars option.
804 * src/tar.c: Implement new options --quoting-style, --quote-chars
805 and --no-quote-chars.
806
807 2006-01-09 Paul Eggert <eggert@cs.ucla.edu>
808
809 * bootstrap: Default to pserver, and switch to cvs.sv.gnu.org,
810 to accommodate recent changes to the GNU CVS server.
811 * lib/.cvsignore: Add argp-pin.c, mkdirat.c, openat-priv.h.
812
813 2005-12-14 Sergey Poznyakoff <gray@gnu.org.ua>
814
815 * src/names.c (name_scan): Take an additional argument requesting
816 exact matching.
817 * src/common.h (name_scan): Change prototype.
818 * src/delete.c, src/incremen.c, src/update.c: Update invocations
819 of name_scan.
820
821 2005-12-13 Sergey Poznyakoff <gray@gnu.org.ua>
822
823 * src/common.h (struct name): New member `explicit'. Remove unused
824 member `isdir'.
825 * src/incremen.c (procdir): If name_scan() returns something,
826 check if it was explicitely given in the command line
827 * src/names.c (addname,add_hierarchy_to_namelist): Initialize
828 explicit member appropriately.
829
830 * src/incremen.c (procdir): If --one-file-system is given and a
831 directory is found to be on another device, *and* this directory
832 is explicitely given in the command line, then do not omit it.
833
834 2005-12-11 Sergey Poznyakoff <gray@gnu.org.ua>
835
836 * NEWS: Update
837 * doc/tar.texi: Document --delay-directory-restore option.
838 (Configuring Help Summary): Document usage of ARGP_HELP_FMT
839 variable to customize help output.
840 * src/common.h (delay_directory_restore_option): New global.
841 * src/extract.c (directories_first): Replaced by
842 delay_directory_restore_option. All uses changed.
843 * src/tar.c (options,parse_opt): New options
844 --delay-directory-restore and --no-delay-directory-restore
845
846 2005-12-09 Sergey Poznyakoff <gray@gnu.org.ua>
847
848 * src/buffer.c (open_archive): Add default case to shut up gcc.
849 * src/common.h (set_file_atime): Add prototype.
850 * src/create.c (to_chars_subst): Remove unused variable
851 Make sure useful result code is returned.
852 * src/incremen.c (read_directory_file): Fix format string
853 Thanks Eric Blake for reporting.
854
855 2005-12-08 Sergey Poznyakoff <gray@gnu.org.ua>
856
857 * doc/tar.texi (Current status): Renamed to 'Changes' and moved to
858 appendices.
859 (Large or Negative Values): Rewritten
860 * src/common.h (gid_to_chars, major_to_chars, minor_to_chars)
861 (mode_to_chars, off_to_chars, size_to_chars, time_to_chars)
862 (uid_to_chars, uintmax_to_chars): Return bool
863 * src/create.c (gid_to_chars, major_to_chars, minor_to_chars)
864 (mode_to_chars, off_to_chars, size_to_chars, time_to_chars)
865 (uid_to_chars, uintmax_to_chars): Return bool
866 (to_chars): Return bool
867 (start_header): Check return values of convertion routines. Fail
868 if unable to store data in the header.
869
870 2005-12-07 Sergey Poznyakoff <gray@gnu.org.ua>
871
872 * doc/tar.texi: Following the discussion with Karl Berry,
873 discontinue using @value{} substitutions for Texinfo commands.
874 Properly index all long options. Print a
875 separate long option index.
876 * doc/value.texi: Remove @set's
877
878 * doc/tar.texi: Update --info-script documentation
879 Resolve some more FIXMEs.
880 * scripts/dump-remind.in: Use TAR_VOLUME instead of reading volno
881 file.
882 * src/buffer.c (new_volume): Update invocation
883 (change_tape_menu): New function. Disable '!' command if given
884 --restrict option.
885 * src/common.h (sys_exec_info_script): Update declaration
886 (restrict_option): New global
887 * src/system.c (sys_exec_info_script): The script can supply new
888 archive name to use by writing it to file descriptor 3.
889 * src/tar.c (options): Add --restrict option. Use macros for
890 option grouping.
891 (license): Print full list of copyright years
892 * NEWS: Update
893
894 2005-12-06 Eric Blake <ebb9@byu.net> (trivial changes)
895
896 * configure.ac (DENSITY_LETTER): Fix m4 overquoting.
897 * .cvsignore: Ignore .bootstrap.
898
899 2005-12-06 Sergey Poznyakoff <gray@gnu.org.ua>
900
901 * doc/tar.texi: Document --to-command and --info-script
902 options. Add missing xrefs.
903 * src/buffer.c (new_volume): Use sys_exec_info_script() instead of
904 system().
905 * src/common.h (archive_format_string,subcommand_string)
906 (sys_exec_info_script): New prototypes.
907 * src/system.c (sys_exec_info_script): New function.
908 * src/tar.c (archive_format_string): Remove static qualifier.
909 (subcommand_string): New function.
910
911 2005-12-01 Sergey Poznyakoff <gray@gnu.org.ua>
912
913 * src/extract.c: Fix restoring of directory timestamps from
914 incremental archives.
915 (directories_first): New variable.
916 (prepare_to_extract): Set directories_first
917 (extract_archive): Call apply_nonancestor_delayed_set_stat() only
918 if not extracting from an incremental archive
919 (extract_dir): Obtain root_device here, to make sure it works
920 correctly with -C.
921
922 * src/incremen.c (purge_directory): Skip the member and return if
923 the archive is not in incremental format.
924 * tests/incr02.at: New testcase
925 * tests/Makefile.am: Add incr02.at
926 * tests/testsuite.at: Likewise
927
928 * THANKS: Add Guerkan Karaman.
929 * NEWS: Update
930
931 2005-11-30 Paul Eggert <eggert@cs.ucla.edu>
932
933 * doc/tar.texi (Option Summary): Rewrite the
934 --atime-preserve=system description in response to Ian Turner's
935 proposed patch.
936
937 2005-11-30 Ian Turner <ian@zmanda.com>
938
939 * doc/tar.texi (Extracting Specific Files): Remove obsolescent
940 FIXME.
941
942 2005-11-29 Paul Eggert <eggert@cs.ucla.edu>
943
944 * NEWS: New option --atime-preserve=system, which uses O_NOATIME.
945 * THANKS: Add Ian Turner.
946
947 * configure.ac: Prefer AC_CHECK_HEADERS_ONCE to AC_CHECK_HEADERS.
948 Check for stropts.h and sys/filio.h too, for _FIOSATIME.
949 * doc/tar.texi: Change "modification time" to "data modification
950 time", "change time" to "status change time", and "filesystem" to
951 "file system", so that we use terminology consistent with POSIX.
952 Use American spacing rather than French for sentence ends.
953 "non-dependable" -> "undependable".
954 (Option Summary, Attributes): Explain better the pitfalls of the
955 --atime-preserve option, and suggest read-only mounts,loopback
956 mounts, and noatime mounts for older systems.
957 * doc/value.texi (op-atime-preserve-system): Renamed from
958 op-atime-preserver-system to fix a misspelling.
959 * src/common.h (enum atime_preserve): Use lower case for enum values.
960 * src/compare.c: Don't include utimens.h; no longer needed.
961 (diff_file): Use set_file_atime rather than utimens; avoid closing
962 diff_handle until after this, so that we can set the file time stamp
963 via the file descriptor rather than via its name.
964 * src/create.c: Don't include utimens.h; no longer needed.
965 (dump_regular_finish): Remove. All callers now do its work inline.
966 (dump_dir): New arg FD. All callers changed.
967 Use fdsavedir rather than savedir.
968 (unknown_file_error): Arg is a const pointer now.
969 (dump_file0): 2nd arg is a const pointer now.
970 Treat directories more like files, with respect to --atime-preserve.
971 For example, also warn if a directory changes while we are dumping it.
972 Prefer file descriptors to file names when retrieving/setting file
973 attributes; this saves path-resolution time and allows us to avoid
974 changing mtime/ctime on Solaris when restoring atime as root.
975 Use O_DIRECTORY when opening directories, to avoid some race conditions.
976 Do not reset atime if mtime has changed. Report an error if
977 we cannot reset atime.
978
979 * lib/.cvsignore: Add malloc.h, regcomp.c, regex.c, regex.h,
980 regex_internal.c, regex_internal.h, regexc.c; used by rpmatch.
981
982 2005-11-29 Ian Turner <ian@zmanda.com>
983
984 First cut at adding support for --atime-preserve=system.
985 * doc/tar.texi (Option Summary): First cut at documenting it.
986 All other uses of --atime-preserve changed to --atime-preserve=replace.
987 * doc/value.texi (op-atime-preserve-replace, op-atime-preserver-system):
988 New.
989 (op-atime-preserve): Mention METHOD.
990 * src/common.h (atime_preserve): New enum.
991 (atime_preserve_option): Now of the enum type rather than bool.
992 All uses changed.
993 * src/compare.c (diff_file): Read with O_NOATIME if asked for.
994 * src/create.c (dump_file0): Read regular and CTG files with O_NOATIME
995 if asked for.
996 * src/tar.c (usage): Mention new usage.
997 (parse_opt): Parse new usage.
998
999 2005-11-29 Paul Eggert <eggert@cs.ucla.edu>
1000
1001 * THANKS: Convert back to UTF-8, sort (using LC_ALL=C on Debian
1002 stable), and consistently use tabs rather than spaces.
1003
1004 2005-11-27 Sergey Poznyakoff <gray@gnu.org.ua>
1005
1006 * src/xheader.c: Remove parts of code prematurely introduced
1007 yesterday. Thanks Eric Blake.
1008
1009 2005-11-26 Sergey Poznyakoff <gray@gnu.org.ua>
1010
1011 * src/xheader.c (xheader_format_name): Fix memory leak.
1012
1013 2005-11-11 Sergey Poznyakoff <gray@gnu.org.ua>
1014
1015 * gnulib.modules: Add rpmatch
1016 * lib/stdopen.h, lib/stdopen.c: New file. Imported from coreutils.
1017 * lib/Makefile.tmpl: Add stdopen.h, stdopen.c
1018 * po/POTFILES.in: Add rpmatch.c
1019 * src/tar.c (confirm): Rewritten using rpmatch.
1020 (decode_options): Minor optimizations
1021 (main): Call stdopen() to ensure the first three descriptors are
1022 open.
1023
1024 * tests/multiv01.at, tests/multiv02.at, tests/multiv03.at,
1025 tests/multiv04.at, tests/sparsemv.at, tests/sparsemvp.at,
1026 tests/star/multi-fail.at: Close stdin so that if something fails
1027 causing tar to ask for the next volume, it won't hang the
1028 testsuite.
1029
1030 * src/buffer.c (flush_write,flush_read): Change data type.
1031 (flush_archive): Compute actual buffer fill level before calling
1032 low level function.
1033 (close_archive): Call flush_archive again if the first call
1034 resulted in partially filled buffer.
1035 (try_new_volume): Rewritten handling of initial headers.
1036 (add_chunk_header): New function. Write an additional header
1037 before the continuation chunk. The purpose of the header is to
1038 allow third-party tars to extract the member.
1039 (simple_flush_write): Take an argument.
1040 (_gnu_flush_write): Correctly handle partially filled buffers.
1041 * src/common.h (flush_read,flush_write): Functions, again.
1042 (write_extended): Changed declaration
1043 (xheader_format_name): New declaration
1044 * src/create.c (write_extended): Change type and meaning of
1045 the first argument. All callers updated
1046 * src/xheader.c (xheader_format_name): Remove static
1047 qualifier. Change last argument.
1048 Correct buffer size calculation (allocated too much space).
1049 (xheader_write): Increase global_header_count here ...
1050 (xheader_write_global): ... instead of here
1051
1052 * tests/testsuite.at (AT_TAR_CHECK): Define TEST_TAR_FORMAT
1053 * tests/multiv01.at: Update
1054 * tests/multiv02.at: Update
1055 * tests/multiv03.at: Update
1056 * tests/sparsemvp.at: Update
1057 * tests/star/multi-fail.at: Update
1058
1059 * scripts/tarcat: Handle archives in pax format. Improve handling
1060 of traditional archives.
1061 * doc/tar.texi (Tarcat): New node
1062
1063 2005-11-10 Sergey Poznyakoff <gray@gnu.org.ua>
1064
1065 Fix splitting of sparse files between the volumes.
1066
1067 * src/buffer.c (try_new_volume): Bugfix. Always check
1068 continued_file_name. If it is absent, the volume is out
1069 of sync.
1070 (add_multi_volume_header): Create GNU.volume.filename keyword in
1071 the extended header.
1072 * src/sparse.c (sparse_dump_region): Call mv_size_left.
1073 (sparse_dump_file): Enclose the loop in mv_begin/mv_end.
1074 * src/system.c: Do not pad compressed output if it goes to
1075 stdout.
1076 * src/xheader.c (xhdr_tab): New keyword GNU.volume.filename.
1077
1078 * tests/sparsemv.at: New testcase
1079 * tests/sparsemvp.at: New testcase
1080 * tests/Makefile.am: Add sparsemv.at and sparsemvp.at.
1081 * tests/testsuite.at: Likewise.
1082
1083 2005-11-09 Sergey Poznyakoff <gray@gnu.org.ua>
1084
1085 * src/buffer.c: Rewritten in a more modular fashion to provide
1086 GNU extensions (multi-volume archives and archive labels) in
1087 pax format.
1088 NOTICE, that some of the aspects (e.g. splitting the archive
1089 on the extended header boundary) are still not solved, others
1090 (splitting a sparse file between the volume) require additional
1091 testing. Wait for the next commit.
1092
1093 (volume_label,continued_file_name,continued_file_size)
1094 (continued_file_offset): New globals.
1095 (save_name,save_totsize,save_sizeleft): Make static
1096 (mv_begin,mv_end,mv_total_size,mv_size_left): New functions
1097 (open_archive,flush_write,flush_read): Rewritten
1098
1099 * src/common.h (save_name,save_sizeleft,save_totsize): Remove
1100 globals.
1101 (volume_label,continued_file_name,continued_file_size): New
1102 variables.
1103 (flush_read,flush_write): Pointers to functions
1104 (mv_begin,mv_end,mv_total_size,mv_size_left): New functions
1105 (write_extended): New function.
1106
1107 * src/compare.c, src/create.c, src/extract.c, src/incremen.c,
1108 src/list.c: Use mv_.* functions uniformly instead of fiddling
1109 with the global variables.
1110 * src/sparse.c: Use mv_.* functions where necessary.
1111 * src/tar.c (decode_options): Allow to use --multi-volume and
1112 --label with pax archives.
1113 * src/xheader.c (xhdr_tab): Support for new GNU keywords.
1114
1115 * tests/delete01.at, tests/delete02.at, tests/delete03.at,
1116 tests/delete04.at, tests/delete05.at, tests/extrac01.at,
1117 tests/extrac02.at, tests/extrac03.at, tests/extrac04.at,
1118 tests/extrac05.at, tests/incr01.at, tests/incremental.at,
1119 tests/listed01.at, tests/listed02.at, tests/long01.at,
1120 tests/longv7.at, tests/multiv01.at, tests/multiv02.at,
1121 tests/multiv03.at, tests/multiv04.at, tests/options.at,
1122 tests/options02.at, tests/same-order01.at, tests/same-order02.at,
1123 tests/sparse01.at, tests/sparse02.at, tests/sparse03.at,
1124 tests/star/multi-fail.at (AT_KEYWORDS): Improve to allow execution
1125 of related tests in groups.
1126
1127 * doc/tar.texi: Update
1128
1129 2005-11-07 Paul Eggert <eggert@cs.ucla.edu>
1130
1131 * src/xheader.c (struct xhdr_tab.coder): Last arg is void const *,
1132 not void *, to avoid create.c warning from GCC "passing argument 3
1133 of 'xheader_store' discards qualifiers from pointer target type".
1134 (dummy_coder, atime_coder, gid_coder, gname_coder, linkpath_coder):
1135 (ctime_coder, mtime_coder, path_coder, size_coder, uid_coder):
1136 (uname_coder, sparse_size_coder, sparse_numblocks_coder):
1137 (sparse_offset_coder, sparse_numbytes_coder, dumpdir_coder):
1138 (xheader_store): Likewise.
1139 * src/common.h (xheader_store): Likewise.
1140
1141 2005-11-07 Sergey Poznyakoff <gray@gnu.org.ua>
1142 and Paul Eggert <eggert@cs.ucla.edu>
1143
1144 * src/tar.c (NS_PRECISION_FORMAT_MASK): New macro.
1145 (tar_timespec_cmp): New function. Wrapper over
1146 timespec_cmp using the timespec precision provided by the
1147 current archive format.
1148 * src/common.h (tar_timespec_cmp): New declaration.
1149 * src/compare.c (diff_file): Use tar_timespec_cmp.
1150 * src/extract.c (file_newer_p): Likewise.
1151 * src/update.c (update_archive): Likewise.
1152 * tests/truncate.at: Reverted changes
1153 * tests/update.at: Reverted changes
1154
1155 2005-11-07 Sergey Poznyakoff <gray@gnu.org.ua>
1156
1157 Support for incremental formats in pax archives.
1158 Fixed POSIX compatibility of `sparse' extended header keywords.
1159
1160 * src/common.h (dumpdir_size,get_gnu_dumpdir)
1161 (xheader_string_begin,xheader_string_add)
1162 (xheader_string_end): New functions.
1163 * src/create.c (dump_dir0): Handle incremental backups in pax
1164 archives.
1165 * src/incremen.c (dumpdir_size, get_gnu_dumpdir): New functions.
1166 (purge_directory): Use stat_info.dumpdir instead of getting its
1167 value explicitely.
1168 * src/list.c (list_archive): Handle incremental backups in pax
1169 format.
1170 (decode_header): Initialize stat_info.dumpdir
1171 * src/sparse.c (sparse_diff_file): Bugfix: set seekable.
1172 (pax_dump_header): Store sparse map in GNU.sparse.map. If this
1173 variable has been explicitely deleted, use GNU.sparse.offset/
1174 GNU.sparse.numbytes variables.
1175 * src/tar.c (decode_options): Incremental options are allowed with
1176 --format=pax
1177 (tar_stat_destroy): Free dumpdir
1178 * src/tar.h (struct tar_stat_info.dumpdir): New member.
1179 * src/xheader.c (xheader_keyword_deleted_p): Remove static
1180 qualifier.
1181 (struct xhdr_tab.decoder): Change prototype. POSIX allows string
1182 values to contain embedded nulls, so take an extra argument
1183 specifying the length of the string.
1184 (decx,decg,dummy_decoder,atime_decoder,gid_decoder)
1185 (gname_decoder,linkpath_decoder,ctime_decoder,mtime_decoder)
1186 (path_decoder,size_decoder,uid_decoder,uname_decoder)
1187 (sparse_size_decoder,sparse_numblocks_decoder)
1188 (sparse_offset_decoder,sparse_numbytes_decoder): Likewise.
1189 (decode_record): Pass value length to the handler
1190 (run_override_list): Pass value length to the decoder
1191 (xheader_print_n): New function
1192 (xheader_print): Rewritten using xheader_print_n
1193 (xheader_finish): Do not rely om strlen to compute the length of
1194 the collected string: it can contain embedded nulls
1195 (xheader_string_begin,xheader_string_add,xheader_string_end): New
1196 functions.
1197 (sparse_map_decoder,dumpdir_coder,dumpdir_decoder): New
1198 functions. Handle GNU.sparse.map and GNU.dumpdir variables.
1199 (xhdr_tab): Add new variables.
1200
1201 * tests/incr01.at: Test gnu, oldgnu, and posix formats
1202 * tests/incremental.at: Likewise
1203
1204 2005-11-06 Paul Eggert <eggert@cs.ucla.edu>
1205
1206 * NEWS: Minor language and white space fixes.
1207
1208 * tests/truncate.at: Create files whose time stamps must fall on
1209 1-second boundaries. This prevents tests from failing on hosts
1210 like Solaris 8 that have nanosecond-resolution file time stamps.
1211 * tests/update.at: Likewise.
1212
1213 * src/xheader.c (strtoimax, strtoumax): Remove decls; now done
1214 in system.h.
1215
1216 2005-11-06 Sergey Poznyakoff <gray@gnu.org.ua>
1217
1218 * doc/tar.texi: Properly document incremental dumps
1219 * doc/value.texi: Likewise.
1220 * doc/snapshot.texi: Likewise.
1221
1222 2005-11-05 Sergey Poznyakoff <gray@gnu.org.ua>
1223
1224 Improve listed incremental format:
1225
1226 * src/common.h (update_parent_directory): New prototype.
1227 * src/create.c (dump_file): Call update_parent_directory.
1228 * src/incremen.c (struct directory.mtime): New member.
1229 (note_directory): Take additional arguments. All callers updated.
1230 (scan_directory): Updated to use more metadata. In particular,
1231 this allows to correctly detect renamed files.
1232 (read_directory_file,write_directory_file)
1233 (write_directory_file_entry): Support new directory file format.
1234 * tests/listed01.at: Sleep 1 sec before creating second file.
1235 * tests/listed02.at: Never skip the test. It should work on any
1236 filesystem.
1237
1238 * doc/snapshot.texi: New file
1239 * doc/tar.texi: Update.
1240 * doc/Makefile.am: Update.
1241
1242 2005-11-04 Paul Eggert <eggert@cs.ucla.edu>
1243
1244 * src/extract.c (set_stat): Rewrite to avoid bug in Forte
1245 Developer 7 C 5.4 Patch 111708-09 (2004-02-19).
1246
1247 2005-11-04 Sergey Poznyakoff <gray@gnu.org.ua>
1248
1249 * bootstrap: Fix quoting in help output.
1250 (update_po): Use backward-compatible wget option --cache instead
1251 of deprecated -C to accomodate for wget 1.10.
1252 Changes proposed by Eric Blake
1253 * THANKS: Add Eric Blake
1254
1255 2005-11-02 Paul Eggert <eggert@cs.ucla.edu>
1256
1257 * doc/tar.texi: Consistently put two spaces after sentences,
1258 and put commas after "i.e." and "e.g.". This is the usual GNU
1259 style in manuals.
1260
1261 * lib/.cvsignore: Add creat-safer.c, fcntl--.h, fcntl-safer.h,
1262 open-safer.c, openat-die.c, verify.h, to accommodate recent gnulib
1263 changes.
1264
1265 2005-10-27 Sergey Poznyakoff <gray@gnu.org.ua>
1266
1267 * src/compare.c (diff_dumpdir): Pass a valid device number to
1268 get_directory_contents.
1269
1270 * THANKS: Add John Thomas McDole
1271
1272 * bootstrap: If file `.bootstrap' exists in the cwd and is
1273 readable, prepend its contents to the command line
1274
1275 2005-10-21 Sergey Poznyakoff <gray@gnu.org.ua>
1276
1277 * tests/link01.at: Skip test if ln fails (suppose the OS does
1278 not support hard links).
1279
1280 2005-10-04 Sergey Poznyakoff <gray@gnu.org.ua>
1281
1282 * src/tar.c (decode_options): Report error if -A or -r is used
1283 together with compression option.
1284
1285 2005-09-29 Sergey Poznyakoff <gray@gnu.org.ua>
1286
1287 * doc/tar.texi: Use @option and @kbd consistently.
1288 Document new options.
1289
1290 2005-09-28 Sergey Poznyakoff <gray@gnu.org.ua>
1291
1292 * NEWS: Updated
1293 * src/common.h (show_stored_names_option): New variable
1294 * src/list.c (print_header): If show_stored_names_option is given,
1295 list member names as stored in the archive. Patch proposed by Erik
1296 Cumps <erik.cumps@icos.be>
1297 * src/tar.c: Implement --show-stored-names option
1298
1299 * src/common.h (test_label_option): New variable;
1300 * src/list.c (print_header): Special handling if test_label_option
1301 is set.
1302 * src/names.c (all_names_found): If test_label_option is set
1303 return true.
1304 * src/tar.c: New option --test-label tests the archive volume
1305 label. The option proposed by Wouter Verhelst <wouter@nixsys.be>
1306
1307 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
1308
1309 * tests/Makefile.am (clean-local): Don't attempt to run
1310 $(TESTSUITE) if it doesn't exist. Problem reported by
1311 Eric Blake.
1312
1313 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
1314
1315 Don't filter time stamps through the resolution supported
1316 by struct stat; keep them to full nanosecond resolution.
1317 This affects behavior only on older hosts or file systems
1318 that have lower-resolution time stamps.
1319 * src/common.h (OLDER_STAT_TIME): Parenthesize arg.
1320 (OLDER_TAR_STAT_TIME): New macro.
1321 (code_timespec): New function.
1322 (BILLION, LOG10_BILLION, TIMESPEC_STRSIZE_BOUND): New constants.
1323 * src/compare.c (diff_file): Use full time stamp resolution.
1324 * src/create.c (start_header, dump_file0): Likewise.
1325 (start_header, dump_file0): Adjust to new structure layout.
1326 (dump_regular_finish): Simplify by using timespec_cmp.
1327 * src/extract.c (struct delayed_set_stat): Don't store stat info
1328 that we don't need, to save space. All uses changed.
1329 (struct delayed_set_stat, struct delayed_link, file_newer_p):
1330 (create_placeholder_file, extract_link, apply_delayed_links):
1331 Use full time stamp resolution.
1332 (check_time): Use code_timespec rather than rolling our own code.
1333 (set_stat, delay_set_stat): Arg now points to tar_stat_info to
1334 avoid losing time information. All callers changed.
1335 * src/list.c (read_and, decode_header, print_heaeder):
1336 Use full time stamp resolution.
1337 * src/misc.c (code_timespec): New function.
1338 * src/tar.h (struct tar_stat_info): Record atime, mtime, ctime
1339 separately, for benefit of hosts with lower resolution.
1340 * src/update.c (update_archive): Use full time stamp resolution.
1341 * src/xheader.c (code_time): Use new code_timespec function
1342 to simplify code.
1343 (atime_coder, atime_decoder, ctime_coder, ctime_decoder):
1344 (mtime_coder, mtime_decoder): Use full time stamp resolution.
1345
1346 Report time stamps to full resolution in environment.
1347 Report memory allocation failures rather than ignoring them.
1348 * src/system.c (time_to_env): New function.
1349 (oct_to_env, str_to_env, chr_to_env): Report memory allocation failures.
1350 (stat_to_env): Report full resolution in time stamps.
1351
1352 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
1353
1354 Merge changes from gnulib for file system sub-second time stamps.
1355 * configure.ac: Remove checks for struct stat.st_spare1, struct
1356 stat.st_atim.tv_nsec, struct stat.st_atimespec.tv_nsec, struct
1357 stat.st_atimensec, as gnulib now does this for us.
1358 Similarly for LIB_CLOCK_GETTIME.
1359 * gnulib.modules: Add stat-time.
1360 * lib/.cvsignore: Add stat-time.h.
1361 * src/common.h: Include stat-time.h.
1362 (timespec_lt): Remove. All callers changed to use timespec_cmp.
1363 (get_stat_atime, get_stat_ctime, get_stat_mtime):
1364 (set_stat_atime, set_stat_ctime, set_stat_mtime):
1365 Remove; now defined by stat-time.h.
1366
1367 2005-09-14 Sergey Poznyakoff <gray@gnu.org.ua>
1368
1369 * src/incremen.c (list_dumpdir): New function. Used to dump
1370 contents of GNUTYPE_DUMPDIR blocks.
1371 * src/common.h (list_dumpdir): Likewise.
1372 * src/list.c (list_archive): Use list_dumpdir() to display
1373 GNUTYPE_DUMPDIR blocks. Do that only if two or more -v options are
1374 given.
1375
1376 2005-09-12 Paul Eggert <eggert@cs.ucla.edu>
1377
1378 * lib/.cvsignore: Adjust to current gnulib and modules used.
1379 Add getdelim.c, getdelim.h, mbchar.c, mbchar.h, mbuiter.h, memchr.c,
1380 pipe-safer.c, size_max.h, strdup.c, strdup.h, strnlen.h, strnlen1.c,
1381 strnlen1.h, unistd--.h.
1382 Remove getndelim2.c, getndelim2.h, pathmax.h, sysexits.h, xstrdup.c.
1383
1384 Treat fishy-looking hard links like fishy-looking symlinks.
1385 * src/extract.c (struct delayed_set_stat): Rename after_symlinks
1386 member to after_links. All uses changed.
1387 (struct delayed_link): Renamed from struct delayed_symlink.
1388 All uses changed. New member is_symlink.
1389 (delayed_link_head): Renamed from delayed_symlink_head. All uses
1390 changed.
1391 (create_placeholder_file): New function, taken from extract_symlink.
1392 (extract_link): Create placeholders for fishy-looking hard links.
1393 (extract_symlink): Move code into create_placeholder_file.
1394 (apply_delayed_links): Renamed from apply_delayed_symlinks.
1395 All uses changed. Create both hard links and symlinks.
1396
1397 2005-09-03 Paul Eggert <eggert@cs.ucla.edu>
1398
1399 * README-alpha: Modernize description of software required for
1400 developers.
1401
1402 2005-09-03 Sergey Poznyakoff <gray@gnu.org.ua>
1403
1404 * gnulib.modules: Add strdup
1405 * src/incremen.c (purge_directory): Do not dereference symbolic
1406 links. Bug reported by Ralph Corderoy <ralph@inputplus.co.uk> and
1407 David Brown <davidb@davidb.org>
1408 * tests/incr01.at: New test.
1409 * tests/Makefile.am: Add incr01.at
1410 * tests/testsuite.at: Likewise
1411 * THANKS: Updated
1412
1413 2005-08-17 Sergey Poznyakoff <gray@gnu.org.ua>
1414
1415 * src/incremen.c (read_directory_file): Use strtoumax to read
1416 snapshot file contents.
1417 (write_directory_file_entry): Use umaxtostr().
1418
1419 2005-07-31 Sergey Poznyakoff <gray@gnu.org.ua>
1420
1421 * src/create.c (file_dumpable_p,dump_file0): Fix handling of
1422 sparse files to /dev/null with --totals option.
1423 * tests/update.at: Remove dependency on file order.
1424
1425 2005-07-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1426
1427 * doc/tar.texi: Fix typo.
1428
1429 2005-07-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1430
1431 * tests/pipe.at: Pipe the output from `tar xfv' through sort.
1432
1433 2005-06-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1434
1435 * src/sparse.c (tar_sparse_init): Fill structure with zeros. Call
1436 sparse_select_optab(). All callers updated.
1437 (sparse_member_p, sparse_fixup_header): Use tar_sparse_init().
1438
1439 2005-06-23 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1440
1441 * src/sparse.c (pax_sparse_member_p): Checking member size
1442 vs. file size is not reliable enough. Use sparse_map_avail.
1443
1444 * tests/star/gtarfail.at: Adapt to the new output format
1445 * tests/star/gtarfail2.at: Likewise
1446 * tests/star/multi-fail.at: Likewise
1447 * tests/star/pax-big-10g.at: Likewise
1448 * tests/star/ustar-big-2g.at: Likewise
1449 * tests/star/ustar-big-8g.at: Likewise
1450
1451 * tests/sparse03.at: New test.
1452 * tests/Makefile.am: Add sparse03.at
1453 * tests/testsuite.at: Likewise
1454
1455 * src/xheader.c (size_decoder): Do not set archive_file_size.
1456
1457 Fix bugs introduced yesterday:
1458
1459 * src/sparse.c (tar_sparse_init): Initialize
1460 dimped_size to 0.
1461 (sparse_scan_file): Initialize archive_file_size to 0. The
1462 variable keeps size of the file *as stored in the archive*, not
1463 the size reported by stat.
1464
1465 2005-06-22 Paul Eggert <eggert@cs.ucla.edu>
1466
1467 A sweep of the sparse code prompted by a bug report by Jim Meyering.
1468 * src/sparse.c: Include <inttostr.h>.
1469 (struct tar_sparse_file): offset and dumped_size are off_t, not
1470 size_t. optab is now const *.
1471 (dump_zeros): Return bool success flag, not off_t.
1472 All callers changed.
1473 Use a constant-zero buffer rather than clearing a buffer each time.
1474 Don't mess up if write fails.
1475 (dump_zeros, check_sparse_region):
1476 Don't assume off_t is no wider than size_t.
1477 (tar_sparse_init): Don't bother clearing a field that is already clear.
1478 (zero_block_p): First arg is const *, not *.
1479 (clear_block, SPARSES_INIT_COUNT): Remove.
1480 (sparse_add_map): First arg is now struct start_stat_info *, not
1481 struct tar_sparse_file *. All callers changed.
1482 Use x2nrealloc to check for size_t overflow.
1483 (parse_scan_file): Cache commonly-used parts of file.
1484 Use an auto buffer, not a static one.
1485 Don't bother clearing the buffer; not needed.
1486 Don't bother clearing items that are already clear.
1487 (oldgnu_optab, star_optab, pax_optab): Now const.
1488 (sparse_dump_region): Don't bother clearing the buffer before
1489 reading into it; just clear the parts that aren't read into.
1490 (sparse_dump_file): Clear the whole local variable 'file'.
1491 (diff_buffer): Remove; now a local var.
1492 (check_sparse_region): Don't bother clearing buffer before
1493 reading into it. Don't assume off_t is promoted to long.
1494 (oldgnu_get_sparse_info, star_get_sparse_info):
1495 Use an auto status, not static.
1496 * src/tar.h (struct tar_stat_info): had_trailing_slash is
1497 now bool, not int.
1498 * src/xheader.c (sparse_offset_coder, sparse_numbytes_coder):
1499 Rewrite to avoid cast.
1500 (sparse_offset_decoder, sparse_numbytes_decoder):
1501 Diagnose excess entries rather than crashing.
1502
1503 2005-06-22 Jim Meyering <jim@meyering.net>
1504
1505 * src/common.h (timespec_lt): Add a return type: bool.
1506
1507 2005-06-21 Paul Eggert <eggert@cs.ucla.edu>
1508
1509 Further improvements inspired by Jim Meyering's fixes.
1510
1511 * NEWS: Better support for full-resolution time stamps.
1512 The -v option now prints time stamps only to 1-minute resolution.
1513 * gnulib.modules: Add utimens.
1514 * lib/.cvsignore: Add imaxtostr.c, inttostr.c, inttostr.h,
1515 offtostr.c, umaxtostr.c, utimens.c, utimens.h. Remove paxconvert.c.
1516 * lib/Makefile.tmpl (libtar_a_SOURCES): Remove paxconvert.c.
1517 * lib/paxconvert.c: Remove; superseded by umaxtostr.c.
1518 * po/POTFILES.in: Remove lib/paxconvert.c. Add lib/xalloc-die.c,
1519 lib/obstack.c.
1520 * src/buffer.c (set_start_time, compute_duration, start_time):
1521 Use gettime rather than rolling our own code.
1522 * src/common.h (OLDGNU_NAME_FIELD_SIZE, MAXOCTAL11, MAXOCTAL7): Remove.
1523 (newer_ctime_option): Remove.
1524 (timespec_lt): New function.
1525 (OLDER_STAT_TIME): Use it.
1526 (string_to_chars): First arg is char const *, not char *.
1527 (tartime): Time arg is now struct timespec. New bool arg.
1528 All callers changed.
1529 (code_ns_fraction): New decl.
1530 (sys_stat_nanoseconds): Remove decl.
1531 (get_stat_atime, get_stat_ctime, get_stat_mtime): New functions.
1532 (set_stat_atime, set_stat_ctime, set_stat_mtime): New functions.
1533 * src/compare.c: Include utimens.h rather than rolling our own.
1534 (diff_dir, diff_file, diff_link, diff_symlink, diff_special):
1535 Prototype.
1536 (diff_dumpdir, diff_multivol): Prototype.
1537 (diff_file): Support higher-resolution time stamps.
1538 * src/create.c: Include utimens.h rather than rolling our own.
1539 (MAX_OCTAL_VAL): New macro.
1540 (tar_copy_str, string_to_chars): Don't bother to zero-fill;
1541 the destination is already zeroed.
1542 (string_to_chars): First arg is char const *.
1543 (start_private_header): Use MINOR_TO_CHARS, not MAJOR_TO_CHARS,
1544 for minor device number.
1545 (write_header_name, dump_hard_link, dump_file0):
1546 Simplify test for old GNU format.
1547 (start_header): Put in placeholders for uid, etc., even when
1548 using extended headers, for benefit of older "tar" implementations.
1549 Don't assume uintmax_t is wider than 32 bits.
1550 Output extended header for mtime if needed.
1551 (dump_regular_finish, dump_file0):
1552 Support extended time stamp resolution.
1553 * src/extract.c: Include utimens.h rather than rolling our own.
1554 (check_time): Support extended time stamp resolution.
1555 * src/list.c: Include <inttostr.h>.
1556 (tartime): Use umaxtostr rather than stringify_uintmax_t_backwards.
1557 * src/xheader.c: Include <inttostr.h>.
1558 Do not include <xstrtol.h>.
1559 (strtoimax) [!HAVE_DECL_STRTOIMAX && !defined strtoimax]: New decl.
1560 (strtoumax) [!HAVE_DECL_STRTOUMAX && !defined strtoumax]: New decl.
1561 (BILLION, LOG10_BILLION): New constants.
1562 (to_decimal): Remove; superseded by inttostr. All callers changed
1563 to use umaxtostr.
1564 (xheader_format_name): Don't assume pids and uintmax_t values
1565 fit in 63 bytes (!) when printed.
1566 (decode_record): Don't bother to check for ERANGE; an out of range
1567 value must be treater than len_max anyway.
1568 If the length is out of range, output it in the diagnostic.
1569 (format_uintmax): Remove; all callers changed to use umaxtostr.
1570 (xheader_print): Don't assume sizes can be printed in 99 bytes (!).
1571 (out_of_range_header): New function.
1572 (decode_time): Use it.
1573 (code_time): Accept struct timespec, not time_t and unsigned long.
1574 All callers changed. Size sbuf properly, and remove unnecessary check.
1575 Don't assume time stamps can fit in 199 bytes.
1576 Handle negative time stamps. Handle fractional time stamps
1577 more consistently. Don't output unnecessary trailing zeros.
1578 (decode_time): Yield struct timespec, not time_t and unsigned long.
1579 All callers changed.
1580 Handle negative time stamps. Truncate towards minus infinity
1581 consistently. Improve overflow checks, and output a better
1582 diagnostic on overflow.
1583 (code_num): Don't assume uintmax_t can be printed in 99 bytes (!).
1584 (decode_num): New function, for better diagnostics.
1585 (atime_coder, atime_decoder, gid_decoder, ctime_coder):
1586 (ctime_decoder, mtime_coder, mtime_decoder, size_decoder):
1587 (uid_decoder, sparse_size_decoder, sparse_numblocks_decoder):
1588 (sparse_offset_decoder, sparse_numbytes_decoder):
1589 Use decode_num, etc., instead of xstrtoumax, etc.
1590
1591 2005-06-21 Jim Meyering <jim@meyering.net>
1592
1593 Carefully crafted invalid headers can cause buffer overrun.
1594 Invalid header fields go undiagnosed.
1595 Some valid time strings are ignored.
1596
1597 * src/xheader.c (sparse_numblocks_decoder): Remove unchecked use
1598 of `calloc'. Use xcalloc instead.
1599 (decode_time, gid_decoder, size_decoder, uid_decoder):
1600 (sparse_size_decoder, sparse_offset_decoder, sparse_numblocks_decoder):
1601 Ensure that the result of calling xstrtoumax is no larger than
1602 the maximum value for the target type. Upon any failure, exit with
1603 a diagnostic.
1604 (sparse_numblocks_decoder): Avoid buffer overrun/heap corruption:
1605 use x2nrealloc, rather than `n *= 2' and xrealloc(p, n,....
1606 (decode_time): Rewrite to accept time strings like
1607 1119018481.000000000. Before, such strings were always ignored.
1608
1609 2005-06-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1610
1611 * src/create.c (dump_file0): Check for is_avoided_name()
1612 first. Fixes bug reported by Martin Lohmeier
1613 <martin@mein-horde.de>
1614 * tests/update.at: New file
1615 * tests/Makefile.am (TESTSUITE_AT): Add update.at
1616 * tests/testsuite.at: Likewise
1617
1618 2005-06-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1619
1620 * configure.ac (AC_STRUCT_ST_BLKSIZE)
1621 (AC_STRUCT_ST_BLOCKS): Removed. Handled by system.m4.
1622
1623 2005-06-02 Paul Eggert <eggert@cs.ucla.edu>
1624
1625 * src/names.c (excluded_name): excluded_filename ->
1626 excluded_file_name, because the name was changed in gnulib.
1627
1628 2005-05-30 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1629
1630 * src/tar.c (read_name_from_file,update_argv): Automatically
1631 detect nul-terminated list files.
1632 * NEWS: Updated
1633
1634 2005-05-27 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1635
1636 * scripts/backup.sh.in: Bugfixes.
1637
1638 2005-05-26 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1639
1640 * scripts/backup.in: Minor fixes
1641 * scripts/backup.sh.in (mt_begin,mt_rewind)
1642 (mt_offline,mt_status): Use $MT to invoke mt
1643 (init_common): Set --rsh-command option for mt if TAPE_FILE is a
1644 remote archive.
1645 * doc/tar.texi: Document new backup scripts behavior
1646
1647 2005-05-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1648
1649 * lib/.cvsignore: Updated
1650 * lib/Makefile.tmpl: Add new paxutils files
1651 * po/POTFILES.in: Likewise
1652 * src/buffer.c: Update invocations of safer_name_suffix()
1653 * src/create.c: Likewise
1654 * src/extract.c: Likewise
1655 * src/xheader.c: Likewise
1656 * src/common.h: Include paxlib.h instead of paxerror.h
1657 (safer_name_suffix,removed_prefixes_p): Removed. The functions are
1658 imported from paxutils
1659 * src/names.c (hash_string_hasher,hash_string_compare)
1660 (hash_string_insert,hash_string_lookup,removed_prefixes_p)
1661 (safer_name_suffix): Moved to paxutils
1662
1663 2005-05-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1664
1665 * bootstrap (copy_files): Accept optional third argument: a prefix
1666 to be appended to destination file names.
1667 Import paxutils/paxlib files.
1668 * configure.ac: Remove checking for LIB_SETSOCKOPT, it is handled
1669 by paxutils.
1670 * lib/Makefile.tmpl (libtar_a_SOURCES): Add paxerror.c paxexit.c
1671 paxconvert.c
1672 * po/POTFILES.in: Likewise.
1673 * src/common.h: Remove defines and declarations imported from
1674 paxutils
1675 * src/misc.c: Likewise
1676 * src/list.c (stringify_uintmax_t_backwards): Moved to paxutils
1677
1678 2005-05-17 Paul Eggert <eggert@cs.ucla.edu>
1679
1680 * src/misc.c (remove_any_file): Fix typo in previous change.
1681
1682 2005-05-14 Paul Eggert <eggert@cs.ucla.edu>
1683
1684 Port to Solaris 10's treatment of unlinking directories.
1685 * gnulib-modules: Add unlinkdir.
1686 * lib/.cvsignore: Add unlinkdir.h, unlinkdir.c.
1687 * src/common.h (we_are_root): Remove extern decl; it's now static.
1688 * src/extract.c (we_are_root): Now static.
1689 * src/misc.c: Include <unlinkdir.h>.
1690 (remove_any_file): Use cannot_unlink_dir () rather than we_are_root.
1691
1692 * ChangeLog, ChangeLog.1, Makefile.am, NEWS, PORTS, README,
1693 README-alpha, TODO, bootstrap, configure.ac, doc/Makefile.am,
1694 doc/convtexi.pl, doc/fdl.texi, doc/gendocs_template,
1695 lib/Makefile.tmpl, lib/prepargs.c, lib/waitpid.c, po/POTFILES.in,
1696 scripts/Makefile.am, scripts/backup-specs, scripts/backup.in,
1697 scripts/backup.sh.in, scripts/restore.in, src/Makefile.am,
1698 src/arith.h, src/buffer.c, src/common.h, src/compare.c,
1699 src/create.c, src/delete.c, src/extract.c, src/incremen.c,
1700 src/list.c, src/mangle.c, src/misc.c, src/names.c, src/sparse.c,
1701 src/system.c, src/tar.c, src/tar.h, src/update.c, src/utf8.c,
1702 src/xheader.c, tests/Makefile.am, tests/append.at,
1703 tests/append01.at, tests/comprec.at, tests/delete01.at,
1704 tests/delete02.at, tests/delete03.at, tests/delete04.at,
1705 tests/delete05.at, tests/extrac01.at, tests/extrac02.at,
1706 tests/extrac03.at, tests/extrac04.at, tests/extrac05.at,
1707 tests/gzip.at, tests/ignfail.at, tests/incremental.at,
1708 tests/link01.at, tests/listed01.at, tests/listed02.at,
1709 tests/long01.at, tests/longv7.at, tests/multiv01.at,
1710 tests/multiv02.at, tests/multiv03.at, tests/multiv04.at,
1711 tests/old.at, tests/options.at, tests/options02.at, tests/pipe.at,
1712 tests/recurse.at, tests/same-order01.at, tests/same-order02.at,
1713 tests/shortrec.at, tests/sparse01.at, tests/sparse02.at,
1714 tests/testsuite.at, tests/truncate.at, tests/version.at,
1715 tests/volume.at, tests/star/gtarfail.at, tests/star/gtarfail2.at,
1716 tests/star/multi-fail.at, tests/star/pax-big-10g.at,
1717 tests/star/quicktest.sh, tests/star/ustar-big-2g.at,
1718 tests/star/ustar-big-8g.at:
1719 Update FSF postal mail address.
1720
1721 2005-05-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1722
1723 * NEWS: Updated
1724 * THANKS: Updated
1725 * bootstrap: Install files from paxutils/doc
1726 * doc/Makefile.am (tar_TEXINFOS): Add genfile.texi
1727 * doc/tar.texi (Genfile): New appendix
1728 * src/compare.c (diff_file): diff_handle was not initialized
1729 * src/create.c (dump_regular_file): Correctly pad archive members
1730 that shrunk during archiving. Repored by Frank Heckenbach.
1731 * src/extract.c (file_newer_p): Return false if file does not
1732 exist
1733 (prepare_to_extract): Correct warning wording.
1734 * tests/truncate.at: New test case
1735 * tests/Makefile.am: Add truncate.at
1736 * tests/testsuite.at: Likewise.
1737
1738 * doc/.cvsignore: Updated
1739 * lib/.cvsignore: Updated
1740 * tests/.cvsignore: Updated
1741
1742 2005-05-02 Paul Eggert <eggert@cs.ucla.edu>
1743
1744 * tests/multivol04.at: Tell awk to read from /dev/null.
1745
1746 Adjust to recent gnulib changes.
1747 * lib/.cvsignore: Add dup-safer.c, fd-safer.c, unistd-safer.h.
1748 * src/common.h (initial_umask): New var.
1749 * src/create.c (start_ueader): Use it, and adjust to new modechange
1750 API.
1751 (hash_link): unsigned -> size_t parameters and result.
1752 * src/incremen.c (hash_directory): Likewise.
1753 * src/names.c (hash_string_hasher): Likewise.
1754 * src/tar.c (parse_opt): Set it, and adjust to new modechange API.
1755
1756 2005-04-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1757
1758 * tests/Makefile.am: Add shortrec.at.
1759
1760 2005-04-18 Paul Eggert <eggert@cs.ucla.edu>
1761
1762 * src/buffer.c (reading_from_pipe): Remove. All uses removed.
1763 (short_read): Don't warn about short reads; they're normal.
1764 * tests/shortrec.at: New file.
1765 * tests/testsuite.at: Include it.
1766
1767 * bootstrap (gnulib_modules): Don't create a file modlist.tmp, as
1768 it is sometimes left behind as a garbage file (maybe due to the
1769 multiple traps?).
1770
1771 2005-04-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1772
1773 * src/list.c: Handle Solaris 'X' type flag
1774 * src/tar.h (SOLARIS_XHDTYPE): New define
1775
1776 2005-04-06 Sergey Poznyakoff <gray@mirddin.farlep.net>
1777
1778 * src/tar.c: Minor fixes to text messages. Proposed by Benno
1779 Schulenberg.
1780 * src/extract.c: Likewise
1781 (extract_file): Assign orig_file_name
1782 to save_name uniformly over the program. This fixes matching
1783 directory names at the start of an archive volume.
1784 * src/buffer.c (flush_write): Warn when the name of the archive
1785 straddling volume boundary is longer than 100 characters. Earlier
1786 behavior was to issue a fatal error.
1787 (struct zip_magic): Reverted part of changes from 2005-04-04.
1788 They make the maintenance too costly. Removing `unsigned'
1789 qualifier from `magic' member should be enough.
1790 * src/compare.c (diff_init): Read directory file if in listed
1791 incremental. This prevents spurious 'Contents differ' diagnostics.
1792 (diff_archive): Minor fixes to text messages
1793 (diff_file,diff_dumpdir,diff_multivol): Assign orig_file_name
1794 to save_name uniformly over the program. This fixes matching
1795 directory names at the start of an archive volume.
1796 * src/create.c: Assign orig_file_name
1797 to save_name uniformly over the program. This fixes matching
1798 directory names at the start of an archive volume.
1799 * src/list.c: Likewise
1800
1801 * tests/multiv03.at: Modified to match the new behavior
1802 * tests/multiv04.at: New file. Test splittind directory members between
1803 the archive volumes.
1804 * tests/Makefile.am: Add multiv04.at
1805 * tests/testsuite.at: Likewise.
1806
1807 2005-04-04 Paul Eggert <eggert@cs.ucla.edu>
1808
1809 * configure.ac (AC_CONFIG_AUX_DIR): Rename from config to build-aux,
1810 for reasons discussed in the thread beginning at
1811 <http://lists.gnu.org/archive/html/bug-gnulib/2005-03/msg00119.html>.
1812 * .cvsignore: Remove config; add build-aux.
1813
1814 * src/buffer.c (struct zip_magic): Use char arrays, not pointers.
1815 The unsigned char * pointer ran afoul of pedantic C compilers, and
1816 we didn't need pointers anyway. Put the size field before the
1817 data to avoid unnecessary padding. All uses changed.
1818 (magic) Make it const, since it doesn't change. All uses changed.
1819
1820 2005-04-02 Paul Eggert <eggert@cs.ucla.edu>
1821
1822 * src/xheader.c (decode_record): Don't dump core when given
1823 a corrupted extended header. Problem reported by Jim Meyering.
1824 Also, check for other ways that the header might be invalid,
1825 e.g., missing newline at end. Do not allow keys with nulls.
1826 Allow blanks before and after length, as POSIX requires.
1827 Do not allow leading "-" in length. Check for length overflow.
1828 (xheader_decode, xheader_decode_global): Let decode_record
1829 check for exhaustion of record.
1830 (xheader_read): Null-terminate the extended record;
1831 decode_record relies on this.
1832
1833 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
1834
1835 * bootstrap (TP_URL): Change from
1836 <http://www2.iro.umontreal.ca/~gnutra/po/maint/tar/> to
1837 <http://www.iro.umontreal.ca/translation/maint/tar/> to avoid
1838 some redirection glitches.
1839 Use "trap - 0" rather than "trap 0" to fix a POSIX-conformance bug.
1840 * doc/.cvsignore: Change "tar.info" to "tar.info*". Sort.
1841 * lib/.cvsignore: Add intprops.h (new gnulib file).
1842
1843 2005-03-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1844
1845 * src/list.c (print_header): Print UID/GID in case of
1846 empty user/group name. This could occur when dumping
1847 files belonging to non-existing users and when listing
1848 broken archives.
1849 Reported by Igor Lautar.
1850
1851 * src/create.c: Correctly parse empty uname/gname
1852 * src/sparse.c (sparse_scan_file): Bugfix. offset had
1853 incorrect type.
1854
1855 * scripts/backup.in: Use `head -n 1'. Provide missing
1856 argument to ${MT_STATUS}. Proposed by Jan Merka.
1857 * scripts/backup.sh.in: Likewise. Fixed typo in
1858 MT_OFFLINE assignment.
1859 * scripts/restore.in (restore_fs): Use root_fs
1860
1861 2005-02-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1862
1863 * src/create.c: Replace strdup with xstrdup
1864 * src/names.c: Likewise
1865 * src/tar.c: Likewise
1866
1867 * tests/append01.at: Added reference to bug-tar archive
1868 * tests/listed02.at: Use -print with find.
1869
1870 2005-02-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1871
1872 * THANKS: Added Tim Adye. Fixed UTF.
1873 * src/list.c (read_header): Removed assignment to
1874 oldgnu_header.isextended. It was breaking append mode.
1875
1876 * tests/append01.at: New test.
1877 * tests/Makefile.am: Added append01.at
1878 * tests/testsuite.at: Likewise
1879
1880 2005-02-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1881
1882 * gnulib.modules: New file. List of required gnulib
1883 modules.
1884 * bootstrap: Merge list of required modules from
1885 paxutils with that from tar proper.
1886 * src/tar.c: Various fixes in help and diagnostic messages.
1887
1888 2005-02-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1889
1890 * src/common.h (EXTRACT_OVER_PIPE): New macro
1891 * src/compare.c: Code clean up.
1892 * src/extract.c (extract_archive): Do not check for
1893 EXTRACT_OVER_PIPE, decode_options() does this.
1894 * src/misc.c (exec_error,fork_error,dup2_error)
1895 (pipe_error): Removed unneeded functions.
1896 * src/system.c (sys_exec_command): Use xclose, xpipe,
1897 xfork, xdup2 and exec_fatal.
1898 * src/tar.c (options): Improved sorting. Document --backup=off.
1899 (decode_options): Clear backup_option if necessary.
1900
1901 2005-02-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1902
1903 Initial implementation of --to-command option proposed
1904 by Hansjoerg Lipp.
1905
1906 * bootstrap: Get setenv module from gnulib
1907 * src/buffer.c: Do not use 8-bit chars in comments
1908 * src/common.h (to_command_option)
1909 (ignore_command_error_option): New globals
1910 (sys_exec_command,sys_wait_command): New commands
1911 * src/extract.c (extract_file): Handle to_command_option
1912 Fix error recovery: decrease `size' by `written', not
1913 by `count', otherwise tar misses the next header
1914 Do not diagnose write error if to_command_option
1915 is set, since the command may have exited prematurely.
1916 It would be better to check for sigpipe, though.
1917 (prepare_to_extract): Handle to_command_option
1918 * src/misc.c (exec_error, fork_error, dup_error)
1919 (pipe_error): New functions
1920 * src/system.c (sys_exec_command)
1921 (sys_wait_command): New functions
1922 * src/tar.c: Handle new options --to-command,
1923 --ignore-command-error
1924 * THANKS: Added Hansjoerg Lipp
1925
1926 2005-02-03 Paul Eggert <eggert@cs.ucla.edu>
1927
1928 * src/list.c (from_header): New arg OCTAL_ONLY, normally false.
1929 All uses changed. Fix typo that sometimes suppressed all "Archive
1930 contains obsolescent base-64 headers" warnings, not just the first
1931 one.
1932 (tar_checksum): Accept only octal checksums, since they aren't
1933 supposed to overflow into weird formats.
1934
1935 Adjust to gnulib changes.
1936 * lib/.cvsignore: Add chdir-long.c, chdir-long.h, memrchr.c,
1937 memrchr.h, openat.c, openat.h. Remove pathmax.h (added by
1938 mistake, perhaps?), sysexit.h (my typo), xstrdup.c (gnulib removed
1939 this file). Sort entries.
1940
1941 2005-02-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1942
1943 * src/extract.c: Further rewrite.
1944 * src/buffer.c: Removed unused variables.
1945 * src/list.c: Likewise
1946 * src/tar.c (update_argv): Changed type to void
1947
1948 * src/common.h (OLDGNU_NAME_FIELD_SIZE): New constant
1949 * src/create.c (start_private_header,write_header_name)
1950 (dump_hard_link): Restore compatibility with 1.13.25
1951 * src/extract.c (extract_archive): Rewritten
1952 * src/list.c: Add translators' comments
1953 * src/tar.c (options) Minor spelling fix
1954 * tests/star/quicktest.sh: Determine path to the tar executable.
1955
1956 2005-02-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1957
1958 * po/POTFILES.in: Added tests/genfile.c
1959 * src/buffer.c (short_read): Use ngettext()
1960 (new_volume): use quote().
1961 * src/create.c: Use quote()
1962 * src/extract.c: Likewise
1963 * src/xheader.c: Likewise
1964 * src/misc.c: Add comments to translators
1965
1966 * tests/same-order01.at: sort ls output
1967 * tests/sparse01.at (RE_CHECK): Added missing space
1968
1969 * tests/sparse02.at: Test extracting sparse files over a pipe.
1970 * tests/Makefile.am: Added sparse02.at
1971 * tests/testsuite.at: Likewise
1972 * tests/listed02.at: Skip the test on filesystems that do not
1973 update ctime of a file when renaming it. To be reverted when
1974 the new incremental mode is ready.
1975 * tests/sparse01.at: Extract and compare sparse file
1976
1977 2005-02-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1978
1979 * src/sparse.c: Extract sparse files even if the output
1980 fd is not seekable.
1981
1982 2005-02-01 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1983
1984 * bootstrap: Add a comment to lib/Makefile.am saying that this
1985 is an autogenerated file.
1986 Exit with code 1 if any of autotools fails.
1987 * lib/Makefile.tmpl: Insert Emacs magic to the first line.
1988 * tests/Makefile.am: Add append.at
1989
1990 * m4/.cvsignore: Ignore all *.m4 files
1991
1992 2005-01-18 Sergey Poznyakoff <gray@Mirddin.farlep.net>
1993
1994 Rewritten handling of -T (--files-from) option. Now it
1995 inserts the file names immediately into argv array which allows
1996 for:
1997 1) any valid tar options (including another -T) to be used in the file
1998 2) any number of -T options to be given in command line
1999
2000 * configure.ac: Raised version number to 1.15.2
2001 * src/common.h: Include obstack.h
2002 (files_from_option): Removed
2003 (unquote_option): New variable
2004 (stat_fatal): New function
2005 (name_close): Removed function.
2006 * src/incremen.c: Remove inclusion of obstack.h
2007 * src/xheader.c: Likewise.
2008 * src/misc.c (stat_fatal): New function
2009 * src/names.c (name_file): Removed variable.
2010 (read_name_from_file): Removed function. All callers changed.
2011 (name_close): Removed function. All callers changed.
2012 * src/tar.c: New options --unquote (--no-unquote) and
2013 --add-file
2014 (add_file_id,read_name_from_file,update_argv): New functions
2015 (parse_opt): Rewritten handling of -T option. Handle hidden
2016 --HANG option for debugging purposes.
2017 (decode_options): Init unquote_option to true. Init argv_stk.
2018 Remove unneeded references to files_from_option
2019
2020 * doc/tar.texi: Document new options.
2021 Moved rendition macros and option value definitions into
2022 separate files
2023 * doc/rendition.texi: New file
2024 * doc/value.texi: New file
2025 * doc/Makefile.am: Updated
2026
2027 2005-01-13 Paul Eggert <eggert@cs.ucla.edu>
2028
2029 * tests/testsuite.at (RE_CHECK): Use "join - file", not
2030 "join file -", to work around a bug in Solaris 8 join.
2031 Problem reported by Tomohiro Suzuki.
2032
2033 2005-01-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2034
2035 * src/list.c (read_header): Fixed calculation of the
2036 size for GNU long name/link. Tar was reading one block
2037 more if name_size was divisible by 512. Thanks Josef
2038 Bauer.
2039 * tests/long01.at: New file. Test listing of GNU long names
2040 divisible by 512.
2041 * tests/pipe.at: Sort tar output.
2042 * tests/Makefile.am: Added long01.at
2043 * tests/testsuite.at: Likewise.
2044 * THANKS: Added Josef Bauer
2045 * lib/.cvsignore: Updated
2046 * m4/.cvsignore: Updated
2047 * NEWS: Updated
2048
2049 2005-01-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2050
2051 * directory: Updated for 1.15.1
2052 * doc/Makefile.am: Use gendocs.sh to generate web documentation
2053 * doc/gendocs_template: Template file for gendocs.sh
2054 * doc/tar.texi: Updated docs for --[no-]same-permissions
2055 * src/tar.c: Reworded docstrings for --[no-]same-permissions
2056
2057 2005-01-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2058
2059 * bootstrap: Create m4/paxutils.m4
2060 * configure.ac: Call tar_PAXUTILS
2061 * tests/options02.at: Test that tar correctly handles non-option
2062 arguments interspersed with options.
2063 * tests/Makefile.am: Add options02.at
2064 * tests/testsuite.at: Likewise
2065 * tests/listed02.at: Do not create useless directory
2066
2067 2005-01-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2068
2069 * src/tar.c (parse_opt): Bugfix: Use ARGP_KEY_ARG. Thanks
2070 Mike Frysinger <vapier@gentoo.org> for reporting.
2071
2072 2005-01-04 Paul Eggert <eggert@cs.ucla.edu>
2073
2074 * lib/Makefile.tmpl (localedir.h): Omit needless quotes and a
2075 needless sed command. Problem reported by Paul Jarc.
2076
2077 2004-12-23 Paul Eggert <eggert@cs.ucla.edu>
2078
2079 Accommodate latest gnulib.
2080 * doc/.cvsignore: Add getdate.texi.
2081 * bootstrap: Do not treat alloca-opt specially; this is no
2082 longer needed (and breaks builds) with latest gnulib.
2083
2084 2004-12-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2085
2086 * src/tar.c (main): Reverted recent changes (#ifdef).
2087
2088 2004-12-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2089
2090 * configure.ac: Raise version number to 1.15.1
2091 Check for locale.h
2092 * NEWS: Entry for 1.15.1
2093 * src/buffer.c: Bugfix. Changes introduced 2004-11-26
2094 broke extraction from stdin.
2095 * src/list.c (from_header, tar_checksum): Changed declaration.
2096 All callers updated.
2097 * src/common.h: Likewise
2098 * src/tar.c (main): Protect invocation of setlocale by
2099 ifdef.
2100
2101 * tests/comprec.at: New test
2102 * tests/pipe.at: New test
2103 * tests/Makefile.am (comprec.at,pipe.at): New tests
2104 * tests/testsuite.at: Likewise
2105 * tests/gzip.at: Use AT_GZIP_PREREQ
2106 * tests/star/pax-big-10g.at: Likewise
2107 * tests/star/ustar-big-2g.at: Likewise
2108 * tests/star/ustar-big-8g.at: Likewise
2109
2110 * tests/extrac04.at: Discard stderr from sort, on some
2111 systems it spits out lots of irrelevant info.
2112 * tests/listed02.at: Likewise
2113
2114 * doc/index.html.in: Rewritten in xhtml to follow recent
2115 GNU site standards.
2116 * THANKS: Updated
2117
2118 2004-12-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2119
2120 Released version 1.15. Sources up to this point are
2121 tagged release_1_15.
2122
2123 * configure.ac: Raised version number to 1.15
2124 * NEWS: Likewise
2125 * directory: Updated
2126 * bootstrap (update_po): Give -r to wget. Always remove index.html
2127 Ignore alloca-opt module (it duplicates alloca)
2128
2129 * tests/Makefile.am: Distribute star/quicktest.sh
2130 * tests/star/README: Document quicktest.sh
2131 * tests/star/qucktest.sh: Removed.
2132 * tests/star/quicktest.sh: New file.
2133
2134 2004-12-18 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2135
2136 * NEWS: Updated
2137 * doc/tar.texi: Document auto-detection of compressed archive
2138 formats.
2139 * src/tar.c (decode_options): Ignore --seek if used with --delete.
2140 Delete.c is based on the assumption that the archive is being
2141 actually read, not lseeked.
2142
2143 * tests/delete05.at: New file
2144 * tests/extrac02.at: Fixed typo in AT_SETUP
2145 * tests/Makefile.am: Added delete05.at
2146 * tests/testsuite.at: Likewise.
2147
2148 2004-12-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2149
2150 * src/delete.c (delete_archive_members): Bugfix: when
2151 attempting to delete an nonexistent member, the last
2152 blocking_factor blocks were zeroed.
2153
2154 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
2155
2156 * TODO: Mention sub-second resolution, lutimes, lchmod.
2157
2158 2004-11-27 Paul Eggert <eggert@cs.ucla.edu>
2159
2160 Adjust to recent gnulib changes.
2161 * doc/getdate.texi: Remove, since bootstrap gets it from gnulib now.
2162 * .cvsignore: Add rmt, rmt/*, rmt/*/*.
2163 * lib/.cvsignore: Add allocsa.c, allocsa.h, allocsa.valgrind,
2164 charset.alias, config.charset, getcwd.c, getcwd.h, localcharset.c,
2165 localcharset.h, ref-add.sed, ref-add.sin, ref-del.sed,
2166 ref-del.sin, setenv.c, setenv.h, unsetenv.c. Remove pathmax.h,
2167 xstrdup.c.
2168 * m4/.cvsignore: Add allocsa.m4, eealloc.m4, getcwd-path-max.m4,
2169 localcharset.m4, realloc.m4, setenv.m4. Remove malloc.m4,
2170 pathmax.m4, realloc.m4.
2171
2172 2004-11-26 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2173
2174 * configure.ac: Raised version number to 1.14.91
2175 * scripts/tarcat: New file
2176 * scripts/Makefile.am: Added tarcat
2177 * src/buffer.c (hit_eof): Changed type to boolean
2178 (read_full_records,reading_from_pipe): New variables
2179 (check_compressed_archive,open_compressed_archive): New functions
2180 (open_archive): Autodetect compressed archives and act accordingly.
2181 Set reading_from_pipe. This fixes controversial set of changes
2182 introduced 2004-05-11,2004-03-22.
2183 * src/list.c (tar_checksum): New function
2184 (read_header): Use tar_checksum().
2185 * src/common.h (tar_checksum): New function
2186
2187 * tests/star/README: Updated
2188 * NEWS: Updated
2189 * PORTS: Updated
2190
2191 2004-11-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2192
2193 * src/tar.c (decode_options): Fixed -o semantics. Thanks
2194 Jean Delvare <khali@linux-fr.org>
2195
2196 2004-10-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2197
2198 * bootstrap: Add localcharset
2199 * lib/Makefile.tmpl: Initialize SUFFIXES and CLEANFILES since the
2200 makefile snippet from localcharset uses '+=' on them.
2201 * src/Makefile.am (LDADD): Add LIBICONV
2202 * src/list.c (decode_header): Set uname/gname to NULL if their
2203 header counterparts are empty
2204 * src/tar.c (options): Use OPTION_NO_TRANS
2205 * src/utf8.c: Use locale_charset() from gnulib
2206
2207 * tests/star/README: Updated
2208
2209 * NEWS: Updated
2210 * TODO: Minor fix
2211
2212 2004-10-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2213
2214 * THANKS: Added Bryan Ford
2215 * doc/Makefile.am (.text): Fixed rule
2216 * po/POTFILES.in: Added argp-help.c
2217
2218 2004-10-04 Bryan Ford <baford@mit.edu>
2219
2220 * src/tar.c: New option --exclude-caches, to exclude
2221 cache directories automatically on archive creation.
2222 Cache directories are directories containing a
2223 standardized tag file, as specified at:
2224 http://www.brynosaurus.com/cachedir/spec.html
2225 * src/common.h: New variable exclude_caches_option.
2226 * src/create.c: New function check_cache_directory(),
2227 called from dump_dir0() if exclude_caches_option is set,
2228 to check for a cache directory tag and exclude the directory
2229 if such a tag is found.
2230 * doc/tar.texi: Updated accordingly.
2231
2232 2004-09-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2233
2234 * doc/tar.texi: Minor fix
2235 * src/tar.c (options): Minor fix
2236
2237 2004-09-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2238
2239 * TODO: Updated
2240 * lib/Makefile.tmpl: Added 'rtapelib.o: localedir.h' dependency
2241 * src/common.h: Comment WANT_DIRECTORY_REMOVE_OPTION.
2242 * src/extract.c: Normalized use of remove_any_file().
2243 * src/misc.c: Likewise.
2244 * src/tar.c (parse_opt): Emit warning if -l option is used.
2245 (show_default_settings): REMOTE_SHELL may be undefined
2246
2247 2004-09-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2248
2249 Test suite rewritten in autotest.
2250
2251 * configure.ac: Updated for autotest
2252 * src/tar.c (argp_program_version): Modified.
2253 * tests/Makefile.am: Rewritten for autotest.
2254
2255 * tests/.cvsignore: Updated
2256 * tests/append.at: New file
2257 * tests/atlocal.in: New file
2258 * tests/delete01.at: New file
2259 * tests/delete02.at: New file
2260 * tests/delete03.at: New file
2261 * tests/delete04.at: New file
2262 * tests/extrac01.at: New file
2263 * tests/extrac02.at: New file
2264 * tests/extrac03.at: New file
2265 * tests/extrac04.at: New file
2266 * tests/extrac05.at: New file
2267 * tests/gzip.at: New file
2268 * tests/ignfail.at: New file
2269 * tests/incremental.at: New file
2270 * tests/link01.at: New file
2271 * tests/listed01.at: New file
2272 * tests/listed02.at: New file
2273 * tests/longv7.at: New file
2274 * tests/multiv01.at: New file
2275 * tests/multiv02.at: New file
2276 * tests/multiv03.at: New file
2277 * tests/old.at: New file
2278 * tests/options.at: New file
2279 * tests/recurse.at: New file
2280 * tests/same-order01.at: New file
2281 * tests/same-order02.at: New file
2282 * tests/sparse01.at: New file
2283 * tests/testsuite.at: New file
2284 * tests/version.at: New file
2285 * tests/volume.at: New file
2286 * tests/star/gtarfail.at: New file
2287 * tests/star/gtarfail2.at: New file
2288 * tests/star/multi-fail.at: New file
2289 * tests/star/pax-big-10g.at: New file
2290 * tests/star/ustar-big-2g.at: New file
2291 * tests/star/ustar-big-8g.at: New file
2292
2293 * tests/preset.in: Removed
2294 * tests/before: Removed
2295 * tests/after: Removed
2296 * tests/version.sh: Removed.
2297 * tests/append.sh: Removed.
2298 * tests/delete01.sh: Removed.
2299 * tests/delete02.sh: Removed.
2300 * tests/delete03.sh: Removed.
2301 * tests/delete04.sh: Removed.
2302 * tests/extrac01.sh: Removed.
2303 * tests/extrac02.sh: Removed.
2304 * tests/extrac03.sh: Removed.
2305 * tests/extrac04.sh: Removed.
2306 * tests/extrac05.sh: Removed.
2307 * tests/gzip.sh: Removed.
2308 * tests/incremen.sh: Removed.
2309 * tests/ignfail.sh: Removed.
2310 * tests/link01.sh: Removed.
2311 * tests/listed01.sh: Removed.
2312 * tests/listed02.sh: Removed.
2313 * tests/longv7.sh: Removed.
2314 * tests/multiv01.sh: Removed.
2315 * tests/multiv02.sh: Removed.
2316 * tests/multiv03.sh: Removed.
2317 * tests/old.sh: Removed.
2318 * tests/options.sh: Removed.
2319 * tests/same-order01.sh: Removed.
2320 * tests/same-order02.sh: Removed.
2321 * tests/volume.sh: Removed.
2322 * tests/recurse.sh: Removed.
2323 * tests/sparse01.sh: Removed.
2324 * tests/star/gtarfail.sh: Removed.
2325 * tests/star/gtarfail2.sh: Removed.
2326 * tests/star/multi-fail.sh: Removed.
2327 * tests/star/ustar-big-2g.sh: Removed.
2328 * tests/star/ustar-big-8g.sh: Removed.
2329 * tests/star/pax-big-10g.sh: Removed.
2330
2331 2004-09-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2332
2333 * bootstrap: Install genfile.c from paxutils
2334 * tests/genfile.c: Removed. Integrated into
2335 paxutils.
2336 * tests/mksparse.c: Removed. Integrated into
2337 (paxutils) genfile.c
2338 * tests/Makefile.am: Removed mksparse
2339 * tests/sparse01.sh: Use genfile instead of mksparse
2340
2341 2004-09-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2342
2343 Started merging with cpio into paxutils. Sources before
2344 this point are tagged alpha-1_14_90
2345
2346 * Makefile.am: Updated for use with paxutils
2347 * README-alpha: Likewise
2348 * bootstrap: Likewise
2349 * configure.ac: Likewise
2350 * lib/Makefile.tmpl: Likewise
2351 * po/POTFILES.in: Likewise
2352 * src/Makefile.am: Likewise
2353 * src/buffer.c: Likewise
2354 * src/common.h: Likewise
2355 * src/compare.c: Likewise
2356 * src/create.c: Likewise
2357 * src/delete.c: Likewise
2358 * src/extract.c: Likewise
2359 * src/incremen.c: Likewise
2360 * src/list.c: Likewise
2361 * src/mangle.c: Likewise
2362 * src/misc.c: Likewise
2363 * src/names.c: Likewise
2364 * src/sparse.c: Likewise
2365 * src/system.c: Likewise
2366 * src/tar.c: Likewise
2367 * src/update.c: Likewise
2368 * src/utf8.c: Likewise
2369 * src/xheader.c: Likewise
2370
2371 * src/system.h: Removed
2372 * src/rmt.c: Removed
2373 * src/rmt.h: Removed
2374 * src/rtapelib.c: Removed
2375
2376 2004-09-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2377
2378 * tests/listed02.sh: Do not depend on any particular ordering
2379 of output.
2380
2381 2004-09-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2382
2383 * doc/tar.texi: Document the use of -C option in
2384 file lists. Document --seek option.
2385 * configure.ac: New option --with-rmt. New configuration variable
2386 DEFAULT_RMT_DIR. Removed DEFAULT_RMT_COMMAND.
2387 * src/Makefile.am: Install rmt into rmtdir
2388 * src/tar.c (usage): Minor fix.
2389 * NEWS: Updated.
2390 * README: Updated.
2391
2392 2004-09-01 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2393
2394 * configure.ac: Raised version number to 1.14.90
2395 * src/common.h (is_individual_file): New prototype
2396 * src/create.c (dump_file0): Fix bug introduced
2397 2004-02-21.
2398 * src/names.c (register_individual_file)
2399 (is_individual_file): New functions.
2400 * tests/listed01.sh: Use genfile instead of dd.
2401 * tests/listed02.sh: New file.
2402 * tests/Makefile.am: Added listed02.sh
2403
2404 * NEWS: Updated
2405
2406 2004-08-31 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2407
2408 * src/sparse.c (sparse_add_map): Fixed improper initializations
2409 of sparse_map_size. We assume that whatever number it contains
2410 describes adequately the current size of sparse_map. The only
2411 number we need to reset is sparse_map_avail.
2412 * src/compare.c (verify_volume): Call set_next_block_after
2413 if read_header returns HEADER_FAILURE
2414 Destroy and reinitialize content of current_stat_info and
2415 extended_header after each iteration (bug reported by
2416 John L. Males <jlmales@yahoo.com>).
2417 Issue a warning if the created archive contains some members
2418 whose file names were stripped off their leading prefixes.
2419 This is a temporary fix of the issue reported by Bdale Garbee
2420 <bdale@gag.com> (Refs: Debian bug 230064, Message-Id
2421 <87n07kyzhi.fsf@rover.gag.com>, Sun, 15 Feb 2004 11:22:17 -0700)
2422
2423 * src/names.c (removed_prefixes_p): New function.
2424
2425 * src/buffer.c: When computing write rate do not take
2426 into account the time needed to verify the archive(s).
2427 The bug reported by John L. Males <jlmales@yahoo.com>
2428 (set_start_time,compute_duration): New functions.
2429 (print_total_written): Use the result of compute_duration().
2430 (close_archive): Call compute_duration.
2431 * src/common.h (set_start_time, removed_prefixes_p): New prototypes.
2432 * src/list.c (decode_header): Fixed initialization
2433 of stat_info->is_sparse
2434 * src/tar.c (main): Call set_start_time().
2435
2436 * src/misc.c (unquote_string): Unquote '\a' and '\v'.
2437 Reported by Helmut Waitzmann <helmut.waitzmann@web.de>.
2438
2439 * NEWS: Updated
2440 * THANKS: Updated
2441
2442 2004-08-30 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2443
2444 * src/tar.c: Fix copy-n-paste errors in the license
2445
2446 2004-08-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2447
2448 * scripts/backup.in: Renamed LIBPATH to LIBDIR.
2449 Use ROOT_FS with -C option. Do not send mail
2450 if ADMINISTRATOR is set to NONE.
2451 * scripts/backup.sh.in (test_root): Append / to
2452 ROOT_FS if it does not already end in it.
2453 * scripts/restore.in: Renamed LIBPATH to LIBDIR.
2454 New option -a (--all). Do not start restore unless
2455 -a or patterns are given.
2456 (restore_fs,restore_files): Fixed use of --listed option.
2457 * doc/tar.texi: Updated
2458 * NEWS: Updated
2459
2460 2004-08-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2461
2462 * src/tar.c (find_argp_option): Fixed typo
2463
2464 2004-08-12 Paul Eggert <eggert@cs.ucla.edu>
2465
2466 Merge argp, getopt, xalloc changes from gnulib.
2467 * bootstrap (gnulib_modules): Add xalloc-die.
2468 Remove code to test for patches; we don't have patches now.
2469 Set LC_ALL=C so that file names sort consistently.
2470 Prefer the gnulib copies of gettext.m4, glibc21.m4,
2471 lib-ld.m4, lib-prefix.m4, po.m4 too.
2472
2473 * patches/getopt.diff: Remove; gnulib now works unpatched.
2474 * configure.ac (_getopt_long_only_r): Remove check.
2475 gl_ARGP now does this for us.
2476 * lib/.cvsignore: Add fnmatch.h, getopt_.h, sysexit.h,
2477 xalloc-die.c.
2478 * src/extract.c: Adjust to changes to gnulib xalloc module.
2479 (extr_init): Remove assignment to xalloc_fail_func; no longer needed.
2480 (xalloc_die): New function.
2481
2482 2004-08-10 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2483
2484 * NEWS: Updated
2485
2486 * src/buffer.c (flush_write): Limit filenames
2487 of the members that straddle multivolume archive
2488 boundary to 100 characters.
2489 (flush_read): Use strncmp when comparing multivolume member
2490 names.
2491 * tests/multiv03.sh: New file
2492 * tests/Makefile.am: Added multiv03.sh
2493
2494 2004-08-09 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2495
2496 * src/list.c (read_and): Call decode_header before
2497 calling skip_member()
2498 (skip_member): Use is_sparse field to determine if the
2499 member is a sparse file.
2500
2501 * tests/Makefile.am: Added extrac05.sh
2502 * tests/extrac05.sh: New file
2503 * tests/append.sh: Rearranged leading comments. Added explicit
2504 references to report messages wherever available.
2505 * tests/delete01.sh: Likewise
2506 * tests/delete02.sh: Likewise
2507 * tests/delete03.sh: Likewise
2508 * tests/delete04.sh: Likewise
2509 * tests/extrac01.sh: Likewise
2510 * tests/extrac02.sh: Likewise
2511 * tests/extrac03.sh: Likewise
2512 * tests/extrac04.sh: Likewise
2513 * tests/gzip.sh: Likewise
2514 * tests/ignfail.sh: Likewise
2515 * tests/incremen.sh: Likewise
2516 * tests/link01.sh: Likewise
2517 * tests/listed01.sh: Likewise
2518 * tests/longv7.sh: Likewise
2519 * tests/multiv01.sh: Likewise
2520 * tests/multiv02.sh: Likewise
2521 * tests/old.sh: Likewise
2522 * tests/options.sh: Likewise
2523 * tests/recurse.sh: Likewise
2524 * tests/same-order01.sh: Likewise
2525 * tests/same-order02.sh: Likewise
2526 * tests/sparse01.sh: Likewise
2527 * tests/version.sh: Likewise
2528 * tests/volume.sh: Likewise
2529
2530 2004-08-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2531
2532 * bootstrap: Extended --update-po option to take an
2533 optional argument specifying the po file to update.
2534 * src/create.c: Improved compatibility with 1.13.25
2535 * tests/link01.sh: New file.
2536 * tests/Makefile.am: Added link01.sh
2537
2538 2004-08-06 Paul Eggert <eggert@cs.ucla.edu>
2539
2540 Merge from gnulib.
2541
2542 * patches/argp.diff: Remove; no longer needed.
2543
2544 * lib/.cvsignore: Add stat-macros.h.
2545 Remove addext.c, malloc.c, realloc.c.
2546
2547 * src/extract.c: Include <getcwd.h>.
2548 (extract_archive): Rewrite with new macro IS_ABSOLUTE_FILE_NAME.
2549 * src/extract.c (make_directories):
2550 FILESYSTEM_PREFIX_LEN -> FILE_SYSTEM_PREFIX_LEN.
2551 * src/misc.c (must_be_dot_or_slash): Likewise.
2552 * src/names.c (excluded_name, safer_name_suffix, stripped_prefix_len):
2553 Likewise.
2554 * src/tar.c (parse_opt): Likewise.
2555 * src/incremen.c (purge_directory): Fix format buffer typos in warning
2556 strings.
2557 * src/tar.c (options): Add missing initializers to pacify gcc.
2558 (decode_options): Remove unused var.
2559
2560 2004-08-02 Paul Eggert <eggert@cs.ucla.edu>
2561
2562 * bootstrap (gnulib_modules): Add getpagesize.
2563 * configure.ac (valloc): Remove check; valloc no longer used.
2564 * lib/.cvsignore: Add getpagesize.h.
2565 * m4/.cvsignore: Add getpagesize.m4.
2566 * src/buffer.c (record_buffer): New var.
2567 (open_archive): Don't use valloc; on older or buggy hosts, you can't
2568 free the result. Use page_aligned_alloc instead.
2569 * src/compare.c (diff_init): Likewise.
2570 * src/buffer.c (open_archive): Record the pointer to be freed
2571 into record_buffer.
2572 (close_archive): Free record_buffer.
2573 * src/common.h (page_aligned_alloc): New decl.
2574 * src/misc.c (quote_n, quote): Remove these redundant functions.
2575 (ptr_align): New function, from coreutils/src/system.h.
2576 (page_aligned_alloc): New function.
2577 * src/system.h (valloc): Remove.
2578
2579 2004-07-09 Paul Eggert <eggert@cs.ucla.edu>
2580
2581 * src/extract.c (extract_archive): Do not report an error
2582 when hard-linking X to X when X exists. Problem reported by
2583 Toby Peterson.
2584 * lib/.cvsignore: Add fchown-stub.c.
2585
2586 2004-06-29 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2587
2588 * NEWS: Updated
2589 * src/common.h (root_device): New global.
2590 (gnu_restore): Renamed to purge_directory().
2591 * src/extract.c (extr_init): Save the device number
2592 of the root device.
2593 (extract_archive): Renamed gnu_restore() to purge_directory().
2594 * src/incremen.c (gnu_restore): Renamed to purge_directory().
2595 Do not attempt to purge the directory if it is on a different
2596 device and one_file_system_option is set.
2597
2598 2004-06-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2599
2600 * doc/tar.texi: The actual default for exclude patterns
2601 is --no-anchored. Fixed.
2602 * src/tar.c (options): Likewise.
2603 Thanks "Felix Natter" <felix.natter@ldc.de> for noticing.
2604
2605 2004-06-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2606
2607 * doc/tar.texi: Fixed several inconsistencies.
2608 * src/tar.c: Fixed docstring for --checkpoint option.
2609
2610 2004-05-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2611
2612 * src/buffer.c (seek_archive): New function
2613 * src/common.h (seek_archive): New function
2614 (seekable_archive): New global.
2615 * src/list.c (skip_file): Use seek_archive() if
2616 possible.
2617 * src/tar.c (struct fmttab): Accept 'pax' as alias
2618 for 'posix'
2619 (options): New option -n (--seek).
2620 * src/update.c: Determine type of the archive before
2621 appending to it.
2622
2623 * TODO: Updated.
2624
2625 2004-05-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2626
2627 * bootstrap: New option --update-po
2628 * src/tar.c: New option -H (short alias to --format)
2629 * doc/tar.texi: Document -H option
2630 * src/names.c (safer_name_suffix): Fixed bug introduced
2631 2004-05-11.
2632
2633 2004-05-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2634
2635 * bootstrap: Apply patches from patch subdirectory
2636 * patches: New dir
2637 * patches/argp.diff: New file
2638 * patches/getopt.diff: New file
2639 * configure.ac: Check for _getopt_long_only_r and
2640 force using included version of getopt if the function
2641 is not available.
2642 * src/tar.c: Use argp for command line parsing.
2643 * src/system.h: Minor formatting fix
2644 * m4/.cvsignore: Updated
2645 * lib/.cvsignore: Updated
2646 * doc/tar.texi: Minor fix.
2647 * src/extract.c: Fix improper use of 'path' term
2648 * src/incremen.c: Likewise
2649 * src/list.c: Likewise
2650 * src/misc.c: Likewise
2651 * src/names.c: Likewise
2652 * src/rmt.h: Likewise
2653 * src/rtapelib.c: Likewise
2654 * src/update.c: Likewise
2655 * src/xheader.c: Likewise
2656 * tests/star/README: Minor fix
2657
2658 2004-05-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2659
2660 * configure.ac: Raised version number to 1.14.1
2661 * src/tar.c: Renamed --strip-path to --strip-components
2662 Changed improper use of _() to ngettext().
2663 * src/extract.c: Renamed strip_path_option to strip_components_option
2664 * src/common.h: Likewise.
2665 * NEWS: Updated.
2666 * doc/tar.texi: Updated
2667
2668 2004-05-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2669
2670 * src/system.c (sys_child_open_for_uncompress): Do not
2671 set read_full_records_option: the compressed archive is
2672 likely not to contain integer number of records. Should
2673 the user wish to use reblocking, he may always give tar
2674 -B option. This is a minor improvement over the change
2675 dated 2004-03-22.
2676 * src/buffer.c (open_archive): Removed assignment to
2677 read_full_records_option.
2678
2679 * src/names.c (safer_name_suffix): (safer_name_suffix): Use "%s"
2680 as the format argument, rather than a possibly-translated variable
2681 string. Patch provided by Jim Meyering <jim@meyering.net>
2682 * src/tar.c (decode_options): Fixed typo in the comment.
2683 * tests/star/README: Minor correction
2684
2685 2004-05-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2686
2687 * directory: New file. GNU directory entry for tar.
2688 * doc/Makefile.am: Rewritten. Added rules for generating
2689 documentation for the project's website.
2690 * doc/.cvsignore: Updated
2691 * doc/index.html.in: New file.
2692
2693 2004-05-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2694
2695 * configure.ac: Raised version number to 1.14
2696 * NEWS: Updated.
2697 * tests/after: Added copyleft statement
2698 * tests/before: Added copyleft statement
2699 * tests/preset.in: Added copyleft statement
2700
2701 Tar 1.14 is released. Sources up to this point are tagged
2702 release_1_14
2703
2704 2004-05-10 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2705
2706 * configure.ac: Fixed prerequisite headers for sys/buf.h
2707 (needed on FreeBSD)
2708 * src/system.h: Likewise.
2709 * tests/after (compare): Fixed argument quoting under eval
2710 * tests/before: Quote TAR_ARCHIVE_FORMATS
2711
2712 2004-05-10 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2713
2714 * NEWS: Updated
2715 * README: Updated
2716 * PORTS: Updated
2717 * configure.ac: Call gl_AC_TYPE_INTMAX_T. Document
2718 DEFAULT_.* variables. Use DEFAULT_RMT_COMMAND to set
2719 the pathname of the rmt utility.
2720 New option --enable-backup-scripts.
2721 * doc/tar.texi: Updated
2722 * scripts/Makefile.am: Install the scripts only if requested
2723 by the configure.
2724 * scripts/backup.in: Fixed --version output.
2725 Fixed initialization of the listing files and printing
2726 the time of the last previous level dump.
2727 * scripts/restore.in: Fixed --version output.
2728 * src/Makefile.am (localedir.h rule): Generate correct
2729 DEFAULT_RMT_COMMAND variable.
2730 * src/common.h (rmt_command_option): New variable.
2731 * src/list.c (read_and): Print block number before
2732 issuing 'Skipping to next header' diagnostics, if
2733 requested by block_number_option.
2734 * src/rtapelib.c: Use rmt_command_option instead of
2735 hardcoded "/etc/rmt".
2736 * src/tar.c: New option --rmt-command.
2737 (decode_options): Handle --rmt-command. Initialize
2738 rmt_command_option to DEFAULT_RMT_COMMAND.
2739
2740 2004-05-09 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2741
2742 * doc/tar.texi: Further update.
2743
2744 2004-05-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2745
2746 * configure.ac: Minor fix
2747 * scripts/Makefile.am: Updated
2748 * scripts/backup-specs: Updated
2749 * scripts/backup.in: Minor fixes
2750 * scripts/backup.sh: Removed
2751 * scripts/backup.sh.in: New file. Source for backup.sh
2752 * scripts/restore.in: New file
2753 * scripts/.cvsignore: Updated
2754 * scripts/WARNING: Removed
2755 * doc/tar.texi: Updated
2756 * NEWS: Updated
2757
2758 2004-05-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2759
2760 * src/names.c (name_gather): Bugfix: Honor single -C with
2761 --same-order.
2762 * tests/same-order01.sh: New file
2763 * tests/same-order02.sh: New file
2764 * tests/Makefile.am: Updated
2765
2766 * tests/append.sh: Added copyleft header
2767 * tests/delete01.sh: Likewise
2768 * tests/delete02.sh: Likewise
2769 * tests/delete04.sh: Likewise
2770 * tests/extrac01.sh: Likewise
2771 * tests/extrac02.sh: Likewise
2772 * tests/extrac03.sh: Likewise
2773 * tests/extrac04.sh: Likewise
2774 * tests/gzip.sh: Likewise
2775 * tests/ignfail.sh: Likewise
2776 * tests/incremen.sh: Likewise
2777 * tests/multiv01.sh: Likewise
2778 * tests/old.sh: Likewise
2779 * tests/options.sh: Likewise
2780 * tests/recurse.sh: Likewise
2781 * tests/version.sh: Likewise
2782 * tests/volume.sh: Likewise
2783 * tests/star/gtarfail.sh: Likewise
2784 * tests/star/gtarfail2.sh: Likewise
2785 * tests/star/multi-fail.sh: Likewise
2786 * tests/star/pax-big-10g.sh: Likewise
2787 * tests/star/qucktest.sh: Likewise
2788 * tests/star/ustar-big-2g.sh: Likewise
2789 * tests/star/ustar-big-8g.sh: Likewise
2790
2791 * doc/.cvsignore: Updated
2792
2793 2004-05-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2794
2795 * configure.ac: Check whether date accepts +format argument
2796 (for backup scripts).
2797 * scripts/level-0: Removed
2798 * scripts/level-1: Removed
2799 * scripts/weekly.new: Removed
2800 * scripts/dump-remind: Removed
2801 * scripts/backup.in: New file
2802 * scripts/backup.sh: New file
2803 * scripts/dump-remind.in: New file
2804 * scripts/backup-specs: Updated
2805 * scripts/Makefile.am: Updated for new directory contents.
2806 * scripts/.cvsignore: Updated
2807
2808 2004-05-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2809
2810 * TODO: Updated
2811 * doc/tar.texi: Updated
2812 * src/tar.c: --utc implies -vv
2813
2814 2004-04-28 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2815
2816 * src/utf8.c: Make sure ICONV_CONST is defined. AM_ICONV
2817 does not define it if it fails to find iconv.h.
2818
2819 2004-04-26 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2820
2821 * bootstrap: Use gnulib-tool to generate lib/Makefile.am
2822 and parts of configure.ac
2823 * configure.ac: Invoke tar_GNULIB to configure gnulib stuff.
2824 * lib/Makefile.am: Removed
2825 * lib/Makefile.tmpl: New file.
2826 * lib/.cvsignore: Updated
2827 * m4/.cvsignore: Updated
2828 * src/xheader.c: Include stpcpy.h
2829
2830 * src/create.c: Produce an error, not warning, if the
2831 filename is too long.
2832 * tests/longv7.sh: Synchronized with the recent changes.
2833
2834 2004-04-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
2835
2836 * configure.ac: Fixed test for iconv_t
2837 * src/rmt.h: Bugfix by Jürgen Weigert
2838 * THANKS: Add Jürgen Weigert
2839 * tests/star/README: Fixed typo
2840
2841 2004-04-04 Paul Eggert <eggert@twinsun.com>
2842
2843 Merge getdate documentation changes from coreutils.
2844
2845 * doc/getdate.texi: Update from coreutils CVS.
2846 * doc/tar.texi: Fix getdate menu to match getdate.texi's.
2847
2848 Merge recent gnulib changes, and remove some lint.
2849
2850 Improve support for nanosecond-resolution time stamps.
2851 * bootstrap: Add gettime, timespec modules.
2852 * configure.ac (gl_GETTIME, gl_TIMESPEC): Add.
2853 * lib/.cvsignore (getopt_int.h, gettime.c, gettimeofday.c,
2854 timespec.h): Add.
2855 * lib/Makefile.am (libtar_a_SOURCES): Add gettime.c, timespec.h.
2856 * m4/.cvsignore: Add clock_time.m4, gettime.m4, gettimeofday.m4,
2857 st_mtim.m4, timespec.m4. Remove malloc.m4, realloc.m4.
2858 * src/common.h (newer_mtime_option): Now a struct timespec, not
2859 time_t. All uses changed.
2860 (NEWER_OPTION_INITIALIZED, OLDER_STAT_MTIME): New macros.
2861 * src/create.c (dump_file0): Use OLDER_STAT_TIME to compare times.
2862 * src/incremen.c (scan_path): Likewise.
2863 * src/list.c (read_and): Likewise.
2864 * src/list.c (read_and): Use NEWER_OPTION_INITIALIZED to decide
2865 whether newer_mtime_option is initialized.
2866 * src/tar.c (decode_options): Likewise.
2867 * src/tar.c (decode_options): Adjust to new signature for get_date.
2868
2869 * src/buffer.c (short_read, flush_read): Use size_t, not ssize_t, for
2870 result of safe_read, full_write, and similar functions.
2871 Detect safe_read error by comparing to SAFE_READ_ERROR;
2872 detect full_write error by comparing to 0.
2873 All uses changed.
2874 * src/common.h (write_error_details, sys_write_archive_buffer):
2875 Likewise.
2876 * src/misc.c (write_error_details): Likewise.
2877 * src/rmt.c (main): Likewise.
2878 * src/rmt.h (rmt_read__, rmt_write__): Likewise.
2879 * src/rtapelib.c (rmt_read__, rmt_write__, rmt_ioctl__): Likewise.
2880 * src/sparse.c (sparse_scan_file, sparse_dump_region,
2881 check_sparse_region, check_data_region): Likewise.
2882 * src/system.c (sys_write_archive_buffer, sys_drain_input_pipe,
2883 sys_child_open_for_compress, sys_child_open_for_uncompress): Likewise.
2884 * src/update.c (append_file): Likewise.
2885
2886 * src/buffer.c (clear_read_error_count): Use explicit (void)
2887 to indicate a function with no arguments.
2888 * src/create.c (check_links): Likewise.
2889 * src/system.c (sys_get_archive_stat, sys_save_archive_dev_ino,
2890 sys_detect_dev_null_output, sys_drain_input_pipe, sys_spawn_shell,
2891 sys_reset_uid_gid, sys_get_archive_stat, sys_save_archive_dev_ino,
2892 sys_detect_dev_null_output, sys_drain_input_pipe, sys_spawn_shell):
2893 Likewise.
2894 * src/utf8.c (get_input_charset): Likewise.
2895 * src/xheader.c (xheader_ghdr_name, xheader_write_global,
2896 xheader_decode_global, extended_header_init): Likewise.
2897 * tests/mksparse.c (usage): Likewise.
2898
2899 * src/buffer.c (new_volume): Rename local variables to avoid
2900 shadowing warnings.
2901 * src/common.h (file_dumpable_p, sys_stat_nanoseconds,
2902 sparse_file_p, sparse_member_p, sparse_fixup_header,
2903 sparse_dump_file, sparce_extract_file, sparse_skip_file,
2904 sparse_diff_file): Likewise.
2905 * src/compare.c (diff_archive): Likewise.
2906 * src/create.c (file_dumpable_p, dump_regular_file, dump_dir0,
2907 dump_dir, dump_hard_link, file_count_links, dump_file0, dump_file):
2908 Likewise.
2909 * src/extract.c (repair_delayed_set_stat): Likewise.
2910 * src/misc.c (maybe_backup_file, add_hierarchy_to_namelist):
2911 Likewise.
2912 * src/sparse.c (struct tar_sparse_optab, tar_sparse_dump_region,
2913 tar_sparse_extract_region, sparse_dump_region, sparse_extract_region,
2914 sparse_dump_file, sparse_file_p, sparse_member_p,
2915 sparse_fixup_header, sparse_extract_file, sparse_skip_file,
2916 check_data_region, sparse_diff_file): Likewise.
2917 * src/system.c (sys_stat_nanoseconds): Likewise.
2918 * src/xheader.c (xheader_format_name): Likewise.
2919
2920 * src/common.h (enum old_files): Remove comma before }; not portable.
2921
2922 * src/common.h (read_fatal_details): Add __attribute__ ((noreturn)).
2923 * src/rmt.c (usage): Likewise.
2924 * src/xheader.c (xheader_set_single_keyword): Likewise.
2925 * tests/genfile.c (usage): Likewise.
2926 * tests/mksparse.c (die, usage): Likewise. Also add printf attribute
2927 to die.
2928
2929 * src/common.h (gname_to_gid, uname_to_uid): Add const to avoid
2930 some gcc warnings.
2931 * src/names.c (uname_to_uid, gname_to_gid): Likewise.
2932 * src/utf8.c (struct langtab.lang, struct langtab.terr, struct
2933 langtab.charset, charset_lookup): Likewise.
2934
2935 * src/common.h (name_init): Remove unused args. All callers changed.
2936 * src/names.c (name_init): Likewise.
2937
2938 * src/common.h (usage, xheader_write, xheader_write_global,
2939 sys_reset_uid_gid): New decls.
2940
2941 * src/compare.c (report_difference, process_noop): Add
2942 __attribute__ ((unused)) for unused attributes.
2943 * src/sparse.c (oldgnu_sparse_member_p, star_sparse_member_p):
2944 Likewise.
2945 * src/xheader.c (dummy_coder, dummy_decoder, atime_coder,
2946 gid_coder, gname_coder, linkpath_coder, ctime_coder, mtime_coder,
2947 path_coder, size_coder, uid_coder, uname_coder,
2948 sparse_numblocks_coder): Likewise.
2949
2950 * src/create.c (dump_regular_finish, dump_dir0, dump_dir,
2951 dump_file0): Now static.
2952 * src/utf8.c (charset_lookup): Likewise.
2953 * src/xheader.c (xheader_protected_pattern_p,
2954 xheader_protected_keyword_p, xheader_set_single_keyword,
2955 xheader_keyword_deleted_p, xheader_keyword_override_p,
2956 xheader_list_append, xheader_list_destroy, xheader_set_keyword_equal):
2957 Likewise.
2958 * tests/genfile.c (usage): Likewise.
2959 * tests/mksparse.c (die, mkhole, mksparse, usage, xlat_suffix):
2960 Likewise.
2961
2962 * src/create.c (hash_link): Rewrite to avoid cast.
2963
2964 * src/extract.c (file_newer_p): Use parameter, not global var.
2965 * src/misc.c (write_error_details): Likewise.
2966
2967 * src/extract.c (prepare_to_extract): Remove directory arg; not
2968 used. All callers changed.
2969
2970 * src/misc.c (close_fatal): Remove; not used.
2971 * src/system.c (sys_utimes): Likewise.
2972
2973 * src/rmt.c (get_string): Avoid buffer overrun (off by 1 error).
2974
2975 * src/rmt.c (main): Update copyright date to 2004.
2976 * src/tar.c (decode_options): Likewise.
2977
2978 * src/rtapelib.c (get_status_string): Don't lose errno when
2979 skipping the error messages.
2980 (get_status): Report an error if atol returns a negative number.
2981
2982 * src/utf8.c (struct langtab, langtab, charset_lookup,
2983 get_input_charset) [!defined HAVE_LIBCONV]: Omit unused
2984 definitions.
2985 (iconv_open, iconv, iconv_close) [!defined HAVE_LIBCONV]:
2986 Use macros, not definitions, to avoid type clashes with system
2987 headers.
2988 (charset_lookup): Local var is now auto, not static.
2989 (utf8_convert): Use ICONV_CONST instead of const, to avoid
2990 type clashes.
2991
2992 * src/utf8.c (langtab): Initialize all elements of struct, to
2993 avoid gcc warning.
2994 * src/xheader.c (xhdr_tab): Likewise.
2995
2996 * src/xheader.c: Include fnmatch.h, since we use fnmatch.
2997
2998 * tests/mksparse.c (mkhole): Fix typo: bool was assigned to off_t.
2999
3000 2004-04-04 Sergey Poznyakoff <gray@Noldor.runasimi.org>
3001
3002 * NEWS: Updated
3003 * configure.ac: Raised version number to 1.13.94
3004 * src/system.h: Protect inclusion of <sys/time.h>
3005 by ifdef.
3006 Declare time() if HAVE_DECL_TIME is 0
3007 * tests/.cvsignore: Added mksparse
3008
3009 * tests/sparse01.sh: New file
3010 * tests/multiv02.sh: New file
3011 * tests/Makefile.am: Add sparse01.sh and multiv02.sh
3012 * tests/longv7.sh: Added missing call to 'after'
3013
3014 * src/common.h: Added missing prototypes
3015 * src/compare.c (diff_archive): Use is_sparse member
3016 instead of GNUTYPE_SPARSE.
3017 * src/create.c: Removed unused variables
3018 * src/extract.c (extract_archive): Use sparse_member_p instead
3019 of GNUTYPE_SPARSE.
3020 Removed unused variables
3021 * src/list.c (decode_header): Use sparse_fixup_header to correct
3022 the st_size value.
3023 (print_header): Do not rely on GNUTYPE_SPARSE type.
3024 Use st->stat.st_size to print real file size.
3025 (skip_member): Assign stat_info.file_name to save_name. This fixes
3026 bug reported by Mads Martin Joergensen <mmj@suse.de>
3027 Use sparse_skip_file() to skip sparse members.
3028 * src/rtapelib.c: include "common.h"
3029 * src/sparse.c (struct tar_sparse_optab.sparse_member_p)
3030 (struct tar_sparse_optab.fixup_header): New member
3031 (tar_sparse_member_p): New function.
3032 (tar_sparse_init): Return true if decode_header is not provided
3033 (tar_sparse_fixup_header)
3034 (sparse_member_p,sparse_fixup_header)
3035 (sparse_skip_file)
3036 (oldgnu_sparse_member_p,oldgnu_fixup_header,star_sparse_member_p)
3037 (star_fixup_header, pax_sparse_member_p): New function
3038 (pax_decode_header): Remove
3039 * src/system.h: Include <sys/time.h> and <utime.h> when available
3040 * src/tar.c (usage): Prototype moved to common.h
3041 * src/tar.h (struct tar_stat_info.is_sparse): New member
3042 * src/utf8.c (utf8_convert): Changed prototype
3043 (get_input_charset): Removed unused variable
3044 * src/xheader.c: include <fnmatch.h>
3045 (size_decoder): Assign to both st->archive_file_size and
3046 st->stat.st_size.
3047 (st->stat.st_size): Assign to st->stat.st_size
3048 (sparse_numbytes_decoder): Removed unused variable
3049 * src/.cvsignore: Added .gdbinit
3050 * THANKS: Added Mads Martin Joergensen
3051
3052 2004-03-26 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3053
3054 * src/create.c (write_long_name): Do not allow more than
3055 NAME_FIELD_SIZE-1 characters in a file name for V7 format
3056 archives.
3057 * tests/longv7.sh: New file.
3058 * tests/Makefile.am: Add longv7.sh
3059
3060 2004-03-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3061
3062 * src/buffer.c (open_archive): Clear read_full_records_option
3063 if reading from a pipe.
3064 (short_read): Display warning about the deduced record size
3065 if version > 1
3066 * tests/star/pax-big-10g.sh: Updated to match the above changes.
3067 * tests/star/ustar-big-2g.sh: Likewise.
3068 * tests/star/ustar-big-8g.sh: Likewise.
3069
3070 * configure.ac: Added gl_FUNC_STRTOULL
3071 * src/create.c (start_header): Check for GNU_FORMAT
3072 if incremental_option is set.
3073 * src/xheader.c (to_decimal): New function.
3074 (xheader_format_name): Use to_decimal() instead of snprintf.
3075 * tests/listed01.sh: Use genfile instead of dd
3076 * tests/multiv01.sh: Likewise.
3077
3078 2004-03-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3079
3080 * src/list.c (read_and): Stop processing the archive after
3081 encountering a single zero record. Many old archives contain
3082 arbitrary garbage after it.
3083 The warning is issued anyway.
3084
3085 2004-03-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3086
3087 * src/rtapelib.c (rmt_lseek__,rmt_ioctl__): Bugfix. The
3088 conversion buffer was not null terminated. Fix provided
3089 by Leland Lucius <llucius@tiny.net>
3090 * THANKS: Added Leland Lucius
3091 * src/utf8.c (utf8_convert): Indentation fix.
3092
3093 2004-02-29 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3094
3095 * src/buffer.c (flush_read): Bugfix: the
3096 condition at line 714 included
3097
3098 || (status > 0 && !read_full_records_option)
3099
3100 which is grossly wrong, since even if new_volume() below succeeds,
3101 the subsequent call to rmtread will overwrite the chunk of data
3102 already read in the buffer and thus spoil everything.
3103 * src/system.c (sys_child_open_for_uncompress): Minor stylistic
3104 fix.
3105 * tests/star/multi-fail.sh: New test.
3106 * tests/Makefile.am: Added multi-fail.sh
3107 * tests/star/README: Updated
3108
3109 2004-02-29 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3110
3111 * NEWS: Updated
3112 * configure.ac: Removed spurious AC_CHECK_LIB(iconv)
3113 * src/common.h (utc_option): new global
3114 (enum old_files.KEEP_NEWER_FILES): New element
3115 * src/extract.c: Handle --keep-newer-files option
3116 * src/list.c (tartime): Print UTC if --utc was given.
3117 * src/tar.c: New options: --utc and keep-newer-files
3118
3119 * tests/Makefile.am: Added new tests
3120 * tests/after: Rewritten
3121 * tests/before: Rewritten
3122 * tests/preset.in: Rewritten
3123 * tests/delete03.sh: Accommodate for the new testsuite logic
3124 * tests/gzip.sh: Likewise
3125 * tests/incremen.sh: Likewise
3126 * tests/listed01.sh: Likewise
3127 * tests/multiv01.sh: Likewise
3128 * tests/old.sh: Likewise
3129 * tests/options.sh: Likewise
3130 * tests/version.sh: Likewise
3131 * tests/volume.sh: Likewise
3132
3133 * tests/star: New directory
3134 * tests/star/README: New file
3135 * tests/star/gtarfail.sh: New file
3136 * tests/star/gtarfail2.sh: New file
3137 * tests/star/pax-big-10g.sh: New file
3138 * tests/star/qucktest.sh: New file
3139 * tests/star/ustar-big-2g.sh: New file
3140 * tests/star/ustar-big-8g.sh: New file
3141
3142 2004-02-26 Paul Eggert <eggert@twinsun.com>
3143
3144 * doc/tar.texi (dircategory Individual utilities): Append period,
3145 as suggested by Karl Berry.
3146
3147 2004-02-24 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3148
3149 * src/list.c (decode_header): Call xheader_decode before
3150 the assignment to current_stat_info.archive_file_size.
3151
3152 2004-02-23 Paul Eggert <eggert@twinsun.com>
3153
3154 * configure.ac: Invoke AM_ICONV, to define ICONV_CONST if needed.
3155
3156 2004-02-23 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3157
3158 1.13.93 released.
3159
3160 * NEWS: Updated
3161 * tests/before: Move testing of the prerequisite archive formats
3162 to the separate function 'prereq'. Do not expect any arguments
3163 * tests/delete03.sh: Use prereq() instead of passing arguments
3164 to 'before'.
3165 * tests/incremen.sh: Likewise.
3166 * tests/listed01.sh: Likewise.
3167 * tests/multiv01.sh: Likewise.
3168
3169 2004-02-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3170
3171 Added UTF-8 support. Finished global extended header
3172 support.
3173
3174 * NEWS: Minor fix
3175 * configure.ac: Detect libiconv
3176 * src/utf8.c: New file. Conversions to and from utf-8.
3177 * src/Makefile.am: Added utf8.c
3178 * src/create.c (write_header_name) In pax format, use
3179 "path" keyword if the file name is not ASCII
3180 (start_header): Likewise for uname and gname.
3181 * src/list.c: Decode encountered global headers.
3182 * src/xheader.c: Use keywords from the global
3183 headers.
3184 Correctly handle UTF-8 conversions.
3185 (xheader_list_destroy): New function.
3186 (xheader_set_single_keyword,xheader_set_keyword_equal): Added
3187 missing gettext markers
3188 (decode_record): Rewritten using caller-provided handler and
3189 data closure.
3190 * tests/listed01.sh: Give credit to Andreas Schuldei.
3191
3192 2004-02-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3193
3194 * src/create.c (dump_file0): The conditional at line
3195 1296 prevented incremental backups on individual files
3196 from working, as reported by Andreas Schuldei
3197 <andreas@schuldei.org>.
3198
3199 This is due to the condition
3200
3201 (0 < top_level || !incremental_option)
3202
3203 Removing it makes incremental backups work for individual
3204 files as well as for directories. On the other hand, it does
3205 not affect other functionality, as shown by the reasoning below:
3206
3207 To begin with, the two parts of this condition are mutually
3208 superfluous, because
3209
3210 1) when top_level < 0, incremental_option == 1
3211 so the condition yields false
3212 2) when top_level >= 0, incremental_option == 0
3213 so the condition yields true.
3214
3215 In other words, it is completely equivalent to
3216
3217 (!incremental_option)
3218
3219 Now, let's consider the effect of its removal. There are two cases:
3220
3221 1) when incremental_option==1
3222 This means incremental backup in progress. In this case dump_file
3223 is invoked only for directories or for files marked with 'Y' by
3224 get_directory_contents. The latter are those that did not meet the
3225 condition in incremen.c:242, which is exactly the same condition
3226 as this at create.c:1296. So, for these files the check
3227 (!incremental_option) is useless, since the rest of the
3228 conditional will yield false anyway. On the other hand, if
3229 dump_file is invoked on a directory, the conditional will yield
3230 false due to !S_ISDIR assertion, so these will be processed as usual.
3231
3232 Thus, for this case the extra condition (!incremental_option) is
3233 irrelevant, and its removal won't alter the behavior of tar,
3234 *except* that it will enable incremental backups on individual
3235 files, which is the wanted effect.
3236
3237 2) when incremental_option==0
3238 In this case the condition yields true and its removal does not
3239 affect the functionality.
3240
3241 * THANKS: Updated
3242 * configure.ac: Raised patchlevel to 93
3243 * src/incremen.c: Minor stylistic fixes.
3244 * tests/listed01.sh: New test. Check listed incremental
3245 backups on individual files.
3246 * tests/Makefile.am: Added listed01.sh
3247
3248 2004-02-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3249
3250 * src/common.h (simple_finish_header,start_private_header): New
3251 declarations
3252 (xheader_ghdr_name): Changed declaration
3253 * src/create.c (start_private_header): Removed static qualifier.
3254 (write_extended): Removed superfluous last argument. Use
3255 xheader_write()
3256 (simple_finish_header): New function.
3257 (finish_header): Use simple_finish_header() to break recursive
3258 dependency between this function and write_extended().
3259 * src/tar.c (assert_format): Do not bail out if several
3260 --format arguments are given. This is a common case when
3261 TAR_OPTIONS are used.
3262 (decode_options): New option --show-defaults displays the
3263 compiled-in defaults.
3264 Use POSIX format if no --format option was given and
3265 --pax-option was specified.
3266 Do not allow to use --pax-option unless the archive format is
3267 set to POSIX (or reading subcommand is requested).
3268
3269 * src/update.c (update_archive): Write global extended header if
3270 constructed.
3271 * src/xheader.c (xheader_format_name): Bugfix.
3272 (xheader_xhdr_name): Changed the default extended header name
3273 to '%d/PaxHeaders.%p/%f', as POSIX requires.
3274 (xheader_ghdr_name): Removed unused argument.
3275 (xheader_write,xheader_write_global): New function.
3276 (xheader_decode): Modified to honor overrides whatever
3277 the current archive format is.
3278
3279 * src/delete.c (delete_archive_members): Call xheader_decode
3280 unconditionally.
3281 * src/list.c (decode_header): Likewise.
3282 * src/incremen.c (sort_obstack): Fixed typo in the comment
3283
3284 * doc/tar.texi: Document new default for extended
3285 header names.
3286
3287 * tests/before: Accept an optional list of allowed archive
3288 formats. Exit with the status 77 if the current archive
3289 format does not match any of them.
3290 * tests/delete03.sh: Require gnu, oldgnu or posix format
3291 * tests/incremen.sh: Require gnu or oldgnu format
3292 * tests/multiv01.sh: Likewise
3293
3294 2004-02-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3295
3296 * doc/tar.texi (Option Summary): Documented --pax-option
3297 * src/tar.c: Likewise.
3298 * NEWS: Likewise.
3299 * src/create.c (to_chars): Added a comment.
3300 * src/tar.h: Comment to GNU_FORMAT
3301
3302 2004-02-18 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3303
3304 * README: Updated
3305 * configure.ac: Added stpcpy
3306 * bootstrap: Likewise
3307 * lib/Makefile.am: Likewise
3308 * src/common.h (xheader_xhdr_name,xheader_ghdr_name): New
3309 functions
3310 * src/create.c (write_extended): Call xheader_xhdr_name
3311 instead of using hardcoded "././@PaxHeader" name.
3312 * src/tar.c: New option --pax-option (equivalent to -o option
3313 of pax).
3314 * src/xheader.c: Implement pax -o option. Fixed misleading
3315 heading comment (introduced 2003-09-02).
3316 * src/incremen.c: Minor fixes
3317 * m4/.cvsignore: Updated
3318
3319 2004-02-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3320
3321 * src/incremen.c: Removed accumulator stuff in favor of obstack.
3322 (get_directory_contents): Split into two functions
3323 * src/update.c: Minor changes
3324 * doc/tar.texi: Fixed typo
3325
3326 2004-02-15 Paul Eggert <eggert@twinsun.com>
3327
3328 Fix Debian bug 230872, originally reported by Jeff King in
3329 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=230872>.
3330
3331 * doc/tar.texi (posix compliance): Remove. The whole section
3332 was a misunderstanding of what POSIXLY_CORRECT is supposed to
3333 mean. The GNU Coding Standards says that POSIXLY_CORRECT
3334 is for disabling extensions that are incompatible with POSIX:
3335 it is not for disabling compatible extensions. All references
3336 to this section removed.
3337 (posix): This format is created only if the posix format is
3338 specified; it is no longer created if gnu format is specified
3339 and POSIXLY_CORRECT is set.
3340 * src/tar.c (decode_options): Ignore POSIXLY_CORRECT.
3341 POSIX does not specify the behavior of tar, so we should
3342 not worry about POSIXLY_CORRECT here.
3343
3344 2004-01-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3345
3346 * Makefile.am: Removed m4
3347 * configure.ac: Require automake-1.8/autoconf-2.59. Removed
3348 m4/Makefile.
3349 * README-alpha: Updated
3350 * bootstrap: Updated TP URL, improved help output. Default
3351 to :ext:anoncvs and set CVS_RSH, unless already set.
3352 * m4/Makefile.am: Removed
3353
3354 2004-01-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3355
3356 * bootstrap: Bugfix by Marco Gerards <metgerards@student.han.nl>:
3357 Use $option instead of $1 so all options will be parsed.
3358
3359 2004-01-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3360
3361 Started rewriting buffer.c ...
3362
3363 * bootstrap: New option --no-po
3364 * src/buffer.c (new_volume,check_label_pattern): Changed return type.
3365 (time_to_start_writing): Changed data type
3366 (file_to_switch_to): Removed. Variable never assigned to.
3367 (open_archive) Moved option compatibility checks to tar.c
3368 Other minor changes.
3369 * src/common.h (maybe_backup_file): Changed return type
3370 * src/misc.c: Likewise.
3371 * src/create.c: Updated invocations of safer_name_suffix
3372 * src/extract.c: Likewise
3373 * src/delete.c: Updated assignment to write_archive_to_stdout
3374 * src/tar.c (decode_options): More option compatibility checks
3375 (moved from buffer.c)
3376 * src/update.c (time_to_start_writing): Changed data type.
3377 * tests/recurse.sh: New test case.
3378 * tests/mksparse.c: New file.
3379 * tests/Makefile.am: Added recurse.sh and mksparse.c
3380
3381 2004-01-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3382
3383 * src/sparse.c (sparse_diff_file): Bugfix. Thanks
3384 Martin Simmons for the patch.
3385 * src/create.c (dump_dir0): Bugfix. Thanks Piotr Czerwinski
3386 <pius@pld-linux.org> for the patch.
3387
3388 2003-12-26 Paul Eggert <eggert@twinsun.com>
3389
3390 Synchronize with Gettext 0.13.1, Automake 1.8, Autoconf 2.59,
3391 and translation website.
3392
3393 * bootstrap: Don't bother skipping codeset.m4, glibc21.m4,
3394 intdiv0.m4, inttypes_h.m4, inttypes.m4, inttypes-pri.m4,
3395 isc-posix.m4, and lcmessage.m4 from gnulib. This list of files is
3396 a bit obsolete anyway, now that gettext 0.13.1 is out. Also, the
3397 files are replaced by autoreconf. Also, there seems to be a bug
3398 in gettext/autoconf/automake if we try to omit these files after
3399 autoreconf has replaced them, even though the gettext manual says
3400 they're optional. So give up and just include them for now, even
3401 though they make 'configure' longer and slower.
3402
3403 Change translation URL from
3404 <http://www.iro.umontreal.ca/contrib/po/maint/tar/> to
3405 <http://www2.iro.umontreal.ca/~gnutra/po/maint/tar/> to
3406 accommodate translator website revamp.
3407
3408 Fail if autoreconf fails.
3409
3410 * m4/.cvsignore: Add intmax.m4, longdouble.m4, printf-posix.m4,
3411 signed.m4, size_max.m4, wchar_t.m4, wint_t.m4, xsize.m4, to
3412 ignore files now supplied by gettext 0.13.1.
3413
3414 2003-12-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3415
3416 Synchronized with the backup repository on Mirddin
3417
3418 2003-12-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3419
3420 * configure.ac: Check for varios members of struct stat
3421 that may represent file modification times with a subsecond
3422 precision.
3423 Check for utimes (for future use)
3424 * src/buffer.c (short_read): Issue a warning on short reads.
3425 * src/common.h (sys_stat_nanoseconds): New function
3426 * src/create.c (dump_file0): Use sys_stat_nanoseconds().
3427 * src/list.c (read_and): Treat only two successive zero
3428 filled blocks as an EOF indicator. Issue a warning if
3429 a single one is encountered.
3430 * src/system.c (sys_stat_nanoseconds): New function
3431 * src/tar.h (tar_stat_info.atime_nsec,mtime_nsec,ctime_nsec): New
3432 members.
3433 * src/xheader.c (code_time,decode_time): Support for subsecond
3434 precision.
3435 (atime_coder,atime_decoder,ctime_coder,ctime_decoder)
3436 (mtime_coder,mtime_decoder): Update invocations of code_time and
3437 decode_time.
3438 (gid_decoder,size_decoder,uid_decoder,sparse_size_decoder)
3439 (sparse_numblocks_decoder,sparse_offset_decoder)
3440 (sparse_numbytes_decoder): Updated
3441
3442 2003-12-18 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3443
3444 * src/names.c (safer_name_suffix): Reverted change made
3445 2003-11-14. Reason: Discussion with Paul Eggert and
3446 Jean-Louis Martineau. See also ChangeLog entry from
3447 1999-08-14.
3448 * tests/delete03.sh: Likewise.
3449 * tests/extrac04.sh: Likewise.
3450 * tests/multiv01.sh: Likewise.
3451
3452 2003-12-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3453
3454 * src/incremen.c (write_directory_file): Use sys_truncate
3455 * src/list.c (print_header): Use archive_file_size member
3456 when printing real file size.
3457 * src/sparse.c (sparse_scan_file): Correctly handle files with
3458 a hole at the end.
3459 (sparse_dump_region,sparse_extract_region): Allow for zero size
3460 trailing blocks
3461
3462 2003-12-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3463
3464 * configure.ac: Raised version number to 1.13.92
3465 * src/list.c (decode_header): Discern between pax and ustar
3466 formats
3467 Initialize current_stat_info.archive_file_size.
3468
3469 NOTE: Modifications from this date on are temporarily
3470 stored on local CVS on mirddin. This repository will
3471 be synchronized with Savannah as soon as the latter
3472 becomes operational again.
3473
3474 2003-12-01 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3475
3476 * TODO: Updated
3477 * src/sparse.c: Initial implementation of GNU/pax sparse
3478 file format.
3479 * src/common.h (xheader_store): Changed prototype.
3480 * src/create.c: Update calls to xheader_store
3481 * src/extract.c (extract_archive): Check reported size vs.
3482 archive file size to determine if we have to do with a
3483 sparse file.
3484 * src/tar.c (usage): Cleaned up the sample argument to --newer
3485 option.
3486 (decode_options): Allow --sparse for POSIX_FORMAT archives.
3487 * src/xheader.c (struct xhdr_tab.coder; all coder function): Added
3488 extra argument
3489 Implemented GNU.sparse.* keywords.
3490
3491 2003-11-30 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3492
3493 * configure.ac: Check for setlocale. Thanks Bruno Haible for
3494 reporting.
3495
3496 2003-11-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3497
3498 * src/create.c (write_gnu_long_link): Use oldgnu
3499 magic with @LongLink blocks.
3500
3501 2003-11-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3502
3503 * src/tar.h: Support for star sparse format.
3504 * src/sparse.c: Likewise.
3505
3506 2003-11-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3507
3508 * src/sparse.c (sparse_diff_file): New function
3509 * src/common.h (sys_compare_uid,sys_compare_gid): New functions
3510 (sys_compare_uid_gid): Removed.
3511 (sys_compare_links,report_difference): Changed prototype
3512 (sparse_diff_file): New function
3513 * src/system.c (sys_compare_uid,sys_compare_gid): New functions
3514 (sys_compare_uid_gid): Removed.
3515 (sys_compare_links): Changed declaration
3516 * src/compare.c (diff_archive): Use sparse_diff_file.
3517
3518 2003-11-16 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3519
3520 Rewritten sparse file handling.
3521
3522 * src/sparse.c: New file. Provides a universal framework
3523 for various methods for sparse files handling.
3524 * src/Makefile.am: Added sparse.c
3525 * src/common.h (struct sp_array,sparsearray,sp_array_size)
3526 (init_sparsearray,fill_in_sparse_array): Removed
3527 (enum dump_status): New data type
3528 (pad_archive,close_diag,open_diag,read_diag_details)
3529 (readlink_diag,savedir_diag,seek_diag_details,stat_diag): New
3530 functions.
3531 (sparse_file_p,sparse_dump_file,sparse_extract_file): New
3532 functions.
3533 (print_header): Changed prototype declaration.
3534 * src/tar.h (struct sp_array): Declaration from common.h
3535 (struct tar_stat_info): New members archive_file_size,
3536 sparse_map_avail,sparse_map.
3537 * src/create.c: Major rewrite.
3538 * src/extract.c: Use new sparse file interface.
3539 * src/compare.c (diff_sparse_files): Temporary placeholder.
3540
3541 * src/buffer.c: Minor changes
3542 * src/tar.c: Likewise.
3543 * src/list.c: Likewise.
3544 * src/misc.c (close_diag,open_diag,read_diag_details)
3545 (readlink_diag,savedir_diag,seek_diag_details,stat_diag): New
3546 diagnostics functions.
3547 * src/incremen.c: Use new diagnostics functions.
3548 * src/names.c: Likewise.
3549
3550 2003-11-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3551
3552 * configure.ac: Fixed check for setsockopt
3553
3554 * src/create.c: Do not zero-terminate name field if
3555 the name is exactly 100 characters long.
3556 (write_ustar_long_name): Fixed cheking for unsplittable
3557 names.
3558
3559 2003-11-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3560
3561 * src/create.c (start_header): Removed debugging hook
3562 (dump_file): Fixed handling of linkname field.
3563 * src/names.c (safer_name_suffix): If the input
3564 file name ends with a slash, output one should do so
3565 as well.
3566 * doc/tar.texi: Documented --format=ustar
3567
3568 2003-11-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3569
3570 * src/tar.h (archive_format): USTAR_FORMAT: New type.
3571 * src/create.c: Added POSIX.1-1988 support.
3572 * src/names.c (safer_name_suffix): Skip leading ./
3573 * src/tar.c: New option --format=ustar forces
3574 POSIX.1-1988 archive format.
3575 * tests/delete03.sh: Updated.
3576 * tests/extrac04.sh: Updated.
3577 * tests/multiv01.sh: Updated.
3578
3579 2003-11-13 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3580
3581 * src/list.c (read_and): Initialize current_stat_info
3582 and extended_header at the start of the loop.
3583 * src/names.c (all_names_found): Check if the argument
3584 contains valid filename. Fixes coredump on `not_a_tar_file'
3585 * src/xheader.c (atime_decoder,gid_decoder,ctime_decoder)
3586 (mtime_decoder,size_decoder,uid_decoder): Use xstrtoumax.
3587 Fixes `pax-big-10g' bug.
3588
3589 2003-11-12 Paul Eggert <eggert@twinsun.com>
3590
3591 Fix some C compatibility bugs reported by Joerg Schilling.
3592
3593 * src/common.h (stripped_prefix_len): Fix misspelling
3594 "stripped_path_len" in declaration.
3595 * src/rmt.c (main): Use "return FOO;" rather than
3596 "exit (FOO);"; we no longer have to worry about
3597 pre-ANSI hosts that mishandled returned values from "main".
3598 * src/tar.c (main): Likewise. This avoids warnings on some
3599 compilers.
3600 * src/system.c: Include signal.h, for 'kill'.
3601 * src/system.h (DEV_BSIZE): Remove.
3602 (DEFAULT_ST_BLKSIZE): New macro.
3603 (ST_BLKSIZE): Use it, instead of DEV_BSIZE.
3604 * src/tar.c (enum): Remove comma just before }.
3605
3606 2003-11-12 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3607
3608 * src/list.c (decode_header): Initialize st_atime and
3609 st_ctime.
3610
3611 2003-11-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3612
3613 * configure.ac (tar_save_LIBS): Bugfix. Thanks Adrian
3614 Bunk <bunk@fs.tum.de> for reporting.
3615 * doc/tar.texi: Fixed spelling. Thanks Martin Buchholz
3616 <martin@xemacs.org> for spotting.
3617
3618 2003-11-04 Paul Eggert <eggert@twinsun.com>
3619
3620 * src/xheader.c (xhdr_tab): Make it extern, not static, as C89 and
3621 C99 require this.
3622
3623 2003-10-26 Paul Eggert <eggert@twinsun.com>
3624
3625 * src/system.c (sys_spawn_shell): Cast trailing null to (char *).
3626 Bug reported by Christian Weisgerber.
3627
3628 2003-10-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3629
3630 * AUTHORS: Updated
3631 * NEWS: Updated
3632 * src/tar.c (decode_options): Removed superfluous archive format
3633 check
3634 * doc/tar.texi: Documented new features.
3635
3636 2003-10-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3637
3638 * NEWS: Updated
3639 * THANKS: Added Wojciech Polak
3640 * configure.ac: Added checks for missing functions. Raised
3641 version number to indicate alpha release.
3642 * lib/Makefile.am: Added missing headers
3643 * lib/waitpid.c: Added missing includes.
3644 * src/extract.c: Likewise.
3645 * src/names.c: Removed spurious includes.
3646 * src/xheader.c: Likewise.
3647 * src/system.h [MSDOS]: Fixed spelling of EACCES. Added
3648 macro overriding broken mkdir prototypes.
3649
3650 2003-10-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3651
3652 * configure.ac: Check for dev_t and ino_t.
3653 * m4/Makefile.am: Added missing files.
3654 * src/system.c: New file.
3655 * src/Makefile.am: Added system.c
3656 * src/common.h: Prototypes for functions from system.c
3657 * src/system.h (SET_BINARY_MODE, ERRNO_IS_EACCESS): New defines
3658 * src/buffer.c: Moved system dependencies to system.c
3659 * src/compare.c: Likewise.
3660 * src/create.c: Likewise.
3661 * src/delete.c: Likewise.
3662 * src/extract.c: Likewise.
3663 * src/rtapelib.c: Likewise.
3664
3665 2003-10-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3666
3667 Implemented --occurrence option.
3668
3669 * NEWS: Updated.
3670 * src/tar.c: New option --occurrence.
3671 * src/common.h (occurrence_option): New global
3672 (struct name): Changed `found' member to `uintmax_t
3673 found_count'.
3674 (names_done): Removed
3675 (all_names_found): Changed prototype.
3676 (ISFOUND,WASFOUND): New macros
3677 * src/delete.c (delete_archive_members): Honor --occurrence
3678 option.
3679 * src/list.c (read_and): Likewise.
3680 * src/names.c: Count number of occurrences of each name in the
3681 archive.
3682 (name_match): Honor --occurrence option.
3683 (names_done): Removed
3684 (all_names_found,names_notfound): Rewritten.
3685
3686 2003-10-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3687
3688 * src/tar.c: Removed extra precaution regarding
3689 subcommand_option == CAT_SUBCOMMAND
3690 * lib/Makefile.am: Updated
3691
3692 2003-10-02 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3693
3694 * src/common.h (names_done): New function.
3695 * src/names.c: Likewise.
3696 * src/list.c (read_and): Use all_names_found() as `while'
3697 condition.
3698 * src/tar.c: New option --first-copy
3699 * NEWS: Updated
3700
3701 2003-09-24 Paul Eggert <eggert@twinsun.com>
3702
3703 * src/rmt.c (main): Don't translate Copyright string; international
3704 law says the word "Copyright" should be in English.
3705 * src/tar.c (decode_options): Likewise.
3706
3707 2003-09-22 Paul Eggert <eggert@twinsun.com>
3708
3709 * doc/tar.texi (extracting untrusted archives): New section.
3710
3711 * src/common.h (stripped_path_len): Renamed from cut_path_elements.
3712 Return size_t, not pointer, so that we don't have to worry about
3713 violating the C standard by converting char const * to char *.
3714 All callers changed.
3715 * src/names.c (stripped_path_len): Likewise. Strip file system
3716 prefix, too. Count adjacent slashes as if they were one slash;
3717 that is the POSIX standard.
3718
3719 2003-09-17 Paul Eggert <eggert@twinsun.com>
3720
3721 * README-alpha: Document maintainer tool assumptions a bit. GNU
3722 'sed' is no longer required. For GNU m4 1.4, suggest the patch in
3723 Debian bug 211447. Fix minor misspellings/whitespace nits.
3724
3725 * configure.ac (AC_AIX, AC_MINIX): Remove; subsumed by
3726 gl_USE_SYSTEM_EXTENSIONS.
3727
3728 * lib/.cvsignore: Add exit.h, time_r.c, time_r.h.
3729 * m4/.cvsignore: Add restrict.m4, time_r.m4.
3730
3731 2003-09-17 Paul Eggert <eggert@twinsun.com>
3732
3733 * bootstrap: Don't use "for option; do";
3734 Solaris 8 /bin/sh doesn't like that.
3735
3736 2003-09-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3737
3738 * README-alpha: Updated
3739 * bootstrap: Updated
3740
3741 2003-09-17 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3742
3743 * README-alpha: Updated
3744 * bootstrap: Updated
3745 * po/POTFILES.in: Added src/xheader.c
3746 * src/common.h (cut_path_elements): Added proto.
3747
3748 2003-09-05 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3749
3750 * src/buffer.c: Use ngettext where appropriate.
3751 * src/compare.c: Likewise.
3752 * src/create.c: Likewise.
3753 * src/misc.c: Likewise.
3754 * src/tar.c: Likewise.
3755 * src/update.c: Likewise.
3756
3757 2003-09-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3758
3759 * .cvsignore: Added *.shar.gz
3760 * NEWS: Updated
3761 * TODO: Updated
3762 * src/common.h (strip_path_elements): New variable.
3763 * src/extract.c (extract_archive): Implemented --strip-path
3764 * src/names.c (cut_path_elements): New function.
3765 * src/tar.c: New option --strip-path=NUM.
3766 (decode_options) Assign boolean values to bool variables.
3767
3768 2003-09-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3769
3770 * src/delete.c: Fixed deletion from the POSIX archives.
3771 * src/list.c (read_header): Minor change.
3772 * src/tar.c (main): Do not check for volume_label_option
3773 if subcommand_option is not CREATE_SUBCOMMAND.
3774 * src/xheader.c (xheader_decode): Store the header as
3775 well (for eventual delete).
3776
3777 * tests/incremen.sh: Explicitly request GNU format. This will
3778 disappear when GNU extended header keywords are working.
3779 * tests/multiv01.sh: Likewise
3780 * tests/volume.sh: Likewise
3781
3782 2003-09-04 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3783
3784 * src/create.c: Support for "linkpath" extended keyword.
3785 * src/xheader.c (decode_record): Reversed the return
3786 condition.
3787
3788 2003-09-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3789
3790 * configure.ac: Allow to redefine the default output format.
3791 * src/tar.c: Use DEFAULT_ARCHIVE_FORMAT macro
3792 (archive_format_string): New function.
3793 (usage): Updated help output.
3794 * README: Updated.
3795 * NEWS: Updated.
3796 * TODO: Updated.
3797
3798 2003-09-02 Paul Eggert <eggert@twinsun.com>
3799
3800 * src/common.h (destroy_stat, xheader_decode, xheader_store,
3801 xheader_read, xheader_finish, xheader_destroy): Add decls;
3802 C99 requires this.
3803
3804 * src/create.c (write_extended): Remove unused local 'bufsize'.
3805
3806 * src/delete.c (delete_archive_members): Handle case of
3807 HEADER_SUCCESS_EXTENDED followed by HEADER_FAILURE.
3808 * src/list.c (read_and): Abort if HEADER_SUCCESS_EXTENDED
3809 occurs, as it's not possible.
3810 * src/update.c (update_archive): Likewise.
3811
3812 Use "const" when possible in new code.
3813 * src/tar.c (struct fmttab.name): Now char const *. All uses changed.
3814 (fmttab): Now const. All uses changed.
3815 * src/xheader.c (struct xhdr_tab.keyword): Now pointer to const.
3816 (struct xhdr_tab.coder, struct xhdr_tab.decoder, locate_handler,
3817 decode_record, xheader_store, xheader_print, code_string, code_time,
3818 code_num, dummy_coder, dummy_decoder, atime_coder, atime_decoder,
3819 gid_coder, gid_decoder, gname_coder, gname_decoder, linkpath_coder,
3820 linkpath_decoder, ctime_coder, ctime_decoder, mtime_coder,
3821 mtime_decoder, path_coder, path_decoder, size_coder, size_decoder,
3822 uid_coder, uid_decoder, uname_coder, uname_decoder):
3823 Use pointers to const when possible.
3824 (xhdr_tab): Now const.
3825
3826 * src/tar.c (fmttab): Avoid GCC warning by not eliding initializers.
3827 (set_archive_format): Report an error if no format name matches,
3828 instead of returning an undefined value.
3829
3830 * src/xheader.c (struct xhdr_tab.decoder, dummy_decoder,
3831 atime_decoder, gid_decoder, gname_decoder, linkpath_decoder,
3832 ctime_decoder, mtime_decoder, path_decoder, size_decoder,
3833 uid_decoder, uname_decoder): Remove unused keyword arg.
3834 All uses changed.
3835
3836 * src/tar.c (set_archive_format): Now static.
3837 * src/xheader.c (xhdr_tab, format_uintmax): Now static.
3838
3839 * src/xheader.c (dummy_coder, dummy_decoder, atime_coder,
3840 atime_decoder, gid_coder, gid_decoder, gname_coder, gname_decoder,
3841 linkpath_coder, linkpath_decoder, mtime_coder, mtime_decoder,
3842 ctime_coder, ctime_decoder, path_coder, path_decoder, size_coder,
3843 size_decoder, uid_coder, uid_decoder, uname_coder, uname_decoder):
3844 Remove forward decls; no longer needed.
3845 (xhdr_tab): Move to end, so that the forward decls aren't needed.
3846 Add a forward declaration.
3847
3848 Use 'bool' in new code, when appropriate.
3849 * src/xheader.c (decode_record): Return bool, not int.
3850 * src/common.h (read_header): Since it accepts bool, change
3851 all callers to use false and true rather than 0 and 1.
3852
3853 * src/xheader.c (decode_record): Fix misspelling in diagnostic
3854 "extended headed" -> "extended header".
3855
3856 GNU coding style fixes.
3857 * src/xheader.c (decode_record, xheader_decode):
3858 Do not use decls like "char *p, *q;".
3859
3860 Minor style fixes.
3861 (xheader_store): Avoid parentheses around object operand of sizeof.
3862
3863 2003-09-03 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3864
3865 * src/create.c (start_header): Store long file names
3866 in "path" keyword of an extended header if in POSIX
3867 mode.
3868 (finish_header): print header before calling write_extended().
3869 * src/list.c (list_archive): Always decode the header. This
3870 is necessary so the extended header is processed and the correct
3871 filename is printed no matter what the state of verbose_option.
3872 * src/xheader.c (xhdr_tab): Reserved GNU keywords (commented out
3873 for the time being).
3874
3875 2003-09-01 Paul Eggert <eggert@twinsun.com>
3876
3877 Update from gnulib, and correct fnmatch to fnmatch-gnu.
3878 * bootstrap (gnulib_modules): Change fnmatch to fnmatch-gnu.
3879 Sort.
3880 * configure.ac (gl_USE_SYSTEM_EXTENSIONS): Use this instead
3881 of AC_GNU_SOURCE.
3882 * lib/.cvsignore: Add alloca.h, stdbool.h. Sort. Append newline.
3883 * lib/Makefile.am (lib_OBJECTS): New macro, for convenience when
3884 copying rules from gnulib module descriptions.
3885 (BUILT_SOURCES, EXTRA_DIST, all-local, alloca.h):
3886 Update from gnulib modules alloca, fnmatch, getline, stdbool.
3887 * m4/.cvsignore: Add utimes-null.m4. Sort.
3888
3889 2003-09-01 Sergey Poznyakoff
3890
3891 Added initial support for creating POSIX headers.
3892
3893 * src/common.h (MAXOCTAL11,MAXOCTAL7): New defines
3894 (string_to_chars): New functions
3895 (struct xheader): Changed structure
3896 (gid_to_gname,gname_to_gid,uid_to_uname,uname_to_uid): Changed
3897 prototypes.
3898 * src/create.c (string_to_chars): New function.
3899 (write_extended): New function
3900 (start_header): Create extended POSIX headers if necessary.
3901 (finish_header): Likewise.
3902 * src/list.c (print_header): Take user/group from
3903 current_stat_info.
3904 * src/names.c (gid_to_gname,gname_to_gid)
3905 (uid_to_uname,uname_to_uid): Changed prototypes.
3906 * src/tar.c: New option --format.
3907 * src/tar.h (OLDGNU_COMPATIBILITY): Removed
3908 (struct extra_header): Removed unused structure.
3909 (union block.extra_header): Removed unused member.
3910 * src/xheader.c: Implemented coder functions.
3911 * bootstrap: Added obstack.
3912 * lib/.cvsignore: Likewise.
3913 * configure.ac: Added 'gl_OBSTACK'
3914 * m4/Makefile.am: Added new files.
3915 * m4/.cvsignore: Likewise.
3916 * TODO: Minor formatting change
3917
3918 2003-08-31 Sergey Poznyakoff
3919
3920 Added initial support for POSIX extended and STAR headers
3921 (only for listing/extracting).
3922
3923 * src/xheader.c: New file.
3924 * src/Makefile.am: Added xheader.c
3925 * src/tar.h (struct star_header): New datatype
3926 (XHDTYPE,XGLTYPE): New defines
3927 (enum archive_format:STAR_FORMAT): New member
3928 (struct tar_stat_info): New datatype.
3929 (union block.star_header): New member.
3930 * src/common.h (orig_file_name,current_file_name)
3931 (current_trailing_slash,current_link_name): Removed variables.
3932 (current_stat_info): New variable
3933 (current_stat): Removed
3934 (extended_header): New variable
3935 (decode_header): Changed prototype.
3936 * src/list.c (decode_header): Added initial support for POSIX extended
3937 and STAR headers.
3938 (skip_member): Check oldgnu_header only if current_format is set
3939 to OLDGNU_FORMAT.
3940 * src/buffer.c: Use current_stat_info
3941 * src/compare.c: Likewise.
3942 * src/create.c: Likewise.
3943 * src/delete.c: Likewise.
3944 * src/incremen.c: Likewise.
3945 * src/mangle.c: Likewise.
3946 * src/update.c: Likewise.
3947 * src/extract.c: Likewise.
3948 (make_directories): Improved check for the existence of the directory
3949 * src/tar.c (destroy_stat): New function.
3950
3951 2003-08-29 Paul Eggert <eggert@twinsun.com>
3952
3953 * NEWS, bootstrap: Drop en_GB locale; it was more trouble than it
3954 was worth (e.g., different users in en_GB disagree about -ize
3955 versus -ise).
3956 * po/en_GB.po: Remove.
3957
3958 2003-07-28 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3959
3960 * TODO: Updated
3961 * NEWS: Updated
3962 * src/tar.c: Removed support for the obsolete command line
3963 options.
3964 * doc/tar.texi: Removed references to the obsolete command
3965 line options.
3966
3967 2003-07-27 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3968
3969 * TODO: Updated
3970 * NEWS: Updated
3971 * doc/tar.texi: Updated
3972 * src/common.h (check_links_option): New variable
3973 (orig_file_name): New variable
3974 (check_links): New proto.
3975 * src/create.c (struct link.nlink): New member
3976 (link_table): Static for the module.
3977 (dump_file): Update `link' member when adding new links
3978 to the link_table.
3979 (check_links): New function.
3980 * src/list.c (print_header): Use orig_file_name.
3981 * src/tar.c: New option --check-links. Changed semantics of
3982 -o to comply to UNIX98 when extracting and to its previous
3983 semantics otherwise.
3984 (main): Call check_links if --check-links. was given.
3985
3986 2003-07-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3987
3988 * src/list.c (print_header): Revised
3989 * NEWS: Started the entry for 1.13.26
3990 * doc/Makefile.am (tar.dvi): Fixed TEXINPUTS value.
3991
3992 2003-07-24 Sergey Poznyakoff <gray@Mirddin.farlep.net>
3993
3994 * .cvsignore: Added to the repository.
3995 * doc/.cvsignore: Likewise.
3996 * lib/.cvsignore: Likewise.
3997 * m4/.cvsignore: Likewise.
3998 * po/.cvsignore: Likewise.
3999 * scripts/.cvsignore: Likewise.
4000 * src/.cvsignore: Likewise.
4001 * tests/.cvsignore: Likewise.
4002
4003 * lib/Makefile.am: Added exitfail.[hc]
4004 * src/misc.c (chdir_do): Fixed call to restore_cwd
4005 * src/buffer.c (flush_read): Fixed behavior on short
4006 reads right after opening the new archive (multiv01.sh test).
4007 (new_volume): Special handling for "-".
4008 * src/list.c (print_header): Print trailing slash if
4009 current_trailing_slash was set (extrac03.sh,extrac04.sh tests).
4010 * tests/multiv01.sh: Minor changes.
4011 * m4/Makefile.am: Added missing files.
4012
4013 2003-07-05 Paul Eggert <eggert@twinsun.com>
4014
4015 Finish the checkin begin yesterday.
4016
4017 * NEWS: Document the user-visible changes installed in the last
4018 two days.
4019
4020 * TODO: New file (actually, resurrected; but with new contents).
4021
4022 * src/list.c (read_and): Give full type for procedure arg.
4023 (read_header): Strip trailing slashes, setting current_trailing_slash.
4024 (tartime): Avoid int overflow when printing year (!).
4025 (print_header): New arg specifying block ordinal. All uses changed.
4026 Print link as 'h' type. Give labels for long links and names.
4027
4028 * src/misc.c (contains_dot_dot): Moved to names.c
4029 (must_be_dot_or_slash): New function.
4030 (safer_rmdir): Use it.
4031 (remove_any_file): Now takes enum as option, not boolean.
4032 Check for (Linux) EISDIR as well as (POSIX) EPERM when attempting
4033 to unlink a directory.
4034 (deref_stat): Accept bool, not int.
4035
4036 * src/names.c (namelist_match): Allow partial matches only if
4037 recursive.
4038 (hash_string_hasher): Renamed from hash_avoided_name.
4039 (hash_string_compare): Renamed from compare_avoided_anames.
4040 (hash_string_insert, hash_string_lookup): New functions.
4041 (add_avoided_name, is_avoided_name): Use them.
4042 (safer_name_suffix): New function.
4043 (contains_dot_dot): Moved here from misc.c. Now returns bool, not int.
4044
4045 * src/rmt.c: Don't include print-copyr.h.
4046 (prepare_input_buffer): New arg FD.
4047 Do not read more than INT_MAX bytes at once,
4048 since it breaks on some brain damaged Tru64 hosts.
4049 Divide size by two
4050 when retrying instead of subtracting 1024; for speed.
4051 (main): Use gettext to translate (C), not print_copyright.
4052
4053 * src/system.h: Include <alloca.h> and <stdbool.h> unconditionally,
4054 now that gnulib handles this.
4055 Include <stddef.h> and <limits.h> unconditionally, now that we assume
4056 C89 or better.
4057 Assume that offsetof is defined in stddef.h.
4058 Do not include <sys/param.h>.
4059 (realloc, lseek): Do not declare.
4060 (HAVE_DECL_VALLOC): Renamed from HAVE_VALLOC.
4061 (CHAR_BIT, CHAR_MAX, UCHAR_MAX, LONG_MAX): Remove
4062 declarations, since we now assume C89 or better.
4063 (PARAMS): Remove, as we now assume C89. All uses changed.
4064 (bindtextdomain, textdomain): Include <gettext.h> to define.
4065 Include <unlocked-io.h>.
4066 (valloc): Define if not defined, and if valloc is not declared.
4067 (xstrdup): Remove decl.
4068
4069 * src/tar.c: Do not include <print-copyr.h>.
4070 Include <getdate.h>.
4071 (get_date): Remove decl.
4072 (ATIME_PRESERVE_OPTION, CHECKPOINT_OPTION, FORCE_LOCAL_OPTION,
4073 IGNORE_FAILED_READ_OPTION, INDEX_FILE_OPTION, NO_OVERWRITE_DIR_OPTION,
4074 NUMERIC_OWNER_OPTION, RECURSIVE_UNLINK_OPTION, REMOVE_FILES_OPTION,
4075 SHOW_OMITTED_DIRS_OPTION, TOTALS_OPTION): New constants.
4076 (long_options, decode_options): Use them.
4077 (OVERWRITE_DIR_OPTION): Remove.
4078 (long_options): New options --index-file, --no-overwrite-dir.
4079 Remove --overwrite-dir option.
4080 (usage): Use PACKAGE_BUGREPORT.
4081 (decode_options): Terminate new argv properly.
4082 Use PACKAGE_NAME, PACKAGE_VERSION.
4083 If verbose, report how we grokked any textual date option.
4084 (main): Add support for index-file.
4085
4086 * tests/Makefile.am: Convert to UTF-8.
4087 (AUTOMAKE_OPTIONS): Remove.
4088 (TESTS): Add delete04.sh, multiv01.sh, options.sh.
4089 (INCLUDES): Remove ../intl.
4090 (LDADD): Don't link libtar.a twice.
4091
4092 * tests/genfile.c: Convert to UTF-8.
4093 Don't include <print-copyr.h>.
4094 (DEFAULT_PATTERN): Renamed from DEFAULT.
4095 (ZEROS_PATTERN): Renamed from ZEROS.
4096 (main): Use gettext to translate (C), not print_copyright.
4097
4098 2003-07-04 Paul Eggert <eggert@twinsun.com>
4099
4100 Revamp to meet current standards of autoconf, automake,
4101 gettext, and gnulib, and incorporate new translations.
4102
4103 * config/config.guess, config/config.sub, config/depcomp,
4104 config/install-sh, config/mdate-sh, config/missing,
4105 config/mkinstalldirs, config/texinfo.texi:
4106 Moved here from parent directory, or from doc.
4107 * config.hin: Renamed from config.h.in.
4108 * config/config.rpath: New file.
4109
4110 * intl: Remove this subdirectory.
4111
4112 * lib/fnmatch_.h: Renamed from lib/fnmatch.hin.
4113
4114 * lib/getstr.c, lib/getstr.h, lib/msleep.c, lib/print-copyr.c,
4115 lib/print-copyr.h, lib/readutmp.c, lib/rename.c, lib/stpcpy.c,
4116 lib/strstr.c, lib/strtoimax.c, lib/strtoll.c, lib/strtoull.c,
4117 lib/strtoumax.c, lib/unicodeio.c, lib/unicodeio.h,
4118 lib/xstrtoimax.c, m4/c-bs-a.m4, m4/ccstdc.m4, m4/check-decl.m4,
4119 m4/decl.m4, m4/jm-mktime.m4, m4/prereq.m4, m4/xstrtoimax.m4,
4120 stamp-h.in: Remove.
4121
4122 * lib/alloca_.h, lib/fnmatch_loop.c, lib/gettext.h, lib/pathmax.h,
4123 lib/safe-write.c, lib/safe-write.h, lib/stdbool_.h, lib/strcase.h,
4124 lib/stripslash.c, lib/unlocked-io.h, lib/xgetcwd.h, m4/alloca.m4,
4125 m4/backupfile.m4, m4/bison.m4, m4/chown.m4, m4/dirname.m4,
4126 m4/dos.m4, m4/exclude.m4, m4/fileblocks.m4, m4/ftruncate.m4,
4127 m4/getdate.m4, m4/getopt.m4, m4/hash.m4, m4/human.m4,
4128 m4/intdiv0.m4, m4/intmax_t.m4, m4/inttypes-pri.m4,
4129 m4/inttypes_h.m4, m4/isc-posix.m4, m4/lchown.m4, m4/lib-ld.m4,
4130 m4/lib-link.m4, m4/lib-prefix.m4, m4/memset.m4, m4/mktime.m4,
4131 m4/modechange.m4, m4/nls.m4, m4/onceonly.m4, m4/pathmax.m4,
4132 m4/po.m4, m4/quote.m4, m4/quotearg.m4, m4/rmdir.m4,
4133 m4/safe-read.m4, m4/safe-write.m4, m4/save-cwd.m4, m4/savedir.m4,
4134 m4/ssize_t.m4, m4/stdbool.m4, m4/stdint_h.m4, m4/strcase.m4,
4135 m4/strtoimax.m4, m4/strtol.m4, m4/strtoll.m4, m4/strtoul.m4,
4136 m4/strtoull.m4, m4/strtoumax.m4, m4/tm_gmtoff.m4, m4/uintmax_t.m4,
4137 m4/unlocked-io.m4, m4/xalloc.m4, m4/xgetcwd.m4, m4/xstrtol.m4,
4138 po/LINGUAS, po/Makevars, po/Rules-quot, po/boldquot.sed,
4139 po/en@boldquot.header, po/en@quot.header, po/en_GB.po,
4140 po/insert-header.sin, po/remove-potcdate.sin, po/stamp-po: New files.
4141
4142 * ABOUT-NLS, INSTALL, lib/addext.c, lib/alloca.c, lib/argmatch.c,
4143 lib/argmatch.h, lib/backupfile.c, lib/backupfile.h, lib/dirname.c,
4144 lib/dirname.h, lib/error.c, lib/exclude.c, lib/exclude.h,
4145 lib/fnmatch.h, lib/full-write.c, lib/full-write.h, lib/getdate.h,
4146 lib/getdate.y, lib/getline.c, lib/getline.h, lib/getopt.c,
4147 lib/getopt.h, lib/getopt1.c, lib/hash.c, lib/hash.h, lib/human.c,
4148 lib/human.h, lib/lchown.c, lib/malloc.c, lib/mktime.c,
4149 lib/modechange.c, lib/modechange.h, lib/quote.c, lib/quote.h,
4150 lib/quotearg.c, lib/quotearg.h, lib/realloc.c, lib/safe-read.c,
4151 lib/safe-read.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
4152 lib/savedir.h, lib/strcasecmp.c, lib/utime.c, lib/xalloc.h,
4153 lib/xgetcwd.c, lib/xmalloc.c, lib/xstrdup.c, lib/xstrtol.c,
4154 lib/xstrtol.h, lib/xstrtoumax.c, m4/codeset.m4, m4/d-ino.m4,
4155 m4/error.m4, m4/fnmatch.m4, m4/getcwd.m4, m4/getline.m4, m4/gettext.m4,
4156 m4/glibc21.m4, m4/iconv.m4, m4/inttypes.m4, m4/lcmessage.m4,
4157 m4/longlong.m4, m4/malloc.m4, m4/mbrtowc.m4, m4/mbstate_t.m4,
4158 m4/progtest.m4, m4/realloc.m4, m4/strerror_r.m4, m4/ulonglong.m4,
4159 m4/utimbuf.m4, m4/utime.m4, m4/utimes.m4, m4/xstrtoumax.m4,
4160 po/Makefile.in.in:
4161 Upgrade to latest version from external source. The file "bootstrap"
4162 now grabs these automatically, so we needn't keep track of them
4163 in this change long any longer.
4164
4165 * Makefile.am (AUTOMAKE_OPTIONS): Remove. Now done by configure.ac.
4166 (SUBDIRS): Remove intl.
4167 * PORTS: Update for star, Macintosh.
4168 * README, README-alpha: Suggest Autoconf 2.57, Automake 1.7.5,
4169 Bison 1.875, gettext 0.12.1.
4170 * THANKS: Add Bernhard Rosenkraenzer, Solar Designer.
4171 * configure.ac (AC_INIT, AM_INIT_AUTOMAKE): Convert to modern form.
4172 (AC_CONFIG_AUX_DIR): New.
4173 (AC_CONFIG_HEADERS): Rename config.h.in to config.hin, to be more
4174 like coreutils.
4175 (AC_PREREQ): Bump from 2.52 to 2.57.
4176 (AC_GNU_SOURCE): New.
4177 (AC_PROG_GCC_TRADITIONAL, AM_C_PROTOTYPES, AC_C_CONST): Remove;
4178 we no longer support K&R C.
4179 (YACC): Remove.
4180 (AC_CHECK_HEADERS): Remove limits.h, poll.h, stdbool.h, stropts.h,
4181 sys/ioccom.h, sys/param.h, sys/time.h, sys/timeb.h, wchar.h, wctype.h.
4182 (AC_MBSTATE_T): Remove.
4183 (HAVE_UTIME_H, HAVE_DECL_FREE, HAVE_DECL_GETGRGID, HAVE_DECL_GETPWUID,
4184 HAVE_DECL_GETENV, HAVE_DECL_MALLOC, HAVE_DECL_STRTOUL,
4185 HAVE_DECL_STRTOULL, HAVE_MKNOD): Remove our special code.
4186 (AM_STDBOOL_H): Add.
4187 (AC_HEADER_TIME, AC_STRUCT_TIMEZONE,
4188 jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Remove.
4189 (AC_CHECK_TYPE): Remove ssize_t.
4190 (gt_TYPE_SSIZE_T): Add.
4191 (jm_AC_PREREQ_XSTRTOUMAX, jm_PREREQ_ADDEXT, jm_PREREQ_ERROR,
4192 jm_PREREQ_HUMAN, jm_PREREQ_QUOTEARG, jm_PREREQ_XGETCWD,
4193 AC_FUNC_ALLOCA, AC_FUNC_CLOSEDIR_VOID, AC_FUNC_STRERROR_R,
4194 AC_FUNC_FNMATCH, AC_FUNC_VPRINTF, AM_FUNC_GETLINE, jm_FUNC_MALLOC,
4195 jm_FUNC_MKTIME, jm_FUNC_REALLOC):
4196 Remove. Switch to gnulib macros like gl_BACKUPFILE instead.
4197 (tar_LDADD): Rename to LIB_CLOCK_GETTIME. All uses changed.
4198 (rmt_LDADD): Rename to LIB_SETSOCKOPT. All uses changed.
4199 (AC_CHECK_FUNCS): Remove fchdir, ftime, getcwd, isascii, nap,
4200 napms, poll, select, strstr, usleep.
4201 (AC_REPLACE_FUNCS): Remove ftruncate, lchown, memset, rename,
4202 rmdir, strcasecmp, strncasecmp, strtol, strtoul.
4203 (AM_GNU_GETTEXT): Use external and need-ngettext options.
4204 (AM_GNU_GETTEXT_VERSION): New.
4205 (AC_OUTPUT): Remove intl/Makefile.
4206
4207 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
4208 ($(srcdir)/tar.info, tar.dvi): Remove obsolete warnings.
4209 * doc/fdl.texi: Update to current GNU version.
4210 * doc/gettext.texi: Update to current coreutils version,
4211 plus a copyright notice.
4212 * doc/tar.texi: Switch to new method for doing copyright notices.
4213 Use @acronym instead of @sc where appropriate.
4214 Remove empty examples. Give a few more examples.
4215
4216 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
4217 (EXTRA_DIST, libtar_a_SOURCES): Switch to gnulib, so that they
4218 are built up in pieces with +=.
4219 (noinst_HEADERS, INCLUDES): Remove.
4220 (BUILT_SOURCES, MAINTAINERCLEANFILES, MOSTLYCLEANFILES): New.
4221 (libtar_a_LIBADD): Use $ rather than @.
4222 (all-local, alloca.h, fnmatch.h, stdbool.h): New rules, from gnulib.
4223
4224 * m4/Makefile.am (EXTRA_DIST): Add alloca.m4, backupfile.m4,
4225 bison.m4, chown.m4, dirname.m4, dos.m4, exclude.m4, fileblocks.m4,
4226 ftruncate.m4, getdate.m4, getopt.m4, hash.m4, human.m4,
4227 intdiv0.m4, intmax_t.m4, inttypes_h.m4, inttypes-pri.m4,
4228 isc-posix.m4, lcown.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
4229 memset.m4, mktime.m4, modechange.m4, nls.m4, onceonly.m4,
4230 pathmax.m4, po.m4, quotearg.m4, quote.m4, rmdir.m4, safe-read.m4,
4231 safe-write.m4, save-cwd.m4, savedir.m4, ssize_t.m4, stdbool.m4,
4232 stdint_h.m4, strcase.m4, strtoimax.m4, strtoll.m4, strtol.m4,
4233 strtoull.m4, strtoul.m4, strtoumax.m4, tm_gmtoff.m4, uintmax_t.m4,
4234 unlocked-io.m4, xalloc.m4, xgetcwd.m4, xstrtol.m4.
4235 Remove c-bs-a.m4, ccstdc.m4, check-decl.m4, decl.m4, jm-mktime.m4,
4236 prereq.m4, xstrtoimax.m4.
4237
4238 * po/POTFILES.in: Remove tests/genfile.c; it doesn't need to
4239 be translated, since it's not a user-visible tool.
4240
4241 * scripts/Makefile.am (AUTOMAKE_OPTIONS): Remove.
4242
4243 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
4244 (INCLUDES): Remove ../intl. Put top-srcdir before ., for
4245 consistency with coreutils.
4246 (LDADD): Link LIBINTL after libtar.a, since
4247 it's now external and should stand by itself.
4248
4249 * src/buffer.c (print_total_written): Adjust to new human.h
4250 interface.
4251 (child_open_for_compress): Do not increase size to BLOCKSIZE.
4252 (open_archive): Open index file name.
4253 Strip trailing slahes from file names.
4254 (flush_write): Set size to 0 if not saving names.
4255 (flush_write, flush_read): Use safer_name_suffix rather than
4256 inline code.
4257
4258 * src/common.h: Include <quote.h>.
4259 (absolute_names_option, atime_preserve_option, backup_option,
4260 block_number_option, checkpoint_option, dereference_option,
4261 force_local_option, ignore_failed_read_option, ignore_zeros_option,
4262 incremental_option, interactive_option, multi_volume_option,
4263 numeric_owner_option, one_file_system_option, recursive_unlink_option,
4264 read_full_records_option, remove_files_option, same_order_option,
4265 show_omitted_dirs_option, sparse_option, starting_file_option,
4266 to_stdout_option, totals_option, touch_option, verify_option,
4267 dev_null_output, now_verifying, we_are_root): Now bool, not int.
4268 (current_trailing_slash, index_file_name, recent_long_name_blocks,
4269 recent_long_link_blocks): New vars.
4270 (NO_OVERWRITE_DIR_OLD_FILES): New constant.
4271 (OVERWRITE_OLD_DIRS): Remove.
4272 (enum remove_option): New enum.
4273 (remove_any_file): Use it as option arg, not int.
4274 (is_avoided_name, contains_dot_dot): Return bool, not int.
4275 (safer_name_suffix): New decl.
4276
4277 * src/compare.c (now_verifying): Now bool, not int.
4278 (fill_in_sparse_array): Move to extract.c. Now returns bool;
4279 all callers changed to test for failure.
4280 (diff_sparse_files): Take size from current_stat, not from param.
4281 (diff_archive): Do not count trailing slashes in archives.
4282 (verify_volume): Test for header failure after loop, not before.
4283
4284 * src/create.c (relativize): Remove; replaced by safer_name_suffix.
4285 All callers changed.
4286 (start_header): Clear devmajor and devminor fields, too.
4287 (finish_header): New arg block_ordinal.
4288 (init_sparsearray): Now extern. Set sp_array_size to
4289 SPARSES_IN_OLDGNU_HEADER if it is zero.
4290 (dump_file): Keep link table as a hash.
4291 Do not count "file changed as we read it" as a failure.
4292
4293 * src/delete.c (recent_long_name_blocks, recent_long_link_blocks):
4294 Move extern decl to common.h.
4295
4296 * src/extract.c (we_are_root): Now bool, not int.
4297 (check_time): Warn about implausibly old time stamps.
4298 (set_stat): Use utimbuf, not stat_info.
4299 (prepare_to_extract): New arg DIRECTORY.
4300 (fill_in_sparse_array): Moved here from compare.c.
4301 (extract_sparse_file): Now returns off_t, giving size left.
4302 Truncate file at end.
4303 (extract_archive): Use safer_name_suffix rather than rolling our own.
4304 Use fill_in_sparse_array rather than rolling our own.
4305 Strip trailing slashes more effectively.
4306 Check for unsafe names.
4307
4308 * src/incremen.c (struct directory): nfs and found are now of type
4309 bool, not int.
4310 (gnu_restore): Now takes directory name as argument, not offset
4311 of directory name in a global. All uses changed.
4312 (CURRENT_FILE_NAME): Remove.
4313
4314 New tests.
4315 * tests/delete04.sh, tests/multiv01.sh, tests/options.sh: New
4316 files.
4317
4318 2002-09-30 Paul Eggert <eggert@twinsun.com>
4319
4320 * src/rmt.c (prepare_input_buffer): Renamed form
4321 prepare_record_buffer. All uses changed. Do not assume that
4322 size_t is the same width as int.
4323
4324 2002-03-29 Paul Eggert <eggert@twinsun.com>
4325
4326 * src/incremen.c (get_directory_contents):
4327 If ignore_failed_read_option, only warn about
4328 get_directory_contents failures. Fix suggested by
4329 Mark Costlow.
4330
4331 2002-01-31 Mark W. Eichin <eichin@thok.org>
4332
4333 * src/buffer.c (child_open_for_compress): Don't try to read
4334 past the end of the buffer.
4335
4336 2001-10-11 Jim Meyering <meyering@lucent.com>
4337
4338 * argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
4339 and quote_n (1, ... to avoid clobbering a buffer.
4340
4341 2001-09-26 Paul Eggert <eggert@twinsun.com>
4342
4343 * NEWS, configure.ac (AM_INIT_AUTOMAKE): Version 1.13.25.
4344
4345 * src/buffer.c (flush_read): Don't diagnose partial blocks before
4346 end of file; just ignore them silently.
4347
4348 * src/list.c (read_header): Don't keep around extended name
4349 and link info indefinitely; keep it only for the next file.
4350 This fixes a bug introduced in 1.13.24, and removes the need
4351 for some static variables. Set recent_long_name and
4352 recent_long_link to zero if there were no long links; this
4353 avoids a violation of ANSI C rules for pointers in delete.c.
4354 * THANKS: Add Christian Laubscher.
4355
4356 2001-09-26 Jim Meyering <meyering@lucent.com>
4357
4358 * doc/tar.texi (Remote Tape Server): is know -> is known
4359
4360 2001-09-25 Paul Eggert <eggert@twinsun.com>
4361
4362 * lib/unicodeio.c (EILSEQ): Include <iconv.h> first, since
4363 <iconv.h> may define EILSEQ (e.g. libiconv). Define a
4364 replacement EILSEQ to be ENOENT, not EINVAL, since callers may
4365 want to distinguish EINVAL and EILSEQ.
4366
4367 2001-09-24 Christophe Kalt <Christophe.Kalt@kbcfp.com>
4368
4369 * src/extract.c (maybe_recoverable):
4370 Treat OVERWRITE_OLD_DIRS like DEFAULT_OLD_FILES.
4371
4372 2001-09-22 Paul Eggert <eggert@twinsun.com>
4373
4374 * NEWS, configure.ac (AM_INIT_AUTOMAKE): Version 1.13.24.
4375
4376 * ABOUT-NLS, intl/*: Update to gettext-0.10.40, replacing LGPL
4377 with GPL.
4378
4379 * INSTALL, mkinstalldirs: Update to autoconf 2.52 version.
4380 * PORTS: Add copyright notice, 'star' reference.
4381 * README-alpha: Add copyright notice, autoconf 2.52 patch.
4382 * THANKS: Add Christophe Kalt.
4383 * config.sub: Upgrade to 2001-09-14 version.
4384
4385 * configure.ac (ALL_LINGUAS): Add ko.
4386 * po/ko.po: Resurrected file.
4387
4388 * doc/convtexi.pl: Add coding advice for Emacs.
4389
4390 * doc/getdate.texi: Add copyright notice.
4391
4392 * doc/mdate-sh: Upgrade to automake 1.5 version.
4393
4394 * doc/tar.texi (extracting files): Mention --to-stdout.
4395 (Option Summary, Dealing with Old Files): New option --overwrite-dir.
4396 (Overwrite Old Files): Likewise.
4397
4398 * lib/Makefile.am (noinst_HEADERS):
4399 Remove copysym.h. Add print-copyr.h, unicodeio.h.
4400 (libtar_a_SOURCES): Remove copysym.c, Add print-copyr.c, unicodeio.c.
4401
4402 * lib/copysym.c, lib/copysym.h: Remove.
4403 * lib/print-copyr.c, lib/print-copyr.h, lib/unicodeio.c,
4404 lib/unicodeio.h: New files.
4405
4406 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
4407 lib/mktime.c, lib/strtoll.c: Switch from LGPL to GPL.
4408
4409 * lib/quotearg.c (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
4410 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
4411
4412 * m4/Makefile.am (EXTRA_DIST): Remove isc-posix.m4.
4413 * m4/isc-posix.m4: Remove.
4414
4415 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit.
4416
4417 * po/POTFILES.in: Add copyright notice.
4418
4419 * src/Makefile.am (LDADD): Like libtar.a before @INTLLIBS@ as
4420 well as after.
4421 * tests/Makefile.am (LDADD): Likewise.
4422
4423 * src/buffer.c (write_archive_buffer, close_archive):
4424 If an archive is a socket, treat it like a FIFO.
4425 (records_read, records_written): New vars.
4426 (write_archive_to_stdout): Now bool, not int.
4427 (open_archive, flush_write, flush_read): Keep records_read and
4428 records_written up to date.
4429
4430 * src/common.h (enum old_files): New value OVERWRITE_OLD_DIRS.
4431 (write_archive_to_stdout): Now bool, not int.
4432 (enum read_header): New value HEADER_SUCCESS_EXTENDED.
4433 (read_header): Now takes bool arg. Existing callers modified
4434 to pass 0, unless otherwise specified.
4435
4436 * src/delete.c (records_read): Remove; now a global.
4437 (acting_as_filter): Now bool, not int.
4438 (recent_long_name, recent_long_link, recent_long_name_blocks,
4439 recent_long_link_blocks, records_read, records_written): New decls.
4440 (records_skipped): New var.
4441 (move_archive): Don't divide by zero if arg is 0.
4442 Use the above vars to compute how far to move.
4443 (write_recent_blocks): New function.
4444 (delete_archive_member): Pass 1 to read_header, so that it doesn't
4445 read more than 1 block. Handle resulting HEADER_SUCCESS_EXTENDED code.
4446 Keep track of how many records have been skipped.
4447 Let the buffer code count records.
4448 When copying a header, copy any extended headers that came before it.
4449
4450 * src/extract.c (extract_archive): When marking a directory to be
4451 updated after symlinks, stat all directories after it in the
4452 delayed-set-stat list too, since they will be checked after
4453 symlinks. Add support for --overwrite-dir.
4454
4455 * src/list.c (recent_long_name, recent_long_link,
4456 recent_long_name_blocks, recent_long_link_blocks): New vars.
4457 (read_and): Pass 0 to read_header.
4458 (read_header): New arg RAW_EXTENDED_HEADERS. Store away extended
4459 headers into new vars. Null-terminate incoming symbolic links.
4460
4461 * src/rmt.c: Include print-copyr.h, not copysym.h.
4462 (main): Use print_copyright, not copyright_symbol.
4463 * src/tar.c (decode_options): Likewise.
4464 (OVERWRITE_DIR_OPTION): New constant.
4465 (long_options, usage, decode_options): Add --overwrite-dir.
4466
4467 * src/tar.h: Put copyright notice into documentation.
4468
4469 * tests/Makefile.am (TESTS): Add delete03.sh.
4470 * tests/delete03.sh: New file.
4471
4472 * tests/genfile.c: Include print-copyr.h, not copysym.h.
4473 (main): Use print_copyright, not copyright_symbol.
4474 Include <argmatch.h>.
4475 (pattern_strings): Remove.
4476 (pattern_args, pattern_types): New constants.
4477 (main): Use XARGMATCH, not argmatch.
4478
4479 2001-09-20 Jim Meyering <meyering@lucent.com>
4480
4481 * lib/xstrtol.c (strtoimax): Guard declaration with
4482 `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
4483 The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
4484 have their own, conflicting declaration of strtoimax in sys/inttypes.h.
4485 (strtoumax): Likewise, for completeness (it wasn't necessary).
4486 * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
4487 Check for declaration of strtoimax.
4488 * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
4489 Check for declaration of strtoumax.
4490
4491 2001-09-16 Paul Eggert <eggert@twinsun.com>
4492
4493 * fnmatch.m4 (jm_FUNC_FNMATCH): Fix typo in previous patch: yes -> no.
4494
4495 2001-09-14 Paul Eggert <eggert@twinsun.com>
4496
4497 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.23.
4498
4499 * README-alpha: Describe automake patch.
4500
4501 * configure.ac (LIBOBJS):
4502 Remove automake 1.4 workaround, as we're using 1.5 now.
4503 (USE_INCLUDED_LIBINTL): New AC_DEFINE.
4504
4505 * lib/copysym.c: Include stddef.h, for size_t.
4506 Include langinfo.h if needed.
4507 Use locale_charset only if USE_INCLUDED_LIBINTL;
4508 if not, use nl_langinfo (CODESET) if available.
4509
4510 2001-09-13 Paul Eggert <eggert@twinsun.com>
4511
4512 * config.guess, config.sub: Sync with canonical versions.
4513
4514 * configure.ac (jm_PREREQ_XGETCWD): Add.
4515
4516 * lib/Makefile.am (noinst_HEADERS): Add copysym.h.
4517 (libtar_a_SOURCES): Add copysym.c.
4518 * copysym.c, copysym.h: New files.
4519
4520 * lib/error.c: Sync with fileutils version.
4521
4522 * m4/Makefile.am (EXTRA_DIST): Add getcwd.m4; remove uintmax_t.m4.
4523 * m4/getcwd.m4: New file.
4524 * m4/uintmax_t.m4: Remove.
4525
4526 * m4/gettext.m4 (AM_WITH_NLS):
4527 Fix bug with calculating version of Bison 1.29.
4528 Reported by Karl Berry.
4529
4530 * src/Makefile.am (datadir): Remove.
4531
4532 * src/rmt.c: Include copysym.h.
4533 (main): Use copyright_symbol to translate copyright notice,
4534 instead of gettext.
4535 * src/tar.c: Likewise.
4536 * tests/genfile.c: Likewise.
4537
4538 * src/system.h (MB_LEN_MAX): New symbol.
4539
4540 2001-09-11 Paul Eggert <eggert@twinsun.com>
4541
4542 * src/extract.c (struct delayed_set_stat): New member
4543 'after_symlinks'.
4544 (delay_set_stat): Initialize it to 0.
4545 (set_mode): New arg current_stat_info. Use it (if nonnull) to avoid
4546 taking an extra stat ourselves. All callers changed.
4547 (set_stat): Likewise.
4548 (apply_nonancestor_delayed_set_stat): New arg 'after_symlinks'.
4549 If false, stop when encountering a struct whose 'after_symlinks'
4550 member is true. Otherwise, go through all structures but check
4551 them more carefully. All callers changed.
4552 (extract_archive): When extracting a deferred symlink, if its parent
4553 directory's status needs fixing, then mark the directory as needing
4554 to be fixed after symlinks.
4555 (extract_finish): Fix status of ordinary directories, then apply
4556 delayed symlinks, then fix the status of directories that are
4557 ancestors of delayed symlinks.
4558
4559 * src/rtapelib.c (rexec):
4560 Remove declaration; it ran afoul of prototypes on Crays.
4561 Reported by Wendy Palm of Cray.
4562
4563 2001-09-06 Paul Eggert <eggert@twinsun.com>
4564
4565 * lib/strtoimax.c (HAVE_LONG_LONG):
4566 Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
4567 (strtoimax): Use sizeof (long), not
4568 sizeof strtol (ptr, endptr, base),
4569 to work around bug in IBM C compiler.
4570
4571 2001-09-04 Paul Eggert <eggert@twinsun.com>
4572
4573 * lib/xgetcwd.c: Include "xalloc.h".
4574 (xgetcwd): Do not return NULL when memory is exhausted; instead,
4575 report an error and exit.
4576
4577 * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
4578 (jm_PREREQ): Use it.
4579
4580 2001-09-03 Paul Eggert <eggert@twinsun.com>
4581
4582 * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
4583 (jm_PREREQ_XGETCWD): New macro.
4584
4585 * lib/exclude.c (fnmatch_no_wildcards):
4586 Fix typo that caused us to do case-folding
4587 search even when that was not desired. This occurred only in the
4588 no-wildcard case.
4589
4590 * lib/xgetcwd.c: Include pathmax.h if not HAVE_GETCWD.
4591 Do not include xalloc.h.
4592 (INITIAL_BUFFER_SIZE): New symbol.
4593 Do not use xmalloc / xrealloc, since the caller is responsible for
4594 handling errors. Preserve errno around `free' during failure.
4595 Do not overrun buffer when using getwd.
4596
4597 * lib/xgetcwd.c (xgetcwd):
4598 Use HAVE_GETCWD_NULL, not defined __GLIBC__ && __GLIBC__ >= 2,
4599 to decide whether to use getcwd (NULL, 0).
4600
4601 2001-09-02 Paul Eggert <eggert@twinsun.com>
4602
4603 * lib/xgetcwd.c: Fix typo in local var; from Jim Meyering.
4604
4605 2001-09-01 Jim Meyering <meyering@lucent.com>
4606
4607 * exclude.c: Use `""', not `<>' to #include non-system header files.
4608 (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
4609 and strncasecmp as r-values. Unixware didn't have declarations.
4610
4611 2001-08-31 Jim Meyering <meyering@lucent.com>
4612
4613 * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
4614 Use an initial, malloc'd, buffer of length 128 rather than
4615 a statically allocated one of length 1024.
4616
4617 2001-08-30 Paul Eggert <eggert@twinsun.com>
4618
4619 * lib/utime.c: Include full-write.h.
4620 * lib/xstrtol.c (strtoimax): New decl.
4621
4622 2001-08-29 Paul Eggert <eggert@twinsun.com>
4623
4624 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.22.
4625
4626 * src/create.c (dump_file): Relativize link names before dumping.
4627 This fixes a bug reported by Jose Pedro Oliveira.
4628
4629 * src/create.c (dump_file): Use offsetof when computing sizes for
4630 struct hack; this avoids wasted space in some cases.
4631 * src/incremen.c (note_directory, find_directory): Likewise.
4632 * src/names.c (name_gather, addname): Likewise.
4633
4634 * src/extract.c (extract_archive): Use strcpy, not memcpy,
4635 for consistency with other code that does similar things.
4636 * src/names.c (name_gather): Likewise.
4637
4638 * src/names.c (read_name_from_file, name_next, name_gather,
4639 add_hierarchy_to_namelist): Avoid quadratic behavior when
4640 reallocating buffers. Check for buffer size overflow.
4641 (addname): Avoid unnecessary clearing of memory.
4642
4643 2001-08-29 "Jan D." <Jan.Djarv@mbox200.swipnet.se>
4644
4645 * src/extract.c (delay_set_stat): Fix off-by-one error in file
4646 name size allocation that caused core dumps.
4647
4648 2001-08-28 Paul Eggert <eggert@twinsun.com>
4649
4650 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.21.
4651
4652 * configure.ac (GNU_SOURCE): Define to 1, not /**/.
4653 (major_t, minor_t, ssize_t): Use new-style AC_CHECK_TYPE.
4654 (daddr_t): Remove; no longer used.
4655 (jm_PREREQ_HUMAN): Add.
4656
4657 * acconfig.h: Remove; no longer needed.
4658
4659 * config.guess, config.sub:
4660 New files, from automake 1.5. Gettext 0.10.39 needs them.
4661 * depcomp, missing, mkinstalldirs: Upgrade to automake 1.5.
4662
4663 * Makefile.am (AUTOMAKE_OPTIONS): Add dist-bzip2.
4664 (SUBDIRS): Put intl before lib, as gettext requires.
4665
4666 * ABOUT-NLS: Upgrade to gettext 0.10.39.
4667 * intl: Upgrade entire directory to gettext 0.10.39.
4668 * m4/codeset.m4, m4/glibc21.m4, m4/iconv.m4:
4669 New files, from gettext 0.10.39.
4670 * m4/gettext.m4, m4/isc-posix.m4, m4/lcmessage.m4, m4/progtest.m4,
4671 Upgrade to gettext 0.10.39,
4672 * po/Makefile.in.in: Likewise, except fix a typo in its copying
4673 permissions.
4674 * po/cat-id-tbl.c, po/stamp-cat-id:
4675 Remove; no longer used by gettext 0.10.39.
4676 * po/ChangeLog: New file.
4677
4678 * doc/Makefile.am (EXTRA_DIST): Add freemanuals.texi.
4679 $(srcdir)/tar.texi: Likewise.
4680 * doc/freemanuals.texi: New file.
4681 * doc/tar.texi (Free Software Needs Free Documentation): New appendix.
4682 `fileds' -> `fields'
4683 * doc/texinfo.tex: Upgrade to version 2001-07-25.07.
4684
4685 * lib/Makefile.am (EXTRA_DIST): Add strtoll.c, strtoimax.c.
4686 (noinst_HEADERS): Add quote.h.
4687 (libtar_a_SOURCES): Add quote.c, xstrtoimax.c.
4688
4689 * lib/exclude.c: Fix typo in '#include <stdint.h>' directive.
4690
4691 * lib/full-write.c, lib/savedir.c: Comment fix.
4692
4693 * lib/pathmax.h: Remove.
4694
4695 * lib/quote.c, lib/quote.h: New files.
4696
4697 * lib/xgetcwd.c: Don't include pathmax.h.
4698 Include stdlib.h and unistd.h if available.
4699 Include xalloc.h.
4700 (xmalloc, xstrdup, free): Remove decls.
4701 (xgetcwd): Don't assume sizes fit in unsigned.
4702 Check for overflow when computing sizes.
4703 Simplify reallocation code.
4704
4705 * lib/xmalloc.c: Quote failure tests.
4706
4707 * lib/strtoumax.c, lib/xstrtoimax.c: New files.
4708
4709 * lib/strtoimax.c: Renamed from strtouxmax.c. Make it more
4710 similar to strtol.c.
4711 (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.
4712 (verify): New macro.
4713 (strtoumax, uintmax_t, strtoull, strtol): Remove.
4714 (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
4715 (strtoimax): Renamed from strtoumax. All uses of unsigned values
4716 changed to signed values. Check sizes at compile-time, not
4717 run-time. Prefer strtol to strtoll if both work.
4718 (main): Remove.
4719
4720 * lib/xstrtol.h (xstrtoimax): New decl.
4721
4722 * m4/Makefile.am (EXTRA_DIST):
4723 Add codeset.m4, glibc21.m4, iconv.m4, inttypes.m4,
4724 longlong.m4, xstrtoimax.m4.
4725
4726 * m4/inttypes.m4 (jm_AC_HEADER_INTTYPES_H):
4727 Remove; now done by autoconf.
4728 (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T): Replace with
4729 Use AC_CHECK_TYPE instead of merely looking for the header.
4730
4731 * m4/uintmax_t.m4: Use shorter comment.
4732
4733 * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
4734 Quote first arg of AC_DEFUN.
4735 Require jm_AC_TYPE_INTMAX_T and jm_AC_TYPE_LONG_LONG since they
4736 is needed to parse the include file.
4737 Simplify logic behind the args to AC_REPLACE.
4738
4739 * src/Makefile.am (OMIT_DEPENDENCIES): Remove.
4740
4741 * src/ansi2knr.1, src/ansi2knr.c: Remove; wasn't being used.
4742
4743 * src/rmt.c (main):
4744 Use "Copyright %d" to simplify the translator's job in the future.
4745 Advise translator about circle-C.
4746 * src/tar.c: (decode_options): Likewise.
4747 * tests/genfile.c (main): Likewise.
4748
4749 2001-08-28 Jim Meyering <meyering@lucent.com>
4750
4751 * lib/argmatch.c: Include "quote.h".
4752 (argmatch_invalid): Quote the context.
4753
4754 * lib/dirname.c (dir_name): Fix typo on PC platforms.
4755
4756 * lib/backupfile.c, lib/basename.c, lib/dirname.c, lib/strtoul.c:
4757 Use single-quote for local .h files.
4758
4759 * lib/error.h (__attribute__): Don't depend on __STRICT_ANSI__.
4760
4761 * lib/getopt.c, lib/getopt.h, lib/getopt1.c: Upgrade to recent
4762 glibc versions.
4763
4764 * lib/getdate.y (get_date): Initialize tm_isdst to -1 before
4765 invoking mktime the last time.
4766
4767 * lib/pathmax.h: Use #if rather than #ifdef for HAVE_UNISTD_H.
4768
4769 * lib/rename.c: Major rewrite by Volker Borchert to use system
4770 rename function, but to work around problems with trailing
4771 slashes.
4772
4773 * lib/strtoll.c: New file, from glibc.
4774 * lib/strtoul.c: Update from glibc.
4775
4776 * lib/strtouxmax.c: Renamed from lib/strtoumax.c.
4777 Add support for signed numbers, too.
4778 (strtoul, strtoull): Do not declare if STRTOUXMAX_UNSIGNED
4779 is not defined.
4780 (strtol, strtoll): Declare as needed, if STRTOUXMAX_UNSIGNED is
4781 not defined.
4782 (strtoumax, uintmax_t, strtoull, strtoul): New macros.
4783 (main): Use generic names in debugging output.
4784 * lib/strtoimax.c: Plus add the following changes of my own:
4785 (main): Use accurate names in debugging output.
4786
4787 * lib/xgetcwd.c (xgetcwd): Use getcwd if glibc 2 or later.
4788 Don't use PATH_MAX.
4789
4790 * m4/c-bs-a.m4, m4/check-decl.m4, m4/d-ino.m4, m4/error.m4,
4791 m4/getline.m4, m4/jm-mktime.m4, m4/malloc.m4, m4/mbrtowc.m4,
4792 m4/mbstate_t.m4, m4/realloc.m4, m4/uintmax_t.m4, m4/utimbuf.m4,
4793 m4/utime.m4, m4/utimes.m4:
4794 Quote the first argument in each use of AC_DEFUN.
4795
4796 * m4/getline.m4: Don't use string.h.
4797
4798 * m4/inttypes.m4, m4/longlong.m4, m4/xstrtoimax.m4: New files.
4799
4800 * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): @%:@ -> #.
4801
4802 2001-08-27 Paul Eggert <eggert@twinsun.com>
4803
4804 * NEWS, configure.ac (AC_INIT_AUTOMAKE): Version 1.13.20.
4805
4806 The biggest change is the new --exclude semantics and options.
4807 The basic idea was suggested by Gerhard Poul; thanks!
4808
4809 * NEWS: Describe new --exclude semantics and options, and bug fixes.
4810 * README: ignfail.sh fails on some NFS hosts.
4811 * NEWS, README, lib/xstrtol.h: Add copyright notice.
4812
4813 * Makefile.am (ACLOCAL_AMFLAGS): Add -I m4.
4814 (M4DIR, ACINCLUDE_INPUTS, $(srcdir)/acinclude.m4):
4815 Remove; the automake bug has been fixed.
4816 * acinclude.m4: Remove.
4817
4818 * configure.ac: Renamed from configure.in.
4819 (AC_PREREQ): Bump from 2.13 to 2.52.
4820 (ALL_LINGUAS): Add id, tr. Remove ko, as po/ko.po (dated
4821 1997-05-30) has an encoding error.
4822 (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf.
4823 (AC_FUNC_FNMATCH): Use AC_CONFIG_LINKS, not AC_LINK_FILES.
4824
4825 * doc/fdl.texi: Update to current GNU version.
4826
4827 * doc/tar.texi: Put leading '*' in direntry.
4828 Accommodate new gfdl sectioning.
4829 New option --recursion (the default) that is the inverse of
4830 --no-recursion.
4831
4832 New options --anchored, --ignore-case, --wildcards,
4833 --wildcards-match-slash, and their negations (e.g., --no-anchored).
4834 Along with --recursion and --no-recursion, these control how exclude
4835 patterns are interpreted. The default interpretation of exclude
4836 patterns is now --no-anchored --no-ignore-case --recursion
4837 --wildcards --wildcards-match-slash.
4838
4839 * lib/Makefile.am (OMIT_DEPENDENCIES): Remove.
4840
4841 * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
4842 (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
4843 (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
4844 Include if available.
4845 (<xalloc.h>): Include
4846 (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
4847 (verify): New macro. Use it to verify that EXCLUDE macros do not
4848 collide with FNM macros.
4849 (struct patopts): New struct.
4850 (struct exclude): Use it, as exclude patterns now come with options.
4851 (new_exclude): Support above changes.
4852 (new_exclude, add_exclude_file):
4853 Initial size must now be a power of two to simplify overflow checking.
4854 (free_exclude, fnmatch_no_wildcards): New function.
4855 (excluded_filename): No longer requires options arg, as the options
4856 are determined by add_exclude. Now returns bool, not int.
4857 (excluded_filename, add_exclude):
4858 Add support for the fancy new exclusion options.
4859 (add_exclude, add_exclude_file): Now takes int options arg.
4860 Check for arithmetic overflow when computing sizes.
4861 (add_exclude_file): xrealloc might modify errno, so don't
4862 realloc until after errno might be used.
4863
4864 * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
4865 New macros.
4866 (free_exclude): New decl.
4867 (add_exclude, add_exclude_file): Now takes int options arg.
4868 (excluded_filename): No longer requires options arg, as the options
4869 are determined by add_exclude. Now returns bool, not int.
4870
4871 * lib/prepargs.c: Include <string.h>; required for C99 since
4872 we use strlen.
4873
4874 * lib/quotearg.c:
4875 BSD/OS 4.1 wchar.h requires FILE and struct tm to be declared.
4876
4877 * lib/xstrtol.h (_DECLARE_XSTRTOL): Improve quality of
4878 diagnostic for LONGINT_INVALID_SUFFIX_CHAR.
4879
4880 * m4/Makefile.am (EXTRA_DIST): Add check-decl.m4, mbrtowc.m4.
4881 Remove inttypes_h.m4, largefile.m4, mktime.m4.
4882
4883 * m4/inttypes_h.m4, m4/largefile.m4, m4/mktime.m4: Remove;
4884 subsumed by Autoconf 2.50.
4885
4886 * m4/error.m4: Upgrade to serial 2.
4887
4888 * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Upgrade to serial 4, but
4889 remove test for GNU C library. It's not correct, as some
4890 older glibcs are buggy.
4891
4892 * m4/getline.m4, m4/malloc.m4: Upgrade to serial 4.
4893
4894 * m4/prereq.m4: Upgrade to serial 20, but then:
4895 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
4896 (jm_PREREQ_EXCLUDE): New macro.
4897 (jm_PREREQ_HUMAN): Remove jm_AC_HEADER_INTTYPES_H, as it is subsumed
4898 by autoconf 2.5x.
4899
4900 * m4/realloc.m4: Upgrade to serial 4.
4901
4902 * m4/strerror_r.m4: Revert to serial 1002.
4903
4904 * m4/uintmax_t.m4: Upgrade to autoconf 2.5x.
4905
4906 * m4/utimes.m4: Upgrade to latest version (still "serial 3").
4907
4908 * m4/xstrtoumax.m4: Upgrade to serial 3, but then:
4909 (jm_AC_PREREQ_XSTRTOUMAX): Remove jm_AC_HEADER_INTTYPES_H, as
4910 it is now subsumed by autoconf. Add inttypes.h.
4911
4912 * po/cs.po, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
4913 po/it.po, po/pl.po, po/sl.po, po/sv.po: Sync with translation project.
4914
4915 * src/buffer.c (new_volume): Stop if the script exits with an error.
4916
4917 * src/common.h (excluded_with_slash, excluded_without_slash):
4918 Remove, replacing by:
4919 (excluded): New decl.
4920 (link_error): New decl.
4921 (excluded_name): Now returns bool.
4922
4923 * src/extract.c:
4924 (struct delayed_symlinks, extract_archive, apply_delayed_symlinks):
4925 Support hard links to symbolic links.
4926
4927 (struct delayed_symlink): Remove 'names' member, replacing it with
4928 'sources' and 'target' member. All uses changed.
4929
4930 (struct string_list): New type.
4931
4932 (delayed_set_stat, extract_archive): Use offsetof when computing sizes
4933 for struct hack; this avoids wasted space in some cases.
4934
4935 (extract_archive): Fix test for absolute pathnames and/or "..".
4936 Use link_error to report errors for links.
4937 Remove redundant trailing '/' at "really_dir", for all uses, not
4938 just before invoking mkdir.
4939 If overwriting old files, do not worry so much about existing
4940 directories.
4941 Fix mode computation in the case where the directory exists.
4942
4943 (apply_delayed_symlinks): If we can't make a hard link to a symbolic
4944 link, make a copy of the symbolic link.
4945
4946 * src/incremen.c (get_directory_contents):
4947 If ignore_failed_read_option, only warn about
4948 stat failures.
4949
4950 * src/list.c (from_header): Do not issue a diagnostic if TYPE is zero.
4951 However, check for error even for '-' or '+' case.
4952
4953 (print_header): Try parsing uids and gids as unsigned integers first,
4954 and as a uid_t or gid_t only if that fails. This adds support for
4955 listing positive uids and gids that are greater than UID_MAX and
4956 GID_MAX.
4957
4958 * src/misc.c (link_error): New function.
4959
4960 * src/names.c (collect_and_sort_names):
4961 If ignore_failed_read_option, only warn about
4962 stat errors.
4963
4964 (excluded_name): Now returns bool. Simplify, as the fancy
4965 features are now all in excluded_filename.
4966
4967 * src/rtapelib.c (base_name): Remove decl, as system.h now
4968 declares it.
4969
4970 * src/system.h: Include stddef.h if available.
4971 (offsetof): Declare if stddef.h doesn't.
4972
4973 Include <dirname.h>.
4974 (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove; now defined by dirname.h.
4975
4976 * src/tar.c (ANCHORED_OPTION, IGNORE_CASE_OPTION,
4977 NO_ANCHORED_OPTION, NO_IGNORE_CASE_OPTION, NO_WILDCARDS_OPTION,
4978 NO_WILDCARDS_MATCH_SLASH_OPTION, WILDCARDS_OPTION,
4979 WILDCARDS_MATCH_SLASH_OPTION):
4980 New enum values.
4981
4982 (long_options, usage, decode_options): Add support for --anchored,
4983 --ignore-case, --no-anchored, --no-ignore-case, --no-wildcards,
4984 --no-wildcards-match-slash, --recursion, --wildcards,
4985 --wildcards-match-slash.
4986
4987 (decode_options): Implement the new way of interpreting exclude
4988 patterns.
4989
4990 (usage): --newer-mtime takes a DATE operand. DATE may be a file name.
4991
4992 (OPTION_STRING, decode_options): Add -I, -y. Currently these options
4993 just print error messages suggesting alternatives.
4994
4995 (add_filtered_exclude): Remove.
4996
4997 * tests/Makefile.am (TESTS): Alphabetize, except put version.sh first.
4998
4999 * tests/extrac04.sh (out): Remove
5000 directory/subdirectory/file1, as the new semantics for
5001 --exclude exclude it.
5002
5003 * tests/genfile.c (main): Don't use non-ASCII char in msgid.
5004
5005 2001-08-12 Paul Eggert <eggert@twinsun.com>
5006
5007 * lib/addext.c (<errno.h>): Include.
5008 (errno): Declare if not defined.
5009 (addext): Work correctly on the Hurd, where pathconf returns -1 and
5010 leaves errno alone, because there is no limit. Also, work even if
5011 size_t is narrower than long.
5012
5013 2001-07-08 Paul Eggert <eggert@twinsun.com>
5014
5015 * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
5016
5017 2001-05-10 Paul Eggert <eggert@twinsun.com>
5018
5019 * lib/addext.c (ISSLASH, base_name): Remove decls; now in dirname.h.
5020 Include <backupfile.h> and <dirname.h> after size_t is defined.
5021 (addext): Use base_len to trim redundant trailing slashes instead of
5022 doing it ourselves.
5023
5024 * lib/backupfile.c (ISSLASH, base_name):
5025 Remove decls; now in dirname.h.
5026 Include <argmatch.h>, <backupfile.h>, <dirname.h> after size_t
5027 is defined.
5028 (find_backup_file_name): Rename locals to avoid new functions.
5029 Use base_len instead of rolling it ourselves.
5030 Work even if dirlen is 0.
5031 Use a dir of '.' if given the empty string.
5032
5033 * lib/basename.c:
5034 Do not include <stdio.h>, <assert.h>; no longer needed.
5035 (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Remove; now in dirname.h.
5036 Include <string.h>, <dirname.h>.
5037 (base_name): Allow file names ending in slashes, other than names
5038 that are all slashes. In this case, return the basename followed
5039 by the slashes.
5040
5041 * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
5042 (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove; now in dirname.h.
5043 (dir_len): Renamed from dirlen.
5044 All callers changed.
5045
5046 * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
5047 New macros.
5048 (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
5049
5050 2001-02-16 Paul Eggert <eggert@twinsun.com>
5051
5052 * lib/quotearg.c (mbrtowc, mbrtowc, mbsinit):
5053 Do not declare or define if HAVE_MBRTOWC,
5054 since the test for HAVE_MBRTOWC now requires proper declarations.
5055
5056 * lib/alloca.c (malloc): Undef before defining.
5057
5058 2001-02-13 Paul Eggert <eggert@twinsun.com>
5059
5060 * src/compare.c (read_and_process): Use off_t for size.
5061 From Maciej W. Rozycki.
5062
5063 2001-01-26 Paul Eggert <eggert@twinsun.com>
5064
5065 * lib/quotearg.c: Include stddef.h. From Jim Meyering.
5066
5067 2001-01-12 Paul Eggert <eggert@twinsun.com>
5068
5069 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.19.
5070
5071 * lib/savedir.h (savedir): Remove size arg.
5072
5073 * doc/tar.texi: Add @setchapternewpage odd.
5074 Remove -I as an alias for -T, for now.
5075 Add @dircategory.
5076 Update copyright. Remove "Published by".
5077 Dates beginning with / or . are taken to be file names.
5078
5079 * src/tar.c (<time.h>): Do not include;
5080 (time): Do not declare.
5081 (usage): Remove -I as an alias for -T.
5082 (OPTION_STRING): Remove -I.
5083 (decode_options): Dates that look like an absolute path name,
5084 or that start with '.', are presumed to be file names whose
5085 dates are taken.
5086 Remove 'I' as an aliase for 'T'.
5087 Update copyright.
5088
5089 * src/extract.c (<time.h>): Do not include; system.h now does this.
5090 (make_directories): Skip filesystem prefixes.
5091 Don't assume '/' is the only separator.
5092 (extract_sparse_file): Use new full_write semantics.
5093 On write error, return instead of invoking skip_file.
5094 Do not free sparsearray; caller does this now.
5095 (apply_nonancestor_delayed_set_stat): Do not assume '/' is the only
5096 separator.
5097 (extract_archive): Don't assume file name lengths fit in int.
5098 Report what got stripped from member name; it might be more than '/'.
5099 Use new full_write semantics.
5100 Do not pass redundant trailing "/" to mkdir, as POSIX does not allow
5101 mkdir to ignore it.
5102 Do not report mkdir error if old_files_option == KEEP_OLD_FILES.
5103
5104 * src/buffer.c (<time.h>): Do not include; system.h now does this.
5105 (time): Remove decl; likewise.
5106 (child_open_for_uncompress): Use new full_write semantics.
5107 (flush_write): Use ISSLASH instead of testing for '/'.
5108 (flush_read): Likewise.
5109
5110 * src/rmt.h (_remdev): Look for / anywhere in Path.
5111
5112 * src/misc.c (contains_dot_dot): Skip filesystem prefix.
5113 Don't assume '/' is the only separator.
5114 (safer_rmdir): Don't assume '/' is the only separator.
5115
5116 * src/compare.c (diff_archive): Don't assume '/' is the only separator.
5117
5118 * lib/dirname.h (dirlen): New decl.
5119
5120 * src/incremen.c (get_directory_contents):
5121 Remove path_size arg; all callers changed.
5122 Don't assume '/' is the only directory separator.
5123 (gnu_restore): Work even if file name length doesn't fit in int.
5124
5125 * lib/addext.c (ISSLASH): New macro.
5126 (addext): Trim any redundant trailing slashes.
5127
5128 * src/names.c (name_next):
5129 Don't assume '/' is the only directory separator.
5130 (namelist_match): Likewise.
5131 (add_hierarchy_to_namelist): Remove dirsize arg.
5132 Do not assume '/' is the only directory separator.
5133 (new_name): Likewise.
5134
5135 * lib/Makefile.am (noinst_HEADERS): Add dirname.h, full-write.h.
5136 (libtar_a_SOURCES): Add dirname.c.
5137
5138 * src/create.c (relativize):
5139 New function, with much of old start_header's guts.
5140 Handle filesystem prefixes.
5141 (start_header): Use this new function.
5142 (init_sparsearray): Don't bother to zero out the new array;
5143 it's not needed.
5144 (deal_with_sparse): Fix array allocation bug.
5145 (create_archive): Don't assume '/' is the only separator.
5146 (dump_file): Likewise.
5147 Don't worry about leading / in symlink targets.
5148
5149 * lib/savedir.c (savedir):
5150 Remove size arg; it wasn't portable. All callers changed.
5151
5152 * lib/utime.c (utime_null): Adjust to new full_write convention.
5153
5154 * configure.in (YACC): Avoid portability problem with Ultrix sh.
5155
5156 * lib/backupfile.c: Include <dirname.h>.
5157 (ISSLASH): New macro.
5158 (find_backup_file_name): Use dirlen to calculate directory lengths.
5159 (max_backup_version): Strip redundant trailing slashes.
5160
5161 * src/common.h: Include <full-write.h>.
5162 (get_directory_contents): No longer has size arg.
5163 (gnu_restore): Arg is size_t, not int.
5164
5165 * src/system.h: Include <time.h>.
5166 (time): Declare if not defined.
5167
5168 * lib/full-write.c: Include full-write.h, not safe-read.h.
5169 full_write returns size_t, with short writes meaning failure.
5170 All callers changed.
5171
5172 * src/rtapelib.c: Include full-write.h.
5173
5174 * src/rmt.c: Include full-write.h.
5175 (main): Update copyright.
5176
5177 * doc/getdate.texi: Mention that only English is supported.
5178 Show how to use "date" so that the output is acceptable to getdate.
5179 Mention Z as an abbreviation for UTC.
5180
5181 * lib/full-write.h: New file.
5182
5183 * src/list.c: system.h now does time.h stuff.
5184
5185 * lib/dirname.c:
5186 Use HAVE_STDLIB_H, not STDC_HEADERS, to decide whether to include
5187 stdlib.h.
5188 Do not include string.h, strings.h, or assert.h; no longer needed.
5189 (strrchr, memrchr, malloc): Remove decls; no longer needed.
5190 Include <xalloc.h>.
5191 (base_name): New decl.
5192 (BACKSLASH_IS_PATH_SEPARATOR): Remove.
5193 (dir_name_r): Remove.
5194 (dirlen): New function.
5195 (dir_name): Use dirlen instead of dir_name_r.
5196 (<string.h>, <strings.h>): Include only if test program.
5197 (main): Use "return 0", not "exit (0)".
5198
5199 2000-12-08 Paul Eggert <eggert@twinsun.com>
5200
5201 * lib/dirname.h: New file.
5202
5203 2000-11-02 Vesselin Atanasov <vesselin@bgnet.bg>
5204
5205 * lib/fnmatch.c: Do not comment out all the code if we are using
5206 the GNU C library, because in some cases we are replacing buggy
5207 code in the GNU C library itself.
5208
5209 2000-10-30 Paul Eggert <eggert@twinsun.com>
5210
5211 * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
5212
5213 2000-10-29 Paul Eggert <eggert@twinsun.com>
5214
5215 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.18.
5216
5217 * src/tar.c: Include <fnmatch.h>, for FNM_LEADING_DIR.
5218
5219 2000-10-28 Paul Eggert <eggert@twinsun.com>
5220
5221 * doc/tar.texi: --no-recursion now applies to extraction, too.
5222 * src/create.c (dump_file): no_recurse_option -> ! recursion_option
5223 * src/names.c (namelist_match, excluded_name):
5224 Do not match subfiles of a directory
5225 if --no-recursion is specified.
5226 * src/tar.c (NO_RECURSE_OPTION): Remove.
5227 (long_options): Have getopt set the --no-recursion flag.
5228 (decode_options): Initialize recursion_option to FNM_LEADING_DIR.
5229 Remove case for NO_RECURSE_OPTION.
5230 * src/common.h (recursion_option):
5231 Renamed from no_recurse_option, with sense
5232 negated, and with FNM_LEADING_DIR being the nonzero value.
5233
5234 * names.c (namelist_match): New function.
5235 (name_match, name_scan): Use it to eliminate duplicate code.
5236 (names_notfound): Remove special case for Amiga.
5237
5238 2000-10-27 Paul Eggert <eggert@twinsun.com>
5239
5240 * src/misc.c (read_error_details, read_warn_details,
5241 read_fatal_details): Don't assume size_t is unsigned long.
5242
5243 * src/buffer.c (flush_read): If read_full_records_option, try to
5244 fill the input buffer, as --delete -f - needs this.
5245
5246 2000-10-24 Paul Eggert <eggert@twinsun.com>
5247
5248 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Port to autoconf 2.13.
5249
5250 * src/buffer.c (check_label_pattern):
5251 Make sure header name is a string before
5252 passing it to fnmatch.
5253 (init_volume_number): Check for global_volno overflow.
5254 (new_volume): Check for global_volno overflow.
5255
5256 * src/tar.c (decode_options):
5257 Check that volume label is not too long to overflow
5258 name in tar header block.
5259
5260 * Makefile.am (EXTRA_DIST): Remove rebox.el.
5261
5262 * configure.in (HAVE_DECL_STRERROR_R): Remove our handwritten code.
5263 (AC_FUNC_STRERROR_R): Use this instead.
5264
5265 2000-10-23 Paul Eggert <eggert@twinsun.com>
5266
5267 * src/extract.c: Include <time.h>, since we invoke "time".
5268
5269 * lib/prepargs.c (prepend_default_options):
5270 Don't use NULL, for portability.
5271
5272 * m4/fnmatch.m4: Add "working" to message.
5273
5274 * src/names.c: (_GNU_SOURCE): Remove; autoconf now does this.
5275 Include <hash.h>.
5276 (getpwuid, getgrgid): Declare only if system headers don't.
5277 (gid_to_gname): Don't invoke setgrent.
5278 (namelist): Now static, not global.
5279 (nametail): New var. All uses of namelast changed to use
5280 nametail, with one extra level of indirection.
5281 (name_gather): Use memcpy instead of strncpy + assignment of NUL.
5282 (name_match): Set nametail too, when setting namelist to null.
5283 (add_hierarchy_to_namelist): Change type of dir arg from char * to
5284 struct name *, so that we don't have to look up the name again
5285 here. Get change_dir from dir rather than as a separate arg. Add
5286 dirsize arg, and pass it along to get_directory_contents. Remove
5287 unnecessary check of directory type.
5288 (new_name): Do not append a slash if PATH already ends in one.
5289 (avoided_names, struct avoided_name): Remove.
5290 (avoided_name_table): New var, replacing avoided_names.
5291 (hash_avoided_name, compare_avoided_names): New function.
5292 (add_avoided_name, is_avoided_name): Use hash table rather than
5293 linked list.
5294
5295 * src/buffer.c (_GNU_SOURCE): Remove; autoconf now does this.
5296 (child_open_for_compress, child_open_for_uncompress,
5297 close_archive): Propagate any failure of the compression process
5298 back to "tar".
5299 (open_archive, flush_write, flush_read, close_archive): Do not
5300 allocate an array of size PATH_MAX, as PATH_MAX might be (size_t)
5301 -1. Instead, allocate an array with the size that's needed.
5302 (open_archive): Don't bother checking S_ISCHR of /dev/null.
5303 (backspace_output): Don't try to backspace past start of archive.
5304 (close_archive): Remove special case for DELETE_SUBCOMMAND.
5305
5306 * acconfig.h (_GNU_SOURCE, DEFAULT_ARCHIVE, DEFAULT_BLOCKING,
5307 DENSITY_LETTER, DEVICE_PREFIX, EMUL_OPEN3, HAVE_GETGRGID,
5308 HAVE_GETPWUID, HAVE_MKNOD, HAVE_RTAPELIB, HAVE_ST_FSTYPE_STRING,
5309 HAVE_UNION_WAIT, HAVE_UTIME_H, HAVE_VALLOC, MTIO_CHECK_FIELD, PACKAGE,
5310 PROTOTYPES, REMOTE_SHELL, STD_INC_PATH, VERSION, WITH_CATALOGS,
5311 WITH_DMALLOC, WITH_REGEX):
5312 Remove; now generated automatically.
5313
5314 * configure.in (_GNU_SOURCE): Define to empty, not 1, for
5315 compatibility for glibc fragments.
5316 (_GNU_SOURCE, HAVE_UTIME_H, MTIO_CHECK_FIELD,
5317 HAVE_ST_FSTYPE_STRING, HAVE_MKNOD, REMOTE_SHELL, DENSITY_LETTER,
5318 DEVICE_PREFIX, DEFAULT_ARCHIVE, DEFAULT_BLOCKING): Add comment so
5319 that we needn't put an entry into acconfig.h.
5320 (ALL_LINGUAS): Add da.
5321 (AC_C_BACKSLASH_A): Remove; jm_PREREQ_QUOTEARG now does this.
5322 (AC_CHECK_HEADERS): Add stdbool.h (for hash.h users), wctype.h
5323 (for strtol.c).
5324 (AC_MBSTATE_T): Add.
5325 (RMT): Append $(EXEEXT).
5326 (HAVE_GETGRGID, HAVE_GETPWUID, pe_AC_TYPE_SIGNED_CHAR): Remove.
5327 (HAVE_DECL_FREE, HAVE_DECL_GETGRGID, HAVE_DECL_GETPWUID,
5328 HAVE_DECL_GETENV, HAVE_DECL_MALLOC, HAVE_DECL_STRTOUL,
5329 HAVE_DECL_STRTOULL, HAVE_DECL_STRERROR_R): New macros.
5330 (jm_PREREQ_ADDEXT, jm_PREREQ_ERROR, jm_PREREQ_QUOTEARG): Add.
5331 (AC_REPLACE_FUNCS): Remove execlp; no longer needed.
5332 (AC_CHECK_FUNCS): Add clock_gettime; AC_SEARCH_LIBS wasn't enough.
5333 Remove mbrtowc; jm_PREREQ_QUOTEARG now does this.
5334 (EMUL_OPEN3): Remove; no longer needed.
5335 (DENSITY_LETTER, DEVICE_PREFIX): Simplify m4 quoting.
5336
5337 * m4/fnmatch.m4 (AC_FUNC_FNMATCH): Detect d*/*1 vs d/s/1 bug.
5338
5339 * src/common.h: Do not include basename.h.
5340 * src/rtapelib.c (base_name): Do not include basename.h;
5341 declare base_name instead.
5342
5343 * lib/basename.h, lib/execlp.c, lib/getpagesize.h, lib/mkdir.c:
5344 Remove these files.
5345 * lib/getstr.c, lib/getstr.h, lib/hash.h, lib/hash.h, lib/prepargs.c,
5346 lib/prepargs.h, lib/savedir.c, lib/savedir.h: New files.
5347 * lib/Makefile.am (EXTRA_DIST, noinst_HEADERS, libtar_a_SOURCES):
5348 Adjust to the above changes.
5349
5350 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove ../src/ansi2knr.
5351
5352 * src/open3.c: Remove.
5353
5354 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove ansi2knr.
5355 (tar_SOURCES): Remove open3.c.
5356 (INCLUDES): Remove -I.., as automake does that.
5357 (OMIT_DEPENDENCIES): ../lib/fnmatch.h -> fnmatch.h. Add localedir.h.
5358
5359 The following changes are to put LOCALEDIR into localedir.h instead
5360 of passing it on the command line.
5361 (DEFS): Remove.
5362 (DISTCLEANFILES): New macro.
5363 (localedir.h): New rule.
5364 (rmt.o tar.o): Now depend on localedir.h.
5365
5366 * tests/delete02.sh, tests/extrac04.sh: New files.
5367
5368 * tests/Makefile.am (AUTOMAKE_OPTIONS): Remove ansi2knr.
5369 (TESTS): Add extrac04.sh, and restore delete02.sh.
5370 (DEFS): Remove; LOCALEDIR is now done via localedir.h.
5371 (INCLUDES): Remove -I.. as automake does this now.
5372
5373 * src/rtapelib.c (rexec): Don't declare unless using it.
5374 (do_command): Simplify signal-handling code slightly.
5375
5376 * src/delete.c (blocks_needed): Remove. All uses changed to use
5377 blocking_factor - new_blocks.
5378 (acting_as_filter): New var.
5379 (write_record, delete_archive_members): Use acting_as_filter
5380 rather than archive == STDIN_FILENO to detect whether we're acting
5381 as a filter, as open can return STDIN_FILENO in some cases.
5382 (delete_archive_members): Ignore zero blocks if
5383 ignore_zeros_option is nonzero. Fix bug that messed up last
5384 output block: write_eot can't be used here, as it gets confused
5385 when the input is at end of file.
5386
5387 * src/compare.c (diff_archive): Do not impose an arbitrary limit on
5388 symbolic link contents length. Pass directory size to
5389 get_directory_contents.
5390
5391 * m4/decl.m4, m4/error.m4, m4/mbstate_t.m4, m4/prereq.m4,
5392 m4/strerror_r.m4: New files.
5393 * m4/signedchar.m4: Remove this file.
5394 * Makefile.am (ACINCLUDE_INPUTS): Adjust to above changes.
5395 * m4/Makefile.am (EXTRA_DIST): Likewise.
5396
5397 * Makefile.am (DISTCLEANFILES): Add intl/libintl.h.
5398
5399 * po/da.po: New translation file.
5400
5401 * src/mangle.c (extract_mangle):
5402 Fix diagnostic with wrong number of %s'es.
5403
5404 * lib/fnmatch.c (fnmatch):
5405 Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
5406 e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
5407
5408 * lib/full-write.c (full_write): Some buggy drivers return 0 when you
5409 fall off a device's end. Detect this.
5410
5411 * src/system.h (IN_CTYPE_DOMAIN): Renamed from CTYPE_DOMAIN. All
5412 uses changed.
5413 (open): Remove macro; we no longer support EMUL_OPEN3. Do not
5414 include <pathmax.h> and directory include files like <dirent.h>;
5415 no longer used. Include <savedir.h> instead.
5416 (closedir, signed_char): remove macro; no longer used.
5417 (bool, false, true): Include <stdbool.h> if you have the include
5418 file, otherwise define.
5419
5420 * src/misc.c:
5421 (is_dot_or_dotdot, closedir_error, closedir_warn, opendir_error,
5422 opendir_warn, readdir_error): Remove; no longer needed.
5423 (safer_rmdir): Strip leading ./ (or .// or ./// or ././ or etc.)
5424 before deciding whether we're trying to remove ".".
5425 (remove_any_file): Try unlink first if we are not root. Use
5426 savedir when recursively removing directories, to avoid exhausting
5427 file descriptors.
5428 (savedir_error, savedir_warn, symlink_error): New functions.
5429
5430 * src/list.c: (read_and): Do not invoke
5431 apply_nonancestor_delayed_set_stat; DO_SOMETHING is now
5432 responsible for that. Do not invoke apply_delayed_set_stat; our
5433 caller is now responsible for that.
5434 (read_header): Use signed char instead of signed_char. Prevent
5435 later references to current_header from mistakenly treating it as
5436 an old GNU header.
5437 (from_header): Quote invalid base-64 strings in diagnostics.
5438 (time_from_header): Do not warn about future timestamps in
5439 archive; check_time now does that.
5440 (print_header): Quote unknown file types.
5441 (skip_member): New function, replacing skip_extended_headers and
5442 now skipping the whole member instead of just the extended
5443 headers. All callers changed. This makes the code handle
5444 extended headers uniformly, and fixes some bugs.
5445
5446 * src/update.c (update_archive): Use skip_member.
5447
5448 * src/extract.c (we_are_root): Now global.
5449 (struct delayed_symlink): New type.
5450 (delayed_symlink_head): New var.
5451 (extr_init, fatal_exit): Invoke extract_finish on fatal errors,
5452 not apply_delayed_set_stat.
5453 (set_mode, set_stat): Pointer args are now const pointers.
5454 (check_time): New function.
5455 (set_stat): Warn if setting a file's timestamp to be the future.
5456 (make_directories): Do not save and restore errno.
5457 (maybe_recoverable): Set errno to ENOENT if we cannot make missing
5458 intermediate directories.
5459 (extract_archive): Invoke apply_nonancestor_delayed_set_stat here,
5460 not in caller. Extract potentially dangerous symbolic links more
5461 carefully, deferring their creation until the end, and using a
5462 regular file placeholder in the meantime. Do not remove trailing
5463 / and /. from file names. Do not bother checking for ".." when
5464 checking whether a directory loops back on itself, as loopbacks
5465 can occur with symlinks too. Also, in that case, do not bother
5466 saving and restoring errno; just set it to EEXIST.
5467 (apply_nonancestor_delayed_set_stat): A prefix is a potential
5468 ancestor if it ends in slash too (as well as ending in a char just
5469 before slash).
5470 (apply_delayed_set_stat): Remove.
5471 (apply_delayed_symlinks, extract_finish): New functions.
5472
5473 * doc/fdl.texi: New file.
5474 * doc/Makefile.am (EXTRA_DIST): Add fdl.texi.
5475 ($(srcdir)/tar.info): Add fdl.texi. Invoke makeinfo with --no-split.
5476 * doc/tar.texi: Add Free Documentation License. New section
5477 "Overwrite Old Files", and revamp that section to make it easier to
5478 follow. "tar" -> "GNU tar" where appropriate. Migrate getdate
5479 documentation into getdate.texi. Fix several minor typos. Describe
5480 TAR_OPTIONS. Describe incompatibility between incremental backups and
5481 --atime-preserve. Describe incompatibility between --verify and other
5482 options. Mention that tar normally removes symbolic links rather than
5483 following them, when extracting a file of the same name.
5484
5485 * THANKS: Add gpoul. Change skip's address.
5486
5487 * po/POTFILES.in: Add lib/human.c.
5488
5489 * src/common.h (namelist, namelast): Remove decls.
5490 (we_are_root, extract_finish, skip_member, savedir_error,
5491 savedir_warn, symlink_error, gnu_list_name): New decls.
5492 (apply_delayed_set_stat, apply_nonancestor_delayed_set_stat,
5493 skip_extended_headers, is_dot_or_dotdot, closedir_error,
5494 closedir_warn, opendir_error, opendir_warn, readdir_error,
5495 readdir_warn): Remove decls.
5496 (get_directory_contents): New off_t arg.
5497 (addname): Now returns struct name *.
5498
5499 * src/tar.h, tests/genfile.c: Fix comments.
5500
5501 * src/create.c: Include hash.h.
5502 (gnu_list_name): Remove decl.
5503 (struct link): Remove "next" member.
5504 (linklist): Remove.
5505 (start_header): Say "leading `FOO'" rather than "`FOO' prefix" for
5506 consistency with other diagnostics.
5507 (deal_with_sparse): Check for I/O error when closing the file.
5508 (create_archive): Do not allocate an array of size PATH_MAX, as
5509 PATH_MAX might be (size_t) -1. Instead, allocate an array with
5510 the size that's needed.
5511 (hash_link, compare_links): New functions.
5512 (dump_file): Do not exhaust open file descriptors when descending
5513 deeply into a directory, by using savedir rather than
5514 opendir/readdir. Do not zero-fill the name buffer unnecessarily.
5515 Hash the set of links already created, instead of using a linked
5516 list. Fix some bugs in outputting sparse files which caused the
5517 sparse tables to be incorrect. When a file unexpectedly shrinks,
5518 output zeros rather than garbage. Do not allocate an array of
5519 size PATH_MAX, as PATH_MAX might be (size_t) -1. Instead,
5520 allocate an array with the size that's needed.
5521
5522 * src/incremen.c: Include hash.h.
5523 (struct directory): Remove "next", "dir_text". Change "name" to
5524 be char[1] with struct hack, not const char *. Add "found".
5525 (directory_list): Remove. Replaced by directory_table.
5526 (directory_table): New var.
5527 (nfs_string): Renamed from nfs.
5528 (hash_directory, compare_directories): New functions.
5529 (note_directory): Now returns struct directory *. First arg is
5530 now const pointer. struct stat arg is now dev_t, ino_t, nfs.
5531 Remove text arg. New "found" arg, basically corresponding to the
5532 old text arg not being null. All callers changed.
5533 (note_directory, find_directory): Use hash table rather than
5534 linked list.
5535 (get_directory_contents): New arg "device". Use savedir to do the
5536 hard work. Save the nfs-ness of stat_data, since it might change
5537 under us. Use note_directory instead of find_directory to save
5538 some work. When adding an "A" record, do it with
5539 add_to_accumulator instead of cheating with strcat.
5540 (read_directory_file): Use "+" flag before device to indicate
5541 whether it was NFS. Fix typo in checking for strtoul error.
5542 (write_directory_file_entry): New function.
5543 (write_directory_file): Use it, and use the hash routines to
5544 traverse the directory table.
5545 (gnu_restore): Use savedir rather than opendir/readdir.
5546
5547 * src/tar.c: Include localedir.h, prepargs.h.
5548 (long_options): Now static.
5549 (long_options, usage, decode_options): -j is now short for
5550 --bzip2, and -I is now an alias for -T.
5551 (decode_options, main): argv is not const pointer now.
5552 (decode_options): Invoke prepend_default_options to support
5553 TAR_OPTIONS. In diagnostic, mention the string that was the
5554 invalid blocking factor, tape length, group, owner, or record
5555 size. --delete is no longer incompatible with -f -, undoing
5556 2000-01-07 change.
5557 (main): Invoke extract_finish at end of extraction.
5558
5559 * src/rmt.c: Include localedir.h.
5560 (main): Update copyright date to 2000.
5561
5562 * doc/getdate.texi: New file, taken from fileutils 4.0.27, with the
5563 following changes: Use @sc where appropriate. Document the ranges of
5564 supported times more precisely. Add Eggert to getdate authors.
5565 Document old Latin 12m/12pm tradition. Remove list of alphabetic time
5566 zone names, as it wasn't correct and people shouldn't be relying on it
5567 anyway. Relative items also account for non-DST adjustments. Fix
5568 some misspellings.
5569
5570 * lib/prepargs.c, lib/prepargs.h, tests/extrac04.sh: New file.
5571
5572 * tests/ignfail.sh: opendir -> savedir in diagnostics.
5573
5574 * tests/preset.in: Set LANGUAGE to the empty string, for some
5575 brain damaged host.
5576
5577 2000-10-20 Paul Eggert <eggert@twinsun.com>
5578
5579 * m4/fnmatch.m4: Mention the GNU C library.
5580
5581 2000-10-19 Paul Eggert <eggert@twinsun.com>
5582
5583 * m4/fnmatch.m4: Add a couple more test cases to catch bugs in
5584 glibc 2.1.95.
5585
5586 2000-10-17 Paul Eggert <eggert@twinsun.com>
5587
5588 * lib/human.c (<limits.h>): Do not include; human.h does it if needed.
5589 (CHAR_BIT): Remove.
5590
5591 * lib/human.h (<limits.h>): Include if HAVE_LIMITS_H.
5592 (CHAR_BIT): Define if not defined.
5593
5594 2000-09-09 Paul Eggert <eggert@twinsun.com>
5595
5596 * lib/quotearg.c: From fileutils: rename ISASCII to IN_CTYPE_DOMAIN.
5597
5598 2000-08-07 Paul Eggert <eggert@twinsun.com>
5599
5600 * lib/xmalloc.c: Memory exhausted -> memory exhausted
5601
5602 * lib/xalloc.h (xalloc_msg_memory_exhausted):
5603 change to array from char *.
5604
5605 2000-08-06 Paul Eggert <eggert@twinsun.com>
5606
5607 * m4/mbstate_t.m4: Define mbstate_t to be int, not char, for
5608 compatibility with glibc 2.1.3 strftime.c.
5609
5610 2000-07-31 Paul Eggert <eggert@twinsun.com>
5611
5612 * lib/quotearg.c (quotearg_n_options):
5613 Don't make the initial slot vector a constant,
5614 since it might get modified.
5615
5616 * lib/quotearg.c: Add support for more than one preallocated slot.
5617
5618 2000-07-30 Paul Eggert <eggert@twinsun.com>
5619
5620 * lib/quotearg.c (quotearg_n_options):
5621 Preallocate a slot 0 buffer, so that the caller
5622 can always quote one small component of a "memory exhausted" message
5623 in slot 0.
5624
5625 2000-07-23 Paul Eggert <eggert@twinsun.com>
5626
5627 * lib/quotearg.c:
5628 Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX), so that
5629 mbstate_t is always defined.
5630
5631 Do not inspect MB_LEN_MAX, since it's incorrectly defined to be 1 in
5632 some GCC installations, and this configuration error is likely to be
5633 common.
5634
5635 2000-07-22 Paul Eggert <eggert@twinsun.com>
5636
5637 * lib/quotearg.c:
5638 When the system forces us to redefine mbstate_t, shadow its mbsinit
5639 function. From Bruno Haible.
5640
5641 2000-07-14 Paul Eggert <eggert@twinsun.com>
5642
5643 * lib/xmalloc.c: Simplify exhausted message.
5644
5645 * lib/quotearg.h: Update copyright date; from Jim Meyering.
5646
5647 2000-07-13 Paul Eggert <eggert@twinsun.com>
5648
5649 * lib/quotearg.h (enum quoting style):
5650 New constant clocale_quoting_style.
5651
5652 * lib/quotearg.c:
5653 (quoting_style_args, quoting_style_vals, quotearg_buffer_restyled):
5654 Add support for clocale_quoting_style, undoing previous change to
5655 locale_quoting_style.
5656
5657 2000-07-10 Paul Eggert <eggert@twinsun.com>
5658
5659 * lib/quotearg.c:
5660 <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX,
5661 since otherwise we don't need it.
5662 (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
5663 since we don't do multibytes in that case.
5664 (quotearg_buffer_restyled): If a unibyte locale, don't bother to
5665 invoke multibyte primitives.
5666
5667 * m4/mbstate_t.m4 (AC_MBSTATE_T):
5668 Renamed from AC_MBSTATE_T_OBJECT. All uses changed.
5669 Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
5670 and mbstate_t, to a single-part test that simply defines mbstate_t.
5671
5672 * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
5673 Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
5674 to decide whether to define the BeOS workaround macro;
5675 this adjusts to the change to AC_MBSTATE_T.
5676
5677 * m4/strerror_r.m4: New file.
5678
5679 2000-07-05 Paul Eggert <eggert@twinsun.com>
5680
5681 * lib/quotearg.c: Use double-quote to quote.
5682
5683 * lib/quotearg.c (N_): New macro.
5684 (gettext_default): New function.
5685 (quotearg_buffer_restyled): Use gettext_default ("{LEFT QUOTATION MARK}",
5686 "\"") for left quote, and gettext_default ("{RIGHT QUOTATION MARK}", "\"")
5687 for right quote.
5688
5689 * lib/quotearg.c (struct quoting_options):
5690 Simplify quote_these_too dimension.
5691 From Bruno Haible <haible@clisp.cons.org>.
5692
5693 * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT):
5694 Test for mbstate_t only if the test
5695 for an object-type mbstate_t fails.
5696
5697 * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
5698
5699 2000-07-03 Paul Eggert <eggert@twinsun.com>
5700
5701 * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
5702 Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
5703
5704 * lib/quotearg.c (mbrtowc):
5705 Assign to *pwc, and return 1 only if result is nonzero.
5706 (iswprint): Define to ISPRINT if we are substituting our own mbrtowc.
5707
5708 2000-07-02 Paul Eggert <eggert@twinsun.com>
5709
5710 * lib/quotearg.c (mbstate_t):
5711 Do not define; it should be defined with AC_CHECK_TYPE.
5712
5713 2000-06-26 Paul Eggert <eggert@twinsun.com>
5714
5715 * m4/mbstate_t.m4: Include stdio.h before wchar.h, to work around
5716 a bug in glibc 2.1.3.
5717
5718 * lib/xmalloc.c: Fix inaccurate comment for xrealloc.
5719
5720 2000-06-19 Paul Eggert <eggert@twinsun.com>
5721
5722 * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
5723 inclusion of wctype.h to work around solaris2.6 namespace pollution.
5724 (ISPRINT): Likewise.
5725 Reported by Tom Tromey.
5726
5727 2000-06-15 Paul Eggert <eggert@twinsun.com>
5728
5729 * lib/human.c (adjust_value): New function.
5730 (human_readable_inexact): Apply rounding style even when printing
5731 approximate values.
5732
5733 * lib/human.c: Avoid shadowing warnings.
5734 From Jim Meyering.
5735
5736 2000-06-14 Paul Eggert <eggert@twinsun.com>
5737
5738 * lib/human.c (human_readable_inexact): Allow an input block size
5739 that is not a multiple of the output block size, and vice versa.
5740
5741 * lib/getdate.y (get_date): Apply relative times after time zone
5742 indicator, not before.
5743
5744 2000-05-31 Paul Eggert <eggert@twinsun.com>
5745
5746 * m4/largefile.m4: Rewrite so that we don't need to run getconf,
5747 and thus don't need AC_CANONICAL_HOST.
5748
5749 (AC_SYS_LARGEFILE_FLAGS, AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
5750 (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
5751 (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
5752 CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY. All uses
5753 changed. Instead of inspecting the output of getconf, try to
5754 compile the test program without and with the macro definition.
5755 (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check for
5756 getconf. Instead, check for the needed flags by compiling test
5757 programs.
5758
5759 * configure.in (AC_CANONICAL_HOST): Remove; the largefile stuff no
5760 longer needs it.
5761 * config.guess, config.sub: Remove these files, for similar reasons.
5762
5763 2000-05-03 Paul Eggert <eggert@twinsun.com>
5764
5765 * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to be
5766 500, instead of _GNU_SOURCE to be 1, to work around glibc 2.1.3
5767 bug. This avoids a clash when files like regex.c that define
5768 _GNU_SOURCE.
5769
5770 2000-05-02 Paul Eggert <eggert@twinsun.com>
5771
5772 * m4/largefile.m4 (AC_SYS_LARGEFILE):
5773 Define _GNU_SOURCE if this is needed to make
5774 ftello visible (e.g. glibc 2.1.3). Use compile-time test, rather than
5775 inspecting host and OS, to decide whether to define _LARGEFILE_SOURCE.
5776
5777 * lib/quotearg.c (mbrtowc, mbstat_t):
5778 Add definitions if !HAVE_MBSTATE_T_OBJECT.
5779 (<wctype.h>): Include if HAVE_WCTYPE_H.
5780 (iswprint): Define to 1 if we lack it
5781
5782 2000-04-18 Paul Eggert <eggert@twinsun.com>
5783
5784 * m4/mbstate_t.m4: New file.
5785
5786 2000-04-17 Bruno Haible <haible@clisp.cons.org>
5787
5788 * tests/ignfail.sh: Test for uid 0 along with user "root".
5789
5790 2000-04-05 Paul Eggert <eggert@twinsun.com>
5791
5792 * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS):
5793 Don't use -n32 on IRIX if the installer said
5794 otherwise.
5795
5796 2000-02-28 Paul Eggert <eggert@twinsun.com>
5797
5798 * lib/quotearg.c (ALERT_CHAR): New macro.
5799 (quotearg_buffer_restyled): Use it.
5800
5801 2000-02-23 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5802
5803 * src/list.c (tartime): Fix off-by-one error when copying year if
5804 OLD_CTIME.
5805
5806 2000-02-18 Paul Eggert <eggert@twinsun.com>
5807
5808 * lib/getdate.y: Handle two-digit years with leading zeros correctly.
5809 (textint): New typedef.
5810 (parser_control): Changed from struct parser_control to typedef
5811 (for consistency). Member year changed from int to textint. All
5812 uses changed.
5813 (YYSTYPE): Removed; replaced by %union with int and textint
5814 members.
5815 (tID): Removed; not used.
5816 (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE,
5817 tMERIDIAN, tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER,
5818 tUNUMBER, tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
5819 (tSNUMBER, tUNUMBER): Now of type <textintval>.
5820 (date, number, to_year): Use width of number in digits, not its
5821 value, to determine whether it's a 2-digit year, or a 2-digit
5822 time.
5823 (yylex): Store number of digits of numeric tokens. Return '?' for
5824 unknown identifiers, rather than (unused) tID.
5825
5826 2000-01-16 Paul Eggert <eggert@twinsun.com>
5827
5828 * lib/quotearg.c (quotearg_buffer_restyled):
5829 Do not quote alert, backslash, formfeed,
5830 and vertical tab unnecessarily in shell quoting style.
5831
5832 2000-01-15 Paul Eggert <eggert@twinsun.com>
5833
5834 * m4/c-bs-a.m4:
5835 Change quoting to be compatible with future autoconf versions.
5836
5837 2000-01-11 Paul Eggert <eggert@twinsun.com>
5838
5839 * lib/exclude.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Remove unused macros.
5840
5841 2000-01-07 Paul Eggert <eggert@twinsun.com>
5842
5843 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.17.
5844
5845 Fix bug with fnmatch.h dependency, as follows:
5846 * src/Makefile.am (OMIT_DEPENDENCIES): New macro.
5847 * lib/Makefile.am (OMIT_DEPENDENCIES): New macro.
5848
5849 * src/common.h (apply_nonancestor_delayed_set_stat):
5850 Renamed from apply_delayed_set_stat.
5851 (apply_delayed_set_stat, decode_mode, chmod_error_details,
5852 chown_error_details, close_warn, closedir_warn, mkdir_error,
5853 read_error_details, read_fatal_details, read_warn_details,
5854 seek_error_details, seek_warn_details, utime_error,
5855 write_error_details, write_fatal_details): New decls.
5856
5857 Make diagnostic messages more regular.
5858 * src/create.c (dump_file): Quote file names with colons if possible.
5859 * src/compare.c (diff_archive): Likewise.
5860 * src/extract.c (repair_delayed_set_stat, extract_archive): Likewise.
5861 * src/incremen.c (get_directory_contents, gnu_restore): Likewise.
5862 * src/mangle.c (extract_mangle): Likewise.
5863 * src/misc.c (call_arg_error, call_arg_fatal, call_arg_warn):
5864 Likewise.
5865 * src/buffer.c (archive_write_error, flush_archive, close_archive,
5866 new_volume, xclose):
5867 Use error message functions to report errors consistently.
5868 * src/compare.c (diff_sparse_files, diff_archive): Likewise.
5869 * src/create.c (finish_sparse_file, dump_file): Likewise.
5870 * src/extract.c (set_mode, set_stat, extract_sparse_file,
5871 extract_archive): Likewise.
5872 * src/list.c (list_archive): Likewise.
5873 * src/update.c (append_file): Likewise.
5874 * src/compare.c (diff_init, diff_sparse_files):
5875 Use xalloc_die to report memory exhaustion.
5876 * src/incremen.c (gnu_restore): Likewise.
5877 * src/list.c (read_header): Likewise.
5878 * src/mangle.c (extract_mangle): Likewise.
5879 * src/misc.c (maybe_backup_file): Likewise.
5880 * src/tar.c (decode_options): Likewise.
5881 * src/compare.c (read_and_process, fill_in_sparse_array,
5882 diff_sparse_files):
5883 Use consistent terminology for unexpected-EOF message.
5884 * src/extract.c (extract_sparse_file, extract_archive): Likewise.
5885 * src/list.c (list_archive, read_header, skip_file,
5886 skip_extended_headers): Likewise.
5887 * src/buffer.c (archive_write_error): Add noreturn attribute to decl.
5888 (xdup2): Regularize messages with rest of tar.
5889
5890 * src/buffer.c (flush_read): Don't read past EOF.
5891
5892 * src/extract.c (extr_init):
5893 If we run out of memory, invoke apply_delayed_set_stat.
5894 (prepare_to_extract): Don't complain if we can't remove ".".
5895 (apply_delayed_set_stat): New function.
5896 (apply_nonancestor_delayed_set_stat):
5897 Renamed from apply_delayed_set_stat. All uses changed.
5898 Don't remove head if it doesn't apply.
5899
5900 * src/create.c (find_new_file_size):
5901 Return size instead of storing through pointer.
5902 All callers changed.
5903 (deal_with_sparse): Don't keep reading after read errors.
5904 (finish_sparse_file): Just abort if there is an internal error.
5905 (dump_file): Fix typo: stat_warn and stat_error were interchanged.
5906 Don't restore access times on directories during incremental dumps
5907 until after dealing with the directory.
5908 If ignoring failed reads, count closedir, read, and unknown
5909 file errors as warnings, not errors.
5910 Fix buffer overrun problem when dumping sparse files.
5911
5912 * src/list.c (read_and):
5913 Invoke apply_nonancestor_delayed_set_stat on file names
5914 after handling them.
5915 (decode_mode): Remove; moved to misc.c.
5916
5917 * src/misc.c (safer_rmdir): New function.
5918 (remove_any_file): Use it to avoid problems with rmdir(".").
5919 (maybe_backup_file): Regularize diagnostics.
5920 (undo_backup_file): Likewise.
5921 (decode_mode): Moved here from list.c.
5922 (chmod_error_details, chown_error_details, close_fatal,
5923 close_warn, closedir_warn, mkdir_error, read_error_details,
5924 read_warn_details, read_fatal_details, seek_error_details,
5925 seek_warn_details, utime_error, write_error_details,
5926 write_fatal_details): New functions.
5927
5928 * src/delete.c (save_record): Remove static variable (now local).
5929 (move_archive): Don't position before start of archive.
5930 (write_record): Abort if count is zero at inopportune time.
5931 Plug memory leak.
5932
5933 * src/tar.c (decode_options): --delete and -f - are now
5934 incompatible, since we didn't have time to fix their bugs.
5935
5936 * tests/Makefile.am (TESTS): Remove delete02.sh.
5937 * tests/ignfail.sh: Adjust to new quoting scheme again.
5938
5939 2000-01-06 Paul Eggert <eggert@twinsun.com>
5940
5941 * lib/getdate.y: Sync tm_diff with the GNU C Library.
5942 (TM_YEAR_BASE): Renamed from TM_YEAR_ORIGIN. All uses changed.
5943 (tm_diff): Renamed from difftm. All uses changed.
5944 Replace body with that taken from GNU C Library 2.1.3pre1.
5945 (get_date): Prefer tm_gmtoff to tm_diff if available.
5946
5947 1999-12-29 "Melissa O'Neill" <oneill@cs.sfu.ca>
5948
5949 * tests/incremen.sh: Invoke stat on newly created file so that its
5950 ctime is updated on Nextstep.
5951
5952 1999-12-21 Machael Stone <mstone@cs.loyola.edu>
5953
5954 * lib/getdate.y (get_date):
5955 Fix typo when checking for time_t overflow in time zone calculations.
5956
5957 1999-12-13 Paul Eggert <eggert@twinsun.com>
5958
5959 * NEWS, configure.in (AC_INIT_AUTOMAKE): Version 1.13.16.
5960
5961 * README-alpha: New file.
5962 * README: New sections for gzip and bzip2, Solaris.
5963 Remove mention of BACKLOG.
5964
5965 * configure.in (AC_C_BACKSLASH_A): Add.
5966 (AC_CHECK_HEADERS): Add wchar.h.
5967 (AC_CHECK_FUNCS): Add mbrtowc.
5968 (AC_FUNC_CLOSEDIR_VOID): Add.
5969
5970 * tests/Makefile.am (TESTS): Add delete02.sh.
5971 (POSTPONED_TESTS): Remove.
5972 (EXTRA_DIST): Remove $(POSTPONED_TESTS).
5973
5974 * tests/preset.in:
5975 Set LC_ALL rather than LANGUAGE, LANG, and LC_MESSAGES.
5976
5977 * tests/ignfail.sh (err): Adjust to new quoting scheme.
5978
5979 * tests/delete02.sh: Fix typo: need to list archive2, not archive.
5980
5981 * tests/extrac03.sh: Use -P option, so that .. doesn't get diagnosed.
5982
5983 * src/tar.c ("quotearg.h"): New include.
5984 (usage): Now has __attribute__ ((noreturn)).
5985 (confirm): Report errno if we can't open tty.
5986 (confirm, decode_options):
5987 Quote arbitrary strings in diagnostics.
5988 (OVERWRITE_OPTION): New constant.
5989 (long_options, usage, decode_options): New --overwrite option.
5990 (decode_options): --keep-old-files, --overwrite, and --unlink-first
5991 are now mutually exclusive.
5992 Don't assume that gettext preserves errno.
5993 (main): Set default quoting style to escape_quoting_style.
5994
5995 * src/update.c (<quotearg.h>): New include.
5996 (append_file):
5997 Don't assume that gettext preserves errno.
5998 Quote arbitrary strings in diagnostics.
5999 Check for close error.
6000
6001 * src/names.c (<quotearg.h>): New include.
6002 (name_init, name_next, name_close, names_notfound,
6003 collect_and_sort_names): Don't assume that gettext preserves
6004 errno. Quote arbitrary strings in diagnostics.
6005 (excluded_name): Fix typo that caused empty patterns to be
6006 mishandled.
6007
6008 * src/misc.c (<quotearg.h>): New include.
6009 (quote_copy_string): Quote only newline and backslash; the output is no
6010 longer meant for humans, and is locale-independent.
6011 (contains_dot_dot): New function.
6012 (remove_any_file): Don't use lstat; just rmdir the file and then use
6013 unlink if the rmdir fails because the file isn't a directory.
6014 Check for readdir and closedir errors.
6015 (maybe_backup_file): Report "stat" for stat errors.
6016 (maybe_backup_file, chdir_do):
6017 Quote arbitrary strings in diagnostics.
6018 (maybe_backup_file, undo_last_backup):
6019 Don't assume that gettext preserves errno.
6020 (call_arg_error, call_arg_fatal, call_arg_warn,
6021 chdir_fatal, close_error, closedir_error, exec_fatal, mkfifo_error,
6022 mknod_error, open_error, open_fatal, open_warn, opendir_error,
6023 opendir_warn, read_error, read_fatal, readdir_error, readdir_warn,
6024 readlink_error, readlink_warn, seek_error, seek_warn, stat_error,
6025 stat_warn, truncate_error, truncate_warn, unlink_error, waitpid_error,
6026 write_error, write_fatal, xfork, xpipe, quote_n, quote): New functions.
6027
6028 * src/system.h (__attribute__): New macro.
6029 (O_NDELAY, O_NONBLOCK, O_APPEND): Remove.
6030 (S_ISDOOR): New macro.
6031 (closedir): New macro, if CLOSEDIR_VOID.
6032
6033 * src/rmt.c, src/rtapelib.c (decode_oflag):
6034 O_APPEND might not be defined.
6035
6036 * src/list.c: (read_and, list_archive):
6037 Quote arbitrary strings in diagnostics.
6038 (from_header): Use locale_quoting_style to quote diagnostics.
6039 (print_header, print_for_mkdir): Quote with quotearg, not quote_copy_string.
6040
6041 * src/rmt.h (REM_BIAS): Increase from 128 to (1 << 30).
6042
6043 * src/Makefile.am: Use ## for copyright comments.
6044
6045 * src/extract.c (<quotearg.h>): New include.
6046 (enum permstatus): New enum.
6047 (struct delayed_set_stat): file_name is now at end of buffer, to avoid
6048 two mallocs. New members file_name_len, invert_permissions, permstatus.
6049 (extr_init): Remove hack that silently adjusted newdir_umask.
6050 (set_mode, set_stat): New args invert_permissions, permstatus, typeflag.
6051 Use these args to decide whether and how to set modes.
6052 (set_mode, set_stat, prepare_to_extract, extract_sparse_file, extract_archive):
6053 Don't assume that gettext preserves errno.
6054 (set_stat): Remove arg symlink_flag; subsumed by typeflag.
6055 (delay_set_stat, repair_delayed_set_stat): New functions.
6056 (make_directories): Avoid mkdir where last part of path is "..".
6057 Create a struct delayed_set_stat for each directory made.
6058 (prepare_to_extract): Renamed from unlink_destination, and
6059 return 0 immediately if to_stdout_option; all callers changed.
6060 (maybe_recoverable): New parameter interdir_made.
6061 Add support for --overwrite.
6062 (extract_sparse_file, extract_archive):
6063 Quote arbitrary strings in diagnostics.
6064 (extract_archive): By default, warn about ".." in member names, and skip them.
6065 Don't open files with O_NONBLOCK or O_APPEND.
6066 Open with O_TRUNC only if --overwrite; otherwise, use O_EXCL to avoid
6067 overwriting them. Pass only rwxrwxrwx permissions to `open' and `mkdir',
6068 minus the current umask. Keep track of intermediate directories made,
6069 to avoid looping when making x/../x when x doesn't exist; the
6070 earlier code solved this in a different way that didn't fit well
6071 into the new scheme. Don't extract permissions onto existing
6072 directories unless --overwrite is given. Do not add -wx------
6073 permissions to new directories permanently; just do it temporarily.
6074 Remove no-longer-needed hack with MSDOS and directory time stamps.
6075 (apply_delayed_set_stat): New argument specifies which directories to
6076 fix statuses of. Do not wait until the end of extraction to fix
6077 statuses; instead, fix a directory's status once we exit that directory.
6078 This requires less memory and does the right thing in some cases
6079 where the old method didn't.
6080 (fatal_exit): New function.
6081
6082 * src/incremen.c (<quotearg.h>): New include.
6083 (get_directory_contents, gnu_restore):
6084 Check for readdir and closedir errors.
6085 (get_directory_contents, read_directory_file, gnu_restore):
6086 Quote arbitrary strings in diagnostics.
6087 (get_directory_contents, read_directory_file, write_directory_file):
6088 Don't assume that gettext preserves errno.
6089
6090 * src/create.c (<quotearg.h>): New include.
6091 (start_header): Use `member names' to refer to archive member names, not
6092 `archive names'. Warn about `..' in member names.
6093 (finish_sparse_file, dump_file):
6094 Quote arbitrary strings in diagnostics.
6095 (finish_sparse_file, dump_file):
6096 Don't assume that gettext preserves errno.
6097 (dump_file): Don't use `access' to determine whether a directory is readable;
6098 this isn't reliable if tar is setuid. Use `opendir' instead.
6099 Check for readdir and closedir failures.
6100 Don't dump sockets as if they were fifos; just warn and skip.
6101
6102 * src/delete.c (move_archive):
6103 Don't report fatal error merely because sizes don't fit
6104 into struct mtop values; fall back on lseek instead.
6105 Say `Cannot' uniformly, instead of `Could not' sometimes and `Cannot' others.
6106 Say `reposition' instead of `re-position'.
6107 (delete_archive_members):
6108 Set archive to STDOUT_FILENO before outputting trailing buffer.
6109
6110 * src/compare.c (<quotearg.h>): New include.
6111 (diff_init): Use `Cannot' uniformly, instead of `Could not' sometimes
6112 and `Cannot' others.
6113 (report_difference, diff_archive):
6114 Quote arbitrary strings in diagnostics.
6115 (process_rawdata, diff_sparse_files, get_stat_data, diff_archive, seek_warn):
6116 Don't assume that gettext preserves errno.
6117 (diff_archive): Don't open regular files with O_NONBLOCK.
6118 Preserve access times of files if --atime.
6119
6120 * src/common.h (FATAL_ERROR): Use new fatal_exit function to exit.
6121 (FATAL_ERROR, USAGE): Don't return 0.
6122 (enum old files): New enum.
6123 (old_files_option): New variable, replacing keep_old_files_option and
6124 unlink_first_option.
6125 (apply_delayed_set_stat): Now takes char const * param.
6126 (fatal_exit, contains_dot_dot, chdir_fatal, close_error,
6127 closedir_error, exec_fatal, mkfifo_error, mknod_error, open_error,
6128 open_fatal, open_warn, opendir_error, opendir_warn, read_error,
6129 read_fatal, readdir_error, readdir_warn, readlink_error,
6130 readlink_warn, seek_error, seek_warn, stat_error, stat_warn,
6131 truncate_error, truncate_warn, unlink_error, waitpid_error,
6132 write_error, write_fatal, xfork, xpipe, quote, quote_n): New decls.
6133
6134 * src/buffer.c:
6135 (xclose, xdup2, child_open_for_compress, child_open_for_uncompress,
6136 archive_write_error, archive_read_error, flush_archive, close_archive,
6137 init_volume_number, new_volume):
6138 Don't assume that gettext preserves errno.
6139
6140 (xdup2): Don't report errno if dup returns an unexpected nonnegative value.
6141 (open_archive): Reject multivolume verify attempts a bit earlier.
6142 Rename local variable `access', in case it's defined by system header.
6143
6144 (open_archive, backspace_output): Use `Cannot' uniformly, instead of
6145 `Could not' sometimes and `Cannot' others.
6146
6147 (open_archive, flush_read, flush_archive, close_archive, new_volume):
6148 Quote arbitrary strings in diagnostics.
6149
6150 (read_error): Set archive to STDOUT_FILENO temporarily when writing
6151 archive buffer.
6152
6153 (init_volume_number): Check for input and output errors in volno_file.
6154
6155 (new_volume): Use new fatal_exit function to exit, and new xfork
6156 function to fork.
6157
6158 * m4/Makefile.am (EXTRA_DIST): Add c-bs-a.m4.
6159
6160 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/c-bs-a.m4.
6161
6162 * doc/tar.texi: Add --overwrite.
6163 --absolute-names rejects ".." in names.
6164
6165 * lib/quotearg.c: Add support for multibyte characters.
6166 (ISGRAPH): Remove.
6167 (ISPRINT): New macro.
6168 (<wchar.h>): Include if HAVE_MBRTOWC && HAVE_WCHAR_H.
6169 (isprint, mbrtowc, mbsinit, mbstate_t): New macros,
6170 defined if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
6171 (quotearg_buffer_restyled): New function, with most of the old
6172 quotearg_buffer's contents.
6173 Major rewrite to support multibyte characters.
6174 (quotearg_buffer): Now just calls quotearg_buffer_restyled.
6175
6176 * m4/c-bs-a.m4: New file.
6177
6178 * lib/Makefile.am: Use ## for copyright notice.
6179
6180 * scripts/Makefile.am: Use ## on copyright notice.
6181
6182 * doc/Makefile.am:
6183 ($(srcdir)/tar.info, tar.dvi): We now use texinfo 4.0.
6184
6185 1999-12-05 Paul Eggert <eggert@twinsun.com>
6186
6187 * doc/ChangeLog, lib/ChangeLog, scripts/ChangeLog,
6188 src/ChangeLog, tests/ChangeLog: Remove these files.
6189 * ChangeLog.1: New file, incorporating the above files, plus old
6190 ChangeLog entries.
6191 * Makefile.am (EXTRA_DIST): Add ChangeLog.1.
6192
6193 1999-12-05 Dale Worley <worley@ariadne.com>
6194
6195 * src/compare.c (<utime.h>, struct utimbuf): Add.
6196 (diff_archive): Restore access times if --atime.
6197 * doc/tar.texi: Explain that --atime also preserves modification time.
6198
6199 1999-12-04 Gerhard Poul <gpoul@gnu.org>
6200
6201 * ABOUT-NLS: Update to latest version from ftp.gnu.org.
6202 * BACKLOG, TODO: Remove.
6203 * Makefile.am (all-local, BABYL, dist-zoo, id, ID): Remove.
6204 * README: Bring up to date.
6205
6206 1999-12-03 Paul Eggert <eggert@twinsun.com>
6207
6208 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.15.
6209
6210 * src/compare.c (diff_archive):
6211 Do not set errno to EPIPE; we no longer use perror.
6212
6213 * src/create.c (dump_file):
6214 If a parent directory said that a file should be there but it is
6215 absent, diagnose it as being removed in the meantime.
6216 Do not pass meaningless errno to ERROR when reporting that the
6217 file changed as we read it.
6218 Report that a file changed if its ctime changes; this is more
6219 sensitive than mtime+size, and more accurate.
6220
6221 * src/incremen.c (enum children): New type.
6222 (struct directory): Change old char allnew member to new enum children
6223 children member.
6224 All uses changed.
6225 (get_directory_contents): When doing an incremental dump that does
6226 not cross filesystem boundaries, dump the mount points, even though
6227 they are in a different filesystem. This is for convenience when
6228 restoring, and for consistency with non-incremental dumps.
6229 This requires a 3-way flag for keeping track of which children we want,
6230 so we use enum children rather than boolean.
6231
6232 * src/open3.c (modes): Remove.
6233 (open3): Remove unportable assumptions about flag encodings.
6234 Use `stat' instead of `access' for testing file existence,
6235 to avoid problems with setuid programs.
6236
6237 * src/names.c (name_next): If file names are given both in the
6238 command line (e.g. via -C) and in a file (via -T), do not
6239 ignore the command-line names.
6240
6241 * m4/uintmax_t.m4: Backport to autoconf 2.13.
6242
6243 * doc/tar.texi: Clarify getdate authorship.
6244
6245 1999-11-23 Paul Eggert <eggert@twinsun.com>
6246
6247 * lib/Makefile.am (DISTCLEANFILES): New macro.
6248
6249 * configure.in (tar_fnmatch_hin):
6250 Remove; it runs afoul of a bug in autoconf 2.13.
6251 Instead, always link fnmatch.h to some file, even if it's a throwaway.
6252
6253 1999-11-19 Paul Eggert <eggert@twinsun.com>
6254
6255 * m4/largefile.m4: Update serial.
6256
6257 1999-11-18 Paul Eggert <eggert@twinsun.com>
6258
6259 * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a bug in
6260 the QNX shell, which doesn't propagate exit status of failed
6261 commands inside shell assignments.
6262
6263 1999-11-07 Paul Eggert <eggert@twinsun.com>
6264
6265 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.14.
6266
6267 * configure.in (AC_PREREQ): Bump to 2.13.
6268 (ALL_LINGUAS): Add pt_BR, ja.
6269 (AC_FUNC_FNMATCH): Remove lib/funmatch.h before invoking, not after.
6270 (tar_cv_path_RSH): Prefer a non-symlink rsh to a symlink one,
6271 for AIX crossbuilds.
6272
6273 * doc/tar.texi: New node create options for --ignore-failed-read.
6274 Remove unused version control symbols.
6275 Modernize texinfo usage.
6276
6277 * src/tar.c (usage): Add examples.
6278
6279 * m4/fnmatch.m4 (AC_FUNC_FNMATCH):
6280 Include fnmatch.h when testing fnmatch.
6281
6282 * src/common.h (collect_and_sort_names): New decl.
6283
6284 * src/list.c (from_header):
6285 Handle 32-bit two's complement negative time stamps
6286 even if the leading octal digit is 2 or 3.
6287
6288 * src/extract.c (set_stat): Remove duplicate code.
6289
6290 * src/create.c (to_chars): Remove trailing newline from warning.
6291 (dump_file): Ignore doors.
6292 (finish_header): Report block numbers with origin 0, not origin 1.
6293
6294 * src/rmt.c: Include getopt.h.
6295 (long_opts): New constant.
6296 (usage): New function.
6297 (main): Implement --help and --version.
6298 Output usage message if arguments are bad.
6299
6300 1999-10-10 Paul Eggert <eggert@twinsun.com>
6301
6302 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.13.
6303
6304 * README: Remove --with-dmalloc.
6305 Add --disable-largefile.
6306 Remove old NeXT dirent problems, or AIX valloc problems.
6307 Remove old union wait advice, and old %lld advice.
6308 Remove advice about FreeBSD 2.1.7, ISC 4.1mu, Ultrix `make'.
6309
6310 * doc/tar.texi: Clarify documentation for portable file names.
6311
6312 * configure.in (AM_WITH_DMALLOC): Remove.
6313 (ALL_LINGUAS): Add ja.
6314
6315 * src/tar.c (decode_options):
6316 Invalid dates are now treated as (time_t) -1.
6317 Redo version message to conform to GNU standards.
6318
6319 * src/create.c (dump_file):
6320 Fix typo: last two args to dump_file were interchanged.
6321 * src/update.c (update_archive): Likewise.
6322
6323 * src/common.h (tartime): New decl.
6324
6325 * src/list.c (tartime): Now extern.
6326 (read_and): Invalid headers cause errors, not warnings.
6327
6328 1999-10-03 Paul Eggert <eggert@twinsun.com>
6329
6330 * lib/getdate.y (__attribute__):
6331 Don't use if GCC claims to be before 2.8; this is
6332 needed for OPENStep 4.2 cc. Also, don't use if strict ANSI.
6333
6334 1999-09-25 Paul Eggert <eggert@twinsun.com>
6335
6336 * lib/fnmatch.c, lib/fnmatch.hin: Merge changes from latest glibc.
6337 * lib/getopt.c, lib/getopt.h, lib/getopt1.c: Likewise.
6338
6339 * tests/incremen.sh: Add yet another sleep.
6340
6341 1999-09-24 Paul Eggert <eggert@twinsun.com>
6342
6343 * NEWS: A read error now causes a nonzero exit status.
6344
6345 * src/create.c (to_chars): Fix base-256 output.
6346
6347 * src/buffer.c (write_error):
6348 Read error is an error, not just a warning.
6349
6350 1999-09-24 Paul Eggert <eggert@twinsun.com>
6351
6352 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.12.
6353
6354 * src/tar.c (<time.h>): Include.
6355 (time): Declare if not defined.
6356 (confirm): Don't read past EOF.
6357 (long_options, usage): Add --no-same-owner, --no-same-permissions.
6358 (main): Use clock_gettime if available.
6359
6360 * tests/Makefile.am (TESTS): Add incremen.sh
6361 (INCLUDES): Add -I../lib, for fnmatch.h.
6362
6363 * src/update.c (update_archive):
6364 Remove call to name_expand; had no effect.
6365 Use chdir_do to change into directory.
6366 Use deref_stat instead of stat.
6367 Use add_avoided_name to mark names to be avoided; the old method of
6368 setting a bit with the name caused all descendants of that name to
6369 be avoided, in some circumstances.
6370
6371 * tests/incremen.sh: Remove unnecessary sleeps.
6372
6373 * src/names.c (name_next): Go back to using plain chdir.
6374 (name_gather): Use chdir_arg to keep track of arguments to chdir.
6375 (addname): Likewise.
6376 (name_match): Use chdir_do to act on chdir args.
6377 (merge_sort): Moved here from incremen.c.
6378 (compare_names, add_hierarchy_to_namelist, collect_and_sort_names):
6379 Likewise.
6380 (name_expand): Remove.
6381 (name_from_list): Skip fake names.
6382 Use chdir_do to act on chdir args.
6383 (struct avoided_name): New struct.
6384 (avoided_names): New var.
6385 (add_avoided_name, is_avoided_name): New functions.
6386
6387 * src/system.h (stat, lstat): Define in terms of statx on
6388 STX_HIDDEN && !_LARGE_FILES /* AIX */ hosts.
6389 (UCHAR_MAX): New macro.
6390 (TYPE_MAXIMUM): Cast to arg type, for types narrow than int.
6391
6392 * m4/largefile.m4: Work around GCC 2.95.1 bug with HP-UX 10.20.
6393
6394 * src/incremen.c (<time.h>): Remove include; no longer used.
6395 (time): Remove decl.
6396 (time_now): Remove.
6397 (get_directory_contents): Use deref_stat.
6398 Consider a subdirectory to be all new only if
6399 listed_incremental_option or if it its timestamp is newer than the
6400 cutoff.
6401 (add_hierarchy_to_namelist, merge_sort): Move to names.c.
6402 (read_directory_file): Now extern. Do not set time_now.
6403 (write_directory_file): Renamed from write_dir_file.
6404 Use start_time instead of time_now.
6405 (compare_names, collect_and_sort_names): Move to names.c.
6406
6407 * src/mangle.c (<time.h>): Remove; not used.
6408 (time): Do not declare.
6409
6410 * src/misc.c (chdir_from_initial_wd): Remove.
6411 (deref_stat): New function.
6412 (struct wd): New struct.
6413 (wd, wds, wd_alloc): New variables.
6414 (chdir_arg, chdir_do): New function.
6415
6416 * src/compare.c (get_stat_data): Use deref_stat.
6417
6418 * src/common.h (name_expand): Remove.
6419
6420 * src/list.c (time): Declare if not defined.
6421 (base_64_digits): Moved here from create.c.
6422 (base64_map): Use UCHAR_MAX for size, not less-clear (unsigned char)
6423 -1.
6424 (read_and): Don't get time from header unless we need it now;
6425 as getting time can cause duplicate diagnostics if bogus.
6426 Remove "Hmm, " from diagnostic.
6427 Use "Skipping to next header" uniformly.
6428 (from_header): Renamed from from_chars. All uses changed.
6429 Allow different forms for unportable 2's complement numbers.
6430 Don't check for extended forms when parsing checksums.
6431 Parse base-256 output.
6432 (gid_from_header): Renamed from gid_from_chars. All uses changed.
6433 (major_from_header): Renamed from major_from_chars. All uses changed.
6434 (minor_from_header): Renamed from minor_from_chars. All uses changed.
6435 (mode_from_header): Renamed from mode_from_chars. All uses changed.
6436 (off_from_header): Renamed from off_from_chars. All uses changed.
6437 (size_from_header): Renamed from size_from_chars. All uses changed.
6438 (time_from_header): Renamed from time_from_chars. All uses changed.
6439 Warn about future timestamps.
6440 (uid_from_header): Renamed from uid_from_chars. All uses changed.
6441 (uintmax_from_header): Renamed from uintmax_from_chars.
6442 All uses changed.
6443 (tartime): New function, incorporating isotime.
6444 (isotime): Delete.
6445 (print_header): Use tartime.
6446
6447 * src/create.c (to_chars): Fix typo in decl.
6448 Don't assign through char const *.
6449 Rename name_expand back to collect_and_sort_names.
6450
6451 * src/extract.c (<time.h>): No need to include.
6452 (time): No need to declare.
6453 (now): Remove variable.
6454 (extr_init): Don't initialize `now'.
6455 Increment same_permissions_option and same_owner_option if we_are_root
6456 is nonzero; this supports the new --no-same-owner option.
6457 (set_stat): Use start_time instead of `now'.
6458
6459 * src/create.c (struct link): Remove unused linkcount member.
6460 (base_64_digits): Move to list.c.
6461 (base_8_digits): Remove.
6462 (to_octal): New function, with some of old contents of to_base.
6463 (to_base): Remove.
6464 (to_base256): New function.
6465 (to_chars): Use base 256, not base 64, for huge values.
6466 (mode_to_chars): Don't use two's complement in GNU format or POSIX
6467 format.
6468 (dump_file): Interchange last two arguments. If TOP_LEVEL is negative,
6469 it means we have an incremental dump where we don't know whether this
6470 is a top-level call.
6471 Use deref_stat instead of statx / stat / lstat.
6472 Cast result of alloca.
6473 Check for dates if 0 < top_level, not if listed_incremental_option.
6474 Move multiple-link check after directory check.
6475 Do not dump avoided names.
6476 Dump hard links to symbolic names as links, not as separate
6477 symbolic links.
6478 start_header cannot return a null pointer, so don't test for it.
6479 Likewise for find_next_block.
6480
6481 * src/buffer.c, src/common.h (<human.h>): Include.
6482 (read_error): Read error is an error, not just a warning.
6483 (print_total_written): Also print human-readable byte count, and
6484 bytes/s.
6485 (open_archive, flush_write): Use start_time, not current time.
6486 (flush_read): Report about garbage bytes ignored at end of archive,
6487 but act on non-garbage bytes (instead of ignoring them).
6488 (new_volume): Use WARN for warnings.
6489
6490 * doc/Makefile.am:
6491 ($(srcdir)/tar.info): Add -I$(srcdir) so that subdir builds work.
6492
6493 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/fnmatch.m4.
6494
6495 * m4/Makefile.am (EXTRA_DIST): Add fnmatch.m4.
6496
6497 * lib/Makefile.am (noinst_HEADERS):
6498 Rename fnmatch.h to fnmatch.hin; add human.h.
6499 (libtar_a_SOURCES): Add human.c, xstrtoul.c.
6500 (INCLUDES): Remove -I.. -I$(srcdir) -- automake adds this for us.
6501
6502 * src/Makefile.am (rmt_LDADD, tar_LDADD): New macros.
6503
6504 * lib/fnmatch.c (strchrnul):
6505 Define to __strchrnul if _LIBC, to our own replacement otherwise.
6506 Do not define if !_LIBC and if it already exists.
6507 (internal_fnmatch): Use it.
6508
6509 * configure.in (tar_LDADD): New variable, used only when linking tar.
6510 (rmt_LDADD): Similarly, for rmt.
6511 (AC_FUNC_FNMATCH): Link fnnmatch.hin to fnmatch.h if we're using our
6512 fnmatch.c; otherwise, use the system fnmatch.h.
6513
6514 * doc/tar.texi: Add --no-same-owner, --no-same-permissions.
6515 Modernize sample backup script.
6516
6517 * THANKS: Martin Goik's email address has changed.
6518
6519 * m4/fnmatch.m4: New file.
6520
6521 1999-09-03 Paul Eggert <eggert@twinsun.com>
6522
6523 * lib/lchown.h (ENOSYS): Don't use ENOMSG; it's not in NeXTStep3.3.
6524 Use EINVAL instead.
6525
6526 1999-08-29 Paul Eggert <eggert@twinsun.com>
6527
6528 * lib/getdate.y (get_date):
6529 Rename outermost local `probe' to `quarter'.
6530 Rename latter local `tm' to probe_tm.
6531 From: Jim Meyering <meyering@ascend.com>
6532 Message-ID: <uryn1vafyyc.fsf@ixi.eng.ascend.com>
6533
6534 1999-08-28 Paul Eggert <eggert@twinsun.com>
6535
6536 * lib/getdate.y (PC): New macro; use it when possible.
6537 (number): Handle `Nov 11 1996' example correctly.
6538 See Risks Digest 20.55 (1999-08-27)
6539 http://catless.ncl.ac.uk/Risks/20.55.html#subj18
6540
6541 1999-08-23 Paul Eggert <eggert@twinsun.com>
6542
6543 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.11.
6544
6545 Remove minor cases of lint from many source files: this includes
6546 unnecessary casts, uses of NULL, etc.
6547
6548 * configure.in (AC_PROG_YACC): Remove.
6549 (YACC): Always use bison.
6550 (AC_STRUCT_TIMEZONE): Add.
6551 (AC_REPLACE_FUNCS): Add strcasecmp, strncasecmp.
6552
6553 * doc/tar.texi: --bzip2 is now -I. Remove obsolete time zone info.
6554 Fix spelling.
6555
6556 * lib/Makefile.am (EXTRA_DIST): Add strcasecmp.c, strncasecmp.c.
6557 ($(srcdir)/getdate.c): Rename y.tab.c to getdate.c only if successful.
6558
6559 * lib/strcasecmp.c, lib/strncasecmp.c: New files.
6560
6561 * src/common.h (merge_sort): Remove decl; no longer exported.
6562
6563 * src/system.h (voidstar): Remove.
6564 (memcpy, memcmp): Cast args.
6565 ("xalloc.h"): Add include.
6566 (xmalloc, xrealloc): Remove decl.
6567
6568 * src/mangle.c (time): Do not declare if defined.
6569 (first_mangle, mangled_num): Remove.
6570
6571 * src/list.c (from_chars): Report out-of-range values more precisely.
6572 (off_from_chars): Do not allow negative offsets.
6573 (uid_from_chars): Allow negative uids.
6574
6575 * src/create.c (linklist): Now static.
6576 (to_chars): Fix wording of message to match from_chars.
6577
6578 * src/misc.c (merge_sort): Move to incremen.c.
6579 * src/incremen.c (merge_sort): Move here from misc.c; now static.
6580 It's too painful to make it both generic and portable.
6581 (read_directory_file): "timestamp" -> "time stamp" in messages.
6582
6583 * src/tar.c (long_options, usage, main): -y is now -I (for --bzip).
6584 (usage): Fix misspelling.
6585 (OPTION_STRING): -y is now -I.
6586 (decode_options): Use -1, not EOF, for getopt_long result.
6587 Fix typo when invoking xstrtoumax: look for LONGINT_OK, not LONG_MAX.
6588 Handle operands after any "--" argument.
6589 (main): Report any output errors.
6590
6591 * src/rmt.c (main): status is ssize_t, not long.
6592
6593 * src/names.c (name_gather): Handle trailing -C option correctly.
6594 (addname): use memcpy, not strncpy, to copy a string of known length.
6595 (name_match): Handle trailing -C option correctly.
6596 Propagate -C option to following files.
6597 (name_match, name_scan): Remove redundant matching code.
6598
6599 * src/buffer.c (open_archive): Use American spelling in diagnostic.
6600
6601 * lib/getdate.y: Major rewrite. Add copyright notice.
6602 (<stdio.h>): Include only if testing.
6603 (ISUPPER): Remove.
6604 (ISLOWER): New macro.
6605 (<string.h>): Include if HAVE_STRING_H, not USG.
6606 (bcopy): Remove.
6607 (yymaxdepth, ..., yycheck): Don't bother to redefine, since we assume
6608 bison.
6609 (EPOCH_YEAR): Renamed from EPOCH.
6610 (table): Renamed from TABLE.
6611 (meridian): Now an anonymous enum.
6612 (struct parser_control): New type.
6613 (YYLEX_PARAM, YYPARSE_PARAM, YYSTYPE): New macros.
6614 (yyInput, ..., yyRelYear): Migrated into struct parser_control.
6615 (%pure_parser): Added, so that the parser is pure.
6616 (%union): Removed; the type is now just plain int.
6617 All %type directives removed.
6618 (tLOCAL_ZONE): New %token.
6619 (month_day_table): Renamed from MonthDayTable.
6620 (gmtime, localtime, mktime, time): Declare only if not defined.
6621 (meridian_table): New table.
6622 (dst_table): New table.
6623 (units_table): renamed from UnitsTable.
6624 (relative_time_table): Renamed from OtherTable.
6625 (time_zone_table): Renamed from TimezoneTable. Modernized.
6626 (military_table): Renamed from MilitaryTable.
6627 (to_hour): Renamed from ToHour.
6628 (to_year): Renamed from ToYear.
6629 (lookup_zone): New function.
6630 (LookupWord): Renamed from lookup_word. Use lookup_zone for time
6631 zones.
6632 (yylex): Now reentrant. All callers changed.
6633 (get_date): Add support for local time zone abbreviations.
6634 Make it reentrant.
6635
6636 1999-08-20 Paul Eggert <eggert@twinsun.com>
6637
6638 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.10.
6639
6640 * src/create.c (to_chars): Generate GNU base-64 representation
6641 if we are generating an old or new GNU format tar file for a
6642 number that can't be represented with the POSIX format.
6643
6644 * configure.in (AC_CHECK_FUNCS): Add fchdir.
6645 (AM_FUNC_GETLINE): Add.
6646 (LIBOBJS): Add getline.o to workaround comment.
6647 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/getline.m4.
6648 * m4/Makefile.am (EXTRA_DIST): Add getline.m4.
6649 * lib/Makefile.am (noinst_HEADERS): Add getline.h, save-cwd.h.
6650 (libtar_a_SOURCES): Add save-cwd.c, xgetcwd.c.
6651 * lib/getline.c, lib/getline.h, lib/save-cwd.c,
6652 lib/save-cwd.h, m4/getline.m4: New files.
6653
6654 * src/misc.c (<save-cwd.h>): Include.
6655 (chdir_from_initial_wd): New function.
6656
6657 * src/names.c (name_next): Use chdir_from_initial_wd, not chdir.
6658 (name_gather): Handle `-C x -C y' correctly.
6659 Do not rely on addname to handle -C.
6660 (addname): New CHANGE_DIR parameter. All callers changed.
6661 Remove ugly calls to getcwd; no longer needed.
6662 (name_match, name_from_list): Use chdir_from_initial_wd, not chdir.
6663
6664 * src/incremen.c (listed_incremental_stream): New var.
6665 (read_directory_file): Remove arbitrary limits on file name length.
6666 Do not attempt to get the working directory; we can bypass this
6667 on fchdir hosts. Open the listed_incremental_option file for both
6668 read and write instead of opening it twice. Check for I/O errors
6669 when doing I/O to this file. Check for invalid data in the file,
6670 and report line numbers of invalid data.
6671 (write_dir_file): Likewise.
6672 (collect_and_sort_names): Use chdir_from_initial_wd, not chdir.
6673 Do not invoke write_dir_file; that's our caller's responsibility.
6674
6675 * src/list.c (max): New macro.
6676 (isotime): Now takes time_t, not time_t *. Report the decimal values
6677 of times that can't be broken down.
6678 (print_header): Don't assume that major and minor device numbers can
6679 fit into uintmax_t.
6680
6681 * src/common.h (struct name): change_dir is now char const *.
6682 (write_directory_file): Remove unused decl.
6683 (STRINGIFY_BIGINT): Assume b always points to UINTMAX_STRSIZE_BOUND
6684 chars; the old `sizeof (b)' broke when b was a pointer not an array.
6685 (chdir_from_initial_wd): New decl.
6686 (addname): New 2nd arg.
6687
6688 * THANKS: Torsten Lull -> Catrin Urbanneck
6689
6690 1999-08-18 Paul Eggert <eggert@twinsun.com>
6691
6692 * configure.in (HAVE_GETHOSTENT, HAVE_SETSOCKOPT):
6693 Don't depend on ac_cv_func variables.
6694 From Albert Chin-A-Young <china@thewrittenword.com>.
6695
6696 1999-08-18 Paul Eggert <eggert@twinsun.com>
6697
6698 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.9
6699
6700 * m4/signedchar.m4: New file.
6701 * configure.in (pe_AC_TYPE_SIGNED_CHAR): Add.
6702 * src/system.h (signed_char): New macro.
6703 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/signedchar.m4.
6704 * m4/Makefile.am (EXTRA_DIST): Add signedchar.m4.
6705
6706 * src/create.c (write_eot): Write at least two zero blocks.
6707
6708 * src/extract.c (extract_archive): Fix sparse array bug:
6709 we did not find end of array correctly.
6710
6711 * src/compare.c: (fill_in_sparse_array, diff_sparse_files):
6712 Don't assume find_next_block yields nonnull.
6713 * src/extract.c (extract_sparse_file, extract_archive): Likewise.
6714 * src/list.c (skip_extended_headers): Likewise.
6715
6716 * src/list.c (read_and, list_archive): Simplify code.
6717 (read_header): Fix computation of signed checksums on machines where
6718 char is unsigned.
6719 Do not consider a block to be zero unless all its bytes are zero,
6720 even the checksum bytes. Do not attempt to parse the checksum of
6721 a zero block. Fix memory leak with long names and links.
6722 (from_chars): Accommodate a buggy tar that outputs leading NUL
6723 if the previous field overflows.
6724
6725 * src/misc.c (quote_copy_string): Generate \177 for '\177', not
6726 \?, for portability to non-ASCII hosts.
6727
6728 1999-08-16 Paul Eggert <eggert@twinsun.com>
6729
6730 * configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.8.
6731
6732 * src/extract.c (make_directories): Do not chown intermediate
6733 directories, even if we are root.
6734
6735 * src/list.c (read_header): Fix bugs when interpreting
6736 POSIX-compliant headers that do not contain null bytes in the
6737 header or link names.
6738
6739 1999-08-14 Paul Eggert <eggert@twinsun.com>
6740
6741 * configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.7.
6742
6743 * configure.in (AC_CHECK_HEADERS): Remove sys/wait.h.
6744 (AC_HEADER_SYS_WAIT): Add.
6745 (AC_REPLACE_FUNCS): Add waitpid.
6746 (tar_cv_header_union_wait, HAVE_UNION_WAIT): Remove.
6747 * lib/waitpid.c: New file.
6748 * lib/Makefile.am (EXTRA_DIST): Add waitpid.c.
6749 * src/system.h (WCOREDUMP): Remove; no longer used.
6750 (WIFSTOPPED): Likewise.
6751 (WEXITSTATUS, WIFSIGNALED): Default to Solaris 7 versions.
6752 * src/buffer.c (child_open_for_compress): Undo previous change.
6753 (close_archive): Use waitpid, POSIX-style, instead of old BSD style.
6754 (new_volume): Likewise.
6755
6756 * src/buffer.c, src/extract.c, src/incremen.c (time):
6757 Don't declare if defined.
6758 * src/extract.c (extr_init): Remove unneeded cast around 0 arg to time.
6759 * src/incremen.c (read_directory_file):
6760 Invoke `time' the same way everyone else does.
6761 Check validity of --listed-incremental file contents a bit better.
6762 Do not worry about --after-date-option; tar.c now checks this.
6763 * src/list.c (isotime): Report ??? if localtime returns null.
6764 Don't assume years fit into four digits.
6765 Don't append trailing newline.
6766 (print_header): Report ??? if localtime returns null;
6767 Don't assume years fit into four digits.
6768
6769 * src/compare.c (diff_archive): Do not fall back on absolute name
6770 when --absolute-names is not specified.
6771
6772 * src/create.c (start_header):
6773 Include text of ignored filesystem prefix in warning.
6774 (create_archive): Check for excluded names when doing incremental
6775 pass through directory.
6776 (dump_file): Do not dump old files explicitly given on command line
6777 when using --listed-incremental. Do not strip ./ prefix from names.
6778
6779 * src/tar.c: -g now implies after_date_option = 1.
6780 -g and -N are now incompatible options.
6781
6782 * doc/tar.texi: Explain --exclude better. Don't strip leading `./'.
6783
6784 1999-08-11 Jeff Dairiki <dairiki@dairiki.org>
6785
6786 * src/list.c (read_header): Don't parse OLDGNU_FORMAT
6787 incremental headers as POSIX prefixes.
6788
6789 1999-08-11 Paul Eggert <eggert@twinsun.com>
6790
6791 * NEWS, configure.in: Version 1.13.6.
6792
6793 * configure.in (ALL_LINGUAS): Add pt_BR.
6794 * po/pt_BR.po: New file.
6795
6796 * doc/Makefile.am ($(srcdir)/tar.info, $(srcdir)/header.texi):
6797 Renamed from tar.info and header.texi; adjust actions so that
6798 they work in other directories.
6799
6800 * doc/tar.texi: Add -y and --bzip2.
6801 Patterns containing / now exclude only file names whose prefix match.
6802
6803 * lib/exclude.h (excluded_filename): New option parameter.
6804 (add_exclude_file): New ADD_FUNC parameter.
6805 (excluded_pathname): Remove decl.
6806 * lib/exclude.c (_GNU_SOURCE):
6807 Remove; no longer needed since we don't use FNM_ macros.
6808 (excluded_filename): Renamed from excluded_filename_opts.
6809 (excluded_filename, excluded_pathname): Remove.
6810 (add_exclude_file): New ADD_FUNC parameter.
6811
6812 * po/POTFILES.in: Add lib/quotearg.c.
6813
6814 * src/buffer.c (_GNU_SOURCE): Define.
6815 (<fnmatch.h>): Include unconditionally.
6816 (child_open_for_compress): Dup after closing, to avoid possible file
6817 descriptor exhaustion.
6818 (flush_write): Use FILESYSTEM_PREFIX_LEN instead of MSDOS ifdef.
6819 (flush_read): Likewise.
6820
6821 * src/common.h (LG_8, LG_64): New macros.
6822 (excluded_with_slash, excluded_without_slash): New vars.
6823 (excluded): Remove.
6824 (base_64_digits): New decl.
6825 (gid_to_chars, major_to_chars, minor_to_chars, mode_to_chars,
6826 off_to_chars, size_to_chars, time_to_chars, uid_to_chars,
6827 uintmax_to_chars,
6828 GID_TO_CHARS, MAJOR_TO_CHARS, MINOR_TO_CHARS, MODE_TO_CHARS,
6829 OFF_TO_CHARS, SIZE_TO_CHARS, TIME_TO_CHARS, UID_TO_CHARS,
6830 UINTMAX_TO_CHARS):
6831 Renamed from gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct,
6832 off_to_oct, size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct,
6833 GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT, MODE_TO_OCT, OFF_TO_OCT,
6834 SIZE_TO_OCT, TIME_TO_OCT, UID_TO_OCT, UINTMAX_TO_OCT,
6835 respectively. All definitions and uses changed.
6836 (excluded_name): New decl.
6837
6838 * src/compare.c (diff_archive):
6839 Open files with O_NONBLOCK instead of O_NDELAY.
6840
6841 * src/create.c (base_64_digits): New constant.
6842 (base_8_digits): New macro.
6843 (MAX_VAL_WITH_DIGITS): New macro.
6844 (to_base): First half of old to_oct. Support base 64 too.
6845 (to_chars): Other half of old to_oct, for 64-bit support.
6846 (GID_NOBODY, UID_NOBODY): Don't define if the headers don't.
6847 (gid_substitute, uid_substitute): Look up names dynamically if
6848 GID_NOBODY and UID_NOBODY aren't defined; use -2 if all else fails.
6849 (mode_to_chars): Renamed from mode_to_oct.
6850 Support negative values in all the _to_chars functions.
6851 (start_header): Use FILESYSTEM_PREFIX_LEN instead of MSDOS ifdef.
6852 Abort if archive format is DEFAULT_FORMAT when it shouldn't be.
6853 (dump_file): Inspect entire pathname, not just new file name
6854 component, when deciding whether to exclude it.
6855
6856 * src/extract.c (extract_archive):
6857 Open files with O_NONBLOCK instead of O_NDELAY.
6858
6859 * src/incremen.c (get_directory_contents):
6860 Inspect entire pathname, not just new file name
6861 component, when deciding whether to exclude it.
6862
6863 * src/list.c (<fnmatch.h>): Do not include.
6864 (from_chars): Renamed from from_oct. New parameter specifying
6865 the negative of the minimum allowed value. Support negative
6866 and base-64 values.
6867 (base64_map): New var.
6868 (base64_init): New function.
6869 (print_header): Output numeric uids and gids if numeric_owner_option.
6870
6871 * src/misc.c (quote_copy_string): Use LG_8 instead of constants.
6872
6873 * src/names.c (_GNU_SOURCE): Define.
6874 (<fnmatch.h>): Include unconditionally.
6875 (excluded_name): New function, taking over duties of excluded_pathname.
6876 All uses changed.
6877
6878 * src/rmt.c (decode_oflag): New function.
6879 (main): Use it to support symbolic open flags.
6880
6881 * src/rtapelib.c (encode_oflag): New function.
6882 (rmt_open__): Do not allow newlines in the path.
6883 Propagate errno correctly.
6884 Decode symbolic open flags, if present.
6885
6886 * src/system.h (FILESYSTEM_PREFIX_LEN, ISSLASH, O_ACCMODE, O_NONBLOCK):
6887 New macros.
6888
6889 * src/tar.c: (long_options, usage, OPTION_STRING, decode_options):
6890 New -y or --bzip2 option.
6891 (add_filtered_exclude): New function.
6892 (decode_options): Put excluded patterns with / into
6893 excluded_with_slash, and without / into excluded_without_slash.
6894 Compare newer_mtime_option to its new initial value
6895 TYPE_MINIMUM (time_t) when deciding whether more than one
6896 threshold date was specified.
6897
6898 1999-07-20 Paul Eggert <eggert@twinsun.com>
6899
6900 * NEWS, configure.in: Version 1.13.5.
6901
6902 * src/common.h (FATAL_ERROR): Invoke apply_delayed_set_stat
6903 before exiting.
6904 * src/buffer.c (new_volume): Likewise.
6905 * src/incremen.c (read_directory_file): Likewise.
6906 * src/tar.c (decode_options):
6907 ERROR ((TAREXIT_FAILURE, ... -> FATAL_ERROR ((0,
6908 for consistency.
6909
6910 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13.4.
6911 * configure.in (AC_CHECK_FUNCS): Add lstat, readlink, symlink.
6912
6913 * src/system.h (lstat): Define only if !HAVE_LSTAT && !defined lstat.
6914 (S_ISMPB, S_ISMPC, S_ISNWK): Remove unused macros.
6915 (S_ISBLK, S_ISCHR, S_ISCTG, S_ISFIFO, S_ISLNK, S_ISSOCK):
6916 Define to 0 if the corresponding S_IF* macro is not defined.
6917 (mkfifo): Do not define if already defined, or if S_IFIFO
6918 is not defined.
6919
6920 * src/compare.c (diff_archive): Use HAVE_READLINK, not
6921 S_ISLNK, to determine whether to invoke readlink.
6922 * src/create.c (dump_file): Likewise.
6923
6924 * src/extract.c (set_mode):
6925 Do not chmod unless we are root or the -p option was given;
6926 this matches historical practice.
6927 (unlink_destination): New function, which checks for unlink failures.
6928 (maybe_recoverable): Stay quiet if -U.
6929 (extract_archive): Use O_EXCL if unlink_first_option.
6930 Report unlink failures.
6931 Use HAVE_SYMLINK, not S_ISLNK, to determine whether symlink exists.
6932 Use HAVE_MKFIFO || defined mkfifo, not S_ISFIFO, to determine whether
6933 mkfifo exists.
6934
6935 * src/incremen.c (get_directory_contents): Depend on
6936 S_ISHIDDEN, not AIX, to determine whether to invoke S_ISHIDDEN.
6937
6938 * src/list.c: Remove S_IS* ifdefs.
6939 * src/misc.c (maybe_backup_file): Likewise.
6940
6941 * src/misc.c (maybe_backup_file):
6942 "Virtual memory exhausted" -> "Memory exhausted",
6943 to conform to the other places this message is issued.
6944
6945 * src/mangle.c (extract_mangle):
6946 Replace #ifdef S_ISLNK with #ifdef HAVE_SYMLINK.
6947
6948 * src/rtapelib.c (rmt_open__):
6949 Remove typo that caused us to omit the first char
6950 of the basename.
6951
6952 1999-07-16 Paul Eggert <eggert@twinsun.com>
6953
6954 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.13.3.
6955
6956 * doc/tar.texi: A path name is excluded if any of its file name
6957 components matches an excluded pattern, even if the path name was
6958 specified on the command line.
6959 * src/create.c (create_archive): Likewise.
6960 * src/list.c (read_and): Likewise.
6961 * src/update.c (update_archive): Likewise.
6962 * lib/exclude.h (excluded_pathname): New decl.
6963 * lib/exclude.c (_GNU_SOURCE): Define.
6964 (FILESYSTEM_PREFIX_LEN, ISSLASH): New macros.
6965 (excluded_filename_opts): New function.
6966 (excluded_pathname): New function.
6967
6968 * lib/Makefile.am (EXTRA_DIST):
6969 xstrtol.c moved here from libtar_a_SOURCES.
6970 (libtar_a_SOURCES): Move xstrtol.c to EXTRA_DIST.
6971 Remove xstrtoul.c; no longer needed.
6972 * lib/xstrtol.c: Remove.
6973
6974 * src/tar.c (decode_options):
6975 Set newer_time_option to TYPE_MINIMUM, so that
6976 negative timestamps are handled correctly.
6977 Replace invocations of xstrtol and xstrtoul with xstrtoumax, for
6978 uniformity (and so that we don't need to have the other fns).
6979 (main): Remove call to init_total_written; no longer needed.
6980
6981 * configure.in (AC_CHECK_SIZEOF): Remove no-longer-needed
6982 checks for unsigned long and long long.
6983 * src/arith.c: Remove.
6984 * src/Makefile.am (tar_SOURCES): Remove arith.c.
6985 * po/POTFILES.in: Remove src/arith.c.
6986 * src/arith.h: Use double, to simplify configuration gotchas.
6987 (tarlong): Now double.
6988 (TARLONG_FORMAT): New macro.
6989 (BITS_PER_BYTE, BITS_PER_TARLONG, SUPERDIGIT, BITS_PER_SUPERDIGIT,
6990 LONGS_PER_TARLONG, SIZEOF_TARLONG, struct tarlong,
6991 zerop_tarlong_helper, lessp_tarlong_helper, clear_tarlong_helper,
6992 add_to_tarlong_helper, mult_tarlong_helper, print_tarlong_helper,
6993 zerop_tarlong, lessp_tarlong, clear_tarlong, add_to_tarlong,
6994 mult_tarlong, print_tarlong): Remove. All callers replaced with
6995 arithmetic ops.
6996
6997 * src/common.h (init_total_written): Remove decl.
6998
6999 * src/buffer.c (total_written):
7000 Remove; replaced with prev_written + bytes_written.
7001 (prev_written): New var.
7002 (init_total_written): Remove.
7003 (print_total_written): Use TARLONG_FORMAT instead of print_tarlong.
7004
7005 * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG):
7006 Make sure that we can shift, multiply
7007 and divide unsigned long long values; Ultrix cc can't do it.
7008
7009 * lib/modechange.c (mode_compile): Use uintmax_t, not unsigned long.
7010 Check for any unknown bits, not just unknown bits left of the leftmost
7011 known bit.
7012
7013 * lib/quotearg.c (quotearg_buffer):
7014 Don't quote spaces if C quoting style.
7015 * src/list.c (from_oct):
7016 Use C quoting style for error; omit trailing NULs.
7017
7018 1999-07-14 Paul Eggert <eggert@twinsun.com>
7019
7020 * configure.in (AM_INIT_AUTOMAKE), NEWS: Version 1.13.2.
7021
7022 * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
7023 <inttypes.h> defines strtoumax as a macro (and not as a function).
7024 HP-UX 10.20 does this.
7025
7026 * src/tar.c (usage): tar-bugs@gnu.org -> bug-tar@gnu.org
7027 * PORTS, README, TODO, doc/tar.texi: Likewise.
7028
7029 1999-07-12 Paul Eggert <eggert@twinsun.com>
7030
7031 * configure.in (AM_INIT_AUTOMAKE): Version 1.13.1.
7032 (LIBOBJS): Add mktime.o to automake 1.4 bug workaround.
7033
7034 * src/list.c (decode_header):
7035 Do not assume that S_IFBLK and S_IFCHR are defined.
7036
7037 * src/create.c (start_header): Do not assume S_IFMT is defined.
7038 (dump_file): Remove unnecessary check for screwy apollo lossage.
7039 Do not assume S_IFBLK and S_IFCHR are defined.
7040
7041 * src/extract.c (extract_archive):
7042 Test whether S_IFCHR and S_IFBLK are nonzero,
7043 not whether they are defined, for consistency with other tests.
7044
7045 * src/buffer.c (is_regular_file):
7046 Don't succeed on files that we can't access due to
7047 permissions problems.
7048 (open_archive): Fix wording on fatal error message.
7049 Don't bother to stat /dev/null if the archive is not a character
7050 special device.
7051
7052 * src/compare.c (process_rawdata, diff_sparse_files, diff_archive):
7053 Report an error, not a warning, for I/O errors.
7054 (process_rawdata, process_dumpdir, diff_sparse_files):
7055 Change ungrammatical "Data differs" to "Contents differ".
7056 (get_stat_data): Find hidden files on AIX.
7057 Accept file name as argument; all uses changed.
7058 (get_stat_data, diff_archive): Use system error message for
7059 nonexistent files rather than rolling our own.
7060 (diff_archive): Unknown file types are errors, not warnings.
7061 Normalize spelling of message to "File type differs".
7062 Use get_stat_data to get link status, for consistency.
7063 Do not inspect st_rdev for fifos.
7064 Do not assume st_mode values contain only file types and mode bits.
7065 Check for mode changes and device number changes separately.
7066
7067 * src/update.c (append_file):
7068 Open the file before statting it, to avoid a race.
7069 Complain about file shrinkage only when we reach EOF.
7070
7071 1999-07-08 Paul Eggert <eggert@twinsun.com>
7072
7073 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.13 released.
7074
7075 * configure.in (AC_EXEEXT): Add.
7076
7077 * lib/Makefile.am (noinst_HEADERS):
7078 Add basename.h, exclude.h. Remove full-write.h.
7079 (libtar_a_SOURCES): Add exclude.c.
7080
7081 * lib/basename.h, lib/exclude.c, lib/exclude.h, lib/safe-read.h:
7082 New files.
7083 * lib/full-write.c: Include safe-read.h instead of full-write.h.
7084 * lib/safe-read.h (safe_read): New decl.
7085 * src/rmt.c: Include safe-read.h.
7086 * src/rtapelib.c: Include basename.h, save-read.h.
7087 (rmt_open__): Use base_name to compute base name.
7088
7089 * src/common.h:
7090 Include basename.h, exclude.h; don't include full-write.h.
7091 (exclude_option): Remove decl.
7092 (excluded): New decl.
7093 (add_exclude, add_exclude_file, check_exclude): Remove decls.
7094
7095 * src/list.c (read_and):
7096 Use excluded_filename instead of check_exclude.
7097 Check base name of incoming file name, not entire file name, when
7098 deciding whether to exclude it.
7099
7100 * src/create.c (finish_sparse_file):
7101 Use excluded_filename instead of check_exclude.
7102 Don't bother to stat excluded file names.
7103 * src/incremen.c (get_directory_contents): Likewise.
7104
7105 * src/names.c (exclude_pool, exclude_pool_size,
7106 allocated_exclude_pool_size, simple_exclude_array,
7107 simple_excludes, allocated_simple_excludes,
7108 pattern_exclude_array, pattern_excludes,
7109 allocated_pattern_excludes, add_exclude, add_exclude_file,
7110 check_exclude):
7111 Remove; now done in ../lib/exclude.c.
7112
7113 * src/tar.c (decode_options): Initialize `excluded'.
7114 Use new add_exclude_file and add_exclude functions.
7115
7116 1999-07-05 Paul Eggert <eggert@twinsun.com>
7117
7118 * m4/gettext.m4: Use changequote rather than [[ ]].
7119
7120 * lib/safe-read.c: Renamed from lib/full-read.c.
7121 (safe_read): Renamed from full_read. All uses changed.
7122 * lib/safe-read.h, lib/full-write.h: New files.
7123 * lib/Makefile.am (noinst_HEADERS): Add full-write.h, safe-read.h.
7124 (libtar_a_SOURCES): Rename full-read.c to safe-read.c.
7125 * lib/full-write.c: Include full-write.h.
7126 * src/common.h: Include full-write.h, safe-read.h.
7127 * src/system.h: (full_read, full_write): Remove decls.
7128
7129 * src/Makefile.am (datadir): New var; needed for Solaris gettext.
7130
7131 * src/system.h (bindtextdomain, textdomain): undef before
7132 defining, to avoid preprocessor warnings with --disable-nls
7133 on hosts whose locale.h includes libintl.h.
7134
7135 * lib/xstrtol.c (__strtol): Remove decl; it doesn't work if __strtol
7136 expands to a macro, which occurs in HP-UX 10.20 with strtoumax.
7137 (strtol, strtoul): New decls (for pre-ANSI hosts), to replace
7138 the above decl.
7139
7140 1999-07-02 Paul Eggert <eggert@twinsun.com>
7141
7142 * Makefile.am (ACINCLUDE_INPUTS): Add $(M4DIR)/mktime.m4.
7143 * m4/mktime.m4: New file.
7144 * m4/Makefile.am.in, m4/README: Remove these files.
7145 * m4/Makefile.am (EXTRA_DIST): Add mktime.m4;
7146 remove README, Makefile.am.in.
7147 (Makefile.am): Remove rule; it didn't work in BSD/OS 4.0.
7148 * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Invoke AC_FUNC_MKTIME,
7149 not AM_FUNC_MKTIME.
7150
7151 * src/tar.c: Include signal.h.
7152 (SIGCHLD): Define to SIGCLD if SIGCLD is defined but SIGCHLD is not.
7153 (main): Ensure SIGCHLD is not ignored.
7154
7155 (BACKUP_OPTION, DELETE_OPTION, EXCLUDE_OPTION, GROUP_OPTION,
7156 MODE_OPTION, NEWER_MTIME_OPTION, NO_RECURSE_OPTION, NULL_OPTION,
7157 OWNER_OPTION, POSIX_OPTION, PRESERVE_OPTION, RECORD_SIZE_OPTION,
7158 RSH_COMMAND_OPTION, SUFFIX_OPTION, USE_COMPRESS_PROGRAM_OPTION,
7159 VOLNO_FILE_OPTION, OBSOLETE_ABSOLUTE_NAMES,
7160 OBSOLETE_BLOCK_COMPRESS, OBSOLETE_BLOCKING_FACTOR,
7161 OBSOLETE_BLOCK_NUMBER, OBSOLETE_READ_FULL_RECORDS, OBSOLETE_TOUCH,
7162 OBSOLETE_VERSION_CONTROL): Make sure they can't be valid chars, so
7163 they don't overlap with char codes. Use an enum instead of a lot
7164 of #defines.
7165
7166 * src/system.h (ISASCII): Remove.
7167 (CTYPE_DOMAIN, ISDIGIT, ISODIGIT, ISPRINT, ISSPACE, S_ISUID,
7168 S_ISGID, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP, S_IWGRP, S_IXGRP,
7169 S_IROTH, S_IWOTH, S_IXOTH, MODE_WXUSR, MODE_R, MODE_RW,
7170 MODE_RWX, MODE_ALL, SEEK_SET, SEEK_CUR, SEEK_END, CHAR_MAX,
7171 LONG_MAX): New macros.
7172
7173 * src/incremen.c (ISDIGIT, ISSPACE): Remove; now in system.h.
7174 (read_directory_file): Cast ISSPACE arg to unsigned char.
7175 * src/misc.c (ISPRINT): Remove; now in system.h.
7176 (remove_any_file): Add brackets to pacify gcc -Wall.
7177 * src/list.c: Don't include <ctype.h>; system.h already does this.
7178 (ISODIGIT, ISSPACE): Remove; now in system.h.
7179 (decode_header): No need to AND mode with 07777; MODE_FROM_OCT
7180 does this now.
7181 (from_oct): Cast ISSPACE arg to unsigned char.
7182
7183 * src/create.c (mode_to_oct): Translate modes from internal to
7184 external form.
7185 * src/list.c (mode_from_oct): Translate modes from external to
7186 internal form. Do not complain about unrecognized mode bits.
7187 * src/common.h (TSUID, TSGID, TSVTX, TUREAD, TUWRITE, TUEXEC,
7188 TGREAD, TGWRITE, TGEXEC, TOREAD, TOWRITE, TOEXEC): Remove undefs.
7189
7190 * src/extract.c: (extr_init, make_directories, extract_archive):
7191 Do not assume mode bits have traditional Unix values.
7192 * src/list.c (decode_mode): Likewise.
7193 * src/create.c (start_header, dump_file): Likewise.
7194 * src/buffer.c (child_open_for_compress,
7195 child_open_for_uncompress, open_archive, (close_archive): Likewise.
7196 * src/compare.c (diff_archive): Likewise.
7197
7198 * src/extract.c (set_mode): Use %04 not %0.4 format.
7199 (extract_sparse_file): Do not use data_block uninitialized.
7200 Check for lseek failures.
7201
7202 * src/rtapelib.c (rmt_lseek__):
7203 Convert lseek whence values to portable integers on the wire.
7204 * src/rmt.c (main): Likewise. Check for whence values out of range.
7205
7206 * src/create.c (finish_sparse_file): Use lseek whence macros
7207 instead of integers.
7208 * src/buffer.c (backspace_output): Likewise.
7209 * src/compare.c (diff_archive, verify_volume): Likewise.
7210 * src/delete.c (move_archive): Likewise.
7211 * src/extract.c (extract_sparse_file): Likewise.
7212
7213 * src/create.c (dump_file): Do not invoke finish_sparse_file
7214 on a negative file descriptor.
7215
7216 * src/buffer.c: Add braces to pacify gcc -Wall.
7217
7218 * src/compare.c (diff_sparse_files): Report lseek errors.
7219
7220 * configure.in (ALL_LINGUAS): Add cs, es, ru.
7221
7222 * PORTS, TODO: gnu.ai.mit.edu -> gnu.org
7223
7224 * src/arith.c, src/buffer.c (new_volume): Don't put ^G in
7225 message to be internationalized; \a doesn't work with msgfmt.
7226
7227 * src/tar.c (long_options, main, usage, OPTION_STRING):
7228 Remove -E or --ending-file.
7229 * src/list.c (read_and): Likewise.
7230 * src/common.h (ending_file_option): Likewise.
7231 * src/buffer.c (close_archive): Likewise.
7232
7233 * tests/after: Don't run two commands together in a pipeline,
7234 as some old shells mishandle pipeline exit status.
7235
7236 1999-06-28 Paul Eggert <eggert@twinsun.com>
7237
7238 * configure.in (AM_INIT_AUTOMAKE): version 1.12.64015.
7239 * NEWS: Describe changes since 1.12.
7240 * README: Update bug reporting address; move paxutils ref to NEWS.
7241
7242 Handle EINTR correctly.
7243 * lib/Makefile.am (libtar_a_SOURCES): Add full-read.c, full-write.c.
7244 * lib/full-read.c, lib/full-write.c: New files.
7245 * src/buffer.c (child_open_for_compress, child_open_for_uncompress):
7246 Prefer full_read to read and full_write to write.
7247 * src/compare.c (process_rawdata, diff_sparse_files): Likewise.
7248 * src/create.c (deal_with_sparse, finish_sparse_file, dump_file):
7249 Likewise.
7250 * src/extract.c (extract_sparse_file): Likewise.
7251 * src/rmt.c (get_string, main, report_error_message,
7252 report_numbered_error): Likewise.
7253 * src/rmt.h (rmtread, rmtwrite): Likewise.
7254 * src/rtapelib.c (do_command, get_status_string, rmt_read__,
7255 rmt_write__, rmt_ioctl__): Likewise.
7256 * src/update.c (append_file): Likewise.
7257 * src/system.h (full_read, full_write): New decls.
7258
7259 * po/POTFILES.in: Add lib/argmatch.c, lib/error.c lib/getopt.c,
7260 lib/xmalloc.c, src/arith.c, src/misc.c.
7261
7262 * src/system.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
7263 New macros. All uses of STDIN and STDOUT changed.
7264 * src/rmt.c (prepare_record_buffer, main): Use STDIN_FILENO
7265 instead of 0 and STDOUT_FILENO instead of 1.
7266 * src/rtapelib.c (_rmt_rexec): Use STDIN_FILENO and STDOUT_FILENO
7267 instead of fileno (stdin) and fileno (stdout) or 0 and 1.
7268
7269 * src/rmt.c (private_strerror): Avoid const. Translate results.
7270
7271 * tests/Makefile.am (TESTS): Remove incremen.sh; it doesn't work
7272 in the presence of NFS clock skew.
7273
7274 1999-06-25 Paul Eggert <eggert@twinsun.com>
7275
7276 * configure.in (AM_INIT_AUTOMAKE): version 1.12.64014.
7277
7278 * src/buffer.c (write_archive_buffer): New function.
7279 (child_open_for_compress, flush_write, flush_read): Use it to write
7280 buffers.
7281 (open_archive): Report error if fstat of archive fails.
7282 Improve efficiency of check for /dev/null.
7283 Also, fix some corner cases with remote archives and /dev/null checking.
7284 (close_archive): Test for input fifo only if not remote.
7285 Truncate output archive only if it's not remote.
7286
7287 * src/misc.c (remove_any_file):
7288 Don't terminate if you see . or ..; just skip them.
7289
7290 1999-06-18 Paul Eggert <eggert@twinsun.com>
7291
7292 * configure.in (AM_INIT_AUTOMAKE): version 1.12.64013.
7293
7294 Output sizes using a format that's more compatible with
7295 traditional tar (and with GNU Emacs).
7296 * src/common.h (GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT,
7297 MODE_TO_OCT, SIZE_TO_OCT, UID_TO_OCT, UINTMAX_TO_OCT):
7298 Don't subtract 1 from size.
7299 * src/create.c (to_oct): Prepend leading zeros, not spaces.
7300 Output a trailing NUL unless the value won't fit without it.
7301 (finish_header): No need to append NUL to chksum, now that
7302 to_oct is doing it.
7303
7304 1999-06-16 Paul Eggert <eggert@twinsun.com>
7305
7306 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64012.
7307
7308 * src/Makefile.am (LDADD): Link libtar.a after @INTLLIBS@, since
7309 @INTLLIBS@ might invoke rpl_realloc.
7310
7311 * src/tar.c (backup_type): Remove decl; backupfile.h now has it.
7312 (intconv): Remove; use xstrto* fns instead.
7313 ("xstrtol.h"): Include.
7314 (check_decimal): Remove.
7315 (long_options, usage, OPTION_STRING, decode_options):
7316 Remove -y, --bzip2, --unbzip2.
7317 (decode_options): Use xget_version instead of get_version.
7318 Check for overflow with -b and -L and RECORD_SIZE_OPTION.
7319 Replace invocations of check_decimal with xstrtoumax.
7320
7321 * tests/preset.in (echo_n, echo_c): Remove.
7322
7323 * tests/after: Don't rely on $echo_c and $echo_n.
7324
7325 * lib/addext.c, lib/dirname.c, lib/lchown.c, lib/lchown.h,
7326 lib/malloc.c, lib/mktime.c, lib/realloc.c, lib/strtol.c, lib/strtoul.c,
7327 lib/strtoull.c, lib/strtoumax.c, lib/utime.c, lib/xstrtol.c,
7328 lib/xstrtol.h, lib/xstrtoul.c, lib/xstrtoumax.c,
7329 m4/Makefile.am.in, m4/README, m4/ccstdc.m4, m4/d-ino.m4,
7330 m4/gettext.m4, m4/inttypes_h.m4, m4/isc-posix.m4,
7331 m4/jm-mktime.m4, m4/largefile.m4, m4/lcmessage.m4,
7332 m4/malloc.m4, m4/progtest.m4, m4/realloc.m4, m4/uintmax_t.m4,
7333 m4/ulonglong.m4, m4/utimbuf.m4, m4/utime.m4, m4/utimes.m4,
7334 m4/xstrtoumax.m4: New files.
7335
7336 * configure.in(fp_PROG_ECHO): Remove; no longer needed.
7337 (AC_SYS_LARGEFILE): Renamed from AC_LFS.
7338 (jm_AC_HEADER_INTTYPES_H): Replaces inline code.
7339 (jm_STRUCT_DIRENT_D_INO, jm_AC_TYPE_UINTMAX_T, jm_AC_PREREQ_XSTRTOUMAX): Add.
7340 (AC_CHECK_FUNCS): Remove lchown.
7341 (AC_REPLACE_FUNCS): Remove basename, dirname.
7342 Add lchown, strtol, strtoul.
7343 (jm_FUNC_MKTIME): Add.
7344 (LIBOBJS): Replace .o with $U.o, so that the .o files in LIBOBJS
7345 are also built via the ANSI2KNR-filtering rules.
7346 Use a no-op line to work around bug in automake 1.4 with malloc and
7347 realloc.
7348 (AC_OUTPUT): Add m4/Makefile.
7349
7350 * lib/Makefile.am (EXTRA_DIST):
7351 Add lchown.c, malloc.c, mktime.c, realloc.c,
7352 strtol.c, strtoul.c, strtoull.c, strtoumax.c, utime.c.
7353 (noinst_HEADERS): Add lchown.h, modechange.h, xstrtol.h.
7354 (libtar_a_SOURCES): Add addext.c, basename.c, xstrtol.c,
7355 xstrtoul.c, xstrtoumax.c. Remove getversion.c.
7356 ($(srcdir)/getdate.c:): Remove `expect conflicts' line.
7357
7358 * src/system.h (uintmax_t): Don't declare; configure now does this.
7359
7360 * src/common.h (backup_type): New decl.
7361 * src/common.h, src/misc.c, src/tar.c:
7362 Move include of backupfile.h to common.h.
7363
7364 * src/misc.c (maybe_backup_file):
7365 Pass backup_type to find_backup_file_name.
7366
7367 * src/list.c (print_header): Change sizes of uform and gform from 11 to
7368 UINTMAX_STRSIZE_BOUND.
7369
7370 * doc/tar.texi: Remove --bzip2.
7371 Fix @xref typos reported by latest makeinfo.
7372
7373 * Makefile.am (ACLOCAL_AMFLAGS): New macro.
7374 (SUBDIRS): Add m4.
7375 (M4DIR, ACINCLUDE_INPUTS): New macros.
7376 ($(srcdir)/acinclude.m4): New rule.
7377
7378 * acconfig.h (ENABLE_NLS, HAVE_CATGETS, HAVE_GETTEXT,
7379 HAVE_INTTYPES_H, HAVE_LC_MESSAGES, HAVE_STPCPY): Remve #undefs;
7380 now generated automatically by autoconf.
7381
7382 1999-05-15 Paul Eggert <eggert@twinsun.com>
7383
7384 * doc/tar.texi: Remove -y.
7385
7386 1999-04-09 Paul Eggert <eggert@twinsun.com>
7387
7388 * src/system.h (INT_STRLEN_BOUND): Fix off-by-factor-of-10 typo
7389 (we were allocating too much storage).
7390 (uintmax_t): Don't declare; configure now does this.
7391
7392 * ABOUT-NLS: Update to gettext 0.10.35 edition.
7393
7394 1999-03-22 Paul Eggert <eggert@twinsun.com>
7395
7396 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64010
7397
7398 * acinclude.m4 (AC_LFS_FLAGS):
7399 Don't use -mabi=n32 with GCC on IRIX 6.2; it's the default.
7400 (AC_LFS): -n32, -o32, and -n64 are CPPFLAGS, not CFLAGS.
7401 (jm_FUNC_MALLOC, jm_FUNC_REALLOC): New macros.
7402
7403 * configure.in (jm_FUNC_MALLOC, jm_FUNC_REALLOC):
7404 New macros; needed for latest GNU xmalloc.c.
7405
7406 * Makefile.am (noinst_HEADERS): Add quotearg.h, xalloc.h.
7407 (libtar_a_SOURCES): Add quotearg.c.
7408 * list.c: Include <quotearg.h>.
7409 (from_oct): Add forward decl.
7410 (read_header): Return HEADER_FAILURE if we can't parse the checksum.
7411 (from_oct): Report an error only if TYPE is nonzero.
7412 Quote any funny characters in bad header.
7413
7414 1999-03-20 Paul Eggert <eggert@twinsun.com>
7415
7416 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64009
7417
7418 * acinclude.m4 (AC_LFS_FLAGS): Add support for IRIX 6.2 and later.
7419 (AC_LFS_SPACE_APPEND): Assume $2 is quoted properly; all callers
7420 changed.
7421 (AC_LFS): Simplify AIX revision number test.
7422
7423 1999-03-17 Paul Eggert <eggert@twinsun.com>
7424
7425 * NEWS, configure.in (AM_INIT_AUTOMAKE): version 1.12.64008
7426
7427 * configure.in (AC_VALIDATE_CACHED_SYSTEM_TUPLE):
7428 Remove; it doesn't work that well
7429 with AC_CANONICAL_HOST.
7430 (fp_WITH_INCLUDED_MALLOC): Remove; we'll just use the system malloc.
7431
7432 * Makefile.am (EXTRA_DIST): Remove AC-PATCHES, AM-PATCHES, BI-PATCHES.
7433
7434 * Makefile.am (EXTRA_DIST): Remove gmalloc.c.
7435
7436 * acinclude.m4 (fp_WITH_INCLUDED_MALLOC): Remove.
7437
7438 * tar.texi: Fix bug-report addr.
7439
7440 * README: Remove --with-included-malloc.
7441 Upgrade version numbers of build software.
7442
7443 1999-03-07 Paul Eggert <eggert@twinsun.com>
7444
7445 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64007.
7446
7447 * acinclude.m4 (AM_WITH_NLS): Port to Solaris 2.5.1,
7448 where bindtextdomain and gettext require -lintl.
7449 (AC_LFS_FLAGS): Simplify so that it only gets the flags;
7450 `no' means it failed.
7451 (AC_LFS_SPACE_APPEND, AC_LFS_MACRO_VALUE): New macros.
7452 (AC_LFS): Use them. Set _FILE_OFFSET_BITS, _LARGEFILE_SOURCE, and
7453 _LARGE_FILES from LFS_CFLAGS, so that in the normal case we don't need
7454 to add anything to the command line (it's all in config.h).
7455 Put any extra -D and -I options into CPPFLAGS, the rest into CFLAGS.
7456
7457 1999-03-01 Paul Eggert <eggert@twinsun.com>
7458
7459 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64006.
7460
7461 * acinclude.m4 (AC_LFS_FLAGS): Port to AIX 4.2.
7462
7463 * src/list.c: (gid_from_oct, major_from_oct, minor_from_oct,
7464 mode_from_oct, off_from_oct, size_from_oct, time_from_oct,
7465 uid_from_oct, uintmax_from_oct): Use TYPE_MAXIMUM instead of macros
7466 like OFF_MAX, which are not reliable
7467 (e.g. OFF_MAX in AIX 4.2 is incorrect).
7468 * src/system.h (GID_MAX, MAJOR_MAX, MINOR_MAX, MODE_MAX, OFF_MAX,
7469 SIZE_MAX, TIME_MAX,UID_MAX, UINTMAX_MAX): Remove; no longer used.
7470
7471 * src/incremen.c (get_directory_contents):
7472 Don't use statx if _LARGE_FILES; it doesn't work under AIX 4.2.
7473 Have statx depend on STX_HIDDEN, not AIX.
7474
7475 * src/create.c (to_oct):
7476 New parameter substitute, giving a substitute value to use
7477 when the original value is out of range. Do not append a space to the
7478 output; modern tars don't. When a value is out of range, specify the
7479 maximum value, not the number of bits.
7480 (GID_NOBODY, UID_NOBODY): New macros.
7481 (gid_to_oct, uid_to_oct): Use them as substitutes.
7482 (finish_header): Do not assume that UINTMAX_TO_OCT appends a space.
7483 (dump_file): Check whether the file changed as we read it.
7484
7485 * src/rmt.c (main): Remove suspicious AIX/386 code.
7486
7487 1999-02-19 Paul Eggert <eggert@twinsun.com>
7488
7489 * intl/localealias.c (read_alias_file): Don't assume that memcpy
7490 returns a type compatible with char *; it doesn't on SunOS
7491 4.1.4 with Sun cc, since <string.h> doesn't declare memcpy.
7492
7493 * NEWS, configure.in (AM_INIT_AUTOMAKE): Version 1.12.64005.
7494
7495 * src/tar.c (long_options, usage): Prefer --unbzip2 to --bunzip2.
7496 * doc/tar.texi: Add --bzip2, --unbzip2 options.
7497
7498 * configure.in (AC_CANONICAL_HOST, AC_VALIDATE_CACHED_SYSTEM_TUPLE):
7499 Add.
7500 (AC_LINK_FILES): Omit; AM_GNU_GETTEXT now does this.
7501 (AC_OUTPUT): Omit munging of po/Makefile; AM_GNU_GETTEXT now does this.
7502 * acinclude.m4 (AM_WITH_NLS):
7503 Update to latest gettext version (serial 5).
7504 (AC_LFS_FLAGS): New macro
7505 (AC_LFS): Use it. Append to CFLAGS, LDFLAGS, LDLIBS instead of
7506 working only with unset variables. Append to CFLAGS, not CPPFLAGS.
7507 Work properly in cross-compilation scenario, by checking for getconf
7508 with AC_CHECK_TOOL and by ditching uname in favor of
7509 AC_CANONICAL_HOST and $host_os. Add --disable-lfs option.
7510
7511 * lib/getdate.y: Update to fileutils 4.0 getdate.y, with one patch:
7512 replace FORCE_ALLOCA_H with HAVE_ALLOCA_H.
7513 * lib/Makefile.am (AUTOMAKE_OPTIONS): Append ../src/ansi2knr,
7514 since getdate.y now uses ANSI code.
7515
7516 * config.guess, config.sub: New files; taken from automake 1.4.
7517
7518 * intl/Makefile.in, intl/VERSION, intl/bindtextdom.c,
7519 intl/cat-compat.c, intl/dcgettext.c, intl/dgettext.c,
7520 intl/explodename.c, intl/finddomain.c, intl/gettext.c,
7521 intl/gettext.h, intl/gettextP.h, intl/hash-string.h,
7522 intl/l10nflist.c, intl/libgettext.h, intl/loadinfo.h,
7523 intl/loadmsgcat.c, intl/localealias.c, intl/textdomain.c:
7524 Update to GNU gettext 0.10.35, with patches as per GCC snapshot 990109.
7525
7526 1999-02-01 Paul Eggert <eggert@twinsun.com>
7527
7528 * src/tar.c: Update copyright.
7529
7530 * NEWS: 1.12.64004
7531
7532 1999-02-01 Paul Eggert <eggert@twinsun.com>
7533
7534 * NEWS, configure.in: Version 1.12.64004
7535
7536 * configure.in (AC_LFS): Use this macro, instead of open-coding it.
7537
7538 * acinclude.m4 (AC_LFS, AM_PROG_CC_STDC): New macros.
7539
7540 * src/extract.c (extract_archive): Fix bug when extracting sparse
7541 files: they were trashing the tar file header.
7542
7543 * src/tar.c: (long_options, usage, OPTION_STRING, decode_options):
7544 Add -y or --bzip2 or --bunzip2 option.
7545
7546 1999-01-30 Paul Eggert <eggert@twinsun.com>
7547
7548 * src/names.c (cached_no_such_uname, cached_no_such_gname,
7549 cached_no_such_uid, cached_no_such_gid): New vars.
7550 (uid_to_uname, gid_to_gname, uname_to_uid, gname_to_gid):
7551 Cache failures, too.
7552
7553 * src/tar.c (decode_options):
7554 Don't pass names longer than UNAME_FIELD_SIZE to
7555 uname_to_uid, as it messes up the cache. Similarly for gname_to_uid.
7556
7557 1999-01-27 Paul Eggert <eggert@twinsun.com>
7558
7559 * NEWS, configure.in: Version 1.12.64003
7560
7561 * src/buffer.c (backspace_output, close_archive): Cast
7562 rmtlseek position arg to off_t, for benefit of K&R compilers
7563 with long long.
7564 * src/compare.c (verify_volume): Likewise.
7565
7566 * NEWS, configure.in: Version 1.12.64002
7567
7568 * src/create.c (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct,
7569 off_to_oct, size_to_oct, time_to_oct, uid_to_oct):
7570 Cast arg to uintmax_t for benefit of pre-ANSI compilers with long long.
7571 * src/list.c: (gid_from_oct, major_from_oct, minor_from_oct,
7572 mode_from_oct, off_from_oct, size_from_oct, time_from_oct,
7573 uid_from_oct): Likewise.
7574
7575 1999-01-25 Paul Eggert <eggert@twinsun.com>
7576
7577 * incremen.sh: Fix timing bug in regression test.
7578
7579 1999-01-22 Paul Eggert <eggert@twinsun.com>
7580
7581 * NEWS, configure.in: Update version
7582
7583 * Makefile.am (localedir): Change to $(datadir)/locale.
7584 (DEFS): New macro, defining LOCALEDIR.
7585 (tar.o, tar._o, rmt.o, rmt._o): Remove.
7586 (INCLUDES): Add -I..
7587
7588 * Makefile.am (localedir): Change to $(datadir)/locale.
7589
7590 1999-01-21 Paul Eggert <eggert@twinsun.com>
7591
7592 * NEWS, README, configure.in: Unofficial version 1.12.64001.
7593
7594 * tests/Makefile.am (localedir): Change to $(datadir)/locale.
7595 * src/Makefile.am (localedir): Likewise.
7596 (DEFS): New macro, defining LOCALEDIR.
7597 (tar.o, tar._o, rmt.o, rmt._o): Remove.
7598 (INCLUDES): Add `-I..'.
7599
7600 * tests/incremen.sh: Fix timing bug.
7601
7602 1999-01-20 Paul Eggert <eggert@twinsun.com>
7603
7604 * NEWS, README, configure.in: Unofficial version 1.12.64000.
7605 `lfs.7' changed to `64000' in version number
7606 to conform to gnits standards.
7607
7608 * COPYING, INSTALL, doc/texinfo.tex, install-sh, missing,
7609 mkinstalldirs, ansi2knr.c: Update to latest public versions.
7610
7611 Rebuild with automake 1.4 and autoconf 2.13, to work around some
7612 porting problems.
7613
7614 1998-12-07 Paul Eggert <eggert@twinsun.com>
7615
7616 * NEWS, README, configure.in: Unofficial version 1.12.lfs.6.
7617
7618 * src/list.c (read_header):
7619 Accept file names as specified by POSIX.1-1996 section 10.1.1.
7620
7621 1998-11-30 Paul Eggert <eggert@twinsun.com>
7622
7623 * configure.in: Quote the output of uname.
7624
7625 * src/extract.c (set_stat): chmod after chown even when not root;
7626 if we are using --same-owner this is needed e.g. on Solaris 2.5.1.
7627
7628 1998-11-15 Paul Eggert <eggert@twinsun.com>
7629
7630 * NEWS, README, configure.in: Unofficial version 1.12.lfs.5.
7631
7632 * configure.in (ac_test_CPPFLAGS, ac_test_LDFLAGS, ac_test_LIBS,
7633 ac_getconfs, ac_result): Special case for HP-UX 10.20 or later.
7634
7635 1998-10-28 Paul Eggert <eggert@twinsun.com>
7636
7637 * NEWS, README, configure.in: Unofficial version 1.12.lfs.4.
7638
7639 * src/system.h (voidstar): Use void * if __STDC__ is defined,
7640 not merely nonzero.
7641
7642 * src/rtapelib.c: Don't use rexec code unless compiled with WITH_REXEC.
7643 On many installations, rexec is disabled.
7644
7645 1998-08-07 Paul Eggert <eggert@twinsun.com>
7646
7647 * NEWS, README, configure.in: Unofficial version 1.12.lfs.3.
7648
7649 * src/names.c (uid_to_uname, gid_to_gname): Don't used cached name
7650 for nameless users and groups.
7651
7652 1998-02-17 Paul Eggert <eggert@twinsun.com>
7653
7654 * NEWS, README, configure.in: Unofficial version 1.12.lfs.2.
7655 * NEWS, README: Add explanation of why this isn't an official version.
7656
7657 1998-02-02 Paul Eggert <eggert@twinsun.com>
7658
7659 * NEWS, README, configure.in: Unofficial version 1.12.lfs.1.
7660 This is an unofficial version.
7661
7662 1997-12-17 Paul Eggert <eggert@twinsun.com>
7663
7664 * src/incremen.c (ST_DEV_MSB): New macro.
7665 (NFS_FILE_STAT): Use most significant bit of st_dev,
7666 even if it's unsigned.
7667
7668 1997-12-08 Paul Eggert <eggert@twinsun.com>
7669
7670 * src/system.h (ST_NBLOCKS): Fix typo in definition.
7671
7672 1997-11-19 Paul Eggert <eggert@twinsun.com>
7673
7674 * configure.in (HAVE_INTTYPES_H):
7675 Don't ignore cache variable if it's already set.
7676
7677 1997-11-10 Paul Eggert <eggert@twinsun.com>
7678
7679 * src/rmt.c (main): Don't assume mt_count is of type daddr_t.
7680 * src/delete.c (records_read): Now off_t.
7681 (move_archive): Don't assume mt_count is of type daddr_t.
7682
7683 1997-10-30 Paul Eggert <eggert@twinsun.com>
7684
7685 * configure.in (CPPFLAGS, LDFLAGS, LIBS):
7686 Set to appropriate values if large file support
7687 needs explicit enabling.
7688 (HAVE_INTTYPES_H, HAVE_ST_FSTYPE_STRING, daddr_t, major_t, minor_t,
7689 ssize_t):
7690 New macros to configure.
7691 (AC_TYPE_MODE_T, AC_TYPE_PID_T, AC_TYPE_OFF_T): Add.
7692
7693 * acconfig.h (daddr_t, HAVE_INTTYPES_H, HAVE_ST_FSTYPE_STRING,
7694 major_t, minor_t, ssize_t): New macros.
7695
7696 * src/arith.h (TARLONG_FORMAT):
7697 Fix typo: %uld -> %lu. Use unsigned when long long
7698 (%lld -> %llu).
7699 (add_to_tarlong_helper, mult_tarlong_helper): 2nd arg is now unsigned long.
7700 (add_to_tarlong, mult_tarlong): Cast 2nd arg to unsigned long.
7701
7702 * src/arith.c (add_to_tarlong_helper, mult_tarlong_helper):
7703 2nd arg is now unsigned long.
7704
7705 * src/rmt.c (allocated_size): Now size_t, and now initialized to 0.
7706 (prepare_record_buffer): Arg is now size_t.
7707 Remove now-useless casts.
7708
7709 (main): Use `long' for status, so that it can store ssize_t.
7710 Use daddr_t, mode_t, size_t, off_t when appropriate.
7711 Convert daddr_t and off_t values ourselves, since they might be longer
7712 than long. Convert other types using `long' primitives.
7713 When processing MTIOCTOP, do not try to pass resulting
7714 count back, since it won't work (it could be too large) and it's
7715 not expected anyway.
7716
7717 * src/update.c:
7718 (append_file) Use off_t, size_t, ssize_t when appropriate. Remove
7719 now-useless casts. Use unsigned long to print *_t types, except use
7720 STRINGIFY_BIGINT for off_t.
7721 (update_archive): Cast -1 to dev_t when necessary.
7722
7723 * src/tar.c (check_decimal):
7724 Now returns 1 if successful, 0 otherwise, and returns
7725 uintmax_t value into new arg. Check for arithmetic overflow.
7726 (decode_options): Avoid overflow if record_size fits in size_t but not int.
7727 Check for overflow on user or group ids.
7728
7729 * src/compare.c (diff_init, process_rawdata, read_and_process,
7730 diff_sparse_files, diff_archive):
7731 Use off_t, pid_t, size_t, ssize_t when appropriate.
7732 Remove now-useless casts. Use unsigned long to print *_t types,
7733 except use STRINGIFY_BIGINT for off_t.
7734
7735 (process_noop, process_rawdata, process_dumpdir, read_and_process):
7736 Size arg is now size_t.
7737
7738 (diff_sparse_files): Arg is now off_t. Check for size_t overflow
7739 when allocating buffer.
7740
7741 * src/rtapelib.c:
7742 (do_command, rmt_open__, rmt_read__, rmt_lseek__, rmt_ioctl__):
7743 Use pid_t, size_t, ssize_t when appropriate. Remove now-useless casts.
7744 Use unsigned long to print *_t types, except use STRINGIFY_BIGINT for
7745 off_t.
7746
7747 (get_status_string, get_status_off): New function.
7748 (get_status): Now returns long, so that it can store ssize_t.
7749 Invoke get_status_string to do the real work.
7750 (rmt_read__, rmt_write__): Now returns ssize_t. Size arg is now size_t.
7751 (rmt_lseek__): Now returns off_t, using new get_status_off function.
7752 (rmt_ioctl__): Convert mt_count by hand,
7753 since it might be longer than long.
7754
7755 * src/mangle.c (extract_mangle):
7756 Check for overflow when converting off_t to size_t.
7757 Use off_t, size_t when appropriate. Remove now-useless casts.
7758
7759 * src/system.h (mode_t): Remove; now done by autoconf.
7760 (ST_NBLOCKS): Do not overflow if st_size is near maximum.
7761 Return number of ST_NBLOCKSIZE-byte blocks,
7762 not number of 512-byte blocks;
7763 this also helps to avoid overflow.
7764 (st_blocks): Declare if needed.
7765 (ST_NBLOCKSIZE): New macro.
7766 (<limits.h>, <inttypes.h>): Include if available.
7767 (CHAR_BIT): New macro.
7768 (uintmax_t): New typedef.
7769 (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_STRLEN_BOUND,
7770 UINTMAX_STRSIZE_BOUND, GID_MAX, MAJOR_MAX, MINOR_MAX, MODE_MAX,
7771 OFF_MAX, SIZE_MAX, TIME_MAX, UID_MAX, UINTMAX_MAX): New macros.
7772
7773 * src/names.c (name_init):
7774 Fix typo in error message: FILE* was passed, but char*
7775 was wanted.
7776
7777 (read_name_from_file, name_gather, addname, name_match, name_scan,
7778 add_exclude): Use size_t when appropriate. Remove now-useless casts.
7779
7780 (exclude_pool_size, allocated_exclude_pool_size): Now size_t.
7781
7782 * src/extract.c (newdir_umask, current_umask): Now mode_t.
7783 (extract_sparse_file): Args now use off_t.
7784
7785 (set_mode, set_stat, make_directories, extract_sparse_file,
7786 extract_archive): Use off_t, size_t, ssize_t when appropriate. Remove
7787 now-useless casts. Use unsigned long to print *_t types, except use
7788 STRINGIFY_BIGINT for off_t.
7789
7790 * src/misc.c (quote_copy_string):
7791 Use size_t when appropriate. Remove now-useless casts.
7792
7793 * src/list.c (read_and, list_archive, read_header, decode_mode,
7794 print_header, print_for_mkdir):
7795 Use mode_t, off_t, size_t when appropriate. Remove
7796 now-useless casts. Use unsigned long to print *_t types, except use
7797 STRINGIFY_BIGINT for off_t.
7798
7799 (read_header): Check for overflow when converting header size.
7800
7801 (from_oct): Now static. Now returns uintmax_t. `where' arg is now
7802 const char *. Size arg is now size_t. Now takes new type and maxval
7803 args. Compute result using uintmax_t, not long. Report error if
7804 field does not contain octal number in range.
7805 (gid_from_oct, major_from_oct, minor_from_oct, mode_from_oct,
7806 off_from_oct, size_from_oct, time_from_oct, uid_from_oct,
7807 uintmax_from_oct): New functions.
7808
7809 (stringify_uintmax_t_backwards): New function.
7810
7811 (decode_mode, print_for_mkdir): Mode arg is now mode_t.
7812 (skip_file): Offset arg is now off_t.
7813
7814 * src/buffer.c (record_start_block, save_totsize, save_sizeleft,
7815 real_s_totsize, real_s_sizeleft, current_block_ordinal):
7816 Now off_t.
7817 (write_error): Arg is now ssize_t.
7818 (child_pid): Now pid_t.
7819 (available_space_after): Now size_t.
7820
7821 (child_open_for_compress, child_open_for_uncompress, flush_write,
7822 open_archive, flush_write, write_error, flush_read, close_archive):
7823 Use pid_t, ssize_t, size_t when appropriate. Remove now-useless
7824 casts. Use unsigned long to print *_t types, except use
7825 STRINGIFY_BIGINT for off_t.
7826
7827 * src/delete.c (records_read): Now daddr_t.
7828 (move_archive): Arg is now daddr_t. Check for overflow when
7829 computing offset.
7830 (move_archive, delete_archive_members): Use daddr_t, off_t when
7831 appropriate. Remove now-useless casts.
7832
7833 * src/rmt.h (rmt_read__, rmt_write__): Now returns ssize_t.
7834 (rmt_lseek): Now returns off_t.
7835
7836 * src/create.c (to_oct):
7837 Now static. Value arg is now uintmax_t. Accept new args
7838 giving name of type of octal field, for error messages. Report an
7839 error if the value is too large to fit in the field.
7840 (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct, off_to_oct,
7841 size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct): New functions.
7842
7843 (write_eot, write_long, finish_header, deal_with_sparse,
7844 finish_sparse_file, dump_file): Use dev_t, off_t, ssize_t, size_t when
7845 appropriate. Remove now-useless casts. Use unsigned long to print
7846 *_t types, except use STRINGIFY_BIGINT for off_t.
7847
7848 (find_new_file_size): 1st arg is now off_t*.
7849 (finish_sparse_file): Args now use off_t, not long.
7850 Check for lseek error.
7851 (create_archive, dump_file): Cast -1 to dev_t when necessary.
7852 (dump_file): Device arg is now dev_t.
7853 Avoid overflow when testing whether file has holes
7854 by using the new ST_NBLOCKSIZE macro.
7855
7856 * src/incremen.c (struct accumulator, add_to_accumulator,
7857 get_directory_contents, add_hierarchy_to_namelist, gnu_restore):
7858 Use size_t for sizes.
7859 (struct directory, get_directory_contents, add_hierarchy_to_namelist):
7860 Use dev_t, ino_t for devices and inodes.
7861 (gnu_restore): Use off_t for file offsets.
7862 (struct directory): Use char for flags. Add new flag `nfs'.
7863 (nfs): New constant
7864 (NFS_FILE_STAT): New macro.
7865 (note_directory): Accept struct stat * instead of
7866 device and inode number. All callers changed.
7867 (note_directory, get_directory_contents):
7868 Use NFS_FILE_STAT to determine whether directory is an NFS directory.
7869 (write_dir_file): Cast time_t to unsigned long before printing as %lu.
7870
7871 * src/common.h (record_size, struct name, struct sp_array,
7872 available_space_after):
7873 Use size_t for sizes.
7874 (save_sizeleft, save_totsize, current_block_ordinal, skip_file):
7875 Use off_t for file offsets.
7876 (struct name): dir_contents is now const char *, not char *.
7877 (dump_file, get_directory_contents): Use dev_t for devices.
7878 (to_oct): Remove decl.
7879 (GID_TO_OCT, MAJOR_TO_OCT, MINOR_TO_OCT, MODE_TO_OCT, SIZE_TO_OCT,
7880 UID_TO_OCT, UINTMAX_TO_OCT, OFF_TO_OCT, TIME_TO_OCT, STRINGIFY_BIGINT,
7881 GID_FROM_OCT, MAJOR_FROM_OCT, MINOR_FROM_OCT, MODE_FROM_OCT,
7882 OFF_FROM_OCT, SIZE_FROM_OCT, TIME_FROM_OCT, UID_FROM_OCT,
7883 UINTMAX_FROM_OCT): New macros.
7884 (gid_to_oct, major_to_oct, minor_to_oct, mode_to_oct, off_to_oct,
7885 size_to_oct, time_to_oct, uid_to_oct, uintmax_to_oct,
7886 stringify_uintmax_t_backwards, gid_from_oct, major_from_oct,
7887 minor_from_oct, mode_from_oct, off_from_oct, size_from_oct,
7888 time_from_oct, uid_from_oct, uintmax_from_oct): New decls.
7889 (print_for_mkdir): 2nd arg is now mode_t.
7890
7891 See ChangeLog.1 for earlier changes.
7892
7893
7894 \f
7895 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006
7896 Free Software Foundation, Inc.
7897
7898 This file is part of GNU tar.
7899
7900 GNU tar is free software; you can redistribute it and/or modify
7901 it under the terms of the GNU General Public License as published by
7902 the Free Software Foundation; either version 2, or (at your option)
7903 any later version.
7904
7905 GNU tar is distributed in the hope that it will be useful,
7906 but WITHOUT ANY WARRANTY; without even the implied warranty of
7907 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
7908 GNU General Public License for more details.
7909
7910 You should have received a copy of the GNU General Public License
7911 along with GNU tar; see the file COPYING. If not, write to
7912 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
7913 Boston, MA 02110-1301, USA.
7914 \f
7915 Local Variables:
7916 mode: change-log
7917 version-control: never
7918 End:
This page took 0.416008 seconds and 4 git commands to generate.