simplifications
[apps/pfixtools.git] / main-postlicyd.c
1 /******************************************************************************/
2 /*          pfixtools: a collection of postfix related tools                  */
3 /*          ~~~~~~~~~                                                         */
4 /*  ________________________________________________________________________  */
5 /*                                                                            */
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 /*                                                                            */
10 /*  1. Redistributions of source code must retain the above copyright         */
11 /*     notice, this list of conditions and the following disclaimer.          */
12 /*  2. Redistributions in binary form must reproduce the above copyright      */
13 /*     notice, this list of conditions and the following disclaimer in the    */
14 /*     documentation and/or other materials provided with the distribution.   */
15 /*  3. The names of its contributors may not be used to endorse or promote    */
16 /*     products derived from this software without specific prior written     */
17 /*     permission.                                                            */
18 /*                                                                            */
19 /*  THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND   */
20 /*  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE     */
21 /*  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR        */
22 /*  PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS    */
23 /*  BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR    */
24 /*  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF      */
25 /*  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS  */
26 /*  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN   */
27 /*  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)   */
28 /*  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF    */
29 /*  THE POSSIBILITY OF SUCH DAMAGE.                                           */
30 /******************************************************************************/
31
32 /*
33  * Copyright © 2006-2007 Pierre Habouzit
34  */
35
36 #include <getopt.h>
37
38 #include "common.h"
39 #include "epoll.h"
40
41 /* administrivia {{{ */
42
43 static int main_initialize(void)
44 {
45     openlog("postlicyd", LOG_PID, LOG_MAIL);
46     signal(SIGPIPE, SIG_IGN);
47     signal(SIGINT,  &common_sighandler);
48     signal(SIGTERM, &common_sighandler);
49     signal(SIGSEGV, &common_sighandler);
50     syslog(LOG_INFO, "Starting...");
51     return 0;
52 }
53
54 static void main_shutdown(void)
55 {
56     closelog();
57 }
58
59 module_init(main_initialize);
60 module_exit(main_shutdown);
61
62 /* }}} */
63
64 void *job_run(void *_fd)
65 {
66     int fd = (intptr_t)_fd;
67
68     close(fd);
69     pthread_detach(pthread_self());
70     return NULL;
71 }
72
73 static int main_loop(void)
74 {
75     int exitcode = EXIT_SUCCESS;
76     int sock = -1;
77
78     while (!sigint) {
79         int fd = accept(sock, NULL, 0);
80         pthread_t dummy;
81
82         if (fd < 0) {
83             if (errno != EINTR || errno != EAGAIN)
84                 UNIXERR("accept");
85             continue;
86         }
87
88         pthread_create(&dummy, NULL, job_run, (void *)(intptr_t)fd);
89     }
90
91     close(sock);
92     return exitcode;
93 }
94
95 int main(int argc, char *argv[])
96 {
97     const char *pidfile = NULL;
98     FILE *f = NULL;
99     int res;
100
101     for (int c = 0; (c = getopt(argc, argv, "h" "p:")) >= 0; ) {
102         switch (c) {
103           case 'p':
104             pidfile = optarg;
105             break;
106           default:
107             //usage();
108             return EXIT_FAILURE;
109         }
110     }
111
112     if (pidfile) {
113         f = fopen(pidfile, "w");
114         if (!f) {
115             syslog(LOG_CRIT, "unable to write pidfile %s", pidfile);
116         }
117         fprintf(f, "%d\n", getpid());
118         fflush(f);
119     }
120
121     if (daemon_detach() < 0) {
122         syslog(LOG_CRIT, "unable to fork");
123         return EXIT_FAILURE;
124     }
125
126     if (f) {
127         rewind(f);
128         ftruncate(fileno(f), 0);
129         fprintf(f, "%d\n", getpid());
130         fflush(f);
131     }
132     res = main_loop();
133     if (f) {
134         rewind(f);
135         ftruncate(fileno(f), 0);
136         fclose(f);
137         f = NULL;
138     }
139     syslog(LOG_INFO, "Stopping...");
140     return res;
141 }