Useless.
[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  */
35
36 #include <arpa/inet.h>
37 #include <fcntl.h>
38 #include <netinet/in.h>
39 #include <sys/mman.h>
40 #include <sys/stat.h>
41
42 #include "common.h"
43 #include "rbl.h"
44 #include "str.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     const char *map, *p, *end;
122     struct stat st;
123     int fd;
124
125     fd = open(file, O_RDONLY, 0000);
126     if (fd < 0) {
127         UNIXERR("open");
128         return NULL;
129     }
130
131     if (fstat(fd, &st) < 0) {
132         UNIXERR("fstat");
133         close(fd);
134         return NULL;
135     }
136
137     p = map = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
138     if (map == MAP_FAILED) {
139         UNIXERR("mmap");
140         close(fd);
141         return NULL;
142     }
143     close(fd);
144
145     end = map + st.st_size;
146     while (end > map && end[-1] != '\n') {
147         --end;
148     }
149     if (end != map + st.st_size) {
150         syslog(LOG_WARNING, "file %s miss a final \\n, ignoring last line",
151                file);
152     }
153
154     db = p_new(rbldb_t, 1);
155     while (p < end) {
156         uint32_t ip;
157
158         while (*p == ' ' || *p == '\t' || *p == '\r')
159             p++;
160
161         if (parse_ipv4(p, &p, &ip) < 0) {
162             p = (char *)memchr(p, '\n', end - p) + 1;
163         } else {
164             if (db->len >= db->size) {
165                 db->size += 64 * 1024;
166                 p_realloc(&db->ips, db->size);
167             }
168             db->ips[db->len++] = ip;
169         }
170     }
171     munmap((void*)map, st.st_size);
172
173     /* Lookup may perform serveral I/O, so avoid swap.
174      */
175     db->locked = lock && mlock(db->ips, db->len * sizeof(*(db->ips))) == 0;
176
177     if (db->len) {
178 #       define QSORT_TYPE uint32_t
179 #       define QSORT_BASE db->ips
180 #       define QSORT_NELT db->len
181 #       define QSORT_LT(a,b) *a < *b
182 #       include "qsort.c"
183     }
184
185     syslog(LOG_INFO, "rbl %s loaded, %d IPs", file, db->len);
186     return db;
187 }
188
189 void rbldb_delete(rbldb_t **db)
190 {
191     if (*db) {
192         if ((*db)->locked) {
193             (void)munlock((*db)->ips, (*db)->len * sizeof(*(*db)->ips));
194         }
195         p_delete(&(*db)->ips);
196         p_delete(&(*db));
197     }
198 }
199
200 uint32_t rbldb_stats(rbldb_t *rbl)
201 {
202     return rbl->len;
203 }
204
205 bool rbldb_ipv4_lookup(rbldb_t *db, uint32_t ip)
206 {
207     int l = 0, r = db->len;
208
209     while (l < r) {
210         int i = (r + 1) / 2;
211
212         if (db->ips[i] == ip)
213             return true;
214
215         if (ip < db->ips[i]) {
216             r = i;
217         } else {
218             l = i + 1;
219         }
220     }
221     return false;
222 }