Just one more thing...
[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 "policy_tokens.h"
42 #include "server.h"
43 #include "config.h"
44 #include "postlicyd.h"
45
46 #define DAEMON_NAME             "postlicyd"
47 #define DAEMON_VERSION          "0.3"
48 #define DEFAULT_PORT            10000
49 #define RUNAS_USER              "nobody"
50 #define RUNAS_GROUP             "nogroup"
51
52 DECLARE_MAIN
53
54 static config_t *config  = NULL;
55 static bool refresh      = false;
56 static PA(server_t) busy = ARRAY_INIT;
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     refresh = true;
77     if (filter_running > 0) {
78         return true;
79     }
80     bool ret = config_reload(mconfig);
81     foreach (server_t **server, busy) {
82         server_ro(*server);
83     }}
84     array_len(busy) = 0;
85     refresh = false;
86     return ret;
87 }
88
89 static void policy_answer(server_t *pcy, const char *message)
90 {
91     query_context_t *context = pcy->data;
92     const query_t* query = &context->query;
93
94     buffer_addstr(&pcy->obuf, "action=");
95     buffer_ensure(&pcy->obuf, m_strlen(message) + 64);
96
97     ssize_t size = array_size(pcy->obuf) - array_len(pcy->obuf);
98     ssize_t format_size = query_format(array_ptr(pcy->obuf, array_len(pcy->obuf)),
99                                        size, message, query);
100     if (format_size == -1) {
101         buffer_addstr(&pcy->obuf, message);
102     } else if (format_size > size) {
103         buffer_ensure(&pcy->obuf, format_size + 1);
104         query_format(array_ptr(pcy->obuf, array_len(pcy->obuf)),
105                      array_size(pcy->obuf) - array_len(pcy->obuf),
106                      message, query);
107         array_len(pcy->obuf) += format_size;
108     } else {
109         array_len(pcy->obuf) += format_size;
110     }
111     buffer_addstr(&pcy->obuf, "\n\n");
112     buffer_consume(&pcy->ibuf, query->eoq - pcy->ibuf.data);
113     server_rw(pcy);
114 }
115
116 static const filter_t *next_filter(server_t *pcy, const filter_t *filter,
117                                    const query_t *query, const filter_hook_t *hook, bool *ok) {
118     if (hook == NULL) {
119         warn("request client=%s, from=<%s>, to=<%s>: aborted",
120              query->client_name,
121              query->sender == NULL ? "undefined" : query->sender,
122              query->recipient == NULL ? "undefined" : query->recipient);
123         *ok = false;
124         return NULL;
125     } else if (hook->async) {
126         debug("request client=%s, from=<%s>, to=<%s>: "
127               "asynchronous filter from filter %s",
128                query->client_name,
129                query->sender == NULL ? "undefined" : query->sender,
130                query->recipient == NULL ? "undefined" : query->recipient,
131                filter->name);
132         *ok = true;
133         return NULL;
134     } else if (hook->postfix) {
135         info("request client=%s, from=<%s>, to=<%s>: "
136              "awswer %s from filter %s: \"%s\"",
137              query->client_name,
138              query->sender == NULL ? "undefined" : query->sender,
139              query->recipient == NULL ? "undefined" : query->recipient,
140              htokens[hook->type], filter->name, hook->value);
141         policy_answer(pcy, hook->value);
142         *ok = true;
143         return NULL;
144     } else {
145         debug("request client=%s, from=<%s>, to=<%s>: "
146                "awswer %s from filter %s: next filter %s",
147                query->client_name,
148                query->sender == NULL ? "undefined" : query->sender,
149                query->recipient == NULL ? "undefined" : query->recipient,
150                htokens[hook->type], filter->name,
151                (array_ptr(config->filters, hook->filter_id))->name);
152         return array_ptr(config->filters, hook->filter_id);
153     }
154 }
155
156 static bool policy_process(server_t *pcy, const config_t *mconfig)
157 {
158     query_context_t *context = pcy->data;
159     const query_t* query = &context->query;
160     const filter_t *filter;
161     if (mconfig->entry_points[query->state] == -1) {
162         warn("no filter defined for current protocol_state (%d)", query->state);
163         return false;
164     }
165     if (context->context.current_filter != NULL) {
166         filter = context->context.current_filter;
167     } else {
168         filter = array_ptr(mconfig->filters, mconfig->entry_points[query->state]);
169     }
170     context->context.current_filter = NULL;
171     while (true) {
172         bool  ok = false;
173         const filter_hook_t *hook = filter_run(filter, query, &context->context);
174         filter = next_filter(pcy, filter, query, hook, &ok);
175         if (filter == NULL) {
176             return ok;
177         }
178     }
179 }
180
181 static int policy_run(server_t *pcy, void* vconfig)
182 {
183     if (refresh) {
184         array_add(busy, pcy);
185         return 0;
186     }
187
188     int search_offs = MAX(0, (int)(pcy->ibuf.len - 1));
189     int nb = buffer_read(&pcy->ibuf, pcy->fd, -1);
190     const char *eoq;
191     query_context_t *context = pcy->data;
192     query_t  *query  = &context->query;
193     context->server = pcy;
194     const config_t *mconfig = vconfig;
195
196     if (nb < 0) {
197         if (errno == EAGAIN || errno == EINTR)
198             return 0;
199         UNIXERR("read");
200         return -1;
201     }
202     if (nb == 0) {
203         if (pcy->ibuf.len)
204             err("unexpected end of data");
205         return -1;
206     }
207
208     if (!(eoq = strstr(pcy->ibuf.data + search_offs, "\n\n")))
209         return 0;
210
211     if (!query_parse(pcy->data, pcy->ibuf.data))
212         return -1;
213     query->eoq = eoq + strlen("\n\n");
214     server_none(pcy);
215     return policy_process(pcy, mconfig) ? 0 : -1;
216 }
217
218 static void policy_async_handler(filter_context_t *context,
219                                  const filter_hook_t *hook)
220 {
221     bool ok = false;
222     const filter_t *filter = context->current_filter;
223     query_context_t *qctx  = context->data;
224     query_t         *query = &qctx->query;
225     server_t        *server = qctx->server;
226
227     context->current_filter = next_filter(server, filter, query, hook, &ok);
228     if (context->current_filter != NULL) {
229         ok = policy_process(server, config);
230     }
231     if (!ok) {
232         server_release(server);
233     }
234     if (refresh && filter_running == 0) {
235         config_refresh(config);
236     }
237 }
238
239 static int postlicyd_init(void)
240 {
241     filter_async_handler_register(policy_async_handler);
242     return 0;
243 }
244
245 static void postlicyd_shutdown(void)
246 {
247     array_deep_wipe(busy, server_delete);
248 }
249 module_init(postlicyd_init);
250 module_exit(postlicyd_shutdown);
251
252 int start_listener(int port)
253 {
254     return start_server(port, NULL, NULL);
255 }
256
257 /* administrivia {{{ */
258
259 void usage(void)
260 {
261     fputs("usage: "DAEMON_NAME" [options] config\n"
262           "\n"
263           "Options:\n"
264           "    -l <port>    port to listen to\n"
265           "    -p <pidfile> file to write our pid to\n"
266           "    -f           stay in foreground\n"
267           "    -d           grow logging level\n"
268           "    -u           unsafe mode (don't drop privileges)\n"
269          , stderr);
270 }
271
272 /* }}} */
273
274 int main(int argc, char *argv[])
275 {
276     bool unsafe = false;
277     const char *pidfile = NULL;
278     bool daemonize = true;
279     int port = DEFAULT_PORT;
280     bool port_from_cli = false;
281
282     for (int c = 0; (c = getopt(argc, argv, "ufd" "l:p:")) >= 0; ) {
283         switch (c) {
284           case 'p':
285             pidfile = optarg;
286             break;
287           case 'u':
288             unsafe = true;
289             break;
290           case 'l':
291             port = atoi(optarg);
292             port_from_cli = true;
293             break;
294           case 'f':
295             daemonize = false;
296             break;
297           case 'd':
298             ++log_level;
299             break;
300           default:
301             usage();
302             return EXIT_FAILURE;
303         }
304     }
305
306     if (!daemonize) {
307         log_syslog = false;
308     }
309
310     if (argc - optind != 1) {
311         usage();
312         return EXIT_FAILURE;
313     }
314
315     info("starting %s v%s...", DAEMON_NAME, DAEMON_VERSION);
316
317     if (pidfile_open(pidfile) < 0) {
318         crit("unable to write pidfile %s", pidfile);
319         return EXIT_FAILURE;
320     }
321
322     if (drop_privileges(RUNAS_USER, RUNAS_GROUP) < 0) {
323         crit("unable to drop privileges");
324         return EXIT_FAILURE;
325     }
326
327     config = config_read(argv[optind]);
328     if (config == NULL) {
329         return EXIT_FAILURE;
330     }
331     if (port_from_cli || config->port == 0) {
332         config->port = port;
333     }
334
335     if (daemonize && daemon_detach() < 0) {
336         crit("unable to fork");
337         return EXIT_FAILURE;
338     }
339
340     pidfile_refresh();
341
342     if (start_listener(config->port) < 0) {
343         return EXIT_FAILURE;
344     } else {
345         return server_loop(query_starter, query_stopper,
346                            policy_run, config_refresh, config);
347     }
348 }