Begin work on the greylist module.
[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 "epoll.h"
39 #include "threads.h"
40
41 #define DAEMON_NAME             "postlicyd"
42
43 /* administrivia {{{ */
44
45 static int main_initialize(void)
46 {
47     openlog("postlicyd", LOG_PID, LOG_MAIL);
48     signal(SIGPIPE, SIG_IGN);
49     signal(SIGINT,  &common_sighandler);
50     signal(SIGTERM, &common_sighandler);
51     signal(SIGSEGV, &common_sighandler);
52     syslog(LOG_INFO, "Starting...");
53     return 0;
54 }
55
56 static void main_shutdown(void)
57 {
58     closelog();
59 }
60
61 module_init(main_initialize);
62 module_exit(main_shutdown);
63
64 void usage(void)
65 {
66     fputs("usage: "DAEMON_NAME" [options] config\n"
67           "\n"
68           "Options:\n"
69           "    -p <pidfile> file to write our pid to\n"
70          , stderr);
71 }
72
73 /* }}} */
74
75 void *job_run(int fd, void *data)
76 {
77     close(fd);
78     return NULL;
79 }
80
81 static int main_loop(void)
82 {
83     int exitcode = EXIT_SUCCESS;
84     int sock = -1;
85
86     while (!sigint) {
87         int fd = accept(sock, NULL, 0);
88         if (fd < 0) {
89             if (errno != EINTR || errno != EAGAIN)
90                 UNIXERR("accept");
91             continue;
92         }
93
94         thread_launch(job_run, fd, NULL);
95         threads_join();
96     }
97
98     close(sock);
99     return exitcode;
100 }
101
102 int main(int argc, char *argv[])
103 {
104     const char *pidfile = NULL;
105     int res;
106
107     for (int c = 0; (c = getopt(argc, argv, "h" "p:")) >= 0; ) {
108         switch (c) {
109           case 'p':
110             pidfile = optarg;
111             break;
112           default:
113             usage();
114             return EXIT_FAILURE;
115         }
116     }
117
118     if (argc - optind != 1) {
119         usage();
120         return EXIT_FAILURE;
121     }
122
123     if (pidfile_open(pidfile) < 0) {
124         syslog(LOG_CRIT, "unable to write pidfile %s", pidfile);
125         return EXIT_FAILURE;
126     }
127
128     if (daemon_detach() < 0) {
129         syslog(LOG_CRIT, "unable to fork");
130         return EXIT_FAILURE;
131     }
132
133     pidfile_refresh();
134     res = main_loop();
135     syslog(LOG_INFO, "Stopping...");
136     return res;
137 }