2012-09-11 18:02:49 +02:00
|
|
|
/* $NetBSD: pidfile.c,v 1.9 2011/03/29 13:55:37 jmmv Exp $ */
|
2011-09-26 18:19:29 +02:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
2012-09-11 18:02:49 +02:00
|
|
|
* by Jason R. Thorpe, Matthias Scheler and Julio Merino.
|
2011-09-26 18:19:29 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
2012-09-11 18:02:49 +02:00
|
|
|
__RCSID("$NetBSD: pidfile.c,v 1.9 2011/03/29 13:55:37 jmmv Exp $");
|
2011-09-26 18:19:29 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
2012-09-11 18:02:49 +02:00
|
|
|
|
2011-09-26 18:19:29 +02:00
|
|
|
#include <paths.h>
|
2012-09-11 18:02:49 +02:00
|
|
|
#include <stdbool.h>
|
2011-09-26 18:19:29 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <util.h>
|
|
|
|
|
|
|
|
static pid_t pidfile_pid;
|
|
|
|
static char *pidfile_path;
|
|
|
|
|
2012-09-11 18:02:49 +02:00
|
|
|
/* Deletes an existent pidfile iff it was created by this process. */
|
|
|
|
static void
|
|
|
|
pidfile_cleanup(void)
|
|
|
|
{
|
2011-09-26 18:19:29 +02:00
|
|
|
|
2012-09-11 18:02:49 +02:00
|
|
|
if ((pidfile_path != NULL) && (pidfile_pid == getpid()))
|
|
|
|
(void) unlink(pidfile_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Registers an atexit(3) handler to delete the pidfile we have generated.
|
|
|
|
* We only register the handler when we create a pidfile, so we can assume
|
|
|
|
* that the pidfile exists.
|
|
|
|
*
|
|
|
|
* Returns 0 on success or -1 if the handler could not be registered. */
|
|
|
|
static int
|
|
|
|
register_atexit_handler(void)
|
2011-09-26 18:19:29 +02:00
|
|
|
{
|
2012-09-11 18:02:49 +02:00
|
|
|
static bool done = false;
|
2011-09-26 18:19:29 +02:00
|
|
|
|
2012-09-11 18:02:49 +02:00
|
|
|
if (!done) {
|
2011-09-26 18:19:29 +02:00
|
|
|
if (atexit(pidfile_cleanup) < 0)
|
|
|
|
return -1;
|
2012-09-11 18:02:49 +02:00
|
|
|
done = true;
|
2011-09-26 18:19:29 +02:00
|
|
|
}
|
|
|
|
|
2012-09-11 18:02:49 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2011-09-26 18:19:29 +02:00
|
|
|
|
2012-09-11 18:02:49 +02:00
|
|
|
/* Given a new pidfile name in 'path', deletes any previously-created pidfile
|
|
|
|
* if the previous file differs to the new one.
|
|
|
|
*
|
|
|
|
* If a previous file is deleted, returns 1, which means that a new pidfile
|
|
|
|
* must be created. Otherwise, this returns 0, which means that the existing
|
|
|
|
* file does not need to be touched. */
|
|
|
|
static int
|
|
|
|
cleanup_old_pidfile(const char* path)
|
|
|
|
{
|
2011-09-26 18:19:29 +02:00
|
|
|
if (pidfile_path != NULL) {
|
2012-09-11 18:02:49 +02:00
|
|
|
if (strcmp(pidfile_path, path) != 0) {
|
|
|
|
pidfile_cleanup();
|
|
|
|
|
|
|
|
free(pidfile_path);
|
|
|
|
pidfile_path = NULL;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
} else
|
2011-09-26 18:19:29 +02:00
|
|
|
return 0;
|
2012-09-11 18:02:49 +02:00
|
|
|
} else
|
|
|
|
return 1;
|
|
|
|
}
|
2011-09-26 18:19:29 +02:00
|
|
|
|
2012-09-11 18:02:49 +02:00
|
|
|
/* Constructs a name for a pidfile in the default location (/var/run). If
|
|
|
|
* 'basename' is NULL, uses the name of the current program for the name of
|
|
|
|
* the pidfile.
|
|
|
|
*
|
|
|
|
* Returns a pointer to a dynamically-allocatd string containing the absolute
|
|
|
|
* path to the pidfile; NULL on failure. */
|
|
|
|
static char *
|
|
|
|
generate_varrun_path(const char *basename)
|
|
|
|
{
|
|
|
|
char *path;
|
2011-09-26 18:19:29 +02:00
|
|
|
|
2012-09-11 18:02:49 +02:00
|
|
|
if (basename == NULL)
|
|
|
|
basename = getprogname();
|
2011-09-26 18:19:29 +02:00
|
|
|
|
2012-09-11 18:02:49 +02:00
|
|
|
/* _PATH_VARRUN includes trailing / */
|
|
|
|
(void) asprintf(&path, "%s%s.pid", _PATH_VARRUN, basename);
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Creates a pidfile with the provided name. The new pidfile is "registered"
|
|
|
|
* in the global variables pidfile_path and pidfile_pid so that any further
|
|
|
|
* call to pidfile(3) can check if we are recreating the same file or a new
|
|
|
|
* one.
|
|
|
|
*
|
|
|
|
* Returns 0 on success or -1 if there is any error. */
|
|
|
|
static int
|
|
|
|
create_pidfile(const char* path)
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
|
|
|
|
if (register_atexit_handler() == -1)
|
2011-09-26 18:19:29 +02:00
|
|
|
return -1;
|
|
|
|
|
2012-09-11 18:02:49 +02:00
|
|
|
if (cleanup_old_pidfile(path) == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
pidfile_path = strdup(path);
|
|
|
|
if (pidfile_path == NULL)
|
2011-09-26 18:19:29 +02:00
|
|
|
return -1;
|
|
|
|
|
2012-09-11 18:02:49 +02:00
|
|
|
if ((f = fopen(path, "w")) == NULL) {
|
2011-09-26 18:19:29 +02:00
|
|
|
free(pidfile_path);
|
|
|
|
pidfile_path = NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-09-11 18:02:49 +02:00
|
|
|
pidfile_pid = getpid();
|
|
|
|
|
2011-09-26 18:19:29 +02:00
|
|
|
(void) fprintf(f, "%d\n", pidfile_pid);
|
|
|
|
(void) fclose(f);
|
2012-09-11 18:02:49 +02:00
|
|
|
|
2011-09-26 18:19:29 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-11 18:02:49 +02:00
|
|
|
int
|
|
|
|
pidfile(const char *path)
|
2011-09-26 18:19:29 +02:00
|
|
|
{
|
2012-09-11 18:02:49 +02:00
|
|
|
|
|
|
|
if (path == NULL || strchr(path, '/') == NULL) {
|
|
|
|
char *default_path;
|
|
|
|
|
|
|
|
if ((default_path = generate_varrun_path(path)) == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (create_pidfile(default_path) == -1) {
|
|
|
|
free(default_path);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(default_path);
|
|
|
|
return 0;
|
|
|
|
} else
|
|
|
|
return create_pidfile(path);
|
2011-09-26 18:19:29 +02:00
|
|
|
}
|