-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpending.h
142 lines (122 loc) · 4.31 KB
/
pending.h
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
/* $Id: pending.h,v 1.39 2009/04/21 03:28:45 manu Exp $ */
/* vim: set sw=8 ts=8 sts=8 noet cino=(0: */
/*
* Copyright (c) 2004 Emmanuel Dreyfus
* 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. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Emmanuel Dreyfus
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _PENDING_H_
#define _PENDING_H_
#include "config.h"
#ifdef HAVE_OLD_QUEUE_H
#include "queue.h"
#else
#include <sys/queue.h>
#endif
#include <stdio.h>
#include <pthread.h>
#include <sys/time.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#ifndef AUTOWHITE_VALIDITY
#define AUTOWHITE_VALIDITY (24 * 3600) /* 1 day */
#endif
#ifndef GLDELAY
#define GLDELAY 1800 /* 1800 seconds = 30 minutes */
#endif
#ifndef TARPIT_DURATION
#define TARPIT_DURATION -1 /* do not tarpit */
#endif
#ifndef TIMEOUT
#define TIMEOUT (3600 * 24 * 5) /* 432000 seconds = 5 days */
#endif
#ifndef TARPIT_VALIDITY
#define TARPIT_VALIDITY TIMEOUT
#endif
#ifndef PENDING_BUCKETS
#define PENDING_BUCKETS 32768
#endif
#include "milter-greylist.h"
typedef enum {
T_TARPIT = 4,
T_CREATED = 3,
T_AUTOWHITE = 2,
T_PENDING = 1,
T_NONE = 0
} tuple_t;
typedef enum {
FORCE_AUTOWHITE,
FORCE_REMOVE,
FORCE_TARPIT
} force_t;
TAILQ_HEAD(pendinglist, pending);
struct pending {
char *p_addr;
struct sockaddr *p_sa;
socklen_t p_salen;
char *p_from;
char *p_rcpt;
struct timeval p_tv; /* activation time for pending or tarpitting,
expiration time for autowhite */
struct timeval p_tarpit;/* unsuccessfull longest duration for tarpit */
int p_refcnt; /* mutex; pending entry is
shared with sync queue */
tuple_t p_type; /* pending or autowhite entry? */
TAILQ_ENTRY(pending) p_list;
TAILQ_ENTRY(pending) pb_list;
};
struct pending_bucket {
TAILQ_HEAD(, pending) b_pending_head;
};
typedef struct {
int pending;
int autowhite;
int tarpit;
} tuple_cnt_t;
#define PENDING_LOCK pthread_mutex_lock(&pending_lock);
#define PENDING_UNLOCK pthread_mutex_unlock(&pending_lock);
extern pthread_mutex_t pending_lock;
void pending_init(void);
struct pending *pending_get(struct sockaddr *, socklen_t, char *, char *,
time_t, time_t, tuple_t);
tuple_t pending_check(struct sockaddr *, socklen_t, char *, char *,
time_t *, time_t *, char *, time_t, time_t);
int pending_check_tarpit(struct sockaddr *, socklen_t, char *, char *, time_t);
void pending_force(struct sockaddr *, socklen_t, char *, char *, time_t, force_t);
void pending_del(struct sockaddr *, socklen_t, char *, char *, time_t,
time_t);
void pending_rem(struct pending *);
void pending_put(struct pending *, time_t);
tuple_cnt_t pending_textdump(FILE *);
struct pending *pending_ref(struct pending *);
void pending_free(struct pending *);
int ip_match(struct sockaddr *, struct sockaddr *, ipaddr *);
int ip_equal(struct sockaddr *, struct sockaddr *);
char *iptostring(struct sockaddr *, socklen_t, char *, size_t);
int ipfromstring(char *, struct sockaddr *, socklen_t *, sa_family_t);
void pending_del_addr(struct sockaddr *, socklen_t, char *, int);
#endif /* _PENDING_H_ */