1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
/* libguestfs - guestfish and guestmount shared option parsing
* Copyright (C) 2010-2012 Red Hat Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef OPTIONS_H
#define OPTIONS_H
#include <config.h>
#include <stdbool.h>
#include "guestfs-utils.h"
/* Provided by guestfish or guestmount. */
extern guestfs_h *g;
extern int read_only;
extern int live;
extern int verbose;
extern int inspector;
extern int keys_from_stdin;
extern int echo_keys;
extern const char *libvirt_uri;
extern int in_guestfish;
extern int in_virt_rescue;
/* List of drives added via -a, -d or -N options. NB: Unused fields
* in this struct MUST be zeroed, ie. use calloc, not malloc.
*/
struct drv {
struct drv *next;
/* Drive index. This is filled in by add_drives(). */
size_t drive_index;
/* Number of drives represented by this 'drv' struct. For -d this
* can be != 1 because a guest can have more than one disk. For
* others it is always 1. This is filled in by add_drives().
*/
size_t nr_drives;
enum {
drv_a, /* -a option (without URI) */
drv_uri, /* -a option (with URI) */
drv_d, /* -d option */
drv_N, /* -N option (guestfish only) */
drv_scratch, /* --scratch option (virt-rescue only) */
} type;
union {
struct {
char *filename; /* disk filename */
const char *format; /* format (NULL == autodetect) */
const char *cachemode;/* cachemode (NULL == default) */
const char *discard; /* discard (NULL == disable) */
int blocksize; /* blocksize (0 == default) */
} a;
struct {
char *path; /* disk path */
char *protocol; /* protocol (eg. "nbd") */
char **server; /* server(s) - can be NULL */
char *username; /* username - can be NULL */
char *password; /* password - can be NULL */
const char *format; /* format (NULL == autodetect) */
const char *orig_uri; /* original URI (for error messages etc.) */
int blocksize; /* blocksize (0 == default) */
} uri;
struct {
char *guest; /* guest name */
} d;
struct {
char *filename; /* disk filename (testX.img) */
void *data; /* prepared type */
void (*data_free)(void*); /* function to free 'data' */
} N;
struct {
int64_t size; /* size of the disk in bytes */
} scratch;
};
/* Opaque pointer. Not used by the options-parsing code, and so
* available for the program to use for any purpose.
*/
void *opaque;
};
struct mp {
struct mp *next;
char *device;
char *mountpoint;
char *options;
char *fstype;
};
/* A key in the key store. */
struct key_store_key {
/* An ID for the device this key refers to. It can be either the libguestfs
* device name, or the UUID.
*
* There may be multiple matching devices in the list.
*/
char *id;
enum {
key_string, /* key specified as string */
key_file, /* key stored in a file */
} type;
union {
struct {
char *s; /* string of the key */
} string;
struct {
char *name; /* filename with the key */
} file;
};
};
/* Container for keys, usually collected via the '--key' command line option
* in tools.
*/
struct key_store {
struct key_store_key *keys;
size_t nr_keys;
};
/* in config.c */
extern void parse_config (void);
/* in decrypt.c */
extern void inspect_do_decrypt (guestfs_h *g, struct key_store *ks);
/* in domain.c */
extern int add_libvirt_drives (guestfs_h *g, const char *guest);
/* in inspect.c */
extern void inspect_mount_handle (guestfs_h *g, struct key_store *ks);
extern void inspect_mount_root (guestfs_h *g, const char *root);
#define inspect_mount() inspect_mount_handle (g, ks)
extern void print_inspect_prompt (void);
/* in key.c */
extern char *read_key (const char *param);
extern char **get_keys (struct key_store *ks, const char *device, const char *uuid);
extern struct key_store *key_store_add_from_selector (struct key_store *ks, const char *selector);
extern struct key_store *key_store_import_key (struct key_store *ks, const struct key_store_key *key);
extern void free_key_store (struct key_store *ks);
/* in options.c */
extern void option_a (const char *arg, const char *format, int blocksize, struct drv **drvsp);
extern void option_d (const char *arg, struct drv **drvsp);
extern char add_drives_handle (guestfs_h *g, struct drv *drv, size_t drive_index);
#define add_drives(drv) add_drives_handle (g, drv, 0)
extern void mount_mps (struct mp *mp);
extern void free_drives (struct drv *drv);
extern void free_mps (struct mp *mp);
#define OPTION_a \
do { \
option_a (optarg, format, blocksize, &drvs); \
format_consumed = true; \
blocksize_consumed = true; \
} while (0)
#define OPTION_A \
do { \
option_a (optarg, format, blocksize, &drvs2); \
format_consumed = true; \
blocksize_consumed = true; \
} while (0)
#define OPTION_c \
libvirt_uri = optarg
#define OPTION_d \
option_d (optarg, &drvs)
#define OPTION_D \
option_d (optarg, &drvs2)
#define OPTION_format \
do { \
if (!optarg || STREQ (optarg, "")) \
format = NULL; \
else \
format = optarg; \
format_consumed = false; \
} while (0)
#define OPTION_blocksize \
do { \
if (!optarg || STREQ (optarg, "")) \
blocksize = 0; \
else if (sscanf (optarg, "%d", &blocksize) != 1) \
error (EXIT_FAILURE, 0, _("--blocksize option is not numeric")); \
blocksize_consumed = false; \
} while (0)
#define OPTION_i \
inspector = 1
#define OPTION_m \
mp = malloc (sizeof (struct mp)); \
if (!mp) \
error (EXIT_FAILURE, errno, "malloc"); \
mp->fstype = NULL; \
mp->options = NULL; \
mp->mountpoint = (char *) "/"; \
p = strchr (optarg, ':'); \
if (p) { \
*p = '\0'; \
p++; \
mp->mountpoint = p; \
p = strchr (p, ':'); \
if (p) { \
*p = '\0'; \
p++; \
mp->options = p; \
p = strchr (p, ':'); \
if (p) { \
*p = '\0'; \
p++; \
mp->fstype = p; \
} \
} \
} \
mp->device = optarg; \
mp->next = mps; \
mps = mp
#define OPTION_n \
guestfs_set_autosync (g, 0)
#define OPTION_r \
read_only = 1
#define OPTION_v \
verbose++; \
guestfs_set_verbose (g, verbose)
#define OPTION_V \
{ \
printf ("%s %s\n", \
getprogname (), \
PACKAGE_VERSION_FULL); \
exit (EXIT_SUCCESS); \
}
#define OPTION_w \
if (read_only) { \
fprintf (stderr, _("%s: cannot mix --ro and --rw options\n"), \
getprogname ()); \
exit (EXIT_FAILURE); \
}
#define OPTION_x \
guestfs_set_trace (g, 1)
#define OPTION_key \
ks = key_store_add_from_selector (ks, optarg)
#define CHECK_OPTION_format_consumed \
do { \
if (!format_consumed) { \
fprintf (stderr, \
_("%s: --format parameter must appear before -a parameter\n"), \
getprogname ()); \
exit (EXIT_FAILURE); \
} \
} while (0)
#define CHECK_OPTION_blocksize_consumed \
do { \
if (!blocksize_consumed) { \
fprintf (stderr, \
_("%s: --blocksize parameter must appear before -a parameter\n"), \
getprogname ()); \
exit (EXIT_FAILURE); \
} \
} while (0)
#endif /* OPTIONS_H */
|