source: MondoRescue/branches/2.2.5/mondo/src/common/libmondo-filelist.c@ 1855

Last change on this file since 1855 was 1855, checked in by Bruno Cornec, 16 years ago

try to fix a recently introduced core dumped

  • Property svn:keywords set to Id
File size: 53.1 KB
RevLine 
[1]1/* libmondo-filelist.c
[128]2 $Id: libmondo-filelist.c 1855 2008-01-11 10:22:18Z bruno $
[1]3
4- for subroutines which manipulate the filelist
5
6
701/11/2005
8- change time_of_last_full_backup = to st_mtime to allow manipulation of
9- /var/cache/mondo-archive/difflevel.0
10- Conor Daly <conor.daly@met.ie>
11
1210/01
13- don't try to sort non-existent file; return 0 instead
14
1509/14
16- dropped 'sort -o' (busybox doesn't support); use 'sort > ' instead
17
1808/02
19- add \ in front of [, ], ? or * when generating filelist subset
20
2107/27
22- sort filelists after creating them
23
2407/14
25- disabled ACL, xattr stuff; moved it to libmondo-archive.c
26- max sane size for a file is now 32MB
27
2807/10
29- added ACL and xattr support for afio users
30
3107/05
32- exclude /dev/shm from backup (Roberto Alsina)
33
3406/09
35- exclude /media/floppy or SuSE 9.1 freezes :(
36
3701/18/2004
38- exclude /sys as well as /proc
39
4010/18/2003
41- load_filelist() --- make sure you add the paths
42 leading to the file, e.g. if you add /usr/lib/thingy.so
43 then add /usr, /usr/lib first
44- rewritten load_filelist(), save_filelist(),
45- add_string_at_node(), find_string_at_node(),
46- save_filelist_entries_in_common()
47
4809/27
49- line 1269 had one too many '%s's
50
5109/26
52- fix newt* to be enclosed in #ifndef _XWIN
53- added superior progress display to mondo_makefilelist()
54
5509/18
56- call locate w/ 2> /dev/null at end of str
57
5809/16
59- replaced mondo-makefilelist with C subroutine
60
6106/06
62- fixed silly bug in load_filelist() which stopped
63 funny German filenames from being handled properly
64
6505/19
66- misc clean-up (Steve Hindle)
67
6805/04
69- added Herman Kuster's multi-level bkp patch
70
7104/26
72- maximum max_set_size_for_a_file = maxsetsizeK*2
73- maximum is also 32MB
74
7504/24
76- added lots of assert()'s and log_OS_error()'s
77
7804/22
79- added lots of asserts() and log_OS_errors()'s
80
8104/07
82- cleaned up code a bit
83
8404/04
85- max_sane_size_for_a_file = maxsetsizeK*2 (was *8)
86
8701/02/2003
88- tell mondo-makefilelist that it's a custom catalog (if it is)
89
9010/01 - 10/31/2002
91- don't make large .bz2 or .tbz files into biggiefiles
92- max_sane_size_for_a_file = maxsetsizeK*8, or 64MB
93 ...whichever is smaller
94
9508/01 - 08/31
96- if last filelist is <=2 bytes long then delete it
97- max_sane_size_for_a_file = maxsetsizeK
98 (was SLICESIZE*4 or something)
99- cleaned up some log_it() calls
100
10107/26
102- started
103*/
104
105/**
106 * @file
107 * Functions which create, chop, and edit the filelist.
108 */
109
110#include "my-stuff.h"
111#include "mondostructures.h"
[541]112#include "lib-common-externs.h"
[1]113#include "libmondo-filelist.h"
114#include "libmondo-string-EXT.h"
115#include "libmondo-files-EXT.h"
116#include "libmondo-fork-EXT.h"
[541]117#include "libmondo-gui-EXT.h"
[1]118#include "libmondo-tools-EXT.h"
[831]119#include "mr_string.h"
[1]120
121#include <time.h>
122#include <stdio.h>
123#include <sys/types.h>
124#include <sys/stat.h>
125#include <dirent.h>
126#include <errno.h>
127#include <stdio.h>
128
129
130/**
131 * The maximum depth of directories to put in the skeleton filelist.
132 * This is a balance between performance and a good progress indicator.
133 */
134#define MAX_SKEL_DEPTH 3
135
136
[128]137extern ssize_t getline(char **lineptr, size_t * n, FILE * stream);
[1316]138extern char *MONDO_LOGFILE;
[1]139
[1645]140/* Reference to global bkpinfo */
141extern struct s_bkpinfo *bkpinfo;
[1]142
[1645]143
[128]144int mondo_makefilelist(char *logfile, char *tmpdir, char *scratchdir,
145 char *include_paths, char *excp, int differential,
146 char *userdef_filelist);
[1]147
148
149/*@unused@*/
[128]150//static char cvsid[] = "$Id: libmondo-filelist.c 1855 2008-01-11 10:22:18Z bruno $";
[1]151
152/**
153 * Number of lines in the filelist last loaded.
154 * @warning This implies that two filesets cannot be loaded at once.
155 * @ingroup globalGroup
156 */
157long g_original_noof_lines_in_filelist = 0;
158
159/**
160 * Number of filesets in the current backup.
161 * @ingroup globalGroup
162 */
[128]163long g_noof_sets = 0;
[1]164
165extern bool g_text_mode;
166extern newtComponent g_progressForm;
167extern int g_currentY;
168extern int g_noof_rows;
169
[944]170extern char *g_getfacl;
171extern char *g_getfattr;
[1]172
173
174
175/**
176 * @addtogroup filelistGroup
177 * @{
178 */
179/**
180 * Call chop_filelist() to chop the filelist into sets.
181 * @param bkpinfo The backup information structure. Fields used:
182 * - @c bkpinfo->image_devs
183 * - @c bkpinfo->optimal_set_size
184 * - @c bkpinfo->scratchdir
185 * - @c bkpinfo->tmpdir
186 * @see chop_filelist
187 */
[1645]188int call_filelist_chopper()
[1]189{
[128]190 /*@ buffers *********************** */
191 char *dev;
192 char *filelist;
193 char *tempfile;
194 char *cksumlist;
195 char *tmp;
196 long noof_sets;
[1]197
[128]198 /*@ pointers ********************** */
199 char *ptr;
200 FILE *fout;
[1]201
[128]202 /*@ int *************************** */
203 int i, retval = 0;
[1]204
[128]205 malloc_string(dev);
206 malloc_string(filelist);
207 malloc_string(tempfile);
208 malloc_string(cksumlist);
209 malloc_string(tmp);
[541]210 mvaddstr_and_log_it(g_currentY, 0, "Dividing filelist into sets");
[1]211
[541]212 log_to_screen("Dividing filelist into sets. Please wait.");
[128]213 i = 0;
214 sprintf(filelist, "%s/archives/filelist.full", bkpinfo->scratchdir);
215 sprintf(cksumlist, "%s/cklist.full", bkpinfo->tmpdir);
216 if (!does_file_exist(filelist)) {
217 log_it("filelist %s not found", filelist);
218 fatal_error("call_filelist_chopper() -- filelist not found!");
219 }
[1]220
[128]221 noof_sets =
222 chop_filelist(filelist, bkpinfo->tmpdir,
223 bkpinfo->optimal_set_size);
[1645]224 estimate_noof_media_required(noof_sets); // for cosmetic purposes
[1]225
[128]226 sprintf(tempfile, "%s/biggielist.txt", bkpinfo->tmpdir);
227 if (!(fout = fopen(tempfile, "a"))) {
228 log_OS_error("Cannot append to biggielist");
229 retval++;
230 goto end_of_func;
231 }
232 log_it(bkpinfo->image_devs);
[1]233
[128]234 ptr = bkpinfo->image_devs;
[1]235
[128]236 while (ptr && *ptr) {
237 strcpy(dev, ptr);
238 log_it("Examining imagedev %s", dev);
239 for (i = 0; i < (int) strlen(dev) && dev[i] != ' '; i++);
240 dev[i] = '\0';
241 if (!strlen(dev)) {
242 continue;
243 }
244 fprintf(fout, "%s\n", dev);
245 log_it("Adding '%s' to biggielist", dev);
246 if ((ptr = strchr(ptr, ' '))) {
247 ptr++;
248 }
[1]249 }
[128]250 paranoid_fclose(fout);
251 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
[1]252
[128]253 end_of_func:
254 paranoid_free(filelist);
255 paranoid_free(tempfile);
256 paranoid_free(cksumlist);
257 paranoid_free(dev);
258 paranoid_free(tmp);
259 return (retval);
[1]260}
261
262
263
[128]264int sort_file(char *orig_fname)
[1]265{
[128]266 char *tmp_fname;
267 char *command;
268 int retval = 0;
[1]269
[1475]270 log_msg(5, "Sorting file %s", orig_fname);
[128]271 malloc_string(tmp_fname);
272 malloc_string(command);
[1644]273 sprintf(tmp_fname, "%s/sortfile", bkpinfo->tmpdir);
[1]274
[128]275 if (!does_file_exist(orig_fname)) {
[1475]276 log_msg(2, "file %s empty", orig_fname);
[128]277 return (0);
278 } // no sense in trying to sort an empty file
279
280 sprintf(command, "sort %s > %s 2>> %s", orig_fname, tmp_fname,
281 MONDO_LOGFILE);
282 retval = system(command);
283 if (retval) {
284 log_msg(2, "Failed to sort %s - oh dear", orig_fname);
285 } else {
[1475]286 log_msg(5, "Sorted %s --> %s OK. Copying it back to %s now",
[128]287 orig_fname, tmp_fname, orig_fname);
288 sprintf(command, "mv -f %s %s", tmp_fname, orig_fname);
[1475]289 retval += run_program_and_log_output(command, 5);
[128]290 if (retval) {
291 log_msg(2, "Failed to copy %s back to %s - oh dear", tmp_fname,
292 orig_fname);
293 } else {
[1475]294 log_msg(5, "%s was sorted OK.", orig_fname);
[128]295 }
[1]296 }
[128]297 paranoid_free(tmp_fname);
298 paranoid_free(command);
[1475]299 log_msg(5, "Finished sorting file %s", orig_fname);
[128]300 return (retval);
[1]301}
302
303
304
305/**
306 * Chop the filelist into sets.
307 * Each fileset is a list of files whose total (uncompressed) size is usually
308 * about X KB. Files bigger than 8X KB are placed in a "biggielist"; they will
309 * be sliced and compressed separately from the regular files.
310 *
311 * @param filelist The big filelist (filelist.full) to chop up.
312 * @param outdir The directory to place the files (filelist.N where N is
313 * an integer, biggielist.txt, and LAST-FILELIST-NUMBER) created
314 * @param maxsetsizeK Optimal size of a fileset (X above).
315 * @return number of errors encountered (0 for success).
316 */
[128]317int chop_filelist(char *filelist, char *outdir, long maxsetsizeK)
[1]318{
319/*@ long ****************************************/
[128]320 long lino = 0;
321 long max_sane_size_for_a_file;
322 long curr_set_size;
323 long noof_lines;
324 long siz;
[1]325
[128]326 /*@ int **************************************** */
327 int i;
328 long curr_set_no;
[1]329
[128]330 /*@ buffers ************************************* */
331 char *outfname;
332 char *biggie_fname;
333 char *incoming;
334 char *tmp;
335 char *acl_fname;
336 char *xattr_fname;
[1]337
[128]338 /*@ pointers *********************************** */
339 FILE *fin;
340 FILE *fout;
341 FILE *fbig;
[1]342
[128]343 /*@ structures ********************************* */
344 struct stat buf;
345 int err = 0;
[1]346
[128]347 malloc_string(outfname);
348 malloc_string(biggie_fname);
349 incoming = malloc(MAX_STR_LEN * 2);
350 malloc_string(tmp);
351 malloc_string(acl_fname);
352 malloc_string(xattr_fname);
[1]353
[128]354 assert_string_is_neither_NULL_nor_zerolength(filelist);
355 assert_string_is_neither_NULL_nor_zerolength(outdir);
356 assert(maxsetsizeK > 0);
357
[1236]358 max_sane_size_for_a_file = 64L * 1024L;
[1]359// max_sane_size_for_a_file = maxsetsizeK*2;
360// if (max_sane_size_for_a_file > 32*1024)
361// { max_sane_size_for_a_file = 32*1024; }
[128]362
363 log_it("filelist=%s;", filelist);
364 open_evalcall_form("Dividing filelist into sets");
365 noof_lines = count_lines_in_file(filelist);
366 if (!(fin = fopen(filelist, "r"))) {
367 log_OS_error("Cannot openin filelist");
368 return (0);
[1]369 }
[128]370 curr_set_no = 0;
371 curr_set_size = 0;
372 sprintf(outfname, "%s/filelist.%ld", outdir, curr_set_no);
373 sprintf(biggie_fname, "%s/biggielist.txt", outdir);
374 log_it("outfname=%s; biggie_fname=%s", outfname, biggie_fname);
375 if (!(fbig = fopen(biggie_fname, "w"))) {
376 log_OS_error("Cannot openout biggie_fname");
377 err++;
378 goto end_of_func;
[1]379 }
[128]380 if (!(fout = fopen(outfname, "w"))) {
381 log_OS_error("Cannot openout outfname");
382 err++;
383 goto end_of_func;
[1]384 }
[128]385 (void) fgets(incoming, MAX_STR_LEN * 2 - 1, fin);
386 while (!feof(fin)) {
387 lino++;
388 i = strlen(incoming) - 1;
389 if (i < 0) {
390 i = 0;
391 }
392 if (i > MAX_STR_LEN - 1) {
393 incoming[MAX_STR_LEN - 30] = '\0';
394 log_msg(1, "Warning - truncating file %s's name", incoming);
395 err++;
396 }
397 if (incoming[i] < 32) {
398 incoming[i] = '\0';
399 }
400 if (!strncmp(incoming, "/dev/", 5)) {
401 siz = 1;
402 } else if (lstat(incoming, &buf) != 0) {
403 siz = 0;
404 } else {
405 siz = (long) (buf.st_size >> 10);
406 }
407 if (siz > max_sane_size_for_a_file)
408// && strcmp(incoming+strlen(incoming)-4, ".bz2") && strcmp(incoming+strlen(incoming)-4, ".tbz"))
409 {
410 fprintf(fbig, "%s\n", incoming);
411 } else {
412 curr_set_size += siz;
413 fprintf(fout, "%s\n", incoming);
414 if (curr_set_size > maxsetsizeK) {
415 paranoid_fclose(fout);
416 sort_file(outfname);
417 curr_set_no++;
418 curr_set_size = 0;
419 sprintf(outfname, "%s/filelist.%ld", outdir, curr_set_no);
420 if (!(fout = fopen(outfname, "w"))) {
421 log_OS_error("Unable to openout outfname");
422 err++;
423 goto end_of_func;
424 }
425 sprintf(tmp, "Fileset #%ld chopped ", curr_set_no - 1);
426 update_evalcall_form((int) (lino * 100 / noof_lines));
427 /* if (!g_text_mode) {newtDrawRootText(0,22,tmp);newtRefresh();} else {log_it(tmp);} */
428 }
429 }
430 (void) fgets(incoming, MAX_STR_LEN * 2 - 1, fin);
[1]431 }
[128]432 paranoid_fclose(fin);
433 paranoid_fclose(fout);
434 paranoid_fclose(fbig);
435
436 if (length_of_file(outfname) <= 2) {
437 unlink(outfname);
438 g_noof_sets--;
[1]439 }
[128]440 g_noof_sets = curr_set_no;
441 sort_file(outfname);
442 sort_file(biggie_fname);
443 sprintf(outfname, "%s/LAST-FILELIST-NUMBER", outdir);
444 sprintf(tmp, "%ld", curr_set_no);
445 if (write_one_liner_data_file(outfname, tmp)) {
446 log_OS_error
447 ("Unable to echo write one-liner to LAST-FILELIST-NUMBER");
448 err = 1;
[1]449 }
[128]450 if (curr_set_no == 0) {
451 sprintf(tmp, "Only one fileset. Fine.");
452 } else {
453 sprintf(tmp, "Filelist divided into %ld sets", curr_set_no + 1);
[1]454 }
[128]455 log_msg(1, tmp);
456 close_evalcall_form();
457 /* This is to work around an obscure bug in Newt; open a form, close it,
458 carry on... I don't know why it works but it works. If you don't do this
459 then update_progress_form() won't show the "time taken / time remaining"
460 line. The bug only crops up AFTER the call to chop_filelist(). Weird. */
461#ifndef _XWIN
462 if (!g_text_mode) {
463 open_progress_form("", "", "", "", 100);
464 newtPopHelpLine();
465 newtFormDestroy(g_progressForm);
466 newtPopWindow();
[1]467 }
468#endif
[128]469 end_of_func:
470 paranoid_free(outfname);
471 paranoid_free(biggie_fname);
472 paranoid_free(incoming);
473 paranoid_free(tmp);
474 paranoid_free(acl_fname);
475 paranoid_free(xattr_fname);
476 return (err ? 0 : curr_set_no + 1);
[1]477}
478
479
480
481
482
483/**
484 * Free all the memory used by a filelist structure.
485 * Since this may take a long time for large filelists, a progress bar will be displayed.
486 * @param filelist The filelist to free.
487 */
[128]488void free_filelist(struct s_node *filelist)
[1]489{
[128]490 /*@ int's ******************************************************* */
491 static int depth = 0;
492 int percentage;
[1]493
[128]494 /*@ long's ****************************************************** */
495 static long i = 0;
[1]496
[128]497 /*@ end vars **************************************************** */
[1]498
[128]499 assert(filelist != NULL);
500 if (depth == 0) {
501 open_evalcall_form("Freeing memory");
[541]502 log_to_screen("Freeing memory formerly occupied by filelist");
[128]503 }
504 depth++;
[1]505
[128]506 if (filelist->ch == '\0') {
507 if (!(i++ % 1111)) {
508 percentage =
509 (int) (i * 100 / g_original_noof_lines_in_filelist);
510 update_evalcall_form(percentage);
[1]511
[128]512 }
[1]513 }
514
[128]515 if (filelist->right) {
516 free_filelist(filelist->right);
517 filelist->right = NULL;
518 }
519 if (filelist->down) {
[1]520/* if (!(i++ %39999)) { update_evalcall_form(0); } */
[128]521 free_filelist(filelist->down);
522 filelist->down = NULL;
523 }
524 filelist->ch = '\0';
525 paranoid_free(filelist);
526 depth--;
527 if (depth == 0) {
528 close_evalcall_form();
529 log_it("Finished freeing memory");
530 }
[1]531}
532
533
[128]534int call_exe_and_pipe_output_to_fd(char *syscall, FILE * pout)
[1]535{
[128]536 FILE *pattr;
537 char *tmp;
538 pattr = popen(syscall, "r");
539 if (!pattr) {
540 log_msg(1, "Failed to open fattr() %s", syscall);
541 return (1);
[1]542 }
[128]543 if (feof(pattr)) {
544 log_msg(1, "Failed to call fattr() %s", syscall);
545 paranoid_pclose(pattr);
546 return (2);
[1]547 }
[128]548 malloc_string(tmp);
549 for (fgets(tmp, MAX_STR_LEN, pattr); !feof(pattr);
550 fgets(tmp, MAX_STR_LEN, pattr)) {
551 fputs(tmp, pout);
552 }
553 paranoid_pclose(pattr);
554 paranoid_free(tmp);
555 return (0);
[1]556}
557
558
559
[128]560int gen_aux_list(char *filelist, char *syscall_sprintf,
561 char *auxlist_fname)
[1]562{
[128]563 FILE *fin;
564 FILE *pout;
565 char *pout_command;
566 char *syscall;
567 char *file_to_analyze;
[1015]568 char *strtmp = NULL;
[1552]569 char *tmp = NULL;
[128]570 int i;
571
572 if (!(fin = fopen(filelist, "r"))) {
573 log_msg(1, "Cannot openin filelist %s", filelist);
574 return (1);
575 }
576 malloc_string(pout_command);
577 sprintf(pout_command, "gzip -c1 > %s", auxlist_fname);
578 if (!(pout = popen(pout_command, "w"))) {
579 log_msg(1, "Cannot openout auxlist_fname %s", auxlist_fname);
580 fclose(fin);
581 paranoid_free(pout_command);
582 return (4);
583 }
584 malloc_string(file_to_analyze);
585 for (fgets(file_to_analyze, MAX_STR_LEN, fin); !feof(fin);
586 fgets(file_to_analyze, MAX_STR_LEN, fin)) {
587 i = strlen(file_to_analyze);
588 if (i > 0 && file_to_analyze[i - 1] < 32) {
589 file_to_analyze[i - 1] = '\0';
590 }
591 log_msg(8, "Analyzing %s", file_to_analyze);
[1552]592 tmp = mr_stresc(file_to_analyze, "`$\\\"", '\\');
593 asprintf(&strtmp, syscall_sprintf, tmp);
594 paranoid_free(tmp);
[1015]595 asprintf(&syscall, "%s 2>> /dev/null", strtmp); // " MONDO_LOGFILE);
596 paranoid_free(strtmp);
[128]597 call_exe_and_pipe_output_to_fd(syscall, pout);
[1015]598 paranoid_free(syscall);
[128]599 }
600 paranoid_fclose(fin);
601 paranoid_pclose(pout);
602 paranoid_free(file_to_analyze);
603 paranoid_free(pout_command);
604 return (0);
[1]605}
606
607
[128]608int get_acl_list(char *filelist, char *facl_fname)
[1]609{
[128]610 char *command;
611 int retval = 0;
612
[944]613 if (g_getfacl != NULL) {
[943]614 malloc_string(command);
615 sprintf(command, "touch %s", facl_fname);
616 run_program_and_log_output(command, 8);
[1]617// sort_file(filelist); // FIXME - filelist chopper sorts, so this isn't necessary
[128]618 sprintf(command,
[275]619 "getfacl --all-effective -P %s 2>> %s | gzip -c1 > %s 2>> %s",
[128]620 filelist, MONDO_LOGFILE, facl_fname, MONDO_LOGFILE);
621 iamhere(command);
622 retval = system(command);
[943]623 paranoid_free(command);
[128]624 }
625 return (retval);
[1]626}
627
628
[128]629int get_fattr_list(char *filelist, char *fattr_fname)
[1]630{
[128]631 char *command;
632 int retval = 0;
633
[944]634 if (g_getfattr != NULL) {
[942]635 malloc_string(command);
636 sprintf(command, "touch %s", fattr_fname);
637 run_program_and_log_output(command, 8);
638 paranoid_free(command);
[1]639// sort_file(filelist); // FIXME - filelist chopper sorts, so this isn't necessary
[128]640 retval =
641 gen_aux_list(filelist, "getfattr --en=hex -P -d \"%s\"",
642 fattr_fname);
643 }
644 return (retval);
[1]645}
646
647
[128]648int set_EXAT_list(char *orig_msklist, char *original_exat_fname,
649 char *executable)
[1]650{
[128]651 const int my_depth = 8;
652 char *command, *syscall_pin, *syscall_pout, *incoming;
653 char *current_subset_file, *current_master_file, *masklist;
654 int retval = 0;
655 int i;
656 char *p, *q;
657 FILE *pin, *pout, *faclin;
[1]658
[128]659 malloc_string(command);
660 log_msg(1, "set_EXAT_list(%s, %s, %s)", orig_msklist,
661 original_exat_fname, executable);
662 if (!orig_msklist || !orig_msklist[0]
663 || !does_file_exist(orig_msklist)) {
664 log_msg(1,
665 "No masklist provided. I shall therefore set ALL attributes.");
[273]666 sprintf(command, "gzip -dc %s | %s --restore - 2>> %s",
[128]667 original_exat_fname, executable, MONDO_LOGFILE);
668 log_msg(1, "command = %s", command);
669 retval = system(command);
670 paranoid_free(command);
671 log_msg(1, "Returning w/ retval=%d", retval);
672 return (retval);
673 }
674 if (length_of_file(original_exat_fname) <= 0) {
675 log_msg(1,
676 "original_exat_fname %s is empty or missing, so no need to set EXAT list",
677 original_exat_fname);
678 paranoid_free(command);
679 return (0);
680 }
681 malloc_string(incoming);
682 malloc_string(masklist);
683 malloc_string(current_subset_file);
684 malloc_string(current_master_file);
685 malloc_string(syscall_pin);
686 malloc_string(syscall_pout);
[1644]687 sprintf(masklist, "%s/masklist", bkpinfo->tmpdir);
[128]688 sprintf(command, "cp -f %s %s", orig_msklist, masklist);
689 run_program_and_log_output(command, 1);
690 sort_file(masklist);
691 current_subset_file[0] = current_master_file[0] = '\0';
[273]692 sprintf(syscall_pin, "gzip -dc %s", original_exat_fname);
[128]693 sprintf(syscall_pout, "%s --restore - 2>> %s", executable,
694 MONDO_LOGFILE);
[1]695
[128]696 log_msg(1, "syscall_pin = %s", syscall_pin);
697 log_msg(1, "syscall_pout = %s", syscall_pout);
698 pout = popen(syscall_pout, "w");
699 if (!pout) {
700 iamhere("Unable to openout to syscall_pout");
701 return (1);
702 }
703 pin = popen(syscall_pin, "r");
704 if (!pin) {
705 pclose(pout);
706 iamhere("Unable to openin from syscall");
707 return (1);
708 }
709 faclin = fopen(masklist, "r");
710 if (!faclin) {
711 pclose(pin);
712 pclose(pout);
713 iamhere("Unable to openin masklist");
714 return (1);
715 }
716// printf("Hi there. Starting the loop\n");
[1]717
[128]718 fgets(current_subset_file, MAX_STR_LEN, faclin);
719 fgets(incoming, MAX_STR_LEN, pin);
720 while (!feof(pin) && !feof(faclin)) {
[1]721// printf("incoming = %s", incoming);
722
[128]723 strcpy(current_master_file, incoming + 8);
[1]724
[128]725 p = current_subset_file;
726 if (*p == '/') {
727 p++;
728 }
729 i = strlen(p);
730 if (i > 0 && p[i - 1] < 32) {
731 p[i - 1] = '\0';
732 }
733
734
735 q = current_master_file;
736 if (*q == '/') {
737 q++;
738 }
739 i = strlen(q);
740 if (i > 0 && q[i - 1] < 32) {
741 q[i - 1] = '\0';
742 }
743
744 i = strcmp(p, q);
745 log_msg(my_depth, "'%s' v '%s' --> %d\n", p, q, i);
746
[1]747// printf("%s v %s --> %d\n", p, q, i);
[128]748
749 if (i < 0) { // read another subset file in.
750 log_msg(my_depth, "Reading next subset line in\n\n");
751 fgets(current_subset_file, MAX_STR_LEN, faclin);
752 continue;
753 }
754
755 if (!i) {
756 fputs(incoming, pout);
757 }
758 fgets(incoming, MAX_STR_LEN, pin);
759 if (!i) {
760 log_msg(my_depth, "Copying master %s", q);
761 }
762// if (!i) { printf("Match --- %s\n", q); }
763
764 while (!feof(pin) && strncmp(incoming, "# file: ", 8)) {
765 if (!i) {
766
767// printf("%s", incoming);
768
769 fputs(incoming, pout);
770 }
771 fgets(incoming, MAX_STR_LEN, pin);
772 }
773 if (!i) {
774 fgets(current_subset_file, MAX_STR_LEN, faclin);
775 }
[1]776 }
[128]777 while (!feof(pin)) {
778 fgets(incoming, MAX_STR_LEN, pin);
779 }
780 fclose(faclin);
781 pclose(pin);
782 pclose(pout);
[1]783
784// printf("OK, loop is done\n");
785
[128]786 unlink(masklist);
787 paranoid_free(current_subset_file);
788 paranoid_free(current_master_file);
789 paranoid_free(syscall_pout);
790 paranoid_free(syscall_pin);
791 paranoid_free(masklist);
792 paranoid_free(incoming);
793 paranoid_free(command);
794 return (retval);
795}
[1]796
797
[128]798int set_fattr_list(char *masklist, char *fattr_fname)
[1]799{
[912]800 if (find_home_of_exe("setfattr")) {
801 return (set_EXAT_list(masklist, fattr_fname, "setfattr"));
802 } else {
803 log_msg(1, "ERROR: set_EXAT_list: setfattr doesn't exist");
804 return(0);
805 }
[1]806}
807
808
809
[128]810int set_acl_list(char *masklist, char *acl_fname)
[1]811{
[912]812 if (find_home_of_exe("setfacl")) {
813 return (set_EXAT_list(masklist, acl_fname, "setfacl"));
814 } else {
815 log_msg(1, "ERROR: set_EXAT_list: setfacl doesn't exist");
816 return(0);
817 }
[1]818}
819
820
821/**
822 * Get the number of the last fileset in the backup.
823 * @param bkpinfo The backup information structure. Only the @c bkpinfo->tmpdir field is used.
824 * @return The last filelist number.
825 * @note This function should only be called at restore-time.
826 */
[1645]827int get_last_filelist_number()
[1]828{
[128]829 /*@ buffers ***************************************************** */
830 char val_sz[MAX_STR_LEN];
831 char cfg_fname[MAX_STR_LEN];
[1]832/* char tmp[MAX_STR_LEN]; remove stan benoit apr 2002 */
833
[128]834 /*@ long ******************************************************** */
835 int val_i;
[1]836
[128]837 /*@ end vars **************************************************** */
[1]838
[128]839 assert(bkpinfo != NULL);
[1]840
[1552]841 strcpy(val_sz,"");
[128]842 sprintf(cfg_fname, "%s/mondo-restore.cfg", bkpinfo->tmpdir);
843 read_cfg_var(cfg_fname, "last-filelist-number", val_sz);
844 val_i = atoi(val_sz);
845 if (val_i <= 0) {
846 val_i = 500;
847 }
848 return (val_i);
[1]849}
850
851
852/**
853 * Add a string at @p startnode.
854 * @param startnode The node to start at when searching for where to add the string.
855 * @param string_to_add The string to add.
856 * @return 0 for success, 1 for failure.
857 * @bug I don't understand this function. Would someone care to explain it?
858 */
[128]859int add_string_at_node(struct s_node *startnode, char *string_to_add)
[1]860{
861
862
[128]863 /*@ int ******************************************************** */
864 int noof_chars;
865 int i;
866 int res;
[1]867
[128]868 /*@ sturctures ************************************************* */
869 struct s_node *node, *newnode;
[1]870
[128]871 /*@ char ****************************************************** */
872 char char_to_add;
[1]873
[128]874 /*@ bools ****************************************************** */
[1]875
[128]876 const bool sosodef = FALSE;
[1]877
[128]878 static int depth = 0;
879 static char original_string[MAX_STR_LEN];
[1]880
[128]881 assert(startnode != NULL);
882 assert(string_to_add != NULL);
[1]883
[128]884 if (!depth) {
885 strcpy(original_string, string_to_add);
886 }
[1]887
[128]888 noof_chars = strlen(string_to_add) + 1; /* we include the '\0' */
[1]889
890/* walk across tree if necessary */
[128]891 node = startnode;
892 char_to_add = string_to_add[0];
893 if (node->right != NULL && node->ch < char_to_add) {
894 log_msg(7, "depth=%d --- going RIGHT ... %c-->%c", depth,
895 char_to_add, node->ch, (node->right)->ch);
896 return (add_string_at_node(node->right, string_to_add));
897 }
[1]898
899/* walk down tree if appropriate */
[128]900 if (node->down != NULL && node->ch == char_to_add) {
901 log_msg(7, "depth=%d char=%c --- going DOWN", depth, char_to_add);
902 depth++;
903 res = add_string_at_node(node->down, string_to_add + 1);
904 depth--;
905 return (res);
906 }
[1]907
[128]908 if (char_to_add == '\0' && node->ch == '\0') {
909 log_msg(6, "%s already in tree", original_string);
910 return (1);
911 }
[1]912
913/* add here */
[128]914 if (!(newnode = (struct s_node *) malloc(sizeof(struct s_node)))) {
[541]915 log_to_screen("failed to malloc");
[128]916 depth--;
917 return (1);
918 }
919 if (char_to_add < node->ch) // add to the left of node
[1]920 {
[128]921 log_msg(7, "depth=%d char=%c --- adding (left)", depth,
922 char_to_add);
923 memcpy((void *) newnode, (void *) node, sizeof(struct s_node));
924 node->right = newnode;
925 } else if (char_to_add > node->ch) // add to the right of node
926 {
927 log_msg(7, "depth=%d char=%c --- adding (right)", depth,
928 char_to_add);
929 newnode->right = node->right; // newnode is to the RIGHT of node
930 node->right = newnode;
931 node = newnode;
[1]932 }
[128]933 // from now on, we're working on 'node'
934 node->down = NULL;
935 node->ch = char_to_add;
936 node->expanded = node->selected = FALSE;
937 if (char_to_add == '\0') {
938 log_msg(6, "Added %s OK", original_string);
939 return (0);
940 }
941// add the rest
942 log_msg(6, "Adding remaining chars ('%s')", string_to_add + 1);
943 for (i = 1; i < noof_chars; i++) {
944 if (!
945 (node->down =
946 (struct s_node *) malloc(sizeof(struct s_node)))) {
[541]947 log_to_screen("%s - failed to malloc", string_to_add);
[128]948 return (1);
949 }
950 node = node->down;
951 char_to_add = string_to_add[i];
952 log_msg(6, "Adding '%c'", char_to_add);
953 node->ch = char_to_add;
954 node->right = node->down = NULL;
955 node->expanded = node->selected = FALSE;
956 if (!node->ch) {
957 node->selected = sosodef;
958 }
959 }
960 log_msg(6, "Finally - added %s OK", original_string);
961 return (0);
[1]962}
963
964
965
966
967/**
968 * Load a filelist into a <tt>struct s_node</tt>.
969 * When you are done with the filelist, call free_filelist().
970 * @param filelist_fname The file to load the filelist from.
971 * @return A filelist tree structure.
972 */
[128]973struct s_node *load_filelist(char *filelist_fname)
[1]974{
975
[128]976 /*@ structures ************************************************* */
977 struct s_node *filelist;
[1]978
[128]979 /*@ pointers *************************************************** */
980 FILE *pin;
[1]981
[128]982 /*@ buffers **************************************************** */
983 char command_to_open_fname[MAX_STR_LEN];
984 char fname[MAX_STR_LEN];
985 char tmp[MAX_STR_LEN];
986 int pos_in_fname;
987 /*@ int ******************************************************** */
988 int percentage;
[1]989
[128]990 /*@ long ******************************************************* */
991 long lines_in_filelist;
992 long lino = 0;
993 /*@ end vars *************************************************** */
[1]994
[128]995 assert_string_is_neither_NULL_nor_zerolength(filelist_fname);
[1]996
[128]997 if (!does_file_exist(filelist_fname)) {
998 fatal_error("filelist does not exist -- cannot load it");
[1]999 }
[541]1000 log_to_screen("Loading filelist");
[128]1001 sprintf(command_to_open_fname, "gzip -dc %s", filelist_fname);
1002 sprintf(tmp, "zcat %s | wc -l", filelist_fname);
1003 log_msg(6, "tmp = %s", tmp);
1004 lines_in_filelist =
1005 atol(call_program_and_get_last_line_of_output(tmp));
1006 if (lines_in_filelist < 3) {
[541]1007 log_to_screen("Warning - surprisingly short filelist.");
[1]1008 }
[128]1009 g_original_noof_lines_in_filelist = lines_in_filelist;
1010 if (!(filelist = (struct s_node *) malloc(sizeof(struct s_node)))) {
1011 return (NULL);
[1]1012 }
[128]1013 filelist->ch = '/';
1014 filelist->right = NULL;
1015 filelist->down = malloc(sizeof(struct s_node));
1016 filelist->expanded = filelist->selected = FALSE;
1017 (filelist->down)->ch = '\0';
1018 (filelist->down)->right = (filelist->down)->down = FALSE;
1019 (filelist->down)->expanded = (filelist->down)->selected = FALSE;
1020 if (!(pin = popen(command_to_open_fname, "r"))) {
1021 log_OS_error("Unable to openin filelist_fname");
1022 return (NULL);
1023 }
[541]1024 open_evalcall_form("Loading filelist from disk");
[128]1025 for (fgets(fname, MAX_STR_LEN, pin); !feof(pin);
1026 fgets(fname, MAX_STR_LEN, pin)) {
1027 if ((fname[strlen(fname) - 1] == 13
1028 || fname[strlen(fname) - 1] == 10) && strlen(fname) > 0) {
1029 fname[strlen(fname) - 1] = '\0';
1030 }
1031// strip_spaces (fname);
1032 if (!strlen(fname)) {
1033 continue;
1034 }
1035 for (pos_in_fname = 0; fname[pos_in_fname] != '\0'; pos_in_fname++) {
1036 if (fname[pos_in_fname] != '/') {
1037 continue;
1038 }
1039 strcpy(tmp, fname);
1040 tmp[pos_in_fname] = '\0';
1041 if (strlen(tmp)) {
1042 add_string_at_node(filelist, tmp);
1043 }
1044 }
1045 add_string_at_node(filelist, fname);
1046 if (!(++lino % 1111)) {
1047 percentage = (int) (lino * 100 / lines_in_filelist);
1048 update_evalcall_form(percentage);
1049 }
1050 }
1051 paranoid_pclose(pin);
1052 close_evalcall_form();
1053 log_it("Finished loading filelist");
1054 return (filelist);
[1]1055}
1056
1057
1058/**
1059 * Log a list of files in @p node.
1060 * @param node The toplevel node to use.
1061 */
[128]1062void show_filelist(struct s_node *node)
[1]1063{
[128]1064 static int depth = 0;
1065 static char current_string[200];
[1]1066
[128]1067 if (depth == 0) {
1068 log_msg(0, "----------------show filelist--------------");
1069 }
1070 current_string[depth] = node->ch;
[1]1071
[128]1072 log_msg(3, "depth=%d", depth);
1073 if (node->down) {
1074 log_msg(3, "moving down");
1075 depth++;
1076 show_filelist(node->down);
1077 depth--;
1078 }
[1]1079
[128]1080 if (!node->ch) {
1081 log_msg(0, "%s\n", current_string);
1082 }
[1]1083
[128]1084 if (node->right) {
1085 log_msg(3, "moving right");
1086 show_filelist(node->right);
1087 }
1088 if (depth == 0) {
1089 log_msg(0, "----------------show filelist--------------");
1090 }
1091 return;
[1]1092}
1093
1094
1095
1096
1097/**
1098 * Reset the filelist to the state it was when it was loaded. This does not
1099 * touch the file on disk.
1100 * @param filelist The filelist tree structure.
1101 */
[128]1102void reload_filelist(struct s_node *filelist)
[1]1103{
[128]1104 assert(filelist != NULL);
1105 toggle_node_selection(filelist, FALSE);
1106 toggle_path_expandability(filelist, "/", FALSE);
1107 toggle_all_root_dirs_on(filelist);
[1]1108}
1109
1110
1111
1112/**
1113 * Save a filelist tree structure to disk.
1114 * @param filelist The filelist tree structure to save.
1115 * @param outfname Where to save it.
1116 */
[128]1117void save_filelist(struct s_node *filelist, char *outfname)
[1]1118{
[128]1119 /*@ int ********************************************************* */
1120 static int percentage;
1121 static int depth = 0;
[1]1122
[128]1123 /*@ buffers ***************************************************** */
1124 static char str[MAX_STR_LEN];
[1]1125
[128]1126 /*@ structures ************************************************** */
1127 struct s_node *node;
[1]1128
[128]1129 /*@ pointers **************************************************** */
1130 static FILE *fout = NULL;
[1]1131
[128]1132 /*@ long ******************************************************** */
1133 static long lines_in_filelist = 0;
1134 static long lino = 0;
[1]1135
[128]1136 /*@ end vars *************************************************** */
[1]1137
[128]1138 assert(filelist != NULL);
1139 assert(outfname != NULL); // will be zerolength if save_filelist() is called by itself
1140 if (depth == 0) {
[541]1141 log_to_screen("Saving filelist");
[128]1142 if (!(fout = fopen(outfname, "w"))) {
1143 fatal_error("Cannot openout/save filelist");
1144 }
1145 lines_in_filelist = g_original_noof_lines_in_filelist; /* set by load_filelist() */
[541]1146 open_evalcall_form("Saving selection to disk");
[1]1147 }
[128]1148 for (node = filelist; node != NULL; node = node->right) {
1149 str[depth] = node->ch;
1150 log_msg(5, "depth=%d ch=%c", depth, node->ch);
1151 if (!node->ch) {
1152// if (node->selected)
1153// {
1154 fprintf(fout, "%s\n", str);
1155// }
1156 if (!(++lino % 1111)) {
1157 percentage = (int) (lino * 100 / lines_in_filelist);
1158 update_evalcall_form(percentage);
1159 }
1160 }
1161 if (node->down) {
1162 depth++;
1163 save_filelist(node->down, "");
1164 depth--;
1165 }
[1]1166 }
[128]1167 if (depth == 0) {
1168 paranoid_fclose(fout);
1169 close_evalcall_form();
1170 log_it("Finished saving filelist");
1171 }
[1]1172}
1173
1174
1175
1176/**
1177 * Toggle all root dirs on.
1178 * @param filelist The filelist tree structure to operate on.
1179 * @bug I don't understand this function. Would someone care to explain it?
1180 */
[128]1181void toggle_all_root_dirs_on(struct s_node *filelist)
[1]1182{
[128]1183 /*@ structures ************************************************** */
1184 struct s_node *node;
[1]1185
[128]1186 /*@ int ********************************************************* */
1187 static int depth = 0;
1188 static int root_dirs_expanded;
[1]1189
[128]1190 /*@ buffers ***************************************************** */
1191 static char filename[MAX_STR_LEN];
[1]1192
[128]1193 /*@ end vars *************************************************** */
[1]1194
[128]1195 assert(filelist != NULL);
1196 if (depth == 0) {
1197 log_it("Toggling all root dirs ON");
1198 root_dirs_expanded = 0;
[1]1199 }
[128]1200 for (node = filelist; node != NULL; node = node->right) {
1201 filename[depth] = node->ch;
1202 if (node->ch == '\0' && strlen(filename) > 1
1203 && (!strchr(filename + 1, '/'))) {
1204 node->selected = FALSE;
1205 node->expanded = TRUE;
1206// log_it (filename);
1207 root_dirs_expanded++;
1208 }
1209 if (node->down) {
1210 depth++;
1211 toggle_all_root_dirs_on(node->down);
1212 depth--;
1213 }
[1]1214 }
[128]1215 if (depth == 0) {
1216 log_it("Finished toggling all root dirs ON");
1217 }
[1]1218}
1219
1220
1221/**
1222 * Toggle the expandability of a path.
1223 * @param filelist The filelist tree to operate on.
1224 * @param pathname The path to toggle expandability of.
1225 * @param on_or_off Whether to toggle it on or off.
1226 * @bug I don't understand this function. Would someone care to explain it?
1227 */
1228void
[128]1229toggle_path_expandability(struct s_node *filelist, char *pathname,
1230 bool on_or_off)
[1]1231{
1232
[128]1233 /*@ int ******************************************************** */
1234 static int depth = 0;
1235 static int total_expanded;
1236 static int root_depth;
1237 int j;
1238 /*@ structures ************************************************* */
1239 struct s_node *node;
[1]1240
[128]1241 /*@ buffers **************************************************** */
1242 static char current_filename[MAX_STR_LEN];
[1]1243
1244/* char tmp[MAX_STR_LEN+2]; */
1245
[128]1246 /*@ end vars *************************************************** */
[1]1247
[128]1248 assert(filelist != NULL);
1249 assert_string_is_neither_NULL_nor_zerolength(pathname);
1250 if (depth == 0) {
1251 total_expanded = 0;
[1]1252// log_it ("Toggling path's expandability");
[128]1253 for (root_depth = (int) strlen(pathname);
1254 root_depth > 0 && pathname[root_depth - 1] != '/';
1255 root_depth--);
1256 if (root_depth < 2) {
1257 root_depth = (int) strlen(pathname);
1258 }
[1]1259 }
[128]1260 for (node = filelist; node != NULL; node = node->right) {
1261 current_filename[depth] = node->ch;
1262 if (node->down) {
1263 depth++;
1264 toggle_path_expandability(node->down, pathname, on_or_off);
1265 depth--;
[1]1266 }
[128]1267 if (node->ch == '\0') {
1268 if (!strncmp(pathname, current_filename, strlen(pathname))) {
1269 for (j = root_depth;
1270 current_filename[j] != '/'
1271 && current_filename[j] != '\0'; j++);
1272 if (current_filename[j] != '\0') {
1273 for (j++;
1274 current_filename[j] != '/'
1275 && current_filename[j] != '\0'; j++);
1276 }
1277 if (current_filename[j] == '\0') {
1278 node->expanded =
1279 (!strcmp(pathname, current_filename) ? TRUE :
1280 on_or_off);
1281 }
1282 }
[1]1283 }
[128]1284 if (node->expanded) {
1285 if (total_expanded < ARBITRARY_MAXIMUM - 32
1286 || !strrchr(current_filename + strlen(pathname), '/')) {
1287 total_expanded++;
1288 } else {
1289 node->expanded = FALSE;
1290 }
1291 }
[1]1292 }
[128]1293 if (depth == 0) {
1294// log_it ("Finished toggling expandability");
[1]1295 }
1296}
1297
1298/**
1299 * Toggle whether a path is selected.
1300 * @param filelist The filelist tree to operate on.
1301 * @param pathname The path to toggle selection of.
1302 * @param on_or_off Whether to toggle it on or off.
1303 * @bug I don't understand this function. Would someone care to explain it?
1304 */
1305void
[128]1306toggle_path_selection(struct s_node *filelist, char *pathname,
1307 bool on_or_off)
[1]1308{
[128]1309 /*@ int ********************************************************* */
1310 static int depth = 0;
1311 int j;
[1]1312
[128]1313 /*@ structures ************************************************** */
1314 struct s_node *node;
[1]1315
[128]1316 /*@ buffers ***************************************************** */
1317 static char current_filename[MAX_STR_LEN];
1318 char tmp[MAX_STR_LEN + 2];
[1]1319
[128]1320 /*@ end vars *************************************************** */
1321 assert(filelist != NULL);
1322 assert_string_is_neither_NULL_nor_zerolength(pathname);
1323 if (depth == 0) {
1324 log_it("Toggling path's selection");
[1]1325 }
[128]1326 for (node = filelist; node != NULL; node = node->right) {
1327 current_filename[depth] = node->ch;
1328 if (node->down) {
1329 depth++;
1330 toggle_path_selection(node->down, pathname, on_or_off);
1331 depth--;
[1]1332 }
[128]1333 if (node->ch == '\0') {
1334 if (!strncmp(pathname, current_filename, strlen(pathname))) {
1335 for (j = 0;
1336 pathname[j] != '\0'
1337 && pathname[j] == current_filename[j]; j++);
1338 if (current_filename[j] == '/'
1339 || current_filename[j] == '\0') {
1340 node->selected = on_or_off;
1341 sprintf(tmp, "%s is now %s\n", current_filename,
1342 (on_or_off ? "ON" : "OFF"));
1343 }
1344 }
1345 }
[1]1346 }
[128]1347 if (depth == 0) {
1348 log_it("Finished toggling selection");
1349 }
[1]1350}
1351
1352
1353/**
1354 * Toggle node selection of a filelist tree.
1355 * @param filelist The filelist tree to operate on.
1356 * @param on_or_off Whether to toggle selection on or off.
1357 * @bug I don't understand this function. Would someone care to explain it?
1358 */
[128]1359void toggle_node_selection(struct s_node *filelist, bool on_or_off)
[1]1360{
[128]1361 /*@ structure ************************************************** */
1362 struct s_node *node;
[1]1363
[128]1364 /*@ end vars *************************************************** */
1365 assert(filelist != NULL);
1366 for (node = filelist; node != NULL; node = node->right) {
1367 if (node->ch == '/') {
1368 continue;
1369 } /* don't go deep */
1370 if (node->ch == '\0') {
1371 node->selected = on_or_off;
1372 }
1373 if (node->down) {
1374 toggle_node_selection(node->down, on_or_off);
1375 }
[1]1376 }
1377}
1378
1379
1380
1381
1382
1383
1384
1385/**
1386 * The pathname to the skeleton filelist, used to give better progress reporting for mondo_makefilelist().
1387 */
[128]1388char *g_skeleton_filelist = NULL;
[1]1389
1390/**
1391 * Number of entries in the skeleton filelist.
1392 */
[128]1393long g_skeleton_entries = 0;
[1]1394
1395/**
1396 * Wrapper around mondo_makefilelist().
1397 * @param bkpinfo The backup information structure. Fields used:
1398 * - @c bkpinfo->differential
1399 * - @c bkpinfo->exclude_paths
1400 * - @c bkpinfo->include_paths
1401 * - @c bkpinfo->make_filelist
1402 * - @c bkpinfo->scratchdir
1403 * - @c bkpinfo->tmpdir
1404 * @return 0 for success, nonzero for failure.
1405 * @see mondo_makefilelist
1406 */
[1645]1407int prepare_filelist()
[1]1408{
1409
[128]1410 /*@ int **************************************************** */
1411 int res = 0;
[1]1412
[128]1413 assert(bkpinfo != NULL);
1414 log_it("tmpdir=%s; scratchdir=%s", bkpinfo->tmpdir,
1415 bkpinfo->scratchdir);
1416 if (bkpinfo->make_filelist) {
1417 mvaddstr_and_log_it(g_currentY, 0,
[541]1418 "Making catalog of files to be backed up");
[128]1419 } else {
1420 mvaddstr_and_log_it(g_currentY, 0,
[541]1421 "Using supplied catalog of files to be backed up");
[128]1422 }
[1]1423
[128]1424 if (bkpinfo->make_filelist) {
1425 res =
1426 mondo_makefilelist(MONDO_LOGFILE, bkpinfo->tmpdir,
1427 bkpinfo->scratchdir, bkpinfo->include_paths,
1428 bkpinfo->exclude_paths,
1429 bkpinfo->differential, NULL);
1430 } else {
1431 res =
1432 mondo_makefilelist(MONDO_LOGFILE, bkpinfo->tmpdir,
1433 bkpinfo->scratchdir, NULL,
1434 bkpinfo->exclude_paths,
1435 bkpinfo->differential,
1436 bkpinfo->include_paths);
1437 }
[1]1438
[128]1439 if (res) {
[676]1440 log_OS_error("Call to mondo_makefilelist failed");
[541]1441 mvaddstr_and_log_it(g_currentY++, 74, "Failed.");
[128]1442 } else {
[541]1443 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
[128]1444 }
1445 return (res);
[1]1446}
1447
1448
1449/**
1450 * Recursively list all files in @p dir newer than @p time_of_last_full_backup to @p fout.
1451 * @param dir The directory to list to @p fout.
1452 * @param sth The directories to skip (exclude).
1453 * @param fout The file to write everything to.
1454 * @param time_of_last_full_backup Only backup files newer than this (0 to disable).
1455 * @return 0, always.
1456 * @bug Return value should be @c void.
1457 */
[128]1458int open_and_list_dir(char *dir, char *sth, FILE * fout,
1459 time_t time_of_last_full_backup)
[1]1460{
[820]1461 const char delims[] = " ";
1462
[128]1463 DIR *dip;
1464 struct dirent *dit;
1465 struct stat statbuf;
1466 char new[MAX_STR_LEN];
1467 char *tmp;
1468 char *sth_B;
1469 static int percentage = 0;
1470 char *ith_B;
1471 char *skip_these;
1472 char *new_with_spaces;
[820]1473 char *strtmp;
1474 char *token;
1475 char *find_excludes;
[128]1476 static char *name_of_evalcall_form;
1477 int i;
[820]1478 int lastpos = 0;
[128]1479 static int depth = 0;
1480 char *p;
1481 static int counter = 0;
1482 static int uberctr = 0;
1483 static char *find_skeleton_marker;
1484 static long skeleton_lino = 0;
1485 static time_t last_time = 0;
1486 time_t this_time;
[1]1487
[128]1488 malloc_string(tmp);
[1668]1489 sth_B = malloc(8*MAX_STR_LEN);
[128]1490 malloc_string(ith_B);
1491 malloc_string(new_with_spaces);
1492 p = strrchr(dir, '/');
1493 if (p) {
1494 if (!strcmp(p, "/.") || !strcmp(p, "/..")) {
1495 return (0);
1496 }
1497 }
1498
1499 if (!depth) {
1500 malloc_string(name_of_evalcall_form);
1501 malloc_string(find_skeleton_marker);
[820]1502 asprintf(&find_excludes, " ");
1503 while((token = mr_strtok (sth, delims, &lastpos))) {
1504 asprintf(&strtmp,"%s", find_excludes);
1505 paranoid_free(find_excludes);
1506 asprintf(&find_excludes,"%s -path %s -prune -o", strtmp, token);
1507 paranoid_free(strtmp);
1508 paranoid_free(token);
1509 }
[1]1510#if linux
[128]1511 // 2.6 has /sys as a proc-type thing -- must be excluded
[820]1512 asprintf(&strtmp,
[847]1513 "find %s -maxdepth %d -fstype mvfs -prune -o -path /dev/shm -prune -o %s -type d -print > %s 2> /dev/null",
[820]1514 dir, MAX_SKEL_DEPTH, find_excludes, g_skeleton_filelist);
[1]1515#else
[128]1516 // On BSD, for example, /sys is the kernel sources -- don't exclude
[820]1517 asprintf(&strtmp,
[847]1518 "find %s -maxdepth %d -fstype mvfs -prune -o -path /proc -prune -o %s -type d -print > %s 2> /dev/null",
[820]1519 dir, MAX_SKEL_DEPTH, find_excludes, g_skeleton_filelist);
[1]1520#endif
[820]1521 paranoid_free(find_excludes);
1522 log_msg(5, "find command = %s", strtmp);
1523 system(strtmp);
1524 paranoid_free(strtmp);
[128]1525 sprintf(tmp, "wc -l %s | awk '{print $1;}'", g_skeleton_filelist);
1526 g_skeleton_entries =
1527 1 + atol(call_program_and_get_last_line_of_output(tmp));
1528 sprintf(name_of_evalcall_form, "Making catalog of %s", dir);
1529 open_evalcall_form(name_of_evalcall_form);
1530 find_skeleton_marker[0] = '\0';
1531 skeleton_lino = 1;
1532 log_msg(5, "entries = %ld", g_skeleton_entries);
1533 percentage = 0;
1534 } else if (depth <= MAX_SKEL_DEPTH) // update evalcall form if appropriate
1535 {
1536 sprintf(find_skeleton_marker,
[681]1537 "grep -Fv \"%s\" %s > %s.new 2> /dev/null", dir,
[128]1538 g_skeleton_filelist, g_skeleton_filelist);
1539// log_msg(0, "fsm = %s", find_skeleton_marker);
1540 if (!system(find_skeleton_marker)) {
1541 percentage = (int) (skeleton_lino * 100 / g_skeleton_entries);
1542 skeleton_lino++;
1543// log_msg(5, "Found %s", dir);
1544// log_msg(2, "Incrementing skeleton_lino; now %ld/%ld (%d%%)", skeleton_lino, g_skeleton_entries, percentage);
1545 sprintf(find_skeleton_marker, "mv -f %s.new %s",
1546 g_skeleton_filelist, g_skeleton_filelist);
1547// log_msg(6, "fsm = %s", find_skeleton_marker);
1548 run_program_and_log_output(find_skeleton_marker, 8);
1549 time(&this_time);
1550 if (this_time != last_time) {
1551 last_time = this_time;
[1]1552#ifndef _XWIN
[128]1553 if (!g_text_mode) {
[541]1554 sprintf(tmp, "Reading %-68s", dir);
[128]1555 newtDrawRootText(0, g_noof_rows - 3, tmp);
1556 }
[1]1557#endif
[128]1558 update_evalcall_form(percentage);
1559 }
[1]1560 }
[128]1561 }
[1]1562
[128]1563 depth++;
[1]1564
1565// log_msg(0, "Cataloguing %s", dir);
[128]1566 if (sth[0] == ' ') {
1567 skip_these = sth;
1568 } else {
1569 skip_these = sth_B;
1570 sprintf(skip_these, " %s ", sth);
1571 }
1572 sprintf(new_with_spaces, " %s ", dir);
1573 if ((dip = opendir(dir)) == NULL) {
[1260]1574 sprintf(tmp,"opendir %s", dir);
1575 log_OS_error(tmp);
[128]1576 } else if (strstr(skip_these, new_with_spaces)) {
1577 fprintf(fout, "%s\n", dir); // if excluded dir then print dir ONLY
1578 } else {
1579 fprintf(fout, "%s\n", dir);
1580 while ((dit = readdir(dip)) != NULL) {
1581 i++;
1582 strcpy(new, dir);
1583 if (strcmp(dir, "/")) {
1584 strcat(new, "/");
1585 }
1586 strcat(new, dit->d_name);
1587 new_with_spaces[0] = ' ';
1588 strcpy(new_with_spaces + 1, new);
1589 strcat(new_with_spaces, " ");
1590 if (strstr(skip_these, new_with_spaces)) {
1591 fprintf(fout, "%s\n", new);
1592 } else {
1593 if (!lstat(new, &statbuf)) {
1594 if (!S_ISLNK(statbuf.st_mode)
1595 && S_ISDIR(statbuf.st_mode)) {
1596 open_and_list_dir(new, skip_these, fout,
1597 time_of_last_full_backup);
1598 } else {
1599 if (time_of_last_full_backup == 0
1600 || time_of_last_full_backup <
1601 statbuf.st_ctime) {
1602 fprintf(fout, "%s\n", new);
1603 if ((counter++) > 128) {
1604 counter = 0;
1605 uberctr++;
1606 sprintf(tmp, " %c ",
1607 special_dot_char(uberctr));
[1]1608#ifndef _XWIN
[128]1609 if (!g_text_mode) {
1610 newtDrawRootText(77, g_noof_rows - 3,
1611 tmp);
1612 newtRefresh();
1613 }
[1]1614#endif
[128]1615 }
1616 }
1617 }
1618 }
1619 }
[1]1620 }
[128]1621 }
1622 if (dip) {
1623 if (closedir(dip) == -1) {
1624 log_OS_error("closedir");
1625 }
1626 }
1627 depth--;
1628 if (!depth) {
1629 close_evalcall_form();
1630 paranoid_free(name_of_evalcall_form);
1631 paranoid_free(find_skeleton_marker);
1632 unlink(g_skeleton_filelist);
1633 log_msg(5, "g_skeleton_entries = %ld", g_skeleton_entries);
1634 }
1635 paranoid_free(tmp);
1636 paranoid_free(sth_B);
1637 paranoid_free(ith_B);
1638 paranoid_free(new_with_spaces);
1639 return (0);
[1]1640}
1641
1642
1643
1644/**
1645 * Get the next entry in the space-separated list in @p incoming.
1646 * So if @p incoming was '"one and two" three four', we would
1647 * return "one and two".
1648 * @param incoming The list to get the next entry from.
1649 * @return The first item in the list (respecting double quotes).
1650 * @note The returned string points to static data that will be overwritten with each call.
1651 */
[128]1652char *next_entry(char *incoming)
[1]1653{
[128]1654 static char sz_res[MAX_STR_LEN];
1655 char *p;
1656 bool in_quotes = FALSE;
[1]1657
[128]1658 strcpy(sz_res, incoming);
1659 p = sz_res;
1660 while ((*p != ' ' || in_quotes) && *p != '\0') {
1661 if (*p == '\"') {
1662 in_quotes = !in_quotes;
1663 }
1664 p++;
1665 }
1666 *p = '\0';
1667 return (sz_res);
[1]1668}
1669
1670
1671
1672/**
1673 * Create the filelist for the backup. It will be stored in [scratchdir]/archives/filelist.full.
1674 * @param logfile Unused.
1675 * @param tmpdir The tmpdir of the backup.
1676 * @param scratchdir The scratchdir of the backup.
1677 * @param include_paths The paths to back up, or NULL if you're using a user-defined filelist.
1678 * @param excp The paths to NOT back up.
1679 * @param differential The differential level (currently only 0 and 1 are supported).
1680 * @param userdef_filelist The user-defined filelist, or NULL if you're using @p include_paths.
1681 * @return 0, always.
1682 * @bug @p logfile is unused.
1683 * @bug Return value is meaningless.
1684 */
[128]1685int mondo_makefilelist(char *logfile, char *tmpdir, char *scratchdir,
1686 char *include_paths, char *excp, int differential,
1687 char *userdef_filelist)
[1]1688{
[1747]1689 char sz_datefile_wildcard[] = MONDO_CACHE"/difflevel.%d";
[1]1690 char *p, *q;
1691 char sz_datefile[80];
1692 char *sz_filelist, *exclude_paths, *tmp;
1693 int i;
[128]1694 FILE *fout;
[1]1695 char *command;
[128]1696 time_t time_of_last_full_backup = 0;
[1]1697 struct stat statbuf;
[1854]1698 char *tmp1 = NULL;
[1]1699
[128]1700 malloc_string(command);
1701 malloc_string(tmp);
1702 malloc_string(sz_filelist);
1703 malloc_string(g_skeleton_filelist);
[1540]1704 if (!(exclude_paths = malloc(8*MAX_STR_LEN))) {
[128]1705 fatal_error("Cannot malloc exclude_paths");
1706 }
1707 sprintf(sz_datefile, sz_datefile_wildcard, 0);
1708 if (!include_paths && !userdef_filelist) {
1709 fatal_error
1710 ("Please supply either include_paths or userdef_filelist");
1711 }
[1]1712// make hole for filelist
[128]1713 sprintf(command, "mkdir -p %s/archives", scratchdir);
1714 paranoid_system(command);
1715 sprintf(sz_filelist, "%s/tmpfs/filelist.full", tmpdir);
1716 make_hole_for_file(sz_filelist);
[1]1717
[128]1718 if (differential == 0) {
1719 // restore last good datefile if it exists
1720 sprintf(command, "cp -f %s.aborted %s", sz_datefile, sz_datefile);
1721 run_program_and_log_output(command, 3);
1722 // backup last known good datefile just in case :)
1723 if (does_file_exist(sz_datefile)) {
1724 sprintf(command, "mv -f %s %s.aborted", sz_datefile,
1725 sz_datefile);
1726 paranoid_system(command);
1727 }
1728 make_hole_for_file(sz_datefile);
1729 write_one_liner_data_file(sz_datefile,
1730 call_program_and_get_last_line_of_output
1731 ("date +%s"));
1732 } else if (lstat(sz_datefile, &statbuf)) {
1733 log_msg(2,
1734 "Warning - unable to find date of previous backup. Full backup instead.");
1735 differential = 0;
1736 time_of_last_full_backup = 0;
1737 } else {
1738 time_of_last_full_backup = statbuf.st_mtime;
1739 log_msg(2, "Differential backup. Yay.");
1740 }
[1]1741
1742// use user-specified filelist (if specified)
[128]1743 if (userdef_filelist) {
1744 log_msg(1,
1745 "Using the user-specified filelist - %s - instead of calculating one",
1746 userdef_filelist);
1747 sprintf(command, "cp -f %s %s", userdef_filelist, sz_filelist);
1748 if (run_program_and_log_output(command, 3)) {
1749 fatal_error("Failed to copy user-specified filelist");
1750 }
1751 } else {
1752 log_msg(2, "include_paths = '%s'", include_paths);
1753 log_msg(1, "Calculating filelist");
[1855]1754 asprintf(&tmp1, "find %s -name '/win386.swp' -o -name '/hiberfil.sys' -o -name '/pagefile.sys' 2> /dev/null\n",call_program_and_get_last_line_of_output("mount | grep -Ew 'ntfs|fat|vfat|dos' | awk '{print $3}'"));
[1749]1755 snprintf(exclude_paths, (size_t)8*MAX_STR_LEN," %s %s %s %s %s %s %s . .. \
[1236]1756" MNT_CDROM " " MNT_FLOPPY " /media \
[1854]1757/proc /sys /root/images/mondo " MINDI_CACHE, MONDO_CACHE, excp, call_program_and_get_last_line_of_output(tmp1), (tmpdir[0] == '/' && tmpdir[1] == '/') ? (tmpdir + 1) : tmpdir, (scratchdir[0] == '/' && scratchdir[1] == '/') ? (scratchdir + 1) : scratchdir);
1758 paranoid_free(tmp1);
[1]1759
[128]1760 log_msg(2, "Excluding paths = '%s'", exclude_paths);
1761 log_msg(2,
1762 "Generating skeleton filelist so that we can track our progress");
1763 sprintf(g_skeleton_filelist, "%s/tmpfs/skeleton.txt", tmpdir);
1764 make_hole_for_file(g_skeleton_filelist);
1765 log_msg(4, "g_skeleton_entries = %ld", g_skeleton_entries);
1766 log_msg(2, "Opening out filelist to %s", sz_filelist);
1767 if (!(fout = fopen(sz_filelist, "w"))) {
1768 fatal_error("Cannot openout to sz_filelist");
[1]1769 }
[128]1770 i = 0;
1771 if (strlen(include_paths) == 0) {
1772 log_msg(1, "Including only '/' in %s", sz_filelist);
1773 open_and_list_dir("/", exclude_paths, fout,
1774 time_of_last_full_backup);
1775 } else {
1776 p = include_paths;
1777 while (*p) {
1778 q = next_entry(p);
1779 log_msg(1, "Including %s in filelist %s", q, sz_filelist);
1780 open_and_list_dir(q, exclude_paths, fout,
1781 time_of_last_full_backup);
1782 p += strlen(q);
1783 while (*p == ' ') {
1784 p++;
1785 }
[1]1786 }
1787 }
[128]1788 paranoid_fclose(fout);
1789 }
1790 log_msg(2, "Copying new filelist to scratchdir");
1791 sprintf(command, "mkdir -p %s/archives", scratchdir);
1792 paranoid_system(command);
1793 sprintf(command, "cp -f %s %s/archives/", sz_filelist, scratchdir);
1794 paranoid_system(command);
1795 sprintf(command, "mv -f %s %s", sz_filelist, tmpdir);
1796 paranoid_system(command);
1797 log_msg(2, "Freeing variables");
1798 paranoid_free(sz_filelist);
1799 paranoid_free(command);
1800 paranoid_free(exclude_paths);
1801 paranoid_free(tmp);
1802 paranoid_free(g_skeleton_filelist);
1803 log_msg(2, "Exiting");
1804 return (0);
[1]1805}
1806
1807
1808
1809
1810/**
1811 * Locate the string @p string_to_find in the tree rooted at @p startnode.
1812 * @param startnode The node containing the root of the directory tree.
1813 * @param string_to_find The string to look for at @p startnode.
1814 * @return The node containing the last element of @p string_to_find, or NULL if
1815 * it was not found.
1816 */
[128]1817struct s_node *find_string_at_node(struct s_node *startnode,
1818 char *string_to_find)
[1]1819{
[128]1820 /*@ int ******************************************************** */
1821 int noof_chars;
1822 static int depth = 0;
1823 static char original_string[MAX_STR_LEN];
[1]1824
[128]1825 /*@ sturctures ************************************************* */
1826 struct s_node *node;
[1]1827
[128]1828 /*@ char ****************************************************** */
1829 char char_to_find;
[1]1830
[128]1831 /*@ bools ****************************************************** */
[1]1832
[128]1833 if (!depth) {
1834 strcpy(original_string, string_to_find);
1835 }
[1]1836
[128]1837 assert(startnode != NULL);
1838 assert(string_to_find != NULL);
[1]1839
[128]1840 noof_chars = strlen(string_to_find) + 1; /* we include the '\0' */
[1]1841
[128]1842 log_msg(7, "starting --- str=%s", string_to_find);
[1]1843
1844/* walk across tree if necessary */
[128]1845 node = startnode;
1846 char_to_find = string_to_find[0];
1847 if (node->right != NULL && node->ch < char_to_find) {
1848 log_msg(7, "depth=%d --- going RIGHT ... %c-->%c", depth,
1849 char_to_find, node->ch, (node->right)->ch);
1850 return (find_string_at_node(node->right, string_to_find));
1851 }
[1]1852
1853/* walk down tree if appropriate */
[128]1854 if (node->down != NULL && node->ch == char_to_find) {
1855 log_msg(7, "depth=%d char=%c --- going DOWN", depth, char_to_find);
1856 depth++;
1857 node = find_string_at_node(node->down, string_to_find + 1);
1858 depth--;
1859 return (node);
1860 }
[1]1861
[128]1862 if (char_to_find == '\0' && node->ch == '\0') {
1863 log_msg(7, "%s is in tree", original_string);
1864 return (node);
1865 } else {
1866 log_msg(7, "%s is NOT in tree", original_string);
1867 return (NULL);
1868 }
[1]1869}
1870
1871
1872
1873/**
1874 * Write all entries in @p needles_list_fname which are also in
1875 * @p filelist to @p matches_list_fname.
1876 * @param needles_list_fname A file containing strings to look for, 1 per line.
1877 * @param filelist The node for the root of the directory structure to search in.
1878 * @param matches_list_fname The filename where we should put the matches.
1879 * @return The number of matches found.
1880 */
[128]1881long save_filelist_entries_in_common(char *needles_list_fname,
1882 struct s_node *filelist,
1883 char *matches_list_fname,
1884 bool use_star)
[1]1885{
[128]1886 int retval = 0;
1887 struct s_node *found_node;
1888 FILE *fin;
1889 FILE *fout;
1890 char *fname;
1891 char *tmp;
1892 size_t len = 0; // Scrub's patch doesn't work without that
[1]1893
1894// log_msg(1, "use_star = %s", (use_star)?"TRUE":"FALSE");
[128]1895 malloc_string(fname);
1896 malloc_string(tmp);
1897 log_msg(5, "starting");
1898 log_msg(5, "needles_list_fname = %s", needles_list_fname);
1899 log_msg(5, "matches_list_fname = %s", matches_list_fname);
1900 if (!(fin = fopen(needles_list_fname, "r"))) {
1901 fatal_error("Cannot openin needles_list_fname");
1902 }
1903 if (!(fout = fopen(matches_list_fname, "w"))) {
1904 fatal_error("Cannot openout matches_list_fname");
1905 }
1906 while (!feof(fin)) {
[1]1907// fscanf(fin, "%s\n", fname);
[128]1908 len = MAX_STR_LEN - 1;
1909 getline(&fname, &len, fin); // patch by Scrub
1910 if (!use_star) {
1911 if (fname[0] == '/') {
1912 strcpy(tmp, fname);
1913 } else {
1914 tmp[0] = '/';
1915 strcpy(tmp + 1, fname);
1916 }
1917 strcpy(fname, tmp);
1918 }
1919 while (strlen(fname) > 0 && fname[strlen(fname) - 1] < 32) {
1920 fname[strlen(fname) - 1] = '\0';
1921 }
[1]1922
1923/*
1924 if (strlen(fname)>3 && fname[strlen(fname)-1]=='/') { fname[strlen(fname)-1] = '\0'; }
1925 if (strlen(fname)==0) { continue; }
1926 sprintf(temporary_string, "echo \"Looking for '%s'\" >> /tmp/looking.txt", fname);
1927 system(temporary_string);
[128]1928*/
1929
1930 log_msg(5, "Looking for '%s'", fname);
1931 found_node = find_string_at_node(filelist, fname);
1932 if (found_node) {
1933 if (found_node->selected) {
[1]1934// if (use_star)
[128]1935 if (fname[0] == '/') {
1936 strcpy(tmp, fname + 1);
1937 strcpy(fname, tmp);
1938 }
1939 log_msg(5, "Found '%s'", fname);
1940 turn_wildcard_chars_into_literal_chars(tmp, fname);
1941 fprintf(fout, "%s\n", tmp);
1942 retval++;
1943 }
[1]1944 }
1945 }
[128]1946 paranoid_fclose(fout);
1947 paranoid_fclose(fin);
1948 paranoid_free(fname);
1949 paranoid_free(tmp);
1950 return (retval);
[1]1951}
1952
1953
1954
1955
1956
1957
1958/**
1959 * Add all files listed in @p list_of_files_fname to the directory structure rooted at
1960 * @p filelist.
1961 * @param filelist The top node of the directory structure to add the files to.
1962 * @param list_of_files_fname The file containing the files to add, 1 per line.
1963 * @param flag_em If TRUE, then flag the added files for restoration.
1964 * @return 0 for success, nonzero for failure.
1965 */
[128]1966int add_list_of_files_to_filelist(struct s_node *filelist,
1967 char *list_of_files_fname, bool flag_em)
[1]1968{
[128]1969 FILE *fin;
1970 char *tmp;
1971 struct s_node *nod;
[1]1972
[128]1973 malloc_string(tmp);
1974 log_msg(3, "Adding %s to filelist", list_of_files_fname);
1975 if (!(fin = fopen(list_of_files_fname, "r"))) {
1976 iamhere(list_of_files_fname);
1977 return (1);
1978 }
1979 for (fgets(tmp, MAX_STR_LEN, fin); !feof(fin);
1980 fgets(tmp, MAX_STR_LEN, fin)) {
1981 if (!tmp[0]) {
1982 continue;
1983 }
1984 if ((tmp[strlen(tmp) - 1] == 13 || tmp[strlen(tmp) - 1] == 10)
1985 && strlen(tmp) > 0) {
1986 tmp[strlen(tmp) - 1] = '\0';
1987 }
1988 log_msg(2, "tmp = '%s'", tmp);
1989 if (!tmp[0]) {
1990 continue;
1991 }
1992 if ((nod = find_string_at_node(filelist, tmp))) {
1993 log_msg(5, "Found '%s' in filelist already. Cool.", tmp);
1994 } else {
1995 add_string_at_node(filelist, tmp);
1996 nod = find_string_at_node(filelist, tmp);
1997 }
[1]1998
[128]1999 if (nod && flag_em) {
2000 toggle_path_selection(filelist, tmp, TRUE);
2001 log_msg(5, "Flagged '%s'", tmp);
2002 }
[1]2003 }
[128]2004 paranoid_fclose(fin);
2005 paranoid_free(tmp);
2006 return (0);
[1]2007}
2008
2009/* @} - end of filelistGroup */
Note: See TracBrowser for help on using the repository browser.