source: MondoRescue/branches/2.2.10/mondo/src/mondoarchive/mondoarchive.c@ 2291

Last change on this file since 2291 was 2291, checked in by Bruno Cornec, 15 years ago
  • Fix a printing error in mindi for the tar command
  • Fix all mr_asprintf which had no second param as a string

(report bug fix done originaly in 2.2.9)

  • Property svn:keywords set to Id
File size: 12.6 KB
RevLine 
[1]1/***************************************************************************
[2211]2$Id: mondoarchive.c 2291 2009-07-22 12:11:26Z bruno $
3* The main file for mondoarchive.
4*/
[1]5
6/************************* #include statements *************************/
7#include <pthread.h>
8#include <stdio.h>
9#include <stdlib.h>
[1930]10#include "my-stuff.h"
[2211]11#include "mr_mem.h"
[1]12#include "../common/mondostructures.h"
13#include "../common/libmondo.h"
[1917]14#include "../common/libmondo-cli-EXT.h"
[1383]15#include "../common/libmondo-tools-EXT.h"
[1315]16#include "mondoarchive.h"
[1]17
18// for CVS
[128]19//static char cvsid[] = "$Id: mondoarchive.c 2291 2009-07-22 12:11:26Z bruno $";
[1]20
21/************************* external variables *************************/
22extern void set_signals(int);
23extern int g_current_media_number;
24extern int g_currentY;
25extern bool g_text_mode;
26extern char *g_boot_mountpt;
[1736]27extern bool g_remount_floppy_at_end;
[1]28extern char *g_cdrw_drive_is_here;
[128]29static char *g_cdrom_drive_is_here = NULL;
30static char *g_dvd_drive_is_here = NULL;
[1]31extern double g_kernel_version;
32
33/***************** global vars, used only by main.c ******************/
34long diffs;
35
36extern t_bkptype g_backup_media_type;
37extern int g_loglevel;
38
[1917]39/**
40 * Whether we're restoring from ISOs. Obviously not, since this is the
41 * backup program.
42 * @note You @b MUST declare this variable somewhere in your program if
43 * you use libmondo. Otherwise the link will fail.
44 * @ingroup globalGroup
45 */
46bool g_ISO_restore_mode = FALSE;
47
48/* Do we use extended attributes and acl ?
49 * * By default no, use --acl & --attr options to force their usage */
50char *g_getfacl = NULL;
51char *g_getfattr = NULL;
52
[1645]53/* Reference to global bkpinfo */
54struct s_bkpinfo *bkpinfo;
55
[2211]56/* No cleanup for the moment */
57void (*mr_cleanup)(void) = NULL;
58
[1967]59/* To be coded */
60void free_MR_global_filenames(void) {
61}
62
[1]63/****************** subroutines used only by main.c ******************/
64
65
66/**
67 * Print a "don't panic" message to the log and a message about the logfile to the screen.
68 */
[1236]69void welcome_to_mondoarchive(void)
[1]70{
[1375]71 char *tmp = NULL;
72
[128]73 log_msg(0, "Mondo Archive v%s --- http://www.mondorescue.org",
[251]74 PACKAGE_VERSION);
[1375]75 log_msg(0, "running %s binaries", get_architecture());
76 tmp = get_uname_m();
77 log_msg(0, "running on %s architecture", tmp);
[2241]78 mr_free(tmp);
[128]79 log_msg(0,
80 "-----------------------------------------------------------");
81 log_msg(0,
82 "NB: Mondo logs almost everything, so don't panic if you see");
83 log_msg(0,
84 "some error messages. Please read them carefully before you");
85 log_msg(0,
86 "decide to break out in a cold sweat. Despite (or perhaps");
87 log_msg(0,
88 "because of) the wealth of messages. some users are inclined");
89 log_msg(0,
90 "to stop reading this log. If Mondo stopped for some reason,");
91 log_msg(0,
92 "chances are it's detailed here. More than likely there's a");
93 log_msg(0,
94 "message at the very end of this log that will tell you what");
95 log_msg(0,
96 "is wrong. Please read it! -Devteam");
97 log_msg(0,
98 "-----------------------------------------------------------");
[1]99
[128]100 log_msg(0, "Zero...");
101 log_msg(1, "One...");
102 log_msg(2, "Two...");
103 log_msg(3, "Three...");
104 log_msg(4, "Four...");
105 log_msg(5, "Five...");
106 log_msg(6, "Six...");
107 log_msg(7, "Seven...");
108 log_msg(8, "Eight...");
109 printf("See %s for details of backup run.\n", MONDO_LOGFILE);
[1]110}
111
112
113extern char *g_magicdev_command;
114
115/**
116 * Do whatever is necessary to insure a successful backup on the Linux distribution
117 * of the day.
118 */
[1236]119void distro_specific_kludges_at_start_of_mondoarchive(void)
[1]120{
[128]121 log_msg(2, "Unmounting old ramdisks if necessary");
122 stop_magicdev_if_necessary(); // for RH+Gnome users
[2030]123 /*
[128]124 run_program_and_log_output
125 ("umount `mount | grep shm | grep mondo | cut -d' ' -f3`", 2);
[2030]126 */
[128]127 unmount_supermounts_if_necessary(); // for Mandrake users whose CD-ROMs are supermounted
128 // stop_autofs_if_necessary(); // for Xandros users
129 mount_boot_if_necessary(); // for Gentoo users with non-mounted /boot partitions
130 clean_up_KDE_desktop_if_necessary(); // delete various misc ~/.* files that get in the way
[1]131}
132
133
134
135/**
136 * Undo whatever was done by distro_specific_kludges_at_start_of_mondoarchive().
137 */
[1236]138void distro_specific_kludges_at_end_of_mondoarchive(void)
[1]139{
[128]140 log_msg(2, "Restarting magicdev if necessary");
141 sync();
142 restart_magicdev_if_necessary(); // for RH+Gnome users
[1]143
[128]144 log_msg(2, "Restarting autofs if necessary");
145 sync();
146 // restart_autofs_if_necessary(); // for Xandros users
[1]147
[128]148 log_msg(2, "Restarting supermounts if necessary");
149 sync();
150 remount_supermounts_if_necessary(); // for Mandrake users
[1]151
[128]152 log_msg(2, "Unmounting /boot if necessary");
153 sync();
154 unmount_boot_if_necessary(); // for Gentoo users
[1]155
156// log_msg( 2, "Cleaning up KDE desktop");
157// clean_up_KDE_desktop_if_necessary();
158}
159
160
161/**
162 * Backup/verify the user's data.
163 * What did you think it did, anyway? :-)
164 */
[128]165int main(int argc, char *argv[])
[1]166{
[2241]167 char *tmp = NULL;
[2113]168 char *tmp1 = NULL;
[128]169 int res, retval;
[2211]170 char *say_at_end = NULL;
[1]171
172/* Make sure I'm root; abort if not */
[128]173 if (getuid() != 0) {
[541]174 fprintf(stderr, "Please run as root.\r\n");
[128]175 exit(127);
176 }
[1]177
178/* If -V, -v or --version then echo version no. and quit */
[128]179 if (argc == 2
180 && (!strcmp(argv[argc - 1], "-v") || !strcmp(argv[argc - 1], "-V")
181 || !strcmp(argv[argc - 1], "--version"))) {
[541]182 printf("mondoarchive v%s\nSee man page for help\n", PACKAGE_VERSION);
[128]183 exit(0);
184 }
[1]185
186/* Initialize variables */
187
[1652]188 printf("Initializing...\n");
189 if (!(bkpinfo = malloc(sizeof(struct s_bkpinfo)))) {
190 fatal_error("Cannot malloc bkpinfo");
191 }
192 reset_bkpinfo();
[1]193
[128]194 res = 0;
195 retval = 0;
196 diffs = 0;
[1652]197 malloc_libmondo_global_strings();
[1]198
[810]199 /* initialize log file with time stamp */
200 unlink(MONDO_LOGFILE);
[813]201 log_msg(0, "Time started: %s", mr_date());
[1]202
[807]203 /* make sure PATH environmental variable allows access to mkfs, fdisk, etc. */
[2211]204 mr_asprintf(&tmp1,"%s:/sbin:/usr/sbin:/usr/local/sbin",getenv("PATH"));
[2113]205 setenv("PATH", tmp1, 1);
206 paranoid_free(tmp1);
[1]207
[807]208 /* Add the ARCH environment variable for ia64 purposes */
[2211]209 mr_asprintf(&tmp1,"%s",get_architecture());
[2113]210 setenv("ARCH", tmp1, 1);
211 paranoid_free(tmp1);
[1]212
[424]213 /* Add MONDO_SHARE environment variable for mindi */
214 setenv_mondo_share();
[258]215
[807]216 /* Configure the bkpinfo structure, global file paths, etc. */
[128]217 g_main_pid = getpid();
218 log_msg(9, "This");
[1]219
[128]220 set_signals(TRUE); // catch SIGTERM, etc.
221 run_program_and_log_output("dmesg -n1", TRUE);
[1]222
[128]223 log_msg(9, "Next");
[1747]224 make_hole_for_dir(MONDO_CACHE);
225
[128]226 welcome_to_mondoarchive();
227 distro_specific_kludges_at_start_of_mondoarchive();
228 g_kernel_version = get_kernel_version();
[1]229
[128]230 if (argc == 4 && !strcmp(argv[1], "getfattr")) {
231 g_loglevel = 10;
232 g_text_mode = TRUE;
233 setup_newt_stuff();
234 if (!strstr(argv[2], "filelist")) {
[541]235 printf("Sorry - filelist goes first\n");
[128]236 finish(1);
237 } else {
238 finish(get_fattr_list(argv[2], argv[3]));
239 }
240 finish(0);
[1]241 }
[128]242 if (argc == 4 && !strcmp(argv[1], "setfattr")) {
243 g_loglevel = 10;
244 g_text_mode = TRUE;
245 setup_newt_stuff();
246 finish(set_fattr_list(argv[2], argv[3]));
[1]247 }
[128]248
249 if (argc == 3 && !strcmp(argv[1], "wildcards")) {
250 g_loglevel = 10;
251 g_text_mode = TRUE;
252 setup_newt_stuff();
[2241]253 malloc_string(tmp);
[128]254 turn_wildcard_chars_into_literal_chars(tmp, argv[2]);
255 printf("in=%s; out=%s\n", argv[2], tmp);
[2241]256 paranoid_free(tmp);
[128]257 finish(1);
[1]258 }
[128]259
260 if (argc == 4 && !strcmp(argv[1], "getfacl")) {
261 g_loglevel = 10;
262 g_text_mode = TRUE;
263 setup_newt_stuff();
264 if (!strstr(argv[2], "filelist")) {
[541]265 printf("Sorry - filelist goes first\n");
[128]266 finish(1);
267 } else {
268 finish(get_acl_list(argv[2], argv[3]));
269 }
270 finish(0);
271 }
272 if (argc == 4 && !strcmp(argv[1], "setfacl")) {
273 g_loglevel = 10;
274 g_text_mode = TRUE;
275 setup_newt_stuff();
276 finish(set_acl_list(argv[2], argv[3]));
277 }
[1]278
[128]279 if (argc > 2 && !strcmp(argv[1], "find-cd")) {
280 g_loglevel = 10;
281 g_text_mode = TRUE;
282 setup_newt_stuff();
[2241]283 malloc_string(tmp);
[128]284 if (find_cdrw_device(tmp)) {
[541]285 printf("Failed to find CDR-RW drive\n");
[128]286 } else {
[541]287 printf("CD-RW is at %s\n", tmp);
[128]288 }
289 tmp[0] = '\0';
290 if (find_cdrom_device(tmp, atoi(argv[2]))) {
[541]291 printf("Failed to find CD-ROM drive\n");
[128]292 } else {
[541]293 printf("CD-ROM is at %s\n", tmp);
[128]294 }
[2241]295 paranoid_free(tmp);
[128]296 finish(0);
297 }
[1]298
[128]299 if (argc > 2 && !strcmp(argv[1], "find-dvd")) {
300 g_loglevel = 10;
301 g_text_mode = TRUE;
302 setup_newt_stuff();
[2241]303 malloc_string(tmp);
[128]304 if (find_dvd_device(tmp, atoi(argv[2]))) {
[541]305 printf("Failed to find DVD drive\n");
[128]306 } else {
[541]307 printf("DVD is at %s\n", tmp);
[128]308 }
[2241]309 paranoid_free(tmp);
[128]310 finish(0);
311 }
[1]312
[128]313 if (argc > 2 && !strcmp(argv[1], "disksize")) {
314 printf("%s --> %ld\n", argv[2], get_phys_size_of_drive(argv[2]));
315 finish(0);
316 }
317 if (argc > 2 && !strcmp(argv[1], "test-dev")) {
318 if (is_dev_an_NTFS_dev(argv[2])) {
[541]319 printf("%s is indeed an NTFS dev\n", argv[2]);
[128]320 } else {
[541]321 printf("%s is _not_ an NTFS dev\n", argv[2]);
[128]322 }
323 finish(0);
324 }
325
[1645]326 if (pre_param_configuration()) {
[128]327 fatal_error
328 ("Pre-param initialization phase failed. Please review the error messages above, make the specified changes, then try again. Exiting...");
329 }
330
[1]331/* Process command line, if there is one. If not, ask user for info. */
[128]332 if (argc == 1) {
333 g_text_mode = FALSE;
334 setup_newt_stuff();
[1645]335 res = interactively_obtain_media_parameters_from_user(TRUE); /* yes, archiving */
[128]336 if (res) {
337 fatal_error
338 ("Syntax error. Please review the parameters you have supplied and try again.");
339 }
340 } else {
[1645]341 res = handle_incoming_parameters(argc, argv);
[128]342 if (res) {
343 printf
[541]344 ("Errors were detected in the command line you supplied.\n");
[1319]345 printf("Please review the log file - %s\n", MONDO_LOGFILE );
[128]346 log_msg(1, "Mondoarchive will now exit.");
347 finish(1);
348 }
349 setup_newt_stuff();
[1]350 }
351
352/* Finish configuring global structures */
[1645]353 if (post_param_configuration()) {
[128]354 fatal_error
355 ("Post-param initialization phase failed. Perhaps bad parameters were supplied to mondoarchive? Please review the documentation, error messages and logs. Exiting...");
356 }
[1]357
[128]358 log_to_screen
[541]359 ("BusyBox's sources are available from http://www.busybox.net");
[1]360
[128]361 /* If we're meant to backup then backup */
362 if (bkpinfo->backup_data) {
[1645]363 res = backup_data();
[128]364 retval += res;
365 if (res) {
[2291]366 mr_asprintf(&say_at_end, "Data archived. Please check the logs, just as a precaution. ");
[128]367 } else {
[2211]368 mr_asprintf(&say_at_end, "Data archived OK. ");
[128]369 }
370 }
[1]371
372/* If we're meant to verify then verify */
[128]373 if (bkpinfo->verify_data) {
[1645]374 res = verify_data();
[128]375 if (res < 0) {
[2241]376 mr_asprintf(&tmp, "%d difference%c found.", -res,
[128]377 (-res != 1) ? 's' : ' ');
[2291]378 mr_asprintf(&say_at_end, "%s", tmp);
[128]379 log_to_screen(tmp);
[2241]380 mr_free(tmp);
[128]381 res = 0;
382 }
383 retval += res;
384 }
[1]385
386/* Report result of entire operation (success? errors?) */
[128]387 if (!retval) {
388 mvaddstr_and_log_it(g_currentY++, 0,
[541]389 "Backup and/or verify ran to completion. Everything appears to be fine.");
[128]390 } else {
391 mvaddstr_and_log_it(g_currentY++, 0,
[541]392 "Backup and/or verify ran to completion. However, errors did occur.");
[128]393 }
[1]394
[1437]395 if (does_file_exist(MINDI_CACHE"/mondorescue.iso")) {
[128]396 log_to_screen
[1437]397 (MINDI_CACHE"/mondorescue.iso, a boot/utility CD, is available if you want it.");
[128]398 }
[1]399
[1747]400 if (length_of_file(MONDO_CACHE"/changed.files") > 2) {
[128]401 if (g_text_mode) {
[1747]402 log_to_screen("Type 'less "MONDO_CACHE"/changed.files' to see which files don't match the archives");
[128]403 } else {
[1747]404 log_msg(1, "Type 'less "MONDO_CACHE"/changed.files' to see which files don't match the archives");
[128]405 log_msg(2, "Calling popup_changelist_from_file()");
[1747]406 popup_changelist_from_file(MONDO_CACHE"/changed.files");
[128]407 log_msg(2, "Returned from popup_changelist_from_file()");
408 }
409 } else {
[1747]410 unlink(MONDO_CACHE"/changed.files");
[128]411 }
[2211]412 if (say_at_end != NULL) {
413 log_to_screen(say_at_end);
414 paranoid_free(say_at_end);
415 }
[2241]416 mr_asprintf(&tmp, "umount %s/tmpfs", bkpinfo->tmpdir);
[128]417 run_program_and_log_output(tmp, TRUE);
[2241]418 mr_free(tmp);
[1697]419 if (bkpinfo->backup_media_type == usb) {
420 log_msg(1, "Unmounting USB device.");
[2241]421 mr_asprintf(&tmp, "umount %s1", bkpinfo->media_device);
[1697]422 run_program_and_log_output(tmp, TRUE);
[2241]423 mr_free(tmp);
[1697]424 }
[1]425
[128]426 run_program_and_log_output("mount", 2);
[1]427
[1747]428 system("rm -f "MONDO_CACHE"/last-backup.aborted");
[128]429 if (!retval) {
[541]430 printf("Mondoarchive ran OK.\n");
[128]431 } else {
[541]432 printf("Errors occurred during backup. Please check logfile.\n");
[128]433 }
434 distro_specific_kludges_at_end_of_mondoarchive();
435 set_signals(FALSE);
[1644]436
[128]437 free_libmondo_global_strings();
[1703]438
[1]439
[128]440 if (!g_cdrom_drive_is_here) {
441 log_msg(10, "FYI, g_cdrom_drive_is_here was never used");
442 }
443 if (!g_dvd_drive_is_here) {
444 log_msg(10, "FYI, g_dvd_drive_is_here was never used");
445 }
[1]446
[810]447 /* finalize log file with time stamp */
[813]448 log_msg(0, "Time finished: %s", mr_date());
[810]449
[1708]450 chdir("/tmp");
[1644]451
[128]452 if (!g_text_mode) {
453 popup_and_OK
[541]454 ("Mondo Archive has finished its run. Please press ENTER to return to the shell prompt.");
455 log_to_screen("See %s for details of backup run.", MONDO_LOGFILE);
[128]456 } else {
[541]457 printf("See %s for details of backup run.\n", MONDO_LOGFILE);
[128]458 }
[1703]459 finish(retval);
[128]460
461 return EXIT_SUCCESS;
[1]462}
Note: See TracBrowser for help on using the repository browser.