virsh.c 326.9 KB
Newer Older
1
/*
2
 * virsh.c: a shell to exercise the libvirt API
3
 *
J
Jim Meyering 已提交
4
 * Copyright (C) 2005, 2007-2010 Red Hat, Inc.
5 6 7 8
 *
 * See COPYING.LIB for the License of this software
 *
 * Daniel Veillard <veillard@redhat.com>
K
Karel Zak 已提交
9
 * Karel Zak <kzak@redhat.com>
K
Karel Zak 已提交
10
 * Daniel P. Berrange <berrange@redhat.com>
11 12
 */

13
#include <config.h>
14

15
#include <stdio.h>
K
Karel Zak 已提交
16 17 18
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
19
#include <unistd.h>
20
#include <errno.h>
K
Karel Zak 已提交
21
#include <getopt.h>
22
#include <sys/types.h>
K
Karel Zak 已提交
23
#include <sys/time.h>
E
Eric Blake 已提交
24
#include <sys/wait.h>
J
Jim Meyering 已提交
25
#include "c-ctype.h"
26
#include <fcntl.h>
27
#include <locale.h>
28
#include <time.h>
29
#include <limits.h>
30
#include <assert.h>
31
#include <sys/stat.h>
32
#include <inttypes.h>
33
#include <signal.h>
K
Karel Zak 已提交
34

35 36 37
#include <libxml/parser.h>
#include <libxml/tree.h>
#include <libxml/xpath.h>
38
#include <libxml/xmlsave.h>
39

40
#ifdef HAVE_READLINE_READLINE_H
41 42
# include <readline/readline.h>
# include <readline/history.h>
43
#endif
K
Karel Zak 已提交
44

45
#include "internal.h"
46
#include "virterror_internal.h"
47
#include "base64.h"
48
#include "buf.h"
49
#include "console.h"
50
#include "util.h"
51
#include "memory.h"
52
#include "xml.h"
53
#include "libvirt/libvirt-qemu.h"
54
#include "files.h"
55
#include "../daemon/event.h"
K
Karel Zak 已提交
56 57 58 59

static char *progname;

#ifndef TRUE
60 61
# define TRUE 1
# define FALSE 0
K
Karel Zak 已提交
62 63
#endif

64 65
#define VIRSH_MAX_XML_FILE 10*1024*1024

K
Karel Zak 已提交
66 67 68 69 70 71 72 73
#define VSH_PROMPT_RW    "virsh # "
#define VSH_PROMPT_RO    "virsh > "

#define GETTIMEOFDAY(T) gettimeofday(T, NULL)
#define DIFF_MSEC(T, U) \
        ((((int) ((T)->tv_sec - (U)->tv_sec)) * 1000000.0 + \
          ((int) ((T)->tv_usec - (U)->tv_usec))) / 1000.0)

74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
/**
 * The log configuration
 */
#define MSG_BUFFER    4096
#define SIGN_NAME     "virsh"
#define DIR_MODE      (S_IWUSR | S_IRUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)  /* 0755 */
#define FILE_MODE     (S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH)                                /* 0644 */
#define LOCK_MODE     (S_IWUSR | S_IRUSR)                                                    /* 0600 */
#define LVL_DEBUG     "DEBUG"
#define LVL_INFO      "INFO"
#define LVL_NOTICE    "NOTICE"
#define LVL_WARNING   "WARNING"
#define LVL_ERROR     "ERROR"

/**
 * vshErrorLevel:
 *
J
Jim Meyering 已提交
91
 * Indicates the level of a log message
92 93 94 95 96 97 98 99 100
 */
typedef enum {
    VSH_ERR_DEBUG = 0,
    VSH_ERR_INFO,
    VSH_ERR_NOTICE,
    VSH_ERR_WARNING,
    VSH_ERR_ERROR
} vshErrorLevel;

K
Karel Zak 已提交
101 102 103 104 105
/*
 * virsh command line grammar:
 *
 *    command_line    =     <command>\n | <command>; <command>; ...
 *
E
Eric Blake 已提交
106
 *    command         =    <keyword> <option> [--] <data>
K
Karel Zak 已提交
107 108 109 110 111
 *
 *    option          =     <bool_option> | <int_option> | <string_option>
 *    data            =     <string>
 *
 *    bool_option     =     --optionname
E
Eric Blake 已提交
112 113
 *    int_option      =     --optionname <number> | --optionname=<number>
 *    string_option   =     --optionname <string> | --optionname=<string>
114
 *
E
Eric Blake 已提交
115
 *    keyword         =     [a-zA-Z][a-zA-Z-]*
116
 *    number          =     [0-9]+
E
Eric Blake 已提交
117
 *    string          =     ('[^']*'|"([^\\"]|\\.)*"|([^ \t\n\\'"]|\\.))+
K
Karel Zak 已提交
118 119 120 121
 *
 */

/*
122
 * vshCmdOptType - command option type
123
 */
K
Karel Zak 已提交
124
typedef enum {
125 126 127
    VSH_OT_BOOL,     /* optional boolean option */
    VSH_OT_STRING,   /* optional string option */
    VSH_OT_INT,      /* optional or mandatory int option */
128 129
    VSH_OT_DATA,     /* string data (as non-option) */
    VSH_OT_ARGV      /* remaining arguments, opt->name should be "" */
K
Karel Zak 已提交
130 131 132 133 134
} vshCmdOptType;

/*
 * Command Option Flags
 */
135 136
#define VSH_OFLAG_NONE    0     /* without flags */
#define VSH_OFLAG_REQ    (1 << 1)       /* option required */
K
Karel Zak 已提交
137 138 139 140 141 142 143 144

/* dummy */
typedef struct __vshControl vshControl;
typedef struct __vshCmd vshCmd;

/*
 * vshCmdInfo -- information about command
 */
145 146 147
typedef struct {
    const char *name;           /* name of information */
    const char *data;           /* information */
K
Karel Zak 已提交
148 149 150 151 152
} vshCmdInfo;

/*
 * vshCmdOptDef - command option definition
 */
153 154 155 156 157
typedef struct {
    const char *name;           /* the name of option */
    vshCmdOptType type;         /* option type */
    int flag;                   /* flags */
    const char *help;           /* help string */
K
Karel Zak 已提交
158 159 160 161 162 163
} vshCmdOptDef;

/*
 * vshCmdOpt - command options
 */
typedef struct vshCmdOpt {
164
    const vshCmdOptDef *def;    /* pointer to relevant option */
165 166
    char *data;                 /* allocated data */
    struct vshCmdOpt *next;
K
Karel Zak 已提交
167 168 169 170 171
} vshCmdOpt;

/*
 * vshCmdDef - command definition
 */
172 173
typedef struct {
    const char *name;
174
    int (*handler) (vshControl *, const vshCmd *);    /* command handler */
175 176
    const vshCmdOptDef *opts;   /* definition of command options */
    const vshCmdInfo *info;     /* details about command */
K
Karel Zak 已提交
177 178 179 180 181 182
} vshCmdDef;

/*
 * vshCmd - parsed command
 */
typedef struct __vshCmd {
183
    const vshCmdDef *def;       /* command definition */
184 185
    vshCmdOpt *opts;            /* list of command arguments */
    struct __vshCmd *next;      /* next command */
K
Karel Zak 已提交
186 187 188 189 190 191
} __vshCmd;

/*
 * vshControl
 */
typedef struct __vshControl {
K
Karel Zak 已提交
192
    char *name;                 /* connection name */
193
    virConnectPtr conn;         /* connection to hypervisor (MAY BE NULL) */
194 195 196 197 198 199
    vshCmd *cmd;                /* the current command */
    char *cmdstr;               /* string with command */
    int imode;                  /* interactive mode? */
    int quiet;                  /* quiet mode */
    int debug;                  /* print debug messages? */
    int timing;                 /* print timing info? */
200 201 202
    int readonly;               /* connect readonly (first time only, not
                                 * during explicit connect command)
                                 */
203 204
    char *logfile;              /* log file name */
    int log_fd;                 /* log file descriptor */
205 206
    char *historydir;           /* readline history directory name */
    char *historyfile;          /* readline history file name */
K
Karel Zak 已提交
207
} __vshControl;
208

209

210
static const vshCmdDef commands[];
K
Karel Zak 已提交
211

212 213
static void vshError(vshControl *ctl, const char *format, ...)
    ATTRIBUTE_FMT_PRINTF(2, 3);
214 215
static int vshInit(vshControl *ctl);
static int vshDeinit(vshControl *ctl);
216
static void vshUsage(void);
217 218 219
static void vshOpenLogFile(vshControl *ctl);
static void vshOutputLogFile(vshControl *ctl, int log_level, const char *format, va_list ap);
static void vshCloseLogFile(vshControl *ctl);
K
Karel Zak 已提交
220

221
static int vshParseArgv(vshControl *ctl, int argc, char **argv);
K
Karel Zak 已提交
222

223
static const char *vshCmddefGetInfo(const vshCmdDef *cmd, const char *info);
224
static const vshCmdDef *vshCmddefSearch(const char *cmdname);
225
static int vshCmddefHelp(vshControl *ctl, const char *name);
K
Karel Zak 已提交
226

227 228
static vshCmdOpt *vshCommandOpt(const vshCmd *cmd, const char *name);
static int vshCommandOptInt(const vshCmd *cmd, const char *name, int *found);
229 230
static unsigned long vshCommandOptUL(const vshCmd *cmd, const char *name,
                                     int *found);
231
static char *vshCommandOptString(const vshCmd *cmd, const char *name,
232
                                 int *found);
233 234
static long long vshCommandOptLongLong(const vshCmd *cmd, const char *name,
                                       int *found);
235
static int vshCommandOptBool(const vshCmd *cmd, const char *name);
236
static char *vshCommandOptArgv(const vshCmd *cmd, int count);
K
Karel Zak 已提交
237

238 239 240
#define VSH_BYID     (1 << 1)
#define VSH_BYUUID   (1 << 2)
#define VSH_BYNAME   (1 << 3)
241
#define VSH_BYMAC    (1 << 4)
K
Karel Zak 已提交
242

243
static virDomainPtr vshCommandOptDomainBy(vshControl *ctl, const vshCmd *cmd,
J
Jim Meyering 已提交
244
                                          char **name, int flag);
K
Karel Zak 已提交
245 246

/* default is lookup by Id, Name and UUID */
J
Jim Meyering 已提交
247 248
#define vshCommandOptDomain(_ctl, _cmd, _name)                      \
    vshCommandOptDomainBy(_ctl, _cmd, _name, VSH_BYID|VSH_BYUUID|VSH_BYNAME)
249

250
static virNetworkPtr vshCommandOptNetworkBy(vshControl *ctl, const vshCmd *cmd,
J
Jim Meyering 已提交
251
                                            char **name, int flag);
252 253

/* default is lookup by Name and UUID */
J
Jim Meyering 已提交
254 255
#define vshCommandOptNetwork(_ctl, _cmd, _name)                    \
    vshCommandOptNetworkBy(_ctl, _cmd, _name,                      \
256 257
                           VSH_BYUUID|VSH_BYNAME)

258 259 260 261 262 263 264 265
static virNWFilterPtr vshCommandOptNWFilterBy(vshControl *ctl, const vshCmd *cmd,
                                                  char **name, int flag);

/* default is lookup by Name and UUID */
#define vshCommandOptNWFilter(_ctl, _cmd, _name)                    \
    vshCommandOptNWFilterBy(_ctl, _cmd, _name,                      \
                            VSH_BYUUID|VSH_BYNAME)

266 267 268 269 270 271 272 273
static virInterfacePtr vshCommandOptInterfaceBy(vshControl *ctl, const vshCmd *cmd,
                                                char **name, int flag);

/* default is lookup by Name and MAC */
#define vshCommandOptInterface(_ctl, _cmd, _name)                    \
    vshCommandOptInterfaceBy(_ctl, _cmd, _name,                      \
                           VSH_BYMAC|VSH_BYNAME)

274
static virStoragePoolPtr vshCommandOptPoolBy(vshControl *ctl, const vshCmd *cmd,
275 276 277 278 279 280 281
                            const char *optname, char **name, int flag);

/* default is lookup by Name and UUID */
#define vshCommandOptPool(_ctl, _cmd, _optname, _name)           \
    vshCommandOptPoolBy(_ctl, _cmd, _optname, _name,             \
                           VSH_BYUUID|VSH_BYNAME)

282
static virStorageVolPtr vshCommandOptVolBy(vshControl *ctl, const vshCmd *cmd,
283 284 285 286 287 288 289 290 291
                                           const char *optname,
                                           const char *pooloptname,
                                           char **name, int flag);

/* default is lookup by Name and UUID */
#define vshCommandOptVol(_ctl, _cmd,_optname, _pooloptname, _name)   \
    vshCommandOptVolBy(_ctl, _cmd, _optname, _pooloptname, _name,     \
                           VSH_BYUUID|VSH_BYNAME)

292 293 294
static virSecretPtr vshCommandOptSecret(vshControl *ctl, const vshCmd *cmd,
                                        char **name);

295
static void vshPrintExtra(vshControl *ctl, const char *format, ...)
296
    ATTRIBUTE_FMT_PRINTF(2, 3);
297
static void vshDebug(vshControl *ctl, int level, const char *format, ...)
298
    ATTRIBUTE_FMT_PRINTF(3, 4);
K
Karel Zak 已提交
299 300

/* XXX: add batch support */
K
Karel Zak 已提交
301
#define vshPrint(_ctl, ...)   fprintf(stdout, __VA_ARGS__)
K
Karel Zak 已提交
302

K
Karel Zak 已提交
303
static const char *vshDomainStateToString(int state);
304
static const char *vshDomainVcpuStateToString(int state);
305
static int vshConnectionUsability(vshControl *ctl, virConnectPtr conn);
K
Karel Zak 已提交
306

307 308 309 310
static char *editWriteToTempFile (vshControl *ctl, const char *doc);
static int   editFile (vshControl *ctl, const char *filename);
static char *editReadBackFile (vshControl *ctl, const char *filename);

311
static void *_vshMalloc(vshControl *ctl, size_t sz, const char *filename, int line);
312 313
#define vshMalloc(_ctl, _sz)    _vshMalloc(_ctl, _sz, __FILE__, __LINE__)

314
static void *_vshCalloc(vshControl *ctl, size_t nmemb, size_t sz, const char *filename, int line);
315 316
#define vshCalloc(_ctl, _nmemb, _sz)    _vshCalloc(_ctl, _nmemb, _sz, __FILE__, __LINE__)

317
static void *_vshRealloc(vshControl *ctl, void *ptr, size_t sz, const char *filename, int line);
318 319
#define vshRealloc(_ctl, _ptr, _sz)    _vshRealloc(_ctl, _ptr, _sz, __FILE__, __LINE__)

320
static char *_vshStrdup(vshControl *ctl, const char *s, const char *filename, int line);
321 322
#define vshStrdup(_ctl, _s)    _vshStrdup(_ctl, _s, __FILE__, __LINE__)

E
Eric Blake 已提交
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
static void *
_vshMalloc(vshControl *ctl, size_t size, const char *filename, int line)
{
    void *x;

    if ((x = malloc(size)))
        return x;
    vshError(ctl, _("%s: %d: failed to allocate %d bytes"),
             filename, line, (int) size);
    exit(EXIT_FAILURE);
}

static void *
_vshCalloc(vshControl *ctl, size_t nmemb, size_t size, const char *filename, int line)
{
    void *x;

    if ((x = calloc(nmemb, size)))
        return x;
    vshError(ctl, _("%s: %d: failed to allocate %d bytes"),
             filename, line, (int) (size*nmemb));
    exit(EXIT_FAILURE);
}

static void *
_vshRealloc(vshControl *ctl, void *ptr, size_t size, const char *filename, int line)
{
    void *x;

    if ((x = realloc(ptr, size)))
        return x;
    VIR_FREE(ptr);
    vshError(ctl, _("%s: %d: failed to allocate %d bytes"),
             filename, line, (int) size);
    exit(EXIT_FAILURE);
}

static char *
_vshStrdup(vshControl *ctl, const char *s, const char *filename, int line)
{
    char *x;

    if (s == NULL)
        return(NULL);
    if ((x = strdup(s)))
        return x;
    vshError(ctl, _("%s: %d: failed to allocate %lu bytes"),
             filename, line, (unsigned long)strlen(s));
    exit(EXIT_FAILURE);
}

/* Poison the raw allocating identifiers in favor of our vsh variants.  */
#undef malloc
#undef calloc
#undef realloc
#undef strdup
#define malloc use_vshMalloc_instead_of_malloc
#define calloc use_vshCalloc_instead_of_calloc
#define realloc use_vshRealloc_instead_of_realloc
#define strdup use_vshStrdup_instead_of_strdup
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400

static int idsorter(const void *a, const void *b) {
  const int *ia = (const int *)a;
  const int *ib = (const int *)b;

  if (*ia > *ib)
    return 1;
  else if (*ia < *ib)
    return -1;
  return 0;
}
static int namesorter(const void *a, const void *b) {
  const char **sa = (const char**)a;
  const char **sb = (const char**)b;

  return strcasecmp(*sa, *sb);
}

401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
static double
prettyCapacity(unsigned long long val,
               const char **unit) {
    if (val < 1024) {
        *unit = "";
        return (double)val;
    } else if (val < (1024.0l * 1024.0l)) {
        *unit = "KB";
        return (((double)val / 1024.0l));
    } else if (val < (1024.0l * 1024.0l * 1024.0l)) {
        *unit = "MB";
        return ((double)val / (1024.0l * 1024.0l));
    } else if (val < (1024.0l * 1024.0l * 1024.0l * 1024.0l)) {
        *unit = "GB";
        return ((double)val / (1024.0l * 1024.0l * 1024.0l));
    } else {
        *unit = "TB";
        return ((double)val / (1024.0l * 1024.0l * 1024.0l * 1024.0l));
    }
}


J
John Levon 已提交
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
static virErrorPtr last_error;

/*
 * Quieten libvirt until we're done with the command.
 */
static void
virshErrorHandler(void *unused ATTRIBUTE_UNUSED, virErrorPtr error)
{
    virFreeError(last_error);
    last_error = virSaveLastError();
    if (getenv("VIRSH_DEBUG") != NULL)
        virDefaultErrorFunc(error);
}

/*
 * Report an error when a command finishes.  This is better than before
 * (when correct operation would report errors), but it has some
 * problems: we lose the smarter formatting of virDefaultErrorFunc(),
 * and it can become harder to debug problems, if errors get reported
 * twice during one command.  This case shouldn't really happen anyway,
 * and it's IMHO a bug that libvirt does that sometimes.
 */
static void
virshReportError(vshControl *ctl)
{
448 449 450 451 452 453 454 455
    if (last_error == NULL) {
        /* Calling directly into libvirt util functions won't trigger the
         * error callback (which sets last_error), so check it ourselves.
         *
         * If the returned error has CODE_OK, this most likely means that
         * no error was ever raised, so just ignore */
        last_error = virSaveLastError();
        if (!last_error || last_error->code == VIR_ERR_OK)
456
            goto out;
457
    }
J
John Levon 已提交
458 459

    if (last_error->code == VIR_ERR_OK) {
460
        vshError(ctl, "%s", _("unknown error"));
J
John Levon 已提交
461 462 463
        goto out;
    }

464
    vshError(ctl, "%s", last_error->message);
J
John Levon 已提交
465 466 467 468 469 470

out:
    virFreeError(last_error);
    last_error = NULL;
}

471 472 473 474 475
/*
 * Detection of disconnections and automatic reconnection support
 */
static int disconnected = 0; /* we may have been disconnected */

476
#ifdef SIGPIPE
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
/*
 * vshCatchDisconnect:
 *
 * We get here when a SIGPIPE is being raised, we can't do much in the
 * handler, just save the fact it was raised
 */
static void vshCatchDisconnect(int sig, siginfo_t * siginfo,
                               void* context ATTRIBUTE_UNUSED) {
    if ((sig == SIGPIPE) || (siginfo->si_signo == SIGPIPE))
        disconnected++;
}

/*
 * vshSetupSignals:
 *
 * Catch SIGPIPE signals which may arise when disconnection
 * from libvirtd occurs
 */
L
Laine Stump 已提交
495
static void
496 497 498 499 500 501 502 503 504
vshSetupSignals(void) {
    struct sigaction sig_action;

    sig_action.sa_sigaction = vshCatchDisconnect;
    sig_action.sa_flags = SA_SIGINFO;
    sigemptyset(&sig_action.sa_mask);

    sigaction(SIGPIPE, &sig_action, NULL);
}
505 506 507 508
#else
static void
vshSetupSignals(void) {}
#endif
509 510 511 512

/*
 * vshReconnect:
 *
L
Laine Stump 已提交
513
 * Reconnect after a disconnect from libvirtd
514 515
 *
 */
L
Laine Stump 已提交
516
static void
517 518 519 520 521 522 523 524 525 526 527 528 529
vshReconnect(vshControl *ctl) {
    if (ctl->conn != NULL)
        virConnectClose(ctl->conn);

    ctl->conn = virConnectOpenAuth(ctl->name,
                                   virConnectAuthPtrDefault,
                                   ctl->readonly ? VIR_CONNECT_RO : 0);
    if (!ctl->conn)
        vshError(ctl, "%s", _("Failed to reconnect to the hypervisor"));
    else
        vshError(ctl, "%s", _("Reconnected to the hypervisor"));
    disconnected = 0;
}
530

K
Karel Zak 已提交
531 532 533 534 535 536
/* ---------------
 * Commands
 * ---------------
 */

/*
537
 * "help" command
K
Karel Zak 已提交
538
 */
539
static const vshCmdInfo info_help[] = {
540 541
    {"help", N_("print help")},
    {"desc", N_("Prints global help or command specific help.")},
542

543
    {NULL, NULL}
K
Karel Zak 已提交
544 545
};

546
static const vshCmdOptDef opts_help[] = {
547
    {"command", VSH_OT_DATA, 0, N_("name of command")},
548
    {NULL, 0, 0, NULL}
K
Karel Zak 已提交
549 550 551
};

static int
552
cmdHelp(vshControl *ctl, const vshCmd *cmd)
553
{
K
Karel Zak 已提交
554
    const char *cmdname = vshCommandOptString(cmd, "command", NULL);
K
Karel Zak 已提交
555 556

    if (!cmdname) {
557
        const vshCmdDef *def;
558

J
Jim Meyering 已提交
559
        vshPrint(ctl, "%s", _("Commands:\n\n"));
560
        for (def = commands; def->name; def++)
K
Karel Zak 已提交
561
            vshPrint(ctl, "    %-15s %s\n", def->name,
E
Eric Blake 已提交
562
                     _(vshCmddefGetInfo(def, "help")));
K
Karel Zak 已提交
563 564
        return TRUE;
    }
565
    return vshCmddefHelp(ctl, cmdname);
K
Karel Zak 已提交
566 567
}

568 569 570
/*
 * "autostart" command
 */
571
static const vshCmdInfo info_autostart[] = {
572
    {"help", N_("autostart a domain")},
573
    {"desc",
574
     N_("Configure a domain to be automatically started at boot.")},
575 576 577
    {NULL, NULL}
};

578
static const vshCmdOptDef opts_autostart[] = {
579 580
    {"domain",  VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"disable", VSH_OT_BOOL, 0, N_("disable autostarting")},
581 582 583 584
    {NULL, 0, 0, NULL}
};

static int
585
cmdAutostart(vshControl *ctl, const vshCmd *cmd)
586 587 588 589 590
{
    virDomainPtr dom;
    char *name;
    int autostart;

591
    if (!vshConnectionUsability(ctl, ctl->conn))
592 593
        return FALSE;

J
Jim Meyering 已提交
594
    if (!(dom = vshCommandOptDomain(ctl, cmd, &name)))
595 596 597 598 599
        return FALSE;

    autostart = !vshCommandOptBool(cmd, "disable");

    if (virDomainSetAutostart(dom, autostart) < 0) {
600
        if (autostart)
601
            vshError(ctl, _("Failed to mark domain %s as autostarted"), name);
602
        else
603
            vshError(ctl, _("Failed to unmark domain %s as autostarted"), name);
604 605 606 607
        virDomainFree(dom);
        return FALSE;
    }

608
    if (autostart)
609
        vshPrint(ctl, _("Domain %s marked as autostarted\n"), name);
610
    else
611
        vshPrint(ctl, _("Domain %s unmarked as autostarted\n"), name);
612

613
    virDomainFree(dom);
614 615 616
    return TRUE;
}

K
Karel Zak 已提交
617
/*
618
 * "connect" command
K
Karel Zak 已提交
619
 */
620
static const vshCmdInfo info_connect[] = {
621
    {"help", N_("(re)connect to hypervisor")},
622
    {"desc",
623
     N_("Connect to local hypervisor. This is built-in command after shell start up.")},
624
    {NULL, NULL}
K
Karel Zak 已提交
625 626
};

627
static const vshCmdOptDef opts_connect[] = {
628 629
    {"name",     VSH_OT_DATA, 0, N_("hypervisor connection URI")},
    {"readonly", VSH_OT_BOOL, 0, N_("read-only connection")},
630
    {NULL, 0, 0, NULL}
K
Karel Zak 已提交
631 632 633
};

static int
634
cmdConnect(vshControl *ctl, const vshCmd *cmd)
635
{
K
Karel Zak 已提交
636
    int ro = vshCommandOptBool(cmd, "readonly");
637
    char *name;
638

K
Karel Zak 已提交
639
    if (ctl->conn) {
640
        if (virConnectClose(ctl->conn) != 0) {
641
            vshError(ctl, "%s", _("Failed to disconnect from the hypervisor"));
K
Karel Zak 已提交
642 643 644 645
            return FALSE;
        }
        ctl->conn = NULL;
    }
646

647
    VIR_FREE(ctl->name);
648 649 650 651
    name = vshCommandOptString(cmd, "name", NULL);
    if (!name)
        return FALSE;
    ctl->name = vshStrdup(ctl, name);
K
Karel Zak 已提交
652

653 654 655 656 657
    if (!ro) {
        ctl->readonly = 0;
    } else {
        ctl->readonly = 1;
    }
K
Karel Zak 已提交
658

659 660 661
    ctl->conn = virConnectOpenAuth(ctl->name, virConnectAuthPtrDefault,
                                   ctl->readonly ? VIR_CONNECT_RO : 0);

K
Karel Zak 已提交
662
    if (!ctl->conn)
663
        vshError(ctl, "%s", _("Failed to connect to the hypervisor"));
664

K
Karel Zak 已提交
665 666 667
    return ctl->conn ? TRUE : FALSE;
}

668 669
#ifndef WIN32

670
/*
671
 * "console" command
672
 */
673
static const vshCmdInfo info_console[] = {
674
    {"help", N_("connect to the guest console")},
675
    {"desc",
676
     N_("Connect the virtual serial console for the guest")},
677 678 679
    {NULL, NULL}
};

680
static const vshCmdOptDef opts_console[] = {
681
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
682
    {"devname", VSH_OT_STRING, 0, N_("character device name")},
683 684 685 686
    {NULL, 0, 0, NULL}
};

static int
687
cmdRunConsole(vshControl *ctl, virDomainPtr dom, const char *devname)
688 689
{
    int ret = FALSE;
690
    virDomainInfo dominfo;
691

692 693 694 695 696 697 698 699 700 701
    if (virDomainGetInfo(dom, &dominfo) < 0) {
        vshError(ctl, "%s", _("Unable to get domain status"));
        goto cleanup;
    }

    if (dominfo.state == VIR_DOMAIN_SHUTOFF) {
        vshError(ctl, "%s", _("The domain is not running"));
        goto cleanup;
    }

702 703 704 705
    vshPrintExtra(ctl, _("Connected to domain %s\n"), virDomainGetName(dom));
    vshPrintExtra(ctl, "%s", _("Escape character is ^]\n"));
    if (vshRunConsole(dom, devname) == 0)
        ret = TRUE;
706 707

 cleanup:
708

709 710 711
    return ret;
}

712 713 714 715 716
static int
cmdConsole(vshControl *ctl, const vshCmd *cmd)
{
    virDomainPtr dom;
    int ret;
717
    const char *devname;
718

719
    if (!vshConnectionUsability(ctl, ctl->conn))
720 721 722 723 724
        return FALSE;

    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
        return FALSE;

725 726 727
    devname = vshCommandOptString(cmd, "devname", NULL);

    ret = cmdRunConsole(ctl, dom, devname);
728 729 730 731 732

    virDomainFree(dom);
    return ret;
}

733 734 735
#endif /* WIN32 */


K
Karel Zak 已提交
736 737 738
/*
 * "list" command
 */
739
static const vshCmdInfo info_list[] = {
740 741
    {"help", N_("list domains")},
    {"desc", N_("Returns list of domains.")},
742
    {NULL, NULL}
K
Karel Zak 已提交
743 744
};

745
static const vshCmdOptDef opts_list[] = {
746 747
    {"inactive", VSH_OT_BOOL, 0, N_("list inactive domains")},
    {"all", VSH_OT_BOOL, 0, N_("list inactive & active domains")},
748 749 750
    {NULL, 0, 0, NULL}
};

K
Karel Zak 已提交
751 752

static int
753
cmdList(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
754
{
755 756 757 758
    int inactive = vshCommandOptBool(cmd, "inactive");
    int all = vshCommandOptBool(cmd, "all");
    int active = !inactive || all ? 1 : 0;
    int *ids = NULL, maxid = 0, i;
759
    char **names = NULL;
760 761
    int maxname = 0;
    inactive |= all;
K
Karel Zak 已提交
762

763
    if (!vshConnectionUsability(ctl, ctl->conn))
K
Karel Zak 已提交
764
        return FALSE;
765

766
    if (active) {
767 768
        maxid = virConnectNumOfDomains(ctl->conn);
        if (maxid < 0) {
769
            vshError(ctl, "%s", _("Failed to list active domains"));
770 771 772 773 774 775
            return FALSE;
        }
        if (maxid) {
            ids = vshMalloc(ctl, sizeof(int) * maxid);

            if ((maxid = virConnectListDomains(ctl->conn, &ids[0], maxid)) < 0) {
776
                vshError(ctl, "%s", _("Failed to list active domains"));
777
                VIR_FREE(ids);
778 779 780
                return FALSE;
            }

781
            qsort(&ids[0], maxid, sizeof(int), idsorter);
782
        }
783 784
    }
    if (inactive) {
785 786
        maxname = virConnectNumOfDefinedDomains(ctl->conn);
        if (maxname < 0) {
787
            vshError(ctl, "%s", _("Failed to list inactive domains"));
788
            VIR_FREE(ids);
789
            return FALSE;
790
        }
791 792 793 794
        if (maxname) {
            names = vshMalloc(ctl, sizeof(char *) * maxname);

            if ((maxname = virConnectListDefinedDomains(ctl->conn, names, maxname)) < 0) {
795
                vshError(ctl, "%s", _("Failed to list inactive domains"));
796 797
                VIR_FREE(ids);
                VIR_FREE(names);
798 799
                return FALSE;
            }
800

801
            qsort(&names[0], maxname, sizeof(char*), namesorter);
802
        }
803
    }
804
    vshPrintExtra(ctl, "%3s %-20s %s\n", _("Id"), _("Name"), _("State"));
K
Karel Zak 已提交
805
    vshPrintExtra(ctl, "----------------------------------\n");
806 807

    for (i = 0; i < maxid; i++) {
K
Karel Zak 已提交
808 809
        virDomainInfo info;
        virDomainPtr dom = virDomainLookupByID(ctl->conn, ids[i]);
810
        const char *state;
811 812

        /* this kind of work with domains is not atomic operation */
K
Karel Zak 已提交
813 814
        if (!dom)
            continue;
815 816 817 818

        if (virDomainGetInfo(dom, &info) < 0)
            state = _("no state");
        else
E
Eric Blake 已提交
819
            state = _(vshDomainStateToString(info.state));
820

K
Karel Zak 已提交
821
        vshPrint(ctl, "%3d %-20s %s\n",
822 823
                 virDomainGetID(dom),
                 virDomainGetName(dom),
824
                 state);
825
        virDomainFree(dom);
K
Karel Zak 已提交
826
    }
827 828 829
    for (i = 0; i < maxname; i++) {
        virDomainInfo info;
        virDomainPtr dom = virDomainLookupByName(ctl->conn, names[i]);
830
        const char *state;
831 832

        /* this kind of work with domains is not atomic operation */
833
        if (!dom) {
834
            VIR_FREE(names[i]);
835
            continue;
836
        }
837 838 839 840

        if (virDomainGetInfo(dom, &info) < 0)
            state = _("no state");
        else
E
Eric Blake 已提交
841
            state = _(vshDomainStateToString(info.state));
842 843

        vshPrint(ctl, "%3s %-20s %s\n", "-", names[i], state);
844

845
        virDomainFree(dom);
846
        VIR_FREE(names[i]);
847
    }
848 849
    VIR_FREE(ids);
    VIR_FREE(names);
K
Karel Zak 已提交
850 851 852 853
    return TRUE;
}

/*
K
Karel Zak 已提交
854
 * "domstate" command
K
Karel Zak 已提交
855
 */
856
static const vshCmdInfo info_domstate[] = {
857 858
    {"help", N_("domain state")},
    {"desc", N_("Returns state about a domain.")},
859
    {NULL, NULL}
K
Karel Zak 已提交
860 861
};

862
static const vshCmdOptDef opts_domstate[] = {
863
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
864
    {NULL, 0, 0, NULL}
K
Karel Zak 已提交
865 866 867
};

static int
868
cmdDomstate(vshControl *ctl, const vshCmd *cmd)
869
{
870
    virDomainInfo info;
K
Karel Zak 已提交
871
    virDomainPtr dom;
K
Karel Zak 已提交
872
    int ret = TRUE;
873

874
    if (!vshConnectionUsability(ctl, ctl->conn))
K
Karel Zak 已提交
875
        return FALSE;
876

J
Jim Meyering 已提交
877
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
K
Karel Zak 已提交
878
        return FALSE;
879 880

    if (virDomainGetInfo(dom, &info) == 0)
K
Karel Zak 已提交
881
        vshPrint(ctl, "%s\n",
E
Eric Blake 已提交
882
                 _(vshDomainStateToString(info.state)));
K
Karel Zak 已提交
883 884
    else
        ret = FALSE;
885

886 887 888 889
    virDomainFree(dom);
    return ret;
}

890 891
/* "domblkstat" command
 */
892
static const vshCmdInfo info_domblkstat[] = {
893 894
    {"help", N_("get device block stats for a domain")},
    {"desc", N_("Get device block stats for a running domain.")},
895 896 897
    {NULL,NULL}
};

898
static const vshCmdOptDef opts_domblkstat[] = {
899 900
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"device", VSH_OT_DATA, VSH_OFLAG_REQ, N_("block device")},
901 902 903 904
    {NULL, 0, 0, NULL}
};

static int
905
cmdDomblkstat (vshControl *ctl, const vshCmd *cmd)
906 907 908 909 910
{
    virDomainPtr dom;
    char *name, *device;
    struct _virDomainBlockStats stats;

911
    if (!vshConnectionUsability (ctl, ctl->conn))
912 913
        return FALSE;

J
Jim Meyering 已提交
914
    if (!(dom = vshCommandOptDomain (ctl, cmd, &name)))
915 916
        return FALSE;

L
Laine Stump 已提交
917 918
    if (!(device = vshCommandOptString (cmd, "device", NULL))) {
        virDomainFree(dom);
919
        return FALSE;
L
Laine Stump 已提交
920
    }
921 922

    if (virDomainBlockStats (dom, device, &stats, sizeof stats) == -1) {
923
        vshError(ctl, _("Failed to get block stats %s %s"), name, device);
924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948
        virDomainFree(dom);
        return FALSE;
    }

    if (stats.rd_req >= 0)
        vshPrint (ctl, "%s rd_req %lld\n", device, stats.rd_req);

    if (stats.rd_bytes >= 0)
        vshPrint (ctl, "%s rd_bytes %lld\n", device, stats.rd_bytes);

    if (stats.wr_req >= 0)
        vshPrint (ctl, "%s wr_req %lld\n", device, stats.wr_req);

    if (stats.wr_bytes >= 0)
        vshPrint (ctl, "%s wr_bytes %lld\n", device, stats.wr_bytes);

    if (stats.errs >= 0)
        vshPrint (ctl, "%s errs %lld\n", device, stats.errs);

    virDomainFree(dom);
    return TRUE;
}

/* "domifstat" command
 */
949
static const vshCmdInfo info_domifstat[] = {
950 951
    {"help", N_("get network interface stats for a domain")},
    {"desc", N_("Get network interface stats for a running domain.")},
952 953 954
    {NULL,NULL}
};

955
static const vshCmdOptDef opts_domifstat[] = {
956 957
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"interface", VSH_OT_DATA, VSH_OFLAG_REQ, N_("interface device")},
958 959 960 961
    {NULL, 0, 0, NULL}
};

static int
962
cmdDomIfstat (vshControl *ctl, const vshCmd *cmd)
963 964 965 966 967
{
    virDomainPtr dom;
    char *name, *device;
    struct _virDomainInterfaceStats stats;

968
    if (!vshConnectionUsability (ctl, ctl->conn))
969 970
        return FALSE;

J
Jim Meyering 已提交
971
    if (!(dom = vshCommandOptDomain (ctl, cmd, &name)))
972 973
        return FALSE;

L
Laine Stump 已提交
974 975
    if (!(device = vshCommandOptString (cmd, "interface", NULL))) {
        virDomainFree(dom);
976
        return FALSE;
L
Laine Stump 已提交
977
    }
978 979

    if (virDomainInterfaceStats (dom, device, &stats, sizeof stats) == -1) {
980
        vshError(ctl, _("Failed to get interface stats %s %s"), name, device);
981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
        virDomainFree(dom);
        return FALSE;
    }

    if (stats.rx_bytes >= 0)
        vshPrint (ctl, "%s rx_bytes %lld\n", device, stats.rx_bytes);

    if (stats.rx_packets >= 0)
        vshPrint (ctl, "%s rx_packets %lld\n", device, stats.rx_packets);

    if (stats.rx_errs >= 0)
        vshPrint (ctl, "%s rx_errs %lld\n", device, stats.rx_errs);

    if (stats.rx_drop >= 0)
        vshPrint (ctl, "%s rx_drop %lld\n", device, stats.rx_drop);

    if (stats.tx_bytes >= 0)
        vshPrint (ctl, "%s tx_bytes %lld\n", device, stats.tx_bytes);

    if (stats.tx_packets >= 0)
        vshPrint (ctl, "%s tx_packets %lld\n", device, stats.tx_packets);

    if (stats.tx_errs >= 0)
        vshPrint (ctl, "%s tx_errs %lld\n", device, stats.tx_errs);

    if (stats.tx_drop >= 0)
        vshPrint (ctl, "%s tx_drop %lld\n", device, stats.tx_drop);

    virDomainFree(dom);
    return TRUE;
}

1013 1014 1015
/*
 * "dommemstats" command
 */
1016
static const vshCmdInfo info_dommemstat[] = {
1017 1018
    {"help", N_("get memory statistics for a domain")},
    {"desc", N_("Get memory statistics for a runnng domain.")},
1019 1020 1021
    {NULL,NULL}
};

1022
static const vshCmdOptDef opts_dommemstat[] = {
1023
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
1024 1025 1026 1027
    {NULL, 0, 0, NULL}
};

static int
1028
cmdDomMemStat(vshControl *ctl, const vshCmd *cmd)
1029 1030 1031 1032 1033 1034
{
    virDomainPtr dom;
    char *name;
    struct _virDomainMemoryStat stats[VIR_DOMAIN_MEMORY_STAT_NR];
    unsigned int nr_stats, i;

1035
    if (!vshConnectionUsability(ctl, ctl->conn))
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
        return FALSE;

    if (!(dom = vshCommandOptDomain(ctl, cmd, &name)))
        return FALSE;

    nr_stats = virDomainMemoryStats (dom, stats, VIR_DOMAIN_MEMORY_STAT_NR, 0);
    if (nr_stats == -1) {
        vshError(ctl, _("Failed to get memory statistics for domain %s"), name);
        virDomainFree(dom);
        return FALSE;
    }

    for (i = 0; i < nr_stats; i++) {
        if (stats[i].tag == VIR_DOMAIN_MEMORY_STAT_SWAP_IN)
            vshPrint (ctl, "swap_in %llu\n", stats[i].val);
        if (stats[i].tag == VIR_DOMAIN_MEMORY_STAT_SWAP_OUT)
            vshPrint (ctl, "swap_out %llu\n", stats[i].val);
        if (stats[i].tag == VIR_DOMAIN_MEMORY_STAT_MAJOR_FAULT)
            vshPrint (ctl, "major_fault %llu\n", stats[i].val);
        if (stats[i].tag == VIR_DOMAIN_MEMORY_STAT_MINOR_FAULT)
            vshPrint (ctl, "minor_fault %llu\n", stats[i].val);
        if (stats[i].tag == VIR_DOMAIN_MEMORY_STAT_UNUSED)
            vshPrint (ctl, "unused %llu\n", stats[i].val);
        if (stats[i].tag == VIR_DOMAIN_MEMORY_STAT_AVAILABLE)
            vshPrint (ctl, "available %llu\n", stats[i].val);
    }

    virDomainFree(dom);
    return TRUE;
}

1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089
/*
 * "domblkinfo" command
 */
static const vshCmdInfo info_domblkinfo[] = {
    {"help", N_("domain block device size information")},
    {"desc", N_("Get block device size info for a domain.")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_domblkinfo[] = {
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"device", VSH_OT_DATA, VSH_OFLAG_REQ, N_("block device")},
    {NULL, 0, 0, NULL}
};

static int
cmdDomblkinfo(vshControl *ctl, const vshCmd *cmd)
{
    virDomainBlockInfo info;
    virDomainPtr dom;
    int ret = TRUE;
    const char *device;

1090
    if (!vshConnectionUsability(ctl, ctl->conn))
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
        return FALSE;

    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
        return FALSE;

    if (!(device = vshCommandOptString (cmd, "device", NULL))) {
        virDomainFree(dom);
        return FALSE;
    }

    if (virDomainGetBlockInfo(dom, device, &info, 0) < 0) {
        virDomainFree(dom);
        return FALSE;
    }

    vshPrint(ctl, "%-15s %llu\n", _("Capacity:"), info.capacity);
    vshPrint(ctl, "%-15s %llu\n", _("Allocation:"), info.allocation);
    vshPrint(ctl, "%-15s %llu\n", _("Physical:"), info.physical);

    virDomainFree(dom);
    return ret;
}

1114 1115 1116
/*
 * "suspend" command
 */
1117
static const vshCmdInfo info_suspend[] = {
1118 1119
    {"help", N_("suspend a domain")},
    {"desc", N_("Suspend a running domain.")},
1120
    {NULL, NULL}
1121 1122
};

1123
static const vshCmdOptDef opts_suspend[] = {
1124
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
1125
    {NULL, 0, 0, NULL}
1126 1127 1128
};

static int
1129
cmdSuspend(vshControl *ctl, const vshCmd *cmd)
1130
{
1131
    virDomainPtr dom;
K
Karel Zak 已提交
1132 1133
    char *name;
    int ret = TRUE;
1134

1135
    if (!vshConnectionUsability(ctl, ctl->conn))
1136 1137
        return FALSE;

J
Jim Meyering 已提交
1138
    if (!(dom = vshCommandOptDomain(ctl, cmd, &name)))
1139
        return FALSE;
1140 1141

    if (virDomainSuspend(dom) == 0) {
1142
        vshPrint(ctl, _("Domain %s suspended\n"), name);
1143
    } else {
1144
        vshError(ctl, _("Failed to suspend domain %s"), name);
1145 1146
        ret = FALSE;
    }
1147

1148 1149 1150 1151
    virDomainFree(dom);
    return ret;
}

1152 1153 1154
/*
 * "create" command
 */
1155
static const vshCmdInfo info_create[] = {
1156 1157
    {"help", N_("create a domain from an XML file")},
    {"desc", N_("Create a domain.")},
1158 1159 1160
    {NULL, NULL}
};

1161
static const vshCmdOptDef opts_create[] = {
1162
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ, N_("file containing an XML domain description")},
1163
#ifndef WIN32
1164
    {"console", VSH_OT_BOOL, 0, N_("attach to console after creation")},
1165
#endif
1166
    {"paused", VSH_OT_BOOL, 0, N_("leave the guest paused after creation")},
1167 1168 1169 1170
    {NULL, 0, 0, NULL}
};

static int
1171
cmdCreate(vshControl *ctl, const vshCmd *cmd)
1172 1173 1174 1175 1176
{
    virDomainPtr dom;
    char *from;
    int found;
    int ret = TRUE;
1177
    char *buffer;
1178
#ifndef WIN32
1179
    int console = vshCommandOptBool(cmd, "console");
1180
#endif
1181
    unsigned int flags = VIR_DOMAIN_NONE;
1182

1183
    if (!vshConnectionUsability(ctl, ctl->conn))
1184 1185 1186 1187 1188 1189
        return FALSE;

    from = vshCommandOptString(cmd, "file", &found);
    if (!found)
        return FALSE;

1190 1191
    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0)
        return FALSE;
1192

1193 1194 1195 1196
    if (vshCommandOptBool(cmd, "paused"))
        flags |= VIR_DOMAIN_START_PAUSED;

    dom = virDomainCreateXML(ctl->conn, buffer, flags);
1197
    VIR_FREE(buffer);
1198

1199
    if (dom != NULL) {
1200
        vshPrint(ctl, _("Domain %s created from %s\n"),
1201
                 virDomainGetName(dom), from);
1202
#ifndef WIN32
1203
        if (console)
1204
            cmdRunConsole(ctl, dom, NULL);
1205
#endif
1206
        virDomainFree(dom);
1207
    } else {
1208
        vshError(ctl, _("Failed to create domain from %s"), from);
1209 1210 1211 1212 1213
        ret = FALSE;
    }
    return ret;
}

1214 1215 1216
/*
 * "define" command
 */
1217
static const vshCmdInfo info_define[] = {
1218 1219
    {"help", N_("define (but don't start) a domain from an XML file")},
    {"desc", N_("Define a domain.")},
1220 1221 1222
    {NULL, NULL}
};

1223
static const vshCmdOptDef opts_define[] = {
1224
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ, N_("file containing an XML domain description")},
1225 1226 1227 1228
    {NULL, 0, 0, NULL}
};

static int
1229
cmdDefine(vshControl *ctl, const vshCmd *cmd)
1230 1231 1232 1233 1234
{
    virDomainPtr dom;
    char *from;
    int found;
    int ret = TRUE;
1235
    char *buffer;
1236

1237
    if (!vshConnectionUsability(ctl, ctl->conn))
1238 1239 1240 1241 1242 1243
        return FALSE;

    from = vshCommandOptString(cmd, "file", &found);
    if (!found)
        return FALSE;

1244 1245
    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0)
        return FALSE;
1246 1247

    dom = virDomainDefineXML(ctl->conn, buffer);
1248
    VIR_FREE(buffer);
1249

1250
    if (dom != NULL) {
1251
        vshPrint(ctl, _("Domain %s defined from %s\n"),
1252
                 virDomainGetName(dom), from);
1253
        virDomainFree(dom);
1254
    } else {
1255
        vshError(ctl, _("Failed to define domain from %s"), from);
1256 1257 1258 1259 1260 1261 1262 1263
        ret = FALSE;
    }
    return ret;
}

/*
 * "undefine" command
 */
1264
static const vshCmdInfo info_undefine[] = {
1265 1266
    {"help", N_("undefine an inactive domain")},
    {"desc", N_("Undefine the configuration for an inactive domain.")},
1267 1268 1269
    {NULL, NULL}
};

1270
static const vshCmdOptDef opts_undefine[] = {
1271
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name or uuid")},
1272 1273 1274 1275
    {NULL, 0, 0, NULL}
};

static int
1276
cmdUndefine(vshControl *ctl, const vshCmd *cmd)
1277 1278 1279 1280
{
    virDomainPtr dom;
    int ret = TRUE;
    char *name;
1281 1282
    int found;
    int id;
1283

1284
    if (!vshConnectionUsability(ctl, ctl->conn))
1285 1286
        return FALSE;

1287 1288 1289 1290 1291 1292
    name = vshCommandOptString(cmd, "domain", &found);
    if (!found)
        return FALSE;

    if (name && virStrToLong_i(name, NULL, 10, &id) == 0
        && id >= 0 && (dom = virDomainLookupByID(ctl->conn, id))) {
1293 1294 1295 1296 1297
        vshError(ctl,
                 _("a running domain like %s cannot be undefined;\n"
                   "to undefine, first shutdown then undefine"
                   " using its name or UUID"),
                 name);
1298 1299 1300
        virDomainFree(dom);
        return FALSE;
    }
J
Jim Meyering 已提交
1301
    if (!(dom = vshCommandOptDomainBy(ctl, cmd, &name,
1302
                                      VSH_BYNAME|VSH_BYUUID)))
1303 1304 1305
        return FALSE;

    if (virDomainUndefine(dom) == 0) {
1306
        vshPrint(ctl, _("Domain %s has been undefined\n"), name);
1307
    } else {
1308
        vshError(ctl, _("Failed to undefine domain %s"), name);
1309 1310 1311
        ret = FALSE;
    }

1312
    virDomainFree(dom);
1313 1314 1315 1316 1317 1318 1319
    return ret;
}


/*
 * "start" command
 */
1320
static const vshCmdInfo info_start[] = {
1321
    {"help", N_("start a (previously defined) inactive domain")},
1322 1323 1324
    {"desc", N_("Start a domain, either from the last managedsave\n"
                "    state, or via a fresh boot if no managedsave state\n"
                "    is present.")},
1325 1326 1327
    {NULL, NULL}
};

1328
static const vshCmdOptDef opts_start[] = {
1329
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("name of the inactive domain")},
1330
#ifndef WIN32
1331
    {"console", VSH_OT_BOOL, 0, N_("attach to console after creation")},
1332
#endif
E
Eric Blake 已提交
1333
    {"paused", VSH_OT_BOOL, 0, N_("leave the guest paused after creation")},
1334 1335 1336 1337
    {NULL, 0, 0, NULL}
};

static int
1338
cmdStart(vshControl *ctl, const vshCmd *cmd)
1339 1340 1341
{
    virDomainPtr dom;
    int ret = TRUE;
1342
#ifndef WIN32
1343
    int console = vshCommandOptBool(cmd, "console");
1344
#endif
E
Eric Blake 已提交
1345
    unsigned int flags = VIR_DOMAIN_NONE;
1346

1347
    if (!vshConnectionUsability(ctl, ctl->conn))
1348 1349
        return FALSE;

J
Jim Meyering 已提交
1350
    if (!(dom = vshCommandOptDomainBy(ctl, cmd, NULL, VSH_BYNAME)))
1351 1352 1353
        return FALSE;

    if (virDomainGetID(dom) != (unsigned int)-1) {
1354
        vshError(ctl, "%s", _("Domain is already active"));
1355
        virDomainFree(dom);
1356 1357 1358
        return FALSE;
    }

E
Eric Blake 已提交
1359 1360 1361 1362 1363 1364
    if (vshCommandOptBool(cmd, "paused"))
        flags |= VIR_DOMAIN_START_PAUSED;

    /* Prefer older API unless we have to pass a flag.  */
    if ((flags ? virDomainCreateWithFlags(dom, flags)
         : virDomainCreate(dom)) == 0) {
1365
        vshPrint(ctl, _("Domain %s started\n"),
1366
                 virDomainGetName(dom));
1367
#ifndef WIN32
1368
        if (console)
1369
            cmdRunConsole(ctl, dom, NULL);
1370
#endif
1371
    } else {
1372
        vshError(ctl, _("Failed to start domain %s"), virDomainGetName(dom));
1373 1374
        ret = FALSE;
    }
1375
    virDomainFree(dom);
1376 1377 1378
    return ret;
}

1379 1380 1381
/*
 * "save" command
 */
1382
static const vshCmdInfo info_save[] = {
1383 1384
    {"help", N_("save a domain state to a file")},
    {"desc", N_("Save a running domain.")},
1385
    {NULL, NULL}
1386 1387
};

1388
static const vshCmdOptDef opts_save[] = {
1389 1390
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ, N_("where to save the data")},
1391
    {NULL, 0, 0, NULL}
1392 1393 1394
};

static int
1395
cmdSave(vshControl *ctl, const vshCmd *cmd)
1396
{
1397 1398 1399 1400
    virDomainPtr dom;
    char *name;
    char *to;
    int ret = TRUE;
1401

1402
    if (!vshConnectionUsability(ctl, ctl->conn))
1403 1404
        return FALSE;

1405
    if (!(to = vshCommandOptString(cmd, "file", NULL)))
1406
        return FALSE;
1407

J
Jim Meyering 已提交
1408
    if (!(dom = vshCommandOptDomain(ctl, cmd, &name)))
1409
        return FALSE;
1410 1411

    if (virDomainSave(dom, to) == 0) {
1412
        vshPrint(ctl, _("Domain %s saved to %s\n"), name, to);
1413
    } else {
1414
        vshError(ctl, _("Failed to save domain %s to %s"), name, to);
1415 1416
        ret = FALSE;
    }
1417

1418 1419 1420 1421
    virDomainFree(dom);
    return ret;
}

1422 1423 1424 1425 1426
/*
 * "managedsave" command
 */
static const vshCmdInfo info_managedsave[] = {
    {"help", N_("managed save of a domain state")},
1427 1428 1429 1430
    {"desc", N_("Save and destroy a running domain, so it can be restarted from\n"
                "    the same state at a later time.  When the virsh 'start'\n"
                "    command is next run for the domain, it will automatically\n"
                "    be started from this saved state.")},
1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445
    {NULL, NULL}
};

static const vshCmdOptDef opts_managedsave[] = {
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {NULL, 0, 0, NULL}
};

static int
cmdManagedSave(vshControl *ctl, const vshCmd *cmd)
{
    virDomainPtr dom;
    char *name;
    int ret = TRUE;

1446
    if (!vshConnectionUsability(ctl, ctl->conn))
1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462
        return FALSE;

    if (!(dom = vshCommandOptDomain(ctl, cmd, &name)))
        return FALSE;

    if (virDomainManagedSave(dom, 0) == 0) {
        vshPrint(ctl, _("Domain %s state saved by libvirt\n"), name);
    } else {
        vshError(ctl, _("Failed to save domain %s state"), name);
        ret = FALSE;
    }

    virDomainFree(dom);
    return ret;
}

1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484
/*
 * "managedsave-remove" command
 */
static const vshCmdInfo info_managedsaveremove[] = {
    {"help", N_("Remove managed save of a domain")},
    {"desc", N_("Remove an existing managed save state file from a domain")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_managedsaveremove[] = {
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {NULL, 0, 0, NULL}
};

static int
cmdManagedSaveRemove(vshControl *ctl, const vshCmd *cmd)
{
    virDomainPtr dom;
    char *name;
    int ret = FALSE;
    int hassave;

1485
    if (!vshConnectionUsability(ctl, ctl->conn))
1486 1487 1488 1489 1490 1491 1492
        return FALSE;

    if (!(dom = vshCommandOptDomain(ctl, cmd, &name)))
        return FALSE;

    hassave = virDomainHasManagedSaveImage(dom, 0);
    if (hassave < 0) {
1493
        vshError(ctl, "%s", _("Failed to check for domain managed save image"));
1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516
        goto cleanup;
    }

    if (hassave) {
        if (virDomainManagedSaveRemove(dom, 0) < 0) {
            vshError(ctl, _("Failed to remove managed save image for domain %s"),
                     name);
            goto cleanup;
        }
        else
            vshPrint(ctl, _("Removed managedsave image for domain %s"), name);
    }
    else
        vshPrint(ctl, _("Domain %s has no manage save image; removal skipped"),
                 name);

    ret = TRUE;

cleanup:
    virDomainFree(dom);
    return ret;
}

1517 1518 1519
/*
 * "schedinfo" command
 */
1520
static const vshCmdInfo info_schedinfo[] = {
1521 1522
    {"help", N_("show/set scheduler parameters")},
    {"desc", N_("Show/Set scheduler parameters.")},
1523 1524 1525
    {NULL, NULL}
};

1526
static const vshCmdOptDef opts_schedinfo[] = {
1527 1528 1529 1530
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"set", VSH_OT_STRING, VSH_OFLAG_NONE, N_("parameter=value")},
    {"weight", VSH_OT_INT, VSH_OFLAG_NONE, N_("weight for XEN_CREDIT")},
    {"cap", VSH_OT_INT, VSH_OFLAG_NONE, N_("cap for XEN_CREDIT")},
1531 1532 1533 1534
    {NULL, 0, 0, NULL}
};

static int
1535 1536
cmdSchedInfoUpdate(vshControl *ctl, const vshCmd *cmd,
                   virSchedParameterPtr param)
1537
{
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547
    int found;
    char *data;

    /* Legacy 'weight' parameter */
    if (STREQ(param->field, "weight") &&
        param->type == VIR_DOMAIN_SCHED_FIELD_UINT &&
        vshCommandOptBool(cmd, "weight")) {
        int val;
        val = vshCommandOptInt(cmd, "weight", &found);
        if (!found) {
1548
            vshError(ctl, "%s", _("Invalid value of weight"));
1549
            return -1;
1550
        } else {
1551
            param->value.ui = val;
1552
        }
1553
        return 1;
1554 1555
    }

1556 1557 1558 1559 1560 1561 1562
    /* Legacy 'cap' parameter */
    if (STREQ(param->field, "cap") &&
        param->type == VIR_DOMAIN_SCHED_FIELD_UINT &&
        vshCommandOptBool(cmd, "cap")) {
        int val;
        val = vshCommandOptInt(cmd, "cap", &found);
        if (!found) {
1563
            vshError(ctl, "%s", _("Invalid value of cap"));
1564
            return -1;
1565
        } else {
1566
            param->value.ui = val;
1567
        }
1568
        return 1;
1569
    }
1570

1571 1572 1573 1574
    if ((data = vshCommandOptString(cmd, "set", NULL))) {
        char *val = strchr(data, '=');
        int match = 0;
        if (!val) {
1575
            vshError(ctl, "%s", _("Invalid syntax for --set, expecting name=value"));
1576
            return -1;
1577
        }
1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588
        *val = '\0';
        match = STREQ(data, param->field);
        *val = '=';
        val++;

        if (!match)
            return 0;

        switch (param->type) {
        case VIR_DOMAIN_SCHED_FIELD_INT:
            if (virStrToLong_i(val, NULL, 10, &param->value.i) < 0) {
1589
                vshError(ctl, "%s",
1590 1591 1592 1593 1594 1595
                         _("Invalid value for parameter, expecting an int"));
                return -1;
            }
            break;
        case VIR_DOMAIN_SCHED_FIELD_UINT:
            if (virStrToLong_ui(val, NULL, 10, &param->value.ui) < 0) {
1596
                vshError(ctl, "%s",
1597 1598 1599 1600 1601 1602
                         _("Invalid value for parameter, expecting an unsigned int"));
                return -1;
            }
            break;
        case VIR_DOMAIN_SCHED_FIELD_LLONG:
            if (virStrToLong_ll(val, NULL, 10, &param->value.l) < 0) {
1603
                vshError(ctl, "%s",
J
Jim Meyering 已提交
1604
                         _("Invalid value for parameter, expecting a long long"));
1605 1606 1607 1608 1609
                return -1;
            }
            break;
        case VIR_DOMAIN_SCHED_FIELD_ULLONG:
            if (virStrToLong_ull(val, NULL, 10, &param->value.ul) < 0) {
1610
                vshError(ctl, "%s",
1611 1612 1613 1614 1615 1616
                         _("Invalid value for parameter, expecting an unsigned long long"));
                return -1;
            }
            break;
        case VIR_DOMAIN_SCHED_FIELD_DOUBLE:
            if (virStrToDouble(val, NULL, &param->value.d) < 0) {
1617
                vshError(ctl, "%s", _("Invalid value for parameter, expecting a double"));
1618 1619 1620 1621 1622
                return -1;
            }
            break;
        case VIR_DOMAIN_SCHED_FIELD_BOOLEAN:
            param->value.b = STREQ(val, "0") ? 0 : 1;
1623
        }
1624
        return 1;
1625
    }
1626

1627 1628
    return 0;
}
1629

1630

1631 1632 1633 1634 1635 1636 1637 1638 1639 1640
static int
cmdSchedinfo(vshControl *ctl, const vshCmd *cmd)
{
    char *schedulertype;
    virDomainPtr dom;
    virSchedParameterPtr params = NULL;
    int nparams = 0;
    int update = 0;
    int i, ret;
    int ret_val = FALSE;
1641

1642
    if (!vshConnectionUsability(ctl, ctl->conn))
1643
        return FALSE;
1644

1645 1646
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
        return FALSE;
1647 1648 1649 1650

    /* Print SchedulerType */
    schedulertype = virDomainGetSchedulerType(dom, &nparams);
    if (schedulertype!= NULL){
1651
        vshPrint(ctl, "%-15s: %s\n", _("Scheduler"),
1652
             schedulertype);
1653
        VIR_FREE(schedulertype);
1654
    } else {
1655
        vshPrint(ctl, "%-15s: %s\n", _("Scheduler"), _("Unknown"));
1656
        goto cleanup;
1657 1658
    }

1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685
    if (nparams) {
        params = vshMalloc(ctl, sizeof(virSchedParameter)* nparams);

        memset(params, 0, sizeof(virSchedParameter)* nparams);
        ret = virDomainGetSchedulerParameters(dom, params, &nparams);
        if (ret == -1)
            goto cleanup;

        /* See if any params are being set */
        for (i = 0; i < nparams; i++){
            ret = cmdSchedInfoUpdate(ctl, cmd, &(params[i]));
            if (ret == -1)
                goto cleanup;

            if (ret == 1)
                update = 1;
        }

        /* Update parameters & refresh data */
        if (update) {
            ret = virDomainSetSchedulerParameters(dom, params, nparams);
            if (ret == -1)
                goto cleanup;

            ret = virDomainGetSchedulerParameters(dom, params, &nparams);
            if (ret == -1)
                goto cleanup;
1686 1687 1688 1689 1690 1691 1692 1693 1694 1695
        } else {
            /* See if we've tried to --set var=val.  If so, the fact that
               we reach this point (with update == 0) means that "var" did
               not match any of the settable parameters.  Report the error.  */
            char *var_value_pair = vshCommandOptString(cmd, "set", NULL);
            if (var_value_pair) {
                vshError(ctl, _("invalid scheduler option: %s"),
                         var_value_pair);
                goto cleanup;
            }
1696 1697 1698
        }

        ret_val = TRUE;
1699 1700 1701
        for (i = 0; i < nparams; i++){
            switch (params[i].type) {
            case VIR_DOMAIN_SCHED_FIELD_INT:
1702
                 vshPrint(ctl, "%-15s: %d\n",  params[i].field, params[i].value.i);
1703 1704
                 break;
            case VIR_DOMAIN_SCHED_FIELD_UINT:
1705
                 vshPrint(ctl, "%-15s: %u\n",  params[i].field, params[i].value.ui);
1706 1707
                 break;
            case VIR_DOMAIN_SCHED_FIELD_LLONG:
1708
                 vshPrint(ctl, "%-15s: %lld\n",  params[i].field, params[i].value.l);
1709 1710
                 break;
            case VIR_DOMAIN_SCHED_FIELD_ULLONG:
1711
                 vshPrint(ctl, "%-15s: %llu\n",  params[i].field, params[i].value.ul);
1712 1713
                 break;
            case VIR_DOMAIN_SCHED_FIELD_DOUBLE:
1714
                 vshPrint(ctl, "%-15s: %f\n",  params[i].field, params[i].value.d);
1715 1716
                 break;
            case VIR_DOMAIN_SCHED_FIELD_BOOLEAN:
1717
                 vshPrint(ctl, "%-15s: %d\n",  params[i].field, params[i].value.b);
1718 1719
                 break;
            default:
1720
                 vshPrint(ctl, "not implemented scheduler parameter type\n");
1721 1722 1723
            }
        }
    }
1724

1725
 cleanup:
1726
    VIR_FREE(params);
1727
    virDomainFree(dom);
1728
    return ret_val;
1729 1730
}

1731 1732 1733
/*
 * "restore" command
 */
1734
static const vshCmdInfo info_restore[] = {
1735 1736
    {"help", N_("restore a domain from a saved state in a file")},
    {"desc", N_("Restore a domain.")},
1737
    {NULL, NULL}
1738 1739
};

1740
static const vshCmdOptDef opts_restore[] = {
1741
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ, N_("the state to restore")},
1742
    {NULL, 0, 0, NULL}
1743 1744 1745
};

static int
1746
cmdRestore(vshControl *ctl, const vshCmd *cmd)
1747
{
1748 1749 1750
    char *from;
    int found;
    int ret = TRUE;
1751

1752
    if (!vshConnectionUsability(ctl, ctl->conn))
1753 1754 1755 1756 1757
        return FALSE;

    from = vshCommandOptString(cmd, "file", &found);
    if (!found)
        return FALSE;
1758 1759

    if (virDomainRestore(ctl->conn, from) == 0) {
1760
        vshPrint(ctl, _("Domain restored from %s\n"), from);
1761
    } else {
1762
        vshError(ctl, _("Failed to restore domain from %s"), from);
1763 1764 1765 1766 1767
        ret = FALSE;
    }
    return ret;
}

D
Daniel Veillard 已提交
1768 1769 1770
/*
 * "dump" command
 */
1771
static const vshCmdInfo info_dump[] = {
1772 1773
    {"help", N_("dump the core of a domain to a file for analysis")},
    {"desc", N_("Core dump a domain.")},
D
Daniel Veillard 已提交
1774 1775 1776
    {NULL, NULL}
};

1777
static const vshCmdOptDef opts_dump[] = {
1778 1779 1780 1781
    {"live", VSH_OT_BOOL, 0, N_("perform a live core dump if supported")},
    {"crash", VSH_OT_BOOL, 0, N_("crash the domain after core dump")},
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ, N_("where to dump the core")},
D
Daniel Veillard 已提交
1782 1783 1784 1785
    {NULL, 0, 0, NULL}
};

static int
1786
cmdDump(vshControl *ctl, const vshCmd *cmd)
D
Daniel Veillard 已提交
1787 1788 1789 1790 1791
{
    virDomainPtr dom;
    char *name;
    char *to;
    int ret = TRUE;
1792
    int flags = 0;
D
Daniel Veillard 已提交
1793

1794
    if (!vshConnectionUsability(ctl, ctl->conn))
D
Daniel Veillard 已提交
1795 1796 1797 1798 1799
        return FALSE;

    if (!(to = vshCommandOptString(cmd, "file", NULL)))
        return FALSE;

J
Jim Meyering 已提交
1800
    if (!(dom = vshCommandOptDomain(ctl, cmd, &name)))
D
Daniel Veillard 已提交
1801 1802
        return FALSE;

P
Paolo Bonzini 已提交
1803 1804
    if (vshCommandOptBool (cmd, "live"))
        flags |= VIR_DUMP_LIVE;
1805 1806 1807 1808
    if (vshCommandOptBool (cmd, "crash"))
        flags |= VIR_DUMP_CRASH;

    if (virDomainCoreDump(dom, to, flags) == 0) {
1809
        vshPrint(ctl, _("Domain %s dumped to %s\n"), name, to);
D
Daniel Veillard 已提交
1810
    } else {
1811
        vshError(ctl, _("Failed to core dump domain %s to %s"), name, to);
D
Daniel Veillard 已提交
1812 1813 1814 1815 1816 1817 1818
        ret = FALSE;
    }

    virDomainFree(dom);
    return ret;
}

1819 1820 1821
/*
 * "resume" command
 */
1822
static const vshCmdInfo info_resume[] = {
1823 1824
    {"help", N_("resume a domain")},
    {"desc", N_("Resume a previously suspended domain.")},
1825
    {NULL, NULL}
1826 1827
};

1828
static const vshCmdOptDef opts_resume[] = {
1829
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
1830
    {NULL, 0, 0, NULL}
1831 1832 1833
};

static int
1834
cmdResume(vshControl *ctl, const vshCmd *cmd)
1835
{
1836
    virDomainPtr dom;
K
Karel Zak 已提交
1837 1838
    int ret = TRUE;
    char *name;
1839

1840
    if (!vshConnectionUsability(ctl, ctl->conn))
1841 1842
        return FALSE;

J
Jim Meyering 已提交
1843
    if (!(dom = vshCommandOptDomain(ctl, cmd, &name)))
1844
        return FALSE;
1845 1846

    if (virDomainResume(dom) == 0) {
1847
        vshPrint(ctl, _("Domain %s resumed\n"), name);
1848
    } else {
1849
        vshError(ctl, _("Failed to resume domain %s"), name);
1850 1851
        ret = FALSE;
    }
1852

1853 1854 1855 1856
    virDomainFree(dom);
    return ret;
}

1857 1858 1859
/*
 * "shutdown" command
 */
1860
static const vshCmdInfo info_shutdown[] = {
1861 1862
    {"help", N_("gracefully shutdown a domain")},
    {"desc", N_("Run shutdown in the target domain.")},
1863
    {NULL, NULL}
1864 1865
};

1866
static const vshCmdOptDef opts_shutdown[] = {
1867
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
1868
    {NULL, 0, 0, NULL}
1869 1870 1871
};

static int
1872
cmdShutdown(vshControl *ctl, const vshCmd *cmd)
1873
{
1874 1875 1876
    virDomainPtr dom;
    int ret = TRUE;
    char *name;
1877

1878
    if (!vshConnectionUsability(ctl, ctl->conn))
1879 1880
        return FALSE;

J
Jim Meyering 已提交
1881
    if (!(dom = vshCommandOptDomain(ctl, cmd, &name)))
1882
        return FALSE;
1883 1884

    if (virDomainShutdown(dom) == 0) {
1885
        vshPrint(ctl, _("Domain %s is being shutdown\n"), name);
1886
    } else {
1887
        vshError(ctl, _("Failed to shutdown domain %s"), name);
1888 1889
        ret = FALSE;
    }
1890

1891 1892 1893 1894
    virDomainFree(dom);
    return ret;
}

1895 1896 1897
/*
 * "reboot" command
 */
1898
static const vshCmdInfo info_reboot[] = {
1899 1900
    {"help", N_("reboot a domain")},
    {"desc", N_("Run a reboot command in the target domain.")},
1901 1902 1903
    {NULL, NULL}
};

1904
static const vshCmdOptDef opts_reboot[] = {
1905
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
1906 1907 1908 1909
    {NULL, 0, 0, NULL}
};

static int
1910
cmdReboot(vshControl *ctl, const vshCmd *cmd)
1911 1912 1913 1914 1915
{
    virDomainPtr dom;
    int ret = TRUE;
    char *name;

1916
    if (!vshConnectionUsability(ctl, ctl->conn))
1917 1918
        return FALSE;

J
Jim Meyering 已提交
1919
    if (!(dom = vshCommandOptDomain(ctl, cmd, &name)))
1920 1921 1922
        return FALSE;

    if (virDomainReboot(dom, 0) == 0) {
1923
        vshPrint(ctl, _("Domain %s is being rebooted\n"), name);
1924
    } else {
1925
        vshError(ctl, _("Failed to reboot domain %s"), name);
1926 1927 1928 1929 1930 1931 1932
        ret = FALSE;
    }

    virDomainFree(dom);
    return ret;
}

1933 1934 1935
/*
 * "destroy" command
 */
1936
static const vshCmdInfo info_destroy[] = {
1937 1938
    {"help", N_("destroy a domain")},
    {"desc", N_("Destroy a given domain.")},
1939
    {NULL, NULL}
1940 1941
};

1942
static const vshCmdOptDef opts_destroy[] = {
1943
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
1944
    {NULL, 0, 0, NULL}
1945 1946 1947
};

static int
1948
cmdDestroy(vshControl *ctl, const vshCmd *cmd)
1949
{
1950
    virDomainPtr dom;
K
Karel Zak 已提交
1951 1952
    int ret = TRUE;
    char *name;
1953

1954
    if (!vshConnectionUsability(ctl, ctl->conn))
1955 1956
        return FALSE;

J
Jim Meyering 已提交
1957
    if (!(dom = vshCommandOptDomain(ctl, cmd, &name)))
1958
        return FALSE;
1959 1960

    if (virDomainDestroy(dom) == 0) {
1961
        vshPrint(ctl, _("Domain %s destroyed\n"), name);
1962
    } else {
1963
        vshError(ctl, _("Failed to destroy domain %s"), name);
1964 1965
        ret = FALSE;
    }
1966

1967
    virDomainFree(dom);
K
Karel Zak 已提交
1968 1969 1970 1971
    return ret;
}

/*
1972
 * "dominfo" command
K
Karel Zak 已提交
1973
 */
1974
static const vshCmdInfo info_dominfo[] = {
1975 1976
    {"help", N_("domain information")},
    {"desc", N_("Returns basic information about the domain.")},
1977
    {NULL, NULL}
K
Karel Zak 已提交
1978 1979
};

1980
static const vshCmdOptDef opts_dominfo[] = {
1981
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
1982
    {NULL, 0, 0, NULL}
K
Karel Zak 已提交
1983 1984 1985
};

static int
1986
cmdDominfo(vshControl *ctl, const vshCmd *cmd)
1987
{
K
Karel Zak 已提交
1988 1989
    virDomainInfo info;
    virDomainPtr dom;
1990 1991
    virSecurityModel secmodel;
    virSecurityLabel seclabel;
1992
    int persistent = 0;
1993
    int ret = TRUE, autostart;
1994
    unsigned int id;
1995
    char *str, uuid[VIR_UUID_STRING_BUFLEN];
1996

1997
    if (!vshConnectionUsability(ctl, ctl->conn))
K
Karel Zak 已提交
1998 1999
        return FALSE;

J
Jim Meyering 已提交
2000
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
K
Karel Zak 已提交
2001
        return FALSE;
2002

2003 2004
    id = virDomainGetID(dom);
    if (id == ((unsigned int)-1))
2005
        vshPrint(ctl, "%-15s %s\n", _("Id:"), "-");
2006
    else
2007
        vshPrint(ctl, "%-15s %d\n", _("Id:"), id);
2008 2009
    vshPrint(ctl, "%-15s %s\n", _("Name:"), virDomainGetName(dom));

K
Karel Zak 已提交
2010
    if (virDomainGetUUIDString(dom, &uuid[0])==0)
2011
        vshPrint(ctl, "%-15s %s\n", _("UUID:"), uuid);
2012 2013

    if ((str = virDomainGetOSType(dom))) {
2014
        vshPrint(ctl, "%-15s %s\n", _("OS Type:"), str);
2015
        VIR_FREE(str);
2016 2017 2018
    }

    if (virDomainGetInfo(dom, &info) == 0) {
2019
        vshPrint(ctl, "%-15s %s\n", _("State:"),
E
Eric Blake 已提交
2020
                 _(vshDomainStateToString(info.state)));
2021

2022
        vshPrint(ctl, "%-15s %d\n", _("CPU(s):"), info.nrVirtCpu);
2023 2024

        if (info.cpuTime != 0) {
2025
            double cpuUsed = info.cpuTime;
2026

2027
            cpuUsed /= 1000000000.0;
2028

2029
            vshPrint(ctl, "%-15s %.1lfs\n", _("CPU time:"), cpuUsed);
K
Karel Zak 已提交
2030
        }
2031

2032 2033
        if (info.maxMem != UINT_MAX)
            vshPrint(ctl, "%-15s %lu kB\n", _("Max memory:"),
2034
                 info.maxMem);
2035
        else
2036
            vshPrint(ctl, "%-15s %s\n", _("Max memory:"),
2037 2038
                 _("no limit"));

2039
        vshPrint(ctl, "%-15s %lu kB\n", _("Used memory:"),
2040 2041
                 info.memory);

K
Karel Zak 已提交
2042 2043 2044
    } else {
        ret = FALSE;
    }
2045

2046 2047 2048 2049 2050 2051 2052 2053 2054
    /* Check and display whether the domain is persistent or not */
    persistent = virDomainIsPersistent(dom);
    vshDebug(ctl, 5, "Domain persistent flag value: %d\n", persistent);
    if (persistent < 0)
        vshPrint(ctl, "%-15s %s\n", _("Persistent:"), _("unknown"));
    else
        vshPrint(ctl, "%-15s %s\n", _("Persistent:"), persistent ? _("yes") : _("no"));

    /* Check and display whether the domain autostarts or not */
2055
    if (!virDomainGetAutostart(dom, &autostart)) {
2056
        vshPrint(ctl, "%-15s %s\n", _("Autostart:"),
2057 2058 2059
                 autostart ? _("enable") : _("disable") );
    }

2060 2061 2062
    /* Security model and label information */
    memset(&secmodel, 0, sizeof secmodel);
    if (virNodeGetSecurityModel(ctl->conn, &secmodel) == -1) {
2063 2064 2065 2066
        if (last_error->code != VIR_ERR_NO_SUPPORT) {
            virDomainFree(dom);
            return FALSE;
        }
2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084
    } else {
        /* Only print something if a security model is active */
        if (secmodel.model[0] != '\0') {
            vshPrint(ctl, "%-15s %s\n", _("Security model:"), secmodel.model);
            vshPrint(ctl, "%-15s %s\n", _("Security DOI:"), secmodel.doi);

            /* Security labels are only valid for active domains */
            memset(&seclabel, 0, sizeof seclabel);
            if (virDomainGetSecurityLabel(dom, &seclabel) == -1) {
                virDomainFree(dom);
                return FALSE;
            } else {
                if (seclabel.label[0] != '\0')
                    vshPrint(ctl, "%-15s %s (%s)\n", _("Security label:"),
                             seclabel.label, seclabel.enforcing ? "enforcing" : "permissive");
            }
        }
    }
2085
    virDomainFree(dom);
K
Karel Zak 已提交
2086 2087 2088
    return ret;
}

2089 2090 2091 2092
/*
 * "domjobinfo" command
 */
static const vshCmdInfo info_domjobinfo[] = {
2093 2094
    {"help", N_("domain job information")},
    {"desc", N_("Returns information about jobs running on a domain.")},
2095 2096 2097 2098
    {NULL, NULL}
};

static const vshCmdOptDef opts_domjobinfo[] = {
2099
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
2100 2101 2102 2103 2104 2105 2106 2107 2108
    {NULL, 0, 0, NULL}
};


static int
cmdDomjobinfo(vshControl *ctl, const vshCmd *cmd)
{
    virDomainJobInfo info;
    virDomainPtr dom;
L
Laine Stump 已提交
2109
    int ret = TRUE;
2110

2111
    if (!vshConnectionUsability(ctl, ctl->conn))
2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141
        return FALSE;

    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
        return FALSE;

    if (virDomainGetJobInfo(dom, &info) == 0) {
        const char *unit;
        double val;

        vshPrint(ctl, "%-17s ", _("Job type:"));
        switch (info.type) {
        case VIR_DOMAIN_JOB_BOUNDED:
            vshPrint(ctl, "%-12s\n", _("Bounded"));
            break;

        case VIR_DOMAIN_JOB_UNBOUNDED:
            vshPrint(ctl, "%-12s\n", _("Unbounded"));
            break;

        case VIR_DOMAIN_JOB_NONE:
        default:
            vshPrint(ctl, "%-12s\n", _("None"));
            goto cleanup;
        }

        vshPrint(ctl, "%-17s %-12llu ms\n", _("Time elapsed:"), info.timeElapsed);
        if (info.type == VIR_DOMAIN_JOB_BOUNDED)
            vshPrint(ctl, "%-17s %-12llu ms\n", _("Time remaining:"), info.timeRemaining);
        if (info.dataTotal || info.dataRemaining || info.dataProcessed) {
            val = prettyCapacity(info.dataProcessed, &unit);
E
Eric Blake 已提交
2142
            vshPrint(ctl, "%-17s %-.3lf %s\n", _("Data processed:"), val, unit);
2143
            val = prettyCapacity(info.dataRemaining, &unit);
E
Eric Blake 已提交
2144
            vshPrint(ctl, "%-17s %-.3lf %s\n", _("Data remaining:"), val, unit);
2145
            val = prettyCapacity(info.dataTotal, &unit);
E
Eric Blake 已提交
2146
            vshPrint(ctl, "%-17s %-.3lf %s\n", _("Data total:"), val, unit);
2147 2148 2149
        }
        if (info.memTotal || info.memRemaining || info.memProcessed) {
            val = prettyCapacity(info.memProcessed, &unit);
E
Eric Blake 已提交
2150
            vshPrint(ctl, "%-17s %-.3lf %s\n", _("Memory processed:"), val, unit);
2151
            val = prettyCapacity(info.memRemaining, &unit);
E
Eric Blake 已提交
2152
            vshPrint(ctl, "%-17s %-.3lf %s\n", _("Memory remaining:"), val, unit);
2153
            val = prettyCapacity(info.memTotal, &unit);
E
Eric Blake 已提交
2154
            vshPrint(ctl, "%-17s %-.3lf %s\n", _("Memory total:"), val, unit);
2155 2156 2157
        }
        if (info.fileTotal || info.fileRemaining || info.fileProcessed) {
            val = prettyCapacity(info.fileProcessed, &unit);
E
Eric Blake 已提交
2158
            vshPrint(ctl, "%-17s %-.3lf %s\n", _("File processed:"), val, unit);
2159
            val = prettyCapacity(info.fileRemaining, &unit);
E
Eric Blake 已提交
2160
            vshPrint(ctl, "%-17s %-.3lf %s\n", _("File remaining:"), val, unit);
2161
            val = prettyCapacity(info.fileTotal, &unit);
E
Eric Blake 已提交
2162
            vshPrint(ctl, "%-17s %-.3lf %s\n", _("File total:"), val, unit);
2163 2164 2165 2166 2167 2168 2169 2170 2171
        }
    } else {
        ret = FALSE;
    }
cleanup:
    virDomainFree(dom);
    return ret;
}

2172 2173 2174 2175
/*
 * "domjobabort" command
 */
static const vshCmdInfo info_domjobabort[] = {
2176 2177
    {"help", N_("abort active domain job")},
    {"desc", N_("Aborts the currently running domain job")},
2178 2179 2180 2181
    {NULL, NULL}
};

static const vshCmdOptDef opts_domjobabort[] = {
2182
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
2183 2184 2185 2186 2187 2188 2189 2190 2191
    {NULL, 0, 0, NULL}
};

static int
cmdDomjobabort(vshControl *ctl, const vshCmd *cmd)
{
    virDomainPtr dom;
    int ret = TRUE;

2192
    if (!vshConnectionUsability(ctl, ctl->conn))
2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204
        return FALSE;

    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
        return FALSE;

    if (virDomainAbortJob(dom) < 0)
        ret = FALSE;

    virDomainFree(dom);
    return ret;
}

2205 2206 2207
/*
 * "freecell" command
 */
2208
static const vshCmdInfo info_freecell[] = {
2209 2210
    {"help", N_("NUMA free memory")},
    {"desc", N_("display available free memory for the NUMA cell.")},
2211 2212 2213
    {NULL, NULL}
};

2214
static const vshCmdOptDef opts_freecell[] = {
2215
    {"cellno", VSH_OT_INT, 0, N_("NUMA cell number")},
2216 2217 2218 2219
    {NULL, 0, 0, NULL}
};

static int
2220
cmdFreecell(vshControl *ctl, const vshCmd *cmd)
2221 2222 2223 2224 2225
{
    int ret;
    int cell, cell_given;
    unsigned long long memory;

2226
    if (!vshConnectionUsability(ctl, ctl->conn))
2227 2228 2229 2230
        return FALSE;

    cell = vshCommandOptInt(cmd, "cellno", &cell_given);
    if (!cell_given) {
2231
        memory = virNodeGetFreeMemory(ctl->conn);
D
Daniel P. Berrange 已提交
2232 2233
        if (memory == 0)
            return FALSE;
2234
    } else {
2235 2236 2237
        ret = virNodeGetCellsFreeMemory(ctl->conn, &memory, cell, 1);
        if (ret != 1)
            return FALSE;
2238 2239 2240
    }

    if (cell == -1)
D
Daniel P. Berrange 已提交
2241
        vshPrint(ctl, "%s: %llu kB\n", _("Total"), (memory/1024));
2242
    else
D
Daniel P. Berrange 已提交
2243
        vshPrint(ctl, "%d: %llu kB\n", cell, (memory/1024));
2244 2245 2246 2247

    return TRUE;
}

E
Eric Blake 已提交
2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453
/*
 * "maxvcpus" command
 */
static const vshCmdInfo info_maxvcpus[] = {
    {"help", N_("connection vcpu maximum")},
    {"desc", N_("Show maximum number of virtual CPUs for guests on this connection.")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_maxvcpus[] = {
    {"type", VSH_OT_STRING, 0, N_("domain type")},
    {NULL, 0, 0, NULL}
};

static int
cmdMaxvcpus(vshControl *ctl, const vshCmd *cmd)
{
    char *type;
    int vcpus;

    type = vshCommandOptString(cmd, "type", NULL);

    if (!vshConnectionUsability(ctl, ctl->conn))
        return FALSE;

    vcpus = virConnectGetMaxVcpus(ctl->conn, type);
    if (vcpus < 0)
        return FALSE;
    vshPrint(ctl, "%d\n", vcpus);

    return TRUE;
}

/*
 * "vcpucount" command
 */
static const vshCmdInfo info_vcpucount[] = {
    {"help", N_("domain vcpu counts")},
    {"desc", N_("Returns the number of virtual CPUs used by the domain.")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_vcpucount[] = {
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"maximum", VSH_OT_BOOL, 0, N_("get maximum cap on vcpus")},
    {"current", VSH_OT_BOOL, 0, N_("get current vcpu usage")},
    {"config", VSH_OT_BOOL, 0, N_("get value to be used on next boot")},
    {"live", VSH_OT_BOOL, 0, N_("get value from running domain")},
    {NULL, 0, 0, NULL}
};

static int
cmdVcpucount(vshControl *ctl, const vshCmd *cmd)
{
    virDomainPtr dom;
    int ret = TRUE;
    int maximum = vshCommandOptBool(cmd, "maximum");
    int current = vshCommandOptBool(cmd, "current");
    int config = vshCommandOptBool(cmd, "config");
    int live = vshCommandOptBool(cmd, "live");
    bool all = maximum + current + config + live == 0;
    int count;

    if (maximum && current) {
        vshError(ctl, "%s",
                 _("--maximum and --current cannot both be specified"));
        return FALSE;
    }
    if (config && live) {
        vshError(ctl, "%s",
                 _("--config and --live cannot both be specified"));
        return FALSE;
    }
    /* We want one of each pair of mutually exclusive options; that
     * is, use of flags requires exactly two options.  */
    if (maximum + current + config + live == 1) {
        vshError(ctl,
                 _("when using --%s, either --%s or --%s must be specified"),
                 (maximum ? "maximum" : current ? "current"
                  : config ? "config" : "live"),
                 maximum + current ? "config" : "maximum",
                 maximum + current ? "live" : "current");
        return FALSE;
    }

    if (!vshConnectionUsability(ctl, ctl->conn))
        return FALSE;

    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
        return FALSE;

    /* In all cases, try the new API first; if it fails because we are
     * talking to an older client, try a fallback API before giving
     * up.  */
    if (all || (maximum && config)) {
        count = virDomainGetVcpusFlags(dom, (VIR_DOMAIN_VCPU_MAXIMUM |
                                             VIR_DOMAIN_VCPU_CONFIG));
        if (count < 0 && (last_error->code == VIR_ERR_NO_SUPPORT
                          || last_error->code == VIR_ERR_INVALID_ARG)) {
            char *tmp;
            char *xml = virDomainGetXMLDesc(dom, VIR_DOMAIN_XML_INACTIVE);
            if (xml && (tmp = strstr(xml, "<vcpu"))) {
                tmp = strchr(tmp, '>');
                if (!tmp || virStrToLong_i(tmp + 1, &tmp, 10, &count) < 0)
                    count = -1;
            }
            VIR_FREE(xml);
        }

        if (count < 0) {
            virshReportError(ctl);
            ret = FALSE;
        } else if (all) {
            vshPrint(ctl, "%-12s %-12s %3d\n", _("maximum"), _("config"),
                     count);
        } else {
            vshPrint(ctl, "%d\n", count);
        }
        virFreeError(last_error);
        last_error = NULL;
    }

    if (all || (maximum && live)) {
        count = virDomainGetVcpusFlags(dom, (VIR_DOMAIN_VCPU_MAXIMUM |
                                             VIR_DOMAIN_VCPU_LIVE));
        if (count < 0 && (last_error->code == VIR_ERR_NO_SUPPORT
                          || last_error->code == VIR_ERR_INVALID_ARG)) {
            count = virDomainGetMaxVcpus(dom);
        }

        if (count < 0) {
            virshReportError(ctl);
            ret = FALSE;
        } else if (all) {
            vshPrint(ctl, "%-12s %-12s %3d\n", _("maximum"), _("live"),
                     count);
        } else {
            vshPrint(ctl, "%d\n", count);
        }
        virFreeError(last_error);
        last_error = NULL;
    }

    if (all || (current && config)) {
        count = virDomainGetVcpusFlags(dom, VIR_DOMAIN_VCPU_CONFIG);
        if (count < 0 && (last_error->code == VIR_ERR_NO_SUPPORT
                          || last_error->code == VIR_ERR_INVALID_ARG)) {
            char *tmp, *end;
            char *xml = virDomainGetXMLDesc(dom, VIR_DOMAIN_XML_INACTIVE);
            if (xml && (tmp = strstr(xml, "<vcpu"))) {
                end = strchr(tmp, '>');
                if (end) {
                    *end = '\0';
                    tmp = strstr(tmp, "current=");
                    if (!tmp)
                        tmp = end + 1;
                    else {
                        tmp += strlen("current=");
                        tmp += *tmp == '\'' || *tmp == '"';
                    }
                }
                if (!tmp || virStrToLong_i(tmp, &tmp, 10, &count) < 0)
                    count = -1;
            }
            VIR_FREE(xml);
        }

        if (count < 0) {
            virshReportError(ctl);
            ret = FALSE;
        } else if (all) {
            vshPrint(ctl, "%-12s %-12s %3d\n", _("current"), _("config"),
                     count);
        } else {
            vshPrint(ctl, "%d\n", count);
        }
        virFreeError(last_error);
        last_error = NULL;
    }

    if (all || (current && live)) {
        count = virDomainGetVcpusFlags(dom, VIR_DOMAIN_VCPU_LIVE);
        if (count < 0 && (last_error->code == VIR_ERR_NO_SUPPORT
                          || last_error->code == VIR_ERR_INVALID_ARG)) {
            virDomainInfo info;
            if (virDomainGetInfo(dom, &info) == 0)
                count = info.nrVirtCpu;
        }

        if (count < 0) {
            virshReportError(ctl);
            ret = FALSE;
        } else if (all) {
            vshPrint(ctl, "%-12s %-12s %3d\n", _("current"), _("live"),
                     count);
        } else {
            vshPrint(ctl, "%d\n", count);
        }
        virFreeError(last_error);
        last_error = NULL;
    }

    virDomainFree(dom);
    return ret;
}

2454 2455 2456
/*
 * "vcpuinfo" command
 */
2457
static const vshCmdInfo info_vcpuinfo[] = {
E
Eric Blake 已提交
2458
    {"help", N_("detailed domain vcpu information")},
2459
    {"desc", N_("Returns basic information about the domain virtual CPUs.")},
2460 2461 2462
    {NULL, NULL}
};

2463
static const vshCmdOptDef opts_vcpuinfo[] = {
2464
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
2465 2466 2467 2468
    {NULL, 0, 0, NULL}
};

static int
2469
cmdVcpuinfo(vshControl *ctl, const vshCmd *cmd)
2470 2471 2472 2473 2474 2475 2476 2477 2478 2479
{
    virDomainInfo info;
    virDomainPtr dom;
    virNodeInfo nodeinfo;
    virVcpuInfoPtr cpuinfo;
    unsigned char *cpumap;
    int ncpus;
    size_t cpumaplen;
    int ret = TRUE;

2480
    if (!vshConnectionUsability(ctl, ctl->conn))
2481 2482
        return FALSE;

J
Jim Meyering 已提交
2483
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
2484 2485 2486 2487
        return FALSE;

    if (virNodeGetInfo(ctl->conn, &nodeinfo) != 0) {
        virDomainFree(dom);
2488
        return FALSE;
2489 2490 2491 2492 2493 2494 2495
    }

    if (virDomainGetInfo(dom, &info) != 0) {
        virDomainFree(dom);
        return FALSE;
    }

2496
    cpuinfo = vshMalloc(ctl, sizeof(virVcpuInfo)*info.nrVirtCpu);
2497
    cpumaplen = VIR_CPU_MAPLEN(VIR_NODEINFO_MAXCPUS(nodeinfo));
2498
    cpumap = vshMalloc(ctl, info.nrVirtCpu * cpumaplen);
2499

2500 2501 2502
    if ((ncpus = virDomainGetVcpus(dom,
                                   cpuinfo, info.nrVirtCpu,
                                   cpumap, cpumaplen)) >= 0) {
2503
        int n;
2504 2505 2506 2507 2508
        for (n = 0 ; n < ncpus ; n++) {
            unsigned int m;
            vshPrint(ctl, "%-15s %d\n", _("VCPU:"), n);
            vshPrint(ctl, "%-15s %d\n", _("CPU:"), cpuinfo[n].cpu);
            vshPrint(ctl, "%-15s %s\n", _("State:"),
E
Eric Blake 已提交
2509
                     _(vshDomainVcpuStateToString(cpuinfo[n].state)));
2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525
            if (cpuinfo[n].cpuTime != 0) {
                double cpuUsed = cpuinfo[n].cpuTime;

                cpuUsed /= 1000000000.0;

                vshPrint(ctl, "%-15s %.1lfs\n", _("CPU time:"), cpuUsed);
            }
            vshPrint(ctl, "%-15s ", _("CPU Affinity:"));
            for (m = 0 ; m < VIR_NODEINFO_MAXCPUS(nodeinfo) ; m++) {
                vshPrint(ctl, "%c", VIR_CPU_USABLE(cpumap, cpumaplen, n, m) ? 'y' : '-');
            }
            vshPrint(ctl, "\n");
            if (n < (ncpus - 1)) {
                vshPrint(ctl, "\n");
            }
        }
2526
    } else {
2527
        if (info.state == VIR_DOMAIN_SHUTOFF) {
2528 2529
            vshError(ctl, "%s",
                     _("Domain shut off, virtual CPUs not present."));
2530
        }
2531 2532 2533
        ret = FALSE;
    }

2534 2535
    VIR_FREE(cpumap);
    VIR_FREE(cpuinfo);
2536 2537 2538 2539 2540 2541 2542
    virDomainFree(dom);
    return ret;
}

/*
 * "vcpupin" command
 */
2543
static const vshCmdInfo info_vcpupin[] = {
2544 2545
    {"help", N_("control domain vcpu affinity")},
    {"desc", N_("Pin domain VCPUs to host physical CPUs.")},
2546 2547 2548
    {NULL, NULL}
};

2549
static const vshCmdOptDef opts_vcpupin[] = {
2550
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
2551
    {"vcpu", VSH_OT_INT, VSH_OFLAG_REQ, N_("vcpu number")},
2552
    {"cpulist", VSH_OT_DATA, VSH_OFLAG_REQ, N_("host cpu number(s) (comma separated)")},
2553 2554 2555 2556
    {NULL, 0, 0, NULL}
};

static int
2557
cmdVcpupin(vshControl *ctl, const vshCmd *cmd)
2558 2559 2560 2561 2562 2563 2564 2565 2566 2567
{
    virDomainInfo info;
    virDomainPtr dom;
    virNodeInfo nodeinfo;
    int vcpu;
    char *cpulist;
    int ret = TRUE;
    int vcpufound = 0;
    unsigned char *cpumap;
    int cpumaplen;
2568 2569
    int i;
    enum { expect_num, expect_num_or_comma } state;
2570

2571
    if (!vshConnectionUsability(ctl, ctl->conn))
2572 2573
        return FALSE;

J
Jim Meyering 已提交
2574
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
2575 2576 2577 2578
        return FALSE;

    vcpu = vshCommandOptInt(cmd, "vcpu", &vcpufound);
    if (!vcpufound) {
2579
        vshError(ctl, "%s", _("vcpupin: Invalid or missing vCPU number."));
2580 2581 2582 2583 2584 2585 2586 2587
        virDomainFree(dom);
        return FALSE;
    }

    if (!(cpulist = vshCommandOptString(cmd, "cpulist", NULL))) {
        virDomainFree(dom);
        return FALSE;
    }
2588

2589 2590 2591 2592 2593 2594
    if (virNodeGetInfo(ctl->conn, &nodeinfo) != 0) {
        virDomainFree(dom);
        return FALSE;
    }

    if (virDomainGetInfo(dom, &info) != 0) {
2595
        vshError(ctl, "%s", _("vcpupin: failed to get domain informations."));
2596 2597 2598 2599 2600
        virDomainFree(dom);
        return FALSE;
    }

    if (vcpu >= info.nrVirtCpu) {
2601
        vshError(ctl, "%s", _("vcpupin: Invalid vCPU number."));
2602 2603 2604 2605
        virDomainFree(dom);
        return FALSE;
    }

2606 2607 2608 2609
    /* Check that the cpulist parameter is a comma-separated list of
     * numbers and give an intelligent error message if not.
     */
    if (cpulist[0] == '\0') {
2610
        vshError(ctl, "%s", _("cpulist: Invalid format. Empty string."));
2611 2612 2613 2614 2615 2616 2617 2618
        virDomainFree (dom);
        return FALSE;
    }

    state = expect_num;
    for (i = 0; cpulist[i]; i++) {
        switch (state) {
        case expect_num:
2619
          if (!c_isdigit (cpulist[i])) {
2620 2621 2622
                vshError(ctl, _("cpulist: %s: Invalid format. Expecting "
                                "digit at position %d (near '%c')."),
                         cpulist, i, cpulist[i]);
2623 2624 2625 2626 2627 2628 2629 2630
                virDomainFree (dom);
                return FALSE;
            }
            state = expect_num_or_comma;
            break;
        case expect_num_or_comma:
            if (cpulist[i] == ',')
                state = expect_num;
2631
            else if (!c_isdigit (cpulist[i])) {
2632 2633 2634
                vshError(ctl, _("cpulist: %s: Invalid format. Expecting "
                                "digit or comma at position %d (near '%c')."),
                         cpulist, i, cpulist[i]);
2635 2636 2637 2638 2639 2640
                virDomainFree (dom);
                return FALSE;
            }
        }
    }
    if (state == expect_num) {
2641 2642 2643
        vshError(ctl, _("cpulist: %s: Invalid format. Trailing comma "
                        "at position %d."),
                 cpulist, i);
2644 2645 2646 2647
        virDomainFree (dom);
        return FALSE;
    }

2648
    cpumaplen = VIR_CPU_MAPLEN(VIR_NODEINFO_MAXCPUS(nodeinfo));
2649
    cpumap = vshCalloc(ctl, 1, cpumaplen);
2650 2651 2652 2653 2654 2655

    do {
        unsigned int cpu = atoi(cpulist);

        if (cpu < VIR_NODEINFO_MAXCPUS(nodeinfo)) {
            VIR_USE_CPU(cpumap, cpu);
2656
        } else {
2657
            vshError(ctl, _("Physical CPU %d doesn't exist."), cpu);
2658
            VIR_FREE(cpumap);
2659 2660
            virDomainFree(dom);
            return FALSE;
2661
        }
2662
        cpulist = strchr(cpulist, ',');
2663 2664 2665 2666 2667 2668 2669 2670
        if (cpulist)
            cpulist++;
    } while (cpulist);

    if (virDomainPinVcpu(dom, vcpu, cpumap, cpumaplen) != 0) {
        ret = FALSE;
    }

2671
    VIR_FREE(cpumap);
2672 2673 2674 2675
    virDomainFree(dom);
    return ret;
}

2676 2677 2678
/*
 * "setvcpus" command
 */
2679
static const vshCmdInfo info_setvcpus[] = {
2680 2681
    {"help", N_("change number of virtual CPUs")},
    {"desc", N_("Change the number of virtual CPUs in the guest domain.")},
2682 2683 2684
    {NULL, NULL}
};

2685
static const vshCmdOptDef opts_setvcpus[] = {
2686
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
2687
    {"count", VSH_OT_INT, VSH_OFLAG_REQ, N_("number of virtual CPUs")},
E
Eric Blake 已提交
2688 2689 2690
    {"maximum", VSH_OT_BOOL, 0, N_("set maximum limit on next boot")},
    {"config", VSH_OT_BOOL, 0, N_("affect next boot")},
    {"live", VSH_OT_BOOL, 0, N_("affect running domain")},
2691 2692 2693 2694
    {NULL, 0, 0, NULL}
};

static int
2695
cmdSetvcpus(vshControl *ctl, const vshCmd *cmd)
2696 2697 2698 2699
{
    virDomainPtr dom;
    int count;
    int ret = TRUE;
E
Eric Blake 已提交
2700 2701 2702 2703 2704 2705
    int maximum = vshCommandOptBool(cmd, "maximum");
    int config = vshCommandOptBool(cmd, "config");
    int live = vshCommandOptBool(cmd, "live");
    int flags = ((maximum ? VIR_DOMAIN_VCPU_MAXIMUM : 0) |
                 (config ? VIR_DOMAIN_VCPU_CONFIG : 0) |
                 (live ? VIR_DOMAIN_VCPU_LIVE : 0));
2706

2707
    if (!vshConnectionUsability(ctl, ctl->conn))
2708 2709
        return FALSE;

J
Jim Meyering 已提交
2710
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
2711 2712 2713
        return FALSE;

    count = vshCommandOptInt(cmd, "count", &count);
2714

E
Eric Blake 已提交
2715 2716 2717 2718 2719 2720 2721 2722
    if (!flags) {
        if (virDomainSetVcpus(dom, count) != 0) {
            ret = FALSE;
        }
    } else {
        if (virDomainSetVcpusFlags(dom, count, flags) < 0) {
            ret = FALSE;
        }
2723 2724 2725 2726 2727 2728 2729 2730 2731
    }

    virDomainFree(dom);
    return ret;
}

/*
 * "setmemory" command
 */
2732
static const vshCmdInfo info_setmem[] = {
2733 2734
    {"help", N_("change memory allocation")},
    {"desc", N_("Change the current memory allocation in the guest domain.")},
2735 2736 2737
    {NULL, NULL}
};

2738
static const vshCmdOptDef opts_setmem[] = {
2739
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
2740
    {"kilobytes", VSH_OT_INT, VSH_OFLAG_REQ, N_("number of kilobytes of memory")},
2741 2742 2743 2744
    {NULL, 0, 0, NULL}
};

static int
2745
cmdSetmem(vshControl *ctl, const vshCmd *cmd)
2746 2747
{
    virDomainPtr dom;
2748
    virDomainInfo info;
2749
    unsigned long kilobytes;
2750 2751
    int ret = TRUE;

2752
    if (!vshConnectionUsability(ctl, ctl->conn))
2753 2754
        return FALSE;

J
Jim Meyering 已提交
2755
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
2756 2757
        return FALSE;

2758
    kilobytes = vshCommandOptUL(cmd, "kilobytes", NULL);
2759
    if (kilobytes <= 0) {
2760
        virDomainFree(dom);
2761
        vshError(ctl, _("Invalid value of %lu for memory size"), kilobytes);
2762 2763 2764
        return FALSE;
    }

2765 2766
    if (virDomainGetInfo(dom, &info) != 0) {
        virDomainFree(dom);
2767
        vshError(ctl, "%s", _("Unable to verify MaxMemorySize"));
2768 2769 2770 2771 2772
        return FALSE;
    }

    if (kilobytes > info.maxMem) {
        virDomainFree(dom);
2773
        vshError(ctl, _("Requested memory size %lu kb is larger than maximum of %lu kb"),
2774
                 kilobytes, info.maxMem);
2775 2776 2777
        return FALSE;
    }

2778
    if (virDomainSetMemory(dom, kilobytes) != 0) {
2779 2780 2781 2782 2783 2784 2785 2786 2787 2788
        ret = FALSE;
    }

    virDomainFree(dom);
    return ret;
}

/*
 * "setmaxmem" command
 */
2789
static const vshCmdInfo info_setmaxmem[] = {
2790 2791
    {"help", N_("change maximum memory limit")},
    {"desc", N_("Change the maximum memory allocation limit in the guest domain.")},
2792 2793 2794
    {NULL, NULL}
};

2795
static const vshCmdOptDef opts_setmaxmem[] = {
2796
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
2797
    {"kilobytes", VSH_OT_INT, VSH_OFLAG_REQ, N_("maximum memory limit in kilobytes")},
2798 2799 2800 2801
    {NULL, 0, 0, NULL}
};

static int
2802
cmdSetmaxmem(vshControl *ctl, const vshCmd *cmd)
2803 2804
{
    virDomainPtr dom;
2805
    virDomainInfo info;
2806
    int kilobytes;
2807 2808
    int ret = TRUE;

2809
    if (!vshConnectionUsability(ctl, ctl->conn))
2810 2811
        return FALSE;

J
Jim Meyering 已提交
2812
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
2813 2814
        return FALSE;

2815 2816
    kilobytes = vshCommandOptInt(cmd, "kilobytes", &kilobytes);
    if (kilobytes <= 0) {
2817
        virDomainFree(dom);
2818
        vshError(ctl, _("Invalid value of %d for memory size"), kilobytes);
2819 2820 2821
        return FALSE;
    }

2822 2823
    if (virDomainGetInfo(dom, &info) != 0) {
        virDomainFree(dom);
2824
        vshError(ctl, "%s", _("Unable to verify current MemorySize"));
2825 2826 2827
        return FALSE;
    }

2828 2829 2830 2831 2832 2833
    if (virDomainSetMaxMemory(dom, kilobytes) != 0) {
        vshError(ctl, "%s", _("Unable to change MaxMemorySize"));
        virDomainFree(dom);
        return FALSE;
    }

2834 2835
    if (kilobytes < info.memory) {
        if (virDomainSetMemory(dom, kilobytes) != 0) {
2836
            vshError(ctl, "%s", _("Unable to shrink current MemorySize"));
2837
            ret = FALSE;
2838 2839 2840
        }
    }

2841 2842 2843 2844
    virDomainFree(dom);
    return ret;
}

2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857
/*
 * "memtune" command
 */
static const vshCmdInfo info_memtune[] = {
    {"help", N_("Get/Set memory paramters")},
    {"desc", N_("Get/Set the current memory paramters for the guest domain.\n" \
                "    To get the memory parameters use following command: \n\n" \
                "    virsh # memtune <domain>")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_memtune[] = {
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
2858
    {"hard-limit", VSH_OT_INT, VSH_OFLAG_NONE,
2859
     N_("Max memory in kilobytes")},
2860
    {"soft-limit", VSH_OT_INT, VSH_OFLAG_NONE,
2861
     N_("Memory during contention in kilobytes")},
2862
    {"swap-hard-limit", VSH_OT_INT, VSH_OFLAG_NONE,
2863
     N_("Max swap in kilobytes")},
2864
    {"min-guarantee", VSH_OT_INT, VSH_OFLAG_NONE,
2865
     N_("Min guaranteed memory in kilobytes")},
2866 2867 2868 2869 2870 2871 2872
    {NULL, 0, 0, NULL}
};

static int
cmdMemtune(vshControl * ctl, const vshCmd * cmd)
{
    virDomainPtr dom;
E
Eric Blake 已提交
2873
    long long hard_limit, soft_limit, swap_hard_limit, min_guarantee;
2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885
    int nparams = 0;
    unsigned int i = 0;
    virMemoryParameterPtr params = NULL, temp = NULL;
    int ret = FALSE;

    if (!vshConnectionUsability(ctl, ctl->conn))
        return FALSE;

    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
        return FALSE;

    hard_limit =
2886
        vshCommandOptLongLong(cmd, "hard-limit", NULL);
2887 2888 2889 2890
    if (hard_limit)
        nparams++;

    soft_limit =
2891
        vshCommandOptLongLong(cmd, "soft-limit", NULL);
2892 2893 2894 2895
    if (soft_limit)
        nparams++;

    swap_hard_limit =
2896
        vshCommandOptLongLong(cmd, "swap-hard-limit", NULL);
2897 2898 2899
    if (swap_hard_limit)
        nparams++;

2900
    min_guarantee =
2901
        vshCommandOptLongLong(cmd, "min-guarantee", NULL);
2902 2903 2904
    if (min_guarantee)
        nparams++;

2905 2906
    if (nparams == 0) {
        /* get the number of memory parameters */
2907
        if (virDomainGetMemoryParameters(dom, NULL, &nparams, 0) != 0) {
2908 2909 2910 2911 2912
            vshError(ctl, "%s",
                     _("Unable to get number of memory parameters"));
            goto cleanup;
        }

2913 2914 2915 2916 2917 2918
        if (nparams == 0) {
            /* nothing to output */
            ret = TRUE;
            goto cleanup;
        }

2919
        /* now go get all the memory parameters */
E
Eric Blake 已提交
2920
        params = vshCalloc(ctl, nparams, sizeof(*params));
2921
        if (virDomainGetMemoryParameters(dom, params, &nparams, 0) != 0) {
2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952
            vshError(ctl, "%s", _("Unable to get memory parameters"));
            goto cleanup;
        }

        for (i = 0; i < nparams; i++) {
            switch (params[i].type) {
                case VIR_DOMAIN_MEMORY_PARAM_INT:
                    vshPrint(ctl, "%-15s: %d\n", params[i].field,
                             params[i].value.i);
                    break;
                case VIR_DOMAIN_MEMORY_PARAM_UINT:
                    vshPrint(ctl, "%-15s: %u\n", params[i].field,
                             params[i].value.ui);
                    break;
                case VIR_DOMAIN_MEMORY_PARAM_LLONG:
                    vshPrint(ctl, "%-15s: %lld\n", params[i].field,
                             params[i].value.l);
                    break;
                case VIR_DOMAIN_MEMORY_PARAM_ULLONG:
                    vshPrint(ctl, "%-15s: %llu\n", params[i].field,
                             params[i].value.ul);
                    break;
                case VIR_DOMAIN_MEMORY_PARAM_DOUBLE:
                    vshPrint(ctl, "%-15s: %f\n", params[i].field,
                             params[i].value.d);
                    break;
                case VIR_DOMAIN_MEMORY_PARAM_BOOLEAN:
                    vshPrint(ctl, "%-15s: %d\n", params[i].field,
                             params[i].value.b);
                    break;
                default:
2953
                    vshPrint(ctl, "unimplemented memory parameter type\n");
2954 2955 2956 2957 2958 2959
            }
        }

        ret = TRUE;
    } else {
        /* set the memory parameters */
E
Eric Blake 已提交
2960
        params = vshCalloc(ctl, nparams, sizeof(*params));
2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983

        for (i = 0; i < nparams; i++) {
            temp = &params[i];
            temp->type = VIR_DOMAIN_MEMORY_PARAM_ULLONG;

            /*
             * Some magic here, this is used to fill the params structure with
             * the valid arguments passed, after filling the particular
             * argument we purposely make them 0, so on the next pass it goes
             * to the next valid argument and so on.
             */
            if (soft_limit) {
                temp->value.ul = soft_limit;
                strncpy(temp->field, VIR_DOMAIN_MEMORY_SOFT_LIMIT,
                        sizeof(temp->field));
                soft_limit = 0;
            } else if (hard_limit) {
                temp->value.ul = hard_limit;
                strncpy(temp->field, VIR_DOMAIN_MEMORY_HARD_LIMIT,
                        sizeof(temp->field));
                hard_limit = 0;
            } else if (swap_hard_limit) {
                temp->value.ul = swap_hard_limit;
2984
                strncpy(temp->field, VIR_DOMAIN_MEMORY_SWAP_HARD_LIMIT,
2985 2986
                        sizeof(temp->field));
                swap_hard_limit = 0;
2987 2988 2989 2990 2991
            } else if (min_guarantee) {
                temp->value.ul = min_guarantee;
                strncpy(temp->field, VIR_DOMAIN_MEMORY_MIN_GUARANTEE,
                        sizeof(temp->field));
                min_guarantee = 0;
2992 2993 2994
            }
        }
        if (virDomainSetMemoryParameters(dom, params, nparams, 0) != 0)
2995
            vshError(ctl, "%s", _("Unable to change memory parameters"));
2996 2997 2998 2999 3000
        else
            ret = TRUE;
    }

  cleanup:
E
Eric Blake 已提交
3001
    VIR_FREE(params);
3002 3003 3004 3005
    virDomainFree(dom);
    return ret;
}

3006 3007 3008
/*
 * "nodeinfo" command
 */
3009
static const vshCmdInfo info_nodeinfo[] = {
3010 3011
    {"help", N_("node information")},
    {"desc", N_("Returns basic information about the node.")},
3012 3013 3014 3015
    {NULL, NULL}
};

static int
3016
cmdNodeinfo(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
3017 3018
{
    virNodeInfo info;
3019

3020
    if (!vshConnectionUsability(ctl, ctl->conn))
3021 3022 3023
        return FALSE;

    if (virNodeGetInfo(ctl->conn, &info) < 0) {
3024
        vshError(ctl, "%s", _("failed to get node information"));
3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035
        return FALSE;
    }
    vshPrint(ctl, "%-20s %s\n", _("CPU model:"), info.model);
    vshPrint(ctl, "%-20s %d\n", _("CPU(s):"), info.cpus);
    vshPrint(ctl, "%-20s %d MHz\n", _("CPU frequency:"), info.mhz);
    vshPrint(ctl, "%-20s %d\n", _("CPU socket(s):"), info.sockets);
    vshPrint(ctl, "%-20s %d\n", _("Core(s) per socket:"), info.cores);
    vshPrint(ctl, "%-20s %d\n", _("Thread(s) per core:"), info.threads);
    vshPrint(ctl, "%-20s %d\n", _("NUMA cell(s):"), info.nodes);
    vshPrint(ctl, "%-20s %lu kB\n", _("Memory size:"), info.memory);

3036 3037 3038
    return TRUE;
}

3039 3040 3041
/*
 * "capabilities" command
 */
3042
static const vshCmdInfo info_capabilities[] = {
3043 3044
    {"help", N_("capabilities")},
    {"desc", N_("Returns capabilities of hypervisor/driver.")},
3045 3046 3047 3048
    {NULL, NULL}
};

static int
3049
cmdCapabilities (vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
3050 3051 3052
{
    char *caps;

3053
    if (!vshConnectionUsability(ctl, ctl->conn))
3054 3055 3056
        return FALSE;

    if ((caps = virConnectGetCapabilities (ctl->conn)) == NULL) {
3057
        vshError(ctl, "%s", _("failed to get capabilities"));
3058 3059 3060
        return FALSE;
    }
    vshPrint (ctl, "%s\n", caps);
3061
    VIR_FREE(caps);
3062 3063 3064 3065

    return TRUE;
}

3066 3067 3068
/*
 * "dumpxml" command
 */
3069
static const vshCmdInfo info_dumpxml[] = {
3070 3071
    {"help", N_("domain information in XML")},
    {"desc", N_("Output the domain information as an XML dump to stdout.")},
3072
    {NULL, NULL}
3073 3074
};

3075
static const vshCmdOptDef opts_dumpxml[] = {
3076 3077 3078
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"inactive", VSH_OT_BOOL, 0, N_("show inactive defined XML")},
    {"security-info", VSH_OT_BOOL, 0, N_("include security sensitive information in XML dump")},
3079
    {"update-cpu", VSH_OT_BOOL, 0, N_("update guest CPU according to host CPU")},
3080
    {NULL, 0, 0, NULL}
3081 3082 3083
};

static int
3084
cmdDumpXML(vshControl *ctl, const vshCmd *cmd)
3085
{
3086
    virDomainPtr dom;
K
Karel Zak 已提交
3087
    int ret = TRUE;
3088
    char *dump;
3089 3090 3091
    int flags = 0;
    int inactive = vshCommandOptBool(cmd, "inactive");
    int secure = vshCommandOptBool(cmd, "security-info");
3092
    int update = vshCommandOptBool(cmd, "update-cpu");
3093 3094 3095 3096 3097

    if (inactive)
        flags |= VIR_DOMAIN_XML_INACTIVE;
    if (secure)
        flags |= VIR_DOMAIN_XML_SECURE;
3098 3099
    if (update)
        flags |= VIR_DOMAIN_XML_UPDATE_CPU;
3100

3101
    if (!vshConnectionUsability(ctl, ctl->conn))
3102 3103
        return FALSE;

J
Jim Meyering 已提交
3104
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
3105
        return FALSE;
3106

3107
    dump = virDomainGetXMLDesc(dom, flags);
3108
    if (dump != NULL) {
3109
        vshPrint(ctl, "%s", dump);
3110
        VIR_FREE(dump);
3111 3112 3113
    } else {
        ret = FALSE;
    }
3114

3115 3116 3117 3118
    virDomainFree(dom);
    return ret;
}

3119 3120 3121 3122
/*
 * "domxml-from-native" command
 */
static const vshCmdInfo info_domxmlfromnative[] = {
3123 3124
    {"help", N_("Convert native config to domain XML")},
    {"desc", N_("Convert native guest configuration format to domain XML format.")},
3125 3126 3127 3128
    {NULL, NULL}
};

static const vshCmdOptDef opts_domxmlfromnative[] = {
3129 3130
    {"format", VSH_OT_DATA, VSH_OFLAG_REQ, N_("source config data format")},
    {"config", VSH_OT_DATA, VSH_OFLAG_REQ, N_("config data file to import from")},
3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143
    {NULL, 0, 0, NULL}
};

static int
cmdDomXMLFromNative(vshControl *ctl, const vshCmd *cmd)
{
    int ret = TRUE;
    char *format;
    char *configFile;
    char *configData;
    char *xmlData;
    int flags = 0;

3144
    if (!vshConnectionUsability(ctl, ctl->conn))
3145 3146 3147 3148 3149
        return FALSE;

    format = vshCommandOptString(cmd, "format", NULL);
    configFile = vshCommandOptString(cmd, "config", NULL);

3150
    if (virFileReadAll(configFile, 1024*1024, &configData) < 0)
3151 3152 3153 3154
        return FALSE;

    xmlData = virConnectDomainXMLFromNative(ctl->conn, format, configData, flags);
    if (xmlData != NULL) {
3155
        vshPrint(ctl, "%s", xmlData);
3156
        VIR_FREE(xmlData);
3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167
    } else {
        ret = FALSE;
    }

    return ret;
}

/*
 * "domxml-to-native" command
 */
static const vshCmdInfo info_domxmltonative[] = {
3168 3169
    {"help", N_("Convert domain XML to native config")},
    {"desc", N_("Convert domain XML config to a native guest configuration format.")},
3170 3171 3172 3173
    {NULL, NULL}
};

static const vshCmdOptDef opts_domxmltonative[] = {
3174 3175
    {"format", VSH_OT_DATA, VSH_OFLAG_REQ, N_("target config data type format")},
    {"xml", VSH_OT_DATA, VSH_OFLAG_REQ, N_("xml data file to export from")},
3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188
    {NULL, 0, 0, NULL}
};

static int
cmdDomXMLToNative(vshControl *ctl, const vshCmd *cmd)
{
    int ret = TRUE;
    char *format;
    char *xmlFile;
    char *configData;
    char *xmlData;
    int flags = 0;

3189
    if (!vshConnectionUsability(ctl, ctl->conn))
3190 3191 3192 3193 3194
        return FALSE;

    format = vshCommandOptString(cmd, "format", NULL);
    xmlFile = vshCommandOptString(cmd, "xml", NULL);

3195
    if (virFileReadAll(xmlFile, 1024*1024, &xmlData) < 0)
3196 3197 3198 3199
        return FALSE;

    configData = virConnectDomainXMLToNative(ctl->conn, format, xmlData, flags);
    if (configData != NULL) {
3200
        vshPrint(ctl, "%s", configData);
3201
        VIR_FREE(configData);
3202 3203 3204 3205 3206 3207 3208
    } else {
        ret = FALSE;
    }

    return ret;
}

K
Karel Zak 已提交
3209
/*
K
Karel Zak 已提交
3210
 * "domname" command
K
Karel Zak 已提交
3211
 */
3212
static const vshCmdInfo info_domname[] = {
3213
    {"help", N_("convert a domain id or UUID to domain name")},
3214
    {"desc", ""},
3215
    {NULL, NULL}
K
Karel Zak 已提交
3216 3217
};

3218
static const vshCmdOptDef opts_domname[] = {
3219
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain id or uuid")},
3220
    {NULL, 0, 0, NULL}
K
Karel Zak 已提交
3221 3222 3223
};

static int
3224
cmdDomname(vshControl *ctl, const vshCmd *cmd)
3225
{
K
Karel Zak 已提交
3226 3227
    virDomainPtr dom;

3228
    if (!vshConnectionUsability(ctl, ctl->conn))
K
Karel Zak 已提交
3229
        return FALSE;
J
Jim Meyering 已提交
3230
    if (!(dom = vshCommandOptDomainBy(ctl, cmd, NULL,
3231
                                      VSH_BYID|VSH_BYUUID)))
K
Karel Zak 已提交
3232
        return FALSE;
3233

K
Karel Zak 已提交
3234 3235
    vshPrint(ctl, "%s\n", virDomainGetName(dom));
    virDomainFree(dom);
K
Karel Zak 已提交
3236 3237 3238 3239
    return TRUE;
}

/*
K
Karel Zak 已提交
3240
 * "domid" command
K
Karel Zak 已提交
3241
 */
3242
static const vshCmdInfo info_domid[] = {
3243
    {"help", N_("convert a domain name or UUID to domain id")},
3244
    {"desc", ""},
3245
    {NULL, NULL}
K
Karel Zak 已提交
3246 3247
};

3248
static const vshCmdOptDef opts_domid[] = {
3249
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name or uuid")},
3250
    {NULL, 0, 0, NULL}
K
Karel Zak 已提交
3251 3252 3253
};

static int
3254
cmdDomid(vshControl *ctl, const vshCmd *cmd)
3255
{
3256
    virDomainPtr dom;
3257
    unsigned int id;
K
Karel Zak 已提交
3258

3259
    if (!vshConnectionUsability(ctl, ctl->conn))
K
Karel Zak 已提交
3260
        return FALSE;
J
Jim Meyering 已提交
3261
    if (!(dom = vshCommandOptDomainBy(ctl, cmd, NULL,
3262
                                      VSH_BYNAME|VSH_BYUUID)))
K
Karel Zak 已提交
3263
        return FALSE;
3264

3265 3266
    id = virDomainGetID(dom);
    if (id == ((unsigned int)-1))
3267
        vshPrint(ctl, "%s\n", "-");
3268
    else
3269
        vshPrint(ctl, "%d\n", id);
K
Karel Zak 已提交
3270 3271 3272
    virDomainFree(dom);
    return TRUE;
}
3273

K
Karel Zak 已提交
3274 3275 3276
/*
 * "domuuid" command
 */
3277
static const vshCmdInfo info_domuuid[] = {
3278
    {"help", N_("convert a domain name or id to domain UUID")},
3279
    {"desc", ""},
K
Karel Zak 已提交
3280 3281 3282
    {NULL, NULL}
};

3283
static const vshCmdOptDef opts_domuuid[] = {
3284
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain id or name")},
K
Karel Zak 已提交
3285 3286 3287 3288
    {NULL, 0, 0, NULL}
};

static int
3289
cmdDomuuid(vshControl *ctl, const vshCmd *cmd)
K
Karel Zak 已提交
3290 3291
{
    virDomainPtr dom;
3292
    char uuid[VIR_UUID_STRING_BUFLEN];
K
Karel Zak 已提交
3293

3294
    if (!vshConnectionUsability(ctl, ctl->conn))
K
Karel Zak 已提交
3295
        return FALSE;
J
Jim Meyering 已提交
3296
    if (!(dom = vshCommandOptDomainBy(ctl, cmd, NULL,
3297
                                      VSH_BYNAME|VSH_BYID)))
K
Karel Zak 已提交
3298
        return FALSE;
3299

K
Karel Zak 已提交
3300 3301 3302
    if (virDomainGetUUIDString(dom, uuid) != -1)
        vshPrint(ctl, "%s\n", uuid);
    else
3303
        vshError(ctl, "%s", _("failed to get domain UUID"));
3304

3305
    virDomainFree(dom);
K
Karel Zak 已提交
3306 3307 3308
    return TRUE;
}

3309 3310 3311
/*
 * "migrate" command
 */
3312
static const vshCmdInfo info_migrate[] = {
3313 3314
    {"help", N_("migrate domain to another host")},
    {"desc", N_("Migrate domain to another host.  Add --live for live migration.")},
3315 3316 3317
    {NULL, NULL}
};

3318
static const vshCmdOptDef opts_migrate[] = {
3319 3320 3321 3322 3323 3324 3325
    {"live", VSH_OT_BOOL, 0, N_("live migration")},
    {"p2p", VSH_OT_BOOL, 0, N_("peer-2-peer migration")},
    {"direct", VSH_OT_BOOL, 0, N_("direct migration")},
    {"tunnelled", VSH_OT_BOOL, 0, N_("tunnelled migration")},
    {"persistent", VSH_OT_BOOL, 0, N_("persist VM on destination")},
    {"undefinesource", VSH_OT_BOOL, 0, N_("undefine VM on source")},
    {"suspend", VSH_OT_BOOL, 0, N_("do not restart the domain on the destination host")},
3326 3327
    {"copy-storage-all", VSH_OT_BOOL, 0, N_("migration with non-shared storage with full disk copy")},
    {"copy-storage-inc", VSH_OT_BOOL, 0, N_("migration with non-shared storage with incremental copy (same base image shared between source and destination)")},
3328 3329 3330 3331
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"desturi", VSH_OT_DATA, VSH_OFLAG_REQ, N_("connection URI of the destination host")},
    {"migrateuri", VSH_OT_DATA, 0, N_("migration URI, usually can be omitted")},
    {"dname", VSH_OT_DATA, 0, N_("rename to new name during migration (if supported)")},
3332 3333 3334 3335
    {NULL, 0, 0, NULL}
};

static int
3336
cmdMigrate (vshControl *ctl, const vshCmd *cmd)
3337 3338 3339 3340
{
    virDomainPtr dom = NULL;
    const char *desturi;
    const char *migrateuri;
D
Daniel Veillard 已提交
3341
    const char *dname;
3342 3343
    int flags = 0, found, ret = FALSE;

3344
    if (!vshConnectionUsability (ctl, ctl->conn))
3345 3346
        return FALSE;

J
Jim Meyering 已提交
3347
    if (!(dom = vshCommandOptDomain (ctl, cmd, NULL)))
3348 3349 3350
        return FALSE;

    desturi = vshCommandOptString (cmd, "desturi", &found);
3351
    if (!found)
3352 3353
        goto done;

3354
    migrateuri = vshCommandOptString (cmd, "migrateuri", NULL);
3355

3356
    dname = vshCommandOptString (cmd, "dname", NULL);
D
Daniel Veillard 已提交
3357

3358 3359
    if (vshCommandOptBool (cmd, "live"))
        flags |= VIR_MIGRATE_LIVE;
3360 3361
    if (vshCommandOptBool (cmd, "p2p"))
        flags |= VIR_MIGRATE_PEER2PEER;
C
Chris Lalancette 已提交
3362 3363 3364
    if (vshCommandOptBool (cmd, "tunnelled"))
        flags |= VIR_MIGRATE_TUNNELLED;

C
Chris Lalancette 已提交
3365 3366 3367 3368 3369
    if (vshCommandOptBool (cmd, "persistent"))
        flags |= VIR_MIGRATE_PERSIST_DEST;
    if (vshCommandOptBool (cmd, "undefinesource"))
        flags |= VIR_MIGRATE_UNDEFINE_SOURCE;

3370 3371 3372
    if (vshCommandOptBool (cmd, "suspend"))
        flags |= VIR_MIGRATE_PAUSED;

3373 3374 3375 3376 3377 3378
    if (vshCommandOptBool (cmd, "copy-storage-all"))
        flags |= VIR_MIGRATE_NON_SHARED_DISK;

    if (vshCommandOptBool (cmd, "copy-storage-inc"))
        flags |= VIR_MIGRATE_NON_SHARED_INC;

3379 3380 3381 3382
    if ((flags & VIR_MIGRATE_PEER2PEER) ||
        vshCommandOptBool (cmd, "direct")) {
        /* For peer2peer migration or direct migration we only expect one URI
         * a libvirt URI, or a hypervisor specific URI. */
3383

3384
        if (migrateuri != NULL) {
J
Jim Fehlig 已提交
3385
            vshError(ctl, "%s", _("migrate: Unexpected migrateuri for peer2peer/direct migration"));
3386 3387
            goto done;
        }
3388

3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405
        if (virDomainMigrateToURI (dom, desturi, flags, dname, 0) == 0)
            ret = TRUE;
    } else {
        /* For traditional live migration, connect to the destination host directly. */
        virConnectPtr dconn = NULL;
        virDomainPtr ddom = NULL;

        dconn = virConnectOpenAuth (desturi, virConnectAuthPtrDefault, 0);
        if (!dconn) goto done;

        ddom = virDomainMigrate (dom, dconn, flags, dname, migrateuri, 0);
        if (ddom) {
            virDomainFree(ddom);
            ret = TRUE;
        }
        virConnectClose (dconn);
    }
3406 3407 3408 3409 3410 3411

 done:
    if (dom) virDomainFree (dom);
    return ret;
}

3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422
/*
 * "migrate-setmaxdowntime" command
 */
static const vshCmdInfo info_migrate_setmaxdowntime[] = {
    {"help", N_("set maximum tolerable downtime")},
    {"desc", N_("Set maximum tolerable downtime of a domain which is being live-migrated to another host.")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_migrate_setmaxdowntime[] = {
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
3423
    {"downtime", VSH_OT_INT, VSH_OFLAG_REQ, N_("maximum tolerable downtime (in milliseconds) for migration")},
3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434
    {NULL, 0, 0, NULL}
};

static int
cmdMigrateSetMaxDowntime(vshControl *ctl, const vshCmd *cmd)
{
    virDomainPtr dom = NULL;
    long long downtime;
    int found;
    int ret = FALSE;

3435
    if (!vshConnectionUsability(ctl, ctl->conn))
3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456
        return FALSE;

    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
        return FALSE;

    downtime = vshCommandOptLongLong(cmd, "downtime", &found);
    if (!found || downtime < 1) {
        vshError(ctl, "%s", _("migrate: Invalid downtime"));
        goto done;
    }

    if (virDomainMigrateSetMaxDowntime(dom, downtime, 0))
        goto done;

    ret = TRUE;

done:
    virDomainFree(dom);
    return ret;
}

3457 3458 3459
/*
 * "net-autostart" command
 */
3460
static const vshCmdInfo info_network_autostart[] = {
3461
    {"help", N_("autostart a network")},
3462
    {"desc",
3463
     N_("Configure a network to be automatically started at boot.")},
3464 3465 3466
    {NULL, NULL}
};

3467
static const vshCmdOptDef opts_network_autostart[] = {
3468 3469
    {"network",  VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name or uuid")},
    {"disable", VSH_OT_BOOL, 0, N_("disable autostarting")},
3470 3471 3472 3473
    {NULL, 0, 0, NULL}
};

static int
3474
cmdNetworkAutostart(vshControl *ctl, const vshCmd *cmd)
3475 3476 3477 3478 3479
{
    virNetworkPtr network;
    char *name;
    int autostart;

3480
    if (!vshConnectionUsability(ctl, ctl->conn))
3481 3482
        return FALSE;

J
Jim Meyering 已提交
3483
    if (!(network = vshCommandOptNetwork(ctl, cmd, &name)))
3484 3485 3486 3487 3488
        return FALSE;

    autostart = !vshCommandOptBool(cmd, "disable");

    if (virNetworkSetAutostart(network, autostart) < 0) {
3489
        if (autostart)
3490
            vshError(ctl, _("failed to mark network %s as autostarted"), name);
3491
        else
3492
            vshError(ctl, _("failed to unmark network %s as autostarted"), name);
3493 3494 3495 3496
        virNetworkFree(network);
        return FALSE;
    }

3497
    if (autostart)
3498
        vshPrint(ctl, _("Network %s marked as autostarted\n"), name);
3499
    else
3500
        vshPrint(ctl, _("Network %s unmarked as autostarted\n"), name);
3501

L
Laine Stump 已提交
3502
    virNetworkFree(network);
3503 3504
    return TRUE;
}
K
Karel Zak 已提交
3505

3506 3507 3508
/*
 * "net-create" command
 */
3509
static const vshCmdInfo info_network_create[] = {
3510 3511
    {"help", N_("create a network from an XML file")},
    {"desc", N_("Create a network.")},
3512 3513 3514
    {NULL, NULL}
};

3515
static const vshCmdOptDef opts_network_create[] = {
3516
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ, N_("file containing an XML network description")},
3517 3518 3519 3520
    {NULL, 0, 0, NULL}
};

static int
3521
cmdNetworkCreate(vshControl *ctl, const vshCmd *cmd)
3522 3523 3524 3525 3526
{
    virNetworkPtr network;
    char *from;
    int found;
    int ret = TRUE;
3527
    char *buffer;
3528

3529
    if (!vshConnectionUsability(ctl, ctl->conn))
3530 3531 3532 3533 3534 3535
        return FALSE;

    from = vshCommandOptString(cmd, "file", &found);
    if (!found)
        return FALSE;

3536 3537
    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0)
        return FALSE;
3538 3539

    network = virNetworkCreateXML(ctl->conn, buffer);
3540
    VIR_FREE(buffer);
3541

3542 3543 3544
    if (network != NULL) {
        vshPrint(ctl, _("Network %s created from %s\n"),
                 virNetworkGetName(network), from);
L
Laine Stump 已提交
3545
        virNetworkFree(network);
3546
    } else {
3547
        vshError(ctl, _("Failed to create network from %s"), from);
3548 3549 3550 3551 3552 3553 3554 3555 3556
        ret = FALSE;
    }
    return ret;
}


/*
 * "net-define" command
 */
3557
static const vshCmdInfo info_network_define[] = {
3558 3559
    {"help", N_("define (but don't start) a network from an XML file")},
    {"desc", N_("Define a network.")},
3560 3561 3562
    {NULL, NULL}
};

3563
static const vshCmdOptDef opts_network_define[] = {
3564
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ, N_("file containing an XML network description")},
3565 3566 3567 3568
    {NULL, 0, 0, NULL}
};

static int
3569
cmdNetworkDefine(vshControl *ctl, const vshCmd *cmd)
3570 3571 3572 3573 3574
{
    virNetworkPtr network;
    char *from;
    int found;
    int ret = TRUE;
3575
    char *buffer;
3576

3577
    if (!vshConnectionUsability(ctl, ctl->conn))
3578 3579 3580 3581 3582 3583
        return FALSE;

    from = vshCommandOptString(cmd, "file", &found);
    if (!found)
        return FALSE;

3584 3585
    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0)
        return FALSE;
3586 3587

    network = virNetworkDefineXML(ctl->conn, buffer);
3588
    VIR_FREE(buffer);
3589

3590 3591 3592
    if (network != NULL) {
        vshPrint(ctl, _("Network %s defined from %s\n"),
                 virNetworkGetName(network), from);
L
Laine Stump 已提交
3593
        virNetworkFree(network);
3594
    } else {
3595
        vshError(ctl, _("Failed to define network from %s"), from);
3596 3597 3598 3599 3600 3601 3602 3603 3604
        ret = FALSE;
    }
    return ret;
}


/*
 * "net-destroy" command
 */
3605
static const vshCmdInfo info_network_destroy[] = {
3606 3607
    {"help", N_("destroy a network")},
    {"desc", N_("Destroy a given network.")},
3608 3609 3610
    {NULL, NULL}
};

3611
static const vshCmdOptDef opts_network_destroy[] = {
3612
    {"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name or uuid")},
3613 3614 3615 3616
    {NULL, 0, 0, NULL}
};

static int
3617
cmdNetworkDestroy(vshControl *ctl, const vshCmd *cmd)
3618 3619 3620 3621 3622
{
    virNetworkPtr network;
    int ret = TRUE;
    char *name;

3623
    if (!vshConnectionUsability(ctl, ctl->conn))
3624 3625
        return FALSE;

J
Jim Meyering 已提交
3626
    if (!(network = vshCommandOptNetwork(ctl, cmd, &name)))
3627 3628 3629 3630 3631
        return FALSE;

    if (virNetworkDestroy(network) == 0) {
        vshPrint(ctl, _("Network %s destroyed\n"), name);
    } else {
3632
        vshError(ctl, _("Failed to destroy network %s"), name);
3633 3634 3635
        ret = FALSE;
    }

3636
    virNetworkFree(network);
3637 3638 3639 3640 3641 3642 3643
    return ret;
}


/*
 * "net-dumpxml" command
 */
3644
static const vshCmdInfo info_network_dumpxml[] = {
3645 3646
    {"help", N_("network information in XML")},
    {"desc", N_("Output the network information as an XML dump to stdout.")},
3647 3648 3649
    {NULL, NULL}
};

3650
static const vshCmdOptDef opts_network_dumpxml[] = {
3651
    {"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name or uuid")},
3652 3653 3654 3655
    {NULL, 0, 0, NULL}
};

static int
3656
cmdNetworkDumpXML(vshControl *ctl, const vshCmd *cmd)
3657 3658 3659 3660 3661
{
    virNetworkPtr network;
    int ret = TRUE;
    char *dump;

3662
    if (!vshConnectionUsability(ctl, ctl->conn))
3663 3664
        return FALSE;

J
Jim Meyering 已提交
3665
    if (!(network = vshCommandOptNetwork(ctl, cmd, NULL)))
3666 3667 3668 3669
        return FALSE;

    dump = virNetworkGetXMLDesc(network, 0);
    if (dump != NULL) {
3670
        vshPrint(ctl, "%s", dump);
3671
        VIR_FREE(dump);
3672 3673 3674 3675 3676 3677 3678 3679 3680
    } else {
        ret = FALSE;
    }

    virNetworkFree(network);
    return ret;
}


3681 3682 3683 3684
/*
 * "iface-edit" command
 */
static const vshCmdInfo info_interface_edit[] = {
3685 3686
    {"help", N_("edit XML configuration for a physical host interface")},
    {"desc", N_("Edit the XML configuration for a physical host interface.")},
3687 3688 3689 3690
    {NULL, NULL}
};

static const vshCmdOptDef opts_interface_edit[] = {
3691
    {"interface", VSH_OT_DATA, VSH_OFLAG_REQ, N_("interface name or MAC address")},
3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703
    {NULL, 0, 0, NULL}
};

static int
cmdInterfaceEdit (vshControl *ctl, const vshCmd *cmd)
{
    int ret = FALSE;
    virInterfacePtr iface = NULL;
    char *tmp = NULL;
    char *doc = NULL;
    char *doc_edited = NULL;
    char *doc_reread = NULL;
3704
    int flags = VIR_INTERFACE_XML_INACTIVE;
3705

3706
    if (!vshConnectionUsability(ctl, ctl->conn))
3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745
        goto cleanup;

    iface = vshCommandOptInterface (ctl, cmd, NULL);
    if (iface == NULL)
        goto cleanup;

    /* Get the XML configuration of the interface. */
    doc = virInterfaceGetXMLDesc (iface, flags);
    if (!doc)
        goto cleanup;

    /* Create and open the temporary file. */
    tmp = editWriteToTempFile (ctl, doc);
    if (!tmp) goto cleanup;

    /* Start the editor. */
    if (editFile (ctl, tmp) == -1) goto cleanup;

    /* Read back the edited file. */
    doc_edited = editReadBackFile (ctl, tmp);
    if (!doc_edited) goto cleanup;

    /* Compare original XML with edited.  Has it changed at all? */
    if (STREQ (doc, doc_edited)) {
        vshPrint (ctl, _("Interface %s XML configuration not changed.\n"),
                  virInterfaceGetName (iface));
        ret = TRUE;
        goto cleanup;
    }

    /* Now re-read the interface XML.  Did someone else change it while
     * it was being edited?  This also catches problems such as us
     * losing a connection or the interface going away.
     */
    doc_reread = virInterfaceGetXMLDesc (iface, flags);
    if (!doc_reread)
        goto cleanup;

    if (STRNEQ (doc, doc_reread)) {
3746 3747
        vshError(ctl, "%s",
                 _("ERROR: the XML configuration was changed by another user"));
3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765
        goto cleanup;
    }

    /* Everything checks out, so redefine the interface. */
    virInterfaceFree (iface);
    iface = virInterfaceDefineXML (ctl->conn, doc_edited, 0);
    if (!iface)
        goto cleanup;

    vshPrint (ctl, _("Interface %s XML configuration edited.\n"),
              virInterfaceGetName(iface));

    ret = TRUE;

cleanup:
    if (iface)
        virInterfaceFree (iface);

3766 3767 3768
    VIR_FREE(doc);
    VIR_FREE(doc_edited);
    VIR_FREE(doc_reread);
3769 3770 3771

    if (tmp) {
        unlink (tmp);
3772
        VIR_FREE(tmp);
3773 3774 3775 3776 3777
    }

    return ret;
}

3778 3779 3780
/*
 * "net-list" command
 */
3781
static const vshCmdInfo info_network_list[] = {
3782 3783
    {"help", N_("list networks")},
    {"desc", N_("Returns list of networks.")},
3784 3785 3786
    {NULL, NULL}
};

3787
static const vshCmdOptDef opts_network_list[] = {
3788 3789
    {"inactive", VSH_OT_BOOL, 0, N_("list inactive networks")},
    {"all", VSH_OT_BOOL, 0, N_("list inactive & active networks")},
3790 3791 3792 3793
    {NULL, 0, 0, NULL}
};

static int
3794
cmdNetworkList(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
3795 3796 3797 3798 3799
{
    int inactive = vshCommandOptBool(cmd, "inactive");
    int all = vshCommandOptBool(cmd, "all");
    int active = !inactive || all ? 1 : 0;
    int maxactive = 0, maxinactive = 0, i;
3800
    char **activeNames = NULL, **inactiveNames = NULL;
3801 3802
    inactive |= all;

3803
    if (!vshConnectionUsability(ctl, ctl->conn))
3804 3805 3806
        return FALSE;

    if (active) {
3807 3808
        maxactive = virConnectNumOfNetworks(ctl->conn);
        if (maxactive < 0) {
3809
            vshError(ctl, "%s", _("Failed to list active networks"));
3810
            return FALSE;
3811
        }
3812
        if (maxactive) {
3813
            activeNames = vshMalloc(ctl, sizeof(char *) * maxactive);
3814

3815
            if ((maxactive = virConnectListNetworks(ctl->conn, activeNames,
3816
                                                    maxactive)) < 0) {
3817
                vshError(ctl, "%s", _("Failed to list active networks"));
3818
                VIR_FREE(activeNames);
3819 3820
                return FALSE;
            }
3821

3822
            qsort(&activeNames[0], maxactive, sizeof(char *), namesorter);
3823
        }
3824 3825
    }
    if (inactive) {
3826 3827
        maxinactive = virConnectNumOfDefinedNetworks(ctl->conn);
        if (maxinactive < 0) {
3828
            vshError(ctl, "%s", _("Failed to list inactive networks"));
3829
            VIR_FREE(activeNames);
3830
            return FALSE;
3831
        }
3832 3833 3834
        if (maxinactive) {
            inactiveNames = vshMalloc(ctl, sizeof(char *) * maxinactive);

3835 3836 3837
            if ((maxinactive =
                     virConnectListDefinedNetworks(ctl->conn, inactiveNames,
                                                   maxinactive)) < 0) {
3838
                vshError(ctl, "%s", _("Failed to list inactive networks"));
3839 3840
                VIR_FREE(activeNames);
                VIR_FREE(inactiveNames);
3841 3842
                return FALSE;
            }
3843

3844 3845
            qsort(&inactiveNames[0], maxinactive, sizeof(char*), namesorter);
        }
3846
    }
3847 3848
    vshPrintExtra(ctl, "%-20s %-10s %s\n", _("Name"), _("State"),
                  _("Autostart"));
3849
    vshPrintExtra(ctl, "-----------------------------------------\n");
3850 3851

    for (i = 0; i < maxactive; i++) {
3852 3853
        virNetworkPtr network =
            virNetworkLookupByName(ctl->conn, activeNames[i]);
3854 3855
        const char *autostartStr;
        int autostart = 0;
3856 3857 3858

        /* this kind of work with networks is not atomic operation */
        if (!network) {
3859
            VIR_FREE(activeNames[i]);
3860
            continue;
3861
        }
3862

3863 3864 3865
        if (virNetworkGetAutostart(network, &autostart) < 0)
            autostartStr = _("no autostart");
        else
3866
            autostartStr = autostart ? _("yes") : _("no");
3867 3868 3869 3870 3871

        vshPrint(ctl, "%-20s %-10s %-10s\n",
                 virNetworkGetName(network),
                 _("active"),
                 autostartStr);
3872
        virNetworkFree(network);
3873
        VIR_FREE(activeNames[i]);
3874 3875 3876
    }
    for (i = 0; i < maxinactive; i++) {
        virNetworkPtr network = virNetworkLookupByName(ctl->conn, inactiveNames[i]);
3877 3878
        const char *autostartStr;
        int autostart = 0;
3879 3880 3881

        /* this kind of work with networks is not atomic operation */
        if (!network) {
3882
            VIR_FREE(inactiveNames[i]);
3883
            continue;
3884
        }
3885

3886 3887 3888
        if (virNetworkGetAutostart(network, &autostart) < 0)
            autostartStr = _("no autostart");
        else
3889
            autostartStr = autostart ? _("yes") : _("no");
3890

3891
        vshPrint(ctl, "%-20s %-10s %-10s\n",
3892 3893 3894
                 inactiveNames[i],
                 _("inactive"),
                 autostartStr);
3895 3896

        virNetworkFree(network);
3897
        VIR_FREE(inactiveNames[i]);
3898
    }
3899 3900
    VIR_FREE(activeNames);
    VIR_FREE(inactiveNames);
3901 3902 3903 3904 3905 3906 3907
    return TRUE;
}


/*
 * "net-name" command
 */
3908
static const vshCmdInfo info_network_name[] = {
3909
    {"help", N_("convert a network UUID to network name")},
3910
    {"desc", ""},
3911 3912 3913
    {NULL, NULL}
};

3914
static const vshCmdOptDef opts_network_name[] = {
3915
    {"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network uuid")},
3916 3917 3918 3919
    {NULL, 0, 0, NULL}
};

static int
3920
cmdNetworkName(vshControl *ctl, const vshCmd *cmd)
3921 3922 3923
{
    virNetworkPtr network;

3924
    if (!vshConnectionUsability(ctl, ctl->conn))
3925
        return FALSE;
J
Jim Meyering 已提交
3926
    if (!(network = vshCommandOptNetworkBy(ctl, cmd, NULL,
3927
                                           VSH_BYUUID)))
3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938
        return FALSE;

    vshPrint(ctl, "%s\n", virNetworkGetName(network));
    virNetworkFree(network);
    return TRUE;
}


/*
 * "net-start" command
 */
3939
static const vshCmdInfo info_network_start[] = {
3940 3941
    {"help", N_("start a (previously defined) inactive network")},
    {"desc", N_("Start a network.")},
3942 3943 3944
    {NULL, NULL}
};

3945
static const vshCmdOptDef opts_network_start[] = {
3946
    {"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("name of the inactive network")},
3947 3948 3949 3950
    {NULL, 0, 0, NULL}
};

static int
3951
cmdNetworkStart(vshControl *ctl, const vshCmd *cmd)
3952 3953 3954 3955
{
    virNetworkPtr network;
    int ret = TRUE;

3956
    if (!vshConnectionUsability(ctl, ctl->conn))
3957 3958
        return FALSE;

J
Jim Meyering 已提交
3959
    if (!(network = vshCommandOptNetworkBy(ctl, cmd, NULL, VSH_BYNAME)))
3960
         return FALSE;
3961 3962 3963

    if (virNetworkCreate(network) == 0) {
        vshPrint(ctl, _("Network %s started\n"),
3964
                 virNetworkGetName(network));
3965
    } else {
3966
        vshError(ctl, _("Failed to start network %s"),
3967
                 virNetworkGetName(network));
3968 3969
        ret = FALSE;
    }
L
Laine Stump 已提交
3970
    virNetworkFree(network);
3971 3972 3973 3974 3975 3976 3977
    return ret;
}


/*
 * "net-undefine" command
 */
3978
static const vshCmdInfo info_network_undefine[] = {
3979 3980
    {"help", N_("undefine an inactive network")},
    {"desc", N_("Undefine the configuration for an inactive network.")},
3981 3982 3983
    {NULL, NULL}
};

3984
static const vshCmdOptDef opts_network_undefine[] = {
3985
    {"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name or uuid")},
3986 3987 3988 3989
    {NULL, 0, 0, NULL}
};

static int
3990
cmdNetworkUndefine(vshControl *ctl, const vshCmd *cmd)
3991 3992 3993 3994 3995
{
    virNetworkPtr network;
    int ret = TRUE;
    char *name;

3996
    if (!vshConnectionUsability(ctl, ctl->conn))
3997 3998
        return FALSE;

J
Jim Meyering 已提交
3999
    if (!(network = vshCommandOptNetwork(ctl, cmd, &name)))
4000 4001 4002 4003 4004
        return FALSE;

    if (virNetworkUndefine(network) == 0) {
        vshPrint(ctl, _("Network %s has been undefined\n"), name);
    } else {
4005
        vshError(ctl, _("Failed to undefine network %s"), name);
4006 4007 4008
        ret = FALSE;
    }

L
Laine Stump 已提交
4009
    virNetworkFree(network);
4010 4011 4012 4013 4014 4015 4016
    return ret;
}


/*
 * "net-uuid" command
 */
4017
static const vshCmdInfo info_network_uuid[] = {
4018
    {"help", N_("convert a network name to network UUID")},
4019
    {"desc", ""},
4020 4021 4022
    {NULL, NULL}
};

4023
static const vshCmdOptDef opts_network_uuid[] = {
4024
    {"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name")},
4025 4026 4027 4028
    {NULL, 0, 0, NULL}
};

static int
4029
cmdNetworkUuid(vshControl *ctl, const vshCmd *cmd)
4030 4031 4032 4033
{
    virNetworkPtr network;
    char uuid[VIR_UUID_STRING_BUFLEN];

4034
    if (!vshConnectionUsability(ctl, ctl->conn))
4035 4036
        return FALSE;

J
Jim Meyering 已提交
4037
    if (!(network = vshCommandOptNetworkBy(ctl, cmd, NULL,
4038
                                           VSH_BYNAME)))
4039 4040 4041 4042 4043
        return FALSE;

    if (virNetworkGetUUIDString(network, uuid) != -1)
        vshPrint(ctl, "%s\n", uuid);
    else
4044
        vshError(ctl, "%s", _("failed to get network UUID"));
4045

L
Laine Stump 已提交
4046
    virNetworkFree(network);
4047 4048 4049 4050
    return TRUE;
}


4051 4052 4053 4054 4055
/**************************************************************************/
/*
 * "iface-list" command
 */
static const vshCmdInfo info_interface_list[] = {
4056 4057
    {"help", N_("list physical host interfaces")},
    {"desc", N_("Returns list of physical host interfaces.")},
4058 4059 4060 4061
    {NULL, NULL}
};

static const vshCmdOptDef opts_interface_list[] = {
4062 4063
    {"inactive", VSH_OT_BOOL, 0, N_("list inactive interfaces")},
    {"all", VSH_OT_BOOL, 0, N_("list inactive & active interfaces")},
4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075
    {NULL, 0, 0, NULL}
};
static int
cmdInterfaceList(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
{
    int inactive = vshCommandOptBool(cmd, "inactive");
    int all = vshCommandOptBool(cmd, "all");
    int active = !inactive || all ? 1 : 0;
    int maxactive = 0, maxinactive = 0, i;
    char **activeNames = NULL, **inactiveNames = NULL;
    inactive |= all;

4076
    if (!vshConnectionUsability(ctl, ctl->conn))
4077 4078 4079 4080 4081
        return FALSE;

    if (active) {
        maxactive = virConnectNumOfInterfaces(ctl->conn);
        if (maxactive < 0) {
4082
            vshError(ctl, "%s", _("Failed to list active interfaces"));
4083 4084 4085 4086 4087 4088 4089
            return FALSE;
        }
        if (maxactive) {
            activeNames = vshMalloc(ctl, sizeof(char *) * maxactive);

            if ((maxactive = virConnectListInterfaces(ctl->conn, activeNames,
                                                    maxactive)) < 0) {
4090
                vshError(ctl, "%s", _("Failed to list active interfaces"));
4091
                VIR_FREE(activeNames);
4092 4093 4094 4095 4096 4097 4098 4099 4100
                return FALSE;
            }

            qsort(&activeNames[0], maxactive, sizeof(char *), namesorter);
        }
    }
    if (inactive) {
        maxinactive = virConnectNumOfDefinedInterfaces(ctl->conn);
        if (maxinactive < 0) {
4101
            vshError(ctl, "%s", _("Failed to list inactive interfaces"));
4102
            VIR_FREE(activeNames);
4103 4104 4105 4106 4107
            return FALSE;
        }
        if (maxinactive) {
            inactiveNames = vshMalloc(ctl, sizeof(char *) * maxinactive);

4108 4109 4110
            if ((maxinactive =
                     virConnectListDefinedInterfaces(ctl->conn, inactiveNames,
                                                     maxinactive)) < 0) {
4111
                vshError(ctl, "%s", _("Failed to list inactive interfaces"));
4112 4113
                VIR_FREE(activeNames);
                VIR_FREE(inactiveNames);
4114 4115 4116 4117 4118 4119
                return FALSE;
            }

            qsort(&inactiveNames[0], maxinactive, sizeof(char*), namesorter);
        }
    }
4120 4121
    vshPrintExtra(ctl, "%-20s %-10s %s\n", _("Name"), _("State"),
                  _("MAC Address"));
4122 4123 4124
    vshPrintExtra(ctl, "--------------------------------------------\n");

    for (i = 0; i < maxactive; i++) {
4125 4126
        virInterfacePtr iface =
            virInterfaceLookupByName(ctl->conn, activeNames[i]);
4127 4128 4129

        /* this kind of work with interfaces is not atomic */
        if (!iface) {
4130
            VIR_FREE(activeNames[i]);
4131 4132 4133 4134 4135 4136 4137 4138
            continue;
        }

        vshPrint(ctl, "%-20s %-10s %s\n",
                 virInterfaceGetName(iface),
                 _("active"),
                 virInterfaceGetMACString(iface));
        virInterfaceFree(iface);
4139
        VIR_FREE(activeNames[i]);
4140 4141
    }
    for (i = 0; i < maxinactive; i++) {
4142 4143
        virInterfacePtr iface =
            virInterfaceLookupByName(ctl->conn, inactiveNames[i]);
4144 4145 4146

        /* this kind of work with interfaces is not atomic */
        if (!iface) {
4147
            VIR_FREE(inactiveNames[i]);
4148 4149 4150 4151 4152 4153 4154 4155
            continue;
        }

        vshPrint(ctl, "%-20s %-10s %s\n",
                 virInterfaceGetName(iface),
                 _("inactive"),
                 virInterfaceGetMACString(iface));
        virInterfaceFree(iface);
4156
        VIR_FREE(inactiveNames[i]);
4157
    }
4158 4159
    VIR_FREE(activeNames);
    VIR_FREE(inactiveNames);
4160 4161 4162 4163 4164 4165 4166 4167
    return TRUE;

}

/*
 * "iface-name" command
 */
static const vshCmdInfo info_interface_name[] = {
4168
    {"help", N_("convert an interface MAC address to interface name")},
4169 4170 4171 4172 4173
    {"desc", ""},
    {NULL, NULL}
};

static const vshCmdOptDef opts_interface_name[] = {
4174
    {"interface", VSH_OT_DATA, VSH_OFLAG_REQ, N_("interface mac")},
4175 4176 4177 4178 4179 4180 4181 4182
    {NULL, 0, 0, NULL}
};

static int
cmdInterfaceName(vshControl *ctl, const vshCmd *cmd)
{
    virInterfacePtr iface;

4183
    if (!vshConnectionUsability(ctl, ctl->conn))
4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197
        return FALSE;
    if (!(iface = vshCommandOptInterfaceBy(ctl, cmd, NULL,
                                           VSH_BYMAC)))
        return FALSE;

    vshPrint(ctl, "%s\n", virInterfaceGetName(iface));
    virInterfaceFree(iface);
    return TRUE;
}

/*
 * "iface-mac" command
 */
static const vshCmdInfo info_interface_mac[] = {
4198
    {"help", N_("convert an interface name to interface MAC address")},
4199 4200 4201 4202 4203
    {"desc", ""},
    {NULL, NULL}
};

static const vshCmdOptDef opts_interface_mac[] = {
4204
    {"interface", VSH_OT_DATA, VSH_OFLAG_REQ, N_("interface name")},
4205 4206 4207 4208 4209 4210 4211 4212
    {NULL, 0, 0, NULL}
};

static int
cmdInterfaceMAC(vshControl *ctl, const vshCmd *cmd)
{
    virInterfacePtr iface;

4213
    if (!vshConnectionUsability(ctl, ctl->conn))
4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227
        return FALSE;
    if (!(iface = vshCommandOptInterfaceBy(ctl, cmd, NULL,
                                           VSH_BYNAME)))
        return FALSE;

    vshPrint(ctl, "%s\n", virInterfaceGetMACString(iface));
    virInterfaceFree(iface);
    return TRUE;
}

/*
 * "iface-dumpxml" command
 */
static const vshCmdInfo info_interface_dumpxml[] = {
4228 4229
    {"help", N_("interface information in XML")},
    {"desc", N_("Output the physical host interface information as an XML dump to stdout.")},
4230 4231 4232 4233
    {NULL, NULL}
};

static const vshCmdOptDef opts_interface_dumpxml[] = {
4234 4235
    {"interface", VSH_OT_DATA, VSH_OFLAG_REQ, N_("interface name or MAC address")},
    {"inactive", VSH_OT_BOOL, 0, N_("show inactive defined XML")},
4236 4237 4238 4239 4240 4241 4242 4243 4244
    {NULL, 0, 0, NULL}
};

static int
cmdInterfaceDumpXML(vshControl *ctl, const vshCmd *cmd)
{
    virInterfacePtr iface;
    int ret = TRUE;
    char *dump;
4245 4246 4247 4248 4249
    int flags = 0;
    int inactive = vshCommandOptBool(cmd, "inactive");

    if (inactive)
        flags |= VIR_INTERFACE_XML_INACTIVE;
4250

4251
    if (!vshConnectionUsability(ctl, ctl->conn))
4252 4253 4254 4255 4256
        return FALSE;

    if (!(iface = vshCommandOptInterface(ctl, cmd, NULL)))
        return FALSE;

4257
    dump = virInterfaceGetXMLDesc(iface, flags);
4258
    if (dump != NULL) {
4259
        vshPrint(ctl, "%s", dump);
4260
        VIR_FREE(dump);
4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272
    } else {
        ret = FALSE;
    }

    virInterfaceFree(iface);
    return ret;
}

/*
 * "iface-define" command
 */
static const vshCmdInfo info_interface_define[] = {
4273 4274
    {"help", N_("define (but don't start) a physical host interface from an XML file")},
    {"desc", N_("Define a physical host interface.")},
4275 4276 4277 4278
    {NULL, NULL}
};

static const vshCmdOptDef opts_interface_define[] = {
4279
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ, N_("file containing an XML interface description")},
4280 4281 4282 4283 4284 4285
    {NULL, 0, 0, NULL}
};

static int
cmdInterfaceDefine(vshControl *ctl, const vshCmd *cmd)
{
4286
    virInterfacePtr iface;
4287 4288 4289 4290 4291
    char *from;
    int found;
    int ret = TRUE;
    char *buffer;

4292
    if (!vshConnectionUsability(ctl, ctl->conn))
4293 4294 4295 4296 4297 4298 4299 4300 4301
        return FALSE;

    from = vshCommandOptString(cmd, "file", &found);
    if (!found)
        return FALSE;

    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0)
        return FALSE;

4302
    iface = virInterfaceDefineXML(ctl->conn, buffer, 0);
4303
    VIR_FREE(buffer);
4304

4305
    if (iface != NULL) {
4306
        vshPrint(ctl, _("Interface %s defined from %s\n"),
4307
                 virInterfaceGetName(iface), from);
L
Laine Stump 已提交
4308
        virInterfaceFree (iface);
4309
    } else {
4310
        vshError(ctl, _("Failed to define interface from %s"), from);
4311 4312 4313 4314 4315 4316 4317 4318 4319
        ret = FALSE;
    }
    return ret;
}

/*
 * "iface-undefine" command
 */
static const vshCmdInfo info_interface_undefine[] = {
4320 4321
    {"help", N_("undefine a physical host interface (remove it from configuration)")},
    {"desc", N_("undefine an interface.")},
4322 4323 4324 4325
    {NULL, NULL}
};

static const vshCmdOptDef opts_interface_undefine[] = {
4326
    {"interface", VSH_OT_DATA, VSH_OFLAG_REQ, N_("interface name or MAC address")},
4327 4328 4329 4330 4331 4332 4333 4334 4335 4336
    {NULL, 0, 0, NULL}
};

static int
cmdInterfaceUndefine(vshControl *ctl, const vshCmd *cmd)
{
    virInterfacePtr iface;
    int ret = TRUE;
    char *name;

4337
    if (!vshConnectionUsability(ctl, ctl->conn))
4338 4339 4340 4341 4342 4343 4344 4345
        return FALSE;

    if (!(iface = vshCommandOptInterface(ctl, cmd, &name)))
        return FALSE;

    if (virInterfaceUndefine(iface) == 0) {
        vshPrint(ctl, _("Interface %s undefined\n"), name);
    } else {
4346
        vshError(ctl, _("Failed to undefine interface %s"), name);
4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357
        ret = FALSE;
    }

    virInterfaceFree(iface);
    return ret;
}

/*
 * "iface-start" command
 */
static const vshCmdInfo info_interface_start[] = {
4358 4359
    {"help", N_("start a physical host interface (enable it / \"if-up\")")},
    {"desc", N_("start a physical host interface.")},
4360 4361 4362 4363
    {NULL, NULL}
};

static const vshCmdOptDef opts_interface_start[] = {
4364
    {"interface", VSH_OT_DATA, VSH_OFLAG_REQ, N_("interface name or MAC address")},
4365 4366 4367 4368 4369 4370 4371 4372 4373 4374
    {NULL, 0, 0, NULL}
};

static int
cmdInterfaceStart(vshControl *ctl, const vshCmd *cmd)
{
    virInterfacePtr iface;
    int ret = TRUE;
    char *name;

4375
    if (!vshConnectionUsability(ctl, ctl->conn))
4376 4377 4378 4379 4380 4381 4382 4383
        return FALSE;

    if (!(iface = vshCommandOptInterface(ctl, cmd, &name)))
        return FALSE;

    if (virInterfaceCreate(iface, 0) == 0) {
        vshPrint(ctl, _("Interface %s started\n"), name);
    } else {
4384
        vshError(ctl, _("Failed to start interface %s"), name);
4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395
        ret = FALSE;
    }

    virInterfaceFree(iface);
    return ret;
}

/*
 * "iface-destroy" command
 */
static const vshCmdInfo info_interface_destroy[] = {
4396 4397
    {"help", N_("destroy a physical host interface (disable it / \"if-down\")")},
    {"desc", N_("destroy a physical host interface.")},
4398 4399 4400 4401
    {NULL, NULL}
};

static const vshCmdOptDef opts_interface_destroy[] = {
4402
    {"interface", VSH_OT_DATA, VSH_OFLAG_REQ, N_("interface name or MAC address")},
4403 4404 4405 4406 4407 4408 4409 4410 4411 4412
    {NULL, 0, 0, NULL}
};

static int
cmdInterfaceDestroy(vshControl *ctl, const vshCmd *cmd)
{
    virInterfacePtr iface;
    int ret = TRUE;
    char *name;

4413
    if (!vshConnectionUsability(ctl, ctl->conn))
4414 4415 4416 4417 4418 4419 4420 4421
        return FALSE;

    if (!(iface = vshCommandOptInterface(ctl, cmd, &name)))
        return FALSE;

    if (virInterfaceDestroy(iface, 0) == 0) {
        vshPrint(ctl, _("Interface %s destroyed\n"), name);
    } else {
4422
        vshError(ctl, _("Failed to destroy interface %s"), name);
4423 4424 4425 4426 4427 4428 4429
        ret = FALSE;
    }

    virInterfaceFree(iface);
    return ret;
}

4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453

/*
 * "nwfilter-define" command
 */
static const vshCmdInfo info_nwfilter_define[] = {
    {"help", N_("define or update a network filter from an XML file")},
    {"desc", N_("Define a new network filter or update an existing one.")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_nwfilter_define[] = {
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ, N_("file containing an XML network filter description")},
    {NULL, 0, 0, NULL}
};

static int
cmdNWFilterDefine(vshControl *ctl, const vshCmd *cmd)
{
    virNWFilterPtr nwfilter;
    char *from;
    int found;
    int ret = TRUE;
    char *buffer;

4454
    if (!vshConnectionUsability(ctl, ctl->conn))
4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499
        return FALSE;

    from = vshCommandOptString(cmd, "file", &found);
    if (!found)
        return FALSE;

    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0)
        return FALSE;

    nwfilter = virNWFilterDefineXML(ctl->conn, buffer);
    VIR_FREE(buffer);

    if (nwfilter != NULL) {
        vshPrint(ctl, _("Network filter %s defined from %s\n"),
                 virNWFilterGetName(nwfilter), from);
        virNWFilterFree(nwfilter);
    } else {
        vshError(ctl, _("Failed to define network filter from %s"), from);
        ret = FALSE;
    }
    return ret;
}


/*
 * "nwfilter-undefine" command
 */
static const vshCmdInfo info_nwfilter_undefine[] = {
    {"help", N_("undefine a network filter")},
    {"desc", N_("Undefine a given network filter.")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_nwfilter_undefine[] = {
    {"nwfilter", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network filter name or uuid")},
    {NULL, 0, 0, NULL}
};

static int
cmdNWFilterUndefine(vshControl *ctl, const vshCmd *cmd)
{
    virNWFilterPtr nwfilter;
    int ret = TRUE;
    char *name;

4500
    if (!vshConnectionUsability(ctl, ctl->conn))
4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538
        return FALSE;

    if (!(nwfilter = vshCommandOptNWFilter(ctl, cmd, &name)))
        return FALSE;

    if (virNWFilterUndefine(nwfilter) == 0) {
        vshPrint(ctl, _("Network filter %s undefined\n"), name);
    } else {
        vshError(ctl, _("Failed to undefine network filter %s"), name);
        ret = FALSE;
    }

    virNWFilterFree(nwfilter);
    return ret;
}


/*
 * "nwfilter-dumpxml" command
 */
static const vshCmdInfo info_nwfilter_dumpxml[] = {
    {"help", N_("network filter information in XML")},
    {"desc", N_("Output the network filter information as an XML dump to stdout.")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_nwfilter_dumpxml[] = {
    {"nwfilter", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network filter name or uuid")},
    {NULL, 0, 0, NULL}
};

static int
cmdNWFilterDumpXML(vshControl *ctl, const vshCmd *cmd)
{
    virNWFilterPtr nwfilter;
    int ret = TRUE;
    char *dump;

4539
    if (!vshConnectionUsability(ctl, ctl->conn))
4540 4541 4542 4543 4544 4545 4546
        return FALSE;

    if (!(nwfilter = vshCommandOptNWFilter(ctl, cmd, NULL)))
        return FALSE;

    dump = virNWFilterGetXMLDesc(nwfilter, 0);
    if (dump != NULL) {
4547
        vshPrint(ctl, "%s", dump);
4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576
        VIR_FREE(dump);
    } else {
        ret = FALSE;
    }

    virNWFilterFree(nwfilter);
    return ret;
}

/*
 * "nwfilter-list" command
 */
static const vshCmdInfo info_nwfilter_list[] = {
    {"help", N_("list network filters")},
    {"desc", N_("Returns list of network filters.")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_nwfilter_list[] = {
    {NULL, 0, 0, NULL}
};

static int
cmdNWFilterList(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
{
    int numfilters, i;
    char **names;
    char uuid[VIR_UUID_STRING_BUFLEN];

4577
    if (!vshConnectionUsability(ctl, ctl->conn))
4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647
        return FALSE;

    numfilters = virConnectNumOfNWFilters(ctl->conn);
    if (numfilters < 0) {
        vshError(ctl, "%s", _("Failed to list network filters"));
        return FALSE;
    }

    names = vshMalloc(ctl, sizeof(char *) * numfilters);

    if ((numfilters = virConnectListNWFilters(ctl->conn, names,
                                              numfilters)) < 0) {
        vshError(ctl, "%s", _("Failed to list network filters"));
        VIR_FREE(names);
        return FALSE;
    }

    qsort(&names[0], numfilters, sizeof(char *), namesorter);

    vshPrintExtra(ctl, "%-36s  %-20s \n", _("UUID"), _("Name"));
    vshPrintExtra(ctl,
       "----------------------------------------------------------------\n");

    for (i = 0; i < numfilters; i++) {
        virNWFilterPtr nwfilter =
            virNWFilterLookupByName(ctl->conn, names[i]);

        /* this kind of work with networks is not atomic operation */
        if (!nwfilter) {
            VIR_FREE(names[i]);
            continue;
        }

        virNWFilterGetUUIDString(nwfilter, uuid);
        vshPrint(ctl, "%-36s  %-20s\n",
                 uuid,
                 virNWFilterGetName(nwfilter));
        virNWFilterFree(nwfilter);
        VIR_FREE(names[i]);
    }

    VIR_FREE(names);
    return TRUE;
}


/*
 * "nwfilter-edit" command
 */
static const vshCmdInfo info_nwfilter_edit[] = {
    {"help", N_("edit XML configuration for a network filter")},
    {"desc", N_("Edit the XML configuration for a network filter.")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_nwfilter_edit[] = {
    {"nwfilter", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network filter name or uuid")},
    {NULL, 0, 0, NULL}
};

static int
cmdNWFilterEdit (vshControl *ctl, const vshCmd *cmd)
{
    int ret = FALSE;
    virNWFilterPtr nwfilter = NULL;
    char *tmp = NULL;
    char *doc = NULL;
    char *doc_edited = NULL;
    char *doc_reread = NULL;

4648
    if (!vshConnectionUsability(ctl, ctl->conn))
4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720
        goto cleanup;

    nwfilter = vshCommandOptNWFilter (ctl, cmd, NULL);
    if (nwfilter == NULL)
        goto cleanup;

    /* Get the XML configuration of the interface. */
    doc = virNWFilterGetXMLDesc (nwfilter, 0);
    if (!doc)
        goto cleanup;

    /* Create and open the temporary file. */
    tmp = editWriteToTempFile (ctl, doc);
    if (!tmp) goto cleanup;

    /* Start the editor. */
    if (editFile (ctl, tmp) == -1) goto cleanup;

    /* Read back the edited file. */
    doc_edited = editReadBackFile (ctl, tmp);
    if (!doc_edited) goto cleanup;

    /* Compare original XML with edited.  Has it changed at all? */
    if (STREQ (doc, doc_edited)) {
        vshPrint (ctl, _("Network filter %s XML configuration not changed.\n"),
                  virNWFilterGetName (nwfilter));
        ret = TRUE;
        goto cleanup;
    }

    /* Now re-read the network filter XML.  Did someone else change it while
     * it was being edited?  This also catches problems such as us
     * losing a connection or the interface going away.
     */
    doc_reread = virNWFilterGetXMLDesc (nwfilter, 0);
    if (!doc_reread)
        goto cleanup;

    if (STRNEQ (doc, doc_reread)) {
        vshError(ctl, "%s",
                 _("ERROR: the XML configuration was changed by another user"));
        goto cleanup;
    }

    /* Everything checks out, so redefine the interface. */
    virNWFilterFree (nwfilter);
    nwfilter = virNWFilterDefineXML (ctl->conn, doc_edited);
    if (!nwfilter)
        goto cleanup;

    vshPrint (ctl, _("Network filter %s XML configuration edited.\n"),
              virNWFilterGetName(nwfilter));

    ret = TRUE;

cleanup:
    if (nwfilter)
        virNWFilterFree (nwfilter);

    VIR_FREE(doc);
    VIR_FREE(doc_edited);
    VIR_FREE(doc_reread);

    if (tmp) {
        unlink (tmp);
        VIR_FREE(tmp);
    }

    return ret;
}


4721
/**************************************************************************/
4722
/*
4723
 * "pool-autostart" command
4724
 */
4725
static const vshCmdInfo info_pool_autostart[] = {
4726
    {"help", N_("autostart a pool")},
4727
    {"desc",
4728
     N_("Configure a pool to be automatically started at boot.")},
4729
    {NULL, NULL}
4730 4731
};

4732
static const vshCmdOptDef opts_pool_autostart[] = {
4733 4734
    {"pool",  VSH_OT_DATA, VSH_OFLAG_REQ, N_("pool name or uuid")},
    {"disable", VSH_OT_BOOL, 0, N_("disable autostarting")},
4735 4736
    {NULL, 0, 0, NULL}
};
4737 4738

static int
4739
cmdPoolAutostart(vshControl *ctl, const vshCmd *cmd)
4740
{
4741 4742 4743
    virStoragePoolPtr pool;
    char *name;
    int autostart;
4744

4745
    if (!vshConnectionUsability(ctl, ctl->conn))
4746
        return FALSE;
4747

4748
    if (!(pool = vshCommandOptPool(ctl, cmd, "pool", &name)))
4749 4750
        return FALSE;

4751
    autostart = !vshCommandOptBool(cmd, "disable");
4752

4753 4754
    if (virStoragePoolSetAutostart(pool, autostart) < 0) {
        if (autostart)
4755
            vshError(ctl, _("failed to mark pool %s as autostarted"), name);
4756
        else
4757
            vshError(ctl, _("failed to unmark pool %s as autostarted"), name);
4758
        virStoragePoolFree(pool);
4759 4760 4761
        return FALSE;
    }

4762
    if (autostart)
4763
        vshPrint(ctl, _("Pool %s marked as autostarted\n"), name);
4764
    else
4765
        vshPrint(ctl, _("Pool %s unmarked as autostarted\n"), name);
4766

L
Laine Stump 已提交
4767
    virStoragePoolFree(pool);
4768 4769 4770
    return TRUE;
}

4771
/*
4772
 * "pool-create" command
4773
 */
4774
static const vshCmdInfo info_pool_create[] = {
4775 4776
    {"help", N_("create a pool from an XML file")},
    {"desc", N_("Create a pool.")},
4777 4778 4779
    {NULL, NULL}
};

4780
static const vshCmdOptDef opts_pool_create[] = {
J
Jim Meyering 已提交
4781
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ,
4782
     N_("file containing an XML pool description")},
4783 4784 4785
    {NULL, 0, 0, NULL}
};

4786
static int
4787
cmdPoolCreate(vshControl *ctl, const vshCmd *cmd)
4788
{
4789 4790 4791 4792 4793
    virStoragePoolPtr pool;
    char *from;
    int found;
    int ret = TRUE;
    char *buffer;
4794

4795
    if (!vshConnectionUsability(ctl, ctl->conn))
4796 4797
        return FALSE;

4798 4799
    from = vshCommandOptString(cmd, "file", &found);
    if (!found)
4800 4801
        return FALSE;

4802 4803
    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0)
        return FALSE;
4804

4805
    pool = virStoragePoolCreateXML(ctl->conn, buffer, 0);
4806
    VIR_FREE(buffer);
4807 4808 4809 4810

    if (pool != NULL) {
        vshPrint(ctl, _("Pool %s created from %s\n"),
                 virStoragePoolGetName(pool), from);
L
Laine Stump 已提交
4811
        virStoragePoolFree(pool);
4812
    } else {
4813
        vshError(ctl, _("Failed to create pool from %s"), from);
4814 4815 4816
        ret = FALSE;
    }
    return ret;
4817 4818
}

4819

4820 4821 4822 4823
/*
 * "nodedev-create" command
 */
static const vshCmdInfo info_node_device_create[] = {
4824
    {"help", N_("create a device defined "
4825
                          "by an XML file on the node")},
4826
    {"desc", N_("Create a device on the node.  Note that this "
4827 4828 4829 4830 4831 4832 4833
                          "command creates devices on the physical host "
                          "that can then be assigned to a virtual machine.")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_node_device_create[] = {
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ,
4834
     N_("file containing an XML description of the device")},
4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846
    {NULL, 0, 0, NULL}
};

static int
cmdNodeDeviceCreate(vshControl *ctl, const vshCmd *cmd)
{
    virNodeDevicePtr dev = NULL;
    char *from;
    int found = 0;
    int ret = TRUE;
    char *buffer;

4847
    if (!vshConnectionUsability(ctl, ctl->conn))
4848 4849 4850 4851 4852 4853 4854
        return FALSE;

    from = vshCommandOptString(cmd, "file", &found);
    if (!found) {
        return FALSE;
    }

4855
    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0)
4856 4857 4858
        return FALSE;

    dev = virNodeDeviceCreateXML(ctl->conn, buffer, 0);
4859
    VIR_FREE(buffer);
4860 4861 4862 4863

    if (dev != NULL) {
        vshPrint(ctl, _("Node device %s created from %s\n"),
                 virNodeDeviceGetName(dev), from);
L
Laine Stump 已提交
4864
        virNodeDeviceFree(dev);
4865
    } else {
4866
        vshError(ctl, _("Failed to create node device from %s"), from);
4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877
        ret = FALSE;
    }

    return ret;
}


/*
 * "nodedev-destroy" command
 */
static const vshCmdInfo info_node_device_destroy[] = {
4878 4879
    {"help", N_("destroy a device on the node")},
    {"desc", N_("Destroy a device on the node.  Note that this "
4880 4881 4882 4883 4884 4885
                          "command destroys devices on the physical host ")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_node_device_destroy[] = {
    {"name", VSH_OT_DATA, VSH_OFLAG_REQ,
4886
     N_("name of the device to be destroyed")},
4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897
    {NULL, 0, 0, NULL}
};

static int
cmdNodeDeviceDestroy(vshControl *ctl, const vshCmd *cmd)
{
    virNodeDevicePtr dev = NULL;
    int ret = TRUE;
    int found = 0;
    char *name;

4898
    if (!vshConnectionUsability(ctl, ctl->conn)) {
4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911
        return FALSE;
    }

    name = vshCommandOptString(cmd, "name", &found);
    if (!found) {
        return FALSE;
    }

    dev = virNodeDeviceLookupByName(ctl->conn, name);

    if (virNodeDeviceDestroy(dev) == 0) {
        vshPrint(ctl, _("Destroyed node device '%s'\n"), name);
    } else {
4912
        vshError(ctl, _("Failed to destroy node device '%s'"), name);
4913 4914 4915 4916 4917 4918 4919 4920
        ret = FALSE;
    }

    virNodeDeviceFree(dev);
    return ret;
}


4921
/*
4922
 * XML Building helper for pool-define-as and pool-create-as
4923
 */
4924
static const vshCmdOptDef opts_pool_X_as[] = {
4925 4926 4927 4928 4929 4930 4931 4932
    {"name", VSH_OT_DATA, VSH_OFLAG_REQ, N_("name of the pool")},
    {"print-xml", VSH_OT_BOOL, 0, N_("print XML document, but don't define/create")},
    {"type", VSH_OT_DATA, VSH_OFLAG_REQ, N_("type of the pool")},
    {"source-host", VSH_OT_DATA, 0, N_("source-host for underlying storage")},
    {"source-path", VSH_OT_DATA, 0, N_("source path for underlying storage")},
    {"source-dev", VSH_OT_DATA, 0, N_("source device for underlying storage")},
    {"source-name", VSH_OT_DATA, 0, N_("source name for underlying storage")},
    {"target", VSH_OT_DATA, 0, N_("target for underlying storage")},
4933
    {"source-format", VSH_OT_STRING, 0, N_("format for underlying storage")},
4934 4935 4936
    {NULL, 0, 0, NULL}
};

4937
static int buildPoolXML(const vshCmd *cmd, char **retname, char **xml) {
4938 4939

    int found;
4940
    char *name, *type, *srcHost, *srcPath, *srcDev, *srcName, *srcFormat, *target;
4941
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952

    name = vshCommandOptString(cmd, "name", &found);
    if (!found)
        goto cleanup;
    type = vshCommandOptString(cmd, "type", &found);
    if (!found)
        goto cleanup;

    srcHost = vshCommandOptString(cmd, "source-host", &found);
    srcPath = vshCommandOptString(cmd, "source-path", &found);
    srcDev = vshCommandOptString(cmd, "source-dev", &found);
4953
    srcName = vshCommandOptString(cmd, "source-name", &found);
4954
    srcFormat = vshCommandOptString(cmd, "source-format", &found);
4955 4956
    target = vshCommandOptString(cmd, "target", &found);

4957 4958
    virBufferVSprintf(&buf, "<pool type='%s'>\n", type);
    virBufferVSprintf(&buf, "  <name>%s</name>\n", name);
4959
    if (srcHost || srcPath || srcDev) {
4960
        virBufferAddLit(&buf, "  <source>\n");
4961

4962 4963
        if (srcHost)
            virBufferVSprintf(&buf, "    <host name='%s'/>\n", srcHost);
4964 4965 4966 4967
        if (srcPath)
            virBufferVSprintf(&buf, "    <dir path='%s'/>\n", srcPath);
        if (srcDev)
            virBufferVSprintf(&buf, "    <device path='%s'/>\n", srcDev);
4968 4969
        if (srcFormat)
            virBufferVSprintf(&buf, "    <format type='%s'/>\n", srcFormat);
4970 4971
        if (srcName)
            virBufferVSprintf(&buf, "    <name>%s</name>\n", srcName);
4972 4973

        virBufferAddLit(&buf, "  </source>\n");
4974 4975
    }
    if (target) {
4976 4977 4978
        virBufferAddLit(&buf, "  <target>\n");
        virBufferVSprintf(&buf, "    <path>%s</path>\n", target);
        virBufferAddLit(&buf, "  </target>\n");
4979
    }
4980 4981 4982 4983 4984 4985
    virBufferAddLit(&buf, "</pool>\n");

    if (virBufferError(&buf)) {
        vshPrint(ctl, "%s", _("Failed to allocate XML buffer"));
        return FALSE;
    }
4986 4987 4988 4989 4990 4991

    *xml = virBufferContentAndReset(&buf);
    *retname = name;
    return TRUE;

cleanup:
4992
    virBufferFreeAndReset(&buf);
4993 4994 4995 4996 4997 4998 4999
    return FALSE;
}

/*
 * "pool-create-as" command
 */
static const vshCmdInfo info_pool_create_as[] = {
5000 5001
    {"help", N_("create a pool from a set of args")},
    {"desc", N_("Create a pool.")},
5002 5003 5004 5005 5006 5007 5008 5009
    {NULL, NULL}
};

static int
cmdPoolCreateAs(vshControl *ctl, const vshCmd *cmd)
{
    virStoragePoolPtr pool;
    char *xml, *name;
5010
    int printXML = vshCommandOptBool(cmd, "print-xml");
5011

5012
    if (!vshConnectionUsability(ctl, ctl->conn))
5013 5014 5015 5016
        return FALSE;

    if (!buildPoolXML(cmd, &name, &xml))
        return FALSE;
5017

5018
    if (printXML) {
5019
        vshPrint(ctl, "%s", xml);
5020
        VIR_FREE(xml);
5021
    } else {
5022
        pool = virStoragePoolCreateXML(ctl->conn, xml, 0);
5023
        VIR_FREE(xml);
5024

5025 5026 5027 5028
        if (pool != NULL) {
            vshPrint(ctl, _("Pool %s created\n"), name);
            virStoragePoolFree(pool);
        } else {
5029
            vshError(ctl, _("Failed to create pool %s"), name);
5030 5031 5032 5033
            return FALSE;
        }
    }
    return TRUE;
5034 5035
}

5036

5037
/*
5038
 * "pool-define" command
5039
 */
5040
static const vshCmdInfo info_pool_define[] = {
5041 5042
    {"help", N_("define (but don't start) a pool from an XML file")},
    {"desc", N_("Define a pool.")},
5043 5044 5045
    {NULL, NULL}
};

5046
static const vshCmdOptDef opts_pool_define[] = {
5047
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ, N_("file containing an XML pool description")},
5048 5049 5050
    {NULL, 0, 0, NULL}
};

5051
static int
5052
cmdPoolDefine(vshControl *ctl, const vshCmd *cmd)
5053
{
5054 5055 5056 5057 5058
    virStoragePoolPtr pool;
    char *from;
    int found;
    int ret = TRUE;
    char *buffer;
5059

5060
    if (!vshConnectionUsability(ctl, ctl->conn))
5061 5062
        return FALSE;

5063 5064
    from = vshCommandOptString(cmd, "file", &found);
    if (!found)
5065 5066
        return FALSE;

5067 5068
    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0)
        return FALSE;
5069

5070
    pool = virStoragePoolDefineXML(ctl->conn, buffer, 0);
5071
    VIR_FREE(buffer);
5072 5073 5074 5075

    if (pool != NULL) {
        vshPrint(ctl, _("Pool %s defined from %s\n"),
                 virStoragePoolGetName(pool), from);
L
Laine Stump 已提交
5076
        virStoragePoolFree(pool);
5077
    } else {
5078
        vshError(ctl, _("Failed to define pool from %s"), from);
5079 5080 5081
        ret = FALSE;
    }
    return ret;
5082 5083
}

5084

5085 5086 5087
/*
 * "pool-define-as" command
 */
5088
static const vshCmdInfo info_pool_define_as[] = {
5089 5090
    {"help", N_("define a pool from a set of args")},
    {"desc", N_("Define a pool.")},
5091 5092 5093 5094
    {NULL, NULL}
};

static int
5095
cmdPoolDefineAs(vshControl *ctl, const vshCmd *cmd)
5096 5097
{
    virStoragePoolPtr pool;
5098
    char *xml, *name;
5099
    int printXML = vshCommandOptBool(cmd, "print-xml");
5100

5101
    if (!vshConnectionUsability(ctl, ctl->conn))
5102 5103
        return FALSE;

5104
    if (!buildPoolXML(cmd, &name, &xml))
5105 5106
        return FALSE;

5107
    if (printXML) {
5108
        vshPrint(ctl, "%s", xml);
5109
        VIR_FREE(xml);
5110
    } else {
5111
        pool = virStoragePoolDefineXML(ctl->conn, xml, 0);
5112
        VIR_FREE(xml);
5113

5114 5115 5116 5117
        if (pool != NULL) {
            vshPrint(ctl, _("Pool %s defined\n"), name);
            virStoragePoolFree(pool);
        } else {
5118
            vshError(ctl, _("Failed to define pool %s"), name);
5119 5120 5121 5122
            return FALSE;
        }
    }
    return TRUE;
5123 5124 5125
}


5126
/*
5127
 * "pool-build" command
5128
 */
5129
static const vshCmdInfo info_pool_build[] = {
5130 5131
    {"help", N_("build a pool")},
    {"desc", N_("Build a given pool.")},
5132 5133 5134
    {NULL, NULL}
};

5135
static const vshCmdOptDef opts_pool_build[] = {
5136
    {"pool", VSH_OT_DATA, VSH_OFLAG_REQ, N_("pool name or uuid")},
5137 5138 5139 5140
    {NULL, 0, 0, NULL}
};

static int
5141
cmdPoolBuild(vshControl *ctl, const vshCmd *cmd)
5142
{
5143 5144 5145
    virStoragePoolPtr pool;
    int ret = TRUE;
    char *name;
5146

5147
    if (!vshConnectionUsability(ctl, ctl->conn))
5148 5149
        return FALSE;

5150
    if (!(pool = vshCommandOptPool(ctl, cmd, "pool", &name)))
5151 5152
        return FALSE;

5153
    if (virStoragePoolBuild(pool, 0) == 0) {
5154
        vshPrint(ctl, _("Pool %s built\n"), name);
5155
    } else {
5156
        vshError(ctl, _("Failed to build pool %s"), name);
5157
        ret = FALSE;
5158 5159
    }

5160 5161
    virStoragePoolFree(pool);

5162 5163 5164
    return ret;
}

5165

5166
/*
5167
 * "pool-destroy" command
5168
 */
5169
static const vshCmdInfo info_pool_destroy[] = {
5170 5171
    {"help", N_("destroy a pool")},
    {"desc", N_("Destroy a given pool.")},
5172 5173 5174
    {NULL, NULL}
};

5175
static const vshCmdOptDef opts_pool_destroy[] = {
5176
    {"pool", VSH_OT_DATA, VSH_OFLAG_REQ, N_("pool name or uuid")},
5177 5178 5179 5180
    {NULL, 0, 0, NULL}
};

static int
5181
cmdPoolDestroy(vshControl *ctl, const vshCmd *cmd)
5182
{
5183 5184 5185
    virStoragePoolPtr pool;
    int ret = TRUE;
    char *name;
5186

5187
    if (!vshConnectionUsability(ctl, ctl->conn))
5188 5189
        return FALSE;

5190
    if (!(pool = vshCommandOptPool(ctl, cmd, "pool", &name)))
5191 5192
        return FALSE;

5193 5194 5195
    if (virStoragePoolDestroy(pool) == 0) {
        vshPrint(ctl, _("Pool %s destroyed\n"), name);
    } else {
5196
        vshError(ctl, _("Failed to destroy pool %s"), name);
5197
        ret = FALSE;
5198 5199
    }

5200
    virStoragePoolFree(pool);
5201 5202 5203
    return ret;
}

5204

5205
/*
5206 5207
 * "pool-delete" command
 */
5208
static const vshCmdInfo info_pool_delete[] = {
5209 5210
    {"help", N_("delete a pool")},
    {"desc", N_("Delete a given pool.")},
5211 5212 5213
    {NULL, NULL}
};

5214
static const vshCmdOptDef opts_pool_delete[] = {
5215
    {"pool", VSH_OT_DATA, VSH_OFLAG_REQ, N_("pool name or uuid")},
5216 5217 5218 5219
    {NULL, 0, 0, NULL}
};

static int
5220
cmdPoolDelete(vshControl *ctl, const vshCmd *cmd)
5221 5222 5223 5224 5225
{
    virStoragePoolPtr pool;
    int ret = TRUE;
    char *name;

5226
    if (!vshConnectionUsability(ctl, ctl->conn))
5227 5228 5229 5230 5231 5232
        return FALSE;

    if (!(pool = vshCommandOptPool(ctl, cmd, "pool", &name)))
        return FALSE;

    if (virStoragePoolDelete(pool, 0) == 0) {
D
Daniel Veillard 已提交
5233
        vshPrint(ctl, _("Pool %s deleted\n"), name);
5234
    } else {
5235
        vshError(ctl, _("Failed to delete pool %s"), name);
5236 5237 5238
        ret = FALSE;
    }

L
Laine Stump 已提交
5239
    virStoragePoolFree(pool);
5240 5241 5242 5243 5244 5245 5246
    return ret;
}


/*
 * "pool-refresh" command
 */
5247
static const vshCmdInfo info_pool_refresh[] = {
5248 5249
    {"help", N_("refresh a pool")},
    {"desc", N_("Refresh a given pool.")},
5250 5251 5252
    {NULL, NULL}
};

5253
static const vshCmdOptDef opts_pool_refresh[] = {
5254
    {"pool", VSH_OT_DATA, VSH_OFLAG_REQ, N_("pool name or uuid")},
5255 5256 5257 5258
    {NULL, 0, 0, NULL}
};

static int
5259
cmdPoolRefresh(vshControl *ctl, const vshCmd *cmd)
5260 5261 5262 5263 5264
{
    virStoragePoolPtr pool;
    int ret = TRUE;
    char *name;

5265
    if (!vshConnectionUsability(ctl, ctl->conn))
5266 5267 5268 5269 5270 5271 5272 5273
        return FALSE;

    if (!(pool = vshCommandOptPool(ctl, cmd, "pool", &name)))
        return FALSE;

    if (virStoragePoolRefresh(pool, 0) == 0) {
        vshPrint(ctl, _("Pool %s refreshed\n"), name);
    } else {
5274
        vshError(ctl, _("Failed to refresh pool %s"), name);
5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285
        ret = FALSE;
    }
    virStoragePoolFree(pool);

    return ret;
}


/*
 * "pool-dumpxml" command
 */
5286
static const vshCmdInfo info_pool_dumpxml[] = {
5287 5288
    {"help", N_("pool information in XML")},
    {"desc", N_("Output the pool information as an XML dump to stdout.")},
5289 5290 5291
    {NULL, NULL}
};

5292
static const vshCmdOptDef opts_pool_dumpxml[] = {
5293
    {"pool", VSH_OT_DATA, VSH_OFLAG_REQ, N_("pool name or uuid")},
5294 5295 5296 5297
    {NULL, 0, 0, NULL}
};

static int
5298
cmdPoolDumpXML(vshControl *ctl, const vshCmd *cmd)
5299 5300 5301 5302 5303
{
    virStoragePoolPtr pool;
    int ret = TRUE;
    char *dump;

5304
    if (!vshConnectionUsability(ctl, ctl->conn))
5305 5306 5307 5308 5309 5310 5311
        return FALSE;

    if (!(pool = vshCommandOptPool(ctl, cmd, "pool", NULL)))
        return FALSE;

    dump = virStoragePoolGetXMLDesc(pool, 0);
    if (dump != NULL) {
5312
        vshPrint(ctl, "%s", dump);
5313
        VIR_FREE(dump);
5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325
    } else {
        ret = FALSE;
    }

    virStoragePoolFree(pool);
    return ret;
}


/*
 * "pool-list" command
 */
5326
static const vshCmdInfo info_pool_list[] = {
5327 5328
    {"help", N_("list pools")},
    {"desc", N_("Returns list of pools.")},
5329 5330 5331
    {NULL, NULL}
};

5332
static const vshCmdOptDef opts_pool_list[] = {
5333 5334
    {"inactive", VSH_OT_BOOL, 0, N_("list inactive pools")},
    {"all", VSH_OT_BOOL, 0, N_("list inactive & active pools")},
5335
    {"details", VSH_OT_BOOL, 0, N_("display extended details for pools")},
5336 5337 5338 5339
    {NULL, 0, 0, NULL}
};

static int
5340
cmdPoolList(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
5341
{
5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360
    virStoragePoolInfo info;
    char **poolNames = NULL;
    int i, functionReturn, ret;
    int numActivePools = 0, numInactivePools = 0, numAllPools = 0;
    size_t stringLength = 0, nameStrLength = 0;
    size_t autostartStrLength = 0, persistStrLength = 0;
    size_t stateStrLength = 0, capStrLength = 0;
    size_t allocStrLength = 0, availStrLength = 0;
    struct poolInfoText {
        char *state;
        char *autostart;
        char *persistent;
        char *capacity;
        char *allocation;
        char *available;
    };
    struct poolInfoText *poolInfoTexts = NULL;

    /* Determine the options passed by the user */
5361
    int all = vshCommandOptBool(cmd, "all");
5362 5363
    int details = vshCommandOptBool(cmd, "details");
    int inactive = vshCommandOptBool(cmd, "inactive");
5364 5365 5366
    int active = !inactive || all ? 1 : 0;
    inactive |= all;

5367
    /* Check the connection to libvirtd daemon is still working */
5368
    if (!vshConnectionUsability(ctl, ctl->conn))
5369 5370
        return FALSE;

5371
    /* Retrieve the number of active storage pools */
5372
    if (active) {
5373 5374
        numActivePools = virConnectNumOfStoragePools(ctl->conn);
        if (numActivePools < 0) {
5375
            vshError(ctl, "%s", _("Failed to list active pools"));
5376 5377 5378
            return FALSE;
        }
    }
5379 5380

    /* Retrieve the number of inactive storage pools */
5381
    if (inactive) {
5382 5383
        numInactivePools = virConnectNumOfDefinedStoragePools(ctl->conn);
        if (numInactivePools < 0) {
5384
            vshError(ctl, "%s", _("Failed to list inactive pools"));
5385 5386
            return FALSE;
        }
5387
    }
5388

5389 5390
    /* Determine the total number of pools to list */
    numAllPools = numActivePools + numInactivePools;
5391

5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404
    /* Allocate memory for arrays of storage pool names and info */
    poolNames = vshCalloc(ctl, numAllPools, sizeof(*poolNames));
    poolInfoTexts =
        vshCalloc(ctl, numAllPools, sizeof(*poolInfoTexts));

    /* Retrieve a list of active storage pool names */
    if (active) {
        if ((virConnectListStoragePools(ctl->conn,
                                        poolNames, numActivePools)) < 0) {
            vshError(ctl, "%s", _("Failed to list active pools"));
            VIR_FREE(poolInfoTexts);
            VIR_FREE(poolNames);
            return FALSE;
5405 5406 5407
        }
    }

5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418
    /* Add the inactive storage pools to the end of the name list */
    if (inactive) {
        if ((virConnectListDefinedStoragePools(ctl->conn,
                                               &poolNames[numActivePools],
                                               numInactivePools)) < 0) {
            vshError(ctl, "%s", _("Failed to list inactive pools"));
            VIR_FREE(poolInfoTexts);
            VIR_FREE(poolNames);
            return FALSE;
        }
    }
5419

5420 5421 5422 5423 5424 5425 5426 5427 5428 5429
    /* Sort the storage pool names */
    qsort(poolNames, numAllPools, sizeof(*poolNames), namesorter);

    /* Collect the storage pool information for display */
    for (i = 0; i < numAllPools; i++) {
        int autostart = 0, persistent = 0;

        /* Retrieve a pool object, looking it up by name */
        virStoragePoolPtr pool = virStoragePoolLookupByName(ctl->conn,
                                                            poolNames[i]);
5430
        if (!pool) {
5431
            VIR_FREE(poolNames[i]);
5432 5433 5434
            continue;
        }

5435
        /* Retrieve the autostart status of the pool */
5436
        if (virStoragePoolGetAutostart(pool, &autostart) < 0)
5437
            poolInfoTexts[i].autostart = vshStrdup(ctl, _("no autostart"));
5438
        else
5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456
            poolInfoTexts[i].autostart = vshStrdup(ctl, autostart ?
                                                    _("yes") : _("no"));

        /* Retrieve the persistence status of the pool */
        if (details) {
            persistent = virStoragePoolIsPersistent(pool);
            vshDebug(ctl, 5, "Persistent flag value: %d\n", persistent);
            if (persistent < 0)
                poolInfoTexts[i].persistent = vshStrdup(ctl, _("unknown"));
            else
                poolInfoTexts[i].persistent = vshStrdup(ctl, persistent ?
                                                         _("yes") : _("no"));

            /* Keep the length of persistent string if longest so far */
            stringLength = strlen(poolInfoTexts[i].persistent);
            if (stringLength > persistStrLength)
                persistStrLength = stringLength;
        }
5457

5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569
        /* Collect further extended information about the pool */
        if (virStoragePoolGetInfo(pool, &info) != 0) {
            /* Something went wrong retrieving pool info, cope with it */
            vshError(ctl, "%s", _("Could not retrieve pool information"));
            poolInfoTexts[i].state = vshStrdup(ctl, _("unknown"));
            if (details) {
                poolInfoTexts[i].capacity = vshStrdup(ctl, _("unknown"));
                poolInfoTexts[i].allocation = vshStrdup(ctl, _("unknown"));
                poolInfoTexts[i].available = vshStrdup(ctl, _("unknown"));
            }
        } else {
            /* Decide which state string to display */
            if (details) {
                /* --details option was specified, we're using detailed state
                 * strings */
                switch (info.state) {
                case VIR_STORAGE_POOL_INACTIVE:
                    poolInfoTexts[i].state = vshStrdup(ctl, _("inactive"));
                    break;
                case VIR_STORAGE_POOL_BUILDING:
                    poolInfoTexts[i].state = vshStrdup(ctl, _("building"));
                    break;
                case VIR_STORAGE_POOL_RUNNING:
                    poolInfoTexts[i].state = vshStrdup(ctl, _("running"));
                    break;
                case VIR_STORAGE_POOL_DEGRADED:
                    poolInfoTexts[i].state = vshStrdup(ctl, _("degraded"));
                    break;
                case VIR_STORAGE_POOL_INACCESSIBLE:
                    poolInfoTexts[i].state = vshStrdup(ctl, _("inaccessible"));
                    break;
                }

                /* Create the pool size related strings */
                if (info.state == VIR_STORAGE_POOL_RUNNING ||
                    info.state == VIR_STORAGE_POOL_DEGRADED) {
                    double val;
                    const char *unit;

                    /* Create the capacity output string */
                    val = prettyCapacity(info.capacity, &unit);
                    ret = virAsprintf(&poolInfoTexts[i].capacity,
                                      "%.2lf %s", val, unit);
                    if (ret < 0) {
                        /* An error occurred creating the string, return */
                        goto asprintf_failure;
                    }

                    /* Create the allocation output string */
                    val = prettyCapacity(info.allocation, &unit);
                    ret = virAsprintf(&poolInfoTexts[i].allocation,
                                      "%.2lf %s", val, unit);
                    if (ret < 0) {
                        /* An error occurred creating the string, return */
                        goto asprintf_failure;
                    }

                    /* Create the available space output string */
                    val = prettyCapacity(info.available, &unit);
                    ret = virAsprintf(&poolInfoTexts[i].available,
                                      "%.2lf %s", val, unit);
                    if (ret < 0) {
                        /* An error occurred creating the string, return */
                        goto asprintf_failure;
                    }
                } else {
                    /* Capacity related information isn't available */
                    poolInfoTexts[i].capacity = vshStrdup(ctl, _("-"));
                    poolInfoTexts[i].allocation = vshStrdup(ctl, _("-"));
                    poolInfoTexts[i].available = vshStrdup(ctl, _("-"));
                }

                /* Keep the length of capacity string if longest so far */
                stringLength = strlen(poolInfoTexts[i].capacity);
                if (stringLength > capStrLength)
                    capStrLength = stringLength;

                /* Keep the length of allocation string if longest so far */
                stringLength = strlen(poolInfoTexts[i].allocation);
                if (stringLength > allocStrLength)
                    allocStrLength = stringLength;

                /* Keep the length of available string if longest so far */
                stringLength = strlen(poolInfoTexts[i].available);
                if (stringLength > availStrLength)
                    availStrLength = stringLength;
            } else {
                /* --details option was not specified, only active/inactive
                * state strings are used */
                if (info.state == VIR_STORAGE_POOL_INACTIVE)
                    poolInfoTexts[i].state = vshStrdup(ctl, _("inactive"));
                else
                    poolInfoTexts[i].state = vshStrdup(ctl, _("active"));
            }
        }

        /* Keep the length of name string if longest so far */
        stringLength = strlen(poolNames[i]);
        if (stringLength > nameStrLength)
            nameStrLength = stringLength;

        /* Keep the length of state string if longest so far */
        stringLength = strlen(poolInfoTexts[i].state);
        if (stringLength > stateStrLength)
            stateStrLength = stringLength;

        /* Keep the length of autostart string if longest so far */
        stringLength = strlen(poolInfoTexts[i].autostart);
        if (stringLength > autostartStrLength)
            autostartStrLength = stringLength;

        /* Free the pool object */
5570 5571 5572
        virStoragePoolFree(pool);
    }

5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590
    /* If the --details option wasn't selected, we output the pool
     * info using the fixed string format from previous versions to
     * maintain backward compatibility.
     */

    /* Output basic info then return if --details option not selected */
    if (!details) {
        /* Output old style header */
        vshPrintExtra(ctl, "%-20s %-10s %-10s\n", _("Name"), _("State"),
                      _("Autostart"));
        vshPrintExtra(ctl, "-----------------------------------------\n");

        /* Output old style pool info */
        for (i = 0; i < numAllPools; i++) {
            vshPrint(ctl, "%-20s %-10s %-10s\n",
                 poolNames[i],
                 poolInfoTexts[i].state,
                 poolInfoTexts[i].autostart);
5591 5592
        }

5593 5594 5595 5596
        /* Cleanup and return */
        functionReturn = TRUE;
        goto cleanup;
    }
5597

5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707
    /* We only get here if the --details option was selected. */

    /* Use the length of name header string if it's longest */
    stringLength = strlen(_("Name"));
    if (stringLength > nameStrLength)
        nameStrLength = stringLength;

    /* Use the length of state header string if it's longest */
    stringLength = strlen(_("State"));
    if (stringLength > stateStrLength)
        stateStrLength = stringLength;

    /* Use the length of autostart header string if it's longest */
    stringLength = strlen(_("Autostart"));
    if (stringLength > autostartStrLength)
        autostartStrLength = stringLength;

    /* Use the length of persistent header string if it's longest */
    stringLength = strlen(_("Persistent"));
    if (stringLength > persistStrLength)
        persistStrLength = stringLength;

    /* Use the length of capacity header string if it's longest */
    stringLength = strlen(_("Capacity"));
    if (stringLength > capStrLength)
        capStrLength = stringLength;

    /* Use the length of allocation header string if it's longest */
    stringLength = strlen(_("Allocation"));
    if (stringLength > allocStrLength)
        allocStrLength = stringLength;

    /* Use the length of available header string if it's longest */
    stringLength = strlen(_("Available"));
    if (stringLength > availStrLength)
        availStrLength = stringLength;

    /* Display the string lengths for debugging. */
    vshDebug(ctl, 5, "Longest name string = %lu chars\n",
             (unsigned long) nameStrLength);
    vshDebug(ctl, 5, "Longest state string = %lu chars\n",
             (unsigned long) stateStrLength);
    vshDebug(ctl, 5, "Longest autostart string = %lu chars\n",
             (unsigned long) autostartStrLength);
    vshDebug(ctl, 5, "Longest persistent string = %lu chars\n",
             (unsigned long) persistStrLength);
    vshDebug(ctl, 5, "Longest capacity string = %lu chars\n",
             (unsigned long) capStrLength);
    vshDebug(ctl, 5, "Longest allocation string = %lu chars\n",
             (unsigned long) allocStrLength);
    vshDebug(ctl, 5, "Longest available string = %lu chars\n",
             (unsigned long) availStrLength);

    /* Create the output template.  Each column is sized according to
     * the longest string.
     */
    char *outputStr;
    ret = virAsprintf(&outputStr,
              "%%-%lus  %%-%lus  %%-%lus  %%-%lus  %%%lus  %%%lus  %%%lus\n",
              (unsigned long) nameStrLength,
              (unsigned long) stateStrLength,
              (unsigned long) autostartStrLength,
              (unsigned long) persistStrLength,
              (unsigned long) capStrLength,
              (unsigned long) allocStrLength,
              (unsigned long) availStrLength);
    if (ret < 0) {
        /* An error occurred creating the string, return */
        goto asprintf_failure;
    }

    /* Display the header */
    vshPrint(ctl, outputStr, _("Name"), _("State"), _("Autostart"),
             _("Persistent"), _("Capacity"), _("Allocation"), _("Available"));
    for (i = nameStrLength + stateStrLength + autostartStrLength
                           + persistStrLength + capStrLength
                           + allocStrLength + availStrLength
                           + 12; i > 0; i--)
        vshPrintExtra(ctl, "-");
    vshPrintExtra(ctl, "\n");

    /* Display the pool info rows */
    for (i = 0; i < numAllPools; i++) {
        vshPrint(ctl, outputStr,
                 poolNames[i],
                 poolInfoTexts[i].state,
                 poolInfoTexts[i].autostart,
                 poolInfoTexts[i].persistent,
                 poolInfoTexts[i].capacity,
                 poolInfoTexts[i].allocation,
                 poolInfoTexts[i].available);
    }

    /* Cleanup and return */
    functionReturn = TRUE;
    goto cleanup;

asprintf_failure:

    /* Display an appropriate error message then cleanup and return */
    switch (errno) {
    case ENOMEM:
        /* Couldn't allocate memory */
        vshError(ctl, "%s", _("Out of memory"));
        break;
    default:
        /* Some other error */
        vshError(ctl, _("virAsprintf failed (errno %d)"), errno);
    }
    functionReturn = FALSE;
5708

5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720
cleanup:

    /* Safely free the memory allocated in this function */
    for (i = 0; i < numAllPools; i++) {
        /* Cleanup the memory for one pool info structure */
        VIR_FREE(poolInfoTexts[i].state);
        VIR_FREE(poolInfoTexts[i].autostart);
        VIR_FREE(poolInfoTexts[i].persistent);
        VIR_FREE(poolInfoTexts[i].capacity);
        VIR_FREE(poolInfoTexts[i].allocation);
        VIR_FREE(poolInfoTexts[i].available);
        VIR_FREE(poolNames[i]);
5721
    }
5722 5723 5724 5725 5726 5727 5728

    /* Cleanup the memory for the initial arrays*/
    VIR_FREE(poolInfoTexts);
    VIR_FREE(poolNames);

    /* Return the desired value */
    return functionReturn;
5729 5730
}

5731 5732 5733 5734
/*
 * "find-storage-pool-sources-as" command
 */
static const vshCmdInfo info_find_storage_pool_sources_as[] = {
5735 5736
    {"help", N_("find potential storage pool sources")},
    {"desc", N_("Returns XML <sources> document.")},
5737 5738 5739 5740 5741
    {NULL, NULL}
};

static const vshCmdOptDef opts_find_storage_pool_sources_as[] = {
    {"type", VSH_OT_DATA, VSH_OFLAG_REQ,
5742 5743 5744
     N_("type of storage pool sources to find")},
    {"host", VSH_OT_DATA, VSH_OFLAG_NONE, N_("optional host to query")},
    {"port", VSH_OT_DATA, VSH_OFLAG_NONE, N_("optional port to query")},
5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762
    {NULL, 0, 0, NULL}
};

static int
cmdPoolDiscoverSourcesAs(vshControl * ctl, const vshCmd * cmd ATTRIBUTE_UNUSED)
{
    char *type, *host;
    char *srcSpec = NULL;
    char *srcList;
    int found;

    type = vshCommandOptString(cmd, "type", &found);
    if (!found)
        return FALSE;
    host = vshCommandOptString(cmd, "host", &found);
    if (!found)
        host = NULL;

5763
    if (!vshConnectionUsability(ctl, ctl->conn))
5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779
        return FALSE;

    if (host) {
        size_t hostlen = strlen(host);
        char *port = vshCommandOptString(cmd, "port", &found);
        int ret;
        if (!found) {
            port = strrchr(host, ':');
            if (port) {
                if (*(++port))
                    hostlen = port - host - 1;
                else
                    port = NULL;
            }
        }
        ret = port ?
5780 5781 5782 5783 5784 5785
            virAsprintf(&srcSpec,
                        "<source><host name='%.*s' port='%s'/></source>",
                        (int)hostlen, host, port) :
            virAsprintf(&srcSpec,
                        "<source><host name='%.*s'/></source>",
                        (int)hostlen, host);
5786 5787 5788
        if (ret < 0) {
            switch (errno) {
            case ENOMEM:
5789
                vshError(ctl, "%s", _("Out of memory"));
5790 5791
                break;
            default:
5792
                vshError(ctl, _("virAsprintf failed (errno %d)"), errno);
5793 5794 5795 5796 5797 5798
            }
            return FALSE;
        }
    }

    srcList = virConnectFindStoragePoolSources(ctl->conn, type, srcSpec, 0);
5799
    VIR_FREE(srcSpec);
5800
    if (srcList == NULL) {
5801
        vshError(ctl, _("Failed to find any %s pool sources"), type);
5802 5803 5804
        return FALSE;
    }
    vshPrint(ctl, "%s", srcList);
5805
    VIR_FREE(srcList);
5806 5807 5808 5809 5810 5811 5812 5813 5814

    return TRUE;
}


/*
 * "find-storage-pool-sources" command
 */
static const vshCmdInfo info_find_storage_pool_sources[] = {
5815 5816
    {"help", N_("discover potential storage pool sources")},
    {"desc", N_("Returns XML <sources> document.")},
5817 5818 5819 5820 5821
    {NULL, NULL}
};

static const vshCmdOptDef opts_find_storage_pool_sources[] = {
    {"type", VSH_OT_DATA, VSH_OFLAG_REQ,
5822
     N_("type of storage pool sources to discover")},
5823
    {"srcSpec", VSH_OT_DATA, VSH_OFLAG_NONE,
5824
     N_("optional file of source xml to query for pools")},
5825 5826 5827 5828 5829 5830
    {NULL, 0, 0, NULL}
};

static int
cmdPoolDiscoverSources(vshControl * ctl, const vshCmd * cmd ATTRIBUTE_UNUSED)
{
5831 5832
    char *type, *srcSpecFile, *srcList;
    char *srcSpec = NULL;
5833 5834 5835 5836 5837 5838
    int found;

    type = vshCommandOptString(cmd, "type", &found);
    if (!found)
        return FALSE;
    srcSpecFile = vshCommandOptString(cmd, "srcSpec", &found);
5839
    if (!found)
5840 5841
        srcSpecFile = NULL;

5842
    if (!vshConnectionUsability(ctl, ctl->conn))
5843 5844 5845 5846 5847 5848
        return FALSE;

    if (srcSpecFile && virFileReadAll(srcSpecFile, VIRSH_MAX_XML_FILE, &srcSpec) < 0)
        return FALSE;

    srcList = virConnectFindStoragePoolSources(ctl->conn, type, srcSpec, 0);
5849
    VIR_FREE(srcSpec);
5850
    if (srcList == NULL) {
5851
        vshError(ctl, _("Failed to find any %s pool sources"), type);
5852 5853 5854
        return FALSE;
    }
    vshPrint(ctl, "%s", srcList);
5855
    VIR_FREE(srcList);
5856 5857 5858 5859 5860

    return TRUE;
}


5861 5862 5863
/*
 * "pool-info" command
 */
5864
static const vshCmdInfo info_pool_info[] = {
5865 5866
    {"help", N_("storage pool information")},
    {"desc", N_("Returns basic information about the storage pool.")},
5867 5868 5869
    {NULL, NULL}
};

5870
static const vshCmdOptDef opts_pool_info[] = {
5871
    {"pool", VSH_OT_DATA, VSH_OFLAG_REQ, N_("pool name or uuid")},
5872 5873 5874 5875
    {NULL, 0, 0, NULL}
};

static int
5876
cmdPoolInfo(vshControl *ctl, const vshCmd *cmd)
5877 5878 5879
{
    virStoragePoolInfo info;
    virStoragePoolPtr pool;
5880 5881
    int autostart = 0;
    int persistent = 0;
5882 5883 5884
    int ret = TRUE;
    char uuid[VIR_UUID_STRING_BUFLEN];

5885
    if (!vshConnectionUsability(ctl, ctl->conn))
5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915
        return FALSE;

    if (!(pool = vshCommandOptPool(ctl, cmd, "pool", NULL)))
        return FALSE;

    vshPrint(ctl, "%-15s %s\n", _("Name:"), virStoragePoolGetName(pool));

    if (virStoragePoolGetUUIDString(pool, &uuid[0])==0)
        vshPrint(ctl, "%-15s %s\n", _("UUID:"), uuid);

    if (virStoragePoolGetInfo(pool, &info) == 0) {
        double val;
        const char *unit;
        switch (info.state) {
        case VIR_STORAGE_POOL_INACTIVE:
            vshPrint(ctl, "%-15s %s\n", _("State:"),
                     _("inactive"));
            break;
        case VIR_STORAGE_POOL_BUILDING:
            vshPrint(ctl, "%-15s %s\n", _("State:"),
                     _("building"));
            break;
        case VIR_STORAGE_POOL_RUNNING:
            vshPrint(ctl, "%-15s %s\n", _("State:"),
                     _("running"));
            break;
        case VIR_STORAGE_POOL_DEGRADED:
            vshPrint(ctl, "%-15s %s\n", _("State:"),
                     _("degraded"));
            break;
5916 5917 5918 5919
        case VIR_STORAGE_POOL_INACCESSIBLE:
            vshPrint(ctl, "%-15s %s\n", _("State:"),
                     _("inaccessible"));
            break;
5920 5921
        }

5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937
        /* Check and display whether the pool is persistent or not */
        persistent = virStoragePoolIsPersistent(pool);
        vshDebug(ctl, 5, "Pool persistent flag value: %d\n", persistent);
        if (persistent < 0)
            vshPrint(ctl, "%-15s %s\n", _("Persistent:"),  _("unknown"));
        else
            vshPrint(ctl, "%-15s %s\n", _("Persistent:"), persistent ? _("yes") : _("no"));

        /* Check and display whether the pool is autostarted or not */
        virStoragePoolGetAutostart(pool, &autostart);
        vshDebug(ctl, 5, "Pool autostart flag value: %d\n", autostart);
        if (autostart < 0)
            vshPrint(ctl, "%-15s %s\n", _("Autostart:"), _("no autostart"));
        else
            vshPrint(ctl, "%-15s %s\n", _("Autostart:"), autostart ? _("yes") : _("no"));

5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960
        if (info.state == VIR_STORAGE_POOL_RUNNING ||
            info.state == VIR_STORAGE_POOL_DEGRADED) {
            val = prettyCapacity(info.capacity, &unit);
            vshPrint(ctl, "%-15s %2.2lf %s\n", _("Capacity:"), val, unit);

            val = prettyCapacity(info.allocation, &unit);
            vshPrint(ctl, "%-15s %2.2lf %s\n", _("Allocation:"), val, unit);

            val = prettyCapacity(info.available, &unit);
            vshPrint(ctl, "%-15s %2.2lf %s\n", _("Available:"), val, unit);
        }
    } else {
        ret = FALSE;
    }

    virStoragePoolFree(pool);
    return ret;
}


/*
 * "pool-name" command
 */
5961
static const vshCmdInfo info_pool_name[] = {
5962
    {"help", N_("convert a pool UUID to pool name")},
5963
    {"desc", ""},
5964 5965 5966
    {NULL, NULL}
};

5967
static const vshCmdOptDef opts_pool_name[] = {
5968
    {"pool", VSH_OT_DATA, VSH_OFLAG_REQ, N_("pool uuid")},
5969 5970 5971 5972
    {NULL, 0, 0, NULL}
};

static int
5973
cmdPoolName(vshControl *ctl, const vshCmd *cmd)
5974 5975 5976
{
    virStoragePoolPtr pool;

5977
    if (!vshConnectionUsability(ctl, ctl->conn))
5978 5979
        return FALSE;
    if (!(pool = vshCommandOptPoolBy(ctl, cmd, "pool", NULL,
5980
                                           VSH_BYUUID)))
5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991
        return FALSE;

    vshPrint(ctl, "%s\n", virStoragePoolGetName(pool));
    virStoragePoolFree(pool);
    return TRUE;
}


/*
 * "pool-start" command
 */
5992
static const vshCmdInfo info_pool_start[] = {
5993 5994
    {"help", N_("start a (previously defined) inactive pool")},
    {"desc", N_("Start a pool.")},
5995 5996 5997
    {NULL, NULL}
};

5998
static const vshCmdOptDef opts_pool_start[] = {
5999
    {"pool", VSH_OT_DATA, VSH_OFLAG_REQ, N_("name of the inactive pool")},
6000 6001 6002 6003
    {NULL, 0, 0, NULL}
};

static int
6004
cmdPoolStart(vshControl *ctl, const vshCmd *cmd)
6005 6006 6007 6008
{
    virStoragePoolPtr pool;
    int ret = TRUE;

6009
    if (!vshConnectionUsability(ctl, ctl->conn))
6010 6011
        return FALSE;

6012
    if (!(pool = vshCommandOptPoolBy(ctl, cmd, "pool", NULL, VSH_BYNAME)))
6013 6014 6015 6016 6017 6018
         return FALSE;

    if (virStoragePoolCreate(pool, 0) == 0) {
        vshPrint(ctl, _("Pool %s started\n"),
                 virStoragePoolGetName(pool));
    } else {
6019
        vshError(ctl, _("Failed to start pool %s"), virStoragePoolGetName(pool));
6020 6021
        ret = FALSE;
    }
L
Laine Stump 已提交
6022 6023

    virStoragePoolFree(pool);
6024 6025 6026 6027
    return ret;
}


6028 6029 6030
/*
 * "vol-create-as" command
 */
6031
static const vshCmdInfo info_vol_create_as[] = {
6032 6033
    {"help", N_("create a volume from a set of args")},
    {"desc", N_("Create a vol.")},
6034 6035 6036
    {NULL, NULL}
};

6037
static const vshCmdOptDef opts_vol_create_as[] = {
6038 6039 6040 6041 6042
    {"pool", VSH_OT_DATA, VSH_OFLAG_REQ, N_("pool name")},
    {"name", VSH_OT_DATA, VSH_OFLAG_REQ, N_("name of the volume")},
    {"capacity", VSH_OT_DATA, VSH_OFLAG_REQ, N_("size of the vol with optional k,M,G,T suffix")},
    {"allocation", VSH_OT_STRING, 0, N_("initial allocation size with optional k,M,G,T suffix")},
    {"format", VSH_OT_STRING, 0, N_("file format type raw,bochs,qcow,qcow2,vmdk")},
6043 6044
    {"backing-vol", VSH_OT_STRING, 0, N_("the backing volume if taking a snapshot")},
    {"backing-vol-format", VSH_OT_STRING, 0, N_("format of backing volume if taking a snapshot")},
6045 6046 6047 6048 6049 6050 6051 6052 6053 6054
    {NULL, 0, 0, NULL}
};

static int cmdVolSize(const char *data, unsigned long long *val)
{
    char *end;
    if (virStrToLong_ull(data, &end, 10, val) < 0)
        return -1;

    if (end && *end) {
D
Daniel Veillard 已提交
6055
        /* Deliberate fallthrough cases here :-) */
6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076
        switch (*end) {
        case 'T':
            *val *= 1024;
        case 'G':
            *val *= 1024;
        case 'M':
            *val *= 1024;
        case 'k':
            *val *= 1024;
            break;
        default:
            return -1;
        }
        end++;
        if (*end)
            return -1;
    }
    return 0;
}

static int
6077
cmdVolCreateAs(vshControl *ctl, const vshCmd *cmd)
6078 6079 6080 6081
{
    virStoragePoolPtr pool;
    virStorageVolPtr vol;
    int found;
6082
    char *xml;
6083
    char *name, *capacityStr, *allocationStr, *format;
6084
    char *snapshotStrVol, *snapshotStrFormat;
6085
    unsigned long long capacity, allocation = 0;
6086
    virBuffer buf = VIR_BUFFER_INITIALIZER;
6087

6088
    if (!vshConnectionUsability(ctl, ctl->conn))
6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102
        return FALSE;

    if (!(pool = vshCommandOptPoolBy(ctl, cmd, "pool", NULL,
                                     VSH_BYNAME)))
        return FALSE;

    name = vshCommandOptString(cmd, "name", &found);
    if (!found)
        goto cleanup;

    capacityStr = vshCommandOptString(cmd, "capacity", &found);
    if (!found)
        goto cleanup;
    if (cmdVolSize(capacityStr, &capacity) < 0)
6103
        vshError(ctl, _("Malformed size %s"), capacityStr);
6104 6105 6106 6107

    allocationStr = vshCommandOptString(cmd, "allocation", &found);
    if (allocationStr &&
        cmdVolSize(allocationStr, &allocation) < 0)
6108
        vshError(ctl, _("Malformed size %s"), allocationStr);
6109 6110

    format = vshCommandOptString(cmd, "format", &found);
6111 6112
    snapshotStrVol = vshCommandOptString(cmd, "backing-vol", &found);
    snapshotStrFormat = vshCommandOptString(cmd, "backing-vol-format", &found);
6113

6114 6115 6116 6117 6118
    virBufferAddLit(&buf, "<volume>\n");
    virBufferVSprintf(&buf, "  <name>%s</name>\n", name);
    virBufferVSprintf(&buf, "  <capacity>%llu</capacity>\n", capacity);
    if (allocationStr)
        virBufferVSprintf(&buf, "  <allocation>%llu</allocation>\n", allocation);
6119 6120

    if (format) {
6121
        virBufferAddLit(&buf, "  <target>\n");
6122
        virBufferVSprintf(&buf, "    <format type='%s'/>\n",format);
6123
        virBufferAddLit(&buf, "  </target>\n");
6124
    }
6125

6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180
    /* Convert the snapshot parameters into backingStore XML */
    if (snapshotStrVol) {
        /* Lookup snapshot backing volume.  Try the backing-vol
         *  parameter as a name */
        vshDebug(ctl, 5, "%s: Look up backing store volume '%s' as name\n",
                 cmd->def->name, snapshotStrVol);
        virStorageVolPtr snapVol = virStorageVolLookupByName(pool, snapshotStrVol);
        if (snapVol)
                vshDebug(ctl, 5, "%s: Backing store volume found using '%s' as name\n",
                         cmd->def->name, snapshotStrVol);

        if (snapVol == NULL) {
            /* Snapshot backing volume not found by name.  Try the
             *  backing-vol parameter as a key */
            vshDebug(ctl, 5, "%s: Look up backing store volume '%s' as key\n",
                     cmd->def->name, snapshotStrVol);
            snapVol = virStorageVolLookupByKey(ctl->conn, snapshotStrVol);
            if (snapVol)
                vshDebug(ctl, 5, "%s: Backing store volume found using '%s' as key\n",
                         cmd->def->name, snapshotStrVol);
        }
        if (snapVol == NULL) {
            /* Snapshot backing volume not found by key.  Try the
             *  backing-vol parameter as a path */
            vshDebug(ctl, 5, "%s: Look up backing store volume '%s' as path\n",
                     cmd->def->name, snapshotStrVol);
            snapVol = virStorageVolLookupByPath(ctl->conn, snapshotStrVol);
            if (snapVol)
                vshDebug(ctl, 5, "%s: Backing store volume found using '%s' as path\n",
                         cmd->def->name, snapshotStrVol);
        }
        if (snapVol == NULL) {
            vshError(ctl, _("failed to get vol '%s'"), snapshotStrVol);
            return FALSE;
        }

        char *snapshotStrVolPath;
        if ((snapshotStrVolPath = virStorageVolGetPath(snapVol)) == NULL) {
            virStorageVolFree(snapVol);
            return FALSE;
        }

        /* Create XML for the backing store */
        virBufferAddLit(&buf, "  <backingStore>\n");
        virBufferVSprintf(&buf, "    <path>%s</path>\n",snapshotStrVolPath);
        if (snapshotStrFormat)
            virBufferVSprintf(&buf, "    <format type='%s'/>\n",snapshotStrFormat);
        virBufferAddLit(&buf, "  </backingStore>\n");

        /* Cleanup snapshot allocations */
        VIR_FREE(snapshotStrVolPath);
        virStorageVolFree(snapVol);
    }

    virBufferAddLit(&buf, "</volume>\n");
6181

6182 6183 6184 6185 6186 6187
    if (virBufferError(&buf)) {
        vshPrint(ctl, "%s", _("Failed to allocate XML buffer"));
        return FALSE;
    }
    xml = virBufferContentAndReset(&buf);
    vol = virStorageVolCreateXML(pool, xml, 0);
6188
    VIR_FREE(xml);
6189 6190 6191 6192 6193 6194 6195
    virStoragePoolFree(pool);

    if (vol != NULL) {
        vshPrint(ctl, _("Vol %s created\n"), name);
        virStorageVolFree(vol);
        return TRUE;
    } else {
6196
        vshError(ctl, _("Failed to create vol %s"), name);
6197 6198 6199 6200
        return FALSE;
    }

 cleanup:
6201
    virBufferFreeAndReset(&buf);
6202 6203 6204 6205 6206
    virStoragePoolFree(pool);
    return FALSE;
}


6207 6208 6209
/*
 * "pool-undefine" command
 */
6210
static const vshCmdInfo info_pool_undefine[] = {
6211 6212
    {"help", N_("undefine an inactive pool")},
    {"desc", N_("Undefine the configuration for an inactive pool.")},
6213 6214 6215
    {NULL, NULL}
};

6216
static const vshCmdOptDef opts_pool_undefine[] = {
6217
    {"pool", VSH_OT_DATA, VSH_OFLAG_REQ, N_("pool name or uuid")},
6218 6219 6220 6221
    {NULL, 0, 0, NULL}
};

static int
6222
cmdPoolUndefine(vshControl *ctl, const vshCmd *cmd)
6223 6224 6225 6226 6227
{
    virStoragePoolPtr pool;
    int ret = TRUE;
    char *name;

6228
    if (!vshConnectionUsability(ctl, ctl->conn))
6229 6230 6231 6232 6233 6234 6235 6236
        return FALSE;

    if (!(pool = vshCommandOptPool(ctl, cmd, "pool", &name)))
        return FALSE;

    if (virStoragePoolUndefine(pool) == 0) {
        vshPrint(ctl, _("Pool %s has been undefined\n"), name);
    } else {
6237
        vshError(ctl, _("Failed to undefine pool %s"), name);
6238 6239 6240
        ret = FALSE;
    }

L
Laine Stump 已提交
6241
    virStoragePoolFree(pool);
6242 6243 6244 6245 6246 6247 6248
    return ret;
}


/*
 * "pool-uuid" command
 */
6249
static const vshCmdInfo info_pool_uuid[] = {
6250
    {"help", N_("convert a pool name to pool UUID")},
6251
    {"desc", ""},
6252 6253 6254
    {NULL, NULL}
};

6255
static const vshCmdOptDef opts_pool_uuid[] = {
6256
    {"pool", VSH_OT_DATA, VSH_OFLAG_REQ, N_("pool name")},
6257 6258 6259 6260
    {NULL, 0, 0, NULL}
};

static int
6261
cmdPoolUuid(vshControl *ctl, const vshCmd *cmd)
6262 6263 6264 6265
{
    virStoragePoolPtr pool;
    char uuid[VIR_UUID_STRING_BUFLEN];

6266
    if (!vshConnectionUsability(ctl, ctl->conn))
6267 6268 6269
        return FALSE;

    if (!(pool = vshCommandOptPoolBy(ctl, cmd, "pool", NULL,
6270
                                           VSH_BYNAME)))
6271 6272 6273 6274 6275
        return FALSE;

    if (virStoragePoolGetUUIDString(pool, uuid) != -1)
        vshPrint(ctl, "%s\n", uuid);
    else
6276
        vshError(ctl, "%s", _("failed to get pool UUID"));
6277

L
Laine Stump 已提交
6278
    virStoragePoolFree(pool);
6279 6280 6281 6282 6283 6284 6285
    return TRUE;
}


/*
 * "vol-create" command
 */
6286
static const vshCmdInfo info_vol_create[] = {
6287 6288
    {"help", N_("create a vol from an XML file")},
    {"desc", N_("Create a vol.")},
6289 6290 6291
    {NULL, NULL}
};

6292
static const vshCmdOptDef opts_vol_create[] = {
6293 6294
    {"pool", VSH_OT_DATA, VSH_OFLAG_REQ, N_("pool name")},
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ, N_("file containing an XML vol description")},
6295 6296 6297 6298
    {NULL, 0, 0, NULL}
};

static int
6299
cmdVolCreate(vshControl *ctl, const vshCmd *cmd)
6300 6301 6302 6303 6304 6305 6306 6307
{
    virStoragePoolPtr pool;
    virStorageVolPtr vol;
    char *from;
    int found;
    int ret = TRUE;
    char *buffer;

6308
    if (!vshConnectionUsability(ctl, ctl->conn))
6309 6310 6311
        return FALSE;

    if (!(pool = vshCommandOptPoolBy(ctl, cmd, "pool", NULL,
6312
                                           VSH_BYNAME)))
6313 6314 6315 6316 6317 6318 6319 6320 6321
        return FALSE;

    from = vshCommandOptString(cmd, "file", &found);
    if (!found) {
        virStoragePoolFree(pool);
        return FALSE;
    }

    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0) {
6322
        virshReportError(ctl);
6323 6324 6325 6326 6327
        virStoragePoolFree(pool);
        return FALSE;
    }

    vol = virStorageVolCreateXML(pool, buffer, 0);
6328
    VIR_FREE(buffer);
6329 6330 6331 6332 6333 6334 6335
    virStoragePoolFree(pool);

    if (vol != NULL) {
        vshPrint(ctl, _("Vol %s created from %s\n"),
                 virStorageVolGetName(vol), from);
        virStorageVolFree(vol);
    } else {
6336
        vshError(ctl, _("Failed to create vol from %s"), from);
6337 6338 6339 6340 6341
        ret = FALSE;
    }
    return ret;
}

6342 6343 6344 6345
/*
 * "vol-create-from" command
 */
static const vshCmdInfo info_vol_create_from[] = {
6346 6347
    {"help", N_("create a vol, using another volume as input")},
    {"desc", N_("Create a vol from an existing volume.")},
6348 6349 6350 6351
    {NULL, NULL}
};

static const vshCmdOptDef opts_vol_create_from[] = {
6352 6353 6354 6355
    {"pool", VSH_OT_DATA, VSH_OFLAG_REQ, N_("pool name")},
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ, N_("file containing an XML vol description")},
    {"inputpool", VSH_OT_STRING, 0, N_("pool name or uuid of the input volume's pool")},
    {"vol", VSH_OT_DATA, VSH_OFLAG_REQ, N_("input vol name or key")},
6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368
    {NULL, 0, 0, NULL}
};

static int
cmdVolCreateFrom(vshControl *ctl, const vshCmd *cmd)
{
    virStoragePoolPtr pool = NULL;
    virStorageVolPtr newvol = NULL, inputvol = NULL;
    char *from;
    int found;
    int ret = FALSE;
    char *buffer = NULL;

6369
    if (!vshConnectionUsability(ctl, ctl->conn))
6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383
        goto cleanup;

    if (!(pool = vshCommandOptPoolBy(ctl, cmd, "pool", NULL, VSH_BYNAME)))
        goto cleanup;

    from = vshCommandOptString(cmd, "file", &found);
    if (!found) {
        goto cleanup;
    }

    if (!(inputvol = vshCommandOptVol(ctl, cmd, "vol", "inputpool", NULL)))
        goto cleanup;

    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0) {
6384
        virshReportError(ctl);
6385 6386 6387 6388 6389 6390 6391 6392 6393
        goto cleanup;
    }

    newvol = virStorageVolCreateXMLFrom(pool, buffer, inputvol, 0);

    if (newvol != NULL) {
        vshPrint(ctl, _("Vol %s created from input vol %s\n"),
                 virStorageVolGetName(newvol), virStorageVolGetName(inputvol));
    } else {
6394
        vshError(ctl, _("Failed to create vol from %s"), from);
6395 6396 6397 6398 6399
        goto cleanup;
    }

    ret = TRUE;
cleanup:
6400
    VIR_FREE(buffer);
6401 6402 6403 6404
    if (pool)
        virStoragePoolFree(pool);
    if (inputvol)
        virStorageVolFree(inputvol);
L
Laine Stump 已提交
6405 6406
    if (newvol)
        virStorageVolFree(newvol);
6407 6408 6409 6410 6411 6412
    return ret;
}

static xmlChar *
makeCloneXML(char *origxml, char *newname) {

6413 6414 6415
    xmlDocPtr doc = NULL;
    xmlXPathContextPtr ctxt = NULL;
    xmlXPathObjectPtr obj = NULL;
6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445
    xmlChar *newxml = NULL;
    int size;

    doc = xmlReadDoc((const xmlChar *) origxml, "domain.xml", NULL,
                     XML_PARSE_NOENT | XML_PARSE_NONET | XML_PARSE_NOWARNING);
    if (!doc)
        goto cleanup;
    ctxt = xmlXPathNewContext(doc);
    if (!ctxt)
        goto cleanup;

    obj = xmlXPathEval(BAD_CAST "/volume/name", ctxt);
    if ((obj == NULL) || (obj->nodesetval == NULL) ||
        (obj->nodesetval->nodeTab == NULL))
        goto cleanup;

    xmlNodeSetContent(obj->nodesetval->nodeTab[0], (const xmlChar *)newname);
    xmlDocDumpMemory(doc, &newxml, &size);

cleanup:
    xmlXPathFreeObject(obj);
    xmlXPathFreeContext(ctxt);
    xmlFreeDoc(doc);
    return newxml;
}

/*
 * "vol-clone" command
 */
static const vshCmdInfo info_vol_clone[] = {
6446 6447
    {"help", N_("clone a volume.")},
    {"desc", N_("Clone an existing volume.")},
6448 6449 6450 6451
    {NULL, NULL}
};

static const vshCmdOptDef opts_vol_clone[] = {
6452 6453 6454
    {"pool", VSH_OT_STRING, 0, N_("pool name or uuid")},
    {"vol", VSH_OT_DATA, VSH_OFLAG_REQ, N_("orig vol name or key")},
    {"newname", VSH_OT_DATA, VSH_OFLAG_REQ, N_("clone name")},
6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467
    {NULL, 0, 0, NULL}
};

static int
cmdVolClone(vshControl *ctl, const vshCmd *cmd)
{
    virStoragePoolPtr origpool = NULL;
    virStorageVolPtr origvol = NULL, newvol = NULL;
    char *name, *origxml = NULL;
    xmlChar *newxml = NULL;
    int found;
    int ret = FALSE;

6468
    if (!vshConnectionUsability(ctl, ctl->conn))
6469 6470 6471 6472 6473 6474 6475
        goto cleanup;

    if (!(origvol = vshCommandOptVol(ctl, cmd, "vol", "pool", NULL)))
        goto cleanup;

    origpool = virStoragePoolLookupByVolume(origvol);
    if (!origpool) {
6476
        vshError(ctl, "%s", _("failed to get parent pool"));
6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499
        goto cleanup;
    }

    name = vshCommandOptString(cmd, "newname", &found);
    if (!found)
        goto cleanup;

    origxml = virStorageVolGetXMLDesc(origvol, 0);
    if (!origxml)
        goto cleanup;

    newxml = makeCloneXML(origxml, name);
    if (!newxml) {
        vshPrint(ctl, "%s", _("Failed to allocate XML buffer"));
        goto cleanup;
    }

    newvol = virStorageVolCreateXMLFrom(origpool, (char *) newxml, origvol, 0);

    if (newvol != NULL) {
        vshPrint(ctl, _("Vol %s cloned from %s\n"),
                 virStorageVolGetName(newvol), virStorageVolGetName(origvol));
    } else {
6500
        vshError(ctl, _("Failed to clone vol from %s"),
6501 6502 6503 6504 6505 6506 6507
                 virStorageVolGetName(origvol));
        goto cleanup;
    }

    ret = TRUE;

cleanup:
6508
    VIR_FREE(origxml);
6509 6510 6511
    xmlFree(newxml);
    if (origvol)
        virStorageVolFree(origvol);
L
Laine Stump 已提交
6512 6513
    if (newvol)
        virStorageVolFree(newvol);
6514 6515 6516 6517 6518
    if (origpool)
        virStoragePoolFree(origpool);
    return ret;
}

6519 6520 6521
/*
 * "vol-delete" command
 */
6522
static const vshCmdInfo info_vol_delete[] = {
6523 6524
    {"help", N_("delete a vol")},
    {"desc", N_("Delete a given vol.")},
6525 6526 6527
    {NULL, NULL}
};

6528
static const vshCmdOptDef opts_vol_delete[] = {
6529 6530
    {"pool", VSH_OT_STRING, 0, N_("pool name or uuid")},
    {"vol", VSH_OT_DATA, VSH_OFLAG_REQ, N_("vol name, key or path")},
6531 6532 6533 6534
    {NULL, 0, 0, NULL}
};

static int
6535
cmdVolDelete(vshControl *ctl, const vshCmd *cmd)
6536 6537 6538 6539 6540
{
    virStorageVolPtr vol;
    int ret = TRUE;
    char *name;

6541
    if (!vshConnectionUsability(ctl, ctl->conn))
6542 6543 6544 6545 6546 6547 6548
        return FALSE;

    if (!(vol = vshCommandOptVol(ctl, cmd, "vol", "pool", &name))) {
        return FALSE;
    }

    if (virStorageVolDelete(vol, 0) == 0) {
D
Daniel Veillard 已提交
6549
        vshPrint(ctl, _("Vol %s deleted\n"), name);
6550
    } else {
6551
        vshError(ctl, _("Failed to delete vol %s"), name);
6552 6553 6554
        ret = FALSE;
    }

L
Laine Stump 已提交
6555
    virStorageVolFree(vol);
6556 6557 6558 6559
    return ret;
}


D
David Allan 已提交
6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581
/*
 * "vol-wipe" command
 */
static const vshCmdInfo info_vol_wipe[] = {
    {"help", N_("wipe a vol")},
    {"desc", N_("Ensure data previously on a volume is not accessible to future reads")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_vol_wipe[] = {
    {"pool", VSH_OT_STRING, 0, N_("pool name or uuid")},
    {"vol", VSH_OT_DATA, VSH_OFLAG_REQ, N_("vol name, key or path")},
    {NULL, 0, 0, NULL}
};

static int
cmdVolWipe(vshControl *ctl, const vshCmd *cmd)
{
    virStorageVolPtr vol;
    int ret = TRUE;
    char *name;

6582
    if (!vshConnectionUsability(ctl, ctl->conn))
D
David Allan 已提交
6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600
        return FALSE;

    if (!(vol = vshCommandOptVol(ctl, cmd, "vol", "pool", &name))) {
        return FALSE;
    }

    if (virStorageVolWipe(vol, 0) == 0) {
        vshPrint(ctl, _("Vol %s wiped\n"), name);
    } else {
        vshError(ctl, _("Failed to wipe vol %s"), name);
        ret = FALSE;
    }

    virStorageVolFree(vol);
    return ret;
}


6601 6602 6603
/*
 * "vol-info" command
 */
6604
static const vshCmdInfo info_vol_info[] = {
6605 6606
    {"help", N_("storage vol information")},
    {"desc", N_("Returns basic information about the storage vol.")},
6607 6608 6609
    {NULL, NULL}
};

6610
static const vshCmdOptDef opts_vol_info[] = {
6611 6612
    {"pool", VSH_OT_STRING, 0, N_("pool name or uuid")},
    {"vol", VSH_OT_DATA, VSH_OFLAG_REQ, N_("vol name, key or path")},
6613 6614 6615 6616
    {NULL, 0, 0, NULL}
};

static int
6617
cmdVolInfo(vshControl *ctl, const vshCmd *cmd)
6618 6619 6620 6621 6622
{
    virStorageVolInfo info;
    virStorageVolPtr vol;
    int ret = TRUE;

6623
    if (!vshConnectionUsability(ctl, ctl->conn))
6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654
        return FALSE;

    if (!(vol = vshCommandOptVol(ctl, cmd, "vol", "pool", NULL)))
        return FALSE;

    vshPrint(ctl, "%-15s %s\n", _("Name:"), virStorageVolGetName(vol));

    if (virStorageVolGetInfo(vol, &info) == 0) {
        double val;
        const char *unit;
        vshPrint(ctl, "%-15s %s\n", _("Type:"),
                 info.type == VIR_STORAGE_VOL_FILE ?
                 _("file") : _("block"));

        val = prettyCapacity(info.capacity, &unit);
        vshPrint(ctl, "%-15s %2.2lf %s\n", _("Capacity:"), val, unit);

        val = prettyCapacity(info.allocation, &unit);
        vshPrint(ctl, "%-15s %2.2lf %s\n", _("Allocation:"), val, unit);
    } else {
        ret = FALSE;
    }

    virStorageVolFree(vol);
    return ret;
}


/*
 * "vol-dumpxml" command
 */
6655
static const vshCmdInfo info_vol_dumpxml[] = {
6656 6657
    {"help", N_("vol information in XML")},
    {"desc", N_("Output the vol information as an XML dump to stdout.")},
6658 6659 6660
    {NULL, NULL}
};

6661
static const vshCmdOptDef opts_vol_dumpxml[] = {
6662 6663
    {"pool", VSH_OT_STRING, 0, N_("pool name or uuid")},
    {"vol", VSH_OT_DATA, VSH_OFLAG_REQ, N_("vol name, key or path")},
6664 6665 6666 6667
    {NULL, 0, 0, NULL}
};

static int
6668
cmdVolDumpXML(vshControl *ctl, const vshCmd *cmd)
6669 6670 6671 6672 6673
{
    virStorageVolPtr vol;
    int ret = TRUE;
    char *dump;

6674
    if (!vshConnectionUsability(ctl, ctl->conn))
6675 6676 6677 6678 6679 6680 6681
        return FALSE;

    if (!(vol = vshCommandOptVol(ctl, cmd, "vol", "pool", NULL)))
        return FALSE;

    dump = virStorageVolGetXMLDesc(vol, 0);
    if (dump != NULL) {
6682
        vshPrint(ctl, "%s", dump);
6683
        VIR_FREE(dump);
6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695
    } else {
        ret = FALSE;
    }

    virStorageVolFree(vol);
    return ret;
}


/*
 * "vol-list" command
 */
6696
static const vshCmdInfo info_vol_list[] = {
6697 6698
    {"help", N_("list vols")},
    {"desc", N_("Returns list of vols by pool.")},
6699 6700 6701
    {NULL, NULL}
};

6702
static const vshCmdOptDef opts_vol_list[] = {
6703
    {"pool", VSH_OT_DATA, VSH_OFLAG_REQ, N_("pool name or uuid")},
6704
    {"details", VSH_OT_BOOL, 0, N_("display extended details for volumes")},
6705 6706 6707 6708
    {NULL, 0, 0, NULL}
};

static int
6709
cmdVolList(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
6710
{
6711
    virStorageVolInfo volumeInfo;
6712 6713
    virStoragePoolPtr pool;
    char **activeNames = NULL;
6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730
    char *outputStr = NULL;
    const char *unit;
    double val;
    int details = vshCommandOptBool(cmd, "details");
    int numVolumes = 0, i;
    int ret, functionReturn;
    int stringLength = 0;
    size_t allocStrLength = 0, capStrLength = 0;
    size_t nameStrLength = 0, pathStrLength = 0;
    size_t typeStrLength = 0;
    struct volInfoText {
        char *allocation;
        char *capacity;
        char *path;
        char *type;
    };
    struct volInfoText *volInfoTexts = NULL;
6731

6732
    /* Check the connection to libvirtd daemon is still working */
6733
    if (!vshConnectionUsability(ctl, ctl->conn))
6734 6735
        return FALSE;

6736
    /* Look up the pool information given to us by the user */
6737 6738 6739
    if (!(pool = vshCommandOptPool(ctl, cmd, "pool", NULL)))
        return FALSE;

6740 6741
    /* Determine the number of volumes in the pool */
    numVolumes = virStoragePoolNumOfVolumes(pool);
6742

6743 6744 6745 6746 6747
    /* Retrieve the list of volume names in the pool */
    if (numVolumes > 0) {
        activeNames = vshCalloc(ctl, numVolumes, sizeof(*activeNames));
        if ((numVolumes = virStoragePoolListVolumes(pool, activeNames,
                                                    numVolumes)) < 0) {
6748
            vshError(ctl, "%s", _("Failed to list active vols"));
6749
            VIR_FREE(activeNames);
6750 6751 6752 6753
            virStoragePoolFree(pool);
            return FALSE;
        }

6754 6755 6756 6757 6758
        /* Sort the volume names */
        qsort(&activeNames[0], numVolumes, sizeof(*activeNames), namesorter);

        /* Set aside memory for volume information pointers */
        volInfoTexts = vshCalloc(ctl, numVolumes, sizeof(*volInfoTexts));
6759 6760
    }

6761 6762 6763 6764 6765
    /* Collect the rest of the volume information for display */
    for (i = 0; i < numVolumes; i++) {
        /* Retrieve volume info */
        virStorageVolPtr vol = virStorageVolLookupByName(pool,
                                                         activeNames[i]);
6766

6767 6768 6769 6770
        /* Retrieve the volume path */
        if ((volInfoTexts[i].path = virStorageVolGetPath(vol)) == NULL) {
            /* Something went wrong retrieving a volume path, cope with it */
            volInfoTexts[i].path = vshStrdup(ctl, _("unknown"));
6771 6772
        }

6773 6774 6775 6776 6777 6778 6779 6780 6781
        /* If requested, retrieve volume type and sizing information */
        if (details) {
            if (virStorageVolGetInfo(vol, &volumeInfo) != 0) {
                /* Something went wrong retrieving volume info, cope with it */
                volInfoTexts[i].allocation = vshStrdup(ctl, _("unknown"));
                volInfoTexts[i].capacity = vshStrdup(ctl, _("unknown"));
                volInfoTexts[i].type = vshStrdup(ctl, _("unknown"));
            } else {
                /* Convert the returned volume info into output strings */
6782

6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837
                /* Volume type */
                if (volumeInfo.type == VIR_STORAGE_VOL_FILE)
                    volInfoTexts[i].type = vshStrdup(ctl, _("file"));
                else
                    volInfoTexts[i].type = vshStrdup(ctl, _("block"));

                /* Create the capacity output string */
                val = prettyCapacity(volumeInfo.capacity, &unit);
                ret = virAsprintf(&volInfoTexts[i].capacity,
                                  "%.2lf %s", val, unit);
                if (ret < 0) {
                    /* An error occurred creating the string, return */
                    goto asprintf_failure;
                }

                /* Create the allocation output string */
                val = prettyCapacity(volumeInfo.allocation, &unit);
                ret = virAsprintf(&volInfoTexts[i].allocation,
                                  "%.2lf %s", val, unit);
                if (ret < 0) {
                    /* An error occurred creating the string, return */
                    goto asprintf_failure;
                }
            }

            /* Remember the largest length for each output string.
             * This lets us displaying header and volume information rows
             * using a single, properly sized, printf style output string.
             */

            /* Keep the length of name string if longest so far */
            stringLength = strlen(activeNames[i]);
            if (stringLength > nameStrLength)
                nameStrLength = stringLength;

            /* Keep the length of path string if longest so far */
            stringLength = strlen(volInfoTexts[i].path);
            if (stringLength > pathStrLength)
                pathStrLength = stringLength;

            /* Keep the length of type string if longest so far */
            stringLength = strlen(volInfoTexts[i].type);
            if (stringLength > typeStrLength)
                typeStrLength = stringLength;

            /* Keep the length of capacity string if longest so far */
            stringLength = strlen(volInfoTexts[i].capacity);
            if (stringLength > capStrLength)
                capStrLength = stringLength;

            /* Keep the length of allocation string if longest so far */
            stringLength = strlen(volInfoTexts[i].allocation);
            if (stringLength > allocStrLength)
                allocStrLength = stringLength;
        }
6838

6839
        /* Cleanup memory allocation */
6840
        virStorageVolFree(vol);
6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890
    }

    /* If the --details option wasn't selected, we output the volume
     * info using the fixed string format from previous versions to
     * maintain backward compatibility.
     */

    /* Output basic info then return if --details option not selected */
    if (!details) {
        /* The old output format */
        vshPrintExtra(ctl, "%-20s %-40s\n", _("Name"), _("Path"));
        vshPrintExtra(ctl, "-----------------------------------------\n");
        for (i = 0; i < numVolumes; i++) {
            vshPrint(ctl, "%-20s %-40s\n", activeNames[i],
                     volInfoTexts[i].path);
        }

        /* Cleanup and return */
        functionReturn = TRUE;
        goto cleanup;
    }

    /* We only get here if the --details option was selected. */

    /* Use the length of name header string if it's longest */
    stringLength = strlen(_("Name"));
    if (stringLength > nameStrLength)
        nameStrLength = stringLength;

    /* Use the length of path header string if it's longest */
    stringLength = strlen(_("Path"));
    if (stringLength > pathStrLength)
        pathStrLength = stringLength;

    /* Use the length of type header string if it's longest */
    stringLength = strlen(_("Type"));
    if (stringLength > typeStrLength)
        typeStrLength = stringLength;

    /* Use the length of capacity header string if it's longest */
    stringLength = strlen(_("Capacity"));
    if (stringLength > capStrLength)
        capStrLength = stringLength;

    /* Use the length of allocation header string if it's longest */
    stringLength = strlen(_("Allocation"));
    if (stringLength > allocStrLength)
        allocStrLength = stringLength;

    /* Display the string lengths for debugging */
C
Chris Lalancette 已提交
6891 6892 6893 6894 6895
    vshDebug(ctl, 5, "Longest name string = %zu chars\n", nameStrLength);
    vshDebug(ctl, 5, "Longest path string = %zu chars\n", pathStrLength);
    vshDebug(ctl, 5, "Longest type string = %zu chars\n", typeStrLength);
    vshDebug(ctl, 5, "Longest capacity string = %zu chars\n", capStrLength);
    vshDebug(ctl, 5, "Longest allocation string = %zu chars\n", allocStrLength);
6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955

    /* Create the output template */
    ret = virAsprintf(&outputStr,
                      "%%-%lus  %%-%lus  %%-%lus  %%%lus  %%%lus\n",
                      (unsigned long) nameStrLength,
                      (unsigned long) pathStrLength,
                      (unsigned long) typeStrLength,
                      (unsigned long) capStrLength,
                      (unsigned long) allocStrLength);
    if (ret < 0) {
        /* An error occurred creating the string, return */
        goto asprintf_failure;
    }

    /* Display the header */
    vshPrint(ctl, outputStr, _("Name"), _("Path"), _("Type"),
             ("Capacity"), _("Allocation"));
    for (i = nameStrLength + pathStrLength + typeStrLength
                           + capStrLength + allocStrLength
                           + 8; i > 0; i--)
        vshPrintExtra(ctl, "-");
    vshPrintExtra(ctl, "\n");

    /* Display the volume info rows */
    for (i = 0; i < numVolumes; i++) {
        vshPrint(ctl, outputStr,
                 activeNames[i],
                 volInfoTexts[i].path,
                 volInfoTexts[i].type,
                 volInfoTexts[i].capacity,
                 volInfoTexts[i].allocation);
    }

    /* Cleanup and return */
    functionReturn = TRUE;
    goto cleanup;

asprintf_failure:

    /* Display an appropriate error message then cleanup and return */
    switch (errno) {
    case ENOMEM:
        /* Couldn't allocate memory */
        vshError(ctl, "%s", _("Out of memory"));
        break;
    default:
        /* Some other error */
        vshError(ctl, _("virAsprintf failed (errno %d)"), errno);
    }
    functionReturn = FALSE;

cleanup:

    /* Safely free the memory allocated in this function */
    for (i = 0; i < numVolumes; i++) {
        /* Cleanup the memory for one volume info structure per loop */
        VIR_FREE(volInfoTexts[i].path);
        VIR_FREE(volInfoTexts[i].type);
        VIR_FREE(volInfoTexts[i].capacity);
        VIR_FREE(volInfoTexts[i].allocation);
6956
        VIR_FREE(activeNames[i]);
6957
    }
6958 6959 6960 6961

    /* Cleanup remaining memory */
    VIR_FREE(outputStr);
    VIR_FREE(volInfoTexts);
6962
    VIR_FREE(activeNames);
6963
    virStoragePoolFree(pool);
6964 6965 6966

    /* Return the desired value */
    return functionReturn;
6967 6968 6969 6970 6971 6972
}


/*
 * "vol-name" command
 */
6973
static const vshCmdInfo info_vol_name[] = {
6974
    {"help", N_("returns the volume name for a given volume key or path")},
6975
    {"desc", ""},
6976 6977 6978
    {NULL, NULL}
};

6979
static const vshCmdOptDef opts_vol_name[] = {
6980
    {"vol", VSH_OT_DATA, VSH_OFLAG_REQ, N_("volume key or path")},
6981 6982 6983 6984
    {NULL, 0, 0, NULL}
};

static int
6985
cmdVolName(vshControl *ctl, const vshCmd *cmd)
6986 6987 6988
{
    virStorageVolPtr vol;

6989
    if (!vshConnectionUsability(ctl, ctl->conn))
6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001
        return FALSE;

    if (!(vol = vshCommandOptVolBy(ctl, cmd, "vol", "pool", NULL,
                                   VSH_BYUUID)))
        return FALSE;

    vshPrint(ctl, "%s\n", virStorageVolGetName(vol));
    virStorageVolFree(vol);
    return TRUE;
}


J
Justin Clift 已提交
7002 7003 7004 7005 7006 7007 7008 7009 7010 7011
/*
 * "vol-pool" command
 */
static const vshCmdInfo info_vol_pool[] = {
    {"help", N_("returns the storage pool for a given volume key or path")},
    {"desc", ""},
    {NULL, NULL}
};

static const vshCmdOptDef opts_vol_pool[] = {
7012
    {"uuid", VSH_OT_BOOL, 0, N_("return the pool uuid rather than pool name")},
J
Justin Clift 已提交
7013 7014 7015 7016 7017 7018 7019 7020 7021
    {"vol", VSH_OT_DATA, VSH_OFLAG_REQ, N_("volume key or path")},
    {NULL, 0, 0, NULL}
};

static int
cmdVolPool(vshControl *ctl, const vshCmd *cmd)
{
    virStoragePoolPtr pool;
    virStorageVolPtr vol;
7022
    char uuid[VIR_UUID_STRING_BUFLEN];
J
Justin Clift 已提交
7023 7024

    /* Check the connection to libvirtd daemon is still working */
7025
    if (!vshConnectionUsability(ctl, ctl->conn))
J
Justin Clift 已提交
7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041
        return FALSE;

    /* Use the supplied string to locate the volume */
    if (!(vol = vshCommandOptVolBy(ctl, cmd, "vol", "pool", NULL,
                                   VSH_BYUUID))) {
        return FALSE;
    }

    /* Look up the parent storage pool for the volume */
    pool = virStoragePoolLookupByVolume(vol);
    if (pool == NULL) {
        vshError(ctl, "%s", _("failed to get parent pool"));
        virStorageVolFree(vol);
        return FALSE;
    }

7042 7043 7044 7045 7046 7047 7048 7049 7050
    /* Return the requested details of the parent storage pool */
    if (vshCommandOptBool(cmd, "uuid")) {
        /* Retrieve and return pool UUID string */
        if (virStoragePoolGetUUIDString(pool, &uuid[0]) == 0)
            vshPrint(ctl, "%s\n", uuid);
    } else {
        /* Return the storage pool name */
        vshPrint(ctl, "%s\n", virStoragePoolGetName(pool));
    }
J
Justin Clift 已提交
7051 7052 7053 7054 7055 7056 7057

    /* Cleanup */
    virStorageVolFree(vol);
    virStoragePoolFree(pool);
    return TRUE;
}

7058 7059 7060 7061

/*
 * "vol-key" command
 */
7062
static const vshCmdInfo info_vol_key[] = {
7063
    {"help", N_("returns the volume key for a given volume name or path")},
7064
    {"desc", ""},
7065 7066 7067
    {NULL, NULL}
};

7068
static const vshCmdOptDef opts_vol_key[] = {
7069
    {"pool", VSH_OT_STRING, 0, N_("pool name or uuid")},
7070
    {"vol", VSH_OT_DATA, VSH_OFLAG_REQ, N_("volume name or path")},
7071 7072 7073 7074
    {NULL, 0, 0, NULL}
};

static int
7075
cmdVolKey(vshControl *ctl, const vshCmd *cmd)
7076 7077 7078
{
    virStorageVolPtr vol;

7079
    if (!vshConnectionUsability(ctl, ctl->conn))
7080 7081
        return FALSE;

7082
    if (!(vol = vshCommandOptVol(ctl, cmd, "vol", "pool", NULL)))
7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094
        return FALSE;

    vshPrint(ctl, "%s\n", virStorageVolGetKey(vol));
    virStorageVolFree(vol);
    return TRUE;
}



/*
 * "vol-path" command
 */
7095
static const vshCmdInfo info_vol_path[] = {
7096
    {"help", N_("returns the volume path for a given volume name or key")},
7097
    {"desc", ""},
7098 7099 7100
    {NULL, NULL}
};

7101
static const vshCmdOptDef opts_vol_path[] = {
7102
    {"pool", VSH_OT_STRING, 0, N_("pool name or uuid")},
7103
    {"vol", VSH_OT_DATA, VSH_OFLAG_REQ, N_("volume name or key")},
7104 7105 7106 7107
    {NULL, 0, 0, NULL}
};

static int
7108
cmdVolPath(vshControl *ctl, const vshCmd *cmd)
7109 7110
{
    virStorageVolPtr vol;
7111
    char *name = NULL;
7112

7113
    if (!vshConnectionUsability(ctl, ctl->conn))
7114
        return FALSE;
7115 7116

    if (!(vol = vshCommandOptVol(ctl, cmd, "vol", "pool", &name))) {
7117
        return FALSE;
7118
    }
7119 7120 7121 7122 7123 7124 7125

    vshPrint(ctl, "%s\n", virStorageVolGetPath(vol));
    virStorageVolFree(vol);
    return TRUE;
}


7126 7127 7128 7129
/*
 * "secret-define" command
 */
static const vshCmdInfo info_secret_define[] = {
7130 7131
    {"help", N_("define or modify a secret from an XML file")},
    {"desc", N_("Define or modify a secret.")},
7132 7133
    {NULL, NULL}
};
7134

7135
static const vshCmdOptDef opts_secret_define[] = {
7136
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ, N_("file containing secret attributes in XML")},
7137 7138
    {NULL, 0, 0, NULL}
};
7139

7140 7141 7142
static int
cmdSecretDefine(vshControl *ctl, const vshCmd *cmd)
{
7143
    char *from, *buffer;
7144
    virSecretPtr res;
7145
    char uuid[VIR_UUID_STRING_BUFLEN];
7146

7147
    if (!vshConnectionUsability(ctl, ctl->conn))
7148 7149 7150 7151 7152 7153 7154 7155 7156 7157
        return FALSE;

    from = vshCommandOptString(cmd, "file", NULL);
    if (!from)
        return FALSE;

    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0)
        return FALSE;

    res = virSecretDefineXML(ctl->conn, buffer, 0);
7158
    VIR_FREE(buffer);
7159 7160

    if (res == NULL) {
7161
        vshError(ctl, _("Failed to set attributes from %s"), from);
7162 7163
        return FALSE;
    }
7164
    if (virSecretGetUUIDString(res, &(uuid[0])) < 0) {
7165
        vshError(ctl, "%s", _("Failed to get UUID of created secret"));
7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177
        virSecretFree(res);
        return FALSE;
    }
    vshPrint(ctl, _("Secret %s created\n"), uuid);
    virSecretFree(res);
    return TRUE;
}

/*
 * "secret-dumpxml" command
 */
static const vshCmdInfo info_secret_dumpxml[] = {
7178 7179
    {"help", N_("secret attributes in XML")},
    {"desc", N_("Output attributes of a secret as an XML dump to stdout.")},
7180 7181 7182 7183
    {NULL, NULL}
};

static const vshCmdOptDef opts_secret_dumpxml[] = {
7184
    {"secret", VSH_OT_DATA, VSH_OFLAG_REQ, N_("secret UUID")},
7185 7186 7187 7188 7189 7190 7191 7192 7193 7194
    {NULL, 0, 0, NULL}
};

static int
cmdSecretDumpXML(vshControl *ctl, const vshCmd *cmd)
{
    virSecretPtr secret;
    int ret = FALSE;
    char *xml;

7195
    if (!vshConnectionUsability(ctl, ctl->conn))
7196 7197 7198 7199 7200 7201 7202 7203 7204
        return FALSE;

    secret = vshCommandOptSecret(ctl, cmd, NULL);
    if (secret == NULL)
        return FALSE;

    xml = virSecretGetXMLDesc(secret, 0);
    if (xml == NULL)
        goto cleanup;
7205
    vshPrint(ctl, "%s", xml);
7206
    VIR_FREE(xml);
7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217
    ret = TRUE;

cleanup:
    virSecretFree(secret);
    return ret;
}

/*
 * "secret-set-value" command
 */
static const vshCmdInfo info_secret_set_value[] = {
7218 7219
    {"help", N_("set a secret value")},
    {"desc", N_("Set a secret value.")},
7220 7221 7222 7223
    {NULL, NULL}
};

static const vshCmdOptDef opts_secret_set_value[] = {
7224 7225
    {"secret", VSH_OT_DATA, VSH_OFLAG_REQ, N_("secret UUID")},
    {"base64", VSH_OT_DATA, VSH_OFLAG_REQ, N_("base64-encoded secret value")},
7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236
    {NULL, 0, 0, NULL}
};

static int
cmdSecretSetValue(vshControl *ctl, const vshCmd *cmd)
{
    virSecretPtr secret;
    size_t value_size;
    char *base64, *value;
    int found, res, ret = FALSE;

7237
    if (!vshConnectionUsability(ctl, ctl->conn))
7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248
        return FALSE;

    secret = vshCommandOptSecret(ctl, cmd, NULL);
    if (secret == NULL)
        return FALSE;

    base64 = vshCommandOptString(cmd, "base64", &found);
    if (!base64)
        goto cleanup;

    if (!base64_decode_alloc(base64, strlen(base64), &value, &value_size)) {
J
Jim Meyering 已提交
7249
        vshError(ctl, "%s", _("Invalid base64 data"));
7250 7251 7252
        goto cleanup;
    }
    if (value == NULL) {
7253
        vshError(ctl, "%s", _("Failed to allocate memory"));
7254 7255 7256 7257 7258
        return FALSE;
    }

    res = virSecretSetValue(secret, (unsigned char *)value, value_size, 0);
    memset(value, 0, value_size);
7259
    VIR_FREE(value);
7260 7261

    if (res != 0) {
7262
        vshError(ctl, "%s", _("Failed to set secret value"));
7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276
        goto cleanup;
    }
    vshPrint(ctl, "%s", _("Secret value set\n"));
    ret = TRUE;

cleanup:
    virSecretFree(secret);
    return ret;
}

/*
 * "secret-get-value" command
 */
static const vshCmdInfo info_secret_get_value[] = {
7277 7278
    {"help", N_("Output a secret value")},
    {"desc", N_("Output a secret value to stdout.")},
7279 7280 7281 7282
    {NULL, NULL}
};

static const vshCmdOptDef opts_secret_get_value[] = {
7283
    {"secret", VSH_OT_DATA, VSH_OFLAG_REQ, N_("secret UUID")},
7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295
    {NULL, 0, 0, NULL}
};

static int
cmdSecretGetValue(vshControl *ctl, const vshCmd *cmd)
{
    virSecretPtr secret;
    char *base64;
    unsigned char *value;
    size_t value_size;
    int ret = FALSE;

7296
    if (!vshConnectionUsability(ctl, ctl->conn))
7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308
        return FALSE;

    secret = vshCommandOptSecret(ctl, cmd, NULL);
    if (secret == NULL)
        return FALSE;

    value = virSecretGetValue(secret, &value_size, 0);
    if (value == NULL)
        goto cleanup;

    base64_encode_alloc((char *)value, value_size, &base64);
    memset(value, 0, value_size);
7309
    VIR_FREE(value);
7310 7311

    if (base64 == NULL) {
7312
        vshError(ctl, "%s", _("Failed to allocate memory"));
7313 7314
        goto cleanup;
    }
7315
    vshPrint(ctl, "%s", base64);
7316
    memset(base64, 0, strlen(base64));
7317
    VIR_FREE(base64);
7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328
    ret = TRUE;

cleanup:
    virSecretFree(secret);
    return ret;
}

/*
 * "secret-undefine" command
 */
static const vshCmdInfo info_secret_undefine[] = {
7329 7330
    {"help", N_("undefine a secret")},
    {"desc", N_("Undefine a secret.")},
7331 7332 7333 7334
    {NULL, NULL}
};

static const vshCmdOptDef opts_secret_undefine[] = {
7335
    {"secret", VSH_OT_DATA, VSH_OFLAG_REQ, N_("secret UUID")},
7336 7337 7338 7339 7340 7341 7342 7343 7344 7345
    {NULL, 0, 0, NULL}
};

static int
cmdSecretUndefine(vshControl *ctl, const vshCmd *cmd)
{
    virSecretPtr secret;
    int ret = FALSE;
    char *uuid;

7346
    if (!vshConnectionUsability(ctl, ctl->conn))
7347 7348 7349 7350 7351 7352 7353
        return FALSE;

    secret = vshCommandOptSecret(ctl, cmd, &uuid);
    if (secret == NULL)
        return FALSE;

    if (virSecretUndefine(secret) < 0) {
7354
        vshError(ctl, _("Failed to delete secret %s"), uuid);
7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368
        goto cleanup;
    }
    vshPrint(ctl, _("Secret %s deleted\n"), uuid);
    ret = TRUE;

cleanup:
    virSecretFree(secret);
    return ret;
}

/*
 * "secret-list" command
 */
static const vshCmdInfo info_secret_list[] = {
7369 7370
    {"help", N_("list secrets")},
    {"desc", N_("Returns a list of secrets")},
7371 7372 7373 7374 7375 7376 7377 7378 7379
    {NULL, NULL}
};

static int
cmdSecretList(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
{
    int maxuuids = 0, i;
    char **uuids = NULL;

7380
    if (!vshConnectionUsability(ctl, ctl->conn))
7381 7382 7383 7384
        return FALSE;

    maxuuids = virConnectNumOfSecrets(ctl->conn);
    if (maxuuids < 0) {
7385
        vshError(ctl, "%s", _("Failed to list secrets"));
7386 7387 7388 7389 7390 7391
        return FALSE;
    }
    uuids = vshMalloc(ctl, sizeof(*uuids) * maxuuids);

    maxuuids = virConnectListSecrets(ctl->conn, uuids, maxuuids);
    if (maxuuids < 0) {
7392
        vshError(ctl, "%s", _("Failed to list secrets"));
7393
        VIR_FREE(uuids);
7394 7395 7396 7397 7398
        return FALSE;
    }

    qsort(uuids, maxuuids, sizeof(char *), namesorter);

7399 7400
    vshPrintExtra(ctl, "%-36s %s\n", _("UUID"), _("Usage"));
    vshPrintExtra(ctl, "-----------------------------------------------------------\n");
7401 7402

    for (i = 0; i < maxuuids; i++) {
7403 7404 7405 7406
        virSecretPtr sec = virSecretLookupByUUIDString(ctl->conn, uuids[i]);
        const char *usageType = NULL;

        if (!sec) {
7407
            VIR_FREE(uuids[i]);
7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425
            continue;
        }

        switch (virSecretGetUsageType(sec)) {
        case VIR_SECRET_USAGE_TYPE_VOLUME:
            usageType = _("Volume");
            break;
        }

        if (usageType) {
            vshPrint(ctl, "%-36s %s %s\n",
                     uuids[i], usageType,
                     virSecretGetUsageID(sec));
        } else {
            vshPrint(ctl, "%-36s %s\n",
                     uuids[i], _("Unused"));
        }
        virSecretFree(sec);
7426
        VIR_FREE(uuids[i]);
7427
    }
7428
    VIR_FREE(uuids);
7429 7430
    return TRUE;
}
7431 7432 7433 7434 7435


/*
 * "version" command
 */
7436
static const vshCmdInfo info_version[] = {
7437 7438
    {"help", N_("show version")},
    {"desc", N_("Display the system version information.")},
7439 7440 7441 7442 7443
    {NULL, NULL}
};


static int
7444
cmdVersion(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455
{
    unsigned long hvVersion;
    const char *hvType;
    unsigned long libVersion;
    unsigned long includeVersion;
    unsigned long apiVersion;
    int ret;
    unsigned int major;
    unsigned int minor;
    unsigned int rel;

7456
    if (!vshConnectionUsability(ctl, ctl->conn))
7457 7458 7459 7460
        return FALSE;

    hvType = virConnectGetType(ctl->conn);
    if (hvType == NULL) {
7461
        vshError(ctl, "%s", _("failed to get hypervisor type"));
7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474
        return FALSE;
    }

    includeVersion = LIBVIR_VERSION_NUMBER;
    major = includeVersion / 1000000;
    includeVersion %= 1000000;
    minor = includeVersion / 1000;
    rel = includeVersion % 1000;
    vshPrint(ctl, _("Compiled against library: libvir %d.%d.%d\n"),
             major, minor, rel);

    ret = virGetVersion(&libVersion, hvType, &apiVersion);
    if (ret < 0) {
7475
        vshError(ctl, "%s", _("failed to get the library version"));
7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493
        return FALSE;
    }
    major = libVersion / 1000000;
    libVersion %= 1000000;
    minor = libVersion / 1000;
    rel = libVersion % 1000;
    vshPrint(ctl, _("Using library: libvir %d.%d.%d\n"),
             major, minor, rel);

    major = apiVersion / 1000000;
    apiVersion %= 1000000;
    minor = apiVersion / 1000;
    rel = apiVersion % 1000;
    vshPrint(ctl, _("Using API: %s %d.%d.%d\n"), hvType,
             major, minor, rel);

    ret = virConnectGetVersion(ctl->conn, &hvVersion);
    if (ret < 0) {
7494
        vshError(ctl, "%s", _("failed to get the hypervisor version"));
7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511
        return FALSE;
    }
    if (hvVersion == 0) {
        vshPrint(ctl,
                 _("Cannot extract running %s hypervisor version\n"), hvType);
    } else {
        major = hvVersion / 1000000;
        hvVersion %= 1000000;
        minor = hvVersion / 1000;
        rel = hvVersion % 1000;

        vshPrint(ctl, _("Running hypervisor: %s %d.%d.%d\n"),
                 hvType, major, minor, rel);
    }
    return TRUE;
}

7512 7513 7514 7515
/*
 * "nodedev-list" command
 */
static const vshCmdInfo info_node_list_devices[] = {
7516
    {"help", N_("enumerate devices on this host")},
7517
    {"desc", ""},
7518 7519 7520 7521
    {NULL, NULL}
};

static const vshCmdOptDef opts_node_list_devices[] = {
7522 7523
    {"tree", VSH_OT_BOOL, 0, N_("list devices in a tree")},
    {"cap", VSH_OT_STRING, VSH_OFLAG_NONE, N_("capability name")},
7524 7525 7526
    {NULL, 0, 0, NULL}
};

7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548
#define MAX_DEPTH 100
#define INDENT_SIZE 4
#define INDENT_BUFLEN ((MAX_DEPTH * INDENT_SIZE) + 1)

static void
cmdNodeListDevicesPrint(vshControl *ctl,
                        char **devices,
                        char **parents,
                        int num_devices,
                        int devid,
                        int lastdev,
                        unsigned int depth,
                        unsigned int indentIdx,
                        char *indentBuf)
{
    int i;
    int nextlastdev = -1;

    /* Prepare indent for this device, but not if at root */
    if (depth && depth < MAX_DEPTH) {
        indentBuf[indentIdx] = '+';
        indentBuf[indentIdx+1] = '-';
7549 7550
        indentBuf[indentIdx+2] = ' ';
        indentBuf[indentIdx+3] = '\0';
7551 7552 7553
    }

    /* Print this device */
7554
    vshPrint(ctl, "%s", indentBuf);
7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577
    vshPrint(ctl, "%s\n", devices[devid]);


    /* Update indent to show '|' or ' ' for child devices */
    if (depth && depth < MAX_DEPTH) {
        if (devid == lastdev)
            indentBuf[indentIdx] = ' ';
        else
            indentBuf[indentIdx] = '|';
        indentBuf[indentIdx+1] = ' ';
        indentIdx+=2;
    }

    /* Determine the index of the last child device */
    for (i = 0 ; i < num_devices ; i++) {
        if (parents[i] &&
            STREQ(parents[i], devices[devid])) {
            nextlastdev = i;
        }
    }

    /* If there is a child device, then print another blank line */
    if (nextlastdev != -1) {
7578
        vshPrint(ctl, "%s", indentBuf);
7579
        vshPrint(ctl, " |\n");
7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601
    }

    /* Finally print all children */
    if (depth < MAX_DEPTH)
        indentBuf[indentIdx] = ' ';
    for (i = 0 ; i < num_devices ; i++) {
        if (depth < MAX_DEPTH) {
            indentBuf[indentIdx] = ' ';
            indentBuf[indentIdx+1] = ' ';
        }
        if (parents[i] &&
            STREQ(parents[i], devices[devid]))
            cmdNodeListDevicesPrint(ctl, devices, parents,
                                    num_devices, i, nextlastdev,
                                    depth + 1, indentIdx + 2, indentBuf);
        if (depth < MAX_DEPTH)
            indentBuf[indentIdx] = '\0';
    }

    /* If there was no child device, and we're the last in
     * a list of devices, then print another blank line */
    if (nextlastdev == -1 && devid == lastdev) {
7602
        vshPrint(ctl, "%s", indentBuf);
7603 7604 7605 7606
        vshPrint(ctl, "\n");
    }
}

7607 7608 7609 7610 7611 7612
static int
cmdNodeListDevices (vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
{
    char *cap;
    char **devices;
    int found, num_devices, i;
7613
    int tree = vshCommandOptBool(cmd, "tree");
7614

7615
    if (!vshConnectionUsability(ctl, ctl->conn))
7616 7617 7618 7619 7620 7621 7622 7623
        return FALSE;

    cap = vshCommandOptString(cmd, "cap", &found);
    if (!found)
        cap = NULL;

    num_devices = virNodeNumOfDevices(ctl->conn, cap, 0);
    if (num_devices < 0) {
7624
        vshError(ctl, "%s", _("Failed to count node devices"));
7625 7626 7627 7628 7629 7630 7631 7632 7633
        return FALSE;
    } else if (num_devices == 0) {
        return TRUE;
    }

    devices = vshMalloc(ctl, sizeof(char *) * num_devices);
    num_devices =
        virNodeListDevices(ctl->conn, cap, devices, num_devices, 0);
    if (num_devices < 0) {
7634
        vshError(ctl, "%s", _("Failed to list node devices"));
7635
        VIR_FREE(devices);
7636 7637
        return FALSE;
    }
7638
    qsort(&devices[0], num_devices, sizeof(char*), namesorter);
7639 7640 7641 7642 7643 7644 7645
    if (tree) {
        char indentBuf[INDENT_BUFLEN];
        char **parents = vshMalloc(ctl, sizeof(char *) * num_devices);
        for (i = 0; i < num_devices; i++) {
            virNodeDevicePtr dev = virNodeDeviceLookupByName(ctl->conn, devices[i]);
            if (dev && STRNEQ(devices[i], "computer")) {
                const char *parent = virNodeDeviceGetParent(dev);
E
Eric Blake 已提交
7646
                parents[i] = parent ? vshStrdup(ctl, parent) : NULL;
7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665
            } else {
                parents[i] = NULL;
            }
            virNodeDeviceFree(dev);
        }
        for (i = 0 ; i < num_devices ; i++) {
            memset(indentBuf, '\0', sizeof indentBuf);
            if (parents[i] == NULL)
                cmdNodeListDevicesPrint(ctl,
                                        devices,
                                        parents,
                                        num_devices,
                                        i,
                                        i,
                                        0,
                                        0,
                                        indentBuf);
        }
        for (i = 0 ; i < num_devices ; i++) {
7666 7667
            VIR_FREE(devices[i]);
            VIR_FREE(parents[i]);
7668
        }
7669
        VIR_FREE(parents);
7670 7671 7672
    } else {
        for (i = 0; i < num_devices; i++) {
            vshPrint(ctl, "%s\n", devices[i]);
7673
            VIR_FREE(devices[i]);
7674
        }
7675
    }
7676
    VIR_FREE(devices);
7677 7678 7679 7680 7681 7682 7683
    return TRUE;
}

/*
 * "nodedev-dumpxml" command
 */
static const vshCmdInfo info_node_device_dumpxml[] = {
7684 7685
    {"help", N_("node device details in XML")},
    {"desc", N_("Output the node device details as an XML dump to stdout.")},
7686 7687 7688 7689 7690
    {NULL, NULL}
};


static const vshCmdOptDef opts_node_device_dumpxml[] = {
7691
    {"device", VSH_OT_DATA, VSH_OFLAG_REQ, N_("device key")},
7692 7693 7694 7695 7696 7697 7698 7699
    {NULL, 0, 0, NULL}
};

static int
cmdNodeDeviceDumpXML (vshControl *ctl, const vshCmd *cmd)
{
    const char *name;
    virNodeDevicePtr device;
L
Laine Stump 已提交
7700
    char *xml;
7701

7702
    if (!vshConnectionUsability(ctl, ctl->conn))
7703 7704 7705 7706
        return FALSE;
    if (!(name = vshCommandOptString(cmd, "device", NULL)))
        return FALSE;
    if (!(device = virNodeDeviceLookupByName(ctl->conn, name))) {
7707
        vshError(ctl, "%s '%s'", _("Could not find matching device"), name);
7708 7709 7710
        return FALSE;
    }

L
Laine Stump 已提交
7711 7712 7713 7714 7715 7716 7717
    xml = virNodeDeviceGetXMLDesc(device, 0);
    if (!xml) {
        virNodeDeviceFree(device);
        return FALSE;
    }

    vshPrint(ctl, "%s\n", xml);
7718
    VIR_FREE(xml);
7719 7720 7721 7722
    virNodeDeviceFree(device);
    return TRUE;
}

7723 7724 7725 7726
/*
 * "nodedev-dettach" command
 */
static const vshCmdInfo info_node_device_dettach[] = {
7727 7728
    {"help", N_("dettach node device from its device driver")},
    {"desc", N_("Dettach node device from its device driver before assigning to a domain.")},
7729 7730 7731 7732 7733
    {NULL, NULL}
};


static const vshCmdOptDef opts_node_device_dettach[] = {
7734
    {"device", VSH_OT_DATA, VSH_OFLAG_REQ, N_("device key")},
7735 7736 7737 7738 7739 7740 7741 7742 7743 7744
    {NULL, 0, 0, NULL}
};

static int
cmdNodeDeviceDettach (vshControl *ctl, const vshCmd *cmd)
{
    const char *name;
    virNodeDevicePtr device;
    int ret = TRUE;

7745
    if (!vshConnectionUsability(ctl, ctl->conn))
7746 7747 7748 7749
        return FALSE;
    if (!(name = vshCommandOptString(cmd, "device", NULL)))
        return FALSE;
    if (!(device = virNodeDeviceLookupByName(ctl->conn, name))) {
7750
        vshError(ctl, "%s '%s'", _("Could not find matching device"), name);
7751 7752 7753 7754 7755 7756
        return FALSE;
    }

    if (virNodeDeviceDettach(device) == 0) {
        vshPrint(ctl, _("Device %s dettached\n"), name);
    } else {
7757
        vshError(ctl, _("Failed to dettach device %s"), name);
7758 7759 7760 7761 7762 7763 7764 7765 7766 7767
        ret = FALSE;
    }
    virNodeDeviceFree(device);
    return ret;
}

/*
 * "nodedev-reattach" command
 */
static const vshCmdInfo info_node_device_reattach[] = {
7768 7769
    {"help", N_("reattach node device to its device driver")},
    {"desc", N_("Reattach node device to its device driver once released by the domain.")},
7770 7771 7772 7773 7774
    {NULL, NULL}
};


static const vshCmdOptDef opts_node_device_reattach[] = {
7775
    {"device", VSH_OT_DATA, VSH_OFLAG_REQ, N_("device key")},
7776 7777 7778 7779 7780 7781 7782 7783 7784 7785
    {NULL, 0, 0, NULL}
};

static int
cmdNodeDeviceReAttach (vshControl *ctl, const vshCmd *cmd)
{
    const char *name;
    virNodeDevicePtr device;
    int ret = TRUE;

7786
    if (!vshConnectionUsability(ctl, ctl->conn))
7787 7788 7789 7790
        return FALSE;
    if (!(name = vshCommandOptString(cmd, "device", NULL)))
        return FALSE;
    if (!(device = virNodeDeviceLookupByName(ctl->conn, name))) {
7791
        vshError(ctl, "%s '%s'", _("Could not find matching device"), name);
7792 7793 7794 7795 7796 7797
        return FALSE;
    }

    if (virNodeDeviceReAttach(device) == 0) {
        vshPrint(ctl, _("Device %s re-attached\n"), name);
    } else {
7798
        vshError(ctl, _("Failed to re-attach device %s"), name);
7799 7800 7801 7802 7803 7804 7805 7806 7807 7808
        ret = FALSE;
    }
    virNodeDeviceFree(device);
    return ret;
}

/*
 * "nodedev-reset" command
 */
static const vshCmdInfo info_node_device_reset[] = {
7809 7810
    {"help", N_("reset node device")},
    {"desc", N_("Reset node device before or after assigning to a domain.")},
7811 7812 7813 7814 7815
    {NULL, NULL}
};


static const vshCmdOptDef opts_node_device_reset[] = {
7816
    {"device", VSH_OT_DATA, VSH_OFLAG_REQ, N_("device key")},
7817 7818 7819 7820 7821 7822 7823 7824 7825 7826
    {NULL, 0, 0, NULL}
};

static int
cmdNodeDeviceReset (vshControl *ctl, const vshCmd *cmd)
{
    const char *name;
    virNodeDevicePtr device;
    int ret = TRUE;

7827
    if (!vshConnectionUsability(ctl, ctl->conn))
7828 7829 7830 7831
        return FALSE;
    if (!(name = vshCommandOptString(cmd, "device", NULL)))
        return FALSE;
    if (!(device = virNodeDeviceLookupByName(ctl->conn, name))) {
7832
        vshError(ctl, "%s '%s'", _("Could not find matching device"), name);
7833 7834 7835 7836 7837 7838
        return FALSE;
    }

    if (virNodeDeviceReset(device) == 0) {
        vshPrint(ctl, _("Device %s reset\n"), name);
    } else {
7839
        vshError(ctl, _("Failed to reset device %s"), name);
7840 7841 7842 7843 7844 7845
        ret = FALSE;
    }
    virNodeDeviceFree(device);
    return ret;
}

7846 7847 7848
/*
 * "hostkey" command
 */
7849
static const vshCmdInfo info_hostname[] = {
7850
    {"help", N_("print the hypervisor hostname")},
7851
    {"desc", ""},
7852 7853 7854 7855
    {NULL, NULL}
};

static int
7856
cmdHostname (vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
7857 7858 7859
{
    char *hostname;

7860
    if (!vshConnectionUsability(ctl, ctl->conn))
7861 7862 7863 7864
        return FALSE;

    hostname = virConnectGetHostname (ctl->conn);
    if (hostname == NULL) {
7865
        vshError(ctl, "%s", _("failed to get hostname"));
7866 7867 7868 7869
        return FALSE;
    }

    vshPrint (ctl, "%s\n", hostname);
7870
    VIR_FREE(hostname);
7871 7872 7873 7874 7875 7876 7877

    return TRUE;
}

/*
 * "uri" command
 */
7878
static const vshCmdInfo info_uri[] = {
7879
    {"help", N_("print the hypervisor canonical URI")},
7880
    {"desc", ""},
7881 7882 7883 7884
    {NULL, NULL}
};

static int
7885
cmdURI (vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
7886 7887 7888
{
    char *uri;

7889
    if (!vshConnectionUsability(ctl, ctl->conn))
7890 7891 7892 7893
        return FALSE;

    uri = virConnectGetURI (ctl->conn);
    if (uri == NULL) {
7894
        vshError(ctl, "%s", _("failed to get URI"));
7895 7896 7897 7898
        return FALSE;
    }

    vshPrint (ctl, "%s\n", uri);
7899
    VIR_FREE(uri);
7900 7901 7902 7903 7904 7905 7906

    return TRUE;
}

/*
 * "vncdisplay" command
 */
7907
static const vshCmdInfo info_vncdisplay[] = {
7908 7909
    {"help", N_("vnc display")},
    {"desc", N_("Output the IP address and port number for the VNC display.")},
7910 7911 7912
    {NULL, NULL}
};

7913
static const vshCmdOptDef opts_vncdisplay[] = {
7914
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
7915 7916 7917 7918
    {NULL, 0, 0, NULL}
};

static int
7919
cmdVNCDisplay(vshControl *ctl, const vshCmd *cmd)
7920 7921 7922 7923 7924 7925 7926 7927 7928
{
    xmlDocPtr xml = NULL;
    xmlXPathObjectPtr obj = NULL;
    xmlXPathContextPtr ctxt = NULL;
    virDomainPtr dom;
    int ret = FALSE;
    int port = 0;
    char *doc;

7929
    if (!vshConnectionUsability(ctl, ctl->conn))
7930 7931
        return FALSE;

J
Jim Meyering 已提交
7932
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
7933 7934 7935 7936 7937 7938 7939 7940 7941
        return FALSE;

    doc = virDomainGetXMLDesc(dom, 0);
    if (!doc)
        goto cleanup;

    xml = xmlReadDoc((const xmlChar *) doc, "domain.xml", NULL,
                     XML_PARSE_NOENT | XML_PARSE_NONET |
                     XML_PARSE_NOWARNING);
7942
    VIR_FREE(doc);
7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960
    if (!xml)
        goto cleanup;
    ctxt = xmlXPathNewContext(xml);
    if (!ctxt)
        goto cleanup;

    obj = xmlXPathEval(BAD_CAST "string(/domain/devices/graphics[@type='vnc']/@port)", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
        goto cleanup;
    }
    if (virStrToLong_i((const char *)obj->stringval, NULL, 10, &port) || port < 0)
        goto cleanup;
    xmlXPathFreeObject(obj);

    obj = xmlXPathEval(BAD_CAST "string(/domain/devices/graphics[@type='vnc']/@listen)", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0) ||
7961
        STREQ((const char*)obj->stringval, "0.0.0.0")) {
7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981
        vshPrint(ctl, ":%d\n", port-5900);
    } else {
        vshPrint(ctl, "%s:%d\n", (const char *)obj->stringval, port-5900);
    }
    xmlXPathFreeObject(obj);
    obj = NULL;
    ret = TRUE;

 cleanup:
    xmlXPathFreeObject(obj);
    xmlXPathFreeContext(ctxt);
    if (xml)
        xmlFreeDoc(xml);
    virDomainFree(dom);
    return ret;
}

/*
 * "ttyconsole" command
 */
7982
static const vshCmdInfo info_ttyconsole[] = {
7983 7984
    {"help", N_("tty console")},
    {"desc", N_("Output the device for the TTY console.")},
7985 7986 7987
    {NULL, NULL}
};

7988
static const vshCmdOptDef opts_ttyconsole[] = {
7989
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
7990 7991 7992 7993
    {NULL, 0, 0, NULL}
};

static int
7994
cmdTTYConsole(vshControl *ctl, const vshCmd *cmd)
7995 7996 7997 7998 7999 8000 8001 8002
{
    xmlDocPtr xml = NULL;
    xmlXPathObjectPtr obj = NULL;
    xmlXPathContextPtr ctxt = NULL;
    virDomainPtr dom;
    int ret = FALSE;
    char *doc;

8003
    if (!vshConnectionUsability(ctl, ctl->conn))
8004 8005
        return FALSE;

J
Jim Meyering 已提交
8006
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
8007 8008 8009 8010 8011 8012 8013 8014 8015
        return FALSE;

    doc = virDomainGetXMLDesc(dom, 0);
    if (!doc)
        goto cleanup;

    xml = xmlReadDoc((const xmlChar *) doc, "domain.xml", NULL,
                     XML_PARSE_NOENT | XML_PARSE_NONET |
                     XML_PARSE_NOWARNING);
8016
    VIR_FREE(doc);
8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028
    if (!xml)
        goto cleanup;
    ctxt = xmlXPathNewContext(xml);
    if (!ctxt)
        goto cleanup;

    obj = xmlXPathEval(BAD_CAST "string(/domain/devices/console/@tty)", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
        goto cleanup;
    }
    vshPrint(ctl, "%s\n", (const char *)obj->stringval);
8029
    ret = TRUE;
8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041

 cleanup:
    xmlXPathFreeObject(obj);
    xmlXPathFreeContext(ctxt);
    if (xml)
        xmlFreeDoc(xml);
    virDomainFree(dom);
    return ret;
}

/*
 * "attach-device" command
8042
 */
8043
static const vshCmdInfo info_attach_device[] = {
8044 8045
    {"help", N_("attach device from an XML file")},
    {"desc", N_("Attach device from an XML <file>.")},
8046 8047 8048
    {NULL, NULL}
};

8049
static const vshCmdOptDef opts_attach_device[] = {
8050 8051 8052
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"file",   VSH_OT_DATA, VSH_OFLAG_REQ, N_("XML file")},
    {"persistent", VSH_OT_BOOL, 0, N_("persist device attachment")},
8053 8054 8055 8056
    {NULL, 0, 0, NULL}
};

static int
8057
cmdAttachDevice(vshControl *ctl, const vshCmd *cmd)
8058 8059 8060 8061 8062 8063
{
    virDomainPtr dom;
    char *from;
    char *buffer;
    int ret = TRUE;
    int found;
J
Jim Fehlig 已提交
8064
    unsigned int flags;
8065

8066
    if (!vshConnectionUsability(ctl, ctl->conn))
8067 8068
        return FALSE;

J
Jim Meyering 已提交
8069
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
8070 8071 8072 8073 8074 8075 8076 8077
        return FALSE;

    from = vshCommandOptString(cmd, "file", &found);
    if (!found) {
        virDomainFree(dom);
        return FALSE;
    }

8078
    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0) {
8079
        virshReportError(ctl);
8080
        virDomainFree(dom);
8081
        return FALSE;
8082
    }
8083

J
Jim Fehlig 已提交
8084 8085 8086 8087 8088 8089 8090 8091
    if (vshCommandOptBool(cmd, "persistent")) {
        flags = VIR_DOMAIN_DEVICE_MODIFY_CONFIG;
        if (virDomainIsActive(dom) == 1)
           flags |= VIR_DOMAIN_DEVICE_MODIFY_LIVE;
        ret = virDomainAttachDeviceFlags(dom, buffer, flags);
    } else {
        ret = virDomainAttachDevice(dom, buffer);
    }
8092
    VIR_FREE(buffer);
8093 8094

    if (ret < 0) {
8095
        vshError(ctl, _("Failed to attach device from %s"), from);
8096 8097
        virDomainFree(dom);
        return FALSE;
8098
    } else {
J
Jim Meyering 已提交
8099
        vshPrint(ctl, "%s", _("Device attached successfully\n"));
8100 8101 8102 8103 8104 8105 8106 8107 8108 8109
    }

    virDomainFree(dom);
    return TRUE;
}


/*
 * "detach-device" command
 */
8110
static const vshCmdInfo info_detach_device[] = {
8111 8112
    {"help", N_("detach device from an XML file")},
    {"desc", N_("Detach device from an XML <file>")},
8113 8114 8115
    {NULL, NULL}
};

8116
static const vshCmdOptDef opts_detach_device[] = {
8117 8118 8119
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"file",   VSH_OT_DATA, VSH_OFLAG_REQ, N_("XML file")},
    {"persistent", VSH_OT_BOOL, 0, N_("persist device detachment")},
8120 8121 8122 8123
    {NULL, 0, 0, NULL}
};

static int
8124
cmdDetachDevice(vshControl *ctl, const vshCmd *cmd)
8125 8126 8127 8128 8129 8130
{
    virDomainPtr dom;
    char *from;
    char *buffer;
    int ret = TRUE;
    int found;
J
Jim Fehlig 已提交
8131
    unsigned int flags;
8132

8133
    if (!vshConnectionUsability(ctl, ctl->conn))
8134 8135
        return FALSE;

J
Jim Meyering 已提交
8136
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
8137 8138 8139 8140 8141 8142 8143 8144
        return FALSE;

    from = vshCommandOptString(cmd, "file", &found);
    if (!found) {
        virDomainFree(dom);
        return FALSE;
    }

8145
    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0) {
8146
        virshReportError(ctl);
8147
        virDomainFree(dom);
8148
        return FALSE;
8149
    }
8150

J
Jim Fehlig 已提交
8151 8152 8153 8154 8155 8156 8157 8158
    if (vshCommandOptBool(cmd, "persistent")) {
        flags = VIR_DOMAIN_DEVICE_MODIFY_CONFIG;
        if (virDomainIsActive(dom) == 1)
           flags |= VIR_DOMAIN_DEVICE_MODIFY_LIVE;
        ret = virDomainDetachDeviceFlags(dom, buffer, flags);
    } else {
        ret = virDomainDetachDevice(dom, buffer);
    }
8159
    VIR_FREE(buffer);
8160 8161

    if (ret < 0) {
8162
        vshError(ctl, _("Failed to detach device from %s"), from);
8163 8164
        virDomainFree(dom);
        return FALSE;
8165
    } else {
J
Jim Meyering 已提交
8166
        vshPrint(ctl, "%s", _("Device detached successfully\n"));
8167 8168 8169 8170 8171 8172
    }

    virDomainFree(dom);
    return TRUE;
}

8173

8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199
/*
 * "update-device" command
 */
static const vshCmdInfo info_update_device[] = {
    {"help", N_("update device from an XML file")},
    {"desc", N_("Update device from an XML <file>.")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_update_device[] = {
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"file",   VSH_OT_DATA, VSH_OFLAG_REQ, N_("XML file")},
    {"persistent", VSH_OT_BOOL, 0, N_("persist device update")},
    {NULL, 0, 0, NULL}
};

static int
cmdUpdateDevice(vshControl *ctl, const vshCmd *cmd)
{
    virDomainPtr dom;
    char *from;
    char *buffer;
    int ret = TRUE;
    int found;
    unsigned int flags;

8200
    if (!vshConnectionUsability(ctl, ctl->conn))
8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212
        return FALSE;

    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
        return FALSE;

    from = vshCommandOptString(cmd, "file", &found);
    if (!found) {
        virDomainFree(dom);
        return FALSE;
    }

    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0) {
8213
        virshReportError(ctl);
8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240
        virDomainFree(dom);
        return FALSE;
    }

    if (vshCommandOptBool(cmd, "persistent")) {
        flags = VIR_DOMAIN_DEVICE_MODIFY_CONFIG;
        if (virDomainIsActive(dom) == 1)
           flags |= VIR_DOMAIN_DEVICE_MODIFY_LIVE;
    } else {
        flags = VIR_DOMAIN_DEVICE_MODIFY_LIVE;
    }
    ret = virDomainUpdateDeviceFlags(dom, buffer, flags);
    VIR_FREE(buffer);

    if (ret < 0) {
        vshError(ctl, _("Failed to update device from %s"), from);
        virDomainFree(dom);
        return FALSE;
    } else {
        vshPrint(ctl, "%s", _("Device updated successfully\n"));
    }

    virDomainFree(dom);
    return TRUE;
}


8241 8242 8243
/*
 * "attach-interface" command
 */
8244
static const vshCmdInfo info_attach_interface[] = {
8245 8246
    {"help", N_("attach network interface")},
    {"desc", N_("Attach new network interface.")},
8247 8248 8249
    {NULL, NULL}
};

8250
static const vshCmdOptDef opts_attach_interface[] = {
8251 8252 8253 8254 8255 8256
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"type",   VSH_OT_DATA, VSH_OFLAG_REQ, N_("network interface type")},
    {"source", VSH_OT_DATA, VSH_OFLAG_REQ, N_("source of network interface")},
    {"target", VSH_OT_DATA, 0, N_("target network name")},
    {"mac",    VSH_OT_DATA, 0, N_("MAC address")},
    {"script", VSH_OT_DATA, 0, N_("script used to bridge network interface")},
8257
    {"model", VSH_OT_DATA, 0, N_("model type")},
8258
    {"persistent", VSH_OT_BOOL, 0, N_("persist interface attachment")},
8259 8260 8261 8262
    {NULL, 0, 0, NULL}
};

static int
8263
cmdAttachInterface(vshControl *ctl, const vshCmd *cmd)
8264 8265
{
    virDomainPtr dom = NULL;
8266
    char *mac, *target, *script, *type, *source, *model;
8267
    int typ, ret = FALSE;
J
Jim Fehlig 已提交
8268
    unsigned int flags;
8269 8270
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    char *xml;
8271

8272
    if (!vshConnectionUsability(ctl, ctl->conn))
8273 8274
        goto cleanup;

J
Jim Meyering 已提交
8275
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
8276 8277 8278 8279 8280 8281 8282 8283 8284
        goto cleanup;

    if (!(type = vshCommandOptString(cmd, "type", NULL)))
        goto cleanup;

    source = vshCommandOptString(cmd, "source", NULL);
    target = vshCommandOptString(cmd, "target", NULL);
    mac = vshCommandOptString(cmd, "mac", NULL);
    script = vshCommandOptString(cmd, "script", NULL);
8285
    model = vshCommandOptString(cmd, "model", NULL);
8286 8287

    /* check interface type */
8288
    if (STREQ(type, "network")) {
8289
        typ = 1;
8290
    } else if (STREQ(type, "bridge")) {
8291 8292
        typ = 2;
    } else {
E
Eric Blake 已提交
8293 8294
        vshError(ctl, _("No support for %s in command 'attach-interface'"),
                 type);
8295 8296 8297 8298
        goto cleanup;
    }

    /* Make XML of interface */
8299
    virBufferVSprintf(&buf, "<interface type='%s'>\n", type);
8300

8301 8302 8303 8304
    if (typ == 1)
        virBufferVSprintf(&buf, "  <source network='%s'/>\n", source);
    else if (typ == 2)
        virBufferVSprintf(&buf, "  <source bridge='%s'/>\n", source);
8305

8306 8307 8308 8309 8310 8311
    if (target != NULL)
        virBufferVSprintf(&buf, "  <target dev='%s'/>\n", target);
    if (mac != NULL)
        virBufferVSprintf(&buf, "  <mac address='%s'/>\n", mac);
    if (script != NULL)
        virBufferVSprintf(&buf, "  <script path='%s'/>\n", script);
8312 8313
    if (model != NULL)
        virBufferVSprintf(&buf, "  <model type='%s'/>\n", model);
8314

8315
    virBufferAddLit(&buf, "</interface>\n");
8316

8317 8318 8319
    if (virBufferError(&buf)) {
        vshPrint(ctl, "%s", _("Failed to allocate XML buffer"));
        return FALSE;
8320 8321
    }

8322
    xml = virBufferContentAndReset(&buf);
8323

J
Jim Fehlig 已提交
8324 8325 8326 8327
    if (vshCommandOptBool(cmd, "persistent")) {
        flags = VIR_DOMAIN_DEVICE_MODIFY_CONFIG;
        if (virDomainIsActive(dom) == 1)
            flags |= VIR_DOMAIN_DEVICE_MODIFY_LIVE;
8328
        ret = virDomainAttachDeviceFlags(dom, xml, flags);
8329
    } else {
8330
        ret = virDomainAttachDevice(dom, xml);
8331
    }
8332

8333 8334
    VIR_FREE(xml);

J
Jim Fehlig 已提交
8335
    if (ret != 0) {
L
Laine Stump 已提交
8336
        vshError(ctl, "%s", _("Failed to attach interface"));
J
Jim Fehlig 已提交
8337 8338 8339 8340 8341
        ret = FALSE;
    } else {
        vshPrint(ctl, "%s", _("Interface attached successfully\n"));
        ret = TRUE;
    }
8342 8343 8344 8345

 cleanup:
    if (dom)
        virDomainFree(dom);
8346
    virBufferFreeAndReset(&buf);
8347 8348 8349 8350 8351 8352
    return ret;
}

/*
 * "detach-interface" command
 */
8353
static const vshCmdInfo info_detach_interface[] = {
8354 8355
    {"help", N_("detach network interface")},
    {"desc", N_("Detach network interface.")},
8356 8357 8358
    {NULL, NULL}
};

8359
static const vshCmdOptDef opts_detach_interface[] = {
8360 8361 8362 8363
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"type",   VSH_OT_DATA, VSH_OFLAG_REQ, N_("network interface type")},
    {"mac",    VSH_OT_STRING, 0, N_("MAC address")},
    {"persistent", VSH_OT_BOOL, 0, N_("persist interface detachment")},
8364 8365 8366 8367
    {NULL, 0, 0, NULL}
};

static int
8368
cmdDetachInterface(vshControl *ctl, const vshCmd *cmd)
8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379
{
    virDomainPtr dom = NULL;
    xmlDocPtr xml = NULL;
    xmlXPathObjectPtr obj=NULL;
    xmlXPathContextPtr ctxt = NULL;
    xmlNodePtr cur = NULL;
    xmlChar *tmp_mac = NULL;
    xmlBufferPtr xml_buf = NULL;
    char *doc, *mac =NULL, *type;
    char buf[64];
    int i = 0, diff_mac, ret = FALSE;
J
Jim Fehlig 已提交
8380
    unsigned int flags;
8381

8382
    if (!vshConnectionUsability(ctl, ctl->conn))
8383 8384
        goto cleanup;

J
Jim Meyering 已提交
8385
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399
        goto cleanup;

    if (!(type = vshCommandOptString(cmd, "type", NULL)))
        goto cleanup;

    mac = vshCommandOptString(cmd, "mac", NULL);

    doc = virDomainGetXMLDesc(dom, 0);
    if (!doc)
        goto cleanup;

    xml = xmlReadDoc((const xmlChar *) doc, "domain.xml", NULL,
                     XML_PARSE_NOENT | XML_PARSE_NONET |
                     XML_PARSE_NOWARNING);
8400
    VIR_FREE(doc);
8401
    if (!xml) {
8402
        vshError(ctl, "%s", _("Failed to get interface information"));
8403 8404 8405 8406
        goto cleanup;
    }
    ctxt = xmlXPathNewContext(xml);
    if (!ctxt) {
8407
        vshError(ctl, "%s", _("Failed to get interface information"));
8408 8409 8410 8411 8412 8413 8414
        goto cleanup;
    }

    sprintf(buf, "/domain/devices/interface[@type='%s']", type);
    obj = xmlXPathEval(BAD_CAST buf, ctxt);
    if ((obj == NULL) || (obj->type != XPATH_NODESET) ||
        (obj->nodesetval == NULL) || (obj->nodesetval->nodeNr == 0)) {
8415
        vshError(ctl, _("No found interface whose type is %s"), type);
8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427
        goto cleanup;
    }

    if (!mac)
        goto hit;

    /* search mac */
    for (; i < obj->nodesetval->nodeNr; i++) {
        cur = obj->nodesetval->nodeTab[i]->children;
        while (cur != NULL) {
            if (cur->type == XML_ELEMENT_NODE && xmlStrEqual(cur->name, BAD_CAST "mac")) {
                tmp_mac = xmlGetProp(cur, BAD_CAST "address");
8428
                diff_mac = virMacAddrCompare ((char *) tmp_mac, mac);
8429 8430 8431 8432 8433 8434 8435 8436
                xmlFree(tmp_mac);
                if (!diff_mac) {
                    goto hit;
                }
            }
            cur = cur->next;
        }
    }
8437
    vshError(ctl, _("No found interface whose MAC address is %s"), mac);
8438 8439 8440 8441 8442
    goto cleanup;

 hit:
    xml_buf = xmlBufferCreate();
    if (!xml_buf) {
8443
        vshError(ctl, "%s", _("Failed to allocate memory"));
8444 8445 8446 8447
        goto cleanup;
    }

    if(xmlNodeDump(xml_buf, xml, obj->nodesetval->nodeTab[i], 0, 0) < 0){
8448
        vshError(ctl, "%s", _("Failed to create XML"));
8449 8450 8451
        goto cleanup;
    }

J
Jim Fehlig 已提交
8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463
    if (vshCommandOptBool(cmd, "persistent")) {
        flags = VIR_DOMAIN_DEVICE_MODIFY_CONFIG;
        if (virDomainIsActive(dom) == 1)
            flags |= VIR_DOMAIN_DEVICE_MODIFY_LIVE;
        ret = virDomainDetachDeviceFlags(dom,
                                         (char *)xmlBufferContent(xml_buf),
                                         flags);
    } else {
        ret = virDomainDetachDevice(dom, (char *)xmlBufferContent(xml_buf));
    }

    if (ret != 0) {
L
Laine Stump 已提交
8464
        vshError(ctl, "%s", _("Failed to detach interface"));
8465
        ret = FALSE;
J
Jim Fehlig 已提交
8466
    } else {
J
Jim Meyering 已提交
8467
        vshPrint(ctl, "%s", _("Interface detached successfully\n"));
8468
        ret = TRUE;
8469
    }
8470 8471 8472 8473

 cleanup:
    if (dom)
        virDomainFree(dom);
8474
    xmlXPathFreeObject(obj);
8475
    xmlXPathFreeContext(ctxt);
8476 8477 8478 8479 8480 8481 8482 8483 8484 8485
    if (xml)
        xmlFreeDoc(xml);
    if (xml_buf)
        xmlBufferFree(xml_buf);
    return ret;
}

/*
 * "attach-disk" command
 */
8486
static const vshCmdInfo info_attach_disk[] = {
8487 8488
    {"help", N_("attach disk device")},
    {"desc", N_("Attach new disk device.")},
8489 8490 8491
    {NULL, NULL}
};

8492
static const vshCmdOptDef opts_attach_disk[] = {
8493 8494 8495 8496 8497 8498 8499 8500
    {"domain",  VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"source",  VSH_OT_DATA, VSH_OFLAG_REQ, N_("source of disk device")},
    {"target",  VSH_OT_DATA, VSH_OFLAG_REQ, N_("target of disk device")},
    {"driver",    VSH_OT_STRING, 0, N_("driver of disk device")},
    {"subdriver", VSH_OT_STRING, 0, N_("subdriver of disk device")},
    {"type",    VSH_OT_STRING, 0, N_("target device type")},
    {"mode",    VSH_OT_STRING, 0, N_("mode of device reading and writing")},
    {"persistent", VSH_OT_BOOL, 0, N_("persist disk attachment")},
8501
    {"sourcetype", VSH_OT_STRING, 0, N_("type of source (block|file)")},
8502 8503 8504 8505
    {NULL, 0, 0, NULL}
};

static int
8506
cmdAttachDisk(vshControl *ctl, const vshCmd *cmd)
8507 8508 8509 8510
{
    virDomainPtr dom = NULL;
    char *source, *target, *driver, *subdriver, *type, *mode;
    int isFile = 0, ret = FALSE;
J
Jim Fehlig 已提交
8511
    unsigned int flags;
8512
    char *stype;
8513 8514
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    char *xml;
8515

8516
    if (!vshConnectionUsability(ctl, ctl->conn))
8517 8518
        goto cleanup;

J
Jim Meyering 已提交
8519
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531
        goto cleanup;

    if (!(source = vshCommandOptString(cmd, "source", NULL)))
        goto cleanup;

    if (!(target = vshCommandOptString(cmd, "target", NULL)))
        goto cleanup;

    driver = vshCommandOptString(cmd, "driver", NULL);
    subdriver = vshCommandOptString(cmd, "subdriver", NULL);
    type = vshCommandOptString(cmd, "type", NULL);
    mode = vshCommandOptString(cmd, "mode", NULL);
8532
    stype = vshCommandOptString(cmd, "sourcetype", NULL);
8533

8534 8535
    if (!stype) {
        if (driver && (STREQ(driver, "file") || STREQ(driver, "tap")))
8536
            isFile = 1;
8537 8538 8539 8540 8541
    } else if (STREQ(stype, "file")) {
        isFile = 1;
    } else if (STRNEQ(stype, "block")) {
        vshError(ctl, _("Unknown source type: '%s'"), stype);
        goto cleanup;
8542 8543 8544
    }

    if (mode) {
8545
        if (STRNEQ(mode, "readonly") && STRNEQ(mode, "shareable")) {
E
Eric Blake 已提交
8546 8547
            vshError(ctl, _("No support for %s in command 'attach-disk'"),
                     mode);
8548 8549 8550 8551 8552
            goto cleanup;
        }
    }

    /* Make XML of disk */
8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572
    virBufferVSprintf(&buf, "<disk type='%s'",
                      (isFile) ? "file" : "block");
    if (type)
        virBufferVSprintf(&buf, " device='%s'", type);
    virBufferAddLit(&buf, ">\n");

    virBufferVSprintf(&buf, "  <driver name='%s'",
                      (driver) ? driver : "phy");
    if (subdriver)
        virBufferVSprintf(&buf, " type='%s'", subdriver);
    virBufferAddLit(&buf, "/>\n");

    virBufferVSprintf(&buf, "  <source %s='%s'/>\n",
                      (isFile) ? "file" : "dev",
                      source);
    virBufferVSprintf(&buf, "  <target dev='%s'/>\n", target);
    if (mode)
        virBufferVSprintf(&buf, "  <%s/>\n", mode);

    virBufferAddLit(&buf, "</disk>\n");
8573

8574 8575 8576
    if (virBufferError(&buf)) {
        vshPrint(ctl, "%s", _("Failed to allocate XML buffer"));
        return FALSE;
8577 8578
    }

8579
    xml = virBufferContentAndReset(&buf);
8580

J
Jim Fehlig 已提交
8581 8582 8583 8584
    if (vshCommandOptBool(cmd, "persistent")) {
        flags = VIR_DOMAIN_DEVICE_MODIFY_CONFIG;
        if (virDomainIsActive(dom) == 1)
            flags |= VIR_DOMAIN_DEVICE_MODIFY_LIVE;
8585
        ret = virDomainAttachDeviceFlags(dom, xml, flags);
J
Jim Fehlig 已提交
8586
    } else {
8587
        ret = virDomainAttachDevice(dom, xml);
J
Jim Fehlig 已提交
8588
    }
8589

8590 8591
    VIR_FREE(xml);

J
Jim Fehlig 已提交
8592
    if (ret != 0) {
L
Laine Stump 已提交
8593
        vshError(ctl, "%s", _("Failed to attach disk"));
J
Jim Fehlig 已提交
8594 8595 8596 8597 8598
        ret = FALSE;
    } else {
        vshPrint(ctl, "%s", _("Disk attached successfully\n"));
        ret = TRUE;
    }
8599 8600 8601 8602

 cleanup:
    if (dom)
        virDomainFree(dom);
8603
    virBufferFreeAndReset(&buf);
8604 8605 8606 8607 8608 8609
    return ret;
}

/*
 * "detach-disk" command
 */
8610
static const vshCmdInfo info_detach_disk[] = {
8611 8612
    {"help", N_("detach disk device")},
    {"desc", N_("Detach disk device.")},
8613 8614 8615
    {NULL, NULL}
};

8616
static const vshCmdOptDef opts_detach_disk[] = {
8617 8618 8619
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"target", VSH_OT_DATA, VSH_OFLAG_REQ, N_("target of disk device")},
    {"persistent", VSH_OT_BOOL, 0, N_("persist disk detachment")},
8620 8621 8622 8623
    {NULL, 0, 0, NULL}
};

static int
8624
cmdDetachDisk(vshControl *ctl, const vshCmd *cmd)
8625 8626 8627 8628 8629 8630 8631 8632 8633 8634
{
    xmlDocPtr xml = NULL;
    xmlXPathObjectPtr obj=NULL;
    xmlXPathContextPtr ctxt = NULL;
    xmlNodePtr cur = NULL;
    xmlChar *tmp_tgt = NULL;
    xmlBufferPtr xml_buf = NULL;
    virDomainPtr dom = NULL;
    char *doc, *target;
    int i = 0, diff_tgt, ret = FALSE;
J
Jim Fehlig 已提交
8635
    unsigned int flags;
8636

8637
    if (!vshConnectionUsability(ctl, ctl->conn))
8638 8639
        goto cleanup;

J
Jim Meyering 已提交
8640
    if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652
        goto cleanup;

    if (!(target = vshCommandOptString(cmd, "target", NULL)))
        goto cleanup;

    doc = virDomainGetXMLDesc(dom, 0);
    if (!doc)
        goto cleanup;

    xml = xmlReadDoc((const xmlChar *) doc, "domain.xml", NULL,
                     XML_PARSE_NOENT | XML_PARSE_NONET |
                     XML_PARSE_NOWARNING);
8653
    VIR_FREE(doc);
8654
    if (!xml) {
8655
        vshError(ctl, "%s", _("Failed to get disk information"));
8656 8657 8658 8659
        goto cleanup;
    }
    ctxt = xmlXPathNewContext(xml);
    if (!ctxt) {
8660
        vshError(ctl, "%s", _("Failed to get disk information"));
8661 8662 8663 8664 8665 8666
        goto cleanup;
    }

    obj = xmlXPathEval(BAD_CAST "/domain/devices/disk", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_NODESET) ||
        (obj->nodesetval == NULL) || (obj->nodesetval->nodeNr == 0)) {
8667
        vshError(ctl, "%s", _("Failed to get disk information"));
8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685
        goto cleanup;
    }

    /* search target */
    for (; i < obj->nodesetval->nodeNr; i++) {
        cur = obj->nodesetval->nodeTab[i]->children;
        while (cur != NULL) {
            if (cur->type == XML_ELEMENT_NODE && xmlStrEqual(cur->name, BAD_CAST "target")) {
                tmp_tgt = xmlGetProp(cur, BAD_CAST "dev");
                diff_tgt = xmlStrEqual(tmp_tgt, BAD_CAST target);
                xmlFree(tmp_tgt);
                if (diff_tgt) {
                    goto hit;
                }
            }
            cur = cur->next;
        }
    }
8686
    vshError(ctl, _("No found disk whose target is %s"), target);
8687 8688 8689 8690 8691
    goto cleanup;

 hit:
    xml_buf = xmlBufferCreate();
    if (!xml_buf) {
8692
        vshError(ctl, "%s", _("Failed to allocate memory"));
8693 8694 8695 8696
        goto cleanup;
    }

    if(xmlNodeDump(xml_buf, xml, obj->nodesetval->nodeTab[i], 0, 0) < 0){
8697
        vshError(ctl, "%s", _("Failed to create XML"));
8698 8699 8700
        goto cleanup;
    }

J
Jim Fehlig 已提交
8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712
    if (vshCommandOptBool(cmd, "persistent")) {
        flags = VIR_DOMAIN_DEVICE_MODIFY_CONFIG;
        if (virDomainIsActive(dom) == 1)
            flags |= VIR_DOMAIN_DEVICE_MODIFY_LIVE;
        ret = virDomainDetachDeviceFlags(dom,
                                         (char *)xmlBufferContent(xml_buf),
                                         flags);
    } else {
        ret = virDomainDetachDevice(dom, (char *)xmlBufferContent(xml_buf));
    }

    if (ret != 0) {
L
Laine Stump 已提交
8713
        vshError(ctl, "%s", _("Failed to detach disk"));
8714
        ret = FALSE;
J
Jim Fehlig 已提交
8715
    } else {
J
Jim Meyering 已提交
8716
        vshPrint(ctl, "%s", _("Disk detached successfully\n"));
8717
        ret = TRUE;
8718
    }
8719 8720

 cleanup:
8721
    xmlXPathFreeObject(obj);
8722
    xmlXPathFreeContext(ctxt);
8723 8724 8725 8726 8727 8728 8729 8730 8731
    if (xml)
        xmlFreeDoc(xml);
    if (xml_buf)
        xmlBufferFree(xml_buf);
    if (dom)
        virDomainFree(dom);
    return ret;
}

8732 8733 8734 8735
/*
 * "cpu-compare" command
 */
static const vshCmdInfo info_cpu_compare[] = {
8736 8737
    {"help", N_("compare host CPU with a CPU described by an XML file")},
    {"desc", N_("compare CPU with host CPU")},
8738 8739 8740 8741
    {NULL, NULL}
};

static const vshCmdOptDef opts_cpu_compare[] = {
8742
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ, N_("file containing an XML CPU description")},
8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754
    {NULL, 0, 0, NULL}
};

static int
cmdCPUCompare(vshControl *ctl, const vshCmd *cmd)
{
    char *from;
    int found;
    int ret = TRUE;
    char *buffer;
    int result;

8755
    if (!vshConnectionUsability(ctl, ctl->conn))
8756 8757 8758 8759 8760 8761 8762 8763 8764 8765
        return FALSE;

    from = vshCommandOptString(cmd, "file", &found);
    if (!found)
        return FALSE;

    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0)
        return FALSE;

    result = virConnectCompareCPU(ctl->conn, buffer, 0);
8766
    VIR_FREE(buffer);
8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795

    switch (result) {
    case VIR_CPU_COMPARE_INCOMPATIBLE:
        vshPrint(ctl, _("CPU described in %s is incompatible with host CPU\n"),
                 from);
        ret = FALSE;
        break;

    case VIR_CPU_COMPARE_IDENTICAL:
        vshPrint(ctl, _("CPU described in %s is identical to host CPU\n"),
                 from);
        ret = TRUE;
        break;

    case VIR_CPU_COMPARE_SUPERSET:
        vshPrint(ctl, _("Host CPU is a superset of CPU described in %s\n"),
                 from);
        ret = TRUE;
        break;

    case VIR_CPU_COMPARE_ERROR:
    default:
        vshError(ctl, _("Failed to compare host CPU with %s"), from);
        ret = FALSE;
    }

    return ret;
}

8796 8797 8798 8799
/*
 * "cpu-baseline" command
 */
static const vshCmdInfo info_cpu_baseline[] = {
8800 8801
    {"help", N_("compute baseline CPU")},
    {"desc", N_("Compute baseline CPU for a set of given CPUs.")},
8802 8803 8804 8805
    {NULL, NULL}
};

static const vshCmdOptDef opts_cpu_baseline[] = {
8806
    {"file", VSH_OT_DATA, VSH_OFLAG_REQ, N_("file containing XML CPU descriptions")},
8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820
    {NULL, 0, 0, NULL}
};

static int
cmdCPUBaseline(vshControl *ctl, const vshCmd *cmd)
{
    char *from;
    int found;
    int ret = TRUE;
    char *buffer;
    char *result = NULL;
    const char **list = NULL;
    unsigned int count = 0;
    xmlDocPtr doc = NULL;
8821
    xmlNodePtr node_list;
8822 8823 8824 8825 8826 8827
    xmlXPathContextPtr ctxt = NULL;
    xmlSaveCtxtPtr sctxt = NULL;
    xmlBufferPtr buf = NULL;
    xmlXPathObjectPtr obj = NULL;
    int res, i;

8828
    if (!vshConnectionUsability(ctl, ctl->conn))
8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841
        return FALSE;

    from = vshCommandOptString(cmd, "file", &found);
    if (!found)
        return FALSE;

    if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0)
        return FALSE;

    doc = xmlNewDoc(NULL);
    if (doc == NULL)
        goto no_memory;

L
Laine Stump 已提交
8842 8843
    res = xmlParseBalancedChunkMemory(doc, NULL, NULL, 0,
                                      (const xmlChar *)buffer, &node_list);
8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910
    if (res != 0) {
        vshError(ctl, _("Failed to parse XML fragment %s"), from);
        ret = FALSE;
        goto cleanup;
    }

    xmlAddChildList((xmlNodePtr) doc, node_list);

    ctxt = xmlXPathNewContext(doc);
    if (!ctxt)
        goto no_memory;

    obj = xmlXPathEval(BAD_CAST "//cpu[not(ancestor::cpu)]", ctxt);
    if ((obj == NULL) || (obj->nodesetval == NULL) ||
        (obj->nodesetval->nodeTab == NULL))
        goto cleanup;

    for (i = 0;i < obj->nodesetval->nodeNr;i++) {
        buf = xmlBufferCreate();
        if (buf == NULL)
            goto no_memory;
        sctxt = xmlSaveToBuffer(buf, NULL, 0);
        if (sctxt == NULL) {
            xmlBufferFree(buf);
            goto no_memory;
        }

        xmlSaveTree(sctxt, obj->nodesetval->nodeTab[i]);
        xmlSaveClose(sctxt);

        list = vshRealloc(ctl, list, sizeof(char *) * (count + 1));
        list[count++] = (char *) buf->content;
        buf->content = NULL;
        xmlBufferFree(buf);
        buf = NULL;
    }

    if (count == 0) {
        vshError(ctl, _("No host CPU specified in '%s'"), from);
        ret = FALSE;
        goto cleanup;
    }

    result = virConnectBaselineCPU(ctl->conn, list, count, 0);

    if (result)
        vshPrint(ctl, "%s", result);
    else
        ret = FALSE;

cleanup:
    xmlXPathFreeObject(obj);
    xmlXPathFreeContext(ctxt);
    xmlFreeDoc(doc);
    VIR_FREE(result);
    if ((list != NULL) && (count > 0)) {
        for (i = 0;i < count;i++)
            VIR_FREE(list[i]);
    }
    VIR_FREE(list);
    VIR_FREE(buffer);

    return ret;

no_memory:
    vshError(ctl, "%s", _("Out of memory"));
    ret = FALSE;
8911
    goto cleanup;
8912 8913
}

8914 8915 8916 8917 8918 8919 8920 8921
/* Common code for the edit / net-edit / pool-edit functions which follow. */
static char *
editWriteToTempFile (vshControl *ctl, const char *doc)
{
    char *ret;
    const char *tmpdir;
    int fd;

8922
    ret = vshMalloc(ctl, PATH_MAX);
8923 8924 8925

    tmpdir = getenv ("TMPDIR");
    if (!tmpdir) tmpdir = "/tmp";
8926 8927
    snprintf (ret, PATH_MAX, "%s/virshXXXXXX.xml", tmpdir);
    fd = mkstemps(ret, 4);
8928
    if (fd == -1) {
8929
        vshError(ctl, _("mkstemps: failed to create temporary file: %s"),
8930
                 strerror(errno));
8931
        VIR_FREE(ret);
8932 8933 8934 8935
        return NULL;
    }

    if (safewrite (fd, doc, strlen (doc)) == -1) {
8936 8937
        vshError(ctl, _("write: %s: failed to write to temporary file: %s"),
                 ret, strerror(errno));
8938 8939
        close (fd);
        unlink (ret);
8940
        VIR_FREE(ret);
8941 8942 8943
        return NULL;
    }
    if (close (fd) == -1) {
8944 8945
        vshError(ctl, _("close: %s: failed to write or close temporary file: %s"),
                 ret, strerror(errno));
8946
        unlink (ret);
8947
        VIR_FREE(ret);
8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965
        return NULL;
    }

    /* Temporary filename: caller frees. */
    return ret;
}

/* Characters permitted in $EDITOR environment variable and temp filename. */
#define ACCEPTED_CHARS \
  "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-/_.:@"

static int
editFile (vshControl *ctl, const char *filename)
{
    const char *editor;
    char *command;
    int command_ret;

8966 8967
    editor = getenv ("VISUAL");
    if (!editor) editor = getenv ("EDITOR");
8968 8969
    if (!editor) editor = "vi"; /* could be cruel & default to ed(1) here */

8970 8971 8972 8973 8974 8975
    /* Check that filename doesn't contain shell meta-characters, and
     * if it does, refuse to run.  Follow the Unix conventions for
     * EDITOR: the user can intentionally specify command options, so
     * we don't protect any shell metacharacters there.  Lots more
     * than virsh will misbehave if EDITOR has bogus contents (which
     * is why sudo scrubs it by default).
8976 8977
     */
    if (strspn (filename, ACCEPTED_CHARS) != strlen (filename)) {
8978 8979 8980
        vshError(ctl,
                 _("%s: temporary filename contains shell meta or other "
                   "unacceptable characters (is $TMPDIR wrong?)"),
8981 8982 8983 8984
                 filename);
        return -1;
    }

8985
    if (virAsprintf(&command, "%s %s", editor, filename) == -1) {
8986
        vshError(ctl,
8987
                 _("virAsprintf: could not create editing command: %s"),
8988
                 strerror(errno));
8989 8990 8991 8992 8993
        return -1;
    }

    command_ret = system (command);
    if (command_ret == -1) {
8994 8995
        vshError(ctl,
                 _("%s: edit command failed: %s"), command, strerror(errno));
8996
        VIR_FREE(command);
8997 8998
        return -1;
    }
8999
    if (WEXITSTATUS(command_ret) != 0) {
9000
        vshError(ctl,
9001
                 _("%s: command exited with non-zero status"), command);
9002
        VIR_FREE(command);
9003 9004
        return -1;
    }
9005
    VIR_FREE(command);
9006 9007 9008 9009 9010 9011 9012 9013 9014
    return 0;
}

static char *
editReadBackFile (vshControl *ctl, const char *filename)
{
    char *ret;

    if (virFileReadAll (filename, VIRSH_MAX_XML_FILE, &ret) == -1) {
9015
        vshError(ctl,
9016
                 _("%s: failed to read temporary file: %s"),
9017
                 filename, strerror(errno));
9018 9019 9020 9021 9022
        return NULL;
    }
    return ret;
}

9023 9024

#ifndef WIN32
P
Paolo Bonzini 已提交
9025 9026 9027 9028
/*
 * "cd" command
 */
static const vshCmdInfo info_cd[] = {
9029 9030
    {"help", N_("change the current directory")},
    {"desc", N_("Change the current directory.")},
P
Paolo Bonzini 已提交
9031 9032 9033 9034
    {NULL, NULL}
};

static const vshCmdOptDef opts_cd[] = {
9035
    {"dir", VSH_OT_DATA, 0, N_("directory to switch to (default: home or else root)")},
P
Paolo Bonzini 已提交
9036 9037 9038 9039 9040 9041 9042 9043 9044 9045
    {NULL, 0, 0, NULL}
};

static int
cmdCd(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
{
    const char *dir;
    int found;

    if (!ctl->imode) {
9046
        vshError(ctl, "%s", _("cd: command valid only in interactive mode"));
C
Chris Lalancette 已提交
9047
        return FALSE;
P
Paolo Bonzini 已提交
9048 9049 9050 9051 9052
    }

    dir = vshCommandOptString(cmd, "dir", &found);
    if (!found) {
        uid_t uid = geteuid();
9053
        dir = virGetUserDirectory(uid);
P
Paolo Bonzini 已提交
9054 9055 9056 9057 9058
    }
    if (!dir)
        dir = "/";

    if (chdir (dir) == -1) {
9059
        vshError(ctl, _("cd: %s: %s"), strerror(errno), dir);
C
Chris Lalancette 已提交
9060
        return FALSE;
P
Paolo Bonzini 已提交
9061 9062
    }

C
Chris Lalancette 已提交
9063
    return TRUE;
P
Paolo Bonzini 已提交
9064 9065
}

9066 9067 9068
#endif

#ifndef WIN32
P
Paolo Bonzini 已提交
9069 9070 9071 9072
/*
 * "pwd" command
 */
static const vshCmdInfo info_pwd[] = {
9073 9074
    {"help", N_("print the current directory")},
    {"desc", N_("Print the current directory.")},
P
Paolo Bonzini 已提交
9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096
    {NULL, NULL}
};

static int
cmdPwd(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
{
    char *cwd;
    size_t path_max;
    int err = TRUE;

    path_max = (size_t) PATH_MAX + 2;
    cwd = vshMalloc (ctl, path_max);
    while (cwd) {
        err = getcwd (cwd, path_max) == NULL;
        if (!err || errno != ERANGE)
            break;

        path_max *= 2;
        cwd = vshRealloc (ctl, cwd, path_max);
    }

    if (err)
9097 9098
        vshError(ctl, _("pwd: cannot get current directory: %s"),
                 strerror(errno));
P
Paolo Bonzini 已提交
9099 9100 9101
    else
        vshPrint (ctl, _("%s\n"), cwd);

9102
    VIR_FREE(cwd);
P
Paolo Bonzini 已提交
9103 9104
    return !err;
}
9105
#endif
P
Paolo Bonzini 已提交
9106

E
Eric Blake 已提交
9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180
/*
 * "echo" command
 */
static const vshCmdInfo info_echo[] = {
    {"help", N_("echo arguments")},
    {"desc", N_("Echo back arguments, possibly with quoting.")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_echo[] = {
    {"shell", VSH_OT_BOOL, 0, N_("escape for shell use")},
    {"xml", VSH_OT_BOOL, 0, N_("escape for XML use")},
    {"", VSH_OT_ARGV, 0, N_("arguments to echo")},
    {NULL, 0, 0, NULL}
};

/* Exists mainly for debugging virsh, but also handy for adding back
 * quotes for later evaluation.
 */
static int
cmdEcho (vshControl *ctl ATTRIBUTE_UNUSED, const vshCmd *cmd)
{
    bool shell = false;
    bool xml = false;
    int count = 0;
    char *arg;
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (vshCommandOptBool(cmd, "shell"))
        shell = true;
    if (vshCommandOptBool(cmd, "xml"))
        xml = true;

    while ((arg = vshCommandOptArgv(cmd, count)) != NULL) {
        bool close_quote = false;
        char *q;

        if (count)
            virBufferAddChar(&buf, ' ');
        /* Add outer '' only if arg included shell metacharacters.  */
        if (shell &&
            (strpbrk(arg, "\r\t\n !\"#$&'()*;<>?[\\]^`{|}~") || !*arg)) {
            virBufferAddChar(&buf, '\'');
            close_quote = true;
        }
        if (xml) {
            virBufferEscapeString(&buf, "%s", arg);
        } else {
            if (shell && (q = strchr(arg, '\''))) {
                do {
                    virBufferAdd(&buf, arg, q - arg);
                    virBufferAddLit(&buf, "'\\''");
                    arg = q + 1;
                    q = strchr(arg, '\'');
                } while (q);
            }
            virBufferAdd(&buf, arg, strlen(arg));
        }
        if (close_quote)
            virBufferAddChar(&buf, '\'');
        count++;
    }

    if (virBufferError(&buf)) {
        vshPrint(ctl, "%s", _("Failed to allocate XML buffer"));
        return FALSE;
    }
    arg = virBufferContentAndReset(&buf);
    if (arg)
        vshPrint(ctl, "%s", arg);
    VIR_FREE(arg);
    return TRUE;
}

9181 9182 9183 9184
/*
 * "edit" command
 */
static const vshCmdInfo info_edit[] = {
9185 9186
    {"help", N_("edit XML configuration for a domain")},
    {"desc", N_("Edit the XML configuration for a domain.")},
9187 9188 9189 9190
    {NULL, NULL}
};

static const vshCmdOptDef opts_edit[] = {
9191
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206
    {NULL, 0, 0, NULL}
};

/* This function also acts as a template to generate cmdNetworkEdit
 * and cmdPoolEdit functions (below) using a sed script in the Makefile.
 */
static int
cmdEdit (vshControl *ctl, const vshCmd *cmd)
{
    int ret = FALSE;
    virDomainPtr dom = NULL;
    char *tmp = NULL;
    char *doc = NULL;
    char *doc_edited = NULL;
    char *doc_reread = NULL;
9207
    int flags = VIR_DOMAIN_XML_SECURE | VIR_DOMAIN_XML_INACTIVE;
9208

9209
    if (!vshConnectionUsability(ctl, ctl->conn))
9210 9211
        goto cleanup;

J
Jim Meyering 已提交
9212
    dom = vshCommandOptDomain (ctl, cmd, NULL);
9213 9214 9215 9216
    if (dom == NULL)
        goto cleanup;

    /* Get the XML configuration of the domain. */
9217
    doc = virDomainGetXMLDesc (dom, flags);
9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243
    if (!doc)
        goto cleanup;

    /* Create and open the temporary file. */
    tmp = editWriteToTempFile (ctl, doc);
    if (!tmp) goto cleanup;

    /* Start the editor. */
    if (editFile (ctl, tmp) == -1) goto cleanup;

    /* Read back the edited file. */
    doc_edited = editReadBackFile (ctl, tmp);
    if (!doc_edited) goto cleanup;

    /* Compare original XML with edited.  Has it changed at all? */
    if (STREQ (doc, doc_edited)) {
        vshPrint (ctl, _("Domain %s XML configuration not changed.\n"),
                  virDomainGetName (dom));
        ret = TRUE;
        goto cleanup;
    }

    /* Now re-read the domain XML.  Did someone else change it while
     * it was being edited?  This also catches problems such as us
     * losing a connection or the domain going away.
     */
9244
    doc_reread = virDomainGetXMLDesc (dom, flags);
9245 9246 9247 9248
    if (!doc_reread)
        goto cleanup;

    if (STRNEQ (doc, doc_reread)) {
9249 9250
        vshError(ctl,
                 "%s", _("ERROR: the XML configuration was changed by another user"));
9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268
        goto cleanup;
    }

    /* Everything checks out, so redefine the domain. */
    virDomainFree (dom);
    dom = virDomainDefineXML (ctl->conn, doc_edited);
    if (!dom)
        goto cleanup;

    vshPrint (ctl, _("Domain %s XML configuration edited.\n"),
              virDomainGetName(dom));

    ret = TRUE;

 cleanup:
    if (dom)
        virDomainFree (dom);

9269 9270 9271
    VIR_FREE(doc);
    VIR_FREE(doc_edited);
    VIR_FREE(doc_reread);
9272 9273 9274

    if (tmp) {
        unlink (tmp);
9275
        VIR_FREE(tmp);
9276 9277 9278 9279 9280 9281 9282 9283 9284
    }

    return ret;
}

/*
 * "net-edit" command
 */
static const vshCmdInfo info_network_edit[] = {
9285 9286
    {"help", N_("edit XML configuration for a network")},
    {"desc", N_("Edit the XML configuration for a network.")},
9287 9288 9289 9290
    {NULL, NULL}
};

static const vshCmdOptDef opts_network_edit[] = {
9291
    {"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name or uuid")},
9292 9293 9294 9295 9296 9297 9298 9299 9300 9301
    {NULL, 0, 0, NULL}
};

/* This is generated from this file by a sed script in the Makefile. */
#include "virsh-net-edit.c"

/*
 * "pool-edit" command
 */
static const vshCmdInfo info_pool_edit[] = {
9302 9303
    {"help", N_("edit XML configuration for a storage pool")},
    {"desc", N_("Edit the XML configuration for a storage pool.")},
9304 9305 9306 9307
    {NULL, NULL}
};

static const vshCmdOptDef opts_pool_edit[] = {
9308
    {"pool", VSH_OT_DATA, VSH_OFLAG_REQ, N_("pool name or uuid")},
9309 9310 9311 9312 9313 9314
    {NULL, 0, 0, NULL}
};

/* This is generated from this file by a sed script in the Makefile. */
#include "virsh-pool-edit.c"

K
Karel Zak 已提交
9315 9316 9317
/*
 * "quit" command
 */
9318
static const vshCmdInfo info_quit[] = {
9319
    {"help", N_("quit this interactive terminal")},
9320
    {"desc", ""},
9321
    {NULL, NULL}
K
Karel Zak 已提交
9322 9323 9324
};

static int
9325
cmdQuit(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
9326
{
K
Karel Zak 已提交
9327 9328 9329 9330
    ctl->imode = FALSE;
    return TRUE;
}

9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358
/*
 * "snapshot-create" command
 */
static const vshCmdInfo info_snapshot_create[] = {
    {"help", N_("Create a snapshot")},
    {"desc", N_("Snapshot create")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_snapshot_create[] = {
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"xmlfile", VSH_OT_DATA, 0, N_("domain snapshot XML")},
    {NULL, 0, 0, NULL}
};

static int
cmdSnapshotCreate(vshControl *ctl, const vshCmd *cmd)
{
    virDomainPtr dom = NULL;
    int ret = FALSE;
    char *from;
    char *buffer = NULL;
    virDomainSnapshotPtr snapshot = NULL;
    xmlDocPtr xml = NULL;
    xmlXPathContextPtr ctxt = NULL;
    char *doc = NULL;
    char *name = NULL;

9359
    if (!vshConnectionUsability(ctl, ctl->conn))
9360 9361 9362 9363 9364 9365 9366 9367
        goto cleanup;

    dom = vshCommandOptDomain(ctl, cmd, NULL);
    if (dom == NULL)
        goto cleanup;

    from = vshCommandOptString(cmd, "xmlfile", NULL);
    if (from == NULL)
E
Eric Blake 已提交
9368
        buffer = vshStrdup(ctl, "<domainsnapshot/>");
9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451
    else {
        if (virFileReadAll(from, VIRSH_MAX_XML_FILE, &buffer) < 0) {
            /* we have to report the error here because during cleanup
             * we'll run through virDomainFree(), which loses the
             * last error
             */
            virshReportError(ctl);
            goto cleanup;
        }
    }
    if (buffer == NULL) {
        vshError(ctl, "%s", _("Out of memory"));
        goto cleanup;
    }

    snapshot = virDomainSnapshotCreateXML(dom, buffer, 0);
    if (snapshot == NULL)
        goto cleanup;

    doc = virDomainSnapshotGetXMLDesc(snapshot, 0);
    if (!doc)
        goto cleanup;

    xml = xmlReadDoc((const xmlChar *) doc, "domainsnapshot.xml", NULL,
                     XML_PARSE_NOENT | XML_PARSE_NONET |
                     XML_PARSE_NOWARNING);
    if (!xml)
        goto cleanup;
    ctxt = xmlXPathNewContext(xml);
    if (!ctxt)
        goto cleanup;

    name = virXPathString("string(/domainsnapshot/name)", ctxt);
    if (!name) {
        vshError(ctl, "%s",
                 _("Could not find 'name' element in domain snapshot XML"));
        goto cleanup;
    }

    vshPrint(ctl, _("Domain snapshot %s created"), name);
    if (from)
        vshPrint(ctl, _(" from '%s'"), from);
    vshPrint(ctl, "\n");

    ret = TRUE;

cleanup:
    VIR_FREE(name);
    xmlXPathFreeContext(ctxt);
    if (xml)
        xmlFreeDoc(xml);
    if (snapshot)
        virDomainSnapshotFree(snapshot);
    VIR_FREE(doc);
    VIR_FREE(buffer);
    if (dom)
        virDomainFree(dom);

    return ret;
}

/*
 * "snapshot-current" command
 */
static const vshCmdInfo info_snapshot_current[] = {
    {"help", N_("Get the current snapshot")},
    {"desc", N_("Get the current snapshot")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_snapshot_current[] = {
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {NULL, 0, 0, NULL}
};

static int
cmdSnapshotCurrent(vshControl *ctl, const vshCmd *cmd)
{
    virDomainPtr dom = NULL;
    int ret = FALSE;
    int current;
    virDomainSnapshotPtr snapshot = NULL;

9452
    if (!vshConnectionUsability(ctl, ctl->conn))
9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507
        goto cleanup;

    dom = vshCommandOptDomain(ctl, cmd, NULL);
    if (dom == NULL)
        goto cleanup;

    current = virDomainHasCurrentSnapshot(dom, 0);
    if (current < 0)
        goto cleanup;
    else if (current) {
        char *xml;

        if (!(snapshot = virDomainSnapshotCurrent(dom, 0)))
            goto cleanup;

        xml = virDomainSnapshotGetXMLDesc(snapshot, 0);
        if (!xml)
            goto cleanup;

        vshPrint(ctl, "%s", xml);
        VIR_FREE(xml);
    }

    ret = TRUE;

cleanup:
    if (snapshot)
        virDomainSnapshotFree(snapshot);
    if (dom)
        virDomainFree(dom);

    return ret;
}

/*
 * "snapshot-list" command
 */
static const vshCmdInfo info_snapshot_list[] = {
    {"help", N_("List snapshots for a domain")},
    {"desc", N_("Snapshot List")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_snapshot_list[] = {
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {NULL, 0, 0, NULL}
};

static int
cmdSnapshotList(vshControl *ctl, const vshCmd *cmd)
{
    virDomainPtr dom = NULL;
    int ret = FALSE;
    int numsnaps;
    char **names = NULL;
9508
    int actual = 0;
9509 9510 9511 9512 9513 9514 9515 9516 9517 9518
    int i;
    xmlDocPtr xml = NULL;
    xmlXPathContextPtr ctxt = NULL;
    char *doc = NULL;
    virDomainSnapshotPtr snapshot = NULL;
    char *state = NULL;
    long creation;
    char timestr[100];
    struct tm time_info;

9519
    if (!vshConnectionUsability(ctl, ctl->conn))
9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577
        goto cleanup;

    dom = vshCommandOptDomain(ctl, cmd, NULL);
    if (dom == NULL)
        goto cleanup;

    numsnaps = virDomainSnapshotNum(dom, 0);

    if (numsnaps < 0)
        goto cleanup;

    vshPrint(ctl, " %-20s %-25s %s\n", _("Name"), _("Creation Time"), _("State"));
    vshPrint(ctl, "---------------------------------------------------\n");

    if (numsnaps) {
        if (VIR_ALLOC_N(names, numsnaps) < 0)
            goto cleanup;

        actual = virDomainSnapshotListNames(dom, names, numsnaps, 0);
        if (actual < 0)
            goto cleanup;

        qsort(&names[0], actual, sizeof(char*), namesorter);

        for (i = 0; i < actual; i++) {
            /* free up memory from previous iterations of the loop */
            VIR_FREE(state);
            if (snapshot)
                virDomainSnapshotFree(snapshot);
            xmlXPathFreeContext(ctxt);
            if (xml)
                xmlFreeDoc(xml);
            VIR_FREE(doc);

            snapshot = virDomainSnapshotLookupByName(dom, names[i], 0);
            if (snapshot == NULL)
                continue;

            doc = virDomainSnapshotGetXMLDesc(snapshot, 0);
            if (!doc)
                continue;

            xml = xmlReadDoc((const xmlChar *) doc, "domainsnapshot.xml", NULL,
                             XML_PARSE_NOENT | XML_PARSE_NONET |
                             XML_PARSE_NOWARNING);
            if (!xml)
                continue;
            ctxt = xmlXPathNewContext(xml);
            if (!ctxt)
                continue;

            state = virXPathString("string(/domainsnapshot/state)", ctxt);
            if (state == NULL)
                continue;
            if (virXPathLong("string(/domainsnapshot/creationTime)", ctxt,
                             &creation) < 0)
                continue;
            localtime_r(&creation, &time_info);
9578
            strftime(timestr, sizeof(timestr), "%Y-%m-%d %H:%M:%S %z", &time_info);
9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594

            vshPrint(ctl, " %-20s %-25s %s\n", names[i], timestr, state);
        }
    }

    ret = TRUE;

cleanup:
    /* this frees up memory from the last iteration of the loop */
    VIR_FREE(state);
    if (snapshot)
        virDomainSnapshotFree(snapshot);
    xmlXPathFreeContext(ctxt);
    if (xml)
        xmlFreeDoc(xml);
    VIR_FREE(doc);
9595 9596
    for (i = 0; i < actual; i++)
        VIR_FREE(names[i]);
9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627
    VIR_FREE(names);
    if (dom)
        virDomainFree(dom);

    return ret;
}

/*
 * "snapshot-dumpxml" command
 */
static const vshCmdInfo info_snapshot_dumpxml[] = {
    {"help", N_("Dump XML for a domain snapshot")},
    {"desc", N_("Snapshot Dump XML")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_snapshot_dumpxml[] = {
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"snapshotname", VSH_OT_DATA, VSH_OFLAG_REQ, N_("snapshot name")},
    {NULL, 0, 0, NULL}
};

static int
cmdSnapshotDumpXML(vshControl *ctl, const vshCmd *cmd)
{
    virDomainPtr dom = NULL;
    int ret = FALSE;
    char *name;
    virDomainSnapshotPtr snapshot = NULL;
    char *xml = NULL;

9628
    if (!vshConnectionUsability(ctl, ctl->conn))
9629 9630 9631 9632 9633 9634 9635
        goto cleanup;

    dom = vshCommandOptDomain(ctl, cmd, NULL);
    if (dom == NULL)
        goto cleanup;

    name = vshCommandOptString(cmd, "snapshotname", NULL);
9636
    if (name == NULL)
9637 9638 9639 9640 9641 9642 9643 9644 9645 9646
        goto cleanup;

    snapshot = virDomainSnapshotLookupByName(dom, name, 0);
    if (snapshot == NULL)
        goto cleanup;

    xml = virDomainSnapshotGetXMLDesc(snapshot, 0);
    if (!xml)
        goto cleanup;

9647
    vshPrint(ctl, "%s", xml);
9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661

    ret = TRUE;

cleanup:
    VIR_FREE(xml);
    if (snapshot)
        virDomainSnapshotFree(snapshot);
    if (dom)
        virDomainFree(dom);

    return ret;
}

/*
9662
 * "snapshot-revert" command
9663
 */
9664
static const vshCmdInfo info_snapshot_revert[] = {
9665 9666 9667 9668 9669
    {"help", N_("Revert a domain to a snapshot")},
    {"desc", N_("Revert domain to snapshot")},
    {NULL, NULL}
};

9670
static const vshCmdOptDef opts_snapshot_revert[] = {
9671 9672 9673 9674 9675 9676
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"snapshotname", VSH_OT_DATA, VSH_OFLAG_REQ, N_("snapshot name")},
    {NULL, 0, 0, NULL}
};

static int
9677
cmdDomainSnapshotRevert(vshControl *ctl, const vshCmd *cmd)
9678 9679 9680 9681 9682 9683
{
    virDomainPtr dom = NULL;
    int ret = FALSE;
    char *name;
    virDomainSnapshotPtr snapshot = NULL;

9684
    if (!vshConnectionUsability(ctl, ctl->conn))
9685 9686 9687 9688 9689 9690 9691
        goto cleanup;

    dom = vshCommandOptDomain(ctl, cmd, NULL);
    if (dom == NULL)
        goto cleanup;

    name = vshCommandOptString(cmd, "snapshotname", NULL);
9692
    if (name == NULL)
9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737
        goto cleanup;

    snapshot = virDomainSnapshotLookupByName(dom, name, 0);
    if (snapshot == NULL)
        goto cleanup;

    if (virDomainRevertToSnapshot(snapshot, 0) < 0)
        goto cleanup;

    ret = TRUE;

cleanup:
    if (snapshot)
        virDomainSnapshotFree(snapshot);
    if (dom)
        virDomainFree(dom);

    return ret;
}

/*
 * "snapshot-delete" command
 */
static const vshCmdInfo info_snapshot_delete[] = {
    {"help", N_("Delete a domain snapshot")},
    {"desc", N_("Snapshot Delete")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_snapshot_delete[] = {
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"snapshotname", VSH_OT_DATA, VSH_OFLAG_REQ, N_("snapshot name")},
    {"children", VSH_OT_BOOL, 0, N_("delete snapshot and all children")},
    {NULL, 0, 0, NULL}
};

static int
cmdSnapshotDelete(vshControl *ctl, const vshCmd *cmd)
{
    virDomainPtr dom = NULL;
    int ret = FALSE;
    char *name;
    virDomainSnapshotPtr snapshot = NULL;
    unsigned int flags = 0;

9738
    if (!vshConnectionUsability(ctl, ctl->conn))
9739 9740 9741 9742 9743 9744 9745
        goto cleanup;

    dom = vshCommandOptDomain(ctl, cmd, NULL);
    if (dom == NULL)
        goto cleanup;

    name = vshCommandOptString(cmd, "snapshotname", NULL);
9746
    if (name == NULL)
9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769
        goto cleanup;

    if (vshCommandOptBool(cmd, "children"))
        flags |= VIR_DOMAIN_SNAPSHOT_DELETE_CHILDREN;

    snapshot = virDomainSnapshotLookupByName(dom, name, 0);
    if (snapshot == NULL)
        goto cleanup;

    if (virDomainSnapshotDelete(snapshot, flags) < 0)
        goto cleanup;

    ret = TRUE;

cleanup:
    if (snapshot)
        virDomainSnapshotFree(snapshot);
    if (dom)
        virDomainFree(dom);

    return ret;
}

9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821
/*
 * "qemu-monitor-command" command
 */
static const vshCmdInfo info_qemu_monitor_command[] = {
    {"help", N_("Qemu Monitor Command")},
    {"desc", N_("Qemu Monitor Command")},
    {NULL, NULL}
};

static const vshCmdOptDef opts_qemu_monitor_command[] = {
    {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
    {"cmd", VSH_OT_DATA, VSH_OFLAG_REQ, N_("command")},
    {NULL, 0, 0, NULL}
};

static int
cmdQemuMonitorCommand(vshControl *ctl, const vshCmd *cmd)
{
    virDomainPtr dom = NULL;
    int ret = FALSE;
    char *monitor_cmd;
    char *result = NULL;

    if (!vshConnectionUsability(ctl, ctl->conn))
        goto cleanup;

    dom = vshCommandOptDomain(ctl, cmd, NULL);
    if (dom == NULL)
        goto cleanup;

    monitor_cmd = vshCommandOptString(cmd, "cmd", NULL);
    if (monitor_cmd == NULL) {
        vshError(ctl, "%s", _("missing monitor command"));
        goto cleanup;
    }

    if (virDomainQemuMonitorCommand(dom, monitor_cmd, &result, 0) < 0)
        goto cleanup;

    printf("%s\n", result);

    ret = TRUE;

cleanup:
    VIR_FREE(result);
    if (dom)
        virDomainFree(dom);

    return ret;
}


K
Karel Zak 已提交
9822 9823 9824
/*
 * Commands
 */
9825
static const vshCmdDef commands[] = {
9826 9827 9828 9829
    {"help", cmdHelp, opts_help, info_help},
    {"attach-device", cmdAttachDevice, opts_attach_device, info_attach_device},
    {"attach-disk", cmdAttachDisk, opts_attach_disk, info_attach_disk},
    {"attach-interface", cmdAttachInterface, opts_attach_interface, info_attach_interface},
9830
    {"autostart", cmdAutostart, opts_autostart, info_autostart},
9831
    {"capabilities", cmdCapabilities, NULL, info_capabilities},
9832
#ifndef WIN32
P
Paolo Bonzini 已提交
9833
    {"cd", cmdCd, opts_cd, info_cd},
9834
#endif
9835
    {"connect", cmdConnect, opts_connect, info_connect},
9836
#ifndef WIN32
9837
    {"console", cmdConsole, opts_console, info_console},
9838
#endif
9839
    {"cpu-baseline", cmdCPUBaseline, opts_cpu_baseline, info_cpu_baseline},
9840
    {"cpu-compare", cmdCPUCompare, opts_cpu_compare, info_cpu_compare},
9841
    {"create", cmdCreate, opts_create, info_create},
9842
    {"start", cmdStart, opts_start, info_start},
K
Karel Zak 已提交
9843
    {"destroy", cmdDestroy, opts_destroy, info_destroy},
9844 9845 9846
    {"detach-device", cmdDetachDevice, opts_detach_device, info_detach_device},
    {"detach-disk", cmdDetachDisk, opts_detach_disk, info_detach_disk},
    {"detach-interface", cmdDetachInterface, opts_detach_interface, info_detach_interface},
9847
    {"define", cmdDefine, opts_define, info_define},
K
Karel Zak 已提交
9848
    {"domid", cmdDomid, opts_domid, info_domid},
K
Karel Zak 已提交
9849
    {"domuuid", cmdDomuuid, opts_domuuid, info_domuuid},
9850
    {"dominfo", cmdDominfo, opts_dominfo, info_dominfo},
9851
    {"domjobinfo", cmdDomjobinfo, opts_domjobinfo, info_domjobinfo},
9852
    {"domjobabort", cmdDomjobabort, opts_domjobabort, info_domjobabort},
K
Karel Zak 已提交
9853 9854
    {"domname", cmdDomname, opts_domname, info_domname},
    {"domstate", cmdDomstate, opts_domstate, info_domstate},
9855 9856
    {"domblkstat", cmdDomblkstat, opts_domblkstat, info_domblkstat},
    {"domifstat", cmdDomIfstat, opts_domifstat, info_domifstat},
9857
    {"dommemstat", cmdDomMemStat, opts_dommemstat, info_dommemstat},
9858
    {"domblkinfo", cmdDomblkinfo, opts_domblkinfo, info_domblkinfo},
9859 9860
    {"domxml-from-native", cmdDomXMLFromNative, opts_domxmlfromnative, info_domxmlfromnative},
    {"domxml-to-native", cmdDomXMLToNative, opts_domxmltonative, info_domxmltonative},
9861
    {"dumpxml", cmdDumpXML, opts_dumpxml, info_dumpxml},
E
Eric Blake 已提交
9862
    {"echo", cmdEcho, opts_echo, info_echo},
9863
    {"edit", cmdEdit, opts_edit, info_edit},
9864 9865 9866 9867
    {"find-storage-pool-sources", cmdPoolDiscoverSources,
     opts_find_storage_pool_sources, info_find_storage_pool_sources},
    {"find-storage-pool-sources-as", cmdPoolDiscoverSourcesAs,
     opts_find_storage_pool_sources_as, info_find_storage_pool_sources_as},
9868
    {"freecell", cmdFreecell, opts_freecell, info_freecell},
9869
    {"hostname", cmdHostname, NULL, info_hostname},
9870
    {"list", cmdList, opts_list, info_list},
E
Eric Blake 已提交
9871
    {"maxvcpus", cmdMaxvcpus, opts_maxvcpus, info_maxvcpus},
9872
    {"migrate", cmdMigrate, opts_migrate, info_migrate},
9873
    {"migrate-setmaxdowntime", cmdMigrateSetMaxDowntime, opts_migrate_setmaxdowntime, info_migrate_setmaxdowntime},
9874

9875
    {"net-autostart", cmdNetworkAutostart, opts_network_autostart, info_network_autostart},
9876 9877 9878 9879
    {"net-create", cmdNetworkCreate, opts_network_create, info_network_create},
    {"net-define", cmdNetworkDefine, opts_network_define, info_network_define},
    {"net-destroy", cmdNetworkDestroy, opts_network_destroy, info_network_destroy},
    {"net-dumpxml", cmdNetworkDumpXML, opts_network_dumpxml, info_network_dumpxml},
9880
    {"net-edit", cmdNetworkEdit, opts_network_edit, info_network_edit},
9881 9882 9883 9884 9885
    {"net-list", cmdNetworkList, opts_network_list, info_network_list},
    {"net-name", cmdNetworkName, opts_network_name, info_network_name},
    {"net-start", cmdNetworkStart, opts_network_start, info_network_start},
    {"net-undefine", cmdNetworkUndefine, opts_network_undefine, info_network_undefine},
    {"net-uuid", cmdNetworkUuid, opts_network_uuid, info_network_uuid},
9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896

    {"iface-list", cmdInterfaceList, opts_interface_list, info_interface_list},
    {"iface-name", cmdInterfaceName, opts_interface_name, info_interface_name},
    {"iface-mac", cmdInterfaceMAC, opts_interface_mac, info_interface_mac},
    {"iface-dumpxml", cmdInterfaceDumpXML, opts_interface_dumpxml, info_interface_dumpxml},
    {"iface-define", cmdInterfaceDefine, opts_interface_define, info_interface_define},
    {"iface-undefine", cmdInterfaceUndefine, opts_interface_undefine, info_interface_undefine},
    {"iface-edit", cmdInterfaceEdit, opts_interface_edit, info_interface_edit},
    {"iface-start", cmdInterfaceStart, opts_interface_start, info_interface_start},
    {"iface-destroy", cmdInterfaceDestroy, opts_interface_destroy, info_interface_destroy},

9897
    {"managedsave", cmdManagedSave, opts_managedsave, info_managedsave},
9898
    {"managedsave-remove", cmdManagedSaveRemove, opts_managedsaveremove, info_managedsaveremove},
9899

K
Karel Zak 已提交
9900
    {"nodeinfo", cmdNodeinfo, NULL, info_nodeinfo},
9901

9902 9903
    {"nodedev-list", cmdNodeListDevices, opts_node_list_devices, info_node_list_devices},
    {"nodedev-dumpxml", cmdNodeDeviceDumpXML, opts_node_device_dumpxml, info_node_device_dumpxml},
9904 9905 9906
    {"nodedev-dettach", cmdNodeDeviceDettach, opts_node_device_dettach, info_node_device_dettach},
    {"nodedev-reattach", cmdNodeDeviceReAttach, opts_node_device_reattach, info_node_device_reattach},
    {"nodedev-reset", cmdNodeDeviceReset, opts_node_device_reset, info_node_device_reset},
9907 9908
    {"nodedev-create", cmdNodeDeviceCreate, opts_node_device_create, info_node_device_create},
    {"nodedev-destroy", cmdNodeDeviceDestroy, opts_node_device_destroy, info_node_device_destroy},
9909

9910 9911 9912 9913 9914 9915
    {"nwfilter-define", cmdNWFilterDefine, opts_nwfilter_define, info_nwfilter_define},
    {"nwfilter-undefine", cmdNWFilterUndefine, opts_nwfilter_undefine, info_nwfilter_undefine},
    {"nwfilter-dumpxml", cmdNWFilterDumpXML, opts_nwfilter_dumpxml, info_nwfilter_dumpxml},
    {"nwfilter-list", cmdNWFilterList, opts_nwfilter_list, info_nwfilter_list},
    {"nwfilter-edit", cmdNWFilterEdit, opts_nwfilter_edit, info_nwfilter_edit},

9916 9917 9918
    {"pool-autostart", cmdPoolAutostart, opts_pool_autostart, info_pool_autostart},
    {"pool-build", cmdPoolBuild, opts_pool_build, info_pool_build},
    {"pool-create", cmdPoolCreate, opts_pool_create, info_pool_create},
9919
    {"pool-create-as", cmdPoolCreateAs, opts_pool_X_as, info_pool_create_as},
9920
    {"pool-define", cmdPoolDefine, opts_pool_define, info_pool_define},
9921
    {"pool-define-as", cmdPoolDefineAs, opts_pool_X_as, info_pool_define_as},
9922 9923 9924
    {"pool-destroy", cmdPoolDestroy, opts_pool_destroy, info_pool_destroy},
    {"pool-delete", cmdPoolDelete, opts_pool_delete, info_pool_delete},
    {"pool-dumpxml", cmdPoolDumpXML, opts_pool_dumpxml, info_pool_dumpxml},
9925
    {"pool-edit", cmdPoolEdit, opts_pool_edit, info_pool_edit},
9926 9927 9928 9929 9930 9931 9932 9933
    {"pool-info", cmdPoolInfo, opts_pool_info, info_pool_info},
    {"pool-list", cmdPoolList, opts_pool_list, info_pool_list},
    {"pool-name", cmdPoolName, opts_pool_name, info_pool_name},
    {"pool-refresh", cmdPoolRefresh, opts_pool_refresh, info_pool_refresh},
    {"pool-start", cmdPoolStart, opts_pool_start, info_pool_start},
    {"pool-undefine", cmdPoolUndefine, opts_pool_undefine, info_pool_undefine},
    {"pool-uuid", cmdPoolUuid, opts_pool_uuid, info_pool_uuid},

9934 9935 9936 9937 9938 9939 9940 9941
    {"secret-define", cmdSecretDefine, opts_secret_define, info_secret_define},
    {"secret-dumpxml", cmdSecretDumpXML, opts_secret_dumpxml, info_secret_dumpxml},
    {"secret-set-value", cmdSecretSetValue, opts_secret_set_value, info_secret_set_value},
    {"secret-get-value", cmdSecretGetValue, opts_secret_get_value, info_secret_get_value},
    {"secret-undefine", cmdSecretUndefine, opts_secret_undefine, info_secret_undefine},
    {"secret-list", cmdSecretList, NULL, info_secret_list},


9942
#ifndef WIN32
P
Paolo Bonzini 已提交
9943
    {"pwd", cmdPwd, NULL, info_pwd},
9944
#endif
K
Karel Zak 已提交
9945
    {"quit", cmdQuit, NULL, info_quit},
9946
    {"exit", cmdQuit, NULL, info_quit},
K
Karel Zak 已提交
9947 9948
    {"reboot", cmdReboot, opts_reboot, info_reboot},
    {"restore", cmdRestore, opts_restore, info_restore},
9949 9950
    {"resume", cmdResume, opts_resume, info_resume},
    {"save", cmdSave, opts_save, info_save},
9951
    {"schedinfo", cmdSchedinfo, opts_schedinfo, info_schedinfo},
D
Daniel Veillard 已提交
9952
    {"dump", cmdDump, opts_dump, info_dump},
9953
    {"shutdown", cmdShutdown, opts_shutdown, info_shutdown},
9954 9955
    {"setmem", cmdSetmem, opts_setmem, info_setmem},
    {"setmaxmem", cmdSetmaxmem, opts_setmaxmem, info_setmaxmem},
9956
    {"memtune", cmdMemtune, opts_memtune, info_memtune},
9957
    {"setvcpus", cmdSetvcpus, opts_setvcpus, info_setvcpus},
K
Karel Zak 已提交
9958
    {"suspend", cmdSuspend, opts_suspend, info_suspend},
9959
    {"ttyconsole", cmdTTYConsole, opts_ttyconsole, info_ttyconsole},
9960
    {"undefine", cmdUndefine, opts_undefine, info_undefine},
9961
    {"update-device", cmdUpdateDevice, opts_update_device, info_update_device},
9962
    {"uri", cmdURI, NULL, info_uri},
9963 9964

    {"vol-create", cmdVolCreate, opts_vol_create, info_vol_create},
9965
    {"vol-create-from", cmdVolCreateFrom, opts_vol_create_from, info_vol_create_from},
9966
    {"vol-create-as", cmdVolCreateAs, opts_vol_create_as, info_vol_create_as},
9967
    {"vol-clone", cmdVolClone, opts_vol_clone, info_vol_clone},
9968
    {"vol-delete", cmdVolDelete, opts_vol_delete, info_vol_delete},
D
David Allan 已提交
9969
    {"vol-wipe", cmdVolWipe, opts_vol_wipe, info_vol_wipe},
9970 9971 9972
    {"vol-dumpxml", cmdVolDumpXML, opts_vol_dumpxml, info_vol_dumpxml},
    {"vol-info", cmdVolInfo, opts_vol_info, info_vol_info},
    {"vol-list", cmdVolList, opts_vol_list, info_vol_list},
J
Justin Clift 已提交
9973
    {"vol-pool", cmdVolPool, opts_vol_pool, info_vol_pool},
9974 9975 9976 9977
    {"vol-path", cmdVolPath, opts_vol_path, info_vol_path},
    {"vol-name", cmdVolName, opts_vol_name, info_vol_name},
    {"vol-key", cmdVolKey, opts_vol_key, info_vol_key},

E
Eric Blake 已提交
9978
    {"vcpucount", cmdVcpucount, opts_vcpucount, info_vcpucount},
9979 9980
    {"vcpuinfo", cmdVcpuinfo, opts_vcpuinfo, info_vcpuinfo},
    {"vcpupin", cmdVcpupin, opts_vcpupin, info_vcpupin},
9981
    {"version", cmdVersion, NULL, info_version},
9982
    {"vncdisplay", cmdVNCDisplay, opts_vncdisplay, info_vncdisplay},
9983 9984 9985 9986 9987 9988

    {"snapshot-create", cmdSnapshotCreate, opts_snapshot_create, info_snapshot_create},
    {"snapshot-current", cmdSnapshotCurrent, opts_snapshot_current, info_snapshot_current},
    {"snapshot-delete", cmdSnapshotDelete, opts_snapshot_delete, info_snapshot_delete},
    {"snapshot-dumpxml", cmdSnapshotDumpXML, opts_snapshot_dumpxml, info_snapshot_dumpxml},
    {"snapshot-list", cmdSnapshotList, opts_snapshot_list, info_snapshot_list},
9989
    {"snapshot-revert", cmdDomainSnapshotRevert, opts_snapshot_revert, info_snapshot_revert},
9990

9991 9992
    {"qemu-monitor-command", cmdQemuMonitorCommand, opts_qemu_monitor_command, info_qemu_monitor_command},

9993
    {NULL, NULL, NULL, NULL}
K
Karel Zak 已提交
9994 9995 9996 9997 9998 9999
};

/* ---------------
 * Utils for work with command definition
 * ---------------
 */
K
Karel Zak 已提交
10000
static const char *
10001
vshCmddefGetInfo(const vshCmdDef * cmd, const char *name)
10002
{
10003
    const vshCmdInfo *info;
10004

K
Karel Zak 已提交
10005
    for (info = cmd->info; info && info->name; info++) {
10006
        if (STREQ(info->name, name))
K
Karel Zak 已提交
10007 10008 10009 10010 10011
            return info->data;
    }
    return NULL;
}

10012 10013
static const vshCmdOptDef *
vshCmddefGetOption(const vshCmdDef * cmd, const char *name)
10014
{
10015
    const vshCmdOptDef *opt;
10016

K
Karel Zak 已提交
10017
    for (opt = cmd->opts; opt && opt->name; opt++)
10018
        if (STREQ(opt->name, name))
K
Karel Zak 已提交
10019 10020 10021 10022
            return opt;
    return NULL;
}

10023 10024
static const vshCmdOptDef *
vshCmddefGetData(const vshCmdDef * cmd, int data_ct)
10025
{
10026
    const vshCmdOptDef *opt;
K
Karel Zak 已提交
10027

10028
    for (opt = cmd->opts; opt && opt->name; opt++) {
10029 10030
        if (opt->type >= VSH_OT_DATA ||
            (opt->type == VSH_OT_INT && (opt->flag & VSH_OFLAG_REQ))) {
10031
            if (data_ct == 0 || opt->type == VSH_OT_ARGV)
10032 10033 10034 10035 10036
                return opt;
            else
                data_ct--;
        }
    }
K
Karel Zak 已提交
10037 10038 10039
    return NULL;
}

10040 10041 10042
/*
 * Checks for required options
 */
10043
static int
10044
vshCommandCheckOpts(vshControl *ctl, const vshCmd *cmd)
10045
{
10046 10047
    const vshCmdDef *def = cmd->def;
    const vshCmdOptDef *d;
10048
    int err = 0;
10049 10050 10051 10052

    for (d = def->opts; d && d->name; d++) {
        if (d->flag & VSH_OFLAG_REQ) {
            vshCmdOpt *o = cmd->opts;
10053 10054 10055
            int ok = 0;

            while (o && ok == 0) {
10056
                if (o->def == d)
10057
                    ok = 1;
10058 10059 10060
                o = o->next;
            }
            if (!ok) {
10061
                vshError(ctl,
10062
                         d->type == VSH_OT_DATA ?
10063
                         _("command '%s' requires <%s> option") :
10064
                         _("command '%s' requires --%s option"),
10065
                         def->name, d->name);
10066 10067
                err = 1;
            }
10068

10069 10070 10071 10072 10073
        }
    }
    return !err;
}

10074
static const vshCmdDef *
10075 10076
vshCmddefSearch(const char *cmdname)
{
10077
    const vshCmdDef *c;
10078

K
Karel Zak 已提交
10079
    for (c = commands; c->name; c++)
10080
        if (STREQ(c->name, cmdname))
K
Karel Zak 已提交
10081 10082 10083 10084 10085
            return c;
    return NULL;
}

static int
10086
vshCmddefHelp(vshControl *ctl, const char *cmdname)
10087
{
10088
    const vshCmdDef *def = vshCmddefSearch(cmdname);
10089

K
Karel Zak 已提交
10090
    if (!def) {
10091
        vshError(ctl, _("command '%s' doesn't exist"), cmdname);
10092 10093
        return FALSE;
    } else {
E
Eric Blake 已提交
10094 10095
        const char *desc = _(vshCmddefGetInfo(def, "desc"));
        const char *help = _(vshCmddefGetInfo(def, "help"));
10096
        char buf[256];
K
Karel Zak 已提交
10097

10098
        fputs(_("  NAME\n"), stdout);
10099 10100
        fprintf(stdout, "    %s - %s\n", def->name, help);

10101 10102 10103 10104 10105 10106
        fputs(_("\n  SYNOPSIS\n"), stdout);
        fprintf(stdout, "    %s", def->name);
        if (def->opts) {
            const vshCmdOptDef *opt;
            for (opt = def->opts; opt->name; opt++) {
                const char *fmt;
10107 10108
                switch (opt->type) {
                case VSH_OT_BOOL:
10109
                    fmt = "[--%s]";
10110 10111
                    break;
                case VSH_OT_INT:
E
Eric Blake 已提交
10112
                    /* xgettext:c-format */
10113 10114
                    fmt = ((opt->flag & VSH_OFLAG_REQ) ? "<%s>"
                           : _("[--%s <number>]"));
10115 10116
                    break;
                case VSH_OT_STRING:
E
Eric Blake 已提交
10117 10118
                    /* xgettext:c-format */
                    fmt = _("[--%s <string>]");
10119 10120
                    break;
                case VSH_OT_DATA:
10121
                    fmt = ((opt->flag & VSH_OFLAG_REQ) ? "<%s>" : "[<%s>]");
10122 10123 10124 10125 10126 10127
                    break;
                case VSH_OT_ARGV:
                    /* xgettext:c-format */
                    fmt = _("[<string>]...");
                    break;
                default:
10128
                    assert(0);
10129
                }
10130
                fputc(' ', stdout);
E
Eric Blake 已提交
10131
                fprintf(stdout, fmt, opt->name);
10132
            }
K
Karel Zak 已提交
10133
        }
10134 10135 10136
        fputc('\n', stdout);

        if (desc[0]) {
10137
            /* Print the description only if it's not empty.  */
10138
            fputs(_("\n  DESCRIPTION\n"), stdout);
K
Karel Zak 已提交
10139 10140
            fprintf(stdout, "    %s\n", desc);
        }
10141

K
Karel Zak 已提交
10142
        if (def->opts) {
10143
            const vshCmdOptDef *opt;
10144
            fputs(_("\n  OPTIONS\n"), stdout);
10145
            for (opt = def->opts; opt->name; opt++) {
10146 10147
                switch (opt->type) {
                case VSH_OT_BOOL:
K
Karel Zak 已提交
10148
                    snprintf(buf, sizeof(buf), "--%s", opt->name);
10149 10150
                    break;
                case VSH_OT_INT:
10151 10152 10153
                    snprintf(buf, sizeof(buf),
                             (opt->flag & VSH_OFLAG_REQ) ? _("[--%s] <number>")
                             : _("--%s <number>"), opt->name);
10154 10155
                    break;
                case VSH_OT_STRING:
10156
                    /* OT_STRING should never be VSH_OFLAG_REQ */
10157
                    snprintf(buf, sizeof(buf), _("--%s <string>"), opt->name);
10158 10159
                    break;
                case VSH_OT_DATA:
10160 10161
                    snprintf(buf, sizeof(buf), _("[--%s] <string>"),
                             opt->name);
10162 10163 10164 10165 10166 10167 10168
                    break;
                case VSH_OT_ARGV:
                    /* Not really an option. */
                    continue;
                default:
                    assert(0);
                }
10169

E
Eric Blake 已提交
10170
                fprintf(stdout, "    %-15s  %s\n", buf, _(opt->help));
10171
            }
K
Karel Zak 已提交
10172 10173 10174 10175 10176 10177 10178 10179 10180 10181
        }
        fputc('\n', stdout);
    }
    return TRUE;
}

/* ---------------
 * Utils for work with runtime commands data
 * ---------------
 */
10182 10183 10184
static void
vshCommandOptFree(vshCmdOpt * arg)
{
K
Karel Zak 已提交
10185 10186
    vshCmdOpt *a = arg;

10187
    while (a) {
K
Karel Zak 已提交
10188
        vshCmdOpt *tmp = a;
10189

K
Karel Zak 已提交
10190 10191
        a = a->next;

10192 10193
        VIR_FREE(tmp->data);
        VIR_FREE(tmp);
K
Karel Zak 已提交
10194 10195 10196 10197
    }
}

static void
10198
vshCommandFree(vshCmd *cmd)
10199
{
K
Karel Zak 已提交
10200 10201
    vshCmd *c = cmd;

10202
    while (c) {
K
Karel Zak 已提交
10203
        vshCmd *tmp = c;
10204

K
Karel Zak 已提交
10205 10206 10207 10208
        c = c->next;

        if (tmp->opts)
            vshCommandOptFree(tmp->opts);
10209
        VIR_FREE(tmp);
K
Karel Zak 已提交
10210 10211 10212 10213 10214 10215 10216
    }
}

/*
 * Returns option by name
 */
static vshCmdOpt *
10217
vshCommandOpt(const vshCmd *cmd, const char *name)
10218
{
K
Karel Zak 已提交
10219
    vshCmdOpt *opt = cmd->opts;
10220 10221

    while (opt) {
10222
        if (opt->def && STREQ(opt->def->name, name))
K
Karel Zak 已提交
10223 10224 10225 10226 10227 10228 10229 10230 10231 10232
            return opt;
        opt = opt->next;
    }
    return NULL;
}

/*
 * Returns option as INT
 */
static int
10233
vshCommandOptInt(const vshCmd *cmd, const char *name, int *found)
10234
{
K
Karel Zak 已提交
10235
    vshCmdOpt *arg = vshCommandOpt(cmd, name);
10236 10237
    int res = 0, num_found = FALSE;
    char *end_p = NULL;
10238

10239 10240
    if ((arg != NULL) && (arg->data != NULL)) {
        res = strtol(arg->data, &end_p, 10);
10241 10242 10243 10244
        if ((arg->data == end_p) || (*end_p!= 0))
            num_found = FALSE;
        else
            num_found = TRUE;
10245
    }
K
Karel Zak 已提交
10246
    if (found)
10247
        *found = num_found;
K
Karel Zak 已提交
10248 10249 10250
    return res;
}

10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270
static unsigned long
vshCommandOptUL(const vshCmd *cmd, const char *name, int *found)
{
    vshCmdOpt *arg = vshCommandOpt(cmd, name);
    unsigned long res = 0;
    int num_found = FALSE;
    char *end_p = NULL;

    if ((arg != NULL) && (arg->data != NULL)) {
        res = strtoul(arg->data, &end_p, 10);
        if ((arg->data == end_p) || (*end_p!= 0))
            num_found = FALSE;
        else
            num_found = TRUE;
    }
    if (found)
        *found = num_found;
    return res;
}

K
Karel Zak 已提交
10271 10272 10273 10274
/*
 * Returns option as STRING
 */
static char *
10275
vshCommandOptString(const vshCmd *cmd, const char *name, int *found)
10276
{
K
Karel Zak 已提交
10277
    vshCmdOpt *arg = vshCommandOpt(cmd, name);
10278

K
Karel Zak 已提交
10279 10280
    if (found)
        *found = arg ? TRUE : FALSE;
10281

10282 10283 10284
    if (arg && arg->data && *arg->data)
        return arg->data;

10285
    if (arg && arg->def && ((arg->def->flag) & VSH_OFLAG_REQ))
10286 10287 10288
        vshError(NULL, _("Missing required option '%s'"), name);

    return NULL;
K
Karel Zak 已提交
10289 10290
}

10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308
/*
 * Returns option as long long
 */
static long long
vshCommandOptLongLong(const vshCmd *cmd, const char *name, int *found)
{
    vshCmdOpt *arg = vshCommandOpt(cmd, name);
    int num_found = FALSE;
    long long res = 0;
    char *end_p = NULL;

    if ((arg != NULL) && (arg->data != NULL))
        num_found = !virStrToLong_ll(arg->data, &end_p, 10, &res);
    if (found)
        *found = num_found;
    return res;
}

K
Karel Zak 已提交
10309 10310 10311 10312
/*
 * Returns TRUE/FALSE if the option exists
 */
static int
10313
vshCommandOptBool(const vshCmd *cmd, const char *name)
10314
{
K
Karel Zak 已提交
10315 10316 10317
    return vshCommandOpt(cmd, name) ? TRUE : FALSE;
}

10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338
/*
 * Returns the COUNT argv argument, or NULL after last argument.
 *
 * Requires that a VSH_OT_ARGV option with the name "" be last in the
 * list of supported options in CMD->def->opts.
 */
static char *
vshCommandOptArgv(const vshCmd *cmd, int count)
{
    vshCmdOpt *opt = cmd->opts;

    while (opt) {
        if (opt->def && opt->def->type == VSH_OT_ARGV) {
            if (count-- == 0)
                return opt->data;
        }
        opt = opt->next;
    }
    return NULL;
}

J
Jim Meyering 已提交
10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356
/* Determine whether CMD->opts includes an option with name OPTNAME.
   If not, give a diagnostic and return false.
   If so, return true.  */
static bool
cmd_has_option (vshControl *ctl, const vshCmd *cmd, const char *optname)
{
    /* Iterate through cmd->opts, to ensure that there is an entry
       with name OPTNAME and type VSH_OT_DATA. */
    bool found = false;
    const vshCmdOpt *opt;
    for (opt = cmd->opts; opt; opt = opt->next) {
        if (STREQ (opt->def->name, optname) && opt->def->type == VSH_OT_DATA) {
            found = true;
            break;
        }
    }

    if (!found)
10357
        vshError(ctl, _("internal error: virsh %s: no %s VSH_OT_DATA option"),
J
Jim Meyering 已提交
10358 10359 10360
                 cmd->def->name, optname);
    return found;
}
10361

K
Karel Zak 已提交
10362
static virDomainPtr
J
Jim Meyering 已提交
10363
vshCommandOptDomainBy(vshControl *ctl, const vshCmd *cmd,
10364
                      char **name, int flag)
10365
{
K
Karel Zak 已提交
10366
    virDomainPtr dom = NULL;
10367
    char *n;
K
Karel Zak 已提交
10368
    int id;
J
Jim Meyering 已提交
10369 10370 10371
    const char *optname = "domain";
    if (!cmd_has_option (ctl, cmd, optname))
        return NULL;
10372

10373
    if (!(n = vshCommandOptString(cmd, optname, NULL)))
10374 10375
        return NULL;

K
Karel Zak 已提交
10376
    vshDebug(ctl, 5, "%s: found option <%s>: %s\n",
10377 10378
             cmd->def->name, optname, n);

K
Karel Zak 已提交
10379 10380
    if (name)
        *name = n;
10381

K
Karel Zak 已提交
10382
    /* try it by ID */
10383
    if (flag & VSH_BYID) {
10384
        if (virStrToLong_i(n, NULL, 10, &id) == 0 && id >= 0) {
K
Karel Zak 已提交
10385 10386 10387 10388
            vshDebug(ctl, 5, "%s: <%s> seems like domain ID\n",
                     cmd->def->name, optname);
            dom = virDomainLookupByID(ctl->conn, id);
        }
10389
    }
K
Karel Zak 已提交
10390
    /* try it by UUID */
10391
    if (dom==NULL && (flag & VSH_BYUUID) && strlen(n)==VIR_UUID_STRING_BUFLEN-1) {
D
Daniel Veillard 已提交
10392
        vshDebug(ctl, 5, "%s: <%s> trying as domain UUID\n",
10393
                 cmd->def->name, optname);
K
Karel Zak 已提交
10394
        dom = virDomainLookupByUUIDString(ctl->conn, n);
K
Karel Zak 已提交
10395
    }
K
Karel Zak 已提交
10396
    /* try it by NAME */
10397
    if (dom==NULL && (flag & VSH_BYNAME)) {
D
Daniel Veillard 已提交
10398
        vshDebug(ctl, 5, "%s: <%s> trying as domain NAME\n",
10399
                 cmd->def->name, optname);
K
Karel Zak 已提交
10400
        dom = virDomainLookupByName(ctl->conn, n);
10401
    }
K
Karel Zak 已提交
10402

10403
    if (!dom)
10404
        vshError(ctl, _("failed to get domain '%s'"), n);
10405

K
Karel Zak 已提交
10406 10407 10408
    return dom;
}

10409
static virNetworkPtr
J
Jim Meyering 已提交
10410
vshCommandOptNetworkBy(vshControl *ctl, const vshCmd *cmd,
10411
                       char **name, int flag)
10412 10413 10414
{
    virNetworkPtr network = NULL;
    char *n;
J
Jim Meyering 已提交
10415 10416 10417
    const char *optname = "network";
    if (!cmd_has_option (ctl, cmd, optname))
        return NULL;
10418

10419
    if (!(n = vshCommandOptString(cmd, optname, NULL)))
10420 10421 10422 10423 10424 10425 10426 10427 10428
        return NULL;

    vshDebug(ctl, 5, "%s: found option <%s>: %s\n",
             cmd->def->name, optname, n);

    if (name)
        *name = n;

    /* try it by UUID */
10429
    if ((flag & VSH_BYUUID) && (strlen(n) == VIR_UUID_STRING_BUFLEN-1)) {
D
Daniel Veillard 已提交
10430
        vshDebug(ctl, 5, "%s: <%s> trying as network UUID\n",
10431
                 cmd->def->name, optname);
10432 10433 10434 10435
        network = virNetworkLookupByUUIDString(ctl->conn, n);
    }
    /* try it by NAME */
    if (network==NULL && (flag & VSH_BYNAME)) {
D
Daniel Veillard 已提交
10436
        vshDebug(ctl, 5, "%s: <%s> trying as network NAME\n",
10437 10438 10439 10440 10441
                 cmd->def->name, optname);
        network = virNetworkLookupByName(ctl->conn, n);
    }

    if (!network)
10442
        vshError(ctl, _("failed to get network '%s'"), n);
10443 10444 10445 10446

    return network;
}

10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457

static virNWFilterPtr
vshCommandOptNWFilterBy(vshControl *ctl, const vshCmd *cmd,
                        char **name, int flag)
{
    virNWFilterPtr nwfilter = NULL;
    char *n;
    const char *optname = "nwfilter";
    if (!cmd_has_option (ctl, cmd, optname))
        return NULL;

10458
    if (!(n = vshCommandOptString(cmd, optname, NULL)))
10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485
        return NULL;

    vshDebug(ctl, 5, "%s: found option <%s>: %s\n",
             cmd->def->name, optname, n);

    if (name)
        *name = n;

    /* try it by UUID */
    if ((flag & VSH_BYUUID) && (strlen(n) == VIR_UUID_STRING_BUFLEN-1)) {
        vshDebug(ctl, 5, "%s: <%s> trying as nwfilter UUID\n",
                 cmd->def->name, optname);
        nwfilter = virNWFilterLookupByUUIDString(ctl->conn, n);
    }
    /* try it by NAME */
    if (nwfilter == NULL && (flag & VSH_BYNAME)) {
        vshDebug(ctl, 5, "%s: <%s> trying as nwfilter NAME\n",
                 cmd->def->name, optname);
        nwfilter = virNWFilterLookupByName(ctl->conn, n);
    }

    if (!nwfilter)
        vshError(ctl, _("failed to get nwfilter '%s'"), n);

    return nwfilter;
}

10486 10487 10488 10489 10490 10491 10492 10493 10494 10495
static virInterfacePtr
vshCommandOptInterfaceBy(vshControl *ctl, const vshCmd *cmd,
                         char **name, int flag)
{
    virInterfacePtr iface = NULL;
    char *n;
    const char *optname = "interface";
    if (!cmd_has_option (ctl, cmd, optname))
        return NULL;

10496
    if (!(n = vshCommandOptString(cmd, optname, NULL)))
10497 10498 10499 10500 10501 10502 10503 10504 10505
        return NULL;

    vshDebug(ctl, 5, "%s: found option <%s>: %s\n",
             cmd->def->name, optname, n);

    if (name)
        *name = n;

    /* try it by NAME */
10506
    if ((flag & VSH_BYNAME)) {
10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518
        vshDebug(ctl, 5, "%s: <%s> trying as interface NAME\n",
                 cmd->def->name, optname);
        iface = virInterfaceLookupByName(ctl->conn, n);
    }
    /* try it by MAC */
    if ((iface == NULL) && (flag & VSH_BYMAC)) {
        vshDebug(ctl, 5, "%s: <%s> trying as interface MAC\n",
                 cmd->def->name, optname);
        iface = virInterfaceLookupByMACString(ctl->conn, n);
    }

    if (!iface)
10519
        vshError(ctl, _("failed to get interface '%s'"), n);
10520 10521 10522 10523

    return iface;
}

10524
static virStoragePoolPtr
10525
vshCommandOptPoolBy(vshControl *ctl, const vshCmd *cmd, const char *optname,
10526 10527 10528 10529 10530
                    char **name, int flag)
{
    virStoragePoolPtr pool = NULL;
    char *n;

10531
    if (!(n = vshCommandOptString(cmd, optname, NULL)))
10532 10533 10534 10535 10536 10537 10538 10539 10540
        return NULL;

    vshDebug(ctl, 5, "%s: found option <%s>: %s\n",
             cmd->def->name, optname, n);

    if (name)
        *name = n;

    /* try it by UUID */
10541
    if ((flag & VSH_BYUUID) && (strlen(n) == VIR_UUID_STRING_BUFLEN-1)) {
10542
        vshDebug(ctl, 5, "%s: <%s> trying as pool UUID\n",
10543
                 cmd->def->name, optname);
10544 10545 10546
        pool = virStoragePoolLookupByUUIDString(ctl->conn, n);
    }
    /* try it by NAME */
10547
    if (pool == NULL && (flag & VSH_BYNAME)) {
10548 10549 10550 10551 10552 10553
        vshDebug(ctl, 5, "%s: <%s> trying as pool NAME\n",
                 cmd->def->name, optname);
        pool = virStoragePoolLookupByName(ctl->conn, n);
    }

    if (!pool)
10554
        vshError(ctl, _("failed to get pool '%s'"), n);
10555 10556 10557 10558 10559

    return pool;
}

static virStorageVolPtr
10560
vshCommandOptVolBy(vshControl *ctl, const vshCmd *cmd,
10561 10562 10563 10564 10565 10566 10567 10568 10569
                   const char *optname,
                   const char *pooloptname,
                   char **name, int flag)
{
    virStorageVolPtr vol = NULL;
    virStoragePoolPtr pool = NULL;
    char *n, *p;
    int found;

10570
    if (!(n = vshCommandOptString(cmd, optname, NULL)))
10571 10572
        return NULL;

10573
    if (!(p = vshCommandOptString(cmd, pooloptname, &found)) && found)
10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584
        return NULL;

    if (p)
        pool = vshCommandOptPoolBy(ctl, cmd, pooloptname, name, flag);

    vshDebug(ctl, 5, "%s: found option <%s>: %s\n",
             cmd->def->name, optname, n);

    if (name)
        *name = n;

10585
    /* try it by name */
10586
    if (pool && (flag & VSH_BYNAME)) {
10587
        vshDebug(ctl, 5, "%s: <%s> trying as vol name\n",
10588 10589 10590
                 cmd->def->name, optname);
        vol = virStorageVolLookupByName(pool, n);
    }
10591
    /* try it by key */
10592 10593 10594 10595 10596
    if (vol == NULL && (flag & VSH_BYUUID)) {
        vshDebug(ctl, 5, "%s: <%s> trying as vol key\n",
                 cmd->def->name, optname);
        vol = virStorageVolLookupByKey(ctl->conn, n);
    }
10597
    /* try it by path */
10598 10599 10600 10601 10602 10603 10604
    if (vol == NULL && (flag & VSH_BYUUID)) {
        vshDebug(ctl, 5, "%s: <%s> trying as vol path\n",
                 cmd->def->name, optname);
        vol = virStorageVolLookupByPath(ctl->conn, n);
    }

    if (!vol)
10605
        vshError(ctl, _("failed to get vol '%s'"), n);
10606 10607 10608 10609 10610 10611 10612

    if (pool)
        virStoragePoolFree(pool);

    return vol;
}

10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623
static virSecretPtr
vshCommandOptSecret(vshControl *ctl, const vshCmd *cmd, char **name)
{
    virSecretPtr secret = NULL;
    char *n;
    const char *optname = "secret";

    if (!cmd_has_option (ctl, cmd, optname))
        return NULL;

    n = vshCommandOptString(cmd, optname, NULL);
10624
    if (n == NULL)
10625 10626 10627 10628 10629 10630 10631 10632 10633 10634
        return NULL;

    vshDebug(ctl, 5, "%s: found option <%s>: %s\n", cmd->def->name, optname, n);

    if (name != NULL)
        *name = n;

    secret = virSecretLookupByUUIDString(ctl->conn, n);

    if (secret == NULL)
10635
        vshError(ctl, _("failed to get secret '%s'"), n);
10636 10637 10638 10639

    return secret;
}

K
Karel Zak 已提交
10640 10641 10642 10643
/*
 * Executes command(s) and returns return code from last command
 */
static int
10644
vshCommandRun(vshControl *ctl, const vshCmd *cmd)
10645
{
K
Karel Zak 已提交
10646
    int ret = TRUE;
10647 10648

    while (cmd) {
K
Karel Zak 已提交
10649
        struct timeval before, after;
10650
        bool enable_timing = ctl->timing;
10651

10652 10653 10654
        if ((ctl->conn == NULL) || (disconnected != 0))
            vshReconnect(ctl);

10655
        if (enable_timing)
K
Karel Zak 已提交
10656
            GETTIMEOFDAY(&before);
10657

K
Karel Zak 已提交
10658 10659
        ret = cmd->def->handler(ctl, cmd);

10660
        if (enable_timing)
K
Karel Zak 已提交
10661
            GETTIMEOFDAY(&after);
10662

J
John Levon 已提交
10663 10664 10665
        if (ret == FALSE)
            virshReportError(ctl);

10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676
        /* try to automatically catch disconnections */
        if ((ret == FALSE) &&
            ((disconnected != 0) ||
             ((last_error != NULL) &&
              (((last_error->code == VIR_ERR_SYSTEM_ERROR) &&
                (last_error->domain == VIR_FROM_REMOTE)) ||
               (last_error->code == VIR_ERR_RPC) ||
               (last_error->code == VIR_ERR_NO_CONNECT) ||
               (last_error->code == VIR_ERR_INVALID_CONN)))))
            vshReconnect(ctl);

10677
        if (STREQ(cmd->def->name, "quit"))        /* hack ... */
K
Karel Zak 已提交
10678 10679
            return ret;

10680
        if (enable_timing)
10681
            vshPrint(ctl, _("\n(Time: %.3f ms)\n\n"),
10682 10683
                     DIFF_MSEC(&after, &before));
        else
K
Karel Zak 已提交
10684
            vshPrintExtra(ctl, "\n");
K
Karel Zak 已提交
10685 10686 10687 10688 10689 10690
        cmd = cmd->next;
    }
    return ret;
}

/* ---------------
10691
 * Command parsing
K
Karel Zak 已提交
10692 10693 10694
 * ---------------
 */

10695 10696 10697 10698 10699 10700 10701 10702 10703 10704
typedef enum {
    VSH_TK_ERROR, /* Failed to parse a token */
    VSH_TK_ARG, /* Arbitrary argument, might be option or empty */
    VSH_TK_SUBCMD_END, /* Separation between commands */
    VSH_TK_END /* No more commands */
} vshCommandToken;

typedef struct __vshCommandParser {
    vshCommandToken (*getNextArg)(vshControl *, struct __vshCommandParser *,
                                  char **);
L
Lai Jiangshan 已提交
10705
    /* vshCommandStringGetArg() */
10706
    char *pos;
L
Lai Jiangshan 已提交
10707 10708 10709
    /* vshCommandArgvGetArg() */
    char **arg_pos;
    char **arg_end;
10710 10711
} vshCommandParser;

K
Karel Zak 已提交
10712
static int
10713
vshCommandParse(vshControl *ctl, vshCommandParser *parser)
10714
{
K
Karel Zak 已提交
10715 10716 10717
    char *tkdata = NULL;
    vshCmd *clast = NULL;
    vshCmdOpt *first = NULL;
10718

K
Karel Zak 已提交
10719 10720 10721 10722
    if (ctl->cmd) {
        vshCommandFree(ctl->cmd);
        ctl->cmd = NULL;
    }
10723

10724
    while (1) {
K
Karel Zak 已提交
10725
        vshCmdOpt *last = NULL;
10726
        const vshCmdDef *cmd = NULL;
10727
        vshCommandToken tk;
L
Lai Jiangshan 已提交
10728
        bool data_only = false;
10729
        int data_ct = 0;
10730

K
Karel Zak 已提交
10731
        first = NULL;
10732

10733
        while (1) {
10734
            const vshCmdOptDef *opt = NULL;
10735

K
Karel Zak 已提交
10736
            tkdata = NULL;
10737
            tk = parser->getNextArg(ctl, parser, &tkdata);
10738 10739

            if (tk == VSH_TK_ERROR)
K
Karel Zak 已提交
10740
                goto syntaxError;
10741 10742
            if (tk != VSH_TK_ARG)
                break;
10743 10744

            if (cmd == NULL) {
K
Karel Zak 已提交
10745 10746
                /* first token must be command name */
                if (!(cmd = vshCmddefSearch(tkdata))) {
10747
                    vshError(ctl, _("unknown command: '%s'"), tkdata);
10748
                    goto syntaxError;   /* ... or ignore this command only? */
K
Karel Zak 已提交
10749
                }
10750
                VIR_FREE(tkdata);
L
Lai Jiangshan 已提交
10751 10752 10753 10754
            } else if (data_only) {
                goto get_data;
            } else if (tkdata[0] == '-' && tkdata[1] == '-' &&
                       c_isalnum(tkdata[2])) {
10755 10756 10757 10758 10759 10760
                char *optstr = strchr(tkdata + 2, '=');
                if (optstr) {
                    *optstr = '\0'; /* convert the '=' to '\0' */
                    optstr = vshStrdup(ctl, optstr + 1);
                }
                if (!(opt = vshCmddefGetOption(cmd, tkdata + 2))) {
10761
                    vshError(ctl,
10762
                             _("command '%s' doesn't support option --%s"),
10763 10764
                             cmd->name, tkdata + 2);
                    VIR_FREE(optstr);
K
Karel Zak 已提交
10765 10766
                    goto syntaxError;
                }
10767
                VIR_FREE(tkdata);
K
Karel Zak 已提交
10768 10769 10770

                if (opt->type != VSH_OT_BOOL) {
                    /* option data */
10771 10772 10773
                    if (optstr)
                        tkdata = optstr;
                    else
10774
                        tk = parser->getNextArg(ctl, parser, &tkdata);
10775
                    if (tk == VSH_TK_ERROR)
K
Karel Zak 已提交
10776
                        goto syntaxError;
10777
                    if (tk != VSH_TK_ARG) {
10778
                        vshError(ctl,
10779
                                 _("expected syntax: --%s <%s>"),
10780 10781
                                 opt->name,
                                 opt->type ==
10782
                                 VSH_OT_INT ? _("number") : _("string"));
K
Karel Zak 已提交
10783 10784
                        goto syntaxError;
                    }
10785 10786 10787 10788 10789 10790 10791 10792
                } else {
                    tkdata = NULL;
                    if (optstr) {
                        vshError(ctl, _("invalid '=' after option --%s"),
                                opt->name);
                        VIR_FREE(optstr);
                        goto syntaxError;
                    }
K
Karel Zak 已提交
10793
                }
L
Lai Jiangshan 已提交
10794 10795 10796 10797
            } else if (tkdata[0] == '-' && tkdata[1] == '-' &&
                       tkdata[2] == '\0') {
                data_only = true;
                continue;
10798
            } else {
L
Lai Jiangshan 已提交
10799
get_data:
10800
                if (!(opt = vshCmddefGetData(cmd, data_ct++))) {
10801
                    vshError(ctl, _("unexpected data '%s'"), tkdata);
K
Karel Zak 已提交
10802 10803 10804 10805 10806
                    goto syntaxError;
                }
            }
            if (opt) {
                /* save option */
10807
                vshCmdOpt *arg = vshMalloc(ctl, sizeof(vshCmdOpt));
10808

K
Karel Zak 已提交
10809 10810 10811 10812
                arg->def = opt;
                arg->data = tkdata;
                arg->next = NULL;
                tkdata = NULL;
10813

K
Karel Zak 已提交
10814 10815 10816 10817 10818
                if (!first)
                    first = arg;
                if (last)
                    last->next = arg;
                last = arg;
10819

K
Karel Zak 已提交
10820
                vshDebug(ctl, 4, "%s: %s(%s): %s\n",
10821 10822
                         cmd->name,
                         opt->name,
10823 10824
                         opt->type != VSH_OT_BOOL ? _("optdata") : _("bool"),
                         opt->type != VSH_OT_BOOL ? arg->data : _("(none)"));
K
Karel Zak 已提交
10825 10826
            }
        }
10827

D
Daniel Veillard 已提交
10828
        /* command parsed -- allocate new struct for the command */
K
Karel Zak 已提交
10829
        if (cmd) {
10830
            vshCmd *c = vshMalloc(ctl, sizeof(vshCmd));
10831

K
Karel Zak 已提交
10832 10833 10834 10835
            c->opts = first;
            c->def = cmd;
            c->next = NULL;

10836
            if (!vshCommandCheckOpts(ctl, c)) {
10837
                VIR_FREE(c);
10838
                goto syntaxError;
10839
            }
10840

K
Karel Zak 已提交
10841 10842 10843 10844 10845 10846
            if (!ctl->cmd)
                ctl->cmd = c;
            if (clast)
                clast->next = c;
            clast = c;
        }
10847 10848 10849

        if (tk == VSH_TK_END)
            break;
K
Karel Zak 已提交
10850
    }
10851

K
Karel Zak 已提交
10852 10853
    return TRUE;

10854
 syntaxError:
10855
    if (ctl->cmd) {
K
Karel Zak 已提交
10856
        vshCommandFree(ctl->cmd);
10857 10858
        ctl->cmd = NULL;
    }
K
Karel Zak 已提交
10859 10860
    if (first)
        vshCommandOptFree(first);
10861
    VIR_FREE(tkdata);
10862
    return FALSE;
K
Karel Zak 已提交
10863 10864
}

10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972
/* --------------------
 * Command argv parsing
 * --------------------
 */

static vshCommandToken ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3)
vshCommandArgvGetArg(vshControl *ctl, vshCommandParser *parser, char **res)
{
    if (parser->arg_pos == parser->arg_end) {
        *res = NULL;
        return VSH_TK_END;
    }

    *res = vshStrdup(ctl, *parser->arg_pos);
    parser->arg_pos++;
    return VSH_TK_ARG;
}

static int vshCommandArgvParse(vshControl *ctl, int nargs, char **argv)
{
    vshCommandParser parser;

    if (nargs <= 0)
        return FALSE;

    parser.arg_pos = argv;
    parser.arg_end = argv + nargs;
    parser.getNextArg = vshCommandArgvGetArg;
    return vshCommandParse(ctl, &parser);
}

/* ----------------------
 * Command string parsing
 * ----------------------
 */

static vshCommandToken ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3)
vshCommandStringGetArg(vshControl *ctl, vshCommandParser *parser, char **res)
{
    bool single_quote = false;
    bool double_quote = false;
    int sz = 0;
    char *p = parser->pos;
    char *q = vshStrdup(ctl, p);

    *res = q;

    while (*p && (*p == ' ' || *p == '\t'))
        p++;

    if (*p == '\0')
        return VSH_TK_END;
    if (*p == ';') {
        parser->pos = ++p;             /* = \0 or begin of next command */
        return VSH_TK_SUBCMD_END;
    }

    while (*p) {
        /* end of token is blank space or ';' */
        if (!double_quote && !single_quote &&
            (*p == ' ' || *p == '\t' || *p == ';'))
            break;

        if (!double_quote && *p == '\'') { /* single quote */
            single_quote = !single_quote;
            p++;
            continue;
        } else if (!single_quote && *p == '\\') { /* escape */
            /*
             * The same as the bash, a \ in "" is an escaper,
             * but a \ in '' is not an escaper.
             */
            p++;
            if (*p == '\0') {
                vshError(ctl, "%s", _("dangling \\"));
                return VSH_TK_ERROR;
            }
        } else if (!single_quote && *p == '"') { /* double quote */
            double_quote = !double_quote;
            p++;
            continue;
        }

        *q++ = *p++;
        sz++;
    }
    if (double_quote) {
        vshError(ctl, "%s", _("missing \""));
        return VSH_TK_ERROR;
    }

    *q = '\0';
    parser->pos = p;
    return VSH_TK_ARG;
}

static int vshCommandStringParse(vshControl *ctl, char *cmdstr)
{
    vshCommandParser parser;

    if (cmdstr == NULL || *cmdstr == '\0')
        return FALSE;

    parser.pos = cmdstr;
    parser.getNextArg = vshCommandStringGetArg;
    return vshCommandParse(ctl, &parser);
}

K
Karel Zak 已提交
10973
/* ---------------
10974
 * Misc utils
K
Karel Zak 已提交
10975 10976
 * ---------------
 */
K
Karel Zak 已提交
10977
static const char *
10978 10979
vshDomainStateToString(int state)
{
K
Karel Zak 已提交
10980
    switch (state) {
10981
    case VIR_DOMAIN_RUNNING:
10982
        return N_("running");
10983
    case VIR_DOMAIN_BLOCKED:
10984
        return N_("idle");
10985
    case VIR_DOMAIN_PAUSED:
10986
        return N_("paused");
10987
    case VIR_DOMAIN_SHUTDOWN:
10988
        return N_("in shutdown");
10989
    case VIR_DOMAIN_SHUTOFF:
10990
        return N_("shut off");
10991
    case VIR_DOMAIN_CRASHED:
10992
        return N_("crashed");
10993
    default:
10994
        ;/*FALLTHROUGH*/
K
Karel Zak 已提交
10995
    }
10996
    return N_("no state");  /* = dom0 state */
K
Karel Zak 已提交
10997 10998
}

10999 11000 11001 11002
static const char *
vshDomainVcpuStateToString(int state)
{
    switch (state) {
11003
    case VIR_VCPU_OFFLINE:
11004
        return N_("offline");
11005
    case VIR_VCPU_BLOCKED:
11006
        return N_("idle");
11007
    case VIR_VCPU_RUNNING:
11008
        return N_("running");
11009
    default:
11010
        ;/*FALLTHROUGH*/
11011
    }
11012
    return N_("no state");
11013 11014
}

K
Karel Zak 已提交
11015
static int
11016
vshConnectionUsability(vshControl *ctl, virConnectPtr conn)
11017
{
11018 11019
    /* TODO: use something like virConnectionState() to
     *       check usability of the connection
K
Karel Zak 已提交
11020 11021
     */
    if (!conn) {
11022
        vshError(ctl, "%s", _("no valid connection"));
K
Karel Zak 已提交
11023 11024 11025 11026 11027
        return FALSE;
    }
    return TRUE;
}

K
Karel Zak 已提交
11028
static void
11029
vshDebug(vshControl *ctl, int level, const char *format, ...)
11030
{
K
Karel Zak 已提交
11031 11032
    va_list ap;

11033 11034 11035 11036
    va_start(ap, format);
    vshOutputLogFile(ctl, VSH_ERR_DEBUG, format, ap);
    va_end(ap);

K
Karel Zak 已提交
11037 11038 11039 11040 11041 11042
    if (level > ctl->debug)
        return;

    va_start(ap, format);
    vfprintf(stdout, format, ap);
    va_end(ap);
K
Karel Zak 已提交
11043 11044 11045
}

static void
11046
vshPrintExtra(vshControl *ctl, const char *format, ...)
11047
{
K
Karel Zak 已提交
11048
    va_list ap;
11049

K
Karel Zak 已提交
11050
    if (ctl->quiet == TRUE)
K
Karel Zak 已提交
11051
        return;
11052

K
Karel Zak 已提交
11053
    va_start(ap, format);
11054
    vfprintf(stdout, format, ap);
K
Karel Zak 已提交
11055 11056 11057
    va_end(ap);
}

K
Karel Zak 已提交
11058

K
Karel Zak 已提交
11059
static void
11060
vshError(vshControl *ctl, const char *format, ...)
11061
{
K
Karel Zak 已提交
11062
    va_list ap;
11063

11064 11065 11066 11067 11068
    if (ctl != NULL) {
        va_start(ap, format);
        vshOutputLogFile(ctl, VSH_ERR_ERROR, format, ap);
        va_end(ap);
    }
11069

11070
    fputs(_("error: "), stderr);
11071

K
Karel Zak 已提交
11072 11073 11074 11075 11076 11077 11078 11079
    va_start(ap, format);
    vfprintf(stderr, format, ap);
    va_end(ap);

    fputc('\n', stderr);
}

/*
11080
 * Initialize connection.
K
Karel Zak 已提交
11081 11082
 */
static int
11083
vshInit(vshControl *ctl)
11084
{
K
Karel Zak 已提交
11085 11086 11087
    if (ctl->conn)
        return FALSE;

11088 11089
    vshOpenLogFile(ctl);

11090 11091
    /* set up the library error handler */
    virSetErrorFunc(NULL, virshErrorHandler);
11092

11093 11094 11095
    /* set up the signals handlers to catch disconnections */
    vshSetupSignals();

11096 11097 11098 11099 11100 11101 11102 11103
    virEventRegisterImpl(virEventAddHandleImpl,
                         virEventUpdateHandleImpl,
                         virEventRemoveHandleImpl,
                         virEventAddTimeoutImpl,
                         virEventUpdateTimeoutImpl,
                         virEventRemoveTimeoutImpl);
    virEventInit();

11104 11105 11106 11107
    ctl->conn = virConnectOpenAuth(ctl->name,
                                   virConnectAuthPtrDefault,
                                   ctl->readonly ? VIR_CONNECT_RO : 0);

11108

11109 11110 11111 11112
    /* This is not necessarily fatal.  All the individual commands check
     * vshConnectionUsability, except ones which don't need a connection
     * such as "help".
     */
11113
    if (!ctl->conn) {
11114
        virshReportError(ctl);
11115
        vshError(ctl, "%s", _("failed to connect to the hypervisor"));
11116 11117
        return FALSE;
    }
K
Karel Zak 已提交
11118 11119 11120 11121

    return TRUE;
}

11122 11123
#define LOGFILE_FLAGS (O_WRONLY | O_APPEND | O_CREAT | O_SYNC)

11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142
/**
 * vshOpenLogFile:
 *
 * Open log file.
 */
static void
vshOpenLogFile(vshControl *ctl)
{
    struct stat st;

    if (ctl->logfile == NULL)
        return;

    /* check log file */
    if (stat(ctl->logfile, &st) == -1) {
        switch (errno) {
            case ENOENT:
                break;
            default:
11143
                vshError(ctl, "%s",
J
Jim Meyering 已提交
11144
                         _("failed to get the log file information"));
11145
                exit(EXIT_FAILURE);
11146 11147 11148
        }
    } else {
        if (!S_ISREG(st.st_mode)) {
11149 11150
            vshError(ctl, "%s", _("the log path is not a file"));
            exit(EXIT_FAILURE);
11151 11152 11153 11154
        }
    }

    /* log file open */
11155
    if ((ctl->log_fd = open(ctl->logfile, LOGFILE_FLAGS, FILE_MODE)) < 0) {
11156
        vshError(ctl, "%s",
J
Jim Meyering 已提交
11157
                 _("failed to open the log file. check the log file path"));
11158
        exit(EXIT_FAILURE);
11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223
    }
}

/**
 * vshOutputLogFile:
 *
 * Outputting an error to log file.
 */
static void
vshOutputLogFile(vshControl *ctl, int log_level, const char *msg_format, va_list ap)
{
    char msg_buf[MSG_BUFFER];
    const char *lvl = "";
    struct timeval stTimeval;
    struct tm *stTm;

    if (ctl->log_fd == -1)
        return;

    /**
     * create log format
     *
     * [YYYY.MM.DD HH:MM:SS SIGNATURE PID] LOG_LEVEL message
    */
    gettimeofday(&stTimeval, NULL);
    stTm = localtime(&stTimeval.tv_sec);
    snprintf(msg_buf, sizeof(msg_buf),
             "[%d.%02d.%02d %02d:%02d:%02d ",
             (1900 + stTm->tm_year),
             (1 + stTm->tm_mon),
             (stTm->tm_mday),
             (stTm->tm_hour),
             (stTm->tm_min),
             (stTm->tm_sec));
    snprintf(msg_buf + strlen(msg_buf), sizeof(msg_buf) - strlen(msg_buf),
             "%s] ", SIGN_NAME);
    switch (log_level) {
        case VSH_ERR_DEBUG:
            lvl = LVL_DEBUG;
            break;
        case VSH_ERR_INFO:
            lvl = LVL_INFO;
            break;
        case VSH_ERR_NOTICE:
            lvl = LVL_INFO;
            break;
        case VSH_ERR_WARNING:
            lvl = LVL_WARNING;
            break;
        case VSH_ERR_ERROR:
            lvl = LVL_ERROR;
            break;
        default:
            lvl = LVL_DEBUG;
            break;
    }
    snprintf(msg_buf + strlen(msg_buf), sizeof(msg_buf) - strlen(msg_buf),
             "%s ", lvl);
    vsnprintf(msg_buf + strlen(msg_buf), sizeof(msg_buf) - strlen(msg_buf),
              msg_format, ap);

    if (msg_buf[strlen(msg_buf) - 1] != '\n')
        snprintf(msg_buf + strlen(msg_buf), sizeof(msg_buf) - strlen(msg_buf), "\n");

    /* write log */
11224
    if (safewrite(ctl->log_fd, msg_buf, strlen(msg_buf)) < 0) {
11225
        vshCloseLogFile(ctl);
11226
        vshError(ctl, "%s", _("failed to write the log file"));
11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238
    }
}

/**
 * vshCloseLogFile:
 *
 * Close log file.
 */
static void
vshCloseLogFile(vshControl *ctl)
{
    /* log file close */
11239 11240 11241
    if (VIR_CLOSE(ctl->log_fd) < 0) {
        vshError(ctl, _("%s: failed to write log file: %s"),
                 ctl->logfile ? ctl->logfile : "?", strerror (errno));
11242 11243 11244
    }

    if (ctl->logfile) {
11245
        VIR_FREE(ctl->logfile);
11246 11247 11248 11249
        ctl->logfile = NULL;
    }
}

11250
#ifdef USE_READLINE
11251

K
Karel Zak 已提交
11252 11253 11254 11255 11256
/* -----------------
 * Readline stuff
 * -----------------
 */

11257
/*
K
Karel Zak 已提交
11258 11259
 * Generator function for command completion.  STATE lets us
 * know whether to start from scratch; without any state
11260
 * (i.e. STATE == 0), then we start at the top of the list.
K
Karel Zak 已提交
11261 11262
 */
static char *
11263 11264
vshReadlineCommandGenerator(const char *text, int state)
{
K
Karel Zak 已提交
11265
    static int list_index, len;
K
Karel Zak 已提交
11266
    const char *name;
K
Karel Zak 已提交
11267 11268 11269

    /* If this is a new word to complete, initialize now.  This
     * includes saving the length of TEXT for efficiency, and
11270
     * initializing the index variable to 0.
K
Karel Zak 已提交
11271 11272 11273
     */
    if (!state) {
        list_index = 0;
11274
        len = strlen(text);
K
Karel Zak 已提交
11275 11276 11277
    }

    /* Return the next name which partially matches from the
11278
     * command list.
K
Karel Zak 已提交
11279
     */
K
Karel Zak 已提交
11280
    while ((name = commands[list_index].name)) {
K
Karel Zak 已提交
11281
        list_index++;
11282
        if (STREQLEN(name, text, len))
11283
            return vshStrdup(NULL, name);
K
Karel Zak 已提交
11284 11285 11286 11287 11288 11289 11290
    }

    /* If no names matched, then return NULL. */
    return NULL;
}

static char *
11291 11292
vshReadlineOptionsGenerator(const char *text, int state)
{
K
Karel Zak 已提交
11293
    static int list_index, len;
11294
    static const vshCmdDef *cmd = NULL;
K
Karel Zak 已提交
11295
    const char *name;
K
Karel Zak 已提交
11296 11297 11298 11299 11300 11301 11302 11303 11304

    if (!state) {
        /* determine command name */
        char *p;
        char *cmdname;

        if (!(p = strchr(rl_line_buffer, ' ')))
            return NULL;

11305
        cmdname = vshCalloc(NULL, (p - rl_line_buffer) + 1, 1);
11306
        memcpy(cmdname, rl_line_buffer, p - rl_line_buffer);
K
Karel Zak 已提交
11307 11308 11309

        cmd = vshCmddefSearch(cmdname);
        list_index = 0;
11310
        len = strlen(text);
11311
        VIR_FREE(cmdname);
K
Karel Zak 已提交
11312 11313 11314 11315
    }

    if (!cmd)
        return NULL;
11316

11317 11318 11319
    if (!cmd->opts)
        return NULL;

K
Karel Zak 已提交
11320
    while ((name = cmd->opts[list_index].name)) {
11321
        const vshCmdOptDef *opt = &cmd->opts[list_index];
K
Karel Zak 已提交
11322
        char *res;
11323

K
Karel Zak 已提交
11324
        list_index++;
11325

K
Karel Zak 已提交
11326
        if (opt->type == VSH_OT_DATA)
K
Karel Zak 已提交
11327 11328
            /* ignore non --option */
            continue;
11329

K
Karel Zak 已提交
11330
        if (len > 2) {
11331
            if (STRNEQLEN(name, text + 2, len - 2))
K
Karel Zak 已提交
11332 11333
                continue;
        }
11334
        res = vshMalloc(NULL, strlen(name) + 3);
11335
        snprintf(res, strlen(name) + 3,  "--%s", name);
K
Karel Zak 已提交
11336 11337 11338 11339 11340 11341 11342 11343
        return res;
    }

    /* If no names matched, then return NULL. */
    return NULL;
}

static char **
11344 11345 11346
vshReadlineCompletion(const char *text, int start,
                      int end ATTRIBUTE_UNUSED)
{
K
Karel Zak 已提交
11347 11348
    char **matches = (char **) NULL;

11349
    if (start == 0)
K
Karel Zak 已提交
11350
        /* command name generator */
11351
        matches = rl_completion_matches(text, vshReadlineCommandGenerator);
K
Karel Zak 已提交
11352 11353
    else
        /* commands options */
11354
        matches = rl_completion_matches(text, vshReadlineOptionsGenerator);
K
Karel Zak 已提交
11355 11356 11357 11358
    return matches;
}


11359 11360
static int
vshReadlineInit(vshControl *ctl)
11361
{
11362 11363
    char *userdir = NULL;

K
Karel Zak 已提交
11364 11365 11366 11367 11368
    /* Allow conditional parsing of the ~/.inputrc file. */
    rl_readline_name = "virsh";

    /* Tell the completer that we want a crack first. */
    rl_attempted_completion_function = vshReadlineCompletion;
11369 11370 11371

    /* Limit the total size of the history buffer */
    stifle_history(500);
11372 11373

    /* Prepare to read/write history from/to the ~/.virsh/history file */
11374
    userdir = virGetUserDirectory(getuid());
11375 11376 11377 11378 11379 11380

    if (userdir == NULL)
        return -1;

    if (virAsprintf(&ctl->historydir, "%s/.virsh", userdir) < 0) {
        vshError(ctl, "%s", _("Out of memory"));
11381
        VIR_FREE(userdir);
11382 11383 11384 11385 11386
        return -1;
    }

    if (virAsprintf(&ctl->historyfile, "%s/history", ctl->historydir) < 0) {
        vshError(ctl, "%s", _("Out of memory"));
11387
        VIR_FREE(userdir);
11388 11389 11390
        return -1;
    }

11391
    VIR_FREE(userdir);
11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409

    read_history(ctl->historyfile);

    return 0;
}

static void
vshReadlineDeinit (vshControl *ctl)
{
    if (ctl->historyfile != NULL) {
        if (mkdir(ctl->historydir, 0755) < 0 && errno != EEXIST) {
            char ebuf[1024];
            vshError(ctl, _("Failed to create '%s': %s"),
                     ctl->historydir, virStrerror(errno, ebuf, sizeof ebuf));
        } else
            write_history(ctl->historyfile);
    }

11410 11411
    VIR_FREE(ctl->historydir);
    VIR_FREE(ctl->historyfile);
K
Karel Zak 已提交
11412 11413
}

11414 11415 11416 11417 11418 11419
static char *
vshReadline (vshControl *ctl ATTRIBUTE_UNUSED, const char *prompt)
{
    return readline (prompt);
}

11420
#else /* !USE_READLINE */
11421

11422 11423 11424 11425 11426 11427 11428
static int
vshReadlineInit (vshControl *ctl ATTRIBUTE_UNUSED)
{
    /* empty */
    return 0;
}

11429
static void
11430
vshReadlineDeinit (vshControl *ctl ATTRIBUTE_UNUSED)
11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453
{
    /* empty */
}

static char *
vshReadline (vshControl *ctl, const char *prompt)
{
    char line[1024];
    char *r;
    int len;

    fputs (prompt, stdout);
    r = fgets (line, sizeof line, stdin);
    if (r == NULL) return NULL; /* EOF */

    /* Chomp trailing \n */
    len = strlen (r);
    if (len > 0 && r[len-1] == '\n')
        r[len-1] = '\0';

    return vshStrdup (ctl, r);
}

11454
#endif /* !USE_READLINE */
11455

K
Karel Zak 已提交
11456
/*
J
Jim Meyering 已提交
11457
 * Deinitialize virsh
K
Karel Zak 已提交
11458 11459
 */
static int
11460
vshDeinit(vshControl *ctl)
11461
{
11462
    vshReadlineDeinit(ctl);
11463
    vshCloseLogFile(ctl);
11464
    VIR_FREE(ctl->name);
K
Karel Zak 已提交
11465
    if (ctl->conn) {
11466
        if (virConnectClose(ctl->conn) != 0) {
11467
            vshError(ctl, "%s", _("failed to disconnect from the hypervisor"));
K
Karel Zak 已提交
11468 11469
        }
    }
D
Daniel P. Berrange 已提交
11470 11471
    virResetLastError();

K
Karel Zak 已提交
11472 11473
    return TRUE;
}
11474

K
Karel Zak 已提交
11475 11476 11477 11478
/*
 * Print usage
 */
static void
11479
vshUsage(void)
11480
{
11481
    const vshCmdDef *cmd;
L
Lai Jiangshan 已提交
11482 11483
    fprintf(stdout, _("\n%s [options]... [<command_string>]"
                      "\n%s [options]... <command> [args...]\n\n"
11484 11485 11486 11487 11488 11489 11490 11491
                      "  options:\n"
                      "    -c | --connect <uri>    hypervisor connection URI\n"
                      "    -r | --readonly         connect readonly\n"
                      "    -d | --debug <num>      debug level [0-5]\n"
                      "    -h | --help             this help\n"
                      "    -q | --quiet            quiet mode\n"
                      "    -t | --timing           print timing information\n"
                      "    -l | --log <file>       output logging to file\n"
E
Eric Blake 已提交
11492 11493
                      "    -v | --version[=short]  program version\n\n"
                      "    -V | --version=long     version and full options\n\n"
L
Lai Jiangshan 已提交
11494
                      "  commands (non interactive mode):\n"), progname, progname);
11495 11496 11497

    for (cmd = commands; cmd->name; cmd++)
        fprintf(stdout,
E
Eric Blake 已提交
11498
                "    %-15s %s\n", cmd->name, _(vshCmddefGetInfo(cmd, "help")));
11499 11500 11501 11502

    fprintf(stdout, "%s",
            _("\n  (specify help <command> for details about the command)\n\n"));
    return;
K
Karel Zak 已提交
11503 11504
}

11505 11506 11507 11508 11509 11510 11511 11512 11513 11514
/*
 * Show version and options compiled in
 */
static void
vshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED)
{
    /* FIXME - list a copyright blurb, as in GNU programs?  */
    vshPrint(ctl, _("Virsh command line tool of libvirt %s\n"), VERSION);
    vshPrint(ctl, _("See web site at %s\n\n"), "http://libvirt.org/");

L
Laine Stump 已提交
11515 11516
    vshPrint(ctl, "%s", _("Compiled with support for:\n"));
    vshPrint(ctl, "%s", _(" Hypervisors:"));
11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551
#ifdef WITH_XEN
    vshPrint(ctl, " Xen");
#endif
#ifdef WITH_QEMU
    vshPrint(ctl, " QEmu/KVM");
#endif
#ifdef WITH_UML
    vshPrint(ctl, " UML");
#endif
#ifdef WITH_OPENVZ
    vshPrint(ctl, " OpenVZ");
#endif
#ifdef WITH_VBOX
    vshPrint(ctl, " VirtualBox");
#endif
#ifdef WITH_XENAPI
    vshPrint(ctl, " XenAPI");
#endif
#ifdef WITH_LXC
    vshPrint(ctl, " LXC");
#endif
#ifdef WITH_ESX
    vshPrint(ctl, " ESX");
#endif
#ifdef WITH_PHYP
    vshPrint(ctl, " PHYP");
#endif
#ifdef WITH_ONE
    vshPrint(ctl, " ONE");
#endif
#ifdef WITH_TEST
    vshPrint(ctl, " Test");
#endif
    vshPrint(ctl, "\n");

L
Laine Stump 已提交
11552
    vshPrint(ctl, "%s", _(" Networking:"));
11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578
#ifdef WITH_REMOTE
    vshPrint(ctl, " Remote");
#endif
#ifdef WITH_PROXY
    vshPrint(ctl, " Proxy");
#endif
#ifdef WITH_LIBVIRTD
    vshPrint(ctl, " Daemon");
#endif
#ifdef WITH_NETWORK
    vshPrint(ctl, " Network");
#endif
#ifdef WITH_BRIDGE
    vshPrint(ctl, " Bridging");
#endif
#ifdef WITH_NETCF
    vshPrint(ctl, " Netcf");
#endif
#ifdef WITH_NWFILTER
    vshPrint(ctl, " Nwfilter");
#endif
#ifdef WITH_VIRTUALPORT
    vshPrint(ctl, " VirtualPort");
#endif
    vshPrint(ctl, "\n");

L
Laine Stump 已提交
11579
    vshPrint(ctl, "%s", _(" Storage:"));
11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602
#ifdef WITH_STORAGE_DIR
    vshPrint(ctl, " Dir");
#endif
#ifdef WITH_STORAGE_DISK
    vshPrint(ctl, " Disk");
#endif
#ifdef WITH_STORAGE_FS
    vshPrint(ctl, " Filesystem");
#endif
#ifdef WITH_STORAGE_SCSI
    vshPrint(ctl, " SCSI");
#endif
#ifdef WITH_STORAGE_MPATH
    vshPrint(ctl, " Multipath");
#endif
#ifdef WITH_STORAGE_ISCSI
    vshPrint(ctl, " iSCSI");
#endif
#ifdef WITH_STORAGE_LVM
    vshPrint(ctl, " LVM");
#endif
    vshPrint(ctl, "\n");

L
Laine Stump 已提交
11603
    vshPrint(ctl, "%s", _(" Miscellaneous:"));
11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627
#ifdef ENABLE_SECDRIVER_APPARMOR
    vshPrint(ctl, " AppArmor");
#endif
#ifdef WITH_SECDRIVER_SELINUX
    vshPrint(ctl, " SELinux");
#endif
#ifdef WITH_SECRETS
    vshPrint(ctl, " Secrets");
#endif
#ifdef ENABLE_DEBUG
    vshPrint(ctl, " Debug");
#endif
#ifdef WITH_DTRACE
    vshPrint(ctl, " DTrace");
#endif
#ifdef USE_READLINE
    vshPrint(ctl, " Readline");
#endif
#ifdef WITH_DRIVER_MODULES
    vshPrint(ctl, " Modular");
#endif
    vshPrint(ctl, "\n");
}

K
Karel Zak 已提交
11628 11629 11630 11631 11632
/*
 * argv[]:  virsh [options] [command]
 *
 */
static int
11633
vshParseArgv(vshControl *ctl, int argc, char **argv)
11634
{
11635 11636
    bool help = false;
    int arg;
K
Karel Zak 已提交
11637
    struct option opt[] = {
E
Eric Blake 已提交
11638 11639 11640 11641 11642 11643 11644 11645 11646
        {"debug", required_argument, NULL, 'd'},
        {"help", no_argument, NULL, 'h'},
        {"quiet", no_argument, NULL, 'q'},
        {"timing", no_argument, NULL, 't'},
        {"version", optional_argument, NULL, 'v'},
        {"connect", required_argument, NULL, 'c'},
        {"readonly", no_argument, NULL, 'r'},
        {"log", required_argument, NULL, 'l'},
        {NULL, 0, NULL, 0}
11647 11648
    };

11649 11650 11651
    /* Standard (non-command) options. The leading + ensures that no
     * argument reordering takes place, so that command options are
     * not confused with top-level virsh options. */
11652
    while ((arg = getopt_long(argc, argv, "+d:hqtc:vVrl:", opt, NULL)) != -1) {
11653
        switch (arg) {
11654
        case 'd':
D
Daniel Veillard 已提交
11655
            if (virStrToLong_i(optarg, NULL, 10, &ctl->debug) < 0) {
L
Laine Stump 已提交
11656
                vshError(ctl, "%s", _("option -d takes a numeric argument"));
D
Daniel Veillard 已提交
11657 11658
                exit(EXIT_FAILURE);
            }
11659 11660
            break;
        case 'h':
11661
            help = true;
11662 11663 11664 11665 11666 11667 11668 11669 11670 11671
            break;
        case 'q':
            ctl->quiet = TRUE;
            break;
        case 't':
            ctl->timing = TRUE;
            break;
        case 'c':
            ctl->name = vshStrdup(ctl, optarg);
            break;
E
Eric Blake 已提交
11672 11673 11674 11675 11676 11677
        case 'v':
            if (STRNEQ_NULLABLE(optarg, "long")) {
                puts(VERSION);
                exit(EXIT_SUCCESS);
            }
            /* fall through */
11678 11679 11680
        case 'V':
            vshShowVersion(ctl);
            exit(EXIT_SUCCESS);
11681 11682 11683
        case 'r':
            ctl->readonly = TRUE;
            break;
11684 11685 11686
        case 'l':
            ctl->logfile = vshStrdup(ctl, optarg);
            break;
11687
        default:
11688 11689
            vshError(ctl, _("unsupported option '-%c'. See --help."), arg);
            exit(EXIT_FAILURE);
K
Karel Zak 已提交
11690 11691 11692 11693
        }
    }

    if (help) {
11694 11695
        if (optind < argc) {
            vshError(ctl, _("extra argument '%s'. See --help."), argv[optind]);
11696 11697
            exit(EXIT_FAILURE);
        }
11698 11699 11700

        /* list all command */
        vshUsage();
K
Karel Zak 已提交
11701
        exit(EXIT_SUCCESS);
11702 11703
    }

11704
    if (argc > optind) {
K
Karel Zak 已提交
11705 11706
        /* parse command */
        ctl->imode = FALSE;
11707 11708 11709
        if (argc - optind == 1) {
            vshDebug(ctl, 2, "commands: \"%s\"\n", argv[optind]);
            return vshCommandStringParse(ctl, argv[optind]);
L
Lai Jiangshan 已提交
11710
        } else {
11711
            return vshCommandArgvParse(ctl, argc - optind, argv + optind);
K
Karel Zak 已提交
11712 11713 11714 11715 11716
        }
    }
    return TRUE;
}

11717 11718 11719 11720
int
main(int argc, char **argv)
{
    vshControl _ctl, *ctl = &_ctl;
11721
    char *defaultConn;
K
Karel Zak 已提交
11722 11723
    int ret = TRUE;

11724 11725
    if (!setlocale(LC_ALL, "")) {
        perror("setlocale");
11726
        /* failure to setup locale is not fatal */
11727 11728 11729
    }
    if (!bindtextdomain(GETTEXT_PACKAGE, LOCALEBASEDIR)) {
        perror("bindtextdomain");
11730
        return -1;
11731 11732 11733
    }
    if (!textdomain(GETTEXT_PACKAGE)) {
        perror("textdomain");
11734
        return -1;
11735 11736
    }

11737
    if (!(progname = strrchr(argv[0], '/')))
K
Karel Zak 已提交
11738 11739 11740
        progname = argv[0];
    else
        progname++;
11741

K
Karel Zak 已提交
11742
    memset(ctl, 0, sizeof(vshControl));
11743
    ctl->imode = TRUE;          /* default is interactive mode */
11744
    ctl->log_fd = -1;           /* Initialize log file descriptor */
K
Karel Zak 已提交
11745

11746
    if ((defaultConn = getenv("VIRSH_DEFAULT_CONNECT_URI"))) {
E
Eric Blake 已提交
11747
        ctl->name = vshStrdup(ctl, defaultConn);
11748 11749
    }

D
Daniel P. Berrange 已提交
11750 11751
    if (!vshParseArgv(ctl, argc, argv)) {
        vshDeinit(ctl);
K
Karel Zak 已提交
11752
        exit(EXIT_FAILURE);
D
Daniel P. Berrange 已提交
11753
    }
11754

D
Daniel P. Berrange 已提交
11755 11756
    if (!vshInit(ctl)) {
        vshDeinit(ctl);
K
Karel Zak 已提交
11757
        exit(EXIT_FAILURE);
D
Daniel P. Berrange 已提交
11758
    }
11759

K
Karel Zak 已提交
11760
    if (!ctl->imode) {
11761
        ret = vshCommandRun(ctl, ctl->cmd);
11762
    } else {
K
Karel Zak 已提交
11763 11764
        /* interactive mode */
        if (!ctl->quiet) {
K
Karel Zak 已提交
11765
            vshPrint(ctl,
11766
                     _("Welcome to %s, the virtualization interactive terminal.\n\n"),
11767
                     progname);
J
Jim Meyering 已提交
11768
            vshPrint(ctl, "%s",
11769
                     _("Type:  'help' for help with commands\n"
11770
                       "       'quit' to quit\n\n"));
K
Karel Zak 已提交
11771
        }
11772 11773 11774 11775 11776 11777

        if (vshReadlineInit(ctl) < 0) {
            vshDeinit(ctl);
            exit(EXIT_FAILURE);
        }

K
Karel Zak 已提交
11778
        do {
11779
            const char *prompt = ctl->readonly ? VSH_PROMPT_RO : VSH_PROMPT_RW;
11780
            ctl->cmdstr =
11781
                vshReadline(ctl, prompt);
11782 11783
            if (ctl->cmdstr == NULL)
                break;          /* EOF */
K
Karel Zak 已提交
11784
            if (*ctl->cmdstr) {
11785
#if USE_READLINE
K
Karel Zak 已提交
11786
                add_history(ctl->cmdstr);
11787
#endif
11788
                if (vshCommandStringParse(ctl, ctl->cmdstr))
K
Karel Zak 已提交
11789 11790
                    vshCommandRun(ctl, ctl->cmd);
            }
11791
            VIR_FREE(ctl->cmdstr);
11792
        } while (ctl->imode);
K
Karel Zak 已提交
11793

11794 11795
        if (ctl->cmdstr == NULL)
            fputc('\n', stdout);        /* line break after alone prompt */
K
Karel Zak 已提交
11796
    }
11797

K
Karel Zak 已提交
11798 11799
    vshDeinit(ctl);
    exit(ret ? EXIT_SUCCESS : EXIT_FAILURE);
11800
}