Fix up mix of man(7)/mdoc(7).
[netbsd-mini2440.git] / usr.bin / mail / dotlock.c
blob188623deea32ea49d78db5680f2ac31dd602ccc8
1 /* $NetBSD: dotlock.c,v 1.10 2009/04/10 13:08:24 christos Exp $ */
3 /*
4 * Copyright (c) 1996 Christos Zoulas. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 #include <sys/cdefs.h>
28 #ifndef lint
29 __RCSID("$NetBSD: dotlock.c,v 1.10 2009/04/10 13:08:24 christos Exp $");
30 #endif
32 #include "rcv.h"
33 #include "extern.h"
34 #include "sig.h"
36 #ifndef O_SYNC
37 #define O_SYNC 0
38 #endif
40 static int create_exclusive(const char *);
42 * Create a unique file. O_EXCL does not really work over NFS so we follow
43 * the following trick: [Inspired by S.R. van den Berg]
45 * - make a mostly unique filename and try to create it.
46 * - link the unique filename to our target
47 * - get the link count of the target
48 * - unlink the mostly unique filename
49 * - if the link count was 2, then we are ok; else we've failed.
51 static int
52 create_exclusive(const char *fname)
54 char path[MAXPATHLEN], hostname[MAXHOSTNAMELEN + 1];
55 const char *ptr;
56 struct timeval tv;
57 pid_t pid;
58 size_t ntries, cookie;
59 int fd, serrno;
60 struct stat st;
62 (void)gettimeofday(&tv, NULL);
63 (void)gethostname(hostname, sizeof(hostname));
64 hostname[sizeof(hostname) - 1] = '\0';
65 pid = getpid();
67 cookie = pid ^ tv.tv_usec;
70 * We generate a semi-unique filename, from hostname.(pid ^ usec)
72 if ((ptr = strrchr(fname, '/')) == NULL)
73 ptr = fname;
74 else
75 ptr++;
77 (void)snprintf(path, sizeof(path), "%.*s.%s.%lx",
78 (int)(ptr - fname), fname, hostname, (u_long)cookie);
81 * We try to create the unique filename.
83 for (ntries = 0; ntries < 5; ntries++) {
84 fd = open(path, O_WRONLY|O_CREAT|O_TRUNC|O_EXCL|O_SYNC, 0);
85 if (fd != -1) {
86 (void)close(fd);
87 break;
89 else if (errno == EEXIST)
90 continue;
91 else
92 return -1;
96 * We link the path to the name
98 if (link(path, fname) == -1)
99 goto bad;
102 * Note that we stat our own exclusively created name, not the
103 * destination, since the destination can be affected by others.
105 if (stat(path, &st) == -1)
106 goto bad;
108 (void)unlink(path);
111 * If the number of links was two (one for the unique file and one
112 * for the lock), we've won the race
114 if (st.st_nlink != 2) {
115 errno = EEXIST;
116 return -1;
118 return 0;
120 bad:
121 serrno = errno;
122 (void)unlink(path);
123 errno = serrno;
124 return -1;
128 * fname -- Pathname to lock
129 * pollinterval -- Interval to check for lock, -1 return
130 * fp -- File to print message
131 * msg -- Message to print
133 PUBLIC int
134 dot_lock(const char *fname, int pollinterval, FILE *fp, const char *msg)
136 char path[MAXPATHLEN];
137 sigset_t nset, oset;
138 int retval;
140 (void)sigemptyset(&nset);
141 (void)sigaddset(&nset, SIGHUP);
142 (void)sigaddset(&nset, SIGINT);
143 (void)sigaddset(&nset, SIGQUIT);
144 (void)sigaddset(&nset, SIGTERM);
145 (void)sigaddset(&nset, SIGTTIN);
146 (void)sigaddset(&nset, SIGTTOU);
147 (void)sigaddset(&nset, SIGTSTP);
148 (void)sigaddset(&nset, SIGCHLD);
150 (void)snprintf(path, sizeof(path), "%s.lock", fname);
152 retval = -1;
153 for (;;) {
154 sig_check();
155 (void)sigprocmask(SIG_BLOCK, &nset, &oset);
156 if (create_exclusive(path) != -1) {
157 (void)sigprocmask(SIG_SETMASK, &oset, NULL);
158 retval = 0;
159 break;
161 else
162 (void)sigprocmask(SIG_SETMASK, &oset, NULL);
164 if (errno != EEXIST)
165 break;
167 if (fp && msg)
168 (void)fputs(msg, fp);
170 if (pollinterval) {
171 if (pollinterval == -1) {
172 errno = EEXIST;
173 break;
175 (void)sleep((unsigned int)pollinterval);
178 sig_check();
179 return retval;
182 PUBLIC void
183 dot_unlock(const char *fname)
185 char path[MAXPATHLEN];
187 (void)snprintf(path, sizeof(path), "%s.lock", fname);
188 (void)unlink(path);