lxc_domain.c 12.9 KB
Newer Older
1
/*
2
 * Copyright (C) 2010-2014 Red Hat, Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
 * Copyright IBM Corp. 2008
 *
 * lxc_domain.h: LXC domain helpers
 *
 * 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
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24 25
 */

#include <config.h>

#include "lxc_domain.h"

26
#include "virlog.h"
27
#include "virerror.h"
I
ik.nitk 已提交
28 29
#include "virstring.h"
#include "virfile.h"
30
#include "virtime.h"
31
#include "virsystemd.h"
32
#include "virinitctl.h"
33
#include "domain_driver.h"
34 35

#define VIR_FROM_THIS VIR_FROM_LXC
36

37 38
VIR_ENUM_IMPL(virLXCDomainJob,
              LXC_JOB_LAST,
39 40 41 42 43 44
              "none",
              "query",
              "destroy",
              "modify",
);

45 46
VIR_LOG_INIT("lxc.lxc_domain");

47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
static int
virLXCDomainObjInitJob(virLXCDomainObjPrivatePtr priv)
{
    memset(&priv->job, 0, sizeof(priv->job));

    if (virCondInit(&priv->job.cond) < 0)
        return -1;

    return 0;
}

static void
virLXCDomainObjResetJob(virLXCDomainObjPrivatePtr priv)
{
    struct virLXCDomainJobObj *job = &priv->job;

    job->active = LXC_JOB_NONE;
    job->owner = 0;
}

static void
virLXCDomainObjFreeJob(virLXCDomainObjPrivatePtr priv)
{
    ignore_value(virCondDestroy(&priv->job.cond));
}

/* Give up waiting for mutex after 30 seconds */
#define LXC_JOB_WAIT_TIME (1000ull * 30)

/*
 * obj must be locked before calling, virLXCDriverPtr must NOT be locked
 *
 * This must be called by anything that will change the VM state
 * in any way
 *
82 83
 * Upon successful return, the object will have its ref count increased.
 * Successful calls must be followed by EndJob eventually.
84 85
 */
int
J
Ján Tomko 已提交
86
virLXCDomainObjBeginJob(virLXCDriverPtr driver G_GNUC_UNUSED,
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 119 120 121 122 123 124 125 126 127 128 129 130 131
                       virDomainObjPtr obj,
                       enum virLXCDomainJob job)
{
    virLXCDomainObjPrivatePtr priv = obj->privateData;
    unsigned long long now;
    unsigned long long then;

    if (virTimeMillisNow(&now) < 0)
        return -1;
    then = now + LXC_JOB_WAIT_TIME;

    while (priv->job.active) {
        VIR_DEBUG("Wait normal job condition for starting job: %s",
                  virLXCDomainJobTypeToString(job));
        if (virCondWaitUntil(&priv->job.cond, &obj->parent.lock, then) < 0)
            goto error;
    }

    virLXCDomainObjResetJob(priv);

    VIR_DEBUG("Starting job: %s", virLXCDomainJobTypeToString(job));
    priv->job.active = job;
    priv->job.owner = virThreadSelfID();

    return 0;

 error:
    VIR_WARN("Cannot start job (%s) for domain %s;"
             " current job is (%s) owned by (%d)",
             virLXCDomainJobTypeToString(job),
             obj->def->name,
             virLXCDomainJobTypeToString(priv->job.active),
             priv->job.owner);

    if (errno == ETIMEDOUT)
        virReportError(VIR_ERR_OPERATION_TIMEOUT,
                       "%s", _("cannot acquire state change lock"));
    else
        virReportSystemError(errno,
                             "%s", _("cannot acquire job mutex"));
    return -1;
}


/*
132
 * obj must be locked and have a reference before calling
133 134 135 136
 *
 * To be called after completing the work associated with the
 * earlier virLXCDomainBeginJob() call
 */
137
void
J
Ján Tomko 已提交
138
virLXCDomainObjEndJob(virLXCDriverPtr driver G_GNUC_UNUSED,
139 140 141 142 143 144 145 146 147 148 149 150 151 152
                     virDomainObjPtr obj)
{
    virLXCDomainObjPrivatePtr priv = obj->privateData;
    enum virLXCDomainJob job = priv->job.active;

    VIR_DEBUG("Stopping job: %s",
              virLXCDomainJobTypeToString(job));

    virLXCDomainObjResetJob(priv);
    virCondSignal(&priv->job.cond);
}


static void *
J
Ján Tomko 已提交
153
virLXCDomainObjPrivateAlloc(void *opaque G_GNUC_UNUSED)
154
{
155
    virLXCDomainObjPrivatePtr priv = g_new0(virLXCDomainObjPrivate, 1);
156

157
    if (virLXCDomainObjInitJob(priv) < 0) {
158
        g_free(priv);
159 160 161
        return NULL;
    }

162 163 164
    return priv;
}

165 166 167 168 169 170

static void
virLXCDomainObjPrivateFree(void *data)
{
    virLXCDomainObjPrivatePtr priv = data;

171
    virCgroupFree(&priv->cgroup);
172
    virLXCDomainObjFreeJob(priv);
173
    g_free(priv);
174 175 176 177
}



I
ik.nitk 已提交
178 179 180 181
VIR_ENUM_IMPL(virLXCDomainNamespace,
              VIR_LXC_DOMAIN_NAMESPACE_LAST,
              "sharenet",
              "shareipc",
182 183
              "shareuts",
);
I
ik.nitk 已提交
184 185 186 187 188 189

VIR_ENUM_IMPL(virLXCDomainNamespaceSource,
              VIR_LXC_DOMAIN_NAMESPACE_SOURCE_LAST,
              "none",
              "name",
              "pid",
190 191
              "netns",
);
I
ik.nitk 已提交
192 193 194 195 196 197 198

static void
lxcDomainDefNamespaceFree(void *nsdata)
{
    size_t i;
    lxcDomainDefPtr lxcDef = nsdata;
    for (i = 0; i < VIR_LXC_DOMAIN_NAMESPACE_LAST; i++)
199 200
        g_free(lxcDef->ns_val[i]);
    g_free(nsdata);
I
ik.nitk 已提交
201 202 203
}

static int
204
lxcDomainDefNamespaceParse(xmlXPathContextPtr ctxt,
I
ik.nitk 已提交
205 206
                           void **data)
{
207
    lxcDomainDefPtr lxcDef = g_new0(lxcDomainDef, 1);
208
    g_autofree xmlNodePtr *nodes = NULL;
I
ik.nitk 已提交
209 210 211 212 213 214 215 216 217 218 219 220
    bool uses_lxc_ns = false;
    xmlNodePtr node;
    int feature;
    int n;
    size_t i;

    node = ctxt->node;
    if ((n = virXPathNodeSet("./lxc:namespace/*", ctxt, &nodes)) < 0)
        goto error;
    uses_lxc_ns |= n > 0;

    for (i = 0; i < n; i++) {
221
        g_autofree char *tmp = NULL;
I
ik.nitk 已提交
222
        if ((feature = virLXCDomainNamespaceTypeFromString(
223
                 (const char *)nodes[i]->name)) < 0) {
I
ik.nitk 已提交
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                            _("unsupported Namespace feature: %s"),
                            nodes[i]->name);
            goto error;
        }

        ctxt->node = nodes[i];

        if (!(tmp = virXMLPropString(nodes[i], "type"))) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("No lxc environment type specified"));
            goto error;
        }
        if ((lxcDef->ns_source[feature] =
             virLXCDomainNamespaceSourceTypeFromString(tmp)) < 0) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unknown LXC namespace source '%s'"),
                           tmp);
            goto error;
        }

        if (!(lxcDef->ns_val[feature] =
              virXMLPropString(nodes[i], "value"))) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("No lxc environment type specified"));
            goto error;
        }
    }
    ctxt->node = node;
    if (uses_lxc_ns)
        *data = lxcDef;
    else
256
        g_free(lxcDef);
I
ik.nitk 已提交
257 258 259 260 261 262 263 264 265 266 267 268 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
    return 0;
 error:
    lxcDomainDefNamespaceFree(lxcDef);
    return -1;
}


static int
lxcDomainDefNamespaceFormatXML(virBufferPtr buf,
                               void *nsdata)
{
    lxcDomainDefPtr lxcDef = nsdata;
    size_t i;

    if (!lxcDef)
       return 0;

    virBufferAddLit(buf, "<lxc:namespace>\n");
    virBufferAdjustIndent(buf, 2);

    for (i = 0; i < VIR_LXC_DOMAIN_NAMESPACE_LAST; i++) {
        if (lxcDef->ns_source[i] == VIR_LXC_DOMAIN_NAMESPACE_SOURCE_NONE)
            continue;

        virBufferAsprintf(buf, "<lxc:%s type='%s' value='%s'/>\n",
                          virLXCDomainNamespaceTypeToString(i),
                          virLXCDomainNamespaceSourceTypeToString(
                              lxcDef->ns_source[i]),
                          lxcDef->ns_val[i]);
    }

    virBufferAdjustIndent(buf, -2);
    virBufferAddLit(buf, "</lxc:namespace>\n");
    return 0;
}


294
virXMLNamespace virLXCDriverDomainXMLNamespace = {
I
ik.nitk 已提交
295 296 297
    .parse = lxcDomainDefNamespaceParse,
    .free = lxcDomainDefNamespaceFree,
    .format = lxcDomainDefNamespaceFormatXML,
298
    .prefix = "lxc",
299
    .uri = "http://libvirt.org/schemas/domain/lxc/1.0",
I
ik.nitk 已提交
300 301 302
};


303 304 305
static int
virLXCDomainObjPrivateXMLFormat(virBufferPtr buf,
                                virDomainObjPtr vm)
306
{
307
    virLXCDomainObjPrivatePtr priv = vm->privateData;
308

M
Michal Privoznik 已提交
309
    virBufferAsprintf(buf, "<init pid='%lld'/>\n",
310
                      (long long)priv->initpid);
311 312 313 314

    return 0;
}

315 316
static int
virLXCDomainObjPrivateXMLParse(xmlXPathContextPtr ctxt,
317
                               virDomainObjPtr vm,
J
Ján Tomko 已提交
318
                               virDomainDefParserConfigPtr config G_GNUC_UNUSED)
319
{
320
    virLXCDomainObjPrivatePtr priv = vm->privateData;
M
Michal Privoznik 已提交
321
    long long thepid;
322

M
Michal Privoznik 已提交
323
    if (virXPathLongLong("string(./init[1]/@pid)", ctxt, &thepid) < 0) {
324 325
        VIR_WARN("Failed to load init pid from state %s",
                 virGetLastErrorMessage());
326 327 328 329 330 331 332 333
        priv->initpid = 0;
    } else {
        priv->initpid = thepid;
    }

    return 0;
}

334 335 336 337 338 339
virDomainXMLPrivateDataCallbacks virLXCDriverPrivateDataCallbacks = {
    .alloc = virLXCDomainObjPrivateAlloc,
    .free = virLXCDomainObjPrivateFree,
    .format = virLXCDomainObjPrivateXMLFormat,
    .parse  = virLXCDomainObjPrivateXMLParse,
};
340 341 342

static int
virLXCDomainDefPostParse(virDomainDefPtr def,
J
Ján Tomko 已提交
343
                         unsigned int parseFlags G_GNUC_UNUSED,
344
                         void *opaque,
J
Ján Tomko 已提交
345
                         void *parseOpaque G_GNUC_UNUSED)
346
{
347 348 349 350
    virLXCDriverPtr driver = opaque;
    g_autoptr(virCaps) caps = virLXCDriverGetCapabilities(driver, false);
    if (!caps)
        return -1;
351 352 353 354 355
    if (!virCapabilitiesDomainSupported(caps, def->os.type,
                                        def->os.arch,
                                        def->virtType))
        return -1;

356 357 358 359 360 361 362 363
    /* check for emulator and create a default one if needed */
    if (!def->emulator &&
        !(def->emulator = virDomainDefGetDefaultEmulator(def, caps)))
        return -1;

    return 0;
}

364 365 366

static int
virLXCDomainDeviceDefPostParse(virDomainDeviceDefPtr dev,
J
Ján Tomko 已提交
367 368 369 370
                               const virDomainDef *def G_GNUC_UNUSED,
                               unsigned int parseFlags G_GNUC_UNUSED,
                               void *opaque G_GNUC_UNUSED,
                               void *parseOpaque G_GNUC_UNUSED)
371 372 373 374 375 376 377 378 379 380
{
    if (dev->type == VIR_DOMAIN_DEVICE_CHR &&
        dev->data.chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE &&
        dev->data.chr->targetType == VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_NONE)
        dev->data.chr->targetType = VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_LXC;

    return 0;
}


381 382
virDomainDefParserConfig virLXCDriverDomainDefParserConfig = {
    .domainPostParseCallback = virLXCDomainDefPostParse,
383
    .devicesPostParseCallback = virLXCDomainDeviceDefPostParse,
384
};
385 386 387 388 389 390 391 392 393 394 395 396 397 398


char *
virLXCDomainGetMachineName(virDomainDefPtr def, pid_t pid)
{
    char *ret = NULL;

    if (pid) {
        ret = virSystemdGetMachineNameByPID(pid);
        if (!ret)
            virResetLastError();
    }

    if (!ret)
399
        ret = virDomainDriverGenerateMachineName("lxc", NULL, def->id, def->name, true);
400 401 402

    return ret;
}
403 404 405 406 407 408 409 410 411 412 413


typedef struct _lxcDomainInitctlCallbackData lxcDomainInitctlCallbackData;
struct _lxcDomainInitctlCallbackData {
    int runlevel;
    bool *st_valid;
    struct stat *st;
};


static int
J
Ján Tomko 已提交
414
lxcDomainInitctlCallback(pid_t pid G_GNUC_UNUSED,
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
                         void *opaque)
{
    lxcDomainInitctlCallbackData *data = opaque;
    size_t i;

    for (i = 0; virInitctlFifos[i]; i++) {
        const char *fifo = virInitctlFifos[i];
        struct stat cont_sb;

        if (stat(fifo, &cont_sb) < 0) {
            if (errno == ENOENT)
                continue;

            virReportSystemError(errno, _("Unable to stat %s"), fifo);
            return -1;
        }

        /* Check if the init fifo is not the very one that's on
         * the host. We don't want to change the host's runlevel.
         */
        if (data->st_valid[i] &&
            data->st[i].st_dev == cont_sb.st_dev &&
            data->st[i].st_ino == cont_sb.st_ino)
            continue;

        return virInitctlSetRunLevel(fifo, data->runlevel);
    }

    /* If no usable fifo was found then declare success. Caller
     * will try killing the domain with signal. */
    return 0;
}


int
virLXCDomainSetRunlevel(virDomainObjPtr vm,
                        int runlevel)
{
    virLXCDomainObjPrivatePtr priv = vm->privateData;
    lxcDomainInitctlCallbackData data;
    size_t nfifos = 0;
    size_t i;
    int ret = -1;

    memset(&data, 0, sizeof(data));

    data.runlevel = runlevel;

    for (nfifos = 0; virInitctlFifos[nfifos]; nfifos++)
        ;

466 467
    data.st = g_new0(struct stat, nfifos);
    data.st_valid = g_new0(bool, nfifos);
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486

    for (i = 0; virInitctlFifos[i]; i++) {
        const char *fifo = virInitctlFifos[i];

        if (stat(fifo, &(data.st[i])) < 0) {
            if (errno == ENOENT)
                continue;

            virReportSystemError(errno, _("Unable to stat %s"), fifo);
            goto cleanup;
        }

        data.st_valid[i] = true;
    }

    ret = virProcessRunInMountNamespace(priv->initpid,
                                        lxcDomainInitctlCallback,
                                        &data);
 cleanup:
487 488 489 490
    g_free(data.st);
    data.st = NULL;
    g_free(data.st_valid);
    data.st_valid = NULL;
491 492
    return ret;
}