source: MondoRescue/branches/2.2.10/mondo/src/common/libmondo-files.c@ 2324

Last change on this file since 2324 was 2324, checked in by Bruno Cornec, 15 years ago

r3335@localhost: bruno | 2009-08-08 23:04:12 +0200

  • Change mr_asprintf to avoid the need of pointer and be consistent with the other mr_mem functions
  • Property svn:keywords set to Id
File size: 36.5 KB
Line 
1/* file manipulation
2 $Id: libmondo-files.c 2324 2009-08-18 13:13:54Z bruno $
3*/
4
5/**
6 * @file
7 * Functions to manipulate files.
8 */
9
10
11#include "my-stuff.h"
12#include "mr_mem.h"
13#include "mondostructures.h"
14#include "libmondo-files.h"
15
16#include "lib-common-externs.h"
17
18#include "libmondo-tools-EXT.h"
19#include "libmondo-gui-EXT.h"
20#include "libmondo-devices-EXT.h"
21#include "libmondo-fork-EXT.h"
22#include "libmondo-string-EXT.h"
23
24/*@unused@*/
25//static char cvsid[] = "$Id: libmondo-files.c 2324 2009-08-18 13:13:54Z bruno $";
26
27extern char err_log_lines[NOOF_ERR_LINES][MAX_STR_LEN];
28
29extern int g_currentY;
30extern char *g_mondo_home;
31
32/* Reference to global bkpinfo */
33extern struct s_bkpinfo *bkpinfo;
34
35/**
36 * @addtogroup fileGroup
37 * @{
38 */
39/**
40 * Get an md5 checksum of the specified file.
41 * @param filename The file to checksum.
42 * @return The 32-character ASCII representation of the 128-bit checksum.
43 * @note The returned string points to static storage that will be overwritten with each call.
44 */
45char *calc_checksum_of_file(char *filename)
46{
47 /*@ buffers ***************************************************** */
48 static char output[MAX_STR_LEN];
49 char *command = NULL;
50
51 /*@ pointers **************************************************** */
52 char *p;
53 FILE *fin;
54
55 /*@ initialize pointers ***************************************** */
56
57 p = output;
58
59 /*@************************************************************** */
60
61 assert_string_is_neither_NULL_nor_zerolength(filename);
62 if (does_file_exist(filename)) {
63 mr_asprintf(command, "md5sum \"%s\"", filename);
64 fin = popen(command, "r");
65 if (fin) {
66 (void) fgets(output, MAX_STR_LEN, fin);
67 p = strchr(output, ' ');
68 paranoid_pclose(fin);
69 }
70 mr_free(command);
71 } else {
72 log_it("File '%s' not found; cannot calc checksum", filename);
73 }
74 if (p) {
75 *p = '\0';
76 }
77 return (output);
78}
79
80
81/**
82 * Get a not-quite-unique representation of some of the file's @c stat properties.
83 * The returned string has the form <tt>size-mtime-ctime</tt>.
84 * @param curr_fname The file to generate the "checksum" for.
85 * @return The "checksum".
86 * @note The returned string points to static storage that will be overwritten with each call.
87 */
88char *calc_file_ugly_minichecksum(char *curr_fname)
89{
90
91 /*@ buffers ***************************************************** */
92 static char curr_cksum[1000];
93
94 /*@ pointers **************************************************** */
95
96 /*@ structures ************************************************** */
97 struct stat buf;
98
99 /*@ initialize data *************************************************** */
100 curr_cksum[0] = '\0';
101
102 /*@************************************************************** */
103
104 assert_string_is_neither_NULL_nor_zerolength(curr_fname);
105 if (lstat(curr_fname, &buf)) {
106 return (curr_cksum); // empty
107 }
108
109 sprintf(curr_cksum, "%ld-%ld-%ld", (long) (buf.st_size),
110 (long) (buf.st_mtime), (long) (buf.st_ctime));
111 return (curr_cksum);
112}
113
114
115
116/**
117 * Get the number of lines in @p filename.
118 * @param filename The file to count lines in.
119 * @return The number of lines in @p filename.
120 * @bug This function uses the shell and "wc -l"; it should probably be rewritten in C.
121 */
122long count_lines_in_file(char *filename)
123{
124
125 /*@ buffers ***************************************************** */
126 char *command = NULL;
127 char incoming[MAX_STR_LEN];
128
129 /*@ long ******************************************************** */
130 long noof_lines = -1L;
131
132 /*@ pointers **************************************************** */
133 FILE *fin;
134
135 /*@ initialize [0] to null ******************************************** */
136 incoming[0] = '\0';
137
138 assert_string_is_neither_NULL_nor_zerolength(filename);
139 if (!does_file_exist(filename)) {
140 log_it("%s does not exist, so I cannot found the number of lines in it", filename);
141 return (0);
142 }
143 mr_asprintf(command, "cat %s | wc -l", filename);
144 if (!does_file_exist(filename)) {
145 mr_free(command);
146 return (-1);
147 }
148 fin = popen(command, "r");
149 mr_free(command);
150 if (fin) {
151 if (feof(fin)) {
152 noof_lines = 0;
153 } else {
154 (void) fgets(incoming, MAX_STR_LEN - 1, fin);
155 while (strlen(incoming) > 0
156 && incoming[strlen(incoming) - 1] < 32) {
157 incoming[strlen(incoming) - 1] = '\0';
158 }
159 noof_lines = atol(incoming);
160 }
161 paranoid_pclose(fin);
162 }
163 return (noof_lines);
164}
165
166
167/**
168 * Check for existence of given @p filename.
169 * @param filename The file to check for.
170 * @return TRUE if it exists, FALSE otherwise.
171 */
172bool does_file_exist(char *filename)
173{
174
175 /*@ structures ************************************************** */
176 struct stat buf;
177
178 /*@************************************************************** */
179
180 assert(filename != NULL);
181 // assert_string_is_neither_NULL_nor_zerolength(filename);
182 if (lstat(filename, &buf)) {
183 log_msg(20, "%s does not exist", filename);
184 return (FALSE);
185 } else {
186 log_msg(20, "%s exists", filename);
187 return (TRUE);
188 }
189}
190
191
192
193
194
195
196/**
197 * Modify @p inout (a file containing a list of files) to only contain files
198 * that exist.
199 * @param inout The filelist to operate on.
200 * @note The original file is renamed beforehand, so it will not be accessible
201 * while the modification is in progress.
202 */
203void exclude_nonexistent_files(char *inout)
204{
205 char *infname = NULL;
206 char *outfname = NULL;
207 char *tmp = NULL;
208 char incoming[MAX_STR_LEN];
209
210 /*@ int ********************************************************* */
211 int i;
212
213 /*@ pointers **************************************************** */
214 FILE *fin, *fout;
215
216
217 /*@ end vars *********************************************************** */
218
219 assert_string_is_neither_NULL_nor_zerolength(inout);
220 mr_asprintf(infname, "%s.in", inout);
221 mr_asprintf(outfname, "%s", inout);
222 mr_asprintf(tmp, "cp -f %s %s", inout, infname);
223 run_program_and_log_output(tmp, FALSE);
224 mr_free(tmp);
225
226 if (!(fin = fopen(infname, "r"))) {
227 log_OS_error("Unable to openin infname");
228 mr_free(infname);
229 return;
230 }
231 if (!(fout = fopen(outfname, "w"))) {
232 log_OS_error("Unable to openout outfname");
233 mr_free(outfname);
234 return;
235 }
236 mr_free(outfname);
237
238 for (fgets(incoming, MAX_STR_LEN, fin); !feof(fin);
239 fgets(incoming, MAX_STR_LEN, fin)) {
240 i = strlen(incoming) - 1;
241 if (i >= 0 && incoming[i] < 32) {
242 incoming[i] = '\0';
243 }
244 if (does_file_exist(incoming)) {
245 fprintf(fout, "%s\n", incoming);
246 } else {
247 log_it("Excluding '%s'-nonexistent\n", incoming);
248 }
249 }
250 paranoid_fclose(fout);
251 paranoid_fclose(fin);
252 unlink(infname);
253 mr_free(infname);
254}
255
256
257
258
259
260
261
262
263
264/**
265 * Attempt to find the user's kernel by calling Mindi.
266 * If Mindi can't find the kernel, ask user. If @p kernel is not empty,
267 * don't do anything.
268 * @param kernel Where to put the found kernel.
269 * @return 0 for success, 1 for failure.
270 */
271int figure_out_kernel_path_interactively_if_necessary(char *kernel)
272{
273 char *tmp = NULL;
274 char *command = NULL;;
275
276 if (!kernel[0]) {
277 strcpy(kernel,
278 call_program_and_get_last_line_of_output
279 ("mindi --findkernel 2> /dev/null"));
280 }
281 // If we didn't get anything back, check whether mindi raised a fatal error
282 if (!kernel[0]) {
283 mr_asprintf(command, "%s", "grep 'Fatal error' /var/log/mindi.log");
284 mr_asprintf(tmp, "%s", call_program_and_get_last_line_of_output(command));
285 if (strlen(tmp) > 1) {
286 popup_and_OK(tmp);
287 mr_free(tmp);
288 mr_free(command);
289 fatal_error("Mindi gave a fatal error. Please check '/var/log/mindi.log'.");
290 }
291 mr_free(tmp);
292 mr_free(command);
293 }
294 log_it("Calling Mindi with kernel path of '%s'", kernel);
295 while (!kernel[0]) {
296 if (!ask_me_yes_or_no
297 ("Kernel not found or invalid. Choose another?")) {
298 return (1);
299 }
300 tmp = popup_and_get_string("Kernel path", "What is the full path and filename of your kernel, please?", kernel);
301 if (tmp == NULL) {
302 fatal_error("Kernel not found. Please specify with the '-k' flag.");
303 }
304 strcpy(kernel, tmp);
305 mr_free(tmp);
306
307 log_it("User says kernel is at %s", kernel);
308 }
309 return (0);
310}
311
312
313
314
315
316
317/**
318 * Find location of specified executable in user's PATH.
319 * @param fname The basename of the executable to search for (e.g. @c afio).
320 * @return The full path to the executable, or "" if it does not exist, or NULL if @c file could not be found.
321 * @note The returned string points to static storage that will be overwritten with each call.
322 * @bug The checks with @c file and @c dirname seem pointless. If @c incoming is "", then you're calling
323 * <tt>dirname 2\>/dev/null</tt> or <tt>file 2\>/dev/null | cut -d':' -f1 2\>/dev/null</tt>, which basically amounts
324 * to nothing.
325 */
326char *find_home_of_exe(char *fname)
327{
328 /*@ buffers ********************* */
329 static char output[MAX_STR_LEN];
330 char *incoming;
331 char *command = NULL;
332
333 malloc_string(incoming);
334 incoming[0] = '\0';
335 /*@******************************* */
336
337 assert_string_is_neither_NULL_nor_zerolength(fname);
338 mr_asprintf(command, "which %s 2> /dev/null", fname);
339 strcpy(incoming, call_program_and_get_last_line_of_output(command));
340 mr_free(command);
341 if (incoming[0] == '\0') {
342 if (system("which file > /dev/null 2> /dev/null")) {
343 paranoid_free(incoming);
344 output[0] = '\0';
345 return (NULL); // forget it :)
346 }
347 mr_asprintf(command, "file %s 2> /dev/null | cut -d':' -f1 2> /dev/null", incoming);
348 strcpy(incoming, call_program_and_get_last_line_of_output(command));
349 mr_free(command);
350 }
351 if (incoming[0] == '\0') // yes, it is == '\0' twice, not once :)
352 {
353 mr_asprintf(command, "dirname %s 2> /dev/null", incoming);
354 strcpy(incoming, call_program_and_get_last_line_of_output(command));
355 mr_free(command);
356 }
357 strcpy(output, incoming);
358 if (output[0] != '\0' && does_file_exist(output)) {
359 log_msg(4, "find_home_of_exe () --- Found %s at %s", fname,
360 incoming);
361 } else {
362 output[0] = '\0';
363 log_msg(4, "find_home_of_exe() --- Could not find %s", fname);
364 }
365 paranoid_free(incoming);
366 if (!output[0]) {
367 return (NULL);
368 } else {
369 return (output);
370 }
371}
372
373
374
375
376
377
378
379
380/**
381 * Get the last sequence of digits surrounded by non-digits in the first 32k of
382 * a file.
383 * @param logfile The file to look in.
384 * @return The number found, or 0 if none.
385 */
386int get_trackno_from_logfile(char *logfile)
387{
388
389 /*@ pointers ********************************************************* */
390 FILE *fin;
391
392 /*@ int ************************************************************** */
393 int trackno = 0;
394 size_t len = 0;
395
396 /*@ buffer ************************************************************ */
397 char datablock[32701];
398
399 assert_string_is_neither_NULL_nor_zerolength(logfile);
400 if (!(fin = fopen(logfile, "r"))) {
401 log_OS_error("Unable to open logfile");
402 fatal_error("Unable to open logfile to read trackno");
403 }
404 len = fread(datablock, 1, 32700, fin);
405 paranoid_fclose(fin);
406 if (len <= 0) {
407 return (0);
408 }
409 for (; len > 0 && !isdigit(datablock[len - 1]); len--);
410 datablock[len--] = '\0';
411 for (; len > 0 && isdigit(datablock[len - 1]); len--);
412 trackno = atoi(datablock + len);
413 return (trackno);
414}
415
416
417
418
419
420
421
422/**
423 * Get a percentage from the last line of @p filename. We look for the string
424 * "% done" on the last line and, if we find it, grab the number before the last % sign.
425 * @param filename The file to get the percentage from.
426 * @return The percentage found, or 0 for error.
427 */
428int grab_percentage_from_last_line_of_file(char *filename)
429{
430
431 /*@ buffers ***************************************************** */
432 char lastline[MAX_STR_LEN];
433 char *command = NULL;
434 /*@ pointers **************************************************** */
435 char *p;
436
437 /*@ int's ******************************************************* */
438 int i;
439
440 for (i = NOOF_ERR_LINES - 1;
441 i >= 0 && !strstr(err_log_lines[i], "% Done")
442 && !strstr(err_log_lines[i], "% done"); i--);
443 if (i < 0) {
444 mr_asprintf(command, "tail -n3 %s | grep -Fi \"%c\" | tail -n1 | awk '{print $0;}'", filename, '%');
445 strcpy(lastline, call_program_and_get_last_line_of_output(command));
446 mr_free(command);
447 if (!lastline[0]) {
448 return (0);
449 }
450 } else {
451 strcpy(lastline, err_log_lines[i]);
452 }
453
454 p = strrchr(lastline, '%');
455 if (p) {
456 *p = '\0';
457 }
458 if (!p) {
459 return (0);
460 }
461 *p = '\0';
462 for (p--; *p != ' ' && p != lastline; p--);
463 if (p != lastline) {
464 p++;
465 }
466 i = atoi(p);
467
468 return (i);
469}
470
471
472
473
474
475/**
476 * Return the last line of @p filename.
477 * @param filename The file to get the last line of.
478 * @return The last line of the file.
479 * @note The returned string points to static storage that will be overwritten with each call.
480 */
481char *last_line_of_file(char *filename)
482{
483 /*@ buffers ***************************************************** */
484 static char output[MAX_STR_LEN];
485 char *command = NULL;
486
487 /*@ pointers **************************************************** */
488 FILE *fin;
489
490 /*@ end vars **************************************************** */
491
492 if (!does_file_exist(filename)) {
493 log_it("Tring to get last line of nonexistent file (%s)", filename);
494 output[0] = '\0';
495 return (output);
496 }
497 mr_asprintf(command, "tail -n1 %s", filename);
498 fin = popen(command, "r");
499 mr_free(command);
500
501 (void) fgets(output, MAX_STR_LEN, fin);
502 paranoid_pclose(fin);
503 while (strlen(output) > 0 && output[strlen(output) - 1] < 32) {
504 output[strlen(output) - 1] = '\0';
505 }
506 return (output);
507}
508
509/**
510 * Get the length of @p filename in bytes.
511 * @param filename The file to get the length of.
512 * @return The length of the file, or -1 for error.
513 */
514off_t length_of_file(char *filename)
515{
516 /*@ pointers *************************************************** */
517 FILE *fin;
518
519 /*@ long long ************************************************* */
520 off_t length;
521
522 fin = fopen(filename, "r");
523 if (!fin) {
524 log_it("filename=%s", filename);
525 log_OS_error("Unable to openin filename");
526 return (-1);
527 }
528 fseeko(fin, 0, SEEK_END);
529 length = ftello(fin);
530 paranoid_fclose(fin);
531 return (length);
532}
533
534
535
536/**
537 * ?????
538 * @bug I don't know what this function does. However, it seems orphaned, so it should probably be removed.
539 */
540int
541make_checksum_list_file(char *filelist, char *cksumlist, char *comppath)
542{
543 /*@ pointers **************************************************** */
544 FILE *fin;
545 FILE *fout;
546
547 /*@ int ******************************************************* */
548 int percentage;
549 int i;
550 int counter = 0;
551
552 /*@ buffer ****************************************************** */
553 char stub_fname[1000];
554 char curr_fname[1000];
555 char curr_cksum[1000];
556 char *tmp = NULL;
557
558 /*@ long [long] ************************************************* */
559 off_t filelist_length;
560 off_t curr_pos;
561 long start_time;
562 long current_time;
563 long time_taken;
564 long time_remaining;
565
566 /*@ end vars *************************************************** */
567
568 start_time = get_time();
569 filelist_length = length_of_file(filelist);
570 log_it("filelist = %s; cksumlist = %s", filelist, cksumlist);
571
572 fin = fopen(filelist, "r");
573 if (fin == NULL) {
574 log_OS_error("Unable to fopen-in filelist");
575 log_to_screen("Can't open filelist");
576 return (1);
577 }
578 fout = fopen(cksumlist, "w");
579 if (fout == NULL) {
580 log_OS_error("Unable to openout cksumlist");
581 paranoid_fclose(fin);
582 log_to_screen("Can't open checksum list");
583 return (1);
584 }
585 for (fgets(stub_fname, 999, fin); !feof(fin);
586 fgets(stub_fname, 999, fin)) {
587 if (stub_fname[(i = strlen(stub_fname) - 1)] < 32) {
588 stub_fname[i] = '\0';
589 }
590 mr_asprintf(tmp, "%s%s", comppath, stub_fname);
591 strcpy(curr_fname, tmp + 1);
592 mr_free(tmp);
593
594 strcpy(curr_cksum, calc_file_ugly_minichecksum(curr_fname));
595 fprintf(fout, "%s\t%s\n", curr_fname, curr_cksum);
596 if (counter++ > 12) {
597 current_time = get_time();
598 counter = 0;
599 curr_fname[37] = '\0';
600 curr_pos = ftello(fin) / 1024;
601 percentage = (int) (curr_pos * 100 / filelist_length);
602 time_taken = current_time - start_time;
603 if (percentage == 0) {
604 /* printf("%0d%% done \r",percentage); */
605 } else {
606 time_remaining = time_taken * 100 / (long) (percentage) - time_taken;
607 log_to_screen("%02d%% done %02d:%02d taken %02d:%02d remaining %-37s\r", percentage, (int) (time_taken / 60), (int) (time_taken % 60), (int) (time_remaining / 60), (int) (time_remaining % 60), curr_fname);
608 }
609 sync();
610 }
611 }
612 paranoid_fclose(fout);
613 paranoid_fclose(fin);
614 log_it("Done.");
615 return (0);
616}
617
618
619/**
620 * Create the directory @p outdir_fname and all parent directories. Equivalent to <tt>mkdir -p</tt>.
621 * @param outdir_fname The directory to create.
622 * @return The return value of @c mkdir.
623 */
624int make_hole_for_dir(char *outdir_fname)
625{
626 char *tmp = NULL;
627 int res = 0;
628
629 assert_string_is_neither_NULL_nor_zerolength(outdir_fname);
630 mr_asprintf(tmp, "mkdir -p %s", outdir_fname);
631 res = system(tmp);
632 mr_free(tmp);
633 return (res);
634}
635
636
637/**
638 * Create the parent directories of @p outfile_fname.
639 * @param outfile_fname The file to make a "hole" for.
640 * @return 0, always.
641 * @bug Return value unnecessary.
642 */
643int make_hole_for_file(char *outfile_fname)
644{
645 /*@ buffer ****************************************************** */
646 char *command = NULL;
647
648 /*@ int ******************************************************** */
649 int res = 0;
650
651 /*@ end vars *************************************************** */
652
653 assert_string_is_neither_NULL_nor_zerolength(outfile_fname);
654 assert(!strstr(outfile_fname, MNT_CDROM));
655 assert(!strstr(outfile_fname, "/dev/cdrom"));
656 mr_asprintf(command, "mkdir -p \"%s\" 2> /dev/null", outfile_fname);
657 res += system(command);
658 mr_free(command);
659
660 mr_asprintf(command, "rmdir \"%s\" 2> /dev/null", outfile_fname);
661 res += system(command);
662 mr_free(command);
663
664 mr_asprintf(command, "rm -f \"%s\" 2> /dev/null", outfile_fname);
665 res += system(command);
666 mr_free(command);
667
668 unlink(outfile_fname);
669 return (0);
670}
671
672
673
674
675/**
676 * Get the number of lines in @p filelist_fname that contain the string @p wildcard.
677 * @param filelist_fname The file to search through.
678 * @param wildcard The string to search for. This is @e not a shell glob or a regular expression.
679 * @return The number of lines matched.
680 */
681long noof_lines_that_match_wildcard(char *filelist_fname, char *wildcard)
682{
683 /*@ long ******************************************************* */
684 long matches = 0;
685
686 /*@ pointers *************************************************** */
687 FILE *fin;
688
689 /*@ buffers **************************************************** */
690 char incoming[MAX_STR_LEN];
691
692 /*@ end vars *************************************************** */
693
694
695 fin = fopen(filelist_fname, "r");
696
697 if (!fin) {
698 log_OS_error("Unable to openin filelist_fname");
699 return (0);
700 }
701 (void) fgets(incoming, MAX_STR_LEN - 1, fin);
702 while (!feof(fin)) {
703 if (strstr(incoming, wildcard)) {
704 matches++;
705 }
706 (void) fgets(incoming, MAX_STR_LEN - 1, fin);
707 }
708 paranoid_fclose(fin);
709 return (matches);
710}
711
712
713
714/**
715 * Determine the size (in KB) of @p dev in the mountlist in <tt>tmpdir</tt>/mountlist.txt.
716 * @param tmpdir The tempdir where the mountlist is stored.
717 * @param dev The device to search for.
718 * @return The size of the partition in KB.
719 */
720long size_of_partition_in_mountlist_K(char *tmpdir, char *dev)
721{
722 char *command = NULL;
723 char *mountlist = NULL;
724 char sz_res[MAX_STR_LEN];
725 long file_len_K;
726
727 mr_asprintf(mountlist, "%s/mountlist.txt", tmpdir);
728 mr_asprintf(command, "grep \"%s \" %s/mountlist.txt | head -n1 | awk '{print $4}'", dev, tmpdir);
729 mr_free(mountlist);
730
731 log_it(command);
732 strcpy(sz_res, call_program_and_get_last_line_of_output(command));
733 file_len_K = atol(sz_res);
734 log_msg(4, "%s --> %s --> %ld", command, sz_res, file_len_K);
735 mr_free(command);
736
737 return (file_len_K);
738}
739
740/**
741 * Calculate the total size (in KB) of all the biggiefiles in this backup.
742 * @param bkpinfo The backup information structure. Only the @c bkpinfo->tmpdir field is used.
743 * @return The total size of all biggiefiles in KB.
744 */
745long size_of_all_biggiefiles_K()
746{
747 /*@ buffers ***************************************************** */
748 char *fname;
749 char *biggielist = NULL;
750 char *comment = NULL;
751 char *tmp = NULL;
752 char *command = NULL;
753
754 /*@ long ******************************************************** */
755 long scratchL = 0;
756 long file_len_K;
757
758 int res = 0;
759
760 /*@ pointers *************************************************** */
761 FILE *fin = NULL;
762
763 /*@ end vars *************************************************** */
764
765 malloc_string(fname);
766 log_it("Calculating size of all biggiefiles (in total)");
767 mr_asprintf(biggielist, "%s/biggielist.txt", bkpinfo->tmpdir);
768 log_it("biggielist = %s", biggielist);
769 fin = fopen(biggielist, "r");
770 mr_free(biggielist);
771
772 if (!(fin)) {
773 log_OS_error("Cannot open biggielist. OK, so estimate is based on filesets only.");
774 } else {
775 log_msg(4, "Reading it...");
776 for (fgets(fname, MAX_STR_LEN, fin); !feof(fin);
777 fgets(fname, MAX_STR_LEN, fin)) {
778 if (fname[strlen(fname) - 1] <= 32) {
779 fname[strlen(fname) - 1] = '\0';
780 }
781 if (0 == strncmp(fname, "/dev/", 5)) {
782 if (is_dev_an_NTFS_dev(fname)) {
783 if ( !find_home_of_exe("ntfsresize")) {
784 fatal_error("ntfsresize not found");
785 }
786 mr_asprintf(command, "ntfsresize --force --info %s|grep '^You might resize at '|cut -d' ' -f5", fname);
787 log_it("command = %s", command);
788 mr_asprintf(tmp, "%s", call_program_and_get_last_line_of_output(command));
789 mr_free(command);
790
791 log_it("res of it = %s", tmp);
792 file_len_K = atoll(tmp) / 1024L;
793 mr_free(tmp);
794 } else {
795 file_len_K = get_phys_size_of_drive(fname) * 1024L;
796 }
797 } else {
798 /* BERLIOS: more than long here ??? */
799 file_len_K = (long) (length_of_file(fname) / 1024);
800 }
801 if (file_len_K > 0) {
802 scratchL += file_len_K;
803 log_msg(4, "%s --> %ld K", fname, file_len_K);
804 }
805 log_msg(4, "After adding %s, scratchL+%ld now equals %ld", fname, file_len_K, scratchL);
806 if (feof(fin)) {
807 break;
808 }
809 }
810 }
811 log_it("Closing...");
812 paranoid_fclose(fin);
813 log_it("Finished calculating total size of all biggiefiles");
814 paranoid_free(fname);
815 return (scratchL);
816}
817
818/**
819 * Determine the amount of space (in KB) occupied by a mounted CD.
820 * This can also be used to find the space used for other directories.
821 * @param mountpt The mountpoint/directory to check.
822 * @return The amount of space occupied in KB.
823 */
824long long space_occupied_by_cd(char *mountpt)
825{
826 /*@ buffer ****************************************************** */
827 char tmp[MAX_STR_LEN];
828 char *command = NULL;
829 long long llres;
830 /*@ pointers **************************************************** */
831 char *p;
832 FILE *fin;
833
834 /*@ end vars *************************************************** */
835
836 mr_asprintf(command, "du -sk %s", mountpt);
837 errno = 0;
838 fin = popen(command, "r");
839 if (errno) {
840 log_it("popen() FAILED: command=%s, mountpt=%s, fin=%d, errno=%d, strerror=%s", command, mountpt, fin, errno, strerror(errno));
841 llres = 0;
842 } else {
843 (void) fgets(tmp, MAX_STR_LEN, fin);
844 paranoid_pclose(fin);
845 p = strchr(tmp, '\t');
846 if (p) {
847 *p = '\0';
848 }
849 for (p = tmp, llres = 0; *p != '\0'; p++) {
850 llres *= 10;
851 llres += (int) (*p - '0');
852 }
853 }
854 mr_free(command);
855
856 return (llres);
857}
858
859
860/**
861 * Update a CRC checksum to include another character.
862 * @param crc The original CRC checksum.
863 * @param c The character to add.
864 * @return The new CRC checksum.
865 * @ingroup utilityGroup
866 */
867unsigned int updcrc(unsigned int crc, unsigned int c)
868{
869 unsigned int tmp;
870 tmp = (crc >> 8) ^ c;
871 crc = (crc << 8) ^ crctttab[tmp & 255];
872 return crc;
873}
874
875/**
876 * Update a reverse CRC checksum to include another character.
877 * @param crc The original CRC checksum.
878 * @param c The character to add.
879 * @return The new CRC checksum.
880 * @ingroup utilityGroup
881 */
882unsigned int updcrcr(unsigned int crc, unsigned int c)
883{
884 unsigned int tmp;
885 tmp = crc ^ c;
886 crc = (crc >> 8) ^ crc16tab[tmp & 0xff];
887 return crc;
888}
889
890
891
892
893/**
894 * Check for an executable on the user's system; write a message to the
895 * screen and the log if we can't find it.
896 * @param fname The executable basename to look for.
897 * @return 0 if it's found, nonzero if not.
898 */
899int whine_if_not_found(char *fname)
900{
901 /*@ buffers *** */
902 char *command = NULL;
903 int res = 0;
904
905 mr_asprintf(command, "which %s > /dev/null 2> /dev/null", fname);
906 res = system(command);
907 mr_free(command);
908
909 if (res) {
910 log_to_screen("Please install '%s'. I cannot find it on your system.", fname);
911 log_to_screen("There may be hyperlink at http://www.mondorescue.com which");
912 log_to_screen("will take you to the relevant (missing) package.");
913 return (1);
914 } else {
915 return (0);
916 }
917}
918
919
920
921
922
923
924/**
925 * Create a data file at @p fname containing @p contents.
926 * The data actually can be multiple lines, despite the name.
927 * @param fname The file to create.
928 * @param contents The data to put in it.
929 * @return 0 for success, 1 for failure.
930 */
931int write_one_liner_data_file(char *fname, char *contents)
932{
933 /*@ pointers *************************************************** */
934 FILE *fout;
935 int res = 0;
936
937 /*@ end vars *************************************************** */
938
939 assert_string_is_neither_NULL_nor_zerolength(fname);
940 if (!contents) {
941 log_it("%d: Warning - writing NULL to %s", __LINE__, fname);
942 }
943 if (!(fout = fopen(fname, "w"))) {
944 log_it("fname=%s");
945 log_OS_error("Unable to openout fname");
946 return (1);
947 }
948 fprintf(fout, "%s\n", contents);
949 paranoid_fclose(fout);
950 return (res);
951}
952
953
954
955/**
956 * Read @p fname into @p contents.
957 * @param fname The file to read.
958 * @param contents Where to put its contents.
959 * @return 0 for success, nonzero for failure.
960 */
961int read_one_liner_data_file(char *fname, char *contents)
962{
963 /*@ pointers *************************************************** */
964 FILE *fin;
965 int res = 0;
966 int i;
967
968 /*@ end vars *************************************************** */
969
970 assert_string_is_neither_NULL_nor_zerolength(fname);
971 if (!contents) {
972 log_it("%d: Warning - reading NULL from %s", __LINE__, fname);
973 }
974 if (!(fin = fopen(fname, "r"))) {
975 log_it("fname=%s", fname);
976 log_OS_error("Unable to openin fname");
977 return (1);
978 }
979 fscanf(fin, "%s\n", contents);
980 i = strlen(contents);
981 if (i > 0 && contents[i - 1] < 32) {
982 contents[i - 1] = '\0';
983 }
984 paranoid_fclose(fin);
985 return (res);
986}
987
988
989
990
991
992
993
994
995
996/**
997 * Copy the files that Mondo/Mindi need to run to the scratchdir or tempdir.
998 * Currently this includes: copy Mondo's home directory to scratchdir,
999 * copy LAST-FILELIST-NUMBER to scratchdir, copy mondorestore
1000 * and post-nuke.tgz (if it exists) to tmpdir, and run "hostname > scratchdir/HOSTNAME".
1001 * @param bkpinfo The backup information structure. Fields used:
1002 * - @c bkpinfo->postnuke_tarball
1003 * - @c bkpinfo->scratchdir
1004 * - @c bkpinfo->tmpdir
1005 */
1006void copy_mondo_and_mindi_stuff_to_scratchdir()
1007{
1008 /*@ Char buffers ** */
1009 char *command = NULL;
1010 char tmp[MAX_STR_LEN];
1011 int res = 0;
1012
1013 mvaddstr_and_log_it(g_currentY, 0,
1014 "Copying Mondo's core files to the scratch directory");
1015
1016 log_msg(4, "g_mondo_home='%s'", g_mondo_home);
1017 if (strlen(g_mondo_home) < 2) {
1018 find_and_store_mondoarchives_home(g_mondo_home);
1019 }
1020 mr_asprintf(command, CP_BIN " --parents -pRdf %s %s", g_mondo_home, bkpinfo->scratchdir);
1021
1022 log_msg(4, "command = %s", command);
1023 res = run_program_and_log_output(command, 1);
1024 mr_free(command);
1025
1026 if (res) {
1027 fatal_error("Failed to copy Mondo's stuff to scratchdir");
1028 }
1029
1030 mr_asprintf(command, "cp -f %s/LAST-FILELIST-NUMBER %s", bkpinfo->tmpdir, bkpinfo->scratchdir);
1031 res = run_program_and_log_output(command, FALSE);
1032 mr_free(command);
1033
1034 if (res) {
1035 fatal_error("Failed to copy LAST-FILELIST-NUMBER to scratchdir");
1036 }
1037
1038 strcpy(tmp,
1039 call_program_and_get_last_line_of_output("which mondorestore"));
1040 if (!tmp[0]) {
1041 fatal_error
1042 ("'which mondorestore' returned null. Where's your mondorestore? `which` can't find it. That's odd. Did you install mondorestore?");
1043 }
1044 mr_asprintf(command, "cp -f %s %s", tmp, bkpinfo->tmpdir);
1045 res = run_program_and_log_output(command, FALSE);
1046 mr_free(command);
1047
1048 if (res) {
1049 fatal_error("Failed to copy mondorestore to tmpdir");
1050 }
1051
1052 mr_asprintf(command, "hostname > %s/HOSTNAME", bkpinfo->scratchdir);
1053 paranoid_system(command);
1054 mr_free(command);
1055
1056 if (bkpinfo->postnuke_tarball[0]) {
1057 mr_asprintf(command, "cp -f %s %s/post-nuke.tgz", bkpinfo->postnuke_tarball, bkpinfo->tmpdir);
1058 res = run_program_and_log_output(command, FALSE);
1059 mr_free(command);
1060
1061 if (res) {
1062 fatal_error("Unable to copy post-nuke tarball to tmpdir");
1063 }
1064 }
1065
1066 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
1067}
1068
1069
1070
1071
1072
1073/**
1074 * Store the client's NFS configuration in files to be restored at restore-time.
1075 * Assumes that @c bkpinfo->media_type = nfs, but does not check for this.
1076 * @param bkpinfo The backup information structure. Fields used:
1077 * - @c nfs_mount
1078 * - @c nfs_remote_dir
1079 * - @c tmpdir
1080 */
1081void store_nfs_config()
1082{
1083
1084 /*@ buffers ******** */
1085 char *nfs_dev = NULL;
1086 char *mac_addr = NULL;
1087 char *nfs_mount = NULL;
1088 char *nfs_client_ipaddr = NULL;
1089 char *nfs_client_netmask = NULL;
1090 char *nfs_client_broadcast = NULL;
1091 char *nfs_client_defgw = NULL;
1092 char *nfs_server_ipaddr = NULL;
1093 char *tmp = NULL;
1094 char *command = NULL;
1095
1096 /*@ pointers ***** */
1097 char *p;
1098
1099 log_it("Storing NFS configuration");
1100 mr_asprintf(tmp, "%s", bkpinfo->nfs_mount);
1101 p = strchr(tmp, ':');
1102 if (!p) {
1103 fatal_error("NFS mount doesn't have a colon in it, e.g. 192.168.1.4:/home/nfs");
1104 }
1105 *(p++) = '\0';
1106 mr_asprintf(nfs_server_ipaddr, "%s", tmp);
1107 mr_asprintf(nfs_mount, "%s", p);
1108 mr_free(tmp);
1109
1110 /* BERLIOS : there is a bug #67 here as it only considers the first NIC */
1111 mr_asprintf(command, "ifconfig | tr '\n' '#' | sed s/##// | tr '#' ' ' | tr '' '\n' | head -n1 | cut -d' ' -f1");
1112 mr_asprintf(nfs_dev, "%s", call_program_and_get_last_line_of_output(command));
1113 mr_free(command);
1114
1115 mr_asprintf(command, "%s", "ifconfig | tr '\n' '#' | sed s/##// | tr '#' ' ' | tr '' '\\n' | head -n1 | tr -s '\t' ' ' | cut -d' ' -f7 | cut -d':' -f2");
1116 mr_asprintf(nfs_client_ipaddr, "%s", call_program_and_get_last_line_of_output(command));
1117 mr_free(command);
1118
1119 mr_asprintf(command, "%s", "ifconfig | tr '\n' '#' | sed s/##// | tr '#' ' ' | tr '' '\\n' | head -n1 | tr -s '\t' ' ' | cut -d' ' -f9 | cut -d':' -f2");
1120 mr_asprintf(nfs_client_netmask, "%s", call_program_and_get_last_line_of_output(command));
1121 mr_free(command);
1122
1123 mr_asprintf(command, "%s", "ifconfig | tr '\n' '#' | sed s/##// | tr '#' ' ' | tr '' '\\n' | head -n1 | tr -s '\t' ' ' | cut -d' ' -f8 | cut -d':' -f2");
1124 mr_asprintf(nfs_client_broadcast, "%s", call_program_and_get_last_line_of_output(command));
1125 mr_free(command);
1126
1127 mr_asprintf(command, "%s", "route -n | grep '^0.0.0.0' | awk '{print $2}'");
1128 mr_asprintf(nfs_client_defgw, "%s", call_program_and_get_last_line_of_output(command));
1129 mr_free(command);
1130
1131 if (strlen(nfs_dev) < 2) {
1132 fatal_error
1133 ("Unable to find ethN (eth0, eth1, ...) adapter via NFS mount you specified.");
1134 }
1135 /********
1136 * If the NFS device that found above is a bonded device,
1137 * we need to replace it with an ethN device or the
1138 * networking will not start during an NFS restore.
1139 *
1140 * If the NFS device in nfs_dev begins with the word "bond", or alb or aft
1141 * look for the corresponding slave ethN device and copy it to nfs_dev.
1142 * Using the common MAC address
1143 ********/
1144 if (!strncmp(nfs_dev, "bond", 4) || !strncmp(nfs_dev, "alb", 3) || !strncmp(nfs_dev, "aft", 3)) {
1145 log_to_screen("Found bonding device %s; looking for corresponding ethN slave device\n", nfs_dev);
1146 mr_asprintf(command, "%s", "ifconfig %s | awk '{print $5}' | head -n1", nfs_dev);
1147 mr_asprintf(mac_addr, "%s", call_program_and_get_last_line_of_output(command));
1148 mr_free(command);
1149
1150 mr_asprintf(command, "ifconfig | grep -E '%s' | grep -v '%s' | head -n1 | cut -d' ' -f1", mac_addr,nfs_dev);
1151 mr_free(mac_addr);
1152 mr_free(nfs_dev);
1153
1154 mr_asprintf(nfs_dev, "%s", call_program_and_get_last_line_of_output(command));
1155 mr_free(command);
1156
1157 log_to_screen("Replacing it with %s\n", nfs_dev);
1158 }
1159
1160 mr_asprintf(tmp, "%s/NFS-DEV", bkpinfo->tmpdir);
1161 write_one_liner_data_file(tmp, nfs_dev);
1162 mr_free(nfs_dev);
1163 mr_free(tmp);
1164
1165 mr_asprintf(tmp, "%s/NFS-CLIENT-IPADDR", bkpinfo->tmpdir);
1166 write_one_liner_data_file(tmp, nfs_client_ipaddr);
1167 mr_free(nfs_client_ipaddr);
1168 mr_free(tmp);
1169
1170 mr_asprintf(tmp, "%s/NFS-CLIENT-NETMASK", bkpinfo->tmpdir);
1171 write_one_liner_data_file(tmp, nfs_client_netmask);
1172 mr_free(nfs_client_netmask);
1173 mr_free(tmp);
1174
1175 mr_asprintf(tmp, "%s/NFS-CLIENT-BROADCAST", bkpinfo->tmpdir);
1176 write_one_liner_data_file(tmp, nfs_client_broadcast);
1177 mr_free(nfs_client_broadcast);
1178 mr_free(tmp);
1179
1180 mr_asprintf(tmp, "%s/NFS-CLIENT-DEFGW", bkpinfo->tmpdir);
1181 write_one_liner_data_file(tmp, nfs_client_defgw);
1182 mr_free(nfs_client_defgw);
1183 mr_free(tmp);
1184
1185 mr_asprintf(tmp, "%s/NFS-SERVER-IPADDR", bkpinfo->tmpdir);
1186 write_one_liner_data_file(tmp, nfs_server_ipaddr);
1187 mr_free(tmp);
1188 mr_free(nfs_server_ipaddr);
1189
1190 mr_asprintf(tmp, "%s/NFS-SERVER-MOUNT", bkpinfo->tmpdir);
1191 write_one_liner_data_file(tmp, bkpinfo->nfs_mount);
1192 mr_free(tmp);
1193 mr_free(nfs_mount);
1194
1195 mr_asprintf(tmp, "%s/NFS-SERVER-PATH", bkpinfo->tmpdir);
1196 write_one_liner_data_file(tmp, bkpinfo->nfs_remote_dir);
1197 mr_free(tmp);
1198
1199 mr_asprintf(tmp, "%s/ISO-PREFIX", bkpinfo->tmpdir);
1200 write_one_liner_data_file(tmp, bkpinfo->prefix);
1201 mr_free(tmp);
1202
1203 log_it("Finished storing NFS configuration");
1204}
1205
1206
1207/**
1208 * Determine the approximate number of media that the backup will take up,
1209 * and tell the user. The uncompressed size is estimated as size_of_all_biggiefiles_K()
1210 * plus (noof_sets x bkpinfo->optimal_set_size). The compression factor is estimated as
1211 * 2/3 for LZO and 1/2 for bzip2. The data is not saved anywhere. If there are any
1212 * "imagedevs", the estimate is not shown as it will be wildly inaccurate.
1213 * If there are more than 50 media estimated, the estimate will not be shown.
1214 * @param bkpinfo The backup information structure. Fields used:
1215 * - @c bkpinfo->backup_media_type
1216 * - @c bkpinfo->image_devs
1217 * - @c bkpinfo->media_size
1218 * - @c bkpinfo->optimal_set_size
1219 * - @c bkpinfo->use_lzo
1220 * @param noof_sets The number of filesets created.
1221 * @ingroup archiveGroup
1222 */
1223void
1224estimate_noof_media_required(long noof_sets)
1225{
1226 /*@ buffers *************** */
1227 char *tmp = NULL;
1228 char *mds = NULL;
1229
1230 /*@ long long ************* */
1231 long long scratchLL;
1232
1233 if (bkpinfo->media_size[1] <= 0) {
1234 log_to_screen("Number of media required: UNKNOWN");
1235 return;
1236 }
1237
1238 log_it("Estimating number of media required...");
1239 scratchLL =
1240 (long long) (noof_sets) * (long long) (bkpinfo->optimal_set_size)
1241 + (long long) (size_of_all_biggiefiles_K());
1242 scratchLL = (scratchLL / 1024) / bkpinfo->media_size[1];
1243 scratchLL++;
1244 if (bkpinfo->use_lzo) {
1245 scratchLL = (scratchLL * 2) / 3;
1246 } else if (bkpinfo->use_gzip) {
1247 scratchLL = (scratchLL * 2) / 3;
1248 } else {
1249 scratchLL = scratchLL / 2;
1250 }
1251 if (!scratchLL) {
1252 scratchLL++;
1253 }
1254 if (scratchLL <= 1) {
1255 mds = media_descriptor_string(bkpinfo->backup_media_type);
1256 mr_asprintf(tmp, "Your backup will probably occupy a single %s. Maybe two.", mds);
1257 mr_free(mds);
1258 } else if (scratchLL > 4) {
1259 mr_asprintf(tmp, "Your backup will occupy one meeeeellion media! (maybe %s)", number_to_text((int) (scratchLL + 1)));
1260 } else {
1261 mr_asprintf(tmp, "Your backup will occupy approximately %s media.", number_to_text((int) (scratchLL + 1)));
1262 }
1263 if (!bkpinfo->image_devs[0] && (scratchLL < 50)) {
1264 log_to_screen(tmp);
1265 }
1266 mr_free(tmp);
1267}
1268
1269
1270/**
1271 * Get the last suffix of @p instr.
1272 * If @p instr was "httpd.log.gz", we would return "gz".
1273 * @param instr The filename to get the suffix of.
1274 * @return The suffix (without a dot), or "" if none.
1275 * @note The returned string points to static storage that will be overwritten with each call.
1276 */
1277char *sz_last_suffix(char *instr)
1278{
1279 static char outstr[MAX_STR_LEN];
1280 char *p;
1281
1282 p = strrchr(instr, '.');
1283 if (!p) {
1284 outstr[0] = '\0';
1285 } else {
1286 strcpy(outstr, p);
1287 }
1288 return (outstr);
1289}
1290
1291
1292/**
1293 * Determine whether a file is compressed. This is done
1294 * by reading through the "do-not-compress-these" file distributed with Mondo.
1295 * @param filename The file to check.
1296 * @return TRUE if it's compressed, FALSE if not.
1297 */
1298bool is_this_file_compressed(char *filename)
1299{
1300 char do_not_compress_these[MAX_STR_LEN];
1301 char *tmp = NULL;
1302 char *p;
1303 char *q = NULL;
1304
1305 q = strrchr(filename, '.');
1306 if (q == NULL) {
1307 return (FALSE);
1308 }
1309
1310 mr_asprintf(tmp, "%s/do-not-compress-these", g_mondo_home);
1311 if (!does_file_exist(tmp)) {
1312 mr_free(tmp);
1313 return (FALSE);
1314 }
1315 /* BERLIOS: This is just plain WRONG !! */
1316 strcpy(do_not_compress_these,last_line_of_file(tmp));
1317 mr_free(tmp);
1318
1319 for (p = do_not_compress_these; p != NULL; p++) {
1320 mr_asprintf(tmp, "%s", p);
1321 if (strchr(tmp, ' ')) {
1322 *(strchr(tmp, ' ')) = '\0';
1323 }
1324 if (!strcmp(q, tmp)) {
1325 mr_free(tmp);
1326 return (TRUE);
1327 }
1328 if (!(p = strchr(p, ' '))) {
1329 break;
1330 }
1331 mr_free(tmp);
1332 }
1333 return (FALSE);
1334}
1335
1336
1337int mode_of_file(char *fname)
1338{
1339 struct stat buf;
1340
1341 if (lstat(fname, &buf)) {
1342 return (-1);
1343 } // error
1344 else {
1345 return (buf.st_mode);
1346 }
1347}
1348
1349
1350
1351
1352/**
1353 * Create a small script that mounts /boot, calls @c grub-install, and syncs the disks.
1354 * @param outfile Where to put the script.
1355 * @return 0 for success, 1 for failure.
1356 */
1357int make_grub_install_scriptlet(char *outfile)
1358{
1359 FILE *fout;
1360 char *tmp = NULL;
1361 int retval = 0;
1362
1363 if ((fout = fopen(outfile, "w"))) {
1364 fprintf(fout,
1365 "#!/bin/sh\n\nmount /boot > /dev/null 2> /dev/null\ngrub-install $@\nres=$?\nsync;sync;sync\nexit $res\n");
1366 paranoid_fclose(fout);
1367 log_msg(2, "Created %s", outfile);
1368 mr_asprintf(tmp, "chmod +x %s", outfile);
1369 paranoid_system(tmp);
1370 mr_free(tmp);
1371 retval = 0;
1372 } else {
1373 retval = 1;
1374 }
1375 return (retval);
1376}
1377
1378/* @} - end fileGroup */
Note: See TracBrowser for help on using the repository browser.