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

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