prepare hooking of policy.c 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 "threads.h"
39 #include "policy.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 static int main_loop(void)
76 {
77     int exitcode = EXIT_SUCCESS;
78     int sock = -1;
79
80     while (!sigint) {
81         int fd = accept(sock, NULL, 0);
82         if (fd < 0) {
83             if (errno != EINTR || errno != EAGAIN)
84                 UNIXERR("accept");
85             continue;
86         }
87
88         thread_launch(policy_run, fd, NULL);
89         threads_join();
90     }
91
92     close(sock);
93     return exitcode;
94 }
95
96 int main(int argc, char *argv[])
97 {
98     const char *pidfile = 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 (argc - optind != 1) {
113         usage();
114         return EXIT_FAILURE;
115     }
116
117     if (pidfile_open(pidfile) < 0) {
118         syslog(LOG_CRIT, "unable to write pidfile %s", pidfile);
119         return EXIT_FAILURE;
120     }
121
122     if (daemon_detach() < 0) {
123         syslog(LOG_CRIT, "unable to fork");
124         return EXIT_FAILURE;
125     }
126
127     pidfile_refresh();
128     res = main_loop();
129     syslog(LOG_INFO, "Stopping...");
130     return res;
131 }