2011-11-19 21:25:44 +01:00
|
|
|
/*
|
|
|
|
* rules.c, SJ
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <piler.h>
|
|
|
|
#include "rules.h"
|
|
|
|
|
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
void load_rules(struct session_data *sdata, struct __data *data, struct node *xhash[], char *table){
|
2011-11-19 21:25:44 +01:00
|
|
|
char s[SMALLBUFSIZE];
|
2013-07-31 09:10:26 +02:00
|
|
|
char domain[SMALLBUFSIZE], from[SMALLBUFSIZE], to[SMALLBUFSIZE], subject[SMALLBUFSIZE], _size[SMALLBUFSIZE], attachment_type[SMALLBUFSIZE], _attachment_size[SMALLBUFSIZE];
|
2013-05-05 11:57:14 +02:00
|
|
|
int size=0, attachment_size=0, spam=0, days=0;
|
|
|
|
|
2013-07-31 09:10:26 +02:00
|
|
|
memset(domain, 0, sizeof(domain));
|
2013-05-05 11:57:14 +02:00
|
|
|
memset(from, 0, sizeof(from));
|
|
|
|
memset(to, 0, sizeof(to));
|
|
|
|
memset(subject, 0, sizeof(subject));
|
|
|
|
memset(_size, 0, sizeof(_size));
|
|
|
|
memset(attachment_type, 0, sizeof(attachment_type));
|
|
|
|
memset(_attachment_size, 0, sizeof(_attachment_size));
|
|
|
|
|
2011-11-19 21:25:44 +01:00
|
|
|
|
2013-07-31 09:10:26 +02:00
|
|
|
snprintf(s, sizeof(s)-1, "SELECT `domain`, `from`, `to`, `subject`, `_size`, `size`, `attachment_type`, `_attachment_size`, `attachment_size`, `spam`, `days` FROM `%s`", table);
|
2011-11-19 21:25:44 +01:00
|
|
|
|
2013-05-05 11:57:14 +02:00
|
|
|
if(prepare_sql_statement(sdata, &(data->stmt_generic), s) == ERR) return;
|
|
|
|
|
|
|
|
|
|
|
|
p_bind_init(data);
|
|
|
|
|
|
|
|
if(p_exec_query(sdata, data->stmt_generic, data) == ERR) goto ENDE;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
p_bind_init(data);
|
2011-11-19 21:25:44 +01:00
|
|
|
|
2013-07-31 09:10:26 +02:00
|
|
|
data->sql[data->pos] = &domain[0]; data->type[data->pos] = TYPE_STRING; data->len[data->pos] = sizeof(domain)-2; data->pos++;
|
2013-05-05 11:57:14 +02:00
|
|
|
data->sql[data->pos] = &from[0]; data->type[data->pos] = TYPE_STRING; data->len[data->pos] = sizeof(from)-2; data->pos++;
|
|
|
|
data->sql[data->pos] = &to[0]; data->type[data->pos] = TYPE_STRING; data->len[data->pos] = sizeof(to)-2; data->pos++;
|
|
|
|
data->sql[data->pos] = &subject[0]; data->type[data->pos] = TYPE_STRING; data->len[data->pos] = sizeof(subject)-2; data->pos++;
|
|
|
|
data->sql[data->pos] = &_size[0]; data->type[data->pos] = TYPE_STRING; data->len[data->pos] = sizeof(_size)-2; data->pos++;
|
|
|
|
data->sql[data->pos] = (char *)&size; data->type[data->pos] = TYPE_LONG; data->len[data->pos] = sizeof(size); data->pos++;
|
|
|
|
data->sql[data->pos] = &attachment_type[0]; data->type[data->pos] = TYPE_STRING; data->len[data->pos] = sizeof(attachment_type)-2; data->pos++;
|
|
|
|
data->sql[data->pos] = &_attachment_size[0]; data->type[data->pos] = TYPE_STRING; data->len[data->pos] = sizeof(_attachment_size)-2; data->pos++;
|
|
|
|
data->sql[data->pos] = (char *)&attachment_size; data->type[data->pos] = TYPE_LONG; data->len[data->pos] = sizeof(attachment_size); data->pos++;
|
|
|
|
data->sql[data->pos] = (char *)&spam; data->type[data->pos] = TYPE_LONG; data->len[data->pos] = sizeof(spam); data->pos++;
|
|
|
|
data->sql[data->pos] = (char *)&days; data->type[data->pos] = TYPE_LONG; data->len[data->pos] = sizeof(days); data->pos++;
|
2011-11-19 21:25:44 +01:00
|
|
|
|
2013-05-05 11:57:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
p_store_results(sdata, data->stmt_generic, data);
|
|
|
|
|
|
|
|
while(p_fetch_results(data->stmt_generic) == OK){
|
2013-11-01 00:41:39 +01:00
|
|
|
append_rule(xhash, domain, from, to, subject, _size, size, attachment_type, _attachment_size, attachment_size, spam, days, data);
|
2013-05-05 11:57:14 +02:00
|
|
|
|
2013-07-31 09:10:26 +02:00
|
|
|
memset(domain, 0, sizeof(domain));
|
2013-05-05 11:57:14 +02:00
|
|
|
memset(from, 0, sizeof(from));
|
|
|
|
memset(to, 0, sizeof(to));
|
|
|
|
memset(subject, 0, sizeof(subject));
|
|
|
|
memset(_size, 0, sizeof(_size));
|
|
|
|
memset(attachment_type, 0, sizeof(attachment_type));
|
|
|
|
memset(_attachment_size, 0, sizeof(_attachment_size));
|
|
|
|
|
|
|
|
size=0, attachment_size=0, spam=0, days=0;
|
2011-11-19 21:25:44 +01:00
|
|
|
}
|
|
|
|
|
2013-05-05 11:57:14 +02:00
|
|
|
p_free_results(data->stmt_generic);
|
|
|
|
|
|
|
|
ENDE:
|
|
|
|
close_prepared_statement(data->stmt_generic);
|
|
|
|
|
2011-11-19 21:25:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-01 00:41:39 +01:00
|
|
|
int append_rule(struct node *xhash[], char *domain, char *from, char *to, char *subject, char *_size, int size, char *attachment_type, char *_attachment_size, int attachment_size, int spam, int days, struct __data *data){
|
2013-08-14 14:24:30 +02:00
|
|
|
struct node *q, *Q=NULL, *node;
|
|
|
|
struct rule *rule;
|
|
|
|
int rc=0;
|
2011-11-19 21:25:44 +01:00
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
if((node = malloc(sizeof(struct node))) == NULL) return rc;
|
2011-11-19 21:25:44 +01:00
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
memset(node, 0, sizeof(struct node));
|
|
|
|
node->r = NULL;
|
|
|
|
|
2013-11-01 00:41:39 +01:00
|
|
|
rule = create_rule_item(domain, from, to, subject, _size, size, attachment_type, _attachment_size, attachment_size, spam, days, data);
|
2013-08-14 14:24:30 +02:00
|
|
|
|
|
|
|
if(rule == NULL){
|
|
|
|
free(node);
|
|
|
|
return rc;
|
2011-11-19 21:25:44 +01:00
|
|
|
}
|
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
node->str = rule;
|
2011-11-19 21:25:44 +01:00
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
q = xhash[0];
|
|
|
|
|
|
|
|
while(q != NULL){
|
|
|
|
Q = q;
|
|
|
|
q = q->r;
|
2011-11-19 21:25:44 +01:00
|
|
|
}
|
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
if(Q == NULL) xhash[0] = node;
|
|
|
|
else {
|
|
|
|
Q->r = node;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = 1;
|
|
|
|
|
|
|
|
return rc;
|
2011-11-19 21:25:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-01 00:41:39 +01:00
|
|
|
struct rule *create_rule_item(char *domain, char *from, char *to, char *subject, char *_size, int size, char *attachment_type, char *_attachment_size, int attachment_size, int spam, int days, struct __data *data){
|
2011-11-19 21:25:44 +01:00
|
|
|
struct rule *h=NULL;
|
|
|
|
char empty = '\0';
|
|
|
|
int len;
|
|
|
|
|
|
|
|
if((h = malloc(sizeof(struct rule))) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
|
|
h->compiled = 1;
|
|
|
|
|
2013-07-31 09:10:26 +02:00
|
|
|
h->domain = NULL;
|
2013-11-01 00:41:39 +01:00
|
|
|
h->domainlen = data->length[0];
|
2013-07-31 09:10:26 +02:00
|
|
|
|
|
|
|
if(h->domainlen > 2){
|
|
|
|
h->domain = malloc(h->domainlen+2);
|
|
|
|
if(h->domain) snprintf(h->domain, h->domainlen, "%s", domain);
|
|
|
|
else {
|
|
|
|
h->compiled = 0;
|
|
|
|
syslog(LOG_INFO, "malloc error in create_rule_item() for '%s'", domain);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-19 21:25:44 +01:00
|
|
|
if(!from) from = ∅
|
|
|
|
if(regcomp(&(h->from), from, REG_ICASE | REG_EXTENDED)) h->compiled = 0;
|
|
|
|
|
|
|
|
if(!to) to = ∅
|
|
|
|
if(regcomp(&(h->to), to, REG_ICASE | REG_EXTENDED)) h->compiled = 0;
|
|
|
|
|
|
|
|
if(!subject) subject = ∅
|
|
|
|
if(regcomp(&(h->subject), subject, REG_ICASE | REG_EXTENDED)) h->compiled = 0;
|
|
|
|
|
2012-02-19 22:59:47 +01:00
|
|
|
h->spam = spam;
|
|
|
|
h->days = days;
|
|
|
|
|
2011-11-19 21:25:44 +01:00
|
|
|
h->size = size;
|
|
|
|
|
|
|
|
if(!_size) _size = ∅
|
|
|
|
snprintf(h->_size, 3, "%s", _size);
|
|
|
|
|
2011-11-23 12:24:21 +01:00
|
|
|
|
|
|
|
if(!attachment_type) attachment_type = ∅
|
|
|
|
if(regcomp(&(h->attachment_type), attachment_type, REG_ICASE | REG_EXTENDED)) h->compiled = 0;
|
|
|
|
|
|
|
|
|
|
|
|
h->attachment_size = attachment_size;
|
|
|
|
|
|
|
|
if(!_attachment_size) _attachment_size = ∅
|
|
|
|
snprintf(h->_attachment_size, 3, "%s", _attachment_size);
|
|
|
|
|
2013-07-31 09:10:26 +02:00
|
|
|
len = strlen(domain)+8 + strlen(from)+6 + strlen(to)+4 + strlen(subject)+9 + strlen(_size)+6 + strlen(attachment_type)+10 + strlen(_attachment_size)+10 + 9 + 15 + 15;
|
2011-11-19 21:25:44 +01:00
|
|
|
h->rulestr = malloc(len);
|
|
|
|
|
2011-11-23 12:24:21 +01:00
|
|
|
|
|
|
|
|
2013-07-31 09:10:26 +02:00
|
|
|
if(h->rulestr) snprintf(h->rulestr, len-1, "domain=%s,from=%s,to=%s,subject=%s,size%s%d,att.type=%s,att.size%s%d,spam=%d", domain, from, to, subject, _size, size, attachment_type, _attachment_size, attachment_size, spam);
|
2011-11-19 21:25:44 +01:00
|
|
|
else h->compiled = 0;
|
|
|
|
|
|
|
|
h->r = NULL;
|
|
|
|
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
char *check_againt_ruleset(struct node *xhash[], struct _state *state, int size, int spam){
|
2011-11-19 21:25:44 +01:00
|
|
|
size_t nmatch=0;
|
|
|
|
struct rule *p;
|
2013-08-14 14:24:30 +02:00
|
|
|
struct node *q;
|
2011-11-19 21:25:44 +01:00
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
q = xhash[0];
|
2011-11-19 21:25:44 +01:00
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
while(q != NULL){
|
2011-11-19 21:25:44 +01:00
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
if(q->str){
|
|
|
|
p = q->str;
|
|
|
|
|
|
|
|
if(p){
|
|
|
|
if(
|
|
|
|
p->compiled == 1 &&
|
|
|
|
regexec(&(p->from), state->b_from, nmatch, NULL, 0) == 0 &&
|
|
|
|
regexec(&(p->to), state->b_to, nmatch, NULL, 0) == 0 &&
|
|
|
|
regexec(&(p->subject), state->b_subject, nmatch, NULL, 0) == 0 &&
|
|
|
|
check_size_rule(size, p->size, p->_size) == 1 &&
|
|
|
|
check_attachment_rule(state, p) == 1 &&
|
|
|
|
check_spam_rule(spam, p->spam) == 1
|
|
|
|
){
|
|
|
|
return p->rulestr;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2011-11-19 21:25:44 +01:00
|
|
|
}
|
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
q = q->r;
|
2011-11-19 21:25:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-31 09:10:26 +02:00
|
|
|
unsigned long query_retain_period(struct __data *data, struct _state *state, int size, int spam, struct __config *cfg){
|
2012-02-19 22:59:47 +01:00
|
|
|
size_t nmatch=0;
|
|
|
|
struct rule *p;
|
2013-08-14 14:24:30 +02:00
|
|
|
struct node *q;
|
|
|
|
|
|
|
|
q = data->retention_rules[0];
|
2012-02-19 22:59:47 +01:00
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
while(q != NULL){
|
2012-02-19 22:59:47 +01:00
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
if(q->str){
|
|
|
|
p = q->str;
|
2012-02-19 22:59:47 +01:00
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
if(p->domainlen > 2){
|
|
|
|
if(strcasestr(state->b_to_domain, p->domain) || strcasestr(state->b_from_domain, p->domain)){
|
|
|
|
state->retention = p->days;
|
|
|
|
return p->days * 86400;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (
|
|
|
|
p->compiled == 1 &&
|
|
|
|
regexec(&(p->from), state->b_from, nmatch, NULL, 0) == 0 &&
|
|
|
|
regexec(&(p->to), state->b_to, nmatch, NULL, 0) == 0 &&
|
|
|
|
regexec(&(p->subject), state->b_subject, nmatch, NULL, 0) == 0 &&
|
|
|
|
check_size_rule(size, p->size, p->_size) == 1 &&
|
|
|
|
check_attachment_rule(state, p) == 1 &&
|
|
|
|
check_spam_rule(spam, p->spam) == 1
|
|
|
|
){
|
2013-07-31 10:06:05 +02:00
|
|
|
state->retention = p->days;
|
2013-07-31 09:10:26 +02:00
|
|
|
return p->days * 86400;
|
|
|
|
}
|
2013-08-14 14:24:30 +02:00
|
|
|
|
2012-02-19 22:59:47 +01:00
|
|
|
}
|
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
q = q->r;
|
2012-02-19 22:59:47 +01:00
|
|
|
}
|
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
|
2013-07-31 10:06:05 +02:00
|
|
|
state->retention = cfg->default_retention_days;
|
|
|
|
|
2012-02-19 22:59:47 +01:00
|
|
|
return cfg->default_retention_days * 86400;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-19 21:25:44 +01:00
|
|
|
int check_size_rule(int message_size, int size, char *_size){
|
|
|
|
if(size <= 0) return 1;
|
|
|
|
|
|
|
|
if(strcmp(_size, ">") == 0 && message_size > size) return 1;
|
|
|
|
if(strcmp(_size, "<") == 0 && message_size < size) return 1;
|
|
|
|
if(strcmp(_size, "=") == 0 && message_size == size) return 1;
|
|
|
|
if( (strcmp(_size, "<>") == 0 || strcmp(_size, "!=") == 0) && message_size != size) return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-19 22:59:47 +01:00
|
|
|
int check_spam_rule(int is_spam, int spam){
|
|
|
|
if(spam == -1) return 1;
|
|
|
|
if(is_spam == spam) return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-23 12:24:21 +01:00
|
|
|
int check_attachment_rule(struct _state *state, struct rule *rule){
|
|
|
|
int i;
|
|
|
|
size_t nmatch=0;
|
|
|
|
|
2012-01-28 20:52:13 +01:00
|
|
|
if(state->n_attachments == 0) return 1;
|
|
|
|
|
2011-11-23 12:24:21 +01:00
|
|
|
for(i=1; i<=state->n_attachments; i++){
|
|
|
|
if(
|
|
|
|
regexec(&(rule->attachment_type), state->attachments[i].type, nmatch, NULL, 0) == 0 &&
|
|
|
|
check_size_rule(state->attachments[i].size, rule->attachment_size, rule->_attachment_size) == 1
|
|
|
|
){
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
void initrules(struct node *xhash[]){
|
|
|
|
xhash[0] = NULL;
|
|
|
|
}
|
|
|
|
|
2011-11-19 21:25:44 +01:00
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
void clearrules(struct node *xhash[]){
|
|
|
|
struct node *p, *q;
|
|
|
|
struct rule *rule;
|
2011-11-19 21:25:44 +01:00
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
q = xhash[0];
|
|
|
|
|
|
|
|
while(q != NULL){
|
|
|
|
p = q;
|
|
|
|
q = q->r;
|
2011-11-19 21:25:44 +01:00
|
|
|
|
|
|
|
if(p){
|
2013-08-14 14:24:30 +02:00
|
|
|
if(p->str){
|
|
|
|
rule = (struct rule*)p->str;
|
|
|
|
|
|
|
|
regfree(&(rule->from));
|
|
|
|
regfree(&(rule->to));
|
|
|
|
regfree(&(rule->attachment_type));
|
2011-11-23 12:24:21 +01:00
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
free(rule->rulestr);
|
2011-11-19 21:25:44 +01:00
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
if(rule->domain) free(rule->domain);
|
2013-07-31 09:10:26 +02:00
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
free(rule);
|
|
|
|
}
|
2011-11-19 21:25:44 +01:00
|
|
|
free(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-14 14:24:30 +02:00
|
|
|
xhash[0] = NULL;
|
|
|
|
}
|
2011-11-19 21:25:44 +01:00
|
|
|
|