summaryrefslogtreecommitdiff
path: root/src/dbase.c
blob: 43fe0b5a58495a996d50bc5a9a60fc7198604317 (plain)
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
/*

    kbs - Simple, easily fooled, POP3 spam filter

    Copyright (C) 2003  Ian Cowburn (ianc@noddybox.demon.co.uk)

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

    -------------------------------------------------------------------------

    Rules database

*/
static const char id[]="$Id$";

#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <stdio.h>
#include <ctype.h>

#include "global.h"
#include "dbase.h"
#include "dstring.h"
#include "config.h"
#include "util.h"


/* ---------------------------------------- TYPES
*/
struct Domain
    {
    RE_Expression	name;
    int			def_block;
    int			no_user;
    int			no_block;
    int			no_allow;
    char		**user;
    RE_Expression	*block;
    RE_Expression	*allow;
    Domain		*next;
    Domain		*prev;
    };


/* ---------------------------------------- GLOBALS
*/
static Domain		*head;
static Domain		*tail;

static int		no_trusted_users=0;
static int		no_trusted_domains=0;

static char		**trusted_user=NULL;
static char		**trusted_domain=NULL;

static const char	*reason;


/* ---------------------------------------- PRVIVATE FUNCTIONS
*/
static int IsTrustedUser(const char *username)
{
    int f;

    for(f=0;f<no_trusted_users;f++)
    {
    	if (strcasecmp(username,trusted_user[f])==0)
	    return TRUE;
    }

    return FALSE;
}


static int IsTrustedDomain(const char *domain)
{
    int f;

    for(f=0;f<no_trusted_domains;f++)
    {
    	if (strcasecmp(domain,trusted_domain[f])==0)
	    return TRUE;
    }

    return FALSE;
}


static const Domain *GetDomain(const char *domain)
{
    Domain *dom;

    dom=head;

    while(dom)
    {
    	if (RESearch(dom->name,domain))
	    return dom;

    	dom=dom->next;
    }

    return NULL;
}


static void DeJunk(DString ds, const char *p)
{
    int last_ws=FALSE;

    while(*p)
    {
    	if (isspace(*p))
	{
	    if (!last_ws)
	    	DSAddChar(ds,' ');

	    last_ws=TRUE;
	}
	else
	    last_ws=FALSE;

	if (isalnum(*p))
	{
	    DSAddChar(ds,*p);
	}

	p++;
    }
}


/* ---------------------------------------- INTERFACES
*/
Domain *DBNewDomain(RE_Expression name)
{
    Domain *dom;

    dom=Malloc(sizeof *dom);

    dom->name=name;
    dom->def_block=FALSE;

    dom->no_user=0;
    dom->no_block=0;
    dom->no_allow=0;

    dom->user=NULL;
    dom->block=NULL;
    dom->allow=NULL;

    if (tail)
    	tail->next=dom;
    else
    	head=tail=dom;

    dom->prev=tail;
    dom->next=NULL;

    return dom;
}


void DBDefault(Domain *domain, int block)
{
    domain->def_block=block;
}


void DBBlockUser(Domain *domain, const char *username)
{
    domain->no_user++;
    domain->user=Realloc(domain->user,sizeof(char *)*domain->no_user);
    domain->user[domain->no_user-1]=CopyStr(username);
}


void DBAllowSubject(Domain *domain, RE_Expression re)
{
    domain->no_allow++;
    domain->allow=Realloc(domain->allow,sizeof(RE_Expression)*domain->no_allow);
    domain->allow[domain->no_allow-1]=re;
}


void DBBlockSubject(Domain *domain, RE_Expression re)
{
    domain->no_block++;
    domain->block=Realloc(domain->block,sizeof(RE_Expression)*domain->no_block);
    domain->block[domain->no_block-1]=re;
}


void DBTrustedUser(const char *username)
{
    no_trusted_users++;
    trusted_user=Realloc(trusted_user,sizeof(char *)*no_trusted_users);
    trusted_user[no_trusted_users-1]=CopyStr(username);
}


void DBTrustedDomain(const char *domain)
{
    no_trusted_domains++;
    trusted_domain=Realloc(trusted_domain,sizeof(char *)*no_trusted_domains);
    trusted_domain[no_trusted_domains-1]=CopyStr(domain);
}


int DBBlockMessage(const POP3Message *msg)
{
    static const char *html="text/html";
    DString ds;
    const Domain *dom;
    int f;

    reason="None";

    if (IsTrustedDomain(msg->from_domain))
    	return FALSE;

    if (IsTrustedUser(msg->from_uname))
    	return FALSE;

    if (ConfigInt(CONFIG_BLOCKHTML) &&
	(strncmp(msg->content_type,html,strlen(html))==0 ||
	 strcmp(msg->content_type,"UNKNOWN")==0))
    {
	reason="HTML message";
    	return TRUE;
    }

    if (!(dom=GetDomain(msg->from_domain)))
	return FALSE;

    ds=DSInit();

    if (ConfigInt(CONFIG_DEJUNK))
    	DeJunk(ds,msg->subject);
    else
    	DSAddCP(ds,msg->subject);

    for(f=0;f<dom->no_allow;f++)
    {
    	if (RESearch(dom->allow[f],ds->text))
	{
	    DSFree(ds);
	    return FALSE;
	}
    }

    for(f=0;f<dom->no_user;f++)
    {
	int res;

	if (ConfigInt(CONFIG_CASESENSE))
	    res=strcmp(dom->user[f],msg->from_uname);
	else
	    res=strcasecmp(dom->user[f],msg->from_uname);

	if (res==0)
	{
	    DSFree(ds);
	    reason="disallowed name";
	    return TRUE;
	}
    }

    for(f=0;f<dom->no_block;f++)
    {
    	if (RESearch(dom->block[f],ds->text))
	{
	    reason="disallowed subject";
	    DSFree(ds);
	    return TRUE;
	}
    }

    reason="default";
    DSFree(ds);
    return dom->def_block;
}


const char *DBBlockReason(void)
{
    return reason;
}


void DBClose(void)
{
    Domain *d;
    int f;

    for(f=0;f<no_trusted_domains;f++)
    	free(trusted_domain[f]);

    free(trusted_domain);

    for(f=0;f<no_trusted_users;f++)
    	free(trusted_user[f]);

    free(trusted_user);

    d=head;

    while(d)
    {
    	Domain *t;

	t=d;

	d=d->next;

	for(f=0;f<t->no_user;f++)
	    free(t->user[f]);

	free(t->user);

	for(f=0;f<t->no_block;f++)
	    REFree(t->block[f]);

	free(t->block);

	for(f=0;f<t->no_allow;f++)
	    free(t->allow[f]);

	free(t->allow);

	free(t);
    }

    no_trusted_users=0;
    no_trusted_domains=0;

    head=tail=NULL;
    trusted_user=NULL;
    trusted_domain=NULL;
}


/* END OF FILE */