]> Pileus Git - ~andy/fetchmail/blob - lock.c
8a47703a538af7036c97aaca776e274633a3df20
[~andy/fetchmail] / lock.c
1 /*
2  * lock.c -- cross-platform concurrency locking for fetchmail
3  *
4  * For license terms, see the file COPYING in this directory.
5  */
6 #include "config.h"
7
8 #include <stdio.h>
9 #ifdef HAVE_STRING_H
10 #include <string.h> /* strcat() */
11 #endif
12 #if defined(STDC_HEADERS)
13 #include <stdlib.h>
14 #endif
15 #if defined(HAVE_UNISTD_H)
16 #include <unistd.h>
17 #endif
18 #include <errno.h>
19 #include <fcntl.h>
20 #include <signal.h>
21
22 #include "fetchmail.h"
23 #include "i18n.h"
24
25 static char *lockfile;          /* name of lockfile */
26 static int lock_acquired;       /* have we acquired a lock */
27
28 void lock_setup(void)
29 /* set up the global lockfile name */
30 {
31     /* set up to do lock protocol */
32 #define FETCHMAIL_PIDFILE       "fetchmail.pid"
33     if (getuid() == ROOT_UID) {
34         lockfile = (char *)xmalloc(
35                 sizeof(PID_DIR) + sizeof(FETCHMAIL_PIDFILE) + 1);
36         strcpy(lockfile, PID_DIR);
37         strcat(lockfile, "/");
38         strcat(lockfile, FETCHMAIL_PIDFILE);
39     } else {
40         lockfile = (char *)xmalloc(strlen(fmhome)+sizeof(FETCHMAIL_PIDFILE)+2);
41         strcpy(lockfile, fmhome);
42         strcat(lockfile, "/");
43         if (fmhome == home)
44            strcat(lockfile, ".");
45         strcat(lockfile, FETCHMAIL_PIDFILE);
46     }
47 #undef FETCHMAIL_PIDFILE
48 }
49
50 static void unlockit(void)
51 /* must-do actions for exit (but we can't count on being able to do malloc) */
52 {
53     if (lockfile && lock_acquired)
54         unlink(lockfile);
55 }
56
57 void lock_dispose(void)
58 /* arrange for a lock to be removed on process exit */
59 {
60 #ifdef HAVE_ATEXIT
61     atexit(unlockit);
62 #endif
63 }
64
65 int lock_state(void)
66 {
67     int         pid, st;
68     FILE        *lockfp;
69     int         bkgd = FALSE;
70
71     if ((lockfp = fopen(lockfile, "r")) != NULL)
72     {
73         int args = fscanf(lockfp, "%d %d", &pid, &st);
74         bkgd = (args == 2);
75
76         if (ferror(lockfp)) {
77             fprintf(stderr, GT_("fetchmail: error reading lockfile \"%s\": %s\n"),
78                     lockfile, strerror(errno));
79             exit(PS_EXCLUDE);
80         }
81
82         if (args == 0 || kill(pid, 0) == -1) {
83             fprintf(stderr,GT_("fetchmail: removing stale lockfile\n"));
84             pid = 0;
85             if (unlink(lockfile))
86                 perror(lockfile);
87         }
88         fclose(lockfp); /* not checking should be safe, file mode was "r" */
89     } else {
90         pid = 0;
91         if (errno != ENOENT) {
92             fprintf(stderr, GT_("fetchmail: error opening lockfile \"%s\": %s\n"),
93                     lockfile, strerror(errno));
94             exit(PS_EXCLUDE);
95         }
96     }
97
98     return(bkgd ? -pid : pid);
99 }
100
101 void lock_assert(void)
102 /* assert that we already posess a lock */
103 {
104     lock_acquired = TRUE;
105 }
106
107 void lock_or_die(void)
108 /* get a lock on a given host or exit */
109 {
110     int fd;
111     char        tmpbuf[50];
112
113     if (!lock_acquired) {
114         int e = 0;
115
116         if ((fd = open(lockfile, O_WRONLY|O_CREAT|O_EXCL, 0666)) != -1) {
117             snprintf(tmpbuf, sizeof(tmpbuf), "%ld\n", (long)getpid());
118             if (write(fd, tmpbuf, strlen(tmpbuf)) < strlen(tmpbuf)) e = 1;
119             if (run.poll_interval)
120             {
121                 snprintf(tmpbuf, sizeof(tmpbuf), "%d\n", run.poll_interval);
122                 if (write(fd, tmpbuf, strlen(tmpbuf)) < strlen(tmpbuf)) e = 1;
123             }
124             if (fsync(fd)) e = 1;
125             if (close(fd)) e = 1;
126         } else {
127             e = 1;
128         }
129         if (e == 0) {
130             lock_acquired = TRUE;
131         } else {
132             perror(lockfile);
133             fprintf(stderr, GT_("fetchmail: lock creation failed.\n"));
134             exit(PS_EXCLUDE);
135         }
136     }
137 }
138
139 void fm_lock_release(void)
140 /* release a lock on a given host */
141 {
142     unlink(lockfile);
143 }
144 /* lock.c ends here */