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 DAEMON_VERSION "0.2"
49 #define DEFAULT_PORT 10000
50 #define RUNAS_USER "nobody"
51 #define RUNAS_GROUP "nogroup"
55 static void *query_starter(server_t* server)
60 static bool config_refresh(void *config)
62 return config_reload(config);
65 __attribute__((format(printf,2,0)))
66 static void policy_answer(server_t *pcy, const char *fmt, ...)
69 const query_t* query = pcy->data;
71 buffer_addstr(&pcy->obuf, "action=");
73 buffer_addvf(&pcy->obuf, fmt, args);
75 buffer_addstr(&pcy->obuf, "\n\n");
76 buffer_consume(&pcy->ibuf, query->eoq - pcy->ibuf.data);
77 epoll_modify(pcy->fd, EPOLLIN | EPOLLOUT, pcy);
80 static bool policy_process(server_t *pcy, const config_t *config)
82 const query_t* query = pcy->data;
83 const filter_t *filter;
84 if (config->entry_points[query->state] == -1) {
85 warn("no filter defined for current protocol_state (%d)", query->state);
88 filter = array_ptr(config->filters, config->entry_points[query->state]);
90 const filter_hook_t *hook = filter_run(filter, query);
92 warn("request client=%s, from=<%s>, to=<%s>: aborted",
94 query->sender == NULL ? "undefined" : query->sender,
95 query->recipient == NULL ? "undefined" : query->recipient);
97 } else if (hook->postfix) {
98 info("request client=%s, from=<%s>, to=<%s>: "
99 "awswer %s from filter %s: \"%s\"",
101 query->sender == NULL ? "undefined" : query->sender,
102 query->recipient == NULL ? "undefined" : query->recipient,
103 htokens[hook->type], filter->name, hook->value);
104 policy_answer(pcy, "%s", hook->value);
107 notice("request client=%s, from=<%s>, to=<%s>: "
108 "awswer %s from filter %s: next filter %s",
110 query->sender == NULL ? "undefined" : query->sender,
111 query->recipient == NULL ? "undefined" : query->recipient,
112 htokens[hook->type], filter->name,
113 (array_ptr(config->filters, hook->filter_id))->name);
114 filter = array_ptr(config->filters, hook->filter_id);
119 static int policy_run(server_t *pcy, void* vconfig)
121 int search_offs = MAX(0, (int)(pcy->ibuf.len - 1));
122 int nb = buffer_read(&pcy->ibuf, pcy->fd, -1);
124 query_t *query = pcy->data;
125 const config_t *config = vconfig;
128 if (errno == EAGAIN || errno == EINTR)
135 err("unexpected end of data");
139 if (!(eoq = strstr(pcy->ibuf.data + search_offs, "\n\n")))
142 if (!query_parse(pcy->data, pcy->ibuf.data))
144 query->eoq = eoq + strlen("\n\n");
145 epoll_modify(pcy->fd, 0, pcy);
146 return policy_process(pcy, config) ? 0 : -1;
149 int start_listener(int port)
151 return start_server(port, NULL, NULL);
154 /* administrivia {{{ */
158 fputs("usage: "DAEMON_NAME" [options] config\n"
161 " -l <port> port to listen to\n"
162 " -p <pidfile> file to write our pid to\n"
163 " -f stay in foreground\n"
164 " -d grow logging level\n"
165 " -u unsafe mode (don't drop privileges)\n"
171 int main(int argc, char *argv[])
174 const char *pidfile = NULL;
175 bool daemonize = true;
176 int port = DEFAULT_PORT;
177 bool port_from_cli = false;
179 for (int c = 0; (c = getopt(argc, argv, "ufd" "l:p:")) >= 0; ) {
189 port_from_cli = true;
207 if (argc - optind != 1) {
212 info("starting %s v%s...", DAEMON_NAME, DAEMON_VERSION);
214 if (pidfile_open(pidfile) < 0) {
215 crit("unable to write pidfile %s", pidfile);
219 if (drop_privileges(RUNAS_USER, RUNAS_GROUP) < 0) {
220 crit("unable to drop privileges");
224 config_t *config = config_read(argv[optind]);
225 if (config == NULL) {
228 if (port_from_cli || config->port == 0) {
232 if (daemonize && daemon_detach() < 0) {
233 crit("unable to fork");
239 if (start_listener(config->port) < 0) {
242 return server_loop(query_starter, (delete_client_t)query_delete,
243 policy_run, config_refresh, config);