]> git.wh0rd.org - dump.git/blame - CHANGES
Enabled rmt, LFS, readline, QFA options by default in ./configure.
[dump.git] / CHANGES
CommitLineData
1daf06b9 1$Id: CHANGES,v 1.209 2003/01/24 11:01:43 stelian Exp $
4bb009da
SP
2
3Changes between versions 0.4b32 and 0.4b33 (released ?????????????????)
4=======================================================================
5
61. Added a note in the restore man page clarifying the question
7 'set the permissions on the current directory ?' asked by
8 restore at the end of treatment in -i and -x modes.
d86089d1 9
c898ca7a
SP
102. Fixed the endianess issues when reading compressed tapes.
11 Thanks to Dark Force <daq4th@users.sourceforge.net> for
12 reporting this bug and providing test cases.
13
a028bdc8
SP
143. Fixed the "ACL won't be dumped" warning message (which showed
15 an extra, unrelated error message). Thanks to Dragan Krnic
16 <dkrnic@lycos.com> for reporting this bug.
17
1a886de8
SP
184. Made dump look first into /etc/fstab, then into /etc/mtab
19 when searching for filesystem paths. Also fixed some problems
20 caused by binding mounts or multiple block device mounts.
21 Thanks to Matus Uhlar <uhlar@fantomas.sk>, Elliott Mitchell
22 <ehem@m5p.com>, Greg Edwards <gedwards@users.sourceforge.net>.
23 (fixes Debian bugs #147086 and #160305, Sourceforge bug #618699)
24
3211c85b
SP
255. Made dump's -I option accept the value '0' meaning all the
26 read errors will be ignored. This can be useful when running
27 dump from unattended sessions (like cron jobs). Thanks to
28 John I Wang <jiwang@users.sourceforge.net> for the suggestion.
29
7fcd6df5
SP
306. Fixed the output of dump to indicate 'blocks' instead of
31 'tape blocks' in the various messages (blocks are always
32 1 Kilobyte, tape blocks are 1 BK * '-b' argument), and
33 made it clearly print the current blocksize at the start of
34 a dump. Thanks to Michal Szymanski <msz@astrouw.edu.pl> for
35 the suggestions.
36
5bf65105
SP
377. Made rmt understand long (largefiles) seeks.
38
dbb649e8
SP
398. Fixed build with very old versions of libext2fs, where
40 EXT2_FT_* constants were undefined.
41
c92d83ae
SP
429. Made dump accept the dumpdates path on the command line
43 (-D file option) instead of using only the hardcoded one.
44 Thanks to Piete Brooks <pb22@users.sourceforge.net> for the
45 suggestion.
46
1daf06b9
SP
4710. Enabled rmt, LFS, readline, QFA options by default in
48 ./configure. Updated the configure process (new versions
49 of config.guess, config.sub etc).
50
51c11d00
SP
51Changes between versions 0.4b31 and 0.4b32 (released November 15, 2002)
52=======================================================================
d86089d1
SP
53
541. Changed dump to use fcntl(F_SETLK) style locking instead
55 of flock() when locking the dumpdates file. With the old
56 locking scheme, a local user having read rights on the
57 dumpdates file could be able to do a Denial of Service attack
58 on dump. In order to lock the dumpdates file with the new
59 scheme, the user would need to have write access on the file.
60 Thanks to Richard Johnson <Richard.Johnson3@ey.com> for
61 reporting the bug (originally a bugtraq post).
ba3af39e 62
2f562f4e
SP
632. Fixed interactive 'ls' which caused spurious errors warnings
64 about 'undefined filetypes' detected. Thanks to Jorgen Ostling
65 <jorgen_ostling@users.sourceforge.net> for reporting this
66 bug.
67
1c736b78
SP
683. Fixed dump's estimate when dealing with sparse inodes.
69
876861d2
SP
704. Modified dump to allow setting a blocksize bigger than 32kB
71 (raised the limit to 1024kB), because newer hardware needs
72 this for proper operation. Thanks to Dirk Traenapp
73 <dtraenapp@users.sourceforge.net> for reporting this.
74
b8d848c9
SP
755. Fixed a bug causing Dump to stop and report an error if an
76 inode number in the exclude file was followed by some amount
77 of whitespace. Thanks to Jeffrey Sofferin
78 <sofferin@users.sourceforge.net> for reporting this bug.
79
e531c442
SP
806. Fixed a bug which caused restore, in some particular cases,
81 to ask some 'scary' questions and leave a bunch of RSTTMP
82 directories behind when restoring incremental tapes. Thanks
83 to Philippe Troin <phil@fifi.org> for reporting this bug and
84 providing the test cases.
85
c993d83a
SP
867. Changed the wording when inodes are excluded from dump:
87 replaced 'Added inode 7 to exclude list' with
88 'Excluding inode 7 (resize inode) from dump', as suggested
89 by Elliott Mitchell <ehem@m5p.com> in a Debian bug report.
90
cbc7fd6a 91Changes between versions 0.4b30 and 0.4b31 (released July 30, 2002)
ba3af39e
SP
92===================================================================
93
941. Fixed rmt open flags transmission (GNU's symbolic syntax over
95 rmt) which I broke in 0.4b29. Thanks to Eros Albertazzi
96 <eros@lamel.bo.cnr.it> for reporting the bug.
35952b8f 97
4095abc0
SP
98Changes between versions 0.4b29 and 0.4b30 (released July 25, 2002)
99===================================================================
aa1b1e7f
SP
100
1011. Made dump print out the ext2 logical block number in case of a read
102 error, which can be given as an argument to debugfs' ncheck command,
103 in order to find out the affected inode. Added note about this
104 usage in dump's man page.
ed7c25a3
SP
105
1062. Fixed a problem in restore when reading tapes written on big
107 endian machines with very old versions of dump. The patch was
108 contributed by George Helffrich <george@geology.bristol.ac.uk>.
f75cc889
SP
109
1103. Fixed the tape length calculation when using large tapes
111 and compression. Thanks to Georg Lippold
112 <g_lippold@sourceforge.net> for reporting the bug.
a9c5ed48
SP
113
1144. Added a new set of examples in dump_on_cd_2 directory, based
115 on dump_on_cd examples but somewhat enhanced, supporting DVD
116 media, and localized in english and german. Thanks to
117 Georg Lippold <g_lippold@sourceforge.net> for the new scripts.
118
9ca70cf6
SP
1195. Made dump save 32 bit UID/GID. Internally, this was achieved
120 by switching from the old BSD inode format to the new BSD
121 inode format, which means that the tape format was changed.
122 However, since all restore versions out there should
123 transparently support both inode formats, the change should
124 have no side effects. Thanks to John Yu <jky@cs.bu.edu> for
125 reporting the bug.
a18d5997
SP
126
1276. Fixed a lot of warnings in the code shown when compiling
128 with 'gcc -W'. Thanks to Matthias Andree
129 <matthias.andree@stud.uni-dortmund.de> for reporting this.
130
2a2e321d
SP
1317. Fixed a small markup bug in the dump man page. Thanks to
132 Eric S. Raymond <esr@minx.thyrsus.com> for submitting the
133 patch.
134
153f9a83
SP
1358. Rewrote entirely the man pages using the tmac.an macro
136 package (Linux man page format) instead of the original BSD
137 format. They should be now cleaner and easier to modify.
138
cf88ef4c
SP
139Changes between versions 0.4b28 and 0.4b29 (released June 8, 2002)
140==================================================================
d24dc8af
SP
141
1421. Fixed a problem in the rmt ioctl command, where ioctl's issued from
143 non Linux clients were misinterpreted. The description of the problem
144 (incompatible numbering in Linux mtio opcodes) is documented at
145 ftp://ftp.fokus.gmd.de/pub/unix/star/README.mtio . Thanks to
146