source: MondoRescue/trunk/mondo/mondo/mondoarchive/main.c@ 94

Last change on this file since 94 was 94, checked in by bcornec, 18 years ago

x86_64 support (begining)
find_and_store_mondoarchives_home interface change
libmondo-tools.c modified with asprintf

  • Property svn:keywords set to Id
File size: 16.6 KB
Line 
1/***************************************************************************
2 main.c - description
3 -------------------
4 begin : Fri Apr 19 16:40:35 EDT 2002
5 copyright : (C) 2002 by Stan Benoit
6 email : troff@nakedsoul.org
7 cvsid : $Id: main.c 94 2005-10-28 23:08:39Z bcornec $
8 ***************************************************************************/
9
10/***************************************************************************
11 * *
12 * This program is free software; you can redistribute it and/or modify *
13 * it under the terms of the GNU General Public License as published by *
14 * the Free Software Foundation; either version 2 of the License, or *
15 * (at your option) any later version. *
16 * *
17 ***************************************************************************/
18
19/** change log ****** MONDO-DEVEL
20
21
2212/10
23- disable stopping/starting of autofs
24
2510/01
26- update g_erase_tmpdir_and_scratchdir to delete user-specified tmpdir, scratchdir
27
2806/19
29- added AUX_VER
30
3106/14/2004
32- use mondorescue.iso, not mindi.iso
33
3402/10/2004
35- tell users where BusyBox's sources are
36
3711/14/2003
38- cleaned up logging at end#
39
4010/23
41- don't try to test-read tape ... That's already
42 handled by post_param_configuration()
43
4410/19
45- if your PATH var is too long, abort
46
4709/23
48- added some comments
49- malloc/free global strings in new subroutines - malloc_libmondo_global_strings()
50 and free_libmondo_global_strings() - which are in libmondo-tools.c
51- better magicdev support
52
53
5409/16
55- delete /var/log/partimagehack-debug.log at start of main()
56
5709/15
58- added askbootloader
59
6009/09
61- if your tape is weird, I'll pause between backup and verify
62- fixed silly bug in main() - re: say_at_end
63
6401/01 - 08/31
65- call 'dmesg -n1' at start, to shut the kernel logger up
66- moved g_erase_tmpdir_and_scratchdir to common/newt-specific.c
67- added 'don't panic' msg to start of logfile
68- added 'nice(20)' to main()
69- added lots of assert()'s and log_OS_error()'s
70- clean-up (Hugo)
71- make post_param_configuration() setup g_erase_tmpdir_and_scratchdir
72- if --version then print & exit quickly
73- re-run g_erase_tmpdir_and_scratchdir via system() at very end
74
75Year: 2002
76- if user goes root with 'su' instead of 'su -' then
77 workaround it by setting PATH correctly
78- wipe mondoarchive.log at very beginning
79- cleaned up code
80- if changed.files.N exists then copy to changes.files for display
81- run_program_and_log_output() now takes boolean operator to specify
82 whether it will log its activities in the event of _success_
83- added popup list of changed files
84- removed 'beta-quality' warnings
85- if kernel not found and mondo in graphics mode then popup and ask
86 for kernel path+filename
87- fixed tmp[] 'too small' bug
88- unmount and eject CD at end of verify cycle
89- moved interactively_obtain...() to libmondo-stream.c
90- wrote stuff to autodetect tape+cdrw+etc.
91- renamed from main.c to mondo-archive.c
92- fore+after warnings that this code is beta-quality
93- abort if running from ramdisk
94- remount floppy at end & unmount at start if Mandrake
95- took out #debug stuff
96- add 2> /dev/null to 'find' command
97- add support for bkpinfo->nonbootable_backup
98- add main function begin comment and debug conditional
99 compilation - Stan Benoit
100- add debug statements to build a run tree. Stan Benoit
101**** end change log **********/
102
103
104/**
105 * @file
106 * The main file for mondoarchive.
107 */
108
109/************************* #include statements *************************/
110#include <pthread.h>
111//#include <config.h>
112//#include "../../config.h"
113#include <stdio.h>
114#include <stdlib.h>
115#include "../common/my-stuff.h"
116#include "../common/mondostructures.h"
117#include "../common/libmondo.h"
118#include "mondo-cli-EXT.h"
119
120#ifndef VERSION
121#define VERSION AUX_VER
122#endif
123
124
125char g_version[] = VERSION;
126
127
128// for CVS
129//static char cvsid[] = "$Id: main.c 94 2005-10-28 23:08:39Z bcornec $";
130
131/************************* external variables *************************/
132extern void set_signals(int);
133extern int g_current_media_number;
134extern void register_pid(pid_t, char *);
135extern int g_currentY;
136extern bool g_text_mode;
137extern bool g_remount_cdrom_at_end, g_remount_floppy_at_end;
138extern char *g_mondo_home;
139extern char *g_tmpfs_mountpt;
140extern char *g_erase_tmpdir_and_scratchdir;
141extern char *g_cdrw_drive_is_here;
142static char *g_cdrom_drive_is_here = NULL;
143static char *g_dvd_drive_is_here = NULL;
144extern double g_kernel_version;
145
146/***************** global vars, used only by main.c ******************/
147bool g_skip_floppies;
148long diffs;
149
150extern t_bkptype g_backup_media_type;
151extern int g_loglevel;
152
153/****************** subroutines used only by main.c ******************/
154
155
156/**
157 * Print a "don't panic" message to the log and a message about the logfile to the screen.
158 */
159void welcome_to_mondoarchive()
160{
161 log_msg(0, "Mondo Archive v%s --- http://www.mondorescue.org",
162 VERSION);
163 log_msg(0, "running on %s architecture", get_architecture());
164 log_msg(0,
165 "-----------------------------------------------------------");
166 log_msg(0,
167 "NB: Mondo logs almost everything, so don't panic if you see");
168 log_msg(0,
169 "some error messages. Please read them carefully before you");
170 log_msg(0,
171 "decide to break out in a cold sweat. Despite (or perhaps");
172 log_msg(0,
173 "because of) the wealth of messages. some users are inclined");
174 log_msg(0,
175 "to stop reading this log. If Mondo stopped for some reason,");
176 log_msg(0,
177 "chances are it's detailed here. More than likely there's a");
178 log_msg(0,
179 "message at the very end of this log that will tell you what");
180 log_msg(0,
181 "is wrong. Please read it! -Devteam");
182 log_msg(0,
183 "-----------------------------------------------------------");
184
185 log_msg(0, "Zero...");
186 log_msg(1, "One...");
187 log_msg(2, "Two...");
188 log_msg(3, "Three...");
189 log_msg(4, "Four...");
190 log_msg(5, "Five...");
191 log_msg(6, "Six...");
192 log_msg(7, "Seven...");
193 log_msg(8, "Eight...");
194 printf("See %s for details of backup run.\n", MONDO_LOGFILE);
195}
196
197
198extern char *g_magicdev_command;
199
200/**
201 * Do whatever is necessary to insure a successful backup on the Linux distribution
202 * of the day.
203 */
204void distro_specific_kludges_at_start_of_mondoarchive()
205{
206 log_msg(2, "Unmounting old ramdisks if necessary");
207 stop_magicdev_if_necessary(); // for RH+Gnome users
208 run_program_and_log_output
209 ("umount `mount | grep shm | grep mondo | cut -d' ' -f3`", 2);
210 unmount_supermounts_if_necessary(); // for Mandrake users whose CD-ROMs are supermounted
211 // stop_autofs_if_necessary(); // for Xandros users
212 mount_boot_if_necessary(); // for Gentoo users with non-mounted /boot partitions
213 clean_up_KDE_desktop_if_necessary(); // delete various misc ~/.* files that get in the way
214}
215
216
217
218/**
219 * Undo whatever was done by distro_specific_kludges_at_start_of_mondoarchive().
220 */
221void distro_specific_kludges_at_end_of_mondoarchive()
222{
223// char tmp[500];
224 log_msg(2, "Restarting magicdev if necessary");
225 sync();
226 restart_magicdev_if_necessary(); // for RH+Gnome users
227
228 log_msg(2, "Restarting autofs if necessary");
229 sync();
230 // restart_autofs_if_necessary(); // for Xandros users
231
232 log_msg(2, "Restarting supermounts if necessary");
233 sync();
234 remount_supermounts_if_necessary(); // for Mandrake users
235
236 log_msg(2, "Unmounting /boot if necessary");
237 sync();
238 unmount_boot_if_necessary(); // for Gentoo users
239
240// log_msg( 2, "Cleaning up KDE desktop");
241// clean_up_KDE_desktop_if_necessary();
242}
243
244
245/*-----------------------------------------------------------*/
246
247
248
249/**
250 * Backup/verify the user's data.
251 * What did you think it did, anyway? :-)
252 */
253int main(int argc, char *argv[])
254{
255 struct s_bkpinfo *bkpinfo;
256 char *tmp;
257 int res, retval;
258 char *say_at_end;
259
260/* Make sure I'm root; abort if not */
261 if (getuid() != 0) {
262 fprintf(stderr, "Please run as root.\r\n");
263 exit(127);
264 }
265
266/* If -V, -v or --version then echo version no. and quit */
267 if (argc == 2
268 && (!strcmp(argv[argc - 1], "-v") || !strcmp(argv[argc - 1], "-V")
269 || !strcmp(argv[argc - 1], "--version"))) {
270 printf("mondoarchive v%s\nSee man page for help\n", VERSION);
271 exit(0);
272 }
273
274/* Initialize variables */
275
276 malloc_libmondo_global_strings();
277 malloc_string(tmp);
278 malloc_string(say_at_end);
279
280 res = 0;
281 retval = 0;
282 diffs = 0;
283 say_at_end[0] = '\0';
284 unlink("/var/log/partimagehack-debug.log");
285 printf("Initializing...\n");
286 if (!(bkpinfo = malloc(sizeof(struct s_bkpinfo)))) {
287 fatal_error("Cannot malloc bkpinfo");
288 }
289
290
291/* make sure PATH environmental variable allows access to mkfs, fdisk, etc. */
292 strncpy(tmp, getenv("PATH"), MAX_STR_LEN - 1);
293 tmp[MAX_STR_LEN - 1] = '\0';
294 if (strlen(tmp) >= MAX_STR_LEN - 33) {
295 fatal_error
296 ("Your PATH environmental variable is too long. Please shorten it.");
297 }
298 strcat(tmp, ":/sbin:/usr/sbin:/usr/local/sbin");
299 setenv("PATH", tmp, 1);
300
301/* Add the ARCH environment variable for ia64 purposes */
302 strncpy(tmp, get_architecture(), MAX_STR_LEN - 1);
303 tmp[MAX_STR_LEN - 1] = '\0';
304 setenv("ARCH", tmp, 1);
305
306 unlink(MONDO_LOGFILE);
307
308/* Configure the bkpinfo structure, global file paths, etc. */
309 g_main_pid = getpid();
310 log_msg(9, "This");
311
312 register_pid(g_main_pid, "mondo");
313 set_signals(TRUE); // catch SIGTERM, etc.
314 nice(10);
315 run_program_and_log_output("date", 1);
316 run_program_and_log_output("dmesg -n1", TRUE);
317
318 log_msg(9, "Next");
319 welcome_to_mondoarchive();
320 distro_specific_kludges_at_start_of_mondoarchive();
321 // BERLIOS : too early, bkpinfo is not initialized ??
322 //sprintf(g_erase_tmpdir_and_scratchdir, "rm -Rf %s %s", bkpinfo->tmpdir, bkpinfo->scratchdir);
323 g_kernel_version = get_kernel_version();
324
325 if (argc == 4 && !strcmp(argv[1], "getfattr")) {
326 g_loglevel = 10;
327 g_text_mode = TRUE;
328 setup_newt_stuff();
329 if (!strstr(argv[2], "filelist")) {
330 printf("Sorry - filelist goes first\n");
331 finish(1);
332 } else {
333 finish(get_fattr_list(argv[2], argv[3]));
334 }
335 finish(0);
336 }
337 if (argc == 4 && !strcmp(argv[1], "setfattr")) {
338 g_loglevel = 10;
339// chdir("/tmp");
340 g_text_mode = TRUE;
341 setup_newt_stuff();
342 finish(set_fattr_list(argv[2], argv[3]));
343 }
344
345 if (argc == 3 && !strcmp(argv[1], "wildcards")) {
346 g_loglevel = 10;
347 g_text_mode = TRUE;
348 setup_newt_stuff();
349 turn_wildcard_chars_into_literal_chars(tmp, argv[2]);
350 printf("in=%s; out=%s\n", argv[2], tmp);
351 finish(1);
352 }
353
354 if (argc == 4 && !strcmp(argv[1], "getfacl")) {
355 g_loglevel = 10;
356 g_text_mode = TRUE;
357 setup_newt_stuff();
358 if (!strstr(argv[2], "filelist")) {
359 printf("Sorry - filelist goes first\n");
360 finish(1);
361 } else {
362 finish(get_acl_list(argv[2], argv[3]));
363 }
364 finish(0);
365 }
366 if (argc == 4 && !strcmp(argv[1], "setfacl")) {
367 g_loglevel = 10;
368// chdir("/tmp");
369 g_text_mode = TRUE;
370 setup_newt_stuff();
371 finish(set_acl_list(argv[2], argv[3]));
372 }
373
374 if (argc > 2 && !strcmp(argv[1], "find-cd")) {
375 g_loglevel = 10;
376 g_text_mode = TRUE;
377 setup_newt_stuff();
378 if (find_cdrw_device(tmp)) {
379 printf("Failed to find CDR-RW drive\n");
380 } else {
381 printf("CD-RW is at %s\n", tmp);
382 }
383 tmp[0] = '\0';
384 if (find_cdrom_device(tmp, atoi(argv[2]))) {
385 printf("Failed to find CD-ROM drive\n");
386 } else {
387 printf("CD-ROM is at %s\n", tmp);
388 }
389 finish(0);
390 }
391
392 if (argc > 2 && !strcmp(argv[1], "find-dvd")) {
393 g_loglevel = 10;
394 g_text_mode = TRUE;
395 setup_newt_stuff();
396 if (find_dvd_device(tmp, atoi(argv[2]))) {
397 printf("Failed to find DVD drive\n");
398 } else {
399 printf("DVD is at %s\n", tmp);
400 }
401 finish(0);
402 }
403
404 if (argc > 2 && !strcmp(argv[1], "disksize")) {
405 printf("%s --> %ld\n", argv[2], get_phys_size_of_drive(argv[2]));
406 finish(0);
407 }
408 if (argc > 2 && !strcmp(argv[1], "test-dev")) {
409 if (is_dev_an_NTFS_dev(argv[2])) {
410 printf("%s is indeed an NTFS dev\n", argv[2]);
411 } else {
412 printf("%s is _not_ an NTFS dev\n", argv[2]);
413 }
414 finish(0);
415 }
416
417 if (pre_param_configuration(bkpinfo)) {
418 fatal_error
419 ("Pre-param initialization phase failed. Please review the error messages above, make the specified changes, then try again. Exiting...");
420 }
421
422/* Process command line, if there is one. If not, ask user for info. */
423 if (argc == 1) {
424 g_text_mode = FALSE;
425 setup_newt_stuff();
426 res = interactively_obtain_media_parameters_from_user(bkpinfo, TRUE); /* yes, archiving */
427 if (res) {
428 fatal_error
429 ("Syntax error. Please review the parameters you have supplied and try again.");
430 }
431 } else {
432 res = handle_incoming_parameters(argc, argv, bkpinfo);
433 if (res) {
434 printf
435 ("Errors were detected in the command line you supplied.\n");
436 printf("Please review the log file - " MONDO_LOGFILE "\n");
437 log_msg(1, "Mondoarchive will now exit.");
438 finish(1);
439 }
440 setup_newt_stuff();
441 }
442
443/* Finish configuring global structures */
444 if (post_param_configuration(bkpinfo)) {
445 fatal_error
446 ("Post-param initialization phase failed. Perhaps bad parameters were supplied to mondoarchive? Please review the documentation, error messages and logs. Exiting...");
447 }
448
449 log_to_screen
450 ("BusyBox's sources are available from http://www.busybox.net");
451 sprintf(g_erase_tmpdir_and_scratchdir, "rm -Rf %s %s", bkpinfo->tmpdir,
452 bkpinfo->scratchdir);
453
454 /* If we're meant to backup then backup */
455 if (bkpinfo->backup_data) {
456/*
457 log_to_screen("INFERNAL PORPOISES");
458 res = archive_this_fileset_with_star(bkpinfo, "/tmp/filelist.0", "/tmp/0.star.bz2", 0);
459 log_to_screen("atfws returned %d", res);
460 finish(0);
461*/
462 res = backup_data(bkpinfo);
463 retval += res;
464 if (res) {
465 strcat(say_at_end,
466 "Data archived. Please check the logs, just as a precaution. ");
467 } else {
468 strcat(say_at_end, "Data archived OK. ");
469 }
470 }
471
472/* If we're meant to verify then verify */
473 if (bkpinfo->verify_data) {
474 res = verify_data(bkpinfo);
475 if (res < 0) {
476 sprintf(tmp, "%d difference%c found.", -res,
477 (-res != 1) ? 's' : ' ');
478 strcat(say_at_end, tmp);
479 log_to_screen(tmp);
480 res = 0;
481 }
482 retval += res;
483 }
484
485/* Offer to write floppy disk images to physical disks */
486 if (bkpinfo->backup_data && !g_skip_floppies) {
487 res = offer_to_write_boot_floppies_to_physical_disks(bkpinfo);
488 retval += res;
489// res = offer_to_write_boot_ISO_to_physical_CD(bkpinfo);
490// retval += res;
491 }
492
493/* Report result of entire operation (success? errors?) */
494 if (!retval) {
495 mvaddstr_and_log_it(g_currentY++, 0,
496 "Backup and/or verify ran to completion. Everything appears to be fine.");
497 } else {
498 mvaddstr_and_log_it(g_currentY++, 0,
499 "Backup and/or verify ran to completion. However, errors did occur.");
500 }
501
502 if (does_file_exist("/root/images/mindi/mondorescue.iso")) {
503 log_to_screen
504 ("/root/images/mindi/mondorescue.iso, a boot/utility CD, is available if you want it.");
505 }
506
507
508 if (length_of_file("/tmp/changed.files") > 2) {
509 if (g_text_mode) {
510 log_to_screen
511 ("Type 'less /tmp/changed.files' to see which files don't match the archives");
512 } else {
513 log_msg(1,
514 "Type 'less /tmp/changed.files' to see which files don't match the archives");
515 log_msg(2, "Calling popup_changelist_from_file()");
516 popup_changelist_from_file("/tmp/changed.files");
517 log_msg(2, "Returned from popup_changelist_from_file()");
518 }
519 } else {
520 unlink("/tmp/changed.files");
521 }
522 log_to_screen(say_at_end);
523 sprintf(tmp, "umount %s/tmpfs", bkpinfo->tmpdir);
524 run_program_and_log_output(tmp, TRUE);
525 run_program_and_log_output(g_erase_tmpdir_and_scratchdir, TRUE);
526
527 run_program_and_log_output("mount", 2);
528
529 if (bkpinfo->please_dont_eject) {
530 log_msg(5, "Not ejecting at end. Fair enough.");
531 } else {
532 log_msg(5, "Ejecting at end.");
533 if (!find_cdrom_device(tmp, FALSE) || !find_dvd_device(tmp, FALSE)) {
534 log_msg(1, "Ejecting %s", tmp);
535 eject_device(tmp);
536 }
537 }
538
539 system("rm -f /var/cache/mondo-archive/last-backup.aborted");
540 system("rm -Rf /tmp.mondo.* /mondo.scratch.*");
541 if (!retval) {
542 printf("Mondoarchive ran OK.\n");
543 } else {
544 printf("Errors occurred during backup. Please check logfile.\n");
545 }
546 distro_specific_kludges_at_end_of_mondoarchive();
547 register_pid(0, "mondo");
548 set_signals(FALSE);
549 chdir("/tmp"); // just in case there's something wrong with g_erase_tmpdir_and_scratchdir
550 system(g_erase_tmpdir_and_scratchdir);
551 free_libmondo_global_strings();
552 paranoid_free(say_at_end);
553 paranoid_free(tmp);
554 paranoid_free(bkpinfo);
555
556 unlink("/tmp/filelist.full");
557 unlink("/tmp/filelist.full.gz");
558
559 if (!g_cdrom_drive_is_here) {
560 log_msg(10, "FYI, g_cdrom_drive_is_here was never used");
561 }
562 if (!g_dvd_drive_is_here) {
563 log_msg(10, "FYI, g_dvd_drive_is_here was never used");
564 }
565
566 run_program_and_log_output("date", 1);
567
568 if (!g_text_mode) {
569 popup_and_OK
570 ("Mondo Archive has finished its run. Please press ENTER to return to the shell prompt.");
571 log_to_screen("See %s for details of backup run.", MONDO_LOGFILE);
572 finish(retval);
573 } else {
574 printf("See %s for details of backup run.\n", MONDO_LOGFILE);
575 exit(retval);
576 }
577
578 return EXIT_SUCCESS;
579}
Note: See TracBrowser for help on using the repository browser.