bb0dda0316c5fdc06ba11759313dfaabb90b98f3
[apps/pfixtools.git] / postlicyd / rbl.c
1 /******************************************************************************/
2 /*          pfixtools: a collection of postfix related tools                  */
3 /*          ~~~~~~~~~                                                         */
4 /*  ________________________________________________________________________  */
5 /*                                                                            */
6 /*  Redistribution and use in source and binary forms, with or without        */
7 /*  modification, are permitted provided that the following conditions        */
8 /*  are met:                                                                  */
9 /*                                                                            */
10 /*  1. Redistributions of source code must retain the above copyright         */
11 /*     notice, this list of conditions and the following disclaimer.          */
12 /*  2. Redistributions in binary form must reproduce the above copyright      */
13 /*     notice, this list of conditions and the following disclaimer in the    */
14 /*     documentation and/or other materials provided with the distribution.   */
15 /*  3. The names of its contributors may not be used to endorse or promote    */
16 /*     products derived from this software without specific prior written     */
17 /*     permission.                                                            */
18 /*                                                                            */
19 /*  THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND   */
20 /*  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE     */
21 /*  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR        */
22 /*  PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS    */
23 /*  BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR    */
24 /*  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF      */
25 /*  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS  */
26 /*  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN   */
27 /*  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)   */
28 /*  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF    */
29 /*  THE POSSIBILITY OF SUCH DAMAGE.                                           */
30 /******************************************************************************/
31
32 /*
33  * Copyright © 2007 Pierre Habouzit
34  * Copyright © 2008 Florent Bruneau
35  */
36
37 #include <arpa/inet.h>
38 #include <netinet/in.h>
39 #include <sys/mman.h>
40
41 #include "common.h"
42 #include "rbl.h"
43 #include "str.h"
44 #include "file.h"
45
46 #define IPv4_BITS        5
47 #define IPv4_PREFIX(ip)  ((uint32_t)(ip) >> IPv4_BITS)
48 #define IPv4_SUFFIX(ip)  ((uint32_t)(ip) & ((1 << IPv4_BITS) - 1))
49 #define NODE(db, i)      ((db)->tree + (i))
50 #ifndef DEBUG
51 #define DEBUG(...)
52 #endif
53
54 enum {
55     BALANCED    = 0,
56     LEFT_HEAVY  = 1,
57     RIGHT_HEAVY = 2,
58 };
59
60 struct rbldb_t {
61     uint32_t len, size;
62     uint32_t *ips;
63     bool     locked;
64 };
65
66 static int get_o(const char *s, const char **out)
67 {
68     int res = 0;
69
70     if (*s < '0' || *s > '9')
71         return -1;
72
73     res = *s++ - '0';
74     if (*s < '0' || *s > '9')
75         goto ok;
76
77     res = res * 10 + *s++ - '0';
78     if (*s < '0' || *s > '9')
79         goto ok;
80
81     res = res * 10 + *s++ - '0';
82     if (!(*s < '0' || *s > '9') || res < 100)
83         return -1;
84
85   ok:
86     *out = s;
87     return res;
88 }
89
90 static int parse_ipv4(const char *s, const char **out, uint32_t *ip)
91 {
92     int o;
93
94     o = get_o(s, &s);
95     if ((o & ~0xff) || *s++ != '.')
96         return -1;
97     *ip = o << 24;
98
99     o = get_o(s, &s);
100     if ((o & ~0xff) || *s++ != '.')
101         return -1;
102     *ip |= o << 16;
103
104     o = get_o(s, &s);
105     if ((o & ~0xff) || *s++ != '.')
106         return -1;
107     *ip |= o << 8;
108
109     o = get_o(s, &s);
110     if (o & ~0xff)
111         return -1;
112     *ip |= o;
113
114     *out = s;
115     return 0;
116 }
117
118 rbldb_t *rbldb_create(const char *file, bool lock)
119 {
120     rbldb_t *db;
121     file_map_t map;
122     const char *p, *end;
123
124     if (!file_map_open(&map, file, false)) {
125         return NULL;
126     }
127
128     p   = map.map;
129     end = map.end;
130     while (end > p && end[-1] != '\n') {
131         --end;
132     }
133     if (end != map.end) {
134         syslog(LOG_WARNING, "file %s miss a final \\n, ignoring last line",
135                file);
136     }
137
138     db = p_new(rbldb_t, 1);
139     while (p < end) {
140         uint32_t ip;
141
142         while (*p == ' ' || *p == '\t' || *p == '\r')
143             p++;
144
145         if (parse_ipv4(p, &p, &ip) < 0) {
146             p = (char *)memchr(p, '\n', end - p) + 1;
147         } else {
148             if (db->len >= db->size) {
149                 db->size += 64 * 1024;
150                 p_realloc(&db->ips, db->size);
151             }
152             db->ips[db->len++] = ip;
153         }
154     }
155     file_map_close(&map);
156
157     /* Lookup may perform serveral I/O, so avoid swap.
158      */
159     db->locked = lock && mlock(db->ips, db->len * sizeof(*(db->ips))) == 0;
160     if (lock && !db->locked) {
161         UNIXERR("mlock");
162     }
163
164     if (db->len) {
165 #       define QSORT_TYPE uint32_t
166 #       define QSORT_BASE db->ips
167 #       define QSORT_NELT db->len
168 #       define QSORT_LT(a,b) *a < *b
169 #       include "qsort.c"
170     }
171
172     syslog(LOG_INFO, "rbl %s loaded, %d IPs", file, db->len);
173     return db;
174 }
175
176 void rbldb_delete(rbldb_t **db)
177 {
178     if (*db) {
179         if ((*db)->locked) {
180             (void)munlock((*db)->ips, (*db)->len * sizeof(*(*db)->ips));
181         }
182         p_delete(&(*db)->ips);
183         p_delete(&(*db));
184     }
185 }
186
187 uint32_t rbldb_stats(rbldb_t *rbl)
188 {
189     return rbl->len;
190 }
191
192 bool rbldb_ipv4_lookup(rbldb_t *db, uint32_t ip)
193 {
194     int l = 0, r = db->len;
195
196     while (l < r) {
197         int i = (r + l) / 2;
198
199         if (db->ips[i] == ip)
200             return true;
201
202         if (ip < db->ips[i]) {
203             r = i;
204         } else {
205             l = i + 1;
206         }
207     }
208     return false;
209 }