source: MondoRescue/branches/3.0/mondo/src/common/libmondo-cli.c@ 2946

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