]> git.sur5r.net Git - bacula/bacula/blob - bacula/ChangeLog
- Apply Martin's patch for fixing console modifications to Verify Jobs.
[bacula/bacula] / bacula / ChangeLog
1 Changes to 1.35.5:
2 22Sep04
3 - Incremented the release number because this version requires
4   an update to the database.
5   Use:
6     cd src/cats
7     ./update_bacula_tables  
8   to update an existing database.
9 - Implemented EndFile and EndBlock in the Media record. This will
10   allow Bacula to know exactly when to stop reading a tape if the
11   stupid tape driver does not give a logical end of tape indication 
12   and Bacula writes to the end of the tape getting an I/O error.
13 - Added new routines to update the database, and there are
14   new database creation routines to add the two new Media columns.
15 - The Media record is updated each time a JobMedia record is created.
16   This keeps the Media record up to date.
17 - Undid the code to use automatic type converions to char * in
18   POOL_MEM. This is due to the ugly consequences of essentially
19   destroying the class type nature of the class.
20 - Removed all the old mp_char() #define code.
21
22 Changes to 1.35.4:
23 22Sep04
24 - Add additional doc.
25 - Implement automatic POOL_MEM type conversion to char *. Thanks
26   to Martin Simmons for the suggestion.
27 - Remove some unneeded function overloading -- need removed by
28   automatic type conversion.
29 21Sep04
30 - Correct segfault in message.c with debug=200 (new code).
31 - Fix bug 109 verify with no options prints garbage.
32 - Add ioctl(MTIOCGET) call to clrerror_dev() in dev.c. As reported
33   by Frank Kardel, this should clear error conditions on NetBSD.
34 20Sep04
35 - Modify the rescue script to create mount_drives with
36   the order specified by Philip Nash (mkdir, mount).
37 - Tweak install chapter of French manual to add new paragraph
38   from English.
39 - Tweak restore tree message to be a bit clearer.
40 - Modify watchdog to wakeup after 60 seconds, or wakeup if
41   there is work to do.
42 - Modify watchdog stop routine to "ping" watchdog so that it
43   stops immediately rather than after sleep time.
44 - Fix btape to use new dcr blocks rather than its own.
45 - Fix butil.c to correctly handle Volume names for the
46   utility routines (broke when updating to dcrs).
47 11-19Sep04 (vacation)
48 - Implement multiple Storage specifications in the Job resource
49   (AND) each containing multiple specifications (OR). Not yet functional.
50   Note, this needs more work as most things now use
51   job->storage[0]->first() rather than looping through devices.
52 - Implement "Multiple connections = yes/no" in Catalog record for
53   allowing multiple simultaneous connections to the database.
54 - Add new mac.c (Migrate, Archive, Copy) to dird -- not yet implemented.
55 - Implement a new POOL_MEM class that automatically allocates
56   and deallocates a pool buffer.
57 - Overload a number of utility routines to permit using both
58   POOLMEM and POOL_MEM.
59 - Start converting to using POOL_MEM.
60 - There were a number of Bacula console ACL checks missing in
61   ua_run.c. It allowed users to run jobs they really should not.
62 - Correct a number of dates on the Copyright.
63 - Overload pm_strcpy() and pm_strcat() to handle new POOL_MEM
64   class.
65 - Overload bash/unbash_spaces to handle new POOL_MEM class.
66 - Make a *MASSIVE* pass through the Storage daemon eliminating
67   all use of jcr->VolumeName and jcr->VolCatInfo in favor of
68   dcr->...  
69 - Eliminate all all redundant arguments from calling sequences
70   in SD. This poses a number of problems due to the old way blocks
71   and records were allocated and released all the time. They are
72   now contained in the dcr. The problem is that old habits die hard
73   and there are still places where everything is not right.
74 - Implement "Block positioning = yes/no" in Device resource in SD.
75
76 Changes to 1.35.3:
77 09Sep04
78 - Add "Multiple Connections = yes/no" in catalog record. Only
79   the variable is implemented, no code yet.
80 - Close *all* FD unless debug on. 
81 08Sep04
82 - Add first cut of UTF-8 support to conio. It "seems" to be working
83   pretty well. Moving by words will definitely not work though.
84 - Improve detection and setting of gateway in the 
85   network_start script.
86 07Sep04
87 - Modify scan code so that in most places scanning will
88   continue across the end of a line.
89 05Sep04
90 - Begin major phase of 1.35 documentation.
91 - All outstanding bugs are fixed.
92 - Implement changes and improvements to rescue scripts as
93   proposed by Gaurav.
94 05Sep04
95 - Add correction to Phil's previous patch.
96 - Send all queued messages in SD and FD prior to closing down    
97   the job.
98 - Send queued messages in Jobs before terminating the job 
99   so that the messages print before the job report.
100 - Add a destructor so that the Console ACLs are properly
101   freed.
102 04Sep04
103 - Implement isolinux boot disk.
104 - Integrate Phil Stracchino's code (thanks for Matt's help).
105   It permits lists and ranges of jobids on the delete as in:
106   delete job jobid=1,3,5,11-16
107 03Sep04
108 - Apply Mike Acar's suggestion when looking for the next volume
109   to check purged volumes for recycling before doing a purge.
110 - Make some improvements to CDROM disk.
111 - Take another crack at ignoring drive open() errors during
112   polling.
113 02Sep04
114 - Add eliminate orphaned job records; eliminate admin records,
115   and eliminate restore records to dbcheck.
116 - replace sprintf by bsnprintf() in dbcheck.
117 - Added scan target to makefile in rescue cd to print scsi
118   devices.
119 - Added argument to berrno::strerror() to pass errno.
120 - Cleaned up a few more old strerror() calls and eliminated a
121   few of the now unnecessary set_errno() calls.
122 - Fixed a bug in the polling code that prevented more than 100
123   label reads (insanity check disabled if polling).
124 - Ignore bad return from open_device() if polling.
125 - Short circuit code if fatal error return from read_label() in
126   mount.c
127 01Sep04
128 - Add index file to JobId field of File records for PostgreSQL.
129 - Correct several bugs in the job queue scheduler concerning   
130   rescheduled jobs: 1. The SD status was not cleared causing a
131   wrong status to be displayed by Dir after rescheduling. 2. All
132   rescheduled jobs became zombies because the jcr use_count was
133   not decremented properly.
134 - Make the Catalog resource required in Client records.
135 - Order the listing of where a file is (item 2 on the restore
136   menu) by StartTime.
137 - Clarify when a filename only and a full path + filename must
138   be entered in items 2 and 8 of the restore menu.
139 - Fix logic error in resolution of names on IPv4 systems.
140
141 Changes to 1.35.2 released 01Sep04:
142 30Aug04
143 - Inhibit printing of FileSet for a restore as it is misleading.
144 - Cleaned up a number of minor scripting problems with the CDROM
145   creation.
146 - Fixed a race condition causing a Director crash on termination,
147   if a large number of SIGHUPs were sent during a multiple concurrent
148   set of backups.
149 28Aug04
150 - Completed integration of Rescue CD scripts with Bacula source.
151 28Aug04
152 - Added Ignore FileSet Changes = yes
153 - Added more error checking to the spooling code.
154 24Aug04
155 - Applied a patch from Peter Eriksson that removes a dynamic stack
156   allocation (replaced by alloca) and fixes some const problems.
157 - Fixed a free() of a static variable in the new IP code bnet.c
158 - Got the new Bacula Rescue CDROM booting.
159 - Replaced a dynamic template by a simple store when using the
160   native C compiler.
161 - Reworked some of the block.c error handling.
162 - Changed a Dmsgx(000, to Dmsgx(100 in dev.c that was dumping
163   debug output on a user.
164 - Integrated patch from 1.34.6 block.c to 1.35
165 17Aug04
166 - Fix conio.c problem on Solaris.
167 - Add debug code to lock_jcr_chain().
168 - Lock jcr chain around less code.
169 - Implement call by reference for Mmsg() and pm_strxxx() to
170   simplify calls.
171 - New IP address specification is used as follows:
172     [sdaddresses|diraddresses|fdaddresses] = { [[ip|ipv4|ipv6] = { 
173            [[addr|port] = [^ ]+[\n;]+] }] }
174
175   so it could look for example like this:
176      SDaddresses  = { ip = {
177             addr = 1.2.3.4; port = 1205; }
178         ipv4 = {
179             addr = 1.2.3.4; port = http; }
180         ipv6 = {
181             addr = 1.2.3.4;
182             port = 1205;
183         }
184         ip = {
185             addr = 1.2.3.4
186             port = 1205
187         }
188         ip = {
189             addr = 1.2.3.4
190         }
191         ip = {
192             addr = 2001:220:222::2
193         }
194         ip = {
195             addr = bluedot.thun.net
196         }
197      }
198   as a consequence, you can now specify multiple IP addresses and
199   ports to be used. In the case of a server, it will listen on
200   all those that you specify. In the case of connecting to the server,
201   Bacula will attempt connecting to one at a time until it succeeds.
202   And, in a few other special cases, Bacula will use only the first
203   address specified.
204
205   The default port numbers are still the same and the services and hosts 
206   are also resolved by name. So now  you could use the real names for the 
207   port numbers.
208
209 Changes to 1.35.1:
210 14Aug04
211 - Print error message if Alert Command fails in bpipe_open().
212 - Doc Alert command.
213 - Eliminate unnecessary class in findlib/attribs.c
214 - Add necessary empty files to new tray-monitor directory.
215 13Aug04
216 - Implement Class with template in findlib/attribs.c to do casting
217   of uint64_t into stat packet types to avoid compiler warnings.
218   Thanks to Meno for this idea.
219 - Make some modifications to satisfy VC++.
220 - Apply Martin Simmons' second patch to compat.cpp to fix the line
221   I previously missed.
222 - Apply Meno's fix to bnet that corrects use of ipaddr after free_addresses,
223   back out my kludges, and it works.
224 - Modified configure.in to by default add -Wall.
225 12Aug04
226 - Found some problems with printing IP addresses -- will notify Meno.
227 - Added printing Pool to Job report.
228 - Fixed several places where dlists were not being released 
229   (term_job_server, ...)
230 - Started implementing New() for dlists. Spent a lot of time,
231   but could not get it to work.
232 - Fixed a mutex deadlock between the job queue scheduler and the
233   watchdog.
234 - Made add_address() static.
235 - Added bsnprintf to address_conf.c
236 10Aug04
237 - Apply Marin Simmons patch to inet_aton() in compat.
238 06Aug04
239 - Build on Win32 -- required a few changes because of new IP code.
240 - Implement program reader code in Dir and FD -- not tested, and
241   a few corrections for writer code are needed in FD.
242 - Rework SQL for pruning. Add Admin pruning. Prune failed
243   jobs in Verify and Restore.
244 - Don't put commas in listing produced in restore so that users
245   can cut and past JobIds without having commas in the way.
246 - Change size_t to socklen_t in filed.c -- reindent a bit.
247 - Remove addr_list->size from buf size definition in bnet.c
248 - Create a Developer's document.
249 - Add prompt for Update volume from pool and update all 
250   Volumes from pool.
251 05Aug04
252 - Implement user friendly time duration input editing.
253 - Add buf len argument to edit_utime().
254 - Added eliminate orphaned Client records to dbcheck.
255 04Aug04
256 - Implement Alert Command in SD Device conf. 
257 - Fix updating a Volume from the pool record -- it never changed
258   anything.
259 - Implement updating all Volumes from pool record.
260 - Add patch by Denis Shaposhnikov that fixes excludes of directories
261   in new style FileSets.
262 03Aug04
263 - Merge Meno's IPv6-1 code.
264 - Update License to terminate rights of anyone suing a GPL licensor.
265 - Add Pruning doc sent by Bryce Denney
266 - Correct inconsistencies in restore command doc pointed out by user.
267 - Don't edit commas in SQL intergers if they are not stricly integer.
268 30Jul04
269 - Update all pools in all DBs when starting the Director.
270 28Jul04
271 - Implement final cut of berrno and update Win32 code.
272 - Update copyright to include a termination clause. Add copyright to
273   binaries.
274 - Implement .backups client=xxx for Nicolas.
275 27Jul04
276 - Make first cut at implementing berrno class to handle Unix, Win32
277   and bpipe errors. Bpipe still needs to be implemented.
278   This fixes (not yet tested) the Win32 errno problems in the compat lib.
279 - Fix btape compile problem reported by Martin Simmons -- thanks.
280 - Add ./configure detection of sys/tape.h
281 26Jul04
282 - Apply two fixes to recent changes to dev.c submitted by
283   Martin Simmons.
284 24Jul04
285 - Add checks in btape for correct size of off_t, and correct editing
286   of 32 and 64 bit values.
287 - Move supported OS/hardware into a chapter by itself.
288 - Fix bscan, which did not handle walking dcr list.
289 - Remove old attach_jcr_to_device() code.
290 - Fix config from Andy Wettstein's patch to use bitypes.h and detect
291   uint32_t, ... definitions.
292 - Fix a few compiler warnings because of casting pointers to int and
293   vise versa.
294 - Do some minor cosmetics to query.sql. nothing changed.
295 - Don't call stop_thread_timer() in backup.c if timer not started.
296 - Fix bug with out of order JobIds on restore.
297 - Make watchdog examine queues once every 10 seconds instead of once
298   a second.
299 22Jul04
300 - Add more bools to dev.c
301 - Fix walking attached DCRs in bscan.c
302 21Jul04
303 - Doc updates
304 - Start work on rescue files. Integrated RAID changes. 
305 - Print a message when query.sql moved to query.sql.old during install.
306 - Move setting of FreeBSD chflags() to after utime() to avoid error
307   messages is immutable bit is set.
308 18Jul04
309 - Turn off heartbeat in FD when -s is given so that we can 
310   debug without a flood of signals.
311 - Close and reopen the device during an append test in
312   btape. This better tests appending as if Bacula stops/restarts.
313 - Remove old attach/detach_jcr_to_device() code
314 - Add new attached_dcrs code.
315 - Remove unnecessary subroutine for bsnprintf.
316 - Replace sprintf() by home-grown code in edit_uint64 ...
317 - Begin implementation of dev->attached_dcrs. 
318 17Jul04
319 - Remove scripts/fd.in from configure.in
320 - Add printing of JobId when a Job is started from the console.
321 16Jul04
322 - Remove fd/fd.in from scripts directory.
323 - Fix a number of bugs in dbcheck concerning the -c option
324   (i.e. with a config file).
325 - Made RH start scripts use -u and -g options.
326 - Many more DCR changes.
327 - Add job message indicating that the job has been rescheduled
328   and when.
329 - Fix job end time so that it is always updated. Previously it
330   was not updated when a job was rescheduled.
331 - Correct SQL for restoring job by path/name. It could sometimes
332   pickup the wrong JobId -- submitted by a user.
333 - Add a number of "%s" in editing database errors -- security issue.
334 - Ensure that the NumVols is incremented and decremented in the
335   pool record when Volumes are created or deleted.
336 - Cleanup error handling when labeling a tape. If vol was read-only,
337   the device would still be marked as having found a label.
338 09Jul04
339 - Put ftCreationTime into st_ctime of stat packet. Hopefully
340   this will fix the problem of noticing files have been moved
341   into the save path after a Full save.
342 - Fix bug in "status dir" where not all entries are listed.
343 - Cleanup some improper result printing in configure.
344 - Optimize a couple of insertions in binary_insert of dlists.
345
346 Release 1.35.0 08 July 2004:
347 08Jul04
348 - Apply Christopher Hull's const patch for PostgreSQL
349 - Add code to block.c to detect if block header is destroyed.
350 - Add debug code for memset checking for zeroing 1900-3000 bytes
351   which is what happened to the block headers.
352 - If block header is destroyed, read the next block. Probably
353   should return with new status similar to the SHORT block 
354   return.
355 - Add more debug info to bls for bad blocks.
356 - More implementation of DCRs.
357 07Jul04
358 - Eliminate argument passing in SD by using dcr.
359 - More int->bool conversions.
360 - Add file:block to a number of read/write error messages.
361 04Jul04
362 - More int -> bool conversions.
363 - Modify the SD piece by piece to use DCRs everywhere.
364 - Cleanup some printout for query command. 
365 - Fix typo in cats/mysql.c
366 - Work on cleaning up tape driver a bit (use bools, better calling
367   sequences).
368 - Attempt to fix multi-Volume disk backup. Needs to be tested.
369 01Jul04
370 - Add Regular expressions to FileSet options.
371 - Correct configure.in to use ${MAKE} for doing the dependencies.
372 - Make MySQL and PostgreSQL try for 30 seconds to connect before
373   giving up.  
374 - Correct Gnome 1.4 Makefile to build without cats library.
375 - Correct a crash reported (with patch) by Jonathan Soong 
376   when attempting to backup an ACL on a symlinked file.
377 27Jun04
378 - Fixed an off by one bug in the new resources pointer code.      
379   res_head array was one too small.
380 - Added Errors to last_job list. This allows detecting jobs
381   that terminated in a warning.
382 - Implement setting the Win32 icon to yellow instead of red
383   when the job terminated OK but with warnings.
384 - Fix the Win32 makefile and VC project file. The links were
385   not including the Win32 dlls.      
386 - Delete some old Win32 code that was turned off.
387 - Eliminate a few more Win32 compiler warnings.
388 - Reduce the output produced by NIS (Win32 install builder).
389 - Simplify some of the #ifdefing in compat.h
390 26Jun04
391 - Rewrite spooling error handling when I/O error occurs. It is
392   a bit tricky, requiring to truncate the file so that a despooling
393   will work correctly. Needs to be tested.
394 - Make better subroutines for setting up for a new job.
395 - Start putting all DB ids on #defines (going to 64 bits).
396 - Fix gnome-console Makefile.in to work again.
397 - All "level=Incremental/Decremental" to the estimate command. This
398   required some re-arrangement of subroutines at a fairly low level.
399 25Jun04
400 - Apply Piotr Jaworski's patch (patch-r-status.diff) to update the
401   catalog status when a backup job starts running.
402 24Jun04
403 - Add (char*) cast to readline call in console.c for old readlines.
404 - Copy Makefile.in from gnome2-console to gnome-console (to eliminate
405   need for cats library).
406 - Modify spooling code to handle write error (e.g. spooling disk full)
407   more gracefully. Previously despooling would fail.
408 22Jun04 
409 - Reduce casting in smartall.c a bit and add counters for 
410   bytes, max_bytes, buffers and max_buffers.
411 - Fixed reload algorithm to stack both job end callback and the
412   table id.
413 - Fixed the orphaned buffer after reload (job_end_push had to be
414   destroyed.
415 - Destroy cond var (jcr->term_wait) only if initialized.
416 21Jun04
417 - Sort the Scheduled Jobs list by start-time, priority.
418 - Implement resources on a pointer.
419 - Fix Gnome console crash on up/down arrow with no history.
420 19Jun04
421 - Finish first cut of SIGHUP code. To make really work need res
422   on a single pointer rather than in fixed memory.
423 - Fix a number of places in query.sql where multiple JobIds are
424   printed (due to JobMedia records).
425 - Add new query: List jobs on Volume given Volume name.   
426 - Correct socket close on Win32 in bnet.c (in addition to compat.cpp).
427   Caused fd leak in Win32 for each connection.
428 - Remove vol labeled test in askdir update_volume_info so that non-labeled
429   Volume in catalog can be marked in error.
430 - Close socket in SD when connection rejected. Caused fd leaks.
431 - Initialize job_start_wait cond variable after every new_jcr() otherwise
432   NetBSD gets error in library when trying to delete it without being inited.
433 - Fix typo (9 instead of 0) return status in write_new_volume_label.
434 - Fix mount.c to call routine that correctly marks a volume in error.
435 - Move code to rewrite volume label to subroutine -- a bit cleaner.
436 18Jun04
437 - Finish implementation and testing of new restore tree code.
438 - Implement feedback while tree is loading.
439 - Eliminate printing INFO message in UpdateDB (cats) -- it generates
440   "false" error messages.
441 - Eliminate some GTK error messages when running the Gnome2 console.
442 16Jun04
443 - Begin restructuring tree.c for inclusion of the binary_insert()
444   routine.         
445 - Apply Peter Eriksson's lib file order changes in linking for IRIX.
446 - Abort configure if Internal is  selected as the database.
447 - Add testimonials to the Web page
448 - Add the bugs list to the Web page "lists".
449 - Clarify the English in SuSE and Slackware when SD not running.
450 15Jun04
451 - Applied another extern "C" patch from Peter Eriksson.
452 - Fixed a bunch of VC warning messages.
453 - Applied the patches sent by Andreas Jellinghaus: build Gnome and  
454   wx-console in client-only build if configured; add ./configure option
455   to permit setting of sbin modes -- default is 0745 as before; remove
456   cats library from Gnome console build; remove old version from Gnome
457   About box. Thanks Andreas.
458 14Jun04
459 - Applied Peter Eriksson's const changes to the source code. Thanks Peter.
460 - Implemented a binary_insert() method for dlists -- intended to be used
461   in the restore tree routines.
462 - Turned on my bsscanf() code, which replaces sscanf() by my routines, which
463   are a subset of sscanf() used by Bacula, but which have known 32/64 bit
464   behavior rather than vendor dependent !@#$%*.
465
466 2004-07-30 Version 1.34.6 28Jul04 Release
467 28Jul04
468 - Fix a restore bug where the backups could be
469   applied out of proper order possibly restoring an old version
470   of a modified file.
471 - Fix for restore selection of a file by name, where it was
472   possible to select a file from the wrong Client.
473 - Fix segmentation fault during backup of a symbolic link
474   with ACLs turned on.
475 - Fix a minor compile error in wx-console.
476 - Fix a bug in despooling when the spooling disk partition becomes
477   totally filed or gets I/O errors.
478 - Fix a memory leak in PostgreSQL, and make Bacula retry 5 times if
479   connecting to the DB fails.
480 - Retry 5 times if connect to MySQL failes.
481 - Fix linking the gnome-console
482                                                                                       
483 2004-06-22 Version 1.34.5 21Jun04 Release
484 21Jun04
485 - Fixed Gnome crash on up/down arrow with no history.
486 - Fixed btape "fill" crash with multiple tape option.
487 19Jun04
488 - Fix a number of places in query.sql where multiple JobIds are
489   printed (due to JobMedia records).
490 - Add new query: List jobs on Volume given Volume name.   
491 - Correct socket close on Win32 in bnet.c (in addition to compat.cpp).
492   Caused fd leak in Win32 for each connection.
493 - Remove vol labeled test in askdir update_volume_info so that non-labeled
494   Volume in catalog can be marked in error.
495 - Close socket in SD when connection rejected. Caused fd leaks.
496 - Initialize job_start_wait cond variable after every new_jcr() otherwise
497   NetBSD gets error in library when trying to delete it without being inited.
498 - Fix typo (9 instead of 0) return status in write_new_volume_label.
499 - Fix mount.c to call routine that correctly marks a volume in error.
500 18Jun04
501 - Eliminate printing INFO message in UpdateDB (cats) -- it generates
502   "false" error messages.
503 - Eliminate some GTK error messages when running the Gnome2 console.
504 16Jun04
505 - Apply Peter Eriksson's lib file order changes in linking for IRIX.
506 - Abort configure if Internal is  selected as the database.
507 - Add testimonials to the Web page
508 - Add the bugs list to the Web page "lists".
509 - Clarify the English in SuSE and Slackware when SD not running.
510 15Jun04
511 - Applied the patches sent by Andreas Jellinghaus: build Gnome and  
512   wx-console in client-only build if configured; add ./configure option
513   to permit setting of sbin modes -- default is 0745 as before; remove
514   cats library from Gnome console build; remove old version from Gnome
515   About box. Thanks Andreas.
516
517 2004-06-09 Version 1.34.3 09Jun04 Release
518 12Jun04
519 - Enhance regression scripts.
520 - Apply Tim Oberfoell's ACL patch.
521 11Jun04
522 - Implement bsscanf() because sscanf on FreeBSD amd64 stores
523   in 64 bit words for %ld. Turned on for the moment only for
524   FreeBSD amd64.
525 - Fix all conversions of ptr to int to use (long unsigned) this
526   works on i386 and amd64.
527 - Add mtimeonly and keepatime to new Options list -- omitted before.
528 - Add a bit more authentication debug code.
529 - Start variable name/overload cleanup in SD
530 - Fix sscanf() in askdir.c scanning into bool to use local int.
531 - Make max_spool_size int to allow proper arithmetic.
532 - Remove trailing junk on sscanf() of "Hello Start Job" in SD.
533 - Make ask_sysop_to_mount_volume() always ask sysop.
534 - In SD mount.c, if get I/O error or read label error on non-removable
535   Volume, mark the volume in error and retry. 
536 - In SD mount.c, if non-removable volume, never ask sysop to mount. We
537   ask sysop if there are no appendable Volumes though.
538 - The above 3 items fix the looping error Bacula would get if the
539   Volume was in the catalog but didn't exist -- or was zero bytes 
540   long.
541 10Jun04
542 - Implement | and < in FD for new FileSet files.
543 - Implement simplistic attribute spooling statistics in status.
544 - Make storage=xxx on restore override the restore default.
545 - Fix an uninitialized stack variable in append.c that caused data
546   corruption on amd64 machines and *could* cause the same on other
547   machines.
548 - Fix a seg fault in automatic tape labeling.
549 - Eliminate a PoolId=nn when zeroing the InChanger flag for a Volume.
550 - Add a bit more debug info to bls.c
551 - Clear InChanger flag during "update barcodes" if no VolName present,
552   i.e. no Volume in Changer.
553 - An update pulled in Christopher Hull's fixes to the client program          
554   execution on Win32 to search the path and use COMSPEC.  New rules
555   apply!
556 - Fix UpdateDB to complain if mum_rows < 1 rather than != 1.
557
558
559 2004-06-09 Version 1.34.3 09Jun04 Release
560 09Jun04
561 - Add missing FT codes in new FileSet callback, which caused error
562   return on unchanged directories.
563 08Jun04
564 - Fix "update volumes" move from one pool to another.
565 - Change default search location for PostgreSQL -- thanks
566   to Hans-Ulrich Schaefer.
567 06Jun04
568 - Zero Slot if not autochanger in stored/mount.c
569 - As a last ditch effort to mount the next tape in mount.c, zero slot
570   and ask sysop.                 
571 - Win32 status was picking up the first status in the list job terminated
572   jobs instead of the last.
573 05Jun04
574 - Add additional fields to llist pools
575 - Correct some minor label scan problems with update slots
576 - Ensure correct Pool is used with tape cleaning prefixes.
577 - Eliminate false error message in update slots (slots taken as
578   Storage device).
579 02Jun04
580 - Print "Unimplemented" message if user does reload command in Console.
581 - Add DISTINCT to Volumes for restore in query message (user supplied fix).
582 - Fix crash in btape during read after fill -- important bug.
583 - Turn config parse ABORTs into ERROR_TERM in Storage daemon.
584 - Add dbcheck enhancements submitted by Mano Abels and
585   Jose Luis Tallon.
586 - Update autoconf files to latest version.
587 01Jun04
588 - Modify jobq scheduler to require exclusive use of the Storage device
589   before starting it.
590 31May04
591 - Eliminate a few compiler warnings on Win32
592 - Change Win32 to use btimers instead of timers.
593 - Remove two returns in void subroutines in wxbconfigpanel.cpp
594 30May04
595 - Apply Christopher Hull's check for error return from open_bpipe()
596   in filed/job.c
597 - Be sure to clear *all* bits in hourly when an hour is given.
598 - Apply a user fix to query.sql
599 - Check status code returned from _open_osfhandle in compat
600 28May04
601 - Apply Peter Eriksson's bug fixes.
602 - Add Alpha (tru64) submitted by Scott Bailey.
603 - Update manual
604 - Add new Autochanger to list supported
605 - Cleanup src dir better after glade trashes it with junk
606 - Make another attempt to get hourly, daily, ... keywords working
607   intuitively and correctly.
608 - Prevent seg fault when no job name specified on "status job"
609 - Rename timers.h/.c in lib to prevent conflict on some machines
610 - Trap NULL DCR in block.c
611 - Add additional info to failed btape test pointing user to manual.
612 - Undefine DCR, which is defined on some stupid systems.
613 - Fix stored/dircmd.c not to quote Volume name on label query so that
614   "update slots scan" works right (the quotes confused it).
615 - Fix autochanger.c not to attempt to unload a slot if the prior loaded
616   request returned -1.
617 01May04
618 - In testing for Mike Acar's problem. I *finally* found and nailed
619   the mount command that did not release a waiting job. The return
620   of a stolen lock forgot to broadcast.
621 - In examining Mike Acar's problems, it appears that the Bacula                      
622   block size is not always set to a multiple of 1024. I've modified
623   block.c to do so.
624 30Apr04
625 - Add Excludes to new FileSet handling.
626 - Fix bsmtp.c to correspond to RFC-2821 by removing extra spaces.
627 29Apr04
628 - Implement new style FileSets in both the Director and in the
629   File daemon. No filters yet. Both old and new styles work.
630 28Apr04
631 - Apply the fixes Chris Hanson sent for mtx-changer and for detecting
632   PostgreSQL on debian.
633 - Rework File Options document
634 - Re-begin work on File Options.
635 - Add define for nl_langinfo in configure
636 - Add additional tape drives sent by Jesse.
637 27Apr04
638 - Modify syslog in win32/compat to throw up a MessageBox().
639 - Inhibit sending daemon messages to stdout if Win32 is set.
640 - PostgreSQL performance updates from Volker Goetz
641 - DB script updates suggested by Dan
642 - Doc updates
643
644
645 2004-04-26 Version 1.34.2 24Apr04 Release
646 24Apr04
647 - Get production build on Win32 of wx-console working -- mostly a problem
648   of getting the paths right and installing and building wxWidgets.
649 23Apr04
650 - Make SD utility programs accept device name as well as archive device
651   on command line.
652 - Update docs
653 22Apr04
654 - Fix one off bug in StartBlock in bscan -- thanks to Gregory Brauer for
655   reporting this.
656 - Remove old debug code from Win32 FD.
657
658 2004-04-20 Version 1.34.1 20Apr04 Release
659 18Apr04
660 - Found and fixed SD crash during restore.
661 - Added FreeBSD Bare Metal Recovery documentation by Alex Torres 
662   Molina and others.
663 - Added nice graphics produced by Aristedes Maniatis giving an
664   overall view of Bacula.
665 - Changed textdomain to be "bacula" in all progs.
666 - Fixed a major race condition in the job scheduler when multiple
667   simultaneous jobs is enabled. This occurred only when on job had
668   blocked another because of resource usage. This caused a deadlock
669   and CPU usage. Reported by Michel Meyers.
670 - Changed the backup report to indicate "Backup OK -- with warnings
671   if any warning messages were generated.
672 - Change output of restore report to indicate:
673   "Restore OK -- warning file count mismatch"
674 - Make backup report say "Backup OK with warnings" if either FD or SD
675   report any non-fatal errors.
676 - Modify bscan to print some elementary statistics (#Jobs, #Files, ...)
677   added to catalog.
678 16Apr04
679 - Modify bscan to print some elementary statistics (#Jobs, #Files, ...)
680   added to catalog.
681 15Apr04
682 - Added --enable-wx-console and updated Makefile.in
683 - Fix mtx-changer so that the calling sequence is compatible
684   with the previous version (the new one required arguments that
685   were not necessarily used).
686 - Document how to use stunnel with Bacula.
687 13Apr04
688 - Fix crash in query command.
689 - Remove schedule from the default restore job.
690 - Fix data spooler to use min/max tape blocking factors.
691 - Automatically turn of conio if library not found instead of bombing.
692 - Cleaned up a lot of copyright dates.
693 - Try to keep spool statistics from going negative.
694 - Integrated wx-console code from Nicolas Boichat.
695 09Apr04
696 - Added new Pools chapter. Doc about using two disks.
697 - Attempt to keep the spool file statistics size from going 
698   negative.
699 -8Apr04
700 - Fix the Director's Scheduled Jobs: list to have a ===
701   termination.
702 - Fixed ./configure to disable readline rather than stop if 
703   readline.h is not found
704 - Fixed a typo in the SQLite database update script as reported
705   by Robert J. Clark - thanks.
706 07Apr04
707 - Removed src/win32/pthreads and src/win32/zlib from the source
708   tree.
709 - Created a new depkgs-win32 that has the pthreads and zlib source
710   code.
711 - Removed the JobDefs from the default Restore job as it has a
712   schedule. Thanks to Matt Howard for this.
713
714
715 2004-04-06 Version 1.34.0 06Apr04 Release
716 06Apr04
717 - Turn off SIGQUIT in console.
718 05Apr04
719 - A good number of document updates.
720 - Fixed the order which multiple files are accepted for 
721   inclusion in the restore tree due to the fact that PostgreSQL
722   returns files in a different order from their insertion.
723 02Apr04
724 - Fix autochanger test in btape. It used old editing routines.
725 - Fix run_program to return 0 if program runs and no output.
726 - Add more debug to run_program.
727 - Make signal debug print signal string.
728 01Apr04
729 - Build console with client-only build.
730 - Add better error messages to some of the db_xxx routines.
731 - Apply Christopher Hull's patches for proper Win32 shutdown.
732 - Eliminate True and False in favor of true and false.
733 - Put correct thread id in jcr once the correct thread is running.
734 - Zap head and tail pointers in dlist when everything is removed.
735 - Rework sm_dump() so that it won't overrun a buffer when editing
736   and error message.
737 - Fix watchdog to properly remove entries while walking the
738   dlist chain.
739 - Fix termination of last_jobs list by removing broken code.
740 31Mar04
741 - Update dbcheck to fix Paths without a trailing slash and Filenames
742   with a trailing slash.
743 30Mar04
744 - Add -p option to all SD programs including bacula-sd. It causes
745   Bacula to proceed or forge on in case of I/O errors. It is unlikely
746   this will help, and it is strongly recommended against running
747   the daemon with this option in production.
748 - Tweaked the Makefile not to create the gnome directories except
749   when doing a gnome install.
750 28Mar04
751 - Implement Qmsg() queuing of messages to prevent recursion especially
752   for bnet.c where recursion is fatal.
753 - Add detection of ncurses if the termcap lib is not found.
754 - Tweak winabout -- start cleanup.
755 - Fix dlist again, when list is destroyed, be sure to null head and
756   tail pointers.
757 27Mar04
758 - Make the default for restore to have nothing marked.
759 - The "all" keyword on the restore command marks everything by
760   default.
761 - The "done" keyword on the restore command prevents user interaction
762   with the tree routines -- used mainly for scripting (regression ...).
763 - Correct a bug in the last_sibling code.
764 - Add alphabetic sorting of siblings so the "dir" and "ls" commands
765   during restore show files in alphabetic order.
766 25Mar04
767 - Based on Mike Acar's suggestions rework tree insert routines. Improve
768   performance by using a last_sibling link for inserts.
769 24Mar04
770 - Apply corrected SQL to sql_get.c supplied by Dan Langille.
771 - Implement "delete job jobid=xxx jobid=yyy ..."
772 - Implement "purge volume=xxx volume=yyy ..."
773 - Fix buffer overrun in query string substitution.
774 22Mar04
775 - Fix bad format %s instead of %d for editing new slot in update volume.
776   Reported by Vadim Zotov.
777 - Better error diagnostics in ./configure for detecting termcap library.
778 20Mar04
779 - Restore old sql.c split_path and file name since it seems to have
780   broken the Verify stuff.
781 19Mar04
782 - Hunt down missing free_locked_jcr() in SD that caused zombies.
783 - Modify status outputs to be more consistent for zombie checking.
784 - Add tests to regression script for zombie jobs.
785 - Set EIO in dev_errno for all error returns when bad data found. This
786   fixes ERR=Success messages.
787 - Make error messages all contain ERROR for easy regression testing.
788 - Add sanity check in DIR for VolFiles becoming smaller.
789 18Mar04
790 - Second cut GTK+ restore GUI. Ready for testing but much more to do.
791 - Phil reported an sql path length=0 message. This broke saves of 
792   /  -- fixed in scan.c
793 - Fixed seg fault in btape "test" due to missing allocation of dcr.
794 - Tweaked some btape messages.
795 - Sort Volume names in Job report according to the order they were
796   written -- user request.
797 17Mar04
798 - First cut GTK+ restore GUI.
799 - Applied bsmtp patch supplied by a user. Thanks.
800 - Made a new split_path_and_filename() subroutine -- in lib/scan.c
801 15Mar04
802 - Fix "typos" in RedHat install-autostart Makefile.in
803 13Mar04
804 - Added two tar files that Phil sent for adding slackware support.
805   Thanks Phil and Matt Howard.
806 - Fix relabel command -- || should have been &&.
807 - Correct once more the scheduling algorithm -- this time it should
808   be much better.
809 12Mar04
810 - Implement simple spool statistics printed by "status sd".
811 - Cleanup/add spool error messages.
812 - On multiple ctl-c, exit from console quickly.
813 - Implement code to select a different Volume in the SD if the
814   current Volume is busy -- requested by Patrick Cole.
815 - Change postgreSQL make tables to use bigint instead of integer 
816   for StartBlock and EndBlock because
817   there is no unsigned integer in postgreSQL and these fields use 32 bits.
818 - Implement multiple drive autochanger support -- prompted by email of
819   Patrick Cole.
820 11Mar04
821 - Update version and date in Win32 build.
822 - Fix bug in run_conf with month range zapping wday and wom.
823 - Correct editing of port for PQsetdbLogin in postgresql.c as reported
824   by J. Conroy, and do a second try.
825 10Mar04
826 - Integrate Phil's Makefile patch.
827 - Add SpoolDirectory to SD Device resource.
828 - Add MaximumJobSpoolSize to SD Device resource.
829 - Add MaximumSpoolSize to SD Device resource.
830 - Implement the above.
831 - Make despooling lock the device so only it writes
832   to the device during despooling.
833 09Mar04
834 - Data spooling now passes the regression tests.
835 - Added "Files Expected" to the restore job report.
836 - Implemented SpoolData = yes/no in the Job resource
837 - Implemented SpoolData = yes/no in the Run overrides.
838 - Note, you must have a 1.33.4-09Mar05 SD or later with the Director since
839   the DIR->SD protocol has changed to support data spooling.
840 - Remove the confusing "Which DBMS do you want to use (please select only one):"
841   messages from ./configure.
842 - Fix broken Jmsg with missing argument in find_one.c
843 08Mar04
844 - Second cut data spooling code.
845 - Fix missing piece of yesterday's patch.
846 07Mar04
847 - Integrate patches supplied by Jason Conroy that fix Slot numbers 
848   getting lost.
849 06Mar04
850 - This version contains a *major* addition to the SD structures.
851   Many variables have been moved out of the JCR into a new DCR
852   (Device Context Record). This required quite a few changes, and 
853   introduced a bit of instability. In the end, after a few more
854   rounds of changes, the DCR will replace virtually all arguments
855   to the low level SD read/write routines. This change permits
856   (with a bit more code) the SD to write to multiple devices at
857   the same time for a single Job. It also facilitates adding the
858   data spooling code.
859 - Added a patch that fixed the port specification for postgresql.
860 - Fixed findlib/find_one.c so that it will complain about backing
861   up a hard linked file twice, which makes a restore impossible.
862 - Tighten up permissions on pid file.  
863 - Attempt to avoid warnings when casting 64 bit pointers to an
864   integer.
865 - Added skeleton code for data spooling.
866 - Make sure spooled attributes are discarded on error.
867 03Mar04
868 - Updated getdiskinfo in rescue/linux to handle the fact that the
869   sfdisk -s option now includes info on partitions. Also, before 
870   creating the diskinfo files, clean out the old ones.
871 02Mar04
872 - Add debug and error output to jobq.c
873 - Fix some minor errors in debug output of scheduler.c
874 - Add "trace on/off" command and modify trace code in message.c
875   to work off trace flag rather than #defines.
876 01Mar04
877 - If console is found during install warn user (new name is bconsole).
878 - On install copy console.conf to bconsole.conf if it exists.
879 - Make RunAfterJob error non-fatal.
880 - Rework minor details in status output.
881 - Attempt to define all values for "consoles" in JCR to avoid
882   confusion.
883 28Feb04
884 - Use net start bacula to start Bacula on WinXP/NT/2K 
885   systems after installation. 
886 - Change a few strcpy()s to bstrncpy()s in signal.
887 - Add "gui on/off" command to console to turn on gui mode,
888   which will adapt Bacula better to batch or gui programs.
889   Currently, it prevents commas from being inserted into
890   numbers in the list command.
891 - Tweak some of the Makefiles so that the install is done with
892   the right program (nothing really changed).
893 - Install logrotate in the "make autostart" of Bacula on RedHat.
894 - Implement SIGHUP while jobs are running. It *seems* to work but is
895   a bit fragile and still crashes if you push it. More work needed.
896 - Applied Phil's GNOME 1.4 patch. Very clean. Thanks Phil.
897 - Major updates to the native Win32 installer.
898 27Feb04
899 - Restructure free of conf resources to handle job_end_push()
900   and SIGHUP.  Lots of changes little substance.
901 26Feb04
902 - Add mtimeonly=yes/no and keepatime=yes/no to Include list           
903   1.33 style.
904 - Allow no modifier in time and size specifications.
905 - Attempt to implement disk seeking. More work needed.
906 - Implement more in win32 installer and test it.
907 25Feb04
908 - Implement kb, mb, and gb modifiers for size, which mean
909   1,000 bytes, 1,000,000, ... bytes.
910 - Add Makefile to src/win32 to allow building the full 
911   release -- it calls nmake where appropriate.
912 - Remove the rsi directory from win32 as suggested by Christopher
913 - Add Michel Meyers' nsi file to win32 and integrate it with
914   the build.
915 24Feb04
916 - Add the frigging _O_BINARY to the right variable. Win32 works!
917 - Add debug code to state file. There is a problem with Win32 read
918   returning one byte less than it should.
919 - Implement a number of new functions for alist so that it has
920   equivalent functionality to dlist.  It will be used for
921   job_end_push().
922 - More work on state file. 
923 - Added a popup message box on Windows if Bacula Aborts.
924 - Attempt to shutdown the FD server, but doesn't work on Windows. This
925   would have given a cleaner shutdown, no problem.
926 23Feb04
927 - Update projects
928 - Attempt to fix state file on Win32 -- no luck.
929 - Add HPUX tweaks to configure.in 
930 - Update quickstart and install.wml of doc.
931 - Eliminate extern int h_errno from bnet.c by including netdb.h
932 - Eliminate NumJobs from last_job structure so that FD and SD
933   correctly report what is in the state file.
934 22Feb04
935 - Implement daemon state file, and save/restore last_jobs list.
936 - Fix time routines in win32 compat.cpp
937 - Fix a bug of not checking the bpipe_open() status in do_shell_expansion().
938 21Feb04
939 - Add Volker's bacula script to the SuSE directory and convert it
940   to bacula.in
941 - Make LockRes() and UnlockRes() use read/write locks and have
942   debug info to trace locking and unlocking.
943 - Begin work of implementing SIGHUP. It is now enabled for
944   the Director and works only if there are no jobs running,
945   in addition, if the new conf file is incorrect, it will
946   terminate Bacula. Much more work to be done.  I've figured
947   out a scheme to implement it with running jobs without
948   adding individual semaphores or use counts.  
949 - Sort "list jobs" by StartTime rather than JobId, which can
950   be random.
951 16Feb04
952 - Add a lot of "const" to char * arguments to keep the native
953   Sun compiler happy.
954 - Added first cut of message queuing to prevent recursion in
955   low level routines. This code is not yet working.
956 - Spent a *huge* amount of time looking at the tape driver
957   code in the wake of several reports of tape labels getting
958   trashed. The code looks fine.
959 - Created a tape with an error (by writing a block at the
960   beginning of a tape that had valid data), and found that
961   Under Linux there is no way to read past an I/O error.
962   I tried mt; I tried my own program (btape); and I tried
963   using scsitape, which talks directly to the scsi driver.
964   This is *VERY BAD* news.
965 - I spent an *enormous* amount of time enhancing the btape
966   test program as well as making the fill command work with
967   both one and two tapes and the autochanger if configured.
968   The multiple tape fill test is now quite comprehensive.
969   It checks the last block on the first tape, the first block
970   on the second tape, and the last block (11) on the second
971   tape.
972 - Teaked the tape driver for several functions to use the 
973   OS driver's notion of mt_file if there is an error.
974 13Feb04
975 - Add DB update scripts retrieved by Scott to a new updatedb
976   directory at the top level.
977 - Add -p option to bcopy to allow ignoring errors on input.
978 - COALESCE(xx,0) does not work on PostgreSQL because the 0 is not a 
979   correct time. Replaced by adding LastWritten IS NULL to the sort
980   line as was first suggested by JML.
981 12Feb04
982 - Use COALESCE(LastWritten, 0) in sql_find.c to get NULLs to sort last.
983   See note above.
984 - Add write/read and positioning test to btape "test" program.
985 10Feb04
986 - Fix bad printf of InChanger flag reported by Pascal Pederiva.
987 - Fix bad indexing off stack in authenticate.c reported by
988   Pascal Pederiva.
989 09Feb04
990 - Add \n to hosts.access reject message.
991 - Implement security message class and make hosts.access message use
992   that class.
993 08Feb04
994 - Fix check_memory bug in ua_query.c, which gives a bus error on Solaris.
995   This affected only the query command.
996 07Feb04
997 - Added backup to cdwriter script to examples provided by Johan Decock.
998 - Fixed a bug where ls really did lsmark (just invert command table
999   entries).
1000 - Fix bug where a soft linked file and a directory had the same name
1001   by treating the soft link as a directory and putting the entries under
1002   it. This fixes the bug reported by Alexander Mueller.
1003 - Fix a deadlock situation in the new watchdog code where the 
1004   watchdog locks its semaphore, and attempts to lock the jcr_chain,
1005   but another thread has locked the jcr_chain and wants to free a
1006   watchdog, which tries to lock the watchdog semaphore -- deadlock!
1007   Used read/write locks to solve the problem. 
1008 - Improved the error messages when I/O errors or buffer id errors
1009   are detected, and prevent non-sense errors from being printed.
1010 - Fix some incorrect messages in restore if no name is supplied
1011   on the command line (e.g. pool= ).
1012 - Add the third digit to the release version number.
1013 04Feb04
1014 - Add -l option to bls that causes it to ignore tape label errors.
1015 03Feb04
1016 - Correct problems with jobs scheduled at a later time by hand.
1017   Missing unlock(), backward test on pthread_create status.
1018 - Fix setip crash reported by Alan Brown.
1019 - Create bacula.spec.in in SuSE directory from Scott.
1020 - Fix missing unlock() in ua_status on access denial.
1021 - Lots of little cleanups, improving jcr use_count debug printing.
1022 - Add EMSG to mem_pool utilization statistics.
1023 01Feb04
1024 - New bacula.spec.in file from Scott
1025 - Add Scott's spec file to the platforms/suse directory
1026 - Modify configure.in to make platforms/suse/bacula.spec
1027 - Do not allow a resource name to be specified twice.
1028
1029 2004-01-30 Version 1.33-30Jan04 Release
1030 30Jan04
1031 - Apply Jess Guardiani's second fix to list autochanger volumes without
1032   opening the drive (necessary on FreeBSD if no tape is in the drive).
1033 - Added Postgresql configure search libraries recommended by Alan Brown.
1034 29Jan04
1035 - Reworked the command line handler in restore to walk through the
1036   arguments one at a time. This makes the file= entries work correctly.
1037   Also reworked the code that takes the MediaType and finds a 
1038   storage device.
1039 26Jan04
1040 - I've noticed that the backups of Rufus, my development machine, can be
1041   "stuck" for about 12 hours, then suddenly they run. In running the 
1042   debugger, I see that it was stuck on the select() statement waiting
1043   for the Hello.  Why this happens I am not sure. I re-organized the code
1044   a bit because it didn't seem to be as robust as it could, but I cannot
1045   explain the problem. 
1046 - As a consequence of the above, I have implemented a new bsock timer that
1047   can be started and stopped. This is based on Nic Bellamy's new watchdog 
1048   code. The timer is set with start_bsock_timer(bsock, timeout); If the
1049   timeout expires, the bsock will be marked as timed_out and interrupted
1050   with a pthread_kill() on the current thread.
1051 - Added 5 minute bsock timers to all the opening Hello/authentication 
1052   exchanges between the various daemons.               
1053 24Jan04
1054 - New spec file from Scott.
1055 - New patch file from Scott for create_sqlite_database
1056 - Fix crash in run command if invalid pool specified on the command line
1057   and then the user cancels the Pool prompt.
1058 - Separate Console and ConsoleFont resources in gnome2 conf files.
1059 - Remove possibly bad ASSERTs from bnet.c
1060 - Remove open() of device in dircmd.c, which fails on FreeBSD with
1061   an autoloader -- thanks to Jesse Guardiani for this fix.
1062 20Jan04
1063 - Remove all "hostname -s" from configure except for RedHat. Use uname -n instead.
1064 - Implement SetIP command.
1065 - Implement Close On Poll in Device resource on SD.
1066 - Implement Full, Inc, and Diff Pools.
1067 - Implement Access control lists for Consoles.
1068 18Jan04
1069 - Define default working_dir as /var/bacula/working.
1070 - Implement setip console command to set new IP address for a Client.
1071 17Jan04
1072 - Implement maximum network buffer size directives.
1073 - Good first cut at access control lists for the console.
1074 - Optimize restore to select only latest Differential backup after
1075   the Full, and then all following Incremental backups. Previously
1076   everything after Full was selected.
1077 16Jan04
1078 - Organize kernstodo a bit (more to be done).
1079 - Add client IP address to BSOCK structure.
1080 - Use bit fields where appropriate in BSOCK structure.
1081 - Pass UAContext to ua authenticate in Director, and make it
1082   set the appropriate console (or NULL for none).
1083 - Tweak restore "run" argument handling and add "files" keyword.
1084 - Add device name or Volume name to some SD messages.
1085 15Jan04
1086 - First cut multiple consoles.
1087 14Jan04
1088 - Update kernstodo
1089 - Add quit command to restore tree handler.
1090 - Make restore tree handler remember if a hard link is present, and
1091   in doing a mark, only get database entry if there is a hard link.
1092   mark commands thus run at least 2 orders of magnitude faster.
1093 - Add files=xxx field to run command submitted for restore.   
1094 - Add yes to restore run command if either yes or run is command line
1095   argument.
1096 - Make "yes" on command line argument skip prompt for modification of
1097   run job.
1098 - Add markdir and unmarkdir -- both affect only the directory in
1099   question and do not do a recursive descent.
1100 - Make tree command automatically mark all higher level directories to
1101   be restored when a directory or a file is selected.  Such directories
1102   are indicated by preceding the name with a + to indicate that only
1103   the directory entry is selected and not the whole directory tree.
1104 - Modify a few tree commands to walk through all arguments rather than
1105   just taking the first one.
1106 13Jan04
1107 - Update copyright date on changed files.
1108 - Make mark command in restore tree run *much* faster by accessing database only
1109   if the file actually is hard linked -- determined at time tree it built by
1110   keeping a has_link bit in the tree entry.
1111 12Jan04 
1112 - Modify findlib/makepath.c to create all parent directories with full permissions.
1113   This should solve the access problems on restoring files on Win32 systems.
1114 - Modify restore to report **** Restore Error **** if any error are found.
1115   I.e. a file could not be created.
1116 - Change a few errors into warnings -- e.g. if permissions could not be set, but
1117   the file is actually restored.
1118 11Jan04
1119 - Replace bsd_queue with dlist in lib/watchdog.c
1120 - Add Date: header to bsmtp.  Thanks to Meno Abels (abels) on SourceForge
1121   for reporting this.
1122 - Remove ap==NULL check in src/lib/var.c as suggested by Christoph Barbian
1123   because ap (va_list) is a struct on the Alpha, so the code does not
1124   compile.
1125 10Jan04
1126 - Implement first cut of polling for a Volume.  New Device directive
1127    "Volume Poll Interval = xxx" where xxx is a time specification      
1128    (e.g. 5min). Default is off.
1129 - Call pthread_cancel on SD msgchan only if the threadid is non-zero.
1130 07Jan04
1131 - Change RH autostart scripts to start in Dan's order.
1132
1133 2004-01-06 Version 1.33-06Jan04 Release
1134 06Jan04
1135 - Correct calculation of week of month in scheduler and in scheduled
1136   listing.
1137 04Jan04
1138 - Fix cancel of job waiting on mount to be a bit cleaner.
1139 03Jan04
1140 - Fix seg fault -- don't close db in db_open_database(). It must explicitly
1141   be called.
1142 - Doc updates
1143 - Allow purge of a single JobId from a Volume (code untested)
1144 - Implement fix to keep SD from looping complaining about the wrong volume
1145   at the end of a tape -- reported by Phil, and fix confirmed by him. I cannot
1146   seem to reproduce the bug here.
1147 - Clean up a few more strcpy()s.
1148 01Jan04
1149 - Fix configure.in FD User print per Lars.
1150 - Doc update.
1151 - New bacula.spec.in from Scott. Nice!
1152 - Make RunAfterJob non-fatal if it errs since the Job has really  
1153   already completed the save.
1154 - Replace sprintf with bsnprintf in message.c
1155 31Dec03
1156 - Note, this change affects only the Win32 FD.
1157 - Fixed Win32 FD crash due to missing argument in status command. It
1158   always crashed if there was a job that had previously run.  Thanks to
1159   Christopher Hull for finding and diagnosing this problem.
1160 29Dec03
1161 - Fix SELECT as indicated by Dan in sql_get.c for returning Volume names.
1162 - Fix last_jobs list crash for utility programs (btape, ...).
1163 - Correct editing of FileSet name into SQL command.
1164 - Allow calling watchdog stop without initialization for utility programs.
1165 - Enhance btape test by attempting to forward space past the end of the tape.
1166 - Detect CAP_FASTFSF in btape test as possible reason for failure.
1167 - Attempt to prevent infinite loops in fsf_dev() if device not properly
1168   configured.
1169 - Attempt to get correct file number on tape after backspacing at EOM. The    
1170   correction should resolve differences in OS tape driver implementations.
1171 - Add ctl-c detection to bconsole. When reading from tty, interrupts any
1172   output from Bacula, when reading from a file, it terminates the reading
1173   and returns possibly exiting if it is a batch job.
1174 - Create devel_bacula.in script and make it configure itself. Very similar
1175   to the new bacula.in.  
1176 - Modify bacula.in to have separate file locations for each daemon -- makes
1177   it easier to make a new devel_bacula.in when there are changes.
1178 - Remove old config files when rebuilding configure to avoid error msgs.
1179 - Fix btape "test" to respect TWO EOF.
1180 - Fix fsf_dev() to use system notion of file if it is valid after bsf_dev().
1181 - Move btraceback.gdb to scripts directory on installl.
1182 - Add new mandrake bacula.spec.in
1183 28Dec03
1184 - Find commonset of c_iflags that work with FreeBSD tcsetattr on terminals.
1185 - Remove comments from string concatenation -- doesn't work on FreeBSD
1186   compiler.
1187 - Moderately improve bpipe_close() errors. Must rethink status return.
1188 - Eliminate some Emsgs in favor of Jmsgs.
1189 27Dec03
1190 - Add optional Pool keyword on restore command line. If specified, the pool
1191   used will be restricted to the specified pool.
1192 - "Finish" implementation of JobDefs.
1193 - Fix directory for chmod of cats scripts.
1194 26Dec03
1195 - Implement foreach_res() #define and start replacing old code.
1196 - Work some more on jobdefs -- more to be done.
1197 - Implement bstrftime_nc() bstrftime with no century.
1198 - Fix static console problem in gnome2 and gnome directories reported by Alan 
1199   Brown.
1200 - Add code to test for valid Resource Names. Permitted characters are now
1201   alpha, numeric, colon, period, minus, underscore, space.
1202 - Turnoff some unused code in timers.c
1203 - Start adding code to dev.c to prevent infinite loops if fast forward space
1204   file (MTFSF) is configured on but not properly supported by OS.
1205 24Nov03
1206 - Sort FileSet selection list by CreateTime.
1207 - Add "lsmark", and "estimate" to tree routines.
1208 - Doing a mark or unmark now prints how many entries were changed.
1209 - Add command argument parsing to btape.c
1210 - Enhance EOT to print file:block on message.
1211 - Add repeat counts on btape bsf, fsf, bsr, fsr, and weof commands.
1212 - Enhance btape's fill command to be much clearer and more reliable.
1213 - Add state file to btape so that unfill command can be done any time
1214   after a fill command.
1215 - Use reposition_dev() to position for read back of last block.
1216 22Nov03
1217 - Zap InChanger flag only if setting Slot to non-zero.
1218 - Added new SD directive TwoEOF, default off, that tells Bacula whether
1219   to write one or two EOFs for EOM.  For the OnStream driver it must
1220   be off, otherwise an empty file will be created.
1221 - Cleaned up the btape "fill" command to compare the last block written
1222   and read rather than just printing them.
1223 21Nov03
1224 - Implement btape test for autochanger.
1225 - Implement btape test for Fast Forward Space File.
1226 - Moved up to cygwin 1.5.5-1
1227 - Implemented Fast Forward Space File
1228 20Nov03
1229 - Add support for selecting volumes from InChanger list first, then
1230   selecting from all available volumes.
1231 - Ensure that Volumes are selected from oldest LastWritten data/time.
1232 - A couple of bug fixes ensuring the proper ordering of volumes.
1233 19Nov03
1234 - Return oldest LastWritten for find_next_volume.
1235 - Remove ASSERT from stored/acquire.c that could trip when it shouldn't.
1236 - Enhance SD status if debug_level > 1 to show details of dev status.
1237 18Nov03
1238 - Create update_bacula_tables, ... scripts and modify configure and Makefiles
1239 - Eliminate is_num() and use is_an_integer().
1240 - Add user slot selection code "slots=1,2-3,5,10, ..."
1241 - Start daemons at level 90 rather than 20 so that MySQL will already
1242   be started.
1243 - Write alter_mysql_tables.in and alter_sqlite_tables.in
1244 - Add Drive and InChanger to Media record.
1245 - Update database level to 7.
1246 - Add db_make_inchanger_unique() and call it when creating and updating
1247   the Media record.
1248 - Add Drive and InChanger to database code for Media record.
1249 - Allow changing InChanger flag in update command.
1250 - First cut at allowing the user to specify slots for updating autochanger.
1251 - Add scan to "update slots scan".
1252 - Add command in SD to readlabel.
1253 15Nov03
1254 - In the bacula start/stop script, ordered the stop: FD SD Dir to
1255   give the SD the best chances of updating the catalog before dying.
1256 - Add Drive and InChanger to MEDIA_DBR record and to Volume update
1257   from the SD.
1258 - Reorganize the Volume info update from SD so that the Dir sends back the
1259   current information in case the Volume status has changed by expiring.
1260   The DIR-SD protocol is not backward compatible (must update).
1261 - Fixed the signal handler to pass the signal to the exit_handler() 
1262   previously it passed 1.
1263 - Modified SD so that on normal shutdown, it walks through all jcrs and
1264   cancels them so that the Volume status will be updated in the catalog.
1265 - Found and fixed a bug where ST_LABEL was not set in append mode
1266   (when a different tape was accepted other than the original one
1267   proposed by the DIR.
1268 - Update the catalog Volume info after dev->file is incremented rather
1269   than waiting for end of job.
1270 12Nov03
1271 - Change getdomainname() prototype for Darwin.
1272 - Add gethost_strerror() to create correct error message for
1273   gethostbyname().
1274 - After doing a kill() of a stalled connection in watchdog, turn off
1275   the timer to prevent an infinite loop.
1276 - Allow Bacula to rewrite the label on a disk volume.
1277 - Correct usage report printed by bsmtp.
1278 11Nov03
1279 - Complete changing references to bsmtp from smtp.
1280 - Add L_NONE for Admin and Restore jobs and update level_to_str()
1281 - Fix segfault from double free of RestoreBootstrap in job.c
1282 10Nov03
1283 - Change console to bconsole
1284 - Change console.conf to bconsole.conf
1285 - Change smtp to bsmtp
1286 - Implement .bconsolerc
1287 - Check if volume has expired when doing an update media for the SD
1288 09Nov03
1289 - Implement new code that assures that a non-zero Slot is unique within
1290   a given Pool. When setting a non-zero Slot, the Slot of all other
1291   Volumes with the same Slot is set to zero.  Redone later to add
1292   InChanger flag
1293 07Nov03
1294 - Fix bug reported by Lars where an incorrect Volume name was printed
1295   by the "status dir" command.
1296 06Nov03
1297 - Pretty up a few error messages printed by smtp.
1298 - Make btime_t int64_t so that one can do arithmetic.
1299 - Implement since as utime (64 bit UTC). 
1300 - Compute clock diff between Dir and FD, and adjust since time.
1301 - Apply SQL fix from Nic Bellamy (thanks).
1302 - Apply John's zlib #ifdefing fix.
1303 05Nov03
1304 - Add Dan's with-sd-user, ... to configure.in.
1305 - Add Dan's userid and group modifications to bacula.in
1306 - Lots of documentation updates.
1307 - Make console print "Enter a period to cancel a command" when starting.
1308 - Fix the "list nextvol" command so that it doesn't try to close the
1309   database twice, giving a segfault.
1310 - Fix (hopefully) to dircmd.c so that a mount request does a pthread_cond_signal.
1311   There was one path were the signal was not sent. This should fix the bug
1312   that requires you to do two "mount" commands to free a job waiting on a mount.
1313 - Make dir_ask_sysop_to_mount_next_volume() return immediately if a slot is
1314   specified.
1315 - Correct some of the messages in testfind.c (pointed out by Dan -- thanks).
1316 - Alias fd to client, sd to storage.
1317 - Changed order of Console commands so that short commands such as q (quit) 
1318   are more logical.
1319
1320 2003-11-03 Version 1.32d 02Nov03 Release
1321 02Nov03
1322 - Mainly a bug fix release.
1323 - Do a clean of both Gnome directories.
1324 - Require that FileSet id match when finding an Incremental
1325   previous job. This was already the case for a Full.
1326 - Print message if no status returned from FD.
1327 - Correct "Do not forget to mount the drive" message. Test was
1328   backward.
1329 - "status dir" stopped scanning the run records on the first
1330   one that matched giving an incomplete listing.
1331 - Edit commas in Bytes on "estimate" command output.
1332
1333 2003-10-30 Version 1.32c 30Oct03 Release
1334 29Oct03
1335 - Add %v to job edit codes. It edits in the VolumeName(s).
1336 - Add code to ensure that fds 0,1, and 2 are defined by dup'ing them
1337   to /dev/null if necessary.  Mostly for Windows that does not have them.
1338 - Error check dir_create_jobmedia_record() 2 places in acquire.c
1339 26Oct03
1340 - More doc fixes.
1341 - Make message buffer longer for a status message that was    
1342   truncated.        
1343 - Put termination on varargs calls in gnome2-console.
1344 - Scroll only if text sent and not for status update.
1345 - Add all possible Status codes the jobstatus_to_ascii()
1346 25Oct03
1347 - Add new spec file and cats patch from Scott.
1348 - Optimize tree.c a bit -- turn off debug code, keep node fname
1349   length for fast rejection, add some statistics, allocate
1350   in 100K and 1Meg chunks, use bool, uint16_t and uint8_t to
1351   reduce node packet size.
1352 24Oct03
1353 - Eliminate ua_retention.c that was not used.
1354 - Improve error message when closing brace missing in conf file.
1355 - More doc updates.
1356 - Eliminate Don't forget to mount if it is a disk file.
1357 - Fix Gnome2 scrolling and blank screen problems.
1358 - Eliminate multiple JobIds in restore selection list.
1359 - Fix non-portable varargs code in var.c
1360 - Make doc fixes/changes suggested by Dan Languille
1361 23Oct03
1362 - Document new features.
1363 - Implement mod of Verify Job at the run prompt.
1364 - Correct SQL table definitions so that MySQL and SQLite
1365   have all the values in the same position.
1366 - Correct a typo in configure.in when configuring GNOME.
1367 - In doing a "status dir" make it loop over all the run
1368   commands in the Schedule rather than doing on the first one.
1369 - Close all unused file descriptors in bpipe.c otherwise if
1370   a daemon is started, it will keep our TCP/IP port open.
1371 22Oct03
1372 - Print block read error (checksum, I/O, BB01, ...) once then
1373   the number found at the end of the reading.
1374 - Implement RunAfterFailedJob
1375 - Change db_find_job_start_time() to require a Full save before
1376   running an Incremental or Differential job.
1377 - Remove has_volume_expired from code that updates vol info
1378 21Oct03
1379 - Implement "delete job"
1380 20Oct03
1381 - More documentation, add Marc Brueckner's tips to manual.
1382 - Tweak gnome2-console scroll window.
1383 - Turn off some debug info.
1384 18Oct03
1385 - Modify Verify to accept VerifyJob = xx, where the last backup job
1386   of job xxx will be verified.
1387 - Add changing the Pool name for a Volume to "update volume"
1388 - Write most of the code for Verify Disk to Catalog.
1389 - Recreate the src/gnome2-console directory.
1390 - Change all the text handling code to the Gnome 2.0 way.
1391 - Correct the way verify filenames are returned to the Director so
1392   that directories are in canonical form (i.e. trailing /).
1393 - Handle casting bug in glade-2 by sed'ing support.c in gnome2-console.
1394
1395 2003-10-15 Version 1.32b 14Oct03 Release
1396 14Oct03
1397 - Modify configure so that if threaded MySQL client library
1398   is not present, Bacula will link with the non-threaded 
1399   version.
1400 - Updates to the Web pages and to the manual.
1401 - Remove trademark symbol from title. Phil pointed out that it
1402   does not display correctly in a title.
1403 11Oct03
1404 - Implement restore by file before date. 
1405 - Change restore arguments a bit so that you can feed it
1406   multiple jobid= specifications or multiple file= specifications.
1407 - Pass restore with run option on to run_cmd.
1408 - Make run-cmd not prompt if it has a "run" on the command line.
1409 10Oct03
1410 - When pruning, select only old orphanned jobs to delete so that
1411   the current job is not pruned too.
1412 09Oct03
1413 - Corrected return status for bsf_dev and bsr_dev in block.c and btape.c
1414 - dev.c used incorrect ruturn status for bsf_dev in the BSF at EOM
1415   code. This caused all appends on FreeBSD to fail.
1416 - Turn on fast block rejection code.
1417 08Oct03
1418 - Optimize file index searches by adding a count to the bootstrap.
1419 - Write single files/blocks to bootstrap without the second part.
1420 - Add current Volume status to the cannot use this Volume message.
1421 - Zero the rx->bsr in ua_restore when freeing so it doesn't get
1422   freed twice.
1423 - Lots of testing on the restore
1424 - I noticed that SD and FD bootstrap files were not always
1425   deleted, so delete them as soon as possible.
1426 - Restore by file (or by selecting files) created some
1427   horrible looking bsr files that defeated the forward
1428   spacing code, so fix write_findex to work right.
1429 - Add zlib_strerror() routine in filed/restore in case
1430   of zlib errors.
1431 - In filed/restore.c make sure all error returns cleanup
1432   and close the open file descriptor.
1433 - Make sure to set *non* over filename in attr packet
1434   after file is found, so error messages that print the
1435   filename don't print an old, incorrect name.
1436 - Allow bclose() to be called after closing the file.
1437 - Fix a number of unclear help messages, ... reported by
1438   Phil in btape.
1439 - Retweak stored/read_record.c so that it does forward
1440   spacing at the beginning of every tape, not just the
1441   first one.
1442 - Print repositioning message if verbose is set.
1443
1444 2003-10-01 Version 1.32a 03Oct03 Release
1445 04Oct03
1446 - Combine the code in ua_output and ua_status that searches
1447   the run records.
1448 03Oct03
1449 - Fixed "list nextvol" to search for the correct pool in the
1450   Schedule Run records.
1451 - Correct an error in is_block_zero. It found a false
1452   match if the first 1016 bytes of a 32K buffer and     
1453   the last 248 bytes are zero.  Broke the sparse option.
1454 01Oct03
1455 - More documentation.
1456 - Test if multiple mail addresses works. Yes.
1457 - Add debug Jmsg() to trigger if the file I/O packet is
1458   not closed in the FD, i.e file descriptor leaks.
1459 - When error occurs reading label in mount.c, start from
1460   the very top so that the retry count is in effect.
1461 - Zap the mode in soft links in testls.c for regression
1462   testing.
1463
1464 2003-10-01 Version 1.32 30Sep03 Release
1465 28Sep03
1466 - Enhance manual faq, regression ...
1467 - Make FreeBSD read sizes always be a multiple of 512. Needed
1468   to read raw disks.
1469 - Make FreeBSD accept block AND character devices for raw
1470   disk reads.  On FreeBSD there are no block devices.
1471 27Sep03
1472 - Fix printing of EndTime on job report after rescheduling.
1473 - Fix jobq.c error returns to clean up before returning.
1474 - Make Cleaning tape aware of "unlabeled" volumes.
1475 - If a job is rescheduled, ensure that old job is
1476   removed from SD's jcr queue -- i.e. it is still waiting
1477   for FD connection.
1478 - Test rescheduling code.
1479 - Change ./configure to detect Cygwin enviornments.
1480
1481 2003-09-26 Version 1.32 26Sep03 Beta
1482 - Add regression and GUI-interface chapters to the manual.
1483 - Fix "label" of a volume that is already in the catalog,
1484   but not yet labeled.
1485 - Correct the test for spooling attributes which was backward.
1486   This caused the creation of a spool file in the working
1487   directory for every job run.
1488 - Print to the job output stream when block checksum errors
1489   occur, but continue processing. If more than one occurs,
1490   print number at end of job.
1491 - Remove a few unneeded tests from configure.in
1492 - Modify configure to use -pthread on FreeBSD 4.8,
1493   but nothing on FreeBSD 5.1
1494 - Clarify that bmicrosleep() takes sec and microsecs
1495 - Apply Franc Carter's code to specify a DB host in 
1496   bscan.
1497 - Fix sanity login length test in stored/dircmd.c
1498 - remove old code fro stored/job.c
1499 - Lots of work on regress so that it works on FreeBSD
1500   and Solaris.
1501 - Make the default gnome-console wider (console.c)
1502 - Add \r to the items that terminate a token.
1503
1504 2003-09-20 Version 1.32 20Sep03 Beta
1505 - Replace a number strcpy() calls with bstrncpy().
1506 - Added code to ensure that the names for each resource
1507   type are unique. Two resources of different types can
1508   have the same name.
1509 - More documentation
1510 - Added new full length modifiers for time intervals.
1511   Compatible with previous method EXCEPT a modifier is now
1512   manditory.
1513 - Completely restructured recycling. It should work now, but
1514   in any case, the logic is much cleaner. A lot of new
1515   code in next_vol.c
1516 - Added a few pthread_xx_destroy() for items inited.
1517 - Nic Bellamy pointed out that it wasn't necessary to do 
1518   destroy() of static initialized pthread variables -- fixed
1519   watchdog.
1520 - update VolStatus asked for the media and volume twice.
1521 - Changed a few more strcpy() to bstrncpy().
1522 - Made VolBytes=1 as indicator that the Volume is labeled.
1523 - Modified creation of Media record to include VolBytes,
1524   same for sql_update - also set LabelDate if VolBytes = 1.
1525 - Copy any statically linked programs to install directory.
1526 - Change relabel flag to label in Update_media protocol Dir<->SD.
1527 - Change a few strcpy to bstrncpy ...
1528 - Update Media record after an automatic tape label.  
1529 - Added more debug code to bnet_server and bnet.c to attempt to
1530   track down Alex's SD segfault (BSOCK==0)
1531 - Add additional debug cod for authentication errors in cram-md5.     
1532 - Implement "list nextvol job=xx" and add Volume to Dir status.
1533 - Retry waitpid if interrupted -- needed for FreeBSD!
1534 - Move lex.c debug level to 900
1535 - Add new aliases SDAddress, ...
1536 - Final changes for variable expansion
1537 - Possible fix to Alex's SD crashes
1538 - Correct incrementing counters not in catalog -- reported by
1539   Chris Allen.
1540 - Correct memory leak in core var.c code -- reported by 
1541   Chris Allen.
1542 - Make documentation of variable substitution a bit clearer.
1543 - Apply Nic Bellamy's patch to dbcheck.c to fix SQL to work
1544   on both MySQL and SQLite.
1545 - Finally fixed the .messages that was sent during prompts
1546   in the console with no readline.
1547 - Implement new Include/Exclude semantics.
1548 - Fix a good number of segfaults reported by Chris Allen in
1549   the variable expansion code. 
1550 - Print warning message if a job is blocked by user unmount.
1551 - Fix additional variable expansion problem reported by Chris Allen.
1552 - Fix pathconf() error status bug that caused a segfault on
1553   a FreeBSD system -- reported by Gernot Hueber.
1554 - Make sure the console sends ".messages" only when at the
1555   command line prompt.
1556 - Apply a patch from Nic Bellamy that corrects a file descriptor
1557   leak in the Storage deamon when a job is canceled. (Thanks)
1558 - Implement < and | in File daemon.
1559 - Implement ClientRunBeforeJob and ClientRunAfterJob.
1560 - Corrected BSRatEOF to be BSFatEOF in btape --
1561   reported by Lars Koller.
1562 - Documented BSFatEof
1563 - Eliminated save_level in FD replaced by JobLevel.
1564 - Increased MAX_RES_ITEMS from 35 to 50 to handle
1565   new ClientRunBeforeJob ...
1566 - Add line number in error message for restore from file.
1567 - Correct editing of jobids (misplaced comma).
1568 - Implement restore files.
1569 - Quickie patch to allow Purged Volumes to be mounted.   
1570   Must review algorithm.
1571 - Eliminate a duplicated query from query.sql
1572 - Restructure ua_restore.c so that I can add restore files.
1573 - Correct positioning problem at beginning of a second volume 
1574   introduced with the new forward spacing code.
1575 - Eliminated a sprintf() in the tree routines.
1576 - Doc updates
1577 - Added HOST_OS, DISTNAME, and DISTVER to the status output.
1578 - Eliminated a few stray Dmsgn(000, messages making them either
1579   debug_level 100, or Pmsg().
1580 - Made the default "Maximum File Size" 1Gbyte in SD.
1581 - Cache path in tree.c to reduce calls to make_tree_path 
1582 - Documentation updates
1583 - Implement forward space file and block when reading a bsr.
1584 - Fixed a bug in db_find_next_volume() where the VolStatus was
1585   not being returned.
1586 - Rework some of the query.sql records that were incomplete.
1587 - Fixed an ambigous SQL statement in restore.
1588 - Fix proper sorting order in restore display last 20 jobs.
1589 - Remove duplicate JobId's in feeding the directory tree.
1590 - Fix an orphaned ua buffer due to a return that should have been 
1591   break so that cleanup code executed.
1592 - Changed some strcats and sprintfs int bstrncat() ... to prevent
1593   possible buffer overflows.
1594 - Fix max file size code on tape so that after writing EOF, 
1595   an appropriate jobmedia record is created.
1596 - Fix error messages in dev.c, which were copied into lots of
1597   different subroutines without updating the text.
1598 - Add reposition_dev(), and make more of the return statuses of
1599   dev routine standard.
1600 - Eliminate old semaphore and workq code. Keep only new jobq code.
1601 - Try to get a better default size for the gnome-console
1602 - Add code to avoid race conditions in starting/stoping the
1603   heartbeat thread.
1604 - Correct potential race condition in heartbeat_stop().
1605 - Correct segmentation fault in mysql.c if no password given.
1606 - make pm_strcat and pm_strcpy return the string length
1607 - Use Phil's code to get the unadorned job name.
1608 - Move the MTIOCERRSTAT from just after a write() failure to
1609   after writing the EOF marks on FreeBSD systems.
1610 - Enhance packet too big error in bnet.c and add some
1611   ASSERTs in the send code.
1612 - Set heartbeat interval to zero by default.
1613 - Add Recycle to list of Update Volume parameters.
1614 - Use bget_dirmsg() wherever possible in Director.
1615 - Split next_volume code from catreq.c to next_vol.c
1616 - Consolidate editing job codes into a single routine.
1617 - Add Job resource name
1618 - Remove check for Win32 attributes in bls.  It doesn't
1619   need to read them, only print ls -l.
1620 - Add SDConnectTimeout in FD.
1621 - Add Scott's perlgui directory
1622 - Upgrade from RH7.3 to RH9.  New autoconf.
1623 - Eliminate gnome2-console directory.
1624 - Correct English in status command.
1625 - Eliminate old shell expansion code and use BPIPE to call shell      
1626   with echo command.
1627 - Documentation as usual.
1628 - Add a new bacula.spec for Mandrake
1629 - Add ownership to alist items. Default the list owns the items.
1630 - Make record_cb return a status (preparation for internal use).
1631 - Remove all clearing of remainder in read_record.c -- not necessary
1632 - Write a tapetest program for FreeBSD end of tape testing.
1633 - Modify read.c in Bacula to use read_record.c
1634 - Implement multiple records in read_record.c. One for each session that
1635   is open.  Free the record with the EOS_LABEL is found (or at the
1636   end of the scan).
1637
1638 2003-08-02 Version 1.31a 02Aug03 Released
1639 - Yifang Dai reported a case where he stress tested Bacula and
1640   backed up to four volumes, but only two were selected for the
1641   restore. This is because I forgot that the selection could
1642   span a volume entirely.
1643 - Added a missing CLIENT_FOUND_ROWS to the second attempt to open
1644   the MySQL database -- this prevents UPDATE errors if nothing
1645   actually changed.
1646 - Applied corrections to the manual supplied by Bob Collins.  Many thanks!
1647
1648 2003-07-30 Version 1.31 Beta 30Jul03
1649 - Integrated Robert Mathews improved description of Priorities into
1650   the manual.
1651 - Chased down the "The data is not valid" bug on WinMe/98/95.
1652 - Found an orphaned buffer in the set_attributs part of WinMe/98/95.
1653 - Add sleep(1) to console when it gets a SIGTSTP signal 
1654   to prevent it from using 100% of the CPU.
1655 - Improve description of Priorities.
1656 - Add a bit more documentation to jobq.c
1657 - Complete hash table routine htable.c htable.h
1658 - Change M_INFO to M_ERROR in attribs.c for Windows errors.
1659
1660 2003-07-23 Version 1.31 Beta 22Jul03
1661 - Apply a patch from Nic Bellamy that clarifies the error messages 
1662   during recycling volumes.
1663 - Documentation.
1664 - Clear VolCatInfo in askdir.c so that readbytes is zeroed.
1665 - Add SD statistics to backup report.
1666 - Removed old workq code.
1667 - Fixed rescheduling after error.
1668 - Fixed delayed starts which were not working.
1669 - Added priority to values that can change when starting
1670   a job.
1671 - Complete implementation of new job scheduler. jobq.h jobq.c
1672   This code is turned off unless specifically enabled in src/version.h
1673 - Integrate code from Nic Bellamy to check for recycled volume in
1674   mount.c in SD.
1675 - Fix a couple of bugs in dlist.c
1676 - Begin implementation of new job scheduler.
1677 - Take serial.h provided by David Craigon, which corrects differences in 
1678   prototypes between serial.h and serial.c.
1679 - Make db_get_media_ids() return Media Ids only for the current pool.
1680 - Add new jobq.h and jobq.c drived from workq.
1681 - Add JobPriority to jcr, and Priority to Job resource as well as
1682   to the run line in a Schedule.
1683 - Remove unused pool record from autoprune.c.
1684 - Implement Nic Bellamy's RecycleCurrentVolume.     
1685 - Implement RecycleOldestVolume.
1686 - Begin adding new JOB_QUEUE code to the Director.
1687 - Create a single routine recycle_volume().
1688 - Retry accept(), bind() and socket() if EINTR occurs.
1689 - Implement insert_before(), insert_after(), and empty() for dlist class.
1690   Also require offset to be given by giving item and link address.
1691 - Make error some messages in smtp.c a bit more explicit.
1692
1693 2003-07-12 Version 1.31 Beta 14Jul03
1694 - Marc Brueckner reported a crash during restore (a missing tree->)
1695 - Moved host.h.in file from filed to src.
1696 - Update btraceback to include host os, distname, distver in output.
1697 - Split list (in lib) into alist and dlist both with .h and .c.
1698 - Update home page to include Project status page.
1699
1700 2003-07-12 Version 1.31 Beta 10Jul03
1701 - Manual updates.
1702 - Clean up some unused variables detected by the IRIX compiler.
1703 - Test two directories on Win32 -- caused a crash. I forgot
1704   to NULL the uid cache pointer after releasing it.
1705 - Use bstrncpy() instead of strcpy() in find_files.
1706 - Clear a few linked lists in the temp directory packed in find_one.c
1707 - Eliminate an unnecessary variable in attr.c
1708 - Clear the cache pointer after release in idcache.c
1709 - Implement a new C++ doubly linked list class.
1710
1711 2003-07-08 Version 1.31 Beta 08Jul03
1712 - Update document for Win32 stuff.
1713 - Ensure VolStatus value for update is permitted.
1714 - Fix cached_path so that it is local to the jcr, otherwise, there
1715   are problems from job to job.
1716 - Fixed idcache.c which was not thread safe and didn't release memory,
1717   and didn't always edit the userid correctly.
1718 - Correct missing pool memory allocation in update voluseduration.
1719 - Release mutex in pool_mem.c before triggering ASSERT.
1720 - Lock database while recycling.
1721 - Fix a bug in editing since where I forgot to update to the new size.  
1722 - Implement all the command line update arguments.
1723 - Modify label to use volume=xxx for the new volume and oldvolume=yyy
1724   if doing a relable.
1725 - Added yes to run command line arguments.
1726 - Clear errno in editing a string to utime.
1727 - In restore print only volumes that will actually be used.
1728 - Fix bextract -- add appropriate breaks in new case code.
1729 - Add a new test -- bsr-opt-test for testing bsr optimization. As usual,
1730   it pointed out a bug where the directory tree handling code destroyed
1731   the restore arg list.
1732 - Many updates to the manual.
1733 - Pass prefix links flag to FD.
1734 - Sort list of commands for Console
1735 - Set default FD and SD concurrent jobs to 10.
1736 - Rework the find next volume code in catreq.c to correct some minor
1737   but subtle logic errors and to eliminate a goto.
1738 - Did spell check on manual.
1739 - Removed bindtextdomain() as it conflicted with RH8.0 headers
1740 - Fixed parse_args to pass address of POOLMEM struct.
1741 - Constrain FileIndexes written to BSR to be within range of Volume.
1742 - Suppress writing volumes to BSR if they are not actually referenced.
1743 - Make FOPTS use alist for match and base entries.
1744 - Pass prefix_links to SD.
1745 - Add command line interface to most items in "update volume=xxx"
1746 - Add command line interface to restore "jobid", "current", "before", "all".
1747 - Add command line "yes" to run command to supress prompt.
1748 - In new alist code, free only if allocated.
1749 - Overload [] with get() code for alist.
1750 - Fixed the code that wrote FirstIndex and LastIndex to the database. It
1751   was not correct at the end of a volume (basically included indexes in
1752   the second volume).
1753 - Fixed bscan to work with the new code and to properly build JobMedia
1754   records.
1755 - Added code to the read end of block.c to properly track Volume bytes,
1756   blocks, and files. I thought this was not necessary, but it is critical
1757   for bscan to work correctly.
1758 - Modified read_record to properly track First/LastIndex -- needed by
1759   bscan.
1760 - Eliminated some old Volume write code.
1761 - Changed RecycleOldestVolume to PurgeOldestVolume
1762 - Added what I hope are the "final" touches for Win32 stuff.  There
1763   are still a lot of annoying little problems.
1764 - Added the "portable=yes/no" option to Include. If set, it disables
1765   use of BackupRead/Write for Win32, so in principle, the data should
1766   be portable.
1767 - Pulled in more recent config.sub and config.guess from /usr/share/libtool
1768 - Replaced the system fgets() by a Bacula version that ignores
1769   interrupts (i.e. signals).  This truncated output from child processes.
1770 - Make file_index int32_t everywhere.
1771 - Moved LinkFI into ATTR structure.  Also integrated data_stream there too.
1772 - Moved code that sets the stream for writing into create_file.
1773 - Removed a signal(SIG_IGN, SIGCHLD) from dird.c that prevented getting
1774   the status of child processes.  This allowed removing the FreeBSD 
1775   kludge to bpipe.c -- the status is now obtained correctly.
1776 - Hand scan the stream header that arrives in append.c to avoid machine
1777   dependencies of sscanf().
1778 - Implemented code to put Data stream in Attributes record. 
1779 - Check if data stream is supported, if not, ignore.
1780 - Fix crash when multiple Includes are given (missing parens).
1781 - Clear WroteVol in askdir.c when JobMedia record is created.
1782 - Implement simple array list class for use in Bacula.  New files
1783   are lib/list.c lib/list.h. Probably will not use until version 1.32.
1784
1785 2003-06-24 Version 1.31 Beta 22Jun03
1786 - Change Purging Oldest Volume message to Recycling Oldest Volume.
1787 - Limit results from find_oldest_volume to one.
1788 - Fix possible buffer overrun in the restore tree handling routines.
1789 - Fixed a crash in VerifyToVolume because I moved the close_db()
1790   down into the free_ua_context() and should not have done so.
1791 - At a "var" command in the Console that does variable expansion and
1792   prints it.
1793 - Implement first cut of estimate command.
1794 - Change find_next_volume() for oldest to use LastWritten instead of
1795   FirstWritten -- also add Append to volumes slected.
1796 - Do normal recycling before checking for RecycleOldestVolume.
1797 - Implemented block rejection on read. This should make restores run
1798   much faster. Next release will have block positioning -- even faster.
1799 - Very preliminary support for Gnome-2.0.  Text does not yet work.
1800 - Correct buffer corruption in find_one.c with long directory names (Win32).
1801 - Make setting owner on directories M_ERROR rather than M_WARNING.
1802 - Fix printing of JobId in run listing for restore job.
1803 - Reduce heartbeat read check interval to every 10 seconds on Cygwin because
1804   there is no working pthread_kill().
1805 - I finally designed a test for multiple simultaneous jobs,
1806   and sure enough it broke when the jobs are split over multiple
1807   volumes.  Now fixed and working!
1808 - Eliminated a few "duplicate" error messages by testing for canceled.
1809 - Add ASSERT for device use count going negative.
1810 - Fix BlockNumber checking in stored/read.c (got first one wrong).
1811 - If socket is timed out, do a shutdown(fd,2) instead of close().
1812 - Fixed return status from SD to FD by setting JobStatus in append_end() 
1813 - Add arrays to Environment variables. Elements separated by |.
1814 - Implement Reschedule On Error, Reschedule Interval, Reschedule Times.
1815 - Add a new pool PM_NAME -- gets a name length buffer.
1816 - Implement fast cancel of FD blocked on writing to SD by using
1817   pthread_cancel(). Turned off on Cygwin due to bug.
1818 - Add code to handle EAGAIN in writing (probably not necessary). Use
1819   select().
1820 - Eliminate size_t from pool control buffers.
1821 - Complete Counter resource.
1822 - Complete LabelFormat (except for WrapCounter) plus counter
1823   inrementation.
1824 - This needs a database change to eliminate PoolId from counters.
1825 - Made a more compact format for the document index.
1826 - Add Phil's checkhost to examples directory (thanks Phil).
1827 - Implement generalized LabelFormat (documentation to come).
1828 - Implement Counter resource.
1829 - Cleanup examples/kernsconfig
1830 - Implement restore to a specific date.
1831 - Fixed a but in automatic labeling (and use durations expiring) analysed
1832   and reported by Rob Proffitt (thanks!).
1833 - Cleaned up a few Cygwin compile problems.
1834 - Made a 10Jun03 release (it is in production here)
1835 - Finally took the big plunge and fixed restoration of links and other
1836   files that have been changed between the backup and restore. Basically
1837   if the file exists, it is deleted, then re-created.
1838 - Purge only Volumes marked Append, Full, Used, or Error.
1839 - Allow pruning of volumes marked Append, in addition to Full and Used.
1840
1841
1842 2003-06-10 Version 1.31 Beta 10Jun03
1843 - Eliminated all plain email addresses and replaced them with " at " in
1844   place of @ to reduce havesting by spammers.  Doc + Web Site.
1845 - Started working on making POOLMEM a struct rather than a char. Lots of
1846   work to do.
1847 - Fixed bscan to handle -V option.
1848 - Fixed bscan to handle two File volumes.
1849 - Corrected a misplaced comma it get_fileset() in cats pointed out by bscan.
1850 - Added two Volume bscan test to regression scripts -- write two volumes,
1851   purge and delete everything, bscan the tapes, and do a restore. It works!
1852 - Reorganized the backup/restore code to move the attribute information into
1853   an ATTR packet, which is passed in place of tons of arguments.  Moved some
1854   code into lib/attr.c and lib/attr.h.  Then eliminated all the duplicate
1855   attribute code.
1856 - Moved FT_ types into baconfig.h.
1857 - Defined FT_ types to use only 16 bits. The upper half of the word is
1858   reserved for adding optional fields in the attributes packet.
1859 - Moved jcr->where into common part of jcr and have it deleted in lib/jcr.c
1860 - Put all attribute reading code on switch() with cases instead of a big
1861   if (restore.c, bls.c, bextract.c, bscan.c, ...)
1862 - set_attributes() now takes ATTR packet, and thus has much fewer args.
1863 - moved print_ls_output() into lib/attr.c  
1864 - implemented is_stream_supported().
1865 - create_file() now takes ATTR packet so has many fewer args.
1866 - add mtime_only code.
1867 - Rewrote bnet.c read and write routines to quit if bsock->terminated is
1868   set.  This will allow setting non-blocking writes and then receiving
1869   a termination message and terminating the Job immediately rather than
1870   waiting 2 hours for the line to timeout.
1871 - Put catalog db name in some error messages.
1872 - Code for restore is now much cleaner, with much of it in lib/attr.c,
1873   and it is now common for all readers.
1874 - Add first cut of proper support for Win32 Backup code.
1875 - Fix bug in restore Win95/98/Me.
1876 - Pass mtime_only flag to FD. Needs config record.
1877
1878 2003-06-04 Version 1.31 Beta 04Jun03
1879 - Fix block.c to check errno only in case of return status -1 as 
1880   suggested by Justin Gibbs (FreeBSD).
1881 - Implemented qfill command in btape for quick testing write/read of a tape.
1882 - Discovered that FreeBSD pthreads re-use the same thread id, which causes
1883   the SD to fail when a user leaves a device unmounted (old pid is reused
1884   and lock_device() thinks the same thread is calling again leading to
1885   inconsistent state). Set id to zero after blocking the device during
1886   unmount.
1887 - A lot of clean up, moving subroutines around for TermCode.
1888 - Free ua->prompt when Job terminates.
1889 - Add AutoPrune and Recycle to values copied from Pool resource
1890   into Pool record on create/updated.
1891 - Implemented bsr for Verify VolumeToCatalog. 
1892 - Improved the Verify Job report using SD and FD term codes.
1893 - Split tree handling routines from ua_restore.c to ua_tree.c
1894 - Split bsr routines from ua_restore.c to bsr.c and bsr.h 
1895 - Fixed clash between FD and SD returned job values. Report now contains
1896   values from FD.  Maybe I should change? or give both.
1897 - Attempt to fix negative use_count for dev packet in SD by adding
1898   a couple of open_dev().   This may be cause of Dan's crash.
1899 - Clear no_wait_id when device is unblocked. This may be cause of Dan's crash.
1900 - Eliminate old "new lock code".
1901 - Add configure of mtx-changer for mtx path.
1902 - Always rewind tape before releasing it (for FreeBSD).
1903 - StartBlock was one too large for second volume.
1904 - Fixed restore to display status from both SD and FD.
1905 - Unified return status message for backup and restore.
1906 - Corrected segmentation fault reported by Dan when doing "label barcodes"
1907   on a File.
1908 - Corrected a segmentation fault when attempting to send a JobMedia record
1909   to the Console -- reported by Dan.
1910 - Added MySQL documentation for using the threaded libraries.
1911 - Added new columns and tables to Catalog database.
1912 - Wrote alter scripts and tested them (thanks to Dan for the help) on
1913   MySQL and SQLite.
1914 - Started using enums where ever possible when passing flags to 
1915   subroutines. This helps make the source much more readable.
1916 - Corrected a bug where a vertical database listing was being used in
1917   the query command.
1918 - Added new argument to parse_args() to prevent command arg overflow.
1919 - Renamed ua_db_query.c ua_query.c.
1920 - Split scan.c out of lib/util.c
1921 - Perhaps I have *finally* fixed the command line history in gnome-console.
1922 - Added support for smartalloc for any global new or delete command
1923   by overloading the global operators.
1924 - Made the default time with no qualifier day rather than seconds.
1925 - Fixed a bug in the store_size() routine that improperly converted from
1926   double to uint32_t.
1927 - Started using "bool" where possible.
1928 - Zap SD session key once it is used.
1929 - Added *lots* more checking for strcpy -- bstrncpy(), ... 
1930 - Added CreateTime field to FileSet record and print it to distinguish
1931   FileSets. 
1932 - Print an information message when a new FileSet is created.
1933 - Include the FileSet date/time in the Job report.
1934 - Indicate if a Job is upgraded in the Job report and from what previous level.
1935 - Incremented the database version.
1936 - Ensure that any DB error message is printed if the start_time of a previous
1937   save is not found.
1938 - Free orphaned buffer in ua_restore.c in case of database error.
1939 - Implement enum for response DISPLAY_ERROR and NO_DISPLAY
1940 - Implement enum for create_pool (POOL_OP_CREATE, POOL_OP_UPDATE).
1941 - Make sure FileSets printed in restore are in order.
1942 - Add a number of bstrncat, and other protected string operations.
1943 - Clean up old structs in dird_conf.h
1944 - Remove all Slot invalidation code.
1945 - Add Automatic choice message to all do_prompt() calls.
1946 - Eliminate JobId from restore if not used.
1947 - Clean up a few error messages.
1948 - Make fill/unfill commands work correctly in btape.
1949 - Enhance btape fill and unfill commands.
1950 - Implement real Pmsg() code so that negative levels work in Dmsg()
1951 - Implement block number check -- had to turn it off because it doesn't
1952   work.  Need to verify that it is the correct block and that block
1953   numbers are properly written.
1954 - Moved readline from depkgs1 to depkgs.
1955 - Reworked the configure code to handle readline correctly. This was broken
1956   mostly due to the fact that the readline routines are nested down one
1957   directory.  Also, I missed one header file that was needed (possibly added
1958   in a later version).
1959 - Put correct include on the dependencies make for Console readline.
1960 - Remove JobMediaId from VOL_PARAMS (no longer needed).
1961 - Sort VOL_PARAMS by JobMediaId using SQL in cats.
1962 - Add jcr as argument to block.c read_block... routines so that error
1963   messages are immediately displayed.
1964 - Make bsr_dev() edit an error message if it is turned off and return 0.
1965 - Add checking for the BlockNumber in the read routines -- lots of
1966   false matches are found -- much check writing end.
1967 - Now sort bsr volumes by JobMediaId -- produces better results.
1968 - It turns out that under certain circumstances, when doing a restore, the
1969   Volumes will not be written to the BSR in the correct order.  I don't
1970   know exactly why, but many thanks to Dan Langille for reporting this.
1971   The solution is to sort the Vol_Params within each bsr (done), and to
1972   sort the bsr chain (not yet implemented). Note, the bsr chain should
1973   always be in order unless the user explicitly specifies the JobIds in
1974   a different order.          
1975 - Began implementing C++ structs rather than typedef structs as in C.
1976 - Added volatile to a lot of variables that are used in two threads at
1977   the same time. This should prevent improper optimization.   
1978 - Fixed a missing space in the "run job=xxx where=" the where was
1979   glued to the end of the previous stuff (bootstrap filename). 
1980 - I *finally* found the cause of the mysterious failure of shell expansion.
1981   It was due to the read() getting interrupted!  That's what opening up
1982   SIGCHLD will do!
1983 - Remove unused default tape drive names.
1984 - Create a new status.c file in stored and split the status code out of dircmd.c
1985
1986 2003-05-22 Version 1.31 Beta 22May03
1987 - I discovered that C++ permits "prototyping" structures e.g. struct A; is
1988   a valid statement. This permitted me to eliminate all the void *jcr, in
1989   favor of JCR *jcr, which pointed out a number of bugs in block.c.
1990 - Change lib/bmisc.c to bsys.c (system routines).
1991 - Add set_working_directory() to lib/util.c
1992 - Remove some unneeded setjcr_job_status() since Jmsg(jcr, M_FATAL,...)
1993   already sets it.  
1994 - Do not increment jcr->Errors for Fatal errors -- they represent non-fatal
1995   errors.
1996 - Fix a few more places in FD where Errors was not incremented.
1997 - Print unexpected (or incorrect) termination message returned from FD.
1998 - Use switch() instead of giant if statement in verify_vol.c
1999 - Protect overrun from do_shell_expansion() by passing max length.
2000
2001 2003-05-20 Version 1.31 Beta 20May03
2002 - Add mandrake to platforms
2003 - Suppress error messages if no bytes written to tape.
2004 - Suck up bootstrap file even on error so that Dir sees our error message.
2005 - Pretty much finish off the Win32 backup code.
2006 - Add DESTDIR code to autostart for creating non-root rpms
2007 - Echo input read from a script in Console.
2008 - Clarify error message for VerifyToCatalog
2009 - Add error counts in restore for M_NOTSAVED.
2010 - Adapt bfile.c to handle both Win95 files as well as WinXP files.
2011 - Add MTIOCERRSTAT for FreeBSD (clear error status).
2012 - Correct double jobmedia record when cancel at EOM reported by Phil.
2013 - Correct possible write at beginning of tape during cancel at EOM
2014   as reported by Phil.
2015 - Document in detail how Incremental and Differential jobs work.
2016 - Add non-fatal error count on backup and restore Job reports.
2017 - Remove a couple uses of lld -- now prefer to edit and use %s.
2018 - Fix directory could not be accessed on Win32.
2019 - Improve message indicating that last Full backup not found. 
2020 - Fix free() too early in directory traversal code.
2021 - Prune Jobs with no JobFiles or that have JobStatus!='T'
2022 - Add a few more command line scans for prune/purge.
2023 - Restrict valid characters in a Volume name, and document it.
2024 - Make new Win32 save/restore work. Still a bit more to do.
2025 - Use reentrant version of mysqlclient library.
2026 - Use more machine independent way of finding gcc version.
2027 - Fix race condition in sql_list where messages edited before locking.
2028 - Lots of testing saving/restoring 6GB files.
2029 - Add where to restore where=/tmp
2030 - Complete implementation of Win32 streams in FD. Must test. Also,
2031   must implement new streams in SD.
2032 - Make termination of daemons more "error" tolerant.  
2033 - Make default "duration" days rather than seconds if there is no modifier.
2034 - Install bcopy.
2035 - Add detection of available Win API's so that a single binary will
2036   work on all Windows systems.  Reference those APIs through a pointer.
2037 - Remove use_win_backup_api and enable it in bfile.c if system supports it.
2038 - Modify dev.c so that it works if MTEOM is not defined (BSDI).
2039 - Change MT_xxx to BMT_xxx to prevent conflicts with BSDI.
2040 - Detect strtoll() in configure.
2041 - Implement replacement for strtoll() for BSDI.
2042 - Add platform files for BSDI.
2043 - Use Jmsg() instead of Jmsg1() in acquire because File:line prefixed in dev.c
2044 - Use Jmsg() in write_block_to_dev() so that no messages are lost.
2045 - Rework autochanger code in restore to handle case of cassette not in magazine.
2046 - Implement Windows BackupRead/Write(). I now have permissions right!!!!
2047 - Additions to the manual (Purging, Autopruning).
2048 - Add doc to code in autoprune.
2049 - Begin adding Level = Base.
2050 - Make Jmsg recognize console and direct messages directly back to it.
2051 - Hopefully fix mess in mount.c when a tape expires.  
2052 - Fix restore bug recently introduced due to Unix backwards status convention.
2053 - New bacula.spec from Scott
2054 - Add globals for database name and version and print them in traceback.
2055 - Eliminate SubSysDirectory in each daemon conf file.
2056 - Implement get_yesno() and get_pint() in UA.
2057 - Make Jmsg aware of console. Messages now sent directly to Console.
2058 - Created a single bacula.spec.in for by the MySQL and SQLite builds.
2059 - Added proper configuration to console.in and gconsole.in
2060 - Start adding textdomain() code for translating.
2061 - A number of minor code cleanups.
2062 - Rework shell expansion just a bit.
2063 - Add rewind() when releasing a tape before acquiring the next one.
2064 - Implement addition of Description in Service entry for Win32.
2065 - Update manual to eliminate unclear autochanger points as mentioned
2066   by Dan Langille.
2067 - Implement DESTDIR everywhere.
2068 - Rework spec files for 1.31 and combine the main spec and the client
2069   only spec making a client package. At the same time, rename the packages
2070   so it is a bit clearer to the user. Also fix the build to work
2071   as non-root (scriptdir was not prefixed with $RPM_BUILD_ROOT).
2072 - Correct Auto Changers and all other forms to Autochangers in the
2073   manual.
2074 - John reported needing to do two "mount" requests, and indeed that
2075   was the case. It turns out that pthread_cond_timedwait() does not
2076   always return zero when awaken by a pthread_cond_signal().
2077 - Include RunBeforeJob and RunAfterJob output in job output report.
2078 - Implement a "real" Admin job that prints a mini-job report.
2079 - Clean up a few error messages in findlib and filed.
2080 - Recent changes to gnome-console caused initial output to be
2081   lost -- now fixed.
2082 - The Win32 version crashed after each job. After hours, it turns out
2083   that when running with LocalSystem privilege (and not as a user), when
2084   Cygwin does pthread_kill(id, SIGUSR2), it gets a memory fault.
2085 - Moved stored/fdmsg.c to lib/bget_msg.c, and moved SD messages to
2086   stored.c.  So now bget_msg() can be used by both the SD and FD.
2087 - Changed Director's bget_msg() to be called bget_dirmsg() to avoid
2088   any possible confusion.
2089 - Implemented bget_msg() in general everywhere in the FD except for
2090   job.c where the Dir and FD are communicating.
2091 - Implemented a Director only heartbeat in the FD for the cases where
2092   there is either no connection to the SD or the FD is already reading
2093   from the SD.  start_dir_heartbeat() ...
2094 - Add heartbeat to restore and verify volume.
2095 - Add "Heartbeat Interval" to Storage resource, which sets interval the
2096   SD sends heartbeats to the FD and DIR, 0 disables heartbeats.
2097 - Add "Heartbeat Interval" to FileDaemon resource, which sets the interval
2098   the FD sends heartbeats to the DIR, 0 disables heartbeats. 
2099 - Added heartbeat from FD to Dir every HB_TIME rather than forwarding
2100   SD heartbeats.
2101 - First cut label dialog.
2102 - Turn on new semaphore code for simultaneous Jobs.
2103 - Fix cancel trying to release semaphore's not acquired.
2104 - Implement get_pint() and get_yesno() for UA.
2105 - Implement find_arg_with_value() for UA.
2106 - All command line "slot" to be specified for label command.
2107 - Rework heartbeat code in FD to correctly terminate.
2108 - Fix btraceback to use smtp and to eliminate double //
2109 - Fix "storage" command to include ssl for verify and restores.
2110 - Add Heartbeat code when SD is waiting on a tape -- heartbeat every 20 mins
2111   to keep stateful firewalls from timing out the connections.
2112 - Fix src/stored/Makefile.in typo causing problems in statically linking
2113   btape.  Thanks to Lutz for reporting this.
2114 - Create an is_client_alive script for checking if a client is alive.
2115   Using this script prevents generating error messages.
2116 - Added corrections and updates to manual provided by Phil -- thanks.
2117 - Added RequireSSL to each program/daemon configuration.
2118 - Added EnableSSL to each correspondent for each program.
2119 - Added the Console resource to the Director (need to
2120   implement individual Console authorization).
2121
2122 2003-04-28 Version 1.30 released
2123 - Fix command history for gnome-console (must malloc).
2124 - Add two cancel points in acquire_resources(). The job will not
2125   be immediately terminated in all cases.
2126 - The new AutoMount code broke File archives -- fixed.
2127 - Correct watchdog mutex race introduced yesterday.
2128 - Add JobLevel to Admin run started by UA.
2129 - Add -v to daemon startup scripts
2130 - Implement bmicrosleep(sec, msec);
2131 - Implement When for "run" command.
2132 - Remove unsigned from socklen_t definition in hopes it will work better
2133   with older systems.
2134 - Remove code that attempts to set PID dir and SUBSYS dir if they
2135   do not exist because it set them to sbindir!
2136 - Modify mount to initially attempt to read the volume if Bacula
2137   wants a tape, none is mounted, and "Automatic Mount = yes" is set.
2138 - Prohibit setting --sbindir and --with-subsys-dir the same.
2139 - Fix missing argument that cause Kaboom in update slots.
2140 - Fix orphaned bsock when UA gets error contacting FD or SD
2141 - Nearly full implementation of Win Backup API, but it does not
2142   work due to lack of permission! Arggg!
2143 - Implemented restoring directory permissions as they should be.
2144 - Implemented reasonable regression script.  It found a number of
2145   restore errors.
2146 - Implemented the following @ commands in the console that work directly
2147   in the console rather than in the Director.
2148     input - read input from a file
2149     output - write output to file
2150     tee    - tee output to file and terminal
2151     time   - print current time
2152     version - print current version
2153     exit    - quit
2154     quit    - quit
2155 - Implemented new bfile io routines that will permit implementation of
2156   Windows native APIs for reading/writing files.
2157 - By default always update hard links with the prefix, but do
2158   not update soft links.  It seems inconsistent, but it is what
2159   cp does.
2160 - Implement wait command in Console that waits until no jobs are running. 
2161 - Fixed the < code in Include/Excludes, which forgot to skip over the <.
2162 - Do NOT attempt to chmod() a soft link as it will change the file behind
2163   the link!
2164 - OOPS! Lutz ran into a problem. In attempting to prevent string overflows,
2165   I used bstrncpy() on a variable that was malloc'ed thus truncating 
2166   Volume names!  Arrrggggg!
2167 - Lots of documentation of new features.
2168 - Rework Volume name scanning in console, made much more logical
2169   and corrected a bug (confusion in calling sequence).
2170 - Cleaned up a few error messages in cats adding more info.
2171 - Add the IP address to error messages due to bad connects to servers.
2172 - Implement default File output in config files so user can start
2173   saving right away without a tape drive.
2174 - Protect inet_ntoa() with mutex in case it is not thread safe.
2175 - Eliminate termcap from use in gnome console.
2176 - Remove unused SD maximum volume files and maximum volume jobs. They
2177   are implemented in the Director.
2178 - Make the default for Incremental and Differential saves to compare
2179   against both st_mtime and st_ctime rather than just st_mtime.
2180   This includes files moved or copied.
2181   Thanks to Matthias Wamser for bringing this fix to our attention.
2182 - On Win32 clients, make a pass through the include/exclude patterns
2183   and change any back slashes to foward slashes. Prevents creating
2184   unusable directory names containing both conventions.
2185 - Move ls -l output on restored files to M_RESTORED class.
2186 - Make gnome-console compile correctly on RH8.0
2187 - label barcodes now works.
2188 - Implemented "update slots".
2189 - Tweak btape "test" to always print suggestion for re-read last block.
2190 - Implemented "Cleaning Prefix"
2191 - Update alter_mysql_tables.in
2192 - More work on barcodes.
2193 - Zap VolHdr in SD when attempting to label a tape that is not
2194   there.  Prevents false tape names the next label command.
2195 - First cut of bar code reading is implemented. It doesn't do
2196   anything but return the list to the Director.
2197 - Implemented relabel command that relabels "Purged" Volumes.
2198 - Check exit code in RunBeforeJob and err the job if it is non-zero.
2199 - Remove old testsuite -- too complicated
2200 - Print length when Authorization fails because of bad length.
2201 - Fix problem of NumVols in Pool getting reset on startup.
2202 - Implement full listing of DB records by listing them vertically
2203   instead of horizontally.
2204 - Make changes to mysql scripts as suggested by Lutz Kittler
2205 - Fixed code to write Uname to Client record.
2206 - Fixed a problem (in btape) where Pmsg() was not printing.
2207 - Moved re-read last block test to last in "test" command of btape.
2208 - Lots of new documentation.
2209 - Fixed newvol.c to handle retrying 10 times if the volume name already exists.
2210 - Removed int_least16_t from sha1.h because it does not exist on some systems.
2211 - Release job in SD if canceled and waiting on a mount (better cancellation).
2212 - Prompt for Client in restore if not specified.
2213 - Print "Selection is empty!" if no selection list found.
2214 - Add new spec files and bacula.desktop from Scott.
2215 - Update client every time a job is run.
2216 - Add verbose option to daemons for printing more user error info.
2217 - Test if console works with readline 4.3 (yes, it is OK).
2218 - Release new depkgs
2219 - Release new winbacula.
2220 - Add Uname info to Client DB record.
2221 - Improve error messages and make them more consistent when a non-existent
2222   Device is requested.
2223 - Separated the -mwindows option so that only Windows programs
2224   are built with it (bacula-fd, ...) the tty tools such as console
2225   dbcheck, smtp, testfind, ... are now able to be run in a standard
2226   Windows DOS box.
2227 - Add | and < options to Exclude the same as in Include.  
2228 - Add typed in input to the text window in the gnome-console.
2229 - Change function that gets the entry text (previously had orphaned buffer).
2230 - Fix multiple Director problem in gnome-console (thanks to Lutz Kittler).
2231 - Thanks to Renato, I was able to test Bacula on a FreeBSD tape drive.
2232   There are a number of significant differences: 1. reading less than
2233   the number of bytes in a record returns an I/O error.  2. ioctl(MTEOM)
2234   looses the file position. 3. Reading two two EOF marks (or ioctl(MTEOM))
2235   leave you positioned after the second EOF, so you must backspace file
2236   to be able to append.
2237 - Added BSF at EOM = yes/no to Device resource to allow proper positioning
2238   at the end of a FreeBSD tape.
2239 - Made btape "test" do much better testing of error conditions (i.e.
2240   it now ensures that the append went well). It will automatically
2241   detect problems and apply fixes and then retry the test, if it
2242   finally succeeds, it clearly says what directives need changing.
2243 - Add Scott Barninger's rpm changes to the build environment
2244 - Add changes to mtx-changer so users can add eject and sleep for
2245   certain autochangers.
2246 - Implemented FreeBSD chflags (user defined flags).
2247 - Turn restore errors during setting of owner and modes into
2248   warning messages -- for restoring files as non-root.
2249 - Fix how prefixes are handled in restoring soft links.
2250 - Modified btape "test" command to do only those things that
2251   Bacula actually does. There is much more explanation, ...
2252 - Update manual.
2253 - Finally had to back up to gcc version 2 from version 3 to avoid version
2254   3 nightmares.   
2255 - Final cygwin tweaks.
2256 - Move start time to *after* the resource locks are acquired.
2257 - Unable to duplicate Phil's disabling of Bacula with nmap, but
2258   did make the authentication code a bit more conservative for
2259   dealing with bad input.
2260 - Added code to the query command to escape all strings input
2261   before substitution and sending to the SQL engine.
2262 - Escape user entered filenames for restore command.              
2263 - Cleaned up the waiting code a bit -- using broadcast instead
2264   of signal and counting the waiters.
2265 - Implement new pthreads semaphore code.
2266 - #define new semaphore code rather than workq on USE_SEMAPHORE.
2267 - Lots of improvements to the document to address recent support requests.
2268 - Implement cycle through a set of tapes suggested by Eugeny
2269   Fisher with the "RecycleOldestVolume=yes" record in the
2270   Pool resource.  Basically this record causes Bacula to purge
2271   to oldest tape when no more tapes are found.
2272 - Correct a number of small incorrect interactions between limit
2273   variables during recycling.
2274 - Corrected a bug in db_create_media_record() where VolMaxFiles and
2275   VolMaxJobs was not written to the database.
2276 - When the Director starts, the Pool record is updated in the
2277   database with the current contents of the Pool resource.
2278 - Corrected bnet_connect() to immediately stop (rather than looping
2279   for the timeout period) if there is a fatal error (socket, or
2280   hostname to ip).
2281 - Reworked "purge" code to make purging Volumes easier.
2282 - Made "list volumes" list the volumes in all pools -- also
2283   "list volumes pool=Default" does not produce and error message.
2284 - List Pool record after doing "update pool".
2285 - Remove pid file code from Win32 -- not really necessary.
2286 - Make bnet handle null jcr during cancel rather than crash.
2287 - Add CygwinInstall.bat and CygwinUnInstall.bat
2288 - Add db_lock() around newvol.c code to prevent race condition if multiple
2289   callers want a new Volume name.
2290 - Lots of cleanup to Win32 code, with additional error messages.
2291 - Make Bacula work on Win95 (test for GetAttributesEx).
2292 - Add better error messages when end of media is reached or volume
2293   capacity execed.
2294 - Turned off signal catching in readline(), necessary to keep console
2295   from crashing on ctl-Z with RedHat 8.0.  Thanks to David Craigon for
2296   testing this.
2297 - Make the 3rd and hopefully final change to the Finclude structures.
2298   This new version permits multiple sets of options (more code to be
2299   written) to be applied against the same set of files. Thus one can
2300   have options that with match of *.gz and a different set of options
2301   for *.c, ...
2302 - Integrated GNOME Console font resource code supplied by Phil Stracchino.
2303 - Check for job_cancelled() in bnet_connect() code to stop wait loop if
2304   client not available.
2305 - Fix early end of file scanning conf file in lex.c, which previously
2306   caused ABORT -- now reports error.  This could happen with an unterminated
2307   string for example.
2308 - Move Maximum File Size code before write and detect error on writing EOF.
2309 - Additional fix for Solaris 2.6 and a bdb.c fix submitted by Armin Buehler.
2310 - Added detection for Solaris 2.6, which uses older setsockopt() calls.
2311 - Defined sockopt_val_t for setsockopt() calls.
2312 - Added fixes sent by Bevan Anderson that fix multiple connects to FD
2313   (I zap keys for security, so must put back dummy key).  Also a fix
2314   to the Internal database that wrote garbage after the filename in
2315   the database.
2316 - Back out the __SVR4 changes.
2317 - Add automatic configuration of socklen_t
2318 - Attempt to fix problems reported by Lutz with multiple simultaneous
2319   open file Volumes (experimental code). Serialized acquire. This may
2320   fix the problem, but more thought and testing is necessary.
2321 - Add table of "supported" autochanger models.
2322 - Add Solaris 2.6 (__SRV4) changes sent by Peter Schmitz.
2323 - Correct tape selection code in SD (|| => &&). Thanks to Chuck Hemker
2324   for the patch.
2325 - Eliminate FileOptions. Implement new Finclude and Fexclude that
2326   have file options contained in it.  New structure must be transmitted
2327   to FD.
2328 - Split Include/Exclude into new inc_conf.c file.
2329 - Cleanup new Include/Exclude and FileOptions.  Structures in Director
2330   now correct.  Must transmit FileOptions to FD.
2331 - WARNING:  With the adddress and port code in the Catalog you MUST
2332   remove old address= and dport= records!!!!!
2333 - Added code to remove cancelled jobs from the workq -- needs testing.
2334 - Added first cut AIX from output James MacLean sent me.
2335 - Second cut of FileOptions.
2336 - First cut of parsing FileOptions and Counters.
2337 - Added address:port for MySQL as well as socket for local access.
2338 - Fixed job.c in filed to properly handle excluded files. Apparently
2339   I changed the daemon protocol but forgot to update the code.
2340 - Enhance testfind to handle include and exclude files
2341 - Fix getdomainname() prototype for Darwin
2342 - Added new -u and -g options for specifying userid and groupid to
2343   use when running, so that Bacula can reduce its privileges.
2344 - When Bacula was hanging due to an NFS volume being down, I 
2345   fixed a few places in the File daemon where is should have immediately
2346   terminated the connection instead of waiting for the Director to do so.
2347 - Added first cut support for Darwin.
2348 - Temporarily comment out the O_NOFOLLOW to avoid possible subtle problems.
2349 - Implemented O_NOFOLLOW in creating files in create_file.c to prevent
2350   creating a file at the end of a symbolic link.
2351 - Use chown() if lchown() does not exist (e.g. Darwin).
2352 - Always close stdin on startup to avoid having /dev/console attached.
2353 - Change all DATE occurrences to BDATE because it is used by Cygwin headers.
2354 - Add printing of Volume names in SD status output.
2355 - Display all open devices in device chain in SD status output.
2356 - All changing Pool in console run command.
2357 - Thanks to Eric Bollengier for pointing out that the run_program()
2358   return status was not correctly generated. Now fixed (I hope).
2359 - Corrected crash in Internal Database getting Volumes.
2360 - Flush all daemon messages at the end of every job.
2361 - Fix Install.bat script so that Bacula restarts after reboot on WinNT/2K systems.
2362 - Minor changes in the gnome-console directory.
2363 - Integrated in my old Tcl/Tk code into src/tconsole and moved it up
2364   from C to C++.  Pretty crude, but it is a beginning.
2365 - Close syslog() %n exploit in message.c
2366 - Edit space before each line in gconsole.
2367 - Added INCEXE structure so we can have FileOptions.
2368 - Added support for multiple simultaneous open file volumes.
2369 - Fix hard linked files so that the one saved is always restored.
2370 - Add * to restore "dir" listing to indicate marked files.
2371 - Add ability to make md5sum and sha1sum in lib directory.
2372 - Work a bit more on the new daemon protocol.
2373 - Use unmask of 022 or more restive
2374 - Create File volumes with 0640 permissions
2375 - Added support for SHA1 signature. Need to modify DB to have type.
2376 - Document SHA1.
2377 - Work a bit on getting proper child status from bpipe calls.
2378 - Added Ludwig's mtx-changer to the examples/devices directory.
2379 - Added a Warning not to use the Internal Database when it is initialized.
2380 - Compiled and tested SHA1, and added it to the library.
2381 - Added code to print the "load slot" status after autoloading.
2382
2383 =============================================================================
2384 2003-01-24 Version 1.29 released
2385 23Jan03
2386 - Tightened up permissions on all .conf files to be 640 so they are not
2387   world readable.
2388 22Jan03
2389 - Added prefixlinks=yes/no Job record to specify applying the Where
2390   prefix to absolute soft links.  Code is not yet passed to FD, because
2391   FD would then be incompatible with version 1.28.
2392 - Added skeleton of installation for Gentoo release for Patrick Naubert.
2393 - Add timer on open() for reading or writing a FIFO file.
2394 - Put btraceback and btraceback.gdb in sysbin dir (a bit of polution,
2395   but at least dumps will work).
2396 20Jan03
2397 - Added "append" all messages to a log to default bacula-dir.conf
2398 - Added WriteBootstrap to default bacula-dir.conf
2399 - Made smartall.c print "Out of memory" if malloc() fails.
2400 - Added pthread btimer routines.
2401 - Added timer to FIFO open statement
2402 - George was still having problems with VolUseDuration failing.
2403   On looking into it, one line of code subtracting 1900 was
2404   mysteriously missing from the source -- bizarre.
2405 18Jan03
2406 - Yesterday's version corrects all the problems I was
2407   previously having, and my production jobs are now completing
2408   properly.
2409 - Added a #define dev_cap() to test the capabilities bits. I just
2410   makes the code a bit shorter and a bit simpler.
2411 - Added phase 1 support for an output fifo device. The big 
2412   difference here is that it is a STREAM device, which means that
2413   Bacula will only write to it and not read. Thus, Bacula assumes
2414   that the correct "Volume" is mounted and will construct a valid
2415   label (without needing the Volume to be prelabeled), and write
2416   to the device.
2417 - Added phase 1 support for input from fifo device (suppress re-read,
2418   add empty buffer flag).
2419 17Jan03
2420 - Improve printout of dbcheck with # files/path fixing.
2421 - Zap SD authorization code after use.
2422 - Added <> back to smtp (think about this some)
2423 - Doc
2424 16Jan03
2425 - Massive change to add jcr as the first argument to nearly
2426   every db_ call. This is because I was storing the jcr in the
2427   db structure, which will not work because everyone shares
2428   exactly the same structure.
2429 - More cleanups of error termination status in filed.
2430 - Found another bug in message.c where %s was missing in JmsgN. A lot
2431   of cleanup in message.c
2432 - Found places where filename listing was made (restore, verify
2433   vol) where the buffer could possibly overrun.
2434 - Chain include files on the end of the list so that the
2435   order will be correct.
2436 - Rewrote mtx-changer to output one slot per line terminated by
2437   a colon followed by an optional Volume Tag for the "list" command.
2438   Preparation for handling Volume Tags.
2439 - My production crash remains elusive. Adding debug code or running
2440   under the debugger eliminates the problem. I found a case in
2441   message.c where I was extending the message string by two 
2442   characters to send it to the console. VERY BAD. Rewritten.
2443 - Started implementing fifo and program handlers (i.e. streams)
2444   in the Storage daemon. Lots to do.
2445 - Added a trace capability where trace statements are written
2446   to a file. Tmsg(). Hopefully this won't be used much.
2447 - Running lots of "production" saved by scheduling a few minutes
2448   after the current time -- slow process ...
2449 15Jan03
2450 - Removed <> on From and To in smtp.c as suggested by James MacLean.
2451 - Added code to suppress spurious error messages during cancel,
2452   but I was unable to eliminate all errors -- to be worked
2453   on later.
2454 - Up size of print buffer from 2000 to 5000.
2455 - My production run failed again. I'm beginnig to suspect 
2456   hardware problems because running by hand or under the
2457   debugger always works -- we will see.
2458 - Added Update Volume VolFiles to reset correct tape files 
2459   a bit dangerous.
2460 - Use the mysql_escape_string() rather than internal version.
2461 14Jan03
2462 - Cleanup handling of JobStatus by creating a subroutine.
2463 - Fix a number of minor things with JobStatus.
2464 - Print FD and SD JobStatus on backup report.
2465 - Add JCR to findlib -- so now FD stops normally when cancelled.
2466 - My production Director segment faulted during the second Job.
2467   I haven't been able to track it down. After rebuilding, all
2468   jobs finished correctly.
2469 - In investigating the duplicated Paths, I found that there
2470   were 10,552 of them -- only Path records. After checking the
2471   code, I do not see the reason, but I've enhanced the code to
2472   print the full path name.
2473 - I made a few improvements to tools/dbcheck. Mostly it provides
2474   a bit more feedback with verbose mode on when eliminating
2475   duplicate filenames or paths.
2476 13Jan03
2477 - During four simultaneous backups, the File daemon started
2478   detecting buffer corruptions. It turns out to be due to the
2479   fact that the smartall.c routines were not thread safe. They
2480   are now.
2481 - Based on input from James MacLean and team, I eliminated a number
2482   of places where printf could be recursively called by using "%s".
2483 - It turns out that because of an error of my understanding of
2484   mysql_escape_string(), the last argument was taken as the length
2485   of the string to be escaped rather than the maximum length.  I've
2486   now corrected all my code -- Thanks James.
2487 12Jan03
2488 - George Motter reported problems with UseDurations, and it seems 
2489   that there were a number of inconsistencies and problems with
2490   FirstWritten and LastWritten.  Hopefully for the most part they
2491   are now corrected.  Also fixed LabelDate if done through Console.
2492 - Try to chase down reasons why there would be buffer overruns.
2493   Added P & V around referencing last_fname for status.
2494   Rewrote find_one.c with MEMPOOL, but not yet tested enough
2495   to commit.
2496 10Jan03
2497 - Give extra margin to converting filenames from Unix to Windows
2498   in attribs.c of findlib -- dumb cygwin API doesn't provide for
2499   a length.
2500 - Added file:line traceback to size_of_pool_memory, check... and 
2501   realloc  in an attept to get closer to the memory overrun reported
2502   by James MacLean.
2503 09Jan03
2504 - Made yet another fix to quoted string -- paths!  Thanks to
2505   Scott Medlock for reporting this.
2506 - Made | and < work.
2507 - Implemented FIFO reading/writing. To do so, simply explicitly mention
2508   the fifo file (named pipe) in the Include AND add the new option
2509   readfifo=yes
2510 08Jan03
2511 - Started implementing | and < on Include names.
2512 - Changed source to . in cats directory as requested by Andrew Kokarev.
2513
2514 =============================================================================
2515 2003-01-05 Version 1.28b released
2516 - Corrected a typo of working_directory in bacula-dir.conf
2517   reported by James MacLean.
2518 - Fixed the fact that path and filenames in some cases were not
2519   being quoted before going into the database. Many thanks to
2520   James MacLean for reporting this.
2521
2522 =============================================================================
2523 2003-01-05 Version 1.28a released
2524 - Corrected a missing quote in bacula-dir.conf reported by James MacLean
2525
2526 =============================================================================
2527 2003-01-05 Version 1.28 released
2528 General:
2529 - Implemented Bare Metal Recovery for Linux and manual procedures for Solaris
2530 - Now using only a single technotes file kes-1.28 and will add to
2531   it as the development goes on.
2532 - Wrote a general purpose bi-directional pipe command. This replaces
2533   previous use of pipes as well as the run_program previously used.
2534 - Make BSRs stop if no more matches are possible.
2535 - Allow unliminted number of devices in Storage daemon.
2536 - Allow connections to Storage daemon before all devices are initialized.
2537 - Better documentation (and btape test command) on using fixed block
2538   tape drivers.
2539
2540 Changes submitted this submission:
2541 04Jan03
2542 - Add cygreadline5.dll to Win32 release -- needed for console
2543 03Jan03
2544 - Add scripts make_catalog_backup and delete_catalog_backup that makes and
2545   deletes an ASCII copy of the catalog for backup. An example of how
2546   to use it is in the <bacula-src/src/dird/bacula-dir.conf file.
2547 - Made a nicer column oriented listing of scheduled jobs for "status dir".
2548 02Jan03
2549 - Added backup/restore of raw partitions.
2550 - Corrected restoration of files in root directory (problem with
2551   splitting path from file).
2552 01Jan03
2553 - Finally decided to cleanup handling of splitting path and filenames
2554   in the cats directory. Now the code is in one place sql.c and it
2555   is done using Pool memory, so there are no length restrictions.
2556 31Dec02
2557 - Add start of Solaris bare metal recovery
2558 - Add Site Visit usage statistics to Web page
2559 - Got Bacula listed on www.backupcentral.com
2560 30Dec02
2561 - Retest bare metal recovery on Linux 2 times with verify
2562 - Cleanup printout of verify differences using proper casting to
2563   handle shorts and long longs.
2564 29Dec02
2565 - Added --enable-client-only to ./configure
2566 - Modified --enable-static-sd to work better and documented it.
2567 - Fixed Restore options (never,ifnewer, ...). They now work.
2568 - Moved the stored.c Resource lock into the allocation thread so
2569   that the same thread sets/clears it. This created a problem on
2570   FreeBSD.
2571 28Dec02
2572 - Added more rescue documentation.
2573 - Did a spell check of the Bacula doc.
2574 - Modified bscan to use the working directory as specified in the
2575   configuration file as the default.
2576 25Dec02
2577 - Fixed an important bug reported by George Motter that caused only
2578   the last option on an Include record to be used (all previous options
2579   were lost).
2580 24Dec02
2581 - Chase down some inconsistencies in creating Media records from
2582   the Pool defaults, and in updating/creating the Pool from the
2583   resource. Also fixed the cats DB routines to include all
2584   fileds (VolUseDuration was missing for example).
2585 21Dec02
2586 - Added building static versions of daemon static-bacula-dir, ...
2587 - Fine tuned the rescue (bare metal) code including support for grub.
2588 - Added skeleton freebsd rescue
2589 - Corrected SQL syntax error in autoprune code (JobType => Type).
2590 - Added error messages for SQL errors in autopruning.
2591 19Dec02
2592 - Documented Bare Metal Recovery
2593 - Create new "rescue" directory containg the Bare Metal Recovery code.
2594 - Fiddle with SQL a bit for pruning as apparently the last InitCatalog
2595   was pruned after the expiration date eventhough it was the ONLY copy!
2596   I'm not sure this is fixed yet.
2597 18Dec02
2598 - Allow Director to pass a NUL where string to FD (fix in FD).
2599 - Fix installation mv of query.sql.
2600 - Make sure btraceback.gdb is not wiped on "make distclean"
2601 - Corrected a bug in mod of replace options pointed out by Dave Anderson.
2602 16Dec02
2603 - Started adding FileOptions ...
2604 - Fixed  and incorrect print out of the number of files restored (Jarif).
2605 - Finally fixed EndBlock (and file address for Files) in catalog!
2606 - Added hostname to tape header as always planned.
2607 - Removed Level code (will not implement unless strong demand exists).
2608 - Tweaked bscan to print number of errors ignored before first SOS.
2609 - Enhanced btape "fill" to permit using one tape and to dump last
2610   block before writing and upon read back.
2611 - Make fsf_dev() return 0 on fail and 1 on success.
2612 - Use new db_get_job_volume_parameters() to enhance Write Bootstrap to
2613   contain more info (start/end file/block, file indexes).
2614 - Added --enable-static-fd, sd, and dir to configuration to enable making
2615   static versions of the daemons.
2616 13Dec02
2617 - The btape test program was indicating errors on Adrian's machine
2618   using the ATAPI (ide-scsi) tape drive. It turns out that this
2619   is a fixed block driver as a consequence, Bacula must be setup
2620   to write fixed blocks. btape was not always using the fixed
2621   blocks defined in the Bacula config, so that has been updated.
2622   It now works fine. A lot of tips added to the Bacula test command 
2623   to help guide the user.
2624 - Documentation of the above significantly improved in the manual.
2625 12Dec02
2626 - Added code in watchdog to permit setting and clearing child timers. If
2627   the timer expires, the child process is killed.
2628 - Modified restore to handle differential jobs.
2629 - Added a new test to the btape "test" command
2630 09Dec02
2631 - More documentation of new features (week position in scheduler, bsr).
2632 - Re-read last block written on full tape to verify it.
2633 - Fix segmentation fault with btape fill command due to missing FileSet MD5.
2634 07Dec02
2635 - Created better SQL input editing routines str_to_int64 and str_to_uint64()
2636 - Pull Client from database in Console restore command.
2637 - Create a Unique list of Volumes to be mounted (previously had repeats).
2638 - Made many of the SQL searches better by using the ClientId rather than the name 
2639   in the restore Console command.
2640 - Modified reading of a tape to include the VolFile info. Once the
2641   tape is past the specified file, reading stops.  The BSR now includes
2642   both the VolFile and VolBlock. Currently VolBlock is not used.  
2643 - Handle multiple volumes better by creating a real volume list with all
2644   parameters in it.
2645 - Display "At prompt waiting for input" in gnome console when at subcommand   
2646   prompt.
2647 - Broke ascii to internal and internal to string editing routines out into
2648   new lib/edit.c file.
2649 02Dec02
2650 - Added a readme and an afs-bacula script to the examples directory
2651   that permits Bacula to backup an AFS filesystem. Thanks to
2652   Lucas Mingarro for the submission.
2653 - Added A Sun-desktop autoloader script and Device definition to the
2654   examples/devices subdirectory.  Thanks to Lucas Mingarro for the
2655   submission.
2656 - If the WriteBootStrap fails, the job will now be marked in error.
2657 - Added a week position to the scheduler syntax that allows you to
2658   specify 1st, 2nd, 3rd, 4th, or 4th, or first, ... fifth as a week
2659   position specification in front of a day. So if you say
2660
2661     1st sun ...
2662
2663   the scheduler will start only on the first sunday of the month.  The
2664   day specification can also be a day range e.g. sun-fri.
2665   This code is untested.
2666 - Implemented bpipe.h and bpipe.c in src/lib, which defines a bi-directional
2667   pipe.  This allows executing other programs and sending them information
2668   as well as getting info from them.   
2669 - Replaced the previous pipe usage with bpipes in RunBeforeJob and   
2670   RunAfterJob.
2671 - The mail program now uses bpipes rather than pipes, which means that any
2672   error output will appear in the job output (truly bi-directional).
2673 - Modified BSR to handle counts and to stop when no more matches are possible.
2674   This is untested.
2675 - Improved error messages in smtp.
2676
2677 =============================================================================
2678 2002-12-12 Version 1.27d
2679 - This is a minor update that fixes a segmentation fault in btape
2680   as well as reduces non-important error messages in bscan.
2681
2682 2002-11-29 Version 1.27c
2683 - Yet another silly error duplicating a column name in the SQLite
2684   make tables.  No code change, just a make file.
2685
2686 2002-11-29 Version 1.27b
2687 - Set DB version to 5 in DB make files.
2688
2689 2002-11-28 Version 1.27a
2690 - Use g++ instead of gcc for testfind in tools 
2691
2692 2002-11-27 Version 1.27 (26Nov02) released 28 November 2002
2693
2694 General: from kes25Nov02
2695 - Mostly Cygwin changes
2696
2697 Changes submitted this submission:
2698 - Updated bdb_find.c to have new calling sequence for db_find_job_start_time
2699 - dird/catreq.c edit in Volume name in error messages to SD
2700 - attribs.c switch to using the cygwin API to convert from POSIX paths
2701   to Win32 paths. This now permits Win32 path specifications in Include
2702   statements (all combinations not yet tested).  It also avoids the large
2703   number of errors seen by Lutz if a Win32 path is specified in the Dir.
2704 - Update testfind help and remove set_attribsEx debug code.      
2705 - Build testfind as default.
2706 - Turn off debug message in stored/askdir.c
2707
2708 General: from kes21Nov02
2709 - Another change in the database. You MUST either re-initialize
2710   your database or use the appropriate ./alter_xxx_tables in
2711   the src/cats directory.
2712
2713 Changes submitted this submission:
2714 - Additional documentation.
2715 - Added MaxVolFiles to the database (not yet implemented in code).
2716 - Increased the database version from 3 to 4.
2717 - Change VolMaxBytes to MaxVolBytes, which is much more descriptive.
2718 - Compressed unnecessary spaces out of a lot of SQL statements.
2719 - Changed many %d to %u where unsigned integers are used.
2720 - Added the Bacula version and build date to each backup output.
2721   This will help knowing what version of Bacula was used.
2722 - Implemented VolUseDuration MaxVolBytes, MaxVolFiles, and MaxVolJobs
2723   based on maximums set in the Volume (Media) record rather than in the
2724   resource. This means the values can be individually set on a Volume basis.
2725 - Allow commas separating Include options (this was a subtle bug).
2726 - Added maximum string length argments to a number of subroutines to
2727   prevent buffer overflows. Most notably was do_prompt().
2728 - Replaced MANY occurrences of strcpy() with bstrncpy(), which guarantees
2729   both that the length is not exceeded and that the string is properly terminated.
2730   This has a risk of a certain destabilization -- as does the changes to
2731   the SQL noted above.
2732 - In cram-md5 routine use my_name if gethostname() returns an error.
2733 - Increase timeout from 2 minutes to 3 minutes in authorization code.
2734 - Check the full string including \n in authorization.
2735 - Throw away any response longer than MAXSTRING.
2736 - Added a number of additional error checks on subroutine return statuses.
2737 - Replaced as many lld's with edit_uint64 as I could find.
2738 22Nov02:
2739 - Added MaxVolBytes to Pool record - had forgotten it. Updated DB version.
2740 23Nov02
2741 - Update manual to document new Pool/Volume attributes
2742 - Correct make_sqlite_tables (typo, plus missing value in Pool)
2743 - Fix bizarre behavior in gnome-console and console when auth fails.
2744 - Add Pool attribute query
2745 - Add a few more error messages in askdir.c
2746 - More strcpy() conversions to bstrncpy().
2747
2748 General: from kes18Nov02
2749 - Did a number of cleanups of string copying to limit the length
2750   and prevent buffer overflows.
2751
2752 Changes submitted this submission:
2753 - Added a mutex arount the gethostbyname() so that multiple simultaneous
2754   jobs get the correct address.
2755 - Added the MaxVolJobs to the Media alter tables script for MySQL (forgot it).
2756 - Changed arg to db_find_job_start_time to be POOLMEM for returning the string.
2757 - Add the new VolUseDuration and MaxVolJobs to all the db_ routines.
2758 - Use bstrncpy() in most places in the db_ routines to prevent a bad 
2759   database from crashing Bacula (self protection).
2760
2761 General: from kes13Nov02
2762 - You MUST either re-initialize your databases or use the 
2763     ./alter_mysql_tables
2764   or  
2765     ./alter_sqlite_tables
2766   in the <bacula-src>/src/cats directory to modify your database tables.
2767 - Major improvements to dbcheck including an interactive mode.
2768
2769 Changes submitted this submission:
2770 - Implemented VolumeUseDuration and MaximumVolumeJobs which control
2771   when a tape can be marked Used.
2772 - New tape status "Used" means it was used and cannot be used any more.
2773 - Defined utime_t which is 64 bit epoch time in seconds.  btime_t is
2774   64 bit epoch time in microseconds.
2775 - Created alter_xxx_tables to add new columns (VolUseDuration, MaxVolJobs) to
2776   database. Incremented db version.
2777 - Changed a few subroutine names concerning dates to be more descriptive.
2778 - Fixed several places where the last filename was not stored in JCR in
2779   FD verify_vol.c and restore.c
2780 - Major update to dbcheck.  Unfortunately I used subselects, which work
2781   perfectly fine in SQLite, but not at all in MySQL.  I must now rework
2782   it for MySQL. What a pain!
2783 - Removed "Database found" from configure output. It was no longer used or valid.
2784 - Corrected doc --working-dir => --with-working-dir  Thanks to Tuck for 
2785   reporting this.
2786 - Added the database name to the error message for mismatched DB version.
2787 - Commented out GMP and CWEB from configure as they are not currently used.
2788
2789 General: from kes09Nov02
2790 - Converted the manual over to a new format written in wml. This
2791   gives navigation buttons on the top and bottom of each page
2792   as well as a standard page size.
2793 - Updated the main Web site, providing a menu bar to the left
2794   and much better organization and presentation of the information.
2795 - Added code to recognize a Volume written with a larger block
2796   size than specified. The code automatically adjusts. 
2797
2798 Changes submitted this submission:
2799 - Created a new scripts directory and moved most of the scripts
2800   previously in the main directory there. This cleans things up
2801   quite a bit.
2802 - Moved the randpass stuff into autoconf.
2803 - ensure that the generic make_bacula_tables and drop_bacula_tables
2804   are installed.
2805 - Added code to filed to allow it to be run from inetd.  Just add the
2806   -i option.  I have not tested it.
2807
2808 General: from kes30Oct02
2809 - Alex found a problem with GZIP compression -- fixed.
2810 - bacula stript fixes.
2811 - Segment fault in Director fixed.
2812 - Added openbsd to platforms
2813
2814 Changes submitted this submission:
2815 - GZIP compression was broken for large files due to a variable that
2816   is changed during the compression. This was relatively easy to fix.
2817   However, there were a number of fixes required to make GZIP and SPARSE
2818   files work together. Found one more place in bextract where SPARSE_GZIP
2819   testing was missing.
2820 - During testing of the above, I ran into the restore problem of multiple
2821   FileSet records. Fixed by including the FileSetId and the MD5 on the
2822   selection string, then always using the FileSetId. It is a bit
2823   confusing for the user, but ...
2824 - Francis found a problem with bacula.in (fixed - thanks)
2825 - I found another problem with bacula.in, so now it REALLY should work
2826   on most systems.
2827 - Added the Replace options code for restores. Not tested.
2828 - Fixed an ugly stack overrun bug in reading the config file
2829   that has been in for a long time.  I found this in testing on FreeBSD
2830   where the Director seg faulted.
2831
2832 General: from kes29Oct02
2833 - Major change to the bnet communications routines.
2834
2835 Changes submitted this submission:
2836 - Modified the bacula script to use pid files, so this script should
2837   now work on more platforms.  Updated devel_bacula as well.
2838 - Added the full GNU hostname on the configuration print output.
2839 - Added gettimeofday() to configure, and tweaked a few variables for
2840   OpenBSD.
2841 - Added a chapter to the manual on Porting Bacula to other platforms.
2842 - Documented in Tips how to use the WriteBootstrap record.
2843 - Modified bc_types.h to error if 64 bit types are not found.
2844 - Pass replace option for restore to the FD (no code to use it yet).
2845 - Modify the FD to pass back the GNU OS string as well as the DISTNAME
2846   and DISTVER. This needs to be put in the Client record in the catalog.
2847 - Major reworking of the bnet routines to eliminate the zero length which
2848   previously indicated a signal. This risks to create some subtle communications
2849   bugs.  The changes now permit blank lines to be sent from the user to the
2850   Director.
2851 - Found and corrected a few more places where the Win32 attributes were not
2852   being recognized.
2853 - Permit spaces in the Where string (restore) by bashing/unbashing them.
2854 - Handle quotes correctly in the Console program (actually Dir ua code).
2855   Previously they were not handled in the middle of a string.
2856 - Corrected two error message (error reading file), which previously stated
2857   it was a network error.
2858 - Reworked the files in the binary Windows release. Removed unused programs 
2859   and added a README with the copyright as suggested by John. Also added
2860   console.exe to the release.
2861 - Found and corrected an autoloader mount problem where the wrong tape
2862   was specified.  Previously it looped, then gave up.  Now it correctly
2863   detects the volume is not correct and zaps the Slot in the catalog.
2864
2865 General: from kes23Oct02
2866 - I have mainly worked on getting all the details of a Restore
2867   to work correctly (new tape format, support for Win32 
2868   attributes, ...)
2869 - Trademarked name Bacula.
2870 - Implement Bacula tape format 11 (1.0 Immortal). This format
2871   will be maintained forever.
2872 - Accept Any Volume is yes by default. This modifies Bacula's behavior
2873   when writing tapes.
2874
2875 Changes submitted this submission:
2876 - Corrected a bug on FreeBSD where CFLAGS would get a "yes". I was
2877   unable to reproduce this, but a user confirmed the correction.
2878   It was a problem with detection of largefile support, which FreeBSD 
2879   has by default.
2880 - Added a new "license" chapter in the manual. Re-licensed a number of
2881   library routines (bnet.c, hmac.c md5.c, cram-md5, ...) with LGPL so that they
2882   can be used in proprietary software to access Bacula if so desired.
2883 - Move Director's AutoChanger doc to correct location (in Storage      
2884   resource). 
2885 - Document why trademark (to protect compatibility).
2886 - Implement and turned on Bacula tape format 11 (also BB02). This
2887   format moves the VolSessionId and VolSessionTime from each record 
2888   header into the Block header. This is MUCH more efficient when reading
2889   records as now whole blocks can be skipped.   
2890   Also added JobStatus in End Of Session record, and added MD5 for
2891   FileSet, which is necessary to insure uniqueness.
2892 - Implement a new Bacula time format for btime_t. It is Epoch time
2893   in microseconds (i.e. base 1 Jan 1970 in microseconds).
2894   This replaces previous floating point times.
2895 - Added Win32 extended attributes. In doing so, I moved all attribute
2896   handling from src/lib into src/findlib.  Added new streams for 
2897   Win32 attributes and for GZIP Win32 attributes.
2898 - Modified "Accept Any Volume" so that it really permits any volume
2899   in the pool to be mounted.  
2900 - Removed "Mount Anonymous Volumes" from Storage daemon config.
2901 - Implemented sparse files. You must add "sparse=yes" on the include line
2902   for it to be enabled.
2903 - Print "None" in backup summary rather than 0.0% if there is no compression
2904   enabled.
2905 - Improved error checking in daemon connection/authentication code to prevent
2906   garbage data from harming a Bacula daemon.
2907 - All daemon tools MUST have a config file.
2908 - Completely strip drive specification on Win32 if a Where prefix is specified.
2909 - Corrected DB info for writing to files. Now the File Address is stored
2910   in File-Block variables in the catalog.
2911 - All Storage daemon tools now use common code for acquiring/reading
2912   Volumes.
2913 - If a device is unmounted, report it even if the device is not open. This
2914   will help inform users who have BLOCKED Bacula by unmounting a drive.
2915
2916
2917 =============================================================================
2918 2002-10-12 Version 1.26 (10Oct02)
2919 General: from kes10Oct02
2920 - Changed Job name conventions to avoid : which is an illegal
2921   character on Windows.
2922
2923 Changes submitted this submission:
2924 - Added check for inet_pton to configure.in. If it does not
2925   exist (e.g. Windows) use inet_aton
2926 - Documentation on GZIP.
2927 - Another restore doc example.
2928 - Documented btape fill command.
2929 - Set default restore directory from /tmp to /tmp/bacula-restores
2930 - Add additional no find error messages to sql_get.c
2931 - Creating a bootstrap file on Windows failed because the Job name
2932   contained colons which are illegal on Windows. Replaced the
2933   colons with periods.  This corrects the Windows restore problem.
2934 - Print number of files to be restored in "restore" command.
2935 - On Windows systems, if there is a prefix, completely eliminate
2936   any drive: at the beginning of a path.
2937 - Minor corrections to the tree routines to handle Windows
2938   files such as c:/ better. Previously it insisted on /c:/, which
2939   would then not be found in the catalog for a "dir" command.
2940 - Modified cd command in restore to try /c: if c: fails.
2941 - Add a new S_ISWIN32 bit to the st_mode word so that low level
2942   routines that create files do not print error messages.
2943 - More work must be done to restore all Windows files correctly.
2944   Currently the following bits are not handled:
2945     Archive
2946     Hidden
2947     System 
2948   Also, all the dates are not properly restored.
2949
2950 General: from kes09Oct02
2951 - More documentation.
2952 - Implemented new fill command in btape that permits filling
2953   a tape and then reading it back to ensure that it works
2954   with Bacula.
2955
2956 Changes submitted this submission:
2957 - Added ReadBytes to JCR, which contains Job bytes read by
2958   FD, JobBytes contains compressed output of FD.
2959 - Modified FD to pass back JobStatus, ReadBytes, JobBytes, ...
2960   for backup jobs.  This is upward compatible.
2961 - Modified backup termination status report to contain the
2962   compression ratio 100 * (1 - compressed-bytes/uncompressed-bytes)
2963   This will always be zero if no software compression was
2964   done, or if you are using a version 1.25 or older FD.
2965 - Pickup Job termination status of FD in backup, so now
2966   the termination status represents the state of all three
2967   daemons.
2968 - Implemented new fill command in btape that permits filling
2969   a tape and then reading it back to ensure that it works
2970   with Bacula.
2971
2972 General: From kes06Oct02
2973 - Implemented first major cut of bscan -- program to scan a tape
2974   and recreate a Bacula catalog.
2975 - Fixed lseek() relative negative seek that prevented writing multiple
2976   jobs to a File volume.
2977 - Implemented BB02 tape format -- currently turned off for writing.
2978
2979 Changes submitted this submission:
2980 - Updated README
2981 - Implemented new BB02 tape format, which moves the VolSessionId and
2982   VolSessionTime from the record headers into the Block header.  It
2983   is currently turned off.
2984 - Implemented new btime time/date format on the tape. This is currently
2985   turned off.
2986 - Added JobStatus to EOS tape label. This is currently turned off.
2987 - Changed start_block, ... to StartBlock in JCR for uniformity.
2988 - Print a message telling which tables were dropped/made with  
2989   ./drop_bacula_tables.
2990 - Return JobType and JobLevel in db_get_job_record().
2991 - Implemented get_current_btime(), which returns btime_t.
2992 - Bump debug message max size to 2000 bytes.
2993 - Add btime_t serial/unserial routines.
2994 - Rework all tape label routines to integrate btime and other
2995   label format changes (currently turned off -- for writing).
2996 - Fix lseek() to always be positive -- block.c
2997 - Consolidate record, block, and label major #defines in block.h.
2998 - Major implementation of bscan. Some more minor tweaking will be
2999   necessary.  E.g. add multiple records for multiple simultaneous
3000   Jobs.
3001 - Cleanup lseek() to always use off_t as second argument.
3002 - Add new "created" tape label (EOT_LABEL). This generates a callback
3003   to the read_records() routine when the final end of all tapes is
3004   reached allowing proper termination and updating of the media records.
3005
3006 General: From kes25Sep02
3007 - Added means to bind servers to specific address.
3008 - Documentation
3009
3010 Changes submitted this submission:
3011 - Added DirAddress, FDAddress, and SDAddress records to the corresponding
3012   resources that allow the server to bind to a specific address 
3013   rather than any address.  This security improvement was suggested by
3014   a user -- thank you.
3015 - Eliminated deprecated "Address" record from all sample Storage resources.
3016 - Made quite a lot of improvements to the bscan program. Much more
3017   to do. Aside from details, it is able to recreate a database
3018   from which you can do a restore.
3019 - The s option is not accepted on all versions of ar, so replaced it
3020   by an explicit ranlib call.
3021 - Fixed a bug that caused the Director to crash if you rudely bring
3022   down the console program in the middle of an SQL command.
3023 - Fixed a bug (missing break) that caused scheduled Admin jobs to
3024   be listed as "Unknown type".
3025 - Removed old code from Storage daemon that used a separate FD port.
3026
3027 General:  From kes14Sep02
3028 - Better key generation on non OpenSSL systems.
3029 - 64 bit file address support if available.
3030 - Implement autochanger for reading
3031 - Lots of cleanup of tape reading code.
3032 - Automatically create all Pool resources when Bacula starts.
3033 - Implement bscan.c
3034 - Implement autochanger use via the Console commands "add" and "label"
3035 - Begin implementation of a regression script 
3036 - Write bootstrap after ever job
3037
3038 Changes submitted this submission:
3039 - After noticing that the non OpenSSL random key generator was
3040   not good on Solaris, John wrote a very nice randpass generator.
3041 - Integrated John's makeSessionKey for generating the FD->SD
3042   authorization.
3043 - Statically link tools (doesn't work on Solaris).
3044 - Document how to debug Bacula (new chapter in the manual)
3045 - Remove unneeded printing of error message in sql_get.c
3046 - Free SD description config record (previous oversight)
3047 - Bash spaces when sending Director names, and unbash them when 
3048   received.
3049 - Ensure no divide by zero in rate computation in backup.c
3050 - Implement WriteBootstrap in backup.c
3051 - Allow tape reading to request volume information for any
3052   volume.
3053 - Create all Pool resources at startup.
3054 - Show only Backup jobs in Restore listing of last 20 Jobs.
3055 - Handle 64 bit stat packets in restore.
3056 - Don't do shell expansion on store_dir in config if string 
3057   starts with |.  This is used for piping the program for the
3058   WriteBootstrap.
3059 - Ignore SIGHUP -- DéjàGnu was triggering this. 
3060 - Implement autochanger for reading, many changes to 
3061   acquire_device_for_read()
3062 - Implement callback for reading Volume. Implement in bextract,
3063   bls, and bscan.
3064 - Implement bscan
3065 - Add count to bsr.
3066 - Fix Volume in bsr.
3067 - Move autochanger code to new subroutine in mount.c
3068
3069 =============================================================================
3070 2002-09-05 Version 1.25a (05Sep02) Released
3071 - Fix unitialized stack variable in bextract so it
3072   will always read the currently mounted tape.
3073
3074 =============================================================================
3075 2002-09-04 Version 1.25 (01Sep02) Released
3076   General:
3077 - Added .cvsignore files in each directory to cut down on the
3078   CVS output when scanning directories and finding Makefiles
3079   and such which are not part of the CVS tree.
3080
3081   Changes submitted this submission:
3082 - Cleaned up a lot of the error messages in Verify, including
3083   indenting.
3084 - Had to remove some of the "automatic" error message printing
3085   in the DB because they are in fact things that come up 
3086   for Verify but not really errors.
3087
3088
3089   2002-08-30 Version 1.25 (30Aug02) Beta
3090   From kes30Aug02
3091 - Fixed a bug where only the first file was restored if
3092   it is hard linked. The other links were lost.
3093 - In some cases of restoring to alternate directories, softlinks
3094   were not properly restored.
3095
3096   From kes28Aug02
3097   General:
3098 - Bacula backups now run up to 12 times faster than version 1.24
3099 - Bacula can run multiple simultaneous Jobs.
3100 - Had to turn off TRANSACTIONS in SQLite because it doesn't work
3101   with multiple simultaneous jobs (I'm working on this).
3102 - Added a better Job printout for Restore Jobs.
3103 - Added a save/restore Rate to backup and restore jobs. This
3104   does not yet subtract out operator wait time so it will be
3105   underestimated it the Job waits on the tape (mount/label).
3106 - Fixed a major bug caused by free()ing a buffer twice in
3107   the Restore code. This made the SD more or less useless after
3108   any restore Job. Arrggg!
3109 - DIR - SD protocol changed, both must be updated at the same time.
3110 - DIR - FD protocol changed in upward compatible way. Upgrade of   
3111   FD not required, but recommended.
3112
3113   Changes submitted this submission:
3114 - Added bell to "make" when errors are detected.
3115 - Changed default compile option from -g to -g -O2
3116 - Additional documentation as usual -- much based on questions or
3117   feedback from users. Thanks.
3118 - Fixed example config files to use new syntax and to have a 
3119   Restore Job.
3120 - Define ETIME to ETIMEOUT for Irix
3121 - Added JCR filed to DB structure permitting direct printing error
3122   messages from within the Database subroutines.
3123   Some error messages may be printed twice as a consequence.
3124   When I see them or someone reports them, I will remove the double.
3125 - Added JCR to the bsock structure. This allows direct printing
3126   of network errors from within the network code.
3127 - Made most "trivial" debug messages have level 100 or greater. This
3128   allows for easier debugging of new code using the range below 100.
3129 - Began replacing all Emsg() with Jmsg() using a NULL as the JCR in    
3130   Jmsg() is the same as Emsg().
3131 - Fixed several crashes in the Director because of malformed config files.
3132 - Added SpoolAttributes to Job resource.
3133 - Pass CatalogFiles to SD. If set to no, the attributes are dropped 
3134   within the SD rather than being sent to the DIR.
3135 - Cleaned up a number of information/error messages in user interface.
3136   This includes eliminating the "pretty please" response in favor of
3137   "yes/no" to delete volumes and pools.
3138 - Cleaned up quite a number of uninitialized variables reported when going
3139   to -O2, most were harmless, but a couple could cause problems.
3140 - The cd command in restore was not working correctly (it didn't allow some
3141   legal cds).
3142 - Fixed a segmentation violation in the directory tree handling code in 
3143   the restore command.
3144 - Handle a few error conditions in the restore command better.
3145 - Permit "Where" to be set to nul in modification of a run command.
3146 - Clarified the error message for Verify if an InitCatalog has not previously
3147   been done -- thanks Chuck.
3148 - Add MaximumConcurrentJobs to FD.
3149 - Added code to mem_pool to die if a buffer is released twice.
3150 - Lots of work done on SD for multiple simultaneous jobs. Split device.c
3151   into device.c, mount.c and acquire.c
3152 - Started writing new lock code for SD, but may back it out -- needs more
3153   thought. Current code works, but is too complicated. Maybe can simplify it.
3154 - Cleaned up the SD tools code quite a bit. Added bootstrap to all tools.
3155 - Ensure that tape session labels are not split across two blocks. This makes
3156   reading them back much easier.
3157 - Fixed another restore bug concerning tape labels on multi-volume saves.
3158
3159 =============================================================================
3160 2002-08-14 Version 1.24
3161   From kes12Aug02
3162 - Made a new tools directory.
3163 - Moved smtp into the tools directory.
3164 - Created a dbcheck program in the tools directory that
3165   checks for certain database errors and if requested fixes them.
3166 - Put the database link flags on DB_LIBS so that it now only is
3167   on binaries that actually need it.
3168 - Document dbcheck and testfind programs.
3169 - Move testfind to tools directory.
3170 - Check for FileSet after getting Client name in Restore command.
3171   Modify all necessary SQL commands to accept FileSetId.
3172 - Add a db_get_fileset_record in cats directory.
3173 - Correct list last 20 files concatenation to be MySQL 
3174   dependent. They aren't SQL standard. Use SQL standard || for
3175   other SQL programs.
3176 - Modify dir command in file selection to produce a long form
3177   listing of the file/directory name.
3178 - Add platforms/irix/*.in files to CVS
3179 - Make Console command scanner accept quoted value fields.
3180 - If after selecting Client to restore, there are multiple
3181   FileSets, ask user to select one.
3182 - After obtaining JobIds for restore, ensure that there is only
3183   one MediaType, and select a Storage resource to be used.
3184
3185   From kes11Aug02
3186 - Made restore actually work.
3187 - Made console and gconsole be configured (requested by Chuck)
3188 - Updated kernstodo
3189 - changed fs in Job record to fileset for clarity
3190 - The console run command was not properly picking up the command
3191   line arguments.  Fixed!
3192 - Changed add/remove/rm to mark/unmark
3193 - Volume keyword VolumeName was wrong, changed to Volume (in restore bsr).
3194 - Pass jcr to parse_bsr, and if non-NULL, it will output error messages
3195   to Job stream rather than Emsg.
3196 - Modified lexical scanner to include caller context so that jcr can
3197   be stored in lex context allowing error messages to be properly 
3198   routed.
3199 - Renamed the Job message chain to be jcr_msgs. This eliminated the      
3200   previous confusion with the default value, now named jcr->messages.
3201 - Implemented multi-volume bsr records.    
3202 - Implemented pm_strcat() and pm_strcpy() to cat/add to memory pool
3203   buffers in same way as strcat/strcpy, but expanding buffer.
3204 - Modified db_get_volume_names to handle arbitrarily long Volume list.
3205
3206   From kes07Aug02
3207 - If the Console program terminated during the printing of messages,
3208   the message file was left locked. This was corrected by using the
3209   new read-write lock code.  
3210 - Implemented Pw() and Vw() for obtaining and releasing a write lock
3211   using the rwl_xxx routines.
3212 - Deleted some old pthread_mutex code from mysql.c
3213 - In making the Irix port, I previously corrected the base64 routine so 
3214   they were not sensitive to the machine definition of char. This made
3215   them incompatible with previous versions invalidating MD5 signatures
3216   which are in base64 format. I have now corrected this, making the
3217   routines compatible with the previous version but also insensitive
3218   to the default definition of char.
3219 - Removed some unnecessary NPRT() usage in signal.c (pointed out by
3220   the Irix compiler).
3221 - Add back BNET_NONO for compatibility with older File daemons.
3222 - Implement runing a restore Job in the restore command.
3223 - Make installation of query.sql unconditional. To prevent you own file
3224   from being overwritten, give it a different name.
3225 - Made parse_command_args() in ua take command from ua->cmd, this
3226   simplifies it and allows usage in other places -- e.g. building
3227   arguments for created run command in restore.
3228 - Cleaned the naming of s_full_ctx to be s_jobids.
3229 - Write the bsr created in restore to "working-directory"/restore.bsr
3230 - Fix bugs in command line scanner in run command -- also some misplaced
3231   breaks!
3232 - Eliminate static cmd in ua_server.c
3233 - Eliminate segmentation fault when using the Run command in the
3234   Console -- forgot to init_msgs().
3235
3236   From kes06Aug02
3237 - Did a good amount of documentation.
3238 - Added sql_cmds.c to CVS, forgot, pointed out by Chuck.
3239 - Added new platforms/irix directory to CVS
3240 - Turn off transaction debug code in sql.c
3241 - Reworked the scheduler so that it handles the same Job starting
3242   twice in the same hour. Previously it took one or the other.
3243 - Tightened up the "slop" in the timings that I programmed to ensure
3244   that the same job isn't run twice or that no job was missed.
3245 - Increase the sleep time.
3246 - Used job_type_to_str() in status so that Admin jobs are correctly reported.
3247 - Add internationalization message chars to a number of routines
3248   in util.c
3249 - Make the watchdog timer clear the mutex when it exits.
3250 - Some tweaks to the Restore command. It needs fixing when a Job spans
3251   two or more volumes.
3252
3253   From kes05Aug02
3254 - Initial cut at adding Irix File daemon support.
3255 - Lots of work on the restore command.
3256 - Take a stab at eliminating the "broken pipe message"
3257   when the console program prematurely terminates.
3258 - Reimplemented transactions for SQLite by keeping
3259   them all in the same thread.
3260 - quit in the Console program now waits for Bacula to
3261   quit. To immediately quit, you must enter .quit
3262 - Eliminated BNET_EOF -- this COULD have some negative consequences
3263   on interdaemon communications.
3264 - Define Job termination status for Admin jobs.
3265 - Write new bstrncpy() function that guarantees that strcpy is
3266   properly terminated.
3267 - Fixed command input in ua_input.c to accept quoted items as a
3268   single field. 
3269
3270   From kes01Aug02
3271 - The changes that added indexes to the SQLite database were
3272   lost -- thanks to Chuck for pointing this out. Redone.
3273 - Fixed a problem quoting strings in SQLite. This showed up
3274   as database errors with files containing ' or " in the filename.
3275 - Implemente restore command -- still in progress.
3276 - Added indexes to all fields in SQLite that exist in MySQL.
3277 - Moved unused immortal files from src/lib to src/immortal.
3278   This will permit splitting depkgs.
3279 - Started work on adding embedded MySQL. Cannot get the tables
3280   to work for the moment. Please don't try to use this option.
3281 - Convert to using single quotes for enclosing all strings.
3282 - Implement correct quoting algorithm for SQLite strings.
3283   Is dequoting needed?
3284 - Started centralizing SQL statments in the Director in sql_cmds.c
3285 - Changed a number of M_ABORTs to M_ERROR_TERM so that program terminates
3286   but does not produce a dump.
3287 - Allow wild-card matches in bsr for Client name, and Job.
3288 - Change OflineOnUnmount=no as default.
3289 - Fixed improper printing of filenames containing a space in bls.c
3290   Thanks to Carlos for reporting this.
3291
3292 ===========================================================================
3293 2002-07-26 Release 1.23a
3294 - Fix segmentation fault is FD status.
3295 - Turn off TRANSACTIONs for SQLite.                        
3296
3297 ===========================================================================
3298 2002-07-23 Release 1.23
3299   From kes22Jul02
3300 - Updated Bacula to handle some minor differences in MySQL 4.0.2
3301   (still works with older MySQLs).
3302 - Updated MySQL documentation to correct some minor errors.
3303 - Added kernstodo to CVS
3304 - Fixed create_mysql_database, which I recently accidently broke.
3305 - Disallow zero length volume names in Console program.
3306 - Create alter_mysql_tables and alter_sqlite_tables for conversion
3307   from 1.22 table format to 1.23 table format.
3308
3309   From kes20Jul02
3310 - Investigation of SQLite performace problems reported by Chuck.
3311 - Updated ChangeLog
3312 - Updated README
3313 - made root@localhost the default email address because many smtp
3314   servers reject root but accept root@localhost
3315 - Added an autochangers chapter to the manual.
3316 - Documented most of the new features in 1.23
3317 - Modified the SQLite interface code to start a transaction at the
3318   beginning of a job and commit it at the end of the job. It
3319   also commits it after 10000 changes. Hopefully this will
3320   improve performance.
3321 - Set the default cache pages from 2000 to 10000 for SQLite (i.e.
3322   about 15Megs of memory) hoping to improve performance.
3323 - Terminate last filename referenced in FD prior to copy to
3324   avoid race problem with multiple threads and no locking.
3325 - Enhanced the status output to include the JobType                
3326 - Print an error message if the email program terminates in error.
3327 - If your machine has an MTUNLOCK, do it before doing an OFFLINE to
3328   ensure that the door is unlocked.
3329 - Added code to stored/append.c to spool attributes. This is in
3330   a testing stage and must be explicitly enabled.
3331 - Added a no_attributes variable to stored/append.c that prevents
3332   the attributes from being sent to the Director. As yet, no way
3333   to turn it on.
3334 - Modified SQLite code so that after 10000 updates any transaction
3335   is committed, then restarted. This keeps it from using too much
3336   memory.
3337 - Set the default cache size to 10000 pages (previously 2000).
3338 - Fixed a segmentation fault on Sun due to no default value for
3339   the JobStatus.
3340 - Added the same indexes to SQLite that I exist in MySQL. This
3341   VASTLY reduces CPU usage for lots of inserts.
3342 - Added spooling to bnet_send().
3343
3344   From kes18Jul02
3345 - The following two changes were prompted by questions/suggestions
3346   from A Morgan.
3347 - If you have "AlwaysOpen = no" in your SD Device
3348   resource, Bacula will free() the drive when it
3349   is finished with the Job.
3350 - If you have "Offline On Unmount = yes", in your
3351   SD Device resource, Bacula will offline (or eject)
3352   the tape prior to freeing it.
3353 - Added Maximum Open Wait to allow open() to wait if drive is busy.
3354 - Added RunBeforeJob and RunAfterJob records to Job records.
3355   This permits running an external program with the following editing
3356   codes:
3357     %% = %
3358     %c = Client's name
3359     %d = Director's name
3360     %i = JobId
3361     %e = Job Exit
3362     %j = Job
3363     %l = Job Level
3364     %n = Job name
3365     %t = Job type
3366
3367   From kes17Jul02
3368 - Added autochanger support to devices.c
3369 - Allow user to change Slot in the Volume record.
3370 - Implemented code in lib to run an external program
3371   (tape changer)
3372 - Implemented a changer script for mtx.
3373 - Currently the changer commands used are:  
3374     loaded -- returns number of slot loaded or 0
3375     load   -- loads a specified slot
3376     unload -- unloads the device (returns casette to slot)
3377 - Other changer commands defined but not yet used:
3378     list   -- returns list of slots containing a cassette
3379     slots  -- returns total number of slots 
3380 - Implemented ChangerCommand, specified in the SD Device
3381   resource, permits editing of:
3382       %% = %
3383       %a = archive device name
3384       %c = changer device name
3385       %f = Client's name
3386       %j = Job name
3387       %o = command
3388       %s = Slot base 0
3389       %S = Slot base 1
3390       %v = Volume name
3391 - Implemented MaximumChangerWait default 120 seconds. It is 
3392   specified in the SD Device resource.
3393
3394   From kes15Jul02
3395 - Moved techlogs from main directory to be subdirectory of doc
3396 - Added code for strerror_r, and detection of gethostbyname_r().
3397 - The protocol between the Director and the SD has changed.
3398 - Major rework of SD tape mounting to prepare for Changer commands.
3399 - Separated Update Media record and Create JobMedia record. These
3400   are done from the SD by calling the Director. Need separate Create
3401   JobMedia so that when a Job spans a volume, all other Jobs writing
3402   the same volume will also have JobMedia records created.
3403 - Added message to user indicating selection aborted if he enters .
3404   to a Console selection request.
3405 - Create a jobstatus_to_ascii() routine for use in status commands.
3406   This makes a single routine from three separate pieces of code.
3407   Updated the code to properly handle more (all) termination statuses.
3408 - Tried to fix the gnome-console to handle history a bit better. There
3409   are still some problems with focus not being properly set to the edit
3410   box after history replacement.
3411 - Removed the shutdown() from bnet_close() hoping to fix Console termination
3412   errors that are occassionally seen -- no luck.
3413 - Moved add_str() to lib/util and renamed it add_str_to_pool_mem() so that
3414   it can be used to edit Job termination codes and Changer command codes.
3415 - Reworked how the SD mounts tapes (in device.c) so that control passes through
3416   only a single routine. The logic is much simpler than previously, and now
3417   adding AutoChanger code is straight forward.
3418 - Made SD tape mounting much more fault tolerant -- more cases retry instead
3419   of terminating the Job.
3420 - Wrote code to edit_device_codes() for Changer commands. Not yet fully     
3421   implemented.
3422 - Added a ChangerDevice directive to the Device resource. Still need to add
3423   ChangerCommand.
3424
3425   From kes07Jul02
3426 - This documents what I did while on vacation. 
3427 - A fair amount of documentation.
3428 - Implemented Verify Volume to Catalog (needs renaming)
3429 - Modified the database to include new MarkId field as
3430   well as Counters. Database level is incremented from 1 to  2.
3431 - Added first cut of managing autochangers by implementing Slot in DB.
3432 - Fixed a good number of M_ERROR messages to be M_FATAL where appropriate.
3433   Also converted a number of Emsg() to Jmsg() permitting better Job error
3434   messages.
3435 - First cut at implementing a general packet passing mechanism for bsock
3436   to replace printf and sscanf for passing data.     
3437 - Made make_xxx_tables and drop_xxx_tables and create_xxx_database
3438   for bdb as well as sqlite. With this each database has the
3439   same set of scripts (with the exception that MySQL has grant_privileges).
3440 - Modified Makefile to only install the database scripts for the
3441   database that you are using.
3442 - Updated the pdf script to include all the html files.
3443 - Did quite a lot of documentation.
3444 - Made Bacula compile correctly with DEBUG turned off.
3445 - Implemented Pmsg() macros that permit using the debug print
3446   routines even with DEBUG off.
3447 - Updated job_cancelled() macro to handle JS_FatalError.
3448 - Changed db_find_last_full_verify() to db_find_last_jobid(). This
3449   permits working with Verify Volume to Catalog.
3450 - Removed TRANSACTION code from incrementing NextId for SQLite. 
3451 - Implemented quick and dirty (not fully functional code) so that
3452   console program does not die if ctl-Z is entered. 
3453 - Cleaned up backup.c a bit adding a bail_out goto to ensure proper
3454   handling of errors with minimum code.
3455 - Added passing Slot back and forth to Storage daemon with Volume info.
3456 - Implemented Slot in Media record in DB.
3457 - Implemented first cut of Counter resource in dird_conf.c. A counter
3458   resource is part of the Pool resource.
3459 - Implemented necessary database record. However, the resource doesn't
3460   yet create a DB record.
3461 - Implemented onefs (One File System) and recurse options on Include
3462   resource.
3463 - Implemented autopruning of Verify and Restore Jobs.
3464 - Did a better job of calculating thread_concurrency() for Sun systems.
3465   This permits better multi-threading allowing all the threads to run
3466   at the same time.
3467 - Implemented a wait_for_storage_daemon_termination(), which is used by
3468   backup and verify volume.
3469 - Clarified a number of UA prompts, and add feedback where certain commands
3470   completed but printed nothing. (More work to be done here).
3471 - Added a pile of new code to implement Verify Volume to Catalog. It is sort
3472   of a hybrid of "restore" and "verify" in that it actually reads the tape,
3473   then compares it to the catalog.  Need Verify Volume to Client.
3474 - Added a good number of checks for job_cancelled() this should permit
3475   quicker and more reliable cancelling of jobs.
3476 - Fixed one bug in restore where I used ofile instead of lname, which means
3477   that if the lname was too long, the memory was not properly reallocated.
3478 - Cleaned up find_one.c in findlib quite a bit.
3479 - Link smtp static so that it works even if the libraries are messed up.
3480 - If mail host is not found, retry with local host in smtp.
3481 - Added slot and stream to the bootstrap record processing.
3482 - Do offline on tape cartrige for unmount command. This can be turned off
3483   by the user in the config file. OffLineOnUnmount in Device resource.
3484 - Implemented AutoChanger = yes/no in Device resource.
3485
3486 ===========================================================================
3487 2002-07-07 Release 1.22
3488 - All the basic Restore code to handle the boostrap file is
3489   now implemented with the exception of the Console Restore command.
3490 - Retained compatibility with previous Restore providing no 
3491   bootstrap file is specified. However, the old code (JobId based)
3492   will go away in a future release.
3493 - Fixed a number of segmentation faults in the Console program due
3494   to printing of NULL pointers -- thanks to Chuck and his Sun for
3495   finding and reporting them -- mostly in ua_output.c.
3496
3497   From kes25Jun02
3498 - Null pointers now are printed as *None* if NPRT() is used.
3499 - At the request of Phil, all resources are now chained in in the
3500   order they appear in the config file.
3501 - Implement Bootstrap record in the Director's config file, which
3502   allows you to specify a predefined bootstrap file for Restore Jobs.
3503 - Allow Bootstrap on the Restore record. This is deprecated.
3504 - Implemented code to pass the Bootstrap file, if defined, to the
3505   File daemon, then from the File daemon to the Storage daemon.
3506 - Added ability to set Bootstrap file in the Console when running a Restore.
3507 - Allow scan_error() routine to be passed to lex_open_file(). This permits
3508   using lex in the Storage daemon without worrying that it will ABORT on
3509   a syntax error.  More work is needed to direct the error messages correctly.
3510 - Improved error messages a bit when config syntax errors are found.
3511 - Tested and corrected some errors in match_bsr.c
3512 - Removed askdir.c from bls and bextract by defining dummy entry points.
3513 - bextract now has bootstrap pretty well integrated.
3514 - Changed bextract ABORTs into FATAL and exit(1) or ERROR_TERMINATE.
3515   More user friendly.
3516 - Eliminated at least one lld and replaced it by edit_uint64() 
3517 - Eliminated a few more _PROTO()s.
3518 - Corrected a problem with the SQL for in query.sql for 
3519   Listing Volumes to Restore All Files
3520
3521   From kes22Jun02
3522 - Additional documentation.
3523 - Reduce the time the jcr mutex is locked in lib/jcr.c
3524 - More null pointer printing fixes in lib/parse_conf.c (debug output only).
3525 - Added daemon filename to Kaboom message so I know what daemon died.
3526 - Fix big bad bug introduced in watchdog.c last update that caused
3527   a segmentation violation (forgot to check for NULL pointer).
3528 - Add a bit more info to bad returns from Stored when starting
3529   a job fails.
3530
3531   From kes21Jun02
3532 - Fixed scan_to_eol
3533 - Fixed backup scanning forgot one T_STRING -> T_UNQUOTED_STRING
3534 - changed all rwlock_t to brwlock_t to avoid conflicts with
3535   Solaris library.
3536 - Added NPRT() macro to allow printing of NULL pointers, which
3537   segment fault on Solaris.
3538 - Cast printing of pid_t to int for Solaris compiler.
3539
3540   From kes20Jun02
3541 - Added expect argment to lex_get_token().
3542 - Added tree.c and tree.h to lib directory.
3543
3544   From kes19Jun02
3545 - Improvements to the bootstrap compiler
3546 - Implemented first cut of bootstrap code in the Storage daemon
3547 - Modified the authentication code to be more explicit during 
3548   failures.
3549 - Added a few more debug message numbers with more arguments (Dmsg10, ...)
3550 - Added more and more precise error messages when authentication fails.
3551 - Implemented new "expect" codes in the lexical scanner that allows
3552   the caller to specify what he wants.                   
3553 - Added integer, positive integer, 64 bit integer, and integer ranges,
3554   and name scanning to lex.
3555 - Implemented new lex code in parse_conf.c, this reduces significantly
3556   the code.
3557 - Hopefully fixed a watchdog race bug that caused the watchdog to time
3558   out a line after 1 hour rather than 6 days.
3559
3560   From kes15Jun02
3561 - Implemented a Bootstrap file parser and matcher.
3562 - Implemented first cut of bootstrap code in bextract  
3563 - Started clarifying different termination codes.
3564 - Added M_ERROR_TERM to immediately terminate the daemon -- no dump.
3565   Also changed a few termination codes as appropriate.
3566 - Fixed create_jobmedia_record() to include all the fields such as
3567   StartFile/EndFile, StartBlock/EndBlock.
3568 - Print user friendly message when query mode ends.
3569 - Fixed ls style print routines (bextract, bls, restore) to check
3570   buffer size, to print the link if any, and to used edit_uint64()
3571   instead of %lld.
3572 - Moved scan_to_eol() and s_err() to lex.c to avoid dragging in 
3573   parse_conf.c for new bsr scanning code.
3574 - New files: bsr.h, parse_bsr.c and match_bsr.c. parse_bsr.c parses
3575   a Bootstrap file, and match_bsr.c matches a bsr against a tape.
3576 - use strcasecmp() in several places instead of lcase().
3577 - Add first cut of bootstrap to bextract.
3578 - Added File Size limit -- writes EOF after limit exeeded.
3579
3580 ===========================================================================
3581 2002-06-12 Release 1.21
3582 - Fixed several problems with filenames being truncated if
3583   they contain spaces. Thanks to the user that reported this.
3584 - N.B. To get the new queries, after the "make" and 
3585   "make install" you must explicitly replace the
3586   existing query.sql by query.sql.new.  query.sql is a
3587   user configuration file, so it is not overwritten.
3588 - Added GZIP compression of Included files.  
3589 - Added additional fields to tape SOS record permitting better
3590   recovery with no database.
3591 - Be sure to remove any !terminate statements you may have
3592   in your config files.
3593 - MUST UPDATE ALL DAEMONS due to protocol change to handle new
3594   tape format.
3595
3596   From kes11Jun02:
3597 - Updated examples directory with my most recent config files.
3598 - Modified the M_TERM meaning to mean that Bacula has
3599   terminated in error without producing a dump. Previously,
3600   it meant that Bacula terminate (with or without error).
3601   You should remove any !terminate from your messages
3602   resources.
3603 - Changed the order of the libraries in the link so that
3604   tcp wrappers link properly. Thanks Phil for reporting this.
3605 - A user reported that filenames containing spaces were truncated
3606   in bextract. This was indeed the case. They were also truncated
3607   in Restore as well as in Verify. They are, hopefully, all fixed
3608   now.
3609 - Made a few error conditions in Verify non-fatal.
3610 - Modified the Console "query" command to permit multiple SQL
3611   statements per command. 
3612 - Implemented three new "query" options: 
3613     List last 10 Full Backups for a Client
3614     List Volumes used by selected JobId
3615     List Volumes to Restore All Files
3616   To use them, simply type "query" to the Console program, and
3617   select the one you want.
3618 - Modified bextract to default to extracting all files (i.e. /).
3619 - Cleaned up the code in bextract a bit.
3620
3621   From kes03Jun02:
3622 - Improve Verify command to include files examined.
3623 - Eliminate fcntl() locking of the console file and replaced
3624   it with a pthreads mutex.
3625 - Note Director - SD protocol is changed to handle new tape
3626   information (Fileset, JobType, JobLevel).
3627 - Create config.out that contains a summary of ./configure
3628   to see what you previously configured: "cat config.out"
3629 - Implemented GZIP compression.  Added addition syntax to
3630   Include { } resource to permit setting of any GZIP compression
3631   level:
3632      compression=GZIP
3633      compression=GZIP1
3634      ...
3635      compression=GZIP9
3636
3637   Level 1 is minimum compression and level 9 is maximum. Using just
3638   GZIP gives the default (level 6).
3639 - Enhanced the tape format to include the unique Job name, FileSetName,
3640   JobType, and JobLevel in the Start/End of Session records. The code
3641   detects that tape level difference and acts accordingly. You can 
3642   add data in the new format to old tapes.
3643 - Fixed an incorrect display message in the prune command.
3644 - Began implementation of Verify Volume and Verify Data.
3645 - Cleaned up File daemon restore.c a bit ensuring that termination 
3646   cleanup is done and all possible Emsgs are converted to Jmsgs.
3647 - Modify bls.c to use common setup routines. This reduced the big
3648   code duplication that creeped in when I added different listing
3649   options. Also, changing tapes is now handled uniformily in a subroutine.
3650
3651 ===========================================================================
3652 2002-05-27 Release 1.20
3653 - Started documenting Catalog Pruning and Recycling.
3654   Added catmaintenance.html and recycling.html
3655 - Fixed the query command bug.
3656 - Implemented PID files to prevent two copies of Bacula
3657   from running at the same time. Be sure you --with-pid-dir
3658   points to a working directory.
3659 - Modified ASSERT() to cause a segmentation violation. This
3660   permits a core dump.
3661 - Worked on gnome-console. It paints better, it tells you if it
3662   is ready to accept a command or processing one, and it is
3663   almost entirely GTK+ (rather than GNOME, I'm removing GNOME
3664   a bit at a time).
3665 - Limit to 100 the number of tape labeling errors in a single Job.
3666 - Add some additional ASSERT()s to the database routines. I don't
3667   like ASSERTs but they do catch bugs.
3668 - Tested and debugged recycling of Volumes.  Needed to change
3669   the Director-SD protocol slightly.
3670 - Removed the experimental SIGHUP in the Director as it is a
3671   potential source of errors.
3672 - Added Level, Pool, Messages, and Storage keyword/value scanning
3673   to the Schedule Run record.
3674 - Improved printing of Schedule resources with "show schedules"
3675 - Do not autoprune Jobs/Files if the Job errs.
3676 - Updated newvol() to pass back the updated Media record.   
3677 - Fixed the "update pool" command, which was broken during a much
3678   earlier code reorganization.
3679 - Improved a few of the pruning messages.
3680 - Removed readline inclusions from gnome-console (hang over from console).
3681 - Make Jmsg use daemon message handler if no message handler is defined.
3682   This is always the case in the SD and FD.
3683 - Started removing __PROTO(). With C++ prototypes are manditory, so why
3684   keep around legacy code.
3685 - Added a good deal of message internationalization -- more to be done.
3686 - Move cached Path into mdb structure and use POOLMEM.
3687 - Fix verify bug introduced last update causing incorrect diffs 
3688   by turning off autopruning.
3689 - Started adding code to distinguish Errors from Fatal Errors.
3690 - Errors are now counted in message.c for a Job.
3691 - More POOLMEM cleanups.
3692 - Implemented Automatic pruning.
3693 - Implemented Automatic recycling of Volumes.
3694 - Added PruneJobs/Files/Volumes=yes or no to Job resource. If set,
3695   it forces the specified pruning.
3696 - Modified rwlock to accept multiple nested write lock
3697   requests.
3698 - Modified the cats directory to use the new rwlock mechanism
3699   in place of P() and V(). 
3700 - Defined db_lock(mdb) and db_unlock(mdb). They are in effect
3701   transaction locks. 
3702 - Add CVS Id's to most files.
3703 - Made first cut at AutoPrune
3704 - Added new autoprune file that is called at the end of
3705   each Job. It then decides when and what to prune and
3706   calls the UA prune routines.
3707 - Modified Run (in Schedule resource) to permit overrides of
3708   Level, Pool, Storage, and Messages. (not tested).
3709 - Added more POOLMEM in place of char.
3710 - Implemented daemon pid files. This prevents multiple 
3711   daemons from running simultaneously. You can run multiple
3712   daemons if they listen on different ports.
3713 - Documented the Schedule resource a bit better.
3714 - Began gently adding a POOLMEM type (perviously void).
3715   For the moment it is a #define to char, but long term
3716   it should be its own typedef.
3717 - Corrected a bit of spacing on the status bar of gnome-console
3718 - Added Admin and Archive Job types.
3719 - Implemented multiple Messages resources. Each daemon has
3720   its own message resource, which defaults if not defined.
3721   Jobs may now have different message handlers.
3722 - Cleaned up a bit of duplicate code in backup, verify, and
3723   restore by creating appropriate subroutines in job.c
3724 - Added Type, Client, FileSet, and Level resource record
3725   definitions to the Director. These can be used in place
3726   of the Backup = ..., Verify = ..., ... commands.  This needs
3727   documenting.
3728 - Corrected an incorrect message in the prune code and added
3729   the number of Files pruned in the message.
3730 - Corrected several paint problems with gnome-console.
3731 - Added a bit of printout in signal handler during traceback.
3732 - Cleaned up most of sm_check() to be turned on/off by define
3733   in version.h
3734
3735 ===========================================================================
3736 2002-05-10 Release 1.19
3737 - Allow the user to select a new period for pruning.
3738 - Lots of additions to the manual -- prune and purge
3739   commands documented.
3740 - Applied Phil's configure.in fix for --prefix, ...
3741 - Fixed bug found by Phil (patch supplied) in updating
3742   MD5 signatures (revert to 32 bit FileId, move "static"
3743   variables into JCR) (catreq.c fd-cmds.c).
3744 - Reverted to using INTEGER for FileId in make_sql_tables
3745   due to a bug in MySQL.
3746 - Change editing code to %d for FileId.
3747 - Remove sqlite in make distclean in cats directory.
3748 - Remove console.conf in console during make distclean.
3749 - Remove gnome-console.conf during make distclean.
3750 - Remove bacula-dir.conf during make distclean.
3751 - Set default level when using Console if none specified.
3752   Bug reported by Phil.
3753 - A simple . command from Console is ignored.   
3754 - Change program named from filed to bacual-fd in winmain.cpp
3755 - Change default config file for Win32 in winmain.cpp
3756 - Free namebuf on early return from find_one.c. Bug reported by Phil.
3757 - Modify testfind.c to dump orphaned buffers.
3758 - Removed terabytes from parse_conf.c because of problems with
3759   older gcc compilers.
3760 - Turn off gnome options in gnome-console by constructing empty argv.
3761 - Fixes to Verify when only MD5 differs.
3762 - Insert 0 for MD5 as default rather than space.
3763 - Allow .messages "transparent" command while reading input
3764   in UserAgent server.
3765 - In dird/verify.c ensure that correct filename is printed if only
3766   the MD5 differs. Minor reindenting caused large diff.
3767 - Delete unused code from backup.c
3768 - In filed/verify.c ensure that same algorithm as backup.c is used
3769   to pass back MD5 signatures -- especially for directories and files
3770   that cannot be read. Change dummy filename from X to *MD5-id*.
3771   This dummy value should never be printed.
3772 - Make gnome-console poll Director every 5 seconds for output.
3773   This means that queued up messages are displayed at reasonable
3774   intervals. Delete some unused code hanging around from the tty
3775   console program.
3776 - Begin implementation of prune commands.
3777 - Add command line history to gnome-console. Not yet saved across sessions.
3778 - Fixed some broken URLs in the manual.
3779 - Added JobId type.
3780 - Wrote first cut of "prune files" and "prune jobs".
3781 - Added command line history to gnome-console 2500 lines max.
3782 - Widened store_time() and associated variables to 64 bits using
3783   new btime_t definition.
3784 - Removed GNOME about box and replaced it with 
3785   a somewhat crude Gtk+ about box in the gnome-console.
3786 - Widened StartDay in the Job DB record to be 64 bits.
3787 - Changed edit_uint_ to edit_uint64_ everywhere. Much more
3788   descriptive of what is done.
3789 - Removed most llds and replaced them with %s and edit_uint64.
3790   This makes the code a bit easier to read for beginners.
3791 - Added a btime_t typedef which is 64 bits wide.
3792 - Added most of the code needed to do Purge and Prune of
3793   database. Not yet tested. Please do not use.
3794 - Additional config options for Console.
3795 - Started adding code for Automatic Recycling of Volumes.
3796 - Allow arbitrary length filenames in Verify code.
3797 - Fix incorrect filename in Verify code.
3798 - Significant enhancement to number scanning in config parser.
3799 - Requires initializing MySQL tables, or applying cats/alter.sql
3800   to modify Media table.
3801 - Modified Makefile to printer a much more visible
3802   message if the make ends in error.
3803 - Added the Purge value to the VolStatus in the Media table.
3804   This value is set if the Volume is purged.
3805 - Enhanced the db_delete_media_record() routine to delete
3806   all associated records in the database.
3807 - Modified Console to always write to the variable "output"       
3808   rather than stdout. This will permit directing output to a file.
3809 - Enhanced the Console configuration file to have a Console 
3810   resource. This will allow us to add an rcfile and history file.
3811 - Modified Find_next_vol in catreq.c to search for "Recycle"
3812   volumes if there are none marked Append. Also made Get_Vol_info
3813   return the VolStatus to the Storage daemon.
3814 - Allow upper/lower case match on job level names.
3815 - Added another warning message to the Console "delete media" command.
3816 - Corrected a number of FileId types from uint64_t to FileId_t in
3817   ua_retention.c.
3818 - In ua server close database before freeing JCR (because pointer is
3819   kept in ua and jcr structures).
3820 - parse all numbers as doubles. Do lots of checking for valid number
3821   formats. Allow numbers in scientific form (e.g. 1.5e+10).
3822 - Remove terabyte modifier as it doesn't work in some compilers.
3823 - Fix bug in handling some modifiers.
3824 - Added all necessary code for Recycle to Storage daemon. A Volume
3825   marked Recycle will now be overwritten.
3826 - Filled out the prune command a bit and did some testing.
3827 - Make console accept redirected input.
3828 - Altered the Table definitions to include Recycle,
3829   FileRetention, JobRetention, and AutoPrune.
3830 - Widened StartDay to 64 bits.
3831 - Use JobId_t in more places. 
3832 - Added the new table fields to the database record definitions.
3833 - Changed Recycle from string to a binary quantity.
3834 - Added a Version table with a VersionId to detect.
3835   future changes in the database. This should prevent
3836   a Bacula from working with a database that is not in sync.
3837 - Modify Console to accept input from a file. This will permit
3838   the .read command and allow reading a .rc file.
3839 - Added new retention and recycle variables to the Director's configuration.
3840 - The UA subroutines or commands can now be called from core
3841   code because the output routines detect the absence of a 
3842   UA socket and direct output to the Job.
3843 - Added a verbose flage to the ua packet to permit reduction of
3844   output while running a UA command (prune) from a Job.
3845 - Did a fair amount of work on the prune command. Prune Volume now works.
3846 - Purge Volume now works.
3847 - Made last changes for integrating prune and purge commands.
3848 - Add -ltermcap to CONS_LIBS when readline is configured.
3849   More work to be done to search for termcap.
3850 - Added cats/drop_sqlite_tables.in, which will delete the SQLite database.
3851 - Got CWEB working so that we can compile filesys.w and immortal.w
3852 - Modified depkgs to include cweb.             
3853 - Note, CWEB is not yet used by the core Bacula code.
3854 - Made cats/alter.sql, which alters an old database to bring it
3855   up to the new format. This only works with MySQL since SQLite does
3856   not have the ALTER SQL command.
3857 - Changed the old StartDay field in the db to be JobTDate, which is
3858   the latest time/date in widened Unix time format that the Job ran.
3859   This value is used when doing pruning.
3860 - Added code in cats/sql.c to verify that the database internal version
3861   corresponds to the db version compiled in Bacula. It is set to 1 currently.
3862 - Lots of changes to cats to bring the SQL up to date with the new 
3863   retention period changes.
3864 - Added Console command code to permit changing a Volume's retention period.
3865 - Removed old code that used date_encode() and replaced it with widened
3866   Unix time().
3867 - Started modifying Message resource scanner so that we can have multiple
3868   message resources. Much more work to be done.
3869 - Moved scanning for time into new library routine string_to_btime().
3870
3871 ===========================================================================
3872 2002-04-22 Release 1.18
3873 - Applied Phil's configure.in fix for --prefix, ...
3874 - Fixed bug found by Phil (patch supplied) in updating
3875   MD5 signatures (revert to 32 bit FileId, move "static"
3876   variables into JCR) (catreq.c fd-cmds.c).
3877 - Reverted to using INTEGER for FileId in make_sql_tables
3878   due to a bug in MySQL.
3879 - Change editing code to %d for FileId.
3880 - Remove sqlite in make distclean in cats directory.
3881 - Remove console.conf in console during make distclean
3882 - Remove gnome-console.conf during make distclean
3883 - Remove bacula-dir.conf during make distclean
3884 - Set default level when using Console if none specified.
3885   Bug reported by Phil.
3886 - A simple . command from Console is ignored.   
3887 - Change program named from filed to bacual-fd in winmain.cpp
3888 - Change default config file for Win32 in winmain.cpp
3889 - Free namebuf on early return from find_one.c. Bug reported by
3890   Phil.
3891 - Modify testfind.c to dump orphaned buffers.
3892 - Removed terabytes from parse_conf.c because of problems with
3893   older gcc compilers.
3894 - Turn off gnome options in gnome-console by constructing empty
3895   argv.
3896
3897 ===========================================================================
3898 2002-04-18 Release 1.17 Kern Sibbald
3899 - Ensure that platforms Makefiles are called for clean  
3900   and distclean.
3901 - Hide a lot of Makefile messages with @
3902 - Applied Phil's configure.in patch. Thanks.
3903 - Doc updates, many to clarify points brought up by Phil.
3904 - Applied Phil's make_mysql_tables.in patch. Thanks.
3905 - Made authenticate.c in dird test bnet_send status.
3906 - Make label a bit more friendly with extra info message.
3907 - Add level 200 to debug info in run command.
3908 - Remove old code from findlib/testfind.c so that it compiles.
3909 - Add two minute max wait to cram-md5 authentication. Hopefully,
3910   this will catch non-responding WinNT daemons.
3911 - Allow time and size modifiers to be upper or lower case.
3912 - Turn off old CYGWIN patch for pthread_cond_timedwait() bug that
3913   now causes File daemon hangs on WinNT.
3914 - Fix mount messages for restore. Previous updates to save
3915   broke the restore code.
3916 - By default write fixed block sizes rather than variable block
3917   sizes.  My Sony DAT simply does not work (reread failures) with
3918   variable block sizes.
3919 - Data split across tapes was not being correctly restored
3920   (at least on DAT tapes). 
3921 - Implement MaximumBlockSize and MinumBlockSize statements in
3922   Storage daemon so user can specify variable block sizes if
3923   desired.
3924 - Return error if block checksum error on read (previously 
3925   ignored).
3926 - Fixed some error messages in bls, and in some cases exit(1)
3927   rather than ABORT. There remain ABORTs to be examined.
3928 - Made a local copy of tcpd.h and corrected the function 
3929   prototype problem for C++.
3930
3931 ===========================================================================
3932 2002-04-14 First public release 1.16 Kern Sibbald
3933  - Many intervening changes/updates.
3934
3935 2001-09-29 Release 1.0 Kern Sibbald
3936  - Fixes to problems found at John's installation.
3937  - See techlogs/kes25Sep01 for details
3938
3939 2001-09-25 Release 1.0 Kern Sibbald
3940  - Helped John install at his site.
3941    He is backing up one Linux machine and
3942    one Win2000 machine.
3943
3944 2001-mm-dd Many releases
3945  - Released internally.
3946   
3947 2000-04-09 Release 0.4 Kern Sibbald
3948  - Added a lot of Director configuration code. In      
3949    part (a small part), the Director now uses the
3950    bacula.conf file to know what to do. There still
3951    remains a lot to do.
3952  - The file search code is now integrated into the
3953    MySQL database routines, and Bacula is now hooked
3954    into the MySQL database (if so configured). Thus
3955    all the database records are being created, though
3956    there still remains some work in getting all the
3957    details into the records (such as the Storage 
3958    coordinates).
3959  - I've defined how Volume pools work (see manual).
3960  - I've defined error message handling though no code
3961    is yet written.
3962  - The following resources and records are implemented
3963    in the Director configuration file (bacula.conf):
3964     
3965    Director
3966      Name (passed to Storage daemon)
3967    Client
3968      Name, Address, Port
3969      Password (not yet used)
3970    Storage    
3971      Name, Address, Port, Password, MediaType
3972    Job
3973      Name    
3974      Type (not yet used)
3975      Backup (only one permitted) 
3976        Client, FileSet
3977      Storage
3978      Schedule, Messages, Pool (not used)
3979    FileSet
3980      Name  
3981      Include (options ignored)
3982      Exclude (no options)
3983    Schedule (not used)
3984      Name
3985    Messages (not used)
3986      Name       
3987      Debug, syslog, mail, append (not used)
3988    Catalog
3989      Name
3990      Address, Port, Password (not used)
3991    Pool (not used)
3992      Name
3993      PoolType, MediaType (not used)
3994
3995  - Added Storage configuration routines.
3996    Director
3997      Name, password (verified against those sent by Director)
3998    Storage
3999      Name, Address, Port (address, port must correspond to Director's values)
4000      Password, MediaType
4001    Device
4002      Name, MediaType (must correspond to those sent by Director)
4003      Archive Device (defines device name)
4004
4005
4006 2000-03-10 Release 0.3 Kern Sibbald
4007  - Implemented new base64 encoding for attributes.
4008    This eliminates some of the error messages in the
4009    sprintfs on the Solaris due to different stat() sizes.
4010  - Implemented  the first cut of the file search routines for
4011    the File daemon.  The exclusion lists work including wild
4012    cards.   There is a lot of work to be done, but the basic
4013    structure is now in place (wild cards do not yet work for
4014    the include).
4015  - Completed writing the memory pool code.  Now I must
4016    implement it in the daemons.
4017  - Modified the bacula start/stop script so that it has a
4018    better chance of working on SGI and Solaris.
4019  - The catalog code has not been converted to the new file
4020    search code.
4021
4022 2000-03-06 Release 0.2 Kern Sibbald
4023  - Integrated John's fixes.
4024  - Made Makefiles self configuring when Makefile.in is changed.
4025  - Added a runit script in the top level that runs bacula
4026  - Added a "bacula" script in the top level directory that
4027    starts and stops the File daemon and the Storage daemon.
4028
4029 2000-03-03 Release 0.1 Kern Sibbald
4030  - Basic Director, File, and Storage daemons.
4031    Standalone Catalog services using MySQL
4032
4033 2000-01-22 Kern Sibbald
4034    * Setup basic file structure with ./configure