virsh.c 26.8 KB
Newer Older
1
/*
2
 * virsh.c: a shell to exercise the libvirt API
3
 *
4
 * Copyright (C) 2005, 2007-2015 Red Hat, Inc.
5
 *
O
Osier Yang 已提交
6 7 8 9 10 11 12 13 14 15 16
 * 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
17
 * License along with this library.  If not, see
O
Osier Yang 已提交
18
 * <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>
E
Eric Blake 已提交
26
#include "virsh.h"
27

28
#include <stdio.h>
K
Karel Zak 已提交
29 30 31
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
32
#include <unistd.h>
33
#include <errno.h>
K
Karel Zak 已提交
34
#include <getopt.h>
K
Karel Zak 已提交
35
#include <sys/time.h>
36
#include <fcntl.h>
37
#include <time.h>
38
#include <limits.h>
39
#include <sys/stat.h>
40
#include <inttypes.h>
41
#include <signal.h>
K
Karel Zak 已提交
42

43
#if WITH_READLINE
44 45
# include <readline/readline.h>
# include <readline/history.h>
46
#endif
K
Karel Zak 已提交
47

48
#include "internal.h"
49
#include "virerror.h"
50
#include "virbuffer.h"
51
#include "viralloc.h"
52 53
#include <libvirt/libvirt-qemu.h>
#include <libvirt/libvirt-lxc.h>
E
Eric Blake 已提交
54
#include "virfile.h"
55
#include "virthread.h"
56
#include "vircommand.h"
H
Hu Tao 已提交
57
#include "conf/domain_conf.h"
58
#include "virtypedparam.h"
59
#include "virstring.h"
60
#include "virgettext.h"
K
Karel Zak 已提交
61

62
#include "virsh-console.h"
E
Eric Blake 已提交
63
#include "virsh-domain.h"
64
#include "virsh-domain-monitor.h"
E
Eric Blake 已提交
65
#include "virsh-host.h"
E
Eric Blake 已提交
66
#include "virsh-interface.h"
E
Eric Blake 已提交
67
#include "virsh-network.h"
E
Eric Blake 已提交
68
#include "virsh-nodedev.h"
E
Eric Blake 已提交
69
#include "virsh-nwfilter.h"
E
Eric Blake 已提交
70
#include "virsh-pool.h"
E
Eric Blake 已提交
71
#include "virsh-secret.h"
E
Eric Blake 已提交
72
#include "virsh-snapshot.h"
E
Eric Blake 已提交
73
#include "virsh-volume.h"
E
Eric Blake 已提交
74

75 76 77 78 79
/* Gnulib doesn't guarantee SA_SIGINFO support.  */
#ifndef SA_SIGINFO
# define SA_SIGINFO 0
#endif

K
Karel Zak 已提交
80 81
static char *progname;

82
static const vshCmdGrp cmdGroups[];
83
static const vshClientHooks hooks;
J
John Levon 已提交
84

85 86 87
/*
 * Detection of disconnections and automatic reconnection support
 */
88
static int disconnected; /* we may have been disconnected */
89 90

/*
91
 * virshCatchDisconnect:
92
 *
93 94
 * We get here when the connection was closed.  We can't do much in the
 * handler, just save the fact it was raised.
95
 */
L
Laine Stump 已提交
96
static void
97
virshCatchDisconnect(virConnectPtr conn,
98
                     int reason,
99
                     void *opaque)
100
{
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
    if (reason != VIR_CONNECT_CLOSE_REASON_CLIENT) {
        vshControl *ctl = opaque;
        const char *str = "unknown reason";
        virErrorPtr error;
        char *uri;

        error = virSaveLastError();
        uri = virConnectGetURI(conn);

        switch ((virConnectCloseReason) reason) {
        case VIR_CONNECT_CLOSE_REASON_ERROR:
            str = N_("Disconnected from %s due to I/O error");
            break;
        case VIR_CONNECT_CLOSE_REASON_EOF:
            str = N_("Disconnected from %s due to end of file");
            break;
        case VIR_CONNECT_CLOSE_REASON_KEEPALIVE:
            str = N_("Disconnected from %s due to keepalive timeout");
            break;
J
John Ferlan 已提交
120
        /* coverity[dead_error_condition] */
121 122 123 124 125
        case VIR_CONNECT_CLOSE_REASON_CLIENT:
        case VIR_CONNECT_CLOSE_REASON_LAST:
            break;
        }
        vshError(ctl, _(str), NULLSTR(uri));
126
        VIR_FREE(uri);
127 128 129 130 131

        if (error) {
            virSetError(error);
            virFreeError(error);
        }
132
        disconnected++;
133
        vshEventDone(ctl);
134
    }
135 136
}

137 138 139
/* Main Function which should be used for connecting.
 * This function properly handles keepalive settings. */
virConnectPtr
140
virshConnect(vshControl *ctl, const char *uri, bool readonly)
141 142 143 144 145
{
    virConnectPtr c = NULL;
    int interval = 5; /* Default */
    int count = 6;    /* Default */
    bool keepalive_forced = false;
146 147
    virPolkitAgentPtr pkagent = NULL;
    int authfail = 0;
148
    bool agentCreated = false;
149 150 151 152 153 154 155 156 157 158

    if (ctl->keepalive_interval >= 0) {
        interval = ctl->keepalive_interval;
        keepalive_forced = true;
    }
    if (ctl->keepalive_count >= 0) {
        count = ctl->keepalive_count;
        keepalive_forced = true;
    }

159 160 161 162 163 164 165 166 167 168 169
    do {
        virErrorPtr err;

        if ((c = virConnectOpenAuth(uri, virConnectAuthPtrDefault,
                                    readonly ? VIR_CONNECT_RO : 0)))
            break;

        if (readonly)
            goto cleanup;

        err = virGetLastError();
170 171
        if (!agentCreated &&
            err && err->domain == VIR_FROM_POLKIT &&
172
            err->code == VIR_ERR_AUTH_UNAVAILABLE) {
173
            if (!pkagent && !(pkagent = virPolkitAgentCreate()))
174
                goto cleanup;
175
            agentCreated = true;
176 177 178 179 180 181 182 183 184 185 186 187
        } else if (err && err->domain == VIR_FROM_POLKIT &&
                   err->code == VIR_ERR_AUTH_FAILED) {
            authfail++;
        } else {
            goto cleanup;
        }
        virResetLastError();
        /* Failure to authenticate 5 times should be enough.
         * No sense prolonging the agony.
         */
    } while (authfail < 5);

188
    if (!c)
189
        goto cleanup;
190 191 192 193 194 195 196 197

    if (interval > 0 &&
        virConnectSetKeepAlive(c, interval, count) != 0) {
        if (keepalive_forced) {
            vshError(ctl, "%s",
                     _("Cannot setup keepalive on connection "
                       "as requested, disconnecting"));
            virConnectClose(c);
198 199
            c = NULL;
            goto cleanup;
200 201 202 203 204
        }
        vshDebug(ctl, VSH_ERR_INFO, "%s",
                 _("Failed to setup keepalive on connection\n"));
    }

205 206
 cleanup:
    virPolkitAgentDestroy(pkagent);
207 208 209
    return c;
}

210
/*
211
 * virshReconnect:
212
 *
L
Laine Stump 已提交
213
 * Reconnect after a disconnect from libvirtd
214 215
 *
 */
216
static int
M
Martin Kletzander 已提交
217
virshReconnect(vshControl *ctl, const char *name, bool readonly, bool force)
218 219
{
    bool connected = false;
220
    virshControlPtr priv = ctl->privData;
221 222 223 224 225 226 227

    /* If the flag was not specified, then it depends on whether we are
     * reconnecting to the current URI (in which case we want to keep the
     * readonly flag as it was) or to a specified URI in which case it
     * should stay false */
    if (!readonly && !name)
        readonly = priv->readonly;
228

229
    if (priv->conn) {
230
        int ret;
231
        connected = true;
232

233 234
        virConnectUnregisterCloseCallback(priv->conn, virshCatchDisconnect);
        ret = virConnectClose(priv->conn);
235 236 237 238 239
        if (ret < 0)
            vshError(ctl, "%s", _("Failed to disconnect from the hypervisor"));
        else if (ret > 0)
            vshError(ctl, "%s", _("One or more references were leaked after "
                                  "disconnect from the hypervisor"));
240
    }
241

242
    priv->conn = virshConnect(ctl, name ? name : ctl->connname, readonly);
243

244
    if (!priv->conn) {
245 246 247 248
        if (disconnected)
            vshError(ctl, "%s", _("Failed to reconnect to the hypervisor"));
        else
            vshError(ctl, "%s", _("failed to connect to the hypervisor"));
249
        return -1;
250
    } else {
M
Martin Kletzander 已提交
251 252 253 254
        if (name) {
            VIR_FREE(ctl->connname);
            ctl->connname = vshStrdup(ctl, name);
        }
255 256 257

        priv->readonly = readonly;

258
        if (virConnectRegisterCloseCallback(priv->conn, virshCatchDisconnect,
259
                                            ctl, NULL) < 0)
260
            vshError(ctl, "%s", _("Unable to register disconnect callback"));
M
Martin Kletzander 已提交
261
        if (connected && !force)
262 263
            vshError(ctl, "%s", _("Reconnected to the hypervisor"));
    }
264
    disconnected = 0;
265 266 267
    priv->useGetInfo = false;
    priv->useSnapshotOld = false;
    priv->blockJobNoBytes = false;
268
    return 0;
269
}
270

271 272 273
/* ---------------
 * Command Connect
 * ---------------
274 275 276 277
 */

static const vshCmdOptDef opts_connect[] = {
    {.name = "name",
278
     .type = VSH_OT_STRING,
279 280 281 282 283 284 285 286 287 288
     .flags = VSH_OFLAG_EMPTY_OK,
     .help = N_("hypervisor connection URI")
    },
    {.name = "readonly",
     .type = VSH_OT_BOOL,
     .help = N_("read-only connection")
    },
    {.name = NULL}
};

289
static const vshCmdInfo info_connect[] = {
290
    {.name = "help",
291
     .data = N_("(re)connect to hypervisor")
292 293
    },
    {.name = "desc",
294 295
     .data = N_("Connect to local hypervisor. This is built-in "
                "command after shell start up.")
296 297
    },
    {.name = NULL}
P
Paolo Bonzini 已提交
298 299
};

E
Eric Blake 已提交
300
static bool
301
cmdConnect(vshControl *ctl, const vshCmd *cmd)
P
Paolo Bonzini 已提交
302
{
303 304
    bool ro = vshCommandOptBool(cmd, "readonly");
    const char *name = NULL;
305 306 307 308

    if (vshCommandOptStringReq(ctl, cmd, "name", &name) < 0)
        return false;

309 310
    if (virshReconnect(ctl, name, ro, true) < 0)
        return false;
311

312
    return true;
313 314
}

315 316 317 318
/* ---------------
 * Utils for work with runtime commands data
 * ---------------
 */
319

320 321
static bool
virshConnectionUsability(vshControl *ctl, virConnectPtr conn)
322
{
323 324 325 326
    if (!conn ||
        virConnectIsAlive(conn) == 0) {
        vshError(ctl, "%s", _("no valid connection"));
        return false;
327 328
    }

329 330 331 332
    /* The connection is considered dead only if
     * virConnectIsAlive() successfuly says so.
     */
    vshResetLibvirtError();
333

334
    return true;
335 336
}

337 338
static void *
virshConnectionHandler(vshControl *ctl)
339
{
340
    virshControlPtr priv = ctl->privData;
341

342 343 344
    if ((!priv->conn || disconnected) &&
        virshReconnect(ctl, NULL, false, false) < 0)
        return NULL;
345

346 347
    if (virshConnectionUsability(ctl, priv->conn))
        return priv->conn;
348

349
    return NULL;
350 351
}

J
Ján Tomko 已提交
352

M
Martin Kletzander 已提交
353 354 355 356
/*
 * Initialize connection.
 */
static bool
357
virshInit(vshControl *ctl)
M
Martin Kletzander 已提交
358
{
359 360
    virshControlPtr priv = ctl->privData;

M
Martin Kletzander 已提交
361
    /* Since we have the commandline arguments parsed, we need to
E
Erik Skultety 已提交
362 363 364
     * reload our initial settings to make debugging and readline
     * work properly */
    vshInitReload(ctl);
M
Martin Kletzander 已提交
365

366
    if (priv->conn)
M
Martin Kletzander 已提交
367
        return false;
368

369
    /* set up the library error handler */
370
    virSetErrorFunc(NULL, vshErrorHandler);
371

372 373
    if (virEventRegisterDefaultImpl() < 0) {
        vshReportError(ctl);
E
Eric Blake 已提交
374
        return false;
375
    }
376

377 378
    if (virThreadCreate(&ctl->eventLoop, true, vshEventLoop, ctl) < 0) {
        vshReportError(ctl);
J
Jiri Denemark 已提交
379
        return false;
380
    }
J
Jiri Denemark 已提交
381 382
    ctl->eventLoopStarted = true;

383
    if ((ctl->eventTimerId = virEventAddTimeout(-1, vshEventTimeout, ctl,
384 385
                                                NULL)) < 0) {
        vshReportError(ctl);
386
        return false;
387
    }
388

389
    if (ctl->connname) {
390 391 392 393 394 395
        /* 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).
         */
396
        if (virshReconnect(ctl, NULL, false, false) < 0) {
E
Eric Blake 已提交
397
            vshReportError(ctl);
398 399
            return false;
        }
400
    }
K
Karel Zak 已提交
401

E
Eric Blake 已提交
402
    return true;
K
Karel Zak 已提交
403 404
}

405
static void
406
virshDeinitTimer(int timer ATTRIBUTE_UNUSED, void *opaque ATTRIBUTE_UNUSED)
407 408 409 410
{
    /* nothing to be done here */
}

K
Karel Zak 已提交
411
/*
J
Jim Meyering 已提交
412
 * Deinitialize virsh
K
Karel Zak 已提交
413
 */
E
Eric Blake 已提交
414
static bool
415
virshDeinit(vshControl *ctl)
416
{
417 418 419
    virshControlPtr priv = ctl->privData;

    vshDeinit(ctl);
420
    VIR_FREE(ctl->connname);
421
    if (priv->conn) {
422
        int ret;
423 424
        virConnectUnregisterCloseCallback(priv->conn, virshCatchDisconnect);
        ret = virConnectClose(priv->conn);
425 426 427 428 429
        if (ret < 0)
            vshError(ctl, "%s", _("Failed to disconnect from the hypervisor"));
        else if (ret > 0)
            vshError(ctl, "%s", _("One or more references were leaked after "
                                  "disconnect from the hypervisor"));
K
Karel Zak 已提交
430
    }
D
Daniel P. Berrange 已提交
431 432
    virResetLastError();

J
Jiri Denemark 已提交
433
    if (ctl->eventLoopStarted) {
434 435 436 437
        int timer;

        virMutexLock(&ctl->lock);
        ctl->quit = true;
J
Jiri Denemark 已提交
438
        /* HACK: Add a dummy timeout to break event loop */
439
        timer = virEventAddTimeout(0, virshDeinitTimer, NULL, NULL);
440 441 442 443
        virMutexUnlock(&ctl->lock);

        virThreadJoin(&ctl->eventLoop);

J
Jiri Denemark 已提交
444 445 446
        if (timer != -1)
            virEventRemoveTimeout(timer);

447 448 449
        if (ctl->eventTimerId != -1)
            virEventRemoveTimeout(ctl->eventTimerId);

J
Jiri Denemark 已提交
450 451 452
        ctl->eventLoopStarted = false;
    }

453 454
    virMutexDestroy(&ctl->lock);

E
Eric Blake 已提交
455
    return true;
K
Karel Zak 已提交
456
}
457

K
Karel Zak 已提交
458 459 460
/*
 * Print usage
 */
E
Eric Blake 已提交
461
static void
462
virshUsage(void)
463
{
464
    const vshCmdGrp *grp;
465
    const vshCmdDef *cmd;
466

L
Lai Jiangshan 已提交
467 468
    fprintf(stdout, _("\n%s [options]... [<command_string>]"
                      "\n%s [options]... <command> [args...]\n\n"
469
                      "  options:\n"
470 471
                      "    -c | --connect=URI      hypervisor connection URI\n"
                      "    -d | --debug=NUM        debug level [0-4]\n"
472
                      "    -e | --escape <char>    set escape sequence for console\n"
473
                      "    -h | --help             this help\n"
474 475 476 477
                      "    -k | --keepalive-interval=NUM\n"
                      "                            keepalive interval in seconds, 0 for disable\n"
                      "    -K | --keepalive-count=NUM\n"
                      "                            number of possible missed keepalive messages\n"
478
                      "    -l | --log=FILE         output logging to file\n"
479
                      "    -q | --quiet            quiet mode\n"
480
                      "    -r | --readonly         connect readonly\n"
481
                      "    -t | --timing           print timing information\n"
482 483 484
                      "    -v                      short version\n"
                      "    -V                      long version\n"
                      "         --version[=TYPE]   version, TYPE is short or long (default short)\n"
485 486
                      "  commands (non interactive mode):\n\n"), progname,
            progname);
487

488
    for (grp = cmdGroups; grp->name; grp++) {
E
Eric Blake 已提交
489 490 491 492 493
        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;
494
            fprintf(stdout,
E
Eric Blake 已提交
495 496 497
                    "    %-30s %s\n", cmd->name,
                    _(vshCmddefGetInfo(cmd, "help")));
        }
498 499 500 501 502
        fprintf(stdout, "\n");
    }

    fprintf(stdout, "%s",
            _("\n  (specify help <group> for details about the commands in the group)\n"));
503 504 505
    fprintf(stdout, "%s",
            _("\n  (specify help <command> for details about the command)\n\n"));
    return;
K
Karel Zak 已提交
506 507
}

508 509 510 511
/*
 * Show version and options compiled in
 */
static void
512
virshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED)
513 514 515
{
    /* FIXME - list a copyright blurb, as in GNU programs?  */
    vshPrint(ctl, _("Virsh command line tool of libvirt %s\n"), VERSION);
516
    vshPrint(ctl, _("See web site at %s\n\n"), "https://libvirt.org/");
517

L
Laine Stump 已提交
518 519
    vshPrint(ctl, "%s", _("Compiled with support for:\n"));
    vshPrint(ctl, "%s", _(" Hypervisors:"));
520
#ifdef WITH_QEMU
521
    vshPrint(ctl, " QEMU/KVM");
522
#endif
D
Doug Goldstein 已提交
523 524 525
#ifdef WITH_LXC
    vshPrint(ctl, " LXC");
#endif
526 527 528
#ifdef WITH_UML
    vshPrint(ctl, " UML");
#endif
D
Doug Goldstein 已提交
529 530 531 532 533 534
#ifdef WITH_XEN
    vshPrint(ctl, " Xen");
#endif
#ifdef WITH_LIBXL
    vshPrint(ctl, " LibXL");
#endif
535 536 537
#ifdef WITH_OPENVZ
    vshPrint(ctl, " OpenVZ");
#endif
538 539 540
#ifdef WITH_VZ
    vshPrint(ctl, " Virtuozzo");
#endif
D
Doug Goldstein 已提交
541
#ifdef WITH_VMWARE
J
Ján Tomko 已提交
542
    vshPrint(ctl, " VMware");
543
#endif
D
Doug Goldstein 已提交
544 545
#ifdef WITH_PHYP
    vshPrint(ctl, " PHYP");
546
#endif
D
Doug Goldstein 已提交
547 548
#ifdef WITH_VBOX
    vshPrint(ctl, " VirtualBox");
549 550 551 552
#endif
#ifdef WITH_ESX
    vshPrint(ctl, " ESX");
#endif
D
Doug Goldstein 已提交
553 554
#ifdef WITH_HYPERV
    vshPrint(ctl, " Hyper-V");
555
#endif
D
Doug Goldstein 已提交
556 557
#ifdef WITH_XENAPI
    vshPrint(ctl, " XenAPI");
558
#endif
559 560 561
#ifdef WITH_BHYVE
    vshPrint(ctl, " Bhyve");
#endif
562 563 564 565 566
#ifdef WITH_TEST
    vshPrint(ctl, " Test");
#endif
    vshPrint(ctl, "\n");

L
Laine Stump 已提交
567
    vshPrint(ctl, "%s", _(" Networking:"));
568 569 570 571 572 573 574 575 576
#ifdef WITH_REMOTE
    vshPrint(ctl, " Remote");
#endif
#ifdef WITH_NETWORK
    vshPrint(ctl, " Network");
#endif
#ifdef WITH_BRIDGE
    vshPrint(ctl, " Bridging");
#endif
577
#if defined(WITH_INTERFACE)
D
Doug Goldstein 已提交
578
    vshPrint(ctl, " Interface");
579 580
# if defined(WITH_NETCF)
    vshPrint(ctl, " netcf");
581
# elif defined(WITH_UDEV)
582
    vshPrint(ctl, " udev");
583
# endif
584 585 586 587 588 589 590 591 592
#endif
#ifdef WITH_NWFILTER
    vshPrint(ctl, " Nwfilter");
#endif
#ifdef WITH_VIRTUALPORT
    vshPrint(ctl, " VirtualPort");
#endif
    vshPrint(ctl, "\n");

L
Laine Stump 已提交
593
    vshPrint(ctl, "%s", _(" Storage:"));
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
#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");
614 615 616
#endif
#ifdef WITH_STORAGE_RBD
    vshPrint(ctl, " RBD");
617 618 619
#endif
#ifdef WITH_STORAGE_SHEEPDOG
    vshPrint(ctl, " Sheepdog");
620 621 622
#endif
#ifdef WITH_STORAGE_GLUSTER
    vshPrint(ctl, " Gluster");
623 624 625
#endif
#ifdef WITH_STORAGE_ZFS
    vshPrint(ctl, " ZFS");
626 627 628
#endif
#ifdef WITH_STORAGE_VSTORAGE
    vshPrint(ctl, "Virtuozzo Storage");
629 630 631
#endif
    vshPrint(ctl, "\n");

632
    vshPrint(ctl, "%s", _(" Miscellaneous:"));
633 634 635
#ifdef WITH_LIBVIRTD
    vshPrint(ctl, " Daemon");
#endif
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
#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
654
#if WITH_READLINE
655 656 657 658 659 660
    vshPrint(ctl, " Readline");
#endif
    vshPrint(ctl, "\n");
}

static bool
661
virshAllowedEscapeChar(char c)
662 663 664 665 666 667 668 669 670 671 672 673
{
    /* Allowed escape characters:
     * a-z A-Z @ [ \ ] ^ _
     */
    return ('a' <= c && c <= 'z') ||
        ('@' <= c && c <= '_');
}

/*
 * argv[]:  virsh [options] [command]
 *
 */
E
Eric Blake 已提交
674
static bool
675
virshParseArgv(vshControl *ctl, int argc, char **argv)
676
{
677
    int arg, len, debug, keepalive;
678
    size_t i;
679
    int longindex = -1;
680
    virshControlPtr priv = ctl->privData;
681
    struct option opt[] = {
682
        {"connect", required_argument, NULL, 'c'},
683
        {"debug", required_argument, NULL, 'd'},
684
        {"escape", required_argument, NULL, 'e'},
685
        {"help", no_argument, NULL, 'h'},
686 687
        {"keepalive-interval", required_argument, NULL, 'k'},
        {"keepalive-count", required_argument, NULL, 'K'},
688
        {"log", required_argument, NULL, 'l'},
689
        {"quiet", no_argument, NULL, 'q'},
690
        {"readonly", no_argument, NULL, 'r'},
691 692 693 694 695 696 697 698
        {"timing", no_argument, NULL, 't'},
        {"version", optional_argument, NULL, 'v'},
        {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. */
699
    while ((arg = getopt_long(argc, argv, "+:c:d:e:hk:K:l:qrtvV", opt, &longindex)) != -1) {
700
        switch (arg) {
701
        case 'c':
702 703
            VIR_FREE(ctl->connname);
            ctl->connname = vshStrdup(ctl, optarg);
704
            break;
705
        case 'd':
706
            if (virStrToLong_i(optarg, NULL, 10, &debug) < 0) {
707 708
                vshError(ctl, _("option %s takes a numeric argument"),
                         longindex == -1 ? "-d" : "--debug");
709 710
                exit(EXIT_FAILURE);
            }
711 712 713 714 715
            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;
716
            break;
717 718 719 720
        case 'e':
            len = strlen(optarg);

            if ((len == 2 && *optarg == '^' &&
721
                 virshAllowedEscapeChar(optarg[1])) ||
722
                (len == 1 && *optarg != '^')) {
723
                priv->escapeChar = optarg;
724 725 726 727 728 729
            } else {
                vshError(ctl, _("Invalid string '%s' for escape sequence"),
                         optarg);
                exit(EXIT_FAILURE);
            }
            break;
730
        case 'h':
731
            virshUsage();
732 733
            exit(EXIT_SUCCESS);
            break;
734
        case 'k':
E
Erik Skultety 已提交
735 736 737 738 739 740 741 742 743 744
            if (virStrToLong_i(optarg, NULL, 0, &keepalive) < 0) {
                vshError(ctl,
                         _("Invalid value for option %s"),
                         longindex == -1 ? "-k" : "--keepalive-interval");
                exit(EXIT_FAILURE);
            }

            if (keepalive < 0) {
                vshError(ctl,
                         _("option %s requires a positive integer argument"),
745 746 747 748 749 750
                         longindex == -1 ? "-k" : "--keepalive-interval");
                exit(EXIT_FAILURE);
            }
            ctl->keepalive_interval = keepalive;
            break;
        case 'K':
E
Erik Skultety 已提交
751 752 753 754 755 756 757 758 759 760
            if (virStrToLong_i(optarg, NULL, 0, &keepalive) < 0) {
                vshError(ctl,
                         _("Invalid value for option %s"),
                         longindex == -1 ? "-K" : "--keepalive-count");
                exit(EXIT_FAILURE);
            }

            if (keepalive < 0) {
                vshError(ctl,
                         _("option %s requires a positive integer argument"),
761 762 763 764 765
                         longindex == -1 ? "-K" : "--keepalive-count");
                exit(EXIT_FAILURE);
            }
            ctl->keepalive_count = keepalive;
            break;
766 767 768 769 770
        case 'l':
            vshCloseLogFile(ctl);
            ctl->logfile = vshStrdup(ctl, optarg);
            vshOpenLogFile(ctl);
            break;
771 772 773 774 775 776
        case 'q':
            ctl->quiet = true;
            break;
        case 't':
            ctl->timing = true;
            break;
777
        case 'r':
778
            priv->readonly = true;
779 780 781 782 783 784
            break;
        case 'v':
            if (STRNEQ_NULLABLE(optarg, "long")) {
                puts(VERSION);
                exit(EXIT_SUCCESS);
            }
M
Marc Hartmayer 已提交
785
            ATTRIBUTE_FALLTHROUGH;
786
        case 'V':
787
            virshShowVersion(ctl);
788
            exit(EXIT_SUCCESS);
789
        case ':':
790
            for (i = 0; opt[i].name != NULL; i++) {
791 792
                if (opt[i].val == optopt)
                    break;
793
            }
794 795 796 797 798 799
            if (opt[i].name)
                vshError(ctl, _("option '-%c'/'--%s' requires an argument"),
                         optopt, opt[i].name);
            else
                vshError(ctl, _("option '-%c' requires an argument"), optopt);
            exit(EXIT_FAILURE);
800
        case '?':
801 802 803 804
            if (optopt)
                vshError(ctl, _("unsupported option '-%c'. See --help."), optopt);
            else
                vshError(ctl, _("unsupported option '%s'. See --help."), argv[optind - 1]);
805
            exit(EXIT_FAILURE);
806
        default:
807
            vshError(ctl, _("unknown option"));
808 809
            exit(EXIT_FAILURE);
        }
810
        longindex = -1;
811 812
    }

813 814 815
    if (argc == optind) {
        ctl->imode = true;
    } else {
816 817 818 819 820 821 822 823 824 825 826 827 828
        /* 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;
}

static const vshCmdDef virshCmds[] = {
829 830 831 832 833 834
    VSH_CMD_CD,
    VSH_CMD_ECHO,
    VSH_CMD_EXIT,
    VSH_CMD_HELP,
    VSH_CMD_PWD,
    VSH_CMD_QUIT,
835
    VSH_CMD_SELF_TEST,
836 837 838 839 840
    {.name = "connect",
     .handler = cmdConnect,
     .opts = opts_connect,
     .info = info_connect,
     .flags = VSH_CMD_FLAG_NOCONNECT
841 842
    },
    {.name = NULL}
843
};
844

845
static const vshCmdGrp cmdGroups[] = {
846 847 848 849 850 851 852 853 854 855 856 857
    {VIRSH_CMD_GRP_DOM_MANAGEMENT, "domain", domManagementCmds},
    {VIRSH_CMD_GRP_DOM_MONITORING, "monitor", domMonitoringCmds},
    {VIRSH_CMD_GRP_HOST_AND_HV, "host", hostAndHypervisorCmds},
    {VIRSH_CMD_GRP_IFACE, "interface", ifaceCmds},
    {VIRSH_CMD_GRP_NWFILTER, "filter", nwfilterCmds},
    {VIRSH_CMD_GRP_NETWORK, "network", networkCmds},
    {VIRSH_CMD_GRP_NODEDEV, "nodedev", nodedevCmds},
    {VIRSH_CMD_GRP_SECRET, "secret", secretCmds},
    {VIRSH_CMD_GRP_SNAPSHOT, "snapshot", snapshotCmds},
    {VIRSH_CMD_GRP_STORAGE_POOL, "pool", storagePoolCmds},
    {VIRSH_CMD_GRP_STORAGE_VOL, "volume", storageVolCmds},
    {VIRSH_CMD_GRP_VIRSH, "virsh", virshCmds},
858 859
    {NULL, NULL, NULL}
};
K
Karel Zak 已提交
860

861 862 863 864
static const vshClientHooks hooks = {
    .connHandler = virshConnectionHandler
};

865 866 867 868
int
main(int argc, char **argv)
{
    vshControl _ctl, *ctl = &_ctl;
869
    virshControl virshCtl;
E
Eric Blake 已提交
870
    bool ret = true;
K
Karel Zak 已提交
871

872
    memset(ctl, 0, sizeof(vshControl));
873 874
    memset(&virshCtl, 0, sizeof(virshControl));
    ctl->name = "virsh";        /* hardcoded name of the binary */
875
    ctl->env_prefix = "VIRSH";
876
    ctl->log_fd = -1;           /* Initialize log file descriptor */
J
Jiri Denemark 已提交
877
    ctl->debug = VSH_DEBUG_DEFAULT;
878
    ctl->hooks = &hooks;
879 880 881 882 883

    /* In order to distinguish default from setting to 0 */
    ctl->keepalive_interval = -1;
    ctl->keepalive_count = -1;

884 885 886
    ctl->eventPipe[0] = -1;
    ctl->eventPipe[1] = -1;
    ctl->eventTimerId = -1;
887 888 889 890 891 892 893 894
    virshCtl.escapeChar = "^]";     /* Same default as telnet */
    ctl->privData = &virshCtl;

    if (!(progname = strrchr(argv[0], '/')))
        progname = argv[0];
    else
        progname++;
    ctl->progname = progname;
895

896
    if (virGettextInitialize() < 0)
E
Eric Blake 已提交
897
        return EXIT_FAILURE;
898

899 900 901
    if (isatty(STDIN_FILENO)) {
        ctl->istty = true;

902
#ifndef WIN32
903 904
        if (tcgetattr(STDIN_FILENO, &ctl->termattr) < 0)
            ctl->istty = false;
905
#endif
906 907
    }

908 909 910 911 912
    if (virMutexInit(&ctl->lock) < 0) {
        vshError(ctl, "%s", _("Failed to initialize mutex"));
        return EXIT_FAILURE;
    }

913 914 915 916 917
    if (virInitialize() < 0) {
        vshError(ctl, "%s", _("Failed to initialize libvirt"));
        return EXIT_FAILURE;
    }

918 919
    virFileActivateDirOverride(argv[0]);

920
    if (!vshInit(ctl, cmdGroups, NULL))
921
        exit(EXIT_FAILURE);
922

923 924 925
    if (!virshParseArgv(ctl, argc, argv) ||
        !virshInit(ctl)) {
        virshDeinit(ctl);
K
Karel Zak 已提交
926
        exit(EXIT_FAILURE);
D
Daniel P. Berrange 已提交
927
    }
928

929 930 931 932
    if (!ctl->connname)
        ctl->connname = vshStrdup(ctl,
                                  virGetEnvBlockSUID("VIRSH_DEFAULT_CONNECT_URI"));

K
Karel Zak 已提交
933
    if (!ctl->imode) {
934
        ret = vshCommandRun(ctl, ctl->cmd);
935
    } else {
K
Karel Zak 已提交
936 937
        /* interactive mode */
        if (!ctl->quiet) {
K
Karel Zak 已提交
938
            vshPrint(ctl,
939
                     _("Welcome to %s, the virtualization interactive terminal.\n\n"),
940
                     progname);
J
Jim Meyering 已提交
941
            vshPrint(ctl, "%s",
942
                     _("Type:  'help' for help with commands\n"
943
                       "       'quit' to quit\n\n"));
K
Karel Zak 已提交
944
        }
945

K
Karel Zak 已提交
946
        do {
947 948
            const char *prompt = virshCtl.readonly ? VIRSH_PROMPT_RO
                : VIRSH_PROMPT_RW;
949
            ctl->cmdstr =
950
                vshReadline(ctl, prompt);
951 952
            if (ctl->cmdstr == NULL)
                break;          /* EOF */
K
Karel Zak 已提交
953
            if (*ctl->cmdstr) {
954
#if WITH_READLINE
K
Karel Zak 已提交
955
                add_history(ctl->cmdstr);
956
#endif
957
                if (vshCommandStringParse(ctl, ctl->cmdstr))
K
Karel Zak 已提交
958 959
                    vshCommandRun(ctl, ctl->cmd);
            }
960
            VIR_FREE(ctl->cmdstr);
961
        } while (ctl->imode);
K
Karel Zak 已提交
962

963 964
        if (ctl->cmdstr == NULL)
            fputc('\n', stdout);        /* line break after alone prompt */
K
Karel Zak 已提交
965
    }
966

967
    virshDeinit(ctl);
K
Karel Zak 已提交
968
    exit(ret ? EXIT_SUCCESS : EXIT_FAILURE);
969
}