Implement usage
[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     FILE *f = NULL;
106     int res;
107
108     for (int c = 0; (c = getopt(argc, argv, "h" "p:")) >= 0; ) {
109         switch (c) {
110           case 'p':
111             pidfile = optarg;
112             break;
113           default:
114             usage();
115             return EXIT_FAILURE;
116         }
117     }
118
119     if (argc - optind != 1) {
120         usage();
121         return EXIT_FAILURE;
122     }
123
124     if (pidfile) {
125         f = fopen(pidfile, "w");
126         if (!f) {
127             syslog(LOG_CRIT, "unable to write pidfile %s", pidfile);
128         }
129         fprintf(f, "%d\n", getpid());
130         fflush(f);
131     }
132
133     if (daemon_detach() < 0) {
134         syslog(LOG_CRIT, "unable to fork");
135         return EXIT_FAILURE;
136     }
137
138     if (f) {
139         rewind(f);
140         ftruncate(fileno(f), 0);
141         fprintf(f, "%d\n", getpid());
142         fflush(f);
143     }
144     res = main_loop();
145     if (f) {
146         rewind(f);
147         ftruncate(fileno(f), 0);
148         fclose(f);
149         f = NULL;
150     }
151     syslog(LOG_INFO, "Stopping...");
152     return res;
153 }