source: MondoRescue/branches/3.2/mondo/src/common/libmondo-cli.c@ 3351

Last change on this file since 3351 was 3351, checked in by Bruno Cornec, 9 years ago
  • Fix #768 by canceling changes done in the loop computing number of slices, back to long instead of a new int.
  • Property svn:keywords set to Id
File size: 32.1 KB
Line 
1/***************************************************************************
2$Id: libmondo-cli.c 3351 2015-02-27 14:18:42Z bruno $
3*******************************************************************/
4
5/**
6 * @file
7 * Functions for handling command-line arguments passed to mondoarchive.
8 */
9
10/** @def BOOT_LOADER_CHARS The characters allowed for boot loader on this platform. */
11
12#include <pthread.h>
13#include "my-stuff.h"
14#include "mr_mem.h"
15#include "mr_str.h"
16#include "mondostructures.h"
17#include "libmondo-cli-EXT.h"
18#include "libmondo.h"
19
20extern int g_loglevel;
21extern bool g_text_mode;
22extern bool g_fail_immediately;
23extern char g_startdir[MAX_STR_LEN]; ///< ????? @bug ?????
24extern char *MONDO_OPTIONS;
25
26/*@ file pointer **************************************************/
27extern FILE *g_tape_stream;
28
29/*@ long long *****************************************************/
30extern long long g_tape_posK;
31
32/*@ long **********************************************************/
33extern long g_noof_sets;
34
35/*@ bool******** **************************************************/
36bool g_debugging = FALSE; ///< ????? @bug ????? @ingroup globalGroup
37bool g_running_live = FALSE; ///< ????? @bug ????? @ingroup globalGroup
38extern bool g_cd_recovery;
39
40extern void setup_tmpdir(char *path);
41extern void setup_scratchdir(char *path);
42void mr_make_devlist_from_pathlist(char *pathlist, char mode);
43extern double g_kernel_version;
44extern int g_current_media_number;
45extern pid_t g_main_pid;
46extern char *resolve_softlinks_to_get_to_actual_device_file(char *);
47
48/* Do we use extended attributes and acl ?
49 * By default no, use -z option to force their usage */
50extern char *g_getfacl;
51extern char *g_getfattr;
52
53/* Reference to global bkpinfo */
54extern struct s_bkpinfo *bkpinfo;
55
56extern void free_MR_global_filenames(void);
57
58long g_max_biggie_size = BIGGIEMAXSIZE;
59
60/**
61 * @addtogroup cliGroup
62 * @{
63 */
64/**
65 * Populate @p bkpinfo from the command-line parameters stored in @p argc and @p argv.
66 * @param argc The argument count, including the program name; @p argc passed to main().
67 * @param argv The argument vector; @p argv passed to main().
68 * @param bkpinfo The backup information structure to populate.
69 * @return The number of problems with the command line (0 for success).
70 */
71int
72handle_incoming_parameters(int argc, char *argv[])
73{
74 /*@ int *** */
75 int res = 0;
76 int retval = 0;
77 int i = 0;
78
79 /*@ buffers *************** */
80 char flag_val[128][MAX_STR_LEN];
81 bool flag_set[128];
82
83 for (i = 0; i < 128; i++) {
84 flag_val[i][0] = '\0';
85 flag_set[i] = FALSE;
86 }
87 bkpinfo->media_size = 650; /* default */
88 res = retrieve_switches_from_command_line(argc, argv, flag_val, flag_set);
89 retval += res;
90 if (!retval) {
91 res = process_switches(flag_val, flag_set);
92 retval += res;
93 }
94
95 log_msg(3, "Switches:-");
96 for (i = 0; i < 128; i++) {
97 if (flag_set[i]) {
98 log_msg(3, "-%c %s", i, flag_val[i]);
99 }
100 }
101
102 return (retval);
103}
104
105
106/**
107 * Store the sizespec(s) stored in @p value into @p bkpinfo.
108 * @param bkpinfo The backup information structure; the @c bkpinfo->media_size field will be populated.
109 * @param value The sizespec (e.g. "2g", "40m").
110 * @return 0, always.
111 * @bug Return code not needed.
112 */
113int process_the_s_switch(char *value)
114{
115 assert(bkpinfo != NULL);
116 assert(value != NULL);
117
118 bkpinfo->media_size = -1; /* dummy value */
119 bkpinfo->media_size = friendly_sizestr_to_sizelong(value);
120 log_msg(3, "media_size = %ld", bkpinfo->media_size);
121 if (bkpinfo->media_size <= 0) {
122 log_msg(1, "You gave media an invalid size %s\n", value);
123 return (-1);
124 }
125 return (0);
126}
127
128/**
129 * Process mondoarchive's command-line switches.
130 * @param bkpinfo The backup information structure to populate.
131 * @param flag_val An array of the argument passed to each switch (the letter is the index).
132 * If a switch is not set or has no argument, the field in @p flag_val doesn't matter.
133 * @param flag_set An array of <tt>bool</tt>s indexed by switch letter: TRUE if it's set,
134 * FALSE if it's not.
135 * @return The number of problems with the switches, or 0 for success.
136 * @bug Maybe include a list of all switches (inc. intentionally undocumented ones not in the manual!) here?
137 */
138int
139process_switches(char flag_val[128][MAX_STR_LEN], bool flag_set[128])
140{
141
142 /*@ ints *** */
143 int i = 0;
144 int retval = 0;
145
146 /*@ buffers ** */
147 char *tmp = NULL;
148 char *tmp1 = NULL;
149 char *tmp2 = NULL;
150 char *psz = NULL;
151 char *p = NULL;
152 char *q = NULL;
153
154 long itbs = 0L;
155
156 struct stat buf;
157
158 malloc_string(tmp);
159
160 assert(bkpinfo != NULL);
161 assert(flag_val != NULL);
162 assert(flag_set != NULL);
163
164 bkpinfo->internal_tape_block_size = DEFAULT_INTERNAL_TAPE_BLOCK_SIZE;
165
166 /* compulsory */
167 i = flag_set['c'] + flag_set['i'] + flag_set['n'] +
168 flag_set['t'] + flag_set['u'] + flag_set['r'] +
169 flag_set['w'] + flag_set['C'] + flag_set['U'];
170 if ((i == 0) && (! bkpinfo->restore_data)) {
171 retval++;
172 log_to_screen("You must specify the media type\n");
173 }
174 if (i > 1) {
175 retval++;
176 log_to_screen("Please specify only one media type\n");
177 }
178
179 if (flag_set['K']) {
180 g_loglevel = atoi(flag_val['K']);
181 log_msg(1,"Loglevel forced to %d",g_loglevel);
182 if (g_loglevel < 3) {
183 g_loglevel = 3;
184 }
185 }
186
187 if ((flag_set['L'] && flag_set['0']) && (! bkpinfo->restore_data)) {
188 retval++;
189 log_to_screen("You cannot have 'no compression' _and_ LZOP.\n");
190 }
191 if (! bkpinfo->restore_data) {
192 bkpinfo->backup_data = flag_set['O'];
193 }
194 bkpinfo->verify_data = flag_set['V'];
195
196 if (flag_set['I'] && !bkpinfo->backup_data) {
197 log_to_screen("-I switch is ignored if just verifying");
198 }
199 if (flag_set['E'] && !bkpinfo->backup_data) {
200 log_to_screen("-E switch is ignored if just verifying");
201 }
202
203 if (!find_home_of_exe("afio")) {
204 if (find_home_of_exe("star")) {
205 flag_set['R'] = TRUE;
206 log_msg(1, "Using star instead of afio");
207 } else {
208 fatal_error("Neither afio nor star is installed. Please install at least one.");
209 }
210 }
211
212 if (flag_set['R']) {
213 bkpinfo->use_star = TRUE;
214 if (flag_set['L']) {
215 fatal_error("You may not use star and lzop at the same time.");
216 }
217 if (!find_home_of_exe("star")) {
218 fatal_error("Please install 'star' RPM or tarball if you are going to use -R. Thanks.");
219 }
220 }
221
222 if ((flag_set['W']) && (! bkpinfo->restore_data)) {
223 bkpinfo->nonbootable_backup = TRUE;
224 log_to_screen("Warning - you have opted for non-bootable backup");
225 if (flag_set['f'] || flag_set['l']) {
226 log_to_screen
227 ("You don't need to specify bootloader or bootdevice");
228 }
229 }
230
231 if (flag_set['I']) {
232 if (flag_val['I'][0] == '-') {
233 retval++;
234 log_to_screen("Please supply a sensible value with '-I'\n");
235 }
236 if (!strcmp(flag_val['I'],"/")) {
237 log_msg(2, "'/' is pleonastic.");
238 }
239 if (bkpinfo->include_paths && bkpinfo->include_paths[0]) {
240 mr_strcat(bkpinfo->include_paths, "|");
241 }
242
243 mr_asprintf(tmp1, "%s", flag_val['I']);
244 p = tmp1;
245 q = tmp1;
246
247 /* Cut the flag_val['I'] in parts containing all paths to test them */
248 while (p != NULL) {
249 q = strchr(p, '|');
250 if (q != NULL) {
251 *q = '\0';
252 if ((stat(p, &buf) != 0) && (! bkpinfo->restore_data)) {
253 log_msg(1, "ERROR ! %s doesn't exist", p);
254 fatal_error("ERROR ! You specified a directory to include which doesn't exist");
255 }
256 p = q+1 ;
257 } else {
258 if ((stat(p, &buf) != 0) && (! bkpinfo->restore_data)) {
259 log_msg(1, "ERROR ! %s doesn't exist", p);
260 fatal_error("ERROR ! You specified a directory to include which doesn't exist");
261 }
262 p = NULL;
263 }
264 }
265 mr_free(tmp1);
266 mr_make_devlist_from_pathlist(flag_val['I'], 'I');
267 log_msg(4, "Finished with the -I option");
268 }
269
270 if (g_kernel_version >= 2.6 && !flag_set['d'] && (flag_set['c'] || flag_set['w']) && (! bkpinfo->restore_data)) {
271 fatal_error("If you are using the 2.6.x kernel, please specify the CD-R(W) device.");
272 }
273
274
275 if (flag_set['J']) {
276 if (flag_set['I']) {
277 retval++;
278 log_to_screen("Please do not use -J in combination with -I. If you want to make a list of files to backup, that's fine, use -J <filename> but please don't muddy the waters by combining -J with -I. Thanks. :-)");
279 }
280 bkpinfo->make_filelist = FALSE;
281 mr_asprintf(bkpinfo->include_paths, "%s", flag_val['J']);
282 }
283
284 if ((flag_set['c'] || flag_set['w'] || flag_set['C'] || flag_set['r']) && (! bkpinfo->restore_data)) {
285 if (!flag_set['r'] && g_kernel_version <= 2.5 && strstr(flag_val['d'], "/dev/")) {
286 fatal_error("Please don't give a /dev entry. Give a SCSI node for the parameter of the -d flag.");
287 }
288 if (flag_set['r'] && g_kernel_version <= 2.5 && !strstr(flag_val['d'], "/dev/")) {
289 fatal_error("Please give a /dev entry, not a SCSI node, as the parameter of the -d flag.");
290 }
291 if (g_kernel_version >= 2.6 && !strstr(flag_val['d'], "/dev/")) {
292 log_to_screen("Linus says 2.6 has a broken ide-scsi module. Proceed at your own risk...");
293 }
294
295 if (system("which cdrecord > /dev/null 2> /dev/null") && system("which dvdrecord > /dev/null 2> /dev/null")) {
296 fatal_error("Please install dvdrecord/cdrecord and try again.");
297 }
298 if (flag_set['C']) {
299 bkpinfo->cdrw_speed = atoi(flag_val['C']);
300 if (bkpinfo->cdrw_speed < 1) {
301 fatal_error("You specified a silly speed for a CD-R[W] drive");
302 }
303 if (!flag_set['L']) {
304 log_to_screen("You must use -L with -C. Therefore I am setting it for you.");
305 flag_set['L'] = 1;
306 flag_val['L'][0] = '\0';
307 }
308 } else {
309 log_msg(3, "flag_val['c'] = %s", flag_val['c']);
310 log_msg(3, "flag_val['w'] = %s", flag_val['w']);
311 if (flag_set['c']) {
312 bkpinfo->cdrw_speed = atoi(flag_val['c']);
313 } else if (flag_set['w']) {
314 bkpinfo->cdrw_speed = atoi(flag_val['w']);
315 } else if (flag_set['r']) {
316 bkpinfo->cdrw_speed = 1; /*atoi(flag_val['r']); */
317 }
318
319 if (bkpinfo->cdrw_speed < 1) {
320 fatal_error("You specified a silly speed for a CD-R[W] drive");
321 }
322 }
323 }
324
325 if ((flag_set['t'] && !flag_set['d']) && (! bkpinfo->restore_data)) {
326 log_it("Hmm! No tape drive specified. Let's see what we can do.");
327 if (find_tape_device_and_size(flag_val['d'], tmp)) {
328 fatal_error("Tape device not specified. I couldn't find it either.");
329 }
330 flag_set['d'] = TRUE;
331 log_to_screen("You didn't specify a tape streamer device. I'm assuming %s", flag_val['d']);
332 }
333
334 if (flag_set['U']) // USB
335 {
336 if (! flag_set['d']) {
337 fatal_error("You need to specify a device file with -d for bootable USB device usage");
338 }
339 if ((!flag_set['s']) && (! bkpinfo->restore_data)) {
340 fatal_error("You did not specify a size (-s) for your USB device. Aborting");
341 }
342 }
343
344 if (flag_set['r']) // DVD
345 {
346 if (flag_set['m']) {
347 fatal_error("Manual CD tray (-m) not yet supported in conjunction w/ DVD drives. Drop -m.");
348 }
349 if (!flag_set['d']) {
350 if (!find_dvd_device(flag_val['d'], FALSE)) {
351 flag_set['d'] = TRUE;
352 log_to_screen("I guess DVD drive is at %s", flag_val['d']);
353 }
354 }
355 if (strchr(flag_val['d'], ',')) {
356 fatal_error("Please don't give a SCSI node. Give a _device_, preferably a /dev entry, for the parameter of the -d flag.");
357 }
358 if (! bkpinfo->restore_data) {
359 if (!find_home_of_exe("growisofs")) {
360 fatal_error("Please install growisofs (probably part of dvd+rw-tools). If you want DVD support, you need it.");
361 }
362 if (!find_home_of_exe("dvd+rw-format")) {
363 fatal_error("Please install dvd+rw-format (probably part of dvd+rw-tools). If you want DVD support, you need it.");
364 }
365 if (!flag_set['s']) {
366 sprintf(flag_val['s'], "%d", DEFAULT_DVD_DISK_SIZE); // 4.7 salesman's GB = 4.482 real GB = 4582 MB
367 strcat(flag_val['s'], "m");
368 log_to_screen("You did not specify a size (-s) for DVD. I'm guessing %s.", flag_val['s']);
369 flag_set['s'] = 1;
370 }
371 }
372 }
373
374 if (flag_set['t'] || flag_set['u']) { /* tape size */
375 if (strchr(flag_val['d'], ',')) {
376 fatal_error("Please don't give a SCSI node. Give a _device_, preferably a /dev entry, for the parameter of the -d flag.");
377 }
378 if ((flag_set['O']) && (! bkpinfo->restore_data)) {
379 if (flag_set['s']) {
380 if (flag_set['t']) {
381 fatal_error("For the moment, please don't specify a tape size. Mondo should handle end-of-tape gracefully anyway.");
382 }
383 if (process_the_s_switch(flag_val['s'])) {
384 fatal_error("Bad -s switch");
385 }
386 } else if (flag_set['u'] || flag_set['t']) {
387 bkpinfo->media_size = 0;
388 } else {
389 retval++;
390 log_to_screen("Tape size not specified.\n");
391 }
392 }
393 } else if (! bkpinfo->restore_data) { /* CD|USB size */
394 if (flag_set['s']) {
395 if (process_the_s_switch(flag_val['s'])) {
396 fatal_error("Bad -s switch");
397 }
398 }
399 if (flag_set['w']) {
400 bkpinfo->wipe_media_first = TRUE;
401 } /* CD-RW */
402 }
403
404 if (flag_set['n']) {
405 mr_free(bkpinfo->netfs_mount);
406 mr_asprintf(bkpinfo->netfs_mount, "%s", flag_val['n']);
407 if (!flag_set['d']) {
408 mr_free(bkpinfo->netfs_remote_dir);
409 mr_asprintf(bkpinfo->netfs_remote_dir, "/");
410 strncpy(bkpinfo->isodir, ".", MAX_STR_LEN / 4);
411 }
412 /* test for protocol */
413 p = strstr(bkpinfo->netfs_mount, "://");
414 if (p == NULL) {
415 /* protocol not found assuming NFS for compatibility */
416 mr_asprintf(q,"nfs");
417
418 p = strchr(bkpinfo->netfs_mount, ':');
419 if (p == NULL) {
420 fatal_error("No protocol specified for remote share mount, nor any old NFS syntax found.\nPlease do man mondoarchive as syntax changed");
421 }
422 /* p points on to the string server:/path */
423 p = bkpinfo->netfs_mount;
424
425 } else {
426 /* Isolate the protocol */
427 *p = '\0';
428 mr_asprintf(q,"%s",bkpinfo->netfs_mount);
429
430 /* Skip proto now */
431 p++;
432 p++;
433 p++;
434 }
435 /* whatever done before proto is pointed to by q */
436 bkpinfo->netfs_proto = q;
437
438 /* p points on to the string server:/path */
439 /* Store the 2 values */
440 /* using memmove instead of strcpy as per #584 */
441 /* memmove(bkpinfo->netfs_mount, p, MAX_STR_LEN); */
442 bkpinfo->netfs_mount = p;
443
444 /* test if we specified a user */
445 p = strchr(bkpinfo->netfs_mount, '@');
446 if (p != NULL) {
447 /* User found. Store the 2 values */
448 bkpinfo->netfs_user = bkpinfo->netfs_mount;
449 p++;
450 /* new netfs mount */
451 mr_asprintf(bkpinfo->netfs_mount, "%s", p);
452 /* now that user is computed, create the right value by removing end of string */
453 p--;
454 *p = '\0';
455 }
456 if (bkpinfo->netfs_user != NULL) {
457 mr_asprintf(tmp1, "mount | grep -E \"^[a-z]*#*[%s@]*%s[/]* .*\" | cut -d' ' -f3", bkpinfo->netfs_user, bkpinfo->netfs_mount);
458 } else {
459 mr_asprintf(tmp1, "mount | grep -E \"^[a-z]*#*%s[/]* .*\" | cut -d' ' -f3", bkpinfo->netfs_mount);
460 }
461 strncpy(bkpinfo->isodir, call_program_and_get_last_line_of_output(tmp1), MAX_STR_LEN / 4);
462 mr_free(tmp1);
463
464 log_msg(3, "proto = %s", bkpinfo->netfs_proto);
465 log_msg(3, "mount = %s", bkpinfo->netfs_mount);
466 if (bkpinfo->netfs_user) {
467 log_msg(3, "user = %s", bkpinfo->netfs_user);
468 }
469 log_msg(3, "isodir= %s", bkpinfo->isodir);
470
471 if (strlen(bkpinfo->isodir) < 3) {
472 log_to_screen("Network share %s is not mounted. Trying to mount it for you.\n",bkpinfo->netfs_mount);
473 if (bkpinfo->netfs_user) {
474 if (strstr(bkpinfo->netfs_proto, "sshfs")) {
475 mr_asprintf(tmp1, "sshfs %s@%s", bkpinfo->netfs_user, bkpinfo->netfs_mount);
476 } else if (strstr(bkpinfo->netfs_proto, "smbfs")) {
477 mr_asprintf(tmp1, "mount -t cifs %s -o user=%s", bkpinfo->netfs_mount, bkpinfo->netfs_user);
478 } else if (strstr(bkpinfo->netfs_proto, "nfs")) {
479 mr_asprintf(tmp1, "mount %s@%s", bkpinfo->netfs_user, bkpinfo->netfs_mount);
480 } else {
481 log_to_screen("Protocol %s not supported yet for network backups.\n", bkpinfo->netfs_proto);
482 fatal_error("Bad Protocol\n");
483 }
484 } else {
485 if (strstr(bkpinfo->netfs_proto, "sshfs")) {
486 mr_asprintf(tmp1, "sshfs %s", bkpinfo->netfs_mount);
487 } else if (strstr(bkpinfo->netfs_proto, "smbfs")) {
488 mr_asprintf(tmp1, "mount -t cifs %s", bkpinfo->netfs_mount);
489 } else if (strstr(bkpinfo->netfs_proto, "nfs")) {
490 mr_asprintf(tmp1, "mount %s", bkpinfo->netfs_mount);
491 } else {
492 log_to_screen("Protocol %s not supported yet for network backups.\n", bkpinfo->netfs_proto);
493 fatal_error("Bad Protocol\n");
494 }
495 }
496 i = system(tmp1);
497 mr_free(tmp1);
498
499 if (i) {
500 log_to_screen("Unable to mount Network share %s. Please mount manually.\n", bkpinfo->netfs_mount);
501 retval++;
502 } else {
503 if (bkpinfo->netfs_user) {
504 mr_asprintf(tmp1, "mount | grep -E \"^[%s@]*%s[/]* .*\" | cut -d' ' -f3", bkpinfo->netfs_user, bkpinfo->netfs_mount);
505 } else {
506 mr_asprintf(tmp1, "mount | grep -E \"^%s[/]* .*\" | cut -d' ' -f3", bkpinfo->netfs_mount);
507 }
508 strncpy(bkpinfo->isodir, call_program_and_get_last_line_of_output(tmp), MAX_STR_LEN / 4);
509 if (strlen(bkpinfo->isodir) < 3) {
510 retval++;
511 log_to_screen("Network share %s is strangely not mounted. Please mount manually...\n", bkpinfo->netfs_mount);
512 }
513 }
514 }
515 }
516
517 if (flag_set['c']) {
518 bkpinfo->backup_media_type = cdr;
519 }
520 if (flag_set['C']) {
521 bkpinfo->backup_media_type = cdstream;
522 }
523 if (flag_set['i']) {
524 bkpinfo->backup_media_type = iso;
525 }
526 if (flag_set['n']) {
527 bkpinfo->backup_media_type = netfs;
528 /* Never try to eject a Network device */
529 bkpinfo->please_dont_eject = TRUE;
530 }
531 if (flag_set['r']) {
532 bkpinfo->backup_media_type = dvd;
533 }
534 if (flag_set['t']) {
535 bkpinfo->backup_media_type = tape;
536 }
537 if (flag_set['u']) {
538 bkpinfo->backup_media_type = udev;
539 }
540 if (flag_set['w']) {
541 bkpinfo->backup_media_type = cdrw;
542 }
543 if (flag_set['U']) {
544 bkpinfo->backup_media_type = usb;
545 /* Never try to eject a USB device */
546 bkpinfo->please_dont_eject = TRUE;
547 }
548 if (flag_set['z']) {
549 if (find_home_of_exe("getfattr")) {
550 mr_asprintf(g_getfattr,"getfattr");
551 }
552 if (find_home_of_exe("getfacl")) {
553 mr_asprintf(g_getfacl,"getfacl");
554 }
555 }
556
557 /* optional, popular */
558 if (flag_set['g']) {
559 g_text_mode = FALSE;
560 }
561
562 if (flag_set['E']) {
563 if ((flag_val['E'][0] == '-')) {
564 retval++;
565 log_to_screen("Please supply a sensible value with '-E'\n");
566 }
567 mr_asprintf(tmp1, "%s", flag_val['E']);
568
569 p = tmp1;
570 q = tmp1;
571
572 /* Cut the flag_val['E'] in parts containing all paths to test them */
573 while (p != NULL) {
574 q = strchr(p, '|');
575 if (q != NULL) {
576 *q = '\0';
577 /* Fix bug 14 where ending / cause a problem later
578 * so handled here for the moment */
579 q--;
580 if (*q == '/') {
581 *q = '\0';
582 }
583 q++;
584 /* End of bug fix */
585 if ((stat(p, &buf) != 0) && (! bkpinfo->restore_data)) {
586 log_msg(1, "WARNING ! %s doesn't exist", p);
587 }
588 p = q+1 ;
589 } else {
590 if ((stat(p, &buf) != 0) && (! bkpinfo->restore_data)) {
591 log_msg(1, "WARNING ! %s doesn't exist", p);
592 }
593 p = NULL;
594 }
595 }
596 mr_free(tmp1);
597
598 mr_make_devlist_from_pathlist(flag_val['E'], 'E');
599 log_msg(4, "Finished with the -E option");
600 }
601
602 if (flag_set['e']) {
603 bkpinfo->please_dont_eject = TRUE;
604 }
605
606 if (flag_set['M']) {
607 g_max_biggie_size = atol(flag_val['M']);
608 log_msg(1, "Max size for biggie file is now %ld KB", g_max_biggie_size);
609 }
610
611 if ((flag_set['N']) && (! bkpinfo->restore_data)) // exclude Network mounts & devices
612 {
613 psz = list_of_NETFS_mounts_only();
614 log_msg(5, "-N means we'll exclude %s", psz);
615 if (bkpinfo->exclude_paths) {
616 mr_strcat(bkpinfo->exclude_paths, "|%s", psz);
617 mr_free(psz);
618 } else {
619 bkpinfo->exclude_paths = psz;
620 }
621
622 if (bkpinfo->exclude_paths != NULL) {
623 log_msg(3, "-N means we're now excluding %s", bkpinfo->exclude_paths);
624 }
625 }
626
627 if (flag_set['b']) {
628 mr_asprintf(psz, "%s", flag_val['b']);
629 log_msg(1, "psz = '%s'", psz);
630 if (psz[strlen(psz) - 1] == 'k') {
631 psz[strlen(psz) - 1] = '\0';
632 itbs = atol(psz) * 1024L;
633 } else {
634 itbs = atol(psz);
635 }
636 mr_free(psz);
637 log_msg(1, "'%s' --> %ld", flag_val['b'], itbs);
638 log_msg(1, "Internal tape block size is now %ld bytes", itbs);
639 if (itbs % 512 != 0 || itbs < 256 || itbs > 1024L * 1024) {
640 fatal_error("Are you nuts? Silly, your internal tape block size is. Abort, I shall.");
641 }
642 bkpinfo->internal_tape_block_size = itbs;
643 }
644
645 if ((flag_set['D']) && (! bkpinfo->restore_data)) {
646 bkpinfo->differential = 1;
647// bkpinfo->differential = atoi (flag_val['D']);
648 if ((bkpinfo->differential < 1) || (bkpinfo->differential > 9)) {
649 fatal_error("The D option should be between 1 and 9 inclusive");
650 }
651 }
652
653 if (flag_set['x']) {
654 strncpy(bkpinfo->image_devs, flag_val['x'], MAX_STR_LEN / 4);
655 if ((run_program_and_log_output("which ntfsclone", 2)) && (! bkpinfo->restore_data)) {
656 fatal_error("Please install ntfsprogs package/tarball.");
657 }
658 }
659
660 if (flag_set['m']) {
661 bkpinfo->manual_cd_tray = TRUE;
662 }
663
664 if ((flag_set['k']) && (! bkpinfo->restore_data)) {
665 strncpy(bkpinfo->kernel_path, flag_val['k'], MAX_STR_LEN);
666 if (!does_file_exist(bkpinfo->kernel_path)) {
667 retval++;
668 log_to_screen("You specified kernel '%s', which does not exist\n", bkpinfo->kernel_path);
669 }
670 }
671
672 if (flag_set['p']) {
673 strncpy(bkpinfo->prefix, flag_val['p'], MAX_STR_LEN / 4);
674 log_msg(1,"Prefix forced to %s",bkpinfo->prefix);
675 }
676
677 if (flag_set['d']) { /* backup directory (if ISO/NETFS) */
678 if (flag_set['i']) {
679 strncpy(bkpinfo->isodir, flag_val['d'], MAX_STR_LEN / 4);
680 sprintf(tmp, "ls -l %s", bkpinfo->isodir);
681 if (run_program_and_log_output(tmp, 2)) {
682 fatal_error("output folder does not exist - please create it");
683 }
684 } else if (flag_set['n']) {
685 mr_free(bkpinfo->netfs_remote_dir);
686 mr_asprintf(bkpinfo->netfs_remote_dir, "%s", flag_val['d']);
687 } else { /* backup device (if tape/CD-R/CD-RW) */
688 strncpy(bkpinfo->media_device, flag_val['d'], MAX_STR_LEN / 4);
689 }
690 }
691
692 if ((flag_set['n']) && (! bkpinfo->restore_data)) {
693 mr_asprintf(tmp1,"%s/%s/.dummy.txt", bkpinfo->isodir,bkpinfo->netfs_remote_dir);
694 if ((bkpinfo->netfs_user) && (strstr(bkpinfo->netfs_proto,"nfs"))) {
695 mr_asprintf(tmp2, "su - %s -c \"echo hi > %s\"", bkpinfo->netfs_user, tmp1);
696 } else {
697 mr_asprintf(tmp2, "echo hi > %s", tmp1);
698 }
699 i = run_program_and_log_output(tmp2, 2);
700 mr_free(tmp2);
701
702 if (i) {
703 retval++;
704 log_to_screen("Are you sure directory '%s' exists in remote dir '%s'?\nIf so, do you have rights to write to it?\n", bkpinfo->netfs_remote_dir, bkpinfo->netfs_mount);
705 }
706 unlink(tmp1);
707 mr_free(tmp1);
708 }
709
710 if (!flag_set['d'] && (flag_set['c'] || flag_set['w'] || flag_set['C'])) {
711 if (g_kernel_version >= 2.6) {
712 if (popup_and_get_string
713 ("Device", "Please specify the device",
714 bkpinfo->media_device, MAX_STR_LEN / 4)) {
715 retval++;
716 log_to_screen("User opted to cancel.");
717 }
718 } else if (find_cdrw_device(bkpinfo->media_device)) {
719 retval++;
720 log_to_screen
721 ("Tried and failed to find CD-R[W] drive automatically.\n");
722 } else {
723 flag_set['d'] = TRUE;
724 strncpy(flag_val['d'], bkpinfo->media_device, MAX_STR_LEN / 4);
725 }
726 }
727
728 if ((!flag_set['d'] && !flag_set['n'] && !flag_set['C']) && (! bkpinfo->restore_data)) {
729 retval++;
730 log_to_screen("Please specify the backup device/directory.\n");
731 fatal_error("You didn't use -d to specify the backup device/directory.");
732 }
733
734 for (i = '0'; i <= '9'; i++) {
735 if (flag_set[i]) {
736 bkpinfo->compression_level = i - '0';
737 } /* not '\0' but '0' */
738 }
739
740 if (flag_set['S']) {
741 setup_scratchdir(flag_val['S']);
742 mr_asprintf(tmp1, "touch %s/.foo.dat", bkpinfo->scratchdir);
743 if (run_program_and_log_output(tmp1, 1)) {
744 retval++;
745 mr_free(tmp1);
746 log_to_screen("Please specify a scratchdir which I can write to. :)");
747 fatal_error("I cannot write to the scratchdir you specified.");
748 }
749 mr_free(tmp1);
750
751 mr_asprintf(tmp1, "ln -sf %s/.foo.dat %s/.bar.dat", bkpinfo->scratchdir, bkpinfo->scratchdir);
752 if (run_program_and_log_output(tmp1, 1)) {
753 retval++;
754 mr_free(tmp1);
755 log_to_screen("Please don't specify a SAMBA or VFAT or NFS scratchdir.");
756 fatal_error("I cannot write to the scratchdir you specified.");
757 }
758 mr_free(tmp1);
759 }
760
761 if (flag_set['T']) {
762 setup_tmpdir(flag_val['T']);
763 mr_asprintf(tmp1, "touch %s/.foo.dat", bkpinfo->tmpdir);
764 i = run_program_and_log_output(tmp1, 1);
765 mr_free(tmp1);
766
767 if (i) {
768 retval++;
769 log_to_screen("Please specify a tempdir which I can write to. :)");
770 fatal_error("I cannot write to the tempdir you specified.");
771 }
772 mr_asprintf(tmp1, "ln -sf %s/.foo.dat %s/.bar.dat", bkpinfo->tmpdir, bkpinfo->tmpdir);
773 i = run_program_and_log_output(tmp1, 1);
774 mr_free(tmp1);
775
776 if (i) {
777 retval++;
778 log_to_screen("Please don't specify a SAMBA or VFAT or NFS tmpdir.");
779 fatal_error("I cannot write to the tempdir you specified.");
780 }
781 }
782
783 if ((flag_set['A']) && (! bkpinfo->restore_data)) {
784 strncpy(bkpinfo->call_after_iso, flag_val['A'], MAX_STR_LEN);
785 }
786
787 if ((flag_set['B']) && (! bkpinfo->restore_data)) {
788 strncpy(bkpinfo->call_before_iso, flag_val['B'], MAX_STR_LEN);
789 }
790
791 if ((flag_set['H']) && (! bkpinfo->restore_data)) {
792 g_cd_recovery = TRUE;
793 }
794
795 if ((flag_set['l']) && (! bkpinfo->restore_data)) {
796#ifdef __FreeBSD__
797# define BOOT_LOADER_CHARS "GLBMR"
798#else
799# ifdef __IA64__
800# define BOOT_LOADER_CHARS "GER"
801# else
802# define BOOT_LOADER_CHARS "GLR"
803# endif
804#endif
805 if (!strchr(BOOT_LOADER_CHARS, (bkpinfo->boot_loader = flag_val['l'][0]))) {
806 log_msg(1, "%c? What is %c? I need G, L, E or R.", bkpinfo->boot_loader, bkpinfo->boot_loader);
807 fatal_error("Please specify GRUB, LILO, ELILO or RAW with the -l switch");
808 }
809#undef BOOT_LOADER_CHARS
810 }
811
812 if (flag_set['f']) {
813 strncpy(bkpinfo->boot_device, resolve_softlinks_to_get_to_actual_device_file(flag_val['f']),MAX_STR_LEN / 4);
814 }
815
816 if ((flag_set['P']) && (! bkpinfo->restore_data)) {
817 strncpy(bkpinfo->postnuke_tarball, flag_val['P'], MAX_STR_LEN);
818 }
819
820 if (flag_set['Q']) {
821 i = which_boot_loader(tmp);
822 log_msg(3, "boot loader is %c, residing at %s", i, tmp);
823 printf("boot loader is %c, residing at %s\n", i, tmp);
824 finish(0);
825 }
826
827 if ((flag_set['L']) && (! bkpinfo->restore_data)) {
828 bkpinfo->use_lzo = TRUE;
829 if (run_program_and_log_output("which lzop", 2)) {
830 retval++;
831 log_to_screen("Please install LZOP. You can't use '-L' until you do.\n");
832 }
833 }
834
835 if (flag_set['F']) {
836 log_msg(3, "-F means we will fail immediately at the first interaction request");
837 g_fail_immediately = TRUE;
838 }
839
840 if ((flag_set['G']) && (! bkpinfo->restore_data)) {
841 bkpinfo->use_gzip = TRUE;
842 if (run_program_and_log_output("which gzip", 2)) {
843 retval++;
844 log_to_screen("Please install gzip. You can't use '-G' until you do.\n");
845 }
846 }
847
848 if ((flag_set['Y']) && (! bkpinfo->restore_data)) {
849 bkpinfo->use_lzma = TRUE;
850 if (run_program_and_log_output("which lzma", 2)) {
851 retval++;
852 log_to_screen("Please install lzma. You can't use '-Y' until you do.\n");
853 }
854 }
855
856 bkpinfo->use_obdr = FALSE;
857 if (flag_set['o']) {
858 if ((!flag_set['t']) && (! bkpinfo->restore_data)) {
859 log_to_screen("OBDR support is only available for tapes. Use the -t option");
860 fatal_error("Aborting");
861 }
862 bkpinfo->use_obdr = TRUE;
863 }
864
865#ifndef __FreeBSD__
866 if ((!is_this_a_valid_disk_format("vfat")) && (! bkpinfo->restore_data)) {
867 bkpinfo->make_cd_use_lilo = TRUE;
868 log_to_screen("Your kernel appears not to support vfat filesystems. I am therefore");
869 log_to_screen("using LILO instead of SYSLINUX as the media boot loader.");
870 }
871 if ((run_program_and_log_output("which mkfs.vfat", 2)) && (! bkpinfo->restore_data)) {
872 bkpinfo->make_cd_use_lilo = TRUE;
873#ifdef __IA32__
874 log_to_screen("Your filesystem is missing 'mkfs.vfat', so I cannot use SYSLINUX as");
875 log_to_screen("your boot loader. I shall therefore use LILO instead.");
876#endif
877#ifdef __IA64__
878 log_to_screen("Your filesystem is missing 'mkfs.vfat', so I cannot prepare the EFI");
879 log_to_screen("environment correctly. Please install it.");
880 fatal_error("Aborting");
881#endif
882 }
883#ifdef __IA64__
884 /* We force ELILO usage on IA64 */
885 bkpinfo->make_cd_use_lilo = TRUE;
886#endif
887#endif
888
889 if (! bkpinfo->restore_data) {
890 i = flag_set['O'] + flag_set['V'];
891 if (i == 0) {
892 retval++;
893 log_to_screen("Specify backup (-O), verify (-V) or both (-OV).\n");
894 }
895 }
896
897 if ((! bkpinfo->restore_data) && (flag_set['Z'])) {
898 fatal_error("The -Z switch is only valid in restore mode");
899 }
900
901 if (flag_set['Z']) {
902 if (! strcmp(flag_val['Z'], "nuke")) {
903 bkpinfo->restore_mode = nuke;
904 } else if (! strcmp(flag_val['Z'], "interactive")) {
905 bkpinfo->restore_mode = interactive;
906 } else if (! strcmp(flag_val['Z'], "compare")) {
907 bkpinfo->restore_mode = compare;
908 } else if (! strcmp(flag_val['Z'], "mbr")) {
909 bkpinfo->restore_mode = mbr;
910 } else if (! strcmp(flag_val['Z'], "iso")) {
911 bkpinfo->restore_mode = isoonly;
912 } else if (! strcmp(flag_val['Z'], "isonuke")) {
913 bkpinfo->restore_mode = isonuke;
914 } else {
915 bkpinfo->restore_mode = interactive;
916 }
917 }
918
919/* and finally... */
920
921 paranoid_free(tmp);
922 return (retval);
923}
924
925
926
927/**
928 * Get the switches from @p argc and @p argv using getopt() and place them in
929 * @p flag_set and @p flag_val.
930 * @param argc The argument count (@p argc passed to main()).
931 * @param argv The argument vector (@p argv passed to main()).
932 * @param flag_val An array indexed by switch letter - if a switch is set and
933 * has an argument then set flag_val[switch] to that argument.
934 * @param flag_set An array indexed by switch letter - if a switch is set then
935 * set flag_set[switch] to TRUE, else set it to FALSE.
936 * @return The number of problems with the command line (0 for success).
937 */
938int retrieve_switches_from_command_line(int argc, char *argv[], char flag_val[128][MAX_STR_LEN], bool flag_set[128])
939{
940 /*@ ints ** */
941 int opt = 0;
942 int i = 0;
943 int len;
944
945 /*@ bools *** */
946 bool bad_switches = FALSE;
947
948 assert(flag_val != NULL);
949 assert(flag_set != NULL);
950
951 for (i = 0; i < 128; i++) {
952 flag_val[i][0] = '\0';
953 flag_set[i] = FALSE;
954 }
955 while ((opt = getopt(argc, argv, MONDO_OPTIONS)) != -1) {
956 if (opt == '?') {
957 bad_switches = TRUE;
958 } else {
959 if (flag_set[opt]) {
960 bad_switches = TRUE;
961 log_to_screen("Switch -%c previously defined as %s\n", opt, flag_val[opt]);
962 } else {
963 flag_set[opt] = TRUE;
964 if (optarg) {
965 len = strlen(optarg);
966 if (optarg[0] != '/' && optarg[len - 1] == '/') {
967 optarg[--len] = '\0';
968 log_to_screen
969 ("Warning - param '%s' should not have trailing slash!",
970 optarg);
971 }
972 if (opt == 'd') {
973 if (strchr(flag_val[opt], '/')
974 && flag_val[opt][0] != '/') {
975 log_to_screen("-%c flag --- must be absolute path --- '%s' isn't absolute", opt, flag_val[opt]);
976 bad_switches = TRUE;
977 }
978 }
979 strcpy(flag_val[opt], optarg);
980 }
981 }
982 }
983 }
984 for (i = optind; i < argc; i++) {
985 bad_switches = TRUE;
986 log_to_screen("Invalid arg -- %s\n", argv[i]);
987 }
988 return (bad_switches);
989}
990
991
992
993
994/**
995 * Print a not-so-helpful help message and exit.
996 */
997void help_screen()
998{
999 log_msg(1, "Type 'man mondoarchive' for more information\n");
1000 exit(1);
1001}
1002
1003
1004/**
1005 * Terminate Mondo in response to a signal.
1006 * @param sig The signal number received.
1007 */
1008void terminate_daemon(int sig)
1009{
1010 char *tmp = NULL;
1011 char *tmp2 = NULL;
1012
1013 switch (sig) {
1014 case SIGINT:
1015 mr_asprintf(tmp, "SIGINT");
1016 mr_asprintf(tmp2, "You interrupted me :-)");
1017 break;
1018 case SIGKILL:
1019 mr_asprintf(tmp, "SIGKILL");
1020 mr_asprintf(tmp2, "I seriously have no clue how this signal even got to me. Something's wrong with your system.");
1021 break;
1022 case SIGTERM:
1023 mr_asprintf(tmp, "SIGTERM");
1024 mr_asprintf(tmp2, "Got terminate signal");
1025 break;
1026 case SIGHUP:
1027 mr_asprintf(tmp, "SIGHUP");
1028 mr_asprintf(tmp2, "Hangup on line");
1029 break;
1030 case SIGSEGV:
1031 mr_asprintf(tmp, "SIGSEGV");
1032 mr_asprintf(tmp2, "Internal programming error. Please send a backtrace as well as your log.");
1033 break;
1034 case SIGPIPE:
1035 mr_asprintf(tmp, "SIGPIPE");
1036 mr_asprintf(tmp2, "Pipe was broken");
1037 break;
1038 case SIGABRT:
1039 mr_asprintf(tmp, "SIGABRT");
1040 mr_asprintf(tmp2, "Abort - probably failed assertion. I'm sleeping for a few seconds so you can read the message.");
1041 break;
1042 default:
1043 mr_asprintf(tmp, "(Unknown)");
1044 mr_asprintf(tmp2, "(Unknown)");
1045 }
1046
1047 mr_strcat(tmp, " signal received from OS");
1048 log_to_screen(tmp);
1049 mr_free(tmp);
1050
1051 log_to_screen(tmp2);
1052 mr_free(tmp2);
1053 if (sig == SIGABRT) {
1054 sleep(10);
1055 }
1056 kill_buffer();
1057
1058 free_MR_global_filenames();
1059
1060 fatal_error("MondoRescue is terminating in response to a signal from the OS");
1061 finish(254); // just in case
1062}
1063
1064
1065
1066
1067/**
1068 * Turn signal-trapping on or off.
1069 * @param on If TRUE, turn it on; if FALSE, turn it off (we still trap it, just don't do as much).
1070 */
1071void set_signals(int on)
1072{
1073 int signals[] = { SIGTERM, SIGHUP, SIGTRAP, SIGABRT, SIGINT, SIGKILL, SIGSTOP, 0 };
1074 int i;
1075
1076 signal(SIGPIPE, sigpipe_occurred);
1077 for (i = 0; signals[i]; i++) {
1078 if (on) {
1079 signal(signals[i], terminate_daemon);
1080 } else {
1081 signal(signals[i], termination_in_progress);
1082 }
1083 }
1084}
1085
1086
1087
1088
1089/**
1090 * Exit immediately without cleaning up.
1091 * @param sig The signal we are exiting due to.
1092 */
1093void termination_in_progress(int sig)
1094{
1095 log_msg(1, "Termination in progress");
1096 usleep(1000);
1097 pthread_exit(0);
1098}
1099
1100/* @} - end of cliGroup */
Note: See TracBrowser for help on using the repository browser.