virt-aa-helper.c 42.2 KB
Newer Older
J
Jamie Strandboge 已提交
1 2
/*
 * virt-aa-helper: wrapper program used by AppArmor security driver.
3
 *
4
 * Copyright (C) 2010-2014 Red Hat, Inc.
5
 * Copyright (C) 2009-2011 Canonical Ltd.
J
Jamie Strandboge 已提交
6
 *
O
Osier Yang 已提交
7 8 9 10 11 12 13 14 15 16 17
 * 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/>.
J
Jamie Strandboge 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
 *
 * 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>
#include <fcntl.h>
#include <getopt.h>
#include <sys/utsname.h>
38
#include <locale.h>
J
Jamie Strandboge 已提交
39 40

#include "internal.h"
41
#include "virbuffer.h"
42
#include "viralloc.h"
43
#include "vircommand.h"
44
#include "virlog.h"
J
Jamie Strandboge 已提交
45 46 47 48

#include "security_driver.h"
#include "security_apparmor.h"
#include "domain_conf.h"
49
#include "virxml.h"
50
#include "viruuid.h"
51
#include "virusb.h"
52
#include "virpci.h"
E
Eric Blake 已提交
53
#include "virfile.h"
54
#include "configmake.h"
55
#include "virrandom.h"
56
#include "virstring.h"
J
Jamie Strandboge 已提交
57

58 59
#include "storage/storage_driver.h"

60 61
#define VIR_FROM_THIS VIR_FROM_SECURITY

J
Jamie Strandboge 已提交
62 63 64
static char *progname;

typedef struct {
65
    bool allowDiskFormatProbing;
J
Jamie Strandboge 已提交
66 67 68 69 70 71 72 73 74
    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 */
75
    virDomainXMLOptionPtr xmlopt; /* XML parser data */
76
    char *virtType;                  /* type of hypervisor (eg qemu, xen, lxc) */
77
    char *os;                   /* type of os (eg hvm, xen, exe) */
78
    virArch arch;               /* machine architecture */
79 80
    char *newfile;              /* newly added file */
    bool append;                /* append to .files instead of rewrite */
J
Jamie Strandboge 已提交
81 82 83 84 85 86 87 88 89
} vahControl;

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

    VIR_FREE(ctl->def);
90
    virObjectUnref(ctl->caps);
91
    virObjectUnref(ctl->xmlopt);
92
    VIR_FREE(ctl->files);
93
    VIR_FREE(ctl->virtType);
94
    VIR_FREE(ctl->os);
95
    VIR_FREE(ctl->newfile);
J
Jamie Strandboge 已提交
96 97 98 99 100 101 102 103 104 105

    return 0;
}

/*
 * Print usage
 */
static void
vah_usage(void)
{
106 107 108 109
    printf(_("\n%s [options] [< def.xml]\n\n"
            "  Options:\n"
            "    -a | --add                     load profile\n"
            "    -c | --create                  create profile from template\n"
110
            "    -d | --dry-run                 dry run\n"
111 112 113 114 115 116
            "    -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"
117
            "    -p | --probing [0|1]           allow disk format probing\n"
118 119 120 121 122
            "    -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 已提交
123 124 125 126 127 128
    return;
}

static void
vah_error(vahControl * ctl, int doexit, const char *str)
{
129
    fprintf(stderr, _("%s: error: %s%c"), progname, str, '\n');
J
Jamie Strandboge 已提交
130 131 132 133 134 135 136 137 138 139 140

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

static void
vah_warning(const char *str)
{
141
    fprintf(stderr, _("%s: warning: %s%c"), progname, str, '\n');
J
Jamie Strandboge 已提交
142 143 144 145 146
}

static void
vah_info(const char *str)
{
147
    fprintf(stderr, _("%s:\n%s%c"), progname, str, '\n');
J
Jamie Strandboge 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
}

/*
 * 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) {
164
        vah_error(NULL, 0, _("could not find replacement string"));
J
Jamie Strandboge 已提交
165 166 167
        return -1;
    }

168
    if (VIR_ALLOC_N_QUIET(tmp, len) < 0) {
169
        vah_error(NULL, 0, _("could not allocate memory for string"));
J
Jamie Strandboge 已提交
170 171 172 173 174 175 176 177 178 179 180
        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) {
181
        vah_error(NULL, 0, _("not enough space in target buffer"));
J
Jamie Strandboge 已提交
182 183 184 185 186 187 188
        VIR_FREE(tmp);
        return -1;
    }
    strcat(tmp, repstr);

    /* add everything after oldstr */
    if (strlen(tmp) + strlen(orig) - (idx + strlen(oldstr)) > len - 1) {
189
        vah_error(NULL, 0, _("not enough space in target buffer"));
J
Jamie Strandboge 已提交
190 191 192 193 194 195 196
        VIR_FREE(tmp);
        return -1;
    }
    strncat(tmp, orig + idx + strlen(oldstr),
            strlen(orig) - (idx + strlen(oldstr)));

    if (virStrcpy(orig, tmp, len) == NULL) {
197
        vah_error(NULL, 0, _("error replacing string"));
J
Jamie Strandboge 已提交
198 199 200 201 202 203 204 205 206 207 208 209 210 211
        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)
{
212
    int result = -1;
J
Jamie Strandboge 已提交
213
    char flag[3];
214
    char *profile;
215 216
    int status;
    int ret;
J
Jamie Strandboge 已提交
217 218

    if (strchr("arR", cmd) == NULL) {
219
        vah_error(NULL, 0, _("invalid flag"));
J
Jamie Strandboge 已提交
220 221 222 223 224
        return -1;
    }

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

225 226
    if (virAsprintfQuiet(&profile, "%s/%s",
                         APPARMOR_DIR "/libvirt", profile_name) < 0) {
227
        vah_error(NULL, 0, _("profile name exceeds maximum length"));
J
Jamie Strandboge 已提交
228 229 230 231
        return -1;
    }

    if (!virFileExists(profile)) {
232
        vah_error(NULL, 0, _("profile does not exist"));
233
        goto cleanup;
J
Jamie Strandboge 已提交
234 235 236 237
    } else {
        const char * const argv[] = {
            "/sbin/apparmor_parser", flag, profile, NULL
        };
238 239 240
        if ((ret = virRun(argv, &status)) != 0 ||
            (WIFEXITED(status) && WEXITSTATUS(status) != 0)) {
            if (ret != 0) {
241
                vah_error(NULL, 0, _("failed to run apparmor_parser"));
242
                goto cleanup;
243 244 245
            } else if (cmd == 'R' && WIFEXITED(status) &&
                       WEXITSTATUS(status) == 234) {
                vah_warning(_("unable to unload already unloaded profile"));
246
            } else {
247
                vah_error(NULL, 0, _("apparmor_parser exited with error"));
248
                goto cleanup;
249
            }
J
Jamie Strandboge 已提交
250 251 252
        }
    }

253 254
    result = 0;

255
 cleanup:
256 257 258
    VIR_FREE(profile);

    return result;
J
Jamie Strandboge 已提交
259 260 261 262 263 264
}

/*
 * Update the dynamic files
 */
static int
265 266
update_include_file(const char *include_file, const char *included_files,
                    bool append)
J
Jamie Strandboge 已提交
267 268
{
    int rc = -1;
269
    int plen, flen = 0;
J
Jamie Strandboge 已提交
270 271
    int fd;
    char *pcontent = NULL;
272
    char *existing = NULL;
J
Jamie Strandboge 已提交
273 274 275
    const char *warning =
         "# DO NOT EDIT THIS FILE DIRECTLY. IT IS MANAGED BY LIBVIRT.\n";

276 277 278 279 280 281 282
    if (virFileExists(include_file)) {
        flen = virFileReadAll(include_file, MAX_FILE_LEN, &existing);
        if (flen < 0)
            return rc;
    }

    if (append && virFileExists(include_file)) {
283
        if (virAsprintfQuiet(&pcontent, "%s%s", existing, included_files) == -1) {
284
            vah_error(NULL, 0, _("could not allocate memory for profile"));
285
            goto cleanup;
286 287
        }
    } else {
288
        if (virAsprintfQuiet(&pcontent, "%s%s", warning, included_files) == -1) {
289
            vah_error(NULL, 0, _("could not allocate memory for profile"));
290
            goto cleanup;
291
        }
J
Jamie Strandboge 已提交
292 293 294 295
    }

    plen = strlen(pcontent);
    if (plen > MAX_FILE_LEN) {
296
        vah_error(NULL, 0, _("invalid length for new profile"));
297
        goto cleanup;
J
Jamie Strandboge 已提交
298 299 300
    }

    /* only update the disk profile if it is different */
301 302
    if (flen > 0 && flen == plen && STREQLEN(existing, pcontent, plen)) {
        rc = 0;
303
        goto cleanup;
J
Jamie Strandboge 已提交
304 305 306 307
    }

    /* write the file */
    if ((fd = open(include_file, O_CREAT | O_TRUNC | O_WRONLY, 0644)) == -1) {
308
        vah_error(NULL, 0, _("failed to create include file"));
309
        goto cleanup;
J
Jamie Strandboge 已提交
310 311 312
    }

    if (safewrite(fd, pcontent, plen) < 0) { /* don't write the '\0' */
313
        VIR_FORCE_CLOSE(fd);
314
        vah_error(NULL, 0, _("failed to write to profile"));
315
        goto cleanup;
J
Jamie Strandboge 已提交
316 317
    }

318
    if (VIR_CLOSE(fd) != 0) {
319
        vah_error(NULL, 0, _("failed to close or write to profile"));
320
        goto cleanup;
J
Jamie Strandboge 已提交
321 322 323
    }
    rc = 0;

324
 cleanup:
J
Jamie Strandboge 已提交
325
    VIR_FREE(pcontent);
326
    VIR_FREE(existing);
J
Jamie Strandboge 已提交
327 328 329 330 331 332 333 334 335

    return rc;
}

/*
 * Create a profile based on a template
 */
static int
create_profile(const char *profile, const char *profile_name,
336
               const char *profile_files, int virtType)
J
Jamie Strandboge 已提交
337
{
338
    char *template;
J
Jamie Strandboge 已提交
339 340 341 342 343 344 345 346 347
    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;
348
    const char *driver_name = NULL;
J
Jamie Strandboge 已提交
349 350

    if (virFileExists(profile)) {
351
        vah_error(NULL, 0, _("profile exists"));
J
Jamie Strandboge 已提交
352 353 354
        goto end;
    }

355 356 357 358 359 360 361 362 363
    switch (virtType) {
    case VIR_DOMAIN_VIRT_QEMU:
    case VIR_DOMAIN_VIRT_KQEMU:
    case VIR_DOMAIN_VIRT_KVM:
        driver_name = "qemu";
        break;
    default:
        driver_name = virDomainVirtTypeToString(virtType);
    }
C
Cédric Bosdonnat 已提交
364 365

    if (virAsprintfQuiet(&template, "%s/TEMPLATE.%s", APPARMOR_DIR "/libvirt",
366
                         driver_name) < 0) {
367
        vah_error(NULL, 0, _("template name exceeds maximum length"));
J
Jamie Strandboge 已提交
368 369 370 371
        goto end;
    }

    if (!virFileExists(template)) {
372
        vah_error(NULL, 0, _("template does not exist"));
J
Jamie Strandboge 已提交
373 374 375 376
        goto end;
    }

    if ((tlen = virFileReadAll(template, MAX_FILE_LEN, &tcontent)) < 0) {
377
        vah_error(NULL, 0, _("failed to read AppArmor template"));
J
Jamie Strandboge 已提交
378 379 380 381
        goto end;
    }

    if (strstr(tcontent, template_name) == NULL) {
382
        vah_error(NULL, 0, _("no replacement string in template"));
J
Jamie Strandboge 已提交
383 384 385 386
        goto clean_tcontent;
    }

    if (strstr(tcontent, template_end) == NULL) {
387
        vah_error(NULL, 0, _("no replacement string in template"));
J
Jamie Strandboge 已提交
388 389 390 391
        goto clean_tcontent;
    }

    /* '\nprofile <profile_name>\0' */
392
    if (virAsprintfQuiet(&replace_name, "\nprofile %s", profile_name) == -1) {
393
        vah_error(NULL, 0, _("could not allocate memory for profile name"));
J
Jamie Strandboge 已提交
394 395 396 397
        goto clean_tcontent;
    }

    /* '\n<profile_files>\n}\0' */
398 399
    if ((virtType != VIR_DOMAIN_VIRT_LXC) &&
            virAsprintfQuiet(&replace_files, "\n%s\n}", profile_files) == -1) {
400
        vah_error(NULL, 0, _("could not allocate memory for profile files"));
J
Jamie Strandboge 已提交
401 402 403 404
        VIR_FREE(replace_name);
        goto clean_tcontent;
    }

C
Cédric Bosdonnat 已提交
405
    plen = tlen + strlen(replace_name) - strlen(template_name) + 1;
406 407 408 409

    if (virtType != VIR_DOMAIN_VIRT_LXC)
        plen += strlen(replace_files) - strlen(template_end);

J
Jamie Strandboge 已提交
410
    if (plen > MAX_FILE_LEN || plen < tlen) {
411
        vah_error(NULL, 0, _("invalid length for new profile"));
J
Jamie Strandboge 已提交
412 413 414
        goto clean_replace;
    }

415
    if (VIR_ALLOC_N_QUIET(pcontent, plen) < 0) {
416
        vah_error(NULL, 0, _("could not allocate memory for profile"));
J
Jamie Strandboge 已提交
417 418 419 420 421 422 423 424
        goto clean_replace;
    }
    pcontent[0] = '\0';
    strcpy(pcontent, tcontent);

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

425 426
    if ((virtType != VIR_DOMAIN_VIRT_LXC) &&
            replace_string(pcontent, plen, template_end, replace_files) < 0)
J
Jamie Strandboge 已提交
427 428 429 430
        goto clean_all;

    /* write the file */
    if ((fd = open(profile, O_CREAT | O_EXCL | O_WRONLY, 0644)) == -1) {
431
        vah_error(NULL, 0, _("failed to create profile"));
J
Jamie Strandboge 已提交
432 433 434 435
        goto clean_all;
    }

    if (safewrite(fd, pcontent, plen - 1) < 0) { /* don't write the '\0' */
436
        VIR_FORCE_CLOSE(fd);
437
        vah_error(NULL, 0, _("failed to write to profile"));
J
Jamie Strandboge 已提交
438 439 440
        goto clean_all;
    }

441
    if (VIR_CLOSE(fd) != 0) {
442
        vah_error(NULL, 0, _("failed to close or write to profile"));
J
Jamie Strandboge 已提交
443 444 445 446
        goto clean_all;
    }
    rc = 0;

447
 clean_all:
J
Jamie Strandboge 已提交
448
    VIR_FREE(pcontent);
449
 clean_replace:
J
Jamie Strandboge 已提交
450 451
    VIR_FREE(replace_name);
    VIR_FREE(replace_files);
452
 clean_tcontent:
J
Jamie Strandboge 已提交
453
    VIR_FREE(tcontent);
454
 end:
455
    VIR_FREE(template);
J
Jamie Strandboge 已提交
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
    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 = " /[]*";

510
    if (strlen(name) == 0)
J
Jamie Strandboge 已提交
511 512 513 514 515 516 517 518 519 520 521 522
        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)
{
523
    size_t i;
J
Jamie Strandboge 已提交
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
    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)
{
549 550 551
    int npaths;
    int nropaths;

J
Jamie Strandboge 已提交
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
    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",
575 576
        "/initrd.img",
        "/usr/share/ovmf/"               /* for OVMF images */
J
Jamie Strandboge 已提交
577
    };
578 579
    /* override the above with these */
    const char * const override[] = {
J
John Ferlan 已提交
580
        "/sys/devices/pci",              /* for hostdev pci devices */
581
        "/etc/libvirt-sandbox/services/" /* for virt-sandbox service config */
582
    };
J
Jamie Strandboge 已提交
583

584
    if (path == NULL) {
585
        vah_error(NULL, 0, _("bad pathname"));
J
Jamie Strandboge 已提交
586 587 588 589 590 591 592 593 594
        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 已提交
595 596 597 598
    /* Require an absolute path */
    if (STRNEQLEN(path, "/", 1))
        return 1;

599
    if (!virFileExists(path))
600
        vah_warning(_("path does not exist, skipping file type checks"));
J
Jamie Strandboge 已提交
601

602 603 604 605
    /* overrides are always allowed */
    npaths = sizeof(override)/sizeof(*(override));
    if (array_starts_with(path, override, npaths) == 0)
        return 0;
J
Jamie Strandboge 已提交
606

607 608 609 610 611
    /* allow read only paths upfront */
    if (readonly) {
        nropaths = sizeof(restricted_rw)/sizeof(*(restricted_rw));
        if (array_starts_with(path, restricted_rw, nropaths) == 0)
            return 0;
J
Jamie Strandboge 已提交
612 613
    }

614 615 616 617 618 619
    /* disallow RW acess to all paths in restricted and restriced_rw */
    npaths = sizeof(restricted)/sizeof(*(restricted));
    if ((array_starts_with(path, restricted, npaths) == 0
        || array_starts_with(path, restricted_rw, nropaths) == 0))
        return 1;

J
Jamie Strandboge 已提交
620 621 622
    return 0;
}

623 624 625 626 627 628 629
static int
verify_xpath_context(xmlXPathContextPtr ctxt)
{
    int rc = -1;
    char *tmp = NULL;

    if (!ctxt) {
630
        vah_warning(_("Invalid context"));
631 632 633 634 635
        goto error;
    }

    /* check if have <name> */
    if (!(tmp = virXPathString("string(./name[1])", ctxt))) {
636
        vah_warning(_("Could not find <name>"));
637 638 639 640 641 642
        goto error;
    }
    VIR_FREE(tmp);

    /* check if have <uuid> */
    if (!(tmp = virXPathString("string(./uuid[1])", ctxt))) {
643
        vah_warning(_("Could not find <uuid>"));
644 645 646 647 648 649
        goto error;
    }
    VIR_FREE(tmp);

    rc = 0;

650
 error:
651 652 653
    return rc;
}

654 655
/*
 * Parse the xml we received to fill in the following:
656
 * ctl->virtType
657
 * ctl->os
658 659 660 661 662 663 664 665 666 667
 * ctl->arch
 *
 * 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;
668
    char *arch;
669

670
    if (!(xml = virXMLParseStringCtxt(xmlStr, _("(domain_definition)"),
671
                                      &ctxt))) {
672 673 674
        goto cleanup;
    }

675
    if (!xmlStrEqual(ctxt->node->name, BAD_CAST "domain")) {
676
        vah_error(NULL, 0, _("unexpected root element, expecting <domain>"));
677 678 679
        goto cleanup;
    }

680 681 682 683
    /* Quick sanity check for some required elements */
    if (verify_xpath_context(ctxt) != 0)
        goto cleanup;

684 685 686 687 688
    ctl->virtType = virXPathString("string(./@type)", ctxt);
    if (!ctl->virtType) {
        vah_error(ctl, 0, _("domain type is not defined"));
        goto cleanup;
    }
689 690
    ctl->os = virXPathString("string(./os/type[1])", ctxt);
    if (!ctl->os) {
691
        vah_error(ctl, 0, _("os.type is not defined"));
692 693
        goto cleanup;
    }
694 695 696 697 698 699
    arch = virXPathString("string(./os/type[1]/@arch)", ctxt);
    if (!arch) {
        ctl->arch = virArchFromHost();
    } else {
        ctl->arch = virArchFromString(arch);
        VIR_FREE(arch);
700 701 702 703
    }

    rc = 0;

704
 cleanup:
705
    xmlFreeDoc(xml);
706 707 708 709 710
    xmlXPathFreeContext(ctxt);

    return rc;
}

711

J
Jamie Strandboge 已提交
712 713 714
static int
get_definition(vahControl * ctl, const char *xmlStr)
{
715
    int rc = -1, ostype, virtType;
J
Jamie Strandboge 已提交
716 717 718 719 720 721
    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().
     */
722 723
    if (caps_mockup(ctl, xmlStr) != 0)
        goto exit;
J
Jamie Strandboge 已提交
724

725
    if ((ctl->caps = virCapabilitiesNew(ctl->arch, true, true)) == NULL) {
726
        vah_error(ctl, 0, _("could not allocate memory"));
J
Jamie Strandboge 已提交
727 728 729
        goto exit;
    }

730
    if (!(ctl->xmlopt = virDomainXMLOptionNew(NULL, NULL, NULL))) {
731 732 733 734
        vah_error(ctl, 0, _("Failed to create XML config object"));
        goto exit;
    }

735
    if ((ostype = virDomainOSTypeFromString(ctl->os)) < 0) {
736 737 738 739
        vah_error(ctl, 0, _("unknown OS type"));
        goto exit;
    }

J
Jamie Strandboge 已提交
740
    if ((guest = virCapabilitiesAddGuest(ctl->caps,
741
                                         ostype,
742
                                         ctl->arch,
J
Jamie Strandboge 已提交
743 744 745 746
                                         NULL,
                                         NULL,
                                         0,
                                         NULL)) == NULL) {
747
        vah_error(ctl, 0, _("could not allocate memory"));
748 749 750 751 752 753 754 755 756 757 758 759 760 761 762
        goto exit;
    }

    if ((virtType = virDomainVirtTypeFromString(ctl->virtType)) < 0) {
        vah_error(ctl, 0, _("unknown virtualization type"));
        goto exit;
    }

    if (virCapabilitiesAddGuestDomain(guest,
                                      virtType,
                                      NULL,
                                      NULL,
                                      0,
                                      NULL) == NULL) {
        vah_error(ctl, 0, _("could not allocate memory"));
J
Jamie Strandboge 已提交
763 764 765
        goto exit;
    }

766 767
    ctl->def = virDomainDefParseString(xmlStr,
                                       ctl->caps, ctl->xmlopt,
768
                                       VIR_DOMAIN_DEF_PARSE_INACTIVE);
J
Jamie Strandboge 已提交
769
    if (ctl->def == NULL) {
770
        vah_error(ctl, 0, _("could not parse XML"));
J
Jamie Strandboge 已提交
771 772 773 774
        goto exit;
    }

    if (!ctl->def->name) {
775
        vah_error(ctl, 0, _("could not find name in XML"));
J
Jamie Strandboge 已提交
776 777 778 779
        goto exit;
    }

    if (valid_name(ctl->def->name) != 0) {
780
        vah_error(ctl, 0, _("bad name"));
J
Jamie Strandboge 已提交
781 782 783 784 785
        goto exit;
    }

    rc = 0;

786
 exit:
J
Jamie Strandboge 已提交
787 788 789 790
    return rc;
}

static int
F
Felix Geyer 已提交
791
vah_add_path(virBufferPtr buf, const char *path, const char *perms, bool recursive)
J
Jamie Strandboge 已提交
792 793 794 795 796 797 798 799
{
    char *tmp = NULL;
    int rc = -1;
    bool readonly = true;

    if (path == NULL)
        return rc;

J
Jamie Strandboge 已提交
800 801 802 803 804 805
    /* 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);
806
        vah_warning(_("skipped non-absolute path"));
J
Jamie Strandboge 已提交
807 808 809
        return 0;
    }

J
Jamie Strandboge 已提交
810 811 812
    if (virFileExists(path)) {
        if ((tmp = realpath(path, NULL)) == NULL) {
            vah_error(NULL, 0, path);
813
            vah_error(NULL, 0, _("could not find realpath for disk"));
J
Jamie Strandboge 已提交
814 815
            return rc;
        }
816 817 818
    } else if (VIR_STRDUP_QUIET(tmp, path) < 0) {
        return rc;
    }
J
Jamie Strandboge 已提交
819 820 821 822 823 824 825 826

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

    rc = valid_path(tmp, readonly);
    if (rc != 0) {
        if (rc > 0) {
            vah_error(NULL, 0, path);
827
            vah_error(NULL, 0, _("skipped restricted file"));
J
Jamie Strandboge 已提交
828
        }
829
        goto cleanup;
J
Jamie Strandboge 已提交
830 831
    }

832 833 834
    if (tmp[strlen(tmp) - 1] == '/')
        tmp[strlen(tmp) - 1] = '\0';

F
Felix Geyer 已提交
835
    virBufferAsprintf(buf, "  \"%s%s\" %s,\n", tmp, recursive ? "/**" : "", perms);
836
    if (readonly) {
837
        virBufferAddLit(buf, "  # don't audit writes to readonly files\n");
F
Felix Geyer 已提交
838 839 840 841 842
        virBufferAsprintf(buf, "  deny \"%s%s\" w,\n", tmp, recursive ? "/**" : "");
    }
    if (recursive) {
        /* allow reading (but not creating) the dir */
        virBufferAsprintf(buf, "  \"%s/\" r,\n", tmp);
843
    }
J
Jamie Strandboge 已提交
844

845
 cleanup:
846
    VIR_FREE(tmp);
J
Jamie Strandboge 已提交
847 848 849 850

    return rc;
}

F
Felix Geyer 已提交
851 852 853 854 855 856
static int
vah_add_file(virBufferPtr buf, const char *path, const char *perms)
{
    return vah_add_path(buf, path, perms, false);
}

857 858 859 860 861 862 863 864 865 866 867 868
static int
vah_add_file_chardev(virBufferPtr buf,
                     const char *path,
                     const char *perms,
                     const int type)
{
    char *pipe_in;
    char *pipe_out;
    int rc = -1;

    if (type == VIR_DOMAIN_CHR_TYPE_PIPE) {
        /* add the pipe input */
869
        if (virAsprintfQuiet(&pipe_in, "%s.in", path) == -1) {
870
            vah_error(NULL, 0, _("could not allocate memory"));
871
            goto cleanup;
872 873 874 875 876 877
        }

        if (vah_add_file(buf, pipe_in, perms) != 0)
            goto clean_pipe_in;

        /* add the pipe output */
878
        if (virAsprintfQuiet(&pipe_out, "%s.out", path) == -1) {
879 880 881 882 883 884 885 886 887 888 889 890 891 892 893
            vah_error(NULL, 0, _("could not allocate memory"));
            goto clean_pipe_in;
        }

        if (vah_add_file(buf, pipe_out, perms) != 0)
            goto clean_pipe_out;

        rc = 0;
      clean_pipe_out:
        VIR_FREE(pipe_out);
      clean_pipe_in:
        VIR_FREE(pipe_in);
    } else {
        /* add the file */
        if (vah_add_file(buf, path, perms) != 0)
894
            goto cleanup;
895 896 897
        rc = 0;
    }

898
 cleanup:
899 900 901
    return rc;
}

J
Jamie Strandboge 已提交
902
static int
903
file_iterate_hostdev_cb(virUSBDevicePtr dev ATTRIBUTE_UNUSED,
904 905 906 907 908 909 910
                        const char *file, void *opaque)
{
    virBufferPtr buf = opaque;
    return vah_add_file(buf, file, "rw");
}

static int
911 912
file_iterate_pci_cb(virPCIDevicePtr dev ATTRIBUTE_UNUSED,
                    const char *file, void *opaque)
J
Jamie Strandboge 已提交
913 914 915 916 917
{
    virBufferPtr buf = opaque;
    return vah_add_file(buf, file, "rw");
}

918 919 920 921 922 923 924 925 926 927
static int
add_file_path(virDomainDiskDefPtr disk,
              const char *path,
              size_t depth,
              void *opaque)
{
    virBufferPtr buf = opaque;
    int ret;

    if (depth == 0) {
928
        if (disk->src->readonly)
929 930 931 932 933 934 935
            ret = vah_add_file(buf, path, "r");
        else
            ret = vah_add_file(buf, path, "rw");
    } else {
        ret = vah_add_file(buf, path, "r");
    }

936 937 938
    if (ret != 0)
        ret = -1;

939 940 941
    return ret;
}

J
Jamie Strandboge 已提交
942 943 944 945 946
static int
get_files(vahControl * ctl)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    int rc = -1;
947
    size_t i;
J
Jamie Strandboge 已提交
948 949
    char *uuid;
    char uuidstr[VIR_UUID_STRING_BUFLEN];
950
    bool needsVfio = false, needsvhost = false;
J
Jamie Strandboge 已提交
951 952 953

    /* verify uuid is same as what we were given on the command line */
    virUUIDFormat(ctl->def->uuid, uuidstr);
954
    if (virAsprintfQuiet(&uuid, "%s%s", AA_PREFIX, uuidstr) == -1) {
955
        vah_error(ctl, 0, _("could not allocate memory"));
J
Jamie Strandboge 已提交
956 957 958 959
        return rc;
    }

    if (STRNEQ(uuid, ctl->uuid)) {
960
        vah_error(ctl, 0, _("given uuid does not match XML uuid"));
961
        goto cleanup;
J
Jamie Strandboge 已提交
962 963
    }

964
    for (i = 0; i < ctl->def->ndisks; i++) {
965 966
        virDomainDiskDefPtr disk = ctl->def->disks[i];

967
        if (!virDomainDiskGetSource(disk))
E
Eric Blake 已提交
968
            continue;
969 970 971
        /* XXX - if we knew the qemu user:group here we could send it in
         *        so that the open could be re-tried as that user:group.
         */
972
        if (!disk->src->backingStore) {
J
Jiri Denemark 已提交
973
            bool probe = ctl->allowDiskFormatProbing;
974
            virStorageFileGetMetadata(disk->src, -1, -1, probe, false);
J
Jiri Denemark 已提交
975
        }
976

977 978 979
        /* 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
980 981
         * careful than just ignoring them.
         */
982
        if (virDomainDiskDefForeachPath(disk, true, add_file_path, &buf) < 0)
983
            goto cleanup;
984
    }
J
Jamie Strandboge 已提交
985 986

    for (i = 0; i < ctl->def->nserials; i++)
987
        if (ctl->def->serials[i] &&
988 989 990
            (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 ||
991
             ctl->def->serials[i]->source.type == VIR_DOMAIN_CHR_TYPE_UNIX ||
992
             ctl->def->serials[i]->source.type == VIR_DOMAIN_CHR_TYPE_PIPE) &&
993 994
            ctl->def->serials[i]->source.data.file.path &&
            ctl->def->serials[i]->source.data.file.path[0] != '\0')
995 996 997 998
            if (vah_add_file_chardev(&buf,
                                     ctl->def->serials[i]->source.data.file.path,
                                     "rw",
                                     ctl->def->serials[i]->source.type) != 0)
999
                goto cleanup;
J
Jamie Strandboge 已提交
1000

1001 1002 1003 1004 1005
    for (i = 0; i < ctl->def->nconsoles; i++)
        if (ctl->def->consoles[i] &&
            (ctl->def->consoles[i]->source.type == VIR_DOMAIN_CHR_TYPE_PTY ||
             ctl->def->consoles[i]->source.type == VIR_DOMAIN_CHR_TYPE_DEV ||
             ctl->def->consoles[i]->source.type == VIR_DOMAIN_CHR_TYPE_FILE ||
1006
             ctl->def->consoles[i]->source.type == VIR_DOMAIN_CHR_TYPE_UNIX ||
1007
             ctl->def->consoles[i]->source.type == VIR_DOMAIN_CHR_TYPE_PIPE) &&
1008 1009
            ctl->def->consoles[i]->source.data.file.path &&
            ctl->def->consoles[i]->source.data.file.path[0] != '\0')
1010 1011
            if (vah_add_file(&buf,
                             ctl->def->consoles[i]->source.data.file.path, "rw") != 0)
1012
                goto cleanup;
J
Jamie Strandboge 已提交
1013

1014
    for (i = 0; i < ctl->def->nparallels; i++)
1015
        if (ctl->def->parallels[i] &&
1016 1017 1018
            (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 ||
1019
             ctl->def->parallels[i]->source.type == VIR_DOMAIN_CHR_TYPE_UNIX ||
1020
             ctl->def->parallels[i]->source.type == VIR_DOMAIN_CHR_TYPE_PIPE) &&
1021 1022
            ctl->def->parallels[i]->source.data.file.path &&
            ctl->def->parallels[i]->source.data.file.path[0] != '\0')
1023 1024 1025 1026
            if (vah_add_file_chardev(&buf,
                                     ctl->def->parallels[i]->source.data.file.path,
                                     "rw",
                                     ctl->def->parallels[i]->source.type) != 0)
1027
                goto cleanup;
1028

1029
    for (i = 0; i < ctl->def->nchannels; i++)
1030
        if (ctl->def->channels[i] &&
1031 1032 1033
            (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 ||
1034
             ctl->def->channels[i]->source.type == VIR_DOMAIN_CHR_TYPE_UNIX ||
1035
             ctl->def->channels[i]->source.type == VIR_DOMAIN_CHR_TYPE_PIPE) &&
1036 1037
            ctl->def->channels[i]->source.data.file.path &&
            ctl->def->channels[i]->source.data.file.path[0] != '\0')
1038 1039 1040 1041
            if (vah_add_file_chardev(&buf,
                                     ctl->def->channels[i]->source.data.file.path,
                                     "rw",
                                     ctl->def->channels[i]->source.type) != 0)
1042
                goto cleanup;
1043

1044
    if (ctl->def->os.kernel)
J
Jamie Strandboge 已提交
1045
        if (vah_add_file(&buf, ctl->def->os.kernel, "r") != 0)
1046
            goto cleanup;
J
Jamie Strandboge 已提交
1047

1048
    if (ctl->def->os.initrd)
J
Jamie Strandboge 已提交
1049
        if (vah_add_file(&buf, ctl->def->os.initrd, "r") != 0)
1050
            goto cleanup;
O
Olivia Yin 已提交
1051 1052 1053

    if (ctl->def->os.dtb)
        if (vah_add_file(&buf, ctl->def->os.dtb, "r") != 0)
1054
            goto cleanup;
J
Jamie Strandboge 已提交
1055

1056 1057
    if (ctl->def->os.loader && ctl->def->os.loader->path)
        if (vah_add_file(&buf, ctl->def->os.loader->path, "r") != 0)
1058
            goto cleanup;
1059

1060 1061 1062 1063
    for (i = 0; i < ctl->def->ngraphics; i++) {
        if (ctl->def->graphics[i]->type == VIR_DOMAIN_GRAPHICS_TYPE_VNC &&
            ctl->def->graphics[i]->data.vnc.socket &&
            vah_add_file(&buf, ctl->def->graphics[i]->data.vnc.socket, "rw"))
1064
            goto cleanup;
1065 1066
    }

1067 1068 1069 1070
    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)
1071
            goto cleanup;
J
Jamie Strandboge 已提交
1072 1073 1074 1075

    for (i = 0; i < ctl->def->nhostdevs; i++)
        if (ctl->def->hostdevs[i]) {
            virDomainHostdevDefPtr dev = ctl->def->hostdevs[i];
1076
            virDomainHostdevSubsysUSBPtr usbsrc = &dev->source.subsys.u.usb;
J
Jamie Strandboge 已提交
1077 1078
            switch (dev->source.subsys.type) {
            case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB: {
1079
                virUSBDevicePtr usb =
1080
                    virUSBDeviceNew(usbsrc->bus, usbsrc->device, NULL);
1081 1082 1083 1084

                if (usb == NULL)
                    continue;

1085 1086
                rc = virUSBDeviceFileIterate(usb, file_iterate_hostdev_cb, &buf);
                virUSBDeviceFree(usb);
1087
                if (rc != 0)
1088
                    goto cleanup;
J
Jamie Strandboge 已提交
1089 1090
                break;
            }
1091

J
Jamie Strandboge 已提交
1092
            case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI: {
1093
                virPCIDevicePtr pci = virPCIDeviceNew(
1094 1095 1096 1097
                           dev->source.subsys.u.pci.addr.domain,
                           dev->source.subsys.u.pci.addr.bus,
                           dev->source.subsys.u.pci.addr.slot,
                           dev->source.subsys.u.pci.addr.function);
J
Jamie Strandboge 已提交
1098

1099
                virDomainHostdevSubsysPCIBackendType backend = dev->source.subsys.u.pci.backend;
1100 1101 1102 1103 1104
                if (backend == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO ||
                        backend == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_DEFAULT) {
                    needsVfio = true;
                }

J
Jamie Strandboge 已提交
1105 1106 1107
                if (pci == NULL)
                    continue;

1108 1109
                rc = virPCIDeviceFileIterate(pci, file_iterate_pci_cb, &buf);
                virPCIDeviceFree(pci);
J
Jamie Strandboge 已提交
1110 1111 1112

                break;
            }
1113

J
Jamie Strandboge 已提交
1114 1115 1116 1117 1118 1119
            default:
                rc = 0;
                break;
            } /* switch */
        }

F
Felix Geyer 已提交
1120 1121 1122 1123 1124
    for (i = 0; i < ctl->def->nfss; i++) {
        if (ctl->def->fss[i] &&
                ctl->def->fss[i]->type == VIR_DOMAIN_FS_TYPE_MOUNT &&
                (ctl->def->fss[i]->fsdriver == VIR_DOMAIN_FS_DRIVER_TYPE_PATH ||
                 ctl->def->fss[i]->fsdriver == VIR_DOMAIN_FS_DRIVER_TYPE_DEFAULT) &&
1125
                ctl->def->fss[i]->src) {
F
Felix Geyer 已提交
1126 1127 1128 1129 1130 1131 1132
            virDomainFSDefPtr fs = ctl->def->fss[i];

            if (vah_add_path(&buf, fs->src, fs->readonly ? "r" : "rw", true) != 0)
                goto cleanup;
        }
    }

1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144
    for (i = 0; i < ctl->def->nnets; i++) {
        if (ctl->def->nets[i] &&
                ctl->def->nets[i]->type == VIR_DOMAIN_NET_TYPE_VHOSTUSER &&
                ctl->def->nets[i]->data.vhostuser) {
            virDomainChrSourceDefPtr vhu = ctl->def->nets[i]->data.vhostuser;

            if (vah_add_file_chardev(&buf, vhu->data.nix.path, "rw",
                       vhu->type) != 0)
                goto cleanup;
        }
    }

1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
    if (ctl->def->virtType == VIR_DOMAIN_VIRT_KVM) {
        for (i = 0; i < ctl->def->nnets; i++) {
            virDomainNetDefPtr net = ctl->def->nets[i];
            if (net && net->model) {
                if (net->driver.virtio.name == VIR_DOMAIN_NET_BACKEND_TYPE_QEMU)
                    continue;
                if (STRNEQ(net->model, "virtio"))
                    continue;
            }
            needsvhost = true;
        }
    }
    if (needsvhost)
        virBufferAddLit(&buf, "  /dev/vhost-net rw,\n");

1160 1161 1162 1163 1164
    if (needsVfio) {
        virBufferAddLit(&buf, "  /dev/vfio/vfio rw,\n");
        virBufferAddLit(&buf, "  /dev/vfio/[0-9]* rw,\n");
    }

1165 1166
    if (ctl->newfile)
        if (vah_add_file(&buf, ctl->newfile, "rw") != 0)
1167
            goto cleanup;
J
Jamie Strandboge 已提交
1168 1169

    if (virBufferError(&buf)) {
1170
        virBufferFreeAndReset(&buf);
1171
        vah_error(NULL, 0, _("failed to allocate file buffer"));
1172
        goto cleanup;
J
Jamie Strandboge 已提交
1173 1174 1175 1176 1177
    }

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

1178
 cleanup:
J
Jamie Strandboge 已提交
1179 1180 1181 1182 1183 1184 1185 1186 1187
    VIR_FREE(uuid);
    return rc;
}

static int
vahParseArgv(vahControl * ctl, int argc, char **argv)
{
    int arg, idx = 0;
    struct option opt[] = {
1188
        {"probing", 1, 0, 'p' },
J
Jamie Strandboge 已提交
1189 1190 1191 1192 1193
        {"add", 0, 0, 'a'},
        {"create", 0, 0, 'c'},
        {"dryrun", 0, 0, 'd'},
        {"delete", 0, 0, 'D'},
        {"add-file", 0, 0, 'f'},
1194
        {"append-file", 0, 0, 'F'},
J
Jamie Strandboge 已提交
1195 1196 1197 1198 1199 1200 1201
        {"help", 0, 0, 'h'},
        {"replace", 0, 0, 'r'},
        {"remove", 0, 0, 'R'},
        {"uuid", 1, 0, 'u'},
        {0, 0, 0, 0}
    };

1202
    while ((arg = getopt_long(argc, argv, "acdDhrRH:b:u:p:f:F:", opt,
J
Jamie Strandboge 已提交
1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
            &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':
1218
            case 'F':
1219
                if (VIR_STRDUP_QUIET(ctl->newfile, optarg) < 0)
1220
                    vah_error(ctl, 1, _("could not allocate memory for disk"));
1221
                ctl->append = arg == 'F';
J
Jamie Strandboge 已提交
1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
                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)
1235
                    vah_error(ctl, 1, _("invalid UUID"));
J
Jamie Strandboge 已提交
1236 1237
                if (virStrcpy((char *) ctl->uuid, optarg,
                    PROFILE_NAME_SIZE) == NULL)
1238
                    vah_error(ctl, 1, _("error copying UUID"));
J
Jamie Strandboge 已提交
1239
                break;
1240 1241 1242 1243 1244 1245
            case 'p':
                if (STREQ(optarg, "1"))
                    ctl->allowDiskFormatProbing = true;
                else
                    ctl->allowDiskFormatProbing = false;
                break;
J
Jamie Strandboge 已提交
1246
            default:
1247
                vah_error(ctl, 1, _("unsupported option"));
J
Jamie Strandboge 已提交
1248 1249 1250 1251
                break;
        }
    }
    if (strchr("acDrR", ctl->cmd) == NULL)
1252
        vah_error(ctl, 1, _("bad command"));
J
Jamie Strandboge 已提交
1253 1254

    if (valid_uuid(ctl->uuid) != 0)
1255
        vah_error(ctl, 1, _("invalid UUID"));
J
Jamie Strandboge 已提交
1256 1257 1258 1259 1260 1261 1262 1263 1264

    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)
1265
            vah_error(ctl, 1, _("could not read xml file"));
J
Jamie Strandboge 已提交
1266 1267 1268

        if (get_definition(ctl, xmlStr) != 0 || ctl->def == NULL) {
            VIR_FREE(xmlStr);
1269
            vah_error(ctl, 1, _("could not get VM definition"));
J
Jamie Strandboge 已提交
1270 1271 1272 1273
        }
        VIR_FREE(xmlStr);

        if (get_files(ctl) != 0)
1274
            vah_error(ctl, 1, _("invalid VM definition"));
J
Jamie Strandboge 已提交
1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
    }
    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;
1293 1294
    char *profile = NULL;
    char *include_file = NULL;
J
Jamie Strandboge 已提交
1295

E
Eric Blake 已提交
1296 1297 1298
    if (setlocale(LC_ALL, "") == NULL ||
        bindtextdomain(PACKAGE, LOCALEDIR) == NULL ||
        textdomain(PACKAGE) == NULL) {
1299
        fprintf(stderr, _("%s: initialization failed\n"), argv[0]);
E
Eric Blake 已提交
1300 1301 1302
        exit(EXIT_FAILURE);
    }

1303 1304 1305 1306 1307 1308
    if (virThreadInitialize() < 0 ||
        virErrorInitialize() < 0) {
        fprintf(stderr, _("%s: initialization failed\n"), argv[0]);
        exit(EXIT_FAILURE);
    }

1309 1310 1311
    /* Initialize the log system */
    virLogSetFromEnv();

J
Jamie Strandboge 已提交
1312 1313
    /* clear the environment */
    environ = NULL;
1314
    if (setenv("PATH", "/sbin:/usr/sbin", 1) != 0)
1315 1316
        vah_error(ctl, 1, _("could not set PATH"));

1317
    /* ensure the traditional IFS setting */
1318
    if (setenv("IFS", " \t\n", 1) != 0)
1319
        vah_error(ctl, 1, _("could not set IFS"));
J
Jamie Strandboge 已提交
1320 1321 1322 1323 1324 1325 1326 1327 1328

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

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

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

1331 1332
    if (virAsprintfQuiet(&profile, "%s/%s",
                         APPARMOR_DIR "/libvirt", ctl->uuid) < 0)
1333
        vah_error(ctl, 0, _("could not allocate memory"));
J
Jamie Strandboge 已提交
1334

1335 1336
    if (virAsprintfQuiet(&include_file, "%s/%s.files",
                         APPARMOR_DIR "/libvirt", ctl->uuid) < 0)
1337
        vah_error(ctl, 0, _("could not allocate memory"));
J
Jamie Strandboge 已提交
1338

1339
    if (ctl->cmd == 'a') {
J
Jamie Strandboge 已提交
1340
        rc = parserLoad(ctl->uuid);
1341
    } else if (ctl->cmd == 'R' || ctl->cmd == 'D') {
J
Jamie Strandboge 已提交
1342 1343 1344 1345 1346 1347 1348 1349
        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;

1350
        if (ctl->cmd == 'c' && virFileExists(profile))
1351
            vah_error(ctl, 1, _("profile exists"));
J
Jamie Strandboge 已提交
1352

1353 1354
        if (ctl->append && ctl->newfile) {
            if (vah_add_file(&buf, ctl->newfile, "rw") != 0)
1355
                goto cleanup;
1356
        } else {
1357 1358 1359
            if (ctl->def->virtType == VIR_DOMAIN_VIRT_QEMU ||
                ctl->def->virtType == VIR_DOMAIN_VIRT_KQEMU ||
                ctl->def->virtType == VIR_DOMAIN_VIRT_KVM) {
1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372
                virBufferAsprintf(&buf, "  \"%s/log/libvirt/**/%s.log\" w,\n",
                                  LOCALSTATEDIR, ctl->def->name);
                virBufferAsprintf(&buf, "  \"%s/lib/libvirt/**/%s.monitor\" rw,\n",
                                  LOCALSTATEDIR, ctl->def->name);
                virBufferAsprintf(&buf, "  \"%s/run/libvirt/**/%s.pid\" rwk,\n",
                                  LOCALSTATEDIR, ctl->def->name);
                virBufferAsprintf(&buf, "  \"/run/libvirt/**/%s.pid\" rwk,\n",
                                  ctl->def->name);
                virBufferAsprintf(&buf, "  \"%s/run/libvirt/**/*.tunnelmigrate.dest.%s\" rw,\n",
                                  LOCALSTATEDIR, ctl->def->name);
                virBufferAsprintf(&buf, "  \"/run/libvirt/**/*.tunnelmigrate.dest.%s\" rw,\n",
                                  ctl->def->name);
            }
1373
            if (ctl->files)
1374
                virBufferAdd(&buf, ctl->files, -1);
1375
        }
J
Jamie Strandboge 已提交
1376

1377 1378
        if (virBufferError(&buf)) {
            virBufferFreeAndReset(&buf);
1379
            vah_error(ctl, 1, _("failed to allocate buffer"));
1380
        }
J
Jamie Strandboge 已提交
1381 1382 1383 1384 1385 1386 1387 1388

        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;
1389 1390 1391
        } else if (ctl->def->virtType == VIR_DOMAIN_VIRT_LXC) {
            rc = 0;
        } else if ((rc = update_include_file(include_file,
1392
                                             included_files,
1393
                                             ctl->append)) != 0) {
1394
            goto cleanup;
1395
        }
J
Jamie Strandboge 已提交
1396 1397 1398 1399 1400


        /* create the profile from TEMPLATE */
        if (ctl->cmd == 'c') {
            char *tmp = NULL;
1401 1402
            if (virAsprintfQuiet(&tmp, "  #include <libvirt/%s.files>\n",
                                 ctl->uuid) == -1) {
1403
                vah_error(ctl, 0, _("could not allocate memory"));
1404
                goto cleanup;
J
Jamie Strandboge 已提交
1405 1406 1407 1408 1409 1410 1411
            }

            if (ctl->dryrun) {
                vah_info(profile);
                vah_info(ctl->uuid);
                vah_info(tmp);
                rc = 0;
1412 1413
            } else if ((rc = create_profile(profile, ctl->uuid, tmp,
                                            ctl->def->virtType)) != 0) {
1414
                vah_error(ctl, 0, _("could not create profile"));
J
Jamie Strandboge 已提交
1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432
                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);
            }
        }
1433
      cleanup:
J
Jamie Strandboge 已提交
1434 1435 1436 1437
        VIR_FREE(included_files);
    }

    vahDeinit(ctl);
1438 1439 1440 1441

    VIR_FREE(profile);
    VIR_FREE(include_file);

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