]> git.wh0rd.org - dump.git/blame - CHANGES
Made dump use blkid library.
[dump.git] / CHANGES
CommitLineData
c9e4e868 1$Id: CHANGES,v 1.252 2004/07/05 15:02:32 stelian Exp $
d7783603
SP
2
3Changes between versions 0.4b36 and 0.4b37 (released ??????????????)
4====================================================================
5
61. Added the --enable-staticz configure option which enables
7 dump and restore to be linked with static versions of
8 libz and libbz2 (and dynamic versions of all other libraries).
9 This will make Debian users happy, because libz and libbz2
10 were the only needed libraries living in /usr, all the
11 others live in /lib. In case of system emergency, it is
12 better not to have to rely on an extra filesystem.
13 Thanks to Bdale Garbee <bdale@gag.com> for the suggestion.
e0267986 14
b3f55532
SP
152. Fix compilation on (at least the Linux Debian port to) AMD64.
16 (<ext2fs/ext2_types.h> defines some types (__s64 and __u64)
17 that are also defined by <linux/types.h> (<asm/types.h>) and
18 they conflict).
19
1f2c193e
SP
203. Make dump's reading of the dumpdates file a bit more robust,
21 preventing dump from crashing when the dumpdates file has
22 been modified by hand.
23
e1e4be20
SP
244. Fixed some offset calculations in dump code which could
25 lead to "bread lseek errors" on large filesystems. Thanks
26 to Bruce Lowekamp <lowekamp@users.sourceforge.net> for
27 reporting this bug and debugging the issue.
28
c9e4e868
SP
295. Made dump use the blkid library when searching for devices
30 by label or uuid instead of dump's own routines.
31
ddf54486
SP
32Changes between versions 0.4b35 and 0.4b36 (released April 21, 2004)
33====================================================================
e0267986
SP
34
351. Fixed dump compilation with old gcc versions. Thanks to
36 Mike Castle <dalgoda@users.sourceforge.net> for the patch.
8ad151aa 37
75654eee
SP
382. Fixed some warnings (howmany, roundup, powerof2 redefined)
39 when compiling against a recent glibc version.
40
43e6ea49
SP
413. Fixed a bug in restore preventing the read of a dump tape
42 written with Solaris 7 ufsdump. Thanks to Patrick Higgins
43 <phiggins@transzap.com> for reporting the bug and providing
44 the test case.
45
d435f57f
SP
464. Changed dump to enable the creation of volumes of different
47 sizes in a single run (make -B accept a list of values).
48 Patch contributed by Florian Zumbiehl <florz@gmx.de>.
49
e1ba02ef
SP
505. Use the glibc provided minor() and major() macros instead
51 of our own bitmask implementation. This should be safe for
52 when the major/minor namespace will migrate to 32 bits.
53 Thanks to Zhang Jun <zhangjun@nanjing-fnst.com> for reporting
54 the bug.
55
ae6919a7
SP
566. Made explicit in the dump man page that dump will not create
57 a remote file, it will only write to an already existing one.
58
4acaf865
SP
597. Another try at making size estimates better again.
60
956756f2
SP
618. Put back the inconditional running of the end-of-tape
62 script which was changed in 0.434 to be run only when -M
63 or multiple -f were NOT specified. Some users rely on this
64 feature even when it is combined with -M/-f.
65
e4e31ce9
SP
669. Fixed restore when restoring huge backups (where rstdir...
67 temporary files are over 2GB). Thanks to
68 Raphael Jaffey <rjaffey@artic.edu> for reporting this,
69 debugging the issue and making the patch.
70
cc7747eb
SP
7110. Made restore understand FreeBSD UFS2 tapes. Thanks to
72 David <vrtin@users.sourceforge.net> for submitting the bug
73 and providing a test case.
74
28ba5cae
SP
7511. Made dump work with an arbitrary integer level (no more 10
76 levels only limitation). Thanks to Matthew
77 <msvincen@midway.uchicago.edu> for the patch.
78
dcac75e9
SP
79Changes between versions 0.4b34 and 0.4b35 (released December 21, 2003)
80=======================================================================
8ad151aa
SP
81
821. Added a note in the dump man page saying that the default
83 blocksize can be 32 if -d is used with a high density argument.
84 Thanks to Antonios Christofides <A.Christofides@itia.ntua.gr>
85 for the patch.
ed194aec 86
008af419
SP
872. Fixed configure to correctly understand CPPFLAGS, CFLAGS,
88 LDFLAGS environment variables. Thanks to Arcady Genkin
89 <antipode@users.sourceforge.net> for reporting the bug.
90
0d4dfd07 913. Made -e/-E options of dump accept an unlimited number of inodes
67793be0
SP
92 to be excluded, rather than a hardcoded maximum. Thanks to
93 Dietrich Rothe <d-rothe@users.sourceforge.net> for the patch.
94
0d4dfd07
SP
954. Updated the autoconf system to 2.50. Forced the -D_BSD_SOURCE
96 and -D_USE_BSD_SIGNAL defines in configure in order to solve
97 64bit build problems because quad_t is redifined with a
98 different signature. Thanks to Mike Harris <mharris@redhat.com>
99 for reporting this bug.
100
5d8d264f 1015. Made restore build on Solaris, making possible to
d1925e0c
SP
102 restore Linux's "enhanced" tapes. Thanks to Uwe Gohlke
103 <uwe@ugsoft.de> for the patch.
104
1056. Made an extension in the dump tape format capable of saving
106 MacOSX specific inode extensions. Uwe Gohlke <uwe@ugsoft.de>
107 wrote the extension and contributed the restore code back
108 into this codebase. The same extension mechanism will be
109 used in the future to save ACLs...
110
1117. Made rmt work correctly with regard to QFA and local/remote
112 files and tapes. The remote access will however work only
113 when the dump provided rmt version is used. If you want to
114 use another rmt server, please do not use the QFA feature.
5d8d264f 115 Thanks to Uwe Gohlke <uwe@ugsoft.de> for the patch.
d1925e0c 116
b564cb84
SP
117Changes between versions 0.4b33 and 0.4b34 (released April 18, 2003)
118====================================================================
ed194aec
SP
119
1201. Fixed the INSTALL file to reflect the actual install paths.
121 Thanks to David Ronis <ronis@ronispc.chem.mcgill.ca> for
122 reporting the bug.
4bb009da 123
d3e542e7
SP
1242. Fixed the configure script to only check for headers presence
125 instead of trying to compile them. This should fix issues
126 with old build environments. Thanks to Kari Lempiainen
127 <kari@funky.pp.fi> for reporting the bug.
128
1176b3c1
SP
1293. Fixed restore to correctly ignore sockets when comparing
130 a dump (as socket cannot be properly restored anyway). Thanks
2d32c89c
SP
131 to Gunther Reiszig <gunther@mit.edu> for reporting the bug.
132
1334. Fixed restore to correctly access the archive file (-A argument)
134 even when using a remote tape. Thanks to Fabrice Bellet
135 <fabrice@bellet.info> for reporting the bug.
1176b3c1 136
900bffdb
SP
1375. Fixed (again) handling of long (largefile) seeks in rmt.
138 Thanks to Fabrice Bellet <fabrice@bellet.info> for reporting
139 the bug.
140
6d834d25
SP
1416. Fixed restore corner case when dealing with large block sizes
142 dump is able to write now (-b 1024). Thanks to Fabrice Bellet
143 <fabrice@bellet.info> for reporting the bug.
144
cdef84ca
SP
1457. Fixed a bug preventing dump to access a filesystem having
146 a label exactly 16 bytes in length. Thanks to <minduni@ti-edu.ch>
147 for reporting the bug.
148
3458b64d
SP
1498. Made dump store dump dates using explicit timezones, fixing a
150 problem with incremental dumps if the timezone is modified
151 between the dumps. Thanks to Philippe Troin <phil@fifi.org> for
152 the bug report and the patch.
153
2be77799
SP
1549. Fixed a bug encountered when dumping individual files (not full
155 filesystems or directories) and dangling symbolic links happen
156 to be in the list of files. For as far as dump is concerned,
157 dangling symbolic links are allowed, and are dumped as is.
158 Thanks to Jin-su Ahn <jsahn@ee.snu.ac.kr> for reporting the
159 bug and providing the fix.
160
c3f69f06
SP
16110. Fixed open and creation modes and permissions for QFA and
162 table-of-contents files in dump and restore. Thanks to
163 Philippe Troin <phil@fifi.org> for the patch.
164
16511. Fixed the archive file descriptor handling enabling it to be 0.
166 This can happen in some cases when shell redirections are used.
167 Thanks to Philippe Troin <phil@fifi.org> for the patch.
168
16912. Delayed the opening of archive file until after suid had been
170 dropped (fixing a possible security issue if dump is suid).
171 Thanks to Philippe Troin <phil@fifi.org> for the patch.
172
17313. Fixed the 'S' command handling in the rmt client part.
174 Thanks to Philippe Troin <phil@fifi.org> for the patch.
175
17614. Modified the end-of-tape script handling to print out statistics
177 (and stop the timer) before launching the eot script. Also, the eot
178 script does not get run anymore when using -M (which makes sense) or
179 when multiple tapes are listed on the command line
180 (-f tape0,tape1,tapen) (which also makes sense).
181 Thanks to Philippe Troin <phil@fifi.org> for the patch.
182
e1abc9ce
SP
18315. Relicensed dump/restore under the 'revised' BSD license, as per
184 ftp://ftp.cs.berkeley.edu/ucb/4bsd/README.Impt.License.Change.
185
206f768c
SP
18616. Added LZO compression to dump. This new compression method has
187 the advantage of being super fast, thus not killing tape streaming
188 on slow machines. Thanks to Helmut Jarausch
189 <jarausch@igpm.rwth-aachen.de> for the patch and to
190 Markus Oberhumer <markus@oberhumer.com> for giving special permission
191 to include his miniLZO project (GPL licensed) in dump/restore.
192
e2392789
SP
19317. Some small buffer overruns fixes in rmt. Thanks to Antonomasia
194 <ant@notatla.demon.co.uk> for reporting the bugs.
195
cdfe1392
SP
19618. Added a special rmt version which can do encryption when writing
197 to tape. Read examples/encrypted_rmt/README for details on
198 how to enable and configure it. Thanks to Ken Lalonde
199 <ken@globalremit.com> for the patch.
200
61e9d4ff
SP
20119. Made dump work with 2.5 kernel end of tape early warning semantics.
202 Thanks to Kai Makisara <Kai.Makisara@kolumbus.fi> for the patch.
203
8c95cc30
SP
20420. Fixed a bug which caused dump -w|-W not to work anymore, because
205 the fs_freq and fs_passno fields in /etc/mtab are always set
206 to 0 0. Thanks to Trent Piepho <xyzzy@speakeasy.org> for
207 reporting the bug.
208
cbdba727 209Changes between versions 0.4b32 and 0.4b33 (released February 10, 2003)
4bb009da
SP
210=======================================================================
211
2121. Added a note in the restore man page clarifying the question
213 'set the permissions on the current directory ?' asked by
214 restore at the end of treatment in -i and -x modes.
d86089d1 215
c898ca7a
SP
2162. Fixed the endianess issues when reading compressed tapes.
217 Thanks to Dark Force <daq4th@users.sourceforge.net> for
218 reporting this bug and providing test cases.
219
a028bdc8
SP
2203. Fixed the "ACL won't be dumped" warning message (which showed
221 an extra, unrelated error message). Thanks to Dragan Krnic
222 <dkrnic@lycos.com> for reporting this bug.
223
a8a6a503 2244. Made dump look first into /etc/mtab, then into /etc/fstab
1a886de8
SP
225 when searching for filesystem paths. Also fixed some problems
226 caused by binding mounts or multiple block device mounts.
227 Thanks to Matus Uhlar <uhlar@fantomas.sk>, Elliott Mitchell
a8a6a503
SP
228 <ehem@m5p.com>, Greg Edwards <gedwards@users.sourceforge.net>,
229 Brian Hoy <brian.hoy@opus.co.nz>. (fixes Debian bugs #147086
230 and #160305, Sourceforge bugs #618699 and #679832).
1a886de8 231
3211c85b
SP
2325. Made dump's -I option accept the value '0' meaning all the
233 read errors will be ignored. This can be useful when running
234 dump from unattended sessions (like cron jobs). Thanks to
235 John I Wang <jiwang@users.sourceforge.net> for the suggestion.
236
7fcd6df5
SP
2376. Fixed the output of dump to indicate 'blocks' instead of
238 'tape blocks' in the various messages (blocks are always
239 1 Kilobyte, tape blocks are 1 BK * '-b' argument), and
240 made it clearly print the current blocksize at the start of
241 a dump. Thanks to Michal Szymanski <msz@astrouw.edu.pl> for
242 the suggestions.
243
5bf65105
SP
2447. Made rmt understand long (largefiles) seeks.
245
dbb649e8
SP
2468. Fixed build with very old versions of libext2fs, where
247 EXT2_FT_* constants were undefined.
248
c92d83ae
SP
2499. Made dump accept the dumpdates path on the command line
250 (-D file option) instead of using only the hardcoded one.
251 Thanks to Piete Brooks <pb22@users.sourceforge.net> for the
252 suggestion.
253
1daf06b9
SP
25410. Enabled rmt, LFS, readline, QFA options by default in
255 ./configure. Updated the configure process (new versions
256 of config.guess, config.sub etc).
257
51c11d00
SP
258Changes between versions 0.4b31 and 0.4b32 (released November 15, 2002)
259=======================================================================
d86089d1
SP
260
2611. Changed dump to use fcntl(F_SETLK) style locking instead
262 of flock() when locking the dumpdates file. With the old
263 locking scheme, a local user having read rights on the
264 dumpdates file could be able to do a Denial of Service attack
265 on dump. In order to lock the dumpdates file with the new
266 scheme, the user would need to have write access on the file.
267 Thanks to Richard Johnson <Richard.Johnson3@ey.com> for
268 reporting the bug (originally a bugtraq post).
ba3af39e 269
2f562f4e
SP
2702. Fixed interactive 'ls' which caused spurious errors warnings
271 about 'undefined filetypes' detected. Thanks to Jorgen Ostling
272 <jorgen_ostling@users.sourceforge.net> for reporting this
273 bug.
274
1c736b78
SP
2753. Fixed dump's estimate when dealing with sparse inodes.
276
876861d2
SP
2774. Modified dump to allow setting a blocksize bigger than 32kB
278 (raised the limit to 1024kB), because newer hardware needs
279 this for proper operation. Thanks to Dirk Traenapp
280 <dtraenapp@users.sourceforge.net> for reporting this.
281
b8d848c9
SP
2825. Fixed a bug causing Dump to stop and report an error if an
283 inode number in the exclude file was followed by some amount
284 of whitespace. Thanks to Jeffrey Sofferin
285 <sofferin@users.sourceforge.net> for reporting this bug.
286
e531c442
SP
2876. Fixed a bug which caused restore, in some particular cases,
288 to ask some 'scary' questions and leave a bunch of RSTTMP
289 directories behind when restoring incremental tapes. Thanks
290 to Philippe Troin <phil@fifi.org> for reporting this bug and
291 providing the test cases.
292
c993d83a
SP
2937. Changed the wording when inodes are excluded from dump:
294 replaced 'Added inode 7 to exclude list' with
295 'Excluding inode 7 (resize inode) from dump', as suggested
296 by Elliott Mitchell <ehem@m5p.com> in a Debian bug report.
297
cbc7fd6a 298Changes between versions 0.4b30 and 0.4b31 (released July 30, 2002)
ba3af39e
SP
299===================================================================
300
3011. Fixed rmt open flags transmission (GNU's symbolic syntax over
302 rmt) which I broke in 0.4b29. Thanks to Eros Albertazzi
303 <eros@lamel.bo.cnr.it> for reporting the bug.
35952b8f 304
4095abc0
SP
305Changes between versions 0.4b29 and 0.4b30 (released July 25, 2002)
306===================================================================
aa1b1e7f
SP
307
3081. Made dump print out the ext2 logical block number in case of a read
309 error, which can be given as an argument to debugfs' ncheck command,
310 in order to find out the affected inode. Added note about this
311 usage in dump's man page.
ed7c25a3
SP
312
3132. Fixed a problem in restore when reading tapes written on big
314 endian machines with very old versions of dump. The patch was
315 contributed by George Helffrich <george@geology.bristol.ac.uk>.
f75cc889
SP
316
3173. Fixed the tape length calculation when using large tapes
318 and compression. Thanks to Georg Lippold
319 <g_lippold@sourceforge.net> for reporting the bug.
a9c5ed48
SP
320
3214. Added a new set of examples in dump_on_cd_2 directory, based
322 on dump_on_cd examples but somewhat enhanced, supporting DVD
323 media, and localized in english and german. Thanks to
324 Georg Lippold <g_lippold@sourceforge.net> for the new scripts.
325
9ca70cf6
SP
3265. Made dump save 32 bit UID/GID. Internally, this was achieved
327 by switching from the old BSD inode format to the new BSD
328 inode format, which means that the tape format was changed.
329 However, since all restore versions out there should
330 transparently support both inode formats, the change should
331 have no side effects. Thanks to John Yu <jky@cs.bu.edu> for
332 reporting the bug.
a18d5997
SP
333
3346. Fixed a lot of warnings in the code shown when compiling
335 with 'gcc -W'. Thanks to Matthias Andree
336 <matthias.andree@stud.uni-dortmund.de> for reporting this.
337
2a2e321d
SP
3387. Fixed a small markup bug in the dump man page. Thanks to
339 Eric S. Raymond <esr@minx.thyrsus.com> for submitting the
340 patch.
341
153f9a83
SP
3428. Rewrote entirely the man pages using the tmac.an macro
343 package (Linux man page format) instead of the original BSD
344 format. They should be now cleaner and easier to modify.
345
cf88ef4c
SP
346Changes between versions 0.4b28 and 0.4b29 (released June 8, 2002)
347==================================================================
d24dc8af
SP
348
3491. Fixed a problem in the rmt ioctl command, where ioctl's issued from
350 non Linux clients were misinterpreted. The description of the problem
351 (incompatible numbering in Linux mtio opcodes) is documented at
352 ftp://ftp.fokus.gmd.de/pub/unix/star/README.mtio . Thanks to
353