]> git.sur5r.net Git - bacula/bacula/blob - bacula/ReleaseNotes
4a9f72cbd1519ef47eb8fc6efe11ab1108eee811
[bacula/bacula] / bacula / ReleaseNotes
1
2           Release Notes for Bacula 2.0.0
3
4   Bacula code: Total files = 438 Total lines = 154,329 (*.h *.c *.in)
5
6 ==== IMPORTANT Catalog update required =====
7 - The database format has been updated from what was used in    
8   Bacula 1.38.x.  You must manually update your database before 
9   running Bacula 1.39.x or higher.  If you are using Bacula supplied
10   RPMs this is not necessary as the RPM does it automatically.
11   Please backup your previous version of the database before
12   running the update.  The update script will be automatically
13   installed in your scripts directory, or can also be found in
14   <bacula-source>/src/cats.  It is called:
15
16      ./update_bacula_tables
17
18   It is necessary to run it only once the first time you move to
19   a 2.0.0.  Upgrading the Bacula version thereafter does not
20   require updating the database again.  Depending on the size of
21   your database the script make take a bit of time, to run, but
22   in general, it should be very fast.
23
24 ==== IMPORTANT new Win32 install procedure =====
25   For Win32 migrations from versions prior to 1.39.0 nothing special
26   needs to be done to upgrade.  Everything should be taken care of
27   automatically.  The only thing not done is to delete the old C:\bacula
28   directory mostly out of paranoia.
29
30 ==== IMPORTANT miscellaneous ====
31 - The Gnome console program (gconsole) no longer functions as it
32   should.More importantly, in restore mode, the restore tree is
33   no longer shown in the left pane.  I suspect this is due to
34   incompatible changes in the GTK+ API, and hence have given up
35   on gnome and gtk+, as this has already happened several times
36   previously.  At some point there will be a new GUI console.
37 - The bacula-dir.conf directive Accept Any Volume has been
38   removed because it was never implemented. You must delete all
39   occurrence of this directive for the Director to run. The Storage
40   daemon will automatically accept any valid Volume that you mount.
41 - The --mandir ./configure option now points to the top level man
42   directory.  The man files will be installed under mandir/man8 and
43   mandir/man1 as appropriate.
44 - You *should* be able to use 1.38.x FDs with version 2.0.0 Director
45   and SD providing you do not use any of the new features (runscript,   
46   data encryption). It seems to work here, but we do not guarantee it.
47 - Your Director and SD must be simultaneously upgraded.
48 - The restore command no longer uses the MediaType as the primary method
49   of finding a suitable Storage device. Normally it will select the last
50   device used to write a Volume. If no storage device is defined, it
51   will use the old algorithm which selects the first Storage resource  
52   with the correct MediaType.
53 - The MD5/SHA1 hash codes kept in the database are now kept in a binary
54   format compatible with the rest of the world. If you are running verify 
55   jobs, you *must* do an InitCatalog or all files will show an MD5   
56   difference.  Also, authentication uses the new algorithm by
57   default, but *should* accept connections from older components (FD) using
58   the old non-compatible algorithm. This has been tested, but more
59   more testing is still needed.  
60 - A stock SuSE 10.1 kernel may crash when Bacula runs and accesses
61   the tape drive. Workaround, load the SuSE 10.1 version 2.6.16.21-0.25
62   kernel or later. The SuSE 10.2 Alpha 5 or later kernel also works.
63   This problem may also be present in certain Fedora FC5 kernels.
64 - If you have been using the data encryption feature of 1.39.x, please
65   be aware that certain combinations of encryption and other options
66   with version 1.39.0 through 1.39.26 created Volume data that cannot
67   be restored. We strongly recommend that anyone using encryption 
68   carefully review his/her backups and at a minium do a Full backup
69   with 1.39.28 of all encrypted data.  Robert Nelson has identified 
70   and fixed it as follows:
71      As of 1.39.27:
72         No filters = Works fine
73         Sparse = Works fine
74         Compression = Works fine
75         Encryption = Works fine
76         Sparse + Compression = Works fine
77
78         Sparse + Encryption = Restore broken
79         Sparse + Compression + Encryption = Restore broken
80         Compression + Encryption = Restore broken
81
82      As of 1.39.28:
83         Most combinations work, but some encrypted files are
84         not properly restored.
85
86      As of 1.39.30:
87         All combinations work fine except Sparse+Encryption.
88
89   Bottom line, if you are using data encryption, please test restoring
90   data to be sure it all works correctly.
91 - The current Volume format written by 1.39.22 is different from
92   the format written by previous versions. The two formats
93   are not compatible. Thus any DVDs written prior to 1.39.22 will
94   be unreadable by version 1.39.22.
95 - If you previously run a Bacula version prior to 1.39.30, the JobMedia
96   data may not be correct for disk Volumes. This can cause incorrect
97   seeking in versions after 1.39.30. If you experience what appears to
98   be data I/O or integrity errors during restores, please add the
99   following directive to your disk DEVICE resource in the Storage
100   daemon conf file:
101
102     Block Positioning = no
103
104   This will turn off all seek requests during restores and avoid
105   this problem.
106 - VSS for Windows clients is now enabled by default.
107 - Do not unload autochanger when doing "update slots"
108 - Implement mount command for autochanger, see manual.
109
110 New Features in 2.0.0:
111 - Turn on disk seek code for restores.
112 - Bacula now support Migration jobs that are documented in a new
113   Migration chapter in the manual
114   http://www.bacula.org/dev-manual/Migration.html
115 - Data encryption is now implemented and is documented in
116   a new chapter of the manual at:
117   http://www.bacula.org/dev-manual/Bacula_Data_Encryption.html
118 - Additional support for removable devices.  See the 
119   Requires Mount, Mount Point, Mount Command, and Unmount
120   Commands in the Storage daemon configuration chapter:
121   http://www.bacula.org/dev-manual/Storage_Daemon_Configuratio.html
122   Also see the Edit Codes for Mount and Unmount Directives in the
123   same chapter.
124 - Switch the Win32 build from using Microsoft C++ to using mingw32
125   cross-compiling.  The initial work was done by Howard Thomson,
126   then tweaked by me.  Robert Nelson then totally reworked the
127   cross-compiling code so that it not only cross-compiles, but
128   also compiles on Visual Studio, and at the same time, he added
129   all the current Unix features to the FD, such as selection on
130   drives, encryption support, building *all* the tools, ...
131 - The Director and Storage daemon have now been ported to Win32.
132   This code is working but should still be tested carefully
133   before putting into production.
134 - Bacula restore and bextract can now extract non-portable Win32 data to
135   any client (including Unix/Linux clients). Of course, in doing so,
136   the Microsoft specific permissions and ACLs will be lost.  Thanks
137   to Thorsten Engel for this code.
138 - The 260 character limitation for Win32 paths name lengths is now 
139   eliminated thanks to Thorsten Engel. However, if you are using
140   Volume Shadow Copy, please be careful to specify all the paths
141   in the bacula-fd.conf file using a full path notation including
142   the drive letter.
143 - Eric Bollengier wrote new RunScript directives that includes
144   the old RunBefore/AfterJob and ClientRunBefore/AfterJob features
145   plus a *lot* more, allowing you to control just about every aspect
146   of running scripts.  See the manual for detailed documentation.
147   http://www.bacula.org/dev-manual/Configuring_Director.html#5227
148 - SunOS ACLs should now work thanks to a patch from David Duchscher.
149 - Apply days keyword patch from Alexander.Bergolth at wu-wien.ac.at
150   If this patch is applied, the number of days can be specified with
151   "list nextvol days=xx"
152   or
153   "status dir days=xx"
154   This can be used to preview the next scheduled job (and the
155   next tape to be used) on Fridays if there are no scheduled jobs during
156   the weekend.
157 - From Eric Bollengier. One can now using the bconsole wait command do:
158    wait  (wait for all jobs to stop)
159    wait jobid=nn
160    wait jobuid=unique id
161    wait job=job-name
162 - Volumes can now be set to Enable, Disable, or Archive. If they
163   are not enabled, Volumes will not be mounted.             
164   Implement update volume enable=(on|off|true|false|archived|0|1|2)
165 - Add Catalog message destination in Messages resource that puts the
166   job report in the Log database table.
167 - Writing/reading DVD Volumes is much more stable -- to the point
168   of being useful. Thanks to Richard Mortimer.
169 - Add enable/disable job=<job-name>.  This command prevents
170   the specified job from being scheduled. Even when disabled,
171   the job can be manually started from the console.
172 - The database Id records should be 32/64 bit independent now. 64 bits
173   can be enabled by changing one define and changing the appropriate
174   table variable. Normally, you need 64 bits only for FileId.
175 - Relative path specifications (i.e. ../xxx) are now permitted in
176   the restore cd command.
177 - When running multiple simultaneous jobs, most jobs that use spooling
178   will now finish faster due to a mutex optimization made by Eric
179   Bollengier.
180 - Conf files containing UTF-8 marker at the head of the file as well as
181   conf files containing Window cr/lf and Mac cr line termination characters 
182   are now accepted thanks to Robert Nelson.
183 - Windows tray status windows are scrollable and resizable.
184 - Win32 external script execution is much more flexible -- handles
185   spaces in names better, ...
186 - Lots of DVD fixes -- writing DVDs is now reported to work.
187 - Fix opening of database in a restricted console to respect     
188   any Catalog ACL.
189 - Much better automatic handling of multiple database catalogs in
190   the restore command.
191 - Permit multiple console/director resources in bconsole.conf.
192   patch from Carsten Paeth calle@calle.in-berlin.de
193 - Character substitution in Job/JobDefs WriteBootStrap.
194   from Eric Bollengier.
195 - Apply patch supplied in bug #656 to pass priority field
196   in the run dialog to the Director in gnome console.
197 - Add support of encrypted data stream to bscan from Eric.
198   display data_len instead of data content (may be binary).
199 - Add Enabled=xxx on update slots command.
200 - Add host:port to connect failure messages to FD and SD from Dir/
201 - Add WhereACL to console ACL list.  If nothing is specified, only
202   the default is permitted for restore. Otherwise, *all* allows any
203   path, or you can specify permitted paths. This should allow control
204   over where users can restore files. This is untested.
205 - Install man pages with 'make install'.
206 - Add Media.Enabled flag to client backups for dotcmds.c
207 - Enforce Media.Enabled=1 for a current restore to work
208 - Require restore case 3 to have sqlquery permission to work.
209 - Add -n option to bconsole to turn off conio -- used in bweb.
210 - The bytes field in the terminated jobs part of the status
211   command now reports in KB, MB, ... units.
212 - When not descending into a directory, print the File= name that
213   triggered it -- makes why not descending a bit clearer
214 - Do not unload autochanger when doing "update slots"
215 - Implement mount command for autochanger
216 - Fix bug #462 incorrect error message printed when client script called
217   from File= was not found.
218 - Fix bug #558 (waiting for feedback) where Bacula needs too much time to
219   do a rewind on Solaris when no tape is in the drive (Solaris does not
220   have the detailed errno found on Linux).  Added Solaris specific code.
221   Note, this may apply to other OSes as well.
222 - The examples directory has a new bacula_mail_summary.sh file that
223   creates a single email summary of any number of jobs. Submitted by
224   Andrew J. Millar.
225 - Add nagios plugin to the examples directory. Submitted by
226   Christian Masopust.
227 - Modify most restore error messages to be queued so that they
228   appear at the end of the job rather than mixed with the restore
229   listing where they could be "lost".
230 - Apply patch supplied by user (slightly modified) to fix
231   correct detection of holes in block devices and FIFOs.
232   Bug # 506.
233 - Added a report.pl program to the examples directory from Jonas Bjorklund.
234 - Add two new queries to query.sql provided by Arno. One
235   list volumes known to the Storage device, and the other
236   lists volumes possibly needing replacement (error, ...).
237 - Implement new code for changing userid and group at startup. This
238   should get Bacula into the correct groups.
239 - Implement support for removable filesystems -- device type directive
240   and mount, unmount directives.
241 - Transfer rates are now presented in a more readable format thanks
242   to a user submission.
243 - SD is now aware of what volumes are mounted. More information is printed
244   in the Status report. You must take much more care now to unmount
245   devices prior to removing tapes that Bacula has open or prior to
246   changing a magazine. Don't forget to do a mount afterwards or the
247   device will be blocked.
248 - The Pool Maximum Volumes directive is now respected in all places.
249 - A Storage device can now be specified in a Pool resource. It will override
250   all other Storage specifications.
251 - Most but not all directives accept true/false in place of yes/no.
252 - A patch from Karl Hakimian that reads JobIds, FileIndexes
253   from a database table for restore.
254 - There are a number of new tables. Some such as the Location table are
255   designed for user use in doing Volume Management software.
256 - Maximum Changer Wait, Maximum Open Wait, Maximum Rewind Wait to
257   accept time qualifiers.
258 - Implement jobuid to replace old usage of job in keywords as
259   suggested by Eric Bollengier.
260 - Implement write variables for Python to set Priority (anytime), and
261   Job Level, only during JobInit event.
262 - Use the keyword ujobid to mean the unique job id; job or jobname
263   to mean the Job name given on the Name directive, and jobid to
264   be the numeric (non-unique) job id.
265 - Allow the SD to use multiple drives during a backup/restore (only
266   one at a time).
267 - Integrate addition of line count limitation to bsmtp -l from
268   Sebastian Stark <stark at tuebingen.mpg.de>
269 - Split the bacula start/start script into four files:
270    bacula         -- starts and stops calling other scripts
271    bacula-ctl-dir -- starts/stops the director
272    bacula-ctl-fd  -- starts/stops the File daemon
273    bacula-ctl-sd  -- starts/stops the Storage daemon
274 - Remove automatic case folding on Windows FDs. You must
275   explicitly use the 'Ignore Case = yes' option.
276 - Implement wild program in tools directory for testing
277   wild-cards. Almost identical to the regex program.
278 - Use the new bregex.c to implement Regex expressions on Win32.
279 - Apply patch from Christopher Hull
280   - Allow multiple connections to database with different
281     parameters.
282   - Invalidate the scheduler when doing a reload. Fixes seg
283     fault, but still 60 second window.
284   - Additional info in Reschedule message.
285   - Use set_jcr_job_status() everywhere to prevent loss of
286     cancel, error.
287   - Display peer IP in FD if error from connecting DIR.
288   - Don't increment file count for DIRBEGIN.
289   - Replace illegal characters in Win32 filename by _.
290   - Add SE_CREATE_PERMANENT_NAME privilege in Win32.
291   - Hash hard link filenames rather than linked list (performance).
292   - Fix for security failure in chdir on Win32.
293   - Add CreateDirectoryA/W win32 API entry points.
294 - programs to duplicate Bacula's base64 algorithm using standard
295   routines. This fixes bugs #296, and 565. Patch submitted by
296   author of bug #565.
297 - Fixes to reloading the Dir conf file from Eric Bollengier and Christopher
298   Hull.
299 - Modify LICENSE to correct some problems pointed out by Debian.
300 - Apply a patch submitted by cesarb in bug #606 to implement O_NOATIME support.
301     O_NOATIME is a open() flag which makes it possible to read a file without
302     updating the inode atime (and also without the inode ctime update which
303     happens if you try to set the atime back to its previous value). It also
304     prevents a race condition when two programs are reading the same file, but
305     only one does not want to change the atime. It's most useful for backup
306     programs and file integrity checkers (and bacula can fit on both
307     categories).                                                    
308   You enable it in the Bacula FileSet Options resource by setting:
309      noatime = yes
310   The effect of this option is similar to the keepatime option except
311   it is more efficient and avoids modifying ctime.
312 - Implement a pile of new man pages contributed by Jose Tallon.
313 - Modify the database format for handling Migration jobs:
314    Add PriorJobId, RealEndTime to Job table
315    Delete MAC table
316    Remove Stripe from JobMedia record (not used, wasting space)
317    Add ScratchPoolId, RecyclePoolId, Enabled to Media record
318    Add Cost to Location table.
319    Enabled to Media table and Location table.
320 - Security: harden authentication failure in FD by single threading errors
321   and forcing a 6 second wait.
322 - If using GCC (actually g++) add the following compiler flags
323   -fno-strict-aliasing -fno-exceptions -fno-rtti
324 - Turn on new bsnprintf() code.  The reason for this code is to
325   eliminate the security problems associated with using the
326   system libraries print routines.
327 - Implement job report that indicates where Storage and Pool
328   came from -- with overrides and Pool storage and NextPool,
329   it is all very complicated.
330 - Add more detail (Storage, Device) to list of volumes printed
331   for restore.
332 - Add new VOLMGMT message class. No messages are yet sent with this 
333   class.
334 - Improved Bacula rescue procedures -- see the Disaster Recovery
335   chapter of the manual
336 - Add spooling/despooling info in status output of SD.
337 - Add Comment field to llist of a volume.
338 - Allow true/false in many but not all yes/no directives.
339 - The Bacula source code is now copyrighted by the Free Software 
340   Foundation Europe. The Developer's Guide documents the new procedures,
341   and the LICENSE file has been updated.
342 - Apply Jaime Ventura's patch that implements the Messages resource
343   Mail On Success directive.
344 - The Client returns its Version string, which is printed in the Job
345   report.
346 - The Client returns whether or not VSS and Encryption are used, which
347   are printed in the Job report.
348
349 Additional Features Added for Win32:
350 - Added DriveType directive to the Director's Include Option FileSet
351   resource.  Allowed values are: fixed, removable, cdrom, and remote.  There
352   is only an implementation for Windows because it is the only platform that
353   has the concept of drives.
354  
355 - Adds EnhancedWild directive to the Director's Include Option FileSet
356   resource.  Allowed values are: yes and no.
357  
358   When EnhancedWild is enabled then the processing of the
359   Wild, WildDir and WildFile is changed in the following ways.
360  
361   Patterns conform to Posix
362       \ is not a special character in character classification []
363       To match a - it must be the first or last character
364       To match a ] it must be the first character
365  
366       fnmatch option FNM_FILE_NAME is specified * doesn't match a / 
367       so it won't match multiple directory levels in a path
368  
369 - Relative WildFile patterns (ones without a leading /) match
370   against the filename portion.  This in combination with the
371   FNM_FILE_NAME fnmatch() flag makes directives such as WildFile =
372   abc*.def work as expected.
373  
374 - Adds support for the shell's feature of brace expansion.
375
376   Here is an example where braces allow 24 lines to be expressed in 5.
377
378   # Exclude directories full of lots and lots of useless little files
379   WildDir = "[A-Z]:/{Documents and Settings,{WINNT,Windows}/Profiles}/*/Cookies"
380   WildDir = "[A-Z]:/{Documents and Settings,{WINNT,Windows}/Profiles}/*/Recent"
381   WildDir = "[A-Z]:/{Documents and Settings,{WINNT,Windows}/Profiles}/*/{Local Settings,LOCALS~1}/History"
382   WildDir = "[A-Z]:/{Documents and Settings,{WINNT,Windows}/Profiles}/*/{Local Settings,LOCALS~1}/Temp"
383   WildDir = "[A-Z]:/{Documents and Settings,{WINNT,Windows}/Profiles}/*/{Local Settings,LOCALS~1}/Temporary Internet Files"