]> git.sur5r.net Git - bacula/bacula/blob - bacula/kes-1.38
2de8cb1522b60ccdf0e50ddbcee13871097e6aac
[bacula/bacula] / bacula / kes-1.38
1               Technical notes on version 1.38  
2                         Kern Sibbald
3
4 General:
5
6 Release 1.38.5 released 19Jan06:
7 19Jan06
8 - Apply label barcodes fix supplied by Rudolf Cejka.
9 18Jan06
10 - Modify standard rpm installation to set SD group to disk
11   so that SD will by default have access to tape drives.
12 - Allow users to specify user/group and start options
13   for each daemon in /etc/sysconf/bacula file.           
14
15 Release 1.38.4 released 17Jan06:
16 16Jan06
17 - Add two new queries to query.sql provided by Arno. One
18   list volumes known to the Storage device, and the other
19   lists volumes possibly needing replacement (error, ...).
20 15Jan06
21 - Add periodic (every 24 hours) garbage collection of memory 
22   pool by releasing free buffers.
23 14Jan06
24 - Correct bug counting sized (for display only) in smartall.c
25 - Print FD mempool stats if debug > 0 rather than 5.
26 12Jan06
27 - Make db_lock() mutex error fail the job rather than abort
28   Bacula.  Canceling the job caused the mutex to fail.
29 - Correct bug in alist.c that re-allocated the list if the
30   number of items goes to zero.
31 - Move the reservation system thread locking to the top level
32   so that one job at a time tries all possible drives before
33   waiting.
34 - Implement a reservation 'fail' message queue that is built         
35   and destroyed on each pass through the reservation system.
36   These messages are displayed in a 'Jobs waiting to reserve
37   a drive' list during a 'status storage='.  Note, multiple
38   messages will generally print for each JobId because they
39   represent the different problems with either the same drive
40   or different drives.  If this output proves too confusing
41   of voluminous, I will display it only when debug level 1
42   or greater is enabled in the SD.
43 11Jan06
44 - Add enable/disable job=<job-name>.  This command prevents
45   the specified job from being scheduled. Even when disabled,
46   the job can be manually started from the console.
47 - During 'update slots' clear all InChanger flags where the
48   StorageId is zero (old Media records).
49
50 Beta release 1.38.4:
51 09Jan06
52 - Fix autochanger code to strip leading spaces from returned
53   slots number. Remove bc from chio-changer.
54 - Back port a bit of 1.39 crypto code to reduce diffs.
55 - Fix first call to autochanger that missed close()ing the
56   drive. Put close() just before each run_program().  Fixes
57   Arno's changer bug.
58 07Jan06
59 - Add PoolId to Job record when updating it at job start time.
60 06Jan06
61 - Pull in more code from 1.39 so that there are fewer file
62   differences (the new ua_dotcmds.c, base64.h, crypto.h
63   hmac.c jcr.c (dird and lib) lib.h md5.h parse_conf.c 
64   util.c. Aside from ua_dotcmds.c these are mostly crypto
65   upgrades.
66 - Implement new method of walking the jcr chain. The
67   incr/dec of the use_count is done within the walking
68   routines.  This should prevent a jcr from being freed
69   from under the walk routines.
70
71 Release 1.38.3 05Jan06:
72 04Jan06
73 - Move the suitable_drive flag to a better place to prevent
74   premature termination of the reservation if all drives
75   are busy -- should fix Arno's diff/inc pool failures.
76 26Dec05
77 - Add mutex to single thread VSS code in Win32.
78
79 Beta release 23Dec05:
80 22Dec05
81 - Add OPENSSL_INC to console dependencies, lib dependencies, and
82   wx-console dependencies in Makefile.in
83 - Add OPENSSL INC/LIB to gnome2_console Makefile.in.
84 - Simplify code in askdir.c that waits for creating an appendable
85   volume so that it can handle multiple returns from the wait
86   code.
87 - Modify the wait code to permit multiple returns.
88 - Return a zero when 'autochanger drives' is called and
89   it is not an autochanger.
90 - Make rewind_dev() a method taking a DCR as an argument.
91   This permits closing and reopening the drive if the
92   rewind fails as happens if the drive was loaded while the
93   file descriptor was open. This refreshes the file descriptor.
94 - Remove the ST_OPENED flag and always rely on fd < 0 for knowing
95   if the device is open or not.  This should eliminate
96   Arnos problem.
97 - Return error if reserve cannot find at least one suitable device.
98 - Make wait_for_sysop() return correct state information.
99 - Fix Win32 state file problem. write was not using compat
100   code. This should fix bug #500.
101 21Dec05
102 - Modify gui on command to set only GUI mode and not batch.
103 - Modify .messages command to always print messages regardless
104   of the mode.                
105 - If GUI mode is on, suppress automatic printing of 
106   You have messages. 
107 - Delete old bnet packet code.
108 - Ignore new BNET_START_SELECT and BNET_END_SELECT signals in
109   wx-console.
110 - Modify restore command in wx-console to set gui on and to use
111   only .messages instead of messages.  Hopefully this fixes bug
112   #514.
113 Beta release 20Dec05:
114 20Dec05
115 - Fix seg fault in exit of acquire when canceling a job --
116   reported by Wolfgang Denk
117 19Dec05
118 - Implement load balancing code.
119 - Pull a few files from 1.39 where we can maintain compatibility.
120 - Rewrite reservation algorithm again. Rename variables to be
121   more logical, add HEARTBEAT with Director, allow cancel of
122   jobs stuck in reservation, add last resourt any_drive.
123 17Dec05
124 - Remove quotes from Version table name -- it breaks things.
125 - Fix seg fault if user labels a drive directly bug #513
126 - Remove quotes around Version as it breaks things.
127 16Dec05
128 - Merge in Aleksandar Milivojevic's mods to the spec file.
129 - Apply sparse code fix for raw drives and fifos. Bug 506
130 - Thorsten fixed Unicode cd problem with wx-console bug 505.
131 Beta release 14Dec05:
132 14Dec05
133 - Correct reservation system to do a last ditch try
134   for any mounted volume, then anyone anywhere.
135 - Add quotes around table Version because of
136   error in MySQL 4.1.15 -- bug report submitted.
137 - Correct some minor problems with btape in the fill
138   command.
139 - Updates to ssh-tunnel from Joshua Kugler.
140 - Added a report.pl program from Jonas Bjorklund.            
141 - Simplify the O_NONBLOCK open() code for tape drives,
142   and always open nonblocking.
143 - Do not wait for open() if EIO returned (shouldn't happen).
144 - Eliminate 3 argument to tape open().
145 - Correct the slot # edited in the 3995 Bad autochanger unload
146   message.
147 - With -S on bscan (show progress) do not divide by zero.
148   Bug #510
149 13Dec05
150 - Make cancel pthread_cond_signal() pthread_cond_broadcast().
151 - When dcr is freed, also broadcast dev->wait_next_vol signal.
152 - Remove unused code in wait_for_device.  
153 - Make wait_for_device() always return after 60 seconds of wait.
154 12Dec05
155 - Use localhost if no network configured
156 11Dec05
157 - Eliminated duplicate MaxVolBytes in cat update -- bug 509.
158 - Remove debug print.
159 - Add bail_out in error during state file reading.
160 Beta release 10Dec05:
161 09Dec05
162 - Merge updates into 1.38 branch
163 - Update specs to include mysql4 define.
164 - Stop read_record() if status not ok in second loop.
165 - Return rec->FileIndex in dcr->VolLastIndex for normal
166   and partial records in read_record().  This allows bscan
167   to get FileIndex at EOT correct.
168 - Fix butil.c to correctly set dcr -- fixes seg fault in bls.
169 08Dec05
170 - Apply patch supplied by user (slightly modified) to fix
171   correct detection of holes in block devices and FIFOs. 
172   Bug # 506.
173 - Apply patch supplied by user (slightly modified) 
174   to fix SD hang with multiple pools and bad client
175   IP. Fixes bug # 508.
176 07Dec05
177 - Add nagios plugin to the examples directory. Submitted by
178   Christian Masopust.
179 - Remove warning message about multiple saves of hardlinked files
180   from find_one.c as it can generate too many warning messages.
181 06Dec05
182 - Reset timeout values before select() per patch from 
183   Frank Sweetser for problems with non-blocking sockets.
184 - Unlink the state file if either reading or writing it gets
185   errors.  Hopefully this will fix Win32 exit problems.
186 - Add sanity check in append.c to ensure that dcr is not NULL.
187   This can happen if multiple drive autochanger SCSI control
188   channel and drive indicies do not correspond.
189 05Dec05
190 - Get next volume from Scratch pool before creating a volume.
191 - Set new Pool defaults in Vol when moved from Scratch Pool.
192 - Remove argument from create_bacula_database for SQLite as it
193   caused an error.
194 - Add back next_vol index code so that two drive autochangers can get
195   a second tape.
196 - Change a bunch of debug levels to aid debugging autochangers.
197 - Fix reservation so that mutexes are properly applied.
198 - Rework reservation algorithm so that two drives can be used
199   at the same time.
200 04Dec05
201 - Apply days keyword patch from Alexander.Bergolth at wu-wien.ac.at 
202   If this patch is applied, the number of days can be specified with
203   'list nextvol days=xx'
204   or
205   'status dir days=xx'
206   My use case is to be able to preview the next scheduled job (and the 
207   next tape to be used) on fridays if there are no scheduled jobs during 
208   the weekend.
209 03Dec05
210 - Fix font code in gnome2 console user patch. Fixes bug #501.
211 - Fix malformatted bnet error message that caused seg fault
212   fixes bug 502
213 - Applied user patch to improve README.vc8 in src/win32.
214 29Nov05
215 - Correct some more editing of JobId's (for 64 bit compatibility).
216 - Ensure that StorageId is stored in Media record when ever possible.
217 - Add Migration Job to Job.
218 - Change Start Storage daemon job to require read and write storage
219   pointers.
220 - Pass read storage data to SD as well as write storage data.
221 - Remove old code from winservice.cpp
222 - Break on error in scan.
223 - Fix typo in signal.c
224 - Separate read/write DCR in SD.  Add jcr->read_dcr.
225 - Cleanup how find_device() works.
226 - Add read output to Status in SD.
227 21Nov05
228 - Remove abs() in bfile.c so that it compiles on Solaris. 
229   Bug #491.
230
231 Changes to 1.38.2: 22 November 2005
232 20Nov05
233 - Fix crash in tray-monitor when daemon disconnects. Bug #479.
234 - Fix bnet-server bug found on OpenBSD. Bug #486 (bug originator
235   says this does not fix *his* bug).
236 - Fix cancel failure bug. Bug #481
237 - Fix failure when Pool name has spaces. Bug #487   
238 - Fix SD crash in autochanger code. Mutex failure. Bug #488
239 - Fix a couple of free()s in src/filed/acl.c
240 - Fix memory overrun in bfile.c in building OS X resource
241   fork filename. Bug #489 
242 - Add Pool name to SD status output.
243 - Add Python install dir for Solaris to configure. Bug #492
244
245 Changes to 1.38.1: 15 November 2005
246 14Nov05
247 - Apply SunOS patch for ACLs submitted by David Duchscher.                  
248 - Make sure to set storage before trying to set drive.
249 - Add bacula_mail_summary.sh to examples directory. It makes
250   a single email summary of any number of jobs. Submitted
251   by Adrew J. Millar.
252 - Make sure when we do a mount to unblock the device even
253   if the drive could not be opened.  
254 13Nov05
255 - Merge Scott's new spec files.
256 - Add doc on setting up Win32 environment variable supplied
257   by Kees van den Broek.               
258 - Turn off API debug output unless debug set to avoid confusing
259   the user.
260 - Add Solaris ACL detection in configure.in as supplied by
261   Attila Fulop. 
262 12Nov05
263 - Implement 'autochanger drives' protocol so that Dir knows
264   how many drives an autochanger has.
265 - Do not request drive number in label, ... if only one drive.
266 - Turn off debug code.
267 - Fix update slots to clear slot number of every slot before
268   setting it.  This fixes (I believe) bug #471
269 - Make unmount unload the autochanger slot.
270 - Modify open() on mount to be read-only and non-blocking,      
271   otherwise the mount can block for a long time.
272 - Make a few error message numbers unique.
273 - Make a few error messages more correct.
274 - Apply patch from Thorsten to fix Win98 stat() command.
275 10Nov05
276 - Remove delete of CVS from all makefiles.
277 - Fix seg fault when clicking on Add button in wx-console
278   restore panel.  Bug #470.
279 - Fix copyright date and URL typo -- bug #468.
280 - Change autostart install for FreeBSD to look for rc.conf  
281   rather than rc.local as suggested fix for bug #466.
282 - Apply patch supplied by Eric Bollinger to fix PostgreSQL    
283   grant on status. Bug #465
284 - Apply patch supplied by Eric Bollinger to fix PostgreSQL
285   update script. Bug #464
286 - Fix off by one for last Slot of autochanger for label.
287 - Update release date.
288 - Tweak an authentication error message in dir.
289 - Fix autoloader so that mutex is set and released around
290   each run_program().  There was a missing set.
291 - Remove an unnecessary drive release in autochanger.
292 - Modify configure.in to add execute option to sqlite3 catalog  
293   scripts.
294 - Create update_xxx_table_8_to_9 scripts for updatedb
295 - Fix wrong variable in bpipe.c debug output reported by user.
296 - Fix improper placement of encode_and_send_attributes() in
297   FD backup.c causing first file of non-portable Win32 backup
298   to have wrong stream. Reported by Thorsten.
299 - Move the -lcrypt for PostgreSQL after the PostgreSQL libs in
300   autoconf/bacula-macros/db.m4 as suggested by user.  Fixes bug #457.
301 - Remove @STATIC_CONS@ from tray-monitor Makefile as suggested
302   by user. Fixes bug #456.
303
304 Released 1.38.0 (28Oct05): 31 October 2005