Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 1 | /* ebt_among |
| 2 | * |
| 3 | * Authors: |
| 4 | * Grzegorz Borowiak <grzes@gnu.univ.gda.pl> |
| 5 | * |
| 6 | * August, 2003 |
| 7 | */ |
| 8 | |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 9 | #include <stdio.h> |
| 10 | #include <string.h> |
| 11 | #include <stdlib.h> |
| 12 | #include <getopt.h> |
| 13 | #include <ctype.h> |
Bart De Schuymer | e1c315a | 2006-12-22 18:08:41 +0000 | [diff] [blame] | 14 | #include <unistd.h> |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 15 | #include "../include/ebtables_u.h" |
Bart De Schuymer | 57633b1 | 2010-12-18 16:15:49 +0000 | [diff] [blame] | 16 | #include <netinet/ether.h> |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 17 | #include "../include/ethernetdb.h" |
| 18 | #include <linux/if_ether.h> |
| 19 | #include <linux/netfilter_bridge/ebt_among.h> |
Bart De Schuymer | 8069b5a | 2006-08-17 10:18:02 +0000 | [diff] [blame] | 20 | #include <sys/mman.h> |
| 21 | #include <sys/stat.h> |
| 22 | #include <fcntl.h> |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 23 | |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 24 | #define AMONG_DST '1' |
| 25 | #define AMONG_SRC '2' |
Bart De Schuymer | 8069b5a | 2006-08-17 10:18:02 +0000 | [diff] [blame] | 26 | #define AMONG_DST_F '3' |
| 27 | #define AMONG_SRC_F '4' |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 28 | |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 29 | static struct option opts[] = { |
| 30 | {"among-dst", required_argument, 0, AMONG_DST}, |
| 31 | {"among-src", required_argument, 0, AMONG_SRC}, |
Bart De Schuymer | 8069b5a | 2006-08-17 10:18:02 +0000 | [diff] [blame] | 32 | {"among-dst-file", required_argument, 0, AMONG_DST_F}, |
| 33 | {"among-src-file", required_argument, 0, AMONG_SRC_F}, |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 34 | {0} |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 35 | }; |
| 36 | |
| 37 | #ifdef DEBUG |
| 38 | static void hexdump(const void *mem, int howmany) |
| 39 | { |
| 40 | printf("\n"); |
| 41 | const unsigned char *p = mem; |
| 42 | int i; |
Bart De Schuymer | f8c9743 | 2003-09-27 17:39:09 +0000 | [diff] [blame] | 43 | |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 44 | for (i = 0; i < howmany; i++) { |
| 45 | if (i % 32 == 0) { |
| 46 | printf("\n%04x: ", i); |
| 47 | } |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 48 | printf("%2.2x%c", p[i], ". "[i % 4 == 3]); |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 49 | } |
| 50 | printf("\n"); |
| 51 | } |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 52 | #endif /* DEBUG */ |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 53 | |
| 54 | static void print_help() |
| 55 | { |
| 56 | printf( |
| 57 | "`among' options:\n" |
Bart De Schuymer | 8069b5a | 2006-08-17 10:18:02 +0000 | [diff] [blame] | 58 | "--among-dst [!] list : matches if ether dst is in list\n" |
| 59 | "--among-src [!] list : matches if ether src is in list\n" |
| 60 | "--among-dst-file [!] file : obtain dst list from file\n" |
| 61 | "--among-src-file [!] file : obtain src list from file\n" |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 62 | "list has form:\n" |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 63 | " xx:xx:xx:xx:xx:xx[=ip.ip.ip.ip],yy:yy:yy:yy:yy:yy[=ip.ip.ip.ip]" |
| 64 | ",...,zz:zz:zz:zz:zz:zz[=ip.ip.ip.ip][,]\n" |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 65 | "Things in brackets are optional.\n" |
Bart De Schuymer | f8c9743 | 2003-09-27 17:39:09 +0000 | [diff] [blame] | 66 | "If you want to allow two (or more) IP addresses to one MAC address, you\n" |
Bart De Schuymer | 7cc696b | 2003-10-12 12:34:10 +0000 | [diff] [blame] | 67 | "can specify two (or more) pairs with the same MAC, e.g.\n" |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 68 | " 00:00:00:fa:eb:fe=153.19.120.250,00:00:00:fa:eb:fe=192.168.0.1\n" |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 69 | ); |
| 70 | } |
Bart De Schuymer | 1da1999 | 2008-03-04 19:14:29 +0000 | [diff] [blame] | 71 | static int old_size; |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 72 | |
| 73 | static void init(struct ebt_entry_match *match) |
| 74 | { |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 75 | struct ebt_among_info *amonginfo = |
| 76 | (struct ebt_among_info *) match->data; |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 77 | |
| 78 | memset(amonginfo, 0, sizeof(struct ebt_among_info)); |
Bart De Schuymer | 1da1999 | 2008-03-04 19:14:29 +0000 | [diff] [blame] | 79 | old_size = sizeof(struct ebt_among_info); |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 80 | } |
| 81 | |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 82 | static struct ebt_mac_wormhash *new_wormhash(int n) |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 83 | { |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 84 | int size = |
| 85 | sizeof(struct ebt_mac_wormhash) + |
| 86 | n * sizeof(struct ebt_mac_wormhash_tuple); |
| 87 | struct ebt_mac_wormhash *result = |
| 88 | (struct ebt_mac_wormhash *) malloc(size); |
Bart De Schuymer | f8c9743 | 2003-09-27 17:39:09 +0000 | [diff] [blame] | 89 | |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 90 | if (!result) |
| 91 | ebt_print_memory(); |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 92 | memset(result, 0, size); |
| 93 | result->poolsize = n; |
| 94 | return result; |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 95 | } |
| 96 | |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 97 | static void copy_wormhash(struct ebt_mac_wormhash *d, |
| 98 | const struct ebt_mac_wormhash *s) |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 99 | { |
| 100 | int dpoolsize = d->poolsize; |
| 101 | int dsize, ssize, amount; |
Bart De Schuymer | f8c9743 | 2003-09-27 17:39:09 +0000 | [diff] [blame] | 102 | |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 103 | dsize = ebt_mac_wormhash_size(d); |
| 104 | ssize = ebt_mac_wormhash_size(s); |
| 105 | amount = dsize < ssize ? dsize : ssize; |
| 106 | memcpy(d, s, amount); |
| 107 | d->poolsize = dpoolsize; |
| 108 | } |
| 109 | |
| 110 | /* Returns: |
| 111 | * -1 when '\0' reached |
| 112 | * -2 when `n' bytes read and no delimiter found |
| 113 | * 0 when no less than `n' bytes read and delimiter found |
| 114 | * if `destbuf' is not NULL, it is filled by read bytes and ended with '\0' |
| 115 | * *pp is set on the first byte not copied to `destbuf' |
| 116 | */ |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 117 | static int read_until(const char **pp, const char *delimiters, |
| 118 | char *destbuf, int n) |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 119 | { |
| 120 | int count = 0; |
| 121 | int ret = 0; |
| 122 | char c; |
Bart De Schuymer | f8c9743 | 2003-09-27 17:39:09 +0000 | [diff] [blame] | 123 | |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 124 | while (1) { |
| 125 | c = **pp; |
| 126 | if (!c) { |
| 127 | ret = -1; |
| 128 | break; |
| 129 | } |
| 130 | if (strchr(delimiters, c)) { |
| 131 | ret = 0; |
| 132 | break; |
| 133 | } |
| 134 | if (count == n) { |
| 135 | ret = -2; |
| 136 | break; |
| 137 | } |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 138 | if (destbuf) |
| 139 | destbuf[count++] = c; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 140 | (*pp)++; |
| 141 | } |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 142 | if (destbuf) |
| 143 | destbuf[count] = 0; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 144 | return ret; |
| 145 | } |
| 146 | |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 147 | static int fcmp(const void *va, const void *vb) { |
| 148 | const struct ebt_mac_wormhash_tuple *a = va; |
| 149 | const struct ebt_mac_wormhash_tuple *b = vb; |
| 150 | int ca = ((const unsigned char*)a->cmp)[7]; |
| 151 | int cb = ((const unsigned char*)b->cmp)[7]; |
Bart De Schuymer | f8c9743 | 2003-09-27 17:39:09 +0000 | [diff] [blame] | 152 | |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 153 | return ca - cb; |
| 154 | } |
| 155 | |
| 156 | static void index_table(struct ebt_mac_wormhash *wh) |
| 157 | { |
| 158 | int ipool, itable; |
| 159 | int c; |
Bart De Schuymer | f8c9743 | 2003-09-27 17:39:09 +0000 | [diff] [blame] | 160 | |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 161 | for (itable = 0; itable <= 256; itable++) { |
| 162 | wh->table[itable] = wh->poolsize; |
| 163 | } |
| 164 | ipool = 0; |
| 165 | itable = 0; |
| 166 | while (1) { |
| 167 | wh->table[itable] = ipool; |
| 168 | c = ((const unsigned char*)wh->pool[ipool].cmp)[7]; |
| 169 | if (itable <= c) { |
| 170 | itable++; |
| 171 | } else { |
| 172 | ipool++; |
| 173 | } |
| 174 | if (ipool > wh->poolsize) |
| 175 | break; |
| 176 | } |
| 177 | } |
| 178 | |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 179 | static struct ebt_mac_wormhash *create_wormhash(const char *arg) |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 180 | { |
| 181 | const char *pc = arg; |
| 182 | const char *anchor; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 183 | char *endptr; |
| 184 | struct ebt_mac_wormhash *workcopy, *result, *h; |
| 185 | unsigned char mac[6]; |
| 186 | unsigned char ip[4]; |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 187 | int nmacs = 0; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 188 | int i; |
| 189 | char token[4]; |
Bart De Schuymer | f8c9743 | 2003-09-27 17:39:09 +0000 | [diff] [blame] | 190 | |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 191 | if (!(workcopy = new_wormhash(1024))) { |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 192 | ebt_print_memory(); |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 193 | } |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 194 | while (1) { |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 195 | /* remember current position, we'll need it on error */ |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 196 | anchor = pc; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 197 | |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 198 | /* collect MAC; all its bytes are followed by ':' (colon), |
| 199 | * except for the last one which can be followed by |
| 200 | * ',' (comma), '=' or '\0' */ |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 201 | for (i = 0; i < 5; i++) { |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 202 | if (read_until(&pc, ":", token, 2) < 0 |
| 203 | || token[0] == 0) { |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 204 | ebt_print_error("MAC parse error: %.20s", anchor); |
Bart De Schuymer | 691254b | 2011-06-23 18:26:45 +0000 | [diff] [blame] | 205 | free(workcopy); |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 206 | return NULL; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 207 | } |
| 208 | mac[i] = strtol(token, &endptr, 16); |
| 209 | if (*endptr) { |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 210 | ebt_print_error("MAC parse error: %.20s", anchor); |
Bart De Schuymer | 691254b | 2011-06-23 18:26:45 +0000 | [diff] [blame] | 211 | free(workcopy); |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 212 | return NULL; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 213 | } |
| 214 | pc++; |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 215 | } |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 216 | if (read_until(&pc, "=,", token, 2) == -2 || token[0] == 0) { |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 217 | ebt_print_error("MAC parse error: %.20s", anchor); |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 218 | return NULL; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 219 | } |
| 220 | mac[i] = strtol(token, &endptr, 16); |
| 221 | if (*endptr) { |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 222 | ebt_print_error("MAC parse error: %.20s", anchor); |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 223 | return NULL; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 224 | } |
| 225 | if (*pc == '=') { |
| 226 | /* an IP follows the MAC; collect similarly to MAC */ |
| 227 | pc++; |
| 228 | anchor = pc; |
| 229 | for (i = 0; i < 3; i++) { |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 230 | if (read_until(&pc, ".", token, 3) < 0 || token[0] == 0) { |
| 231 | ebt_print_error("IP parse error: %.20s", anchor); |
| 232 | return NULL; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 233 | } |
| 234 | ip[i] = strtol(token, &endptr, 10); |
| 235 | if (*endptr) { |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 236 | ebt_print_error("IP parse error: %.20s", anchor); |
| 237 | return NULL; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 238 | } |
| 239 | pc++; |
| 240 | } |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 241 | if (read_until(&pc, ",", token, 3) == -2 || token[0] == 0) { |
| 242 | ebt_print_error("IP parse error: %.20s", anchor); |
| 243 | return NULL; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 244 | } |
| 245 | ip[3] = strtol(token, &endptr, 10); |
| 246 | if (*endptr) { |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 247 | ebt_print_error("IP parse error: %.20s", anchor); |
| 248 | return NULL; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 249 | } |
Bart De Schuymer | 3f45193 | 2011-08-11 18:35:48 +0000 | [diff] [blame^] | 250 | if (ip[0] == 0 && ip[1] == 0 && ip[2] == 0 && ip[3] == 0) { |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 251 | ebt_print_error("Illegal IP 0.0.0.0"); |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 252 | return NULL; |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 253 | } |
| 254 | } else { |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 255 | /* no IP, we set it to 0.0.0.0 */ |
| 256 | memset(ip, 0, 4); |
| 257 | } |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 258 | |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 259 | /* we have collected MAC and IP, so we add an entry */ |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 260 | memcpy(((char *) workcopy->pool[nmacs].cmp) + 2, mac, 6); |
Bart De Schuymer | 3f45193 | 2011-08-11 18:35:48 +0000 | [diff] [blame^] | 261 | memcpy(&(workcopy->pool[nmacs].ip), ip, 4); |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 262 | nmacs++; |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 263 | |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 264 | /* re-allocate memory if needed */ |
| 265 | if (*pc && nmacs >= workcopy->poolsize) { |
| 266 | if (!(h = new_wormhash(nmacs * 2))) { |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 267 | ebt_print_memory(); |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 268 | } |
| 269 | copy_wormhash(h, workcopy); |
| 270 | free(workcopy); |
| 271 | workcopy = h; |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 272 | } |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 273 | |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 274 | /* check if end of string was reached */ |
| 275 | if (!*pc) { |
| 276 | break; |
| 277 | } |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 278 | |
| 279 | /* now `pc' points to comma if we are here; */ |
| 280 | /* increment this to the next char */ |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 281 | /* but first assert :-> */ |
| 282 | if (*pc != ',') { |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 283 | ebt_print_error("Something went wrong; no comma...\n"); |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 284 | return NULL; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 285 | } |
| 286 | pc++; |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 287 | |
| 288 | /* again check if end of string was reached; */ |
| 289 | /* we allow an ending comma */ |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 290 | if (!*pc) { |
| 291 | break; |
| 292 | } |
| 293 | } |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 294 | if (!(result = new_wormhash(nmacs))) { |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 295 | ebt_print_memory(); |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 296 | } |
| 297 | copy_wormhash(result, workcopy); |
| 298 | free(workcopy); |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 299 | qsort(&result->pool, result->poolsize, |
| 300 | sizeof(struct ebt_mac_wormhash_tuple), fcmp); |
| 301 | index_table(result); |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 302 | return result; |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | #define OPT_DST 0x01 |
| 306 | #define OPT_SRC 0x02 |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 307 | static int parse(int c, char **argv, int argc, |
| 308 | const struct ebt_u_entry *entry, unsigned int *flags, |
| 309 | struct ebt_entry_match **match) |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 310 | { |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 311 | struct ebt_among_info *info = |
| 312 | (struct ebt_among_info *) (*match)->data; |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 313 | struct ebt_mac_wormhash *wh; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 314 | struct ebt_entry_match *h; |
Bart De Schuymer | 1da1999 | 2008-03-04 19:14:29 +0000 | [diff] [blame] | 315 | int new_size; |
Bart De Schuymer | 3f45193 | 2011-08-11 18:35:48 +0000 | [diff] [blame^] | 316 | long flen = 0; |
| 317 | int fd = -1; |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 318 | |
| 319 | switch (c) { |
Bart De Schuymer | 8069b5a | 2006-08-17 10:18:02 +0000 | [diff] [blame] | 320 | case AMONG_DST_F: |
| 321 | case AMONG_SRC_F: |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 322 | case AMONG_DST: |
| 323 | case AMONG_SRC: |
Bart De Schuymer | 8069b5a | 2006-08-17 10:18:02 +0000 | [diff] [blame] | 324 | if (c == AMONG_DST || c == AMONG_DST_F) { |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 325 | ebt_check_option2(flags, OPT_DST); |
| 326 | } else { |
| 327 | ebt_check_option2(flags, OPT_SRC); |
| 328 | } |
| 329 | if (ebt_check_inverse2(optarg)) { |
Bart De Schuymer | 8069b5a | 2006-08-17 10:18:02 +0000 | [diff] [blame] | 330 | if (c == AMONG_DST || c == AMONG_DST_F) |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 331 | info->bitmask |= EBT_AMONG_DST_NEG; |
| 332 | else |
| 333 | info->bitmask |= EBT_AMONG_SRC_NEG; |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 334 | } |
Bart De Schuymer | 8069b5a | 2006-08-17 10:18:02 +0000 | [diff] [blame] | 335 | if (c == AMONG_DST_F || c == AMONG_SRC_F) { |
| 336 | struct stat stats; |
| 337 | |
| 338 | if ((fd = open(optarg, O_RDONLY)) == -1) |
| 339 | ebt_print_error("Couldn't open file '%s'", optarg); |
| 340 | fstat(fd, &stats); |
| 341 | flen = stats.st_size; |
| 342 | /* use mmap because the file will probably be big */ |
| 343 | optarg = mmap(0, flen, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0); |
| 344 | if (optarg == MAP_FAILED) |
| 345 | ebt_print_error("Couldn't map file to memory"); |
| 346 | if (optarg[flen-1] != '\n') |
| 347 | ebt_print_error("File should end with a newline"); |
| 348 | if (strchr(optarg, '\n') != optarg+flen-1) |
| 349 | ebt_print_error("File should only contain one line"); |
| 350 | optarg[flen-1] = '\0'; |
| 351 | if (ebt_errormsg[0] != '\0') { |
| 352 | munmap(argv, flen); |
| 353 | close(fd); |
| 354 | exit(-1); |
| 355 | } |
| 356 | } |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 357 | wh = create_wormhash(optarg); |
| 358 | if (ebt_errormsg[0] != '\0') |
| 359 | break; |
| 360 | |
Bart De Schuymer | 1da1999 | 2008-03-04 19:14:29 +0000 | [diff] [blame] | 361 | new_size = old_size+ebt_mac_wormhash_size(wh); |
| 362 | h = malloc(sizeof(struct ebt_entry_match)+EBT_ALIGN(new_size)); |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 363 | if (!h) |
| 364 | ebt_print_memory(); |
Bart De Schuymer | 1da1999 | 2008-03-04 19:14:29 +0000 | [diff] [blame] | 365 | memcpy(h, *match, old_size+sizeof(struct ebt_entry_match)); |
| 366 | memcpy((char *)h+old_size+sizeof(struct ebt_entry_match), wh, |
| 367 | ebt_mac_wormhash_size(wh)); |
| 368 | h->match_size = EBT_ALIGN(new_size); |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 369 | info = (struct ebt_among_info *) h->data; |
Bart De Schuymer | a64fd6c | 2010-04-22 06:57:57 +0000 | [diff] [blame] | 370 | if (c == AMONG_DST || c == AMONG_DST_F) { |
Bart De Schuymer | 1da1999 | 2008-03-04 19:14:29 +0000 | [diff] [blame] | 371 | info->wh_dst_ofs = old_size; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 372 | } else { |
Bart De Schuymer | 1da1999 | 2008-03-04 19:14:29 +0000 | [diff] [blame] | 373 | info->wh_src_ofs = old_size; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 374 | } |
Bart De Schuymer | 1da1999 | 2008-03-04 19:14:29 +0000 | [diff] [blame] | 375 | old_size = new_size; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 376 | free(*match); |
| 377 | *match = h; |
| 378 | free(wh); |
Bart De Schuymer | 8069b5a | 2006-08-17 10:18:02 +0000 | [diff] [blame] | 379 | if (c == AMONG_DST_F || c == AMONG_SRC_F) { |
| 380 | munmap(argv, flen); |
| 381 | close(fd); |
| 382 | } |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 383 | break; |
| 384 | default: |
| 385 | return 0; |
| 386 | } |
| 387 | return 1; |
| 388 | } |
| 389 | |
| 390 | static void final_check(const struct ebt_u_entry *entry, |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 391 | const struct ebt_entry_match *match, |
| 392 | const char *name, unsigned int hookmask, |
| 393 | unsigned int time) |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 394 | { |
| 395 | } |
| 396 | |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 397 | #ifdef DEBUG |
| 398 | static void wormhash_debug(const struct ebt_mac_wormhash *wh) |
| 399 | { |
| 400 | int i; |
Bart De Schuymer | f8c9743 | 2003-09-27 17:39:09 +0000 | [diff] [blame] | 401 | |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 402 | printf("poolsize: %d\n", wh->poolsize); |
| 403 | for (i = 0; i <= 256; i++) { |
| 404 | printf("%02x ", wh->table[i]); |
| 405 | if (i % 16 == 15) { |
| 406 | printf("\n"); |
| 407 | } |
| 408 | } |
| 409 | printf("\n"); |
| 410 | } |
| 411 | #endif /* DEBUG */ |
| 412 | |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 413 | static void wormhash_printout(const struct ebt_mac_wormhash *wh) |
| 414 | { |
| 415 | int i; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 416 | unsigned char *ip; |
Bart De Schuymer | f8c9743 | 2003-09-27 17:39:09 +0000 | [diff] [blame] | 417 | |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 418 | for (i = 0; i < wh->poolsize; i++) { |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 419 | const struct ebt_mac_wormhash_tuple *p; |
Bart De Schuymer | f8c9743 | 2003-09-27 17:39:09 +0000 | [diff] [blame] | 420 | |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 421 | p = (const struct ebt_mac_wormhash_tuple *)(&wh->pool[i]); |
Bart De Schuymer | 510c9ce | 2006-01-23 18:50:54 +0000 | [diff] [blame] | 422 | ebt_print_mac(((const unsigned char *) &p->cmp[0]) + 2); |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 423 | if (p->ip) { |
| 424 | ip = (unsigned char *) &p->ip; |
| 425 | printf("=%u.%u.%u.%u", ip[0], ip[1], ip[2], ip[3]); |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 426 | } |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 427 | printf(","); |
| 428 | } |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 429 | printf(" "); |
| 430 | } |
| 431 | |
| 432 | static void print(const struct ebt_u_entry *entry, |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 433 | const struct ebt_entry_match *match) |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 434 | { |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 435 | struct ebt_among_info *info = (struct ebt_among_info *)match->data; |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 436 | |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 437 | if (info->wh_dst_ofs) { |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 438 | printf("--among-dst "); |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 439 | if (info->bitmask && EBT_AMONG_DST_NEG) { |
| 440 | printf("! "); |
| 441 | } |
| 442 | wormhash_printout(ebt_among_wh_dst(info)); |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 443 | } |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 444 | if (info->wh_src_ofs) { |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 445 | printf("--among-src "); |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 446 | if (info->bitmask && EBT_AMONG_SRC_NEG) { |
| 447 | printf("! "); |
| 448 | } |
| 449 | wormhash_printout(ebt_among_wh_src(info)); |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 450 | } |
| 451 | } |
| 452 | |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 453 | static int compare_wh(const struct ebt_mac_wormhash *aw, |
| 454 | const struct ebt_mac_wormhash *bw) |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 455 | { |
| 456 | int as, bs; |
Bart De Schuymer | f8c9743 | 2003-09-27 17:39:09 +0000 | [diff] [blame] | 457 | |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 458 | as = ebt_mac_wormhash_size(aw); |
| 459 | bs = ebt_mac_wormhash_size(bw); |
| 460 | if (as != bs) |
| 461 | return 0; |
| 462 | if (as && memcmp(aw, bw, as)) |
| 463 | return 0; |
| 464 | return 1; |
| 465 | } |
| 466 | |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 467 | static int compare(const struct ebt_entry_match *m1, |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 468 | const struct ebt_entry_match *m2) |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 469 | { |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 470 | struct ebt_among_info *a = (struct ebt_among_info *) m1->data; |
| 471 | struct ebt_among_info *b = (struct ebt_among_info *) m2->data; |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 472 | |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 473 | if (!compare_wh(ebt_among_wh_dst(a), ebt_among_wh_dst(b))) |
| 474 | return 0; |
| 475 | if (!compare_wh(ebt_among_wh_src(a), ebt_among_wh_src(b))) |
| 476 | return 0; |
| 477 | if (a->bitmask != b->bitmask) |
| 478 | return 0; |
gborowiak | c50ce6a | 2003-09-07 13:16:26 +0000 | [diff] [blame] | 479 | return 1; |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 480 | } |
| 481 | |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 482 | static struct ebt_u_match among_match = { |
Bart De Schuymer | 138bf06 | 2009-06-21 12:38:05 +0000 | [diff] [blame] | 483 | .name = "among", |
gborowiak | 6c6d731 | 2003-09-16 19:26:38 +0000 | [diff] [blame] | 484 | .size = sizeof(struct ebt_among_info), |
| 485 | .help = print_help, |
| 486 | .init = init, |
| 487 | .parse = parse, |
| 488 | .final_check = final_check, |
| 489 | .print = print, |
| 490 | .compare = compare, |
| 491 | .extra_ops = opts, |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 492 | }; |
| 493 | |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 494 | void _init(void) |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 495 | { |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 496 | ebt_register_match(&among_match); |
Bart De Schuymer | 9cc9bfa | 2003-09-02 22:43:25 +0000 | [diff] [blame] | 497 | } |