2005-08-27 20:55:59 +04:00
|
|
|
/* $NetBSD: pidlock.c,v 1.13 2005/08/27 16:55:59 elad Exp $ */
|
1997-10-11 06:56:22 +04:00
|
|
|
|
|
|
|
/*
|
2003-07-26 23:24:24 +04:00
|
|
|
* Copyright 1996, 1997 by Curt Sampson <cjs@NetBSD.org>.
|
1997-10-11 06:56:22 +04: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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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)
|
2005-08-27 20:55:59 +04:00
|
|
|
__RCSID("$NetBSD: pidlock.c,v 1.13 2005/08/27 16:55:59 elad Exp $");
|
1997-10-11 06:56:22 +04:00
|
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
1999-09-16 15:44:54 +04:00
|
|
|
#include <assert.h>
|
1999-01-12 02:20:35 +03:00
|
|
|
#include <errno.h>
|
1997-10-11 06:56:22 +04:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <util.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a lockfile. Return 0 when locked, -1 on error.
|
|
|
|
*/
|
|
|
|
int
|
2000-07-05 15:46:40 +04:00
|
|
|
pidlock(const char *lockfile, int flags, pid_t *locker, const char *info)
|
1997-10-11 06:56:22 +04:00
|
|
|
{
|
|
|
|
char tempfile[MAXPATHLEN];
|
1998-07-06 10:45:41 +04:00
|
|
|
char hostname[MAXHOSTNAMELEN + 1];
|
1997-10-11 06:56:22 +04:00
|
|
|
pid_t pid2 = -1;
|
1997-10-12 13:58:23 +04:00
|
|
|
struct stat st;
|
|
|
|
int err;
|
1997-10-11 06:56:22 +04:00
|
|
|
int f;
|
|
|
|
char s[256];
|
|
|
|
char *p;
|
|
|
|
|
1999-09-16 15:44:54 +04:00
|
|
|
_DIAGASSERT(lockfile != NULL);
|
|
|
|
/* locker may be NULL */
|
|
|
|
/* info may be NULL */
|
|
|
|
|
|
|
|
|
1997-10-12 13:58:23 +04:00
|
|
|
if (gethostname(hostname, sizeof(hostname)))
|
|
|
|
return -1;
|
1998-07-06 10:45:41 +04:00
|
|
|
hostname[sizeof(hostname) - 1] = '\0';
|
1997-10-12 13:58:23 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Build a path to the temporary file.
|
|
|
|
* We use the path with the PID and hostname appended.
|
|
|
|
* XXX This is not thread safe.
|
|
|
|
*/
|
|
|
|
if (snprintf(tempfile, sizeof(tempfile), "%s.%d.%s", lockfile,
|
|
|
|
(int) getpid(), hostname) >= sizeof(tempfile)) {
|
1997-10-11 06:56:22 +04:00
|
|
|
errno = ENAMETOOLONG;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Open it, write pid, hostname, info. */
|
|
|
|
if ( (f = open(tempfile, O_WRONLY|O_CREAT|O_TRUNC, 0600)) == -1 ) {
|
1997-10-12 13:58:23 +04:00
|
|
|
err = errno;
|
1997-10-11 06:56:22 +04:00
|
|
|
unlink(tempfile);
|
1997-10-12 13:58:23 +04:00
|
|
|
errno = err;
|
1997-10-11 06:56:22 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
snprintf(s, sizeof(s), "%10d\n", getpid()); /* pid */
|
2005-08-27 20:55:59 +04:00
|
|
|
if (write(f, s, (size_t)11) != 11) {
|
1997-10-12 13:58:23 +04:00
|
|
|
err = errno;
|
|
|
|
close(f);
|
|
|
|
unlink(tempfile);
|
|
|
|
errno = err;
|
1997-10-11 06:56:22 +04:00
|
|
|
return -1;
|
1997-10-12 13:58:23 +04:00
|
|
|
}
|
|
|
|
if ((flags & PIDLOCK_USEHOSTNAME)) { /* hostname */
|
1997-10-11 06:56:22 +04:00
|
|
|
if ((write(f, hostname, strlen(hostname)) != strlen(hostname))
|
2005-08-27 20:55:59 +04:00
|
|
|
|| (write(f, "\n", (size_t)1) != 1)) {
|
1997-10-12 13:58:23 +04:00
|
|
|
err = errno;
|
|
|
|
close(f);
|
|
|
|
unlink(tempfile);
|
|
|
|
errno = err;
|
|
|
|
return -1;
|
1997-10-11 06:56:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (info) { /* info */
|
|
|
|
if (!(flags & PIDLOCK_USEHOSTNAME)) {
|
|
|
|
/* write blank line because there's no hostname */
|
2005-08-27 20:55:59 +04:00
|
|
|
if (write(f, "\n", (size_t)1) != 1) {
|
1997-10-12 13:58:23 +04:00
|
|
|
err = errno;
|
|
|
|
close(f);
|
|
|
|
unlink(tempfile);
|
|
|
|
errno = err;
|
|
|
|
return -1;
|
1997-10-11 06:56:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (write(f, info, strlen(info)) != strlen(info) ||
|
2005-08-27 20:55:59 +04:00
|
|
|
(write(f, "\n", (size_t)1) != 1)) {
|
1997-10-12 13:58:23 +04:00
|
|
|
err = errno;
|
|
|
|
close(f);
|
|
|
|
unlink(tempfile);
|
|
|
|
errno = err;
|
|
|
|
return -1;
|
1997-10-11 06:56:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
close(f);
|
|
|
|
|
|
|
|
/* Hard link the temporary file to the real lock file. */
|
|
|
|
/* This is an atomic operation. */
|
1997-10-12 13:58:23 +04:00
|
|
|
lockfailed:
|
1997-10-11 06:56:22 +04:00
|
|
|
while (link(tempfile, lockfile) != 0) {
|
|
|
|
if (errno != EEXIST) {
|
1997-10-12 13:58:23 +04:00
|
|
|
err = errno;
|
1997-10-11 06:56:22 +04:00
|
|
|
unlink(tempfile);
|
1997-10-12 13:58:23 +04:00
|
|
|
errno = err;
|
1997-10-11 06:56:22 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
/* Find out who has this lockfile. */
|
1997-10-12 13:58:23 +04:00
|
|
|
if ((f = open(lockfile, O_RDONLY, 0)) != 0) {
|
2005-08-27 20:55:59 +04:00
|
|
|
read(f, s, (size_t)11);
|
1997-10-12 13:58:23 +04:00
|
|
|
pid2 = atoi(s);
|
|
|
|
read(f, s, sizeof(s)-2);
|
|
|
|
s[sizeof(s)-1] = '\0';
|
1998-12-09 17:35:02 +03:00
|
|
|
if ((p=strchr(s, '\n')) != NULL)
|
1997-10-12 13:58:23 +04:00
|
|
|
*p = '\0';
|
|
|
|
close(f);
|
1997-10-11 06:56:22 +04:00
|
|
|
|
1997-10-12 13:58:23 +04:00
|
|
|
if (!((flags & PIDLOCK_USEHOSTNAME) &&
|
|
|
|
strcmp(s, hostname))) {
|
|
|
|
if ((kill(pid2, 0) != 0) && (errno == ESRCH)) {
|
|
|
|
/* process doesn't exist */
|
|
|
|
unlink(lockfile);
|
|
|
|
continue;
|
|
|
|
}
|
1997-10-11 06:56:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (flags & PIDLOCK_NONBLOCK) {
|
|
|
|
if (locker)
|
|
|
|
*locker = pid2;
|
|
|
|
unlink(tempfile);
|
|
|
|
errno = EWOULDBLOCK;
|
|
|
|
return -1;
|
|
|
|
} else
|
|
|
|
sleep(5);
|
|
|
|
}
|
1997-10-12 13:58:23 +04:00
|
|
|
/*
|
|
|
|
* Check to see that we really were successful (in case we're
|
|
|
|
* using NFS) by making sure that something really is linked
|
|
|
|
* to our tempfile (reference count is two).
|
|
|
|
*/
|
|
|
|
if (stat(tempfile, &st) != 0) {
|
|
|
|
err = errno;
|
|
|
|
/*
|
|
|
|
* We don't know if lockfile was really created by us,
|
|
|
|
* so we can't remove it.
|
|
|
|
*/
|
|
|
|
unlink(tempfile);
|
|
|
|
errno = err;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (st.st_nlink != 2)
|
|
|
|
goto lockfailed;
|
1997-10-11 06:56:22 +04:00
|
|
|
|
|
|
|
unlink(tempfile);
|
1997-10-12 13:58:23 +04:00
|
|
|
if (locker)
|
|
|
|
*locker = getpid(); /* return this process's PID on lock */
|
|
|
|
errno = 0;
|
1997-10-11 06:56:22 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define LOCKPATH "/var/spool/lock/LCK.."
|
|
|
|
#define DEVPATH "/dev/"
|
|
|
|
|
1998-12-09 17:35:02 +03:00
|
|
|
/*ARGSUSED*/
|
1997-10-11 06:56:22 +04:00
|
|
|
int
|
2000-07-05 15:46:40 +04:00
|
|
|
ttylock(const char *tty, int flags, pid_t *locker)
|
1997-10-11 06:56:22 +04:00
|
|
|
{
|
|
|
|
char lockfile[MAXPATHLEN];
|
|
|
|
char ttyfile[MAXPATHLEN];
|
|
|
|
struct stat sb;
|
|
|
|
|
1999-09-16 15:44:54 +04:00
|
|
|
_DIAGASSERT(tty != NULL);
|
|
|
|
/* locker is not used */
|
|
|
|
|
1997-10-11 06:56:22 +04:00
|
|
|
/* make sure the tty exists */
|
2002-11-17 02:30:32 +03:00
|
|
|
strlcpy(ttyfile, DEVPATH, sizeof(ttyfile));
|
|
|
|
strlcat(ttyfile, tty, sizeof(ttyfile));
|
1997-10-11 06:56:22 +04:00
|
|
|
if (stat(ttyfile, &sb)) {
|
|
|
|
errno = ENOENT; return -1;
|
|
|
|
}
|
1997-10-19 22:10:58 +04:00
|
|
|
if (!S_ISCHR(sb.st_mode)) {
|
1997-10-11 06:56:22 +04:00
|
|
|
errno = ENOENT; return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* do the lock */
|
2002-11-17 02:30:32 +03:00
|
|
|
strlcpy(lockfile, LOCKPATH, sizeof(lockfile));
|
|
|
|
strlcat(lockfile, tty, sizeof(lockfile));
|
2003-04-21 04:39:40 +04:00
|
|
|
return pidlock(lockfile, flags, locker, 0);
|
1997-10-11 06:56:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-07-05 15:46:40 +04:00
|
|
|
ttyunlock(const char *tty)
|
1997-10-11 06:56:22 +04:00
|
|
|
{
|
|
|
|
char lockfile[MAXPATHLEN];
|
|
|
|
char ttyfile[MAXPATHLEN];
|
|
|
|
struct stat sb;
|
|
|
|
|
1999-09-16 15:44:54 +04:00
|
|
|
_DIAGASSERT(tty != NULL);
|
|
|
|
|
1997-10-11 06:56:22 +04:00
|
|
|
/* make sure the tty exists */
|
2002-11-17 02:30:32 +03:00
|
|
|
strlcpy(ttyfile, DEVPATH, sizeof(ttyfile));
|
|
|
|
strlcat(ttyfile, tty, sizeof(ttyfile));
|
1997-10-11 06:56:22 +04:00
|
|
|
if (stat(ttyfile, &sb)) {
|
|
|
|
errno = ENOENT; return -1;
|
|
|
|
}
|
1997-10-19 22:10:58 +04:00
|
|
|
if (!S_ISCHR(sb.st_mode)) {
|
1997-10-11 06:56:22 +04:00
|
|
|
errno = ENOENT; return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* undo the lock */
|
2002-11-17 02:30:32 +03:00
|
|
|
strlcpy(lockfile, LOCKPATH, sizeof(lockfile));
|
|
|
|
strlcat(lockfile, tty, sizeof(lockfile));
|
1997-10-11 06:56:22 +04:00
|
|
|
return unlink(lockfile);
|
|
|
|
}
|