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

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