]> git.sur5r.net Git - bacula/bacula/blob - bacula/kes-1.39
- Add complete text of GPL to LICENSE.
[bacula/bacula] / bacula / kes-1.39
1               Technical notes on version 1.39  
2                         Kern Sibbald
3
4 General:
5 26Jun06
6 - Add complete text of GPL to LICENSE.
7 - Implement job report that indicates where Storage and Pool
8   came from -- with overrides and Pool storage and NextPool,
9   it is all very complicated.
10 - Create a few common subroutines for backup.c and migrate.c
11 - Eliminate warning messages from tray-monitor.c
12 25Jun06
13 - Apply fix for scheduler for missing unlock_jobs().
14 - Clean out autoconf caches before rebuilding configure
15 - Fix the FreeBSD pthreads lib define updated by Dan.
16 - Add missing semicolon in src/console/console.c
17 - Add Robert's enhanced version of build-win32-cross-tools
18   as well as his patch file.
19 - Note, the new gcc options are likely to break building of
20   wx-console or the tray-monitor ...
21 24Jun06
22 - Implement Robert's suggestion to suppress printing compile lines.
23 - Detect GCC correctly (I hope)
24 - If using GCC (actually g++) add the following compiler flags
25   -fno-strict-aliasing -fno-exceptions -fno-rtti
26 - Turn on new bsnprintf() code.
27 - Fix crypto when not using openssl. I previously overlooked this.
28 - Eliminate crypto type punning problems by eliminating void * and
29   using uint8_t * instead.
30 - Harden authentication failure in FD by single threading errors
31   and forcing a 6 second wait.
32 - ========= Remove Accept Any Volume ========= directive.
33 - Major cleanup and simplification of regress using shell functions
34   (more tests to be converted to new format)   
35 - Add detection of 64 bit Irix as indicated by user.
36 - Increment catalog database id from 9 to 10.
37 - Add a few of the new database fields to the various C++
38   structures.
39 - Implement code to fill in the most important new fields (e.g.
40   Media Enable).
41 - Ensure that most of the new fields are in create/get/insert/update.
42   More work to be done.
43 22Jun06
44 - Update some very old licenses in src/cats.
45 - Modify the database format for handling Migration jobs:
46    Add PriorJobId, RealEndTime to Job table
47    Delete MAC table
48    Remove Stripe from JobMedia record (not used, wasting space)
49    Add ScratchPoolId, RecyclePoolId, Enabled to Media record
50    Add Cost to Location table.
51 - Delete mac_record subroutines.
52 - Add new table values to create/update/get routines as appropriate.
53 - Update the update_tables and make_tables scripts.
54 - Make a first cut in using a union where multiple pointers (actually
55   pointers to pointers) are stored.
56 - Make some changes to base64.c suggested by Robert and others and add
57   a small amount of documentation.
58 - Add some changes suggested by Peter for Solaris (bregex...)
59 - Make runscript.h always built because it needs to be pulled into
60   more places.  In particular its RES was left out of a union.
61 - Renumber the enum{} list in runscript.h to avoid starting from zero.
62   This makes it slightly easier to detect uninitialized variables.
63 14Jun06
64 - Remove xpg4 lib from FreeBSD build as it is no longer needed and
65   sometimes creates install problems.
66 - Change a couple of %T in strftime to %H:%M:%S as seen in Robert
67   Nelson's code.  More to do.
68 - Convert a few store_bit to store_bool in filed_conf.c.    
69 - DVD tweak to block.c as supplied by Uwe Muessel.
70 04Jun06
71 - Modify configure.in to check for typeof().
72 - In findlib/attribs.c use typeof instead of templates if possible.
73 01Jun06
74 - Implement partial error messages for src/filed/acl.c
75 - Fix return code to fail when doing update barcodes and
76   Pool resource is not found. This previously caused Volumes
77   to be labeled as cleaning tapes.
78 - Small updates to projects.
79 27May06
80 - Add Eric Bollengier patch for new RunScript directive. It breaks
81   compatibility between dird and fd.
82 26May06
83 - Prevent DVD code from rewriting label if the device cannot be
84   opened read/write.
85 - Used __GNUC__ to detect GNU g++ as suggested by John Goerzen to
86   fix Debian build bug.
87 - Fix Dir/SD run race in migrate.c, verify.c, and restore.c
88 - Integrate manpages contributed by Jose Luis.
89 - Update projects file.
90 - Add manpages Makefile.in to configure.in
91 - Remove installation of bacula.8 in scripts directory.
92 24May06
93 - Implement patch submitted by cesarb in bug #606 to implement O_NOATIME
94   support.
95     O_NOATIME is a open() flag which makes it possible to read a file without
96     updating the inode atime (and also without the inode ctime update which
97     happens if you try to set the atime back to its previous value). It also
98     prevents a race condition when two programs are reading the same file, but
99     only one does not want to change the atime. It's most useful for backup
100     programs and file integrity checkers (and bacula can fit on both
101     categories).
102
103     Recent versions of the Linux kernel and glibc have support for it (the
104     glibc support being mostly copying the O_NOATIME definition to
105     bits/fcntl.h). If there's no support for it on the kernel, trying to use
106     it does nothing (since the kernel ignores unknown flags).
107
108     If the kernel has support for it, trying to use it either works, fails
109     silently (mostly in remote filesystems), or returns errno=EPERM (if you
110     are not either the owner of the file or root). A simple way to prevent the
111     failure is to open the file without the flag and set it later with
112     fcntl(F_SETFL), ignoring any EPERM errors.
113 - Applied patch posted by Jaime Ventura to bug #570 to correct failure
114   of restarted jobs to complete (due to a destroyed pthreads conditional
115   variable used by the message thread).
116 - Fixed bug #619 where Bacula would not restart jobs with MaxRestartTimes
117   set to zero. 
118 - Apply patch from John Goerzen bug #611 to fix bad manual links in the code.
119 - Apply patch from Rudolf Cejka bug #614 to removed trailing
120   colons in query.sql file.
121 - Apply patch from Rudolf Cejka bug #613 to correct prunning of files
122   not to create orphans.
123 - Apply patch from Rudolf Cejka bug #617 to use mtime instead of ctime
124   in restore long listing.
125 - Apply patch from Rudolf Cejka bug #609 to use MarkId in verify.c instead
126   of incorrect MarkedId.
127 - Apply patch from adioso bug #616 to correct text in manual (replace
128   Director with File daemon).
129 - Rework a few of the zlib changes so that they build properly.
130
131 21May06
132 - Move DIR "run" command to SD before starting the message thread
133   as suggested by Cristopher Hull to avoid a race deadlock from
134   two threads using the bsock structure.
135 - Modify LICENSE to correct some problems pointed out by Debian.
136 05May06
137 - Correct EOF with no \n lex.c problem.
138 - Tweak compat.h compat.cpp and merge with apcupsd
139 - Add additional INFO messages if autochanger cannot be used.
140
141 02May06
142 - Simplify Win32 Makefile
143 - Correct count of buffers/bytes used by smartall.c
144 - Updated compat.h after porting apcupsd to MinGW.
145 01May06
146 - Work on getting wx-console building on MinGW. wxWidgets now builds
147   started adding Makefile ...
148 - Moved MinGW library objects to src/win32/lib to reduce clutter.
149 30Apr06
150 - Reloading a bad configuration file doesn't kill director any more.
151   Thanks to fix from Eric Bollengier.
152 29Apr06
153 - Fix problem of accents with new Win32 code.
154 - Integrate Howard's VSS patch. Tweak it a bit. VSS now
155   works in the MinGW build with the exception that there
156   is a problem with accented characters -- i.e. there is
157   some mapping problem with wide characters.
158 - The code no longer compiles with Microsoft VC++.
159 28Apr06
160 - Start implementing Christopher's St.Bernard code.
161 - Add Christopher's mods for opening files.
162 - Strip \r \n from Win32 error messages (Christopher)
163 - Add more info about Win32 system if unknown (Christopher)
164 - Use bstrn(cpy, cat) routines to avoid overrun in compat.cpp
165 - Fix a number of incorrect strings marked for translation, when
166   they should not be (e.g. commands).
167 - Fix StartTime bug reported for ClientRunBeforeJob and RunBeforeJob
168   Patches supplied by user in bugs #608 and #599.
169 - Use most recent of st_ctime and st_mtime in restore tree DIR
170   listing. This fixes some problems with Win32 printing incorrect
171   values.
172 - Correct the clock shift comm time calculation between the DIR
173   and the FD. It was added rather than subtracted.
174 - Strip all backslashes in filenames to be restored on Win32
175   machines -- the names should all be in Unix format, and if
176   there are any backslashes it is most likely due to an improper
177   FileSet definition, and the files will not otherwise be 
178   restorable.
179 - Remove lib/regex.c (replaced by bregex.c).
180 - Delete src/win32/License.txt
181 - Modify installer to install LICENSE
182 26Apr06
183 - Fix bug in build-win32-cross-tools script reported by Howard
184 - Implement cross compiled bconsole
185 25Apr06
186 - Fix barcode test, eliminate BOOL (doesn't exist on Linux).
187 - Write first cut of README.mingw32
188 - Add back ua_label barcode fix from Rufolf Cejka.
189 - Integrate the majority of the Mingw cross-tools submission
190   made by Howard Thomson. Everything compiles, with zlib, openssl,
191   and VSS turned off. Linking needs a pthreads library ...
192 23Apr06
193 - Add 'Dir Status' button to the gnome console.
194 - More work on migration.
195 - Restore non-compatible base64 coding to permit compatibility.
196 - Display heap stats in Storage daemon without debug level.
197 22Apr06
198 - Integrate most of the MinGW changes -- more to do.
199 21Apr06
200 - Implement using pg_config for finding PostgreSQL files.
201   Fixes bug #600. Patch supplied by user.
202 - Remove -t option from mktemp in mtx_changer.in and use
203   working directory. Fixes bug #578.
204 - Update job start time after the any run before job so that
205   files created by the script are only backed up once. Fixes
206   bug #599.
207 - Strip trailing newline only from filenames entered in
208   the restore command when reading a file. This permits
209   the user to enter filenames with trailing spaces. Fixes
210   bug #549. The user supplied a patch that I modified slightly.
211 - Use the most recent time (st_mtime, st_ctime) in the dir
212   command in restore. This gives the user a better idea of what
213   the newest file really is. This fixes bug #574. The fix
214   was suggested by the user.
215 - Implement a compatible version of base64. This permits external
216   programs to duplicate Bacula's base64 algorithm using standard
217   routines. This fixes bugs #296, and 565. Patch submitted by   
218   author of bug #565.  
219   ================= Note ========================
220   Previous Signatures stored in the database are no longer
221   compatible with this. The main downside is for Verify jobs,
222   and doing an InitCatalog run will fix the problem. Also, the
223   authentication between the deamons is changed, so all daemons
224   must be simultaneously upgraded.
225   ==============================================
226   If you don't like this fix, set:
227     const bool compatible = true;
228   to
229     const bool compatible = false;
230   in src/lib/base64.c
231 20Apr06
232 - Ensure that DB signature is never NULL.
233 - Ensure that DB table names are not translated.
234 - Fix scheduler to handle time skew (eg daylight savings).
235 - Fix scheduler to use lock_jobs() to avoid most problems
236   with reload. Window is now milliseconds.
237 19Apr06
238 - Apply patch from Christopher Hull
239   - Allow multiple connections to database with different
240     parameters.
241   - Invalidate the scheduler when doing a reload. Fixes seg
242     fault, but still 60 second window.
243   - Additional info in Reschedule message.
244   - Use set_jcr_job_status() everywhere to prevent loss of
245     cancel, error.
246   - Display peer IP in FD if error from connecting DIR.
247   - Don't increment file count for DIRBEGIN.
248   - Replace illegal characters in Win32 filename by _.
249   - Add SE_CREATE_PERMANENT_NAME privilege in Win32.
250   - Hash hard link filenames rather than linked list.
251   - Fix for security failure in chdir on Win32.
252   - Add CreateDirectoryA/W win32 API entry points.
253 - Add /silent option to Win32 FD for Install/Remove service.
254 - Always print Heap statistics in FD.
255 18Apr06
256 - Remove the -f option from the chown in Makefile.in for more
257   portability.
258 - Change setting the group in Makefile.in to use chgrp for
259   more portability.
260 - Implement a write_store and read_store to replace
261   dirstore in reserve.c
262 - Implement a Bacula read/write lock for Python rather
263   than using the Python lock to avoid recursive problems.
264 - Correct the uninstall directory names in filed/Makefile.in
265   as reported by a user.
266 17Apr06
267 - Correct some problems with database creation (new tables).
268 - Replace a bunch of old 0x%x by %p.
269 - Get first cut of Migration with Job selection working.
270 16Apr06
271 - Change store_bit() to store_bool() for the Spooling in 
272   dird_conf.c -- bug reported by Robert Nelson.
273 15Apr06
274 - Correct Makefile bug found by Dan Langille.
275 14Apr06
276 - Correct Makefile for Solaris /bin/sh
277 - Correct mtx-changer.in for Solaris /bin/sh
278 - Abort if a conf resource does not have a Name =
279 12Apr06
280 - Change the name of the regex program to bregex.
281 - Add the bwild program to the tools directory. It is similar
282   to the bregex program.
283 - Implement create bregex.h and bregex.c in src/lib from the
284   Python regexp program.  
285 - Use the new bregex.c to implement Regex expressions on Win32.
286 11Apr06
287 - More work on migration.
288 - Implement wild program in tools directory for testing
289   wild-cards. Almost identical to the regex program.
290 - Up port VSS single thread locking code.
291 - Replace N_(..) by NT_(...) to inhibit translation of
292   commands.
293 - Modify Makefile to change the permissions on Working Directory
294   to 770 if the directory is created.
295 - Do not fail the Makefile if changing the permissions or 
296   owner/group on WorkingDir fails.
297 - Remove early selection of Scratch Volumes in the recycling
298   algorithm.
299 - Correct the old recycling algorithm so that Scratch Volumes
300   are selected when looking for a Volume in the changer.
301 - Correct a typo in the Verify SQL reported by Joe Park.
302 10Apr06
303 - Remove automatic case folding on Windows FDs. You must
304   explictly use the 'Ignore Case = yes' option.
305 - Remove the code added to 1.38.6 and 1.38.7 that pulls a
306   scratch volume in an Autochanger early in the 'recycling'
307   algorithm.  
308 09Apr06
309 - Make weof() and clrerror() methods of class DEVICE.
310 08Apr06
311 - Tweak license to include Microsoft restrictions.
312 - Move mysql.reconnect to after real_connect().  Thanks to
313   Frank Sweetser for the patch.
314 - Disallow a backslash in a File = directive (Windows junk)
315   unless the string is quoted.                     
316 - Apply Eric's patch to ua_label.c so that daemon protocol
317   is not translated.
318 - Add NT_ definition for strings that should not be translated.
319 - Apply NT_() to ua_label.c
320
321 - Remove timed wait for VSS on Win2K3 as it is not yet
322   implemented.
323 - Correct bacula.in script to reference bacula-ctl-xx in the
324   sysconfig directory rather than the bin directory.
325 26Mar06
326 - Fix a long standing bug in the bacula start/stop scripts.
327 - Attempt to add the new bacula-ctl-* files to the rpm.
328 - Switch to using typeof() for list traversing to avoid
329   as many FC5 g++ compiler warnings as possible.
330 25Mar06
331 - Split the bacula start/start script into four files:
332    bacula         -- starts and stops calling other scripts
333    bacula-ctl-dir -- starts/stops the director
334    bacula-ctl-fd  -- starts/stops the File daemon
335    bacula-ctl-sd  -- starts/stops the Storage daemon
336 24Mar06
337 - Create datestyle fix for PostgreSQL. Fixes bug #574.
338 - Correct editing of JobId from int to int64 in fd_cmds.c
339 - Eliminate FileSet name race with bash_spaces() and multiple
340   threads by bashing in a local.
341 - Fix error return from 'use storage' to print a correct error
342   message rather than nothing.
343 - Correct false re-read last block error message when two jobs 
344   are simultaneously writing at the end of a tape.
345 - Simplify exit conditions in the reserve.c code to avoid  
346   possible non-release of reservation_lock().
347 - Suffle lock order in reserve to avoid deadlock between
348   reservation lock and device mutex.
349 21Mar06
350 - Initialize jcr mutex before first use. Thanks to Thorsten for
351   tracking this down for me !!!! as it broke the Win32 build.
352 20Mar06
353 - Integrate addition of line count limitation to bsmtp -l from
354   Sebastian Stark <stark at tuebingen.mpg.de>
355 17Mar06
356 - Implement regex test program in tools directory.
357 - Attempt to fix time problem with bsmtp with foreign langs.
358 - Add strip_trailing_newline() submitted by user.
359 - Implement regex matching in migrate.c
360 16Mar06
361 - Fix bug #537 to allow arbitrary time to mount a volume for
362   restore, if polling is turned on.     
363 - If dir_user or dir-group is specified in ./configure apply it to
364   the working-dir. Fixes bug #533.
365 - If rescheduling a job cancel the previous incarnation with the SD.
366   Fixes bugs #566 and 557.
367 - Fix bug #567 do_message() definition type conflict.
368
369 14Mar06
370 - Add more jcr methods and make mutex and use_count private.
371 - Create lock/unlock methods for jcr.
372 - Fix PostgreSQL bug doing sql_data_seeek() by explicitly reading
373   records to get to seek position.
374 - Integrate patch from bug #561 to correct conio.c signal definitions.
375 - Fix Rescheduling failed Jobs. Ensure that SD message thread 
376   terminates correctly by doing pthread_kill(). Do not destroy
377   SD cond wait variable between executions of the job. Use local
378   mutex for cond variable to avoid blocking jcr chain. Fix poor 
379   use of jcr use count in jobq.c for restarted jobs.
380 - Fix obsolete usage of foreach_dlist() to use foreach_jcr() in
381   lib/jcr.c -- prevents locking the jcr chaing.
382 - Apply patch from bug #564, which corrects listing volumes with
383   multiple autochangers. Apply same fix to next volume list.
384 - Fix bug #562 where restore bootstrap file is not unique.
385 - More details in implementing David's migration syntax proposal.
386 - Save and restore dcr when swapping drives so that if we have
387   a write dcr it is not lost.
388 - Use new routine lock_reservations() to lock the reservations
389   system, and call it while looking for a volume in askdir.c.
390   This could possibly fix bug #543.
391 - Stop SD command loop if job is canceled.
392
393 08Mar06
394 - Remove old code from findlib/create_file.c
395 - Rename mac.c migrate.c
396 - Add user friendly display of VolBytes in job report.
397 - Rename target... to previous... to make it a bit easier to
398   understand.
399 - Add selection type and selection pattern to Migration (idea
400   given by David Boyes). 
401
402 04Mar06
403 - The po files should now be current.
404 - Fix new sql_use_result() code to properly release the
405   buffers in all cases.
406 - Use the keyword ujobid to mean the unique job id; job or jobname
407   to mean the Job name given on the Name directive, and jobid to
408   be the numeric (non-unique) job id.
409 - Allow listing by any of the above.
410 - Add the user friendly job report code for reporting job elapsed time
411   and rates with suffexes from John Kodis <kodis at comcast.net>.
412 - Add Priority and JobLevel as Python settable items.
413 - Use TEMPORARY table creation where the table is created by
414   Bacula.
415 - Add new code submitted by Eric for waiting on specific jobid.
416 - Add ACL checking for the dot commands.
417 - Fix restore of writable FIFOs.
418 - Fix a bug in bpipe where the string was freed too early.
419 27Feb06
420 - Modify the Python class examples to inherit object -- new way
421   of defining classes. Patch from Felix Schwarz.
422 - Implement jobuid to replace old usage of job in keywords as
423   suggested by Eric Bollengier.
424 - Apply patch for enhancing wait from Eric Bollengier. On can now:
425    wait  (wait for all jobs to stop)
426    wait jobid=nn
427    wait jobuid=unique id
428    wait job=job-name
429 - Implement write variables for Python to set Priority (anytime), and
430   Job Level, only during JobInit event.
431 26Feb06
432 - Fix the block listing bug pointed out by Arno.
433 - Update the po files at Eric's request.
434 24Feb06
435 - Fix Maximum Changer Wait, Maximum Open Wait, Maximum Rewind Wait to 
436   accept time qualifiers.
437 - Make catalog respect ACL.
438 - Add recycle count to Media record.
439
440 Changes to 1.39.6-beta1 24Feb04
441 23Feb06
442 - Add Rudolf Cejka's new rc-chio-changer.
443 - Implement pulling Volume from Scratch Pool if the
444   Volume is in the autochanger.
445 - Implement additional command arguments for update Volume.
446
447 Changes to 1.39.5 
448 22Feb06
449 - Back port changes to 1.38.5
450 - Fix recycle SQL for StorageId.
451 - Fix misplaced quote in mtx-changer script.
452 20Feb06
453 - Note. Your database must be updated, or you must create 
454   a new database. I have not yet incremented the database level.
455 - Add Location table. 
456 - Add LocationId, DeviceId, and MediaTypeId to Media record.
457 18Feb06
458 - Implement create/get mac record in database for adding extended
459   Migration data to the job record.
460 - Add new MAC table to update/make database scripts.
461 - Return Storage name used when getting VolumeNames for a job.
462 - Change bsr file keyword Storage to Device, which is more accurate.
463 - Ensure that Mac records are pruned/purged.
464 - Tweak SD tools to deal with changing media type.
465 - Integrate more dev.c subroutines as methods (e.g. strerror, bsr, ...)
466 - Pass pointer to dcr pointer to acquire_device_for_read() so
467   that the subroutine can switch devices, and hence dcrs.
468 - Modify the multiple MediaType read code to re-use the same
469   dcr when switching devices. This makes the code much more
470   robust.
471 - Integrate patch from Karl Hakimian that reads JobIds, FileIndexes
472   from a table for restore.
473 - Add Storage name to VolParams, but it really should be Device.
474 14Feb06
475 - Add disk-changer to scripts directory + configure/Makefile
476 - Eliminate PoolId from jcr -- it is in jcr->jr.PoolId
477 - Implement store_bit scanner to replace store_yesno.  Mostly done.
478 - Implement new store_bool that stores in a bool. 
479 - Add true/false to yes/no conf directives.
480 - Make first cut at changing appropriate store_yesno to store_bool.
481 - Complete implementation of Pool storage devices.
482 - Move starting clones to job.c
483 - Move create_restore_bootstrap_file() to job.c
484 - Make copy_storage() more general to be able to handle
485   Pool storage.
486 - Cleanup a lot of migration code for manual running, including
487   using Pool storage.
488 - Move getting a scratch Volume into a subroutine.
489 - Make all places a Volume that is added to a pool to 
490   respect max vols.
491 - Fix bug in autochanger recycle code (improper edit 64 bit).
492 - Fix segfault in restore command when no value specified.
493 - Start adding code to handle multiple MediaTypes in restore.
494 - Eliminate race condition in getting Volume name for
495   two drive autochanger.
496 - More debug code in autochanger.
497 - Add storage keyword to bootstrap file, add parsing.
498 - Move slot in bsr file into Volume record as there will be
499   a different slot for each Volume.
500 - Create reserve.h
501 07Feb06
502 - Implement Pool storage overrides.
503 06Feb06
504 - Implement first cut of Migration.
505 - Implement mysql_use_result() from patch by Karl Hakimian.
506   This reduces significantly the memory consumption during
507   the restore tree building, and hence runs faster too.
508 - Implement StorageId patch supplied by user (reggie) in bug
509   #536.  This should permit Bacula to work correctly with two
510   autochangers.
511 - Implement Job listing variations suggested by a user.
512 - Move updating bootstrap code in backup.c to subroutine
513   update_bootstrap_file().
514 - Add new job status elapsed time and bytes written user
515   friendly job report output patch sent by John Kodis
516   <kodis at comcast.ne>.
517 - Implement a storage list in Pools.
518 - Separate out setup_job() code from run_job().
519 - Get migration working -- lots of changes in mac.c in both
520   DIR and SD.
521 - Apply patch from user (Eric Bollengier I think) that fixes a  
522   DIR crash when no arguments are supplied to a dot command.
523 - Fix typo (strcpy->strcmp) in ua_prune.c as reported by Martin.
524 - Fix command arg name->volume in label command of gnome-console.
525 - Fix SD acquire.c to release correct DCR by explicitly testing
526   on the dcr address rather than trying to devine if it is a read
527   or write dcr.  This failed in error conditions when the device was
528   not fully setup.
529  
530 30Jan06
531 - Apply user supplied patch for more readable rate output
532   in job report.
533 - Continue implementing migration.
534 - Implement support for removable filesystems in SD.
535 - Ensure that btraceback scripts can be read by anyone.
536 - Replace dvd-freespace and dvd-writepart by dvd-handler.
537 - Correct bug where canceling restore before the FD contacts
538   the SD causes the drive to be left in read mode.
539 - Move ofline_or_rewind into DEVICE::close().
540 - Eliminate close_device.
541 - Convert several dev subroutines to methods (e.g. bsf,
542   eod, ...)
543 - Eliminate force_close_device().
544 - Implement Device Type directive in Device resource that
545   can have values File, Tape, Fifo, DVD, or Prog.
546 - Add has_cap() method to Device.
547 Changes to 1.39.4
548 17Jan06
549 - Add patch from bug #527 to allow RedHat user to specify
550   options/user/group for starting each daemon in      
551   /etc/sysconf/bacula.
552 16Jan06
553 - Add two new queries to query.sql provided by Arno. One
554   list volumes known to the Storage device, and the other
555   lists volumes possibly needing replacement (error, ...).
556 15Jan06
557 - Add periodic (every 24 hours) garbage collection of memory 
558   pool by releasing free buffers.
559 14Jan06
560 - Correct bug counting sized (for display only) in smartall.c
561 - Print FD mempool stats if debug > 0 rather than 5.
562 12Jan06
563 - Make db_lock() mutex error fail the job rather than abort
564   Bacula.  Canceling the job caused the mutex to fail.
565 - Correct bug in alist.c that re-allocated the list if the
566   number of items goes to zero.
567 - Move the reservation system thread locking to the top level
568   so that one job at a time tries all possible drives before
569   waiting.
570 - Implement a reservation 'fail' message queue that is built         
571   and destroyed on each pass through the reservation system.
572   These messages are displayed in a 'Jobs waiting to reserve
573   a drive' list during a 'status storage='.  Note, multiple
574   messages will generally print for each JobId because they
575   represent the different problems with either the same drive
576   or different drives.  If this output proves too confusing
577   of voluminous, I will display it only when debug level 1
578   or greater is enabled in the SD.
579 11Jan06
580 - Add enable/disable job=<job-name>.  This command prevents
581   the specified job from being scheduled. Even when disabled,
582   the job can be manually started from the console.
583 - During 'update slots' clear all InChanger flags where the
584   StorageId is zero (old Media records).
585
586 Beta release 1.38.4:
587 09Jan06
588 - Fix autochanger code to strip leading spaces from returned
589   slots number. Remove bc from chio-changer.
590 - Back port a bit of 1.39 crypto code to reduce diffs.
591 - Fix first call to autochanger that missed close()ing the
592   drive. Put close() just before each run_program().  Fixes
593   Arno's changer bug.
594 07Jan06
595 - Add PoolId to Job record when updating it at job start time.
596 06Jan06
597 - Pull in more code from 1.39 so that there are fewer file
598   differences (the new ua_dotcmds.c, base64.h, crypto.h
599   hmac.c jcr.c (dird and lib) lib.h md5.h parse_conf.c 
600   util.c. Aside from ua_dotcmds.c these are mostly crypto
601   upgrades.
602 - Implement new method of walking the jcr chain. The
603   incr/dec of the use_count is done within the walking
604   routines.  This should prevent a jcr from being freed
605   from under the walk routines.
606
607
608 Changes to 1.39.3:
609 04Jan06
610 - Start implementing Verify list output.
611 - Move the suitable_drive flag to a better place to prevent
612   premature termination of the reservation if all drives
613   are busy -- should fix Arno's diff/inc pool failures.
614 26Dec05
615 - Add mutex to single thread VSS code in Win32.
616 22Dec05
617 - Simplify code in askdir.c that waits for creating an appendable
618   volume so that it can handle multiple returns from the wait
619   code.
620 - Modify the wait code to permit multiple returns.
621 - Return a zero when "autochanger drives" is called and
622   it is not an autochanger.
623 - Make rewind_dev() a method taking a DCR as an argument.
624   This permits closing and reopening the drive if the
625   rewind fails as happens if the drive was loaded while the
626   file descriptor was open. This refreshes the file descriptor.
627 - Remove the ST_OPENED flag and always rely on fd < 0 for knowing
628   if the device is open or not.  This should eliminate
629   Arnos problem.
630 - Return error if reserve cannot find at least one suitable device.
631 - Make wait_for_sysop() return correct state information.
632 - Fix Win32 state file problem. write was not using compat
633   code. This should fix bug #500.
634 21Dec05
635 - Modify gui on command to set only GUI mode and not batch.
636 - Modify .messages command to always print messages regardless
637   of the mode.
638 - If GUI mode is on, suppress automatic printing of 
639   You have messages. 
640 - Delete old bnet packet code.
641 - Ignore new BNET_START_SELECT and BNET_END_SELECT signals in
642   wx-console.
643 - Modify restore command in wx-console to set gui on and to use
644   only .messages instead of messages.  Hopefully this fixes bug
645   #514.
646 - Fix seg fault in exit of acquire when canceling a job --
647   reported by Wolfgang Denk
648 - Pull in latest reservation system changes from 1.38
649 - Make .messages command always print messages regardless
650   of the automessages flag.
651 17Dec05
652 - Fix seg fault if user labels a drive directory bug #513
653 - Remove quotes around Version as it breaks things.
654 16Dec05
655 - Merge in Aleksandar Milivojevic's mods to the spec file.
656 - Apply sparse code fix for raw drives and fifos. Bug 506
657 - Thorsten fixed Unicode cd problem with wx-console bug 505.
658 14Dec05
659 - Correct reservation system to do a last ditch try
660   for any mounted volume, then anyone anywhere.
661 - Add quotes around table Version because of
662   error in MySQL 4.1.15 -- bug report submitted.
663 - Correct some minor problems with btape in the fill
664   command.
665 - Updates to ssh-tunnel from Joshua Kugler.
666 - Added a report.pl program from Jonas Bjorklund.            
667 - Simplify the O_NONBLOCK open() code for tape drives,
668   and always open nonblocking.
669 - Do not wait for open() if EIO returned (shouldn't happen).
670 - Eliminate 3 argument to tape open().
671 - Correct the slot # edited in the 3995 Bad autochanger unload
672   message.
673 - With -S on bscan (show progress) do not divide by zero.
674 13Dec05
675 - Make cancel pthread_cond_signal() pthread_cond_broadcast().
676 - When dcr is freed, also broadcast dev->wait_next_vol signal.
677 - Remove unused code in wait_for_device.  
678 - Make wait_for_device() always return after 60 seconds of wait.
679
680 Changes to 1.39.2:
681 13Dec05
682 - Add stubs for non-crypto build.
683 12Dec05
684 - Use localhost if no network configured
685 11Dec05
686 - Eliminated duplicate MaxVolBytes in cat update -- bug 509.
687 - Remove debug print.
688 - Add bail_out in error during state file reading.
689 10Dec05
690 - Merge changes made to 1.38.3 into HEAD
691 - Add stubs for pygtk-console code
692 - Create Makefile.in for pygtk-console code
693 09Dec05
694 - Merge updates into 1.38 branch
695 - Update specs to include mysql4 define.
696 - Fix when attributes are sent, must be after binit().
697 - Stop read_record() if status not ok in second loop.
698 - Return rec->FileIndex in dcr->VolLastIndex for normal
699   and partial records in read_record().  This allows bscan
700   to get FileIndex at EOT correct.
701 - Fix butil.c to correctly set dcr -- fixes seg fault in bls.
702 08Dec05
703 - Fix Win32 built to work with new crypto code.
704 - Apply patch supplied by user (slightly modified) to fix
705   correct detection of holes in block devices and FIFOs. 
706   Bug # 506.
707 - Apply patch supplied by user (slightly modified) 
708   to fix SD hang with multiple pools and bad client
709   IP. Fixes bug # 508.
710 07Dec05
711 - Add nagios plugin to the examples directory. Submitted by
712   Christian Masopust.
713 - Remove warning message about multiple saves of hardlinked files
714   from find_one.c as it can generate too many warning messages.
715 - Modify most restore error messages to be queued so that they
716   appear at the end of the job rather than mixted with the restore
717   listing where they could be "lost".
718 06Dec05
719 - Reset timeout values before select() per patch from 
720   Frank Sweetser for problems with non-blocking sockets.
721 - Unlink the state file if either reading or writing it gets
722   errors.  Hopefully this will fix Win32 exit problems.
723 - Add sanity check in append.c to ensure that dcr is not NULL.
724   This can happen if multiple drive autochanger SCSI control
725   channel and drive indicies do not correspond.
726 05Dec05
727 - Get next volume from Scratch pool before creating a volume.
728 - Set new Pool defaults in Vol when moved from Scratch Pool.
729 - Remove argument from create_bacula_database for SQLite as it
730   caused an error.
731 - Add back index code so that two drive autochangers can get
732   a second tape.
733 - Change a bunch of debug levels to aid debugging autochangers.
734 - Fix reservation so that mutexes are properly applied.
735 - Rework reservation algorithm so that two drives can be used
736   at the same time.
737 04Dec05
738 - Landon merged his data encription changes into the HEAD
739 - Apply days keyword patch from Alexander.Bergolth at wu-wien.ac.at 
740   If this patch is applied, the number of days can be specified with
741   "list nextvol days=xx"
742   or
743   "status dir days=xx"
744   My use case is to be able to preview the next scheduled job (and the 
745   next tape to be used) on fridays if there are no scheduled jobs during 
746   the weekend.
747 Changes to 1.39.1:
748 03Dec05
749 - Fix font code in gnome2 console user patch. Fixes bug #501.
750 - Fix malformatted bnet error message that caused seg fault
751   fixes bug 502
752 - Applied user patch to improve README.vc8 in src/win32.
753 29Nov05
754 - Add Migrate, Copy, Archive Job types (some where there)
755 - Correct some more editing of JobId's (for 64 bit compatibility).
756 - Ensure that StorageId is stored in Media record when ever possible.
757 - Add Migration Job to Job.
758 - Add Migration Time, Migration High Bytes, Migration Low Bytes
759   Next Pool to Pool resource.
760 - Add more code to mac.c (migration archive copy).
761 - Change Start Storage daemon job to require read and write storage
762   pointers.
763 - Pass read storage data to SD as well as write storage data.
764 - Remove old code from winservice.cpp
765 - Break on error in scan.
766 - Fix typo in signal.c
767 - Separate read/write DCR in SD.  Add jcr->read_dcr.
768 - Cleanup how find_device() works.
769 - Add read output to Status in SD.
770 Changes to 1.39.0:
771 23Nov05
772 - Add red-black btree routines
773 21Nov05
774 - Remove abs() in bfile.c so that it compiles on Solaris. 
775   Bug #491.
776 20Nov05
777 - Fix crash in tray-monitor when daemon disconnects. Bug #479.
778 - Fix bnet-server bug found on OpenBSD. Bug #486
779 - Fix cancel failure bug. Bug #481
780 - Fix failure when Pool name has spaces. Bug #487   
781 - Fix SD crash in autochanger code. Mutex failure. Bug #488
782 - Fix a couple of free()s in src/filed/acl.c
783 - Fix memory overrun in bfile.c in building OS X resource
784   fork filename. Bug #489 
785 - Add Pool name to SD status output.
786 14Nov05
787 - Apply SunOS patch for ACLs submitted by David Duchscher.                  
788 - Make sure to set storage before trying to set drive.
789 - Add bacula_mail_summary.sh to examples directory. It makes
790   a single email summary of any number of jobs. Submitted
791   by Adrew J. Millar.
792 - Make sure when we do a mount to unblock the device even
793   if the drive could not be opened.  
794 13Nov05
795 - Remove the USE_WIN32STREAMEXTRACTION #defines (always on)
796   and correct a few minor problems to make it build on Linux.
797 10Nov05
798 - Remove delete of CVS from all Makefiles
799 - Fix seg fault when clicking on Add button in wx-console
800   restore panel.  Bug #470.
801 - Fix copyright date and URL typo -- bug #468.
802 - Change autostart install for FreeBSD to look for rc.conf  
803   rather than rc.local as suggested fix for bug #466.
804 - Apply patch supplied by Eric Bollengier to fix PostgreSQL    
805   grant on status. Bug #465
806 - Apply patch supplied by Eric Bollengier to fix PostgreSQL
807   update script. Bug #464
808 - Tweak #ifdefing a bit in new Win32 stream code.
809 - Fix #ifdeffing for FD_NO_SEND_TEST.
810 - Add documentation of performance #defines