Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 1 | /* |
| 2 | * useful_functions.c, January 2004 |
| 3 | * |
| 4 | * Random collection of functions that can be used by extensions. |
| 5 | * |
| 6 | * Author: Bart De Schuymer |
| 7 | * |
| 8 | * This code is stongly inspired on the iptables code which is |
| 9 | * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU General Public License as |
| 13 | * published by the Free Software Foundation; either version 2 of the |
| 14 | * License, or (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, but |
| 17 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 19 | * General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 24 | */ |
| 25 | #include "include/ebtables_u.h" |
| 26 | #include "include/ethernetdb.h" |
| 27 | #include <stdio.h> |
| 28 | #include <netinet/ether.h> |
| 29 | #include <string.h> |
| 30 | #include <stdlib.h> |
| 31 | #include <getopt.h> |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 32 | #include <errno.h> |
| 33 | #include <sys/types.h> |
| 34 | #include <sys/socket.h> |
| 35 | #include <arpa/inet.h> |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 36 | |
| 37 | const unsigned char mac_type_unicast[ETH_ALEN] = {0,0,0,0,0,0}; |
| 38 | const unsigned char msk_type_unicast[ETH_ALEN] = {1,0,0,0,0,0}; |
| 39 | const unsigned char mac_type_multicast[ETH_ALEN] = {1,0,0,0,0,0}; |
| 40 | const unsigned char msk_type_multicast[ETH_ALEN] = {1,0,0,0,0,0}; |
| 41 | const unsigned char mac_type_broadcast[ETH_ALEN] = {255,255,255,255,255,255}; |
| 42 | const unsigned char msk_type_broadcast[ETH_ALEN] = {255,255,255,255,255,255}; |
| 43 | const unsigned char mac_type_bridge_group[ETH_ALEN] = {0x01,0x80,0xc2,0,0,0}; |
| 44 | const unsigned char msk_type_bridge_group[ETH_ALEN] = {255,255,255,255,255,255}; |
| 45 | |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 46 | /* 0: default, print only 2 digits if necessary |
Bart De Schuymer | 55d4413 | 2004-02-23 20:55:24 +0000 | [diff] [blame] | 47 | * 2: always print 2 digits, a printed mac address |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 48 | * then always has the same length */ |
Bart De Schuymer | 55d4413 | 2004-02-23 20:55:24 +0000 | [diff] [blame] | 49 | int ebt_printstyle_mac; |
| 50 | |
Bart De Schuymer | 510c9ce | 2006-01-23 18:50:54 +0000 | [diff] [blame] | 51 | void ebt_print_mac(const unsigned char *mac) |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 52 | { |
| 53 | if (ebt_printstyle_mac == 2) { |
| 54 | int j; |
| 55 | for (j = 0; j < ETH_ALEN; j++) |
Bart De Schuymer | 510c9ce | 2006-01-23 18:50:54 +0000 | [diff] [blame] | 56 | printf("%02x%s", mac[j], |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 57 | (j==ETH_ALEN-1) ? "" : ":"); |
| 58 | } else |
| 59 | printf("%s", ether_ntoa((struct ether_addr *) mac)); |
| 60 | } |
| 61 | |
Bart De Schuymer | 510c9ce | 2006-01-23 18:50:54 +0000 | [diff] [blame] | 62 | void ebt_print_mac_and_mask(const unsigned char *mac, const unsigned char *mask) |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 63 | { |
| 64 | char hlpmsk[6] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; |
| 65 | |
| 66 | if (!memcmp(mac, mac_type_unicast, 6) && |
| 67 | !memcmp(mask, msk_type_unicast, 6)) |
| 68 | printf("Unicast"); |
| 69 | else if (!memcmp(mac, mac_type_multicast, 6) && |
| 70 | !memcmp(mask, msk_type_multicast, 6)) |
| 71 | printf("Multicast"); |
| 72 | else if (!memcmp(mac, mac_type_broadcast, 6) && |
| 73 | !memcmp(mask, msk_type_broadcast, 6)) |
| 74 | printf("Broadcast"); |
| 75 | else if (!memcmp(mac, mac_type_bridge_group, 6) && |
| 76 | !memcmp(mask, msk_type_bridge_group, 6)) |
| 77 | printf("BGA"); |
| 78 | else { |
| 79 | ebt_print_mac(mac); |
| 80 | if (memcmp(mask, hlpmsk, 6)) { |
| 81 | printf("/"); |
| 82 | ebt_print_mac(mask); |
| 83 | } |
| 84 | } |
| 85 | } |
| 86 | |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 87 | /* Checks the type for validity and calls getethertypebynumber(). */ |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 88 | struct ethertypeent *parseethertypebynumber(int type) |
| 89 | { |
| 90 | if (type < 1536) |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 91 | ebt_print_error("Ethernet protocols have values >= 0x0600"); |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 92 | if (type > 0xffff) |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 93 | ebt_print_error("Ethernet protocols have values <= 0xffff"); |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 94 | return getethertypebynumber(type); |
| 95 | } |
| 96 | |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 97 | /* Put the mac address into 6 (ETH_ALEN) bytes returns 0 on success. */ |
Bart De Schuymer | 510c9ce | 2006-01-23 18:50:54 +0000 | [diff] [blame] | 98 | int ebt_get_mac_and_mask(const char *from, unsigned char *to, |
| 99 | unsigned char *mask) |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 100 | { |
| 101 | char *p; |
| 102 | int i; |
| 103 | struct ether_addr *addr; |
| 104 | |
| 105 | if (strcasecmp(from, "Unicast") == 0) { |
| 106 | memcpy(to, mac_type_unicast, ETH_ALEN); |
| 107 | memcpy(mask, msk_type_unicast, ETH_ALEN); |
| 108 | return 0; |
| 109 | } |
| 110 | if (strcasecmp(from, "Multicast") == 0) { |
| 111 | memcpy(to, mac_type_multicast, ETH_ALEN); |
| 112 | memcpy(mask, msk_type_multicast, ETH_ALEN); |
| 113 | return 0; |
| 114 | } |
| 115 | if (strcasecmp(from, "Broadcast") == 0) { |
| 116 | memcpy(to, mac_type_broadcast, ETH_ALEN); |
| 117 | memcpy(mask, msk_type_broadcast, ETH_ALEN); |
| 118 | return 0; |
| 119 | } |
| 120 | if (strcasecmp(from, "BGA") == 0) { |
| 121 | memcpy(to, mac_type_bridge_group, ETH_ALEN); |
| 122 | memcpy(mask, msk_type_bridge_group, ETH_ALEN); |
| 123 | return 0; |
| 124 | } |
| 125 | if ( (p = strrchr(from, '/')) != NULL) { |
| 126 | *p = '\0'; |
| 127 | if (!(addr = ether_aton(p + 1))) |
| 128 | return -1; |
| 129 | memcpy(mask, addr, ETH_ALEN); |
| 130 | } else |
| 131 | memset(mask, 0xff, ETH_ALEN); |
| 132 | if (!(addr = ether_aton(from))) |
| 133 | return -1; |
| 134 | memcpy(to, addr, ETH_ALEN); |
| 135 | for (i = 0; i < ETH_ALEN; i++) |
| 136 | to[i] &= mask[i]; |
| 137 | return 0; |
| 138 | } |
| 139 | |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 140 | /* 0: default |
| 141 | * 1: the inverse '!' of the option has already been specified */ |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 142 | int ebt_invert = 0; |
Bart De Schuymer | 55d4413 | 2004-02-23 20:55:24 +0000 | [diff] [blame] | 143 | |
| 144 | /* |
| 145 | * Check if the inverse of the option is specified. This is used |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 146 | * in the parse functions of the extensions and ebtables.c |
Bart De Schuymer | 55d4413 | 2004-02-23 20:55:24 +0000 | [diff] [blame] | 147 | */ |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 148 | int _ebt_check_inverse(const char option[], int argc, char **argv) |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 149 | { |
Bart De Schuymer | 620443a | 2004-11-14 13:22:29 +0000 | [diff] [blame] | 150 | if (!option) |
| 151 | return ebt_invert; |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 152 | if (strcmp(option, "!") == 0) { |
| 153 | if (ebt_invert == 1) |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 154 | ebt_print_error("Double use of '!' not allowed"); |
| 155 | if (optind >= argc) |
| 156 | optarg = NULL; |
| 157 | else |
| 158 | optarg = argv[optind]; |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 159 | optind++; |
| 160 | ebt_invert = 1; |
| 161 | return 1; |
| 162 | } |
| 163 | return ebt_invert; |
| 164 | } |
| 165 | |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 166 | /* Make sure the same option wasn't specified twice. This is used |
| 167 | * in the parse functions of the extensions and ebtables.c */ |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 168 | void ebt_check_option(unsigned int *flags, unsigned int mask) |
| 169 | { |
| 170 | if (*flags & mask) |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 171 | ebt_print_error("Multiple use of same option not allowed"); |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 172 | *flags |= mask; |
| 173 | } |
| 174 | |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 175 | /* Put the ip string into 4 bytes. */ |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 176 | static int undot_ip(char *ip, unsigned char *ip2) |
| 177 | { |
| 178 | char *p, *q, *end; |
| 179 | long int onebyte; |
| 180 | int i; |
| 181 | char buf[20]; |
| 182 | |
| 183 | strncpy(buf, ip, sizeof(buf) - 1); |
| 184 | |
| 185 | p = buf; |
| 186 | for (i = 0; i < 3; i++) { |
| 187 | if ((q = strchr(p, '.')) == NULL) |
| 188 | return -1; |
| 189 | *q = '\0'; |
| 190 | onebyte = strtol(p, &end, 10); |
| 191 | if (*end != '\0' || onebyte > 255 || onebyte < 0) |
| 192 | return -1; |
| 193 | ip2[i] = (unsigned char)onebyte; |
| 194 | p = q + 1; |
| 195 | } |
| 196 | |
| 197 | onebyte = strtol(p, &end, 10); |
| 198 | if (*end != '\0' || onebyte > 255 || onebyte < 0) |
| 199 | return -1; |
| 200 | ip2[3] = (unsigned char)onebyte; |
| 201 | |
| 202 | return 0; |
| 203 | } |
| 204 | |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 205 | /* Put the mask into 4 bytes. */ |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 206 | static int ip_mask(char *mask, unsigned char *mask2) |
| 207 | { |
| 208 | char *end; |
| 209 | long int bits; |
| 210 | uint32_t mask22; |
| 211 | |
| 212 | if (undot_ip(mask, mask2)) { |
| 213 | /* not the /a.b.c.e format, maybe the /x format */ |
| 214 | bits = strtol(mask, &end, 10); |
| 215 | if (*end != '\0' || bits > 32 || bits < 0) |
| 216 | return -1; |
| 217 | if (bits != 0) { |
| 218 | mask22 = htonl(0xFFFFFFFF << (32 - bits)); |
| 219 | memcpy(mask2, &mask22, 4); |
| 220 | } else { |
| 221 | mask22 = 0xFFFFFFFF; |
| 222 | memcpy(mask2, &mask22, 4); |
| 223 | } |
| 224 | } |
| 225 | return 0; |
| 226 | } |
| 227 | |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 228 | /* Set the ip mask and ip address. Callers should check ebt_errormsg[0]. |
| 229 | * The string pointed to by address can be altered. */ |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 230 | void ebt_parse_ip_address(char *address, uint32_t *addr, uint32_t *msk) |
| 231 | { |
| 232 | char *p; |
| 233 | |
| 234 | /* first the mask */ |
| 235 | if ((p = strrchr(address, '/')) != NULL) { |
| 236 | *p = '\0'; |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 237 | if (ip_mask(p + 1, (unsigned char *)msk)) { |
| 238 | ebt_print_error("Problem with the IP mask '%s'", p + 1); |
| 239 | return; |
| 240 | } |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 241 | } else |
| 242 | *msk = 0xFFFFFFFF; |
| 243 | |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 244 | if (undot_ip(address, (unsigned char *)addr)) { |
| 245 | ebt_print_error("Problem with the IP address '%s'", address); |
| 246 | return; |
| 247 | } |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 248 | *addr = *addr & *msk; |
| 249 | } |
| 250 | |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 251 | |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 252 | /* Transform the ip mask into a string ready for output. */ |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 253 | char *ebt_mask_to_dotted(uint32_t mask) |
| 254 | { |
| 255 | int i; |
| 256 | static char buf[20]; |
| 257 | uint32_t maskaddr, bits; |
| 258 | |
| 259 | maskaddr = ntohl(mask); |
| 260 | |
| 261 | /* don't print /32 */ |
| 262 | if (mask == 0xFFFFFFFFL) { |
| 263 | *buf = '\0'; |
| 264 | return buf; |
| 265 | } |
| 266 | |
| 267 | i = 32; |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 268 | bits = 0xFFFFFFFEL; /* Case 0xFFFFFFFF has just been dealt with */ |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 269 | while (--i >= 0 && maskaddr != bits) |
| 270 | bits <<= 1; |
| 271 | |
| 272 | if (i > 0) |
| 273 | sprintf(buf, "/%d", i); |
| 274 | else if (!i) |
| 275 | *buf = '\0'; |
| 276 | else |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 277 | /* Mask was not a decent combination of 1's and 0's */ |
Bart De Schuymer | 80c82bb | 2004-01-14 20:06:44 +0000 | [diff] [blame] | 278 | sprintf(buf, "/%d.%d.%d.%d", ((unsigned char *)&mask)[0], |
| 279 | ((unsigned char *)&mask)[1], ((unsigned char *)&mask)[2], |
| 280 | ((unsigned char *)&mask)[3]); |
| 281 | |
| 282 | return buf; |
| 283 | } |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 284 | |
| 285 | /* Most of the following code is derived from iptables */ |
| 286 | static void |
| 287 | in6addrcpy(struct in6_addr *dst, struct in6_addr *src) |
| 288 | { |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 289 | memcpy(dst, src, sizeof(struct in6_addr)); |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | int string_to_number_ll(const char *s, unsigned long long min, |
| 293 | unsigned long long max, unsigned long long *ret) |
| 294 | { |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 295 | unsigned long long number; |
| 296 | char *end; |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 297 | |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 298 | /* Handle hex, octal, etc. */ |
| 299 | errno = 0; |
| 300 | number = strtoull(s, &end, 0); |
| 301 | if (*end == '\0' && end != s) { |
| 302 | /* we parsed a number, let's see if we want this */ |
| 303 | if (errno != ERANGE && min <= number && (!max || number <= max)) { |
| 304 | *ret = number; |
| 305 | return 0; |
| 306 | } |
| 307 | } |
| 308 | return -1; |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | int string_to_number_l(const char *s, unsigned long min, unsigned long max, |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 312 | unsigned long *ret) |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 313 | { |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 314 | int result; |
| 315 | unsigned long long number; |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 316 | |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 317 | result = string_to_number_ll(s, min, max, &number); |
| 318 | *ret = (unsigned long)number; |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 319 | |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 320 | return result; |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 321 | } |
| 322 | |
| 323 | int string_to_number(const char *s, unsigned int min, unsigned int max, |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 324 | unsigned int *ret) |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 325 | { |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 326 | int result; |
| 327 | unsigned long number; |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 328 | |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 329 | result = string_to_number_l(s, min, max, &number); |
| 330 | *ret = (unsigned int)number; |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 331 | |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 332 | return result; |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 333 | } |
| 334 | |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 335 | static struct in6_addr *numeric_to_addr(const char *num) |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 336 | { |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 337 | static struct in6_addr ap; |
| 338 | int err; |
| 339 | |
| 340 | if ((err=inet_pton(AF_INET6, num, &ap)) == 1) |
| 341 | return ≈ |
| 342 | return (struct in6_addr *)NULL; |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 343 | } |
| 344 | |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 345 | static struct in6_addr *parse_ip6_mask(char *mask) |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 346 | { |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 347 | static struct in6_addr maskaddr; |
| 348 | struct in6_addr *addrp; |
| 349 | unsigned int bits; |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 350 | |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 351 | if (mask == NULL) { |
| 352 | /* no mask at all defaults to 128 bits */ |
| 353 | memset(&maskaddr, 0xff, sizeof maskaddr); |
| 354 | return &maskaddr; |
| 355 | } |
| 356 | if ((addrp = numeric_to_addr(mask)) != NULL) |
| 357 | return addrp; |
| 358 | if (string_to_number(mask, 0, 128, &bits) == -1) |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 359 | ebt_print_error("Invalid IPv6 Mask '%s' specified", mask); |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 360 | if (bits != 0) { |
| 361 | char *p = (char *)&maskaddr; |
| 362 | memset(p, 0xff, bits / 8); |
| 363 | memset(p + (bits / 8) + 1, 0, (128 - bits) / 8); |
| 364 | p[bits / 8] = 0xff << (8 - (bits & 7)); |
| 365 | return &maskaddr; |
| 366 | } |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 367 | |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 368 | memset(&maskaddr, 0, sizeof maskaddr); |
| 369 | return &maskaddr; |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | /* Set the ipv6 mask and address. Callers should check ebt_errormsg[0]. |
| 373 | * The string pointed to by address can be altered. */ |
Bart De Schuymer | 0f10744 | 2009-02-12 19:36:04 +0000 | [diff] [blame] | 374 | void ebt_parse_ip6_address(char *address, struct in6_addr *addr, |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 375 | struct in6_addr *msk) |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 376 | { |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 377 | struct in6_addr *tmp_addr; |
| 378 | char buf[256]; |
| 379 | char *p; |
| 380 | int i; |
| 381 | int err; |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 382 | |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 383 | strncpy(buf, address, sizeof(buf) - 1); |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 384 | /* first the mask */ |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 385 | buf[sizeof(buf) - 1] = '\0'; |
| 386 | if ((p = strrchr(buf, '/')) != NULL) { |
| 387 | *p = '\0'; |
| 388 | tmp_addr = parse_ip6_mask(p + 1); |
| 389 | } else |
| 390 | tmp_addr = parse_ip6_mask(NULL); |
| 391 | in6addrcpy(msk, tmp_addr); |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 392 | |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 393 | /* if a null mask is given, the name is ignored, like in "any/0" */ |
| 394 | if (!memcmp(msk, &in6addr_any, sizeof(in6addr_any))) |
| 395 | strcpy(buf, "::"); |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 396 | |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 397 | if ((err=inet_pton(AF_INET6, buf, addr)) < 1) { |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 398 | ebt_print_error("Invalid IPv6 Address '%s' specified", buf); |
| 399 | return; |
| 400 | } |
| 401 | |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 402 | for (i = 0; i < 4; i++) |
Bart De Schuymer | 0f10744 | 2009-02-12 19:36:04 +0000 | [diff] [blame] | 403 | addr->s6_addr32[i] &= msk->s6_addr32[i]; |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | /* Transform the ip6 addr into a string ready for output. */ |
| 407 | char *ebt_ip6_to_numeric(const struct in6_addr *addrp) |
| 408 | { |
Bart De Schuymer | c129be9 | 2009-02-12 19:18:03 +0000 | [diff] [blame] | 409 | /* 0000:0000:0000:0000:0000:000.000.000.000 |
| 410 | * 0000:0000:0000:0000:0000:0000:0000:0000 */ |
| 411 | static char buf[50+1]; |
| 412 | return (char *)inet_ntop(AF_INET6, addrp, buf, sizeof(buf)); |
Bart De Schuymer | 005837e | 2008-02-21 21:32:25 +0000 | [diff] [blame] | 413 | } |