source: MondoRescue/branches/3.3/mondo/src/common/libmondo-cli.c@ 3873

Last change on this file since 3873 was 3873, checked in by Bruno Cornec, 2 months ago

Fix errors

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