bhyve_driver.c 47.9 KB
Newer Older
R
Roman Bogorodskiy 已提交
1 2 3 4
/*
 * bhyve_driver.c: core driver methods for managing bhyve guests
 *
 * Copyright (C) 2014 Roman Bogorodskiy
5
 * Copyright (C) 2014-2015 Red Hat, Inc.
R
Roman Bogorodskiy 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * 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/>.
 */

#include <config.h>

24
#include <fcntl.h>
R
Roman Bogorodskiy 已提交
25 26 27 28 29 30 31 32 33 34 35
#include <sys/utsname.h>

#include "virerror.h"
#include "datatypes.h"
#include "virbuffer.h"
#include "viruuid.h"
#include "configmake.h"
#include "viralloc.h"
#include "network_conf.h"
#include "interface_conf.h"
#include "domain_audit.h"
R
Roman Bogorodskiy 已提交
36
#include "domain_event.h"
R
Roman Bogorodskiy 已提交
37
#include "snapshot_conf.h"
38
#include "virfdstream.h"
R
Roman Bogorodskiy 已提交
39 40
#include "storage_conf.h"
#include "node_device_conf.h"
41
#include "virdomainobjlist.h"
R
Roman Bogorodskiy 已提交
42 43 44 45
#include "virxml.h"
#include "virthread.h"
#include "virlog.h"
#include "virfile.h"
46
#include "virpidfile.h"
R
Roman Bogorodskiy 已提交
47 48 49 50 51
#include "virtypedparam.h"
#include "virrandom.h"
#include "virstring.h"
#include "cpu/cpu.h"
#include "viraccessapicheck.h"
52 53
#include "virhostcpu.h"
#include "virhostmem.h"
54
#include "virportallocator.h"
55
#include "conf/domain_capabilities.h"
R
Roman Bogorodskiy 已提交
56

57
#include "bhyve_conf.h"
58
#include "bhyve_device.h"
R
Roman Bogorodskiy 已提交
59
#include "bhyve_driver.h"
60
#include "bhyve_command.h"
61
#include "bhyve_parse_command.h"
62
#include "bhyve_domain.h"
R
Roman Bogorodskiy 已提交
63
#include "bhyve_process.h"
64
#include "bhyve_capabilities.h"
R
Roman Bogorodskiy 已提交
65 66 67

#define VIR_FROM_THIS   VIR_FROM_BHYVE

68 69
VIR_LOG_INIT("bhyve.bhyve_driver");

R
Roman Bogorodskiy 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83
bhyveConnPtr bhyve_driver = NULL;

void
bhyveDriverLock(bhyveConnPtr driver)
{
    virMutexLock(&driver->lock);
}

void
bhyveDriverUnlock(bhyveConnPtr driver)
{
    virMutexUnlock(&driver->lock);
}

84 85 86 87 88 89 90 91 92 93 94
static int
bhyveAutostartDomain(virDomainObjPtr vm, void *opaque)
{
    const struct bhyveAutostartData *data = opaque;
    int ret = 0;
    virObjectLock(vm);
    if (vm->autostart && !virDomainObjIsActive(vm)) {
        virResetLastError();
        ret = virBhyveProcessStart(data->conn, data->driver, vm,
                                   VIR_DOMAIN_RUNNING_BOOTED, 0);
        if (ret < 0) {
95 96 97
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Failed to autostart VM '%s': %s"),
                           vm->def->name, virGetLastErrorMessage());
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
        }
    }
    virObjectUnlock(vm);
    return ret;
}

static void
bhyveAutostartDomains(bhyveConnPtr driver)
{
    /* XXX: Figure out a better way todo this. The domain
     * startup code needs a connection handle in order
     * to lookup the bridge associated with a virtual
     * network
     */
    virConnectPtr conn = virConnectOpen("bhyve:///system");
    /* Ignoring NULL conn which is mostly harmless here */

    struct bhyveAutostartData data = { driver, conn };

117
    virDomainObjListForEach(driver->domains, false, bhyveAutostartDomain, &data);
118 119 120 121

    virObjectUnref(conn);
}

122 123 124 125 126 127 128 129 130 131
/**
 * bhyveDriverGetCapabilities:
 *
 * Get a reference to the virCapsPtr instance for the
 * driver.
 *
 * The caller must release the reference with virObjetUnref
 *
 * Returns: a reference to a virCapsPtr instance or NULL
 */
M
Michal Privoznik 已提交
132
virCapsPtr ATTRIBUTE_NONNULL(1)
133
bhyveDriverGetCapabilities(bhyveConnPtr driver)
R
Roman Bogorodskiy 已提交
134
{
135
    return virObjectRef(driver->caps);
R
Roman Bogorodskiy 已提交
136 137 138 139 140 141
}

static char *
bhyveConnectGetCapabilities(virConnectPtr conn)
{
    bhyveConnPtr privconn = conn->privateData;
142
    virCapsPtr caps;
143
    char *xml = NULL;
R
Roman Bogorodskiy 已提交
144 145 146 147

    if (virConnectGetCapabilitiesEnsureACL(conn) < 0)
        return NULL;

148
    if (!(caps = bhyveDriverGetCapabilities(privconn))) {
149 150
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Unable to get Capabilities"));
151 152
        goto cleanup;
    }
153

154
    if (!(xml = virCapabilitiesFormatXML(caps)))
155
        goto cleanup;
R
Roman Bogorodskiy 已提交
156

157 158
 cleanup:
    virObjectUnref(caps);
R
Roman Bogorodskiy 已提交
159 160 161 162 163 164 165 166 167 168
    return xml;
}

static virDomainObjPtr
bhyveDomObjFromDomain(virDomainPtr domain)
{
    virDomainObjPtr vm;
    bhyveConnPtr privconn = domain->conn->privateData;
    char uuidstr[VIR_UUID_STRING_BUFLEN];

169
    vm = virDomainObjListFindByUUID(privconn->domains, domain->uuid);
R
Roman Bogorodskiy 已提交
170 171 172 173 174 175 176 177 178 179 180
    if (!vm) {
        virUUIDFormat(domain->uuid, uuidstr);
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("no domain with matching uuid '%s' (%s)"),
                       uuidstr, domain->name);
        return NULL;
    }

    return vm;
}

181 182 183 184 185 186 187

static int
bhyveConnectURIProbe(char **uri)
{
    if (bhyve_driver == NULL)
        return 0;

188 189
    *uri = g_strdup("bhyve:///system");
    return 1;
190 191 192
}


R
Roman Bogorodskiy 已提交
193 194
static virDrvOpenStatus
bhyveConnectOpen(virConnectPtr conn,
J
Ján Tomko 已提交
195 196
                 virConnectAuthPtr auth G_GNUC_UNUSED,
                 virConfPtr conf G_GNUC_UNUSED,
R
Roman Bogorodskiy 已提交
197 198
                 unsigned int flags)
{
199
    virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);
R
Roman Bogorodskiy 已提交
200

201 202 203 204 205 206
    if (STRNEQ(conn->uri->path, "/system")) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unexpected bhyve URI path '%s', try bhyve:///system"),
                       conn->uri->path);
        return VIR_DRV_OPEN_ERROR;
    }
207

208 209 210 211 212
    if (bhyve_driver == NULL) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("bhyve state driver is not active"));
        return VIR_DRV_OPEN_ERROR;
    }
R
Roman Bogorodskiy 已提交
213

214 215
    if (virConnectOpenEnsureACL(conn) < 0)
        return VIR_DRV_OPEN_ERROR;
R
Roman Bogorodskiy 已提交
216

217
    conn->privateData = bhyve_driver;
R
Roman Bogorodskiy 已提交
218

219
    return VIR_DRV_OPEN_SUCCESS;
R
Roman Bogorodskiy 已提交
220 221 222 223 224
}

static int
bhyveConnectClose(virConnectPtr conn)
{
225 226 227
    bhyveConnPtr privconn = conn->privateData;

    virCloseCallbacksRun(privconn->closeCallbacks, conn, privconn->domains, privconn);
R
Roman Bogorodskiy 已提交
228 229 230 231 232 233
    conn->privateData = NULL;

    return 0;
}

static char *
234
bhyveConnectGetHostname(virConnectPtr conn)
R
Roman Bogorodskiy 已提交
235 236 237 238 239 240 241
{
    if (virConnectGetHostnameEnsureACL(conn) < 0)
        return NULL;

    return virGetHostname();
}

242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
static char *
bhyveConnectGetSysinfo(virConnectPtr conn, unsigned int flags)
{
    bhyveConnPtr privconn = conn->privateData;
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    virCheckFlags(0, NULL);

    if (virConnectGetSysinfoEnsureACL(conn) < 0)
        return NULL;

    if (!privconn->hostsysinfo) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Host SMBIOS information is not available"));
        return NULL;
    }

    if (virSysinfoFormat(&buf, privconn->hostsysinfo) < 0)
        return NULL;
261
    if (virBufferCheckError(&buf) < 0)
262 263 264 265 266
        return NULL;

    return virBufferContentAndReset(&buf);
}

R
Roman Bogorodskiy 已提交
267
static int
268
bhyveConnectGetVersion(virConnectPtr conn, unsigned long *version)
R
Roman Bogorodskiy 已提交
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
{
    struct utsname ver;

    if (virConnectGetVersionEnsureACL(conn) < 0)
        return -1;

    uname(&ver);

    if (virParseVersionString(ver.release, version, true) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unknown release: %s"), ver.release);
        return -1;
    }

    return 0;
}

static int
bhyveDomainGetInfo(virDomainPtr domain, virDomainInfoPtr info)
{
    virDomainObjPtr vm;
    int ret = -1;

    if (!(vm = bhyveDomObjFromDomain(domain)))
        goto cleanup;

    if (virDomainGetInfoEnsureACL(domain->conn, vm->def) < 0)
        goto cleanup;

298 299 300 301 302 303 304
    if (virDomainObjIsActive(vm)) {
        if (virBhyveGetDomainTotalCpuStats(vm, &(info->cpuTime)) < 0)
            goto cleanup;
    } else {
        info->cpuTime = 0;
    }

R
Roman Bogorodskiy 已提交
305
    info->state = virDomainObjGetState(vm, NULL);
306
    info->maxMem = virDomainDefGetMemoryTotal(vm->def);
307
    info->nrVirtCpu = virDomainDefGetVcpus(vm->def);
R
Roman Bogorodskiy 已提交
308 309
    ret = 0;

310
 cleanup:
311
    virDomainObjEndAPI(&vm);
R
Roman Bogorodskiy 已提交
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
    return ret;
}

static int
bhyveDomainGetState(virDomainPtr domain,
                    int *state,
                    int *reason,
                    unsigned int flags)
{
    virDomainObjPtr vm;
    int ret = -1;

    virCheckFlags(0, -1);

    if (!(vm = bhyveDomObjFromDomain(domain)))
        goto cleanup;

    if (virDomainGetStateEnsureACL(domain->conn, vm->def) < 0)
       goto cleanup;

    *state = virDomainObjGetState(vm, reason);
    ret = 0;

335
 cleanup:
336
    virDomainObjEndAPI(&vm);
R
Roman Bogorodskiy 已提交
337 338 339
    return ret;
}

340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
static int
bhyveDomainGetAutostart(virDomainPtr domain, int *autostart)
{
    virDomainObjPtr vm;
    int ret = -1;

    if (!(vm = bhyveDomObjFromDomain(domain)))
        goto cleanup;

    if (virDomainGetAutostartEnsureACL(domain->conn, vm->def) < 0)
        goto cleanup;

    *autostart = vm->autostart;
    ret = 0;

 cleanup:
356
    virDomainObjEndAPI(&vm);
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
    return ret;
}

static int
bhyveDomainSetAutostart(virDomainPtr domain, int autostart)
{
    virDomainObjPtr vm;
    char *configFile = NULL;
    char *autostartLink = NULL;
    int ret = -1;

    if (!(vm = bhyveDomObjFromDomain(domain)))
        goto cleanup;

    if (virDomainSetAutostartEnsureACL(domain->conn, vm->def) < 0)
        goto cleanup;

    if (!vm->persistent) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("cannot set autostart for transient domain"));
        goto cleanup;
    }

    autostart = (autostart != 0);

    if (vm->autostart != autostart) {
        if ((configFile = virDomainConfigFile(BHYVE_CONFIG_DIR, vm->def->name)) == NULL)
            goto cleanup;
        if ((autostartLink = virDomainConfigFile(BHYVE_AUTOSTART_DIR, vm->def->name)) == NULL)
            goto cleanup;

        if (autostart) {
            if (virFileMakePath(BHYVE_AUTOSTART_DIR) < 0) {
                virReportSystemError(errno,
                                     _("cannot create autostart directory %s"),
                                     BHYVE_AUTOSTART_DIR);
                goto cleanup;
            }

            if (symlink(configFile, autostartLink) < 0) {
                virReportSystemError(errno,
                                     _("Failed to create symlink '%s' to '%s'"),
                                     autostartLink, configFile);
                goto cleanup;
            }
        } else {
            if (unlink(autostartLink) < 0 && errno != ENOENT && errno != ENOTDIR) {
                virReportSystemError(errno,
                                     _("Failed to delete symlink '%s'"),
                                     autostartLink);
                goto cleanup;
            }
        }

        vm->autostart = autostart;
    }

    ret = 0;

 cleanup:
    VIR_FREE(configFile);
    VIR_FREE(autostartLink);
419
    virDomainObjEndAPI(&vm);
420 421 422
    return ret;
}

423 424 425 426 427 428 429 430 431 432 433 434 435 436
static int
bhyveDomainIsActive(virDomainPtr domain)
{
    virDomainObjPtr obj;
    int ret = -1;

    if (!(obj = bhyveDomObjFromDomain(domain)))
        goto cleanup;

    if (virDomainIsActiveEnsureACL(domain->conn, obj->def) < 0)
        goto cleanup;

    ret = virDomainObjIsActive(obj);

437
 cleanup:
438
    virDomainObjEndAPI(&obj);
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
    return ret;
}

static int
bhyveDomainIsPersistent(virDomainPtr domain)
{
    virDomainObjPtr obj;
    int ret = -1;

    if (!(obj = bhyveDomObjFromDomain(domain)))
        goto cleanup;

    if (virDomainIsPersistentEnsureACL(domain->conn, obj->def) < 0)
        goto cleanup;

    ret = obj->persistent;

456
 cleanup:
457
    virDomainObjEndAPI(&obj);
458 459 460
    return ret;
}

461 462 463 464 465 466 467 468 469 470 471 472
static char *
bhyveDomainGetOSType(virDomainPtr dom)
{
    virDomainObjPtr vm;
    char *ret = NULL;

    if (!(vm = bhyveDomObjFromDomain(dom)))
        goto cleanup;

    if (virDomainGetOSTypeEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

473
    ret = g_strdup(virDomainOSTypeToString(vm->def->os.type));
474 475

 cleanup:
476
    virDomainObjEndAPI(&vm);
477 478 479
    return ret;
}

R
Roman Bogorodskiy 已提交
480 481 482
static char *
bhyveDomainGetXMLDesc(virDomainPtr domain, unsigned int flags)
{
R
Roman Bogorodskiy 已提交
483
    bhyveConnPtr privconn = domain->conn->privateData;
R
Roman Bogorodskiy 已提交
484
    virDomainObjPtr vm;
485
    virCapsPtr caps = NULL;
R
Roman Bogorodskiy 已提交
486 487
    char *ret = NULL;

488 489
    virCheckFlags(VIR_DOMAIN_XML_COMMON_FLAGS, NULL);

R
Roman Bogorodskiy 已提交
490 491 492 493 494 495
    if (!(vm = bhyveDomObjFromDomain(domain)))
        goto cleanup;

    if (virDomainGetXMLDescEnsureACL(domain->conn, vm->def, flags) < 0)
        goto cleanup;

496 497 498 499 500
    caps = bhyveDriverGetCapabilities(privconn);
    if (!caps)
        goto cleanup;

    ret = virDomainDefFormat(vm->def, caps,
501
                             virDomainDefFormatConvertXMLFlags(flags));
R
Roman Bogorodskiy 已提交
502

503
    virObjectUnref(caps);
504
 cleanup:
505
    virDomainObjEndAPI(&vm);
R
Roman Bogorodskiy 已提交
506 507 508 509
    return ret;
}

static virDomainPtr
510
bhyveDomainDefineXMLFlags(virConnectPtr conn, const char *xml, unsigned int flags)
R
Roman Bogorodskiy 已提交
511 512 513 514 515 516
{
    bhyveConnPtr privconn = conn->privateData;
    virDomainPtr dom = NULL;
    virDomainDefPtr def = NULL;
    virDomainDefPtr oldDef = NULL;
    virDomainObjPtr vm = NULL;
R
Roman Bogorodskiy 已提交
517
    virObjectEventPtr event = NULL;
518
    virCapsPtr caps = NULL;
519
    unsigned int parse_flags = VIR_DOMAIN_DEF_PARSE_INACTIVE;
520

521 522 523
    virCheckFlags(VIR_DOMAIN_DEFINE_VALIDATE, NULL);

    if (flags & VIR_DOMAIN_DEFINE_VALIDATE)
524
        parse_flags |= VIR_DOMAIN_DEF_PARSE_VALIDATE_SCHEMA;
525

526 527 528
    caps = bhyveDriverGetCapabilities(privconn);
    if (!caps)
        return NULL;
R
Roman Bogorodskiy 已提交
529

530
    if ((def = virDomainDefParseString(xml, caps, privconn->xmlopt,
531
                                       NULL, parse_flags)) == NULL)
R
Roman Bogorodskiy 已提交
532 533
        goto cleanup;

534 535 536
    if (virXMLCheckIllegalChars("name", def->name, "\n") < 0)
        goto cleanup;

537
    if (virDomainDefineXMLFlagsEnsureACL(conn, def) < 0)
R
Roman Bogorodskiy 已提交
538 539
        goto cleanup;

540 541 542
    if (bhyveDomainAssignAddresses(def, NULL) < 0)
        goto cleanup;

R
Roman Bogorodskiy 已提交
543 544 545 546 547
    if (!(vm = virDomainObjListAdd(privconn->domains, def,
                                   privconn->xmlopt,
                                   0, &oldDef)))
        goto cleanup;
    def = NULL;
548
    vm->persistent = 1;
R
Roman Bogorodskiy 已提交
549

550
    if (virDomainSaveConfig(BHYVE_CONFIG_DIR, caps,
551 552 553 554 555
                            vm->newDef ? vm->newDef : vm->def) < 0) {
        virDomainObjListRemove(privconn->domains, vm);
        goto cleanup;
    }

R
Roman Bogorodskiy 已提交
556 557 558 559 560 561
    event = virDomainEventLifecycleNewFromObj(vm,
                                              VIR_DOMAIN_EVENT_DEFINED,
                                              !oldDef ?
                                              VIR_DOMAIN_EVENT_DEFINED_ADDED :
                                              VIR_DOMAIN_EVENT_DEFINED_UPDATED);

562
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid, vm->def->id);
R
Roman Bogorodskiy 已提交
563

564
 cleanup:
565
    virObjectUnref(caps);
R
Roman Bogorodskiy 已提交
566
    virDomainDefFree(def);
567
    virDomainDefFree(oldDef);
568
    virDomainObjEndAPI(&vm);
569
    virObjectEventStateQueue(privconn->domainEventState, event);
R
Roman Bogorodskiy 已提交
570 571 572 573

    return dom;
}

574 575 576 577 578 579
static virDomainPtr
bhyveDomainDefineXML(virConnectPtr conn, const char *xml)
{
    return bhyveDomainDefineXMLFlags(conn, xml, 0);
}

580
static int
E
Eric Blake 已提交
581
bhyveDomainUndefineFlags(virDomainPtr domain, unsigned int flags)
582 583
{
    bhyveConnPtr privconn = domain->conn->privateData;
R
Roman Bogorodskiy 已提交
584
    virObjectEventPtr event = NULL;
585 586 587
    virDomainObjPtr vm;
    int ret = -1;

E
Eric Blake 已提交
588
    virCheckFlags(0, -1);
589 590 591
    if (!(vm = bhyveDomObjFromDomain(domain)))
        goto cleanup;

E
Eric Blake 已提交
592
    if (virDomainUndefineFlagsEnsureACL(domain->conn, vm->def) < 0)
593 594 595 596 597 598 599 600 601 602 603 604 605
        goto cleanup;

    if (!vm->persistent) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Cannot undefine transient domain"));
        goto cleanup;
    }

    if (virDomainDeleteConfig(BHYVE_CONFIG_DIR,
                              BHYVE_AUTOSTART_DIR,
                              vm) < 0)
        goto cleanup;

R
Roman Bogorodskiy 已提交
606 607 608 609
    event = virDomainEventLifecycleNewFromObj(vm,
                                              VIR_DOMAIN_EVENT_UNDEFINED,
                                              VIR_DOMAIN_EVENT_UNDEFINED_REMOVED);

610
    if (virDomainObjIsActive(vm))
611
        vm->persistent = 0;
612
    else
613 614 615 616
        virDomainObjListRemove(privconn->domains, vm);

    ret = 0;

617
 cleanup:
618
    virDomainObjEndAPI(&vm);
619
    virObjectEventStateQueue(privconn->domainEventState, event);
620 621 622
    return ret;
}

E
Eric Blake 已提交
623 624 625 626 627 628
static int
bhyveDomainUndefine(virDomainPtr domain)
{
    return bhyveDomainUndefineFlags(domain, 0);
}

R
Roman Bogorodskiy 已提交
629 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 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
static int
bhyveConnectListDomains(virConnectPtr conn, int *ids, int maxids)
{
    bhyveConnPtr privconn = conn->privateData;
    int n;

    if (virConnectListDomainsEnsureACL(conn) < 0)
        return -1;

    n = virDomainObjListGetActiveIDs(privconn->domains, ids, maxids,
                                     virConnectListDomainsCheckACL, conn);

    return n;
}

static int
bhyveConnectNumOfDomains(virConnectPtr conn)
{
    bhyveConnPtr privconn = conn->privateData;
    int count;

    if (virConnectNumOfDomainsEnsureACL(conn) < 0)
        return -1;

    count = virDomainObjListNumOfDomains(privconn->domains, true,
                                         virConnectNumOfDomainsCheckACL, conn);

    return count;
}

static int
bhyveConnectListDefinedDomains(virConnectPtr conn, char **const names,
                               int maxnames)
{
    bhyveConnPtr privconn = conn->privateData;
    int n;

    if (virConnectListDefinedDomainsEnsureACL(conn) < 0)
        return -1;

    memset(names, 0, sizeof(*names) * maxnames);
    n = virDomainObjListGetInactiveNames(privconn->domains, names,
                                         maxnames, virConnectListDefinedDomainsCheckACL, conn);

    return n;
}

static int
bhyveConnectNumOfDefinedDomains(virConnectPtr conn)
{
    bhyveConnPtr privconn = conn->privateData;
    int count;

    if (virConnectNumOfDefinedDomainsEnsureACL(conn) < 0)
        return -1;

    count = virDomainObjListNumOfDomains(privconn->domains, false,
                                         virConnectNumOfDefinedDomainsCheckACL, conn);

    return count;
}

691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718
static char *
bhyveConnectDomainXMLToNative(virConnectPtr conn,
                              const char *format,
                              const char *xmlData,
                              unsigned int flags)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    bhyveConnPtr privconn = conn->privateData;
    virDomainDefPtr def = NULL;
    virCommandPtr cmd = NULL, loadcmd = NULL;
    virCapsPtr caps = NULL;
    char *ret = NULL;

    virCheckFlags(0, NULL);

    if (virConnectDomainXMLToNativeEnsureACL(conn) < 0)
        goto cleanup;

    if (STRNEQ(format, BHYVE_CONFIG_FORMAT_ARGV)) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("Unsupported config type %s"), format);
        goto cleanup;
    }

    if (!(caps = bhyveDriverGetCapabilities(privconn)))
        goto cleanup;

    if (!(def = virDomainDefParseString(xmlData, caps, privconn->xmlopt,
719
                                        NULL, VIR_DOMAIN_DEF_PARSE_INACTIVE)))
720 721
        goto cleanup;

722 723 724
    if (bhyveDomainAssignAddresses(def, NULL) < 0)
        goto cleanup;

725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
    if (def->os.bootloader == NULL &&
        def->os.loader) {

        if ((def->os.loader->readonly != VIR_TRISTATE_BOOL_YES) ||
            (def->os.loader->type != VIR_DOMAIN_LOADER_TYPE_PFLASH)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Only read-only pflash is supported."));
            goto cleanup;
        }

        if ((bhyveDriverGetCaps(conn) & BHYVE_CAP_LPC_BOOTROM) == 0) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Installed bhyve binary does not support "
                          "bootrom"));
            goto cleanup;
        }
    } else {
        if (!(loadcmd = virBhyveProcessBuildLoadCmd(conn, def, "<device.map>",
743
                                                NULL)))
744 745
            goto cleanup;

746
        virBufferAdd(&buf, virCommandToString(loadcmd, false), -1);
747 748
        virBufferAddChar(&buf, '\n');
    }
749

R
Roman Bogorodskiy 已提交
750
    if (!(cmd = virBhyveProcessBuildBhyveCmd(conn, def, true)))
751 752
        goto cleanup;

753
    virBufferAdd(&buf, virCommandToString(cmd, false), -1);
754

755
    if (virBufferCheckError(&buf) < 0)
756 757 758 759 760 761 762 763 764 765 766 767
        goto cleanup;

    ret = virBufferContentAndReset(&buf);

 cleanup:
    virCommandFree(loadcmd);
    virCommandFree(cmd);
    virDomainDefFree(def);
    virObjectUnref(caps);
    return ret;
}

R
Roman Bogorodskiy 已提交
768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794
static int
bhyveConnectListAllDomains(virConnectPtr conn,
                           virDomainPtr **domains,
                           unsigned int flags)
{
    bhyveConnPtr privconn = conn->privateData;
    int ret = -1;

    virCheckFlags(VIR_CONNECT_LIST_DOMAINS_FILTERS_ALL, -1);

    if (virConnectListAllDomainsEnsureACL(conn) < 0)
        return -1;

    ret = virDomainObjListExport(privconn->domains, conn, domains,
                                 virConnectListAllDomainsCheckACL, flags);

    return ret;
}

static virDomainPtr
bhyveDomainLookupByUUID(virConnectPtr conn,
                        const unsigned char *uuid)
{
    bhyveConnPtr privconn = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;

795
    vm = virDomainObjListFindByUUID(privconn->domains, uuid);
R
Roman Bogorodskiy 已提交
796 797 798 799 800 801 802 803 804 805 806 807

    if (!vm) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(uuid, uuidstr);
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching uuid '%s'"), uuidstr);
        goto cleanup;
    }

    if (virDomainLookupByUUIDEnsureACL(conn, vm->def) < 0)
        goto cleanup;

808
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid, vm->def->id);
R
Roman Bogorodskiy 已提交
809

810
 cleanup:
811
    virDomainObjEndAPI(&vm);
R
Roman Bogorodskiy 已提交
812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832
    return dom;
}

static virDomainPtr bhyveDomainLookupByName(virConnectPtr conn,
                                            const char *name)
{
    bhyveConnPtr privconn = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;

    vm = virDomainObjListFindByName(privconn->domains, name);

    if (!vm) {
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("no domain with matching name '%s'"), name);
        goto cleanup;
    }

    if (virDomainLookupByNameEnsureACL(conn, vm->def) < 0)
        goto cleanup;

833
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid, vm->def->id);
R
Roman Bogorodskiy 已提交
834

835
 cleanup:
836
    virDomainObjEndAPI(&vm);
R
Roman Bogorodskiy 已提交
837 838 839
    return dom;
}

W
Wojciech Macek 已提交
840 841 842 843 844 845 846 847
static virDomainPtr
bhyveDomainLookupByID(virConnectPtr conn,
                      int id)
{
    bhyveConnPtr privconn = conn->privateData;
    virDomainObjPtr vm;
    virDomainPtr dom = NULL;

848
    vm = virDomainObjListFindByID(privconn->domains, id);
W
Wojciech Macek 已提交
849 850 851 852 853 854 855 856 857 858

    if (!vm) {
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("No domain with matching ID '%d'"), id);
        goto cleanup;
    }

    if (virDomainLookupByIDEnsureACL(conn, vm->def) < 0)
        goto cleanup;

859
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid, vm->def->id);
W
Wojciech Macek 已提交
860 861

 cleanup:
862
    virDomainObjEndAPI(&vm);
W
Wojciech Macek 已提交
863 864 865
    return dom;
}

R
Roman Bogorodskiy 已提交
866
static int
867 868
bhyveDomainCreateWithFlags(virDomainPtr dom,
                           unsigned int flags)
R
Roman Bogorodskiy 已提交
869 870 871
{
    bhyveConnPtr privconn = dom->conn->privateData;
    virDomainObjPtr vm;
R
Roman Bogorodskiy 已提交
872
    virObjectEventPtr event = NULL;
873
    unsigned int start_flags = 0;
R
Roman Bogorodskiy 已提交
874 875
    int ret = -1;

876 877 878 879 880
    virCheckFlags(VIR_DOMAIN_START_AUTODESTROY, -1);

    if (flags & VIR_DOMAIN_START_AUTODESTROY)
        start_flags |= VIR_BHYVE_PROCESS_START_AUTODESTROY;

R
Roman Bogorodskiy 已提交
881 882 883
    if (!(vm = bhyveDomObjFromDomain(dom)))
        goto cleanup;

884
    if (virDomainCreateWithFlagsEnsureACL(dom->conn, vm->def) < 0)
R
Roman Bogorodskiy 已提交
885 886 887 888 889 890 891 892 893
        goto cleanup;

    if (virDomainObjIsActive(vm)) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("Domain is already running"));
        goto cleanup;
    }

    ret = virBhyveProcessStart(dom->conn, privconn, vm,
894 895
                               VIR_DOMAIN_RUNNING_BOOTED,
                               start_flags);
R
Roman Bogorodskiy 已提交
896

R
Roman Bogorodskiy 已提交
897 898 899 900 901
    if (ret == 0)
        event = virDomainEventLifecycleNewFromObj(vm,
                                                  VIR_DOMAIN_EVENT_STARTED,
                                                  VIR_DOMAIN_EVENT_STARTED_BOOTED);

902
 cleanup:
903
    virDomainObjEndAPI(&vm);
904
    virObjectEventStateQueue(privconn->domainEventState, event);
R
Roman Bogorodskiy 已提交
905 906 907
    return ret;
}

908 909 910 911 912 913
static int
bhyveDomainCreate(virDomainPtr dom)
{
    return bhyveDomainCreateWithFlags(dom, 0);
}

W
Wojciech Macek 已提交
914 915 916 917 918 919 920 921 922
static virDomainPtr
bhyveDomainCreateXML(virConnectPtr conn,
                     const char *xml,
                     unsigned int flags)
{
    bhyveConnPtr privconn = conn->privateData;
    virDomainPtr dom = NULL;
    virDomainDefPtr def = NULL;
    virDomainObjPtr vm = NULL;
R
Roman Bogorodskiy 已提交
923
    virObjectEventPtr event = NULL;
W
Wojciech Macek 已提交
924 925
    virCapsPtr caps = NULL;
    unsigned int start_flags = 0;
926
    unsigned int parse_flags = VIR_DOMAIN_DEF_PARSE_INACTIVE;
W
Wojciech Macek 已提交
927

928 929
    virCheckFlags(VIR_DOMAIN_START_AUTODESTROY |
                  VIR_DOMAIN_START_VALIDATE, NULL);
W
Wojciech Macek 已提交
930

931
    if (flags & VIR_DOMAIN_START_VALIDATE)
932
        parse_flags |= VIR_DOMAIN_DEF_PARSE_VALIDATE_SCHEMA;
W
Wojciech Macek 已提交
933 934 935 936 937 938 939 940
    if (flags & VIR_DOMAIN_START_AUTODESTROY)
        start_flags |= VIR_BHYVE_PROCESS_START_AUTODESTROY;

    caps = bhyveDriverGetCapabilities(privconn);
    if (!caps)
        return NULL;

    if ((def = virDomainDefParseString(xml, caps, privconn->xmlopt,
941
                                       NULL, parse_flags)) == NULL)
W
Wojciech Macek 已提交
942 943 944 945 946
        goto cleanup;

    if (virDomainCreateXMLEnsureACL(conn, def) < 0)
        goto cleanup;

947 948 949
    if (bhyveDomainAssignAddresses(def, NULL) < 0)
        goto cleanup;

W
Wojciech Macek 已提交
950 951
    if (!(vm = virDomainObjListAdd(privconn->domains, def,
                                   privconn->xmlopt,
952
                                   VIR_DOMAIN_OBJ_LIST_ADD_LIVE |
W
Wojciech Macek 已提交
953 954 955 956 957 958 959 960
                                   VIR_DOMAIN_OBJ_LIST_ADD_CHECK_LIVE, NULL)))
        goto cleanup;
    def = NULL;

    if (virBhyveProcessStart(conn, privconn, vm,
                             VIR_DOMAIN_RUNNING_BOOTED,
                             start_flags) < 0) {
        /* If domain is not persistent, remove its data */
961
        if (!vm->persistent)
W
Wojciech Macek 已提交
962 963 964 965
            virDomainObjListRemove(privconn->domains, vm);
        goto cleanup;
    }

R
Roman Bogorodskiy 已提交
966 967 968 969
    event = virDomainEventLifecycleNewFromObj(vm,
                                              VIR_DOMAIN_EVENT_STARTED,
                                              VIR_DOMAIN_EVENT_STARTED_BOOTED);

970
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid, vm->def->id);
W
Wojciech Macek 已提交
971 972 973 974

 cleanup:
    virObjectUnref(caps);
    virDomainDefFree(def);
975
    virDomainObjEndAPI(&vm);
976
    virObjectEventStateQueue(privconn->domainEventState, event);
W
Wojciech Macek 已提交
977 978 979 980

    return dom;
}

R
Roman Bogorodskiy 已提交
981
static int
E
Eric Blake 已提交
982
bhyveDomainDestroyFlags(virDomainPtr dom, unsigned int flags)
R
Roman Bogorodskiy 已提交
983 984 985
{
    bhyveConnPtr privconn = dom->conn->privateData;
    virDomainObjPtr vm;
R
Roman Bogorodskiy 已提交
986
    virObjectEventPtr event = NULL;
R
Roman Bogorodskiy 已提交
987 988
    int ret = -1;

E
Eric Blake 已提交
989 990
    virCheckFlags(0, -1);

R
Roman Bogorodskiy 已提交
991 992 993
    if (!(vm = bhyveDomObjFromDomain(dom)))
        goto cleanup;

E
Eric Blake 已提交
994
    if (virDomainDestroyFlagsEnsureACL(dom->conn, vm->def) < 0)
R
Roman Bogorodskiy 已提交
995 996
        goto cleanup;

997
    if (virDomainObjCheckActive(vm) < 0)
998 999
        goto cleanup;

R
Roman Bogorodskiy 已提交
1000
    ret = virBhyveProcessStop(privconn, vm, VIR_DOMAIN_SHUTOFF_DESTROYED);
R
Roman Bogorodskiy 已提交
1001 1002 1003
    event = virDomainEventLifecycleNewFromObj(vm,
                                              VIR_DOMAIN_EVENT_STOPPED,
                                              VIR_DOMAIN_EVENT_STOPPED_DESTROYED);
R
Roman Bogorodskiy 已提交
1004

1005
    if (!vm->persistent)
W
Wojciech Macek 已提交
1006 1007
        virDomainObjListRemove(privconn->domains, vm);

1008
 cleanup:
1009
    virDomainObjEndAPI(&vm);
1010
    virObjectEventStateQueue(privconn->domainEventState, event);
R
Roman Bogorodskiy 已提交
1011 1012 1013
    return ret;
}

1014
static int
E
Eric Blake 已提交
1015 1016 1017 1018 1019 1020 1021
bhyveDomainDestroy(virDomainPtr dom)
{
    return bhyveDomainDestroyFlags(dom, 0);
}

static int
bhyveDomainShutdownFlags(virDomainPtr dom, unsigned int flags)
1022 1023 1024 1025
{
    virDomainObjPtr vm;
    int ret = -1;

E
Eric Blake 已提交
1026 1027
    virCheckFlags(0, -1);

1028 1029 1030
    if (!(vm = bhyveDomObjFromDomain(dom)))
        goto cleanup;

E
Eric Blake 已提交
1031
    if (virDomainShutdownFlagsEnsureACL(dom->conn, vm->def, flags) < 0)
1032 1033
        goto cleanup;

1034
    if (virDomainObjCheckActive(vm) < 0)
1035 1036 1037 1038 1039
        goto cleanup;

    ret = virBhyveProcessShutdown(vm);

 cleanup:
1040
    virDomainObjEndAPI(&vm);
1041 1042 1043
    return ret;
}

E
Eric Blake 已提交
1044 1045 1046 1047 1048 1049
static int
bhyveDomainShutdown(virDomainPtr dom)
{
    return bhyveDomainShutdownFlags(dom, 0);
}

1050 1051
static int
bhyveDomainOpenConsole(virDomainPtr dom,
J
Ján Tomko 已提交
1052
                       const char *dev_name G_GNUC_UNUSED,
1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
                       virStreamPtr st,
                       unsigned int flags)
{
    virDomainObjPtr vm = NULL;
    virDomainChrDefPtr chr = NULL;
    int ret = -1;

    virCheckFlags(0, -1);

    if (!(vm = bhyveDomObjFromDomain(dom)))
        goto cleanup;

    if (virDomainOpenConsoleEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

1068
    if (virDomainObjCheckActive(vm) < 0)
1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
        goto cleanup;

    if (!vm->def->nserials) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("no console devices available"));
        goto cleanup;
    }

    chr = vm->def->serials[0];

1079
    if (virFDStreamOpenPTY(st, chr->source->data.nmdm.slave,
1080 1081 1082 1083 1084 1085
                           0, 0, O_RDWR) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
1086
    virDomainObjEndAPI(&vm);
1087 1088 1089
    return ret;
}

1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115
static int
bhyveDomainSetMetadata(virDomainPtr dom,
                       int type,
                       const char *metadata,
                       const char *key,
                       const char *uri,
                       unsigned int flags)
{
    bhyveConnPtr privconn = dom->conn->privateData;
    virDomainObjPtr vm;
    virCapsPtr caps = NULL;
    int ret = -1;

    virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
                  VIR_DOMAIN_AFFECT_CONFIG, -1);

    if (!(vm = bhyveDomObjFromDomain(dom)))
        return -1;

    if (virDomainSetMetadataEnsureACL(dom->conn, vm->def, flags) < 0)
        goto cleanup;

    if (!(caps = bhyveDriverGetCapabilities(privconn)))
        goto cleanup;

    ret = virDomainObjSetMetadata(vm, type, metadata, key, uri, caps,
1116 1117
                                  privconn->xmlopt, BHYVE_STATE_DIR,
                                  BHYVE_CONFIG_DIR, flags);
1118

1119 1120 1121 1122 1123 1124 1125
    if (ret == 0) {
        virObjectEventPtr ev = NULL;
        ev = virDomainEventMetadataChangeNewFromObj(vm, type, uri);
        virObjectEventStateQueue(privconn->domainEventState, ev);
    }


1126 1127
 cleanup:
    virObjectUnref(caps);
1128
    virDomainObjEndAPI(&vm);
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
    return ret;
}

static char *
bhyveDomainGetMetadata(virDomainPtr dom,
                      int type,
                      const char *uri,
                      unsigned int flags)
{
    virDomainObjPtr vm;
    char *ret = NULL;

    if (!(vm = bhyveDomObjFromDomain(dom)))
        return NULL;

    if (virDomainGetMetadataEnsureACL(dom->conn, vm->def) < 0)
        goto cleanup;

1147
    ret = virDomainObjGetMetadata(vm, type, uri, flags);
1148 1149

 cleanup:
1150
    virDomainObjEndAPI(&vm);
1151 1152 1153
    return ret;
}

1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
static int
bhyveNodeGetCPUStats(virConnectPtr conn,
                     int cpuNum,
                     virNodeCPUStatsPtr params,
                     int *nparams,
                     unsigned int flags)
{
    if (virNodeGetCPUStatsEnsureACL(conn) < 0)
        return -1;

1164
    return virHostCPUGetStats(cpuNum, params, nparams, flags);
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
}

static int
bhyveNodeGetMemoryStats(virConnectPtr conn,
                        int cellNum,
                        virNodeMemoryStatsPtr params,
                        int *nparams,
                        unsigned int flags)
{
    if (virNodeGetMemoryStatsEnsureACL(conn) < 0)
        return -1;

1177
    return virHostMemGetStats(cellNum, params, nparams, flags);
1178 1179
}

1180 1181
static int
bhyveNodeGetInfo(virConnectPtr conn,
M
Martin Kletzander 已提交
1182
                 virNodeInfoPtr nodeinfo)
1183 1184 1185 1186
{
    if (virNodeGetInfoEnsureACL(conn) < 0)
        return -1;

M
Martin Kletzander 已提交
1187
    return virCapabilitiesGetNodeInfo(nodeinfo);
1188 1189
}

R
Roman Bogorodskiy 已提交
1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200
static int
bhyveStateCleanup(void)
{
    VIR_DEBUG("bhyve state cleanup");

    if (bhyve_driver == NULL)
        return -1;

    virObjectUnref(bhyve_driver->domains);
    virObjectUnref(bhyve_driver->caps);
    virObjectUnref(bhyve_driver->xmlopt);
1201
    virSysinfoDefFree(bhyve_driver->hostsysinfo);
1202
    virObjectUnref(bhyve_driver->closeCallbacks);
1203
    virObjectUnref(bhyve_driver->domainEventState);
1204
    virObjectUnref(bhyve_driver->config);
1205
    virPortAllocatorRangeFree(bhyve_driver->remotePorts);
R
Roman Bogorodskiy 已提交
1206

1207 1208 1209
    if (bhyve_driver->lockFD != -1)
        virPidFileRelease(BHYVE_STATE_DIR, "driver", bhyve_driver->lockFD);

R
Roman Bogorodskiy 已提交
1210 1211 1212 1213 1214 1215 1216
    virMutexDestroy(&bhyve_driver->lock);
    VIR_FREE(bhyve_driver);

    return 0;
}

static int
M
Martin Kletzander 已提交
1217
bhyveStateInitialize(bool privileged,
J
Ján Tomko 已提交
1218 1219
                     virStateInhibitCallback callback G_GNUC_UNUSED,
                     void *opaque G_GNUC_UNUSED)
R
Roman Bogorodskiy 已提交
1220
{
1221 1222
    bool autostart = true;

M
Martin Kletzander 已提交
1223 1224
    if (!privileged) {
        VIR_INFO("Not running privileged, disabling driver");
1225
        return VIR_DRV_STATE_INIT_SKIPPED;
R
Roman Bogorodskiy 已提交
1226 1227
    }

1228
    if (VIR_ALLOC(bhyve_driver) < 0)
1229
        return VIR_DRV_STATE_INIT_ERROR;
R
Roman Bogorodskiy 已提交
1230

1231
    bhyve_driver->lockFD = -1;
R
Roman Bogorodskiy 已提交
1232 1233
    if (virMutexInit(&bhyve_driver->lock) < 0) {
        VIR_FREE(bhyve_driver);
1234
        return VIR_DRV_STATE_INIT_ERROR;
R
Roman Bogorodskiy 已提交
1235 1236
    }

1237 1238 1239
    if (!(bhyve_driver->closeCallbacks = virCloseCallbacksNew()))
        goto cleanup;

1240
    if (!(bhyve_driver->caps = virBhyveCapsBuild()))
R
Roman Bogorodskiy 已提交
1241 1242
        goto cleanup;

R
Roman Bogorodskiy 已提交
1243 1244 1245
    if (virBhyveProbeCaps(&bhyve_driver->bhyvecaps) < 0)
        goto cleanup;

1246 1247 1248
    if (virBhyveProbeGrubCaps(&bhyve_driver->grubcaps) < 0)
        goto cleanup;

1249
    if (!(bhyve_driver->xmlopt = virBhyveDriverCreateXMLConf(bhyve_driver)))
R
Roman Bogorodskiy 已提交
1250 1251 1252 1253 1254
        goto cleanup;

    if (!(bhyve_driver->domains = virDomainObjListNew()))
        goto cleanup;

R
Roman Bogorodskiy 已提交
1255 1256 1257
    if (!(bhyve_driver->domainEventState = virObjectEventStateNew()))
        goto cleanup;

1258
    if (!(bhyve_driver->remotePorts = virPortAllocatorRangeNew(_("display"),
1259
                                                               5900, 65535)))
1260 1261
        goto cleanup;

1262 1263
    bhyve_driver->hostsysinfo = virSysinfoRead();

1264 1265 1266 1267 1268 1269
    if (!(bhyve_driver->config = virBhyveDriverConfigNew()))
        goto cleanup;

    if (virBhyveLoadDriverConfig(bhyve_driver->config, SYSCONFDIR "/libvirt/bhyve.conf") < 0)
        goto cleanup;

R
Roman Bogorodskiy 已提交
1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
    if (virFileMakePath(BHYVE_LOG_DIR) < 0) {
        virReportSystemError(errno,
                             _("Failed to mkdir %s"),
                             BHYVE_LOG_DIR);
        goto cleanup;
    }

    if (virFileMakePath(BHYVE_STATE_DIR) < 0) {
        virReportSystemError(errno,
                             _("Failed to mkdir %s"),
1280
                             BHYVE_STATE_DIR);
R
Roman Bogorodskiy 已提交
1281 1282 1283
        goto cleanup;
    }

1284
    if ((bhyve_driver->lockFD =
1285
         virPidFileAcquire(BHYVE_STATE_DIR, "driver", false, getpid())) < 0)
1286 1287
        goto cleanup;

1288 1289
    if (virDomainObjListLoadAllConfigs(bhyve_driver->domains,
                                       BHYVE_STATE_DIR,
1290
                                       NULL, true,
1291 1292 1293 1294 1295
                                       bhyve_driver->caps,
                                       bhyve_driver->xmlopt,
                                       NULL, NULL) < 0)
        goto cleanup;

R
Roman Bogorodskiy 已提交
1296 1297
    if (virDomainObjListLoadAllConfigs(bhyve_driver->domains,
                                       BHYVE_CONFIG_DIR,
1298
                                       BHYVE_AUTOSTART_DIR, false,
R
Roman Bogorodskiy 已提交
1299 1300 1301 1302 1303
                                       bhyve_driver->caps,
                                       bhyve_driver->xmlopt,
                                       NULL, NULL) < 0)
        goto cleanup;

1304 1305
    virBhyveProcessReconnectAll(bhyve_driver);

1306 1307 1308 1309 1310
    if (virDriverShouldAutostart(BHYVE_STATE_DIR, &autostart) < 0)
        goto cleanup;

    if (autostart)
        bhyveAutostartDomains(bhyve_driver);
1311

1312
    return VIR_DRV_STATE_INIT_COMPLETE;
R
Roman Bogorodskiy 已提交
1313

1314
 cleanup:
R
Roman Bogorodskiy 已提交
1315
    bhyveStateCleanup();
1316
    return VIR_DRV_STATE_INIT_ERROR;
R
Roman Bogorodskiy 已提交
1317 1318
}

R
Roman Bogorodskiy 已提交
1319 1320 1321 1322 1323 1324 1325 1326 1327 1328
unsigned
bhyveDriverGetCaps(virConnectPtr conn)
{
    bhyveConnPtr driver = conn->privateData;

    if (driver != NULL)
        return driver->bhyvecaps;
    return 0;
}

1329 1330 1331 1332 1333 1334 1335 1336 1337 1338
unsigned
bhyveDriverGetGrubCaps(virConnectPtr conn)
{
    bhyveConnPtr driver = conn->privateData;

    if (driver != NULL)
        return driver->grubcaps;
    return 0;
}

W
Wojciech Macek 已提交
1339
static int
1340
bhyveConnectGetMaxVcpus(virConnectPtr conn,
1341 1342
                        const char *type)
{
W
Wojciech Macek 已提交
1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359
    if (virConnectGetMaxVcpusEnsureACL(conn) < 0)
        return -1;

    /*
     * Bhyve supports up to 16 VCPUs, but offers no method to check this
     * value. Hardcode 16...
     */
    if (!type || STRCASEEQ(type, "bhyve"))
        return 16;

    virReportError(VIR_ERR_INVALID_ARG, _("unknown type '%s'"), type);
    return -1;
}

static unsigned long long
bhyveNodeGetFreeMemory(virConnectPtr conn)
{
1360 1361
    unsigned long long freeMem;

W
Wojciech Macek 已提交
1362 1363 1364
    if (virNodeGetFreeMemoryEnsureACL(conn) < 0)
        return 0;

1365
    if (virHostMemGetInfo(NULL, &freeMem) < 0)
1366 1367 1368
        return 0;

    return freeMem;
W
Wojciech Macek 已提交
1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379
}

static int
bhyveNodeGetCPUMap(virConnectPtr conn,
                   unsigned char **cpumap,
                   unsigned int *online,
                   unsigned int flags)
{
    if (virNodeGetCPUMapEnsureACL(conn) < 0)
        return -1;

1380
    return virHostCPUGetMap(cpumap, online, flags);
W
Wojciech Macek 已提交
1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391
}

static int
bhyveNodeGetMemoryParameters(virConnectPtr conn,
                             virTypedParameterPtr params,
                             int *nparams,
                             unsigned int flags)
{
    if (virNodeGetMemoryParametersEnsureACL(conn) < 0)
        return -1;

1392
    return virHostMemGetParameters(params, nparams, flags);
W
Wojciech Macek 已提交
1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403
}

static int
bhyveNodeSetMemoryParameters(virConnectPtr conn,
                             virTypedParameterPtr params,
                             int nparams,
                             unsigned int flags)
{
    if (virNodeSetMemoryParametersEnsureACL(conn) < 0)
        return -1;

1404
    return virHostMemSetParameters(params, nparams, flags);
W
Wojciech Macek 已提交
1405
}
R
Roman Bogorodskiy 已提交
1406

1407
static char *
1408
bhyveConnectBaselineCPU(virConnectPtr conn,
1409 1410 1411 1412
                        const char **xmlCPUs,
                        unsigned int ncpus,
                        unsigned int flags)
{
J
Jiri Denemark 已提交
1413 1414 1415
    virCPUDefPtr *cpus = NULL;
    virCPUDefPtr cpu = NULL;
    char *cpustr = NULL;
1416

1417 1418
    virCheckFlags(VIR_CONNECT_BASELINE_CPU_EXPAND_FEATURES |
                  VIR_CONNECT_BASELINE_CPU_MIGRATABLE, NULL);
1419 1420 1421 1422

    if (virConnectBaselineCPUEnsureACL(conn) < 0)
        goto cleanup;

J
Jiri Denemark 已提交
1423 1424 1425
    if (!(cpus = virCPUDefListParse(xmlCPUs, ncpus, VIR_CPU_TYPE_HOST)))
        goto cleanup;

1426
    if (!(cpu = virCPUBaseline(VIR_ARCH_NONE, cpus, ncpus, NULL, NULL,
1427
                               !!(flags & VIR_CONNECT_BASELINE_CPU_MIGRATABLE))))
J
Jiri Denemark 已提交
1428 1429 1430 1431 1432 1433
        goto cleanup;

    if ((flags & VIR_CONNECT_BASELINE_CPU_EXPAND_FEATURES) &&
        virCPUExpandFeatures(cpus[0]->arch, cpu) < 0)
        goto cleanup;

1434
    cpustr = virCPUDefFormat(cpu, NULL);
1435 1436

 cleanup:
J
Jiri Denemark 已提交
1437 1438 1439 1440
    virCPUDefListFree(cpus);
    virCPUDefFree(cpu);

    return cpustr;
1441 1442
}

1443 1444 1445 1446 1447 1448 1449 1450
static int
bhyveConnectCompareCPU(virConnectPtr conn,
                       const char *xmlDesc,
                       unsigned int flags)
{
    bhyveConnPtr driver = conn->privateData;
    int ret = VIR_CPU_COMPARE_ERROR;
    virCapsPtr caps = NULL;
1451
    bool failIncompatible;
1452

1453 1454
    virCheckFlags(VIR_CONNECT_COMPARE_CPU_FAIL_INCOMPATIBLE,
                  VIR_CPU_COMPARE_ERROR);
1455 1456 1457 1458

    if (virConnectCompareCPUEnsureACL(conn) < 0)
        goto cleanup;

1459
    failIncompatible = !!(flags & VIR_CONNECT_COMPARE_CPU_FAIL_INCOMPATIBLE);
1460

1461 1462 1463 1464 1465
    if (!(caps = bhyveDriverGetCapabilities(driver)))
        goto cleanup;

    if (!caps->host.cpu ||
        !caps->host.cpu->model) {
1466
        if (failIncompatible) {
1467 1468 1469 1470 1471 1472
            virReportError(VIR_ERR_CPU_INCOMPATIBLE, "%s",
                           _("cannot get host CPU capabilities"));
        } else {
            VIR_WARN("cannot get host CPU capabilities");
            ret = VIR_CPU_COMPARE_INCOMPATIBLE;
        }
1473
    } else {
1474 1475
        ret = virCPUCompareXML(caps->host.arch, caps->host.cpu,
                               xmlDesc, failIncompatible);
1476 1477 1478 1479 1480 1481 1482
    }

 cleanup:
    virObjectUnref(caps);
    return ret;
}

R
Roman Bogorodskiy 已提交
1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516
static int
bhyveConnectDomainEventRegisterAny(virConnectPtr conn,
                                   virDomainPtr dom,
                                   int eventID,
                                   virConnectDomainEventGenericCallback callback,
                                   void *opaque,
                                   virFreeCallback freecb)
{
    bhyveConnPtr privconn = conn->privateData;
    int ret;

    if (virConnectDomainEventRegisterAnyEnsureACL(conn) < 0)
        return -1;

    if (virDomainEventStateRegisterID(conn,
                                      privconn->domainEventState,
                                      dom, eventID,
                                      callback, opaque, freecb, &ret) < 0)
        ret = -1;

    return ret;
}

static int
bhyveConnectDomainEventDeregisterAny(virConnectPtr conn,
                                     int callbackID)
{
    bhyveConnPtr privconn = conn->privateData;

    if (virConnectDomainEventDeregisterAnyEnsureACL(conn) < 0)
        return -1;

    if (virObjectEventStateDeregisterID(conn,
                                        privconn->domainEventState,
1517
                                        callbackID, true) < 0)
R
Roman Bogorodskiy 已提交
1518 1519 1520 1521 1522
        return -1;

    return 0;
}

1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539
static int
bhyveDomainHasManagedSaveImage(virDomainPtr domain, unsigned int flags)
{
    virDomainObjPtr vm = NULL;
    int ret = -1;

    virCheckFlags(0, -1);

    if (!(vm = bhyveDomObjFromDomain(domain)))
        goto cleanup;

    if (virDomainHasManagedSaveImageEnsureACL(domain->conn, vm->def) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
1540
    virDomainObjEndAPI(&vm);
1541 1542 1543
    return ret;
}

1544 1545 1546 1547 1548 1549 1550 1551 1552
static const char *
bhyveConnectGetType(virConnectPtr conn)
{
    if (virConnectGetTypeEnsureACL(conn) < 0)
        return NULL;

    return "BHYVE";
}

J
Ján Tomko 已提交
1553
static int bhyveConnectIsAlive(virConnectPtr conn G_GNUC_UNUSED)
1554 1555 1556 1557
{
    return 1;
}

1558
static int
J
Ján Tomko 已提交
1559
bhyveConnectIsSecure(virConnectPtr conn G_GNUC_UNUSED)
1560 1561 1562 1563 1564
{
    /* Trivially secure, since always inside the daemon */
    return 1;
}

1565
static int
J
Ján Tomko 已提交
1566
bhyveConnectIsEncrypted(virConnectPtr conn G_GNUC_UNUSED)
1567 1568 1569 1570 1571
{
    /* Not encrypted, but remote driver takes care of that */
    return 0;
}

1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610
static char *
bhyveConnectDomainXMLFromNative(virConnectPtr conn,
                                const char *nativeFormat,
                                const char *nativeConfig,
                                unsigned int flags)
{
    char *xml = NULL;
    virDomainDefPtr def = NULL;
    bhyveConnPtr privconn = conn->privateData;
    virCapsPtr capabilities = NULL;
    unsigned caps = bhyveDriverGetCaps(conn);

    virCheckFlags(0, NULL);

    if (virConnectDomainXMLFromNativeEnsureACL(conn) < 0)
        return NULL;

    capabilities = bhyveDriverGetCapabilities(privconn);
    if (!capabilities)
        return NULL;

    if (STRNEQ(nativeFormat, BHYVE_CONFIG_FORMAT_ARGV)) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("unsupported config type %s"), nativeFormat);
        goto cleanup;
    }

    def = bhyveParseCommandLineString(nativeConfig, caps, privconn->xmlopt);
    if (def == NULL)
        goto cleanup;

    xml = virDomainDefFormat(def, capabilities, 0);

 cleanup:
    virObjectUnref(capabilities);
    virDomainDefFree(def);
    return xml;
}

1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666
static char *
bhyveConnectGetDomainCapabilities(virConnectPtr conn,
                                  const char *emulatorbin,
                                  const char *arch_str,
                                  const char *machine,
                                  const char *virttype_str,
                                  unsigned int flags)
{
    virDomainCapsPtr caps = NULL;
    char *ret = NULL;
    int virttype = VIR_DOMAIN_VIRT_BHYVE;
    int arch = virArchFromHost(); /* virArch */

    virCheckFlags(0, ret);

    if (virConnectGetDomainCapabilitiesEnsureACL(conn) < 0)
        return ret;

    if (virttype_str &&
        (virttype = virDomainVirtTypeFromString(virttype_str)) < 0) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("unknown virttype: %s"),
                       virttype_str);
        goto cleanup;
    }

    if (virttype != VIR_DOMAIN_VIRT_BHYVE) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("unknown virttype: %s"),
                       virttype_str);
        goto cleanup;
    }

    if (arch_str && (arch = virArchFromString(arch_str)) == VIR_ARCH_NONE) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("unknown architecture: %s"),
                       arch_str);
        goto cleanup;
    }

    if (!ARCH_IS_X86(arch)) {
        virReportError(VIR_ERR_NO_SUPPORT,
                       _("unsupported architecture: %s"),
                       virArchToString(arch));
        goto cleanup;
    }

    if (emulatorbin == NULL) {
        emulatorbin = "/usr/sbin/bhyve";
    } else if (STRNEQ(emulatorbin, "/usr/sbin/bhyve")) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("unknown emulator binary: %s"),
                       emulatorbin);
        goto cleanup;
    }

1667 1668
    if (!(caps = virBhyveDomainCapsBuild(conn->privateData, emulatorbin,
                                         machine, arch, virttype)))
1669 1670 1671 1672 1673 1674 1675 1676 1677
        goto cleanup;

    ret = virDomainCapsFormat(caps);

 cleanup:
    virObjectUnref(caps);
    return ret;
}

1678
static virHypervisorDriver bhyveHypervisorDriver = {
R
Roman Bogorodskiy 已提交
1679
    .name = "bhyve",
1680
    .connectURIProbe = bhyveConnectURIProbe,
R
Roman Bogorodskiy 已提交
1681 1682 1683 1684
    .connectOpen = bhyveConnectOpen, /* 1.2.2 */
    .connectClose = bhyveConnectClose, /* 1.2.2 */
    .connectGetVersion = bhyveConnectGetVersion, /* 1.2.2 */
    .connectGetHostname = bhyveConnectGetHostname, /* 1.2.2 */
1685
    .connectGetSysinfo = bhyveConnectGetSysinfo, /* 1.2.5 */
R
Roman Bogorodskiy 已提交
1686 1687 1688 1689 1690 1691 1692 1693
    .domainGetInfo = bhyveDomainGetInfo, /* 1.2.2 */
    .domainGetState = bhyveDomainGetState, /* 1.2.2 */
    .connectGetCapabilities = bhyveConnectGetCapabilities, /* 1.2.2 */
    .connectListDomains = bhyveConnectListDomains, /* 1.2.2 */
    .connectNumOfDomains = bhyveConnectNumOfDomains, /* 1.2.2 */
    .connectListAllDomains = bhyveConnectListAllDomains, /* 1.2.2 */
    .connectListDefinedDomains = bhyveConnectListDefinedDomains, /* 1.2.2 */
    .connectNumOfDefinedDomains = bhyveConnectNumOfDefinedDomains, /* 1.2.2 */
1694
    .connectDomainXMLToNative = bhyveConnectDomainXMLToNative, /* 1.2.5 */
R
Roman Bogorodskiy 已提交
1695
    .domainCreate = bhyveDomainCreate, /* 1.2.2 */
1696
    .domainCreateWithFlags = bhyveDomainCreateWithFlags, /* 1.2.3 */
W
Wojciech Macek 已提交
1697
    .domainCreateXML = bhyveDomainCreateXML, /* 1.2.4 */
R
Roman Bogorodskiy 已提交
1698
    .domainDestroy = bhyveDomainDestroy, /* 1.2.2 */
E
Eric Blake 已提交
1699
    .domainDestroyFlags = bhyveDomainDestroyFlags, /* 5.6.0 */
1700
    .domainShutdown = bhyveDomainShutdown, /* 1.3.3 */
E
Eric Blake 已提交
1701
    .domainShutdownFlags = bhyveDomainShutdownFlags, /* 5.6.0 */
R
Roman Bogorodskiy 已提交
1702 1703
    .domainLookupByUUID = bhyveDomainLookupByUUID, /* 1.2.2 */
    .domainLookupByName = bhyveDomainLookupByName, /* 1.2.2 */
W
Wojciech Macek 已提交
1704
    .domainLookupByID = bhyveDomainLookupByID, /* 1.2.3 */
R
Roman Bogorodskiy 已提交
1705
    .domainDefineXML = bhyveDomainDefineXML, /* 1.2.2 */
1706
    .domainDefineXMLFlags = bhyveDomainDefineXMLFlags, /* 1.2.12 */
1707
    .domainUndefine = bhyveDomainUndefine, /* 1.2.2 */
E
Eric Blake 已提交
1708
    .domainUndefineFlags = bhyveDomainUndefineFlags, /* 5.6.0 */
1709
    .domainGetOSType = bhyveDomainGetOSType, /* 1.2.21 */
R
Roman Bogorodskiy 已提交
1710
    .domainGetXMLDesc = bhyveDomainGetXMLDesc, /* 1.2.2 */
1711 1712
    .domainIsActive = bhyveDomainIsActive, /* 1.2.2 */
    .domainIsPersistent = bhyveDomainIsPersistent, /* 1.2.2 */
1713 1714
    .domainGetAutostart = bhyveDomainGetAutostart, /* 1.2.4 */
    .domainSetAutostart = bhyveDomainSetAutostart, /* 1.2.4 */
1715
    .domainOpenConsole = bhyveDomainOpenConsole, /* 1.2.4 */
1716 1717
    .domainSetMetadata = bhyveDomainSetMetadata, /* 1.2.4 */
    .domainGetMetadata = bhyveDomainGetMetadata, /* 1.2.4 */
1718 1719
    .nodeGetCPUStats = bhyveNodeGetCPUStats, /* 1.2.2 */
    .nodeGetMemoryStats = bhyveNodeGetMemoryStats, /* 1.2.2 */
1720
    .nodeGetInfo = bhyveNodeGetInfo, /* 1.2.3 */
W
Wojciech Macek 已提交
1721 1722 1723 1724 1725
    .connectGetMaxVcpus = bhyveConnectGetMaxVcpus, /* 1.2.3 */
    .nodeGetFreeMemory = bhyveNodeGetFreeMemory, /* 1.2.3 */
    .nodeGetCPUMap = bhyveNodeGetCPUMap, /* 1.2.3 */
    .nodeGetMemoryParameters = bhyveNodeGetMemoryParameters, /* 1.2.3 */
    .nodeSetMemoryParameters = bhyveNodeSetMemoryParameters, /* 1.2.3 */
1726
    .connectBaselineCPU = bhyveConnectBaselineCPU, /* 1.2.4 */
1727
    .connectCompareCPU = bhyveConnectCompareCPU, /* 1.2.4 */
R
Roman Bogorodskiy 已提交
1728 1729
    .connectDomainEventRegisterAny = bhyveConnectDomainEventRegisterAny, /* 1.2.5 */
    .connectDomainEventDeregisterAny = bhyveConnectDomainEventDeregisterAny, /* 1.2.5 */
1730
    .domainHasManagedSaveImage = bhyveDomainHasManagedSaveImage, /* 1.2.13 */
1731
    .connectGetType = bhyveConnectGetType, /* 1.3.5 */
1732
    .connectIsAlive = bhyveConnectIsAlive, /* 1.3.5 */
1733
    .connectIsSecure = bhyveConnectIsSecure, /* 1.3.5 */
1734
    .connectIsEncrypted = bhyveConnectIsEncrypted, /* 1.3.5 */
1735
    .connectDomainXMLFromNative = bhyveConnectDomainXMLFromNative, /* 2.1.0 */
1736
    .connectGetDomainCapabilities = bhyveConnectGetDomainCapabilities, /* 2.1.0 */
R
Roman Bogorodskiy 已提交
1737 1738 1739
};


1740
static virConnectDriver bhyveConnectDriver = {
1741
    .localOnly = true,
1742
    .uriSchemes = (const char *[]){ "bhyve", NULL },
1743 1744 1745
    .hypervisorDriver = &bhyveHypervisorDriver,
};

R
Roman Bogorodskiy 已提交
1746 1747 1748 1749 1750 1751 1752 1753 1754
static virStateDriver bhyveStateDriver = {
    .name = "bhyve",
    .stateInitialize = bhyveStateInitialize,
    .stateCleanup = bhyveStateCleanup,
};

int
bhyveRegister(void)
{
1755 1756
    if (virRegisterConnectDriver(&bhyveConnectDriver,
                                 true) < 0)
1757
        return -1;
1758
    if (virRegisterStateDriver(&bhyveStateDriver) < 0)
1759
        return -1;
1760
    return 0;
R
Roman Bogorodskiy 已提交
1761
}