virt-aa-helper.c 33.8 KB
Newer Older
J
Jamie Strandboge 已提交
1 2 3

/*
 * virt-aa-helper: wrapper program used by AppArmor security driver.
4
 *
5
 * Copyright (C) 2010-2011 Red Hat, Inc.
6
 * Copyright (C) 2009-2010 Canonical Ltd.
J
Jamie Strandboge 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * See COPYING.LIB for the License of this software
 *
 * Author:
 *   Jamie Strandboge <jamie@canonical.com>
 *
 */

#include <config.h>

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
24
#include <sys/stat.h>
J
Jamie Strandboge 已提交
25 26 27
#include <fcntl.h>
#include <getopt.h>
#include <sys/utsname.h>
28
#include <locale.h>
J
Jamie Strandboge 已提交
29 30 31 32 33

#include "internal.h"
#include "buf.h"
#include "util.h"
#include "memory.h"
E
Eric Blake 已提交
34
#include "command.h"
J
Jamie Strandboge 已提交
35 36 37 38 39 40 41 42

#include "security_driver.h"
#include "security_apparmor.h"
#include "domain_conf.h"
#include "xml.h"
#include "uuid.h"
#include "hostusb.h"
#include "pci.h"
43
#include "files.h"
44
#include "configmake.h"
J
Jamie Strandboge 已提交
45

46 47
#define VIR_FROM_THIS VIR_FROM_SECURITY

J
Jamie Strandboge 已提交
48 49 50
static char *progname;

typedef struct {
51
    bool allowDiskFormatProbing;
J
Jamie Strandboge 已提交
52 53 54 55 56 57 58 59 60 61
    char uuid[PROFILE_NAME_SIZE];       /* UUID of vm */
    bool dryrun;                /* dry run */
    char cmd;                   /* 'c'   create
                                 * 'a'   add (load)
                                 * 'r'   replace
                                 * 'R'   remove */
    char *files;                /* list of files */
    virDomainDefPtr def;        /* VM definition */
    virCapsPtr caps;            /* VM capabilities */
    char *hvm;                  /* type of hypervisor (eg hvm, xen) */
62
    char *arch;                 /* machine architecture */
J
Jamie Strandboge 已提交
63
    int bits;                   /* bits in the guest */
64 65
    char *newfile;              /* newly added file */
    bool append;                /* append to .files instead of rewrite */
J
Jamie Strandboge 已提交
66 67 68 69 70 71 72 73 74
} vahControl;

static int
vahDeinit(vahControl * ctl)
{
    if (ctl == NULL)
        return -1;

    VIR_FREE(ctl->def);
75
    virCapabilitiesFree(ctl->caps);
76 77 78
    VIR_FREE(ctl->files);
    VIR_FREE(ctl->hvm);
    VIR_FREE(ctl->arch);
79
    VIR_FREE(ctl->newfile);
J
Jamie Strandboge 已提交
80 81 82 83 84 85 86 87 88 89

    return 0;
}

/*
 * Print usage
 */
static void
vah_usage(void)
{
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
    printf(_("\n%s [options] [< def.xml]\n\n"
            "  Options:\n"
            "    -a | --add                     load profile\n"
            "    -c | --create                  create profile from template\n"
            "    -D | --delete                  unload and delete profile\n"
            "    -f | --add-file <file>         add file to profile\n"
            "    -F | --append-file <file>      append file to profile\n"
            "    -r | --replace                 reload profile\n"
            "    -R | --remove                  unload profile\n"
            "    -h | --help                    this help\n"
            "    -u | --uuid <uuid>             uuid (profile name)\n"
            "\n"), progname);

    puts(_("This command is intended to be used by libvirtd "
           "and not used directly.\n"));
J
Jamie Strandboge 已提交
105 106 107 108 109 110
    return;
}

static void
vah_error(vahControl * ctl, int doexit, const char *str)
{
111
    fprintf(stderr, _("%s: error: %s%c"), progname, str, '\n');
J
Jamie Strandboge 已提交
112 113 114 115 116 117 118 119 120 121 122

    if (doexit) {
        if (ctl != NULL)
            vahDeinit(ctl);
        exit(EXIT_FAILURE);
    }
}

static void
vah_warning(const char *str)
{
123
    fprintf(stderr, _("%s: warning: %s%c"), progname, str, '\n');
J
Jamie Strandboge 已提交
124 125 126 127 128
}

static void
vah_info(const char *str)
{
129
    fprintf(stderr, _("%s:\n%s%c"), progname, str, '\n');
J
Jamie Strandboge 已提交
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
}

/*
 * Replace @oldstr in @orig with @repstr
 * @len is number of bytes allocated for @orig. Assumes @orig, @oldstr and
 * @repstr are null terminated
 */
static int
replace_string(char *orig, const size_t len, const char *oldstr,
               const char *repstr)
{
    int idx;
    char *pos = NULL;
    char *tmp = NULL;

    if ((pos = strstr(orig, oldstr)) == NULL) {
146
        vah_error(NULL, 0, _("could not find replacement string"));
J
Jamie Strandboge 已提交
147 148 149 150
        return -1;
    }

    if (VIR_ALLOC_N(tmp, len) < 0) {
151
        vah_error(NULL, 0, _("could not allocate memory for string"));
J
Jamie Strandboge 已提交
152 153 154 155 156 157 158 159 160 161 162
        return -1;
    }
    tmp[0] = '\0';

    idx = abs(pos - orig);

    /* copy everything up to oldstr */
    strncat(tmp, orig, idx);

    /* add the replacement string */
    if (strlen(tmp) + strlen(repstr) > len - 1) {
163
        vah_error(NULL, 0, _("not enough space in target buffer"));
J
Jamie Strandboge 已提交
164 165 166 167 168 169 170
        VIR_FREE(tmp);
        return -1;
    }
    strcat(tmp, repstr);

    /* add everything after oldstr */
    if (strlen(tmp) + strlen(orig) - (idx + strlen(oldstr)) > len - 1) {
171
        vah_error(NULL, 0, _("not enough space in target buffer"));
J
Jamie Strandboge 已提交
172 173 174 175 176 177 178
        VIR_FREE(tmp);
        return -1;
    }
    strncat(tmp, orig + idx + strlen(oldstr),
            strlen(orig) - (idx + strlen(oldstr)));

    if (virStrcpy(orig, tmp, len) == NULL) {
179
        vah_error(NULL, 0, _("error replacing string"));
J
Jamie Strandboge 已提交
180 181 182 183 184 185 186 187 188 189 190 191 192 193
        VIR_FREE(tmp);
        return -1;
    }
    VIR_FREE(tmp);

    return 0;
}

/*
 * run an apparmor_parser command
 */
static int
parserCommand(const char *profile_name, const char cmd)
{
194
    int result = -1;
J
Jamie Strandboge 已提交
195
    char flag[3];
196
    char *profile;
197 198
    int status;
    int ret;
J
Jamie Strandboge 已提交
199 200

    if (strchr("arR", cmd) == NULL) {
201
        vah_error(NULL, 0, _("invalid flag"));
J
Jamie Strandboge 已提交
202 203 204 205 206
        return -1;
    }

    snprintf(flag, 3, "-%c", cmd);

207 208
    if (virAsprintf(&profile, "%s/%s",
                    APPARMOR_DIR "/libvirt", profile_name) < 0) {
209
        vah_error(NULL, 0, _("profile name exceeds maximum length"));
J
Jamie Strandboge 已提交
210 211 212 213
        return -1;
    }

    if (!virFileExists(profile)) {
214
        vah_error(NULL, 0, _("profile does not exist"));
215
        goto cleanup;
J
Jamie Strandboge 已提交
216 217 218 219
    } else {
        const char * const argv[] = {
            "/sbin/apparmor_parser", flag, profile, NULL
        };
220 221 222
        if ((ret = virRun(argv, &status)) != 0 ||
            (WIFEXITED(status) && WEXITSTATUS(status) != 0)) {
            if (ret != 0) {
223
                vah_error(NULL, 0, _("failed to run apparmor_parser"));
224
                goto cleanup;
225 226 227
            } else if (cmd == 'R' && WIFEXITED(status) &&
                       WEXITSTATUS(status) == 234) {
                vah_warning(_("unable to unload already unloaded profile"));
228
            } else {
229
                vah_error(NULL, 0, _("apparmor_parser exited with error"));
230
                goto cleanup;
231
            }
J
Jamie Strandboge 已提交
232 233 234
        }
    }

235 236 237 238 239 240
    result = 0;

cleanup:
    VIR_FREE(profile);

    return result;
J
Jamie Strandboge 已提交
241 242 243 244 245 246
}

/*
 * Update the dynamic files
 */
static int
247 248
update_include_file(const char *include_file, const char *included_files,
                    bool append)
J
Jamie Strandboge 已提交
249 250
{
    int rc = -1;
251
    int plen, flen = 0;
J
Jamie Strandboge 已提交
252 253
    int fd;
    char *pcontent = NULL;
254
    char *existing = NULL;
J
Jamie Strandboge 已提交
255 256 257
    const char *warning =
         "# DO NOT EDIT THIS FILE DIRECTLY. IT IS MANAGED BY LIBVIRT.\n";

258 259 260 261 262 263 264 265
    if (virFileExists(include_file)) {
        flen = virFileReadAll(include_file, MAX_FILE_LEN, &existing);
        if (flen < 0)
            return rc;
    }

    if (append && virFileExists(include_file)) {
        if (virAsprintf(&pcontent, "%s%s", existing, included_files) == -1) {
266
            vah_error(NULL, 0, _("could not allocate memory for profile"));
267 268 269 270
            goto clean;
        }
    } else {
        if (virAsprintf(&pcontent, "%s%s", warning, included_files) == -1) {
271
            vah_error(NULL, 0, _("could not allocate memory for profile"));
272 273
            goto clean;
        }
J
Jamie Strandboge 已提交
274 275 276 277
    }

    plen = strlen(pcontent);
    if (plen > MAX_FILE_LEN) {
278
        vah_error(NULL, 0, _("invalid length for new profile"));
J
Jamie Strandboge 已提交
279 280 281 282
        goto clean;
    }

    /* only update the disk profile if it is different */
283 284 285
    if (flen > 0 && flen == plen && STREQLEN(existing, pcontent, plen)) {
        rc = 0;
        goto clean;
J
Jamie Strandboge 已提交
286 287 288 289
    }

    /* write the file */
    if ((fd = open(include_file, O_CREAT | O_TRUNC | O_WRONLY, 0644)) == -1) {
290
        vah_error(NULL, 0, _("failed to create include file"));
J
Jamie Strandboge 已提交
291 292 293 294
        goto clean;
    }

    if (safewrite(fd, pcontent, plen) < 0) { /* don't write the '\0' */
295
        VIR_FORCE_CLOSE(fd);
296
        vah_error(NULL, 0, _("failed to write to profile"));
J
Jamie Strandboge 已提交
297 298 299
        goto clean;
    }

300
    if (VIR_CLOSE(fd) != 0) {
301
        vah_error(NULL, 0, _("failed to close or write to profile"));
J
Jamie Strandboge 已提交
302 303 304 305 306 307
        goto clean;
    }
    rc = 0;

  clean:
    VIR_FREE(pcontent);
308
    VIR_FREE(existing);
J
Jamie Strandboge 已提交
309 310 311 312 313 314 315 316 317 318 319

    return rc;
}

/*
 * Create a profile based on a template
 */
static int
create_profile(const char *profile, const char *profile_name,
               const char *profile_files)
{
320
    char *template;
J
Jamie Strandboge 已提交
321 322 323 324 325 326 327 328 329 330 331
    char *tcontent = NULL;
    char *pcontent = NULL;
    char *replace_name = NULL;
    char *replace_files = NULL;
    const char *template_name = "\nprofile LIBVIRT_TEMPLATE";
    const char *template_end = "\n}";
    int tlen, plen;
    int fd;
    int rc = -1;

    if (virFileExists(profile)) {
332
        vah_error(NULL, 0, _("profile exists"));
J
Jamie Strandboge 已提交
333 334 335
        goto end;
    }

336
    if (virAsprintf(&template, "%s/TEMPLATE", APPARMOR_DIR "/libvirt") < 0) {
337
        vah_error(NULL, 0, _("template name exceeds maximum length"));
J
Jamie Strandboge 已提交
338 339 340 341
        goto end;
    }

    if (!virFileExists(template)) {
342
        vah_error(NULL, 0, _("template does not exist"));
J
Jamie Strandboge 已提交
343 344 345 346
        goto end;
    }

    if ((tlen = virFileReadAll(template, MAX_FILE_LEN, &tcontent)) < 0) {
347
        vah_error(NULL, 0, _("failed to read AppArmor template"));
J
Jamie Strandboge 已提交
348 349 350 351
        goto end;
    }

    if (strstr(tcontent, template_name) == NULL) {
352
        vah_error(NULL, 0, _("no replacement string in template"));
J
Jamie Strandboge 已提交
353 354 355 356
        goto clean_tcontent;
    }

    if (strstr(tcontent, template_end) == NULL) {
357
        vah_error(NULL, 0, _("no replacement string in template"));
J
Jamie Strandboge 已提交
358 359 360 361 362
        goto clean_tcontent;
    }

    /* '\nprofile <profile_name>\0' */
    if (virAsprintf(&replace_name, "\nprofile %s", profile_name) == -1) {
363
        vah_error(NULL, 0, _("could not allocate memory for profile name"));
J
Jamie Strandboge 已提交
364 365 366 367 368
        goto clean_tcontent;
    }

    /* '\n<profile_files>\n}\0' */
    if (virAsprintf(&replace_files, "\n%s\n}", profile_files) == -1) {
369
        vah_error(NULL, 0, _("could not allocate memory for profile files"));
J
Jamie Strandboge 已提交
370 371 372 373 374 375 376
        VIR_FREE(replace_name);
        goto clean_tcontent;
    }

    plen = tlen + strlen(replace_name) - strlen(template_name) +
           strlen(replace_files) - strlen(template_end) + 1;
    if (plen > MAX_FILE_LEN || plen < tlen) {
377
        vah_error(NULL, 0, _("invalid length for new profile"));
J
Jamie Strandboge 已提交
378 379 380 381
        goto clean_replace;
    }

    if (VIR_ALLOC_N(pcontent, plen) < 0) {
382
        vah_error(NULL, 0, _("could not allocate memory for profile"));
J
Jamie Strandboge 已提交
383 384 385 386 387 388 389 390 391 392 393 394 395
        goto clean_replace;
    }
    pcontent[0] = '\0';
    strcpy(pcontent, tcontent);

    if (replace_string(pcontent, plen, template_name, replace_name) < 0)
        goto clean_all;

    if (replace_string(pcontent, plen, template_end, replace_files) < 0)
        goto clean_all;

    /* write the file */
    if ((fd = open(profile, O_CREAT | O_EXCL | O_WRONLY, 0644)) == -1) {
396
        vah_error(NULL, 0, _("failed to create profile"));
J
Jamie Strandboge 已提交
397 398 399 400
        goto clean_all;
    }

    if (safewrite(fd, pcontent, plen - 1) < 0) { /* don't write the '\0' */
401
        VIR_FORCE_CLOSE(fd);
402
        vah_error(NULL, 0, _("failed to write to profile"));
J
Jamie Strandboge 已提交
403 404 405
        goto clean_all;
    }

406
    if (VIR_CLOSE(fd) != 0) {
407
        vah_error(NULL, 0, _("failed to close or write to profile"));
J
Jamie Strandboge 已提交
408 409 410 411 412 413 414 415 416 417 418 419
        goto clean_all;
    }
    rc = 0;

  clean_all:
    VIR_FREE(pcontent);
  clean_replace:
    VIR_FREE(replace_name);
    VIR_FREE(replace_files);
  clean_tcontent:
    VIR_FREE(tcontent);
  end:
420
    VIR_FREE(template);
J
Jamie Strandboge 已提交
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 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
    return rc;
}

/*
 * Load an existing profile
 */
static int
parserLoad(const char *profile_name)
{
    return parserCommand(profile_name, 'a');
}

/*
 * Remove an existing profile
 */
static int
parserRemove(const char *profile_name)
{
    return parserCommand(profile_name, 'R');
}

/*
 * Replace an existing profile
 */
static int
parserReplace(const char *profile_name)
{
    return parserCommand(profile_name, 'r');
}

static int
valid_uuid(const char *uuid)
{
    unsigned char rawuuid[VIR_UUID_BUFLEN];

    if (strlen(uuid) != PROFILE_NAME_SIZE - 1)
        return -1;

    if (!STRPREFIX(uuid, AA_PREFIX))
        return -1;

    if (virUUIDParse(uuid + strlen(AA_PREFIX), rawuuid) < 0)
        return -1;

    return 0;
}

static int
valid_name(const char *name)
{
    /* just try to filter out any dangerous characters in the name that can be
     * used to subvert the profile */
    const char *bad = " /[]*";

    if (strlen(name) == 0 || strlen(name) > PATH_MAX - 1)
        return -1;

    if (strcspn(name, bad) != strlen(name))
        return -1;

    return 0;
}

/* see if one of the strings in arr starts with str */
static int
array_starts_with(const char *str, const char * const *arr, const long size)
{
    int i;
    for (i = 0; i < size; i++) {
        if (strlen(str) < strlen(arr[i]))
            continue;

        if (STRPREFIX(str, arr[i]))
            return 0;
    }
    return 1;
}

/*
 * Don't allow access to special files or restricted paths such as /bin, /sbin,
 * /usr/bin, /usr/sbin and /etc. This is in an effort to prevent read/write
 * access to system files which could be used to elevate privileges. This is a
 * safety measure in case libvirtd is under a restrictive profile and is
 * subverted and trying to escape confinement.
 *
 * Note that we cannot exclude block devices because they are valid devices.
 * The TEMPLATE file can be adjusted to explicitly disallow these if needed.
 *
 * RETURN: -1 on error, 0 if ok, 1 if blocked
 */
static int
valid_path(const char *path, const bool readonly)
{
    struct stat sb;
515
    int npaths, opaths;
J
Jamie Strandboge 已提交
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
    const char * const restricted[] = {
        "/bin/",
        "/etc/",
        "/lib",
        "/lost+found/",
        "/proc/",
        "/sbin/",
        "/selinux/",
        "/sys/",
        "/usr/bin/",
        "/usr/lib",
        "/usr/sbin/",
        "/usr/share/",
        "/usr/local/bin/",
        "/usr/local/etc/",
        "/usr/local/lib",
        "/usr/local/sbin/"
    };
    /* these paths are ok for readonly, but not read/write */
    const char * const restricted_rw[] = {
        "/boot/",
        "/vmlinuz",
        "/initrd",
        "/initrd.img"
    };
541 542 543 544
    /* override the above with these */
    const char * const override[] = {
        "/sys/devices/pci"	/* for hostdev pci devices */
    };
J
Jamie Strandboge 已提交
545 546

    if (path == NULL || strlen(path) > PATH_MAX - 1) {
547
        vah_error(NULL, 0, _("bad pathname"));
J
Jamie Strandboge 已提交
548 549 550 551 552 553 554 555 556
        return -1;
    }

    /* Don't allow double quotes, since we use them to quote the filename
     * and this will confuse the apparmor parser.
     */
    if (strchr(path, '"') != NULL)
        return 1;

J
Jamie Strandboge 已提交
557 558 559 560
    /* Require an absolute path */
    if (STRNEQLEN(path, "/", 1))
        return 1;

J
Jamie Strandboge 已提交
561
    if (!virFileExists(path))
562
        vah_warning(_("path does not exist, skipping file type checks"));
J
Jamie Strandboge 已提交
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581
    else {
        if (stat(path, &sb) == -1)
            return -1;

        switch (sb.st_mode & S_IFMT) {
            case S_IFDIR:
                return 1;
                break;
            case S_IFIFO:
                return 1;
                break;
            case S_IFSOCK:
                return 1;
                break;
            default:
                break;
        }
    }

582 583
    opaths = sizeof(override)/sizeof *(override);

J
Jamie Strandboge 已提交
584
    npaths = sizeof(restricted)/sizeof *(restricted);
585 586 587
    if (array_starts_with(path, restricted, npaths) == 0 &&
        array_starts_with(path, override, opaths) != 0)
            return 1;
J
Jamie Strandboge 已提交
588 589 590 591 592 593 594 595 596 597

    npaths = sizeof(restricted_rw)/sizeof *(restricted_rw);
    if (!readonly) {
        if (array_starts_with(path, restricted_rw, npaths) == 0)
            return 1;
    }

    return 0;
}

598 599 600 601 602 603 604
static int
verify_xpath_context(xmlXPathContextPtr ctxt)
{
    int rc = -1;
    char *tmp = NULL;

    if (!ctxt) {
605
        vah_warning(_("Invalid context"));
606 607 608 609 610
        goto error;
    }

    /* check if have <name> */
    if (!(tmp = virXPathString("string(./name[1])", ctxt))) {
611
        vah_warning(_("Could not find <name>"));
612 613 614 615 616 617
        goto error;
    }
    VIR_FREE(tmp);

    /* check if have <uuid> */
    if (!(tmp = virXPathString("string(./uuid[1])", ctxt))) {
618
        vah_warning(_("Could not find <uuid>"));
619 620 621 622 623 624 625 626 627 628
        goto error;
    }
    VIR_FREE(tmp);

    rc = 0;

  error:
    return rc;
}

629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644
/*
 * Parse the xml we received to fill in the following:
 * ctl->hvm
 * ctl->arch
 * ctl->bits
 *
 * These are suitable for setting up a virCapsPtr
 */
static int
caps_mockup(vahControl * ctl, const char *xmlStr)
{
    int rc = -1;
    xmlDocPtr xml = NULL;
    xmlXPathContextPtr ctxt = NULL;
    xmlNodePtr root;

645
    if (!(xml = virXMLParseString(xmlStr, "domain.xml"))) {
646 647 648
        goto cleanup;
    }

649
    root = xmlDocGetRootElement(xml);
650
    if (!xmlStrEqual(root->name, BAD_CAST "domain")) {
651
        vah_error(NULL, 0, _("incorrect root element"));
652 653 654 655
        goto cleanup;
    }

    if ((ctxt = xmlXPathNewContext(xml)) == NULL) {
656
        vah_error(ctl, 0, _("could not allocate memory"));
657 658 659 660
        goto cleanup;
    }
    ctxt->node = root;

661 662 663 664
    /* Quick sanity check for some required elements */
    if (verify_xpath_context(ctxt) != 0)
        goto cleanup;

665
    ctl->hvm = virXPathString("string(./os/type[1])", ctxt);
666
    if (!ctl->hvm || STRNEQ(ctl->hvm, "hvm")) {
667
        vah_error(ctl, 0, _("os.type is not 'hvm'"));
668 669
        goto cleanup;
    }
670
    ctl->arch = virXPathString("string(./os/type[1]/@arch)", ctxt);
671 672 673 674 675 676 677 678 679
    if (!ctl->arch) {
        /* The XML we are given should have an arch, but in case it doesn't,
         * just use the host's arch.
         */
        struct utsname utsname;

        /* Really, this never fails - look at the man-page. */
        uname (&utsname);
        if ((ctl->arch = strdup(utsname.machine)) == NULL) {
680
            vah_error(ctl, 0, _("could not allocate memory"));
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
            goto cleanup;
        }
    }
    if (STREQ(ctl->arch, "x86_64"))
        ctl->bits = 64;
    else
        ctl->bits = 32;

    rc = 0;

  cleanup:
    xmlFreeDoc (xml);
    xmlXPathFreeContext(ctxt);

    return rc;
}

J
Jamie Strandboge 已提交
698 699 700 701 702 703 704 705 706 707
static int
get_definition(vahControl * ctl, const char *xmlStr)
{
    int rc = -1;
    virCapsGuestPtr guest;  /* this is freed when caps is freed */

    /*
     * mock up some capabilities. We don't currently use these explicitly,
     * but need them for virDomainDefParseString().
     */
708 709
    if (caps_mockup(ctl, xmlStr) != 0)
        goto exit;
J
Jamie Strandboge 已提交
710

711
    if ((ctl->caps = virCapabilitiesNew(ctl->arch, 1, 1)) == NULL) {
712
        vah_error(ctl, 0, _("could not allocate memory"));
J
Jamie Strandboge 已提交
713 714 715 716 717
        goto exit;
    }

    if ((guest = virCapabilitiesAddGuest(ctl->caps,
                                         ctl->hvm,
718
                                         ctl->arch,
J
Jamie Strandboge 已提交
719 720 721 722 723
                                         ctl->bits,
                                         NULL,
                                         NULL,
                                         0,
                                         NULL)) == NULL) {
724
        vah_error(ctl, 0, _("could not allocate memory"));
J
Jamie Strandboge 已提交
725 726 727
        goto exit;
    }

728 729
    ctl->def = virDomainDefParseString(ctl->caps, xmlStr,
                                       VIR_DOMAIN_XML_INACTIVE);
J
Jamie Strandboge 已提交
730
    if (ctl->def == NULL) {
731
        vah_error(ctl, 0, _("could not parse XML"));
J
Jamie Strandboge 已提交
732 733 734 735
        goto exit;
    }

    if (!ctl->def->name) {
736
        vah_error(ctl, 0, _("could not find name in XML"));
J
Jamie Strandboge 已提交
737 738 739 740
        goto exit;
    }

    if (valid_name(ctl->def->name) != 0) {
741
        vah_error(ctl, 0, _("bad name"));
J
Jamie Strandboge 已提交
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760
        goto exit;
    }

    rc = 0;

  exit:
    return rc;
}

static int
vah_add_file(virBufferPtr buf, const char *path, const char *perms)
{
    char *tmp = NULL;
    int rc = -1;
    bool readonly = true;

    if (path == NULL)
        return rc;

J
Jamie Strandboge 已提交
761 762 763 764 765 766
    /* Skip files without an absolute path. Not having one confuses the
     * apparmor parser and this also ensures things like tcp consoles don't
     * get added to the profile.
     */
    if (STRNEQLEN(path, "/", 1)) {
        vah_warning(path);
767
        vah_warning(_("  skipped non-absolute path"));
J
Jamie Strandboge 已提交
768 769 770
        return 0;
    }

J
Jamie Strandboge 已提交
771 772 773
    if (virFileExists(path)) {
        if ((tmp = realpath(path, NULL)) == NULL) {
            vah_error(NULL, 0, path);
774
            vah_error(NULL, 0, _("  could not find realpath for disk"));
J
Jamie Strandboge 已提交
775 776 777 778 779 780 781 782 783 784 785 786 787
            return rc;
        }
    } else
        if ((tmp = strdup(path)) == NULL)
            return rc;

    if (strchr(perms, 'w') != NULL)
        readonly = false;

    rc = valid_path(tmp, readonly);
    if (rc != 0) {
        if (rc > 0) {
            vah_error(NULL, 0, path);
788
            vah_error(NULL, 0, _("  skipped restricted file"));
J
Jamie Strandboge 已提交
789 790 791 792
        }
        goto clean;
    }

793
    virBufferAsprintf(buf, "  \"%s\" %s,\n", tmp, perms);
794
    if (readonly) {
795 796
        virBufferAsprintf(buf, "  # don't audit writes to readonly files\n");
        virBufferAsprintf(buf, "  deny \"%s\" w,\n", tmp);
797
    }
J
Jamie Strandboge 已提交
798 799

  clean:
800
    VIR_FREE(tmp);
J
Jamie Strandboge 已提交
801 802 803 804 805

    return rc;
}

static int
806 807 808 809 810 811 812 813 814 815
file_iterate_hostdev_cb(usbDevice *dev ATTRIBUTE_UNUSED,
                        const char *file, void *opaque)
{
    virBufferPtr buf = opaque;
    return vah_add_file(buf, file, "rw");
}

static int
file_iterate_pci_cb(pciDevice *dev ATTRIBUTE_UNUSED,
                        const char *file, void *opaque)
J
Jamie Strandboge 已提交
816 817 818 819 820
{
    virBufferPtr buf = opaque;
    return vah_add_file(buf, file, "rw");
}

821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838
static int
add_file_path(virDomainDiskDefPtr disk,
              const char *path,
              size_t depth,
              void *opaque)
{
    virBufferPtr buf = opaque;
    int ret;

    if (depth == 0) {
        if (disk->readonly)
            ret = vah_add_file(buf, path, "r");
        else
            ret = vah_add_file(buf, path, "rw");
    } else {
        ret = vah_add_file(buf, path, "r");
    }

839 840 841
    if (ret != 0)
        ret = -1;

842 843 844 845
    return ret;
}


J
Jamie Strandboge 已提交
846 847 848 849 850 851 852 853 854 855 856 857
static int
get_files(vahControl * ctl)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    int rc = -1;
    int i;
    char *uuid;
    char uuidstr[VIR_UUID_STRING_BUFLEN];

    /* verify uuid is same as what we were given on the command line */
    virUUIDFormat(ctl->def->uuid, uuidstr);
    if (virAsprintf(&uuid, "%s%s", AA_PREFIX, uuidstr) == -1) {
858
        vah_error(ctl, 0, _("could not allocate memory"));
J
Jamie Strandboge 已提交
859 860 861 862
        return rc;
    }

    if (STRNEQ(uuid, ctl->uuid)) {
863
        vah_error(ctl, 0, _("given uuid does not match XML uuid"));
J
Jamie Strandboge 已提交
864 865 866
        goto clean;
    }

867
    for (i = 0; i < ctl->def->ndisks; i++) {
868 869 870 871
        /* XXX passing ignoreOpenFailure = true to get back to the behavior
         * from before using virDomainDiskDefForeachPath. actually we should
         * be passing ignoreOpenFailure = false and handle open errors more
         * careful than just ignoring them */
872
        int ret = virDomainDiskDefForeachPath(ctl->def->disks[i],
873
                                              ctl->allowDiskFormatProbing,
874
                                              true,
875 876 877 878 879
                                              add_file_path,
                                              &buf);
        if (ret != 0)
            goto clean;
    }
J
Jamie Strandboge 已提交
880 881

    for (i = 0; i < ctl->def->nserials; i++)
882
        if (ctl->def->serials[i] &&
883 884 885 886 887
            (ctl->def->serials[i]->source.type == VIR_DOMAIN_CHR_TYPE_PTY ||
             ctl->def->serials[i]->source.type == VIR_DOMAIN_CHR_TYPE_DEV ||
             ctl->def->serials[i]->source.type == VIR_DOMAIN_CHR_TYPE_FILE ||
             ctl->def->serials[i]->source.type == VIR_DOMAIN_CHR_TYPE_PIPE) &&
            ctl->def->serials[i]->source.data.file.path)
J
Jamie Strandboge 已提交
888
            if (vah_add_file(&buf,
889
                             ctl->def->serials[i]->source.data.file.path, "rw") != 0)
J
Jamie Strandboge 已提交
890 891
                goto clean;

892 893
    if (ctl->def->console && ctl->def->console->source.data.file.path)
        if (vah_add_file(&buf, ctl->def->console->source.data.file.path, "rw") != 0)
J
Jamie Strandboge 已提交
894 895
            goto clean;

896 897
    for (i = 0 ; i < ctl->def->nparallels; i++)
        if (ctl->def->parallels[i] &&
898 899 900 901 902
            (ctl->def->parallels[i]->source.type == VIR_DOMAIN_CHR_TYPE_PTY ||
             ctl->def->parallels[i]->source.type == VIR_DOMAIN_CHR_TYPE_DEV ||
             ctl->def->parallels[i]->source.type == VIR_DOMAIN_CHR_TYPE_FILE ||
             ctl->def->parallels[i]->source.type == VIR_DOMAIN_CHR_TYPE_PIPE) &&
            ctl->def->parallels[i]->source.data.file.path)
903
            if (vah_add_file(&buf,
904
                             ctl->def->parallels[i]->source.data.file.path,
905 906 907 908 909
                             "rw") != 0)
                goto clean;

    for (i = 0 ; i < ctl->def->nchannels; i++)
        if (ctl->def->channels[i] &&
910 911 912 913 914
            (ctl->def->channels[i]->source.type == VIR_DOMAIN_CHR_TYPE_PTY ||
             ctl->def->channels[i]->source.type == VIR_DOMAIN_CHR_TYPE_DEV ||
             ctl->def->channels[i]->source.type == VIR_DOMAIN_CHR_TYPE_FILE ||
             ctl->def->channels[i]->source.type == VIR_DOMAIN_CHR_TYPE_PIPE) &&
            ctl->def->channels[i]->source.data.file.path)
915
            if (vah_add_file(&buf,
916
                             ctl->def->channels[i]->source.data.file.path,
917 918 919
                             "rw") != 0)
                goto clean;

920
    if (ctl->def->os.kernel)
J
Jamie Strandboge 已提交
921 922 923
        if (vah_add_file(&buf, ctl->def->os.kernel, "r") != 0)
            goto clean;

924
    if (ctl->def->os.initrd)
J
Jamie Strandboge 已提交
925 926 927 928 929
        if (vah_add_file(&buf, ctl->def->os.initrd, "r") != 0)
            goto clean;

    if (ctl->def->os.loader && ctl->def->os.loader)
        if (vah_add_file(&buf, ctl->def->os.loader, "r") != 0)
930 931 932 933 934 935
            goto clean;

    if (ctl->def->ngraphics == 1 &&
        ctl->def->graphics[0]->type == VIR_DOMAIN_GRAPHICS_TYPE_SDL)
        if (vah_add_file(&buf, ctl->def->graphics[0]->data.sdl.xauth,
                         "r") != 0)
J
Jamie Strandboge 已提交
936 937 938 939 940 941 942
            goto clean;

    for (i = 0; i < ctl->def->nhostdevs; i++)
        if (ctl->def->hostdevs[i]) {
            virDomainHostdevDefPtr dev = ctl->def->hostdevs[i];
            switch (dev->source.subsys.type) {
            case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB: {
943
                usbDevice *usb = usbGetDevice(dev->source.subsys.u.usb.bus,
944
                                              dev->source.subsys.u.usb.device);
945 946 947 948

                if (usb == NULL)
                    continue;

949
                rc = usbDeviceFileIterate(usb, file_iterate_hostdev_cb, &buf);
950
                usbFreeDevice(usb);
951 952
                if (rc != 0)
                    goto clean;
J
Jamie Strandboge 已提交
953 954
                break;
            }
955

J
Jamie Strandboge 已提交
956
            case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI: {
957
                pciDevice *pci = pciGetDevice(
J
Jamie Strandboge 已提交
958 959 960 961 962 963 964 965
                           dev->source.subsys.u.pci.domain,
                           dev->source.subsys.u.pci.bus,
                           dev->source.subsys.u.pci.slot,
                           dev->source.subsys.u.pci.function);

                if (pci == NULL)
                    continue;

966
                rc = pciDeviceFileIterate(pci, file_iterate_pci_cb, &buf);
967
                pciFreeDevice(pci);
J
Jamie Strandboge 已提交
968 969 970

                break;
            }
971

J
Jamie Strandboge 已提交
972 973 974 975 976 977
            default:
                rc = 0;
                break;
            } /* switch */
        }

978 979
    if (ctl->newfile)
        if (vah_add_file(&buf, ctl->newfile, "rw") != 0)
J
Jamie Strandboge 已提交
980 981 982
            goto clean;

    if (virBufferError(&buf)) {
983
        virBufferFreeAndReset(&buf);
984
        vah_error(NULL, 0, _("failed to allocate file buffer"));
985
        goto clean;
J
Jamie Strandboge 已提交
986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
    }

    rc = 0;
    ctl->files = virBufferContentAndReset(&buf);

  clean:
    VIR_FREE(uuid);
    return rc;
}

static int
vahParseArgv(vahControl * ctl, int argc, char **argv)
{
    int arg, idx = 0;
    struct option opt[] = {
1001
        {"probing", 1, 0, 'p' },
J
Jamie Strandboge 已提交
1002 1003 1004 1005 1006
        {"add", 0, 0, 'a'},
        {"create", 0, 0, 'c'},
        {"dryrun", 0, 0, 'd'},
        {"delete", 0, 0, 'D'},
        {"add-file", 0, 0, 'f'},
1007
        {"append-file", 0, 0, 'F'},
J
Jamie Strandboge 已提交
1008 1009 1010 1011 1012 1013 1014
        {"help", 0, 0, 'h'},
        {"replace", 0, 0, 'r'},
        {"remove", 0, 0, 'R'},
        {"uuid", 1, 0, 'u'},
        {0, 0, 0, 0}
    };

1015
    while ((arg = getopt_long(argc, argv, "acdDhrRH:b:u:p:f:F:", opt,
J
Jamie Strandboge 已提交
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
            &idx)) != -1) {
        switch (arg) {
            case 'a':
                ctl->cmd = 'a';
                break;
            case 'c':
                ctl->cmd = 'c';
                break;
            case 'd':
                ctl->dryrun = true;
                break;
            case 'D':
                ctl->cmd = 'D';
                break;
            case 'f':
1031 1032
            case 'F':
                if ((ctl->newfile = strdup(optarg)) == NULL)
1033
                    vah_error(ctl, 1, _("could not allocate memory for disk"));
1034
                ctl->append = arg == 'F';
J
Jamie Strandboge 已提交
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047
                break;
            case 'h':
                vah_usage();
                exit(EXIT_SUCCESS);
                break;
            case 'r':
                ctl->cmd = 'r';
                break;
            case 'R':
                ctl->cmd = 'R';
                break;
            case 'u':
                if (strlen(optarg) > PROFILE_NAME_SIZE - 1)
1048
                    vah_error(ctl, 1, _("invalid UUID"));
J
Jamie Strandboge 已提交
1049 1050
                if (virStrcpy((char *) ctl->uuid, optarg,
                    PROFILE_NAME_SIZE) == NULL)
1051
                    vah_error(ctl, 1, _("error copying UUID"));
J
Jamie Strandboge 已提交
1052
                break;
1053 1054 1055 1056 1057 1058
            case 'p':
                if (STREQ(optarg, "1"))
                    ctl->allowDiskFormatProbing = true;
                else
                    ctl->allowDiskFormatProbing = false;
                break;
J
Jamie Strandboge 已提交
1059
            default:
1060
                vah_error(ctl, 1, _("unsupported option"));
J
Jamie Strandboge 已提交
1061 1062 1063 1064
                break;
        }
    }
    if (strchr("acDrR", ctl->cmd) == NULL)
1065
        vah_error(ctl, 1, _("bad command"));
J
Jamie Strandboge 已提交
1066 1067

    if (valid_uuid(ctl->uuid) != 0)
1068
        vah_error(ctl, 1, _("invalid UUID"));
J
Jamie Strandboge 已提交
1069 1070 1071 1072 1073 1074 1075 1076 1077

    if (!ctl->cmd) {
        vah_usage();
        exit(EXIT_FAILURE);
    }

    if (ctl->cmd == 'c' || ctl->cmd == 'r') {
        char *xmlStr = NULL;
        if (virFileReadLimFD(STDIN_FILENO, MAX_FILE_LEN, &xmlStr) < 0)
1078
            vah_error(ctl, 1, _("could not read xml file"));
J
Jamie Strandboge 已提交
1079 1080 1081

        if (get_definition(ctl, xmlStr) != 0 || ctl->def == NULL) {
            VIR_FREE(xmlStr);
1082
            vah_error(ctl, 1, _("could not get VM definition"));
J
Jamie Strandboge 已提交
1083 1084 1085 1086
        }
        VIR_FREE(xmlStr);

        if (get_files(ctl) != 0)
1087
            vah_error(ctl, 1, _("invalid VM definition"));
J
Jamie Strandboge 已提交
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
    }
    return 0;
}


/*
 * virt-aa-helper -c -u UUID < file.xml
 * virt-aa-helper -r -u UUID [-f <file>] < file.xml
 * virt-aa-helper -a -u UUID
 * virt-aa-helper -R -u UUID
 * virt-aa-helper -D -u UUID
 */
int
main(int argc, char **argv)
{
    vahControl _ctl, *ctl = &_ctl;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    int rc = -1;
1106 1107
    char *profile = NULL;
    char *include_file = NULL;
J
Jamie Strandboge 已提交
1108

E
Eric Blake 已提交
1109 1110 1111
    if (setlocale(LC_ALL, "") == NULL ||
        bindtextdomain(PACKAGE, LOCALEDIR) == NULL ||
        textdomain(PACKAGE) == NULL) {
1112
        fprintf(stderr, _("%s: initialization failed\n"), argv[0]);
E
Eric Blake 已提交
1113 1114 1115
        exit(EXIT_FAILURE);
    }

J
Jamie Strandboge 已提交
1116 1117 1118
    /* clear the environment */
    environ = NULL;
    if (setenv("PATH", "/sbin:/usr/sbin", 1) != 0) {
1119
        vah_error(ctl, 1, _("could not set PATH"));
J
Jamie Strandboge 已提交
1120
    }
1121

J
Jamie Strandboge 已提交
1122
    if (setenv("IFS", " \t\n", 1) != 0) {
1123
        vah_error(ctl, 1, _("could not set IFS"));
J
Jamie Strandboge 已提交
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133
    }

    if (!(progname = strrchr(argv[0], '/')))
        progname = argv[0];
    else
        progname++;

    memset(ctl, 0, sizeof(vahControl));

    if (vahParseArgv(ctl, argc, argv) != 0)
1134
        vah_error(ctl, 1, _("could not parse arguments"));
J
Jamie Strandboge 已提交
1135

1136 1137 1138
    if (virAsprintf(&profile, "%s/%s",
                    APPARMOR_DIR "/libvirt", ctl->uuid) < 0)
        vah_error(ctl, 0, _("could not allocate memory"));
J
Jamie Strandboge 已提交
1139

1140 1141 1142
    if (virAsprintf(&include_file, "%s/%s.files",
                    APPARMOR_DIR "/libvirt", ctl->uuid) < 0)
        vah_error(ctl, 0, _("could not allocate memory"));
J
Jamie Strandboge 已提交
1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154

    if (ctl->cmd == 'a')
        rc = parserLoad(ctl->uuid);
    else if (ctl->cmd == 'R' || ctl->cmd == 'D') {
        rc = parserRemove(ctl->uuid);
        if (ctl->cmd == 'D') {
            unlink(include_file);
            unlink(profile);
        }
    } else if (ctl->cmd == 'c' || ctl->cmd == 'r') {
        char *included_files = NULL;

1155 1156 1157
        if (ctl->cmd == 'c' && virFileExists(profile)) {
            vah_error(ctl, 1, _("profile exists"));
        }
J
Jamie Strandboge 已提交
1158

1159 1160 1161 1162
        if (ctl->append && ctl->newfile) {
            if (vah_add_file(&buf, ctl->newfile, "rw") != 0)
                goto clean;
        } else {
1163
            virBufferAsprintf(&buf, "  \"%s/log/libvirt/**/%s.log\" w,\n",
1164
                              LOCALSTATEDIR, ctl->def->name);
1165
            virBufferAsprintf(&buf, "  \"%s/lib/libvirt/**/%s.monitor\" rw,\n",
1166
                              LOCALSTATEDIR, ctl->def->name);
1167
            virBufferAsprintf(&buf, "  \"%s/run/libvirt/**/%s.pid\" rwk,\n",
1168
                              LOCALSTATEDIR, ctl->def->name);
1169
            if (ctl->files)
1170
                virBufferAdd(&buf, ctl->files, -1);
1171
        }
J
Jamie Strandboge 已提交
1172

1173 1174
        if (virBufferError(&buf)) {
            virBufferFreeAndReset(&buf);
1175
            vah_error(ctl, 1, _("failed to allocate buffer"));
1176
        }
J
Jamie Strandboge 已提交
1177 1178 1179 1180 1181 1182 1183 1184 1185

        included_files = virBufferContentAndReset(&buf);

        /* (re)create the include file using included_files */
        if (ctl->dryrun) {
            vah_info(include_file);
            vah_info(included_files);
            rc = 0;
        } else if ((rc = update_include_file(include_file,
1186 1187
                                             included_files,
                                             ctl->append)) != 0)
J
Jamie Strandboge 已提交
1188 1189 1190 1191 1192 1193 1194 1195
            goto clean;


        /* create the profile from TEMPLATE */
        if (ctl->cmd == 'c') {
            char *tmp = NULL;
            if (virAsprintf(&tmp, "  #include <libvirt/%s.files>\n",
                            ctl->uuid) == -1) {
1196
                vah_error(ctl, 0, _("could not allocate memory"));
J
Jamie Strandboge 已提交
1197 1198 1199 1200 1201 1202 1203 1204 1205
                goto clean;
            }

            if (ctl->dryrun) {
                vah_info(profile);
                vah_info(ctl->uuid);
                vah_info(tmp);
                rc = 0;
            } else if ((rc = create_profile(profile, ctl->uuid, tmp)) != 0) {
1206
                vah_error(ctl, 0, _("could not create profile"));
J
Jamie Strandboge 已提交
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229
                unlink(include_file);
            }
            VIR_FREE(tmp);
        }

        if (rc == 0 && !ctl->dryrun) {
            if (ctl->cmd == 'c')
                rc = parserLoad(ctl->uuid);
            else
                rc = parserReplace(ctl->uuid);

            /* cleanup */
            if (rc != 0) {
                unlink(include_file);
                if (ctl->cmd == 'c')
                    unlink(profile);
            }
        }
      clean:
        VIR_FREE(included_files);
    }

    vahDeinit(ctl);
1230 1231 1232 1233

    VIR_FREE(profile);
    VIR_FREE(include_file);

J
Jamie Strandboge 已提交
1234 1235
    exit(rc == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
}