Cleanup daemon startup.
[apps/pfixtools.git] / postlicyd / 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  * Copyright © 2008 Florent Bruneau
35  */
36
37 #include <getopt.h>
38
39 #include "buffer.h"
40 #include "common.h"
41 #include "epoll.h"
42 #include "policy_tokens.h"
43 #include "server.h"
44 #include "query.h"
45 #include "config.h"
46
47 #define DAEMON_NAME             "postlicyd"
48 #define DEFAULT_PORT            10000
49 #define RUNAS_USER              "nobody"
50 #define RUNAS_GROUP             "nogroup"
51
52 DECLARE_MAIN
53
54 static void *query_starter(server_t* server)
55 {
56     return query_new();
57 }
58
59 static bool config_refresh(void *config)
60 {
61     return config_reload(config);
62 }
63
64 __attribute__((format(printf,2,0)))
65 static void policy_answer(server_t *pcy, const char *fmt, ...)
66 {
67     va_list args;
68     const query_t* query = pcy->data;
69
70     buffer_addstr(&pcy->obuf, "action=");
71     va_start(args, fmt);
72     buffer_addvf(&pcy->obuf, fmt, args);
73     va_end(args);
74     buffer_addstr(&pcy->obuf, "\n\n");
75     buffer_consume(&pcy->ibuf, query->eoq - pcy->ibuf.data);
76     epoll_modify(pcy->fd, EPOLLIN | EPOLLOUT, pcy);
77 }
78
79 static bool policy_process(server_t *pcy, const config_t *config)
80 {
81     const query_t* query = pcy->data;
82     const filter_t *filter;
83     if (config->entry_points[query->state] == -1) {
84         syslog(LOG_WARNING, "no filter defined for current protocol_state (%d)", query->state);
85         return false;
86     }
87     filter = array_ptr(config->filters, config->entry_points[query->state]);
88     while (true) {
89         const filter_hook_t *hook = filter_run(filter, query);
90         if (hook == NULL) {
91             syslog(LOG_WARNING, "request aborted");
92             return false;
93         } else if (hook->postfix) {
94             policy_answer(pcy, "%s", hook->value);
95             return true;
96         } else {
97             filter = array_ptr(config->filters, hook->filter_id);
98         }
99     }
100 }
101
102 static int policy_run(server_t *pcy, void* vconfig)
103 {
104     ssize_t search_offs = MAX(0, (ssize_t)(pcy->ibuf.len - 1));
105     int nb = buffer_read(&pcy->ibuf, pcy->fd, -1);
106     const char *eoq;
107     query_t  *query  = pcy->data;
108     const config_t *config = vconfig;
109
110     if (nb < 0) {
111         if (errno == EAGAIN || errno == EINTR)
112             return 0;
113         UNIXERR("read");
114         return -1;
115     }
116     if (nb == 0) {
117         if (pcy->ibuf.len)
118             syslog(LOG_ERR, "unexpected end of data");
119         return -1;
120     }
121
122     if (!(eoq = strstr(pcy->ibuf.data + search_offs, "\n\n")))
123         return 0;
124
125     if (!query_parse(pcy->data, pcy->ibuf.data))
126         return -1;
127     query->eoq = eoq + strlen("\n\n");
128     epoll_modify(pcy->fd, 0, pcy);
129     return policy_process(pcy, config) ? 0 : -1;
130 }
131
132 int start_listener(int port)
133 {
134     return start_server(port, NULL, NULL);
135 }
136
137 /* administrivia {{{ */
138
139 void usage(void)
140 {
141     fputs("usage: "DAEMON_NAME" [options] config\n"
142           "\n"
143           "Options:\n"
144           "    -l <port>    port to listen to\n"
145           "    -p <pidfile> file to write our pid to\n"
146           "    -f           stay in foreground\n"
147          , stderr);
148 }
149
150 /* }}} */
151
152 int main(int argc, char *argv[])
153 {
154     bool unsafe = false;
155     const char *pidfile = NULL;
156     bool daemonize = true;
157     int port = DEFAULT_PORT;
158     bool port_from_cli = false;
159
160     for (int c = 0; (c = getopt(argc, argv, "hf" "l:p:")) >= 0; ) {
161         switch (c) {
162           case 'p':
163             pidfile = optarg;
164             break;
165           case 'u':
166             unsafe = true;
167             break;
168           case 'l':
169             port = atoi(optarg);
170             port_from_cli = true;
171             break;
172           case 'f':
173             daemonize = false;
174             break;
175           default:
176             usage();
177             return EXIT_FAILURE;
178         }
179     }
180
181     if (argc - optind != 1) {
182         usage();
183         return EXIT_FAILURE;
184     }
185
186     if (drop_privileges(RUNAS_USER, RUNAS_GROUP) < 0) {
187         syslog(LOG_CRIT, "unable to drop privileges");
188         return EXIT_FAILURE;
189     }
190
191     config_t *config = config_read(argv[optind]);
192     if (config == NULL) {
193         return EXIT_FAILURE;
194     }
195     if (port_from_cli || config->port == 0) {
196         config->port = port;
197     }
198
199     if (common_setup(pidfile, true, NULL, NULL, daemonize) != EXIT_SUCCESS
200         || start_listener(config->port) < 0) {
201         config_delete(&config);
202         return EXIT_FAILURE;
203     } else {
204         int res = server_loop(query_starter, (delete_client_t)query_delete,
205                               policy_run, config_refresh, config);
206         config_delete(&config);
207         return res;
208     }
209 }