97afe21d1daa54e0fc98391ee1a61ff14f66c935
[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 "buffer.h"
39 #include "common.h"
40 #include "epoll.h"
41 #include "tokens.h"
42 #include "server.h"
43
44 #define DAEMON_NAME             "postlicyd"
45 #define DEFAULT_PORT            10000
46 #define RUNAS_USER              "nobody"
47 #define RUNAS_GROUP             "nogroup"
48
49 enum smtp_state {
50     SMTP_UNKNOWN,
51     SMTP_CONNECT,
52     SMTP_EHLO,
53     SMTP_HELO = SMTP_EHLO,
54     SMTP_MAIL,
55     SMTP_RCPT,
56     SMTP_DATA,
57     SMTP_END_OF_MESSAGE,
58     SMTP_VRFY,
59     SMTP_ETRN,
60 };
61
62 /* \see http://www.postfix.org/SMTPD_POLICY_README.html */
63 typedef struct query_t {
64     unsigned state : 4;
65     unsigned esmtp : 1;
66
67     const char *helo_name;
68     const char *queue_id;
69     const char *sender;
70     const char *recipient;
71     const char *recipient_count;
72     const char *client_address;
73     const char *client_name;
74     const char *reverse_client_name;
75     const char *instance;
76
77     /* postfix 2.2+ */
78     const char *sasl_method;
79     const char *sasl_username;
80     const char *sasl_sender;
81     const char *size;
82     const char *ccert_subject;
83     const char *ccert_issuer;
84     const char *ccsert_fingerprint;
85
86     /* postfix 2.3+ */
87     const char *encryption_protocol;
88     const char *encryption_cipher;
89     const char *encryption_keysize;
90     const char *etrn_domain;
91
92     const char *eoq;
93 } query_t;
94
95 static void* query_new()
96 {
97     return p_new(query_t, 1);
98 }
99
100 static void query_delete(void *arg)
101 {
102     query_t **query = arg;
103     if (*query) {
104         p_delete(query);
105     }
106 }
107
108 static int postfix_parsejob(query_t *query, char *p)
109 {
110 #define PARSE_CHECK(expr, error, ...)                                        \
111     do {                                                                     \
112         if (!(expr)) {                                                       \
113             syslog(LOG_ERR, error, ##__VA_ARGS__);                           \
114             return -1;                                                       \
115         }                                                                    \
116     } while (0)
117
118     p_clear(query, 1);
119     while (*p != '\n') {
120         char *k, *v;
121         int klen, vlen, vtk;
122
123         while (isblank(*p))
124             p++;
125         p = strchr(k = p, '=');
126         PARSE_CHECK(p, "could not find '=' in line");
127         for (klen = p - k; klen && isblank(k[klen]); klen--);
128         p += 1; /* skip = */
129
130         while (isblank(*p))
131             p++;
132         p = strchr(v = p, '\n');
133         PARSE_CHECK(p, "could not find final \\n in line");
134         for (vlen = p - v; vlen && isblank(v[vlen]); vlen--);
135         p += 1; /* skip \n */
136
137         vtk = tokenize(v, vlen);
138         switch (tokenize(k, klen)) {
139 #define CASE(up, low)  case PTK_##up: query->low = v; v[vlen] = '\0'; break;
140             CASE(HELO_NAME,           helo_name);
141             CASE(QUEUE_ID,            queue_id);
142             CASE(SENDER,              sender);
143             CASE(RECIPIENT,           recipient);
144             CASE(RECIPIENT_COUNT,     recipient_count);
145             CASE(CLIENT_ADDRESS,      client_address);
146             CASE(CLIENT_NAME,         client_name);
147             CASE(REVERSE_CLIENT_NAME, reverse_client_name);
148             CASE(INSTANCE,            instance);
149             CASE(SASL_METHOD,         sasl_method);
150             CASE(SASL_USERNAME,       sasl_username);
151             CASE(SASL_SENDER,         sasl_sender);
152             CASE(SIZE,                size);
153             CASE(CCERT_SUBJECT,       ccert_subject);
154             CASE(CCERT_ISSUER,        ccert_issuer);
155             CASE(CCSERT_FINGERPRINT,  ccsert_fingerprint);
156             CASE(ENCRYPTION_PROTOCOL, encryption_protocol);
157             CASE(ENCRYPTION_CIPHER,   encryption_cipher);
158             CASE(ENCRYPTION_KEYSIZE,  encryption_keysize);
159             CASE(ETRN_DOMAIN,         etrn_domain);
160 #undef CASE
161
162           case PTK_REQUEST:
163             PARSE_CHECK(vtk == PTK_SMTPD_ACCESS_POLICY,
164                         "unexpected `request' value: %.*s", vlen, v);
165             break;
166
167           case PTK_PROTOCOL_NAME:
168             PARSE_CHECK(vtk == PTK_SMTP || vtk == PTK_ESMTP,
169                         "unexpected `protocol_name' value: %.*s", vlen, v);
170             query->esmtp = vtk == PTK_ESMTP;
171             break;
172
173           case PTK_PROTOCOL_STATE:
174             switch (vtk) {
175 #define CASE(name)  case PTK_##name: query->state = SMTP_##name; break;
176                 CASE(CONNECT);
177                 CASE(EHLO);
178                 CASE(HELO);
179                 CASE(MAIL);
180                 CASE(RCPT);
181                 CASE(DATA);
182                 CASE(END_OF_MESSAGE);
183                 CASE(VRFY);
184                 CASE(ETRN);
185               default:
186                 PARSE_CHECK(false, "unexpected `protocol_state` value: %.*s",
187                             vlen, v);
188 #undef CASE
189             }
190             break;
191
192           default:
193             syslog(LOG_WARNING, "unexpected key, skipped: %.*s", klen, k);
194             break;
195         }
196     }
197
198     return query->state == SMTP_UNKNOWN ? -1 : 0;
199 #undef PARSE_CHECK
200 }
201
202 __attribute__((format(printf,2,0)))
203 static void policy_answer(server_t *pcy, const char *fmt, ...)
204 {
205     va_list args;
206     va_start(args, fmt);
207     buffer_addvf(&pcy->obuf, fmt, args);
208     va_end(args);
209     buffer_addstr(&pcy->obuf, "\n\n");
210     buffer_consume(&pcy->ibuf, ((query_t*)(pcy->data))->eoq - pcy->ibuf.data);
211     epoll_modify(pcy->fd, EPOLLIN | EPOLLOUT, pcy);
212 }
213
214 static void policy_process(server_t *pcy)
215 {
216     policy_answer(pcy, "DUNNO");
217 }
218
219 static int policy_run(server_t *pcy, void* config)
220 {
221     ssize_t search_offs = MAX(0, pcy->ibuf.len - 1);
222     int nb = buffer_read(&pcy->ibuf, pcy->fd, -1);
223     const char *eoq;
224
225     if (nb < 0) {
226         if (errno == EAGAIN || errno == EINTR)
227             return 0;
228         UNIXERR("read");
229         return -1;
230     }
231     if (nb == 0) {
232         if (pcy->ibuf.len)
233             syslog(LOG_ERR, "unexpected end of data");
234         return -1;
235     }
236
237     if (!(eoq = strstr(pcy->ibuf.data + search_offs, "\n\n")))
238         return 0;
239
240     if (postfix_parsejob(pcy->data, pcy->ibuf.data) < 0)
241         return -1;
242     ((query_t*)pcy->data)->eoq = eoq + strlen("\n\n");
243     epoll_modify(pcy->fd, 0, pcy);
244     policy_process(pcy);
245     return 0;
246 }
247
248 int start_listener(int port)
249 {
250     return start_server(port, NULL, NULL);
251 }
252
253 /* administrivia {{{ */
254
255 static int main_initialize(void)
256 {
257     openlog("postlicyd", LOG_PID, LOG_MAIL);
258     signal(SIGPIPE, SIG_IGN);
259     signal(SIGINT,  &common_sighandler);
260     signal(SIGTERM, &common_sighandler);
261     signal(SIGHUP,  &common_sighandler);
262     signal(SIGSEGV, &common_sighandler);
263     syslog(LOG_INFO, "Starting...");
264     return 0;
265 }
266
267 static void main_shutdown(void)
268 {
269     closelog();
270 }
271
272 module_init(main_initialize);
273 module_exit(main_shutdown);
274
275 void usage(void)
276 {
277     fputs("usage: "DAEMON_NAME" [options] config\n"
278           "\n"
279           "Options:\n"
280           "    -l <port>    port to listen to\n"
281           "    -p <pidfile> file to write our pid to\n"
282           "    -f           stay in foreground\n"
283          , stderr);
284 }
285
286 /* }}} */
287
288 int main(int argc, char *argv[])
289 {
290     const char *pidfile = NULL;
291     bool daemonize = true;
292     int port = DEFAULT_PORT;
293
294     for (int c = 0; (c = getopt(argc, argv, "hf" "l:p:")) >= 0; ) {
295         switch (c) {
296           case 'p':
297             pidfile = optarg;
298             break;
299           case 'l':
300             port = atoi(optarg);
301             break;
302           case 'f':
303             daemonize = false;
304             break;
305           default:
306             usage();
307             return EXIT_FAILURE;
308         }
309     }
310
311     if (argc - optind != 1) {
312         usage();
313         return EXIT_FAILURE;
314     }
315
316     if (pidfile_open(pidfile) < 0) {
317         syslog(LOG_CRIT, "unable to write pidfile %s", pidfile);
318         return EXIT_FAILURE;
319     }
320
321     if (drop_privileges(RUNAS_USER, RUNAS_GROUP) < 0) {
322         syslog(LOG_CRIT, "unable to drop privileges");
323         return EXIT_FAILURE;
324     }
325
326     if (daemonize && daemon_detach() < 0) {
327         syslog(LOG_CRIT, "unable to fork");
328         return EXIT_FAILURE;
329     }
330
331     pidfile_refresh();
332
333     if (start_listener(port) < 0)
334         return EXIT_FAILURE;
335
336     (void)server_loop(query_new, query_delete, policy_run, NULL);
337
338     syslog(LOG_INFO, "Stopping...");
339     return EXIT_SUCCESS;
340 }