move license in mk/
[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 /* 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(int fd, void *data)
65 {
66     close(fd);
67     return NULL;
68 }
69
70 static int main_loop(void)
71 {
72     int exitcode = EXIT_SUCCESS;
73     int sock = -1;
74
75     while (!sigint) {
76         int fd = accept(sock, NULL, 0);
77         if (fd < 0) {
78             if (errno != EINTR || errno != EAGAIN)
79                 UNIXERR("accept");
80             continue;
81         }
82
83         thread_launch(job_run, fd, NULL);
84         threads_join();
85     }
86
87     close(sock);
88     return exitcode;
89 }
90
91 int main(int argc, char *argv[])
92 {
93     const char *pidfile = NULL;
94     FILE *f = NULL;
95     int res;
96
97     for (int c = 0; (c = getopt(argc, argv, "h" "p:")) >= 0; ) {
98         switch (c) {
99           case 'p':
100             pidfile = optarg;
101             break;
102           default:
103             //usage();
104             return EXIT_FAILURE;
105         }
106     }
107
108     if (pidfile) {
109         f = fopen(pidfile, "w");
110         if (!f) {
111             syslog(LOG_CRIT, "unable to write pidfile %s", pidfile);
112         }
113         fprintf(f, "%d\n", getpid());
114         fflush(f);
115     }
116
117     if (daemon_detach() < 0) {
118         syslog(LOG_CRIT, "unable to fork");
119         return EXIT_FAILURE;
120     }
121
122     if (f) {
123         rewind(f);
124         ftruncate(fileno(f), 0);
125         fprintf(f, "%d\n", getpid());
126         fflush(f);
127     }
128     res = main_loop();
129     if (f) {
130         rewind(f);
131         ftruncate(fileno(f), 0);
132         fclose(f);
133         f = NULL;
134     }
135     syslog(LOG_INFO, "Stopping...");
136     return res;
137 }