]> git.sur5r.net Git - bacula/bacula/blob - bacula/kernstodo
Update version
[bacula/bacula] / bacula / kernstodo
1                  Kern's ToDo List
2                   26 August 2002
3
4 Irix conversion notes:
5 - no uuencode
6 - no hostname
7 To do:    
8 - Document passwords.
9 - Document running multiple Jobs
10 - Document that two Verifys at same time on same client do not work.
11 - Document how to recycle a tape in 7 days even if the backup takes a long time.
12 - Document default config file locations.
13 - Document better includes (does it cross file systems ?).
14 - Document specifically how to add new File daemon to config files.
15 - Document forcing a new tape to be used.
16 - Document "Error in message.c:500 Mail program terminated in error.
17
18 From Chuck:
19 --bindir is wrong and does not reflect prefix= in the *_sqlite_* scripts
20   (src/cats)
21 --top level configure options are not passed to the depkgs, particularly
22   prefix=
23 --Also, it might be better to split the depkgs location from the --with-sqlite
24   location. 
25 --should be able to specify e.g. --with-sqlite=/opt/local and have it find
26   lib, bin, sbin for itself
27   I tried this and it didn't find sqlite.h
28 --sd.conf password does not match dir.conf storage password
29 =======
30
31 - Implement autochanger for restore. ARRRGGG! I forgot!
32 - Make BSR accept count (total files to be restored).
33 - Make BSR return next_block when it knows record is not
34   in block, done when count is reached, and possibly other
35   optimizations. I.e. add a state word.
36 - After unmount, if restore job started, ask to mount.
37 - Fix db_get_fileset in cats/sql_get.c for multiple records.
38 - Fix start/end blocks for File
39 - Add new code to scheduler.c and run_conf.c
40 - Volume Bytes shows bytes on last volume written in Job summary.
41 - Fix catalog filename truncation in sql_get and sql_create. Use
42   only a single filename split routine.
43 - Add command to reset VolFiles to a larger value (don't allow
44   a smaller number or print big warning).
45 - Make SD disallow writing on Volume with fewer files than in
46   the catalog.
47 - Make Restore report an error if FD or SD term codes are not OK.
48 - Convert all %x substitution variables, which are hard to remember
49   and read to %(variable-name).  Idea from TMDA.
50 - Report compression % and other compression statistics if turned on.
51 - Add JobLevel in FD status (but make sure it is defined).
52 - Make Pool resource handle Counter resources.
53 - Remove NextId for SQLite. Optimize.
54 - Fix gethostbyname() to use gethostbyname_r()
55 - Implement ./configure --with-client-only
56 - Strip trailing / from Include
57 - Move all SQL statements into a single location.
58 - Cleanup db_update_media and db_update_pool
59 - Add UA rc and history files.
60 - put termcap (used by console) in ./configure and
61   allow -with-termcap-dir.
62 - Remove JobMediaId it is not used.
63 - Enhance time and size scanning routines.
64 - Fix Autoprune for Volumes to respect need for full save.
65 - DateWritten field on tape may be wrong.
66 - Fix Win32 config file definition name on /install
67 - No READLINE_SRC if found in alternate directory.
68 - Add Client FS/OS id (Linux, Win95/98, ...).
69 - Put Windows files in Windows stream?
70 - Ensure that everyone uses btime routines.
71
72   
73 Projects:
74            Bacula Projects Roadmap 
75                17 August 2002
76
77 Item 1:   Multiple simultaneous Jobs. (done)
78
79   What:   Permit multiple simultaneous jobs in Bacula.
80
81   Why:    An enterprise level solution needs to go fast without the
82           need for the system administrator to carefully tweak
83           timing.  Based on the benchmarks, during a full
84           backup, NetWorker typically hit 10 times the bandwidth to
85           the tape compared to Bacula--largely. This is probably due to
86           running parallel jobs and multi-threaded filling of buffers
87           and writing them to tape.  This should also make things work
88           better when you have a mix of fast and slow machines backing
89           up at the same time.
90
91   Notes:  Bacula was designed to run multiple simultaneous jobs. Thus
92           implementing this is a matter of some small cleanups and
93           careful testing.
94
95
96 Item 2:   Make the Storage daemon use intermediate file storage to buffer data.
97           (not necessary)
98
99   What:   If data is coming into the SD too fast, buffer it to 
100           disk if the user has configured this option.
101
102   Why:    This would be nice, especially if it more or less falls out
103           when implementing (1) above.  If not, it probably should not
104           be given a high priority because fundamentally the backup time
105           is limited by the tape bandwidth.  Even though you may finish a
106           client job quicker by spilling to disk, you still have to
107           eventually get it onto tape.  If intermediate disk buffering
108           allows us to improve write bandwidth to tape, it may make
109           sense.
110
111   Notes:  Whether or not this is implemented will depend upon performance
112           testing after item 1 is implemented.
113
114
115 Item 3:   Write the bscan program.
116
117   What:   Write a program that reads a Bacula tape and puts all the 
118           appropriate data into the catalog. This allows recovery
119           from a tape that is no longer in the database, or it allows
120           re-creation of a database if lost.
121
122   Why:    This is a fundamental robustness and disaster recovery tool
123           which will increase the comfort level of a sysadmin
124           considering adopting Bacula.
125
126   Notes:  A skeleton of this program already exists, but much work
127           needs to be done. Implementing this will also make apparent
128           any deficiencies in the current Bacula tape format.
129
130
131 Item 4:   Implement Base jobs.
132
133   What:   A base job is sort of like a Full save except that you 
134           will want the FileSet to contain only files that are unlikely
135           to change in the future (i.e. a snapshot of most of your
136           system after installing it). After the base job has been run,
137           when you are doing a Full save, you can specify to exclude
138           all files saved by the base job that have not been modified.
139
140   Why:    This is something none of the competition does, as far as we know
141           (except BackupPC, which is a Perl program that saves to disk
142           only).  It is big win for the user, it makes Bacula stand out
143           as offering a unique optimization that immediately saves time
144           and money.
145
146   Notes:  Big savings in tape usage. Will require more resources because
147           the e. DIR must send FD a list of files/attribs, and the FD must
148           search the list and compare it for each file to be saved.
149
150
151 Item 5:   Implement Label templates
152
153   What:   This is a mechanism whereby Bacula can automatically create
154           a tape label for new tapes according to a detailed specification
155           provided by the user.
156
157   Why:    It is a major convenience item for folks who use automated label
158           creation.
159
160   Notes:  Bacula already has a working form of automatic tape label
161           creation, but it is very crude. The design for the complete
162           tape labeling project is already documented in the manual.
163
164
165 Item 6:   Write a regression script.
166
167   What:   This is an automatic script that runs and tests as many features
168           of Bacula as possible. The output is compared to previous
169           versions of Bacula and any differences are reported.
170
171   Why:    This is an enormous help in preventing introduction of new
172           errors in parts of the program that already work correctly.
173
174   Notes:  This probably should be ranked higher, it's something the typical
175           user doesn't see.  Depending on how it's implemented, it may
176           make sense to defer it until the archival tape format and
177           user interface mature.
178
179
180 Item 7:   GUI for interactive restore
181 Item 8:   GUI for interactive backup
182
183   What:   The current interactive restore is implemented with a tty
184           interface. It would be much nicer to be able to "see" the
185           list of files backed up in typical GUI tree format.
186           The same mechanism could also be used for creating 
187           ad-hoc backup FileSets (item 8).
188
189   Why:    Ease of use -- especially for the end user.
190
191   Notes:  Rather than implementing in Gtk, we probably should go directly
192           for a Browser implementation, even if doing so meant the
193           capability wouldn't be available until much later.  Not only
194           is there the question of Windows sites, most
195           Solaris/HP/IRIX, etc,  shops can't currently run Gtk programs
196           without installing lots of stuff admins are very wary about.
197           Real sysadmins will always use the command line anyway, and
198           the user who's doing an interactive restore or backup of his
199           own files will in most cases be on a Windows machine running
200           Exploder.
201
202
203 Item 9:   Add SSL to daemon communications.
204
205   What:   This provides for secure communications between the daemons.
206
207   Why:    This would allow doing backup across the Internet without
208           privacy concerns (or with much less concern).
209
210   Notes:  The vast majority of near term potential users will be backing up
211           a single site over a LAN and, correctly or not, they probably
212           won't be concerned with security, at least not enough to go to
213           the trouble to set up keys, etc. to screw things down.  We suspect
214           that many users genuinely interested in multi-site backup
215           already run some form of VPN software in their internetwork
216           connections, and are willing to delegate security to that layer.
217
218
219 Item 10:  Define definitive tape format.
220
221   What:   Define that definitive tape format that will not change 
222           for the next millennium.
223
224   Why:    Stability, security.
225
226   Notes:  See notes for item 11 below.
227
228
229 Item 11:  New daemon communication protocol.
230
231   What:   The current daemon to daemon protocol is basically an ASCII
232           printf() and sending the buffer. On the receiving end, the
233           buffer is sscanf()ed to unpack it. The new scheme would
234           be a binary format that allows quick packing and unpacking
235           of any data type with named fields.
236
237   Why:    Using binary packing would be faster. Named fields will permit
238           error checking to ensure that what is sent is what the 
239           receiver really wants.
240
241   Notes:  These are internal improvements in the interest of the
242           long-term stability and evolution of the program.  On the one
243           hand, the sooner they're done, the less code we have to rip
244           up when the time comes to install them.  On the other hand, they
245           don't bring an immediately perceptible benefit to potential
246           users.  Item 10 and possibly item 11 should be deferred until Bacula
247           is well established with a growing user community more or
248           less happy with the feature set.  At that time, it will make a
249           good "next generation" upgrade in the interest of data
250           immortality.
251
252
253
254 I haven't put these in any particular order.
255
256 Small projects:
257 - Rework Storage daemon with new rwl_lock routines.
258 - Compare tape to Client files (attributes, or attributes and data) 
259 - Restore options (overwrite, overwrite if older,
260    overwrite if newer, never overwrite, ...)
261 - Restore to a particular time -- e.g. before date, after date. 
262 - On command write out a bootstrap file (at end of job).
263 - Make all database Ids 64 bit.
264 - Pass JCR to database routines permitting better error printing.
265 - Make bls accept bootstrap record.
266 - Write an applet for Linux.
267 - Make SD reject writing on tape where Catalog and tape # files
268   don't agree (possibly OK if tape > catalog).
269 - Implement new daemon communications protocol.
270 - Add DIR config directive to spool attributes.
271 - Pass DIR config variable to SD for no attributes.
272 - Create JobMedia record for all running Jobs when Media changes.
273 - Send Volumes needed during restore to Console (just after
274   create_volume_list) -- also in restore command?
275 - Add estimate to Console commands
276 - Find solution to blank filename (i.e. path only) problem.
277
278 Dump:
279   mysqldump -f  --opt bacula >bacula
280
281
282 To be done:
283 - Remove PoolId from Job table, it exists in Media.
284 - Allow console commands to detach or run in background.
285 - Fix status delay on storage daemon during rewind.
286 - Add VerNo to each Session label record. 
287 - Add Job to Session records.
288 - Add VOLUME_CAT_INFO to the EOS tape record (as
289   well as to the EOD record).
290 - Add SD message variables to control operator wait time
291   - Maximum Operator Wait
292   - Minimum Message Interval
293   - Maximum Message Interval
294 - Add EOM handling variables
295   - Write EOD records
296   - Require EOD records
297 - Send Operator message when cannot read tape label.
298 - Think about how to handle I/O error on MTEOM.
299 - If Storage daemon aborts a job, ensure that this
300   is printed in the error message.
301 - Verify level=Volume (scan only), level=Data (compare of data to file).
302   Verify level=Catalog, level=InitCatalog
303 - Dump of Catalog
304 - Cold start full restore (restore catalog then
305   user selects what to restore).  Write summary file containing only
306   Job, Media, and Catalog information. Store on another machine.
307 - Dump/Restore database
308 - File system type
309 - Events file
310 - Add keyword search to show command in Console.
311 - Fix Win2000 error with no messages during startup.
312 - Events : tape has more than xxx bytes.
313 - In Storage daemon, status should include job cancelled.
314 - Write general list maintenance subroutines.
315 - Implement immortal format with EDOs. 
316 - Restrict characters permitted in a Resource name.
317 - Provide definitive identification of  type in backup.
318 - Complete  code in Bacula Resources -- this will permit
319   reading a new config file at any time.
320 - Document new Console
321 - Handle ctl-c in Console
322 - Test restore of Windows backup
323 - Implement LabelTemplate (at least first cut).
324 - Implement script driven addition of File daemon to
325   config files.
326
327 - Bug: anonymous Volumes requires mount in some cases.
328 - see setgroup and user for Bacula p4-5 of stunnel.c
329 - Implement new serialize subroutines
330    send(socket, "string", &Vol, "uint32", &i, NULL)
331 - Add save type to Session label.
332 - Correct date on Session label.
333 - On I/O error, write EOF, then try to write again.
334 - Audit all UA commands to ensure that we always prompt where
335   possible.
336 - If ./btape is called without /dev, assume argument is
337   a Storage resource name.
338 - Put memory utilization in Status output of each daemon
339   if full status requested or if some level of debug on.
340 - Make database type selectable by .conf files i.e. at runtime
341 - gethostbyname failure in bnet_connect() continues
342   generating errors -- should stop.
343 - Don't create a volume that is already written. I.e. create only once.
344 - If error at end of tape, implement some way to kill waiting processes.
345 - Add HOST to Volume label.
346 - Set flag for uname -a.  Add to Volume label.
347 - Implement throttled work queue.
348 - Write bscan program that will syncronize the DB Media record with
349   the contents of the Volume -- for use after a crash.
350 - Check for EOT at ENOSPC or EIO or ENXIO (unix Pc)
351 - Allow multiple Storage specifications (or multiple names on
352   a single Storage specification) in the Job record. Thus a job 
353   can be backed up to a number of storage devices.
354 - Implement full MediaLabel code.
355 - Implement dump label to UA
356 - Copy volume using single drive.
357 - Copy volume with multiple driven (same or different block size).     
358 - Add block size (min, max) to Vol label.
359 - Concept of VolumeSet during restore which is a list
360   of Volume names needed.
361 - Restore files modified after date
362 - Restore file modified before date
363 - Emergency restore info:
364   - Backup Bacula
365   - Backup working directory
366   - Backup Catalog
367 - Restore options (do not overwrite)
368 - Restore -- do nothing but show what would happen
369 - SET LD_RUN_PATH=$HOME/mysql/lib/mysql
370 - Put Job statistics in End Session Label (files saved,
371   total bytes, start time, ...).     
372 - Put FileSet name in the SOS label.
373 - Implement Restore FileSet=
374 - Write a scanner for the UA (keyword, scan-routine, result, prompt).
375 - Create a protocol.h and protocol.c where all protocol messages
376   are concentrated.
377 - If SD cannot open a drive, make it periodically retry.
378 - Put Bacula version somewhere in Job stream, probably Start Session
379   Labels.
380 - Remove duplicate fields from jcr (e.g. jcr.level and
381   jcr.jr.Level, ...).
382 - Timout a job or terminate if link goes down, or reopen link and query.
383 - Define how we handle times to avoid problem with Unix dates (2049 ?).
384 - Fill all fields in Vol/Job Header -- ensure that everything
385   needed is written to tape. Think about restore to Catalog
386   from tape.  Client record needs improving.
387 - Find general solution for sscanf size problems (as well
388   as sprintf. Do at run time?
389
390 - Concept of precious tapes (cannot be reused).
391 - Allow FD to run from inetd ???
392 - Preprocessing command per file.
393 - Postprocessing command per file (when restoring).
394
395 - Restore should get Device and Pool information from
396   job record rather than from config.
397 - Autolabel should be specified by DR instead of SD.
398 - Ability to recreate the catalog from a tape.
399 - Find out how to get the system tape block limits, e.g.:
400   Apr 22 21:22:10 polymatou kernel: st1: Block limits 1 - 245760 bytes.  
401   Apr 22 21:22:10 polymatou kernel: st0: Block limits 2 - 16777214 bytes.
402 - Storage daemon    
403   - Add media capacity
404   - AutoScan (check checksum of tape)
405   - Format command = "format /dev/nst0"
406   - MaxRewindTime
407   - MinRewindTime
408   - MaxBufferSize
409   - Seek resolution (usually corresponds to buffer size)
410   - EODErrorCode=ENOSPC or code
411   - Partial Read error code
412   - Partial write error code
413   - Nonformatted read error
414   - Nonformatted write error
415   - WriteProtected error
416   - IOTimeout
417   - OpenRetries
418   - OpenTimeout
419   - IgnoreCloseErrors=yes
420   - Tape=yes
421   - NoRewind=yes
422 - Pool
423   - Maxwrites
424   - Recycle period
425 - Job
426   - MaxWarnings
427   - MaxErrors (job?)
428 =====
429 - Eliminate duplicate File records to shrink database.
430 - FD sends unsaved file list to Director at end of job. 
431 - Write a Storage daemon that uses pipes and
432   standard Unix programs to write to the tape.
433   See afbackup.
434 - Need something that monitors the JCR queue and
435   times out jobs by asking the deamons where they are.
436 - Add daemon JCR JobId=0 to have a daemon context
437 - Pool resource
438   - Auto label
439   - Auto media verify
440   - Client (list of clients to force client)
441   - Devices (list of devices to force device)
442   - enable/disable
443   - Groups
444   - Levels
445   - Type: Backup, ...
446   - Recycle from other pools: Yes, No
447   - Recycle to other pools: Yes, no
448   - FileSets
449   - MaxBytes?
450   - Optional MediaType to force media?
451   - Maintain Catalog
452   - Label Template
453   - Retention Period
454   ============
455   - Name
456   - NumVols
457   - NaxVols
458   - CurrentVol
459
460 =====
461   if(connect(sockfd, (struct sockaddr * ) (& addr), sizeof(addr)) .lt. 0){
462     close(sockfd);
463     return(-6);
464   }
465
466   linger.l_onoff = 1;
467   linger.l_linger = 60;
468   i = setsockopt(sockfd, SOL_SOCKET, SO_LINGER, (char *) &linger,
469                                                 sizeof (linger));
470
471   fl = fcntl(sockfd, F_GETFL);
472   fcntl(sockfd, F_SETFL, fl & (~ O_NONBLOCK) & (~ O_NDELAY));
473 ====
474 - Enhance Jmsg code to permit buffering and saving to disk.
475 - device driver = "xxxx" for drives.
476 - restart: paranoid: read label fsf to
477   eom read append block, and go
478   super-paranoid: read label, read all files
479   in between, read append block, and go
480   verify: backspace, read append block, and go
481   permissive: same as above but frees drive
482   if tape is not valid.
483 - Verify from Volume
484 - Ensure that /dev/null works
485 - File daemon should build list of files skipped, and then
486   at end of save retry and report any errors.
487 - Need report class for messages. Perhaps
488   report resource where report=group of messages
489 - Verify from Tape
490 - enhance scan_attrib and rename scan_jobtype, and
491   fill in code for "since" option 
492 - To buffer messages, we need associated jobid and Director name.
493 - Need to save contents of FileSet to tape?
494 - Director needs a time after which the report status is sent
495   anyway -- or better yet, a retry time for the job.
496   Don't reschedule a job if previous incarnation is still running.
497 - Figure out how to save the catalog (possibly a special FileSet).
498 - Figure out how to restore the catalog.
499 - Figure out how to put a Volume into the catalog (from the tape)
500 - Figure out how to do a restore from a Volume
501 - Some way to automatically backup everything is needed????
502 - Need a structure for pending actions:
503   - buffered messages
504   - termination status (part of buffered msgs?)
505 - Concept of grouping Storage devices and job can use
506   any of a number of devices
507 - Drive management
508   Read, Write, Clean, Delete
509 - Login to Bacula; Bacula users with different permissions:
510    owner, group, user
511 - Tape recycle destination
512 - Job Schedule Status
513   - Automatic
514   - Manual
515   - Running
516 - File daemon should pass Director the operating system info
517   to be stored in the Client Record (or verified that it has
518   not changed).
519 - Store info on each file system type (probably in the job header on tape.
520   This could be the output of df; or perhaps some sort of /etc/mtab record.
521
522 Longer term to do:
523 - Use media 1 time (so that we can do 6 days of incremental
524   backups before switching to another tape) (already)
525   specify # times (jobs)
526   specify bytes (already)
527   specify time (seconds, hours, days)
528 - Implement FSM (File System Modules).
529 - Identify unchanged or "system" files and save them to a
530   special tape thus removing them from the standard 
531   backup FileSet -- BASE backup.
532 - Turn virutally all sprintfs into snprintfs.
533 - Heartbeat between daemons.
534 - Audit M_ error codes to ensure they are correct and consistent.
535 - Add variable break characters to lex analyzer.
536   Either a bit mask or a string of chars so that
537   the caller can change the break characters.
538 - Make a single T_BREAK to replace T_COMMA, etc.
539 - Ensure that File daemon and Storage daemon can
540   continue a save if the Director goes down (this
541   is NOT currently the case). Must detect socket error,
542   buffer messages for later. 
543
544
545 Done: (see kernsdone for more)
546 --the console script is broken as installed and has to be hand-massaged with
547   paths, config files etc.
548 - Termination status in FD for Verify = C -- incorrect.
549 - Implement alter_sqlite_tables
550 - Fix scheduler -- see "Hourly cycle". It doesn't do both each
551   hour, rather it alternates between 0:05 and 0:35.
552 - Create Counter DB records.
553 - Fix db_get_job_volume_names() to return array of strings (now works
554   with pool memory.
555 - Eliminate MySQL shared libraries from smtp and daemons not using MySQL.
556 - Compare tape File attributes to Catalog.
557   (File attributes are size, dates, MD5, but not
558    data).
559 - Report bad status from smtp or mail program.
560 - Ensure that Start/End File/Block are correct.
561 - If MySQL database is not running, job terminates with
562   wierd type and wierd error code.
563 - Probably create a jcr with JobId=0 as a master
564   catchall if jcr not found or if operation involves
565   global operation.
566 - The daemons should know when one is already
567   running and refuse to run a second copy.
568 - Figure out how to do a "full" restore from catalog
569 - Make SD send attribute stream to DR but first
570   buffering to file, then sending only when the
571   files are written to tape.
572 - Restore file xx or files xx, yy to their most recent values.
573 - Get correct block/file information in Catalog, pay attention to change of media.
574 - Write better dump of Messages resource.
575 - Authentication between SD and FD
576 - In restore job, print some summary information at end, such
577   as rate, ... job status, ...
578 - Problem with len at 362 in tree.c
579 - Report volume write rate.
580 - Pass "Catalog Files = no" to storage daemon to eliminate network traffic.
581 - When we are at EOM, we must ask each job to write JobMedia
582   record (update_volume_info).