-
Notifications
You must be signed in to change notification settings - Fork 154
/
timsieved.c
342 lines (272 loc) · 9.17 KB
/
timsieved.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
/* timsieved.c -- main file for timsieved (sieve script accepting program)
* Tim Martin
* 9/21/99
*
* Copyright (c) 1994-2008 Carnegie Mellon University. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The name "Carnegie Mellon University" must not be used to
* endorse or promote products derived from this software without
* prior written permission. For permission or any legal
* details, please contact
* Carnegie Mellon University
* Center for Technology Transfer and Enterprise Creation
* 4615 Forbes Avenue
* Suite 302
* Pittsburgh, PA 15213
* (412) 268-7393, fax: (412) 268-7395
* innovation@andrew.cmu.edu
*
* 4. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by Computing Services
* at Carnegie Mellon University (http://www.cmu.edu/computing/)."
*
* CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
* THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
* FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
* AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <arpa/inet.h>
#include <dirent.h>
#include <limits.h>
#include <netdb.h>
#include <netinet/in.h>
#include <sasl/sasl.h> /* yay! sasl */
#include <signal.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sysexits.h>
#include <syslog.h>
#include <unistd.h>
#include "auth.h"
#include "libconfig.h"
#include "xmalloc.h"
#include "imap/backend.h"
#include "imap/global.h"
#include "imap/mboxlist.h"
#include "imap/proxy.h"
#include "imap/sync_log.h"
#include "lib/assert.h"
#include "sieve/sieve_interface.h"
#include "timsieved/actions.h"
#include "timsieved/codes.h"
#include "timsieved/parser.h"
#include "timsieved/lex.h"
/* global state */
const int config_need_data = 0;
int sieved_tls_required = 0;
sieve_interp_t *interp = NULL;
static struct saslprops_t saslprops = SASLPROPS_INITIALIZER;
sasl_conn_t *sieved_saslconn; /* the sasl connection context */
static struct auth_state *sieved_authstate = 0;
int sieved_timeout;
struct protstream *sieved_out;
struct protstream *sieved_in;
int sieved_logfd = -1;
const char *sieved_clienthost = "[local]";
int sieved_userisadmin;
int sieved_domainfromip = 0;
/* the sasl proxy policy context */
static struct proxy_context sieved_proxyctx = {
1, 1, &sieved_authstate, &sieved_userisadmin, NULL
};
/* PROXY stuff */
struct backend *backend = NULL;
static void bitpipe(void);
/* end PROXY stuff */
/*
* Cleanly shut down and exit
*/
void shut_down(int code) __attribute__ ((noreturn));
void shut_down(int code)
{
/* free interpreter */
if (interp) sieve_interp_free(&interp);
/* close backend connection */
if (backend) {
backend_disconnect(backend);
free(backend);
}
#ifdef HAVE_SSL
tls_shutdown_serverengine();
#endif
saslprops_free(&saslprops);
cyrus_done();
/* cleanup */
if (sieved_out) {
prot_flush(sieved_out);
prot_free(sieved_out);
}
if (sieved_in) prot_free(sieved_in);
if (sieved_logfd != -1) close(sieved_logfd);
cyrus_reset_stdio();
/* done */
exit(code);
}
static void cmdloop(void)
{
int ret = FALSE;
if (chdir("/tmp/")) {
syslog(LOG_ERR, "Failed to chdir to /tmp/");
ret = TRUE; /* exit immediately */
}
capabilities(sieved_out, sieved_saslconn, 0, 0, 0);
/* initialize lexer */
lex_init();
while (ret != TRUE)
{
if (backend) {
/* create a pipe from client to backend */
bitpipe();
/* pipe has been closed */
return;
}
ret = parser(sieved_out, sieved_in, &saslprops);
}
sync_log_done();
/* done */
shut_down(0);
}
EXPORTED void fatal(const char *s, int code)
{
static int recurse_code = 0;
if (recurse_code) {
/* We were called recursively. Just give up */
exit(recurse_code);
}
recurse_code = code;
prot_printf(sieved_out, "NO Fatal error: %s\r\n", s);
prot_flush(sieved_out);
shut_down(EX_TEMPFAIL);
}
static struct sasl_callback mysasl_cb[] = {
{ SASL_CB_GETOPT, (mysasl_cb_ft *) &mysasl_config, NULL },
{ SASL_CB_PROXY_POLICY, (mysasl_cb_ft *) &mysasl_proxy_policy, (void*) &sieved_proxyctx },
{ SASL_CB_CANON_USER, (mysasl_cb_ft *) &mysasl_canon_user, (void*) &sieved_domainfromip },
{ SASL_CB_LIST_END, NULL, NULL }
};
EXPORTED int service_init(int argc __attribute__((unused)),
char **argv __attribute__((unused)),
char **envp __attribute__((unused)))
{
global_sasl_init(1, 1, mysasl_cb);
/* build interpreter for compiling */
interp = sieve_build_nonexec_interp();
if (interp == NULL) shut_down(EX_SOFTWARE);
return 0;
}
/* Called by service API to shut down the service */
EXPORTED void service_abort(int error)
{
shut_down(error);
}
EXPORTED int service_main(int argc __attribute__((unused)),
char **argv __attribute__((unused)),
char **envp __attribute__((unused)))
{
const char *remoteip, *localip;
sasl_security_properties_t *secprops = NULL;
sync_log_init();
/* set up the prot streams */
sieved_in = prot_new(0, 0);
sieved_out = prot_new(1, 1);
sieved_timeout = config_getduration(IMAPOPT_TIMEOUT, 'm');
if (sieved_timeout < 10 * 60) sieved_timeout = 10 * 60;
prot_settimeout(sieved_in, sieved_timeout);
prot_setflushonread(sieved_in, sieved_out);
signal(SIGPIPE, SIG_IGN);
if (geteuid() == 0) fatal("must run as the Cyrus user", -6);
/* Find out name of client host */
sieved_clienthost = get_clienthost(0, &localip, &remoteip);
if (localip && remoteip) {
buf_setcstr(&saslprops.ipremoteport, remoteip);
buf_setcstr(&saslprops.iplocalport, localip);
}
/* other params should be filled in */
if (sasl_server_new(SIEVE_SERVICE_NAME, config_servername, NULL,
buf_cstringnull_ifempty(&saslprops.iplocalport),
buf_cstringnull_ifempty(&saslprops.ipremoteport),
NULL, SASL_SUCCESS_DATA, &sieved_saslconn) != SASL_OK)
fatal("SASL failed initializing: sasl_server_new()", -1);
/* will always return something valid */
secprops = mysasl_secprops(0);
sasl_setprop(sieved_saslconn, SASL_SEC_PROPS, secprops);
if (actions_init() != TIMSIEVE_OK)
fatal("Error initializing actions",-1);
sieved_tls_required = config_getswitch(IMAPOPT_TLS_REQUIRED);
cmdloop();
/* never reaches */
exit(EX_SOFTWARE);
}
/* Reset the given sasl_conn_t to a sane state */
int reset_saslconn(sasl_conn_t **conn)
{
int ret = 0;
sasl_security_properties_t *secprops = NULL;
sasl_dispose(conn);
/* do initialization typical of service_main */
ret = sasl_server_new(SIEVE_SERVICE_NAME, config_servername, NULL,
buf_cstringnull_ifempty(&saslprops.iplocalport),
buf_cstringnull_ifempty(&saslprops.ipremoteport),
NULL, SASL_SUCCESS_DATA, conn);
if(ret != SASL_OK) return ret;
secprops = mysasl_secprops(0);
ret = sasl_setprop(*conn, SASL_SEC_PROPS, secprops);
if(ret != SASL_OK) return ret;
/* end of service_main initialization excepting SSF */
/* If we have TLS/SSL info, set it */
if(saslprops.ssf) {
ret = saslprops_set_tls(&saslprops, *conn);
if(ret != SASL_OK) return ret;
}
/* End TLS/SSL Info */
return SASL_OK;
}
/* we've authenticated the client, we've connected to the backend.
now it's all up to them */
static void bitpipe(void)
{
struct protgroup *protin = protgroup_new(2);
int shutdown = 0;
char buf[4096];
protgroup_insert(protin, sieved_in);
protgroup_insert(protin, backend->in);
do {
/* Flush any buffered output */
prot_flush(sieved_out);
prot_flush(backend->out);
/* check for shutdown file */
if (shutdown_file(buf, sizeof(buf))) {
shutdown = 1;
goto done;
}
} while (!proxy_check_input(protin, sieved_in, sieved_out,
backend->in, backend->out, PROT_NO_FD, NULL, 0));
done:
/* ok, we're done. */
protgroup_free(protin);
if (shutdown) prot_printf(sieved_out, "NO \"%s\"\r\n", buf);
return;
}