Asynchronous DNS queries on iplist.
[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 "config.h"
45 #include "postlicyd.h"
46
47 #define DAEMON_NAME             "postlicyd"
48 #define DAEMON_VERSION          "0.2"
49 #define DEFAULT_PORT            10000
50 #define RUNAS_USER              "nobody"
51 #define RUNAS_GROUP             "nogroup"
52
53 DECLARE_MAIN
54
55 static config_t *config = NULL;
56
57
58 static void *query_starter(server_t* server)
59 {
60     query_context_t *context = p_new(query_context_t, 1);
61     filter_context_prepare(&context->context, context);
62     return context;
63 }
64
65 static void query_stopper(void *data)
66 {
67     query_context_t **context = data;
68     if (*context) {
69         filter_context_wipe(&(*context)->context);
70         p_delete(context);
71     }
72 }
73
74 static bool config_refresh(void *mconfig)
75 {
76     return config_reload(mconfig);
77 }
78
79 __attribute__((format(printf,2,0)))
80 static void policy_answer(server_t *pcy, const char *fmt, ...)
81 {
82     va_list args;
83     query_context_t *context = pcy->data;
84     const query_t* query = &context->query;
85
86     buffer_addstr(&pcy->obuf, "action=");
87     va_start(args, fmt);
88     buffer_addvf(&pcy->obuf, fmt, args);
89     va_end(args);
90     buffer_addstr(&pcy->obuf, "\n\n");
91     buffer_consume(&pcy->ibuf, query->eoq - pcy->ibuf.data);
92     epoll_modify(pcy->fd, EPOLLIN | EPOLLOUT, pcy);
93 }
94
95 static bool policy_process(server_t *pcy, const config_t *mconfig)
96 {
97     query_context_t *context = pcy->data;
98     const query_t* query = &context->query;
99     const filter_t *filter;
100     if (mconfig->entry_points[query->state] == -1) {
101         warn("no filter defined for current protocol_state (%d)", query->state);
102         return false;
103     }
104     if (context->context.current_filter != NULL) {
105         filter = context->context.current_filter;
106     } else {
107         filter = array_ptr(mconfig->filters, mconfig->entry_points[query->state]);
108     }
109     context->context.current_filter = NULL;
110     while (true) {
111         const filter_hook_t *hook = filter_run(filter, query, &context->context);
112         if (hook == NULL) {
113             warn("request client=%s, from=<%s>, to=<%s>: aborted",
114                  query->client_name,
115                  query->sender == NULL ? "undefined" : query->sender,
116                  query->recipient == NULL ? "undefined" : query->recipient);
117             return false;
118         } else if (hook->async) {
119             debug("request client=%s, from=<%s>, to=<%s>: "
120                   "asynchronous filter from filter %s",
121                    query->client_name,
122                    query->sender == NULL ? "undefined" : query->sender,
123                    query->recipient == NULL ? "undefined" : query->recipient,
124                    filter->name);
125             return true;
126         } else if (hook->postfix) {
127             info("request client=%s, from=<%s>, to=<%s>: "
128                  "awswer %s from filter %s: \"%s\"",
129                  query->client_name,
130                  query->sender == NULL ? "undefined" : query->sender,
131                  query->recipient == NULL ? "undefined" : query->recipient,
132                  htokens[hook->type], filter->name, hook->value);
133             policy_answer(pcy, "%s", hook->value);
134             return true;
135         } else {
136             debug("request client=%s, from=<%s>, to=<%s>: "
137                    "awswer %s from filter %s: next filter %s",
138                    query->client_name,
139                    query->sender == NULL ? "undefined" : query->sender,
140                    query->recipient == NULL ? "undefined" : query->recipient,
141                    htokens[hook->type], filter->name,
142                    (array_ptr(mconfig->filters, hook->filter_id))->name);
143             filter = array_ptr(mconfig->filters, hook->filter_id);
144         }
145     }
146 }
147
148 static int policy_run(server_t *pcy, void* vconfig)
149 {
150     int search_offs = MAX(0, (int)(pcy->ibuf.len - 1));
151     int nb = buffer_read(&pcy->ibuf, pcy->fd, -1);
152     const char *eoq;
153     query_context_t *context = pcy->data;
154     query_t  *query  = &context->query;
155     context->server = pcy;
156     const config_t *mconfig = vconfig;
157
158     if (nb < 0) {
159         if (errno == EAGAIN || errno == EINTR)
160             return 0;
161         UNIXERR("read");
162         return -1;
163     }
164     if (nb == 0) {
165         if (pcy->ibuf.len)
166             err("unexpected end of data");
167         return -1;
168     }
169
170     if (!(eoq = strstr(pcy->ibuf.data + search_offs, "\n\n")))
171         return 0;
172
173     if (!query_parse(pcy->data, pcy->ibuf.data))
174         return -1;
175     query->eoq = eoq + strlen("\n\n");
176     epoll_modify(pcy->fd, 0, pcy);
177     return policy_process(pcy, mconfig) ? 0 : -1;
178 }
179
180 static void policy_async_handler(filter_context_t *context,
181                                  const filter_hook_t *hook)
182 {
183     const filter_t *filter = context->current_filter;
184     query_context_t *qctx  = context->data;
185     query_t         *query = &qctx->query;
186     server_t        *server = qctx->server;
187
188     debug("request client=%s, from=<%s>, to=<%s>: "
189            "awswer %s from filter %s: next filter %s",
190            query->client_name,
191            query->sender == NULL ? "undefined" : query->sender,
192            query->recipient == NULL ? "undefined" : query->recipient,
193            htokens[hook->type], filter->name,
194            (array_ptr(config->filters, hook->filter_id))->name);
195     context->current_filter = array_ptr(config->filters, hook->filter_id);
196
197     if (!policy_process(server, config)) {
198         server_release(server);
199     }
200 }
201
202 static int postlicyd_init(void)
203 {
204     filter_async_handler_register(policy_async_handler);
205     return 0;
206 }
207 module_init(postlicyd_init);
208
209 int start_listener(int port)
210 {
211     return start_server(port, NULL, NULL);
212 }
213
214 /* administrivia {{{ */
215
216 void usage(void)
217 {
218     fputs("usage: "DAEMON_NAME" [options] config\n"
219           "\n"
220           "Options:\n"
221           "    -l <port>    port to listen to\n"
222           "    -p <pidfile> file to write our pid to\n"
223           "    -f           stay in foreground\n"
224           "    -d           grow logging level\n"
225           "    -u           unsafe mode (don't drop privileges)\n"
226          , stderr);
227 }
228
229 /* }}} */
230
231 int main(int argc, char *argv[])
232 {
233     bool unsafe = false;
234     const char *pidfile = NULL;
235     bool daemonize = true;
236     int port = DEFAULT_PORT;
237     bool port_from_cli = false;
238
239     for (int c = 0; (c = getopt(argc, argv, "ufd" "l:p:")) >= 0; ) {
240         switch (c) {
241           case 'p':
242             pidfile = optarg;
243             break;
244           case 'u':
245             unsafe = true;
246             break;
247           case 'l':
248             port = atoi(optarg);
249             port_from_cli = true;
250             break;
251           case 'f':
252             daemonize = false;
253             break;
254           case 'd':
255             ++log_level;
256             break;
257           default:
258             usage();
259             return EXIT_FAILURE;
260         }
261     }
262
263     if (!daemonize) {
264         log_syslog = false;
265     }
266
267     if (argc - optind != 1) {
268         usage();
269         return EXIT_FAILURE;
270     }
271
272     info("starting %s v%s...", DAEMON_NAME, DAEMON_VERSION);
273
274     if (pidfile_open(pidfile) < 0) {
275         crit("unable to write pidfile %s", pidfile);
276         return EXIT_FAILURE;
277     }
278
279     if (drop_privileges(RUNAS_USER, RUNAS_GROUP) < 0) {
280         crit("unable to drop privileges");
281         return EXIT_FAILURE;
282     }
283
284     config = config_read(argv[optind]);
285     if (config == NULL) {
286         return EXIT_FAILURE;
287     }
288     if (port_from_cli || config->port == 0) {
289         config->port = port;
290     }
291
292     if (daemonize && daemon_detach() < 0) {
293         crit("unable to fork");
294         return EXIT_FAILURE;
295     }
296
297     pidfile_refresh();
298
299     if (start_listener(config->port) < 0) {
300         return EXIT_FAILURE;
301     } else {
302         return server_loop(query_starter, query_stopper,
303                            policy_run, config_refresh, config);
304     }
305 }