]> git.wh0rd.org - dump.git/blame_incremental - CHANGES
Fixed compare of dumped socket files by ignoring them.
[dump.git] / CHANGES
... / ...
CommitLineData
1$Id: CHANGES,v 1.214 2003/02/11 09:56:46 stelian Exp $
2
3Changes between versions 0.4b33 and 0.4b34 (released ?????????????????)
4=======================================================================
5
61. Fixed the INSTALL file to reflect the actual install paths.
7 Thanks to David Ronis <ronis@ronispc.chem.mcgill.ca> for
8 reporting the bug.
9
102. Fixed the configure script to only check for headers presence
11 instead of trying to compile them. This should fix issues
12 with old build environments. Thanks to Kari Lempiainen
13 <kari@funky.pp.fi> for reporting the bug.
14
153. Fixed restore to correctly ignore sockets when comparing
16 a dump (as socket cannot be properly restored anyway). Thanks
17 to <gunther@mit.edu> for reporting the bug.
18
19Changes between versions 0.4b32 and 0.4b33 (released February 10, 2003)
20=======================================================================
21
221. Added a note in the restore man page clarifying the question
23 'set the permissions on the current directory ?' asked by
24 restore at the end of treatment in -i and -x modes.
25
262. Fixed the endianess issues when reading compressed tapes.
27 Thanks to Dark Force <daq4th@users.sourceforge.net> for
28 reporting this bug and providing test cases.
29
303. Fixed the "ACL won't be dumped" warning message (which showed
31 an extra, unrelated error message). Thanks to Dragan Krnic
32 <dkrnic@lycos.com> for reporting this bug.
33
344. Made dump look first into /etc/mtab, then into /etc/fstab
35 when searching for filesystem paths. Also fixed some problems
36 caused by binding mounts or multiple block device mounts.
37 Thanks to Matus Uhlar <uhlar@fantomas.sk>, Elliott Mitchell
38 <ehem@m5p.com>, Greg Edwards <gedwards@users.sourceforge.net>,
39 Brian Hoy <brian.hoy@opus.co.nz>. (fixes Debian bugs #147086
40 and #160305, Sourceforge bugs #618699 and #679832).
41
425. Made dump's -I option accept the value '0' meaning all the
43 read errors will be ignored. This can be useful when running
44 dump from unattended sessions (like cron jobs). Thanks to
45 John I Wang <jiwang@users.sourceforge.net> for the suggestion.
46
476. Fixed the output of dump to indicate 'blocks' instead of
48 'tape blocks' in the various messages (blocks are always
49 1 Kilobyte, tape blocks are 1 BK * '-b' argument), and
50 made it clearly print the current blocksize at the start of
51 a dump. Thanks to Michal Szymanski <msz@astrouw.edu.pl> for
52 the suggestions.
53
547. Made rmt understand long (largefiles) seeks.
55
568. Fixed build with very old versions of libext2fs, where
57 EXT2_FT_* constants were undefined.
58
599. Made dump accept the dumpdates path on the command line
60 (-D file option) instead of using only the hardcoded one.
61 Thanks to Piete Brooks <pb22@users.sourceforge.net> for the
62 suggestion.
63
6410. Enabled rmt, LFS, readline, QFA options by default in
65 ./configure. Updated the configure process (new versions
66 of config.guess, config.sub etc).
67
68Changes between versions 0.4b31 and 0.4b32 (released November 15, 2002)
69=======================================================================
70
711. Changed dump to use fcntl(F_SETLK) style locking instead
72 of flock() when locking the dumpdates file. With the old
73 locking scheme, a local user having read rights on the
74 dumpdates file could be able to do a Denial of Service attack
75 on dump. In order to lock the dumpdates file with the new
76 scheme, the user would need to have write access on the file.
77 Thanks to Richard Johnson <Richard.Johnson3@ey.com> for
78 reporting the bug (originally a bugtraq post).
79
802. Fixed interactive 'ls' which caused spurious errors warnings
81 about 'undefined filetypes' detected. Thanks to Jorgen Ostling
82 <jorgen_ostling@users.sourceforge.net> for reporting this
83 bug.
84
853. Fixed dump's estimate when dealing with sparse inodes.
86
874. Modified dump to allow setting a blocksize bigger than 32kB
88 (raised the limit to 1024kB), because newer hardware needs
89 this for proper operation. Thanks to Dirk Traenapp
90 <dtraenapp@users.sourceforge.net> for reporting this.
91
925. Fixed a bug causing Dump to stop and report an error if an
93 inode number in the exclude file was followed by some amount
94 of whitespace. Thanks to Jeffrey Sofferin
95 <sofferin@users.sourceforge.net> for reporting this bug.
96
976. Fixed a bug which caused restore, in some particular cases,
98 to ask some 'scary' questions and leave a bunch of RSTTMP
99 directories behind when restoring incremental tapes. Thanks
100 to Philippe Troin <phil@fifi.org> for reporting this bug and
101 providing the test cases.
102
1037. Changed the wording when inodes are excluded from dump:
104 replaced 'Added inode 7 to exclude list' with
105 'Excluding inode 7 (resize inode) from dump', as suggested
106 by Elliott Mitchell <ehem@m5p.com> in a Debian bug report.
107
108Changes between versions 0.4b30 and 0.4b31 (released July 30, 2002)
109===================================================================
110
1111. Fixed rmt open flags transmission (GNU's symbolic syntax over
112 rmt) which I broke in 0.4b29. Thanks to Eros Albertazzi
113 <eros@lamel.bo.cnr.it> for reporting the bug.
114
115Changes between versions 0.4b29 and 0.4b30 (released July 25, 2002)
116===================================================================
117
1181. Made dump print out the ext2 logical block number in case of a read
119 error, which can be given as an argument to debugfs' ncheck command,
120 in order to find out the affected inode. Added note about this
121 usage in dump's man page.
122
1232. Fixed a problem in restore when reading tapes written on big
124 endian machines with very old versions of dump. The patch was
125 contributed by George Helffrich <george@geology.bristol.ac.uk>.
126
1273. Fixed the tape length calculation when using large tapes
128 and compression. Thanks to Georg Lippold
129 <g_lippold@sourceforge.net> for reporting the bug.
130
1314. Added a new set of examples in dump_on_cd_2 directory, based
132 on dump_on_cd examples but somewhat enhanced, supporting DVD
133 media, and localized in english and german. Thanks to
134 Georg Lippold <g_lippold@sourceforge.net> for the new scripts.
135
1365. Made dump save 32 bit UID/GID. Internally, this was achieved
137 by switching from the old BSD inode format to the new BSD
138 inode format, which means that the tape format was changed.
139 However, since all restore versions out there should
140 transparently support both inode formats, the change should
141 have no side effects. Thanks to John Yu <jky@cs.bu.edu> for
142 reporting the bug.
143
1446. Fixed a lot of warnings in the code shown when compiling
145 with 'gcc -W'. Thanks to Matthias Andree
146 <matthias.andree@stud.uni-dortmund.de> for reporting this.
147
1487. Fixed a small markup bug in the dump man page. Thanks to
149 Eric S. Raymond <esr@minx.thyrsus.com> for submitting the
150 patch.
151
1528. Rewrote entirely the man pages using the tmac.an macro
153 package (Linux man page format) instead of the original BSD
154 format. They should be now cleaner and easier to modify.
155
156Changes between versions 0.4b28 and 0.4b29 (released June 8, 2002)
157==================================================================
158
1591. Fixed a problem in the rmt ioctl command, where ioctl's issued from
160 non Linux clients were misinterpreted. The description of the problem
161 (incompatible numbering in Linux mtio opcodes) is documented at
162 ftp://ftp.fokus.gmd.de/pub/unix/star/README.mtio . Thanks to
163