virpidfile.c 13.8 KB
Newer Older
1 2 3
/*
 * virpidfile.c: manipulation of pidfiles
 *
4
 * Copyright (C) 2010-2012, 2014 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * Copyright (C) 2006, 2007 Binary Karma
 * Copyright (C) 2006 Shuveb Hussain
 *
 * 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
19
 * License along with this library.  If not, see
O
Osier Yang 已提交
20
 * <http://www.gnu.org/licenses/>.
21 22 23 24 25 26
 *
 */

#include <config.h>

#include <fcntl.h>
27
#include <signal.h>
28
#include <sys/stat.h>
29 30 31

#include "virpidfile.h"
#include "virfile.h"
32
#include "viralloc.h"
33
#include "virutil.h"
34
#include "intprops.h"
35
#include "virlog.h"
36
#include "virerror.h"
37
#include "c-ctype.h"
38
#include "areadlink.h"
39
#include "virstring.h"
40
#include "virprocess.h"
41

42 43
#define VIR_FROM_THIS VIR_FROM_NONE

44 45
VIR_LOG_INIT("util.pidfile");

46 47
char *virPidFileBuildPath(const char *dir, const char* name)
{
48
    virBuffer buf = VIR_BUFFER_INITIALIZER;
49

50 51
    virBufferAsprintf(&buf, "%s", dir);
    virBufferEscapeString(&buf, "/%s.pid", name);
52

53
    return virBufferContentAndReset(&buf);
54 55 56 57 58 59 60 61
}


int virPidFileWritePath(const char *pidfile,
                        pid_t pid)
{
    int rc;
    int fd;
62
    char pidstr[INT_BUFSIZE_BOUND(pid)];
63 64 65 66 67 68 69 70

    if ((fd = open(pidfile,
                   O_WRONLY | O_CREAT | O_TRUNC,
                   S_IRUSR | S_IWUSR)) < 0) {
        rc = -errno;
        goto cleanup;
    }

71
    snprintf(pidstr, sizeof(pidstr), "%lld", (long long) pid);
72

73
    if (safewrite(fd, pidstr, strlen(pidstr)) < 0) {
74
        rc = -errno;
75
        VIR_FORCE_CLOSE(fd);
76 77 78 79 80
        goto cleanup;
    }

    rc = 0;

81
 cleanup:
82
    if (VIR_CLOSE(fd) < 0)
83 84 85 86 87 88 89 90 91 92
        rc = -errno;

    return rc;
}


int virPidFileWrite(const char *dir,
                    const char *name,
                    pid_t pid)
{
93
    g_autofree char *pidfile = NULL;
94

95 96
    if (name == NULL || dir == NULL)
        return -EINVAL;
97

98 99
    if (virFileMakePath(dir) < 0)
        return -errno;
100

101 102
    if (!(pidfile = virPidFileBuildPath(dir, name)))
        return -ENOMEM;
103

104
    return virPidFileWritePath(pidfile, pid);
105 106 107 108 109 110
}


int virPidFileReadPath(const char *path,
                       pid_t *pid)
{
111
    int fd;
112
    int rc;
113 114 115
    ssize_t bytes;
    long long pid_value = 0;
    char pidstr[INT_BUFSIZE_BOUND(pid_value)];
116
    char *endptr = NULL;
117 118 119

    *pid = 0;

120
    if ((fd = open(path, O_RDONLY)) < 0) {
121 122 123 124
        rc = -errno;
        goto cleanup;
    }

125 126 127 128
    bytes = saferead(fd, pidstr, sizeof(pidstr));
    if (bytes < 0) {
        rc = -errno;
        VIR_FORCE_CLOSE(fd);
129 130
        goto cleanup;
    }
131
    pidstr[bytes] = '\0';
132

133 134
    if (virStrToLong_ll(pidstr, &endptr, 10, &pid_value) < 0 ||
        !(*endptr == '\0' || c_isspace(*endptr)) ||
135 136
        (pid_t) pid_value != pid_value) {
        rc = -1;
137 138 139
        goto cleanup;
    }

140
    *pid = pid_value;
141 142
    rc = 0;

143
 cleanup:
144 145 146
    if (VIR_CLOSE(fd) < 0)
        rc = -errno;

147 148 149 150 151 152 153 154
    return rc;
}


int virPidFileRead(const char *dir,
                   const char *name,
                   pid_t *pid)
{
155
    g_autofree char *pidfile = NULL;
156

157
    *pid = 0;
158

159 160
    if (name == NULL || dir == NULL)
        return -EINVAL;
161

162 163
    if (!(pidfile = virPidFileBuildPath(dir, name)))
        return -ENOMEM;
164

165
    return virPidFileReadPath(pidfile, pid);
166 167 168
}


169 170 171 172 173 174 175 176 177 178 179 180 181

/**
 * virPidFileReadPathIfAlive:
 * @path: path to pidfile
 * @pid: variable to return pid in
 * @binpath: path of executable associated with the pidfile
 *
 * This will attempt to read a pid from @path, and store it
 * in @pid. The @pid will only be set, however, if the
 * pid in @path is running, and its executable path
 * resolves to @binpath. This adds protection against
 * recycling of previously reaped pids.
 *
182 183 184
 * If @binpath is NULL the check for the executable path
 * is skipped.
 *
185 186 187 188 189 190 191
 * Returns -errno upon error, or zero on successful
 * reading of the pidfile. If the PID was not still
 * alive, zero will be returned, but @pid will be
 * set to -1.
 */
int virPidFileReadPathIfAlive(const char *path,
                              pid_t *pid,
192
                              const char *binPath)
193
{
194
    int ret;
195 196 197 198
    bool isLink;
    size_t procLinkLen;
    const char deletedText[] = " (deleted)";
    size_t deletedTextLen = strlen(deletedText);
199
    pid_t retPid;
200 201 202 203
    g_autofree char *procPath = NULL;
    g_autofree char *procLink = NULL;
    g_autofree char *resolvedBinPath = NULL;
    g_autofree char *resolvedProcLink = NULL;
204

205 206 207 208
    /* only set this at the very end on success */
    *pid = -1;

    if ((ret = virPidFileReadPath(path, &retPid)) < 0)
209
        return ret;
210

E
Eric Blake 已提交
211 212 213
#ifndef WIN32
    /* Check that it's still alive.  Safe to skip this sanity check on
     * mingw, which lacks kill().  */
214 215 216 217
    if (kill(retPid, 0) < 0) {
        ret = 0;
        retPid = -1;
        goto cleanup;
218
    }
E
Eric Blake 已提交
219
#endif
220

221 222 223 224 225 226 227 228
    if (!binPath) {
        /* we only knew the pid, and that pid is alive, so we can
         * return it.
         */
        ret = 0;
        goto cleanup;
    }

229
    procPath = g_strdup_printf("/proc/%lld/exe", (long long)retPid);
230 231

    if ((ret = virFileIsLink(procPath)) < 0)
232 233
        return ret;

234
    isLink = ret;
235

236 237 238 239 240 241 242
    if (isLink && virFileLinkPointsTo(procPath, binPath)) {
        /* the link in /proc/$pid/exe is a symlink to a file
         * that has the same inode as the file at binpath.
         */
        ret = 0;
        goto cleanup;
    }
243

244 245 246 247 248 249
    /* Even if virFileLinkPointsTo returns a mismatch, it could be
     * that the binary was deleted/replaced after it was executed. In
     * that case the link in /proc/$pid/exe will contain
     * "$procpath (deleted)".  Read that link, remove the " (deleted)"
     * part, and see if it has the same canonicalized name as binpath.
     */
250 251 252
    if (!(procLink = areadlink(procPath)))
        return -errno;

253 254 255
    procLinkLen = strlen(procLink);
    if (procLinkLen > deletedTextLen)
        procLink[procLinkLen - deletedTextLen] = 0;
256

257
    if ((ret = virFileResolveAllLinks(binPath, &resolvedBinPath)) < 0)
258
        return ret;
259
    if ((ret = virFileResolveAllLinks(procLink, &resolvedProcLink)) < 0)
260
        return ret;
261 262 263

    ret = STREQ(resolvedBinPath, resolvedProcLink) ? 0 : -1;

264
 cleanup:
265 266 267 268
    /* return the originally set pid of -1 unless we proclaim success */
    if (ret == 0)
        *pid = retPid;
    return ret;
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
}


/**
 * virPidFileReadIfAlive:
 * @dir: directory containing pidfile
 * @name: base filename of pidfile
 * @pid: variable to return pid in
 * @binpath: path of executable associated with the pidfile
 *
 * This will attempt to read a pid from the pidfile @name
 * in directory @dir, and store it in @pid. The @pid will
 * only be set, however, if the pid in @name is running,
 * and its executable path resolves to @binpath. This adds
 * protection against recycling of previously reaped pids.
 *
 * Returns -errno upon error, or zero on successful
 * reading of the pidfile. If the PID was not still
 * alive, zero will be returned, but @pid will be
 * set to -1.
 */
int virPidFileReadIfAlive(const char *dir,
                          const char *name,
                          pid_t *pid,
                          const char *binpath)
{
295
    g_autofree char *pidfile = NULL;
296

297 298
    if (name == NULL || dir == NULL)
        return -EINVAL;
299

300 301
    if (!(pidfile = virPidFileBuildPath(dir, name)))
        return -ENOMEM;
302

303
    return virPidFileReadPathIfAlive(pidfile, pid, binpath);
304 305 306
}


307 308 309 310 311 312 313 314 315 316 317 318 319 320
int virPidFileDeletePath(const char *pidfile)
{
    int rc = 0;

    if (unlink(pidfile) < 0 && errno != ENOENT)
        rc = -errno;

    return rc;
}


int virPidFileDelete(const char *dir,
                     const char *name)
{
321
    g_autofree char *pidfile = NULL;
322

323 324
    if (name == NULL || dir == NULL)
        return -EINVAL;
325

326 327
    if (!(pidfile = virPidFileBuildPath(dir, name)))
        return -ENOMEM;
328

329
    return virPidFileDeletePath(pidfile);
330
}
331 332

int virPidFileAcquirePath(const char *path,
333
                          bool waitForLock,
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
                          pid_t pid)
{
    int fd = -1;
    char pidstr[INT_BUFSIZE_BOUND(pid)];

    if (path[0] == '\0')
        return 0;

    while (1) {
        struct stat a, b;
        if ((fd = open(path, O_WRONLY|O_CREAT, 0644)) < 0) {
            virReportSystemError(errno,
                                 _("Failed to open pid file '%s'"),
                                 path);
            return -1;
        }

        if (virSetCloseExec(fd) < 0) {
            virReportSystemError(errno,
                                 _("Failed to set close-on-exec flag '%s'"),
                                 path);
            VIR_FORCE_CLOSE(fd);
            return -1;
        }

        if (fstat(fd, &b) < 0) {
            virReportSystemError(errno,
                                 _("Unable to check status of pid file '%s'"),
                                 path);
            VIR_FORCE_CLOSE(fd);
            return -1;
        }

367
        if (virFileLock(fd, false, 0, 1, waitForLock) < 0) {
368 369 370 371 372 373 374 375 376 377 378
            virReportSystemError(errno,
                                 _("Failed to acquire pid file '%s'"),
                                 path);
            VIR_FORCE_CLOSE(fd);
            return -1;
        }

        /* Now make sure the pidfile we locked is the same
         * one that now exists on the filesystem
         */
        if (stat(path, &a) < 0) {
J
Ján Tomko 已提交
379
            char ebuf[1024] G_GNUC_UNUSED;
380
            VIR_DEBUG("Pid file '%s' disappeared: %s",
381
                      path, virStrerror(errno, ebuf, sizeof(ebuf)));
382
            VIR_FORCE_CLOSE(fd);
J
Ján Tomko 已提交
383
            /* Someone else must be racing with us, so try again */
384 385 386 387 388 389 390 391
            continue;
        }

        if (a.st_ino == b.st_ino)
            break;

        VIR_DEBUG("Pid file '%s' was recreated", path);
        VIR_FORCE_CLOSE(fd);
J
Ján Tomko 已提交
392
        /* Someone else must be racing with us, so try again */
393 394
    }

395
    snprintf(pidstr, sizeof(pidstr), "%lld", (long long) pid);
396

397 398 399 400 401 402 403 404
    if (ftruncate(fd, 0) < 0) {
        virReportSystemError(errno,
                             _("Failed to truncate pid file '%s'"),
                             path);
        VIR_FORCE_CLOSE(fd);
        return -1;
    }

405 406 407 408 409 410 411 412 413 414 415 416 417
    if (safewrite(fd, pidstr, strlen(pidstr)) < 0) {
        virReportSystemError(errno,
                             _("Failed to write to pid file '%s'"),
                             path);
        VIR_FORCE_CLOSE(fd);
    }

    return fd;
}


int virPidFileAcquire(const char *dir,
                      const char *name,
418
                      bool waitForLock,
419 420
                      pid_t pid)
{
421
    g_autofree char *pidfile = NULL;
422

423 424
    if (name == NULL || dir == NULL)
        return -EINVAL;
425

426 427
    if (!(pidfile = virPidFileBuildPath(dir, name)))
        return -ENOMEM;
428

429
    return virPidFileAcquirePath(pidfile, waitForLock, pid);
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
}


int virPidFileReleasePath(const char *path,
                          int fd)
{
    int rc = 0;
    /*
     * We need to unlink before closing the FD to avoid
     * a race, but Win32 won't let you unlink an open
     * file handle. So on that platform we do the reverse
     * and just have to live with the possible race.
     */
#ifdef WIN32
    VIR_FORCE_CLOSE(fd);
    if (unlink(path) < 0 && errno != ENOENT)
        rc = -errno;
#else
    if (unlink(path) < 0 && errno != ENOENT)
        rc = -errno;
    VIR_FORCE_CLOSE(fd);
#endif
    return rc;
}


int virPidFileRelease(const char *dir,
                      const char *name,
                      int fd)
{
460
    g_autofree char *pidfile = NULL;
461

462 463
    if (name == NULL || dir == NULL)
        return -EINVAL;
464

465 466
    if (!(pidfile = virPidFileBuildPath(dir, name)))
        return -ENOMEM;
467

468
    return virPidFileReleasePath(pidfile, fd);
469
}
470 471 472 473


int
virPidFileConstructPath(bool privileged,
474
                        const char *runstatedir,
475 476 477
                        const char *progname,
                        char **pidfile)
{
478
    g_autofree char *rundir = NULL;
479

480 481 482 483 484
    if (privileged) {
        /*
         * This is here just to allow calling this function with
         * statedir == NULL; of course only when !privileged.
         */
485
        if (!runstatedir) {
486
            virReportError(VIR_ERR_INTERNAL_ERROR,
487
                           "%s", _("No runstatedir specified"));
488
            return -1;
489
        }
490
        *pidfile = g_strdup_printf("%s/%s.pid", runstatedir, progname);
491 492
    } else {
        if (!(rundir = virGetUserRuntimeDirectory()))
493
            return -1;
494

495 496 497 498
        if (virFileMakePathWithMode(rundir, 0700) < 0) {
            virReportSystemError(errno,
                                 _("Cannot create user runtime directory '%s'"),
                                 rundir);
499
            return -1;
500 501
        }

502
        *pidfile = g_strdup_printf("%s/%s.pid", rundir, progname);
503 504
    }

505
    return 0;
506
}
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530


/**
 * virPidFileForceCleanupPath:
 *
 * Check if the pidfile is left around and clean it up whatever it
 * takes.  This doesn't raise an error.  This function must not be
 * called multiple times with the same path, be it in threads or
 * processes.  This function does not raise any errors.
 *
 * Returns 0 if the pidfile was successfully cleaned up, -1 otherwise.
 */
int
virPidFileForceCleanupPath(const char *path)
{
    pid_t pid = 0;
    int fd = -1;

    if (!virFileExists(path))
        return 0;

    if (virPidFileReadPath(path, &pid) < 0)
        return -1;

531 532
    fd = virPidFileAcquirePath(path, false, 0);
    if (fd < 0) {
533 534 535 536 537 538 539 540 541 542 543 544
        virResetLastError();

        /* Only kill the process if the pid is valid one.  0 means
         * there is somebody else doing the same pidfile cleanup
         * machinery. */
        if (pid)
            virProcessKillPainfully(pid, true);

        if (virPidFileDeletePath(path) < 0)
            return -1;
    }

545 546 547
    if (fd)
        virPidFileReleasePath(path, fd);

548 549
    return 0;
}