security_dac.c 30.9 KB
Newer Older
1
/*
2
 * Copyright (C) 2010-2012 Red Hat, Inc.
3 4 5 6 7 8 9 10 11 12 13 14
 *
 * 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
15
 * License along with this library.  If not, see
O
Osier Yang 已提交
16
 * <http://www.gnu.org/licenses/>.
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
 *
 * POSIX DAC security driver
 */

#include <config.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

#include "security_dac.h"
#include "virterror_internal.h"
#include "util.h"
#include "memory.h"
#include "logging.h"
#include "pci.h"
#include "hostusb.h"
#include "storage_file.h"

#define VIR_FROM_THIS VIR_FROM_SECURITY
36
#define SECURITY_DAC_NAME "dac"
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

typedef struct _virSecurityDACData virSecurityDACData;
typedef virSecurityDACData *virSecurityDACDataPtr;

struct _virSecurityDACData {
    uid_t user;
    gid_t group;
    bool dynamicOwnership;
};

void virSecurityDACSetUser(virSecurityManagerPtr mgr,
                           uid_t user)
{
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);
    priv->user = user;
}

void virSecurityDACSetGroup(virSecurityManagerPtr mgr,
                            gid_t group)
{
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);
    priv->group = group;
}

void virSecurityDACSetDynamicOwnership(virSecurityManagerPtr mgr,
                                       bool dynamicOwnership)
{
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);
    priv->dynamicOwnership = dynamicOwnership;
}

68 69 70
static
int parseIds(const char *label, uid_t *uidPtr, gid_t *gidPtr)
{
71
    int rc = -1;
72 73
    unsigned int theuid;
    unsigned int thegid;
74 75 76 77 78 79 80 81 82 83
    char *tmp_label = NULL;
    char *sep = NULL;
    char *owner = NULL;
    char *group = NULL;

    tmp_label = strdup(label);
    if (tmp_label == NULL) {
        virReportOOMError();
        goto cleanup;
    }
84

85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
    /* Split label */
    sep = strchr(tmp_label, ':');
    if (sep == NULL) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("Missing separator ':' in DAC label \"%s\""),
                       label);
        goto cleanup;
    }
    *sep = '\0';
    owner = tmp_label;
    group = sep + 1;

    /* Parse owner */
    if (*owner == '+') {
        if (virStrToLong_ui(++owner, NULL, 10, &theuid) < 0) {
            virReportError(VIR_ERR_INVALID_ARG,
                           _("Invalid uid \"%s\" in DAC label \"%s\""),
                           owner, label);
            goto cleanup;
        }
    } else {
        if (virGetUserID(owner, &theuid) < 0 &&
            virStrToLong_ui(owner, NULL, 10, &theuid) < 0) {
            virReportError(VIR_ERR_INVALID_ARG,
                           _("Invalid owner \"%s\" in DAC label \"%s\""),
                           owner, label);
            goto cleanup;
        }
113 114
    }

115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
    /* Parse group */
    if (*group == '+') {
        if (virStrToLong_ui(++group, NULL, 10, &thegid) < 0) {
            virReportError(VIR_ERR_INVALID_ARG,
                           _("Invalid gid \"%s\" in DAC label \"%s\""),
                           group, label);
            goto cleanup;
        }
    } else {
        if (virGetGroupID(group, &thegid) < 0 &&
            virStrToLong_ui(group, NULL, 10, &thegid) < 0) {
            virReportError(VIR_ERR_INVALID_ARG,
                           _("Invalid group \"%s\" in DAC label \"%s\""),
                           group, label);
            goto cleanup;
        }
    }
132 133

    if (uidPtr)
134
        *uidPtr = theuid;
135
    if (gidPtr)
136
        *gidPtr = thegid;
137 138 139 140 141 142 143

    rc = 0;

cleanup:
    VIR_FREE(tmp_label);

    return rc;
144 145
}

146
/* returns 1 if label isn't found, 0 on success, -1 on error */
147 148 149 150 151 152 153 154
static
int virSecurityDACParseIds(virDomainDefPtr def, uid_t *uidPtr, gid_t *gidPtr)
{
    uid_t uid;
    gid_t gid;
    virSecurityLabelDefPtr seclabel;

    if (def == NULL)
155
        return 1;
156 157

    seclabel = virDomainDefGetSecurityLabelDef(def, SECURITY_DAC_NAME);
158
    if (seclabel == NULL || seclabel->label == NULL) {
159 160
        VIR_DEBUG("DAC seclabel for domain '%s' wasn't found", def->name);
        return 1;
161 162
    }

163
    if (parseIds(seclabel->label, &uid, &gid) < 0)
164 165 166 167 168 169 170 171 172 173 174 175 176 177
        return -1;

    if (uidPtr)
        *uidPtr = uid;
    if (gidPtr)
        *gidPtr = gid;

    return 0;
}

static
int virSecurityDACGetIds(virDomainDefPtr def, virSecurityDACDataPtr priv,
                         uid_t *uidPtr, gid_t *gidPtr)
{
178 179 180 181 182 183 184
    int ret;

    if (!def && !priv) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Failed to determine default DAC seclabel "
                         "for an unknown object"));
        return -1;
185
    }
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202

    if ((ret = virSecurityDACParseIds(def, uidPtr, gidPtr)) <= 0)
        return ret;

    if (!priv) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("DAC seclabel couldn't be determined "
                         "for domain '%s'"), def->name);
        return -1;
    }

    if (uidPtr)
        *uidPtr = priv->user;
    if (gidPtr)
        *gidPtr = priv->group;

    return 0;
203 204
}

205 206

/* returns 1 if label isn't found, 0 on success, -1 on error */
207 208 209 210 211 212 213 214 215
static
int virSecurityDACParseImageIds(virDomainDefPtr def,
                                uid_t *uidPtr, gid_t *gidPtr)
{
    uid_t uid;
    gid_t gid;
    virSecurityLabelDefPtr seclabel;

    if (def == NULL)
216
        return 1;
217 218

    seclabel = virDomainDefGetSecurityLabelDef(def, SECURITY_DAC_NAME);
219
    if (seclabel == NULL || seclabel->imagelabel == NULL) {
220 221
        VIR_DEBUG("DAC imagelabel for domain '%s' wasn't found", def->name);
        return 1;
222 223
    }

224
    if (parseIds(seclabel->imagelabel, &uid, &gid) < 0)
225 226 227 228 229 230 231 232 233 234 235 236 237 238
        return -1;

    if (uidPtr)
        *uidPtr = uid;
    if (gidPtr)
        *gidPtr = gid;

    return 0;
}

static
int virSecurityDACGetImageIds(virDomainDefPtr def, virSecurityDACDataPtr priv,
                         uid_t *uidPtr, gid_t *gidPtr)
{
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
    int ret;

    if (!def && !priv) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Failed to determine default DAC imagelabel "
                         "for an unknown object"));
        return -1;
    }

    if ((ret = virSecurityDACParseImageIds(def, uidPtr, gidPtr)) <= 0)
        return ret;

    if (!priv) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("DAC imagelabel couldn't be determined "
                         "for domain '%s'"), def->name);
        return -1;
256
    }
257 258 259 260 261 262 263

    if (uidPtr)
        *uidPtr = priv->user;
    if (gidPtr)
        *gidPtr = priv->group;

    return 0;
264 265 266
}


267
static virSecurityDriverStatus
268
virSecurityDACProbe(const char *virtDriver ATTRIBUTE_UNUSED)
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
{
    return SECURITY_DRIVER_ENABLE;
}

static int
virSecurityDACOpen(virSecurityManagerPtr mgr ATTRIBUTE_UNUSED)
{
    return 0;
}

static int
virSecurityDACClose(virSecurityManagerPtr mgr ATTRIBUTE_UNUSED)
{
    return 0;
}


static const char * virSecurityDACGetModel(virSecurityManagerPtr mgr ATTRIBUTE_UNUSED)
{
288
    return SECURITY_DAC_NAME;
289 290 291 292 293 294 295 296
}

static const char * virSecurityDACGetDOI(virSecurityManagerPtr mgr ATTRIBUTE_UNUSED)
{
    return "0";
}

static int
297
virSecurityDACSetOwnership(const char *path, uid_t uid, gid_t gid)
298
{
299 300
    VIR_INFO("Setting DAC user and group on '%s' to '%ld:%ld'",
             path, (long) uid, (long) gid);
301 302 303 304 305 306 307 308 309 310 311 312 313

    if (chown(path, uid, gid) < 0) {
        struct stat sb;
        int chown_errno = errno;

        if (stat(path, &sb) >= 0) {
            if (sb.st_uid == uid &&
                sb.st_gid == gid) {
                /* It's alright, there's nothing to change anyway. */
                return 0;
            }
        }

314
        if (chown_errno == EOPNOTSUPP || chown_errno == EINVAL) {
315 316 317
            VIR_INFO("Setting user and group to '%ld:%ld' on '%s' not "
                     "supported by filesystem",
                     (long) uid, (long) gid, path);
318
        } else if (chown_errno == EPERM) {
319 320 321
            VIR_INFO("Setting user and group to '%ld:%ld' on '%s' not "
                     "permitted",
                     (long) uid, (long) gid, path);
322
        } else if (chown_errno == EROFS) {
323 324 325
            VIR_INFO("Setting user and group to '%ld:%ld' on '%s' not "
                     "possible on readonly filesystem",
                     (long) uid, (long) gid, path);
326 327
        } else {
            virReportSystemError(chown_errno,
328 329 330
                                 _("unable to set user and group to '%ld:%ld' "
                                   "on '%s'"),
                                 (long) uid, (long) gid, path);
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
            return -1;
        }
    }
    return 0;
}

static int
virSecurityDACRestoreSecurityFileLabel(const char *path)
{
    struct stat buf;
    int rc = -1;
    char *newpath = NULL;

    VIR_INFO("Restoring DAC user and group on '%s'", path);

    if (virFileResolveLink(path, &newpath) < 0) {
        virReportSystemError(errno,
                             _("cannot resolve symlink %s"), path);
        goto err;
    }

    if (stat(newpath, &buf) != 0)
        goto err;

    /* XXX record previous ownership */
    rc = virSecurityDACSetOwnership(newpath, 0, 0);

err:
    VIR_FREE(newpath);
    return rc;
}


static int
virSecurityDACSetSecurityFileLabel(virDomainDiskDefPtr disk ATTRIBUTE_UNUSED,
                                   const char *path,
                                   size_t depth ATTRIBUTE_UNUSED,
                                   void *opaque)
{
370 371 372
    void **params = opaque;
    virSecurityManagerPtr mgr = params[0];
    virDomainDefPtr def = params[1];
373
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);
374 375 376 377 378
    uid_t user;
    gid_t group;

    if (virSecurityDACGetImageIds(def, priv, &user, &group))
        return -1;
379

380
    return virSecurityDACSetOwnership(path, user, group);
381 382 383 384 385
}


static int
virSecurityDACSetSecurityImageLabel(virSecurityManagerPtr mgr,
386
                                    virDomainDefPtr def ATTRIBUTE_UNUSED,
387 388 389
                                    virDomainDiskDefPtr disk)

{
390 391 392
    uid_t user;
    gid_t group;
    void *params[2];
393 394 395 396 397
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);

    if (!priv->dynamicOwnership)
        return 0;

398 399 400
    if (disk->type == VIR_DOMAIN_DISK_TYPE_NETWORK)
        return 0;

401 402 403 404 405
    if (virSecurityDACGetImageIds(def, priv, &user, &group))
        return -1;

    params[0] = mgr;
    params[1] = def;
406 407 408
    return virDomainDiskDefForeachPath(disk,
                                       virSecurityManagerGetAllowDiskFormatProbing(mgr),
                                       false,
409
                                       user, group,
410
                                       virSecurityDACSetSecurityFileLabel,
411
                                       params);
412 413 414 415 416
}


static int
virSecurityDACRestoreSecurityImageLabelInt(virSecurityManagerPtr mgr,
417
                                           virDomainDefPtr def ATTRIBUTE_UNUSED,
418 419 420 421 422 423 424 425
                                           virDomainDiskDefPtr disk,
                                           int migrated)
{
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);

    if (!priv->dynamicOwnership)
        return 0;

426 427 428
    if (disk->type == VIR_DOMAIN_DISK_TYPE_NETWORK)
        return 0;

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
    /* Don't restore labels on readoly/shared disks, because
     * other VMs may still be accessing these
     * Alternatively we could iterate over all running
     * domains and try to figure out if it is in use, but
     * this would not work for clustered filesystems, since
     * we can't see running VMs using the file on other nodes
     * Safest bet is thus to skip the restore step.
     */
    if (disk->readonly || disk->shared)
        return 0;

    if (!disk->src)
        return 0;

    /* If we have a shared FS & doing migrated, we must not
     * change ownership, because that kills access on the
     * destination host which is sub-optimal for the guest
     * VM's I/O attempts :-)
     */
    if (migrated) {
        int rc = virStorageFileIsSharedFS(disk->src);
        if (rc < 0)
            return -1;
        if (rc == 1) {
            VIR_DEBUG("Skipping image label restore on %s because FS is shared",
                      disk->src);
            return 0;
        }
    }

    return virSecurityDACRestoreSecurityFileLabel(disk->src);
}


static int
virSecurityDACRestoreSecurityImageLabel(virSecurityManagerPtr mgr,
465
                                        virDomainDefPtr def,
466 467
                                        virDomainDiskDefPtr disk)
{
468
    return virSecurityDACRestoreSecurityImageLabelInt(mgr, def, disk, 0);
469 470 471 472 473 474 475 476
}


static int
virSecurityDACSetSecurityPCILabel(pciDevice *dev ATTRIBUTE_UNUSED,
                                  const char *file,
                                  void *opaque)
{
477 478 479
    void **params = opaque;
    virSecurityManagerPtr mgr = params[0];
    virDomainDefPtr def = params[1];
480
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);
481 482
    uid_t user;
    gid_t group;
483

484 485 486 487
    if (virSecurityDACGetIds(def, priv, &user, &group))
        return -1;

    return virSecurityDACSetOwnership(file, user, group);
488 489 490 491 492 493 494 495
}


static int
virSecurityDACSetSecurityUSBLabel(usbDevice *dev ATTRIBUTE_UNUSED,
                                  const char *file,
                                  void *opaque)
{
496 497 498
    void **params = opaque;
    virSecurityManagerPtr mgr = params[0];
    virDomainDefPtr def = params[1];
499
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);
500 501
    uid_t user;
    gid_t group;
502

503 504 505 506
    if (virSecurityDACGetIds(def, priv, &user, &group))
        return -1;

    return virSecurityDACSetOwnership(file, user, group);
507 508 509 510 511
}


static int
virSecurityDACSetSecurityHostdevLabel(virSecurityManagerPtr mgr,
512
                                      virDomainDefPtr def,
513 514
                                      virDomainHostdevDefPtr dev)
{
515
    void *params[] = {mgr, def};
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);
    int ret = -1;

    if (!priv->dynamicOwnership)
        return 0;

    if (dev->mode != VIR_DOMAIN_HOSTDEV_MODE_SUBSYS)
        return 0;

    switch (dev->source.subsys.type) {
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB: {
        usbDevice *usb = usbGetDevice(dev->source.subsys.u.usb.bus,
                                      dev->source.subsys.u.usb.device);

        if (!usb)
            goto done;

533 534
        ret = usbDeviceFileIterate(usb, virSecurityDACSetSecurityUSBLabel,
                                   params);
535 536 537 538 539 540 541 542 543 544 545 546 547
        usbFreeDevice(usb);
        break;
    }

    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI: {
        pciDevice *pci = pciGetDevice(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)
            goto done;

548 549
        ret = pciDeviceFileIterate(pci, virSecurityDACSetSecurityPCILabel,
                                   params);
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
        pciFreeDevice(pci);

        break;
    }

    default:
        ret = 0;
        break;
    }

done:
    return ret;
}


static int
virSecurityDACRestoreSecurityPCILabel(pciDevice *dev ATTRIBUTE_UNUSED,
                                      const char *file,
                                      void *opaque ATTRIBUTE_UNUSED)
{
    return virSecurityDACRestoreSecurityFileLabel(file);
}


static int
virSecurityDACRestoreSecurityUSBLabel(usbDevice *dev ATTRIBUTE_UNUSED,
                                       const char *file,
                                       void *opaque ATTRIBUTE_UNUSED)
{
    return virSecurityDACRestoreSecurityFileLabel(file);
}


static int
virSecurityDACRestoreSecurityHostdevLabel(virSecurityManagerPtr mgr,
585
                                           virDomainDefPtr def ATTRIBUTE_UNUSED,
586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
                                           virDomainHostdevDefPtr dev)

{
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);
    int ret = -1;

    if (!priv->dynamicOwnership)
        return 0;

    if (dev->mode != VIR_DOMAIN_HOSTDEV_MODE_SUBSYS)
        return 0;

    switch (dev->source.subsys.type) {
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB: {
        usbDevice *usb = usbGetDevice(dev->source.subsys.u.usb.bus,
                                      dev->source.subsys.u.usb.device);

        if (!usb)
            goto done;

        ret = usbDeviceFileIterate(usb, virSecurityDACRestoreSecurityUSBLabel, mgr);
        usbFreeDevice(usb);

        break;
    }

    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI: {
        pciDevice *pci = pciGetDevice(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)
            goto done;

        ret = pciDeviceFileIterate(pci, virSecurityDACRestoreSecurityPCILabel, mgr);
        pciFreeDevice(pci);

        break;
    }

    default:
        ret = 0;
        break;
    }

done:
    return ret;
}


static int
virSecurityDACSetChardevLabel(virSecurityManagerPtr mgr,
639
                              virDomainDefPtr def,
640
                              virDomainChrSourceDefPtr dev)
641 642 643 644 645

{
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);
    char *in = NULL, *out = NULL;
    int ret = -1;
646 647 648 649 650
    uid_t user;
    gid_t group;

    if (virSecurityDACGetIds(def, priv, &user, &group))
        return -1;
651 652 653 654

    switch (dev->type) {
    case VIR_DOMAIN_CHR_TYPE_DEV:
    case VIR_DOMAIN_CHR_TYPE_FILE:
655
        ret = virSecurityDACSetOwnership(dev->data.file.path, user, group);
656 657 658
        break;

    case VIR_DOMAIN_CHR_TYPE_PIPE:
659 660 661 662 663 664
        if ((virAsprintf(&in, "%s.in", dev->data.file.path) < 0) ||
            (virAsprintf(&out, "%s.out", dev->data.file.path) < 0)) {
            virReportOOMError();
            goto done;
        }
        if (virFileExists(in) && virFileExists(out)) {
665 666
            if ((virSecurityDACSetOwnership(in, user, group) < 0) ||
                (virSecurityDACSetOwnership(out, user, group) < 0)) {
667
                goto done;
668 669
            }
        } else if (virSecurityDACSetOwnership(dev->data.file.path,
670
                                              user, group) < 0) {
671
            goto done;
672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
        }
        ret = 0;
        break;

    default:
        ret = 0;
        break;
    }

done:
    VIR_FREE(in);
    VIR_FREE(out);
    return ret;
}

static int
virSecurityDACRestoreChardevLabel(virSecurityManagerPtr mgr ATTRIBUTE_UNUSED,
689
                                  virDomainChrSourceDefPtr dev)
690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
{
    char *in = NULL, *out = NULL;
    int ret = -1;

    switch (dev->type) {
    case VIR_DOMAIN_CHR_TYPE_DEV:
    case VIR_DOMAIN_CHR_TYPE_FILE:
        ret = virSecurityDACRestoreSecurityFileLabel(dev->data.file.path);
        break;

    case VIR_DOMAIN_CHR_TYPE_PIPE:
        if ((virAsprintf(&out, "%s.out", dev->data.file.path) < 0) ||
            (virAsprintf(&in, "%s.in", dev->data.file.path) < 0)) {
            virReportOOMError();
            goto done;
        }
706 707 708
        if (virFileExists(in) && virFileExists(out)) {
            if ((virSecurityDACRestoreSecurityFileLabel(out) < 0) ||
                (virSecurityDACRestoreSecurityFileLabel(in) < 0)) {
709
            goto done;
710 711 712 713
            }
        } else if (virSecurityDACRestoreSecurityFileLabel(dev->data.file.path) < 0) {
            goto done;
        }
714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
        ret = 0;
        break;

    default:
        ret = 0;
        break;
    }

done:
    VIR_FREE(in);
    VIR_FREE(out);
    return ret;
}


static int
virSecurityDACRestoreChardevCallback(virDomainDefPtr def ATTRIBUTE_UNUSED,
                                     virDomainChrDefPtr dev,
                                     void *opaque)
{
    virSecurityManagerPtr mgr = opaque;

736
    return virSecurityDACRestoreChardevLabel(mgr, &dev->source);
737 738 739 740 741
}


static int
virSecurityDACRestoreSecurityAllLabel(virSecurityManagerPtr mgr,
742
                                      virDomainDefPtr def,
743 744 745 746 747 748 749 750 751 752 753
                                      int migrated)
{
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);
    int i;
    int rc = 0;

    if (!priv->dynamicOwnership)
        return 0;


    VIR_DEBUG("Restoring security label on %s migrated=%d",
754
              def->name, migrated);
755

756
    for (i = 0 ; i < def->nhostdevs ; i++) {
757
        if (virSecurityDACRestoreSecurityHostdevLabel(mgr,
758 759
                                                      def,
                                                      def->hostdevs[i]) < 0)
760 761
            rc = -1;
    }
762
    for (i = 0 ; i < def->ndisks ; i++) {
763
        if (virSecurityDACRestoreSecurityImageLabelInt(mgr,
764 765
                                                       def,
                                                       def->disks[i],
766 767 768 769
                                                       migrated) < 0)
            rc = -1;
    }

770
    if (virDomainChrDefForeach(def,
771 772
                               false,
                               virSecurityDACRestoreChardevCallback,
773
                               mgr) < 0)
774 775
        rc = -1;

776 777
    if (def->os.kernel &&
        virSecurityDACRestoreSecurityFileLabel(def->os.kernel) < 0)
778 779
        rc = -1;

780 781
    if (def->os.initrd &&
        virSecurityDACRestoreSecurityFileLabel(def->os.initrd) < 0)
782 783 784 785 786 787 788 789 790 791 792 793 794
        rc = -1;

    return rc;
}


static int
virSecurityDACSetChardevCallback(virDomainDefPtr def ATTRIBUTE_UNUSED,
                                 virDomainChrDefPtr dev,
                                 void *opaque)
{
    virSecurityManagerPtr mgr = opaque;

795
    return virSecurityDACSetChardevLabel(mgr, def, &dev->source);
796 797 798 799 800
}


static int
virSecurityDACSetSecurityAllLabel(virSecurityManagerPtr mgr,
801
                                  virDomainDefPtr def,
802 803 804 805
                                  const char *stdin_path ATTRIBUTE_UNUSED)
{
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);
    int i;
806 807
    uid_t user;
    gid_t group;
808 809 810 811

    if (!priv->dynamicOwnership)
        return 0;

812
    for (i = 0 ; i < def->ndisks ; i++) {
813
        /* XXX fixme - we need to recursively label the entire tree :-( */
814
        if (def->disks[i]->type == VIR_DOMAIN_DISK_TYPE_DIR)
815 816
            continue;
        if (virSecurityDACSetSecurityImageLabel(mgr,
817 818
                                                def,
                                                def->disks[i]) < 0)
819 820
            return -1;
    }
821
    for (i = 0 ; i < def->nhostdevs ; i++) {
822
        if (virSecurityDACSetSecurityHostdevLabel(mgr,
823 824
                                                  def,
                                                  def->hostdevs[i]) < 0)
825 826 827
            return -1;
    }

828
    if (virDomainChrDefForeach(def,
829 830
                               true,
                               virSecurityDACSetChardevCallback,
831
                               mgr) < 0)
832 833
        return -1;

834 835 836
    if (virSecurityDACGetImageIds(def, priv, &user, &group))
        return -1;

837
    if (def->os.kernel &&
838
        virSecurityDACSetOwnership(def->os.kernel, user, group) < 0)
839 840
        return -1;

841
    if (def->os.initrd &&
842
        virSecurityDACSetOwnership(def->os.initrd, user, group) < 0)
843 844 845 846 847 848 849 850
        return -1;

    return 0;
}


static int
virSecurityDACSetSavedStateLabel(virSecurityManagerPtr mgr,
851
                                 virDomainDefPtr def,
852 853
                                 const char *savefile)
{
854 855
    uid_t user;
    gid_t group;
856 857
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);

858 859 860 861
    if (virSecurityDACGetImageIds(def, priv, &user, &group))
        return -1;

    return virSecurityDACSetOwnership(savefile, user, group);
862 863 864 865 866
}


static int
virSecurityDACRestoreSavedStateLabel(virSecurityManagerPtr mgr,
867
                                     virDomainDefPtr def ATTRIBUTE_UNUSED,
868 869 870 871 872 873 874 875 876 877 878 879 880
                                     const char *savefile)
{
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);

    if (!priv->dynamicOwnership)
        return 0;

    return virSecurityDACRestoreSecurityFileLabel(savefile);
}


static int
virSecurityDACSetProcessLabel(virSecurityManagerPtr mgr,
881
                              virDomainDefPtr def ATTRIBUTE_UNUSED)
882
{
883 884
    uid_t user;
    gid_t group;
885 886
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);

887 888 889 890
    if (virSecurityDACGetIds(def, priv, &user, &group))
        return -1;

    VIR_DEBUG("Dropping privileges of DEF to %u:%u", user, group);
891

892
    if (virSetUIDGID(user, group) < 0)
893 894 895 896 897 898 899 900 901 902 903 904 905 906
        return -1;

    return 0;
}


static int
virSecurityDACVerify(virSecurityManagerPtr mgr ATTRIBUTE_UNUSED,
                     virDomainDefPtr def ATTRIBUTE_UNUSED)
{
    return 0;
}

static int
907 908
virSecurityDACGenLabel(virSecurityManagerPtr mgr,
                       virDomainDefPtr def)
909
{
910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
    int rc = -1;
    virSecurityLabelDefPtr seclabel;
    virSecurityDACDataPtr priv = virSecurityManagerGetPrivateData(mgr);

    if (mgr == NULL) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("invalid security driver"));
        return rc;
    }

    seclabel = virDomainDefGetSecurityLabelDef(def, SECURITY_DAC_NAME);
    if (seclabel == NULL) {
        return rc;
    }

    if (seclabel->imagelabel) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("security image label already "
                         "defined for VM"));
        return rc;
    }

    if (seclabel->model
        && STRNEQ(seclabel->model, SECURITY_DAC_NAME)) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("security label model %s is not supported "
                         "with selinux"),
                       seclabel->model);
            return rc;
    }

    switch(seclabel->type) {
    case VIR_DOMAIN_SECLABEL_STATIC:
        if (seclabel->label == NULL) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("missing label for static security "
                             "driver in domain %s"), def->name);
            return rc;
        }
        break;
    case VIR_DOMAIN_SECLABEL_DYNAMIC:
        if (virAsprintf(&seclabel->label, "%d:%d", priv->user, priv->group) < 0) {
            virReportOOMError();
            return rc;
        }
        if (seclabel->label == NULL) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot generate dac user and group id "
                             "for domain %s"), def->name);
            return rc;
        }
        break;
    case VIR_DOMAIN_SECLABEL_NONE:
        /* no op */
964
        return 0;
965 966 967 968 969 970 971 972
    default:
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unexpected security label type '%s'"),
                       virDomainSeclabelTypeToString(seclabel->type));
        return rc;
    }

    if (!seclabel->norelabel) {
973
        if (seclabel->imagelabel == NULL && seclabel->label != NULL) {
974 975 976 977 978 979 980 981 982 983 984 985
            seclabel->imagelabel = strdup(seclabel->label);
            if (seclabel->imagelabel == NULL) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot generate dac user and group id "
                                 "for domain %s"), def->name);
                VIR_FREE(seclabel->label);
                seclabel->label = NULL;
                return rc;
            }
        }
    }

986 987 988 989 990
    return 0;
}

static int
virSecurityDACReleaseLabel(virSecurityManagerPtr mgr ATTRIBUTE_UNUSED,
991
                           virDomainDefPtr def ATTRIBUTE_UNUSED)
992 993 994 995 996 997
{
    return 0;
}

static int
virSecurityDACReserveLabel(virSecurityManagerPtr mgr ATTRIBUTE_UNUSED,
998 999
                           virDomainDefPtr def ATTRIBUTE_UNUSED,
                           pid_t pid ATTRIBUTE_UNUSED)
1000 1001 1002 1003 1004 1005
{
    return 0;
}

static int
virSecurityDACGetProcessLabel(virSecurityManagerPtr mgr ATTRIBUTE_UNUSED,
1006 1007
                              virDomainDefPtr def ATTRIBUTE_UNUSED,
                              pid_t pid ATTRIBUTE_UNUSED,
1008 1009
                              virSecurityLabelPtr seclabel ATTRIBUTE_UNUSED)
{
1010 1011 1012 1013 1014 1015 1016 1017 1018
    virSecurityLabelDefPtr secdef =
        virDomainDefGetSecurityLabelDef(def, SECURITY_DAC_NAME);

    if (!secdef || !seclabel)
        return -1;

    if (secdef->label)
        strcpy(seclabel->label, secdef->label);

1019 1020 1021 1022
    return 0;
}

static int
1023
virSecurityDACSetDaemonSocketLabel(virSecurityManagerPtr mgr ATTRIBUTE_UNUSED,
1024
                                   virDomainDefPtr vm ATTRIBUTE_UNUSED)
1025 1026 1027 1028 1029
{
    return 0;
}


1030 1031
static int
virSecurityDACSetSocketLabel(virSecurityManagerPtr mgr ATTRIBUTE_UNUSED,
1032
                             virDomainDefPtr def ATTRIBUTE_UNUSED)
1033 1034 1035 1036 1037
{
    return 0;
}


1038 1039
static int
virSecurityDACClearSocketLabel(virSecurityManagerPtr mgr ATTRIBUTE_UNUSED,
1040
                               virDomainDefPtr def ATTRIBUTE_UNUSED)
1041 1042 1043 1044
{
    return 0;
}

1045
static int
1046
virSecurityDACSetImageFDLabel(virSecurityManagerPtr mgr ATTRIBUTE_UNUSED,
1047
                              virDomainDefPtr def ATTRIBUTE_UNUSED,
1048
                              int fd ATTRIBUTE_UNUSED)
1049 1050 1051 1052
{
    return 0;
}

1053 1054 1055 1056 1057
static char *virSecurityDACGetMountOptions(virSecurityManagerPtr mgr ATTRIBUTE_UNUSED,
                                           virDomainDefPtr vm ATTRIBUTE_UNUSED) {
    return NULL;
}

1058
virSecurityDriver virSecurityDriverDAC = {
1059
    .privateDataLen                     = sizeof(virSecurityDACData),
1060
    .name                               = SECURITY_DAC_NAME,
1061 1062 1063
    .probe                              = virSecurityDACProbe,
    .open                               = virSecurityDACOpen,
    .close                              = virSecurityDACClose,
1064

1065 1066
    .getModel                           = virSecurityDACGetModel,
    .getDOI                             = virSecurityDACGetDOI,
1067

1068
    .domainSecurityVerify               = virSecurityDACVerify,
1069

1070 1071
    .domainSetSecurityImageLabel        = virSecurityDACSetSecurityImageLabel,
    .domainRestoreSecurityImageLabel    = virSecurityDACRestoreSecurityImageLabel,
1072

1073 1074 1075
    .domainSetSecurityDaemonSocketLabel = virSecurityDACSetDaemonSocketLabel,
    .domainSetSecuritySocketLabel       = virSecurityDACSetSocketLabel,
    .domainClearSecuritySocketLabel     = virSecurityDACClearSocketLabel,
1076

1077 1078 1079
    .domainGenSecurityLabel             = virSecurityDACGenLabel,
    .domainReserveSecurityLabel         = virSecurityDACReserveLabel,
    .domainReleaseSecurityLabel         = virSecurityDACReleaseLabel,
1080

1081 1082
    .domainGetSecurityProcessLabel      = virSecurityDACGetProcessLabel,
    .domainSetSecurityProcessLabel      = virSecurityDACSetProcessLabel,
1083

1084 1085
    .domainSetSecurityAllLabel          = virSecurityDACSetSecurityAllLabel,
    .domainRestoreSecurityAllLabel      = virSecurityDACRestoreSecurityAllLabel,
1086

1087 1088
    .domainSetSecurityHostdevLabel      = virSecurityDACSetSecurityHostdevLabel,
    .domainRestoreSecurityHostdevLabel  = virSecurityDACRestoreSecurityHostdevLabel,
1089

1090 1091
    .domainSetSavedStateLabel           = virSecurityDACSetSavedStateLabel,
    .domainRestoreSavedStateLabel       = virSecurityDACRestoreSavedStateLabel,
1092

1093
    .domainSetSecurityImageFDLabel      = virSecurityDACSetImageFDLabel,
1094

1095
    .domainGetSecurityMountOptions      = virSecurityDACGetMountOptions,
1096
};