This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/lib/nodelock.c

175 lines
4.3 KiB
C
Raw Normal View History

2001-08-17 05:46:24 +00:00
/*****************************************************************************
*
2002-01-19 11:54:34 +00:00
* $Id$
2001-08-17 05:46:24 +00:00
* Purpose ...............: Node locking
*
*****************************************************************************
2004-02-21 14:24:03 +00:00
* Copyright (C) 1997-2004
2001-08-17 05:46:24 +00:00
*
* Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10
* 1971 BV IJmuiden
* the Netherlands
*
* This file is part of MBSE BBS.
*
* This BBS is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2, or (at your option) any
* later version.
*
* MBSE BBS 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MBSE BBS; see the file COPYING. If not, write to the Free
2003-08-15 20:05:34 +00:00
* Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
2001-08-17 05:46:24 +00:00
*****************************************************************************/
2002-06-30 12:48:44 +00:00
#include "../config.h"
2004-02-21 14:24:03 +00:00
#include "mbselib.h"
2001-08-17 05:46:24 +00:00
2003-11-30 14:36:53 +00:00
int nodelock(faddr *addr, pid_t mypid)
2001-08-17 05:46:24 +00:00
{
2003-07-13 13:22:32 +00:00
char *fn, *tfn, *p, tmp[16];
FILE *fp;
2003-11-30 14:36:53 +00:00
pid_t pid;
2003-12-28 13:57:27 +00:00
int tmppid, sverr, rc;
2003-07-13 13:22:32 +00:00
time_t ltime, now;
fn = bsyname(addr);
tfn = xstrcpy(fn);
if ((p=strrchr(tfn,'/')))
*++p='\0';
sprintf(tmp, "aa%d", mypid);
tfn = xstrcat(tfn, tmp);
mkdirs(tfn, 0770);
if ((fp = fopen(tfn,"w")) == NULL) {
WriteError("$Can't open tmp file for bsy lock (%s) \"%s\"",ascfnode(addr, 0x1f), tfn);
free(tfn);
return 1;
}
fprintf(fp,"%10d\n", mypid);
fclose(fp);
chmod(tfn, 0440);
if (link(tfn, fn) == 0) {
unlink(tfn);
free(tfn);
return 0;
} else {
sverr = errno;
}
if (sverr != EEXIST) {
WriteError("$Could not link \"%s\" to \"%s\"",tfn,fn);
WriteError("Locking %s failed", ascfnode(addr, 0x1f));
unlink(tfn);
free(tfn);
return 1;
}
if ((fp = fopen(fn,"r")) == NULL) {
WriteError("$Could not open existing lock file \"%s\"",fn);
WriteError("Locking %s failed", ascfnode(addr, 0x1f));
unlink(tfn);
free(tfn);
return 1;
}
/*
2003-12-28 13:57:27 +00:00
* Lock exists, check owner. If rc <> 1 then the lock may have
* been created by another OS (zero bytes lock).
2003-07-13 13:22:32 +00:00
*/
2003-12-28 13:57:27 +00:00
rc = fscanf(fp, "%d", &tmppid);
2003-07-13 13:22:32 +00:00
pid = tmppid;
fclose(fp);
/*
* If lock is our own lock, then it's ok and we are ready.
*/
2003-11-30 14:36:53 +00:00
if (mypid == pid) {
2003-07-13 13:22:32 +00:00
unlink(tfn);
free(tfn);
return 0;
}
/*
* Stale or old lock tests
*/
ltime = file_time(fn);
now = time(NULL);
2003-12-28 13:57:27 +00:00
if (CFG.ZeroLocks && (rc != 1) && (((unsigned long)now - (unsigned long)ltime) > 21600)) {
Syslog('+', "Found zero byte lock older then 6 hours for %s, unlink", ascfnode(addr,0x1f));
unlink(fn);
} else if (CFG.ZeroLocks && (rc != 1)) {
Syslog('+', "Node %s is locked from another OS", ascfnode(addr, 0x1f));
unlink(tfn);
free(tfn);
return 1;
} else if (kill(pid, 0) && (errno == ESRCH)) {
2003-07-13 13:22:32 +00:00
Syslog('+', "Found stale bsy file for %s, unlink", ascfnode(addr,0x1f));
unlink(fn);
} else if (((unsigned long)now - (unsigned long)ltime) > 21600) {
Syslog('+', "Found lock older then 6 hours for %s, unlink", ascfnode(addr,0x1f));
unlink(fn);
} else {
Syslog('+', "Node %s is locked by pid %d", ascfnode(addr, 0x1f), pid);
unlink(tfn);
free(tfn);
return 1;
}
if (link(tfn,fn) == 0) {
unlink(tfn);
free(tfn);
return 0;
} else {
WriteError("$Could not link \"%s\" to \"%s\"",tfn,fn);
WriteError("Locking %s failed", ascfnode(addr, 0x1f));
unlink(tfn);
free(tfn);
return 1;
}
2001-08-17 05:46:24 +00:00
}
2003-11-30 14:36:53 +00:00
int nodeulock(faddr *addr, pid_t mypid)
2001-08-17 05:46:24 +00:00
{
2003-07-13 13:22:32 +00:00
char *fn;
FILE *fp;
2003-11-30 14:36:53 +00:00
pid_t pid;
2003-12-28 13:57:27 +00:00
int tmppid = 0, rc;
2003-07-13 13:22:32 +00:00
fn = bsyname(addr);
if ((fp = fopen(fn, "r")) == NULL) {
2003-12-28 13:57:27 +00:00
Syslog('+', "Unlock %s failed, not locked", ascfnode(addr, 0x1f));
2003-07-13 13:22:32 +00:00
return 1;
}
2003-12-28 13:57:27 +00:00
rc = fscanf(fp, "%d", &tmppid);
2003-07-13 13:22:32 +00:00
pid = tmppid;
fclose(fp);
2003-12-28 13:57:27 +00:00
if (CFG.ZeroLocks && (rc != 1)) {
/*
* Zero byte lock from another OS, leave alone.
*/
return 0;
} else if (pid == mypid) {
2003-07-13 13:22:32 +00:00
unlink(fn);
return 0;
} else {
WriteError("Unlock (%s) file failed for process %u, we are %u", ascfnode(addr, 0x1f), pid,mypid);
return 1;
}
2001-08-17 05:46:24 +00:00
}