source: MondoRescue/branches/3.3/mondo/src/mondoarchive/mondoarchive.c@ 3885

Last change on this file since 3885 was 3885, checked in by Bruno Cornec, 3 months ago

Removes support for ia64 depracated in upstream kernel, and elilo

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