]> git.sur5r.net Git - bacula/bacula/blob - bacula/ChangeLog
Update documentation
[bacula/bacula] / bacula / ChangeLog
1               Technical notes on version 2.1
2
3 General:
4 04Jun07
5 kes  Fix a seg fault in the PostgreSQL driver dereferencing a NULL pointer.
6 03Jun07
7 kes  Implement SQLITE3_INIT_QUERY in version.h that can do an initial
8      query for SQLite3. Use it to set PRAGMA synchronous = OFF. This
9      makes SQLit3 run 30 times faster, though a bit less safe.
10 kes  Implement --with-batch-insert in configure and detection of thread
11      safe libraries.  It is on by default, but turned off if no thread
12      safe library (e.g. SQLite 2) is available.
13 02Jun07
14 kes  Fix Bacula PostgreSQL buffer overruns.
15 kes  Do better checking for NULL results returned from PostgreSQL;
16      implement retry for failed queries; clear results buffer after
17      failed query. Hopefully this will correct the PostgreSQL failures.
18 01Jun07
19 kes  Implement algorithm to handle only one appendable volume with
20      Prefer Mounted Volumes = no.
21 kes  Fix a Bacula PostgreSQL bug dereferencing a NULL pointer      
22      returned from a query.
23 kes  Make volume lock recursive.
24 kes  Implement an additional volume reservation algorithm that
25      starts by considering all reserved volumes then uses the
26      old brute force algorithm of searching the resources to
27      find a suitable device.
28 kes  Add new reservations debug code and refine the old code.
29 kes  Update the win32/dll/bacula.defs file.
30 29May07
31 kes  Tweak reservations algorithm to permit a few more cases, i.e.
32      volume reserved, but on different drive, ...
33 kes  Enhance SD status to include Pool and Media Type for drive in a
34      more readable format (a bit longer). 
35 kes  Fix PostgreSQL double free.
36 28May07
37 kes  Minor refactoring of restore decryption code.
38 kes  Add code to smartall.c to detect double free of a buffer.
39 27May07
40 kes  Add < > around %r in from field on mail command of bacula-dir.conf.in
41      so that bsmtp will create a correct email address (mailbox only).
42 kes  Modify 'memory' command so that the buffers are listed as 'In use'
43      to avoid confusion with Orphaned buffers.
44 kes  I reworked the OpenSSL include/lib flags to be handled in     
45      the standard Bacula way, which should fix bug #863 concerning
46      non-standard OpenSSL libraries.
47 26May07
48 kes  Implement Help Browser window for bat.
49 kes  Fix reload bug that reset StorageId to zero.
50 25May07
51 kes  Fix TLS #ifdefing when TLS turned off.
52 kes  Ensure that when labelling a tape with Slot=0 that InChanger
53      is not set.
54 kes  Use DISTINCT to make MySQL and PostgreSQL uar_list_temp query        
55      the same.
56 kes  Add StartTime to final uar_sel_jobid_temp query so that we can
57      add DISTINCT (required by PostgreSQL).
58 kes  Implement BSOCK authenticate_director() method. Eventually will
59      authenicate all daemons.
60 kes  Move several more functions into the BSOCK class.
61 24May07
62 kes  Add code to tell the OS that we no longer need a cached
63      file that we were reading. In findlib/bfile.c.  Also,
64      only cache files that we are reading. Thanks to
65      Tobias Oetiker <tobi@oetiker.ch> for the idea.
66 kes  Tweak to bsmtp to eliminate compiler warnings on Win32.
67 kes  Implement script to automatically generate cats and dll .def
68      files for Win32 dll.
69 kes  Update README.mingw32 to include new .def file generation.
70 kes  Correct typo in UTF-8 error message as reported by:
71      jhernandez <julianhernandez@gmail.com>
72 kes  Add additional sm_check() code on debug level 1.
73 kes  Set default debug level to 1.
74 kes  Trap SIGABRT in attempt to get traceback.
75 23May07
76 kes  Reduce bat connect timeout from 30 to 15 seconds.
77 kes  More restructuring and implementing BSOCK class in place of
78      old bnet.c code.
79 kes  Remove a few unnecessary malloc() tests in crypto code.
80 kes  Turn off crypto calls for > 128 bits in crypto.c if HAVE_SHA2
81      not defined. Bug reported by Allan Black <Allan.Black@btconnect.com>
82 kes  Remove duplicate HAVE_CRYPTO definition in config.h.in
83 22May07
84 kes  Fix Verify InitCatalog mysql_escape_string() trashing memory.
85      Make buffer bigger.
86 kes  Fix Verify InitCatalog. The attributes were not pointing to the
87      correct saved location.
88 kes  Implement message callback so that GUI is sure to get all
89      daemon messages. Currently displayed in a dialog in bat.
90 kes  Ignore SIGUSR2 (Bacula timer) in bat.
91 kes  Apply regress patch from bug #859 to allow regress to work 
92      with Solaris compiler.
93 21May07
94 kes  Begin adding TLS support to bat.
95 kes  Apply UTF-8/16 patch from Yves Orton <demerphq@gmail.com> to
96      clean up lex.c and make it more readable.
97 20May07
98 kes  Move more bnet functions into the BSOCK class.
99 kes  Fix tray-monitor by not requiring a timer interval in bnet_connect()
100 kes  Complete change of berrno strerror() method to bstrerror() 
101
102 Release: 2.1.10 beta
103 18May07
104 kes  Cleanup incorrect email addresses in bsmtp.
105 kes  Make bat display initial messages rather than discard them.
106 16May07
107 kes  First cut of adding .mod to the run command.    
108 kes  Implement auto display of messages in bat.
109 kes  Enhanced preferences to allow all Bacula output to be
110      displayed in bat.
111 15May07
112 kes  Fixed bug #856 autochanger documentation.
113 kes  Rework bsmtp date editing for Win32. This fixes bug #854.
114 kes  Add new cats entry point so Win32 builds.
115 14May07 
116 kes  Attempt to fix bsmtp date editing on OSes without %z editing. 
117 kes  Do better checking for the MySQL 64 bit libraries looking for both
118      .a and .so libraries.
119 kes  Add a kludge for Ubuntu's non-standard locations for MySQL -- allow
120      /usr/include/mysql/mysql.h AND /usr/lib/... rather than /usr/lib/mysql/...
121 kes  Require the thread safe version of MySQL during configure. Thanks
122      to Andre Noll for pointing this out.
123 kes  Ensure that calls to find_jobids_from_mediaid_list() check count before
124      continuing in migration code.
125 kes  Apply implementation of tray-monitor font derived from gnome-console
126      submitted by Andreas Piesk <a.piesk@gmx.net>
127 13May07
128 kes  Eliminate important memory loss in SQLite
129 kes  Fixed the batch insert MySQL thread specific data that was not
130      being freed. See cats/mysql.c:db_thread_cleanup().
131 kes  Fix restore before command.
132 kes  Convert old hdr.name to name() in a few places.
133 kes  Implement update jobid command.
134 kes  Return all time_t dates in db_get_job_record()
135 kes  Stop watchdog in SD earlier.
136 kes  Put Pool just after Storage in please mount message.
137 kes  Fix pointer usage bugs in Verify InitCatalog pointed out by
138      Eric.
139 12May07
140 kes  Update the po files.
141 kes  Fix Verify InitCatalog by making it cache attributes.
142 11May07
143 kes  Change name bacula-bat to bat for man 1 page to correspond to
144      Makefile.
145 kes  Check for client and store NULL pointers in status command.  This
146      fixes bug #845.
147 kes  Fix non-ssl build so that it works (add JCR *jcr to crypto structures).
148 kes  Fix sign extended editing of %p.
149 kes  Clean out a little old #ifdefing in cats/mysql.c
150 10May07
151 kes  If time diff between DIR and FD is more than 600 seconds convert
152      INFO message to WARNING.
153 kes  Implement heap size display in status for all daemons.
154 kes  Attempt to fix MySQL db open memory loss (not successfull).
155 kes  Don't set SIGKILL and SIGSTOP neither can be trapped.
156 kes  Eliminate memory loss in MySQL (possibly other SQLs) during
157      Query. This looks like a MySQL but but by doing extra releases,
158      the memory goes away.  This should fix bug #847.
159 09May07 
160 kes  When backup fails, cancel SD before waiting for sd termination.
161 kes  If SD is waiting for FD to connect during cancel, wake up the 
162      thread.
163 kes  Fix fsf code so that errno is correctly reported.
164 kes  Apply migration patch (with changes) from Sergey Svishchev <svs@ropnet.ru>
165 08May07
166 kes  Merge patch from Sergey Svishchev <svs@ropnet.ru> that preserves 
167      the original jobb's FileSetId.
168 kes  Merge patch from Sergey Svishchev <svs@ropnet.ru> that implements
169      spooling in migration jobs.  Not yet tested.
170 kes  Merge patch from Jorj Bauer <jorj@seas.upenn.edu> that implements
171      reading conf file from a pipe.  However, do it with open_bpipe()
172      rather than popen.  Not yet tested.
173 07May07 
174 kes  Fix an ugly bug where the VolCatBytes were getting updated
175      during a restore.
176 kes  Implement bconsole memory command that prints current memory
177      usage, plus smartalloc dump.
178 kes  Clarify some error messages in backup, admin, and migrate.
179 kes  Shrink label dialog to smaller size.
180 kes  Invert Cancel OK buttons on restore to be OK Cancel.
181 kes  More strerror() to bstrerror() conversions.
182 06May07 
183 kes  Start implementing bstrerror() in place of strerror().
184 kes  First cut at stripping path -- seems to work.
185 04May07
186 kes  Prevent door and port files from being restored (mostly
187      Solaris stuff).
188 kes  Free an unreleased buffer in compat code.
189 kes  Change console Job name from *Console* to -Console- to eliminate
190      Win32 filename problems.  Put Win32 path separator when creating
191      Console file.  This fixes bug #846.
192 kes  Change berrno::strerror() to berrno::bstrerror().  Not yet full
193      implemented.
194 kes  Pass jcr to crypt_sign_decode because it creates a new SIGNATURE
195      structure.
196 kes  Define b_errno_win32 on Linux to be zero so that it can be or'ed in
197      to force Win32 error message.
198 03May07
199 kes  First cut strip path. The data should be passed to the FD,
200      but nothing is done with it yet.
201 kes  Enhance the digest and signature routines in the crypto
202      library to accept a JCR and to use it to print error messages
203      so that they will go in the Job report rather than the daemon's
204      messages.
205 kes  Simplify some of the verify signature code.
206 kes  Simplify a few of the alternative returns in the signature 
207      code.
208 02May07
209 ebl  Use only POSIX regex instead of GNU regex in breg.c for
210      File relocation. It fix broken freebsd compilation.
211 kes  Convert all other Dir files to use ne ua class message 
212      routines for bat.
213 kes  Tentative fix for missing digest signature in bug 807.
214 kes  Correct handle problem in new win32_ftruncate routine.
215 kes  Convert ua_purge.c and ua_update.c to use new ua class
216      message routines for bat.
217 29Apr07 
218 kes  Correct incorrect installation of LICENSE in Win32 installer.
219 kes  Display LICENSE at the beginning of the Win32 install.
220 kes  Attempt to correct the need for the png files to be installed 
221      for bat.
222 kes  Reapply my bat.conf install script in qt-console. I think I 
223      editted bat.pro instead of bat.pro.in and it was lost.
224 kes  Apply CentOS patches someone sent me. Checks for /var/run/subsys,
225      the /var/lock/subsys for subsysdir.  Also corrects typos in the
226      doc.
227 28Apr07
228 kes  First cut update job.
229 kes  Correct configure to include qmake of src/qt-console directory.
230 26Apr07
231 kes  Make restore job yes/mod/no print in one command so GUI works.
232 kes  First cut implementing backup and restore client.
233 kes  Correct editing in Verify output that caused a seg fault.
234 25Apr07
235 kes  Insure that bat.conf is not overwritten during installation.
236 kes  Fix important bug in db_sql_query() in mysql.c.  It was introduced
237      while I was implementing migration in March 2006 !
238 24Apr07
239 ebl  Cleanup file relocation, using char *RegexWhere instead of
240      char *where + bool where_use_regexp
241 kes  Update some manpages and add bat manpage.
242 kes  Make a first cut at converting bacula.spec.in for bwx-console
243      and bgnome-console.
244 kes  Apply patch from John Goerzen to add hostname as fourth argument
245      to make_catalog_backup script.
246 kes  Fix typos I introduced into bsmtp.c
247 kes  Make pm_strxxx() routines handle input of NULL pointer. This
248      is to protect from NULL pointers returned from SQL databases.
249 kes  Correct typo in bacula-sd manpage as pointed out by John Goerzen.
250 kes  Add more debug to FIFO code -- fix fifo regression test.
251 23Apr07
252 kes  Implement posix_fadvise in FD, and for reading spool files in SD.
253 kes  Add thread timer to bnet_connect() to break from OS if wait time
254      expires.
255 22Apr07
256 kes  Update Win32 build to include new files, new symbols, and    
257      renamed files.
258 kes  Implement socket level heartbeat (tcp_keepidle)
259 ebl  Commit File relocation patch
260 kes  Make bat have 'make install' target.
261 kes  Warn during install if old gnome-console binary found.
262 kes  Warn during install if old wx-console binary found.
263 kes  Add -8 option to bsmtp command line to add content type utf-8. 
264      Fixes bug #809. (Character coding problem in bsmtp).
265 kes  If < is found in target (from, to, cc) then do not enclose the
266      target in < >  in bsmtp. Fixes bug #772  (malformed address).
267 kes  When printing certain items in dbcheck, stop after 300000.
268      Fixes bug #822. (dbcheck loops).
269 kes  Incorrect status in Dir after waiting for mount with poll set.
270      Fixes bug #825.
271 21Apr07 
272 kes  Extend idea of Prefer Mounted Volumes to mean a volume about
273      to be mounted.
274 kes  Print waiting to reserve a device every 5 mins.           
275 20Apr07
276 kes  Don't call close_part in label.c if tape and relabel.
277 kes  Don't free volume if busy in close() -- should help with
278      bug 801.
279 ebl  Fix #824 RunScript bug (After script could be execute twice)
280      Now, Before Script can use RunsOnSuccess and RunsOnFailure options
281      By default (like before) RunsOnSuccess=true and RunsOnFailure=false
282      Add a regression script to test RunScript
283 19Apr07
284 kes  Correct usage of MTIOCLRERR ioctl for clearing persistant errors
285      on Solaris.
286 18Apr07
287 kes  The bgnome-console (gnome-console) and bwx-console (wx-console) are
288      deprecated. No additional bugs will be fixed, and they will be dropped
289      in a future release (probably 2.4.0).
290 kes  Change name of wx-console to bwx-console to make it more Bacula
291      unique.
292 kes  Change the name of gnome-console to bgnome-console to make it
293      more Bacula unique.
294 14Apr07
295 kes  Some time in March, a Feature Request with patch from Jorj Bauer
296      <jorj@seas.upenn.edu> was committed by Landon (with my approval).
297      It implements:
298      The ability for the director to validate a Client (FD) CN against
299      an arbitrary set of patterns rather than the hostname, with
300      A new 'TLS Allowed CN' set of directives which are implemented
301      in the Client resource.  Then pattern matching is used in place
302      of hostname matching against the Certificate's CN. As an example, we
303      have certificates which (a) use a local CA, and (b) have a CN of the
304      form client_123.
305 kes  Add new/changed entry points to Win32 build
306 kes  Create unaccepted-projects for projects that are not accepted.
307 kes  Simplify locking in the reservations system.
308 kes  Add more debug code in reservations.
309 kes  Make sure error condition on reserving a volume is handled correctly.
310 kes  Correct handling of volume_in_use.
311 kes  Correct handling of initializing a device.
312 kes  Move handling of broadcasting releasing a device into release_device().
313 kes  Correct attaching dcr to dev so that it is only done if device
314      is properly initiated.
315 12Apr07
316 kes  Locking debug level tweaks in SD.
317 kes  Tweak new Volume code.
318 11Apr07
319 kes  Add exec external-command [wait-seconds] to bconsole. This
320      executes the external-command.  Note! normally external-command
321      should be enclosed in double quotes.
322 kes  Turn the .die command on only if DEVELOPER is defined -- i.e.
323      it should normally be off in a production system.
324 10Apr07
325 kes  Implement die command for SD so that we can force it to dump.
326 kes  Implement SD lock debug code.
327 kes  Implement new algorithm for keeping Volume list in SD.  It
328      is now owned by the device.
329 04Apr07
330 kes  Implement new code for freeing in use volumes that should 
331      resolve if not all, some of the problems of multiple drive
332      tape conflicts described in bug 801.
333 03Apr07
334 kes  Fix gui/bacula-web/images files in svn.
335 kes  Turn on FreeBSD/OpenBSD code to set EOT model on tape.
336 02Apr07
337 ebl  Fix a bug in batch mode (in string escape)
338 kes  Correct migration prune SQL typo that crept in in a    
339      recent 2.1.x change.
340 01Apr07
341 kes  Move bnet_despool() into class in bsock.c
342 kes  Modify job report to include director name and Build OS.
343 kes  Move drop root privilege and check_catalog() before fork.
344 kes  Add update database scripts (version 9 to 10) to updatedb directory.
345 31Mar07
346 ebl  Check size and age of each file after its backup to see if
347      it has changed during backup, if 'checkfilechanges' is set.
348      The FD will do an extra check (stat(2)) after
349      each file backup. mtime, ctime and size are compared with
350      'before backup' information. If time or size mismatch, an
351      error message will be generated. You must upgrade FD to use it.
352 30Mar07
353 kes  Make database name and user configurable
354      --with-db-name=xxx --with-db-user=xxx
355 kes  Add back database type to message.c for debugging.
356 29Mar07
357 kes  Implement dir_sql() which issues an SQL query.
358 kes  Modify bat medialist to use dir_sql() and do some minor C++
359      formatting as well as eliminating a number of pointers, simplifing
360      the code.
361 28Mar07
362 kes  Fix some of the mtx-changer grep commands for tape label readers.
363 kes  Convert a number of bsendmsg into the appropriate send/warning/error
364      message class calls.
365 kes  Suppress the using database message in the .sql command.
366 kes  Correct an incorrect bnet_tls_client prototype -- patch from Martin.
367 27Mar07
368 kes  Add context menu for floating a window.
369 kes  Some minor cleanup and name changes in qt-console
370 kes  Add doing mt setblk 0 in Win32 mtx-changer.
371 kes  Apply Martin's bug fix to move definition of ENODATA for 
372      FreeBSD to bsock.c
373 ebl  Add a BUSY handler to sqlite to be able to use multi_db = 1 with
374      sqlite2 and sqlite3.
375 26Mar07
376 kes  More pruning cleanup.
377 kes  Turn on wait_for_drive by default in mtx-changer.
378 kes  Turn on Batch insert code by default as it now passes regression.
379 kes  Add ./configure --enable-bat to enable building of Bat.   
380      No install yet though.
381 25Mar07
382 kes  Implement a new .sql command for bat.
383 kes  Implement code to turn off pruning in obtaining the next volume.
384      Pruning is turned off for the status dir command, but turned on
385      for SD requests and for the list nextvolume command.
386 24Mar07
387 kes  Correct Qmsg() that was not updated correctly when committing a
388      previous change (probably the recent TLS patch).
389 23Mar07
390 kes  Write new subroutine is_volume_purged() that explicitly checks
391      if the Volume is purged, and if so marks it as such. This should
392      resolve problems reported about needing to mount twice to recycle
393      volumes.
394 kes  Rewrite pruning algorithm to do more work in the SQL engine, and
395      to pass a list of JobIds to be deleted to SQL.  Also, minimize the
396      amount of duplicated code.     
397 kes  Do volume pruning only for the Media Type desired (reduces pruning time
398      if multiple Media Types are in the same pool).
399 kes  Implement more detailed info in the Job report for the Bacula version
400      and architecture.
401 kes  Switch from POOLMEM to POOL_MEM (a real class) in ua_prune.c and
402      ua_purge.c.
403 ebl  Add bbatch tool to bench database and insert mode.
404      Fix sql quote stuff in batch mode
405      Fix sql stuff for mysql
406 22Mar07
407 kes  Correct problems with am/pm scheduling. Fixes bug #808.
408 kes  Implement new prunning code that prunes up to 1000 jobs at
409      the same time.  The same technique can be applied to a number
410      of other prune/purge subroutines.
411 kes  Add an insanity check when starting a new tape job to ensure
412      that the tape position has not been changed. If so fail the
413      job.
414 kes  Fix Win32 build for dlls to add the folllowing:
415      src/lib/bsock.c -- new file with new entry points
416      src/lib/dlist.c  -- new entry points
417      src/cats/sql_create.c -- new entry point
418      src/cats/sql_cmds.c -- new DATA item exported
419 21Mar07
420 ebl  batch mode cleanup bscan-test is ok now.
421 kes  Implement SD code to check length of disk volume before appending.
422 18Mar07
423 kes  Correct return status on db_batch... routines.
424 kes  Add call to db_write_batch_file_records() to migration code.
425 ebl  Fix AfterJob timing
426 kes  Move the checking of the database in initializion of the Director
427      to after we drop privileges.  This avoids the need for both root
428      and bacula access to the DB.
429 kes  Correct a misplaced variable definition in src/filed/backup.c
430 kes  Correct how the new batch insert db_create_attributes_record()
431      uses the arguments.  Caused a seg fault in bscan.
432 kes  Implement lock() and unlock() methods in DEVICE class.
433      Implement block() and set_block(xx) methods in DEVICE class.
434 kes  Modify bnet_connect() so that it uses time() to check for the
435      wait time expiring (on some OSes, some system calls may not
436      return immediately).
437 kes  Modify Verify to obtain the previous JobId when it is actually
438      running rather than at schedule time (as it was in 1.38.x).     
439 kes  Fix src/job.c to handle MaxWaitTime correctly.  This should
440      fix bug #802.
441 kes  When checking pid in pid file, continue running if the pid is
442      the same as ours. This occurs on IRIX after a system crash.
443      Fixes bug #797.
444 10Mar07
445 kes  Extend new GUI API.
446 kes  Make the ua structure a class, and implement send_msg(),
447      error_msg(), warning_msg(), and info_msg().
448 08Mar07
449 kes  Apply fix from for building wx-console on the Mac from
450      bug #798.
451 kes  Implement new select mechanism for GUI programs.
452 kes  Reorganize initialization of stackedWidgets in bat.
453 07Mar07
454 kes  Add updated nagios plugin supplied by Christian Masopust.
455 05Mar07
456 kes  More bat implementation.
457 kes  File migrate bug with Pool Occupancy using mediaid instead
458      of jobids.  Fixes bug #795.
459 kes  Fix orphaned buffers in filed backup and verify due to
460      crypto buffers not freed during errors.  Fixes bug #789.
461 kes  Extend new GUI api code to tree commands.
462 kes  Ensure that tree and dot commands check console ACLs.
463 kes  Permit marking directory with trailing slash.
464 kes  Allow 20 console connections (instead of only 10).
465 04Mar07
466 kes  Add smartctl call to bacula-sd.conf as an example of getting
467      tape alert info.
468 02Mar07
469 kes  Modify jobq.c to let simultaneous restore jobs run. This may 
470      cause them to fail if they cannot get a drive.
471 kes  Add Client Connect Wait to Storage daemon to permit users to
472      modify the time the SD waits for a FD connection.
473 29Feb07
474 kes  Correct virtual changer check which was backwards. This caused
475      volumes to be unloaded into slots already occupied.
476 28Feb07
477 kes  Apply Command ACL filter to JobId list in restore command.
478 kes  Correct typeo in var.c patch.
479 27Feb07
480 kes  Don't let Bacula prune File or Job records for the current Job.
481 kes  Fix variable substitution pad + inc bug reported (with patch)
482      in bug #791.
483 26Feb07
484 kes  Correct SQLite log table index as reported by Luca Berra.
485 24Feb07
486 ebl  fix fifo stuff, bacula tries to rewind the fifo... Thanks to Andreas
487 22Feb07
488 kes  Begin implementing new comm signals for API.
489 kes  Fix a few places in lib/message.c where the open fd may 
490      not be zeroed.
491 kes  Continue implementing lib/bsock.c (real class).  Make jcr,
492      who, host, and port private. There are new methods to access
493      them for non-class use. This required touching a number of files.
494 21Feb07
495 kes  Add LANG=C to autoconf/randpass so it works with languages other
496      than English.  Fixes bug #788.
497 20Feb07
498 ebl  Revert ClientRunBeforeJob to old position as in 1.38.X.
499      This fixes bug #780
500      You will not be able to generate Include/Exclude list any more.
501      It will be fixed soon.
502      If you want to use this, you can apply
503      trunk/bacula/patches/testing/clientrunbeforejob_can_generate_include_exclude_list.patch
504 19Feb07
505 kes  Restore of sockets created false error messages because Bacula
506      no longer restores sockets, but the code was still trying to
507      set the attributes on a non-existent file. Reported by a user.
508 ebl  finish RecyclePool feature
509      Media will takes Pool.RecyclePool
510      when moving from Scratch to a Pool or when user will do
511      update volume=xxx frompool
512      To use it, add RecyclePool = aPool to your Pool resource
513         Pool {
514                 Name = Default
515                 RecyclePool = Scratch
516                 ...
517         }
518      TODO: update manual
519 kes  Expand new BSOCK class adding signal() and new BNET signals.
520 kes  Begin enhancing the dot commands adding a new API function
521      that returns more information and will make it easier
522      to interface to the Director from a program.
523 18Feb07
524 kes  Make DEVICE fd private. Its new name is m_fd, and can be
525      obtained with dev->fd() outside the class.  This is the
526      first of many DEVICE members to be made private.
527 kes  Implement Michael Renner's idea on having a virtual disk
528      changer. I made some minor modifications (e.g. I did not
529      implement the Virtual Changer directive, but simply set
530      the Changer Command to an empty string.
531 17Feb07
532 kes  Implement a BSOCK send() method that writes the whole record
533      in a single write() request rather than in two.
534 ebl  add update volume=xxx recyclepool=yyyy
535      volume takes recyclepool from pool when using update volume=xxx from pool
536 16Feb07
537 kes  Fix encryption deblocking bug, which caused some restored files
538      to be truncated. This fixes bug #763.
539 kes  Add FD event sequence order prepared by Eric -- for RunScripts.
540 kes  Fix 12am/pm bug as reported in bug #782.
541 13Feb07
542 kes  Apply Eric's ClientRunScriptAfter patch to 2.0 and 2.1.
543 ebl  Use btime_t instead of uint64_t in media patch.
544 11Feb07
545 kes  Optimize the use of the database a bit in the Status dir command.
546      Only open it when needed, ensure that if any previous database
547      was opened, it is closed.
548 10Feb07
549 kes  Correct VolCatBytes bug from media patch.
550 kes  Apply patch from bug #612 by Rudolf Cejka to speedup pruning
551      in the case of orphaned records.
552 kes  Modify dbcheck to handle orphaned JobMedia, Path, Filename,
553      and File records in 300K chunks to be more efficient. This
554      idea came from Juan Luis Frances (if I remember right).
555 kes  Apply Eric's scratch patch that moves a purged Volume to
556      the RecyclePool.  Question: how is RecyclePool set? what
557      happens to the ScratchPool?
558 kes  Apply Eric's media patch that collects read/write media
559      times as well as byte counts.  This patch requires a
560      simultaneous upgrade of the DIR and SD.  Note, there
561      should be some way to turn off timing. I'm not sure
562      times are in Bacula units.
563 kes  Apply Eric's batch-insert patch.
564 09Feb07
565 kes  Update projects list.
566 08Feb07
567 kes  Implement Include/Exclude file lists in FD as dlists using
568      the new dlistString class. This permits efficiently having
569      large include/exclude lists and completes project Item 25.
570 kes  Fix dird/ua_cmds.c so that a cancel command checks if the
571      console is authorized to cancel the job.  This fixes bug 
572      #767.
573 kes  Modify SD so that the VolCatJobs medium record is updated
574      at the beginning of a Job rather than the end.  This
575      fixes bug #775 where exceeding MaxVolJobs caused jobs
576      to fail.
577 kes  Added a mutex around getting and setting Volume information
578      so that multiple simultaneous jobs will single thread.
579 07Feb07
580      Switch to using Subversion
581 kes  Remove src/pygtk-console/ from configure
582 06Feb07
583 kes  Delete src/lib/btree.c from win32 build, then add rblist.c
584      plus the entrypoints.
585 kes  Apply patch supplied that corrects debug print
586      in canceling jobs for max run time.  Supplied as
587      part of bug #621, which was previously fixed.
588 05Feb07
589 kes  Test on job_canceled() and sd_msg_thread_done inside
590      loop starting the message thread to avoid a race condition.
591      Fixes bug #771.
592 kes  Remove rl_catch_signal from console.c as it conflicted
593      with the header definition. Fixes bug #765.
594 ebl  Fixes bug #766 about RunsOnClient = Yes (case sensitive)
595 04Feb07
596 kes  Clarify some stored/acquire messages to indicate if the
597      problem is with read or append.
598 02Feb07
599 kes  Fix memory leak with storage ids in cats/sql_get.c
600 kes  Terminate watchdog earlier to avoid reference to released
601      memory -- reported by Jason Austin.
602 kes  Move closing the database from jobq.c to the director daemon
603      termination routine. This fixes memory leaks for shadow jobs
604      (i.e. migration jobs).
605 kes  Free up the unique jobid chain items in migrate.c.  This fixes
606      a memory leak problem.
607 kes  Convert some ugly looking for statements to use foreach_alist
608      in findlib/find.c.  This will facilitate converting the structures
609      to use dlist (for large include/exclude lists).
610 kes  Fix a bug in the btree.c and btree.h routines, then rename them
611      rblist and add them to be built in src/lib.  Include some new
612      methods written by Rudolf Cejka that make the code more readable
613      (hides some of the ugly casting).
614 kes  Add set_next() and set_prev() methods which make the code much more 
615      readable. Also add a new dlistString class that facilitates storing
616      strings in dlists.  To be used in the large include/exclude lists.
617 kes  Make some trivial modifications to lib/tree.h that use rblist
618      rather than dlist for storing the tree links. This was suggested
619      by Rudolf Cejka.  The result of this is that the restore tree now
620      uses red-black binary trees rather than simple linked lists. This
621      should give rather dramatic speed improvements for directories
622      contining large numbers of directories/files (more than 10000).
623 28Jan07 
624 kes  Fix maxruntime bug #621.
625 26Jan07
626 ebl  Implement the include JobID in spool file name project.
627 kes  Reorder projects file in order determined by Jan 2007 vote.
628 kes  Implement item #12 on project list -- quick release of FD by
629      the SD.
630 kes  Fix open of SQLite3 db where user does not have write permission
631      so that DIR does not crash. Fixes bug #761.
632 25Jan07
633 kes  Add back missing @ in Win32 Makefile.
634 kes  Change 'Device not configured to autolabel' from INFO
635      to WARNING.
636 kes  Fix jobq.c to restart failed jobs when Reschedule Times = 0 
637      which should restart an indefinite # of times.
638 kes  Fix configure --help to print --with-mysql[=DIR]. Same for
639      other DIR specifications.
640 23Jan07
641 rn   Fix msvc build problems. Fix bacula.dll exports for msvc build.
642      Fix path quoting in SQLite scripts.
643      Fix problems with SHGetFolderPath.
644 19Jan07
645 kes  Create patches/2.0.1-restart.patch. Fixes bug #755.
646 18Jan07
647 kes  Fix Job restart on error bug that promotes an Inc to a Full
648      backup.  This should fix bug #755.
649 kes  Add qt-console and first cut of code.
650
651 Version 2.0.1
652 12Jan07
653 kes  Fix Bacula->Documentation link on Win32 to point to index.html
654      instead of bacula.html. Fixed bug #750.
655 kes  Return JobId in db_get_job_record() when JobId==0. This should
656      fix bug #741.
657 kes  Do not release source pointers when restarting a failed job.
658 11Jan07
659 kes  Add dynamic dll entry point for SHGetFolderPath to Win32 code.
660      This *should* fix bug #747.
661 kes  Modify winbacula.nsi to substitute with g bin_dir_cmd. Should fix
662      bug #742.
663 09Jan07
664 kes  Modify USTORE constructor to set an empty store_source string, 
665      and don't copy the store_source string in a cancel.  Hopefully
666      this will fix Arno's seg fault, bug #744.
667 kes  Add back code to disable conio in configure. Fixes bug #743.
668 kes  Correct the Options scanner in the FD to correctly handle  
669      SHA1 option, which was eating the next option.  Reported by    
670      Sebastien Guilbaud.
671 kes  Add code to indicate when the SD is spooling, spool wait, and 
672      despooling as requested by Alan Brown.
673
674 Version 2.0.0 released: 4 January 2007