uml_conf.c 15.5 KB
Newer Older
1 2 3
/*
 * uml_conf.c: UML driver configuration
 *
4
 * Copyright (C) 2006-2011 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
 * Copyright (C) 2006 Daniel P. Berrange
 *
 * 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
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>

#include <dirent.h>
#include <string.h>
#include <limits.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/wait.h>
#include <arpa/inet.h>
#include <sys/utsname.h>

#include "uml_conf.h"
#include "uuid.h"
#include "buf.h"
#include "conf.h"
#include "util.h"
#include "memory.h"
45
#include "nodeinfo.h"
46
#include "bridge.h"
47
#include "logging.h"
48
#include "domain_nwfilter.h"
E
Eric Blake 已提交
49
#include "virfile.h"
D
Daniel P. Berrange 已提交
50
#include "command.h"
51

52
#define VIR_FROM_THIS VIR_FROM_UML
53

54 55
#define umlLog(level, msg, ...)                                     \
        virLogMessage(__FILE__, level, 0, msg, __VA_ARGS__)
56

57 58 59 60 61 62 63

static int umlDefaultConsoleType(const char *ostype ATTRIBUTE_UNUSED)
{
    return VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_UML;
}


64 65 66 67 68 69 70 71 72 73
virCapsPtr umlCapsInit(void) {
    struct utsname utsname;
    virCapsPtr caps;
    virCapsGuestPtr guest;

    /* Really, this never fails - look at the man-page. */
    uname (&utsname);

    if ((caps = virCapabilitiesNew(utsname.machine,
                                   0, 0)) == NULL)
74
        goto error;
75

76 77 78 79 80 81
    /* Some machines have problematic NUMA toplogy causing
     * unexpected failures. We don't want to break the QEMU
     * driver in this scenario, so log errors & carry on
     */
    if (nodeCapsInitNUMA(caps) < 0) {
        virCapabilitiesFreeNUMAInfo(caps);
82
        VIR_WARN("Failed to query host NUMA topology, disabling NUMA capabilities");
83
    }
84

85 86 87 88 89 90
    if (virGetHostUUID(caps->host.host_uuid)) {
        umlReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("cannot get the host uuid"));
        goto error;
    }

91 92 93 94 95 96 97 98
    if ((guest = virCapabilitiesAddGuest(caps,
                                         "uml",
                                         utsname.machine,
                                         STREQ(utsname.machine, "x86_64") ? 64 : 32,
                                         NULL,
                                         NULL,
                                         0,
                                         NULL)) == NULL)
99
        goto error;
100 101 102 103 104 105 106

    if (virCapabilitiesAddGuestDomain(guest,
                                      "uml",
                                      NULL,
                                      NULL,
                                      0,
                                      NULL) == NULL)
107
        goto error;
108

109
    caps->defaultConsoleTargetType = umlDefaultConsoleType;
110

111 112
    return caps;

113
 error:
114 115 116 117 118
    virCapabilitiesFree(caps);
    return NULL;
}


119
static int
120 121
umlConnectTapDevice(virConnectPtr conn,
                    virDomainNetDefPtr net,
122 123
                    const char *bridge)
{
124
    brControl *brctl = NULL;
E
Eric Blake 已提交
125
    bool template_ifname = false;
126
    int err;
127
    unsigned char tapmac[VIR_MAC_BUFLEN];
128 129

    if ((err = brInit(&brctl))) {
130
        virReportSystemError(err, "%s",
131
                             _("cannot initialize bridge support"));
132 133 134
        goto error;
    }

135
    if (!net->ifname ||
E
Eric Blake 已提交
136
        STRPREFIX(net->ifname, VIR_NET_GENERATED_PREFIX) ||
137 138
        strchr(net->ifname, '%')) {
        VIR_FREE(net->ifname);
E
Eric Blake 已提交
139
        if (!(net->ifname = strdup(VIR_NET_GENERATED_PREFIX "%d")))
140
            goto no_memory;
141
        /* avoid exposing vnet%d in getXMLDesc or error outputs */
E
Eric Blake 已提交
142
        template_ifname = true;
143 144
    }

145 146 147 148 149 150 151
    memcpy(tapmac, net->mac, VIR_MAC_BUFLEN);
    tapmac[0] = 0xFE; /* Discourage bridge from using TAP dev MAC */
    if ((err = brAddTap(brctl,
                        bridge,
                        &net->ifname,
                        tapmac,
                        0,
152
                        true,
153
                        NULL))) {
D
Doug Goldstein 已提交
154
        if (err == ENOTSUP) {
155
            /* In this particular case, give a better diagnostic. */
156
            umlReportError(VIR_ERR_INTERNAL_ERROR,
157 158
                           _("Failed to add tap interface to bridge. "
                             "%s is not a bridge device"), bridge);
159 160 161 162 163
        } else if (err == ENOENT) {
            virReportSystemError(err, "%s",
                    _("Failed to add tap interface to bridge. Your kernel "
                      "is missing the 'tun' module or CONFIG_TUN, or you need "
                      "to add the /dev/net/tun device node."));
164
        } else if (template_ifname) {
165
            virReportSystemError(err,
166 167
                                 _("Failed to add tap interface to bridge '%s'"),
                                 bridge);
168
        } else {
169
            virReportSystemError(err,
170 171
                                 _("Failed to add tap interface '%s' to bridge '%s'"),
                                 net->ifname, bridge);
172
        }
173 174
        if (template_ifname)
            VIR_FREE(net->ifname);
175 176 177
        goto error;
    }

178 179 180 181 182 183 184 185
    if (net->filter) {
        if (virDomainConfNWFilterInstantiate(conn, net)) {
            if (template_ifname)
                VIR_FREE(net->ifname);
            goto error;
        }
    }

186 187 188 189 190
    brShutdown(brctl);

    return 0;

no_memory:
191
    virReportOOMError();
192 193 194 195 196 197 198 199 200 201 202 203 204 205
error:
    brShutdown(brctl);
    return -1;
}

static char *
umlBuildCommandLineNet(virConnectPtr conn,
                       virDomainNetDefPtr def,
                       int idx)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    /* General format:  ethNN=type,options */

206
    virBufferAsprintf(&buf, "eth%d=", idx);
207 208 209 210 211 212 213 214 215

    switch (def->type) {
    case VIR_DOMAIN_NET_TYPE_USER:
        /* ethNNN=slirp,macaddr */
        virBufferAddLit(&buf, "slirp");
        break;

    case VIR_DOMAIN_NET_TYPE_ETHERNET:
        /* ethNNN=tuntap,tapname,macaddr,gateway */
216 217 218 219
        virBufferAddLit(&buf, "tuntap,");
        if (def->ifname) {
            virBufferAdd(&buf, def->ifname, -1);
        }
220
        if (def->data.ethernet.ipaddr) {
221
            umlReportError(VIR_ERR_INTERNAL_ERROR, "%s",
222 223 224 225
                           _("IP address not supported for ethernet inteface"));
            goto error;
        }
        if (def->data.ethernet.script) {
226
            umlReportError(VIR_ERR_INTERNAL_ERROR, "%s",
227 228 229 230 231 232
                           _("script execution not supported for ethernet inteface"));
            goto error;
        }
        break;

    case VIR_DOMAIN_NET_TYPE_SERVER:
233
        umlReportError(VIR_ERR_INTERNAL_ERROR, "%s",
234 235 236 237
                       _("TCP server networking type not supported"));
        goto error;

    case VIR_DOMAIN_NET_TYPE_CLIENT:
238
        umlReportError(VIR_ERR_INTERNAL_ERROR, "%s",
239 240 241 242 243 244 245 246 247 248 249 250 251 252
                       _("TCP client networking type not supported"));
        goto error;

    case VIR_DOMAIN_NET_TYPE_MCAST:
        /* ethNNN=tuntap,macaddr,ipaddr,port */
        virBufferAddLit(&buf, "mcast");
        break;

    case VIR_DOMAIN_NET_TYPE_NETWORK:
    {
        char *bridge;
        virNetworkPtr network = virNetworkLookupByName(conn,
                                                       def->data.network.name);
        if (!network) {
253
            umlReportError(VIR_ERR_INTERNAL_ERROR,
254 255 256 257 258 259 260 261 262 263
                           _("Network '%s' not found"),
                           def->data.network.name);
            goto error;
        }
        bridge = virNetworkGetBridgeName(network);
        virNetworkFree(network);
        if (bridge == NULL) {
            goto error;
        }

264
        if (umlConnectTapDevice(conn, def, bridge) < 0) {
265 266 267 268 269
            VIR_FREE(bridge);
            goto error;
        }

        /* ethNNN=tuntap,tapname,macaddr,gateway */
270
        virBufferAsprintf(&buf, "tuntap,%s", def->ifname);
271 272 273 274
        break;
    }

    case VIR_DOMAIN_NET_TYPE_BRIDGE:
275
        if (umlConnectTapDevice(conn, def, def->data.bridge.brname) < 0)
276 277 278
            goto error;

        /* ethNNN=tuntap,tapname,macaddr,gateway */
279
        virBufferAsprintf(&buf, "tuntap,%s", def->ifname);
280 281 282
        break;

    case VIR_DOMAIN_NET_TYPE_INTERNAL:
283
        umlReportError(VIR_ERR_INTERNAL_ERROR, "%s",
284 285
                       _("internal networking type not supported"));
        goto error;
S
Stefan Berger 已提交
286 287

    case VIR_DOMAIN_NET_TYPE_DIRECT:
288
        umlReportError(VIR_ERR_INTERNAL_ERROR, "%s",
S
Stefan Berger 已提交
289 290 291 292 293
                       _("direct networking type not supported"));
        goto error;

    case VIR_DOMAIN_NET_TYPE_LAST:
        break;
294 295
    }

296
    virBufferAsprintf(&buf, ",%02x:%02x:%02x:%02x:%02x:%02x",
297 298 299 300
                      def->mac[0], def->mac[1], def->mac[2],
                      def->mac[3], def->mac[4], def->mac[5]);

    if (def->type == VIR_DOMAIN_NET_TYPE_MCAST) {
301
        virBufferAsprintf(&buf, ",%s,%d",
302 303 304 305 306
                          def->data.socket.address,
                          def->data.socket.port);
    }

    if (virBufferError(&buf)) {
307
        virReportOOMError();
308 309 310 311 312 313
        return NULL;
    }

    return virBufferContentAndReset(&buf);

error:
314
    virBufferFreeAndReset(&buf);
315 316 317
    return NULL;
}

318
static char *
319
umlBuildCommandLineChr(virDomainChrDefPtr def,
320
                       const char *dev,
D
Daniel P. Berrange 已提交
321
                       virCommandPtr cmd)
322
{
323
    char *ret = NULL;
324

325
    switch (def->source.type) {
326
    case VIR_DOMAIN_CHR_TYPE_NULL:
327
        if (virAsprintf(&ret, "%s%d=null", dev, def->target.port) < 0) {
328
            virReportOOMError();
329 330 331 332 333
            return NULL;
        }
        break;

    case VIR_DOMAIN_CHR_TYPE_PTY:
334
        if (virAsprintf(&ret, "%s%d=pts", dev, def->target.port) < 0) {
335
            virReportOOMError();
336 337 338 339 340
            return NULL;
        }
        break;

    case VIR_DOMAIN_CHR_TYPE_DEV:
341
        if (virAsprintf(&ret, "%s%d=tty:%s", dev, def->target.port,
342
                        def->source.data.file.path) < 0) {
343
            virReportOOMError();
344 345 346 347 348
            return NULL;
        }
        break;

    case VIR_DOMAIN_CHR_TYPE_STDIO:
349
        if (virAsprintf(&ret, "%s%d=fd:0,fd:1", dev, def->target.port) < 0) {
350
            virReportOOMError();
351 352 353 354 355
            return NULL;
        }
        break;

    case VIR_DOMAIN_CHR_TYPE_TCP:
356
        if (def->source.data.tcp.listen != 1) {
357 358
            umlReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("only TCP listen is supported for chr device"));
359 360 361
            return NULL;
        }

362
        if (virAsprintf(&ret, "%s%d=port:%s", dev, def->target.port,
363
                        def->source.data.tcp.service) < 0) {
364
            virReportOOMError();
365 366 367 368 369
            return NULL;
        }
        break;

    case VIR_DOMAIN_CHR_TYPE_FILE:
370 371 372
         {
            int fd_out;

373
            if ((fd_out = open(def->source.data.file.path,
374 375 376
                               O_WRONLY | O_APPEND | O_CREAT, 0660)) < 0) {
                virReportSystemError(errno,
                                     _("failed to open chardev file: %s"),
377
                                     def->source.data.file.path);
378 379 380 381
                return NULL;
            }
            if (virAsprintf(&ret, "%s%d=null,fd:%d", dev, def->target.port, fd_out) < 0) {
                virReportOOMError();
382
                VIR_FORCE_CLOSE(fd_out);
383 384
                return NULL;
            }
D
Daniel P. Berrange 已提交
385
            virCommandTransferFD(cmd, fd_out);
386 387 388 389 390
        }
        break;
   case VIR_DOMAIN_CHR_TYPE_PIPE:
        /* XXX could open the pipe & just pass the FDs. Be wary of
         * the effects of blocking I/O, though. */
391 392 393 394 395

    case VIR_DOMAIN_CHR_TYPE_VC:
    case VIR_DOMAIN_CHR_TYPE_UDP:
    case VIR_DOMAIN_CHR_TYPE_UNIX:
    default:
396
        umlReportError(VIR_ERR_INTERNAL_ERROR,
397
                       _("unsupported chr device type %d"), def->source.type);
398 399 400 401 402 403
        break;
    }

    return ret;
}

404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
/*
 * Null-terminate the current argument and return a pointer to the next.
 * This should follow the same rules as the Linux kernel: arguments are
 * separated by spaces; arguments can be quoted with double quotes; double
 * quotes can't be escaped.
 */
static char *umlNextArg(char *args)
{
    int in_quote = 0;

    for (; *args; args++) {
        if (*args == ' ' && !in_quote) {
            *args++ = '\0';
            break;
        }
        if (*args == '"')
            in_quote = !in_quote;
    }

    while (*args == ' ')
        args++;

    return args;
}

429 430 431 432
/*
 * Constructs a argv suitable for launching uml with config defined
 * for a given virtual machine.
 */
D
Daniel P. Berrange 已提交
433 434 435
virCommandPtr umlBuildCommandLine(virConnectPtr conn,
                                  struct uml_driver *driver,
                                  virDomainObjPtr vm)
436
{
437 438
    int i, j;
    struct utsname ut;
D
Daniel P. Berrange 已提交
439
    virCommandPtr cmd;
440 441 442

    uname(&ut);

D
Daniel P. Berrange 已提交
443 444 445 446 447 448 449 450
    cmd = virCommandNew(vm->def->os.kernel);

    virCommandAddEnvPassCommon(cmd);

    //virCommandAddArgPair(cmd, "con0", "fd:0,fd:1");
    virCommandAddArgFormat(cmd, "mem=%luK", vm->def->mem.cur_balloon);
    virCommandAddArgPair(cmd, "umid", vm->def->name);
    virCommandAddArgPair(cmd, "uml_dir", driver->monitorDir);
451 452

    if (vm->def->os.root)
D
Daniel P. Berrange 已提交
453
        virCommandAddArgPair(cmd, "root", vm->def->os.root);
454 455 456 457 458

    for (i = 0 ; i < vm->def->ndisks ; i++) {
        virDomainDiskDefPtr disk = vm->def->disks[i];

        if (!STRPREFIX(disk->dst, "ubd")) {
459
            umlReportError(VIR_ERR_INTERNAL_ERROR,
460 461 462 463
                           _("unsupported disk type '%s'"), disk->dst);
            goto error;
        }

D
Daniel P. Berrange 已提交
464
        virCommandAddArgPair(cmd, disk->dst, disk->src);
465 466
    }

467 468 469 470
    for (i = 0 ; i < vm->def->nnets ; i++) {
        char *ret = umlBuildCommandLineNet(conn, vm->def->nets[i], i);
        if (!ret)
            goto error;
D
Daniel P. Berrange 已提交
471 472
        virCommandAddArg(cmd, ret);
        VIR_FREE(ret);
473 474
    }

475
    for (i = 0 ; i < UML_MAX_CHAR_DEVICE ; i++) {
476
        virDomainChrDefPtr chr = NULL;
477
        char *ret = NULL;
478 479 480 481 482
        for (j = 0 ; j < vm->def->nconsoles ; j++)
            if (vm->def->consoles[j]->target.port == i)
                chr = vm->def->consoles[j];
        if (chr)
            ret = umlBuildCommandLineChr(chr, "con", cmd);
483
        if (!ret)
484
            if (virAsprintf(&ret, "con%d=none", i) < 0)
485
                goto no_memory;
D
Daniel P. Berrange 已提交
486 487
        virCommandAddArg(cmd, ret);
        VIR_FREE(ret);
488 489 490 491
    }

    for (i = 0 ; i < UML_MAX_CHAR_DEVICE ; i++) {
        virDomainChrDefPtr chr = NULL;
492
        char *ret = NULL;
493
        for (j = 0 ; j < vm->def->nserials ; j++)
494
            if (vm->def->serials[j]->target.port == i)
495 496
                chr = vm->def->serials[j];
        if (chr)
D
Daniel P. Berrange 已提交
497
            ret = umlBuildCommandLineChr(chr, "ssl", cmd);
498
        if (!ret)
499
            if (virAsprintf(&ret, "ssl%d=none", i) < 0)
500
                goto no_memory;
D
Daniel P. Berrange 已提交
501 502 503

        virCommandAddArg(cmd, ret);
        VIR_FREE(ret);
504 505
    }

506 507
    if (vm->def->os.cmdline) {
        char *args, *next_arg;
D
Daniel P. Berrange 已提交
508
        char *cmdline;
509 510 511 512 513 514 515 516 517
        if ((cmdline = strdup(vm->def->os.cmdline)) == NULL)
            goto no_memory;

        args = cmdline;
        while (*args == ' ')
            args++;

        while (*args) {
            next_arg = umlNextArg(args);
D
Daniel P. Berrange 已提交
518
            virCommandAddArg(cmd, args);
519 520
            args = next_arg;
        }
D
Daniel P. Berrange 已提交
521
        VIR_FREE(cmdline);
522 523
    }

D
Daniel P. Berrange 已提交
524
    return cmd;
525 526

 no_memory:
527
    virReportOOMError();
528
 error:
529

D
Daniel P. Berrange 已提交
530 531
    virCommandFree(cmd);
    return NULL;
532
}