openvz_driver.c 29.2 KB
Newer Older
1 2 3 4 5
/*
 * openvz_driver.c: core driver methods for managing OpenVZ VEs
 *
 * Copyright (C) 2006, 2007 Binary Karma
 * Copyright (C) 2006 Shuveb Hussain
6
 * Copyright (C) 2007 Anoop Joe Cyriac
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
22
 * Authors:
23 24 25
 * Shuveb Hussain <shuveb@binarykarma.com>
 * Anoop Joe Cyriac <anoop@binarykarma.com>
 *
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
 */

#include <config.h>

#include <sys/types.h>
#include <sys/poll.h>
#include <dirent.h>
#include <limits.h>
#include <string.h>
#include <stdio.h>
#include <strings.h>
#include <stdarg.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <sys/utsname.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <signal.h>
#include <paths.h>
#include <pwd.h>
#include <stdio.h>
#include <sys/wait.h>

50
#include "internal.h"
51
#include "openvz_driver.h"
52 53
#include "event.h"
#include "buf.h"
54
#include "util.h"
55
#include "openvz_conf.h"
56
#include "nodeinfo.h"
57
#include "memory.h"
58

59 60 61
#define OPENVZ_MAX_ARG 28
#define CMDBUF_LEN 1488
#define CMDOP_LEN 288
62

D
Daniel Veillard 已提交
63
static int openvzGetProcessInfo(unsigned long long *cpuTime, int vpsid);
64 65 66
static int openvzGetMaxVCPUs(virConnectPtr conn, const char *type);
static int openvzDomainGetMaxVcpus(virDomainPtr dom);
static int openvzDomainSetVcpus(virDomainPtr dom, unsigned int nvcpus);
D
Daniel Veillard 已提交
67

68 69
struct openvz_driver ovz_driver;

70
static void cmdExecFree(const char *cmdExec[])
71 72 73 74
{
    int i=-1;
    while(cmdExec[++i])
    {
75
        VIR_FREE(cmdExec[i]);
76 77 78
    }
}

79 80 81 82 83
/* generate arguments to create OpenVZ container
   return -1 - error
           0 - OK
*/
static int openvzDomainDefineCmd(virConnectPtr conn,
84
                                 const char *args[],
85
                                 int maxarg,
86
                                 virDomainDefPtr vmdef)
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
{
    int narg;

    for (narg = 0; narg < maxarg; narg++)
        args[narg] = NULL;

    if (vmdef == NULL){
        openvzError(conn, VIR_ERR_INTERNAL_ERROR,
                   _("Container is not defined"));
        return -1;
    }

#define ADD_ARG(thisarg)                                                \
    do {                                                                \
        if (narg >= maxarg)                                             \
                 goto no_memory;                                        \
        args[narg++] = thisarg;                                         \
    } while (0)

#define ADD_ARG_LIT(thisarg)                                            \
    do {                                                                \
        if (narg >= maxarg)                                             \
                 goto no_memory;                                        \
        if ((args[narg++] = strdup(thisarg)) == NULL)                   \
            goto no_memory;                                             \
    } while (0)

    narg = 0;
    ADD_ARG_LIT(VZCTL);
    ADD_ARG_LIT("--quiet");
    ADD_ARG_LIT("create");
    ADD_ARG_LIT(vmdef->name);
119

120 121 122 123 124 125
    if (vmdef->fss) {
        if (vmdef->fss->type != VIR_DOMAIN_FS_TYPE_TEMPLATE) {
            openvzError(conn, VIR_ERR_INTERNAL_ERROR,
                        "%s", _("only filesystem templates are supported"));
            return -1;
        }
126

127 128 129 130 131
        if (vmdef->fss->next) {
            openvzError(conn, VIR_ERR_INTERNAL_ERROR,
                        "%s", _("only one filesystem supported"));
            return -1;
        }
132 133

        ADD_ARG_LIT("--ostemplate");
134
        ADD_ARG_LIT(vmdef->fss->src);
135
    }
136
#if 0
137 138 139 140
    if ((vmdef->profile && *(vmdef->profile))) {
        ADD_ARG_LIT("--config");
        ADD_ARG_LIT(vmdef->profile);
    }
141
#endif
142 143 144 145 146 147 148 149 150 151 152 153

    ADD_ARG(NULL);
    return 0;
 no_memory:
    openvzError(conn, VIR_ERR_INTERNAL_ERROR,
                _("Could not put argument to %s"), VZCTL);
    return -1;
#undef ADD_ARG
#undef ADD_ARG_LIT
}


154
static virDomainPtr openvzDomainLookupByID(virConnectPtr conn,
155
                                           int id) {
156
    struct openvz_driver *driver = (struct openvz_driver *)conn->privateData;
157
    virDomainObjPtr vm;
158 159
    virDomainPtr dom;

160
    vm = virDomainFindByID(driver->domains, id);
161

162
    if (!vm) {
163
        openvzError(conn, VIR_ERR_NO_DOMAIN, NULL);
164 165 166
        return NULL;
    }

167 168
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
    if (!dom)
169 170
        return NULL;

171
    dom->id = vm->def->id;
172 173 174
    return dom;
}

175
static char *openvzGetOSType(virDomainPtr dom)
176
{
177 178 179 180 181 182 183 184 185 186 187 188 189
    struct  openvz_driver *driver = (struct openvz_driver *)dom->conn->privateData;
    virDomainObjPtr vm = virDomainFindByUUID(driver->domains, dom->uuid);
    char *ret;

    if (!vm) {
        openvzError(dom->conn, VIR_ERR_NO_DOMAIN, NULL);
        return NULL;
    }

    if (!(ret = strdup(vm->def->os.type)))
        openvzError(dom->conn, VIR_ERR_NO_MEMORY, NULL);

    return ret;
190 191 192 193
}


static virDomainPtr openvzDomainLookupByUUID(virConnectPtr conn,
194
                                             const unsigned char *uuid) {
195
    struct  openvz_driver *driver = (struct openvz_driver *)conn->privateData;
196
    virDomainObjPtr vm = virDomainFindByUUID(driver->domains, uuid);
197 198 199
    virDomainPtr dom;

    if (!vm) {
200
        openvzError(conn, VIR_ERR_NO_DOMAIN, NULL);
201 202 203
        return NULL;
    }

204 205
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
    if (!dom)
206 207
        return NULL;

208
    dom->id = vm->def->id;
209 210 211 212 213 214
    return dom;
}

static virDomainPtr openvzDomainLookupByName(virConnectPtr conn,
                                     const char *name) {
    struct openvz_driver *driver = (struct openvz_driver *)conn->privateData;
215
    virDomainObjPtr vm = virDomainFindByName(driver->domains, name);
216 217 218
    virDomainPtr dom;

    if (!vm) {
219
        openvzError(conn, VIR_ERR_NO_DOMAIN, NULL);
220 221 222
        return NULL;
    }

223 224
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
    if (!dom)
225
        return NULL;
226

227
    dom->id = vm->def->id;
228 229 230 231
    return dom;
}

static int openvzDomainGetInfo(virDomainPtr dom,
232
                               virDomainInfoPtr info) {
233
    struct openvz_driver *driver = (struct openvz_driver *)dom->conn->privateData;
234
    virDomainObjPtr vm = virDomainFindByUUID(driver->domains, dom->uuid);
235

236
    if (!vm) {
D
Daniel Veillard 已提交
237
        openvzError(dom->conn, VIR_ERR_INVALID_DOMAIN,
238
                    _("no domain with matching uuid"));
239 240 241
        return -1;
    }

242
    info->state = vm->state;
243

244
    if (!virDomainIsActive(vm)) {
D
Daniel Veillard 已提交
245 246 247 248
        info->cpuTime = 0;
    } else {
        if (openvzGetProcessInfo(&(info->cpuTime), dom->id) < 0) {
            openvzError(dom->conn, VIR_ERR_OPERATION_FAILED,
249
                        _("cannot read cputime for domain %d"), dom->id);
D
Daniel Veillard 已提交
250 251 252 253
            return -1;
        }
    }

254 255 256
    info->maxMem = vm->def->maxmem;
    info->memory = vm->def->memory;
    info->nrVirtCpu = vm->def->vcpus;
257 258 259 260
    return 0;
}


261 262 263
static char *openvzDomainDumpXML(virDomainPtr dom, int flags) {
    struct openvz_driver *driver = (struct openvz_driver *)dom->conn->privateData;
    virDomainObjPtr vm = virDomainFindByUUID(driver->domains, dom->uuid);
264

265
    if (!vm) {
D
Daniel Veillard 已提交
266
        openvzError(dom->conn, VIR_ERR_INVALID_DOMAIN,
267 268
                    _("no domain with matching uuid"));
        return NULL;
269
    }
270

271 272
    return virDomainDefFormat(dom->conn, vm->def, flags);
}
273

274 275 276 277 278


static int openvzDomainShutdown(virDomainPtr dom) {
    struct openvz_driver *driver = (struct openvz_driver *)dom->conn->privateData;
    virDomainObjPtr vm = virDomainFindByUUID(driver->domains, dom->uuid);
279
    const char *prog[] = {VZCTL, "--quiet", "stop", vm ? vm->def->name : NULL, NULL};
280 281 282 283

    if (!vm) {
        openvzError(dom->conn, VIR_ERR_INVALID_DOMAIN,
                    _("no domain with matching uuid"));
284 285
        return -1;
    }
286

287
    if (vm->state != VIR_DOMAIN_RUNNING) {
D
Daniel Veillard 已提交
288
        openvzError(dom->conn, VIR_ERR_INTERNAL_ERROR,
289
                    _("domain is not in running state"));
290 291
        return -1;
    }
292

293 294
    if (virRun(dom->conn, prog, NULL) < 0)
        return -1;
295

296 297
    vm->def->id = -1;
    vm->state = VIR_DOMAIN_SHUTOFF;
298

299
    return 0;
300 301
}

302 303
static int openvzDomainReboot(virDomainPtr dom,
                              unsigned int flags ATTRIBUTE_UNUSED) {
304
    struct openvz_driver *driver = (struct openvz_driver *)dom->conn->privateData;
305
    virDomainObjPtr vm = virDomainFindByUUID(driver->domains, dom->uuid);
306
    const char *prog[] = {VZCTL, "--quiet", "restart", vm ? vm->def->name : NULL, NULL};
307 308

    if (!vm) {
D
Daniel Veillard 已提交
309
        openvzError(dom->conn, VIR_ERR_INVALID_DOMAIN,
310
                    _("no domain with matching uuid"));
311 312
        return -1;
    }
313

314 315 316
    if (vm->state != VIR_DOMAIN_RUNNING) {
        openvzError(dom->conn, VIR_ERR_INTERNAL_ERROR,
                    _("domain is not in running state"));
317 318
        return -1;
    }
319

320
    if (virRun(dom->conn, prog, NULL) < 0)
321
        return -1;
322

323
    return 0;
324 325
}

D
Daniel Veillard 已提交
326 327 328 329 330
static int
openvzDomainSetNetwork(virConnectPtr conn, const char *vpsid,
                        virDomainNetDefPtr net)
{
    int rc = 0, narg;
331
    const char *prog[OPENVZ_MAX_ARG];
D
Daniel Veillard 已提交
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
    char *mac = NULL;

#define ADD_ARG_LIT(thisarg)                                            \
    do {                                                                \
        if (narg >= OPENVZ_MAX_ARG)                                             \
                 goto no_memory;                                        \
        if ((prog[narg++] = strdup(thisarg)) == NULL)                   \
            goto no_memory;                                             \
    } while (0)


    if (net == NULL)
       return 0;
    if (vpsid == NULL) {
        openvzError(conn, VIR_ERR_INTERNAL_ERROR,
                    _("Container ID is not specified"));
        return -1;
    }

    for (narg = 0; narg < OPENVZ_MAX_ARG; narg++)
        prog[narg] = NULL;

    narg = 0;

    if (net->type == VIR_DOMAIN_NET_TYPE_BRIDGE ||
        net->type == VIR_DOMAIN_NET_TYPE_ETHERNET) {
        ADD_ARG_LIT(VZCTL);
        ADD_ARG_LIT("--quiet");
        ADD_ARG_LIT("set");
        ADD_ARG_LIT(vpsid);
    }

    if (openvzCheckEmptyMac(net->mac) > 0)
          mac = openvzMacToString(net->mac);

    if (net->type == VIR_DOMAIN_NET_TYPE_BRIDGE &&
           net->data.bridge.brname != NULL) {
        char opt[1024];
        //--netif_add ifname[,mac,host_ifname,host_mac]
        ADD_ARG_LIT("--netif_add") ;
        strncpy(opt, net->data.bridge.brname, 256);
        if (mac != NULL) {
            strcat(opt, ",");
            strcat(opt, mac);
        }
        ADD_ARG_LIT(opt) ;
    }else if (net->type == VIR_DOMAIN_NET_TYPE_ETHERNET &&
              net->data.ethernet.ipaddr != NULL) {
        //--ipadd ip
        ADD_ARG_LIT("--ipadd") ;
        ADD_ARG_LIT(net->data.ethernet.ipaddr) ;
    }

    //TODO: processing NAT and physical device

    if (prog[0] != NULL){
        ADD_ARG_LIT("--save");
389
        if (virRun(conn, prog, NULL) < 0) {
D
Daniel Veillard 已提交
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
           openvzError(conn, VIR_ERR_INTERNAL_ERROR,
                    _("Could not exec %s"), VZCTL);
           rc = -1;
           goto exit;
        }
    }

    if (net->next != NULL)
       if (openvzDomainSetNetwork(conn, vpsid, net->next) < 0) {
          rc = -1;
          goto exit;
       }

 exit:
    cmdExecFree(prog);
    VIR_FREE(mac);
    return rc;

 no_memory:
    openvzError(conn, VIR_ERR_INTERNAL_ERROR,
                _("Could not put argument to %s"), VZCTL);
    cmdExecFree(prog);
    VIR_FREE(mac);
    return -1;

#undef ADD_ARG_LIT
}

418 419 420 421
static virDomainPtr
openvzDomainDefineXML(virConnectPtr conn, const char *xml)
{
    struct openvz_driver *driver = (struct openvz_driver *) conn->privateData;
422 423
    virDomainDefPtr vmdef = NULL;
    virDomainObjPtr vm = NULL;
424
    virDomainPtr dom = NULL;
425
    const char *prog[OPENVZ_MAX_ARG];
426
    prog[0] = NULL;
427

428
    if ((vmdef = virDomainDefParseString(conn, driver->caps, xml)) == NULL)
429
        return NULL;
430

431 432 433 434 435 436 437
    if (vmdef->os.init == NULL &&
        !(vmdef->os.init = strdup("/sbin/init"))) {
        virDomainDefFree(vmdef);
        return NULL;
    }

    vm = virDomainFindByName(driver->domains, vmdef->name);
438
    if (vm) {
439 440
        openvzError(conn, VIR_ERR_OPERATION_FAILED,
                  _("Already an OPENVZ VM active with the id '%s'"),
441
                  vmdef->name);
442
        virDomainDefFree(vmdef);
443
        return NULL;
444
    }
445 446 447
    if (!(vm = virDomainAssignDef(conn, &driver->domains, vmdef))) {
        virDomainDefFree(vmdef);
        return NULL;
448 449
    }

450 451 452 453
    if (openvzDomainDefineCmd(conn, prog, OPENVZ_MAX_ARG, vmdef) < 0) {
        openvzError(conn, VIR_ERR_INTERNAL_ERROR,
                _("Error creating command for container"));
        goto exit;
454 455
    }

D
Daniel Veillard 已提交
456 457
    //TODO: set quota

458
    if (virRun(conn, prog, NULL) < 0) {
D
Daniel Veillard 已提交
459
        openvzError(conn, VIR_ERR_INTERNAL_ERROR,
460
               _("Could not exec %s"), VZCTL);
461
        goto exit;
462
    }
463

464 465 466 467 468 469
    if (openvzSetDefinedUUID(strtoI(vmdef->name), vmdef->uuid) < 0) {
        openvzError(conn, VIR_ERR_INTERNAL_ERROR,
               _("Could not set UUID"));
        goto exit;
    }

470
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
471
    if (dom)
472
        dom->id = -1;
D
Daniel Veillard 已提交
473

474
    if (openvzDomainSetNetwork(conn, vmdef->name, vmdef->nets) < 0) {
D
Daniel Veillard 已提交
475 476 477 478 479
        openvzError(conn, VIR_ERR_INTERNAL_ERROR,
                  _("Could not configure network"));
        goto exit;
    }

480 481 482 483 484 485 486 487
    if (vmdef->vcpus > 0) {
        if (openvzDomainSetVcpus(dom, vmdef->vcpus) < 0) {
            openvzError(conn, VIR_ERR_INTERNAL_ERROR,
                     _("Could not set number of virtual cpu"));
             goto exit;
        }
    }

D
Daniel Veillard 已提交
488
    exit:
489
    cmdExecFree(prog);
490 491 492 493
    return dom;
}

static virDomainPtr
494
openvzDomainCreateXML(virConnectPtr conn, const char *xml,
495 496
                        unsigned int flags ATTRIBUTE_UNUSED)
{
497 498
    virDomainDefPtr vmdef = NULL;
    virDomainObjPtr vm = NULL;
499
    virDomainPtr dom = NULL;
500
    struct openvz_driver *driver = (struct openvz_driver *) conn->privateData;
501
    const char *progstart[] = {VZCTL, "--quiet", "start", NULL, NULL};
502
    const char *progcreate[OPENVZ_MAX_ARG];
503
    progcreate[0] = NULL;
504

505 506 507 508 509 510
    if ((vmdef = virDomainDefParseString(conn, driver->caps, xml)) == NULL)
        return NULL;

    if (vmdef->os.init == NULL &&
        !(vmdef->os.init = strdup("/sbin/init"))) {
        virDomainDefFree(vmdef);
511
        return NULL;
512
    }
513

514
    vm = virDomainFindByName(driver->domains, vmdef->name);
515
    if (vm) {
516 517 518
        openvzError(conn, VIR_ERR_OPERATION_FAILED,
                  _("Already an OPENVZ VM defined with the id '%s'"),
                  vmdef->name);
519
        virDomainDefFree(vmdef);
520 521
        return NULL;
    }
522 523
    if (!(vm = virDomainAssignDef(conn, &driver->domains, vmdef))) {
        virDomainDefFree(vmdef);
524 525 526
        return NULL;
    }

527 528 529 530
    if (openvzDomainDefineCmd(conn, progcreate, OPENVZ_MAX_ARG, vmdef) < 0) {
        openvzError(conn, VIR_ERR_INTERNAL_ERROR,
                _("Error creating command for container"));
        goto exit;
531 532
    }

533
    if (virRun(conn, progcreate, NULL) < 0) {
D
Daniel Veillard 已提交
534
        openvzError(conn, VIR_ERR_INTERNAL_ERROR,
535
               _("Could not exec %s"), VZCTL);
536
        goto exit;
537
    }
538

539 540 541 542 543 544
    if (openvzSetDefinedUUID(strtoI(vmdef->name), vmdef->uuid) < 0) {
        openvzError(conn, VIR_ERR_INTERNAL_ERROR,
               _("Could not set UUID"));
        goto exit;
    }

545
    if (openvzDomainSetNetwork(conn, vmdef->name, vmdef->nets) < 0) {
D
Daniel Veillard 已提交
546 547 548 549 550
       openvzError(conn, VIR_ERR_INTERNAL_ERROR,
                  _("Could not configure network"));
        goto exit;
    }

551
    progstart[3] = vmdef->name;
552

553
    if (virRun(conn, progstart, NULL) < 0) {
D
Daniel Veillard 已提交
554
        openvzError(conn, VIR_ERR_INTERNAL_ERROR,
555
               _("Could not exec %s"), VZCTL);
556
        goto exit;
557
    }
558

559 560 561
    vm->pid = strtoI(vmdef->name);
    vm->def->id = vm->pid;
    vm->state = VIR_DOMAIN_RUNNING;
562

563
    dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
564
    if (dom)
565
        dom->id = vm->def->id;
566 567 568 569

    if (vmdef->vcpus > 0) {
        if (openvzDomainSetVcpus(dom, vmdef->vcpus) < 0) {
            openvzError(conn, VIR_ERR_INTERNAL_ERROR,
570 571
                        _("Could not set number of virtual cpu"));
            goto exit;
572 573 574
        }
    }

575 576
 exit:
    cmdExecFree(progcreate);
577 578 579 580 581 582
    return dom;
}

static int
openvzDomainCreate(virDomainPtr dom)
{
583
    struct openvz_driver *driver = (struct openvz_driver *)dom->conn->privateData;
584
    virDomainObjPtr vm = virDomainFindByName(driver->domains, dom->name);
585
    const char *prog[] = {VZCTL, "--quiet", "start", vm ? vm->def->name : NULL, NULL };
586 587

    if (!vm) {
D
Daniel Veillard 已提交
588
        openvzError(dom->conn, VIR_ERR_INVALID_DOMAIN,
589
              _("no domain with matching id"));
590 591
        return -1;
    }
592

593
    if (vm->state != VIR_DOMAIN_SHUTOFF) {
D
Daniel Veillard 已提交
594
        openvzError(dom->conn, VIR_ERR_OPERATION_DENIED,
595
              _("domain is not in shutoff state"));
596 597 598
        return -1;
    }

599
    if (virRun(dom->conn, prog, NULL) < 0) {
D
Daniel Veillard 已提交
600
        openvzError(dom->conn, VIR_ERR_INTERNAL_ERROR,
601
               _("Could not exec %s"), VZCTL);
602 603
        return -1;
    }
604

605 606 607
    vm->pid = strtoI(vm->def->name);
    vm->def->id = vm->pid;
    vm->state = VIR_DOMAIN_RUNNING;
608

609
    return 0;
610 611 612 613 614 615 616
}

static int
openvzDomainUndefine(virDomainPtr dom)
{
    virConnectPtr conn= dom->conn;
    struct openvz_driver *driver = (struct openvz_driver *) conn->privateData;
617
    virDomainObjPtr vm = virDomainFindByUUID(driver->domains, dom->uuid);
618
    const char *prog[] = { VZCTL, "--quiet", "destroy", vm ? vm->def->name : NULL, NULL };
619 620

    if (!vm) {
D
Daniel Veillard 已提交
621
        openvzError(conn, VIR_ERR_INVALID_DOMAIN, _("no domain with matching uuid"));
622 623
        return -1;
    }
624

625
    if (virDomainIsActive(vm)) {
D
Daniel Veillard 已提交
626
        openvzError(conn, VIR_ERR_INTERNAL_ERROR, _("cannot delete active domain"));
627 628
        return -1;
    }
629

630
    if (virRun(conn, prog, NULL) < 0) {
D
Daniel Veillard 已提交
631
        openvzError(conn, VIR_ERR_INTERNAL_ERROR,
632
               _("Could not exec %s"), VZCTL);
633 634
        return -1;
    }
635

636 637
    virDomainRemoveInactive(&driver->domains, vm);

638
    return 0;
639 640
}

641 642 643 644 645
static int
openvzDomainSetAutostart(virDomainPtr dom, int autostart)
{
    virConnectPtr conn= dom->conn;
    struct openvz_driver *driver = (struct openvz_driver *) conn->privateData;
646
    virDomainObjPtr vm = virDomainFindByUUID(driver->domains, dom->uuid);
647
    const char *prog[] = { VZCTL, "--quiet", "set", vm ? vm->def->name : NULL,
D
Daniel Veillard 已提交
648
                           "--onboot", autostart ? "yes" : "no",
649 650 651
                           "--save", NULL };

    if (!vm) {
D
Daniel Veillard 已提交
652
        openvzError(conn, VIR_ERR_INVALID_DOMAIN, _("no domain with matching uuid"));
653 654 655
        return -1;
    }

656
    if (virRun(conn, prog, NULL) < 0) {
D
Daniel Veillard 已提交
657
        openvzError(conn, VIR_ERR_INTERNAL_ERROR, _("Could not exec %s"), VZCTL);
658 659 660 661 662 663 664 665 666 667 668
        return -1;
    }

    return 0;
}

static int
openvzDomainGetAutostart(virDomainPtr dom, int *autostart)
{
    virConnectPtr conn= dom->conn;
    struct openvz_driver *driver = (struct openvz_driver *) conn->privateData;
669
    virDomainObjPtr vm = virDomainFindByUUID(driver->domains, dom->uuid);
670 671 672
    char value[1024];

    if (!vm) {
D
Daniel Veillard 已提交
673
        openvzError(conn, VIR_ERR_INVALID_DOMAIN, _("no domain with matching uuid"));
674 675 676
        return -1;
    }

677
    if (openvzReadConfigParam(strtoI(vm->def->name), "ONBOOT", value, sizeof(value)) < 0) {
678
        openvzError(conn, VIR_ERR_INTERNAL_ERROR, _("Could not read container config"));
679 680 681 682 683
        return -1;
    }

    *autostart = 0;
    if (STREQ(value,"yes"))
D
Daniel Veillard 已提交
684
        *autostart = 1;
685 686 687 688

    return 0;
}

689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
static int openvzGetMaxVCPUs(virConnectPtr conn, const char *type) {
    if (STRCASEEQ(type, "openvz"))
        return 1028; //OpenVZ has no limitation

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


static int openvzDomainGetMaxVcpus(virDomainPtr dom) {
    return openvzGetMaxVCPUs(dom->conn, "openvz");
}

static int openvzDomainSetVcpus(virDomainPtr dom, unsigned int nvcpus) {
    virConnectPtr conn= dom->conn;
    struct openvz_driver *driver = (struct openvz_driver *) conn->privateData;
706
    virDomainObjPtr vm = virDomainFindByUUID(driver->domains, dom->uuid);
707
    char   str_vcpus[32];
708
    const char *prog[] = { VZCTL, "--quiet", "set", vm ? vm->def->name : NULL,
709 710 711 712 713
                           "--cpus", str_vcpus, "--save", NULL };


    if (!vm) {
        openvzError(conn, VIR_ERR_INVALID_DOMAIN,
714
                    _("no domain with matching uuid"));
715 716 717
        return -1;
    }

718 719 720 721 722 723 724 725 726
    if (nvcpus <= 0) {
        openvzError(conn, VIR_ERR_INTERNAL_ERROR,
                    _("VCPUs should be >= 1"));
        return -1;
    }

    snprintf(str_vcpus, 31, "%d", nvcpus);
    str_vcpus[31] = '\0';

727 728
    if (virRun(conn, prog, NULL) < 0) {
        openvzError(conn, VIR_ERR_INTERNAL_ERROR,
729
                    _("Could not exec %s"), VZCTL);
730 731 732
        return -1;
    }

733
    vm->def->vcpus = nvcpus;
734 735 736
    return 0;
}

737 738 739
static const char *openvzProbe(void)
{
#ifdef __linux__
740
    if ((geteuid() == 0) && (virFileExists("/proc/vz")))
D
Daniel Veillard 已提交
741
        return("openvz:///system");
742 743 744 745
#endif
    return(NULL);
}

746
static virDrvOpenStatus openvzOpen(virConnectPtr conn,
747 748 749 750
                                 xmlURIPtr uri,
                                 virConnectAuthPtr auth ATTRIBUTE_UNUSED,
                                 int flags ATTRIBUTE_UNUSED)
{
751
    struct openvz_driver *driver;
752
    /*Just check if the user is root. Nothing really to open for OpenVZ */
753 754 755 756 757 758 759 760 761 762
    if (geteuid()) { // OpenVZ tools can only be used by r00t
        return VIR_DRV_OPEN_DECLINED;
    } else {
        if (uri == NULL ||
            uri->scheme == NULL ||
            uri->path == NULL ||
            STRNEQ (uri->scheme, "openvz") ||
            STRNEQ (uri->path, "/system"))
            return VIR_DRV_OPEN_DECLINED;
    }
763
    /* See if we are running an OpenVZ enabled kernel */
764 765 766 767 768 769 770 771 772 773 774 775
    if(access("/proc/vz/veinfo", F_OK) == -1 ||
       access("/proc/user_beancounters", F_OK) == -1) {
        return VIR_DRV_OPEN_DECLINED;
    }

    if (VIR_ALLOC(driver) < 0) {
        openvzError(conn, VIR_ERR_NO_MEMORY, NULL);
        return VIR_DRV_OPEN_ERROR;
    }

    if (!(driver->caps = openvzCapsInit()))
        goto cleanup;
776

777 778
    if (openvzLoadDomains(driver) < 0)
        goto cleanup;
779

780
    conn->privateData = driver;
781

782
    return VIR_DRV_OPEN_SUCCESS;
783

784 785 786
cleanup:
    openvzFreeDriver(driver);
    return VIR_DRV_OPEN_ERROR;
787
};
788 789 790

static int openvzClose(virConnectPtr conn) {
    struct openvz_driver *driver = (struct openvz_driver *)conn->privateData;
791

792
    openvzFreeDriver(driver);
793 794 795 796 797 798 799 800 801
    conn->privateData = NULL;

    return 0;
}

static const char *openvzGetType(virConnectPtr conn ATTRIBUTE_UNUSED) {
    return strdup("OpenVZ");
}

802 803 804 805 806
static int openvzGetNodeInfo(virConnectPtr conn,
                             virNodeInfoPtr nodeinfo) {
    return virNodeInfoPopulate(conn, nodeinfo);
}

807 808 809 810 811 812
static char *openvzGetCapabilities(virConnectPtr conn) {
    struct openvz_driver *driver = (struct openvz_driver *)conn->privateData;

    return virCapabilitiesFormatXML(driver->caps);
}

813 814
static int openvzListDomains(virConnectPtr conn, int *ids, int nids) {
    int got = 0;
815 816 817
    int veid, pid;
    int outfd = -1;
    int errfd = -1;
818 819
    int ret;
    char buf[32];
820
    char *endptr;
821
    const char *cmd[] = {VZLIST, "-ovpsid", "-H" , NULL};
822

823 824
    ret = virExec(conn, cmd, NULL, NULL,
                  &pid, -1, &outfd, &errfd, VIR_EXEC_NONE);
825
    if(ret == -1) {
D
Daniel Veillard 已提交
826
        openvzError(conn, VIR_ERR_INTERNAL_ERROR,
827
               _("Could not exec %s"), VZLIST);
D
Daniel P. Berrange 已提交
828
        return -1;
829 830
    }

831 832 833
    while(got < nids){
        ret = openvz_readline(outfd, buf, 32);
        if(!ret) break;
834 835 836 837 838
        if (virStrToLong_i(buf, &endptr, 10, &veid) < 0) {
            openvzError(conn, VIR_ERR_INTERNAL_ERROR,
                    _("Could not parse VPS ID %s"), buf);
            continue;
        }
839 840 841
        ids[got] = veid;
        got ++;
    }
842
    waitpid(pid, NULL, 0);
843 844 845 846

    return got;
}

847
static int openvzNumDomains(virConnectPtr conn ATTRIBUTE_UNUSED) {
848 849 850 851 852 853 854 855 856
    struct openvz_driver *driver = conn->privateData;
    int nactive = 0;
    virDomainObjPtr vm = driver->domains;
    while (vm) {
        if (virDomainIsActive(vm))
            nactive++;
        vm = vm->next;
    }
    return nactive;
857 858 859
}

static int openvzListDefinedDomains(virConnectPtr conn,
860
                                    char **const names, int nnames) {
861
    int got = 0;
862
    int veid, pid, outfd = -1, errfd = -1, ret;
863
    char vpsname[32];
864
    char buf[32];
865
    char *endptr;
866
    const char *cmd[] = {VZLIST, "-ovpsid", "-H", "-S", NULL};
867 868

    /* the -S options lists only stopped domains */
869 870
    ret = virExec(conn, cmd, NULL, NULL,
                  &pid, -1, &outfd, &errfd, VIR_EXEC_NONE);
871
    if(ret == -1) {
D
Daniel Veillard 已提交
872
        openvzError(conn, VIR_ERR_INTERNAL_ERROR,
873
               _("Could not exec %s"), VZLIST);
D
Daniel P. Berrange 已提交
874
        return -1;
875 876
    }

877 878 879
    while(got < nnames){
        ret = openvz_readline(outfd, buf, 32);
        if(!ret) break;
880 881 882 883 884
        if (virStrToLong_i(buf, &endptr, 10, &veid) < 0) {
            openvzError(conn, VIR_ERR_INTERNAL_ERROR,
                    _("Could not parse VPS ID %s"), buf);
            continue;
        }
885 886 887
        snprintf(vpsname, sizeof(vpsname), "%d", veid);
        if (!(names[got] = strdup(vpsname)))
            goto no_memory;
888 889
        got ++;
    }
890
    waitpid(pid, NULL, 0);
891
    return got;
892 893 894 895 896 897

no_memory:
    openvzError(conn, VIR_ERR_NO_MEMORY, NULL);
    for ( ; got >= 0 ; got--)
        VIR_FREE(names[got]);
    return -1;
898 899
}

D
Daniel Veillard 已提交
900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944
static int openvzGetProcessInfo(unsigned long long *cpuTime, int vpsid) {
    int fd;
    char line[1024] ;
    unsigned long long usertime, systime, nicetime;
    int readvps = 0, ret;

/* read statistic from /proc/vz/vestat.
sample:
Version: 2.2
      VEID     user      nice     system     uptime                 idle   other..
        33       78         0       1330   59454597      142650441835148   other..
        55      178         0       5340   59424597      542650441835148   other..
*/

    if ((fd = open("/proc/vz/vestat", O_RDONLY)) == -1)
        return -1;

    /*search line with VEID=vpsid*/
    while(1) {
        ret = openvz_readline(fd, line, sizeof(line));
        if(ret <= 0)
            break;

        if (sscanf(line, "%d %llu %llu %llu",
                          &readvps, &usertime, &nicetime, &systime) != 4)
            continue;

        if (readvps == vpsid)
            break; /*found vpsid*/
    }

    close(fd);
    if (ret < 0)
        return -1;

    if (readvps != vpsid) /*not found*/
        return -1;

    /* convert jiffies to nanoseconds */
    *cpuTime = 1000ull * 1000ull * 1000ull * (usertime + nicetime  + systime)
                                     / (unsigned long long)sysconf(_SC_CLK_TCK);

    return 0;
}

945 946 947 948 949 950 951 952 953 954
static int openvzNumDefinedDomains(virConnectPtr conn) {
    struct openvz_driver *driver = (struct openvz_driver *) conn->privateData;
    int ninactive = 0;
    virDomainObjPtr vm = driver->domains;
    while (vm) {
        if (!virDomainIsActive(vm))
            ninactive++;
        vm = vm->next;
    }
    return ninactive;
955 956 957 958 959 960
}

static virDriver openvzDriver = {
    VIR_DRV_OPENVZ,
    "OPENVZ",
    LIBVIR_VERSION_NUMBER,
961
    openvzProbe, /* probe */
962 963
    openvzOpen, /* open */
    openvzClose, /* close */
964
    NULL, /* supports_feature */
965 966 967 968
    openvzGetType, /* type */
    NULL, /* version */
    NULL, /* hostname */
    NULL, /* uri */
969
    openvzGetMaxVCPUs, /* getMaxVcpus */
970
    openvzGetNodeInfo, /* nodeGetInfo */
971
    openvzGetCapabilities, /* getCapabilities */
972 973
    openvzListDomains, /* listDomains */
    openvzNumDomains, /* numOfDomains */
974
    openvzDomainCreateXML, /* domainCreateXML */
975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990
    openvzDomainLookupByID, /* domainLookupByID */
    openvzDomainLookupByUUID, /* domainLookupByUUID */
    openvzDomainLookupByName, /* domainLookupByName */
    NULL, /* domainSuspend */
    NULL, /* domainResume */
    openvzDomainShutdown, /* domainShutdown */
    openvzDomainReboot, /* domainReboot */
    openvzDomainShutdown, /* domainDestroy */
    openvzGetOSType, /* domainGetOSType */
    NULL, /* domainGetMaxMemory */
    NULL, /* domainSetMaxMemory */
    NULL, /* domainSetMemory */
    openvzDomainGetInfo, /* domainGetInfo */
    NULL, /* domainSave */
    NULL, /* domainRestore */
    NULL, /* domainCoreDump */
991
    openvzDomainSetVcpus, /* domainSetVcpus */
992 993
    NULL, /* domainPinVcpu */
    NULL, /* domainGetVcpus */
994
    openvzDomainGetMaxVcpus, /* domainGetMaxVcpus */
995
    openvzDomainDumpXML, /* domainDumpXML */
996 997 998
    openvzListDefinedDomains, /* listDomains */
    openvzNumDefinedDomains, /* numOfDomains */
    openvzDomainCreate, /* domainCreate */
999 1000
    openvzDomainDefineXML, /* domainDefineXML */
    openvzDomainUndefine, /* domainUndefine */
1001 1002
    NULL, /* domainAttachDevice */
    NULL, /* domainDetachDevice */
1003 1004
    openvzDomainGetAutostart, /* domainGetAutostart */
    openvzDomainSetAutostart, /* domainSetAutostart */
1005 1006 1007
    NULL, /* domainGetSchedulerType */
    NULL, /* domainGetSchedulerParameters */
    NULL, /* domainSetSchedulerParameters */
1008 1009 1010 1011 1012
    NULL, /* domainMigratePrepare */
    NULL, /* domainMigratePerform */
    NULL, /* domainMigrateFinish */
    NULL, /* domainBlockStats */
    NULL, /* domainInterfaceStats */
D
Daniel P. Berrange 已提交
1013 1014
    NULL, /* domainBlockPeek */
    NULL, /* domainMemoryPeek */
1015
    NULL, /* nodeGetCellsFreeMemory */
1016
    NULL, /* nodeGetFreeMemory */
1017 1018 1019 1020 1021 1022 1023
};

int openvzRegister(void) {
    virRegisterDriver(&openvzDriver);
    return 0;
}