1 /* $NetBSD: dotlock.c,v 1.10 2009/04/10 13:08:24 christos Exp $ */
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
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>
29 __RCSID("$NetBSD: dotlock.c,v 1.10 2009/04/10 13:08:24 christos Exp $");
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.
52 create_exclusive(const char *fname
)
54 char path
[MAXPATHLEN
], hostname
[MAXHOSTNAMELEN
+ 1];
58 size_t ntries
, cookie
;
62 (void)gettimeofday(&tv
, NULL
);
63 (void)gethostname(hostname
, sizeof(hostname
));
64 hostname
[sizeof(hostname
) - 1] = '\0';
67 cookie
= pid
^ tv
.tv_usec
;
70 * We generate a semi-unique filename, from hostname.(pid ^ usec)
72 if ((ptr
= strrchr(fname
, '/')) == NULL
)
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);
89 else if (errno
== EEXIST
)
96 * We link the path to the name
98 if (link(path
, fname
) == -1)
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)
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) {
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
134 dot_lock(const char *fname
, int pollinterval
, FILE *fp
, const char *msg
)
136 char path
[MAXPATHLEN
];
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
);
155 (void)sigprocmask(SIG_BLOCK
, &nset
, &oset
);
156 if (create_exclusive(path
) != -1) {
157 (void)sigprocmask(SIG_SETMASK
, &oset
, NULL
);
162 (void)sigprocmask(SIG_SETMASK
, &oset
, NULL
);
168 (void)fputs(msg
, fp
);
171 if (pollinterval
== -1) {
175 (void)sleep((unsigned int)pollinterval
);
183 dot_unlock(const char *fname
)
185 char path
[MAXPATHLEN
];
187 (void)snprintf(path
, sizeof(path
), "%s.lock", fname
);