Simon Kelley | aff3396 | 2015-01-31 20:13:40 +0000 | [diff] [blame] | 1 | /* dnsmasq is Copyright (c) 2000-2015 Simon Kelley |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 2 | |
| 3 | This program is free software; you can redistribute it and/or modify |
| 4 | it under the terms of the GNU General Public License as published by |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 5 | the Free Software Foundation; version 2 dated June, 1991, or |
| 6 | (at your option) version 3 dated 29 June, 2007. |
| 7 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 8 | This program is distributed in the hope that it will be useful, |
| 9 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | GNU General Public License for more details. |
Simon Kelley | 73a08a2 | 2009-02-05 20:28:08 +0000 | [diff] [blame] | 12 | |
| 13 | You should have received a copy of the GNU General Public License |
| 14 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 15 | */ |
| 16 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 17 | /* The SURF random number generator was taken from djbdns-1.05, by |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 18 | Daniel J Bernstein, which is public domain. */ |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 19 | |
| 20 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 21 | #include "dnsmasq.h" |
| 22 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 23 | #ifdef HAVE_BROKEN_RTC |
| 24 | #include <sys/times.h> |
| 25 | #endif |
| 26 | |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 27 | #if defined(LOCALEDIR) || defined(HAVE_IDN) |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 28 | #include <idna.h> |
| 29 | #endif |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 30 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 31 | /* SURF random number generator */ |
| 32 | |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 33 | static u32 seed[32]; |
| 34 | static u32 in[12]; |
| 35 | static u32 out[8]; |
Simon Kelley | 6586e83 | 2013-11-07 14:20:13 +0000 | [diff] [blame] | 36 | static int outleft = 0; |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 37 | |
| 38 | void rand_init() |
| 39 | { |
| 40 | int fd = open(RANDFILE, O_RDONLY); |
| 41 | |
| 42 | if (fd == -1 || |
| 43 | !read_write(fd, (unsigned char *)&seed, sizeof(seed), 1) || |
| 44 | !read_write(fd, (unsigned char *)&in, sizeof(in), 1)) |
| 45 | die(_("failed to seed the random number generator: %s"), NULL, EC_MISC); |
| 46 | |
| 47 | close(fd); |
| 48 | } |
| 49 | |
| 50 | #define ROTATE(x,b) (((x) << (b)) | ((x) >> (32 - (b)))) |
| 51 | #define MUSH(i,b) x = t[i] += (((x ^ seed[i]) + sum) ^ ROTATE(x,b)); |
| 52 | |
| 53 | static void surf(void) |
| 54 | { |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 55 | u32 t[12]; u32 x; u32 sum = 0; |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 56 | int r; int i; int loop; |
| 57 | |
| 58 | for (i = 0;i < 12;++i) t[i] = in[i] ^ seed[12 + i]; |
| 59 | for (i = 0;i < 8;++i) out[i] = seed[24 + i]; |
| 60 | x = t[11]; |
| 61 | for (loop = 0;loop < 2;++loop) { |
| 62 | for (r = 0;r < 16;++r) { |
| 63 | sum += 0x9e3779b9; |
| 64 | MUSH(0,5) MUSH(1,7) MUSH(2,9) MUSH(3,13) |
| 65 | MUSH(4,5) MUSH(5,7) MUSH(6,9) MUSH(7,13) |
| 66 | MUSH(8,5) MUSH(9,7) MUSH(10,9) MUSH(11,13) |
| 67 | } |
| 68 | for (i = 0;i < 8;++i) out[i] ^= t[i + 4]; |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | unsigned short rand16(void) |
| 73 | { |
Simon Kelley | 6586e83 | 2013-11-07 14:20:13 +0000 | [diff] [blame] | 74 | if (!outleft) |
| 75 | { |
| 76 | if (!++in[0]) if (!++in[1]) if (!++in[2]) ++in[3]; |
| 77 | surf(); |
| 78 | outleft = 8; |
| 79 | } |
| 80 | |
| 81 | return (unsigned short) out[--outleft]; |
| 82 | } |
| 83 | |
Simon Kelley | b5ea1cc | 2014-07-29 16:34:14 +0100 | [diff] [blame] | 84 | u32 rand32(void) |
| 85 | { |
| 86 | if (!outleft) |
| 87 | { |
| 88 | if (!++in[0]) if (!++in[1]) if (!++in[2]) ++in[3]; |
| 89 | surf(); |
| 90 | outleft = 8; |
| 91 | } |
| 92 | |
| 93 | return out[--outleft]; |
| 94 | } |
| 95 | |
Simon Kelley | 6586e83 | 2013-11-07 14:20:13 +0000 | [diff] [blame] | 96 | u64 rand64(void) |
| 97 | { |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 98 | static int outleft = 0; |
| 99 | |
Simon Kelley | 6586e83 | 2013-11-07 14:20:13 +0000 | [diff] [blame] | 100 | if (outleft < 2) |
| 101 | { |
| 102 | if (!++in[0]) if (!++in[1]) if (!++in[2]) ++in[3]; |
| 103 | surf(); |
| 104 | outleft = 8; |
| 105 | } |
| 106 | |
| 107 | outleft -= 2; |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 108 | |
Simon Kelley | 6586e83 | 2013-11-07 14:20:13 +0000 | [diff] [blame] | 109 | return (u64)out[outleft+1] + (((u64)out[outleft]) << 32); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 110 | } |
| 111 | |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 112 | static int check_name(char *in) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 113 | { |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 114 | /* remove trailing . |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 115 | also fail empty string and label > 63 chars */ |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 116 | size_t dotgap = 0, l = strlen(in); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 117 | char c; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 118 | int nowhite = 0; |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 119 | |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 120 | if (l == 0 || l > MAXDNAME) return 0; |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 121 | |
| 122 | if (in[l-1] == '.') |
Simon Kelley | a222641 | 2004-05-13 20:27:08 +0100 | [diff] [blame] | 123 | { |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 124 | in[l-1] = 0; |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 125 | nowhite = 1; |
Simon Kelley | a222641 | 2004-05-13 20:27:08 +0100 | [diff] [blame] | 126 | } |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 127 | |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 128 | for (; (c = *in); in++) |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 129 | { |
| 130 | if (c == '.') |
| 131 | dotgap = 0; |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 132 | else if (++dotgap > MAXLABEL) |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 133 | return 0; |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 134 | else if (isascii((unsigned char)c) && iscntrl((unsigned char)c)) |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 135 | /* iscntrl only gives expected results for ascii */ |
| 136 | return 0; |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 137 | #if !defined(LOCALEDIR) && !defined(HAVE_IDN) |
| 138 | else if (!isascii((unsigned char)c)) |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 139 | return 0; |
| 140 | #endif |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 141 | else if (c != ' ') |
| 142 | nowhite = 1; |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 143 | } |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 144 | |
| 145 | if (!nowhite) |
| 146 | return 0; |
| 147 | |
| 148 | return 1; |
| 149 | } |
| 150 | |
| 151 | /* Hostnames have a more limited valid charset than domain names |
| 152 | so check for legal char a-z A-Z 0-9 - _ |
| 153 | Note that this may receive a FQDN, so only check the first label |
| 154 | for the tighter criteria. */ |
| 155 | int legal_hostname(char *name) |
| 156 | { |
| 157 | char c; |
Simon Kelley | 7abb69b | 2013-04-29 10:52:16 +0100 | [diff] [blame] | 158 | int first; |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 159 | |
| 160 | if (!check_name(name)) |
| 161 | return 0; |
| 162 | |
Simon Kelley | 7abb69b | 2013-04-29 10:52:16 +0100 | [diff] [blame] | 163 | for (first = 1; (c = *name); name++, first = 0) |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 164 | /* check for legal char a-z A-Z 0-9 - _ . */ |
| 165 | { |
| 166 | if ((c >= 'A' && c <= 'Z') || |
Kyle Mestery | d859ca2 | 2013-07-24 13:11:58 +0100 | [diff] [blame] | 167 | (c >= 'a' && c <= 'z') || |
| 168 | (c >= '0' && c <= '9')) |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 169 | continue; |
Simon Kelley | 7abb69b | 2013-04-29 10:52:16 +0100 | [diff] [blame] | 170 | |
Kyle Mestery | d859ca2 | 2013-07-24 13:11:58 +0100 | [diff] [blame] | 171 | if (!first && (c == '-' || c == '_')) |
Simon Kelley | 7abb69b | 2013-04-29 10:52:16 +0100 | [diff] [blame] | 172 | continue; |
Kyle Mestery | d859ca2 | 2013-07-24 13:11:58 +0100 | [diff] [blame] | 173 | |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 174 | /* end of hostname part */ |
| 175 | if (c == '.') |
| 176 | return 1; |
| 177 | |
| 178 | return 0; |
| 179 | } |
| 180 | |
| 181 | return 1; |
| 182 | } |
| 183 | |
| 184 | char *canonicalise(char *in, int *nomem) |
| 185 | { |
| 186 | char *ret = NULL; |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 187 | #if defined(LOCALEDIR) || defined(HAVE_IDN) |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 188 | int rc; |
| 189 | #endif |
| 190 | |
| 191 | if (nomem) |
| 192 | *nomem = 0; |
| 193 | |
| 194 | if (!check_name(in)) |
| 195 | return NULL; |
| 196 | |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 197 | #if defined(LOCALEDIR) || defined(HAVE_IDN) |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 198 | if ((rc = idna_to_ascii_lz(in, &ret, 0)) != IDNA_SUCCESS) |
| 199 | { |
| 200 | if (ret) |
| 201 | free(ret); |
| 202 | |
| 203 | if (nomem && (rc == IDNA_MALLOC_ERROR || rc == IDNA_DLOPEN_ERROR)) |
| 204 | { |
| 205 | my_syslog(LOG_ERR, _("failed to allocate memory")); |
| 206 | *nomem = 1; |
| 207 | } |
| 208 | |
| 209 | return NULL; |
| 210 | } |
| 211 | #else |
| 212 | if ((ret = whine_malloc(strlen(in)+1))) |
| 213 | strcpy(ret, in); |
| 214 | else if (nomem) |
| 215 | *nomem = 1; |
| 216 | #endif |
| 217 | |
| 218 | return ret; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 219 | } |
| 220 | |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 221 | unsigned char *do_rfc1035_name(unsigned char *p, char *sval) |
| 222 | { |
| 223 | int j; |
| 224 | |
| 225 | while (sval && *sval) |
| 226 | { |
| 227 | unsigned char *cp = p++; |
| 228 | for (j = 0; *sval && (*sval != '.'); sval++, j++) |
Simon Kelley | cbe379a | 2015-04-21 22:57:06 +0100 | [diff] [blame] | 229 | { |
| 230 | #ifdef HAVE_DNSSEC |
| 231 | if (option_bool(OPT_DNSSEC_VALID) && *sval == NAME_ESCAPE) |
Simon Kelley | b8f1655 | 2015-04-22 21:14:31 +0100 | [diff] [blame^] | 232 | *p++ = (*(++sval))-1; |
Simon Kelley | cbe379a | 2015-04-21 22:57:06 +0100 | [diff] [blame] | 233 | else |
| 234 | #endif |
| 235 | *p++ = *sval; |
| 236 | } |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 237 | *cp = j; |
| 238 | if (*sval) |
| 239 | sval++; |
| 240 | } |
| 241 | return p; |
| 242 | } |
| 243 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 244 | /* for use during startup */ |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 245 | void *safe_malloc(size_t size) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 246 | { |
| 247 | void *ret = malloc(size); |
| 248 | |
| 249 | if (!ret) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 250 | die(_("could not get memory"), NULL, EC_NOMEM); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 251 | |
| 252 | return ret; |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 253 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 254 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 255 | void safe_pipe(int *fd, int read_noblock) |
| 256 | { |
| 257 | if (pipe(fd) == -1 || |
| 258 | !fix_fd(fd[1]) || |
| 259 | (read_noblock && !fix_fd(fd[0]))) |
| 260 | die(_("cannot create pipe: %s"), NULL, EC_MISC); |
| 261 | } |
| 262 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 263 | void *whine_malloc(size_t size) |
| 264 | { |
| 265 | void *ret = malloc(size); |
| 266 | |
| 267 | if (!ret) |
| 268 | my_syslog(LOG_ERR, _("failed to allocate %d bytes"), (int) size); |
| 269 | |
| 270 | return ret; |
| 271 | } |
| 272 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 273 | int sockaddr_isequal(union mysockaddr *s1, union mysockaddr *s2) |
| 274 | { |
| 275 | if (s1->sa.sa_family == s2->sa.sa_family) |
| 276 | { |
| 277 | if (s1->sa.sa_family == AF_INET && |
| 278 | s1->in.sin_port == s2->in.sin_port && |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 279 | s1->in.sin_addr.s_addr == s2->in.sin_addr.s_addr) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 280 | return 1; |
| 281 | #ifdef HAVE_IPV6 |
| 282 | if (s1->sa.sa_family == AF_INET6 && |
| 283 | s1->in6.sin6_port == s2->in6.sin6_port && |
Simon Kelley | 3934155 | 2015-01-18 22:11:10 +0000 | [diff] [blame] | 284 | s1->in6.sin6_scope_id == s2->in6.sin6_scope_id && |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 285 | IN6_ARE_ADDR_EQUAL(&s1->in6.sin6_addr, &s2->in6.sin6_addr)) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 286 | return 1; |
| 287 | #endif |
| 288 | } |
| 289 | return 0; |
| 290 | } |
| 291 | |
| 292 | int sa_len(union mysockaddr *addr) |
| 293 | { |
| 294 | #ifdef HAVE_SOCKADDR_SA_LEN |
| 295 | return addr->sa.sa_len; |
| 296 | #else |
| 297 | #ifdef HAVE_IPV6 |
| 298 | if (addr->sa.sa_family == AF_INET6) |
| 299 | return sizeof(addr->in6); |
| 300 | else |
| 301 | #endif |
| 302 | return sizeof(addr->in); |
| 303 | #endif |
| 304 | } |
| 305 | |
| 306 | /* don't use strcasecmp and friends here - they may be messed up by LOCALE */ |
Simon Kelley | c99df93 | 2012-10-12 13:39:04 +0100 | [diff] [blame] | 307 | int hostname_isequal(const char *a, const char *b) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 308 | { |
| 309 | unsigned int c1, c2; |
| 310 | |
| 311 | do { |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 312 | c1 = (unsigned char) *a++; |
| 313 | c2 = (unsigned char) *b++; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 314 | |
| 315 | if (c1 >= 'A' && c1 <= 'Z') |
| 316 | c1 += 'a' - 'A'; |
| 317 | if (c2 >= 'A' && c2 <= 'Z') |
| 318 | c2 += 'a' - 'A'; |
| 319 | |
| 320 | if (c1 != c2) |
| 321 | return 0; |
| 322 | } while (c1); |
| 323 | |
| 324 | return 1; |
| 325 | } |
| 326 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 327 | time_t dnsmasq_time(void) |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 328 | { |
| 329 | #ifdef HAVE_BROKEN_RTC |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 330 | struct tms dummy; |
| 331 | static long tps = 0; |
| 332 | |
| 333 | if (tps == 0) |
| 334 | tps = sysconf(_SC_CLK_TCK); |
| 335 | |
| 336 | return (time_t)(times(&dummy)/tps); |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 337 | #else |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 338 | return time(NULL); |
| 339 | #endif |
| 340 | } |
Simon Kelley | a84fa1d | 2004-04-23 22:21:21 +0100 | [diff] [blame] | 341 | |
Lung-Pin Chang | dc8a1b1 | 2014-07-02 10:48:05 +0800 | [diff] [blame] | 342 | int netmask_length(struct in_addr mask) |
| 343 | { |
| 344 | int zero_count = 0; |
| 345 | |
Simon Kelley | 6d8e8ac | 2014-07-13 22:12:45 +0100 | [diff] [blame] | 346 | while (0x0 == (mask.s_addr & 0x1) && zero_count < 32) |
| 347 | { |
| 348 | mask.s_addr >>= 1; |
| 349 | zero_count++; |
| 350 | } |
| 351 | |
Lung-Pin Chang | dc8a1b1 | 2014-07-02 10:48:05 +0800 | [diff] [blame] | 352 | return 32 - zero_count; |
| 353 | } |
| 354 | |
Simon Kelley | a84fa1d | 2004-04-23 22:21:21 +0100 | [diff] [blame] | 355 | int is_same_net(struct in_addr a, struct in_addr b, struct in_addr mask) |
| 356 | { |
| 357 | return (a.s_addr & mask.s_addr) == (b.s_addr & mask.s_addr); |
| 358 | } |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 359 | |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 360 | #ifdef HAVE_IPV6 |
| 361 | int is_same_net6(struct in6_addr *a, struct in6_addr *b, int prefixlen) |
| 362 | { |
| 363 | int pfbytes = prefixlen >> 3; |
| 364 | int pfbits = prefixlen & 7; |
| 365 | |
| 366 | if (memcmp(&a->s6_addr, &b->s6_addr, pfbytes) != 0) |
| 367 | return 0; |
| 368 | |
| 369 | if (pfbits == 0 || |
Simon Kelley | c64b7f6 | 2012-05-18 10:19:59 +0100 | [diff] [blame] | 370 | (a->s6_addr[pfbytes] >> (8 - pfbits) == b->s6_addr[pfbytes] >> (8 - pfbits))) |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 371 | return 1; |
| 372 | |
| 373 | return 0; |
| 374 | } |
| 375 | |
Simon Kelley | 52b92f4 | 2012-01-22 16:05:15 +0000 | [diff] [blame] | 376 | /* return least signigicant 64 bits if IPv6 address */ |
| 377 | u64 addr6part(struct in6_addr *addr) |
| 378 | { |
| 379 | int i; |
| 380 | u64 ret = 0; |
| 381 | |
| 382 | for (i = 8; i < 16; i++) |
| 383 | ret = (ret << 8) + addr->s6_addr[i]; |
| 384 | |
| 385 | return ret; |
| 386 | } |
| 387 | |
| 388 | void setaddr6part(struct in6_addr *addr, u64 host) |
| 389 | { |
| 390 | int i; |
| 391 | |
| 392 | for (i = 15; i >= 8; i--) |
| 393 | { |
| 394 | addr->s6_addr[i] = host; |
| 395 | host = host >> 8; |
| 396 | } |
| 397 | } |
| 398 | |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 399 | #endif |
| 400 | |
| 401 | |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 402 | /* returns port number from address */ |
| 403 | int prettyprint_addr(union mysockaddr *addr, char *buf) |
| 404 | { |
| 405 | int port = 0; |
| 406 | |
| 407 | #ifdef HAVE_IPV6 |
| 408 | if (addr->sa.sa_family == AF_INET) |
| 409 | { |
| 410 | inet_ntop(AF_INET, &addr->in.sin_addr, buf, ADDRSTRLEN); |
| 411 | port = ntohs(addr->in.sin_port); |
| 412 | } |
| 413 | else if (addr->sa.sa_family == AF_INET6) |
| 414 | { |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 415 | char name[IF_NAMESIZE]; |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 416 | inet_ntop(AF_INET6, &addr->in6.sin6_addr, buf, ADDRSTRLEN); |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 417 | if (addr->in6.sin6_scope_id != 0 && |
| 418 | if_indextoname(addr->in6.sin6_scope_id, name) && |
| 419 | strlen(buf) + strlen(name) + 2 <= ADDRSTRLEN) |
| 420 | { |
| 421 | strcat(buf, "%"); |
| 422 | strcat(buf, name); |
| 423 | } |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 424 | port = ntohs(addr->in6.sin6_port); |
| 425 | } |
| 426 | #else |
| 427 | strcpy(buf, inet_ntoa(addr->in.sin_addr)); |
| 428 | port = ntohs(addr->in.sin_port); |
| 429 | #endif |
| 430 | |
| 431 | return port; |
| 432 | } |
| 433 | |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 434 | void prettyprint_time(char *buf, unsigned int t) |
| 435 | { |
| 436 | if (t == 0xffffffff) |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 437 | sprintf(buf, _("infinite")); |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 438 | else |
| 439 | { |
| 440 | unsigned int x, p = 0; |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 441 | if ((x = t/86400)) |
| 442 | p += sprintf(&buf[p], "%dd", x); |
| 443 | if ((x = (t/3600)%24)) |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 444 | p += sprintf(&buf[p], "%dh", x); |
| 445 | if ((x = (t/60)%60)) |
| 446 | p += sprintf(&buf[p], "%dm", x); |
| 447 | if ((x = t%60)) |
| 448 | p += sprintf(&buf[p], "%ds", x); |
| 449 | } |
| 450 | } |
| 451 | |
| 452 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 453 | /* in may equal out, when maxlen may be -1 (No max len). |
| 454 | Return -1 for extraneous no-hex chars found. */ |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 455 | int parse_hex(char *in, unsigned char *out, int maxlen, |
| 456 | unsigned int *wildcard_mask, int *mac_type) |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 457 | { |
| 458 | int mask = 0, i = 0; |
| 459 | char *r; |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 460 | |
| 461 | if (mac_type) |
| 462 | *mac_type = 0; |
| 463 | |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 464 | while (maxlen == -1 || i < maxlen) |
| 465 | { |
Simon Kelley | 9f7f3b1 | 2012-05-28 21:39:57 +0100 | [diff] [blame] | 466 | for (r = in; *r != 0 && *r != ':' && *r != '-' && *r != ' '; r++) |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 467 | if (*r != '*' && !isxdigit((unsigned char)*r)) |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 468 | return -1; |
| 469 | |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 470 | if (*r == 0) |
| 471 | maxlen = i; |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 472 | |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 473 | if (r != in ) |
| 474 | { |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 475 | if (*r == '-' && i == 0 && mac_type) |
| 476 | { |
| 477 | *r = 0; |
| 478 | *mac_type = strtol(in, NULL, 16); |
| 479 | mac_type = NULL; |
| 480 | } |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 481 | else |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 482 | { |
| 483 | *r = 0; |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 484 | if (strcmp(in, "*") == 0) |
Simon Kelley | 9f7f3b1 | 2012-05-28 21:39:57 +0100 | [diff] [blame] | 485 | { |
| 486 | mask = (mask << 1) | 1; |
| 487 | i++; |
| 488 | } |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 489 | else |
Simon Kelley | 9f7f3b1 | 2012-05-28 21:39:57 +0100 | [diff] [blame] | 490 | { |
| 491 | int j, bytes = (1 + (r - in))/2; |
| 492 | for (j = 0; j < bytes; j++) |
| 493 | { |
Vladislav Grishenko | 50db349 | 2013-11-26 11:09:31 +0000 | [diff] [blame] | 494 | char sav = sav; |
Simon Kelley | 9f7f3b1 | 2012-05-28 21:39:57 +0100 | [diff] [blame] | 495 | if (j < bytes - 1) |
| 496 | { |
| 497 | sav = in[(j+1)*2]; |
| 498 | in[(j+1)*2] = 0; |
| 499 | } |
| 500 | out[i] = strtol(&in[j*2], NULL, 16); |
| 501 | mask = mask << 1; |
| 502 | i++; |
| 503 | if (j < bytes - 1) |
| 504 | in[(j+1)*2] = sav; |
| 505 | } |
| 506 | } |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 507 | } |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 508 | } |
| 509 | in = r+1; |
| 510 | } |
| 511 | |
| 512 | if (wildcard_mask) |
| 513 | *wildcard_mask = mask; |
| 514 | |
| 515 | return i; |
| 516 | } |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 517 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 518 | /* return 0 for no match, or (no matched octets) + 1 */ |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 519 | int memcmp_masked(unsigned char *a, unsigned char *b, int len, unsigned int mask) |
| 520 | { |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 521 | int i, count; |
| 522 | for (count = 1, i = len - 1; i >= 0; i--, mask = mask >> 1) |
| 523 | if (!(mask & 1)) |
| 524 | { |
| 525 | if (a[i] == b[i]) |
| 526 | count++; |
| 527 | else |
| 528 | return 0; |
| 529 | } |
| 530 | return count; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | /* _note_ may copy buffer */ |
| 534 | int expand_buf(struct iovec *iov, size_t size) |
| 535 | { |
| 536 | void *new; |
| 537 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 538 | if (size <= (size_t)iov->iov_len) |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 539 | return 1; |
| 540 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 541 | if (!(new = whine_malloc(size))) |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 542 | { |
| 543 | errno = ENOMEM; |
| 544 | return 0; |
| 545 | } |
| 546 | |
| 547 | if (iov->iov_base) |
| 548 | { |
| 549 | memcpy(new, iov->iov_base, iov->iov_len); |
| 550 | free(iov->iov_base); |
| 551 | } |
| 552 | |
| 553 | iov->iov_base = new; |
| 554 | iov->iov_len = size; |
| 555 | |
| 556 | return 1; |
| 557 | } |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 558 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 559 | char *print_mac(char *buff, unsigned char *mac, int len) |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 560 | { |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 561 | char *p = buff; |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 562 | int i; |
| 563 | |
| 564 | if (len == 0) |
| 565 | sprintf(p, "<null>"); |
| 566 | else |
| 567 | for (i = 0; i < len; i++) |
| 568 | p += sprintf(p, "%.2x%s", mac[i], (i == len - 1) ? "" : ":"); |
| 569 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 570 | return buff; |
Simon Kelley | 7cebd20 | 2006-05-06 14:13:33 +0100 | [diff] [blame] | 571 | } |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 572 | |
| 573 | void bump_maxfd(int fd, int *max) |
| 574 | { |
| 575 | if (fd > *max) |
| 576 | *max = fd; |
| 577 | } |
| 578 | |
Simon Kelley | ff841eb | 2015-03-11 21:36:30 +0000 | [diff] [blame] | 579 | /* rc is return from sendto and friends. |
| 580 | Return 1 if we should retry. |
| 581 | Set errno to zero if we succeeded. */ |
| 582 | int retry_send(ssize_t rc) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 583 | { |
Simon Kelley | ff841eb | 2015-03-11 21:36:30 +0000 | [diff] [blame] | 584 | static int retries = 0; |
| 585 | struct timespec waiter; |
| 586 | |
| 587 | if (rc != -1) |
| 588 | { |
| 589 | retries = 0; |
| 590 | errno = 0; |
| 591 | return 0; |
| 592 | } |
| 593 | |
Simon Kelley | 5782649 | 2014-09-18 22:08:58 +0100 | [diff] [blame] | 594 | /* Linux kernels can return EAGAIN in perpetuity when calling |
| 595 | sendmsg() and the relevant interface has gone. Here we loop |
| 596 | retrying in EAGAIN for 1 second max, to avoid this hanging |
| 597 | dnsmasq. */ |
| 598 | |
Simon Kelley | ff841eb | 2015-03-11 21:36:30 +0000 | [diff] [blame] | 599 | if (errno == EAGAIN || errno == EWOULDBLOCK) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 600 | { |
| 601 | waiter.tv_sec = 0; |
| 602 | waiter.tv_nsec = 10000; |
| 603 | nanosleep(&waiter, NULL); |
Simon Kelley | 5782649 | 2014-09-18 22:08:58 +0100 | [diff] [blame] | 604 | if (retries++ < 1000) |
| 605 | return 1; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 606 | } |
Simon Kelley | ff841eb | 2015-03-11 21:36:30 +0000 | [diff] [blame] | 607 | |
| 608 | retries = 0; |
| 609 | |
| 610 | if (errno == EINTR) |
| 611 | return 1; |
| 612 | |
| 613 | return 0; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 614 | } |
| 615 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 616 | int read_write(int fd, unsigned char *packet, int size, int rw) |
| 617 | { |
| 618 | ssize_t n, done; |
| 619 | |
| 620 | for (done = 0; done < size; done += n) |
| 621 | { |
Simon Kelley | ff841eb | 2015-03-11 21:36:30 +0000 | [diff] [blame] | 622 | do { |
| 623 | if (rw) |
| 624 | n = read(fd, &packet[done], (size_t)(size - done)); |
| 625 | else |
| 626 | n = write(fd, &packet[done], (size_t)(size - done)); |
| 627 | |
| 628 | if (n == 0) |
| 629 | return 0; |
| 630 | |
| 631 | } while (retry_send(n) || errno == ENOMEM || errno == ENOBUFS); |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 632 | |
Simon Kelley | ff841eb | 2015-03-11 21:36:30 +0000 | [diff] [blame] | 633 | if (errno != 0) |
| 634 | return 0; |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 635 | } |
Simon Kelley | ff841eb | 2015-03-11 21:36:30 +0000 | [diff] [blame] | 636 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 637 | return 1; |
| 638 | } |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 639 | |
Simon Kelley | 49333cb | 2013-03-15 20:30:51 +0000 | [diff] [blame] | 640 | /* Basically match a string value against a wildcard pattern. */ |
| 641 | int wildcard_match(const char* wildcard, const char* match) |
| 642 | { |
| 643 | while (*wildcard && *match) |
| 644 | { |
| 645 | if (*wildcard == '*') |
| 646 | return 1; |
| 647 | |
| 648 | if (*wildcard != *match) |
| 649 | return 0; |
| 650 | |
| 651 | ++wildcard; |
| 652 | ++match; |
| 653 | } |
| 654 | |
| 655 | return *wildcard == *match; |
| 656 | } |
Neil Jerram | 70772c9 | 2014-06-11 21:22:40 +0100 | [diff] [blame] | 657 | |
| 658 | /* The same but comparing a maximum of NUM characters, like strncmp. */ |
| 659 | int wildcard_matchn(const char* wildcard, const char* match, int num) |
| 660 | { |
| 661 | while (*wildcard && *match && num) |
| 662 | { |
| 663 | if (*wildcard == '*') |
| 664 | return 1; |
| 665 | |
| 666 | if (*wildcard != *match) |
| 667 | return 0; |
| 668 | |
| 669 | ++wildcard; |
| 670 | ++match; |
| 671 | --num; |
| 672 | } |
| 673 | |
| 674 | return (!num) || (*wildcard == *match); |
| 675 | } |