openvz_conf.c 28.4 KB
Newer Older
1 2 3
/*
 * openvz_conf.c: config functions for managing OpenVZ VEs
 *
4
 * Copyright (C) 2010-2012, 2014 Red Hat, Inc.
5 6
 * Copyright (C) 2006, 2007 Binary Karma
 * Copyright (C) 2006 Shuveb Hussain
7
 * Copyright (C) 2007 Anoop Joe Cyriac
8 9 10 11 12 13 14 15 16 17 18 19
 *
 * 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
20
 * License along with this library.  If not, see
O
Osier Yang 已提交
21
 * <http://www.gnu.org/licenses/>.
22
 *
23
 * Authors:
24 25 26
 * Shuveb Hussain <shuveb@binarykarma.com>
 * Anoop Joe Cyriac <anoop@binarykarma.com>
 *
27 28
 */

29
#include <config.h>
J
Jim Meyering 已提交
30

31 32 33 34 35 36 37
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <dirent.h>
#include <time.h>
38 39 40
#include <sys/stat.h>
#include <limits.h>
#include <errno.h>
D
Daniel P. Berrange 已提交
41
#include <string.h>
42
#include <sys/wait.h>
43

44
#include "virerror.h"
45
#include "openvz_conf.h"
46
#include "openvz_util.h"
47
#include "viruuid.h"
48
#include "virbuffer.h"
49
#include "viralloc.h"
50
#include "nodeinfo.h"
E
Eric Blake 已提交
51
#include "virfile.h"
52
#include "vircommand.h"
53
#include "virstring.h"
54

55 56
#define VIR_FROM_THIS VIR_FROM_OPENVZ

57
static char *openvzLocateConfDir(void);
58
static int openvzGetVPSUUID(int vpsid, char *uuidstr, size_t len);
59
static int openvzAssignUUIDs(void);
60 61 62
static int openvzLocateConfFileDefault(int vpsid, char **conffile, const char *ext);

openvzLocateConfFileFunc openvzLocateConfFile = openvzLocateConfFileDefault;
63

64
int
65
strtoI(const char *str)
66 67 68
{
    int val;

69
    if (virStrToLong_i(str, NULL, 10, &val) < 0)
E
Eric Blake 已提交
70
        return 0;
71

72 73 74
    return val;
}

75 76

static int
77
openvzExtractVersionInfo(const char *cmdstr, int *retversion)
78
{
79
    int ret = -1;
80
    unsigned long version;
81
    char *help = NULL;
82
    char *tmp;
83
    virCommandPtr cmd = virCommandNewArgList(cmdstr, "--help", NULL);
84 85 86 87

    if (retversion)
        *retversion = 0;

88 89
    virCommandAddEnvString(cmd, "LC_ALL=C");
    virCommandSetOutputBuffer(cmd, &help);
90

91 92
    if (virCommandRun(cmd, NULL) < 0)
        goto cleanup;
93

94 95 96 97
    tmp = help;

    /* expected format: vzctl version <major>.<minor>.<micro> */
    if ((tmp = STRSKIP(tmp, "vzctl version ")) == NULL)
98
        goto cleanup;
99

I
Ilja Livenson 已提交
100
    if (virParseVersionString(tmp, &version, true) < 0)
101
        goto cleanup;
102 103 104 105 106 107

    if (retversion)
        *retversion = version;

    ret = 0;

108
 cleanup:
109
    virCommandFree(cmd);
110 111 112 113 114
    VIR_FREE(help);

    return ret;
}

115
int openvzExtractVersion(struct openvz_driver *driver)
116 117 118 119 120
{
    if (driver->version > 0)
        return 0;

    if (openvzExtractVersionInfo(VZCTL, &driver->version) < 0) {
121 122
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Could not extract vzctl version"));
123 124 125 126 127 128 129
        return -1;
    }

    return 0;
}


130 131 132 133 134 135 136 137
/* Parse config values of the form barrier:limit into barrier and limit */
static int
openvzParseBarrierLimit(const char* value,
                        unsigned long long *barrier,
                        unsigned long long *limit)
{
    char *token;
    char *saveptr = NULL;
138
    char *str;
P
Pavel Hrdina 已提交
139
    int ret = -1;
140

141
    if (VIR_STRDUP(str, value) < 0)
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
        goto error;

    token = strtok_r(str, ":", &saveptr);
    if (token == NULL) {
        goto error;
    } else {
        if (barrier != NULL) {
            if (virStrToLong_ull(token, NULL, 10, barrier))
                goto error;
        }
    }
    token = strtok_r(NULL, ":", &saveptr);
    if (token == NULL) {
        goto error;
    } else {
        if (limit != NULL) {
            if (virStrToLong_ull(token, NULL, 10, limit))
                goto error;
        }
    }
P
Pavel Hrdina 已提交
162
    ret = 0;
163
 error:
164
    VIR_FREE(str);
P
Pavel Hrdina 已提交
165
    return ret;
166 167 168
}


169 170 171 172 173
virCapsPtr openvzCapsInit(void)
{
    virCapsPtr caps;
    virCapsGuestPtr guest;

174
    if ((caps = virCapabilitiesNew(virArchFromHost(),
175
                                   false, false)) == NULL)
176 177
        goto no_memory;

178
    if (nodeCapsInitNUMA(NULL, caps) < 0)
179 180
        goto no_memory;

181
    if ((guest = virCapabilitiesAddGuest(caps,
182
                                         VIR_DOMAIN_OSTYPE_EXE,
183
                                         caps->host.arch,
184 185 186 187 188 189 190
                                         NULL,
                                         NULL,
                                         0,
                                         NULL)) == NULL)
        goto no_memory;

    if (virCapabilitiesAddGuestDomain(guest,
191
                                      VIR_DOMAIN_VIRT_OPENVZ,
192 193 194 195 196 197
                                      NULL,
                                      NULL,
                                      0,
                                      NULL) == NULL)
        goto no_memory;

198
    return caps;
199

200
 no_memory:
201
    virObjectUnref(caps);
202 203 204 205
    return NULL;
}


206
int
207
openvzReadNetworkConf(virDomainDefPtr def,
208 209
                      int veid)
{
210
    int ret;
211
    virDomainNetDefPtr net = NULL;
212
    char *temp = NULL;
213 214 215 216 217
    char *token, *saveptr = NULL;

    /*parse routing network configuration*
     * Sample from config:
     *   IP_ADDRESS="1.1.1.1 1.1.1.2"
N
Nehal J Wani 已提交
218
     * IPs split by space
219
     */
220
    ret = openvzReadVPSConfigParam(veid, "IP_ADDRESS", &temp);
221
    if (ret < 0) {
222 223 224
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not read 'IP_ADDRESS' from config for container %d"),
                       veid);
225 226 227 228
        goto error;
    } else if (ret > 0) {
        token = strtok_r(temp, " ", &saveptr);
        while (token != NULL) {
229
            if (VIR_ALLOC(net) < 0)
230
                goto error;
231 232

            net->type = VIR_DOMAIN_NET_TYPE_ETHERNET;
233
            if (virDomainNetAppendIpAddress(net, token, AF_UNSPEC, 0) < 0)
234
                goto error;
235

236
            if (VIR_APPEND_ELEMENT_COPY(def->nets, def->nnets, net) < 0)
237
                goto error;
238

239 240 241 242 243 244
            token = strtok_r(NULL, " ", &saveptr);
        }
    }

    /*parse bridge devices*/
    /*Sample from config:
N
Nehal J Wani 已提交
245 246
     * NETIF="ifname=eth10,mac=00:18:51:C1:05:EE,host_ifname=veth105.10,host_mac=00:18:51:8F:D9:F3"
     *devices split by ';'
247
     */
248
    ret = openvzReadVPSConfigParam(veid, "NETIF", &temp);
249
    if (ret < 0) {
250 251 252
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not read 'NETIF' from config for container %d"),
                       veid);
253 254 255 256 257
        goto error;
    } else if (ret > 0) {
        token = strtok_r(temp, ";", &saveptr);
        while (token != NULL) {
            /*add new device to list*/
258
            if (VIR_ALLOC(net) < 0)
259
                goto error;
260 261 262

            net->type = VIR_DOMAIN_NET_TYPE_BRIDGE;

263
            char *p = token;
264 265 266 267 268
            char cpy_temp[32];
            int len;

            /*parse string*/
            do {
269
                char *next = strchrnul(p, ',');
270
                if (STRPREFIX(p, "ifname=")) {
271 272 273
                    /* skip in libvirt */
                } else if (STRPREFIX(p, "host_ifname=")) {
                    p += 12;
274 275
                    len = next - p;
                    if (len > 16) {
276 277
                        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                       _("Too long network device name"));
278 279 280
                        goto error;
                    }

281
                    if (VIR_ALLOC_N(net->ifname, len+1) < 0)
282
                        goto error;
283

C
Chris Lalancette 已提交
284
                    if (virStrncpy(net->ifname, p, len, len+1) == NULL) {
285 286
                        virReportError(VIR_ERR_INTERNAL_ERROR,
                                       _("Network ifname %s too long for destination"), p);
C
Chris Lalancette 已提交
287 288
                        goto error;
                    }
289 290 291 292
                } else if (STRPREFIX(p, "bridge=")) {
                    p += 7;
                    len = next - p;
                    if (len > 16) {
293 294
                        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                       _("Too long bridge device name"));
295 296 297
                        goto error;
                    }

298
                    if (VIR_ALLOC_N(net->data.bridge.brname, len+1) < 0)
299
                        goto error;
300

C
Chris Lalancette 已提交
301
                    if (virStrncpy(net->data.bridge.brname, p, len, len+1) == NULL) {
302 303
                        virReportError(VIR_ERR_INTERNAL_ERROR,
                                       _("Bridge name %s too long for destination"), p);
C
Chris Lalancette 已提交
304 305
                        goto error;
                    }
306 307 308
                } else if (STRPREFIX(p, "mac=")) {
                    p += 4;
                    len = next - p;
309
                    if (len != 17) { /* should be 17 */
310 311
                        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                       _("Wrong length MAC address"));
312 313
                        goto error;
                    }
C
Chris Lalancette 已提交
314
                    if (virStrncpy(cpy_temp, p, len, sizeof(cpy_temp)) == NULL) {
315 316
                        virReportError(VIR_ERR_INTERNAL_ERROR,
                                       _("MAC address %s too long for destination"), p);
C
Chris Lalancette 已提交
317 318
                        goto error;
                    }
319
                    if (virMacAddrParse(cpy_temp, &net->mac) < 0) {
320 321
                        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                       _("Wrong MAC address"));
322 323 324 325 326 327
                        goto error;
                    }
                }
                p = ++next;
            } while (p < token + strlen(token));

328
            if (VIR_APPEND_ELEMENT_COPY(def->nets, def->nnets, net) < 0)
329
                goto error;
330

331 332 333 334
            token = strtok_r(NULL, ";", &saveptr);
        }
    }

335 336
    VIR_FREE(temp);

337
    return 0;
338

339
 error:
340
    VIR_FREE(temp);
341
    virDomainNetDefFree(net);
342
    return -1;
343 344 345
}


346
static int
347
openvzReadFSConf(virDomainDefPtr def,
348 349
                 int veid)
{
350 351
    int ret;
    virDomainFSDefPtr fs = NULL;
352 353
    char *veid_str = NULL;
    char *temp = NULL;
354 355
    const char *param;
    unsigned long long barrier, limit;
356

357
    ret = openvzReadVPSConfigParam(veid, "OSTEMPLATE", &temp);
358
    if (ret < 0) {
359 360 361
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not read 'OSTEMPLATE' from config for container %d"),
                       veid);
362 363 364
        goto error;
    } else if (ret > 0) {
        if (VIR_ALLOC(fs) < 0)
365
            goto error;
366 367

        fs->type = VIR_DOMAIN_FS_TYPE_TEMPLATE;
368 369
        if (VIR_STRDUP(fs->src, temp) < 0)
            goto error;
370 371
    } else {
        /* OSTEMPLATE was not found, VE was booted from a private dir directly */
372
        ret = openvzReadVPSConfigParam(veid, "VE_PRIVATE", &temp);
373
        if (ret <= 0) {
374 375 376
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Could not read 'VE_PRIVATE' from config for container %d"),
                           veid);
377 378
            goto error;
        }
379

380
        if (VIR_ALLOC(fs) < 0)
381
            goto error;
382

383
        if (virAsprintf(&veid_str, "%d", veid) < 0)
384
            goto error;
385 386

        fs->type = VIR_DOMAIN_FS_TYPE_MOUNT;
387 388
        if (!(fs->src = virStringReplace(temp, "$VEID", veid_str)))
            goto error;
389

390
        VIR_FREE(veid_str);
391 392
    }

393 394
    if (VIR_STRDUP(fs->dst, "/") < 0)
        goto error;
395

396 397 398 399
    param = "DISKSPACE";
    ret = openvzReadVPSConfigParam(veid, param, &temp);
    if (ret > 0) {
        if (openvzParseBarrierLimit(temp, &barrier, &limit)) {
400 401 402
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Could not read '%s' from config for container %d"),
                           param, veid);
403 404 405
            goto error;
        } else {
            /* Ensure that we can multiply by 1024 without overflowing. */
406
            if (barrier > ULLONG_MAX / 1024 ||
407
                limit > ULLONG_MAX / 1024) {
J
Jiri Denemark 已提交
408 409
                virReportError(VIR_ERR_OVERFLOW, "%s",
                               _("Unable to parse quota"));
410 411 412 413 414 415 416
                goto error;
            }
            fs->space_soft_limit = barrier * 1024; /* unit is bytes */
            fs->space_hard_limit = limit * 1024;   /* unit is bytes */
        }
    }

417
    if (VIR_APPEND_ELEMENT(def->fss, def->nfss, fs) < 0)
418
        goto error;
419

420 421
    VIR_FREE(temp);

422
    return 0;
423
 error:
424
    VIR_FREE(temp);
425 426 427 428 429
    virDomainFSDefFree(fs);
    return -1;
}


430 431 432
static int
openvzReadMemConf(virDomainDefPtr def, int veid)
{
433
    int ret = -1;
434 435 436
    char *temp = NULL;
    unsigned long long barrier, limit;
    const char *param;
437
    long kb_per_pages;
438

439 440
    kb_per_pages = openvzKBPerPages();
    if (kb_per_pages < 0)
441 442 443 444 445 446
        goto error;

    /* Memory allocation guarantee */
    param = "VMGUARPAGES";
    ret = openvzReadVPSConfigParam(veid, param, &temp);
    if (ret < 0) {
447 448 449
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not read '%s' from config for container %d"),
                       param, veid);
450 451 452 453
        goto error;
    } else if (ret > 0) {
        ret = openvzParseBarrierLimit(temp, &barrier, NULL);
        if (ret < 0) {
454 455 456
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Could not parse barrier of '%s' "
                             "from config for container %d"), param, veid);
457 458 459 460 461 462 463 464 465 466 467 468
            goto error;
        }
        if (barrier == LONG_MAX)
            def->mem.min_guarantee = 0ull;
        else
            def->mem.min_guarantee = barrier * kb_per_pages;
    }

    /* Memory hard and soft limits */
    param = "PRIVVMPAGES";
    ret = openvzReadVPSConfigParam(veid, param, &temp);
    if (ret < 0) {
469 470 471
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not read '%s' from config for container %d"),
                       param, veid);
472 473 474 475
        goto error;
    } else if (ret > 0) {
        ret = openvzParseBarrierLimit(temp, &barrier, &limit);
        if (ret < 0) {
476 477 478
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Could not parse barrier and limit of '%s' "
                             "from config for container %d"), param, veid);
479 480 481
            goto error;
        }
        if (barrier == LONG_MAX)
482
            def->mem.soft_limit = VIR_DOMAIN_MEMORY_PARAM_UNLIMITED;
483 484 485 486
        else
            def->mem.soft_limit = barrier * kb_per_pages;

        if (limit == LONG_MAX)
487
            def->mem.hard_limit = VIR_DOMAIN_MEMORY_PARAM_UNLIMITED;
488 489 490 491 492
        else
            def->mem.hard_limit = limit * kb_per_pages;
    }

    ret = 0;
493
 error:
494 495 496 497 498
    VIR_FREE(temp);
    return ret;
}


499 500 501 502 503 504
/* Free all memory associated with a openvz_driver structure */
void
openvzFreeDriver(struct openvz_driver *driver)
{
    if (!driver)
        return;
505

506
    virObjectUnref(driver->xmlopt);
507
    virObjectUnref(driver->domains);
508
    virObjectUnref(driver->caps);
509
    VIR_FREE(driver);
510
}
D
Daniel Veillard 已提交
511 512 513



514 515
int openvzLoadDomains(struct openvz_driver *driver)
{
516
    int veid, ret;
517
    char *status;
518
    char uuidstr[VIR_UUID_STRING_BUFLEN];
519
    virDomainObjPtr dom = NULL;
520
    virDomainDefPtr def = NULL;
521
    char *temp = NULL;
E
Eric Blake 已提交
522 523 524
    char *outbuf = NULL;
    char *line;
    virCommandPtr cmd = NULL;
525

526 527
    if (openvzAssignUUIDs() < 0)
        return -1;
528

E
Eric Blake 已提交
529 530 531 532
    cmd = virCommandNewArgList(VZLIST, "-a", "-ovpsid,status", "-H", NULL);
    virCommandSetOutputBuffer(cmd, &outbuf);
    if (virCommandRun(cmd, NULL) < 0)
        goto cleanup;
533

534 535
    line = outbuf;
    while (line[0] != '\0') {
536
        unsigned int flags = 0;
537 538 539
        if (virStrToLong_i(line, &status, 10, &veid) < 0 ||
            *status++ != ' ' ||
            (line = strchr(status, '\n')) == NULL) {
540 541
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Failed to parse vzlist output"));
542
            goto cleanup;
543
        }
544
        *line++ = '\0';
545

546
        if (!(def = virDomainDefNew()))
547
            goto cleanup;
548

549
        def->virtType = VIR_DOMAIN_VIRT_OPENVZ;
550

551 552
        if (STREQ(status, "stopped"))
            def->id = -1;
J
Jiri Denemark 已提交
553
        else
554 555
            def->id = veid;
        if (virAsprintf(&def->name, "%i", veid) < 0)
556
            goto cleanup;
557

558
        openvzGetVPSUUID(veid, uuidstr, sizeof(uuidstr));
559
        ret = virUUIDParse(uuidstr, def->uuid);
560

561
        if (ret == -1) {
562 563
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("UUID in config file malformed"));
564
            goto cleanup;
565
        }
566

567
        def->os.type = VIR_DOMAIN_OSTYPE_EXE;
568 569
        if (VIR_STRDUP(def->os.init, "/sbin/init") < 0)
            goto cleanup;
570

571
        ret = openvzReadVPSConfigParam(veid, "CPUS", &temp);
572
        if (ret < 0) {
573 574 575
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Could not read config for container %d"),
                           veid);
576
            goto cleanup;
577
        } else if (ret > 0) {
578
            def->maxvcpus = strtoI(temp);
579 580
        }

581 582 583
        if (ret == 0 || def->maxvcpus == 0)
            def->maxvcpus = openvzGetNodeCPUs();
        def->vcpus = def->maxvcpus;
584

585
        /* XXX load rest of VM config data .... */
586

587 588 589
        openvzReadNetworkConf(def, veid);
        openvzReadFSConf(def, veid);
        openvzReadMemConf(def, veid);
590

591
        virUUIDFormat(def->uuid, uuidstr);
592 593 594 595
        flags = VIR_DOMAIN_OBJ_LIST_ADD_CHECK_LIVE;
        if (STRNEQ(status, "stopped"))
            flags |= VIR_DOMAIN_OBJ_LIST_ADD_LIVE;

596 597
        if (!(dom = virDomainObjListAdd(driver->domains,
                                        def,
598
                                        driver->xmlopt,
599 600
                                        flags,
                                        NULL)))
601
            goto cleanup;
602 603 604 605 606 607 608 609 610

        if (STREQ(status, "stopped")) {
            virDomainObjSetState(dom, VIR_DOMAIN_SHUTOFF,
                                 VIR_DOMAIN_SHUTOFF_UNKNOWN);
            dom->pid = -1;
        } else {
            virDomainObjSetState(dom, VIR_DOMAIN_RUNNING,
                                 VIR_DOMAIN_RUNNING_UNKNOWN);
            dom->pid = veid;
611
        }
612 613
        /* XXX OpenVZ doesn't appear to have concept of a transient domain */
        dom->persistent = 1;
614

615
        virObjectUnlock(dom);
616
        dom = NULL;
617
        def = NULL;
618
    }
619

E
Eric Blake 已提交
620
    virCommandFree(cmd);
621
    VIR_FREE(temp);
E
Eric Blake 已提交
622
    VIR_FREE(outbuf);
623

624
    return 0;
625

626
 cleanup:
E
Eric Blake 已提交
627
    virCommandFree(cmd);
628
    VIR_FREE(temp);
E
Eric Blake 已提交
629
    VIR_FREE(outbuf);
630
    virObjectUnref(dom);
631
    virDomainDefFree(def);
632
    return -1;
633 634
}

635 636 637 638 639
unsigned int
openvzGetNodeCPUs(void)
{
    virNodeInfo nodeinfo;

640
    if (nodeGetInfo(NULL, &nodeinfo) < 0)
641 642 643 644
        return 0;

    return nodeinfo.cpus;
}
645

646 647
static int
openvzWriteConfigParam(const char * conf_file, const char *param, const char *value)
648
{
649
    char * temp_file = NULL;
650 651 652 653
    int temp_fd = -1;
    FILE *fp;
    char *line = NULL;
    size_t line_size = 0;
654

655
    if (virAsprintf(&temp_file, "%s.tmp", conf_file)<0)
656 657
        return -1;

658 659
    fp = fopen(conf_file, "r");
    if (fp == NULL)
660
        goto error;
661
    temp_fd = open(temp_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
662
    if (temp_fd == -1)
663
        goto error;
664

E
Eric Blake 已提交
665
    while (1) {
666
        if (getline(&line, &line_size, fp) <= 0)
667 668
            break;

669
        if (!(STRPREFIX(line, param) && line[strlen(param)] == '=')) {
670 671 672 673 674 675 676 677 678 679 680 681
            if (safewrite(temp_fd, line, strlen(line)) !=
                strlen(line))
                goto error;
        }
    }

    if (safewrite(temp_fd, param, strlen(param)) < 0 ||
        safewrite(temp_fd, "=\"", 2) < 0 ||
        safewrite(temp_fd, value, strlen(value)) < 0 ||
        safewrite(temp_fd, "\"\n", 2) < 0)
        goto error;

682
    if (VIR_FCLOSE(fp) < 0)
683
        goto error;
684
    if (VIR_CLOSE(temp_fd) < 0)
685 686 687 688 689
        goto error;

    if (rename(temp_file, conf_file) < 0)
        goto error;

690 691
    VIR_FREE(line);

692 693
    return 0;

694
 error:
695 696
    VIR_FREE(line);
    VIR_FORCE_FCLOSE(fp);
697
    VIR_FORCE_CLOSE(temp_fd);
E
Eric Blake 已提交
698
    if (temp_file)
699 700
        unlink(temp_file);
    VIR_FREE(temp_file);
701 702 703
    return -1;
}

704
int
705 706
openvzWriteVPSConfigParam(int vpsid, const char *param, const char *value)
{
707 708
    char *conf_file;
    int ret;
709

710
    if (openvzLocateConfFile(vpsid, &conf_file, "conf") < 0)
711 712
        return -1;

713 714 715
    ret = openvzWriteConfigParam(conf_file, param, value);
    VIR_FREE(conf_file);
    return ret;
716 717
}

718 719 720
/*
 * value will be freed before a new value is assigned to it, the caller is
 * responsible for freeing it afterwards.
721 722
 *
 * Returns <0 on error, 0 if not found, 1 if found.
723
 */
724
int
725
openvzReadConfigParam(const char *conf_file, const char *param, char **value)
726
{
727 728 729
    char *line = NULL;
    size_t line_size = 0;
    FILE *fp;
730 731
    int err = 0;
    char *sf, *token, *saveptr = NULL;
732

733 734
    fp = fopen(conf_file, "r");
    if (fp == NULL)
735 736
        return -1;

737
    VIR_FREE(*value);
738 739 740 741 742 743
    while (1) {
        if (getline(&line, &line_size, fp) < 0) {
            err = !feof(fp);
            break;
        }

744 745 746 747 748 749
        if (! STREQLEN(line, param, strlen(param)))
            continue;

        sf = line + strlen(param);
        if (*sf++ != '=') continue;

750
        saveptr = NULL;
751 752
        if ((token = strtok_r(sf, "\"\t\n", &saveptr)) != NULL) {
            VIR_FREE(*value);
753
            if (VIR_STRDUP(*value, token) < 0) {
754 755
                err = 1;
                break;
756
            }
757 758
            /* keep going - last entry wins */
        }
759
    }
760 761
    VIR_FREE(line);
    VIR_FORCE_FCLOSE(fp);
762

763
    return err ? -1 : *value ? 1 : 0;
764 765
}

766
/*
767 768 769 770 771 772 773 774 775 776
 * Read parameter from container config
 *
 * value will be freed before a new value is assined to it, the caller is
 * responsible for freeing it afterwards.
 *
 * sample: 133, "OSTEMPLATE", &value
 * return: -1 - error
 *          0 - don't found
 *          1 - OK
 */
777
int
778
openvzReadVPSConfigParam(int vpsid, const char *param, char **value)
779
{
780 781
    char *conf_file;
    int ret;
782

783
    if (openvzLocateConfFile(vpsid, &conf_file, "conf") < 0)
784 785
        return -1;

786
    ret = openvzReadConfigParam(conf_file, param, value);
787 788
    VIR_FREE(conf_file);
    return ret;
789 790 791 792 793
}

static int
openvz_copyfile(char* from_path, char* to_path)
{
794 795 796 797
    char *line = NULL;
    size_t line_size = 0;
    FILE *fp;
    int copy_fd;
798 799
    int bytes_read;

800 801
    fp = fopen(from_path, "r");
    if (fp == NULL)
802 803 804
        return -1;
    copy_fd = open(to_path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
    if (copy_fd == -1) {
805
        VIR_FORCE_FCLOSE(fp);
806 807 808
        return -1;
    }

E
Eric Blake 已提交
809
    while (1) {
810
        if (getline(&line, &line_size, fp) <= 0)
811 812 813 814 815 816 817
            break;

        bytes_read = strlen(line);
        if (safewrite(copy_fd, line, bytes_read) != bytes_read)
            goto error;
    }

818
    if (VIR_FCLOSE(fp) < 0)
819
        goto error;
820
    if (VIR_CLOSE(copy_fd) < 0)
821 822
        goto error;

823 824
    VIR_FREE(line);

825 826
    return 0;

827
 error:
828 829
    VIR_FREE(line);
    VIR_FORCE_FCLOSE(fp);
830
    VIR_FORCE_CLOSE(copy_fd);
831 832 833 834 835 836 837 838 839 840 841
    return -1;
}

/*
* Copy the default config to the VE conf file
* return: -1 - error
*          0 - OK
*/
int
openvzCopyDefaultConfig(int vpsid)
{
842 843 844
    char *confdir = NULL;
    char *default_conf_file = NULL;
    char *configfile_value = NULL;
845
    char *conf_file = NULL;
846 847
    int ret = -1;

848
    if (openvzReadConfigParam(VZ_CONF_FILE, "CONFIGFILE", &configfile_value) < 0)
849 850 851 852 853 854
        goto cleanup;

    confdir = openvzLocateConfDir();
    if (confdir == NULL)
        goto cleanup;

855
    if (virAsprintf(&default_conf_file, "%s/ve-%s.conf-sample", confdir,
856
                    configfile_value) < 0)
857 858
        goto cleanup;

859
    if (openvzLocateConfFile(vpsid, &conf_file, "conf") < 0)
860 861 862 863 864 865
        goto cleanup;

    if (openvz_copyfile(default_conf_file, conf_file)<0)
        goto cleanup;

    ret = 0;
866
 cleanup:
867 868
    VIR_FREE(confdir);
    VIR_FREE(default_conf_file);
869
    VIR_FREE(configfile_value);
870
    VIR_FREE(conf_file);
871 872 873
    return ret;
}

874
/* Locate config file of container
875 876
 * return -1 - error
 *         0 - OK */
877
static int
878
openvzLocateConfFileDefault(int vpsid, char **conffile, const char *ext)
879
{
880
    char *confdir;
881 882 883 884 885 886
    int ret = 0;

    confdir = openvzLocateConfDir();
    if (confdir == NULL)
        return -1;

887
    if (virAsprintf(conffile, "%s/%d.%s", confdir, vpsid,
888
                    ext ? ext : "conf") < 0)
889 890 891 892 893 894
        ret = -1;

    VIR_FREE(confdir);
    return ret;
}

895 896
static char *
openvzLocateConfDir(void)
897 898
{
    const char *conf_dir_list[] = {"/etc/vz/conf", "/usr/local/etc/conf", NULL};
899
    size_t i = 0;
900
    char *ret = NULL;
901

E
Eric Blake 已提交
902
    while (conf_dir_list[i]) {
903
        if (virFileExists(conf_dir_list[i])) {
904 905 906
            ignore_value(VIR_STRDUP(ret, conf_dir_list[i]));
            goto cleanup;
        }
E
Eric Blake 已提交
907
        i++;
908 909
    }

910
 cleanup:
911
    return ret;
912 913 914
}

/* Richard Steven's classic readline() function */
915
int
916
openvz_readline(int fd, char *ptr, int maxlen)
917 918 919 920
{
    int n, rc;
    char c;

E
Eric Blake 已提交
921
    for (n = 1; n < maxlen; n++) {
922
        if ((rc = read(fd, &c, 1)) == 1) {
923
            *ptr++ = c;
E
Eric Blake 已提交
924
            if (c == '\n')
925
                break;
E
Eric Blake 已提交
926 927
        } else if (rc == 0) {
            if (n == 1)
928 929 930 931 932 933 934 935 936 937 938
                return 0; /* EOF condition */
            else
                break;
        }
        else
            return -1; /* error */
    }
    *ptr = 0;
    return n;
}

939
static int
940
openvzGetVPSUUID(int vpsid, char *uuidstr, size_t len)
941
{
942
    char *conf_file;
943 944
    char *line = NULL;
    size_t line_size = 0;
945
    char *saveptr = NULL;
946 947
    char *uuidbuf;
    char *iden;
948
    FILE *fp;
949
    int retval = -1;
950

951
    if (openvzLocateConfFile(vpsid, &conf_file, "conf") < 0)
E
Eric Blake 已提交
952
        return -1;
953

954 955
    fp = fopen(conf_file, "r");
    if (fp == NULL)
956
        goto cleanup;
957

E
Eric Blake 已提交
958
    while (1) {
959 960 961 962 963 964 965
        if (getline(&line, &line_size, fp) < 0) {
            if (feof(fp)) { /* EOF, UUID was not found */
                uuidstr[0] = 0;
                break;
            } else {
                goto cleanup;
            }
966 967
        }

968 969 970 971
        iden = strtok_r(line, " ", &saveptr);
        uuidbuf = strtok_r(NULL, "\n", &saveptr);

        if (iden != NULL && uuidbuf != NULL && STREQ(iden, "#UUID:")) {
972
            if (virStrcpy(uuidstr, uuidbuf, len) == NULL) {
973 974
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("invalid uuid %s"), uuidbuf);
975 976
                goto cleanup;
            }
977 978 979
            break;
        }
    }
980
    retval = 0;
981
 cleanup:
982 983
    VIR_FREE(line);
    VIR_FORCE_FCLOSE(fp);
984
    VIR_FREE(conf_file);
985

C
Chris Lalancette 已提交
986
    return retval;
987 988 989 990 991
}

/* Do actual checking for UUID presence in conf file,
 * assign if not present.
 */
992 993
int
openvzSetDefinedUUID(int vpsid, unsigned char *uuid)
994
{
995
    char *conf_file;
996
    char uuidstr[VIR_UUID_STRING_BUFLEN];
997
    FILE *fp = NULL;
998
    int ret = -1;
999 1000 1001

    if (uuid == NULL)
        return -1;
1002

1003
    if (openvzLocateConfFile(vpsid, &conf_file, "conf") < 0)
E
Eric Blake 已提交
1004
        return -1;
1005

1006
    if (openvzGetVPSUUID(vpsid, uuidstr, sizeof(uuidstr)))
1007
        goto cleanup;
1008

J
Jim Meyering 已提交
1009
    if (uuidstr[0] == 0) {
1010
        fp = fopen(conf_file, "a"); /* append */
1011
        if (fp == NULL)
1012
            goto cleanup;
1013

1014 1015
        virUUIDFormat(uuid, uuidstr);

1016
        /* Record failure if fprintf or VIR_FCLOSE fails,
1017
           and be careful always to close the stream.  */
1018 1019
        if ((fprintf(fp, "\n#UUID: %s\n", uuidstr) < 0) ||
            (VIR_FCLOSE(fp) == EOF))
1020
            goto cleanup;
1021 1022
    }

1023
    ret = 0;
1024
 cleanup:
1025
    VIR_FORCE_FCLOSE(fp);
1026 1027
    VIR_FREE(conf_file);
    return ret;
1028 1029
}

1030
static int
1031 1032
openvzSetUUID(int vpsid)
{
1033 1034
    unsigned char uuid[VIR_UUID_BUFLEN];

1035
    if (virUUIDGenerate(uuid)) {
1036 1037
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Failed to generate UUID"));
1038 1039
        return -1;
    }
1040 1041 1042 1043

    return openvzSetDefinedUUID(vpsid, uuid);
}

1044 1045 1046 1047 1048 1049 1050
/*
 * Scan VPS config files and see if they have a UUID.
 * If not, assign one. Just append one to the config
 * file as comment so that the OpenVZ tools ignore it.
 *
 */

1051
static int openvzAssignUUIDs(void)
1052 1053 1054 1055
{
    DIR *dp;
    struct dirent *dent;
    char *conf_dir;
1056 1057 1058
    int vpsid;
    char *ext;
    int ret = 0;
1059 1060

    conf_dir = openvzLocateConfDir();
1061 1062
    if (conf_dir == NULL)
        return -1;
1063 1064

    dp = opendir(conf_dir);
E
Eric Blake 已提交
1065
    if (dp == NULL) {
1066
        VIR_FREE(conf_dir);
1067 1068 1069
        return 0;
    }

E
Eric Blake 已提交
1070
    while ((ret = virDirRead(dp, &dent, conf_dir)) > 0) {
1071 1072 1073
        if (virStrToLong_i(dent->d_name, &ext, 10, &vpsid) < 0 ||
            *ext++ != '.' ||
            STRNEQ(ext, "conf"))
1074
            continue;
E
Eric Blake 已提交
1075
        if (vpsid > 0) /* '0.conf' belongs to the host, ignore it */
1076 1077
            openvzSetUUID(vpsid);
    }
1078

1079
    closedir(dp);
1080
    VIR_FREE(conf_dir);
1081
    return ret;
1082
}
1083 1084 1085 1086 1087 1088 1089


/*
 * Return CTID from name
 *
 */

1090 1091
int openvzGetVEID(const char *name)
{
E
Eric Blake 已提交
1092 1093
    virCommandPtr cmd;
    char *outbuf;
1094
    char *temp;
1095
    int veid;
1096
    bool ok;
1097

E
Eric Blake 已提交
1098 1099 1100 1101 1102
    cmd = virCommandNewArgList(VZLIST, name, "-ovpsid", "-H", NULL);
    virCommandSetOutputBuffer(cmd, &outbuf);
    if (virCommandRun(cmd, NULL) < 0) {
        virCommandFree(cmd);
        VIR_FREE(outbuf);
1103 1104 1105
        return -1;
    }

E
Eric Blake 已提交
1106
    virCommandFree(cmd);
1107
    ok = virStrToLong_i(outbuf, &temp, 10, &veid) == 0 && *temp == '\n';
E
Eric Blake 已提交
1108
    VIR_FREE(outbuf);
1109

1110 1111 1112
    if (ok && veid >= 0)
        return veid;

1113 1114
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                   _("Failed to parse vzlist output"));
1115 1116
    return -1;
}