File: Milter.xs

package info (click to toggle)
libsendmail-milter-perl 0.18-7
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, jessie, jessie-kfreebsd, lenny, sarge, squeeze, wheezy
  • size: 144 kB
  • ctags: 109
  • sloc: ansic: 818; perl: 349; makefile: 57
file content (468 lines) | stat: -rw-r--r-- 8,511 bytes parent folder | download | duplicates (4)
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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
/*
 * Copyright (c) 2000 Charles Ying. All rights reserved.
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the same terms as sendmail itself.
 *
 */

#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"

#include "intpools.h"

#include "libmilter/mfapi.h"
#include "callbacks.h"


/* Conversion for an easier interface to the milter API. */
#define MI_BOOL_CVT(mi_bool) (((mi_bool) == MI_SUCCESS) ? TRUE : FALSE)

typedef SMFICTX *Sendmail_Milter_Context;


/* Wrapper functions to do some real work. */

int milter_register(pTHX_ char *name, SV *milter_desc_ref, int flags)
{
	HV *milter_desc = (HV *)NULL;
	struct smfiDesc filter_desc;

	if (!SvROK(milter_desc_ref) &&
	    (SvTYPE(SvRV(milter_desc_ref)) != SVt_PVHV))
		croak("expected reference to hash for milter descriptor.");

	milter_desc = (HV *)SvRV(milter_desc_ref);

	register_callbacks(&filter_desc, name, milter_desc, flags);

	return smfi_register(filter_desc);
}

int milter_main(int max_interpreters, int max_requests)
{
	init_callbacks(max_interpreters, max_requests);

	return smfi_main();
}


/* Constants from libmilter/mfapi.h */

static int
not_here(char *s)
{
    croak("%s not implemented on this architecture", s);
    return -1;
}

static double
constant_SMFIF_A(char *name, int len, int arg)
{
    if (7 + 2 >= len ) {
	errno = EINVAL;
	return 0;
    }
    switch (name[7 + 2]) {
    case 'H':
	if (strEQ(name + 7, "DDHDRS")) {	/* SMFIF_A removed */
#ifdef SMFIF_ADDHDRS
	    return SMFIF_ADDHDRS;
#else
	    goto not_there;
#endif
	}
    case 'R':
	if (strEQ(name + 7, "DDRCPT")) {	/* SMFIF_A removed */
#ifdef SMFIF_ADDRCPT
	    return SMFIF_ADDRCPT;
#else
	    goto not_there;
#endif
	}
    }
    errno = EINVAL;
    return 0;

not_there:
    errno = ENOENT;
    return 0;
}

static double
constant_SMFIF_C(char *name, int len, int arg)
{
    if (7 + 2 >= len ) {
	errno = EINVAL;
	return 0;
    }
    switch (name[7 + 2]) {
    case 'B':
	if (strEQ(name + 7, "HGBODY")) {	/* SMFIF_C removed */
#ifdef SMFIF_CHGBODY
	    return SMFIF_CHGBODY;
#else
	    goto not_there;
#endif
	}
    case 'H':
	if (strEQ(name + 7, "HGHDRS")) {	/* SMFIF_C removed */
#ifdef SMFIF_CHGHDRS
	    return SMFIF_CHGHDRS;
#else
	    goto not_there;
#endif
	}
    }
    errno = EINVAL;
    return 0;

not_there:
    errno = ENOENT;
    return 0;
}

static double
constant_SMFIF(char *name, int len, int arg)
{
    if (5 + 1 >= len ) {
	errno = EINVAL;
	return 0;
    }
    switch (name[5 + 1]) {
    case 'A':
	if (!strnEQ(name + 5,"_", 1))
	    break;
	return constant_SMFIF_A(name, len, arg);
    case 'C':
	if (!strnEQ(name + 5,"_", 1))
	    break;
	return constant_SMFIF_C(name, len, arg);
    case 'D':
	if (strEQ(name + 5, "_DELRCPT")) {	/* SMFIF removed */
#ifdef SMFIF_DELRCPT
	    return SMFIF_DELRCPT;
#else
	    goto not_there;
#endif
	}
    case 'M':
	if (strEQ(name + 5, "_MODBODY")) {	/* SMFIF removed */
#ifdef SMFIF_MODBODY
	    return SMFIF_MODBODY;
#else
	    goto not_there;
#endif
	}
    }
    errno = EINVAL;
    return 0;

not_there:
    errno = ENOENT;
    return 0;
}

static double
constant_SMFI_V(char *name, int len, int arg)
{
    switch (name[6 + 0]) {
    case '1':
	if (strEQ(name + 6, "1_ACTS")) {	/* SMFI_V removed */
#ifdef SMFI_V1_ACTS
	    return SMFI_V1_ACTS;
#else
	    goto not_there;
#endif
	}
    case '2':
	if (strEQ(name + 6, "2_ACTS")) {	/* SMFI_V removed */
#ifdef SMFI_V2_ACTS
	    return SMFI_V2_ACTS;
#else
	    goto not_there;
#endif
	}
    }
    errno = EINVAL;
    return 0;

not_there:
    errno = ENOENT;
    return 0;
}

static double
constant_SMFI_(char *name, int len, int arg)
{
    switch (name[5 + 0]) {
    case 'C':
	if (strEQ(name + 5, "CURR_ACTS")) {	/* SMFI_ removed */
#ifdef SMFI_CURR_ACTS
	    return SMFI_CURR_ACTS;
#else
	    goto not_there;
#endif
	}
    case 'V':
	return constant_SMFI_V(name, len, arg);
    }
    errno = EINVAL;
    return 0;

not_there:
    errno = ENOENT;
    return 0;
}

static double
constant_SMFIS(char *name, int len, int arg)
{
    if (5 + 1 >= len ) {
	errno = EINVAL;
	return 0;
    }
    switch (name[5 + 1]) {
    case 'A':
	if (strEQ(name + 5, "_ACCEPT")) {	/* SMFIS removed */
#ifdef SMFIS_ACCEPT
	    return SMFIS_ACCEPT;
#else
	    goto not_there;
#endif
	}
    case 'C':
	if (strEQ(name + 5, "_CONTINUE")) {	/* SMFIS removed */
#ifdef SMFIS_CONTINUE
	    return SMFIS_CONTINUE;
#else
	    goto not_there;
#endif
	}
    case 'D':
	if (strEQ(name + 5, "_DISCARD")) {	/* SMFIS removed */
#ifdef SMFIS_DISCARD
	    return SMFIS_DISCARD;
#else
	    goto not_there;
#endif
	}
    case 'R':
	if (strEQ(name + 5, "_REJECT")) {	/* SMFIS removed */
#ifdef SMFIS_REJECT
	    return SMFIS_REJECT;
#else
	    goto not_there;
#endif
	}
    case 'T':
	if (strEQ(name + 5, "_TEMPFAIL")) {	/* SMFIS removed */
#ifdef SMFIS_TEMPFAIL
	    return SMFIS_TEMPFAIL;
#else
	    goto not_there;
#endif
	}
    }
    errno = EINVAL;
    return 0;

not_there:
    errno = ENOENT;
    return 0;
}

static double
constant(char *name, int len, int arg)
{
    errno = 0;
    if (0 + 4 >= len ) {
	errno = EINVAL;
	return 0;
    }
    switch (name[0 + 4]) {
    case 'F':
	if (!strnEQ(name + 0,"SMFI", 4))
	    break;
	return constant_SMFIF(name, len, arg);
    case 'S':
	if (!strnEQ(name + 0,"SMFI", 4))
	    break;
	return constant_SMFIS(name, len, arg);
    case '_':
	if (!strnEQ(name + 0,"SMFI", 4))
	    break;
	return constant_SMFI_(name, len, arg);
    }
    errno = EINVAL;
    return 0;

not_there:
    errno = ENOENT;
    return 0;
}


MODULE = Sendmail::Milter  PACKAGE = Sendmail::Milter  PREFIX = smfi_

PROTOTYPES:	DISABLE

double
constant(sv,arg)
    PREINIT:
	STRLEN		len;
    INPUT:
	SV *		sv
	char *		s = SvPV(sv, len);
	int		arg
    CODE:
	RETVAL = constant(s,len,arg);
    OUTPUT:
	RETVAL

bool
smfi_register(name, milter_desc_ref, flags=0)
	char*		name;
	SV*		milter_desc_ref;
	int		flags;
    CODE:
	RETVAL = MI_BOOL_CVT(milter_register(aTHX_ name, milter_desc_ref,
						flags));
    OUTPUT:
	RETVAL

bool
smfi_main(max_interpreters=0, max_requests=0)
	int		max_interpreters;
	int		max_requests;
    CODE:
	RETVAL = MI_BOOL_CVT(milter_main(max_interpreters, max_requests));
    OUTPUT:
	RETVAL

bool
smfi_setdbg(dbg)
	int		dbg;
    CODE:
	RETVAL = MI_BOOL_CVT(smfi_setdbg(dbg));
    OUTPUT:
	RETVAL

bool
smfi_setconn(conn)
	char*		conn;
    CODE:
	RETVAL = MI_BOOL_CVT(smfi_setconn(conn));
    OUTPUT:
	RETVAL

bool
smfi_settimeout(timeout)
	int		timeout;
    CODE:
	RETVAL = MI_BOOL_CVT(smfi_settimeout(timeout));
    OUTPUT:
	RETVAL

int
test_intpools(max_interp, max_requests, i_max, j_max, callback)
	int		max_interp;
	int		max_requests;
	int		i_max;
	int		j_max;
	SV*		callback;
    CODE:
	RETVAL = test_intpools(aTHX_ max_interp, max_requests, i_max, j_max,
				     callback);
    OUTPUT:
	RETVAL


MODULE = Sendmail::Milter  PACKAGE = Sendmail::Milter::Context  PREFIX = smfi_

char *
smfi_getsymval(Sendmail_Milter_Context ctx, char* symname)

bool
smfi_setreply(ctx, rcode, xcode, message)
	Sendmail_Milter_Context	ctx;
	char*		rcode;
	char*		xcode;
	char*		message;
    CODE:
	RETVAL = MI_BOOL_CVT(smfi_setreply(ctx, rcode, xcode, message));
    OUTPUT:
	RETVAL

bool
smfi_addheader(ctx, headerf, headerv)
	Sendmail_Milter_Context	ctx;
	char*		headerf;
	char*		headerv;
    CODE:
	RETVAL = MI_BOOL_CVT(smfi_addheader(ctx, headerf, headerv));
    OUTPUT:
	RETVAL

bool
smfi_chgheader(ctx, headerf, index, headerv)
	Sendmail_Milter_Context	ctx;
	char*		headerf;
	int		index;
	char*		headerv;
    CODE:
	RETVAL = MI_BOOL_CVT(smfi_chgheader(ctx, headerf, index, headerv));
    OUTPUT:
	RETVAL

bool
smfi_addrcpt(ctx, rcpt)
	Sendmail_Milter_Context	ctx;
	char*		rcpt;
    CODE:
	RETVAL = MI_BOOL_CVT(smfi_addrcpt(ctx, rcpt));
    OUTPUT:
	RETVAL

bool
smfi_delrcpt(ctx, rcpt)
	Sendmail_Milter_Context	ctx;
	char*		rcpt;
    CODE:
	RETVAL = MI_BOOL_CVT(smfi_delrcpt(ctx, rcpt));
    OUTPUT:
	RETVAL

bool
smfi_replacebody(ctx, body_data)
	Sendmail_Milter_Context	ctx;
	SV*		body_data;
    PREINIT:
	u_char *bodyp;
	int len;
    CODE:
	bodyp = SvPV(body_data, len);
	RETVAL = MI_BOOL_CVT(smfi_replacebody(ctx, bodyp, len));;
    OUTPUT:
	RETVAL

bool
smfi_setpriv(ctx, data)
	Sendmail_Milter_Context	ctx;
	SV*		data;
    CODE:
	if (SvTRUE(data))
		RETVAL = MI_BOOL_CVT(smfi_setpriv(ctx, (void *)newSVsv(data)));
	else
		RETVAL = MI_BOOL_CVT(smfi_setpriv(ctx, NULL));
    OUTPUT:
	RETVAL

SV *
smfi_getpriv(ctx)
	Sendmail_Milter_Context	ctx;
    CODE:
	RETVAL = (SV *) smfi_getpriv(ctx);
    OUTPUT:
	RETVAL