1 /******************************************************************************/
2 /* pfixtools: a collection of postfix related tools */
4 /* ________________________________________________________________________ */
6 /* Redistribution and use in source and binary forms, with or without */
7 /* modification, are permitted provided that the following conditions */
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 */
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 /******************************************************************************/
33 * Copyright © 2006-2007 Pierre Habouzit
34 * Copyright © 2008 Florent Bruneau
42 #include "policy_tokens.h"
47 #define DAEMON_NAME "postlicyd"
48 #define DEFAULT_PORT 10000
49 #define RUNAS_USER "nobody"
50 #define RUNAS_GROUP "nogroup"
54 static void *query_starter(server_t* server)
59 static bool config_refresh(void *config)
61 return config_reload(config);
64 __attribute__((format(printf,2,0)))
65 static void policy_answer(server_t *pcy, const char *fmt, ...)
68 const query_t* query = pcy->data;
70 buffer_addstr(&pcy->obuf, "action=");
72 buffer_addvf(&pcy->obuf, fmt, 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);
79 static bool policy_process(server_t *pcy, const config_t *config)
81 const query_t* query = pcy->data;
82 const filter_t *filter;
83 if (config->entry_points[query->state] == -1) {
84 warn("no filter defined for current protocol_state (%d)", query->state);
87 filter = array_ptr(config->filters, config->entry_points[query->state]);
89 const filter_hook_t *hook = filter_run(filter, query);
91 warn("request client=%s, from=<%s>, to=<%s>: aborted",
93 query->sender == NULL ? "undefined" : query->sender,
94 query->recipient == NULL ? "undefined" : query->recipient);
96 } else if (hook->postfix) {
97 info("request client=%s, from=<%s>, to=<%s>: "
98 "awswer %s from filter %s: \"%s\"",
100 query->sender == NULL ? "undefined" : query->sender,
101 query->recipient == NULL ? "undefined" : query->recipient,
102 htokens[hook->type], filter->name, hook->value);
103 policy_answer(pcy, "%s", hook->value);
106 notice("request client=%s, from=<%s>, to=<%s>: "
107 "awswer %s from filter %s: next filter %s",
109 query->sender == NULL ? "undefined" : query->sender,
110 query->recipient == NULL ? "undefined" : query->recipient,
111 htokens[hook->type], filter->name,
112 (array_ptr(config->filters, hook->filter_id))->name);
113 filter = array_ptr(config->filters, hook->filter_id);
118 static int policy_run(server_t *pcy, void* vconfig)
120 ssize_t search_offs = MAX(0, (ssize_t)(pcy->ibuf.len - 1));
121 int nb = buffer_read(&pcy->ibuf, pcy->fd, -1);
123 query_t *query = pcy->data;
124 const config_t *config = vconfig;
127 if (errno == EAGAIN || errno == EINTR)
134 err("unexpected end of data");
138 if (!(eoq = strstr(pcy->ibuf.data + search_offs, "\n\n")))
141 if (!query_parse(pcy->data, pcy->ibuf.data))
143 query->eoq = eoq + strlen("\n\n");
144 epoll_modify(pcy->fd, 0, pcy);
145 return policy_process(pcy, config) ? 0 : -1;
148 int start_listener(int port)
150 return start_server(port, NULL, NULL);
153 /* administrivia {{{ */
157 fputs("usage: "DAEMON_NAME" [options] config\n"
160 " -l <port> port to listen to\n"
161 " -p <pidfile> file to write our pid to\n"
162 " -f stay in foreground\n"
163 " -d grow logging level\n"
164 " -u unsafe mode (don't drop privileges)\n"
170 int main(int argc, char *argv[])
173 const char *pidfile = NULL;
174 bool daemonize = true;
175 int port = DEFAULT_PORT;
176 bool port_from_cli = false;
178 for (int c = 0; (c = getopt(argc, argv, "ufd" "l:p:")) >= 0; ) {
188 port_from_cli = true;
202 if (argc - optind != 1) {
207 if (drop_privileges(RUNAS_USER, RUNAS_GROUP) < 0) {
208 crit("unable to drop privileges");
212 config_t *config = config_read(argv[optind]);
213 if (config == NULL) {
216 if (port_from_cli || config->port == 0) {
220 if (common_setup(pidfile, true, NULL, NULL, daemonize) != EXIT_SUCCESS
221 || start_listener(config->port) < 0) {
222 config_delete(&config);
225 int res = server_loop(query_starter, (delete_client_t)query_delete,
226 policy_run, config_refresh, config);
227 config_delete(&config);