virsystemd.c 14.4 KB
Newer Older
1 2 3
/*
 * virsystemd.c: helpers for using systemd APIs
 *
4
 * Copyright (C) 2013, 2014 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library.  If not, see
 * <http://www.gnu.org/licenses/>.
 *
 */

#include <config.h>

24 25 26 27
#ifdef WITH_SYSTEMD_DAEMON
# include <systemd/sd-daemon.h>
#endif

28
#include "virsystemd.h"
29
#include "viratomic.h"
30 31 32 33
#include "virdbus.h"
#include "virstring.h"
#include "viralloc.h"
#include "virutil.h"
34
#include "virlog.h"
35
#include "virerror.h"
36 37 38

#define VIR_FROM_THIS VIR_FROM_SYSTEMD

39
VIR_LOG_INIT("util.systemd");
40

41 42 43 44 45 46 47 48
/**
 * virSystemdEscapeName:
 *
 * This function escapes various characters in @name and appends that
 * escaped string to @buf, in order to comply with the requirements
 * from systemd/machined.  Parameter @full_escape decides whether to
 * also escape dot as a first character and '-'.
 */
49
static void virSystemdEscapeName(virBufferPtr buf,
50 51
                                 const char *name,
                                 bool full_escape)
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
{
    static const char hextable[16] = "0123456789abcdef";

#define ESCAPE(c)                                                       \
    do {                                                                \
        virBufferAddChar(buf, '\\');                                    \
        virBufferAddChar(buf, 'x');                                     \
        virBufferAddChar(buf, hextable[(c >> 4) & 15]);                 \
        virBufferAddChar(buf, hextable[c & 15]);                        \
    } while (0)

#define VALID_CHARS                             \
        "0123456789"                            \
        "abcdefghijklmnopqrstuvwxyz"            \
        "ABCDEFGHIJKLMNOPQRSTUVWXYZ"            \
        ":-_.\\"

69
    if (full_escape && *name == '.') {
70 71 72 73 74 75 76
        ESCAPE(*name);
        name++;
    }

    while (*name) {
        if (*name == '/')
            virBufferAddChar(buf, '-');
77
        else if ((full_escape && *name == '-') ||
78 79 80 81 82 83 84 85 86 87 88 89 90 91
                 *name == '\\' ||
                 !strchr(VALID_CHARS, *name))
            ESCAPE(*name);
        else
            virBufferAddChar(buf, *name);
        name++;
    }

#undef ESCAPE
#undef VALID_CHARS
}


char *virSystemdMakeScopeName(const char *name,
92
                              const char *drivername)
93 94 95
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

96
    virBufferAddLit(&buf, "machine-");
97
    virSystemdEscapeName(&buf, drivername, true);
98
    virBufferAddLit(&buf, "\\x2d");
99
    virSystemdEscapeName(&buf, name, true);
100 101
    virBufferAddLit(&buf, ".scope");

102
    if (virBufferCheckError(&buf) < 0)
103 104 105 106 107 108 109 110 111 112 113 114 115
        return NULL;

    return virBufferContentAndReset(&buf);
}


char *virSystemdMakeSliceName(const char *partition)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (*partition == '/')
        partition++;

116
    virSystemdEscapeName(&buf, partition, true);
117 118
    virBufferAddLit(&buf, ".slice");

119
    if (virBufferCheckError(&buf) < 0)
120 121 122 123 124
        return NULL;

    return virBufferContentAndReset(&buf);
}

125 126 127 128 129 130
char *virSystemdMakeMachineName(const char *name,
                                const char *drivername,
                                bool privileged)
{
    char *machinename = NULL;
    char *username = NULL;
131 132
    virBuffer buf = VIR_BUFFER_INITIALIZER;

133
    if (privileged) {
134
        virBufferAsprintf(&buf, "%s-", drivername);
135 136 137
    } else {
        if (!(username = virGetUserName(geteuid())))
            goto cleanup;
138 139

        virBufferAsprintf(&buf, "%s-%s-", username, drivername);
140 141
    }

142
    virSystemdEscapeName(&buf, name, false);
143 144

    machinename = virBufferContentAndReset(&buf);
145
 cleanup:
146 147 148 149
    VIR_FREE(username);

    return machinename;
}
150

151 152 153 154 155 156 157 158
/**
 * virSystemdCreateMachine:
 * @name: driver unique name of the machine
 * @drivername: name of the virt driver
 * @privileged: whether driver is running privileged or per user
 * @uuid: globally unique UUID of the machine
 * @rootdir: root directory of machine filesystem
 * @pidleader: PID of the leader process
159 160 161 162
 * @iscontainer: true if a container, false if a VM
 * @nnicindexes: number of network interface indexes in list
 * @nicindexes: list of network interface indexes
 * @partition: name of the slice to place the machine in
163 164
 *
 * Returns 0 on success, -1 on fatal error, or -2 if systemd-machine is not available
165 166 167 168 169 170 171 172
 */
int virSystemdCreateMachine(const char *name,
                            const char *drivername,
                            bool privileged,
                            const unsigned char *uuid,
                            const char *rootdir,
                            pid_t pidleader,
                            bool iscontainer,
173 174
                            size_t nnicindexes,
                            int *nicindexes,
175 176
                            const char *partition)
{
177
    int ret;
178 179 180 181
    DBusConnection *conn;
    char *machinename = NULL;
    char *creatorname = NULL;
    char *slicename = NULL;
182
    static int hasCreateWithNetwork = 1;
183

184 185 186
    ret = virDBusIsServiceEnabled("org.freedesktop.machine1");
    if (ret < 0)
        return ret;
187

188 189 190
    if ((ret = virDBusIsServiceRegistered("org.freedesktop.systemd1")) < 0)
        return ret;

191 192
    if (!(conn = virDBusGetSystemBus()))
        return -1;
193

194
    ret = -1;
195 196
    if (!(machinename = virSystemdMakeMachineName(name, drivername, privileged)))
        goto cleanup;
197 198 199 200 201

    if (virAsprintf(&creatorname, "libvirt-%s", drivername) < 0)
        goto cleanup;

    if (partition) {
202 203
        if (!(slicename = virSystemdMakeSliceName(partition)))
             goto cleanup;
204 205 206 207 208 209
    } else {
        if (VIR_STRDUP(slicename, "") < 0)
            goto cleanup;
    }

    /*
210 211 212 213 214 215 216 217 218 219 220 221
     * The systemd DBus APIs we're invoking have the
     * following signature(s)
     *
     * CreateMachineWithNetwork(in  s name,
     *                          in  ay id,
     *                          in  s service,
     *                          in  s class,
     *                          in  u leader,
     *                          in  s root_directory,
     *                          in  ai nicindexes
     *                          in  a(sv) scope_properties,
     *                          out o path);
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
     *
     * CreateMachine(in  s name,
     *               in  ay id,
     *               in  s service,
     *               in  s class,
     *               in  u leader,
     *               in  s root_directory,
     *               in  a(sv) scope_properties,
     *               out o path);
     *
     * @name a host unique name for the machine. shows up
     * in 'ps' listing & similar
     *
     * @id: a UUID of the machine, ideally matching /etc/machine-id
     * for containers
     *
     * @service: identifier of the client ie "libvirt-lxc"
     *
     * @class: either the string "container" or "vm" depending
     * on the type of machine
     *
     * @leader: main PID of the machine, either the host emulator
     * process, or the 'init' PID of the container
     *
     * @root_directory: the root directory of the container, if
     * this is known & visible in the host filesystem, or empty string
     *
249 250 251
     * @nicindexes: list of network interface indexes for the
     * host end of the VETH device pairs.
     *
252 253 254 255 256 257
     * @scope_properties:an array (not a dict!) of properties that are
     * passed on to PID 1 when creating a scope unit for your machine.
     * Will allow initial settings for the cgroup & similar.
     *
     * @path: a bus path returned for the machine object created, to
     * allow further API calls to be made against the object.
258
     *
259 260
     */

261
    VIR_DEBUG("Attempting to create machine via systemd");
262
    if (virAtomicIntGet(&hasCreateWithNetwork)) {
263 264
        virError error;
        memset(&error, 0, sizeof(error));
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290

        if (virDBusCallMethod(conn,
                              NULL,
                              &error,
                              "org.freedesktop.machine1",
                              "/org/freedesktop/machine1",
                              "org.freedesktop.machine1.Manager",
                              "CreateMachineWithNetwork",
                              "sayssusa&ia(sv)",
                              machinename,
                              16,
                              uuid[0], uuid[1], uuid[2], uuid[3],
                              uuid[4], uuid[5], uuid[6], uuid[7],
                              uuid[8], uuid[9], uuid[10], uuid[11],
                              uuid[12], uuid[13], uuid[14], uuid[15],
                              creatorname,
                              iscontainer ? "container" : "vm",
                              (unsigned int)pidleader,
                              rootdir ? rootdir : "",
                              nnicindexes, nicindexes,
                              3,
                              "Slice", "s", slicename,
                              "After", "as", 1, "libvirtd.service",
                              "Before", "as", 1, "libvirt-guests.service") < 0)
            goto cleanup;

291
        if (error.level == VIR_ERR_ERROR) {
292
            if (virDBusErrorIsUnknownMethod(&error)) {
293 294
                VIR_INFO("CreateMachineWithNetwork isn't supported, switching "
                         "to legacy CreateMachine method for systemd-machined");
295
                virResetError(&error);
296 297 298 299 300 301
                virAtomicIntSet(&hasCreateWithNetwork, 0);
                /* Could re-structure without Using goto, but this
                 * avoids another atomic read which would trigger
                 * another memory barrier */
                goto fallback;
            }
302 303
            virReportErrorObject(&error);
            virResetError(&error);
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
            goto cleanup;
        }
    } else {
    fallback:
        if (virDBusCallMethod(conn,
                              NULL,
                              NULL,
                              "org.freedesktop.machine1",
                              "/org/freedesktop/machine1",
                              "org.freedesktop.machine1.Manager",
                              "CreateMachine",
                              "sayssusa(sv)",
                              machinename,
                              16,
                              uuid[0], uuid[1], uuid[2], uuid[3],
                              uuid[4], uuid[5], uuid[6], uuid[7],
                              uuid[8], uuid[9], uuid[10], uuid[11],
                              uuid[12], uuid[13], uuid[14], uuid[15],
                              creatorname,
                              iscontainer ? "container" : "vm",
                              (unsigned int)pidleader,
                              rootdir ? rootdir : "",
                              3,
                              "Slice", "s", slicename,
                              "After", "as", 1, "libvirtd.service",
                              "Before", "as", 1, "libvirt-guests.service") < 0)
            goto cleanup;
    }
332 333 334

    ret = 0;

335
 cleanup:
336 337
    VIR_FREE(creatorname);
    VIR_FREE(machinename);
338
    VIR_FREE(slicename);
339 340
    return ret;
}
341 342 343 344 345 346 347 348

int virSystemdTerminateMachine(const char *name,
                               const char *drivername,
                               bool privileged)
{
    int ret;
    DBusConnection *conn;
    char *machinename = NULL;
349 350 351
    virError error;

    memset(&error, 0, sizeof(error));
352 353 354

    ret = virDBusIsServiceEnabled("org.freedesktop.machine1");
    if (ret < 0)
355
        goto cleanup;
356

357
    if ((ret = virDBusIsServiceRegistered("org.freedesktop.systemd1")) < 0)
358 359 360
        goto cleanup;

    ret = -1;
361

362
    if (!(conn = virDBusGetSystemBus()))
363
        goto cleanup;
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379

    if (!(machinename = virSystemdMakeMachineName(name, drivername, privileged)))
        goto cleanup;

    /*
     * The systemd DBus API we're invoking has the
     * following signature
     *
     * TerminateMachine(in  s name);
     *
     * @name a host unique name for the machine. shows up
     * in 'ps' listing & similar
     */

    VIR_DEBUG("Attempting to terminate machine via systemd");
    if (virDBusCallMethod(conn,
380
                          NULL,
381
                          &error,
382 383 384 385 386 387 388 389
                          "org.freedesktop.machine1",
                          "/org/freedesktop/machine1",
                          "org.freedesktop.machine1.Manager",
                          "TerminateMachine",
                          "s",
                          machinename) < 0)
        goto cleanup;

390
    if (error.code == VIR_ERR_ERROR &&
391
        STRNEQ_NULLABLE("org.freedesktop.machine1.NoSuchMachine",
392 393 394 395 396
                        error.str1)) {
        virReportErrorObject(&error);
        goto cleanup;
    }

397 398
    ret = 0;

399
 cleanup:
400 401
    virResetError(&error);

402 403 404
    VIR_FREE(machinename);
    return ret;
}
405 406 407 408 409 410 411 412

void
virSystemdNotifyStartup(void)
{
#ifdef WITH_SYSTEMD_DAEMON
    sd_notify(0, "READY=1");
#endif
}
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451

static int
virSystemdPMSupportTarget(const char *methodName, bool *result)
{
    int ret;
    DBusConnection *conn;
    DBusMessage *message = NULL;
    char *response;

    ret = virDBusIsServiceEnabled("org.freedesktop.login1");
    if (ret < 0)
        return ret;

    if ((ret = virDBusIsServiceRegistered("org.freedesktop.login1")) < 0)
        return ret;

    if (!(conn = virDBusGetSystemBus()))
        return -1;

    ret = -1;

    if (virDBusCallMethod(conn,
                          &message,
                          NULL,
                          "org.freedesktop.login1",
                          "/org/freedesktop/login1",
                          "org.freedesktop.login1.Manager",
                          methodName,
                          NULL) < 0)
        return ret;

    if ((ret = virDBusMessageRead(message, "s", &response)) < 0)
        goto cleanup;

    *result = STREQ("yes", response) || STREQ("challenge", response);

    ret = 0;

 cleanup:
452
    virDBusMessageUnref(message);
453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
    VIR_FREE(response);

    return ret;
}

int virSystemdCanSuspend(bool *result)
{
    return virSystemdPMSupportTarget("CanSuspend", result);
}

int virSystemdCanHibernate(bool *result)
{
    return virSystemdPMSupportTarget("CanHibernate", result);
}

int virSystemdCanHybridSleep(bool *result)
{
    return virSystemdPMSupportTarget("CanHybridSleep", result);
}