3 * lock.c -- routines to lock/unlock files
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
10 /* Modified by Ruud de Rooij to support Miquel van Smoorenburg's liblockfile
12 * Since liblockfile locking shares most of its code with dot locking, it
13 * is enabled by defining both DOT_LOCKING and HAVE_LIBLOCKFILE.
15 * Ruud de Rooij <ruud@debian.org> Sun, 28 Mar 1999 15:34:03 +0200
19 #include <h/signals.h>
22 #ifdef TIME_WITH_SYS_TIME
23 # include <sys/time.h>
26 # ifdef TM_IN_SYS_TIME
27 # include <sys/time.h>
40 # include <sys/file.h>
43 #if defined(LOCKF_LOCKING) || defined(FLOCK_LOCKING)
44 # include <sys/file.h>
49 #if defined(HAVE_LIBLOCKFILE)
54 char *lockdir = LOCKDIR;
57 /* Are we using any kernel locking? */
58 #if defined (FLOCK_LOCKING) || defined(LOCKF_LOCKING) || defined(FCNTL_LOCKING)
59 # define KERNEL_LOCKING
64 /* struct for getting name of lock file to create */
67 #if !defined(HAVE_LIBLOCKFILE)
73 * Amount of time to wait before
74 * updating ctime of lock file.
78 #if !defined(HAVE_LIBLOCKFILE)
80 * How old does a lock file need to be
81 * before we remove it.
84 #endif /* HAVE_LIBLOCKFILE */
86 /* struct for recording and updating locks */
93 /* top of list containing all open locks */
94 static struct lock *l_top = NULL;
95 #endif /* DOT_LOCKING */
100 #ifdef KERNEL_LOCKING
101 static int lkopen_kernel (char *, int, mode_t);
105 static int lkopen_dot (char *, int, mode_t);
106 static void lockname (char *, struct lockinfo *, int);
107 static void timerON (char *, int);
108 static void timerOFF (int);
109 static RETSIGTYPE alrmser (int);
112 #if !defined(HAVE_LIBLOCKFILE)
113 static int lockit (struct lockinfo *);
117 * Base routine to open and lock a file,
118 * and return a file descriptor.
122 lkopen (char *file, int access, mode_t mode)
124 #ifdef KERNEL_LOCKING
125 return lkopen_kernel(file, access, mode);
129 return lkopen_dot(file, access, mode);
135 * Base routine to close and unlock a file,
136 * given a file descriptor.
140 lkclose (int fd, char *file)
147 struct lockinfo lkinfo;
154 buf.l_type = F_UNLCK;
155 buf.l_whence = SEEK_SET;
158 fcntl(fd, F_SETLK, &buf);
166 /* make sure we unlock the whole thing */
167 lseek (fd, (off_t) 0, SEEK_SET);
168 lockf (fd, F_ULOCK, 0L);
172 lockname (file, &lkinfo, 0); /* get name of lock file */
173 #if !defined(HAVE_LIBLOCKFILE)
174 unlink (lkinfo.curlock); /* remove lock file */
176 lockfile_remove(lkinfo.curlock);
177 #endif /* HAVE_LIBLOCKFILE */
178 timerOFF (fd); /* turn off lock timer */
179 #endif /* DOT_LOCKING */
186 * Base routine to open and lock a file,
187 * and return a FILE pointer
191 lkfopen (char *file, char *mode)
196 if (strcmp (mode, "r") == 0)
198 else if (strcmp (mode, "r+") == 0)
200 else if (strcmp (mode, "w") == 0)
201 access = O_WRONLY | O_CREAT | O_TRUNC;
202 else if (strcmp (mode, "w+") == 0)
203 access = O_RDWR | O_CREAT | O_TRUNC;
204 else if (strcmp (mode, "a") == 0)
205 access = O_WRONLY | O_CREAT | O_APPEND;
206 else if (strcmp (mode, "a+") == 0)
207 access = O_RDWR | O_CREAT | O_APPEND;
213 if ((fd = lkopen (file, access, 0666)) == -1)
216 if ((fp = fdopen (fd, mode)) == NULL) {
226 * Base routine to close and unlock a file,
227 * given a FILE pointer
231 lkfclose (FILE *fp, char *file)
238 struct lockinfo lkinfo;
245 buf.l_type = F_UNLCK;
246 buf.l_whence = SEEK_SET;
249 fcntl(fileno(fp), F_SETLK, &buf);
253 flock (fileno(fp), LOCK_UN);
257 /* make sure we unlock the whole thing */
258 fseek (fp, 0L, SEEK_SET);
259 lockf (fileno(fp), F_ULOCK, 0L);
263 lockname (file, &lkinfo, 0); /* get name of lock file */
264 #if !defined(HAVE_LIBLOCKFILE)
265 unlink (lkinfo.curlock); /* remove lock file */
267 lockfile_remove(lkinfo.curlock);
268 #endif /* HAVE_LIBLOCKFILE */
269 timerOFF (fileno(fp)); /* turn off lock timer */
270 #endif /* DOT_LOCKING */
272 return (fclose (fp));
276 #ifdef KERNEL_LOCKING
279 * open and lock a file, using kernel locking
283 lkopen_kernel (char *file, int access, mode_t mode)
287 # ifdef FCNTL_LOCKING
289 # endif /* FCNTL_LOCKING */
291 for (i = 0; i < 5; i++) {
293 # if defined(LOCKF_LOCKING) || defined(FCNTL_LOCKING)
294 /* remember the original mode */
297 /* make sure we open at the beginning */
301 * We MUST have write permission or
302 * lockf/fcntl() won't work
304 if ((access & 03) == O_RDONLY) {
308 # endif /* LOCKF_LOCKING || FCNTL_LOCKING */
310 if ((fd = open (file, access | O_NDELAY, mode)) == -1)
313 # ifdef FCNTL_LOCKING
314 buf.l_type = F_WRLCK;
315 buf.l_whence = SEEK_SET;
318 if (fcntl (fd, F_SETLK, &buf) != -1)
322 # ifdef FLOCK_LOCKING
323 if (flock (fd, (((access & 03) == O_RDONLY) ? LOCK_SH : LOCK_EX)
328 # ifdef LOCKF_LOCKING
329 if (lockf (fd, F_TLOCK, 0L) != -1) {
330 /* see if we should be at the end */
332 lseek (fd, (off_t) 0, SEEK_END);
347 #endif /* KERNEL_LOCKING */
353 * open and lock a file, using dot locking
357 lkopen_dot (char *file, int access, mode_t mode)
360 struct lockinfo lkinfo;
363 if ((fd = open (file, access, mode)) == -1)
367 * Get the name of the eventual lock file, as well
368 * as a name for a temporary lock file.
370 lockname (file, &lkinfo, 1);
372 #if !defined(HAVE_LIBLOCKFILE)
376 /* attempt to create lock file */
377 if (lockit (&lkinfo) == 0) {
378 /* if successful, turn on timer and return */
379 timerON (lkinfo.curlock, fd);
383 * Abort locking, if we fail to lock after 5 attempts
384 * and are never able to stat the lock file.
387 if (stat (lkinfo.curlock, &st) == -1) {
396 /* check for stale lockfile, else sleep */
397 if (curtime > st.st_ctime + RSECS)
398 unlink (lkinfo.curlock);
402 lockname (file, &lkinfo, 1);
407 if (lockfile_create(lkinfo.curlock, 5, 0) == L_SUCCESS) {
408 timerON(lkinfo.curlock, fd);
415 #endif /* HAVE_LIBLOCKFILE */
418 #if !defined(HAVE_LIBLOCKFILE)
420 * Routine that actually tries to create
425 lockit (struct lockinfo *li)
428 char *curlock, *tmplock;
434 curlock = li->curlock;
435 tmplock = li->tmplock;
438 if ((fd = mkstemp(tmplock)) == -1)
441 if (mktemp(tmplock) == NULL)
443 if (unlink(tmplock) == -1 && errno != ENOENT)
445 /* create the temporary lock file */
446 if ((fd = creat(tmplock, 0600)) == -1)
451 /* write our process id into lock file */
452 snprintf (buffer, sizeof(buffer), "nmh lock: pid %d\n", (int) getpid());
453 write(fd, buffer, strlen(buffer) + 1);
459 * Now try to create the real lock file
460 * by linking to the temporary file.
462 fd = link(tmplock, curlock);
465 return (fd == -1 ? -1 : 0);
467 #endif /* HAVE_LIBLOCKFILE */
470 * Get name of lock file, and temporary lock file
474 lockname (char *file, struct lockinfo *li, int isnewlock)
483 if ((cp = strrchr (file, '/')) == NULL || *++cp == 0)
489 snprintf (bp, sizeof(li->curlock), "%s/", lockdir);
490 tmplen = strlen (bp);
495 snprintf (bp, sizeof(li->curlock), "%.*s", (int)(cp - file), file);
496 tmplen = strlen (bp);
504 * mmdf style dot locking. Currently not supported.
505 * If we start supporting mmdf style dot locking,
506 * we will need to change the return value of lockname
508 if (stat (file, &st) == -1)
511 snprintf (bp, sizeof(li->curlock) - bplen, "LCK%05d.%05d",
512 st.st_dev, st.st_ino);
515 snprintf (bp, sizeof(li->curlock) - bplen, "%s.lock", cp);
517 #if !defined(HAVE_LIBLOCKFILE)
519 * If this is for a new lock, create a name for
520 * the temporary lock file for lockit()
523 if ((cp = strrchr (li->curlock, '/')) == NULL || *++cp == 0)
524 strncpy (li->tmplock, ",LCK.XXXXXX", sizeof(li->tmplock));
526 snprintf (li->tmplock, sizeof(li->tmplock), "%.*s,LCK.XXXXXX",
527 (int)(cp - li->curlock), li->curlock);
534 * Add new lockfile to the list of open lockfiles
535 * and start the lock file timer.
539 timerON (char *curlock, int fd)
544 lp = (struct lock *) mh_xmalloc (sizeof(*lp));
546 len = strlen(curlock) + 1;
548 lp->l_lock = mh_xmalloc (len);
549 memcpy (lp->l_lock, curlock, len);
553 /* perhaps SIGT{STP,TIN,TOU} ? */
554 SIGNAL (SIGALRM, alrmser);
563 * Search through the list of lockfiles for the
564 * current lockfile, and remove it from the list.
570 struct lock *pp, *lp;
575 for (pp = lp = l_top; lp; pp = lp, lp = lp->l_next) {
583 pp->l_next = lp->l_next;
590 /* if there are locks left, restart timer */
597 * If timer goes off, we update the ctime of all open
598 * lockfiles, so another command doesn't remove them.
607 #ifndef RELIABLE_SIGNALS
608 SIGNAL (SIGALRM, alrmser);
611 /* update the ctime of all the lock files */
612 for (lp = l_top; lp; lp = lp->l_next) {
613 lockfile = lp->l_lock;
614 #if !defined(HAVE_LIBLOCKFILE)
617 if (*lockfile && (j = creat (lockfile, 0600)) != -1)
621 lockfile_touch(lockfile);
625 /* restart the alarm */
629 #endif /* DOT_LOCKING */