| 1 | /*
|
|---|
| 2 | * $Id$
|
|---|
| 3 | *
|
|---|
| 4 | * Test program for mountlist management at restore time
|
|---|
| 5 | * Can be used on host system with valgrind easier than with mondorestore
|
|---|
| 6 | */
|
|---|
| 7 | #include <stdio.h>
|
|---|
| 8 | #include "my-stuff.h"
|
|---|
| 9 | #include "mr_mem.h"
|
|---|
| 10 | #include "../common/mondostructures.h"
|
|---|
| 11 | #include "../common/libmondo.h"
|
|---|
| 12 | #include "../mondorestore/mondorestore.h"
|
|---|
| 13 | #include "../mondorestore/mr-externs.h"
|
|---|
| 14 | #include "../mondorestore/libmondo-mountlist-EXT.h"
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 | #define RAIDTAB_TEST "/tmp/raidtab"
|
|---|
| 18 | #define MOUNTLIST_TEST "/tmp/mountlist.txt"
|
|---|
| 19 |
|
|---|
| 20 | extern void twenty_seconds_til_yikes(void);
|
|---|
| 21 |
|
|---|
| 22 | extern bool g_text_mode;
|
|---|
| 23 | extern FILE *g_fprep;
|
|---|
| 24 | extern double g_kernel_version;
|
|---|
| 25 | extern int g_partition_table_locked_up;
|
|---|
| 26 | extern int g_noof_rows;
|
|---|
| 27 |
|
|---|
| 28 | /* Whether we should fail immediately at first error */
|
|---|
| 29 | bool g_fail_immediately = FALSE;
|
|---|
| 30 |
|
|---|
| 31 | bool g_ISO_restore_mode = FALSE; /* are we in Iso Mode? */
|
|---|
| 32 | bool g_I_have_just_nuked = FALSE;
|
|---|
| 33 | char *g_biggielist_txt;
|
|---|
| 34 | char *g_filelist_full;
|
|---|
| 35 | char *g_filelist_imagedevs;
|
|---|
| 36 | char *g_imagedevs_restthese;
|
|---|
| 37 |
|
|---|
| 38 | char *g_mondo_cfg_file;
|
|---|
| 39 |
|
|---|
| 40 | char *g_mountlist_fname;
|
|---|
| 41 | char *g_mondo_home = NULL;
|
|---|
| 42 |
|
|---|
| 43 | char *g_getfacl;
|
|---|
| 44 | char *g_getfattr;
|
|---|
| 45 |
|
|---|
| 46 | extern char *MONDO_LOGFILE;
|
|---|
| 47 | extern int copy_from_src_to_dest(FILE * f_orig, FILE * f_archived, char direction);
|
|---|
| 48 | extern int create_raid_device_via_mdadm(struct raidlist_itself *raidlist, char *device, bool test);
|
|---|
| 49 |
|
|---|
| 50 | /* Reference to global bkpinfo */
|
|---|
| 51 | struct s_bkpinfo *bkpinfo;
|
|---|
| 52 |
|
|---|
| 53 | /* We don't have a cleanup function yet */
|
|---|
| 54 | void (*mr_cleanup)(void) = NULL;
|
|---|
| 55 |
|
|---|
| 56 | int main() {
|
|---|
| 57 |
|
|---|
| 58 | struct mountlist_itself *mountlist = NULL;
|
|---|
| 59 | struct raidlist_itself *raidlist = NULL;
|
|---|
| 60 | char *flaws_str = NULL;
|
|---|
| 61 |
|
|---|
| 62 | mr_asprintf(MONDO_LOGFILE,"%s","/tmp/mrtest-mountlist.log");
|
|---|
| 63 |
|
|---|
| 64 | /* Globals */
|
|---|
| 65 | g_loglevel = 99;
|
|---|
| 66 | g_text_mode = FALSE;
|
|---|
| 67 | g_main_pid = getpid();
|
|---|
| 68 |
|
|---|
| 69 | if (!(mountlist = malloc(sizeof(struct mountlist_itself)))) {
|
|---|
| 70 | fatal_error("Cannot malloc mountlist");
|
|---|
| 71 | }
|
|---|
| 72 | if (!(raidlist = malloc(sizeof(struct raidlist_itself)))) {
|
|---|
| 73 | fatal_error("Cannot malloc raidlist");
|
|---|
| 74 | }
|
|---|
| 75 | malloc_libmondo_global_strings();
|
|---|
| 76 |
|
|---|
| 77 | setup_newt_stuff();
|
|---|
| 78 | mr_asprintf(g_mountlist_fname, "%s", MOUNTLIST_TEST);
|
|---|
| 79 | log_it("before mountlist");
|
|---|
| 80 | load_mountlist(mountlist, g_mountlist_fname);
|
|---|
| 81 | log_it("after mountlist");
|
|---|
| 82 | resize_mountlist_proportionately_to_suit_new_drives(mountlist);
|
|---|
| 83 | log_it("after resize_mountlist_proportionately_to_suit_new_drives");
|
|---|
| 84 | load_raidtab_into_raidlist(raidlist, RAIDTAB_TEST);
|
|---|
| 85 | log_it("after load_raidtab_into_raidlist");
|
|---|
| 86 | edit_mountlist(g_mountlist_fname, mountlist, raidlist);
|
|---|
| 87 | log_it("after edit_mountlist");
|
|---|
| 88 |
|
|---|
| 89 | flaws_str = evaluate_mountlist(mountlist);
|
|---|
| 90 | log_it("after evaluate_mountlist");
|
|---|
| 91 | mr_free(flaws_str);
|
|---|
| 92 |
|
|---|
| 93 | log_it("before write again raidlist content");
|
|---|
| 94 | save_raidlist_to_raidtab(raidlist, RAIDTAB_TEST".new");
|
|---|
| 95 | log_it("after write again raidlist content");
|
|---|
| 96 |
|
|---|
| 97 | log_it("before create mdadm dev");
|
|---|
| 98 | /*
|
|---|
| 99 | create_raid_device_via_mdadm(raidlist,"/dev/md0",FALSE);
|
|---|
| 100 | create_raid_device_via_mdadm(raidlist,"/dev/md1",FALSE);
|
|---|
| 101 | */
|
|---|
| 102 | log_it("after create mdadm dev");
|
|---|
| 103 |
|
|---|
| 104 | free(mountlist);
|
|---|
| 105 | free(raidlist);
|
|---|
| 106 | mr_free(MONDO_LOGFILE);
|
|---|
| 107 | mr_free(g_mountlist_fname);
|
|---|
| 108 | exit(0);
|
|---|
| 109 | }
|
|---|