virsh.c 89.2 KB
Newer Older
1
/*
2
 * virsh.c: a shell to exercise the libvirt API
3
 *
4
 * Copyright (C) 2005, 2007-2012 Red Hat, Inc.
5
 *
O
Osier Yang 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library;  If not, see
 * <http://www.gnu.org/licenses/>.
19 20
 *
 * Daniel Veillard <veillard@redhat.com>
K
Karel Zak 已提交
21
 * Karel Zak <kzak@redhat.com>
K
Karel Zak 已提交
22
 * Daniel P. Berrange <berrange@redhat.com>
23 24
 */

25
#include <config.h>
26

27
#include <stdio.h>
K
Karel Zak 已提交
28 29 30
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
31
#include <unistd.h>
32
#include <errno.h>
K
Karel Zak 已提交
33
#include <getopt.h>
34
#include <sys/types.h>
K
Karel Zak 已提交
35
#include <sys/time.h>
E
Eric Blake 已提交
36
#include <sys/wait.h>
J
Jim Meyering 已提交
37
#include "c-ctype.h"
38
#include <fcntl.h>
39
#include <locale.h>
40
#include <time.h>
41
#include <limits.h>
42
#include <assert.h>
43
#include <sys/stat.h>
44
#include <inttypes.h>
45
#include <signal.h>
46
#include <poll.h>
E
Eric Blake 已提交
47
#include <strings.h>
48
#include <termios.h>
K
Karel Zak 已提交
49

50 51 52
#include <libxml/parser.h>
#include <libxml/tree.h>
#include <libxml/xpath.h>
53
#include <libxml/xmlsave.h>
54

55
#ifdef HAVE_READLINE_READLINE_H
56 57
# include <readline/readline.h>
# include <readline/history.h>
58
#endif
K
Karel Zak 已提交
59

60
#include "internal.h"
61
#include "virterror_internal.h"
62
#include "base64.h"
63
#include "buf.h"
64
#include "console.h"
65
#include "util.h"
66
#include "memory.h"
67
#include "xml.h"
68
#include "libvirt/libvirt-qemu.h"
E
Eric Blake 已提交
69
#include "virfile.h"
70
#include "event_poll.h"
71
#include "configmake.h"
72
#include "threads.h"
E
Eric Blake 已提交
73
#include "command.h"
74
#include "virkeycode.h"
75
#include "virnetdevbandwidth.h"
76
#include "util/bitmap.h"
H
Hu Tao 已提交
77
#include "conf/domain_conf.h"
78
#include "virtypedparam.h"
79
#include "conf/virdomainlist.h"
K
Karel Zak 已提交
80 81 82

static char *progname;

83 84
#define VIRSH_MAX_XML_FILE 10*1024*1024

K
Karel Zak 已提交
85 86 87
#define VSH_PROMPT_RW    "virsh # "
#define VSH_PROMPT_RO    "virsh > "

88 89
#define VIR_FROM_THIS VIR_FROM_NONE

K
Karel Zak 已提交
90 91 92 93 94
#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)

95 96 97
/* Default escape char Ctrl-] as per telnet */
#define CTRL_CLOSE_BRACKET "^]"

98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
/**
 * 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 已提交
115
 * Indicates the level of a log message
116 117 118 119 120 121 122 123 124
 */
typedef enum {
    VSH_ERR_DEBUG = 0,
    VSH_ERR_INFO,
    VSH_ERR_NOTICE,
    VSH_ERR_WARNING,
    VSH_ERR_ERROR
} vshErrorLevel;

J
Jiri Denemark 已提交
125 126
#define VSH_DEBUG_DEFAULT VSH_ERR_ERROR

K
Karel Zak 已提交
127 128 129 130 131
/*
 * virsh command line grammar:
 *
 *    command_line    =     <command>\n | <command>; <command>; ...
 *
E
Eric Blake 已提交
132
 *    command         =    <keyword> <option> [--] <data>
K
Karel Zak 已提交
133 134 135 136 137
 *
 *    option          =     <bool_option> | <int_option> | <string_option>
 *    data            =     <string>
 *
 *    bool_option     =     --optionname
E
Eric Blake 已提交
138 139
 *    int_option      =     --optionname <number> | --optionname=<number>
 *    string_option   =     --optionname <string> | --optionname=<string>
140
 *
E
Eric Blake 已提交
141
 *    keyword         =     [a-zA-Z][a-zA-Z-]*
142
 *    number          =     [0-9]+
E
Eric Blake 已提交
143
 *    string          =     ('[^']*'|"([^\\"]|\\.)*"|([^ \t\n\\'"]|\\.))+
K
Karel Zak 已提交
144 145 146 147
 *
 */

/*
148
 * vshCmdOptType - command option type
149
 */
K
Karel Zak 已提交
150
typedef enum {
151 152 153
    VSH_OT_BOOL,     /* optional boolean option */
    VSH_OT_STRING,   /* optional string option */
    VSH_OT_INT,      /* optional or mandatory int option */
154
    VSH_OT_DATA,     /* string data (as non-option) */
E
Eric Blake 已提交
155 156
    VSH_OT_ARGV,     /* remaining arguments */
    VSH_OT_ALIAS,    /* alternate spelling for a later argument */
K
Karel Zak 已提交
157 158
} vshCmdOptType;

159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
/*
 * Command group types
 */
#define VSH_CMD_GRP_DOM_MANAGEMENT   "Domain Management"
#define VSH_CMD_GRP_DOM_MONITORING   "Domain Monitoring"
#define VSH_CMD_GRP_STORAGE_POOL     "Storage Pool"
#define VSH_CMD_GRP_STORAGE_VOL      "Storage Volume"
#define VSH_CMD_GRP_NETWORK          "Networking"
#define VSH_CMD_GRP_NODEDEV          "Node Device"
#define VSH_CMD_GRP_IFACE            "Interface"
#define VSH_CMD_GRP_NWFILTER         "Network Filter"
#define VSH_CMD_GRP_SECRET           "Secret"
#define VSH_CMD_GRP_SNAPSHOT         "Snapshot"
#define VSH_CMD_GRP_HOST_AND_HV      "Host and Hypervisor"
#define VSH_CMD_GRP_VIRSH            "Virsh itself"

K
Karel Zak 已提交
175 176 177
/*
 * Command Option Flags
 */
E
Eric Blake 已提交
178 179 180 181
enum {
    VSH_OFLAG_NONE     = 0,        /* without flags */
    VSH_OFLAG_REQ      = (1 << 0), /* option required */
    VSH_OFLAG_EMPTY_OK = (1 << 1), /* empty string option allowed */
L
Lai Jiangshan 已提交
182
    VSH_OFLAG_REQ_OPT  = (1 << 2), /* --optionname required */
E
Eric Blake 已提交
183
};
K
Karel Zak 已提交
184 185 186 187 188 189

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

/*
E
Eric Blake 已提交
190 191 192 193 194
 * vshCmdInfo -- name/value pair for information about command
 *
 * Commands should have at least the following names:
 * "name" - command name
 * "desc" - description of command, or empty string
K
Karel Zak 已提交
195
 */
196
typedef struct {
E
Eric Blake 已提交
197 198
    const char *name;           /* name of information, or NULL for list end */
    const char *data;           /* non-NULL information */
K
Karel Zak 已提交
199 200 201 202 203
} vshCmdInfo;

/*
 * vshCmdOptDef - command option definition
 */
204
typedef struct {
E
Eric Blake 已提交
205
    const char *name;           /* the name of option, or NULL for list end */
206
    vshCmdOptType type;         /* option type */
E
Eric Blake 已提交
207
    unsigned int flags;         /* flags */
E
Eric Blake 已提交
208 209
    const char *help;           /* non-NULL help string; or for VSH_OT_ALIAS
                                 * the name of a later public option */
K
Karel Zak 已提交
210 211 212 213
} vshCmdOptDef;

/*
 * vshCmdOpt - command options
E
Eric Blake 已提交
214 215 216
 *
 * After parsing a command, all arguments to the command have been
 * collected into a list of these objects.
K
Karel Zak 已提交
217 218
 */
typedef struct vshCmdOpt {
E
Eric Blake 已提交
219 220
    const vshCmdOptDef *def;    /* non-NULL pointer to option definition */
    char *data;                 /* allocated data, or NULL for bool option */
221
    struct vshCmdOpt *next;
K
Karel Zak 已提交
222 223
} vshCmdOpt;

224 225 226 227 228
/*
 * Command Usage Flags
 */
enum {
    VSH_CMD_FLAG_NOCONNECT = (1 << 0),  /* no prior connection needed */
229
    VSH_CMD_FLAG_ALIAS     = (1 << 1),  /* command is an alias */
230 231
};

K
Karel Zak 已提交
232 233 234
/*
 * vshCmdDef - command definition
 */
235
typedef struct {
E
Eric Blake 已提交
236
    const char *name;           /* name of command, or NULL for list end */
E
Eric Blake 已提交
237
    bool (*handler) (vshControl *, const vshCmd *);    /* command handler */
238 239
    const vshCmdOptDef *opts;   /* definition of command options */
    const vshCmdInfo *info;     /* details about command */
240
    unsigned int flags;         /* bitwise OR of VSH_CMD_FLAG */
K
Karel Zak 已提交
241 242 243 244 245 246
} vshCmdDef;

/*
 * vshCmd - parsed command
 */
typedef struct __vshCmd {
247
    const vshCmdDef *def;       /* command definition */
248 249
    vshCmdOpt *opts;            /* list of command arguments */
    struct __vshCmd *next;      /* next command */
K
Karel Zak 已提交
250 251 252 253 254 255
} __vshCmd;

/*
 * vshControl
 */
typedef struct __vshControl {
K
Karel Zak 已提交
256
    char *name;                 /* connection name */
257
    virConnectPtr conn;         /* connection to hypervisor (MAY BE NULL) */
258 259
    vshCmd *cmd;                /* the current command */
    char *cmdstr;               /* string with command */
E
Eric Blake 已提交
260 261
    bool imode;                 /* interactive mode? */
    bool quiet;                 /* quiet mode */
262
    int debug;                  /* print debug messages? */
E
Eric Blake 已提交
263 264
    bool timing;                /* print timing info? */
    bool readonly;              /* connect readonly (first time only, not
265 266
                                 * during explicit connect command)
                                 */
267 268
    char *logfile;              /* log file name */
    int log_fd;                 /* log file descriptor */
269 270
    char *historydir;           /* readline history directory name */
    char *historyfile;          /* readline history file name */
271 272
    bool useGetInfo;            /* must use virDomainGetInfo, since
                                   virDomainGetState is not supported */
273 274
    bool useSnapshotOld;        /* cannot use virDomainSnapshotGetParent or
                                   virDomainSnapshotNumChildren */
J
Jiri Denemark 已提交
275
    virThread eventLoop;
276
    virMutex lock;
J
Jiri Denemark 已提交
277 278
    bool eventLoopStarted;
    bool quit;
279 280 281

    const char *escapeChar;     /* String representation of
                                   console escape character */
K
Karel Zak 已提交
282
} __vshControl;
283

284
typedef struct vshCmdGrp {
E
Eric Blake 已提交
285
    const char *name;    /* name of group, or NULL for list end */
286 287 288
    const char *keyword; /* help keyword */
    const vshCmdDef *commands;
} vshCmdGrp;
289

290
static const vshCmdGrp cmdGroups[];
K
Karel Zak 已提交
291

292 293
static void vshError(vshControl *ctl, const char *format, ...)
    ATTRIBUTE_FMT_PRINTF(2, 3);
E
Eric Blake 已提交
294 295
static bool vshInit(vshControl *ctl);
static bool vshDeinit(vshControl *ctl);
296
static void vshUsage(void);
297
static void vshOpenLogFile(vshControl *ctl);
298 299
static void vshOutputLogFile(vshControl *ctl, int log_level, const char *format, va_list ap)
    ATTRIBUTE_FMT_PRINTF(3, 0);
300
static void vshCloseLogFile(vshControl *ctl);
K
Karel Zak 已提交
301

E
Eric Blake 已提交
302
static bool vshParseArgv(vshControl *ctl, int argc, char **argv);
K
Karel Zak 已提交
303

304
static const char *vshCmddefGetInfo(const vshCmdDef *cmd, const char *info);
305
static const vshCmdDef *vshCmddefSearch(const char *cmdname);
E
Eric Blake 已提交
306
static bool vshCmddefHelp(vshControl *ctl, const char *name);
307
static const vshCmdGrp *vshCmdGrpSearch(const char *grpname);
E
Eric Blake 已提交
308
static bool vshCmdGrpHelp(vshControl *ctl, const char *name);
K
Karel Zak 已提交
309

E
Eric Blake 已提交
310 311 312
static int vshCommandOpt(const vshCmd *cmd, const char *name, vshCmdOpt **opt)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3)
    ATTRIBUTE_RETURN_CHECK;
313 314
static int vshCommandOptInt(const vshCmd *cmd, const char *name, int *value)
    ATTRIBUTE_NONNULL(3) ATTRIBUTE_RETURN_CHECK;
315 316 317
static int vshCommandOptUInt(const vshCmd *cmd, const char *name,
                             unsigned int *value)
    ATTRIBUTE_NONNULL(3) ATTRIBUTE_RETURN_CHECK;
318 319 320 321 322 323 324 325 326
static int vshCommandOptUL(const vshCmd *cmd, const char *name,
                           unsigned long *value)
    ATTRIBUTE_NONNULL(3) ATTRIBUTE_RETURN_CHECK;
static int vshCommandOptString(const vshCmd *cmd, const char *name,
                               const char **value)
    ATTRIBUTE_NONNULL(3) ATTRIBUTE_RETURN_CHECK;
static int vshCommandOptLongLong(const vshCmd *cmd, const char *name,
                                 long long *value)
    ATTRIBUTE_NONNULL(3) ATTRIBUTE_RETURN_CHECK;
327 328 329
static int vshCommandOptULongLong(const vshCmd *cmd, const char *name,
                                  unsigned long long *value)
    ATTRIBUTE_NONNULL(3) ATTRIBUTE_RETURN_CHECK;
E
Eric Blake 已提交
330 331 332 333
static int vshCommandOptScaledInt(const vshCmd *cmd, const char *name,
                                  unsigned long long *value, int scale,
                                  unsigned long long max)
    ATTRIBUTE_NONNULL(3) ATTRIBUTE_RETURN_CHECK;
E
Eric Blake 已提交
334
static bool vshCommandOptBool(const vshCmd *cmd, const char *name);
335 336
static const vshCmdOpt *vshCommandOptArgv(const vshCmd *cmd,
                                          const vshCmdOpt *opt);
337 338 339
static char *vshGetDomainDescription(vshControl *ctl, virDomainPtr dom,
                                     bool title, unsigned int flags)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_RETURN_CHECK;
K
Karel Zak 已提交
340

341 342 343
#define VSH_BYID     (1 << 1)
#define VSH_BYUUID   (1 << 2)
#define VSH_BYNAME   (1 << 3)
344
#define VSH_BYMAC    (1 << 4)
K
Karel Zak 已提交
345

346
static virDomainPtr vshCommandOptDomainBy(vshControl *ctl, const vshCmd *cmd,
347
                                          const char **name, int flag);
K
Karel Zak 已提交
348 349

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

353
static void vshPrintExtra(vshControl *ctl, const char *format, ...)
354
    ATTRIBUTE_FMT_PRINTF(2, 3);
355
static void vshDebug(vshControl *ctl, int level, const char *format, ...)
356
    ATTRIBUTE_FMT_PRINTF(3, 4);
K
Karel Zak 已提交
357 358

/* XXX: add batch support */
359
#define vshPrint(_ctl, ...)   vshPrintExtra(NULL, __VA_ARGS__)
K
Karel Zak 已提交
360

361
static int vshDomainState(vshControl *ctl, virDomainPtr dom, int *reason);
K
Karel Zak 已提交
362
static const char *vshDomainStateToString(int state);
363
static const char *vshDomainStateReasonToString(int state, int reason);
364
static const char *vshDomainControlStateToString(int state);
365
static const char *vshDomainVcpuStateToString(int state);
E
Eric Blake 已提交
366
static bool vshConnectionUsability(vshControl *ctl, virConnectPtr conn);
367 368 369
static virTypedParameterPtr vshFindTypedParamByName(const char *name,
                                                    virTypedParameterPtr list,
                                                    int count);
370 371
static char *vshGetTypedParamValue(vshControl *ctl, virTypedParameterPtr item)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
K
Karel Zak 已提交
372

E
Eric Blake 已提交
373 374 375
static char *editWriteToTempFile(vshControl *ctl, const char *doc);
static int   editFile(vshControl *ctl, const char *filename);
static char *editReadBackFile(vshControl *ctl, const char *filename);
376

377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
/* Typedefs, function prototypes for job progress reporting.
 * There are used by some long lingering commands like
 * migrate, dump, save, managedsave.
 */
typedef struct __vshCtrlData {
    vshControl *ctl;
    const vshCmd *cmd;
    int writefd;
} vshCtrlData;

typedef void (*jobWatchTimeoutFunc) (vshControl *ctl, virDomainPtr dom,
                                     void *opaque);

static bool
vshWatchJob(vshControl *ctl,
            virDomainPtr dom,
            bool verbose,
            int pipe_fd,
            int timeout,
            jobWatchTimeoutFunc timeout_func,
            void *opaque,
            const char *label);

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

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

406
static char *_vshStrdup(vshControl *ctl, const char *s, const char *filename, int line);
407 408
#define vshStrdup(_ctl, _s)    _vshStrdup(_ctl, _s, __FILE__, __LINE__)

409 410
static int parseRateStr(const char *rateStr, virNetDevBandwidthRatePtr rate);

E
Eric Blake 已提交
411 412 413
static void *
_vshMalloc(vshControl *ctl, size_t size, const char *filename, int line)
{
E
Eric Blake 已提交
414
    char *x;
E
Eric Blake 已提交
415

E
Eric Blake 已提交
416
    if (VIR_ALLOC_N(x, size) == 0)
E
Eric Blake 已提交
417 418 419 420 421 422 423 424 425
        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)
{
E
Eric Blake 已提交
426
    char *x;
E
Eric Blake 已提交
427

E
Eric Blake 已提交
428 429
    if (!xalloc_oversized(nmemb, size) &&
        VIR_ALLOC_N(x, nmemb * size) == 0)
E
Eric Blake 已提交
430 431 432 433 434 435 436 437 438 439 440 441
        return x;
    vshError(ctl, _("%s: %d: failed to allocate %d bytes"),
             filename, line, (int) (size*nmemb));
    exit(EXIT_FAILURE);
}

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

    if (s == NULL)
442
        return NULL;
E
Eric Blake 已提交
443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
    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
459

460 461 462 463 464
static int
vshNameSorter(const void *a, const void *b)
{
    const char **sa = (const char**)a;
    const char **sb = (const char**)b;
465

466 467
    /* User visible sort, so we want locale-specific case comparison. */
    return strcasecmp(*sa, *sb);
468 469
}

470 471 472 473 474 475 476
static double
prettyCapacity(unsigned long long val,
               const char **unit) {
    if (val < 1024) {
        *unit = "";
        return (double)val;
    } else if (val < (1024.0l * 1024.0l)) {
477
        *unit = "KiB";
478 479
        return (((double)val / 1024.0l));
    } else if (val < (1024.0l * 1024.0l * 1024.0l)) {
480
        *unit = "MiB";
481
        return (double)val / (1024.0l * 1024.0l);
482
    } else if (val < (1024.0l * 1024.0l * 1024.0l * 1024.0l)) {
483
        *unit = "GiB";
484
        return (double)val / (1024.0l * 1024.0l * 1024.0l);
485
    } else {
486
        *unit = "TiB";
487
        return (double)val / (1024.0l * 1024.0l * 1024.0l * 1024.0l);
488 489 490 491
    }
}


J
John Levon 已提交
492 493 494 495 496 497 498 499 500 501 502 503 504 505
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);
}

506 507 508 509 510 511 512 513 514 515
/*
 * Reset libvirt error on graceful fallback paths
 */
static void
vshResetLibvirtError(void)
{
    virFreeError(last_error);
    last_error = NULL;
}

J
John Levon 已提交
516 517 518 519 520 521 522 523 524 525 526
/*
 * 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)
{
527 528 529 530 531 532 533 534
    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)
535
            goto out;
536
    }
J
John Levon 已提交
537 538

    if (last_error->code == VIR_ERR_OK) {
539
        vshError(ctl, "%s", _("unknown error"));
J
John Levon 已提交
540 541 542
        goto out;
    }

543
    vshError(ctl, "%s", last_error->message);
J
John Levon 已提交
544 545

out:
546
    vshResetLibvirtError();
J
John Levon 已提交
547 548
}

549 550 551 552 553 554 555 556 557
static volatile sig_atomic_t intCaught = 0;

static void vshCatchInt(int sig ATTRIBUTE_UNUSED,
                        siginfo_t *siginfo ATTRIBUTE_UNUSED,
                        void *context ATTRIBUTE_UNUSED)
{
    intCaught = 1;
}

558 559 560 561 562
/*
 * Detection of disconnections and automatic reconnection support
 */
static int disconnected = 0; /* we may have been disconnected */

563 564 565 566 567
/* Gnulib doesn't guarantee SA_SIGINFO support.  */
#ifndef SA_SIGINFO
# define SA_SIGINFO 0
#endif

568 569 570
/*
 * vshCatchDisconnect:
 *
571 572
 * We get here when the connection was closed.  We can't do much in the
 * handler, just save the fact it was raised.
573
 */
L
Laine Stump 已提交
574
static void
575 576 577 578 579 580
vshCatchDisconnect(virConnectPtr conn ATTRIBUTE_UNUSED,
                   int reason,
                   void *opaque ATTRIBUTE_UNUSED)
{
    if (reason != VIR_CONNECT_CLOSE_REASON_CLIENT)
        disconnected++;
581 582 583 584 585
}

/*
 * vshReconnect:
 *
L
Laine Stump 已提交
586
 * Reconnect after a disconnect from libvirtd
587 588
 *
 */
L
Laine Stump 已提交
589
static void
590 591 592 593 594 595
vshReconnect(vshControl *ctl)
{
    bool connected = false;

    if (ctl->conn != NULL) {
        connected = true;
596
        virConnectClose(ctl->conn);
597
    }
598 599 600 601

    ctl->conn = virConnectOpenAuth(ctl->name,
                                   virConnectAuthPtrDefault,
                                   ctl->readonly ? VIR_CONNECT_RO : 0);
602
    if (!ctl->conn) {
603
        vshError(ctl, "%s", _("Failed to reconnect to the hypervisor"));
604 605 606 607 608 609 610
    } else {
        if (virConnectRegisterCloseCallback(ctl->conn, vshCatchDisconnect,
                                            NULL, NULL) < 0)
            vshError(ctl, "%s", _("Unable to register disconnect callback"));
        if (connected)
            vshError(ctl, "%s", _("Reconnected to the hypervisor"));
    }
611
    disconnected = 0;
612
    ctl->useGetInfo = false;
613
    ctl->useSnapshotOld = false;
614
}
615

616
#ifndef WIN32
617 618 619 620 621 622 623 624 625 626 627 628 629
static void
vshPrintRaw(vshControl *ctl, ...)
{
    va_list ap;
    char *key;

    va_start(ap, ctl);
    while ((key = va_arg(ap, char *)) != NULL) {
        vshPrint(ctl, "%s\r\n", key);
    }
    va_end(ap);
}

630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663
/**
 * vshAskReedit:
 * @msg: Question to ask user
 *
 * Ask user if he wants to return to previously
 * edited file.
 *
 * Returns 'y' if he wants to
 *         'f' if he forcibly wants to
 *         'n' if he doesn't want to
 *         -1  on error
 *          0  otherwise
 */
static int
vshAskReedit(vshControl *ctl, const char *msg)
{
    int c = -1;
    struct termios ttyattr;

    if (!isatty(STDIN_FILENO))
        return -1;

    virshReportError(ctl);

    if (vshMakeStdinRaw(&ttyattr, false) < 0)
        return -1;

    while (true) {
        /* TRANSLATORS: For now, we aren't using LC_MESSAGES, and the user
         * choices really are limited to just 'y', 'n', 'f' and '?'  */
        vshPrint(ctl, "\r%s %s", msg, _("Try again? [y,n,f,?]:"));
        c = c_tolower(getchar());

        if (c == '?') {
664 665 666 667 668 669 670
            vshPrintRaw(ctl,
                        "",
                        _("y - yes, start editor again"),
                        _("n - no, throw away my changes"),
                        _("f - force, try to redefine again"),
                        _("? - print this help"),
                        NULL);
671 672 673 674 675 676 677 678 679 680
            continue;
        } else if (c == 'y' || c == 'n' || c == 'f') {
            break;
        }
    }

    tcsetattr(STDIN_FILENO, TCSAFLUSH, &ttyattr);

    vshPrint(ctl, "\r\n");
    return c;
681 682 683 684 685
}
#else /* WIN32 */
static int
vshAskReedit(vshControl *ctl, const char *msg ATTRIBUTE_UNUSED)
{
686 687 688 689
    vshDebug(ctl, VSH_ERR_WARNING, "%s", _("This function is not "
                                           "supported on WIN32 platform"));
    return 0;
}
690
#endif /* WIN32 */
691

692 693 694 695 696 697 698 699
static int vshStreamSink(virStreamPtr st ATTRIBUTE_UNUSED,
                         const char *bytes, size_t nbytes, void *opaque)
{
    int *fd = opaque;

    return safewrite(*fd, bytes, nbytes);
}

K
Karel Zak 已提交
700 701 702 703 704 705
/* ---------------
 * Commands
 * ---------------
 */

/*
706
 * "help" command
K
Karel Zak 已提交
707
 */
708
static const vshCmdInfo info_help[] = {
709
    {"help", N_("print help")},
710 711
    {"desc", N_("Prints global help, command specific help, or help for a\n"
                "    group of related commands")},
712

713
    {NULL, NULL}
K
Karel Zak 已提交
714 715
};

716
static const vshCmdOptDef opts_help[] = {
717
    {"command", VSH_OT_DATA, 0, N_("Prints global help, command specific help, or help for a group of related commands")},
718
    {NULL, 0, 0, NULL}
K
Karel Zak 已提交
719 720
};

E
Eric Blake 已提交
721
static bool
722
cmdHelp(vshControl *ctl, const vshCmd *cmd)
723
 {
724
    const char *name = NULL;
725

726
    if (vshCommandOptString(cmd, "command", &name) <= 0) {
727
        const vshCmdGrp *grp;
728
        const vshCmdDef *def;
729

730 731 732 733 734 735
        vshPrint(ctl, "%s", _("Grouped commands:\n\n"));

        for (grp = cmdGroups; grp->name; grp++) {
            vshPrint(ctl, _(" %s (help keyword '%s'):\n"), grp->name,
                     grp->keyword);

736 737 738
            for (def = grp->commands; def->name; def++) {
                if (def->flags & VSH_CMD_FLAG_ALIAS)
                    continue;
739 740
                vshPrint(ctl, "    %-30s %s\n", def->name,
                         _(vshCmddefGetInfo(def, "help")));
741
            }
742 743 744 745

            vshPrint(ctl, "\n");
        }

E
Eric Blake 已提交
746
        return true;
747
    }
748

E
Eric Blake 已提交
749
    if (vshCmddefSearch(name)) {
750
        return vshCmddefHelp(ctl, name);
E
Eric Blake 已提交
751
    } else if (vshCmdGrpSearch(name)) {
752 753 754
        return vshCmdGrpHelp(ctl, name);
    } else {
        vshError(ctl, _("command or command group '%s' doesn't exist"), name);
E
Eric Blake 已提交
755
        return false;
K
Karel Zak 已提交
756 757 758
    }
}

759 760 761 762 763 764 765 766 767 768 769 770 771 772 773
/* Tree listing helpers.  */

/* Given an index, return either the name of that device (non-NULL) or
 * of its parent (NULL if a root).  */
typedef const char * (*vshTreeLookup)(int devid, bool parent, void *opaque);

static int
vshTreePrintInternal(vshControl *ctl,
                     vshTreeLookup lookup,
                     void *opaque,
                     int num_devices,
                     int devid,
                     int lastdev,
                     bool root,
                     virBufferPtr indent)
774
{
775 776 777 778
    int i;
    int nextlastdev = -1;
    int ret = -1;
    const char *dev = (lookup)(devid, false, opaque);
779

780
    if (virBufferError(indent))
781 782
        goto cleanup;

783 784 785 786 787 788 789 790 791 792
    /* Print this device, with indent if not at root */
    vshPrint(ctl, "%s%s%s\n", virBufferCurrentContent(indent),
             root ? "" : "+- ", dev);

    /* Update indent to show '|' or ' ' for child devices */
    if (!root) {
        virBufferAddChar(indent, devid == lastdev ? ' ' : '|');
        virBufferAddChar(indent, ' ');
        if (virBufferError(indent))
            goto cleanup;
793 794
    }

795 796 797
    /* Determine the index of the last child device */
    for (i = 0 ; i < num_devices ; i++) {
        const char *parent = (lookup)(i, true, opaque);
798

799 800 801
        if (parent && STREQ(parent, dev))
            nextlastdev = i;
    }
802

803 804 805
    /* If there is a child device, then print another blank line */
    if (nextlastdev != -1)
        vshPrint(ctl, "%s  |\n", virBufferCurrentContent(indent));
806

807 808 809 810
    /* Finally print all children */
    virBufferAddLit(indent, "  ");
    for (i = 0 ; i < num_devices ; i++) {
        const char *parent = (lookup)(i, true, opaque);
811

812 813 814 815 816
        if (parent && STREQ(parent, dev) &&
            vshTreePrintInternal(ctl, lookup, opaque,
                                 num_devices, i, nextlastdev,
                                 false, indent) < 0)
            goto cleanup;
817
    }
818
    virBufferTrim(indent, "  ", -1);
819

820 821 822 823
    /* 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)
        vshPrint(ctl, "%s\n", virBufferCurrentContent(indent));
824

825 826 827
    if (!root)
        virBufferTrim(indent, NULL, 2);
    ret = 0;
828 829 830 831
cleanup:
    return ret;
}

832 833 834
static int
vshTreePrint(vshControl *ctl, vshTreeLookup lookup, void *opaque,
             int num_devices, int devid)
835
{
836 837
    int ret;
    virBuffer indent = VIR_BUFFER_INITIALIZER;
838

839 840 841 842 843
    ret = vshTreePrintInternal(ctl, lookup, opaque, num_devices,
                               devid, devid, true, &indent);
    if (ret < 0)
        vshError(ctl, "%s", _("Failed to complete tree listing"));
    virBufferFreeAndReset(&indent);
844
    return ret;
845
}
846

847 848
/* Common code for the edit / net-edit / pool-edit functions which follow. */
static char *
849
editWriteToTempFile(vshControl *ctl, const char *doc)
850 851 852 853 854 855 856
{
    char *ret;
    const char *tmpdir;
    int fd;

    tmpdir = getenv ("TMPDIR");
    if (!tmpdir) tmpdir = "/tmp";
857 858 859 860
    if (virAsprintf(&ret, "%s/virshXXXXXX.xml", tmpdir) < 0) {
        vshError(ctl, "%s", _("out of memory"));
        return NULL;
    }
861
    fd = mkstemps(ret, 4);
862
    if (fd == -1) {
863
        vshError(ctl, _("mkstemps: failed to create temporary file: %s"),
864
                 strerror(errno));
865
        VIR_FREE(ret);
866 867 868
        return NULL;
    }

869
    if (safewrite(fd, doc, strlen(doc)) == -1) {
870 871
        vshError(ctl, _("write: %s: failed to write to temporary file: %s"),
                 ret, strerror(errno));
S
Stefan Berger 已提交
872
        VIR_FORCE_CLOSE(fd);
873
        unlink(ret);
874
        VIR_FREE(ret);
875 876
        return NULL;
    }
S
Stefan Berger 已提交
877
    if (VIR_CLOSE(fd) < 0) {
878 879
        vshError(ctl, _("close: %s: failed to write or close temporary file: %s"),
                 ret, strerror(errno));
880
        unlink(ret);
881
        VIR_FREE(ret);
882 883 884 885 886 887 888 889 890 891 892 893
        return NULL;
    }

    /* Temporary filename: caller frees. */
    return ret;
}

/* Characters permitted in $EDITOR environment variable and temp filename. */
#define ACCEPTED_CHARS \
  "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-/_.:@"

static int
894
editFile(vshControl *ctl, const char *filename)
895 896
{
    const char *editor;
E
Eric Blake 已提交
897 898 899 900
    virCommandPtr cmd;
    int ret = -1;
    int outfd = STDOUT_FILENO;
    int errfd = STDERR_FILENO;
901

902
    editor = getenv("VISUAL");
E
Eric Blake 已提交
903
    if (!editor)
904
        editor = getenv("EDITOR");
E
Eric Blake 已提交
905 906
    if (!editor)
        editor = "vi"; /* could be cruel & default to ed(1) here */
907

908 909 910 911 912
    /* 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
E
Eric Blake 已提交
913 914
     * is why sudo scrubs it by default).  Conversely, if the editor
     * is safe, we can run it directly rather than wasting a shell.
915
     */
916 917
    if (strspn(editor, ACCEPTED_CHARS) != strlen(editor)) {
        if (strspn(filename, ACCEPTED_CHARS) != strlen(filename)) {
E
Eric Blake 已提交
918 919 920 921 922 923 924 925 926 927
            vshError(ctl,
                     _("%s: temporary filename contains shell meta or other "
                       "unacceptable characters (is $TMPDIR wrong?)"),
                     filename);
            return -1;
        }
        cmd = virCommandNewArgList("sh", "-c", NULL);
        virCommandAddArgFormat(cmd, "%s %s", editor, filename);
    } else {
        cmd = virCommandNewArgList(editor, filename, NULL);
928 929
    }

E
Eric Blake 已提交
930 931 932 933 934 935 936
    virCommandSetInputFD(cmd, STDIN_FILENO);
    virCommandSetOutputFD(cmd, &outfd);
    virCommandSetErrorFD(cmd, &errfd);
    if (virCommandRunAsync(cmd, NULL) < 0 ||
        virCommandWait(cmd, NULL) < 0) {
        virshReportError(ctl);
        goto cleanup;
937
    }
E
Eric Blake 已提交
938
    ret = 0;
939

E
Eric Blake 已提交
940 941 942
cleanup:
    virCommandFree(cmd);
    return ret;
943 944 945
}

static char *
946
editReadBackFile(vshControl *ctl, const char *filename)
947 948 949
{
    char *ret;

E
Eric Blake 已提交
950
    if (virFileReadAll(filename, VIRSH_MAX_XML_FILE, &ret) == -1) {
951
        vshError(ctl,
952
                 _("%s: failed to read temporary file: %s"),
953
                 filename, strerror(errno));
954 955 956 957 958
        return NULL;
    }
    return ret;
}

959

P
Paolo Bonzini 已提交
960 961 962 963
/*
 * "cd" command
 */
static const vshCmdInfo info_cd[] = {
964 965
    {"help", N_("change the current directory")},
    {"desc", N_("Change the current directory.")},
P
Paolo Bonzini 已提交
966 967 968 969
    {NULL, NULL}
};

static const vshCmdOptDef opts_cd[] = {
970
    {"dir", VSH_OT_DATA, 0, N_("directory to switch to (default: home or else root)")},
P
Paolo Bonzini 已提交
971 972 973
    {NULL, 0, 0, NULL}
};

E
Eric Blake 已提交
974
static bool
975
cmdCd(vshControl *ctl, const vshCmd *cmd)
P
Paolo Bonzini 已提交
976
{
977
    const char *dir = NULL;
978
    char *dir_malloced = NULL;
E
Eric Blake 已提交
979
    bool ret = true;
P
Paolo Bonzini 已提交
980 981

    if (!ctl->imode) {
982
        vshError(ctl, "%s", _("cd: command valid only in interactive mode"));
E
Eric Blake 已提交
983
        return false;
P
Paolo Bonzini 已提交
984 985
    }

986
    if (vshCommandOptString(cmd, "dir", &dir) <= 0) {
987
        dir = dir_malloced = virGetUserDirectory();
P
Paolo Bonzini 已提交
988 989 990 991
    }
    if (!dir)
        dir = "/";

P
Phil Petty 已提交
992
    if (chdir(dir) == -1) {
993
        vshError(ctl, _("cd: %s: %s"), strerror(errno), dir);
E
Eric Blake 已提交
994
        ret = false;
P
Paolo Bonzini 已提交
995 996
    }

997
    VIR_FREE(dir_malloced);
P
Phil Petty 已提交
998
    return ret;
P
Paolo Bonzini 已提交
999 1000 1001 1002 1003 1004
}

/*
 * "pwd" command
 */
static const vshCmdInfo info_pwd[] = {
1005 1006
    {"help", N_("print the current directory")},
    {"desc", N_("Print the current directory.")},
P
Paolo Bonzini 已提交
1007 1008 1009
    {NULL, NULL}
};

E
Eric Blake 已提交
1010
static bool
P
Paolo Bonzini 已提交
1011 1012 1013
cmdPwd(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
{
    char *cwd;
1014
    bool ret = true;
P
Paolo Bonzini 已提交
1015

1016 1017
    cwd = getcwd(NULL, 0);
    if (!cwd) {
1018 1019
        vshError(ctl, _("pwd: cannot get current directory: %s"),
                 strerror(errno));
1020 1021
        ret = false;
    } else {
1022
        vshPrint(ctl, _("%s\n"), cwd);
1023 1024
        VIR_FREE(cwd);
    }
P
Paolo Bonzini 已提交
1025

1026
    return ret;
P
Paolo Bonzini 已提交
1027 1028
}

E
Eric Blake 已提交
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
/*
 * "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")},
E
Eric Blake 已提交
1041
    {"str", VSH_OT_ALIAS, 0, "string"},
1042
    {"string", VSH_OT_ARGV, 0, N_("arguments to echo")},
E
Eric Blake 已提交
1043 1044 1045 1046 1047 1048
    {NULL, 0, 0, NULL}
};

/* Exists mainly for debugging virsh, but also handy for adding back
 * quotes for later evaluation.
 */
E
Eric Blake 已提交
1049
static bool
1050
cmdEcho(vshControl *ctl, const vshCmd *cmd)
E
Eric Blake 已提交
1051 1052 1053 1054
{
    bool shell = false;
    bool xml = false;
    int count = 0;
1055
    const vshCmdOpt *opt = NULL;
E
Eric Blake 已提交
1056 1057 1058 1059 1060 1061 1062 1063
    char *arg;
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (vshCommandOptBool(cmd, "shell"))
        shell = true;
    if (vshCommandOptBool(cmd, "xml"))
        xml = true;

1064
    while ((opt = vshCommandOptArgv(cmd, opt))) {
1065 1066
        char *str;
        virBuffer xmlbuf = VIR_BUFFER_INITIALIZER;
E
Eric Blake 已提交
1067

1068
        arg = opt->data;
1069

E
Eric Blake 已提交
1070 1071
        if (count)
            virBufferAddChar(&buf, ' ');
1072

E
Eric Blake 已提交
1073
        if (xml) {
1074 1075 1076 1077
            virBufferEscapeString(&xmlbuf, "%s", arg);
            if (virBufferError(&buf)) {
                vshPrint(ctl, "%s", _("Failed to allocate XML buffer"));
                return false;
E
Eric Blake 已提交
1078
            }
1079 1080 1081
            str = virBufferContentAndReset(&xmlbuf);
        } else {
            str = vshStrdup(ctl, arg);
E
Eric Blake 已提交
1082
        }
1083 1084 1085 1086 1087

        if (shell)
            virBufferEscapeShell(&buf, str);
        else
            virBufferAdd(&buf, str, -1);
E
Eric Blake 已提交
1088
        count++;
1089
        VIR_FREE(str);
E
Eric Blake 已提交
1090 1091 1092 1093
    }

    if (virBufferError(&buf)) {
        vshPrint(ctl, "%s", _("Failed to allocate XML buffer"));
E
Eric Blake 已提交
1094
        return false;
E
Eric Blake 已提交
1095 1096 1097 1098 1099
    }
    arg = virBufferContentAndReset(&buf);
    if (arg)
        vshPrint(ctl, "%s", arg);
    VIR_FREE(arg);
E
Eric Blake 已提交
1100
    return true;
E
Eric Blake 已提交
1101 1102
}

K
Karel Zak 已提交
1103 1104 1105
/*
 * "quit" command
 */
1106
static const vshCmdInfo info_quit[] = {
1107
    {"help", N_("quit this interactive terminal")},
1108
    {"desc", ""},
1109
    {NULL, NULL}
K
Karel Zak 已提交
1110 1111
};

E
Eric Blake 已提交
1112
static bool
1113
cmdQuit(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
1114
{
E
Eric Blake 已提交
1115 1116
    ctl->imode = false;
    return true;
K
Karel Zak 已提交
1117 1118
}

1119 1120 1121 1122 1123 1124 1125 1126
/* ---------------
 * Utils for work with command definition
 * ---------------
 */
static const char *
vshCmddefGetInfo(const vshCmdDef * cmd, const char *name)
{
    const vshCmdInfo *info;
1127

1128 1129 1130 1131 1132 1133
    for (info = cmd->info; info && info->name; info++) {
        if (STREQ(info->name, name))
            return info->data;
    }
    return NULL;
}
1134

1135 1136 1137 1138 1139 1140 1141
/* Validate that the options associated with cmd can be parsed.  */
static int
vshCmddefOptParse(const vshCmdDef *cmd, uint32_t *opts_need_arg,
                  uint32_t *opts_required)
{
    int i;
    bool optional = false;
1142

1143 1144
    *opts_need_arg = 0;
    *opts_required = 0;
1145

1146 1147
    if (!cmd->opts)
        return 0;
1148

1149 1150
    for (i = 0; cmd->opts[i].name; i++) {
        const vshCmdOptDef *opt = &cmd->opts[i];
1151 1152 1153 1154

        if (i > 31)
            return -1; /* too many options */
        if (opt->type == VSH_OT_BOOL) {
E
Eric Blake 已提交
1155
            if (opt->flags & VSH_OFLAG_REQ)
1156 1157 1158
                return -1; /* bool options can't be mandatory */
            continue;
        }
E
Eric Blake 已提交
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
        if (opt->type == VSH_OT_ALIAS) {
            int j;
            if (opt->flags || !opt->help)
                return -1; /* alias options are tracked by the original name */
            for (j = i + 1; cmd->opts[j].name; j++) {
                if (STREQ(opt->help, cmd->opts[j].name))
                    break;
            }
            if (!cmd->opts[j].name)
                return -1; /* alias option must map to a later option name */
            continue;
        }
E
Eric Blake 已提交
1171 1172
        if (opt->flags & VSH_OFLAG_REQ_OPT) {
            if (opt->flags & VSH_OFLAG_REQ)
L
Lai Jiangshan 已提交
1173 1174 1175 1176
                *opts_required |= 1 << i;
            continue;
        }

1177
        *opts_need_arg |= 1 << i;
E
Eric Blake 已提交
1178
        if (opt->flags & VSH_OFLAG_REQ) {
1179 1180 1181 1182 1183 1184
            if (optional)
                return -1; /* mandatory options must be listed first */
            *opts_required |= 1 << i;
        } else {
            optional = true;
        }
1185 1186 1187

        if (opt->type == VSH_OT_ARGV && cmd->opts[i + 1].name)
            return -1; /* argv option must be listed last */
1188 1189 1190 1191
    }
    return 0;
}

1192
static const vshCmdOptDef *
1193
vshCmddefGetOption(vshControl *ctl, const vshCmdDef *cmd, const char *name,
1194
                   uint32_t *opts_seen, int *opt_index)
1195
{
1196 1197 1198 1199
    int i;

    for (i = 0; cmd->opts && cmd->opts[i].name; i++) {
        const vshCmdOptDef *opt = &cmd->opts[i];
1200

1201
        if (STREQ(opt->name, name)) {
E
Eric Blake 已提交
1202 1203 1204 1205
            if (opt->type == VSH_OT_ALIAS) {
                name = opt->help;
                continue;
            }
1206
            if ((*opts_seen & (1 << i)) && opt->type != VSH_OT_ARGV) {
1207 1208 1209
                vshError(ctl, _("option --%s already seen"), name);
                return NULL;
            }
1210 1211
            *opts_seen |= 1 << i;
            *opt_index = i;
K
Karel Zak 已提交
1212
            return opt;
1213 1214 1215 1216 1217
        }
    }

    vshError(ctl, _("command '%s' doesn't support option --%s"),
             cmd->name, name);
K
Karel Zak 已提交
1218 1219 1220
    return NULL;
}

1221
static const vshCmdOptDef *
1222 1223
vshCmddefGetData(const vshCmdDef *cmd, uint32_t *opts_need_arg,
                 uint32_t *opts_seen)
1224
{
1225
    int i;
1226
    const vshCmdOptDef *opt;
K
Karel Zak 已提交
1227

1228 1229 1230 1231
    if (!*opts_need_arg)
        return NULL;

    /* Grab least-significant set bit */
E
Eric Blake 已提交
1232
    i = ffs(*opts_need_arg) - 1;
1233
    opt = &cmd->opts[i];
1234
    if (opt->type != VSH_OT_ARGV)
1235
        *opts_need_arg &= ~(1 << i);
1236
    *opts_seen |= 1 << i;
1237
    return opt;
K
Karel Zak 已提交
1238 1239
}

1240 1241 1242
/*
 * Checks for required options
 */
1243
static int
1244 1245
vshCommandCheckOpts(vshControl *ctl, const vshCmd *cmd, uint32_t opts_required,
                    uint32_t opts_seen)
1246
{
1247
    const vshCmdDef *def = cmd->def;
1248 1249 1250 1251 1252 1253 1254 1255 1256
    int i;

    opts_required &= ~opts_seen;
    if (!opts_required)
        return 0;

    for (i = 0; def->opts[i].name; i++) {
        if (opts_required & (1 << i)) {
            const vshCmdOptDef *opt = &def->opts[i];
1257

1258
            vshError(ctl,
1259
                     opt->type == VSH_OT_DATA || opt->type == VSH_OT_ARGV ?
1260 1261 1262
                     _("command '%s' requires <%s> option") :
                     _("command '%s' requires --%s option"),
                     def->name, opt->name);
1263 1264
        }
    }
1265
    return -1;
1266 1267
}

1268
static const vshCmdDef *
1269 1270
vshCmddefSearch(const char *cmdname)
{
1271
    const vshCmdGrp *g;
1272
    const vshCmdDef *c;
1273

1274 1275
    for (g = cmdGroups; g->name; g++) {
        for (c = g->commands; c->name; c++) {
1276
            if (STREQ(c->name, cmdname))
1277 1278 1279 1280
                return c;
        }
    }

K
Karel Zak 已提交
1281 1282 1283
    return NULL;
}

1284 1285 1286 1287 1288 1289
static const vshCmdGrp *
vshCmdGrpSearch(const char *grpname)
{
    const vshCmdGrp *g;

    for (g = cmdGroups; g->name; g++) {
1290
        if (STREQ(g->name, grpname) || STREQ(g->keyword, grpname))
1291 1292 1293 1294 1295 1296
            return g;
    }

    return NULL;
}

E
Eric Blake 已提交
1297
static bool
1298 1299 1300 1301 1302 1303 1304
vshCmdGrpHelp(vshControl *ctl, const char *grpname)
{
    const vshCmdGrp *grp = vshCmdGrpSearch(grpname);
    const vshCmdDef *cmd = NULL;

    if (!grp) {
        vshError(ctl, _("command group '%s' doesn't exist"), grpname);
E
Eric Blake 已提交
1305
        return false;
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
    } else {
        vshPrint(ctl, _(" %s (help keyword '%s'):\n"), grp->name,
                 grp->keyword);

        for (cmd = grp->commands; cmd->name; cmd++) {
            vshPrint(ctl, "    %-30s %s\n", cmd->name,
                     _(vshCmddefGetInfo(cmd, "help")));
        }
    }

E
Eric Blake 已提交
1316
    return true;
1317 1318
}

E
Eric Blake 已提交
1319
static bool
1320
vshCmddefHelp(vshControl *ctl, const char *cmdname)
1321
{
1322
    const vshCmdDef *def = vshCmddefSearch(cmdname);
1323

K
Karel Zak 已提交
1324
    if (!def) {
1325
        vshError(ctl, _("command '%s' doesn't exist"), cmdname);
E
Eric Blake 已提交
1326
        return false;
1327
    } else {
E
Eric Blake 已提交
1328 1329
        /* Don't translate desc if it is "".  */
        const char *desc = vshCmddefGetInfo(def, "desc");
E
Eric Blake 已提交
1330
        const char *help = _(vshCmddefGetInfo(def, "help"));
1331
        char buf[256];
1332 1333
        uint32_t opts_need_arg;
        uint32_t opts_required;
1334
        bool shortopt = false; /* true if 'arg' works instead of '--opt arg' */
1335 1336 1337 1338

        if (vshCmddefOptParse(def, &opts_need_arg, &opts_required)) {
            vshError(ctl, _("internal error: bad options in command: '%s'"),
                     def->name);
E
Eric Blake 已提交
1339
            return false;
1340
        }
K
Karel Zak 已提交
1341

1342
        fputs(_("  NAME\n"), stdout);
1343 1344
        fprintf(stdout, "    %s - %s\n", def->name, help);

1345 1346 1347 1348 1349
        fputs(_("\n  SYNOPSIS\n"), stdout);
        fprintf(stdout, "    %s", def->name);
        if (def->opts) {
            const vshCmdOptDef *opt;
            for (opt = def->opts; opt->name; opt++) {
1350
                const char *fmt = "%s";
1351 1352
                switch (opt->type) {
                case VSH_OT_BOOL:
1353
                    fmt = "[--%s]";
1354 1355
                    break;
                case VSH_OT_INT:
E
Eric Blake 已提交
1356
                    /* xgettext:c-format */
E
Eric Blake 已提交
1357
                    fmt = ((opt->flags & VSH_OFLAG_REQ) ? "<%s>"
1358
                           : _("[--%s <number>]"));
1359 1360
                    if (!(opt->flags & VSH_OFLAG_REQ_OPT))
                        shortopt = true;
1361 1362
                    break;
                case VSH_OT_STRING:
E
Eric Blake 已提交
1363 1364
                    /* xgettext:c-format */
                    fmt = _("[--%s <string>]");
1365 1366
                    if (!(opt->flags & VSH_OFLAG_REQ_OPT))
                        shortopt = true;
1367 1368
                    break;
                case VSH_OT_DATA:
E
Eric Blake 已提交
1369
                    fmt = ((opt->flags & VSH_OFLAG_REQ) ? "<%s>" : "[<%s>]");
1370 1371
                    if (!(opt->flags & VSH_OFLAG_REQ_OPT))
                        shortopt = true;
1372 1373 1374
                    break;
                case VSH_OT_ARGV:
                    /* xgettext:c-format */
1375 1376 1377 1378 1379 1380 1381 1382
                    if (shortopt) {
                        fmt = (opt->flags & VSH_OFLAG_REQ)
                            ? _("{[--%s] <string>}...")
                            : _("[[--%s] <string>]...");
                    } else {
                        fmt = (opt->flags & VSH_OFLAG_REQ) ? _("<%s>...")
                            : _("[<%s>]...");
                    }
1383
                    break;
E
Eric Blake 已提交
1384 1385 1386
                case VSH_OT_ALIAS:
                    /* aliases are intentionally undocumented */
                    continue;
1387
                default:
1388
                    assert(0);
1389
                }
1390
                fputc(' ', stdout);
E
Eric Blake 已提交
1391
                fprintf(stdout, fmt, opt->name);
1392
            }
K
Karel Zak 已提交
1393
        }
1394 1395 1396
        fputc('\n', stdout);

        if (desc[0]) {
1397
            /* Print the description only if it's not empty.  */
1398
            fputs(_("\n  DESCRIPTION\n"), stdout);
E
Eric Blake 已提交
1399
            fprintf(stdout, "    %s\n", _(desc));
K
Karel Zak 已提交
1400
        }
1401

K
Karel Zak 已提交
1402
        if (def->opts) {
1403
            const vshCmdOptDef *opt;
1404
            fputs(_("\n  OPTIONS\n"), stdout);
1405
            for (opt = def->opts; opt->name; opt++) {
1406 1407
                switch (opt->type) {
                case VSH_OT_BOOL:
K
Karel Zak 已提交
1408
                    snprintf(buf, sizeof(buf), "--%s", opt->name);
1409 1410
                    break;
                case VSH_OT_INT:
1411
                    snprintf(buf, sizeof(buf),
E
Eric Blake 已提交
1412
                             (opt->flags & VSH_OFLAG_REQ) ? _("[--%s] <number>")
1413
                             : _("--%s <number>"), opt->name);
1414 1415
                    break;
                case VSH_OT_STRING:
1416
                    /* OT_STRING should never be VSH_OFLAG_REQ */
1417
                    snprintf(buf, sizeof(buf), _("--%s <string>"), opt->name);
1418 1419
                    break;
                case VSH_OT_DATA:
1420 1421
                    snprintf(buf, sizeof(buf), _("[--%s] <string>"),
                             opt->name);
1422 1423
                    break;
                case VSH_OT_ARGV:
1424 1425 1426
                    snprintf(buf, sizeof(buf),
                             shortopt ? _("[--%s] <string>") : _("<%s>"),
                             opt->name);
1427
                    break;
E
Eric Blake 已提交
1428 1429
                case VSH_OT_ALIAS:
                    continue;
1430 1431 1432
                default:
                    assert(0);
                }
1433

E
Eric Blake 已提交
1434
                fprintf(stdout, "    %-15s  %s\n", buf, _(opt->help));
1435
            }
K
Karel Zak 已提交
1436 1437 1438
        }
        fputc('\n', stdout);
    }
E
Eric Blake 已提交
1439
    return true;
K
Karel Zak 已提交
1440 1441 1442 1443 1444 1445
}

/* ---------------
 * Utils for work with runtime commands data
 * ---------------
 */
1446 1447 1448
static void
vshCommandOptFree(vshCmdOpt * arg)
{
K
Karel Zak 已提交
1449 1450
    vshCmdOpt *a = arg;

1451
    while (a) {
K
Karel Zak 已提交
1452
        vshCmdOpt *tmp = a;
1453

K
Karel Zak 已提交
1454 1455
        a = a->next;

1456 1457
        VIR_FREE(tmp->data);
        VIR_FREE(tmp);
K
Karel Zak 已提交
1458 1459 1460 1461
    }
}

static void
1462
vshCommandFree(vshCmd *cmd)
1463
{
K
Karel Zak 已提交
1464 1465
    vshCmd *c = cmd;

1466
    while (c) {
K
Karel Zak 已提交
1467
        vshCmd *tmp = c;
1468

K
Karel Zak 已提交
1469 1470 1471 1472
        c = c->next;

        if (tmp->opts)
            vshCommandOptFree(tmp->opts);
1473
        VIR_FREE(tmp);
K
Karel Zak 已提交
1474 1475 1476
    }
}

E
Eric Blake 已提交
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
/**
 * vshCommandOpt:
 * @cmd: parsed command line to search
 * @name: option name to search for
 * @opt: result of the search
 *
 * Look up an option passed to CMD by NAME.  Returns 1 with *OPT set
 * to the option if found, 0 with *OPT set to NULL if the name is
 * valid and the option is not required, -1 with *OPT set to NULL if
 * the option is required but not present, and -2 if NAME is not valid
 * (-2 indicates a programming error).  No error messages are issued.
K
Karel Zak 已提交
1488
 */
E
Eric Blake 已提交
1489 1490
static int
vshCommandOpt(const vshCmd *cmd, const char *name, vshCmdOpt **opt)
1491
{
E
Eric Blake 已提交
1492 1493
    vshCmdOpt *candidate = cmd->opts;
    const vshCmdOptDef *valid = cmd->def->opts;
1494

E
Eric Blake 已提交
1495 1496 1497 1498 1499 1500 1501
    /* See if option is present on command line.  */
    while (candidate) {
        if (STREQ(candidate->def->name, name)) {
            *opt = candidate;
            return 1;
        }
        candidate = candidate->next;
K
Karel Zak 已提交
1502
    }
E
Eric Blake 已提交
1503 1504 1505 1506 1507 1508 1509

    /* Option not present, see if command requires it.  */
    *opt = NULL;
    while (valid) {
        if (!valid->name)
            break;
        if (STREQ(name, valid->name))
E
Eric Blake 已提交
1510
            return (valid->flags & VSH_OFLAG_REQ) == 0 ? 0 : -1;
E
Eric Blake 已提交
1511 1512 1513 1514
        valid++;
    }
    /* If we got here, the name is unknown.  */
    return -2;
K
Karel Zak 已提交
1515 1516
}

E
Eric Blake 已提交
1517 1518
/**
 * vshCommandOptInt:
1519 1520 1521 1522 1523 1524 1525
 * @cmd command reference
 * @name option name
 * @value result
 *
 * Convert option to int
 * Return value:
 * >0 if option found and valid (@value updated)
E
Eric Blake 已提交
1526
 * 0 if option not found and not required (@value untouched)
1527
 * <0 in all other cases (@value untouched)
K
Karel Zak 已提交
1528 1529
 */
static int
1530
vshCommandOptInt(const vshCmd *cmd, const char *name, int *value)
1531
{
E
Eric Blake 已提交
1532 1533
    vshCmdOpt *arg;
    int ret;
1534

E
Eric Blake 已提交
1535 1536 1537 1538 1539 1540 1541
    ret = vshCommandOpt(cmd, name, &arg);
    if (ret <= 0)
        return ret;
    if (!arg->data) {
        /* only possible on bool, but if name is bool, this is a
         * programming bug */
        return -2;
1542
    }
E
Eric Blake 已提交
1543

E
Eric Blake 已提交
1544 1545 1546
    if (virStrToLong_i(arg->data, NULL, 10, value) < 0)
        return -1;
    return 1;
K
Karel Zak 已提交
1547 1548
}

1549

E
Eric Blake 已提交
1550 1551 1552 1553 1554 1555
/**
 * vshCommandOptUInt:
 * @cmd command reference
 * @name option name
 * @value result
 *
1556 1557 1558 1559 1560 1561
 * Convert option to unsigned int
 * See vshCommandOptInt()
 */
static int
vshCommandOptUInt(const vshCmd *cmd, const char *name, unsigned int *value)
{
E
Eric Blake 已提交
1562 1563
    vshCmdOpt *arg;
    int ret;
1564

E
Eric Blake 已提交
1565 1566 1567 1568 1569 1570 1571
    ret = vshCommandOpt(cmd, name, &arg);
    if (ret <= 0)
        return ret;
    if (!arg->data) {
        /* only possible on bool, but if name is bool, this is a
         * programming bug */
        return -2;
1572
    }
E
Eric Blake 已提交
1573

E
Eric Blake 已提交
1574 1575 1576
    if (virStrToLong_ui(arg->data, NULL, 10, value) < 0)
        return -1;
    return 1;
1577 1578 1579
}


1580
/*
E
Eric Blake 已提交
1581 1582 1583 1584 1585
 * vshCommandOptUL:
 * @cmd command reference
 * @name option name
 * @value result
 *
1586 1587 1588 1589 1590
 * Convert option to unsigned long
 * See vshCommandOptInt()
 */
static int
vshCommandOptUL(const vshCmd *cmd, const char *name, unsigned long *value)
1591
{
E
Eric Blake 已提交
1592 1593
    vshCmdOpt *arg;
    int ret;
1594

E
Eric Blake 已提交
1595 1596 1597 1598 1599 1600 1601
    ret = vshCommandOpt(cmd, name, &arg);
    if (ret <= 0)
        return ret;
    if (!arg->data) {
        /* only possible on bool, but if name is bool, this is a
         * programming bug */
        return -2;
1602
    }
E
Eric Blake 已提交
1603

E
Eric Blake 已提交
1604 1605 1606
    if (virStrToLong_ul(arg->data, NULL, 10, value) < 0)
        return -1;
    return 1;
1607 1608
}

E
Eric Blake 已提交
1609 1610 1611 1612 1613 1614
/**
 * vshCommandOptString:
 * @cmd command reference
 * @name option name
 * @value result
 *
K
Karel Zak 已提交
1615
 * Returns option as STRING
E
Eric Blake 已提交
1616 1617 1618 1619
 * Return value:
 * >0 if option found and valid (@value updated)
 * 0 if option not found and not required (@value untouched)
 * <0 in all other cases (@value untouched)
K
Karel Zak 已提交
1620
 */
1621 1622
static int
vshCommandOptString(const vshCmd *cmd, const char *name, const char **value)
1623
{
E
Eric Blake 已提交
1624 1625 1626 1627 1628 1629 1630 1631 1632 1633
    vshCmdOpt *arg;
    int ret;

    ret = vshCommandOpt(cmd, name, &arg);
    if (ret <= 0)
        return ret;
    if (!arg->data) {
        /* only possible on bool, but if name is bool, this is a
         * programming bug */
        return -2;
1634
    }
1635

E
Eric Blake 已提交
1636
    if (!*arg->data && !(arg->def->flags & VSH_OFLAG_EMPTY_OK)) {
E
Eric Blake 已提交
1637 1638 1639 1640
        return -1;
    }
    *value = arg->data;
    return 1;
K
Karel Zak 已提交
1641 1642
}

E
Eric Blake 已提交
1643 1644 1645 1646 1647 1648
/**
 * vshCommandOptLongLong:
 * @cmd command reference
 * @name option name
 * @value result
 *
1649
 * Returns option as long long
1650
 * See vshCommandOptInt()
1651
 */
1652 1653 1654
static int
vshCommandOptLongLong(const vshCmd *cmd, const char *name,
                      long long *value)
1655
{
E
Eric Blake 已提交
1656 1657
    vshCmdOpt *arg;
    int ret;
1658

E
Eric Blake 已提交
1659 1660 1661 1662 1663 1664 1665
    ret = vshCommandOpt(cmd, name, &arg);
    if (ret <= 0)
        return ret;
    if (!arg->data) {
        /* only possible on bool, but if name is bool, this is a
         * programming bug */
        return -2;
1666
    }
E
Eric Blake 已提交
1667

E
Eric Blake 已提交
1668 1669 1670
    if (virStrToLong_ll(arg->data, NULL, 10, value) < 0)
        return -1;
    return 1;
1671 1672
}

E
Eric Blake 已提交
1673 1674 1675 1676 1677 1678 1679 1680 1681
/**
 * vshCommandOptULongLong:
 * @cmd command reference
 * @name option name
 * @value result
 *
 * Returns option as long long
 * See vshCommandOptInt()
 */
1682 1683 1684 1685
static int
vshCommandOptULongLong(const vshCmd *cmd, const char *name,
                       unsigned long long *value)
{
E
Eric Blake 已提交
1686 1687
    vshCmdOpt *arg;
    int ret;
1688

E
Eric Blake 已提交
1689 1690 1691 1692 1693 1694 1695
    ret = vshCommandOpt(cmd, name, &arg);
    if (ret <= 0)
        return ret;
    if (!arg->data) {
        /* only possible on bool, but if name is bool, this is a
         * programming bug */
        return -2;
1696
    }
E
Eric Blake 已提交
1697

E
Eric Blake 已提交
1698 1699 1700
    if (virStrToLong_ull(arg->data, NULL, 10, value) < 0)
        return -1;
    return 1;
1701 1702 1703
}


E
Eric Blake 已提交
1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733
/**
 * vshCommandOptScaledInt:
 * @cmd command reference
 * @name option name
 * @value result
 * @scale default of 1 or 1024, if no suffix is present
 * @max maximum value permitted
 *
 * Returns option as long long, scaled according to suffix
 * See vshCommandOptInt()
 */
static int
vshCommandOptScaledInt(const vshCmd *cmd, const char *name,
                       unsigned long long *value, int scale,
                       unsigned long long max)
{
    const char *str;
    int ret;
    char *end;

    ret = vshCommandOptString(cmd, name, &str);
    if (ret <= 0)
        return ret;
    if (virStrToLong_ull(str, &end, 10, value) < 0 ||
        virScaleInteger(value, end, scale, max) < 0)
        return -1;
    return 1;
}


E
Eric Blake 已提交
1734 1735 1736 1737 1738 1739 1740 1741 1742
/**
 * vshCommandOptBool:
 * @cmd command reference
 * @name option name
 *
 * Returns true/false if the option exists.  Note that this does NOT
 * validate whether the option is actually boolean, or even whether
 * name is legal; so that this can be used to probe whether a data
 * option is present without actually using that data.
K
Karel Zak 已提交
1743
 */
E
Eric Blake 已提交
1744
static bool
1745
vshCommandOptBool(const vshCmd *cmd, const char *name)
1746
{
E
Eric Blake 已提交
1747 1748 1749
    vshCmdOpt *dummy;

    return vshCommandOpt(cmd, name, &dummy) == 1;
K
Karel Zak 已提交
1750 1751
}

E
Eric Blake 已提交
1752 1753 1754 1755 1756
/**
 * vshCommandOptArgv:
 * @cmd command reference
 * @opt starting point for the search
 *
1757 1758
 * Returns the next argv argument after OPT (or the first one if OPT
 * is NULL), or NULL if no more are present.
1759
 *
1760
 * Requires that a VSH_OT_ARGV option be last in the
1761 1762
 * list of supported options in CMD->def->opts.
 */
1763 1764
static const vshCmdOpt *
vshCommandOptArgv(const vshCmd *cmd, const vshCmdOpt *opt)
1765
{
1766
    opt = opt ? opt->next : cmd->opts;
1767 1768

    while (opt) {
E
Eric Blake 已提交
1769
        if (opt->def->type == VSH_OT_ARGV) {
1770
            return opt;
1771 1772 1773 1774 1775 1776
        }
        opt = opt->next;
    }
    return NULL;
}

J
Jim Meyering 已提交
1777 1778 1779 1780
/* Determine whether CMD->opts includes an option with name OPTNAME.
   If not, give a diagnostic and return false.
   If so, return true.  */
static bool
1781
cmd_has_option(vshControl *ctl, const vshCmd *cmd, const char *optname)
J
Jim Meyering 已提交
1782 1783 1784 1785 1786 1787
{
    /* 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) {
1788
        if (STREQ(opt->def->name, optname) && opt->def->type == VSH_OT_DATA) {
J
Jim Meyering 已提交
1789 1790 1791 1792 1793 1794
            found = true;
            break;
        }
    }

    if (!found)
1795
        vshError(ctl, _("internal error: virsh %s: no %s VSH_OT_DATA option"),
J
Jim Meyering 已提交
1796 1797 1798
                 cmd->def->name, optname);
    return found;
}
1799

K
Karel Zak 已提交
1800
static virDomainPtr
J
Jim Meyering 已提交
1801
vshCommandOptDomainBy(vshControl *ctl, const vshCmd *cmd,
1802
                      const char **name, int flag)
1803
{
K
Karel Zak 已提交
1804
    virDomainPtr dom = NULL;
1805
    const char *n = NULL;
K
Karel Zak 已提交
1806
    int id;
J
Jim Meyering 已提交
1807
    const char *optname = "domain";
1808
    if (!cmd_has_option(ctl, cmd, optname))
J
Jim Meyering 已提交
1809
        return NULL;
1810

1811
    if (vshCommandOptString(cmd, optname, &n) <= 0)
1812 1813
        return NULL;

1814
    vshDebug(ctl, VSH_ERR_INFO, "%s: found option <%s>: %s\n",
1815 1816
             cmd->def->name, optname, n);

K
Karel Zak 已提交
1817 1818
    if (name)
        *name = n;
1819

K
Karel Zak 已提交
1820
    /* try it by ID */
1821
    if (flag & VSH_BYID) {
1822
        if (virStrToLong_i(n, NULL, 10, &id) == 0 && id >= 0) {
1823 1824
            vshDebug(ctl, VSH_ERR_DEBUG,
                     "%s: <%s> seems like domain ID\n",
K
Karel Zak 已提交
1825 1826 1827
                     cmd->def->name, optname);
            dom = virDomainLookupByID(ctl->conn, id);
        }
1828
    }
K
Karel Zak 已提交
1829
    /* try it by UUID */
1830
    if (dom==NULL && (flag & VSH_BYUUID) && strlen(n)==VIR_UUID_STRING_BUFLEN-1) {
1831
        vshDebug(ctl, VSH_ERR_DEBUG, "%s: <%s> trying as domain UUID\n",
1832
                 cmd->def->name, optname);
K
Karel Zak 已提交
1833
        dom = virDomainLookupByUUIDString(ctl->conn, n);
K
Karel Zak 已提交
1834
    }
K
Karel Zak 已提交
1835
    /* try it by NAME */
1836
    if (dom==NULL && (flag & VSH_BYNAME)) {
1837
        vshDebug(ctl, VSH_ERR_DEBUG, "%s: <%s> trying as domain NAME\n",
1838
                 cmd->def->name, optname);
K
Karel Zak 已提交
1839
        dom = virDomainLookupByName(ctl->conn, n);
1840
    }
K
Karel Zak 已提交
1841

1842
    if (!dom)
1843
        vshError(ctl, _("failed to get domain '%s'"), n);
1844

K
Karel Zak 已提交
1845 1846 1847
    return dom;
}

K
Karel Zak 已提交
1848 1849 1850
/*
 * Executes command(s) and returns return code from last command
 */
E
Eric Blake 已提交
1851
static bool
1852
vshCommandRun(vshControl *ctl, const vshCmd *cmd)
1853
{
E
Eric Blake 已提交
1854
    bool ret = true;
1855 1856

    while (cmd) {
K
Karel Zak 已提交
1857
        struct timeval before, after;
1858
        bool enable_timing = ctl->timing;
1859

1860 1861
        if ((ctl->conn == NULL || disconnected) &&
            !(cmd->def->flags & VSH_CMD_FLAG_NOCONNECT))
1862 1863
            vshReconnect(ctl);

1864
        if (enable_timing)
K
Karel Zak 已提交
1865
            GETTIMEOFDAY(&before);
1866

K
Karel Zak 已提交
1867 1868
        ret = cmd->def->handler(ctl, cmd);

1869
        if (enable_timing)
K
Karel Zak 已提交
1870
            GETTIMEOFDAY(&after);
1871

1872 1873 1874 1875 1876 1877 1878 1879 1880 1881
        /* try to automatically catch disconnections */
        if (!ret &&
            ((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))))
            disconnected++;

1882
        if (!ret)
J
John Levon 已提交
1883 1884
            virshReportError(ctl);

1885
        if (!ret && disconnected != 0)
1886 1887
            vshReconnect(ctl);

1888
        if (STREQ(cmd->def->name, "quit"))        /* hack ... */
K
Karel Zak 已提交
1889 1890
            return ret;

1891
        if (enable_timing)
1892
            vshPrint(ctl, _("\n(Time: %.3f ms)\n\n"),
1893 1894
                     DIFF_MSEC(&after, &before));
        else
K
Karel Zak 已提交
1895
            vshPrintExtra(ctl, "\n");
K
Karel Zak 已提交
1896 1897 1898 1899 1900 1901
        cmd = cmd->next;
    }
    return ret;
}

/* ---------------
1902
 * Command parsing
K
Karel Zak 已提交
1903 1904 1905
 * ---------------
 */

1906 1907 1908 1909 1910 1911 1912 1913
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 {
1914
    vshCommandToken(*getNextArg)(vshControl *, struct __vshCommandParser *,
1915
                                  char **);
L
Lai Jiangshan 已提交
1916
    /* vshCommandStringGetArg() */
1917
    char *pos;
L
Lai Jiangshan 已提交
1918 1919 1920
    /* vshCommandArgvGetArg() */
    char **arg_pos;
    char **arg_end;
1921 1922
} vshCommandParser;

E
Eric Blake 已提交
1923
static bool
1924
vshCommandParse(vshControl *ctl, vshCommandParser *parser)
1925
{
K
Karel Zak 已提交
1926 1927 1928
    char *tkdata = NULL;
    vshCmd *clast = NULL;
    vshCmdOpt *first = NULL;
1929

K
Karel Zak 已提交
1930 1931 1932 1933
    if (ctl->cmd) {
        vshCommandFree(ctl->cmd);
        ctl->cmd = NULL;
    }
1934

1935
    while (1) {
K
Karel Zak 已提交
1936
        vshCmdOpt *last = NULL;
1937
        const vshCmdDef *cmd = NULL;
1938
        vshCommandToken tk;
L
Lai Jiangshan 已提交
1939
        bool data_only = false;
1940 1941 1942
        uint32_t opts_need_arg = 0;
        uint32_t opts_required = 0;
        uint32_t opts_seen = 0;
1943

K
Karel Zak 已提交
1944
        first = NULL;
1945

1946
        while (1) {
1947
            const vshCmdOptDef *opt = NULL;
1948

K
Karel Zak 已提交
1949
            tkdata = NULL;
1950
            tk = parser->getNextArg(ctl, parser, &tkdata);
1951 1952

            if (tk == VSH_TK_ERROR)
K
Karel Zak 已提交
1953
                goto syntaxError;
H
Hu Tao 已提交
1954 1955
            if (tk != VSH_TK_ARG) {
                VIR_FREE(tkdata);
1956
                break;
H
Hu Tao 已提交
1957
            }
1958 1959

            if (cmd == NULL) {
K
Karel Zak 已提交
1960 1961
                /* first token must be command name */
                if (!(cmd = vshCmddefSearch(tkdata))) {
1962
                    vshError(ctl, _("unknown command: '%s'"), tkdata);
1963
                    goto syntaxError;   /* ... or ignore this command only? */
K
Karel Zak 已提交
1964
                }
1965 1966 1967 1968 1969 1970 1971
                if (vshCmddefOptParse(cmd, &opts_need_arg,
                                      &opts_required) < 0) {
                    vshError(ctl,
                             _("internal error: bad options in command: '%s'"),
                             tkdata);
                    goto syntaxError;
                }
1972
                VIR_FREE(tkdata);
L
Lai Jiangshan 已提交
1973 1974 1975 1976
            } else if (data_only) {
                goto get_data;
            } else if (tkdata[0] == '-' && tkdata[1] == '-' &&
                       c_isalnum(tkdata[2])) {
1977
                char *optstr = strchr(tkdata + 2, '=');
1978 1979
                int opt_index;

1980 1981 1982 1983
                if (optstr) {
                    *optstr = '\0'; /* convert the '=' to '\0' */
                    optstr = vshStrdup(ctl, optstr + 1);
                }
1984
                if (!(opt = vshCmddefGetOption(ctl, cmd, tkdata + 2,
1985
                                               &opts_seen, &opt_index))) {
1986
                    VIR_FREE(optstr);
K
Karel Zak 已提交
1987 1988
                    goto syntaxError;
                }
1989
                VIR_FREE(tkdata);
K
Karel Zak 已提交
1990 1991 1992

                if (opt->type != VSH_OT_BOOL) {
                    /* option data */
1993 1994 1995
                    if (optstr)
                        tkdata = optstr;
                    else
1996
                        tk = parser->getNextArg(ctl, parser, &tkdata);
1997
                    if (tk == VSH_TK_ERROR)
K
Karel Zak 已提交
1998
                        goto syntaxError;
1999
                    if (tk != VSH_TK_ARG) {
2000
                        vshError(ctl,
2001
                                 _("expected syntax: --%s <%s>"),
2002 2003
                                 opt->name,
                                 opt->type ==
2004
                                 VSH_OT_INT ? _("number") : _("string"));
K
Karel Zak 已提交
2005 2006
                        goto syntaxError;
                    }
2007 2008
                    if (opt->type != VSH_OT_ARGV)
                        opts_need_arg &= ~(1 << opt_index);
2009 2010 2011 2012 2013 2014 2015 2016
                } else {
                    tkdata = NULL;
                    if (optstr) {
                        vshError(ctl, _("invalid '=' after option --%s"),
                                opt->name);
                        VIR_FREE(optstr);
                        goto syntaxError;
                    }
K
Karel Zak 已提交
2017
                }
L
Lai Jiangshan 已提交
2018 2019 2020 2021
            } else if (tkdata[0] == '-' && tkdata[1] == '-' &&
                       tkdata[2] == '\0') {
                data_only = true;
                continue;
2022
            } else {
L
Lai Jiangshan 已提交
2023
get_data:
2024 2025
                if (!(opt = vshCmddefGetData(cmd, &opts_need_arg,
                                             &opts_seen))) {
2026
                    vshError(ctl, _("unexpected data '%s'"), tkdata);
K
Karel Zak 已提交
2027 2028 2029 2030 2031
                    goto syntaxError;
                }
            }
            if (opt) {
                /* save option */
2032
                vshCmdOpt *arg = vshMalloc(ctl, sizeof(vshCmdOpt));
2033

K
Karel Zak 已提交
2034 2035 2036 2037
                arg->def = opt;
                arg->data = tkdata;
                arg->next = NULL;
                tkdata = NULL;
2038

K
Karel Zak 已提交
2039 2040 2041 2042 2043
                if (!first)
                    first = arg;
                if (last)
                    last->next = arg;
                last = arg;
2044

2045
                vshDebug(ctl, VSH_ERR_INFO, "%s: %s(%s): %s\n",
2046 2047
                         cmd->name,
                         opt->name,
2048 2049
                         opt->type != VSH_OT_BOOL ? _("optdata") : _("bool"),
                         opt->type != VSH_OT_BOOL ? arg->data : _("(none)"));
K
Karel Zak 已提交
2050 2051
            }
        }
2052

D
Daniel Veillard 已提交
2053
        /* command parsed -- allocate new struct for the command */
K
Karel Zak 已提交
2054
        if (cmd) {
2055
            vshCmd *c = vshMalloc(ctl, sizeof(vshCmd));
2056

K
Karel Zak 已提交
2057 2058 2059 2060
            c->opts = first;
            c->def = cmd;
            c->next = NULL;

2061
            if (vshCommandCheckOpts(ctl, c, opts_required, opts_seen) < 0) {
2062
                VIR_FREE(c);
2063
                goto syntaxError;
2064
            }
2065

K
Karel Zak 已提交
2066 2067 2068 2069 2070 2071
            if (!ctl->cmd)
                ctl->cmd = c;
            if (clast)
                clast->next = c;
            clast = c;
        }
2072 2073 2074

        if (tk == VSH_TK_END)
            break;
K
Karel Zak 已提交
2075
    }
2076

E
Eric Blake 已提交
2077
    return true;
K
Karel Zak 已提交
2078

2079
 syntaxError:
2080
    if (ctl->cmd) {
K
Karel Zak 已提交
2081
        vshCommandFree(ctl->cmd);
2082 2083
        ctl->cmd = NULL;
    }
K
Karel Zak 已提交
2084 2085
    if (first)
        vshCommandOptFree(first);
2086
    VIR_FREE(tkdata);
E
Eric Blake 已提交
2087
    return false;
K
Karel Zak 已提交
2088 2089
}

2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107
/* --------------------
 * 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;
}

E
Eric Blake 已提交
2108 2109
static bool
vshCommandArgvParse(vshControl *ctl, int nargs, char **argv)
2110 2111 2112 2113
{
    vshCommandParser parser;

    if (nargs <= 0)
E
Eric Blake 已提交
2114
        return false;
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 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186

    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;
}

E
Eric Blake 已提交
2187 2188
static bool
vshCommandStringParse(vshControl *ctl, char *cmdstr)
2189 2190 2191 2192
{
    vshCommandParser parser;

    if (cmdstr == NULL || *cmdstr == '\0')
E
Eric Blake 已提交
2193
        return false;
2194 2195 2196 2197 2198 2199

    parser.pos = cmdstr;
    parser.getNextArg = vshCommandStringGetArg;
    return vshCommandParse(ctl, &parser);
}

K
Karel Zak 已提交
2200
/* ---------------
2201
 * Misc utils
K
Karel Zak 已提交
2202 2203
 * ---------------
 */
2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231
static int
vshDomainState(vshControl *ctl, virDomainPtr dom, int *reason)
{
    virDomainInfo info;

    if (reason)
        *reason = -1;

    if (!ctl->useGetInfo) {
        int state;
        if (virDomainGetState(dom, &state, reason, 0) < 0) {
            virErrorPtr err = virGetLastError();
            if (err && err->code == VIR_ERR_NO_SUPPORT)
                ctl->useGetInfo = true;
            else
                return -1;
        } else {
            return state;
        }
    }

    /* fall back to virDomainGetInfo if virDomainGetState is not supported */
    if (virDomainGetInfo(dom, &info) < 0)
        return -1;
    else
        return info.state;
}

2232 2233
/* Return a non-NULL string representation of a typed parameter; exit
 * if we are out of memory.  */
2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264
static char *
vshGetTypedParamValue(vshControl *ctl, virTypedParameterPtr item)
{
    int ret = 0;
    char *str = NULL;

    switch(item->type) {
    case VIR_TYPED_PARAM_INT:
        ret = virAsprintf(&str, "%d", item->value.i);
        break;

    case VIR_TYPED_PARAM_UINT:
        ret = virAsprintf(&str, "%u", item->value.ui);
        break;

    case VIR_TYPED_PARAM_LLONG:
        ret = virAsprintf(&str, "%lld", item->value.l);
        break;

    case VIR_TYPED_PARAM_ULLONG:
        ret = virAsprintf(&str, "%llu", item->value.ul);
        break;

    case VIR_TYPED_PARAM_DOUBLE:
        ret = virAsprintf(&str, "%f", item->value.d);
        break;

    case VIR_TYPED_PARAM_BOOLEAN:
        ret = virAsprintf(&str, "%s", item->value.b ? _("yes") : _("no"));
        break;

2265 2266 2267 2268
    case VIR_TYPED_PARAM_STRING:
        str = vshStrdup(ctl, item->value.s);
        break;

2269
    default:
2270
        vshError(ctl, _("unimplemented parameter type %d"), item->type);
2271 2272
    }

2273
    if (ret < 0) {
2274
        vshError(ctl, "%s", _("Out of memory"));
2275 2276
        exit(EXIT_FAILURE);
    }
2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299
    return str;
}

static virTypedParameterPtr
vshFindTypedParamByName(const char *name, virTypedParameterPtr list, int count)
{
    int i = count;
    virTypedParameterPtr found = list;

    if (!list || !name)
        return NULL;

    while (i-- > 0) {
        if (STREQ(name, found->field))
            return found;

        found++; /* go to next struct in array */
    }

    /* not found */
    return NULL;
}

E
Eric Blake 已提交
2300
static bool
2301
vshConnectionUsability(vshControl *ctl, virConnectPtr conn)
2302
{
2303 2304
    /* TODO: use something like virConnectionState() to
     *       check usability of the connection
K
Karel Zak 已提交
2305 2306
     */
    if (!conn) {
2307
        vshError(ctl, "%s", _("no valid connection"));
E
Eric Blake 已提交
2308
        return false;
K
Karel Zak 已提交
2309
    }
E
Eric Blake 已提交
2310
    return true;
K
Karel Zak 已提交
2311 2312
}

K
Karel Zak 已提交
2313
static void
2314
vshDebug(vshControl *ctl, int level, const char *format, ...)
2315
{
K
Karel Zak 已提交
2316
    va_list ap;
2317
    char *str;
K
Karel Zak 已提交
2318

2319 2320 2321 2322 2323 2324 2325
    /* Aligning log levels to that of libvirt.
     * Traces with levels >=  user-specified-level
     * gets logged into file
     */
    if (level < ctl->debug)
        return;

2326
    va_start(ap, format);
2327
    vshOutputLogFile(ctl, level, format, ap);
2328 2329
    va_end(ap);

K
Karel Zak 已提交
2330
    va_start(ap, format);
2331 2332 2333 2334 2335
    if (virVasprintf(&str, format, ap) < 0) {
        /* Skip debug messages on low memory */
        va_end(ap);
        return;
    }
K
Karel Zak 已提交
2336
    va_end(ap);
2337 2338
    fputs(str, stdout);
    VIR_FREE(str);
K
Karel Zak 已提交
2339 2340 2341
}

static void
2342
vshPrintExtra(vshControl *ctl, const char *format, ...)
2343
{
K
Karel Zak 已提交
2344
    va_list ap;
2345
    char *str;
2346

2347
    if (ctl && ctl->quiet)
K
Karel Zak 已提交
2348
        return;
2349

K
Karel Zak 已提交
2350
    va_start(ap, format);
2351 2352 2353 2354 2355
    if (virVasprintf(&str, format, ap) < 0) {
        vshError(ctl, "%s", _("Out of memory"));
        va_end(ap);
        return;
    }
K
Karel Zak 已提交
2356
    va_end(ap);
2357
    fputs(str, stdout);
2358
    VIR_FREE(str);
K
Karel Zak 已提交
2359 2360
}

K
Karel Zak 已提交
2361

K
Karel Zak 已提交
2362
static void
2363
vshError(vshControl *ctl, const char *format, ...)
2364
{
K
Karel Zak 已提交
2365
    va_list ap;
2366
    char *str;
2367

2368 2369 2370 2371 2372
    if (ctl != NULL) {
        va_start(ap, format);
        vshOutputLogFile(ctl, VSH_ERR_ERROR, format, ap);
        va_end(ap);
    }
2373

2374 2375 2376 2377
    /* Most output is to stdout, but if someone ran virsh 2>&1, then
     * printing to stderr will not interleave correctly with stdout
     * unless we flush between every transition between streams.  */
    fflush(stdout);
2378
    fputs(_("error: "), stderr);
2379

K
Karel Zak 已提交
2380
    va_start(ap, format);
2381 2382 2383
    /* We can't recursively call vshError on an OOM situation, so ignore
       failure here. */
    ignore_value(virVasprintf(&str, format, ap));
K
Karel Zak 已提交
2384 2385
    va_end(ap);

2386
    fprintf(stderr, "%s\n", NULLSTR(str));
2387
    fflush(stderr);
2388
    VIR_FREE(str);
K
Karel Zak 已提交
2389 2390
}

2391

J
Jiri Denemark 已提交
2392 2393 2394 2395 2396
static void
vshEventLoop(void *opaque)
{
    vshControl *ctl = opaque;

2397 2398 2399 2400 2401 2402 2403 2404 2405 2406
    while (1) {
        bool quit;
        virMutexLock(&ctl->lock);
        quit = ctl->quit;
        virMutexUnlock(&ctl->lock);

        if (quit)
            break;

        if (virEventRunDefaultImpl() < 0)
J
Jiri Denemark 已提交
2407 2408 2409 2410 2411
            virshReportError(ctl);
    }
}


K
Karel Zak 已提交
2412
/*
2413
 * Initialize connection.
K
Karel Zak 已提交
2414
 */
E
Eric Blake 已提交
2415
static bool
2416
vshInit(vshControl *ctl)
2417
{
2418 2419
    char *debugEnv;

K
Karel Zak 已提交
2420
    if (ctl->conn)
E
Eric Blake 已提交
2421
        return false;
K
Karel Zak 已提交
2422

J
Jiri Denemark 已提交
2423
    if (ctl->debug == VSH_DEBUG_DEFAULT) {
2424 2425 2426
        /* log level not set from commandline, check env variable */
        debugEnv = getenv("VIRSH_DEBUG");
        if (debugEnv) {
J
Jiri Denemark 已提交
2427 2428 2429
            int debug;
            if (virStrToLong_i(debugEnv, NULL, 10, &debug) < 0 ||
                debug < VSH_ERR_DEBUG || debug > VSH_ERR_ERROR) {
2430 2431
                vshError(ctl, "%s",
                         _("VIRSH_DEBUG not set with a valid numeric value"));
J
Jiri Denemark 已提交
2432 2433
            } else {
                ctl->debug = debug;
2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445
            }
        }
    }

    if (ctl->logfile == NULL) {
        /* log file not set from cmdline */
        debugEnv = getenv("VIRSH_LOG_FILE");
        if (debugEnv && *debugEnv) {
            ctl->logfile = vshStrdup(ctl, debugEnv);
        }
    }

2446 2447
    vshOpenLogFile(ctl);

2448 2449
    /* set up the library error handler */
    virSetErrorFunc(NULL, virshErrorHandler);
2450

2451
    if (virEventRegisterDefaultImpl() < 0)
E
Eric Blake 已提交
2452
        return false;
2453

J
Jiri Denemark 已提交
2454 2455 2456 2457
    if (virThreadCreate(&ctl->eventLoop, true, vshEventLoop, ctl) < 0)
        return false;
    ctl->eventLoopStarted = true;

2458 2459 2460 2461
    if (ctl->name) {
        ctl->conn = virConnectOpenAuth(ctl->name,
                                       virConnectAuthPtrDefault,
                                       ctl->readonly ? VIR_CONNECT_RO : 0);
2462

2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473
        /* Connecting to a named connection must succeed, but we delay
         * connecting to the default connection until we need it
         * (since the first command might be 'connect' which allows a
         * non-default connection, or might be 'help' which needs no
         * connection).
         */
        if (!ctl->conn) {
            virshReportError(ctl);
            vshError(ctl, "%s", _("failed to connect to the hypervisor"));
            return false;
        }
2474
    }
K
Karel Zak 已提交
2475

E
Eric Blake 已提交
2476
    return true;
K
Karel Zak 已提交
2477 2478
}

2479 2480
#define LOGFILE_FLAGS (O_WRONLY | O_APPEND | O_CREAT | O_SYNC)

2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499
/**
 * 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:
2500
                vshError(ctl, "%s",
J
Jim Meyering 已提交
2501
                         _("failed to get the log file information"));
2502
                exit(EXIT_FAILURE);
2503 2504 2505
        }
    } else {
        if (!S_ISREG(st.st_mode)) {
2506 2507
            vshError(ctl, "%s", _("the log path is not a file"));
            exit(EXIT_FAILURE);
2508 2509 2510 2511
        }
    }

    /* log file open */
2512
    if ((ctl->log_fd = open(ctl->logfile, LOGFILE_FLAGS, FILE_MODE)) < 0) {
2513
        vshError(ctl, "%s",
J
Jim Meyering 已提交
2514
                 _("failed to open the log file. check the log file path"));
2515
        exit(EXIT_FAILURE);
2516 2517 2518 2519 2520 2521 2522 2523 2524
    }
}

/**
 * vshOutputLogFile:
 *
 * Outputting an error to log file.
 */
static void
2525 2526
vshOutputLogFile(vshControl *ctl, int log_level, const char *msg_format,
                 va_list ap)
2527
{
2528 2529 2530
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    char *str;
    size_t len;
2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544
    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);
2545
    virBufferAsprintf(&buf, "[%d.%02d.%02d %02d:%02d:%02d %s %d] ",
2546 2547 2548 2549 2550 2551
                      (1900 + stTm->tm_year),
                      (1 + stTm->tm_mon),
                      stTm->tm_mday,
                      stTm->tm_hour,
                      stTm->tm_min,
                      stTm->tm_sec,
2552 2553
                      SIGN_NAME,
                      (int) getpid());
2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573
    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;
    }
2574 2575 2576
    virBufferAsprintf(&buf, "%s ", lvl);
    virBufferVasprintf(&buf, msg_format, ap);
    virBufferAddChar(&buf, '\n');
2577

2578 2579
    if (virBufferError(&buf))
        goto error;
2580

2581 2582 2583 2584 2585
    str = virBufferContentAndReset(&buf);
    len = strlen(str);
    if (len > 1 && str[len - 2] == '\n') {
        str[len - 1] = '\0';
        len--;
2586
    }
2587

2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598
    /* write log */
    if (safewrite(ctl->log_fd, str, len) < 0)
        goto error;

    return;

error:
    vshCloseLogFile(ctl);
    vshError(ctl, "%s", _("failed to write the log file"));
    virBufferFreeAndReset(&buf);
    VIR_FREE(str);
2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609
}

/**
 * vshCloseLogFile:
 *
 * Close log file.
 */
static void
vshCloseLogFile(vshControl *ctl)
{
    /* log file close */
2610 2611 2612
    if (VIR_CLOSE(ctl->log_fd) < 0) {
        vshError(ctl, _("%s: failed to write log file: %s"),
                 ctl->logfile ? ctl->logfile : "?", strerror (errno));
2613 2614 2615
    }

    if (ctl->logfile) {
2616
        VIR_FREE(ctl->logfile);
2617 2618 2619 2620
        ctl->logfile = NULL;
    }
}

2621
#ifdef USE_READLINE
2622

K
Karel Zak 已提交
2623 2624 2625 2626 2627
/* -----------------
 * Readline stuff
 * -----------------
 */

2628
/*
K
Karel Zak 已提交
2629 2630
 * Generator function for command completion.  STATE lets us
 * know whether to start from scratch; without any state
2631
 * (i.e. STATE == 0), then we start at the top of the list.
K
Karel Zak 已提交
2632 2633
 */
static char *
2634 2635
vshReadlineCommandGenerator(const char *text, int state)
{
2636
    static int grp_list_index, cmd_list_index, len;
K
Karel Zak 已提交
2637
    const char *name;
2638 2639
    const vshCmdGrp *grp;
    const vshCmdDef *cmds;
K
Karel Zak 已提交
2640 2641

    if (!state) {
2642 2643
        grp_list_index = 0;
        cmd_list_index = 0;
2644
        len = strlen(text);
K
Karel Zak 已提交
2645 2646
    }

2647 2648
    grp = cmdGroups;

K
Karel Zak 已提交
2649
    /* Return the next name which partially matches from the
2650
     * command list.
K
Karel Zak 已提交
2651
     */
2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665
    while (grp[grp_list_index].name) {
        cmds = grp[grp_list_index].commands;

        if (cmds[cmd_list_index].name) {
            while ((name = cmds[cmd_list_index].name)) {
                cmd_list_index++;

                if (STREQLEN(name, text, len))
                    return vshStrdup(NULL, name);
            }
        } else {
            cmd_list_index = 0;
            grp_list_index++;
        }
K
Karel Zak 已提交
2666 2667 2668 2669 2670 2671 2672
    }

    /* If no names matched, then return NULL. */
    return NULL;
}

static char *
2673 2674
vshReadlineOptionsGenerator(const char *text, int state)
{
K
Karel Zak 已提交
2675
    static int list_index, len;
2676
    static const vshCmdDef *cmd = NULL;
K
Karel Zak 已提交
2677
    const char *name;
K
Karel Zak 已提交
2678 2679 2680 2681 2682 2683 2684 2685 2686

    if (!state) {
        /* determine command name */
        char *p;
        char *cmdname;

        if (!(p = strchr(rl_line_buffer, ' ')))
            return NULL;

2687
        cmdname = vshCalloc(NULL, (p - rl_line_buffer) + 1, 1);
2688
        memcpy(cmdname, rl_line_buffer, p - rl_line_buffer);
K
Karel Zak 已提交
2689 2690 2691

        cmd = vshCmddefSearch(cmdname);
        list_index = 0;
2692
        len = strlen(text);
2693
        VIR_FREE(cmdname);
K
Karel Zak 已提交
2694 2695 2696 2697
    }

    if (!cmd)
        return NULL;
2698

2699 2700 2701
    if (!cmd->opts)
        return NULL;

K
Karel Zak 已提交
2702
    while ((name = cmd->opts[list_index].name)) {
2703
        const vshCmdOptDef *opt = &cmd->opts[list_index];
K
Karel Zak 已提交
2704
        char *res;
2705

K
Karel Zak 已提交
2706
        list_index++;
2707

2708
        if (opt->type == VSH_OT_DATA || opt->type == VSH_OT_ARGV)
K
Karel Zak 已提交
2709 2710
            /* ignore non --option */
            continue;
2711

K
Karel Zak 已提交
2712
        if (len > 2) {
2713
            if (STRNEQLEN(name, text + 2, len - 2))
K
Karel Zak 已提交
2714 2715
                continue;
        }
2716
        res = vshMalloc(NULL, strlen(name) + 3);
2717
        snprintf(res, strlen(name) + 3,  "--%s", name);
K
Karel Zak 已提交
2718 2719 2720 2721 2722 2723 2724 2725
        return res;
    }

    /* If no names matched, then return NULL. */
    return NULL;
}

static char **
2726 2727 2728
vshReadlineCompletion(const char *text, int start,
                      int end ATTRIBUTE_UNUSED)
{
K
Karel Zak 已提交
2729 2730
    char **matches = (char **) NULL;

2731
    if (start == 0)
K
Karel Zak 已提交
2732
        /* command name generator */
2733
        matches = rl_completion_matches(text, vshReadlineCommandGenerator);
K
Karel Zak 已提交
2734 2735
    else
        /* commands options */
2736
        matches = rl_completion_matches(text, vshReadlineOptionsGenerator);
K
Karel Zak 已提交
2737 2738 2739 2740
    return matches;
}


2741 2742
static int
vshReadlineInit(vshControl *ctl)
2743
{
2744 2745
    char *userdir = NULL;

K
Karel Zak 已提交
2746 2747 2748 2749 2750
    /* 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;
2751 2752 2753

    /* Limit the total size of the history buffer */
    stifle_history(500);
2754

2755
    /* Prepare to read/write history from/to the $XDG_CACHE_HOME/virsh/history file */
2756
    userdir = virGetUserCacheDirectory();
2757

2758 2759
    if (userdir == NULL) {
        vshError(ctl, "%s", _("Could not determine home directory"));
2760
        return -1;
2761
    }
2762

2763
    if (virAsprintf(&ctl->historydir, "%s/virsh", userdir) < 0) {
2764
        vshError(ctl, "%s", _("Out of memory"));
2765
        VIR_FREE(userdir);
2766 2767 2768 2769 2770
        return -1;
    }

    if (virAsprintf(&ctl->historyfile, "%s/history", ctl->historydir) < 0) {
        vshError(ctl, "%s", _("Out of memory"));
2771
        VIR_FREE(userdir);
2772 2773 2774
        return -1;
    }

2775
    VIR_FREE(userdir);
2776 2777 2778 2779 2780 2781 2782

    read_history(ctl->historyfile);

    return 0;
}

static void
2783
vshReadlineDeinit(vshControl *ctl)
2784 2785
{
    if (ctl->historyfile != NULL) {
2786 2787
        if (virFileMakePathWithMode(ctl->historydir, 0755) < 0 &&
            errno != EEXIST) {
2788 2789
            char ebuf[1024];
            vshError(ctl, _("Failed to create '%s': %s"),
2790
                     ctl->historydir, virStrerror(errno, ebuf, sizeof(ebuf)));
E
Eric Blake 已提交
2791
        } else {
2792
            write_history(ctl->historyfile);
E
Eric Blake 已提交
2793
        }
2794 2795
    }

2796 2797
    VIR_FREE(ctl->historydir);
    VIR_FREE(ctl->historyfile);
K
Karel Zak 已提交
2798 2799
}

2800
static char *
2801
vshReadline(vshControl *ctl ATTRIBUTE_UNUSED, const char *prompt)
2802
{
2803
    return readline(prompt);
2804 2805
}

2806
#else /* !USE_READLINE */
2807

2808
static int
2809
vshReadlineInit(vshControl *ctl ATTRIBUTE_UNUSED)
2810 2811 2812 2813 2814
{
    /* empty */
    return 0;
}

2815
static void
2816
vshReadlineDeinit(vshControl *ctl ATTRIBUTE_UNUSED)
2817 2818 2819 2820 2821
{
    /* empty */
}

static char *
2822
vshReadline(vshControl *ctl, const char *prompt)
2823 2824 2825 2826 2827
{
    char line[1024];
    char *r;
    int len;

2828 2829
    fputs(prompt, stdout);
    r = fgets(line, sizeof(line), stdin);
2830 2831 2832
    if (r == NULL) return NULL; /* EOF */

    /* Chomp trailing \n */
2833
    len = strlen(r);
2834 2835 2836
    if (len > 0 && r[len-1] == '\n')
        r[len-1] = '\0';

2837
    return vshStrdup(ctl, r);
2838 2839
}

2840
#endif /* !USE_READLINE */
2841

2842 2843 2844 2845 2846 2847
static void
vshDeinitTimer(int timer ATTRIBUTE_UNUSED, void *opaque ATTRIBUTE_UNUSED)
{
    /* nothing to be done here */
}

K
Karel Zak 已提交
2848
/*
J
Jim Meyering 已提交
2849
 * Deinitialize virsh
K
Karel Zak 已提交
2850
 */
E
Eric Blake 已提交
2851
static bool
2852
vshDeinit(vshControl *ctl)
2853
{
2854
    vshReadlineDeinit(ctl);
2855
    vshCloseLogFile(ctl);
2856
    VIR_FREE(ctl->name);
K
Karel Zak 已提交
2857
    if (ctl->conn) {
2858 2859 2860
        int ret;
        if ((ret = virConnectClose(ctl->conn)) != 0) {
            vshError(ctl, _("Failed to disconnect from the hypervisor, %d leaked reference(s)"), ret);
K
Karel Zak 已提交
2861 2862
        }
    }
D
Daniel P. Berrange 已提交
2863 2864
    virResetLastError();

J
Jiri Denemark 已提交
2865
    if (ctl->eventLoopStarted) {
2866 2867 2868 2869
        int timer;

        virMutexLock(&ctl->lock);
        ctl->quit = true;
J
Jiri Denemark 已提交
2870
        /* HACK: Add a dummy timeout to break event loop */
2871 2872 2873 2874 2875
        timer = virEventAddTimeout(0, vshDeinitTimer, NULL, NULL);
        virMutexUnlock(&ctl->lock);

        virThreadJoin(&ctl->eventLoop);

J
Jiri Denemark 已提交
2876 2877 2878 2879 2880 2881
        if (timer != -1)
            virEventRemoveTimeout(timer);

        ctl->eventLoopStarted = false;
    }

2882 2883
    virMutexDestroy(&ctl->lock);

E
Eric Blake 已提交
2884
    return true;
K
Karel Zak 已提交
2885
}
2886

K
Karel Zak 已提交
2887 2888 2889 2890
/*
 * Print usage
 */
static void
2891
vshUsage(void)
2892
{
2893
    const vshCmdGrp *grp;
2894
    const vshCmdDef *cmd;
2895

L
Lai Jiangshan 已提交
2896 2897
    fprintf(stdout, _("\n%s [options]... [<command_string>]"
                      "\n%s [options]... <command> [args...]\n\n"
2898
                      "  options:\n"
2899
                      "    -c | --connect=URI      hypervisor connection URI\n"
2900
                      "    -r | --readonly         connect readonly\n"
2901
                      "    -d | --debug=NUM        debug level [0-4]\n"
2902 2903 2904
                      "    -h | --help             this help\n"
                      "    -q | --quiet            quiet mode\n"
                      "    -t | --timing           print timing information\n"
2905 2906 2907 2908 2909
                      "    -l | --log=FILE         output logging to file\n"
                      "    -v                      short version\n"
                      "    -V                      long version\n"
                      "         --version[=TYPE]   version, TYPE is short or long (default short)\n"
                      "    -e | --escape <char>    set escape sequence for console\n\n"
2910
                      "  commands (non interactive mode):\n\n"), progname, progname);
2911

2912
    for (grp = cmdGroups; grp->name; grp++) {
E
Eric Blake 已提交
2913 2914 2915 2916 2917
        fprintf(stdout, _(" %s (help keyword '%s')\n"),
                grp->name, grp->keyword);
        for (cmd = grp->commands; cmd->name; cmd++) {
            if (cmd->flags & VSH_CMD_FLAG_ALIAS)
                continue;
2918
            fprintf(stdout,
E
Eric Blake 已提交
2919 2920 2921
                    "    %-30s %s\n", cmd->name,
                    _(vshCmddefGetInfo(cmd, "help")));
        }
2922 2923 2924 2925 2926
        fprintf(stdout, "\n");
    }

    fprintf(stdout, "%s",
            _("\n  (specify help <group> for details about the commands in the group)\n"));
2927 2928 2929
    fprintf(stdout, "%s",
            _("\n  (specify help <command> for details about the command)\n\n"));
    return;
K
Karel Zak 已提交
2930 2931
}

2932 2933 2934 2935 2936 2937 2938 2939 2940 2941
/*
 * 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 已提交
2942 2943
    vshPrint(ctl, "%s", _("Compiled with support for:\n"));
    vshPrint(ctl, "%s", _(" Hypervisors:"));
2944 2945 2946
#ifdef WITH_QEMU
    vshPrint(ctl, " QEmu/KVM");
#endif
D
Doug Goldstein 已提交
2947 2948 2949
#ifdef WITH_LXC
    vshPrint(ctl, " LXC");
#endif
2950 2951 2952
#ifdef WITH_UML
    vshPrint(ctl, " UML");
#endif
D
Doug Goldstein 已提交
2953 2954 2955 2956 2957 2958
#ifdef WITH_XEN
    vshPrint(ctl, " Xen");
#endif
#ifdef WITH_LIBXL
    vshPrint(ctl, " LibXL");
#endif
2959 2960 2961
#ifdef WITH_OPENVZ
    vshPrint(ctl, " OpenVZ");
#endif
D
Doug Goldstein 已提交
2962 2963
#ifdef WITH_VMWARE
    vshPrint(ctl, " VMWare");
2964
#endif
D
Doug Goldstein 已提交
2965 2966
#ifdef WITH_PHYP
    vshPrint(ctl, " PHYP");
2967
#endif
D
Doug Goldstein 已提交
2968 2969
#ifdef WITH_VBOX
    vshPrint(ctl, " VirtualBox");
2970 2971 2972 2973
#endif
#ifdef WITH_ESX
    vshPrint(ctl, " ESX");
#endif
D
Doug Goldstein 已提交
2974 2975
#ifdef WITH_HYPERV
    vshPrint(ctl, " Hyper-V");
2976
#endif
D
Doug Goldstein 已提交
2977 2978
#ifdef WITH_XENAPI
    vshPrint(ctl, " XenAPI");
2979 2980 2981 2982 2983 2984
#endif
#ifdef WITH_TEST
    vshPrint(ctl, " Test");
#endif
    vshPrint(ctl, "\n");

L
Laine Stump 已提交
2985
    vshPrint(ctl, "%s", _(" Networking:"));
2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998
#ifdef WITH_REMOTE
    vshPrint(ctl, " Remote");
#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
D
Doug Goldstein 已提交
2999
    vshPrint(ctl, " Interface");
3000 3001 3002 3003 3004 3005 3006 3007 3008
#endif
#ifdef WITH_NWFILTER
    vshPrint(ctl, " Nwfilter");
#endif
#ifdef WITH_VIRTUALPORT
    vshPrint(ctl, " VirtualPort");
#endif
    vshPrint(ctl, "\n");

L
Laine Stump 已提交
3009
    vshPrint(ctl, "%s", _(" Storage:"));
3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029
#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");
3030 3031 3032
#endif
#ifdef WITH_STORAGE_RBD
    vshPrint(ctl, " RBD");
3033 3034 3035
#endif
#ifdef WITH_STORAGE_SHEEPDOG
    vshPrint(ctl, " Sheepdog");
3036 3037 3038
#endif
    vshPrint(ctl, "\n");

3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083
    vshPrint(ctl, "%s", _(" Miscellaneous:"));
#ifdef WITH_NODE_DEVICES
    vshPrint(ctl, " Nodedev");
#endif
#ifdef WITH_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_PROBES
    vshPrint(ctl, " DTrace");
#endif
#ifdef USE_READLINE
    vshPrint(ctl, " Readline");
#endif
#ifdef WITH_DRIVER_MODULES
    vshPrint(ctl, " Modular");
#endif
    vshPrint(ctl, "\n");
}

static bool
vshAllowedEscapeChar(char c)
{
    /* Allowed escape characters:
     * a-z A-Z @ [ \ ] ^ _
     */
    return ('a' <= c && c <= 'z') ||
        ('@' <= c && c <= '_');
}

/*
 * argv[]:  virsh [options] [command]
 *
 */
static bool
vshParseArgv(vshControl *ctl, int argc, char **argv)
{
3084
    int arg, len, debug;
3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103
    struct option opt[] = {
        {"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'},
        {"escape", required_argument, NULL, 'e'},
        {NULL, 0, NULL, 0}
    };

    /* 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. */
    while ((arg = getopt_long(argc, argv, "+d:hqtc:vVrl:e:", opt, NULL)) != -1) {
        switch (arg) {
        case 'd':
3104
            if (virStrToLong_i(optarg, NULL, 10, &debug) < 0) {
3105 3106 3107
                vshError(ctl, "%s", _("option -d takes a numeric argument"));
                exit(EXIT_FAILURE);
            }
3108 3109 3110 3111 3112
            if (debug < VSH_ERR_DEBUG || debug > VSH_ERR_ERROR)
                vshError(ctl, _("ignoring debug level %d out of range [%d-%d]"),
                         debug, VSH_ERR_DEBUG, VSH_ERR_ERROR);
            else
                ctl->debug = debug;
3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173
            break;
        case 'h':
            vshUsage();
            exit(EXIT_SUCCESS);
            break;
        case 'q':
            ctl->quiet = true;
            break;
        case 't':
            ctl->timing = true;
            break;
        case 'c':
            ctl->name = vshStrdup(ctl, optarg);
            break;
        case 'v':
            if (STRNEQ_NULLABLE(optarg, "long")) {
                puts(VERSION);
                exit(EXIT_SUCCESS);
            }
            /* fall through */
        case 'V':
            vshShowVersion(ctl);
            exit(EXIT_SUCCESS);
        case 'r':
            ctl->readonly = true;
            break;
        case 'l':
            ctl->logfile = vshStrdup(ctl, optarg);
            break;
        case 'e':
            len = strlen(optarg);

            if ((len == 2 && *optarg == '^' &&
                 vshAllowedEscapeChar(optarg[1])) ||
                (len == 1 && *optarg != '^')) {
                ctl->escapeChar = optarg;
            } else {
                vshError(ctl, _("Invalid string '%s' for escape sequence"),
                         optarg);
                exit(EXIT_FAILURE);
            }
            break;
        default:
            vshError(ctl, _("unsupported option '-%c'. See --help."), arg);
            exit(EXIT_FAILURE);
        }
    }

    if (argc > optind) {
        /* parse command */
        ctl->imode = false;
        if (argc - optind == 1) {
            vshDebug(ctl, VSH_ERR_INFO, "commands: \"%s\"\n", argv[optind]);
            return vshCommandStringParse(ctl, argv[optind]);
        } else {
            return vshCommandArgvParse(ctl, argc - optind, argv + optind);
        }
    }
    return true;
}

3174
#include "virsh-domain.c"
3175
#include "virsh-domain-monitor.c"
3176
#include "virsh-pool.c"
3177
#include "virsh-volume.c"
3178
#include "virsh-network.c"
3179
#include "virsh-nodedev.c"
3180
#include "virsh-interface.c"
3181
#include "virsh-nwfilter.c"
3182
#include "virsh-secret.c"
3183 3184
#include "virsh-snapshot.c"
#include "virsh-host.c"
3185

3186 3187 3188 3189 3190 3191 3192 3193 3194
static const vshCmdDef virshCmds[] = {
    {"cd", cmdCd, opts_cd, info_cd, VSH_CMD_FLAG_NOCONNECT},
    {"echo", cmdEcho, opts_echo, info_echo, VSH_CMD_FLAG_NOCONNECT},
    {"exit", cmdQuit, NULL, info_quit, VSH_CMD_FLAG_NOCONNECT},
    {"help", cmdHelp, opts_help, info_help, VSH_CMD_FLAG_NOCONNECT},
    {"pwd", cmdPwd, NULL, info_pwd, VSH_CMD_FLAG_NOCONNECT},
    {"quit", cmdQuit, NULL, info_quit, VSH_CMD_FLAG_NOCONNECT},
    {NULL, NULL, NULL, NULL, 0}
};
3195

3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210
static const vshCmdGrp cmdGroups[] = {
    {VSH_CMD_GRP_DOM_MANAGEMENT, "domain", domManagementCmds},
    {VSH_CMD_GRP_DOM_MONITORING, "monitor", domMonitoringCmds},
    {VSH_CMD_GRP_HOST_AND_HV, "host", hostAndHypervisorCmds},
    {VSH_CMD_GRP_IFACE, "interface", ifaceCmds},
    {VSH_CMD_GRP_NWFILTER, "filter", nwfilterCmds},
    {VSH_CMD_GRP_NETWORK, "network", networkCmds},
    {VSH_CMD_GRP_NODEDEV, "nodedev", nodedevCmds},
    {VSH_CMD_GRP_SECRET, "secret", secretCmds},
    {VSH_CMD_GRP_SNAPSHOT, "snapshot", snapshotCmds},
    {VSH_CMD_GRP_STORAGE_POOL, "pool", storagePoolCmds},
    {VSH_CMD_GRP_STORAGE_VOL, "volume", storageVolCmds},
    {VSH_CMD_GRP_VIRSH, "virsh", virshCmds},
    {NULL, NULL, NULL}
};
K
Karel Zak 已提交
3211

3212 3213 3214 3215
int
main(int argc, char **argv)
{
    vshControl _ctl, *ctl = &_ctl;
3216
    char *defaultConn;
E
Eric Blake 已提交
3217
    bool ret = true;
K
Karel Zak 已提交
3218

3219 3220 3221
    memset(ctl, 0, sizeof(vshControl));
    ctl->imode = true;          /* default is interactive mode */
    ctl->log_fd = -1;           /* Initialize log file descriptor */
J
Jiri Denemark 已提交
3222
    ctl->debug = VSH_DEBUG_DEFAULT;
3223 3224
    ctl->escapeChar = CTRL_CLOSE_BRACKET;

3225

3226 3227
    if (!setlocale(LC_ALL, "")) {
        perror("setlocale");
3228
        /* failure to setup locale is not fatal */
3229
    }
3230
    if (!bindtextdomain(PACKAGE, LOCALEDIR)) {
3231
        perror("bindtextdomain");
E
Eric Blake 已提交
3232
        return EXIT_FAILURE;
3233
    }
3234
    if (!textdomain(PACKAGE)) {
3235
        perror("textdomain");
E
Eric Blake 已提交
3236
        return EXIT_FAILURE;
3237 3238
    }

3239 3240 3241 3242 3243
    if (virMutexInit(&ctl->lock) < 0) {
        vshError(ctl, "%s", _("Failed to initialize mutex"));
        return EXIT_FAILURE;
    }

3244 3245 3246 3247 3248
    if (virInitialize() < 0) {
        vshError(ctl, "%s", _("Failed to initialize libvirt"));
        return EXIT_FAILURE;
    }

3249
    if (!(progname = strrchr(argv[0], '/')))
K
Karel Zak 已提交
3250 3251 3252
        progname = argv[0];
    else
        progname++;
3253

3254
    if ((defaultConn = getenv("VIRSH_DEFAULT_CONNECT_URI"))) {
E
Eric Blake 已提交
3255
        ctl->name = vshStrdup(ctl, defaultConn);
3256 3257
    }

D
Daniel P. Berrange 已提交
3258 3259
    if (!vshParseArgv(ctl, argc, argv)) {
        vshDeinit(ctl);
K
Karel Zak 已提交
3260
        exit(EXIT_FAILURE);
D
Daniel P. Berrange 已提交
3261
    }
3262

D
Daniel P. Berrange 已提交
3263 3264
    if (!vshInit(ctl)) {
        vshDeinit(ctl);
K
Karel Zak 已提交
3265
        exit(EXIT_FAILURE);
D
Daniel P. Berrange 已提交
3266
    }
3267

K
Karel Zak 已提交
3268
    if (!ctl->imode) {
3269
        ret = vshCommandRun(ctl, ctl->cmd);
3270
    } else {
K
Karel Zak 已提交
3271 3272
        /* interactive mode */
        if (!ctl->quiet) {
K
Karel Zak 已提交
3273
            vshPrint(ctl,
3274
                     _("Welcome to %s, the virtualization interactive terminal.\n\n"),
3275
                     progname);
J
Jim Meyering 已提交
3276
            vshPrint(ctl, "%s",
3277
                     _("Type:  'help' for help with commands\n"
3278
                       "       'quit' to quit\n\n"));
K
Karel Zak 已提交
3279
        }
3280 3281 3282 3283 3284 3285

        if (vshReadlineInit(ctl) < 0) {
            vshDeinit(ctl);
            exit(EXIT_FAILURE);
        }

K
Karel Zak 已提交
3286
        do {
3287
            const char *prompt = ctl->readonly ? VSH_PROMPT_RO : VSH_PROMPT_RW;
3288
            ctl->cmdstr =
3289
                vshReadline(ctl, prompt);
3290 3291
            if (ctl->cmdstr == NULL)
                break;          /* EOF */
K
Karel Zak 已提交
3292
            if (*ctl->cmdstr) {
3293
#if USE_READLINE
K
Karel Zak 已提交
3294
                add_history(ctl->cmdstr);
3295
#endif
3296
                if (vshCommandStringParse(ctl, ctl->cmdstr))
K
Karel Zak 已提交
3297 3298
                    vshCommandRun(ctl, ctl->cmd);
            }
3299
            VIR_FREE(ctl->cmdstr);
3300
        } while (ctl->imode);
K
Karel Zak 已提交
3301

3302 3303
        if (ctl->cmdstr == NULL)
            fputc('\n', stdout);        /* line break after alone prompt */
K
Karel Zak 已提交
3304
    }
3305

K
Karel Zak 已提交
3306 3307
    vshDeinit(ctl);
    exit(ret ? EXIT_SUCCESS : EXIT_FAILURE);
3308
}