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

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

r3332@localhost: bruno | 2009-08-07 23:59:34 +0200

  • bkpinfo->tmpchdir is now dynamically allocated
  • reorganize how tmpdir and scratchdir are initialized and the startup of the main sections
  • change of interface for maintain_collection_of_recent_archives, mondo_makefilelist, chop_filelist
  • sensibly_set_tmpdir_and_scratchdir => sensibly_set_scratchdir
  • reset_bkpinfo => init_bkpinfo
  • add function mr_free_bkpinfo
  • Fix a bug in mr_strtok
  • mondoarchive seems to globally work. Newt stuff needs more testing
  • Property svn:keywords set to Id
File size: 12.3 KB
Line 
1/***************************************************************************
2$Id: mondoarchive.c 2321 2009-08-18 12:37:55Z bruno $
3* The main file for mondoarchive.
4*/
5
6/************************* #include statements *************************/
7#include <pthread.h>
8#include <stdio.h>
9#include <stdlib.h>
10#include "my-stuff.h"
11#include "mr_mem.h"
12#include "../common/mondostructures.h"
13#include "../common/libmondo.h"
14#include "../common/libmondo-cli-EXT.h"
15#include "../common/libmondo-tools-EXT.h"
16#include "mondoarchive.h"
17
18// for CVS
19//static char cvsid[] = "$Id: mondoarchive.c 2321 2009-08-18 12:37:55Z bruno $";
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;
27extern bool g_remount_floppy_at_end;
28extern char *g_cdrw_drive_is_here;
29static char *g_cdrom_drive_is_here = NULL;
30static char *g_dvd_drive_is_here = NULL;
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
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
53/* Reference to global bkpinfo */
54struct s_bkpinfo *bkpinfo;
55
56/* Make cleanup the finish function */
57void (*mr_cleanup)(int) = finish;
58
59/* To be coded */
60void free_MR_global_filenames(void) {
61}
62
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 */
69void welcome_to_mondoarchive(void)
70{
71 char *tmp = NULL;
72
73 log_msg(0, "Mondo Archive v%s --- http://www.mondorescue.org",
74 PACKAGE_VERSION);
75 log_msg(0, "running %s binaries", get_architecture());
76 tmp = get_uname_m();
77 log_msg(0, "running on %s architecture", tmp);
78 mr_free(tmp);
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 "-----------------------------------------------------------");
99
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);
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 */
119void distro_specific_kludges_at_start_of_mondoarchive(void)
120{
121 log_msg(2, "Unmounting old ramdisks if necessary");
122 stop_magicdev_if_necessary(); // for RH+Gnome users
123 /*
124 run_program_and_log_output
125 ("umount `mount | grep shm | grep mondo | cut -d' ' -f3`", 2);
126 */
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
131}
132
133
134
135/**
136 * Undo whatever was done by distro_specific_kludges_at_start_of_mondoarchive().
137 */
138void distro_specific_kludges_at_end_of_mondoarchive(void)
139{
140 log_msg(2, "Restarting magicdev if necessary");
141 sync();
142 restart_magicdev_if_necessary(); // for RH+Gnome users
143
144 log_msg(2, "Restarting autofs if necessary");
145 sync();
146 // restart_autofs_if_necessary(); // for Xandros users
147
148 log_msg(2, "Restarting supermounts if necessary");
149 sync();
150 remount_supermounts_if_necessary(); // for Mandrake users
151
152 log_msg(2, "Unmounting /boot if necessary");
153 sync();
154 unmount_boot_if_necessary(); // for Gentoo users
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 */
165int main(int argc, char *argv[])
166{
167 char *tmp = NULL;
168 char *tmp1 = NULL;
169 int res, retval;
170 char *say_at_end = NULL;
171
172/* Initialize variables */
173
174 res = 0;
175 retval = 0;
176 diffs = 0;
177
178 printf("Initializing...\n");
179
180 bkpinfo = (struct s_bkpinfo *)mr_malloc(sizeof(struct s_bkpinfo));
181 init_bkpinfo();
182
183 /* initialize log file with time stamp */
184 unlink(MONDO_LOGFILE);
185 log_msg(0, "Time started: %s", mr_date());
186
187 /* Memory allocation is done in those functions */
188 malloc_libmondo_global_strings();
189 if (argc == 1) {
190 g_text_mode = FALSE;
191 } else {
192 g_text_mode = TRUE;
193 }
194 setup_newt_stuff();
195
196 /* Make sure I'm root; abort if not */
197 if (getuid() != 0) {
198 fatal_error("Please run as root.\n");
199 }
200
201 /* If -V, -v or --version then echo version no. and quit */
202 if (argc == 2 && (!strcmp(argv[argc - 1], "-v") || !strcmp(argv[argc - 1], "-V") || !strcmp(argv[argc - 1], "--version"))) {
203 printf("mondoarchive v%s\nSee man page for help\n", PACKAGE_VERSION);
204 finish(0);
205 }
206
207
208 /* make sure PATH environmental variable allows access to mkfs, fdisk, etc. */
209 mr_asprintf(&tmp1,"%s:/sbin:/usr/sbin:/usr/local/sbin",getenv("PATH"));
210 setenv("PATH", tmp1, 1);
211 mr_free(tmp1);
212
213 /* Add the ARCH environment variable for ia64 purposes */
214 mr_asprintf(&tmp1,"%s",get_architecture());
215 setenv("ARCH", tmp1, 1);
216 mr_free(tmp1);
217
218 /* Add MONDO_SHARE environment variable for mindi */
219 setenv_mondo_share();
220
221 /* Configure the bkpinfo structure, global file paths, etc. */
222 g_main_pid = getpid();
223 log_msg(9, "This");
224
225 set_signals(TRUE); // catch SIGTERM, etc.
226 run_program_and_log_output("dmesg -n1", TRUE);
227
228 log_msg(9, "Next");
229 make_hole_for_dir(MONDO_CACHE);
230
231 welcome_to_mondoarchive();
232 distro_specific_kludges_at_start_of_mondoarchive();
233 g_kernel_version = get_kernel_version();
234
235 if (argc == 4 && !strcmp(argv[1], "getfattr")) {
236 g_loglevel = 10;
237 g_text_mode = TRUE;
238 if (!strstr(argv[2], "filelist")) {
239 printf("Sorry - filelist goes first\n");
240 finish(1);
241 } else {
242 finish(get_fattr_list(argv[2], argv[3]));
243 }
244 finish(0);
245 }
246 if (argc == 4 && !strcmp(argv[1], "setfattr")) {
247 g_loglevel = 10;
248 finish(set_fattr_list(argv[2], argv[3]));
249 }
250
251 if (argc == 3 && !strcmp(argv[1], "wildcards")) {
252 g_loglevel = 10;
253 malloc_string(tmp);
254 turn_wildcard_chars_into_literal_chars(tmp, argv[2]);
255 printf("in=%s; out=%s\n", argv[2], tmp);
256 paranoid_free(tmp);
257 finish(1);
258 }
259
260 if (argc == 4 && !strcmp(argv[1], "getfacl")) {
261 g_loglevel = 10;
262 if (!strstr(argv[2], "filelist")) {
263 printf("Sorry - filelist goes first\n");
264 finish(1);
265 } else {
266 finish(get_acl_list(argv[2], argv[3]));
267 }
268 finish(0);
269 }
270 if (argc == 4 && !strcmp(argv[1], "setfacl")) {
271 g_loglevel = 10;
272 finish(set_acl_list(argv[2], argv[3]));
273 }
274
275 if (argc > 2 && !strcmp(argv[1], "find-cd")) {
276 g_loglevel = 10;
277 malloc_string(tmp);
278 if (find_cdrw_device(tmp)) {
279 printf("Failed to find CDR-RW drive\n");
280 } else {
281 printf("CD-RW is at %s\n", tmp);
282 }
283 tmp[0] = '\0';
284 if (find_cdrom_device(tmp, atoi(argv[2]))) {
285 printf("Failed to find CD-ROM drive\n");
286 } else {
287 printf("CD-ROM is at %s\n", tmp);
288 }
289 paranoid_free(tmp);
290 finish(0);
291 }
292
293 if (argc > 2 && !strcmp(argv[1], "find-dvd")) {
294 g_loglevel = 10;
295 malloc_string(tmp);
296 if (find_dvd_device(tmp, atoi(argv[2]))) {
297 printf("Failed to find DVD drive\n");
298 } else {
299 printf("DVD is at %s\n", tmp);
300 }
301 paranoid_free(tmp);
302 finish(0);
303 }
304
305 if (argc > 2 && !strcmp(argv[1], "disksize")) {
306 printf("%s --> %ld\n", argv[2], get_phys_size_of_drive(argv[2]));
307 finish(0);
308 }
309 if (argc > 2 && !strcmp(argv[1], "test-dev")) {
310 if (is_dev_an_NTFS_dev(argv[2])) {
311 printf("%s is indeed an NTFS dev\n", argv[2]);
312 } else {
313 printf("%s is _not_ an NTFS dev\n", argv[2]);
314 }
315 finish(0);
316 }
317
318 if (pre_param_configuration()) {
319 fatal_error
320 ("Pre-param initialization phase failed. Please review the error messages above, make the specified changes, then try again. Exiting...");
321 }
322
323/* Process command line, if there is one. If not, ask user for info. */
324 if (argc == 1) {
325 res = interactively_obtain_media_parameters_from_user(TRUE); /* yes, archiving */
326 if (res) {
327 fatal_error
328 ("Syntax error. Please review the parameters you have supplied and try again.");
329 }
330 } else {
331 res = handle_incoming_parameters(argc, argv);
332 if (res) {
333 printf
334 ("Errors were detected in the command line you supplied.\n");
335 printf("Please review the log file - %s\n", MONDO_LOGFILE );
336 log_msg(1, "Mondoarchive will now exit.");
337 finish(1);
338 }
339 }
340
341/* Finish configuring global structures */
342 if (post_param_configuration()) {
343 fatal_error("Post-param initialization phase failed. Perhaps bad parameters were supplied to mondoarchive? Please review the documentation, error messages and logs. Exiting...");
344 }
345
346 log_to_screen("BusyBox's sources are available from http://www.busybox.net");
347
348 /* If we're meant to backup then backup */
349 if (bkpinfo->backup_data) {
350 res = backup_data();
351 retval += res;
352 if (res) {
353 mr_asprintf(&say_at_end, "Data archived. Please check the logs, just as a precaution. ");
354 } else {
355 mr_asprintf(&say_at_end, "Data archived OK. ");
356 }
357 }
358
359/* If we're meant to verify then verify */
360 if (bkpinfo->verify_data) {
361 res = verify_data();
362 if (res < 0) {
363 mr_asprintf(&tmp, "%d difference%c found.", -res,
364 (-res != 1) ? 's' : ' ');
365 mr_asprintf(&say_at_end, "%s", tmp);
366 log_to_screen(tmp);
367 mr_free(tmp);
368 res = 0;
369 }
370 retval += res;
371 }
372
373/* Report result of entire operation (success? errors?) */
374 if (!retval) {
375 mvaddstr_and_log_it(g_currentY++, 0,
376 "Backup and/or verify ran to completion. Everything appears to be fine.");
377 } else {
378 mvaddstr_and_log_it(g_currentY++, 0,
379 "Backup and/or verify ran to completion. However, errors did occur.");
380 }
381
382 if (does_file_exist(MINDI_CACHE"/mondorescue.iso")) {
383 log_to_screen
384 (MINDI_CACHE"/mondorescue.iso, a boot/utility CD, is available if you want it.");
385 }
386
387 if (length_of_file(MONDO_CACHE"/changed.files") > 2) {
388 if (g_text_mode) {
389 log_to_screen("Type 'less "MONDO_CACHE"/changed.files' to see which files don't match the archives");
390 } else {
391 log_msg(1, "Type 'less "MONDO_CACHE"/changed.files' to see which files don't match the archives");
392 log_msg(2, "Calling popup_changelist_from_file()");
393 popup_changelist_from_file(MONDO_CACHE"/changed.files");
394 log_msg(2, "Returned from popup_changelist_from_file()");
395 }
396 } else {
397 unlink(MONDO_CACHE"/changed.files");
398 }
399 if (say_at_end != NULL) {
400 log_to_screen(say_at_end);
401 mr_free(say_at_end);
402 }
403 mr_asprintf(&tmp, "umount %s/tmpfs", bkpinfo->tmpdir);
404 run_program_and_log_output(tmp, TRUE);
405 mr_free(tmp);
406 if (bkpinfo->backup_media_type == usb) {
407 log_msg(1, "Unmounting USB device.");
408 mr_asprintf(&tmp, "umount %s1", bkpinfo->media_device);
409 run_program_and_log_output(tmp, TRUE);
410 mr_free(tmp);
411 }
412
413 run_program_and_log_output("mount", 2);
414
415 system("rm -f "MONDO_CACHE"/last-backup.aborted");
416 if (!retval) {
417 printf("Mondoarchive ran OK.\n");
418 } else {
419 printf("Errors occurred during backup. Please check logfile.\n");
420 }
421 distro_specific_kludges_at_end_of_mondoarchive();
422 set_signals(FALSE);
423
424 free_libmondo_global_strings();
425
426
427 if (!g_cdrom_drive_is_here) {
428 log_msg(10, "FYI, g_cdrom_drive_is_here was never used");
429 }
430 if (!g_dvd_drive_is_here) {
431 log_msg(10, "FYI, g_dvd_drive_is_here was never used");
432 }
433
434 /* finalize log file with time stamp */
435 log_msg(0, "Time finished: %s", mr_date());
436
437 chdir("/tmp");
438
439 if (!g_text_mode) {
440 popup_and_OK
441 ("Mondo Archive has finished its run. Please press ENTER to return to the shell prompt.");
442 log_to_screen("See %s for details of backup run.", MONDO_LOGFILE);
443 } else {
444 printf("See %s for details of backup run.\n", MONDO_LOGFILE);
445 }
446 finish(retval);
447
448 return EXIT_SUCCESS;
449}
Note: See TracBrowser for help on using the repository browser.