source: MondoRescue/branches/2.05/mondo/mondo/mondoarchive/main.c@ 195

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

remove nice of mondoarchive + Changelogs update

  • Property svn:keywords set to Id
File size: 16.3 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 195 2005-12-13 18:10:50Z 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 195 2005-12-13 18:10:50Z 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 char *g_boot_mountpt;
138extern bool g_remount_cdrom_at_end, g_remount_floppy_at_end;
139extern char *g_mondo_home;
140extern char *g_tmpfs_mountpt;
141extern char *g_erase_tmpdir_and_scratchdir;
142extern char *g_cdrw_drive_is_here;
143static char *g_cdrom_drive_is_here = NULL;
144static char *g_dvd_drive_is_here = NULL;
145extern double g_kernel_version;
146
147/***************** global vars, used only by main.c ******************/
148bool g_skip_floppies;
149long diffs;
150
151extern t_bkptype g_backup_media_type;
152extern int g_loglevel;
153
154/****************** subroutines used only by main.c ******************/
155
156
157/**
158 * Print a "don't panic" message to the log and a message about the logfile to the screen.
159 */
160void welcome_to_mondoarchive()
161{
162 log_msg(0, "Mondo Archive v%s --- http://www.mondorescue.org",
163 VERSION);
164 log_msg(0, "running on %s architecture", get_architecture());
165 log_msg(0,
166 "-----------------------------------------------------------");
167 log_msg(0,
168 "NB: Mondo logs almost everything, so don't panic if you see");
169 log_msg(0,
170 "some error messages. Please read them carefully before you");
171 log_msg(0,
172 "decide to break out in a cold sweat. Despite (or perhaps");
173 log_msg(0,
174 "because of) the wealth of messages. some users are inclined");
175 log_msg(0,
176 "to stop reading this log. If Mondo stopped for some reason,");
177 log_msg(0,
178 "chances are it's detailed here. More than likely there's a");
179 log_msg(0,
180 "message at the very end of this log that will tell you what");
181 log_msg(0,
182 "is wrong. Please read it! -Devteam");
183 log_msg(0,
184 "-----------------------------------------------------------");
185
186 log_msg(0, "Zero...");
187 log_msg(1, "One...");
188 log_msg(2, "Two...");
189 log_msg(3, "Three...");
190 log_msg(4, "Four...");
191 log_msg(5, "Five...");
192 log_msg(6, "Six...");
193 log_msg(7, "Seven...");
194 log_msg(8, "Eight...");
195 printf("See %s for details of backup run.\n", MONDO_LOGFILE);
196}
197
198
199extern char *g_magicdev_command;
200
201/**
202 * Do whatever is necessary to insure a successful backup on the Linux distribution
203 * of the day.
204 */
205void distro_specific_kludges_at_start_of_mondoarchive()
206{
207 log_msg(2, "Unmounting old ramdisks if necessary");
208 stop_magicdev_if_necessary(); // for RH+Gnome users
209 run_program_and_log_output
210 ("umount `mount | grep shm | grep mondo | cut -d' ' -f3`", 2);
211 unmount_supermounts_if_necessary(); // for Mandrake users whose CD-ROMs are supermounted
212 // stop_autofs_if_necessary(); // for Xandros users
213 mount_boot_if_necessary(); // for Gentoo users with non-mounted /boot partitions
214 clean_up_KDE_desktop_if_necessary(); // delete various misc ~/.* files that get in the way
215}
216
217
218
219/**
220 * Undo whatever was done by distro_specific_kludges_at_start_of_mondoarchive().
221 */
222void distro_specific_kludges_at_end_of_mondoarchive()
223{
224// char tmp[500];
225 log_msg(2, "Restarting magicdev if necessary");
226 sync();
227 restart_magicdev_if_necessary(); // for RH+Gnome users
228
229 log_msg(2, "Restarting autofs if necessary");
230 sync();
231 // restart_autofs_if_necessary(); // for Xandros users
232
233 log_msg(2, "Restarting supermounts if necessary");
234 sync();
235 remount_supermounts_if_necessary(); // for Mandrake users
236
237 log_msg(2, "Unmounting /boot if necessary");
238 sync();
239 unmount_boot_if_necessary(); // for Gentoo users
240
241// log_msg( 2, "Cleaning up KDE desktop");
242// clean_up_KDE_desktop_if_necessary();
243}
244
245
246/*-----------------------------------------------------------*/
247
248
249
250/**
251 * Backup/verify the user's data.
252 * What did you think it did, anyway? :-)
253 */
254int main(int argc, char *argv[])
255{
256 struct s_bkpinfo *bkpinfo;
257 char *tmp;
258 int res, retval;
259 char *say_at_end;
260
261/* Make sure I'm root; abort if not */
262 if (getuid() != 0) {
263 fprintf(stderr, "Please run as root.\r\n");
264 exit(127);
265 }
266
267/* If -V, -v or --version then echo version no. and quit */
268 if (argc == 2
269 && (!strcmp(argv[argc - 1], "-v") || !strcmp(argv[argc - 1], "-V")
270 || !strcmp(argv[argc - 1], "--version"))) {
271 printf("mondoarchive v%s\nSee man page for help\n", VERSION);
272 exit(0);
273 }
274
275/* Initialize variables */
276
277 malloc_libmondo_global_strings();
278 malloc_string(tmp);
279 malloc_string(say_at_end);
280
281 res = 0;
282 retval = 0;
283 diffs = 0;
284 say_at_end[0] = '\0';
285 unlink("/var/log/partimagehack-debug.log");
286 printf("Initializing...\n");
287 if (!(bkpinfo = malloc(sizeof(struct s_bkpinfo)))) {
288 fatal_error("Cannot malloc bkpinfo");
289 }
290
291
292/* make sure PATH environmental variable allows access to mkfs, fdisk, etc. */
293 strncpy(tmp, getenv("PATH"), MAX_STR_LEN - 1);
294 tmp[MAX_STR_LEN - 1] = '\0';
295 if (strlen(tmp) >= MAX_STR_LEN - 33) {
296 fatal_error
297 ("Your PATH environmental variable is too long. Please shorten it.");
298 }
299 strcat(tmp, ":/sbin:/usr/sbin:/usr/local/sbin");
300 setenv("PATH", tmp, 1);
301
302/* Add the ARCH environment variable for ia64 purposes */
303 strncpy(tmp, get_architecture(), MAX_STR_LEN - 1);
304 tmp[MAX_STR_LEN - 1] = '\0';
305 setenv("ARCH", tmp, 1);
306
307 unlink(MONDO_LOGFILE);
308
309/* Configure the bkpinfo structure, global file paths, etc. */
310 g_main_pid = getpid();
311 log_msg(9, "This");
312
313 register_pid(g_main_pid, "mondo");
314 set_signals(TRUE); // catch SIGTERM, etc.
315 run_program_and_log_output("dmesg -n1", TRUE);
316
317 log_msg(9, "Next");
318 welcome_to_mondoarchive();
319 distro_specific_kludges_at_start_of_mondoarchive();
320 sprintf(g_erase_tmpdir_and_scratchdir, "rm -Rf %s %s", bkpinfo->tmpdir,
321 bkpinfo->scratchdir);
322 g_kernel_version = get_kernel_version();
323
324 if (argc == 4 && !strcmp(argv[1], "getfattr")) {
325 g_loglevel = 10;
326 g_text_mode = TRUE;
327 setup_newt_stuff();
328 if (!strstr(argv[2], "filelist")) {
329 printf("Sorry - filelist goes first\n");
330 finish(1);
331 } else {
332 finish(get_fattr_list(argv[2], argv[3]));
333 }
334 finish(0);
335 }
336 if (argc == 4 && !strcmp(argv[1], "setfattr")) {
337 g_loglevel = 10;
338// chdir("/tmp");
339 g_text_mode = TRUE;
340 setup_newt_stuff();
341 finish(set_fattr_list(argv[2], argv[3]));
342 }
343
344 if (argc == 3 && !strcmp(argv[1], "wildcards")) {
345 g_loglevel = 10;
346 g_text_mode = TRUE;
347 setup_newt_stuff();
348 turn_wildcard_chars_into_literal_chars(tmp, argv[2]);
349 printf("in=%s; out=%s\n", argv[2], tmp);
350 finish(1);
351 }
352
353 if (argc == 4 && !strcmp(argv[1], "getfacl")) {
354 g_loglevel = 10;
355 g_text_mode = TRUE;
356 setup_newt_stuff();
357 if (!strstr(argv[2], "filelist")) {
358 printf("Sorry - filelist goes first\n");
359 finish(1);
360 } else {
361 finish(get_acl_list(argv[2], argv[3]));
362 }
363 finish(0);
364 }
365 if (argc == 4 && !strcmp(argv[1], "setfacl")) {
366 g_loglevel = 10;
367// chdir("/tmp");
368 g_text_mode = TRUE;
369 setup_newt_stuff();
370 finish(set_acl_list(argv[2], argv[3]));
371 }
372
373 if (argc > 2 && !strcmp(argv[1], "find-cd")) {
374 g_loglevel = 10;
375 g_text_mode = TRUE;
376 setup_newt_stuff();
377 if (find_cdrw_device(tmp)) {
378 printf("Failed to find CDR-RW drive\n");
379 } else {
380 printf("CD-RW is at %s\n", tmp);
381 }
382 tmp[0] = '\0';
383 if (find_cdrom_device(tmp, atoi(argv[2]))) {
384 printf("Failed to find CD-ROM drive\n");
385 } else {
386 printf("CD-ROM is at %s\n", tmp);
387 }
388 finish(0);
389 }
390
391 if (argc > 2 && !strcmp(argv[1], "find-dvd")) {
392 g_loglevel = 10;
393 g_text_mode = TRUE;
394 setup_newt_stuff();
395 if (find_dvd_device(tmp, atoi(argv[2]))) {
396 printf("Failed to find DVD drive\n");
397 } else {
398 printf("DVD is at %s\n", tmp);
399 }
400 finish(0);
401 }
402
403 if (argc > 2 && !strcmp(argv[1], "disksize")) {
404 printf("%s --> %ld\n", argv[2], get_phys_size_of_drive(argv[2]));
405 finish(0);
406 }
407 if (argc > 2 && !strcmp(argv[1], "test-dev")) {
408 if (is_dev_an_NTFS_dev(argv[2])) {
409 printf("%s is indeed an NTFS dev\n", argv[2]);
410 } else {
411 printf("%s is _not_ an NTFS dev\n", argv[2]);
412 }
413 finish(0);
414 }
415
416 if (pre_param_configuration(bkpinfo)) {
417 fatal_error
418 ("Pre-param initialization phase failed. Please review the error messages above, make the specified changes, then try again. Exiting...");
419 }
420
421/* Process command line, if there is one. If not, ask user for info. */
422 if (argc == 1) {
423 g_text_mode = FALSE;
424 setup_newt_stuff();
425 res = interactively_obtain_media_parameters_from_user(bkpinfo, TRUE); /* yes, archiving */
426 if (res) {
427 fatal_error
428 ("Syntax error. Please review the parameters you have supplied and try again.");
429 }
430 } else {
431 res = handle_incoming_parameters(argc, argv, bkpinfo);
432 if (res) {
433 printf
434 ("Errors were detected in the command line you supplied.\n");
435 printf("Please review the log file - " MONDO_LOGFILE "\n");
436 log_msg(1, "Mondoarchive will now exit.");
437 finish(1);
438 }
439 setup_newt_stuff();
440 }
441
442/* Finish configuring global structures */
443 if (post_param_configuration(bkpinfo)) {
444 fatal_error
445 ("Post-param initialization phase failed. Perhaps bad parameters were supplied to mondoarchive? Please review the documentation, error messages and logs. Exiting...");
446 }
447
448 log_to_screen
449 ("BusyBox's sources are available from http://www.busybox.net");
450 sprintf(g_erase_tmpdir_and_scratchdir, "rm -Rf %s %s", bkpinfo->tmpdir,
451 bkpinfo->scratchdir);
452
453 /* If we're meant to backup then backup */
454 if (bkpinfo->backup_data) {
455/*
456 log_to_screen("INFERNAL PORPOISES");
457 res = archive_this_fileset_with_star(bkpinfo, "/tmp/filelist.0", "/tmp/0.star.bz2", 0);
458 log_to_screen("atfws returned %d", res);
459 finish(0);
460*/
461 res = backup_data(bkpinfo);
462 retval += res;
463 if (res) {
464 strcat(say_at_end,
465 "Data archived. Please check the logs, just as a precaution. ");
466 } else {
467 strcat(say_at_end, "Data archived OK. ");
468 }
469 }
470
471/* If we're meant to verify then verify */
472 if (bkpinfo->verify_data) {
473 res = verify_data(bkpinfo);
474 if (res < 0) {
475 sprintf(tmp, "%d difference%c found.", -res,
476 (-res != 1) ? 's' : ' ');
477 strcat(say_at_end, tmp);
478 log_to_screen(tmp);
479 res = 0;
480 }
481 retval += res;
482 }
483
484/* Offer to write floppy disk images to physical disks */
485 if (bkpinfo->backup_data && !g_skip_floppies) {
486 res = offer_to_write_boot_floppies_to_physical_disks(bkpinfo);
487 retval += res;
488// res = offer_to_write_boot_ISO_to_physical_CD(bkpinfo);
489// retval += res;
490 }
491
492/* Report result of entire operation (success? errors?) */
493 if (!retval) {
494 mvaddstr_and_log_it(g_currentY++, 0,
495 "Backup and/or verify ran to completion. Everything appears to be fine.");
496 } else {
497 mvaddstr_and_log_it(g_currentY++, 0,
498 "Backup and/or verify ran to completion. However, errors did occur.");
499 }
500
501 if (does_file_exist("/root/images/mindi/mondorescue.iso")) {
502 log_to_screen
503 ("/root/images/mindi/mondorescue.iso, a boot/utility CD, is available if you want it.");
504 }
505
506
507 if (length_of_file("/tmp/changed.files") > 2) {
508 if (g_text_mode) {
509 log_to_screen
510 ("Type 'less /tmp/changed.files' to see which files don't match the archives");
511 } else {
512 log_msg(1,
513 "Type 'less /tmp/changed.files' to see which files don't match the archives");
514 log_msg(2, "Calling popup_changelist_from_file()");
515 popup_changelist_from_file("/tmp/changed.files");
516 log_msg(2, "Returned from popup_changelist_from_file()");
517 }
518 } else {
519 unlink("/tmp/changed.files");
520 }
521 log_to_screen(say_at_end);
522 sprintf(tmp, "umount %s/tmpfs", bkpinfo->tmpdir);
523 run_program_and_log_output(tmp, TRUE);
524 run_program_and_log_output(g_erase_tmpdir_and_scratchdir, TRUE);
525
526 run_program_and_log_output("mount", 2);
527
528 system("rm -f /var/cache/mondo-archive/last-backup.aborted");
529 system("rm -Rf /tmp.mondo.* /mondo.scratch.*");
530 if (!retval) {
531 printf("Mondoarchive ran OK.\n");
532 } else {
533 printf("Errors occurred during backup. Please check logfile.\n");
534 }
535 distro_specific_kludges_at_end_of_mondoarchive();
536 register_pid(0, "mondo");
537 set_signals(FALSE);
538 chdir("/tmp"); // just in case there's something wrong with g_erase_tmpdir_and_scratchdir
539 system(g_erase_tmpdir_and_scratchdir);
540 free_libmondo_global_strings();
541 paranoid_free(say_at_end);
542 paranoid_free(tmp);
543 paranoid_free(bkpinfo);
544
545 unlink("/tmp/filelist.full");
546 unlink("/tmp/filelist.full.gz");
547
548 if (!g_cdrom_drive_is_here) {
549 log_msg(10, "FYI, g_cdrom_drive_is_here was never used");
550 }
551 if (!g_dvd_drive_is_here) {
552 log_msg(10, "FYI, g_dvd_drive_is_here was never used");
553 }
554
555 if (!g_text_mode) {
556 popup_and_OK
557 ("Mondo Archive has finished its run. Please press ENTER to return to the shell prompt.");
558 log_to_screen("See %s for details of backup run.", MONDO_LOGFILE);
559 finish(retval);
560 } else {
561 printf("See %s for details of backup run.\n", MONDO_LOGFILE);
562 exit(retval);
563 }
564
565 return EXIT_SUCCESS;
566}
Note: See TracBrowser for help on using the repository browser.