source: MondoRescue/trunk/mondo/mondo/mondoarchive/mondo-cli.c@ 59

Last change on this file since 59 was 59, checked in by bcornec, 19 years ago

Trunk: indent on all source files

  • Property svn:keywords set to Id
File size: 30.2 KB
RevLine 
[1]1/***************************************************************************
2mondo-cli.c
3-------------------
4begin : Fri Apr 19 16:40:35 EDT 2002
5copyright : (C) 2002 Mondo Hugo Rabson
6email : Hugo Rabson <hugorabson@msn.com>
7edited by : by Stan Benoit 4/2002
8email : troff@nakedsoul.org
[59]9cvsid : $Id: mondo-cli.c 59 2005-10-10 23:34:31Z bcornec $
[1]10 ***************************************************************************/
11
12/***************************************************************************
13 * *
14 * This program is free software; you can redistribute it and/or modify *
15 * it under the terms of the GNU General Public License as published by *
16 * the Free Software Foundation; either version 2 of the License, or *
17 * (at your option) any later version. *
18 * *
19 ***************************************************************************/
20
21/***************************************************************************
22UPDATE LOG
23
24
2508/04
26- if user specifies a dumb -T value, abort
27
2807/22
29- handle -Q sensibly (don't abort if only -Q supplied)
30
3107/17
32- better checking of NFS dir's validity
33
3406/19
35- added AUX_VER
36
3704/17
38- added '-b' support
3904/03
40- added star support
41
4202/06
43- fixed "Please give /dev entry" error msg
44
4501/20/2004
46- added 2.6.x-kernel "device = /dev/...." support to param reader
47- better handling of SCSI and /dev entries
48- touch /boot/boot.b if necessary
49
5009/26/2003
51- typo in command-line handling of 'r'
52
5309/25
54- added DVD write support
55
5609/24
57- if tape backup (-t) but user doesn't specify tape drive then
58 make an educated guess using find_tape_device_and_size()
59
6009/18
61- insist on partimagehack being present if -x found
62
6309/16
64- added support for multiple -I's and -E's in call to mondoarchive
65- the '-D' flag doesn't take a value now
66
6707/14
68- fatal error if -E too short
69
7005/14
71- if 'n' and user doesn't have rights to write to output dir
72 then error out
73
7405/05
75- added Joshua Oreman's FreeBSD patches
76
7705/04
78- added Herman Kuster's multi-level bkp patch
79
8005/02
81- write errors to screen, not just to log
82
8304/25
84- added lots of assert()'s and log_OS_error()'s
85
8604/21
87- line 570 --- resolve boot device if softlink
88
8904/08
90- changed a bunch of fprintf(stderr,...)'s to log_it()'s
91- fixed final / removal in retrieve_switches_from_command_line()
92
9304/04
94- added -e
95
9603/15
97- reject relative paths if -d flag (Alessandro Polverini)
98
9901/02/2003
100- added -J flag (to let user specify incoming filelist)
101
10212/13/2002
103- various strcpy() calls replaced with strncpy() calls
104
10512/10
106- added g_loglevel
107
10811/25
109- line 614 --- if commmand-line param ends in '/' then drop that '/'
110
11111/19
112- rewrote finish() to kill processes more softly
113- if user calls with '-l RAW' then
114
11509/01 - 09/30
116- added -N to let user exclude all NFS-related mounts and devices
117- run_program_and_log_output() now takes boolean operator to specify
118 whether it will log its activities in the event of _success_
119
12008/01 - 08/31
121- if no device specified when backing up to tape streamer then assume /dev/st0
122- abort if tape user specifies tape size (just for testing porpoises)
123- tape users no longer need to specify tape size
124- added some comments
125- added bkpinfo->backup_media_type
126- renamed from mondo-archive.c to mondo-cli.c
127
12807/01 - 07/31
129- better check for mkfs.vfat
130- more sanity-checking for -d flag
131- if isodir does not exist then abort
132- removed "the rest are..." comment from log
133- do not permit '-H' and '-t' in the same command line
134- if not '-o' then insist on vfat-friendly kernel
135
13606/01 - 06/30
137- added signal-trapping
138- added '-W' (won't make bootable CD or floppies) flag
139- added missing 'j++' to -s switch's code
140- expanded -s switch
141- added -u switch
142- if dvdrecord exists and cdrecord doesn't then use
143 dvdrecord instead of cdrecord
144
14504/01 - 04/30
146- if CD-ROM is supermounted then unmount, run, and remount
147- replace MONDO_VERSION #define with VERSION from ../config.h
148- if CD-ROM is mounted at start then abort
149- improved homedir-locating code
150- improved "backup will occupy N CD's" calculation a bit
151- added -m (manual CD tray) flag
152
153
154*******************************************************************/
155
156/**
157 * @file
158 * Functions for handling command-line arguments passed to mondoarchive.
159 */
160
161/** @def BOOT_LOADER_CHARS The characters allowed for boot loader on this platform. */
162
163#include <pthread.h>
164#include "../common/my-stuff.h"
165#include "../common/mondostructures.h"
166#include "mondo-cli-EXT.h"
167#include "../common/libmondo.h"
168
169
170
171#ifndef VERSION
172#define VERSION AUX_VER
173#endif
174
175
176
[59]177//static char cvsid[] = "$Id: mondo-cli.c 59 2005-10-10 23:34:31Z bcornec $";
[1]178
179extern int g_loglevel;
180extern bool g_text_mode;
[59]181extern bool g_skip_floppies; ///< Whether to skip the creation of boot disks
182extern char g_startdir[MAX_STR_LEN]; ///< ????? @bug ?????
[1]183extern char g_erase_tmpdir_and_scratchdir[MAX_STR_LEN];
184extern char g_tmpfs_mountpt[MAX_STR_LEN];
185extern bool g_sigpipe;
186
187/*@ file pointer **************************************************/
188extern FILE *g_tape_stream;
189
190/*@ long long *****************************************************/
191extern long long g_tape_posK;
192
193/*@ long **********************************************************/
194extern long g_noof_sets;
195
196/*@ bool******** **************************************************/
[59]197bool g_debugging = FALSE; ///< ????? @bug ????? @ingroup globalGroup
198bool g_running_live = FALSE; ///< ????? @bug ????? @ingroup globalGroup
[1]199extern bool g_cd_recovery;
200
201/**
202 * Whether we're restoring from ISOs. Obviously not, since this is the
203 * backup program.
204 * @note You @b MUST declare this variable somewhere in your program if
205 * you use libmondo. Otherwise the link will fail.
206 * @ingroup globalGroup
207 */
208bool g_ISO_restore_mode = FALSE;
209
210
211extern double g_kernel_version;
212
213extern int g_current_media_number;
214
215
216
217extern pid_t g_main_pid;
218
219
220
221
[59]222extern char *resolve_softlinks_to_get_to_actual_device_file(char *);
[1]223
224
225
226/**
227 * @addtogroup cliGroup
228 * @{
229 */
230/**
231 * Populate @p bkpinfo from the command-line parameters stored in @p argc and @p argv.
232 * @param argc The argument count, including the program name; @p argc passed to main().
233 * @param argv The argument vector; @p argv passed to main().
234 * @param bkpinfo The backup information structure to populate.
235 * @return The number of problems with the command line (0 for success).
236 */
237int
[59]238handle_incoming_parameters(int argc, char *argv[],
239 struct s_bkpinfo *bkpinfo)
[1]240{
[59]241 /*@ int *** */
242 int res = 0;
243 int retval = 0;
244 int i = 0, j;
[1]245
[59]246 /*@ buffers *************** */
247 char *tmp;
248 char flag_val[128][MAX_STR_LEN];
249 bool flag_set[128];
[1]250
[59]251 malloc_string(tmp);
252 sensibly_set_tmpdir_and_scratchdir(bkpinfo);
253 for (i = 0; i < 128; i++) {
254 flag_val[i][0] = '\0';
255 flag_set[i] = FALSE;
256 }
257 // strcpy (bkpinfo->tmpdir, "/root/images/mondo");
258 // strcpy (bkpinfo->scratchdir, "/home");
259 for (j = 1; j <= MAX_NOOF_MEDIA; j++) {
260 bkpinfo->media_size[j] = 650;
261 } /* default */
262 res =
263 retrieve_switches_from_command_line(argc, argv, flag_val,
264 flag_set);
265 retval += res;
266 if (!retval) {
267 res = process_switches(bkpinfo, flag_val, flag_set);
268 retval += res;
269 }
[1]270/*
271 if (!retval)
272 {
273*/
[59]274 log_msg(3, "Switches:-");
275 for (i = 0; i < 128; i++) {
276 if (flag_set[i]) {
277 sprintf(tmp, "-%c %s", i, flag_val[i]);
278 log_msg(3, tmp);
279 }
[1]280 }
281// }
[59]282 sprintf(tmp, "rm -Rf %s/tmp.mondo.*", bkpinfo->tmpdir);
283 paranoid_system(tmp);
284 sprintf(tmp, "rm -Rf %s/mondo.scratch.*", bkpinfo->scratchdir);
285 paranoid_system(tmp);
286 sprintf(bkpinfo->tmpdir + strlen(bkpinfo->tmpdir), "/tmp.mondo.%ld",
287 random() % 32767);
288 sprintf(bkpinfo->scratchdir + strlen(bkpinfo->scratchdir),
289 "/mondo.scratch.%ld", random() % 32767);
290 sprintf(tmp, "mkdir -p %s/tmpfs", bkpinfo->tmpdir);
291 paranoid_system(tmp);
292 sprintf(tmp, "mkdir -p %s", bkpinfo->scratchdir);
293 paranoid_system(tmp);
294 if (bkpinfo->nfs_mount[0] != '\0') {
295 store_nfs_config(bkpinfo);
296 }
297 paranoid_free(tmp);
298 return (retval);
[1]299}
300
301
302
303
304/**
305 * Store the sizespec(s) stored in @p value into @p bkpinfo.
306 * @param bkpinfo The backup information structure; the @c bkpinfo->media_size field will be populated.
307 * @param value The sizespec (e.g. "2g", "40m").
308 * @return 0, always.
309 * @bug Return code not needed.
310 */
311int process_the_s_switch(struct s_bkpinfo *bkpinfo, char *value)
312{
[59]313 int j;
314 char tmp[MAX_STR_LEN], *p, comment[MAX_STR_LEN];
[1]315
[59]316 assert(bkpinfo != NULL);
317 assert(value != NULL);
[1]318
[59]319 bkpinfo->media_size[0] = -1; /* dummy value */
320 for (j = 1, p = value; j < MAX_NOOF_MEDIA && strchr(p, ',');
321 j++, p = strchr(p, ',') + 1) {
322 strncpy(tmp, p, MAX_STR_LEN);
323 *(strchr(tmp, ',')) = '\0';
324 bkpinfo->media_size[j] = friendly_sizestr_to_sizelong(tmp);
325 sprintf(comment, "media_size[%d] = %ld", j,
326 bkpinfo->media_size[j]);
327 log_msg(3, comment);
[1]328 }
[59]329 for (; j <= MAX_NOOF_MEDIA; j++) {
330 bkpinfo->media_size[j] = friendly_sizestr_to_sizelong(p);
[1]331 }
332// bkpinfo->media_size[0] = bkpinfo->media_size[MAX_NOOF_MEDIA];
[59]333 for (j = 1; j <= MAX_NOOF_MEDIA; j++) {
334 if (bkpinfo->media_size[j] <= 0) {
335 log_msg(1, "You gave media #%d an invalid size\n", j);
336 return (-1);
337 }
338 }
339 return (0);
[1]340}
341
342
343
344/**
345 * Process mondoarchive's command-line switches.
346 * @param bkpinfo The backup information structure to populate.
347 * @param flag_val An array of the argument passed to each switch (the letter is the index).
348 * If a switch is not set or has no argument, the field in @p flag_val doesn't matter.
349 * @param flag_set An array of <tt>bool</tt>s indexed by switch letter: TRUE if it's set,
350 * FALSE if it's not.
351 * @return The number of problems with the switches, or 0 for success.
352 * @bug Maybe include a list of all switches (inc. intentionally undocumented ones not in the manual!) here?
353 */
354int
[59]355process_switches(struct s_bkpinfo *bkpinfo,
356 char flag_val[128][MAX_STR_LEN], bool flag_set[128])
[1]357{
358
[59]359 /*@ ints *** */
360 int i = 0;
361 int retval = 0;
362 int percent = 0;
[1]363
[59]364 /*@ buffers ** */
365 char *tmp;
366 char *psz;
[1]367
[59]368 long itbs;
[1]369
[59]370 malloc_string(tmp);
371 malloc_string(psz);
[1]372
[59]373 assert(bkpinfo != NULL);
374 assert(flag_val != NULL);
375 assert(flag_set != NULL);
[1]376
[59]377 bkpinfo->internal_tape_block_size = DEFAULT_INTERNAL_TAPE_BLOCK_SIZE;
[1]378
379/* compulsory */
[59]380 i = flag_set['c'] + flag_set['i'] + flag_set['n'] +
381 flag_set['t'] + flag_set['u'] + flag_set['r'] +
382 flag_set['w'] + flag_set['C'];
383 if (i == 0) {
384 retval++;
385 log_to_screen("You must specify the media type\n");
[1]386 }
[59]387 if (i > 1) {
388 retval++;
389 log_to_screen("Please specify only one media type\n");
[1]390 }
[59]391 if (flag_set['K']) {
392 g_loglevel = atoi(flag_val['K']);
393 if (g_loglevel < 3) {
394 g_loglevel = 3;
395 }
[1]396 }
[59]397 if (flag_set['L'] && flag_set['0']) {
398 retval++;
399 log_to_screen("You cannot have 'no compression' _and_ LZOP.\n");
[1]400 }
[59]401 bkpinfo->backup_data = flag_set['O'];
402 bkpinfo->verify_data = flag_set['V'];
403 if (flag_set['I'] && !bkpinfo->backup_data) {
404 log_to_screen("-I switch is ignored if just verifying");
405 }
406 if (flag_set['E'] && !bkpinfo->backup_data) {
407 log_to_screen("-E switch is ignored if just verifying");
408 }
[1]409
[59]410 if (!find_home_of_exe("afio")) {
411 if (find_home_of_exe("star")) {
412 flag_set['R'] = TRUE;
413 log_msg(1, "Using star instead of afio");
414 } else {
415 fatal_error
416 ("Neither afio nor star is installed. Please install at least one.");
417 }
[1]418 }
419
[59]420 if (flag_set['R']) {
421 bkpinfo->use_star = TRUE;
422 if (flag_set['L']) {
423 fatal_error("You may not use star and lzop at the same time.");
424 }
425 if (!find_home_of_exe("star")) {
426 fatal_error
427 ("Please install 'star' RPM or tarball if you are going to use -R. Thanks.");
428 }
[1]429 }
[59]430 if (flag_set['W']) {
431 bkpinfo->nonbootable_backup = TRUE;
432 log_to_screen("Warning - you have opted for non-bootable backup");
433 if (flag_set['f'] || flag_set['l']) {
434 log_to_screen
435 ("You don't need to specify bootloader or bootdevice");
436 }
[1]437 }
[59]438 if (flag_set['t'] && flag_set['H']) {
439 fatal_error
440 ("Sorry, you may not nuke w/o warning from tape. Drop -H, please.");
441 }
442 if (flag_set['I']) {
443 if (!strcmp(bkpinfo->include_paths, "/")) {
444 log_msg(2, "'/' is pleonastic.");
445 bkpinfo->include_paths[0] = '\0';
446 }
447 if (bkpinfo->include_paths[0]) {
448 strcat(bkpinfo->include_paths, " ");
449 }
450 strncpy(bkpinfo->include_paths + strlen(bkpinfo->include_paths),
451 flag_val['I'],
452 MAX_STR_LEN - strlen(bkpinfo->include_paths));
453 log_msg(1, "include_paths is now '%s'", bkpinfo->include_paths);
454 if (bkpinfo->include_paths[0] == '-') {
455 retval++;
456 log_to_screen("Please supply a sensible value with '-I'\n");
457 }
458 }
[1]459
[59]460 if (g_kernel_version >= 2.6 && !flag_set['d']
461 && (flag_set['c'] || flag_set['w'])) {
462 fatal_error
463 ("If you are using the 2.6.x kernel, please specify the CD-R(W) device.");
[1]464 }
465
[59]466
467 if (flag_set['J']) {
468 if (flag_set['I']) {
469 retval++;
470 log_to_screen
471 ("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. :-)");
472 }
473 bkpinfo->make_filelist = FALSE;
474 strcpy(bkpinfo->include_paths, flag_val['J']);
[1]475 }
[59]476 if (flag_set['c'] || flag_set['w'] || flag_set['C'] || flag_set['r']) {
477 if (!flag_set['r'] && g_kernel_version <= 2.5
478 && strstr(flag_val['d'], "/dev/")) {
479 fatal_error
480 ("Please don't give a /dev entry. Give a SCSI node for the parameter of the -d flag.");
481 }
482 if (flag_set['r'] && g_kernel_version <= 2.5
483 && !strstr(flag_val['d'], "/dev/")) {
484 fatal_error
485 ("Please give a /dev entry, not a SCSI node, as the parameter of the -d flag.");
486 }
487 if (g_kernel_version >= 2.6 && !strstr(flag_val['d'], "/dev/")) {
488 log_to_screen
489 ("Linus says 2.6 has a broken ide-scsi module. Proceed at your own risk...");
490 }
491
492 if (system("which cdrecord > /dev/null 2> /dev/null")
493 && system("which dvdrecord > /dev/null 2> /dev/null")) {
494 fatal_error
495 ("Please install dvdrecord/cdrecord and try again.");
496 }
497 if (flag_set['C']) {
498 bkpinfo->cdrw_speed = 2;
499 if (!flag_set['L']) {
500 log_to_screen
501 ("You must use -L with -C. Therefore I am setting it for you.");
502 flag_set['L'] = 1;
503 flag_val['L'][0] = '\0';
504 }
505 } else {
506 log_msg(3, "flag_val['c'] = %s", flag_val['c']);
507 log_msg(3, "flag_val['w'] = %s", flag_val['w']);
508// log_msg(3, "flag_set['r'] = %i", flag_set['r'] );
509 if (flag_set['c']) {
510 bkpinfo->cdrw_speed = atoi(flag_val['c']);
511 } else if (flag_set['w']) {
512 bkpinfo->cdrw_speed = atoi(flag_val['w']);
513 } else if (flag_set['r']) {
514 bkpinfo->cdrw_speed = 1; /*atoi(flag_val['r']); */
515 }
516
517 if (bkpinfo->cdrw_speed < 1) {
518 fatal_error
519 ("You specified a silly speed for a CD-R[W] drive");
520 }
521 }
[1]522 }
[59]523 if (flag_set['t'] && !flag_set['d']) {
524 log_it("Hmm! No tape drive specified. Let's see what we can do.");
525 if (find_tape_device_and_size(flag_val['d'], tmp)) {
526 fatal_error
527 ("Tape device not specified. I couldn't find it either.");
528 }
529 flag_set['d'] = TRUE;
530 sprintf(tmp,
531 "You didn't specify a tape streamer device. I'm assuming %s",
532 flag_val['d']);
533 log_to_screen(tmp);
534 percent = 0;
535 }
536
537 if (flag_set['r']) // DVD
538 {
539 if (flag_set['m']) {
540 fatal_error
541 ("Manual CD tray (-m) not yet supported in conjunction w/ DVD drives. Drop -m.");
542 }
543 if (!flag_set['d']) {
544 if (!find_dvd_device(flag_val['d'], FALSE)) {
545 flag_set['d'] = TRUE;
546 log_to_screen("I guess DVD drive is at %s", flag_val['d']);
547 }
548 }
549 if (!find_home_of_exe("growisofs")) {
550 fatal_error
551 ("Please install growisofs (probably part of dvd+rw-tools). If you want DVD support, you need it.");
552 }
553 if (!find_home_of_exe("dvd+rw-format")) {
554 fatal_error
555 ("Please install dvd+rw-format (probably part of dvd+rw-tools). If you want DVD support, you need it.");
556 }
557 if (strchr(flag_val['d'], ',')) {
558 fatal_error
559 ("Please don't give a SCSI node. Give a _device_, preferably a /dev entry, for the parameter of the -d flag.");
560 }
561 if (!flag_set['s']) {
562 sprintf(flag_val['s'], "%d", DEFAULT_DVD_DISK_SIZE); // 4.7 salesman's GB = 4.482 real GB = 4582 MB
563 strcat(flag_val['s'], "m");
564 log_to_screen
565 ("You did not specify a size (-s) for DVD. I'm guessing %s.",
566 flag_val['s']);
567 flag_set['s'] = 1;
568 }
[1]569/*
570 if (flag_set['Z']) {
571 bkpinfo->blank_dvd_first = TRUE;
572 }
573*/
[59]574 }
[1]575
[59]576 if (flag_set['t'] || flag_set['u']) { /* tape size */
577 if (strchr(flag_val['d'], ',')) {
578 fatal_error
579 ("Please don't give a SCSI node. Give a _device_, preferably a /dev entry, for the parameter of the -d flag.");
580 }
581 if (flag_set['O']) {
582 if (flag_set['s']) {
583 if (flag_set['t']) {
584 fatal_error
585 ("For the moment, please don't specify a tape size. Mondo should handle end-of-tape gracefully anyway.");
586 }
587 if (process_the_s_switch(bkpinfo, flag_val['s'])) {
588 fatal_error("Bad -s switch");
589 }
590 } else if (flag_set['u'] || flag_set['t']) {
591 for (i = 0; i <= MAX_NOOF_MEDIA; i++) {
592 bkpinfo->media_size[i] = 0;
593 }
594 } else {
595 retval++;
596 log_to_screen("Tape size not specified.\n");
597 }
598 }
599 } else { /* CD size */
600 if (flag_set['s']) {
601 if (process_the_s_switch(bkpinfo, flag_val['s'])) {
602 fatal_error("Bad -s switch");
603 }
604 }
605 if (flag_set['w']) {
606 bkpinfo->wipe_media_first = TRUE;
607 } /* CD-RW */
[1]608 }
[59]609 if (flag_set['n']) {
610 strncpy(bkpinfo->nfs_mount, flag_val['n'], MAX_STR_LEN);
611 if (!flag_set['d']) {
612 strncpy(bkpinfo->nfs_remote_dir, "/", MAX_STR_LEN);
613 }
614 sprintf(tmp, "mount | grep -x \"%s .*\" | cut -d' ' -f3",
615 bkpinfo->nfs_mount);
616 strncpy(bkpinfo->isodir,
617 call_program_and_get_last_line_of_output(tmp),
618 MAX_STR_LEN / 4);
619 if (strlen(bkpinfo->isodir) < 3) {
620 retval++;
621 log_to_screen("NFS share is not mounted. Please mount it.\n");
622 }
623 log_msg(3, "mount = %s", bkpinfo->nfs_mount);
624 log_msg(3, "isodir= %s", bkpinfo->isodir);
[1]625 }
[59]626 if (flag_set['c']) {
627 bkpinfo->backup_media_type = cdr;
[1]628 }
[59]629 if (flag_set['C']) {
630 bkpinfo->backup_media_type = cdstream;
[1]631 }
[59]632 if (flag_set['i']) {
633 bkpinfo->backup_media_type = iso;
634 }
635 if (flag_set['n']) {
636 bkpinfo->backup_media_type = nfs;
637 }
638 if (flag_set['r']) {
639 bkpinfo->backup_media_type = dvd;
640 }
641 if (flag_set['t']) {
642 bkpinfo->backup_media_type = tape;
643 }
644 if (flag_set['u']) {
645 bkpinfo->backup_media_type = udev;
646 }
647 if (flag_set['w']) {
648 bkpinfo->backup_media_type = cdrw;
649 }
[1]650
651/* optional, popular */
[59]652 if (flag_set['g']) {
653 g_text_mode = FALSE;
654 }
655 if (flag_set['E']) {
656 if (bkpinfo->exclude_paths[0]) {
657 strcat(bkpinfo->exclude_paths, " ");
658 }
659 strncpy(bkpinfo->exclude_paths + strlen(bkpinfo->exclude_paths),
660 flag_val['E'],
661 MAX_STR_LEN - strlen(bkpinfo->exclude_paths));
662 }
663 if (flag_set['e']) {
664 bkpinfo->please_dont_eject = TRUE;
665 }
666 if (flag_set['N']) // exclude NFS mounts & devices
667 {
[1]668// strncpy(psz, list_of_NFS_devices_and_mounts(), MAX_STR_LEN);
[59]669 strncpy(psz, list_of_NFS_mounts_only(), MAX_STR_LEN);
670 if (bkpinfo->exclude_paths[0]) {
671 strncat(bkpinfo->exclude_paths, " ", MAX_STR_LEN);
672 }
673 strncat(bkpinfo->exclude_paths, psz, MAX_STR_LEN);
674 log_msg(3, "-N means we're now excluding %s",
675 bkpinfo->exclude_paths);
676 }
677 if (strlen(bkpinfo->exclude_paths) >= MAX_STR_LEN) {
678 fatal_error
679 ("Your '-E' parameter is too long. Please use '-J'. (See manual.)");
680 }
681 if (flag_set['b']) {
682 strcpy(psz, flag_val['b']);
683 log_msg(1, "psz = '%s'", psz);
684 if (psz[strlen(psz) - 1] == 'k') {
685 psz[strlen(psz) - 1] = '\0';
686 itbs = atol(psz) * 1024L;
687 } else {
688 itbs = atol(psz);
689 }
690 log_msg(1, "'%s' --> %ld", flag_val['b'], itbs);
691 log_msg(1, "Internal tape block size is now %ld bytes", itbs);
692 if (itbs % 512 != 0 || itbs < 256 || itbs > 1024L * 1024) {
693 fatal_error
694 ("Are you nuts? Silly, your internal tape block size is. Abort, I shall.");
695 }
696 bkpinfo->internal_tape_block_size = itbs;
697 }
698 if (flag_set['D']) {
699 bkpinfo->differential = 1;
[1]700// bkpinfo->differential = atoi (flag_val['D']);
[59]701 if ((bkpinfo->differential < 1) || (bkpinfo->differential > 9)) {
702 fatal_error
703 ("The D option should be between 1 and 9 inclusive");
704 }
[1]705 }
[59]706 if (flag_set['x']) {
707 strncpy(bkpinfo->image_devs, flag_val['x'], MAX_STR_LEN / 4);
708 if (run_program_and_log_output("which partimagehack", 2)) {
709 fatal_error("Please install partimagehack RPM/tarball.");
710 }
[1]711 }
[59]712 if (flag_set['m']) {
713 bkpinfo->manual_cd_tray = TRUE;
[1]714 }
[59]715 if (flag_set['k']) {
716 strncpy(bkpinfo->kernel_path, flag_val['k'], MAX_STR_LEN);
717 if (!strcmp(bkpinfo->kernel_path, "failsafe")) {
718 strcpy(bkpinfo->kernel_path, "FAILSAFE");
719 }
720 if (strcmp(bkpinfo->kernel_path, "FAILSAFE")
721 && !does_file_exist(bkpinfo->kernel_path)) {
722 retval++;
723 sprintf(tmp,
724 "You specified kernel '%s', which does not exist\n",
725 bkpinfo->kernel_path);
726 log_to_screen(tmp);
727 }
728 }
729 if (flag_set['p']) {
730 strncpy(bkpinfo->prefix, flag_val['p'], MAX_STR_LEN / 4);
731 }
[1]732
733
[59]734 if (flag_set['d']) { /* backup directory (if ISO/NFS) */
735 if (flag_set['i']) {
736 strncpy(bkpinfo->isodir, flag_val['d'], MAX_STR_LEN / 4);
737 sprintf(tmp, "ls -l %s", bkpinfo->isodir);
738 if (run_program_and_log_output(tmp, FALSE)) {
739 fatal_error
740 ("output folder does not exist - please create it");
741 }
742 } else if (flag_set['n']) {
743 strncpy(bkpinfo->nfs_remote_dir, flag_val['d'], MAX_STR_LEN);
744 } else { /* backup device (if tape/CD-R/CD-RW) */
745
746 strncpy(bkpinfo->media_device, flag_val['d'], MAX_STR_LEN / 4);
747 }
[1]748 }
[59]749
750 if (flag_set['n']) {
751 sprintf(tmp, "echo hi > %s/%s/.dummy.txt", bkpinfo->isodir,
752 bkpinfo->nfs_remote_dir);
753 if (run_program_and_log_output(tmp, FALSE)) {
754 retval++;
755 sprintf(tmp,
756 "Are you sure directory '%s' exists in remote dir '%s'?\nIf so, do you have rights to write to it?\n",
757 bkpinfo->nfs_remote_dir, bkpinfo->nfs_mount);
758 log_to_screen(tmp);
759 }
[1]760 }
761
[59]762 if (!flag_set['d']
763 && (flag_set['c'] || flag_set['w'] || flag_set['C'])) {
764 if (g_kernel_version >= 2.6) {
765 if (popup_and_get_string
766 ("Device", "Please specify the device",
767 bkpinfo->media_device, MAX_STR_LEN / 4)) {
768 retval++;
769 log_to_screen("User opted to cancel.");
770 }
771 } else if (find_cdrw_device(bkpinfo->media_device)) {
772 retval++;
773 log_to_screen
774 ("Tried and failed to find CD-R[W] drive automatically.\n");
775 } else {
776 flag_set['d'] = TRUE;
777 strncpy(flag_val['d'], bkpinfo->media_device, MAX_STR_LEN / 4);
778 }
[1]779 }
780
[59]781 if (!flag_set['d'] && !flag_set['n'] && !flag_set['C']) {
782 retval++;
783 log_to_screen("Please specify the backup device/directory.\n");
784 fatal_error
785 ("You didn't use -d to specify the backup device/directory.");
[1]786 }
[59]787/* optional, obscure */
788 for (i = '0'; i <= '9'; i++) {
789 if (flag_set[i]) {
790 bkpinfo->compression_level = i - '0';
791 } /* not '\0' but '0' */
[1]792 }
[59]793 if (flag_set['S']) {
794 sprintf(bkpinfo->scratchdir, "%s/mondo.scratch.%ld", flag_val['S'],
795 random() % 32768);
[1]796 }
[59]797 if (flag_set['T']) {
798 sprintf(bkpinfo->tmpdir, "%s/tmp.mondo.%ld", flag_val['T'],
799 random() % 32768);
800 sprintf(tmp, "touch %s/.foo.dat", flag_val['T']);
801 if (run_program_and_log_output(tmp, 1)) {
802 retval++;
803 log_to_screen
804 ("Please specify a tempdir which I can write to. :)");
805 fatal_error("I cannot write to the tempdir you specified.");
806 }
807 sprintf(tmp, "ln -sf %s/.foo.dat %s/.bar.dat", flag_val['T'],
808 flag_val['T']);
809 if (run_program_and_log_output(tmp, 1)) {
810 retval++;
811 log_to_screen
812 ("Please don't specify a SAMBA or VFAT or NFS tmpdir.");
813 fatal_error("I cannot write to the tempdir you specified.");
814 }
[1]815 }
[59]816 if (flag_set['A']) {
817 strncpy(bkpinfo->call_after_iso, flag_val['A'], MAX_STR_LEN);
818 }
819 if (flag_set['B']) {
820 strncpy(bkpinfo->call_before_iso, flag_val['B'], MAX_STR_LEN);
821 }
822 if (flag_set['F']) {
823 g_skip_floppies = TRUE;
824 }
825 if (flag_set['H']) {
826 g_cd_recovery = TRUE;
827 }
828 if (flag_set['l']) {
[1]829#ifdef __FreeBSD__
830# define BOOT_LOADER_CHARS "GLBMR"
831#else
832# ifdef __IA64__
833# define BOOT_LOADER_CHARS "GER"
834# else
835# define BOOT_LOADER_CHARS "GLR"
836# endif
837#endif
[59]838 if (!strchr
839 (BOOT_LOADER_CHARS,
840 (bkpinfo->boot_loader = flag_val['l'][0]))) {
841 log_msg(1, "%c? WTF is %c? I need G, L, E or R.",
842 bkpinfo->boot_loader, bkpinfo->boot_loader);
843 fatal_error
844 ("Please specify GRUB, LILO, ELILO or RAW with the -l switch");
845 }
[1]846#undef BOOT_LOADER_CHARS
847 }
[59]848 if (flag_set['f']) {
849 strncpy(bkpinfo->boot_device,
850 resolve_softlinks_to_get_to_actual_device_file(flag_val
851 ['f']),
852 MAX_STR_LEN / 4);
853 }
854 if (flag_set['P']) {
855 strncpy(bkpinfo->postnuke_tarball, flag_val['P'], MAX_STR_LEN);
856 }
857 if (flag_set['Q']) {
858 i = which_boot_loader(tmp);
859 log_msg(3, "boot loader is %c, residing at %s", i, tmp);
860 printf("boot loader is %c, residing at %s\n", i, tmp);
861 finish(0);
862 }
863 if (flag_set['L']) {
864 bkpinfo->use_lzo = TRUE;
865 if (run_program_and_log_output("which lzop", FALSE)) {
866 retval++;
867 log_to_screen
868 ("Please install LZOP. You can't use '-L' until you do.\n");
869 }
870 }
[1]871
[59]872 if (!flag_set['o']
873 &&
874 !run_program_and_log_output
875 ("cat /etc/issue.net | grep -i suse | grep 64", TRUE)) {
876 bkpinfo->make_cd_use_lilo = TRUE;
877 log_to_screen
878 ("Forcing you to use LILO. SuSE 9.0 (64-bit) has a broken mkfs.vfat binary.");
879 }
880 if (flag_set['o']) {
881 bkpinfo->make_cd_use_lilo = TRUE;
882 }
[1]883#ifndef __FreeBSD__
[59]884 else {
885 if (!is_this_a_valid_disk_format("vfat")) {
886 bkpinfo->make_cd_use_lilo = TRUE;
887 log_to_screen
888 ("Your kernel appears not to support vfat filesystems. I am therefore");
889 log_to_screen
890 ("using LILO instead of SYSLINUX as the CD/floppy's boot loader.");
891 }
892 if (run_program_and_log_output("which mkfs.vfat", FALSE)) {
893 bkpinfo->make_cd_use_lilo = TRUE;
[1]894#ifdef __IA32__
[59]895 log_to_screen
896 ("Your filesystem is missing 'mkfs.vfat', so I cannot use SYSLINUX as");
897 log_to_screen
898 ("your boot loader. I shall therefore use LILO instead.");
[1]899#endif
900#ifdef __IA64__
[59]901 log_to_screen
902 ("Your filesystem is missing 'mkfs.vfat', so I cannot prepare the EFI");
903 log_to_screen("environment correctly. Please install it.");
904 fatal_error("Aborting");
[1]905#endif
[59]906 }
[1]907#ifdef __IA64__
[59]908 /* We force ELILO usage on IA64 */
909 bkpinfo->make_cd_use_lilo = TRUE;
[1]910#endif
[59]911 }
[1]912#endif
913
[59]914 if (bkpinfo->make_cd_use_lilo && !does_file_exist("/boot/boot.b")) {
915 paranoid_system("touch /boot/boot.b");
916 }
[1]917
[59]918 i = flag_set['O'] + flag_set['V'];
919 if (i == 0) {
920 retval++;
921 log_to_screen("Specify backup (-O), verify (-V) or both (-OV).\n");
922 }
[1]923
924/* and finally... */
925
[59]926 paranoid_free(tmp);
927 paranoid_free(psz);
928 return (retval);
[1]929}
930
931
932
933/**
934 * Get the switches from @p argc and @p argv using getopt() and place them in
935 * @p flag_set and @p flag_val.
936 * @param argc The argument count (@p argc passed to main()).
937 * @param argv The argument vector (@p argv passed to main()).
938 * @param flag_val An array indexed by switch letter - if a switch is set and
939 * has an argument then set flag_val[switch] to that argument.
940 * @param flag_set An array indexed by switch letter - if a switch is set then
941 * set flag_set[switch] to TRUE, else set it to FALSE.
942 * @return The number of problems with the command line (0 for success).
943 */
944int
[59]945retrieve_switches_from_command_line(int argc, char *argv[],
946 char flag_val[128][MAX_STR_LEN],
947 bool flag_set[128])
[1]948{
[59]949 /*@ ints ** */
950 int opt = 0;
951 char tmp[MAX_STR_LEN];
952 int i = 0;
953 int len;
[1]954
[59]955 /*@ bools *** */
956 bool bad_switches = FALSE;
[1]957
[59]958 assert(flag_val != NULL);
959 assert(flag_set != NULL);
[1]960
[59]961 for (i = 0; i < 128; i++) {
962 flag_val[i][0] = '\0';
963 flag_set[i] = FALSE;
[1]964 }
[59]965 while ((opt =
966 getopt(argc, argv,
967 "0123456789A:B:CDE:FHI:J:K:LNOP:QRS:T:VWb:c:d:ef:gik:l:mn:op:rs:tuw:x:"))
968 != -1) {
969 if (opt == '?') {
970 bad_switches = TRUE;
971 /*log_it("Invalid option: %c\n",optopt); */
972 } else {
973 if (flag_set[optopt]) {
974 bad_switches = TRUE;
975 sprintf(tmp, "Switch -%c previously defined as %s\n", opt,
976 flag_val[i]);
977 log_to_screen(tmp);
978 } else {
979 flag_set[opt] = TRUE;
980 if (optarg) {
981 len = strlen(optarg);
982 if (optarg[0] != '/' && optarg[len - 1] == '/') {
983 optarg[--len] = '\0';
984 log_to_screen
985 ("Warning - param '%s' should not have trailing slash!",
986 optarg);
987 }
988 if (opt == 'd') {
989 if (strchr(flag_val[opt], '/')
990 && flag_val[opt][0] != '/') {
991 sprintf(tmp,
992 "-%c flag --- must be absolute path --- '%s' isn't absolute",
993 opt, flag_val[opt]);
994 log_to_screen(tmp);
995 bad_switches = TRUE;
996 }
997 }
998 strcpy(flag_val[opt], optarg);
999 }
1000 }
[1]1001 }
1002 }
[59]1003 for (i = optind; i < argc; i++) {
1004 bad_switches = TRUE;
1005 sprintf(tmp, "Invalid arg -- %s\n", argv[i]);
1006 log_to_screen(tmp);
1007 }
1008 return (bad_switches);
[1]1009}
1010
1011
1012
1013
1014/**
1015 * Print a not-so-helpful help message and exit.
1016 */
[59]1017void help_screen()
[1]1018{
[59]1019 log_msg(1, "Type 'man mondo-archive' for more information\n");
1020 exit(1);
[1]1021}
1022
1023
1024/**
1025 * Terminate Mondo in response to a signal.
1026 * @param sig The signal number received.
1027 */
1028void terminate_daemon(int sig)
1029{
[59]1030 char tmp[64];
1031 char tmp2[MAX_STR_LEN];
1032 // char command[512];
1033 // pid_t pid;
[1]1034
[59]1035 switch (sig) {
[1]1036 case SIGINT:
1037 sprintf(tmp, "SIGINT");
1038 strcpy(tmp2, "You interrupted me :-)");
1039 break;
1040 case SIGKILL:
1041 sprintf(tmp, "SIGKILL");
[59]1042 strcpy(tmp2,
1043 "I seriously have no clue how this signal even got to me. Something's wrong with your system.");
[1]1044 break;
1045 case SIGTERM:
1046 sprintf(tmp, "SIGTERM");
[59]1047 strcpy(tmp2, "Got terminate signal");
[1]1048 break;
1049 case SIGHUP:
1050 sprintf(tmp, "SIGHUP");
[59]1051 strcpy(tmp2, "Hangup on line");
[1]1052 break;
1053 case SIGSEGV:
1054 sprintf(tmp, "SIGSEGV");
[59]1055 strcpy(tmp2,
1056 "Internal programming error. Please send a backtrace as well as your log.");
[1]1057 break;
1058 case SIGPIPE:
1059 sprintf(tmp, "SIGPIPE");
[59]1060 strcpy(tmp2, "Pipe was broken");
[1]1061 break;
[59]1062 case SIGABRT:
1063 sprintf(tmp, "SIGABRT");
1064 sprintf(tmp2,
1065 "Abort - probably failed assertion. I'm sleeping for a few seconds so you can read the message.");
1066 break;
[1]1067 default:
1068 sprintf(tmp, "(Unknown)");
[59]1069 }
[1]1070
[59]1071 strcat(tmp, " signal received from OS");
1072 log_to_screen(tmp);
1073 log_to_screen(tmp2);
1074 if (sig == SIGABRT) {
1075 sleep(10);
1076 }
1077 kill_buffer();
1078 fatal_error
1079 ("Mondoarchive is terminating in response to a signal from the OS");
1080 finish(254); // just in case
[1]1081}
1082
1083
1084
1085
1086/**
1087 * Turn signal-trapping on or off.
1088 * @param on If TRUE, turn it on; if FALSE, turn it off (we still trap it, just don't do as much).
1089 */
1090void set_signals(int on)
1091{
[59]1092 int signals[] =
1093 { SIGTERM, SIGHUP, SIGTRAP, SIGABRT, SIGINT, SIGKILL, SIGSTOP, 0 };
1094 int i;
1095
1096 signal(SIGPIPE, sigpipe_occurred);
1097 for (i = 0; signals[i]; i++) {
1098 if (on) {
1099 signal(signals[i], terminate_daemon);
1100 } else {
1101 signal(signals[i], termination_in_progress);
1102 }
1103 }
[1]1104}
1105
1106
1107
1108
1109/**
1110 * Exit immediately without cleaning up.
1111 * @param sig The signal we are exiting due to.
1112 */
1113void termination_in_progress(int sig)
1114{
[59]1115 log_msg(1, "Termination in progress");
1116 usleep(1000);
1117 pthread_exit(0);
[1]1118}
1119
1120/* @} - end of cliGroup */
Note: See TracBrowser for help on using the repository browser.