Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * General purpose functions. |
| 3 | * |
Willy Tarreau | 348238b | 2010-01-18 15:05:57 +0100 | [diff] [blame] | 4 | * Copyright 2000-2010 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 13 | #include <ctype.h> |
Willy Tarreau | 16e0156 | 2016-08-09 16:46:18 +0200 | [diff] [blame] | 14 | #include <errno.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 15 | #include <netdb.h> |
Willy Tarreau | 9a7bea5 | 2012-04-27 11:16:50 +0200 | [diff] [blame] | 16 | #include <stdarg.h> |
Willy Tarreau | dd2f85e | 2012-09-02 22:34:23 +0200 | [diff] [blame] | 17 | #include <stdio.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 18 | #include <stdlib.h> |
| 19 | #include <string.h> |
Thierry Fournier | 9312794 | 2016-01-20 18:49:45 +0100 | [diff] [blame] | 20 | #include <time.h> |
Willy Tarreau | 16e0156 | 2016-08-09 16:46:18 +0200 | [diff] [blame] | 21 | #include <unistd.h> |
Willy Tarreau | 127f966 | 2007-12-06 00:53:51 +0100 | [diff] [blame] | 22 | #include <sys/socket.h> |
| 23 | #include <sys/un.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 24 | #include <netinet/in.h> |
| 25 | #include <arpa/inet.h> |
| 26 | |
Thierry FOURNIER | e059ec9 | 2014-03-17 12:01:13 +0100 | [diff] [blame] | 27 | #include <common/chunk.h> |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 28 | #include <common/config.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 29 | #include <common/standard.h> |
Thierry Fournier | 9312794 | 2016-01-20 18:49:45 +0100 | [diff] [blame] | 30 | #include <common/tools.h> |
Thierry FOURNIER | 9f95e40 | 2014-03-21 14:51:46 +0100 | [diff] [blame] | 31 | #include <types/global.h> |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 32 | #include <proto/dns.h> |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 33 | #include <eb32tree.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 34 | |
Thierry Fournier | 9312794 | 2016-01-20 18:49:45 +0100 | [diff] [blame] | 35 | /* This macro returns false if the test __x is false. Many |
| 36 | * of the following parsing function must be abort the processing |
| 37 | * if it returns 0, so this macro is useful for writing light code. |
| 38 | */ |
| 39 | #define RET0_UNLESS(__x) do { if (!(__x)) return 0; } while (0) |
| 40 | |
Willy Tarreau | 56adcf2 | 2012-12-23 18:00:29 +0100 | [diff] [blame] | 41 | /* enough to store NB_ITOA_STR integers of : |
Willy Tarreau | 72d759c | 2007-10-25 12:14:10 +0200 | [diff] [blame] | 42 | * 2^64-1 = 18446744073709551615 or |
| 43 | * -2^63 = -9223372036854775808 |
Willy Tarreau | e7239b5 | 2009-03-29 13:41:58 +0200 | [diff] [blame] | 44 | * |
| 45 | * The HTML version needs room for adding the 25 characters |
| 46 | * '<span class="rls"></span>' around digits at positions 3N+1 in order |
| 47 | * to add spacing at up to 6 positions : 18 446 744 073 709 551 615 |
Willy Tarreau | 72d759c | 2007-10-25 12:14:10 +0200 | [diff] [blame] | 48 | */ |
Willy Tarreau | 56adcf2 | 2012-12-23 18:00:29 +0100 | [diff] [blame] | 49 | char itoa_str[NB_ITOA_STR][171]; |
| 50 | int itoa_idx = 0; /* index of next itoa_str to use */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 51 | |
Willy Tarreau | 588297f | 2014-06-16 15:16:40 +0200 | [diff] [blame] | 52 | /* sometimes we'll need to quote strings (eg: in stats), and we don't expect |
| 53 | * to quote strings larger than a max configuration line. |
| 54 | */ |
| 55 | char quoted_str[NB_QSTR][QSTR_SIZE + 1]; |
| 56 | int quoted_idx = 0; |
| 57 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 58 | /* |
William Lallemand | e7340ec | 2012-01-24 11:15:39 +0100 | [diff] [blame] | 59 | * unsigned long long ASCII representation |
| 60 | * |
| 61 | * return the last char '\0' or NULL if no enough |
| 62 | * space in dst |
| 63 | */ |
| 64 | char *ulltoa(unsigned long long n, char *dst, size_t size) |
| 65 | { |
| 66 | int i = 0; |
| 67 | char *res; |
| 68 | |
| 69 | switch(n) { |
| 70 | case 1ULL ... 9ULL: |
| 71 | i = 0; |
| 72 | break; |
| 73 | |
| 74 | case 10ULL ... 99ULL: |
| 75 | i = 1; |
| 76 | break; |
| 77 | |
| 78 | case 100ULL ... 999ULL: |
| 79 | i = 2; |
| 80 | break; |
| 81 | |
| 82 | case 1000ULL ... 9999ULL: |
| 83 | i = 3; |
| 84 | break; |
| 85 | |
| 86 | case 10000ULL ... 99999ULL: |
| 87 | i = 4; |
| 88 | break; |
| 89 | |
| 90 | case 100000ULL ... 999999ULL: |
| 91 | i = 5; |
| 92 | break; |
| 93 | |
| 94 | case 1000000ULL ... 9999999ULL: |
| 95 | i = 6; |
| 96 | break; |
| 97 | |
| 98 | case 10000000ULL ... 99999999ULL: |
| 99 | i = 7; |
| 100 | break; |
| 101 | |
| 102 | case 100000000ULL ... 999999999ULL: |
| 103 | i = 8; |
| 104 | break; |
| 105 | |
| 106 | case 1000000000ULL ... 9999999999ULL: |
| 107 | i = 9; |
| 108 | break; |
| 109 | |
| 110 | case 10000000000ULL ... 99999999999ULL: |
| 111 | i = 10; |
| 112 | break; |
| 113 | |
| 114 | case 100000000000ULL ... 999999999999ULL: |
| 115 | i = 11; |
| 116 | break; |
| 117 | |
| 118 | case 1000000000000ULL ... 9999999999999ULL: |
| 119 | i = 12; |
| 120 | break; |
| 121 | |
| 122 | case 10000000000000ULL ... 99999999999999ULL: |
| 123 | i = 13; |
| 124 | break; |
| 125 | |
| 126 | case 100000000000000ULL ... 999999999999999ULL: |
| 127 | i = 14; |
| 128 | break; |
| 129 | |
| 130 | case 1000000000000000ULL ... 9999999999999999ULL: |
| 131 | i = 15; |
| 132 | break; |
| 133 | |
| 134 | case 10000000000000000ULL ... 99999999999999999ULL: |
| 135 | i = 16; |
| 136 | break; |
| 137 | |
| 138 | case 100000000000000000ULL ... 999999999999999999ULL: |
| 139 | i = 17; |
| 140 | break; |
| 141 | |
| 142 | case 1000000000000000000ULL ... 9999999999999999999ULL: |
| 143 | i = 18; |
| 144 | break; |
| 145 | |
| 146 | case 10000000000000000000ULL ... ULLONG_MAX: |
| 147 | i = 19; |
| 148 | break; |
| 149 | } |
| 150 | if (i + 2 > size) // (i + 1) + '\0' |
| 151 | return NULL; // too long |
| 152 | res = dst + i + 1; |
| 153 | *res = '\0'; |
| 154 | for (; i >= 0; i--) { |
| 155 | dst[i] = n % 10ULL + '0'; |
| 156 | n /= 10ULL; |
| 157 | } |
| 158 | return res; |
| 159 | } |
| 160 | |
| 161 | /* |
| 162 | * unsigned long ASCII representation |
| 163 | * |
| 164 | * return the last char '\0' or NULL if no enough |
| 165 | * space in dst |
| 166 | */ |
| 167 | char *ultoa_o(unsigned long n, char *dst, size_t size) |
| 168 | { |
| 169 | int i = 0; |
| 170 | char *res; |
| 171 | |
| 172 | switch (n) { |
| 173 | case 0U ... 9UL: |
| 174 | i = 0; |
| 175 | break; |
| 176 | |
| 177 | case 10U ... 99UL: |
| 178 | i = 1; |
| 179 | break; |
| 180 | |
| 181 | case 100U ... 999UL: |
| 182 | i = 2; |
| 183 | break; |
| 184 | |
| 185 | case 1000U ... 9999UL: |
| 186 | i = 3; |
| 187 | break; |
| 188 | |
| 189 | case 10000U ... 99999UL: |
| 190 | i = 4; |
| 191 | break; |
| 192 | |
| 193 | case 100000U ... 999999UL: |
| 194 | i = 5; |
| 195 | break; |
| 196 | |
| 197 | case 1000000U ... 9999999UL: |
| 198 | i = 6; |
| 199 | break; |
| 200 | |
| 201 | case 10000000U ... 99999999UL: |
| 202 | i = 7; |
| 203 | break; |
| 204 | |
| 205 | case 100000000U ... 999999999UL: |
| 206 | i = 8; |
| 207 | break; |
| 208 | #if __WORDSIZE == 32 |
| 209 | |
| 210 | case 1000000000ULL ... ULONG_MAX: |
| 211 | i = 9; |
| 212 | break; |
| 213 | |
| 214 | #elif __WORDSIZE == 64 |
| 215 | |
| 216 | case 1000000000ULL ... 9999999999UL: |
| 217 | i = 9; |
| 218 | break; |
| 219 | |
| 220 | case 10000000000ULL ... 99999999999UL: |
| 221 | i = 10; |
| 222 | break; |
| 223 | |
| 224 | case 100000000000ULL ... 999999999999UL: |
| 225 | i = 11; |
| 226 | break; |
| 227 | |
| 228 | case 1000000000000ULL ... 9999999999999UL: |
| 229 | i = 12; |
| 230 | break; |
| 231 | |
| 232 | case 10000000000000ULL ... 99999999999999UL: |
| 233 | i = 13; |
| 234 | break; |
| 235 | |
| 236 | case 100000000000000ULL ... 999999999999999UL: |
| 237 | i = 14; |
| 238 | break; |
| 239 | |
| 240 | case 1000000000000000ULL ... 9999999999999999UL: |
| 241 | i = 15; |
| 242 | break; |
| 243 | |
| 244 | case 10000000000000000ULL ... 99999999999999999UL: |
| 245 | i = 16; |
| 246 | break; |
| 247 | |
| 248 | case 100000000000000000ULL ... 999999999999999999UL: |
| 249 | i = 17; |
| 250 | break; |
| 251 | |
| 252 | case 1000000000000000000ULL ... 9999999999999999999UL: |
| 253 | i = 18; |
| 254 | break; |
| 255 | |
| 256 | case 10000000000000000000ULL ... ULONG_MAX: |
| 257 | i = 19; |
| 258 | break; |
| 259 | |
| 260 | #endif |
| 261 | } |
| 262 | if (i + 2 > size) // (i + 1) + '\0' |
| 263 | return NULL; // too long |
| 264 | res = dst + i + 1; |
| 265 | *res = '\0'; |
| 266 | for (; i >= 0; i--) { |
| 267 | dst[i] = n % 10U + '0'; |
| 268 | n /= 10U; |
| 269 | } |
| 270 | return res; |
| 271 | } |
| 272 | |
| 273 | /* |
| 274 | * signed long ASCII representation |
| 275 | * |
| 276 | * return the last char '\0' or NULL if no enough |
| 277 | * space in dst |
| 278 | */ |
| 279 | char *ltoa_o(long int n, char *dst, size_t size) |
| 280 | { |
| 281 | char *pos = dst; |
| 282 | |
| 283 | if (n < 0) { |
| 284 | if (size < 3) |
| 285 | return NULL; // min size is '-' + digit + '\0' but another test in ultoa |
| 286 | *pos = '-'; |
| 287 | pos++; |
| 288 | dst = ultoa_o(-n, pos, size - 1); |
| 289 | } else { |
| 290 | dst = ultoa_o(n, dst, size); |
| 291 | } |
| 292 | return dst; |
| 293 | } |
| 294 | |
| 295 | /* |
| 296 | * signed long long ASCII representation |
| 297 | * |
| 298 | * return the last char '\0' or NULL if no enough |
| 299 | * space in dst |
| 300 | */ |
| 301 | char *lltoa(long long n, char *dst, size_t size) |
| 302 | { |
| 303 | char *pos = dst; |
| 304 | |
| 305 | if (n < 0) { |
| 306 | if (size < 3) |
| 307 | return NULL; // min size is '-' + digit + '\0' but another test in ulltoa |
| 308 | *pos = '-'; |
| 309 | pos++; |
| 310 | dst = ulltoa(-n, pos, size - 1); |
| 311 | } else { |
| 312 | dst = ulltoa(n, dst, size); |
| 313 | } |
| 314 | return dst; |
| 315 | } |
| 316 | |
| 317 | /* |
| 318 | * write a ascii representation of a unsigned into dst, |
| 319 | * return a pointer to the last character |
| 320 | * Pad the ascii representation with '0', using size. |
| 321 | */ |
| 322 | char *utoa_pad(unsigned int n, char *dst, size_t size) |
| 323 | { |
| 324 | int i = 0; |
| 325 | char *ret; |
| 326 | |
| 327 | switch(n) { |
| 328 | case 0U ... 9U: |
| 329 | i = 0; |
| 330 | break; |
| 331 | |
| 332 | case 10U ... 99U: |
| 333 | i = 1; |
| 334 | break; |
| 335 | |
| 336 | case 100U ... 999U: |
| 337 | i = 2; |
| 338 | break; |
| 339 | |
| 340 | case 1000U ... 9999U: |
| 341 | i = 3; |
| 342 | break; |
| 343 | |
| 344 | case 10000U ... 99999U: |
| 345 | i = 4; |
| 346 | break; |
| 347 | |
| 348 | case 100000U ... 999999U: |
| 349 | i = 5; |
| 350 | break; |
| 351 | |
| 352 | case 1000000U ... 9999999U: |
| 353 | i = 6; |
| 354 | break; |
| 355 | |
| 356 | case 10000000U ... 99999999U: |
| 357 | i = 7; |
| 358 | break; |
| 359 | |
| 360 | case 100000000U ... 999999999U: |
| 361 | i = 8; |
| 362 | break; |
| 363 | |
| 364 | case 1000000000U ... 4294967295U: |
| 365 | i = 9; |
| 366 | break; |
| 367 | } |
| 368 | if (i + 2 > size) // (i + 1) + '\0' |
| 369 | return NULL; // too long |
| 370 | if (i < size) |
| 371 | i = size - 2; // padding - '\0' |
| 372 | |
| 373 | ret = dst + i + 1; |
| 374 | *ret = '\0'; |
| 375 | for (; i >= 0; i--) { |
| 376 | dst[i] = n % 10U + '0'; |
| 377 | n /= 10U; |
| 378 | } |
| 379 | return ret; |
| 380 | } |
| 381 | |
| 382 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 383 | * copies at most <size-1> chars from <src> to <dst>. Last char is always |
| 384 | * set to 0, unless <size> is 0. The number of chars copied is returned |
| 385 | * (excluding the terminating zero). |
| 386 | * This code has been optimized for size and speed : on x86, it's 45 bytes |
| 387 | * long, uses only registers, and consumes only 4 cycles per char. |
| 388 | */ |
| 389 | int strlcpy2(char *dst, const char *src, int size) |
| 390 | { |
| 391 | char *orig = dst; |
| 392 | if (size) { |
| 393 | while (--size && (*dst = *src)) { |
| 394 | src++; dst++; |
| 395 | } |
| 396 | *dst = 0; |
| 397 | } |
| 398 | return dst - orig; |
| 399 | } |
| 400 | |
| 401 | /* |
Willy Tarreau | 72d759c | 2007-10-25 12:14:10 +0200 | [diff] [blame] | 402 | * This function simply returns a locally allocated string containing |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 403 | * the ascii representation for number 'n' in decimal. |
| 404 | */ |
Emeric Brun | 3a7fce5 | 2010-01-04 14:54:38 +0100 | [diff] [blame] | 405 | char *ultoa_r(unsigned long n, char *buffer, int size) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 406 | { |
| 407 | char *pos; |
| 408 | |
Willy Tarreau | 72d759c | 2007-10-25 12:14:10 +0200 | [diff] [blame] | 409 | pos = buffer + size - 1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 410 | *pos-- = '\0'; |
| 411 | |
| 412 | do { |
| 413 | *pos-- = '0' + n % 10; |
| 414 | n /= 10; |
Willy Tarreau | 72d759c | 2007-10-25 12:14:10 +0200 | [diff] [blame] | 415 | } while (n && pos >= buffer); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 416 | return pos + 1; |
| 417 | } |
| 418 | |
Willy Tarreau | 91092e5 | 2007-10-25 16:58:42 +0200 | [diff] [blame] | 419 | /* |
Willy Tarreau | e7239b5 | 2009-03-29 13:41:58 +0200 | [diff] [blame] | 420 | * This function simply returns a locally allocated string containing |
Thierry FOURNIER | 763a5d8 | 2015-07-06 23:09:52 +0200 | [diff] [blame] | 421 | * the ascii representation for number 'n' in decimal. |
| 422 | */ |
| 423 | char *lltoa_r(long long int in, char *buffer, int size) |
| 424 | { |
| 425 | char *pos; |
| 426 | int neg = 0; |
| 427 | unsigned long long int n; |
| 428 | |
| 429 | pos = buffer + size - 1; |
| 430 | *pos-- = '\0'; |
| 431 | |
| 432 | if (in < 0) { |
| 433 | neg = 1; |
| 434 | n = -in; |
| 435 | } |
| 436 | else |
| 437 | n = in; |
| 438 | |
| 439 | do { |
| 440 | *pos-- = '0' + n % 10; |
| 441 | n /= 10; |
| 442 | } while (n && pos >= buffer); |
| 443 | if (neg && pos > buffer) |
| 444 | *pos-- = '-'; |
| 445 | return pos + 1; |
| 446 | } |
| 447 | |
| 448 | /* |
| 449 | * This function simply returns a locally allocated string containing |
Thierry FOURNIER | 1480bd8 | 2015-06-06 19:14:59 +0200 | [diff] [blame] | 450 | * the ascii representation for signed number 'n' in decimal. |
| 451 | */ |
| 452 | char *sltoa_r(long n, char *buffer, int size) |
| 453 | { |
| 454 | char *pos; |
| 455 | |
| 456 | if (n >= 0) |
| 457 | return ultoa_r(n, buffer, size); |
| 458 | |
| 459 | pos = ultoa_r(-n, buffer + 1, size - 1) - 1; |
| 460 | *pos = '-'; |
| 461 | return pos; |
| 462 | } |
| 463 | |
| 464 | /* |
| 465 | * This function simply returns a locally allocated string containing |
Willy Tarreau | e7239b5 | 2009-03-29 13:41:58 +0200 | [diff] [blame] | 466 | * the ascii representation for number 'n' in decimal, formatted for |
| 467 | * HTML output with tags to create visual grouping by 3 digits. The |
| 468 | * output needs to support at least 171 characters. |
| 469 | */ |
| 470 | const char *ulltoh_r(unsigned long long n, char *buffer, int size) |
| 471 | { |
| 472 | char *start; |
| 473 | int digit = 0; |
| 474 | |
| 475 | start = buffer + size; |
| 476 | *--start = '\0'; |
| 477 | |
| 478 | do { |
| 479 | if (digit == 3 && start >= buffer + 7) |
| 480 | memcpy(start -= 7, "</span>", 7); |
| 481 | |
| 482 | if (start >= buffer + 1) { |
| 483 | *--start = '0' + n % 10; |
| 484 | n /= 10; |
| 485 | } |
| 486 | |
| 487 | if (digit == 3 && start >= buffer + 18) |
| 488 | memcpy(start -= 18, "<span class=\"rls\">", 18); |
| 489 | |
| 490 | if (digit++ == 3) |
| 491 | digit = 1; |
| 492 | } while (n && start > buffer); |
| 493 | return start; |
| 494 | } |
| 495 | |
| 496 | /* |
Willy Tarreau | 91092e5 | 2007-10-25 16:58:42 +0200 | [diff] [blame] | 497 | * This function simply returns a locally allocated string containing the ascii |
| 498 | * representation for number 'n' in decimal, unless n is 0 in which case it |
| 499 | * returns the alternate string (or an empty string if the alternate string is |
| 500 | * NULL). It use is intended for limits reported in reports, where it's |
| 501 | * desirable not to display anything if there is no limit. Warning! it shares |
| 502 | * the same vector as ultoa_r(). |
| 503 | */ |
| 504 | const char *limit_r(unsigned long n, char *buffer, int size, const char *alt) |
| 505 | { |
| 506 | return (n) ? ultoa_r(n, buffer, size) : (alt ? alt : ""); |
| 507 | } |
| 508 | |
Willy Tarreau | 588297f | 2014-06-16 15:16:40 +0200 | [diff] [blame] | 509 | /* returns a locally allocated string containing the quoted encoding of the |
| 510 | * input string. The output may be truncated to QSTR_SIZE chars, but it is |
| 511 | * guaranteed that the string will always be properly terminated. Quotes are |
| 512 | * encoded by doubling them as is commonly done in CSV files. QSTR_SIZE must |
| 513 | * always be at least 4 chars. |
| 514 | */ |
| 515 | const char *qstr(const char *str) |
| 516 | { |
| 517 | char *ret = quoted_str[quoted_idx]; |
| 518 | char *p, *end; |
| 519 | |
| 520 | if (++quoted_idx >= NB_QSTR) |
| 521 | quoted_idx = 0; |
| 522 | |
| 523 | p = ret; |
| 524 | end = ret + QSTR_SIZE; |
| 525 | |
| 526 | *p++ = '"'; |
| 527 | |
| 528 | /* always keep 3 chars to support passing "" and the ending " */ |
| 529 | while (*str && p < end - 3) { |
| 530 | if (*str == '"') { |
| 531 | *p++ = '"'; |
| 532 | *p++ = '"'; |
| 533 | } |
| 534 | else |
| 535 | *p++ = *str; |
| 536 | str++; |
| 537 | } |
| 538 | *p++ = '"'; |
| 539 | return ret; |
| 540 | } |
| 541 | |
Robert Tsai | 81ae195 | 2007-12-05 10:47:29 +0100 | [diff] [blame] | 542 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 543 | * Returns non-zero if character <s> is a hex digit (0-9, a-f, A-F), else zero. |
| 544 | * |
| 545 | * It looks like this one would be a good candidate for inlining, but this is |
| 546 | * not interesting because it around 35 bytes long and often called multiple |
| 547 | * times within the same function. |
| 548 | */ |
| 549 | int ishex(char s) |
| 550 | { |
| 551 | s -= '0'; |
| 552 | if ((unsigned char)s <= 9) |
| 553 | return 1; |
| 554 | s -= 'A' - '0'; |
| 555 | if ((unsigned char)s <= 5) |
| 556 | return 1; |
| 557 | s -= 'a' - 'A'; |
| 558 | if ((unsigned char)s <= 5) |
| 559 | return 1; |
| 560 | return 0; |
| 561 | } |
| 562 | |
Willy Tarreau | 3ca1a88 | 2015-01-15 18:43:49 +0100 | [diff] [blame] | 563 | /* rounds <i> down to the closest value having max 2 digits */ |
| 564 | unsigned int round_2dig(unsigned int i) |
| 565 | { |
| 566 | unsigned int mul = 1; |
| 567 | |
| 568 | while (i >= 100) { |
| 569 | i /= 10; |
| 570 | mul *= 10; |
| 571 | } |
| 572 | return i * mul; |
| 573 | } |
| 574 | |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 575 | /* |
| 576 | * Checks <name> for invalid characters. Valid chars are [A-Za-z0-9_:.-]. If an |
| 577 | * invalid character is found, a pointer to it is returned. If everything is |
| 578 | * fine, NULL is returned. |
| 579 | */ |
| 580 | const char *invalid_char(const char *name) |
| 581 | { |
| 582 | if (!*name) |
| 583 | return name; |
| 584 | |
| 585 | while (*name) { |
Willy Tarreau | 88e0581 | 2010-03-03 00:16:00 +0100 | [diff] [blame] | 586 | if (!isalnum((int)(unsigned char)*name) && *name != '.' && *name != ':' && |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 587 | *name != '_' && *name != '-') |
| 588 | return name; |
| 589 | name++; |
| 590 | } |
| 591 | return NULL; |
| 592 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 593 | |
| 594 | /* |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 595 | * Checks <name> for invalid characters. Valid chars are [_.-] and those |
| 596 | * accepted by <f> function. |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 597 | * If an invalid character is found, a pointer to it is returned. |
| 598 | * If everything is fine, NULL is returned. |
| 599 | */ |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 600 | static inline const char *__invalid_char(const char *name, int (*f)(int)) { |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 601 | |
| 602 | if (!*name) |
| 603 | return name; |
| 604 | |
| 605 | while (*name) { |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 606 | if (!f((int)(unsigned char)*name) && *name != '.' && |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 607 | *name != '_' && *name != '-') |
| 608 | return name; |
| 609 | |
| 610 | name++; |
| 611 | } |
| 612 | |
| 613 | return NULL; |
| 614 | } |
| 615 | |
| 616 | /* |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 617 | * Checks <name> for invalid characters. Valid chars are [A-Za-z0-9_.-]. |
| 618 | * If an invalid character is found, a pointer to it is returned. |
| 619 | * If everything is fine, NULL is returned. |
| 620 | */ |
| 621 | const char *invalid_domainchar(const char *name) { |
| 622 | return __invalid_char(name, isalnum); |
| 623 | } |
| 624 | |
| 625 | /* |
| 626 | * Checks <name> for invalid characters. Valid chars are [A-Za-z_.-]. |
| 627 | * If an invalid character is found, a pointer to it is returned. |
| 628 | * If everything is fine, NULL is returned. |
| 629 | */ |
| 630 | const char *invalid_prefix_char(const char *name) { |
| 631 | return __invalid_char(name, isalpha); |
| 632 | } |
| 633 | |
| 634 | /* |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 635 | * converts <str> to a struct sockaddr_storage* provided by the caller. The |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 636 | * caller must have zeroed <sa> first, and may have set sa->ss_family to force |
| 637 | * parse a specific address format. If the ss_family is 0 or AF_UNSPEC, then |
| 638 | * the function tries to guess the address family from the syntax. If the |
| 639 | * family is forced and the format doesn't match, an error is returned. The |
Willy Tarreau | fab5a43 | 2011-03-04 15:31:53 +0100 | [diff] [blame] | 640 | * string is assumed to contain only an address, no port. The address can be a |
| 641 | * dotted IPv4 address, an IPv6 address, a host name, or empty or "*" to |
| 642 | * indicate INADDR_ANY. NULL is returned if the host part cannot be resolved. |
| 643 | * The return address will only have the address family and the address set, |
| 644 | * all other fields remain zero. The string is not supposed to be modified. |
Thierry FOURNIER | 58639a0 | 2014-11-25 12:02:25 +0100 | [diff] [blame] | 645 | * The IPv6 '::' address is IN6ADDR_ANY. If <resolve> is non-zero, the hostname |
| 646 | * is resolved, otherwise only IP addresses are resolved, and anything else |
Willy Tarreau | ecde7df | 2016-11-02 22:37:03 +0100 | [diff] [blame] | 647 | * returns NULL. If the address contains a port, this one is preserved. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 648 | */ |
Thierry FOURNIER | 58639a0 | 2014-11-25 12:02:25 +0100 | [diff] [blame] | 649 | struct sockaddr_storage *str2ip2(const char *str, struct sockaddr_storage *sa, int resolve) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 650 | { |
Willy Tarreau | fab5a43 | 2011-03-04 15:31:53 +0100 | [diff] [blame] | 651 | struct hostent *he; |
mildis | ff5d510 | 2015-10-26 18:50:08 +0100 | [diff] [blame] | 652 | /* max IPv6 length, including brackets and terminating NULL */ |
| 653 | char tmpip[48]; |
Willy Tarreau | ecde7df | 2016-11-02 22:37:03 +0100 | [diff] [blame] | 654 | int port = get_host_port(sa); |
mildis | ff5d510 | 2015-10-26 18:50:08 +0100 | [diff] [blame] | 655 | |
| 656 | /* check IPv6 with square brackets */ |
| 657 | if (str[0] == '[') { |
| 658 | size_t iplength = strlen(str); |
| 659 | |
| 660 | if (iplength < 4) { |
| 661 | /* minimal size is 4 when using brackets "[::]" */ |
| 662 | goto fail; |
| 663 | } |
| 664 | else if (iplength >= sizeof(tmpip)) { |
| 665 | /* IPv6 literal can not be larger than tmpip */ |
| 666 | goto fail; |
| 667 | } |
| 668 | else { |
| 669 | if (str[iplength - 1] != ']') { |
| 670 | /* if address started with bracket, it should end with bracket */ |
| 671 | goto fail; |
| 672 | } |
| 673 | else { |
| 674 | memcpy(tmpip, str + 1, iplength - 2); |
| 675 | tmpip[iplength - 2] = '\0'; |
| 676 | str = tmpip; |
| 677 | } |
| 678 | } |
| 679 | } |
Willy Tarreau | fab5a43 | 2011-03-04 15:31:53 +0100 | [diff] [blame] | 680 | |
Willy Tarreau | fab5a43 | 2011-03-04 15:31:53 +0100 | [diff] [blame] | 681 | /* Any IPv6 address */ |
| 682 | if (str[0] == ':' && str[1] == ':' && !str[2]) { |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 683 | if (!sa->ss_family || sa->ss_family == AF_UNSPEC) |
| 684 | sa->ss_family = AF_INET6; |
| 685 | else if (sa->ss_family != AF_INET6) |
| 686 | goto fail; |
Willy Tarreau | ecde7df | 2016-11-02 22:37:03 +0100 | [diff] [blame] | 687 | set_host_port(sa, port); |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 688 | return sa; |
Willy Tarreau | fab5a43 | 2011-03-04 15:31:53 +0100 | [diff] [blame] | 689 | } |
| 690 | |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 691 | /* Any address for the family, defaults to IPv4 */ |
Willy Tarreau | fab5a43 | 2011-03-04 15:31:53 +0100 | [diff] [blame] | 692 | if (!str[0] || (str[0] == '*' && !str[1])) { |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 693 | if (!sa->ss_family || sa->ss_family == AF_UNSPEC) |
| 694 | sa->ss_family = AF_INET; |
Willy Tarreau | ecde7df | 2016-11-02 22:37:03 +0100 | [diff] [blame] | 695 | set_host_port(sa, port); |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 696 | return sa; |
Willy Tarreau | fab5a43 | 2011-03-04 15:31:53 +0100 | [diff] [blame] | 697 | } |
| 698 | |
| 699 | /* check for IPv6 first */ |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 700 | if ((!sa->ss_family || sa->ss_family == AF_UNSPEC || sa->ss_family == AF_INET6) && |
| 701 | inet_pton(AF_INET6, str, &((struct sockaddr_in6 *)sa)->sin6_addr)) { |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 702 | sa->ss_family = AF_INET6; |
Willy Tarreau | ecde7df | 2016-11-02 22:37:03 +0100 | [diff] [blame] | 703 | set_host_port(sa, port); |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 704 | return sa; |
Willy Tarreau | fab5a43 | 2011-03-04 15:31:53 +0100 | [diff] [blame] | 705 | } |
| 706 | |
| 707 | /* then check for IPv4 */ |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 708 | if ((!sa->ss_family || sa->ss_family == AF_UNSPEC || sa->ss_family == AF_INET) && |
| 709 | inet_pton(AF_INET, str, &((struct sockaddr_in *)sa)->sin_addr)) { |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 710 | sa->ss_family = AF_INET; |
Willy Tarreau | ecde7df | 2016-11-02 22:37:03 +0100 | [diff] [blame] | 711 | set_host_port(sa, port); |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 712 | return sa; |
Willy Tarreau | fab5a43 | 2011-03-04 15:31:53 +0100 | [diff] [blame] | 713 | } |
| 714 | |
Thierry FOURNIER | 58639a0 | 2014-11-25 12:02:25 +0100 | [diff] [blame] | 715 | if (!resolve) |
| 716 | return NULL; |
| 717 | |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 718 | if (!dns_hostname_validation(str, NULL)) |
| 719 | return NULL; |
| 720 | |
David du Colombier | d5f4328 | 2011-03-17 10:40:16 +0100 | [diff] [blame] | 721 | #ifdef USE_GETADDRINFO |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 722 | if (global.tune.options & GTUNE_USE_GAI) { |
David du Colombier | d5f4328 | 2011-03-17 10:40:16 +0100 | [diff] [blame] | 723 | struct addrinfo hints, *result; |
| 724 | |
| 725 | memset(&result, 0, sizeof(result)); |
| 726 | memset(&hints, 0, sizeof(hints)); |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 727 | hints.ai_family = sa->ss_family ? sa->ss_family : AF_UNSPEC; |
David du Colombier | d5f4328 | 2011-03-17 10:40:16 +0100 | [diff] [blame] | 728 | hints.ai_socktype = SOCK_DGRAM; |
Dmitry Sivachenko | eab7f39 | 2015-10-02 01:01:58 +0200 | [diff] [blame] | 729 | hints.ai_flags = 0; |
David du Colombier | d5f4328 | 2011-03-17 10:40:16 +0100 | [diff] [blame] | 730 | hints.ai_protocol = 0; |
| 731 | |
| 732 | if (getaddrinfo(str, NULL, &hints, &result) == 0) { |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 733 | if (!sa->ss_family || sa->ss_family == AF_UNSPEC) |
| 734 | sa->ss_family = result->ai_family; |
| 735 | else if (sa->ss_family != result->ai_family) |
| 736 | goto fail; |
| 737 | |
David du Colombier | d5f4328 | 2011-03-17 10:40:16 +0100 | [diff] [blame] | 738 | switch (result->ai_family) { |
| 739 | case AF_INET: |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 740 | memcpy((struct sockaddr_in *)sa, result->ai_addr, result->ai_addrlen); |
Willy Tarreau | ecde7df | 2016-11-02 22:37:03 +0100 | [diff] [blame] | 741 | set_host_port(sa, port); |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 742 | return sa; |
David du Colombier | d5f4328 | 2011-03-17 10:40:16 +0100 | [diff] [blame] | 743 | case AF_INET6: |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 744 | memcpy((struct sockaddr_in6 *)sa, result->ai_addr, result->ai_addrlen); |
Willy Tarreau | ecde7df | 2016-11-02 22:37:03 +0100 | [diff] [blame] | 745 | set_host_port(sa, port); |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 746 | return sa; |
David du Colombier | d5f4328 | 2011-03-17 10:40:16 +0100 | [diff] [blame] | 747 | } |
| 748 | } |
| 749 | |
Sean Carey | 58ea039 | 2013-02-15 23:39:18 +0100 | [diff] [blame] | 750 | if (result) |
| 751 | freeaddrinfo(result); |
Willy Tarreau | fab5a43 | 2011-03-04 15:31:53 +0100 | [diff] [blame] | 752 | } |
David du Colombier | d5f4328 | 2011-03-17 10:40:16 +0100 | [diff] [blame] | 753 | #endif |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 754 | /* try to resolve an IPv4/IPv6 hostname */ |
| 755 | he = gethostbyname(str); |
| 756 | if (he) { |
| 757 | if (!sa->ss_family || sa->ss_family == AF_UNSPEC) |
| 758 | sa->ss_family = he->h_addrtype; |
| 759 | else if (sa->ss_family != he->h_addrtype) |
| 760 | goto fail; |
| 761 | |
| 762 | switch (sa->ss_family) { |
| 763 | case AF_INET: |
| 764 | ((struct sockaddr_in *)sa)->sin_addr = *(struct in_addr *) *(he->h_addr_list); |
Willy Tarreau | ecde7df | 2016-11-02 22:37:03 +0100 | [diff] [blame] | 765 | set_host_port(sa, port); |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 766 | return sa; |
| 767 | case AF_INET6: |
| 768 | ((struct sockaddr_in6 *)sa)->sin6_addr = *(struct in6_addr *) *(he->h_addr_list); |
Willy Tarreau | ecde7df | 2016-11-02 22:37:03 +0100 | [diff] [blame] | 769 | set_host_port(sa, port); |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 770 | return sa; |
| 771 | } |
| 772 | } |
| 773 | |
David du Colombier | d5f4328 | 2011-03-17 10:40:16 +0100 | [diff] [blame] | 774 | /* unsupported address family */ |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 775 | fail: |
Willy Tarreau | fab5a43 | 2011-03-04 15:31:53 +0100 | [diff] [blame] | 776 | return NULL; |
| 777 | } |
| 778 | |
| 779 | /* |
Willy Tarreau | d4448bc | 2013-02-20 15:55:15 +0100 | [diff] [blame] | 780 | * Converts <str> to a locally allocated struct sockaddr_storage *, and a port |
| 781 | * range or offset consisting in two integers that the caller will have to |
| 782 | * check to find the relevant input format. The following format are supported : |
| 783 | * |
| 784 | * String format | address | port | low | high |
| 785 | * addr | <addr> | 0 | 0 | 0 |
| 786 | * addr: | <addr> | 0 | 0 | 0 |
| 787 | * addr:port | <addr> | <port> | <port> | <port> |
| 788 | * addr:pl-ph | <addr> | <pl> | <pl> | <ph> |
| 789 | * addr:+port | <addr> | <port> | 0 | <port> |
| 790 | * addr:-port | <addr> |-<port> | <port> | 0 |
| 791 | * |
| 792 | * The detection of a port range or increment by the caller is made by |
| 793 | * comparing <low> and <high>. If both are equal, then port 0 means no port |
| 794 | * was specified. The caller may pass NULL for <low> and <high> if it is not |
| 795 | * interested in retrieving port ranges. |
| 796 | * |
| 797 | * Note that <addr> above may also be : |
| 798 | * - empty ("") => family will be AF_INET and address will be INADDR_ANY |
| 799 | * - "*" => family will be AF_INET and address will be INADDR_ANY |
| 800 | * - "::" => family will be AF_INET6 and address will be IN6ADDR_ANY |
| 801 | * - a host name => family and address will depend on host name resolving. |
| 802 | * |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 803 | * A prefix may be passed in before the address above to force the family : |
| 804 | * - "ipv4@" => force address to resolve as IPv4 and fail if not possible. |
| 805 | * - "ipv6@" => force address to resolve as IPv6 and fail if not possible. |
| 806 | * - "unix@" => force address to be a path to a UNIX socket even if the |
| 807 | * path does not start with a '/' |
Willy Tarreau | ccfccef | 2014-05-10 01:49:15 +0200 | [diff] [blame] | 808 | * - 'abns@' -> force address to belong to the abstract namespace (Linux |
| 809 | * only). These sockets are just like Unix sockets but without |
| 810 | * the need for an underlying file system. The address is a |
| 811 | * string. Technically it's like a Unix socket with a zero in |
| 812 | * the first byte of the address. |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 813 | * - "fd@" => an integer must follow, and is a file descriptor number. |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 814 | * |
mildis | ff5d510 | 2015-10-26 18:50:08 +0100 | [diff] [blame] | 815 | * IPv6 addresses can be declared with or without square brackets. When using |
| 816 | * square brackets for IPv6 addresses, the port separator (colon) is optional. |
| 817 | * If not using square brackets, and in order to avoid any ambiguity with |
| 818 | * IPv6 addresses, the last colon ':' is mandatory even when no port is specified. |
| 819 | * NULL is returned if the address cannot be parsed. The <low> and <high> ports |
| 820 | * are always initialized if non-null, even for non-IP families. |
Willy Tarreau | d393a62 | 2013-03-04 18:22:00 +0100 | [diff] [blame] | 821 | * |
| 822 | * If <pfx> is non-null, it is used as a string prefix before any path-based |
| 823 | * address (typically the path to a unix socket). |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 824 | * |
Willy Tarreau | 72b8c1f | 2015-09-08 15:50:19 +0200 | [diff] [blame] | 825 | * if <fqdn> is non-null, it will be filled with : |
| 826 | * - a pointer to the FQDN of the server name to resolve if there's one, and |
| 827 | * that the caller will have to free(), |
| 828 | * - NULL if there was an explicit address that doesn't require resolution. |
| 829 | * |
Willy Tarreau | ceccdd7 | 2016-11-02 22:27:10 +0100 | [diff] [blame] | 830 | * Hostnames are only resolved if <resolve> is non-null. Note that if <resolve> |
| 831 | * is null, <fqdn> is still honnored so it is possible for the caller to know |
| 832 | * whether a resolution failed by setting <resolve> to null and checking if |
| 833 | * <fqdn> was filled, indicating the need for a resolution. |
Thierry FOURNIER | 7fe3be7 | 2015-09-26 20:03:36 +0200 | [diff] [blame] | 834 | * |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 835 | * When a file descriptor is passed, its value is put into the s_addr part of |
| 836 | * the address when cast to sockaddr_in and the address family is AF_UNSPEC. |
Willy Tarreau | fab5a43 | 2011-03-04 15:31:53 +0100 | [diff] [blame] | 837 | */ |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 838 | struct sockaddr_storage *str2sa_range(const char *str, int *port, int *low, int *high, char **err, const char *pfx, char **fqdn, int resolve) |
Willy Tarreau | fab5a43 | 2011-03-04 15:31:53 +0100 | [diff] [blame] | 839 | { |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 840 | static struct sockaddr_storage ss; |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 841 | struct sockaddr_storage *ret = NULL; |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 842 | char *back, *str2; |
Willy Tarreau | d4448bc | 2013-02-20 15:55:15 +0100 | [diff] [blame] | 843 | char *port1, *port2; |
| 844 | int portl, porth, porta; |
Willy Tarreau | ccfccef | 2014-05-10 01:49:15 +0200 | [diff] [blame] | 845 | int abstract = 0; |
Willy Tarreau | d4448bc | 2013-02-20 15:55:15 +0100 | [diff] [blame] | 846 | |
| 847 | portl = porth = porta = 0; |
Willy Tarreau | 72b8c1f | 2015-09-08 15:50:19 +0200 | [diff] [blame] | 848 | if (fqdn) |
| 849 | *fqdn = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 850 | |
Willy Tarreau | dad36a3 | 2013-03-11 01:20:04 +0100 | [diff] [blame] | 851 | str2 = back = env_expand(strdup(str)); |
Willy Tarreau | df350f1 | 2013-03-01 20:22:54 +0100 | [diff] [blame] | 852 | if (str2 == NULL) { |
| 853 | memprintf(err, "out of memory in '%s'\n", __FUNCTION__); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 854 | goto out; |
Willy Tarreau | df350f1 | 2013-03-01 20:22:54 +0100 | [diff] [blame] | 855 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 856 | |
Willy Tarreau | 9f69f46 | 2015-09-08 16:01:25 +0200 | [diff] [blame] | 857 | if (!*str2) { |
| 858 | memprintf(err, "'%s' resolves to an empty address (environment variable missing?)\n", str); |
| 859 | goto out; |
| 860 | } |
| 861 | |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 862 | memset(&ss, 0, sizeof(ss)); |
| 863 | |
| 864 | if (strncmp(str2, "unix@", 5) == 0) { |
| 865 | str2 += 5; |
Willy Tarreau | ccfccef | 2014-05-10 01:49:15 +0200 | [diff] [blame] | 866 | abstract = 0; |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 867 | ss.ss_family = AF_UNIX; |
| 868 | } |
Willy Tarreau | ccfccef | 2014-05-10 01:49:15 +0200 | [diff] [blame] | 869 | else if (strncmp(str2, "abns@", 5) == 0) { |
| 870 | str2 += 5; |
| 871 | abstract = 1; |
| 872 | ss.ss_family = AF_UNIX; |
| 873 | } |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 874 | else if (strncmp(str2, "ipv4@", 5) == 0) { |
| 875 | str2 += 5; |
| 876 | ss.ss_family = AF_INET; |
| 877 | } |
| 878 | else if (strncmp(str2, "ipv6@", 5) == 0) { |
| 879 | str2 += 5; |
| 880 | ss.ss_family = AF_INET6; |
| 881 | } |
| 882 | else if (*str2 == '/') { |
| 883 | ss.ss_family = AF_UNIX; |
| 884 | } |
| 885 | else |
| 886 | ss.ss_family = AF_UNSPEC; |
| 887 | |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 888 | if (ss.ss_family == AF_UNSPEC && strncmp(str2, "fd@", 3) == 0) { |
| 889 | char *endptr; |
| 890 | |
| 891 | str2 += 3; |
| 892 | ((struct sockaddr_in *)&ss)->sin_addr.s_addr = strtol(str2, &endptr, 10); |
| 893 | |
| 894 | if (!*str2 || *endptr) { |
Willy Tarreau | dad36a3 | 2013-03-11 01:20:04 +0100 | [diff] [blame] | 895 | memprintf(err, "file descriptor '%s' is not a valid integer in '%s'\n", str2, str); |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 896 | goto out; |
| 897 | } |
| 898 | |
| 899 | /* we return AF_UNSPEC if we use a file descriptor number */ |
| 900 | ss.ss_family = AF_UNSPEC; |
| 901 | } |
| 902 | else if (ss.ss_family == AF_UNIX) { |
Willy Tarreau | 1558638 | 2013-03-04 19:48:14 +0100 | [diff] [blame] | 903 | int prefix_path_len; |
| 904 | int max_path_len; |
Willy Tarreau | 94ef3f3 | 2014-04-14 14:49:00 +0200 | [diff] [blame] | 905 | int adr_len; |
Willy Tarreau | 1558638 | 2013-03-04 19:48:14 +0100 | [diff] [blame] | 906 | |
| 907 | /* complete unix socket path name during startup or soft-restart is |
| 908 | * <unix_bind_prefix><path>.<pid>.<bak|tmp> |
| 909 | */ |
Willy Tarreau | ccfccef | 2014-05-10 01:49:15 +0200 | [diff] [blame] | 910 | prefix_path_len = (pfx && !abstract) ? strlen(pfx) : 0; |
Willy Tarreau | 1558638 | 2013-03-04 19:48:14 +0100 | [diff] [blame] | 911 | max_path_len = (sizeof(((struct sockaddr_un *)&ss)->sun_path) - 1) - |
| 912 | (prefix_path_len ? prefix_path_len + 1 + 5 + 1 + 3 : 0); |
| 913 | |
Willy Tarreau | 94ef3f3 | 2014-04-14 14:49:00 +0200 | [diff] [blame] | 914 | adr_len = strlen(str2); |
| 915 | if (adr_len > max_path_len) { |
Willy Tarreau | 1558638 | 2013-03-04 19:48:14 +0100 | [diff] [blame] | 916 | memprintf(err, "socket path '%s' too long (max %d)\n", str, max_path_len); |
| 917 | goto out; |
| 918 | } |
| 919 | |
Willy Tarreau | ccfccef | 2014-05-10 01:49:15 +0200 | [diff] [blame] | 920 | /* when abstract==1, we skip the first zero and copy all bytes except the trailing zero */ |
| 921 | memset(((struct sockaddr_un *)&ss)->sun_path, 0, sizeof(((struct sockaddr_un *)&ss)->sun_path)); |
Willy Tarreau | 94ef3f3 | 2014-04-14 14:49:00 +0200 | [diff] [blame] | 922 | if (prefix_path_len) |
Willy Tarreau | 1558638 | 2013-03-04 19:48:14 +0100 | [diff] [blame] | 923 | memcpy(((struct sockaddr_un *)&ss)->sun_path, pfx, prefix_path_len); |
Willy Tarreau | ccfccef | 2014-05-10 01:49:15 +0200 | [diff] [blame] | 924 | memcpy(((struct sockaddr_un *)&ss)->sun_path + prefix_path_len + abstract, str2, adr_len + 1 - abstract); |
Willy Tarreau | 1558638 | 2013-03-04 19:48:14 +0100 | [diff] [blame] | 925 | } |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 926 | else { /* IPv4 and IPv6 */ |
mildis | ff5d510 | 2015-10-26 18:50:08 +0100 | [diff] [blame] | 927 | char *end = str2 + strlen(str2); |
| 928 | char *chr; |
Willy Tarreau | 72b8c1f | 2015-09-08 15:50:19 +0200 | [diff] [blame] | 929 | |
mildis | ff5d510 | 2015-10-26 18:50:08 +0100 | [diff] [blame] | 930 | /* search for : or ] whatever comes first */ |
| 931 | for (chr = end-1; chr > str2; chr--) { |
| 932 | if (*chr == ']' || *chr == ':') |
| 933 | break; |
| 934 | } |
| 935 | |
| 936 | if (*chr == ':') { |
| 937 | /* Found a colon before a closing-bracket, must be a port separator. |
| 938 | * This guarantee backward compatibility. |
| 939 | */ |
| 940 | *chr++ = '\0'; |
| 941 | port1 = chr; |
| 942 | } |
| 943 | else { |
| 944 | /* Either no colon and no closing-bracket |
| 945 | * or directly ending with a closing-bracket. |
| 946 | * However, no port. |
| 947 | */ |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 948 | port1 = ""; |
mildis | ff5d510 | 2015-10-26 18:50:08 +0100 | [diff] [blame] | 949 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 950 | |
Willy Tarreau | a39d199 | 2013-04-01 20:37:42 +0200 | [diff] [blame] | 951 | if (isdigit((int)(unsigned char)*port1)) { /* single port or range */ |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 952 | port2 = strchr(port1, '-'); |
| 953 | if (port2) |
| 954 | *port2++ = '\0'; |
| 955 | else |
| 956 | port2 = port1; |
| 957 | portl = atoi(port1); |
| 958 | porth = atoi(port2); |
| 959 | porta = portl; |
| 960 | } |
| 961 | else if (*port1 == '-') { /* negative offset */ |
| 962 | portl = atoi(port1 + 1); |
| 963 | porta = -portl; |
| 964 | } |
| 965 | else if (*port1 == '+') { /* positive offset */ |
| 966 | porth = atoi(port1 + 1); |
| 967 | porta = porth; |
| 968 | } |
| 969 | else if (*port1) { /* other any unexpected char */ |
Willy Tarreau | dad36a3 | 2013-03-11 01:20:04 +0100 | [diff] [blame] | 970 | memprintf(err, "invalid character '%c' in port number '%s' in '%s'\n", *port1, port1, str); |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 971 | goto out; |
| 972 | } |
Willy Tarreau | ceccdd7 | 2016-11-02 22:27:10 +0100 | [diff] [blame] | 973 | |
| 974 | /* first try to parse the IP without resolving. If it fails, it |
| 975 | * tells us we need to keep a copy of the FQDN to resolve later |
| 976 | * and to enable DNS. In this case we can proceed if <fqdn> is |
| 977 | * set or if resolve is set, otherwise it's an error. |
| 978 | */ |
| 979 | if (str2ip2(str2, &ss, 0) == NULL) { |
Willy Tarreau | 7b760c9 | 2017-01-06 19:23:20 +0100 | [diff] [blame] | 980 | if ((!resolve && !fqdn) || |
Willy Tarreau | ceccdd7 | 2016-11-02 22:27:10 +0100 | [diff] [blame] | 981 | (resolve && str2ip2(str2, &ss, 1) == NULL)) { |
| 982 | memprintf(err, "invalid address: '%s' in '%s'\n", str2, str); |
| 983 | goto out; |
| 984 | } |
Willy Tarreau | 72b8c1f | 2015-09-08 15:50:19 +0200 | [diff] [blame] | 985 | |
Willy Tarreau | ceccdd7 | 2016-11-02 22:27:10 +0100 | [diff] [blame] | 986 | if (fqdn) { |
| 987 | if (str2 != back) |
| 988 | memmove(back, str2, strlen(str2) + 1); |
| 989 | *fqdn = back; |
| 990 | back = NULL; |
| 991 | } |
Willy Tarreau | 72b8c1f | 2015-09-08 15:50:19 +0200 | [diff] [blame] | 992 | } |
Willy Tarreau | ceccdd7 | 2016-11-02 22:27:10 +0100 | [diff] [blame] | 993 | set_host_port(&ss, porta); |
Willy Tarreau | e4c58c8 | 2013-03-06 15:28:17 +0100 | [diff] [blame] | 994 | } |
Willy Tarreau | fab5a43 | 2011-03-04 15:31:53 +0100 | [diff] [blame] | 995 | |
Willy Tarreau | c120c8d | 2013-03-10 19:27:44 +0100 | [diff] [blame] | 996 | ret = &ss; |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 997 | out: |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 998 | if (port) |
| 999 | *port = porta; |
Willy Tarreau | d4448bc | 2013-02-20 15:55:15 +0100 | [diff] [blame] | 1000 | if (low) |
| 1001 | *low = portl; |
| 1002 | if (high) |
| 1003 | *high = porth; |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 1004 | free(back); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 1005 | return ret; |
Willy Tarreau | c6f4ce8 | 2009-06-10 11:09:37 +0200 | [diff] [blame] | 1006 | } |
| 1007 | |
Willy Tarreau | 2937c0d | 2010-01-26 17:36:17 +0100 | [diff] [blame] | 1008 | /* converts <str> to a struct in_addr containing a network mask. It can be |
| 1009 | * passed in dotted form (255.255.255.0) or in CIDR form (24). It returns 1 |
| 1010 | * if the conversion succeeds otherwise non-zero. |
| 1011 | */ |
| 1012 | int str2mask(const char *str, struct in_addr *mask) |
| 1013 | { |
| 1014 | if (strchr(str, '.') != NULL) { /* dotted notation */ |
| 1015 | if (!inet_pton(AF_INET, str, mask)) |
| 1016 | return 0; |
| 1017 | } |
| 1018 | else { /* mask length */ |
| 1019 | char *err; |
| 1020 | unsigned long len = strtol(str, &err, 10); |
| 1021 | |
| 1022 | if (!*str || (err && *err) || (unsigned)len > 32) |
| 1023 | return 0; |
| 1024 | if (len) |
| 1025 | mask->s_addr = htonl(~0UL << (32 - len)); |
| 1026 | else |
| 1027 | mask->s_addr = 0; |
| 1028 | } |
| 1029 | return 1; |
| 1030 | } |
| 1031 | |
Thierry FOURNIER | b050463 | 2013-12-14 15:39:02 +0100 | [diff] [blame] | 1032 | /* convert <cidr> to struct in_addr <mask>. It returns 1 if the conversion |
| 1033 | * succeeds otherwise zero. |
| 1034 | */ |
| 1035 | int cidr2dotted(int cidr, struct in_addr *mask) { |
| 1036 | |
| 1037 | if (cidr < 0 || cidr > 32) |
| 1038 | return 0; |
| 1039 | |
| 1040 | mask->s_addr = cidr ? htonl(~0UL << (32 - cidr)) : 0; |
| 1041 | return 1; |
| 1042 | } |
| 1043 | |
Thierry Fournier | 70473a5 | 2016-02-17 17:12:14 +0100 | [diff] [blame] | 1044 | /* Convert mask from bit length form to in_addr form. |
| 1045 | * This function never fails. |
| 1046 | */ |
| 1047 | void len2mask4(int len, struct in_addr *addr) |
| 1048 | { |
| 1049 | if (len >= 32) { |
| 1050 | addr->s_addr = 0xffffffff; |
| 1051 | return; |
| 1052 | } |
| 1053 | if (len <= 0) { |
| 1054 | addr->s_addr = 0x00000000; |
| 1055 | return; |
| 1056 | } |
| 1057 | addr->s_addr = 0xffffffff << (32 - len); |
| 1058 | addr->s_addr = htonl(addr->s_addr); |
| 1059 | } |
| 1060 | |
| 1061 | /* Convert mask from bit length form to in6_addr form. |
| 1062 | * This function never fails. |
| 1063 | */ |
| 1064 | void len2mask6(int len, struct in6_addr *addr) |
| 1065 | { |
| 1066 | len2mask4(len, (struct in_addr *)&addr->s6_addr[0]); /* msb */ |
| 1067 | len -= 32; |
| 1068 | len2mask4(len, (struct in_addr *)&addr->s6_addr[4]); |
| 1069 | len -= 32; |
| 1070 | len2mask4(len, (struct in_addr *)&addr->s6_addr[8]); |
| 1071 | len -= 32; |
| 1072 | len2mask4(len, (struct in_addr *)&addr->s6_addr[12]); /* lsb */ |
| 1073 | } |
| 1074 | |
Willy Tarreau | c6f4ce8 | 2009-06-10 11:09:37 +0200 | [diff] [blame] | 1075 | /* |
Willy Tarreau | d077a8e | 2007-05-08 18:28:09 +0200 | [diff] [blame] | 1076 | * converts <str> to two struct in_addr* which must be pre-allocated. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1077 | * The format is "addr[/mask]", where "addr" cannot be empty, and mask |
| 1078 | * is optionnal and either in the dotted or CIDR notation. |
| 1079 | * Note: "addr" can also be a hostname. Returns 1 if OK, 0 if error. |
| 1080 | */ |
Thierry FOURNIER | fc7ac7b | 2014-02-11 15:23:04 +0100 | [diff] [blame] | 1081 | int str2net(const char *str, int resolve, struct in_addr *addr, struct in_addr *mask) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1082 | { |
Willy Tarreau | 8aeae4a | 2007-06-17 11:42:08 +0200 | [diff] [blame] | 1083 | __label__ out_free, out_err; |
| 1084 | char *c, *s; |
| 1085 | int ret_val; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1086 | |
Willy Tarreau | 8aeae4a | 2007-06-17 11:42:08 +0200 | [diff] [blame] | 1087 | s = strdup(str); |
| 1088 | if (!s) |
| 1089 | return 0; |
| 1090 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1091 | memset(mask, 0, sizeof(*mask)); |
| 1092 | memset(addr, 0, sizeof(*addr)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1093 | |
Willy Tarreau | 8aeae4a | 2007-06-17 11:42:08 +0200 | [diff] [blame] | 1094 | if ((c = strrchr(s, '/')) != NULL) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1095 | *c++ = '\0'; |
| 1096 | /* c points to the mask */ |
Willy Tarreau | 2937c0d | 2010-01-26 17:36:17 +0100 | [diff] [blame] | 1097 | if (!str2mask(c, mask)) |
| 1098 | goto out_err; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1099 | } |
| 1100 | else { |
Willy Tarreau | ebd6160 | 2006-12-30 11:54:15 +0100 | [diff] [blame] | 1101 | mask->s_addr = ~0U; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1102 | } |
Willy Tarreau | 8aeae4a | 2007-06-17 11:42:08 +0200 | [diff] [blame] | 1103 | if (!inet_pton(AF_INET, s, addr)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1104 | struct hostent *he; |
| 1105 | |
Thierry FOURNIER | fc7ac7b | 2014-02-11 15:23:04 +0100 | [diff] [blame] | 1106 | if (!resolve) |
| 1107 | goto out_err; |
| 1108 | |
Willy Tarreau | 8aeae4a | 2007-06-17 11:42:08 +0200 | [diff] [blame] | 1109 | if ((he = gethostbyname(s)) == NULL) { |
| 1110 | goto out_err; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1111 | } |
| 1112 | else |
| 1113 | *addr = *(struct in_addr *) *(he->h_addr_list); |
| 1114 | } |
Willy Tarreau | 8aeae4a | 2007-06-17 11:42:08 +0200 | [diff] [blame] | 1115 | |
| 1116 | ret_val = 1; |
| 1117 | out_free: |
| 1118 | free(s); |
| 1119 | return ret_val; |
| 1120 | out_err: |
| 1121 | ret_val = 0; |
| 1122 | goto out_free; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1123 | } |
| 1124 | |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1125 | |
| 1126 | /* |
Willy Tarreau | 6d20e28 | 2012-04-27 22:49:47 +0200 | [diff] [blame] | 1127 | * converts <str> to two struct in6_addr* which must be pre-allocated. |
| 1128 | * The format is "addr[/mask]", where "addr" cannot be empty, and mask |
| 1129 | * is an optionnal number of bits (128 being the default). |
| 1130 | * Returns 1 if OK, 0 if error. |
| 1131 | */ |
| 1132 | int str62net(const char *str, struct in6_addr *addr, unsigned char *mask) |
| 1133 | { |
| 1134 | char *c, *s; |
| 1135 | int ret_val = 0; |
| 1136 | char *err; |
| 1137 | unsigned long len = 128; |
| 1138 | |
| 1139 | s = strdup(str); |
| 1140 | if (!s) |
| 1141 | return 0; |
| 1142 | |
| 1143 | memset(mask, 0, sizeof(*mask)); |
| 1144 | memset(addr, 0, sizeof(*addr)); |
| 1145 | |
| 1146 | if ((c = strrchr(s, '/')) != NULL) { |
| 1147 | *c++ = '\0'; /* c points to the mask */ |
| 1148 | if (!*c) |
| 1149 | goto out_free; |
| 1150 | |
| 1151 | len = strtoul(c, &err, 10); |
| 1152 | if ((err && *err) || (unsigned)len > 128) |
| 1153 | goto out_free; |
| 1154 | } |
| 1155 | *mask = len; /* OK we have a valid mask in <len> */ |
| 1156 | |
| 1157 | if (!inet_pton(AF_INET6, s, addr)) |
| 1158 | goto out_free; |
| 1159 | |
| 1160 | ret_val = 1; |
| 1161 | out_free: |
| 1162 | free(s); |
| 1163 | return ret_val; |
| 1164 | } |
| 1165 | |
| 1166 | |
| 1167 | /* |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 1168 | * Parse IPv4 address found in url. |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1169 | */ |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 1170 | int url2ipv4(const char *addr, struct in_addr *dst) |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1171 | { |
| 1172 | int saw_digit, octets, ch; |
| 1173 | u_char tmp[4], *tp; |
| 1174 | const char *cp = addr; |
| 1175 | |
| 1176 | saw_digit = 0; |
| 1177 | octets = 0; |
| 1178 | *(tp = tmp) = 0; |
| 1179 | |
| 1180 | while (*addr) { |
| 1181 | unsigned char digit = (ch = *addr++) - '0'; |
| 1182 | if (digit > 9 && ch != '.') |
| 1183 | break; |
| 1184 | if (digit <= 9) { |
| 1185 | u_int new = *tp * 10 + digit; |
| 1186 | if (new > 255) |
| 1187 | return 0; |
| 1188 | *tp = new; |
| 1189 | if (!saw_digit) { |
| 1190 | if (++octets > 4) |
| 1191 | return 0; |
| 1192 | saw_digit = 1; |
| 1193 | } |
| 1194 | } else if (ch == '.' && saw_digit) { |
| 1195 | if (octets == 4) |
| 1196 | return 0; |
| 1197 | *++tp = 0; |
| 1198 | saw_digit = 0; |
| 1199 | } else |
| 1200 | return 0; |
| 1201 | } |
| 1202 | |
| 1203 | if (octets < 4) |
| 1204 | return 0; |
| 1205 | |
| 1206 | memcpy(&dst->s_addr, tmp, 4); |
| 1207 | return addr-cp-1; |
| 1208 | } |
| 1209 | |
| 1210 | /* |
Thierry FOURNIER | 9f95e40 | 2014-03-21 14:51:46 +0100 | [diff] [blame] | 1211 | * Resolve destination server from URL. Convert <str> to a sockaddr_storage. |
| 1212 | * <out> contain the code of the dectected scheme, the start and length of |
| 1213 | * the hostname. Actually only http and https are supported. <out> can be NULL. |
| 1214 | * This function returns the consumed length. It is useful if you parse complete |
| 1215 | * url like http://host:port/path, because the consumed length corresponds to |
| 1216 | * the first character of the path. If the conversion fails, it returns -1. |
| 1217 | * |
| 1218 | * This function tries to resolve the DNS name if haproxy is in starting mode. |
| 1219 | * So, this function may be used during the configuration parsing. |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1220 | */ |
Thierry FOURNIER | 9f95e40 | 2014-03-21 14:51:46 +0100 | [diff] [blame] | 1221 | int url2sa(const char *url, int ulen, struct sockaddr_storage *addr, struct split_url *out) |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1222 | { |
| 1223 | const char *curr = url, *cp = url; |
Thierry FOURNIER | 9f95e40 | 2014-03-21 14:51:46 +0100 | [diff] [blame] | 1224 | const char *end; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1225 | int ret, url_code = 0; |
Thierry FOURNIER | 9f95e40 | 2014-03-21 14:51:46 +0100 | [diff] [blame] | 1226 | unsigned long long int http_code = 0; |
| 1227 | int default_port; |
| 1228 | struct hostent *he; |
| 1229 | char *p; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1230 | |
| 1231 | /* Firstly, try to find :// pattern */ |
| 1232 | while (curr < url+ulen && url_code != 0x3a2f2f) { |
| 1233 | url_code = ((url_code & 0xffff) << 8); |
| 1234 | url_code += (unsigned char)*curr++; |
| 1235 | } |
| 1236 | |
| 1237 | /* Secondly, if :// pattern is found, verify parsed stuff |
| 1238 | * before pattern is matching our http pattern. |
| 1239 | * If so parse ip address and port in uri. |
| 1240 | * |
| 1241 | * WARNING: Current code doesn't support dynamic async dns resolver. |
| 1242 | */ |
Thierry FOURNIER | 9f95e40 | 2014-03-21 14:51:46 +0100 | [diff] [blame] | 1243 | if (url_code != 0x3a2f2f) |
| 1244 | return -1; |
| 1245 | |
| 1246 | /* Copy scheme, and utrn to lower case. */ |
| 1247 | while (cp < curr - 3) |
| 1248 | http_code = (http_code << 8) + *cp++; |
| 1249 | http_code |= 0x2020202020202020ULL; /* Turn everything to lower case */ |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1250 | |
Thierry FOURNIER | 9f95e40 | 2014-03-21 14:51:46 +0100 | [diff] [blame] | 1251 | /* HTTP or HTTPS url matching */ |
| 1252 | if (http_code == 0x2020202068747470ULL) { |
| 1253 | default_port = 80; |
| 1254 | if (out) |
| 1255 | out->scheme = SCH_HTTP; |
| 1256 | } |
| 1257 | else if (http_code == 0x2020206874747073ULL) { |
| 1258 | default_port = 443; |
| 1259 | if (out) |
| 1260 | out->scheme = SCH_HTTPS; |
| 1261 | } |
| 1262 | else |
| 1263 | return -1; |
| 1264 | |
| 1265 | /* If the next char is '[', the host address is IPv6. */ |
| 1266 | if (*curr == '[') { |
| 1267 | curr++; |
| 1268 | |
| 1269 | /* Check trash size */ |
| 1270 | if (trash.size < ulen) |
| 1271 | return -1; |
| 1272 | |
| 1273 | /* Look for ']' and copy the address in a trash buffer. */ |
| 1274 | p = trash.str; |
| 1275 | for (end = curr; |
| 1276 | end < url + ulen && *end != ']'; |
| 1277 | end++, p++) |
| 1278 | *p = *end; |
| 1279 | if (*end != ']') |
| 1280 | return -1; |
| 1281 | *p = '\0'; |
| 1282 | |
| 1283 | /* Update out. */ |
| 1284 | if (out) { |
| 1285 | out->host = curr; |
| 1286 | out->host_len = end - curr; |
| 1287 | } |
| 1288 | |
| 1289 | /* Try IPv6 decoding. */ |
| 1290 | if (!inet_pton(AF_INET6, trash.str, &((struct sockaddr_in6 *)addr)->sin6_addr)) |
| 1291 | return -1; |
| 1292 | end++; |
| 1293 | |
| 1294 | /* Decode port. */ |
| 1295 | if (*end == ':') { |
| 1296 | end++; |
| 1297 | default_port = read_uint(&end, url + ulen); |
| 1298 | } |
| 1299 | ((struct sockaddr_in6 *)addr)->sin6_port = htons(default_port); |
| 1300 | ((struct sockaddr_in6 *)addr)->sin6_family = AF_INET6; |
| 1301 | return end - url; |
| 1302 | } |
| 1303 | else { |
| 1304 | /* We are looking for IP address. If you want to parse and |
| 1305 | * resolve hostname found in url, you can use str2sa_range(), but |
| 1306 | * be warned this can slow down global daemon performances |
| 1307 | * while handling lagging dns responses. |
| 1308 | */ |
| 1309 | ret = url2ipv4(curr, &((struct sockaddr_in *)addr)->sin_addr); |
| 1310 | if (ret) { |
| 1311 | /* Update out. */ |
| 1312 | if (out) { |
| 1313 | out->host = curr; |
| 1314 | out->host_len = ret; |
| 1315 | } |
| 1316 | |
| 1317 | curr += ret; |
| 1318 | |
| 1319 | /* Decode port. */ |
| 1320 | if (*curr == ':') { |
| 1321 | curr++; |
| 1322 | default_port = read_uint(&curr, url + ulen); |
| 1323 | } |
| 1324 | ((struct sockaddr_in *)addr)->sin_port = htons(default_port); |
| 1325 | |
| 1326 | /* Set family. */ |
| 1327 | ((struct sockaddr_in *)addr)->sin_family = AF_INET; |
| 1328 | return curr - url; |
| 1329 | } |
| 1330 | else if (global.mode & MODE_STARTING) { |
| 1331 | /* The IPv4 and IPv6 decoding fails, maybe the url contain name. Try to execute |
| 1332 | * synchronous DNS request only if HAProxy is in the start state. |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1333 | */ |
Thierry FOURNIER | 9f95e40 | 2014-03-21 14:51:46 +0100 | [diff] [blame] | 1334 | |
| 1335 | /* look for : or / or end */ |
| 1336 | for (end = curr; |
| 1337 | end < url + ulen && *end != '/' && *end != ':'; |
| 1338 | end++); |
| 1339 | memcpy(trash.str, curr, end - curr); |
| 1340 | trash.str[end - curr] = '\0'; |
| 1341 | |
| 1342 | /* try to resolve an IPv4/IPv6 hostname */ |
| 1343 | he = gethostbyname(trash.str); |
| 1344 | if (!he) |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1345 | return -1; |
Thierry FOURNIER | 9f95e40 | 2014-03-21 14:51:46 +0100 | [diff] [blame] | 1346 | |
| 1347 | /* Update out. */ |
| 1348 | if (out) { |
| 1349 | out->host = curr; |
| 1350 | out->host_len = end - curr; |
| 1351 | } |
| 1352 | |
| 1353 | /* Decode port. */ |
| 1354 | if (*end == ':') { |
| 1355 | end++; |
| 1356 | default_port = read_uint(&end, url + ulen); |
| 1357 | } |
| 1358 | |
| 1359 | /* Copy IP address, set port and family. */ |
| 1360 | switch (he->h_addrtype) { |
| 1361 | case AF_INET: |
| 1362 | ((struct sockaddr_in *)addr)->sin_addr = *(struct in_addr *) *(he->h_addr_list); |
| 1363 | ((struct sockaddr_in *)addr)->sin_port = htons(default_port); |
| 1364 | ((struct sockaddr_in *)addr)->sin_family = AF_INET; |
| 1365 | return end - url; |
| 1366 | |
| 1367 | case AF_INET6: |
| 1368 | ((struct sockaddr_in6 *)addr)->sin6_addr = *(struct in6_addr *) *(he->h_addr_list); |
| 1369 | ((struct sockaddr_in6 *)addr)->sin6_port = htons(default_port); |
| 1370 | ((struct sockaddr_in6 *)addr)->sin6_family = AF_INET6; |
| 1371 | return end - url; |
| 1372 | } |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1373 | } |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1374 | } |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1375 | return -1; |
| 1376 | } |
| 1377 | |
Willy Tarreau | 631f01c | 2011-09-05 00:36:48 +0200 | [diff] [blame] | 1378 | /* Tries to convert a sockaddr_storage address to text form. Upon success, the |
| 1379 | * address family is returned so that it's easy for the caller to adapt to the |
| 1380 | * output format. Zero is returned if the address family is not supported. -1 |
| 1381 | * is returned upon error, with errno set. AF_INET, AF_INET6 and AF_UNIX are |
| 1382 | * supported. |
| 1383 | */ |
| 1384 | int addr_to_str(struct sockaddr_storage *addr, char *str, int size) |
| 1385 | { |
| 1386 | |
| 1387 | void *ptr; |
| 1388 | |
| 1389 | if (size < 5) |
| 1390 | return 0; |
| 1391 | *str = '\0'; |
| 1392 | |
| 1393 | switch (addr->ss_family) { |
| 1394 | case AF_INET: |
| 1395 | ptr = &((struct sockaddr_in *)addr)->sin_addr; |
| 1396 | break; |
| 1397 | case AF_INET6: |
| 1398 | ptr = &((struct sockaddr_in6 *)addr)->sin6_addr; |
| 1399 | break; |
| 1400 | case AF_UNIX: |
| 1401 | memcpy(str, "unix", 5); |
| 1402 | return addr->ss_family; |
| 1403 | default: |
| 1404 | return 0; |
| 1405 | } |
| 1406 | |
| 1407 | if (inet_ntop(addr->ss_family, ptr, str, size)) |
| 1408 | return addr->ss_family; |
| 1409 | |
| 1410 | /* failed */ |
| 1411 | return -1; |
| 1412 | } |
| 1413 | |
Simon Horman | 75ab8bd | 2014-06-16 09:39:41 +0900 | [diff] [blame] | 1414 | /* Tries to convert a sockaddr_storage port to text form. Upon success, the |
| 1415 | * address family is returned so that it's easy for the caller to adapt to the |
| 1416 | * output format. Zero is returned if the address family is not supported. -1 |
| 1417 | * is returned upon error, with errno set. AF_INET, AF_INET6 and AF_UNIX are |
| 1418 | * supported. |
| 1419 | */ |
| 1420 | int port_to_str(struct sockaddr_storage *addr, char *str, int size) |
| 1421 | { |
| 1422 | |
| 1423 | uint16_t port; |
| 1424 | |
| 1425 | |
Willy Tarreau | d7dad1b | 2017-01-06 16:46:22 +0100 | [diff] [blame] | 1426 | if (size < 6) |
Simon Horman | 75ab8bd | 2014-06-16 09:39:41 +0900 | [diff] [blame] | 1427 | return 0; |
| 1428 | *str = '\0'; |
| 1429 | |
| 1430 | switch (addr->ss_family) { |
| 1431 | case AF_INET: |
| 1432 | port = ((struct sockaddr_in *)addr)->sin_port; |
| 1433 | break; |
| 1434 | case AF_INET6: |
| 1435 | port = ((struct sockaddr_in6 *)addr)->sin6_port; |
| 1436 | break; |
| 1437 | case AF_UNIX: |
| 1438 | memcpy(str, "unix", 5); |
| 1439 | return addr->ss_family; |
| 1440 | default: |
| 1441 | return 0; |
| 1442 | } |
| 1443 | |
| 1444 | snprintf(str, size, "%u", ntohs(port)); |
| 1445 | return addr->ss_family; |
| 1446 | } |
| 1447 | |
Willy Tarreau | 16e0156 | 2016-08-09 16:46:18 +0200 | [diff] [blame] | 1448 | /* check if the given address is local to the system or not. It will return |
| 1449 | * -1 when it's not possible to know, 0 when the address is not local, 1 when |
| 1450 | * it is. We don't want to iterate over all interfaces for this (and it is not |
| 1451 | * portable). So instead we try to bind in UDP to this address on a free non |
| 1452 | * privileged port and to connect to the same address, port 0 (connect doesn't |
| 1453 | * care). If it succeeds, we own the address. Note that non-inet addresses are |
| 1454 | * considered local since they're most likely AF_UNIX. |
| 1455 | */ |
| 1456 | int addr_is_local(const struct netns_entry *ns, |
| 1457 | const struct sockaddr_storage *orig) |
| 1458 | { |
| 1459 | struct sockaddr_storage addr; |
| 1460 | int result; |
| 1461 | int fd; |
| 1462 | |
| 1463 | if (!is_inet_addr(orig)) |
| 1464 | return 1; |
| 1465 | |
| 1466 | memcpy(&addr, orig, sizeof(addr)); |
| 1467 | set_host_port(&addr, 0); |
| 1468 | |
| 1469 | fd = my_socketat(ns, addr.ss_family, SOCK_DGRAM, IPPROTO_UDP); |
| 1470 | if (fd < 0) |
| 1471 | return -1; |
| 1472 | |
| 1473 | result = -1; |
| 1474 | if (bind(fd, (struct sockaddr *)&addr, get_addr_len(&addr)) == 0) { |
| 1475 | if (connect(fd, (struct sockaddr *)&addr, get_addr_len(&addr)) == -1) |
| 1476 | result = 0; // fail, non-local address |
| 1477 | else |
| 1478 | result = 1; // success, local address |
| 1479 | } |
| 1480 | else { |
| 1481 | if (errno == EADDRNOTAVAIL) |
| 1482 | result = 0; // definitely not local :-) |
| 1483 | } |
| 1484 | close(fd); |
| 1485 | |
| 1486 | return result; |
| 1487 | } |
| 1488 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1489 | /* will try to encode the string <string> replacing all characters tagged in |
| 1490 | * <map> with the hexadecimal representation of their ASCII-code (2 digits) |
| 1491 | * prefixed by <escape>, and will store the result between <start> (included) |
| 1492 | * and <stop> (excluded), and will always terminate the string with a '\0' |
| 1493 | * before <stop>. The position of the '\0' is returned if the conversion |
| 1494 | * completes. If bytes are missing between <start> and <stop>, then the |
| 1495 | * conversion will be incomplete and truncated. If <stop> <= <start>, the '\0' |
| 1496 | * cannot even be stored so we return <start> without writing the 0. |
| 1497 | * The input string must also be zero-terminated. |
| 1498 | */ |
| 1499 | const char hextab[16] = "0123456789ABCDEF"; |
| 1500 | char *encode_string(char *start, char *stop, |
| 1501 | const char escape, const fd_set *map, |
| 1502 | const char *string) |
| 1503 | { |
| 1504 | if (start < stop) { |
| 1505 | stop--; /* reserve one byte for the final '\0' */ |
| 1506 | while (start < stop && *string != '\0') { |
| 1507 | if (!FD_ISSET((unsigned char)(*string), map)) |
| 1508 | *start++ = *string; |
| 1509 | else { |
| 1510 | if (start + 3 >= stop) |
| 1511 | break; |
| 1512 | *start++ = escape; |
| 1513 | *start++ = hextab[(*string >> 4) & 15]; |
| 1514 | *start++ = hextab[*string & 15]; |
| 1515 | } |
| 1516 | string++; |
| 1517 | } |
| 1518 | *start = '\0'; |
| 1519 | } |
| 1520 | return start; |
| 1521 | } |
| 1522 | |
Thierry FOURNIER | e059ec9 | 2014-03-17 12:01:13 +0100 | [diff] [blame] | 1523 | /* |
| 1524 | * Same behavior as encode_string() above, except that it encodes chunk |
| 1525 | * <chunk> instead of a string. |
| 1526 | */ |
| 1527 | char *encode_chunk(char *start, char *stop, |
| 1528 | const char escape, const fd_set *map, |
| 1529 | const struct chunk *chunk) |
| 1530 | { |
| 1531 | char *str = chunk->str; |
| 1532 | char *end = chunk->str + chunk->len; |
| 1533 | |
| 1534 | if (start < stop) { |
| 1535 | stop--; /* reserve one byte for the final '\0' */ |
| 1536 | while (start < stop && str < end) { |
| 1537 | if (!FD_ISSET((unsigned char)(*str), map)) |
| 1538 | *start++ = *str; |
| 1539 | else { |
| 1540 | if (start + 3 >= stop) |
| 1541 | break; |
| 1542 | *start++ = escape; |
| 1543 | *start++ = hextab[(*str >> 4) & 15]; |
| 1544 | *start++ = hextab[*str & 15]; |
| 1545 | } |
| 1546 | str++; |
| 1547 | } |
| 1548 | *start = '\0'; |
| 1549 | } |
| 1550 | return start; |
| 1551 | } |
| 1552 | |
Dragan Dosen | 0edd109 | 2016-02-12 13:23:02 +0100 | [diff] [blame] | 1553 | /* |
| 1554 | * Tries to prefix characters tagged in the <map> with the <escape> |
Dragan Dosen | 1a5d060 | 2016-07-22 16:00:31 +0200 | [diff] [blame] | 1555 | * character. The input <string> must be zero-terminated. The result will |
| 1556 | * be stored between <start> (included) and <stop> (excluded). This |
| 1557 | * function will always try to terminate the resulting string with a '\0' |
| 1558 | * before <stop>, and will return its position if the conversion |
| 1559 | * completes. |
| 1560 | */ |
| 1561 | char *escape_string(char *start, char *stop, |
| 1562 | const char escape, const fd_set *map, |
| 1563 | const char *string) |
| 1564 | { |
| 1565 | if (start < stop) { |
| 1566 | stop--; /* reserve one byte for the final '\0' */ |
| 1567 | while (start < stop && *string != '\0') { |
| 1568 | if (!FD_ISSET((unsigned char)(*string), map)) |
| 1569 | *start++ = *string; |
| 1570 | else { |
| 1571 | if (start + 2 >= stop) |
| 1572 | break; |
| 1573 | *start++ = escape; |
| 1574 | *start++ = *string; |
| 1575 | } |
| 1576 | string++; |
| 1577 | } |
| 1578 | *start = '\0'; |
| 1579 | } |
| 1580 | return start; |
| 1581 | } |
| 1582 | |
| 1583 | /* |
| 1584 | * Tries to prefix characters tagged in the <map> with the <escape> |
Dragan Dosen | 0edd109 | 2016-02-12 13:23:02 +0100 | [diff] [blame] | 1585 | * character. <chunk> contains the input to be escaped. The result will be |
| 1586 | * stored between <start> (included) and <stop> (excluded). The function |
| 1587 | * will always try to terminate the resulting string with a '\0' before |
| 1588 | * <stop>, and will return its position if the conversion completes. |
| 1589 | */ |
| 1590 | char *escape_chunk(char *start, char *stop, |
| 1591 | const char escape, const fd_set *map, |
| 1592 | const struct chunk *chunk) |
| 1593 | { |
| 1594 | char *str = chunk->str; |
| 1595 | char *end = chunk->str + chunk->len; |
| 1596 | |
| 1597 | if (start < stop) { |
| 1598 | stop--; /* reserve one byte for the final '\0' */ |
| 1599 | while (start < stop && str < end) { |
| 1600 | if (!FD_ISSET((unsigned char)(*str), map)) |
| 1601 | *start++ = *str; |
| 1602 | else { |
| 1603 | if (start + 2 >= stop) |
| 1604 | break; |
| 1605 | *start++ = escape; |
| 1606 | *start++ = *str; |
| 1607 | } |
| 1608 | str++; |
| 1609 | } |
| 1610 | *start = '\0'; |
| 1611 | } |
| 1612 | return start; |
| 1613 | } |
| 1614 | |
Thierry FOURNIER | ddea626 | 2015-05-28 16:00:28 +0200 | [diff] [blame] | 1615 | /* Check a string for using it in a CSV output format. If the string contains |
| 1616 | * one of the following four char <">, <,>, CR or LF, the string is |
| 1617 | * encapsulated between <"> and the <"> are escaped by a <""> sequence. |
| 1618 | * <str> is the input string to be escaped. The function assumes that |
| 1619 | * the input string is null-terminated. |
| 1620 | * |
| 1621 | * If <quote> is 0, the result is returned escaped but without double quote. |
Willy Tarreau | 898529b | 2016-01-06 18:07:04 +0100 | [diff] [blame] | 1622 | * It is useful if the escaped string is used between double quotes in the |
Thierry FOURNIER | ddea626 | 2015-05-28 16:00:28 +0200 | [diff] [blame] | 1623 | * format. |
| 1624 | * |
Willy Tarreau | 898529b | 2016-01-06 18:07:04 +0100 | [diff] [blame] | 1625 | * printf("..., \"%s\", ...\r\n", csv_enc(str, 0, &trash)); |
Thierry FOURNIER | ddea626 | 2015-05-28 16:00:28 +0200 | [diff] [blame] | 1626 | * |
Willy Tarreau | b631c29 | 2016-01-08 10:04:08 +0100 | [diff] [blame] | 1627 | * If <quote> is 1, the converter puts the quotes only if any reserved character |
| 1628 | * is present. If <quote> is 2, the converter always puts the quotes. |
Thierry FOURNIER | ddea626 | 2015-05-28 16:00:28 +0200 | [diff] [blame] | 1629 | * |
Willy Tarreau | 898529b | 2016-01-06 18:07:04 +0100 | [diff] [blame] | 1630 | * <output> is a struct chunk used for storing the output string. |
Thierry FOURNIER | ddea626 | 2015-05-28 16:00:28 +0200 | [diff] [blame] | 1631 | * |
Willy Tarreau | 898529b | 2016-01-06 18:07:04 +0100 | [diff] [blame] | 1632 | * The function returns the converted string on its output. If an error |
| 1633 | * occurs, the function returns an empty string. This type of output is useful |
Thierry FOURNIER | ddea626 | 2015-05-28 16:00:28 +0200 | [diff] [blame] | 1634 | * for using the function directly as printf() argument. |
| 1635 | * |
| 1636 | * If the output buffer is too short to contain the input string, the result |
| 1637 | * is truncated. |
Willy Tarreau | 898529b | 2016-01-06 18:07:04 +0100 | [diff] [blame] | 1638 | * |
Willy Tarreau | b631c29 | 2016-01-08 10:04:08 +0100 | [diff] [blame] | 1639 | * This function appends the encoding to the existing output chunk, and it |
| 1640 | * guarantees that it starts immediately at the first available character of |
| 1641 | * the chunk. Please use csv_enc() instead if you want to replace the output |
| 1642 | * chunk. |
Thierry FOURNIER | ddea626 | 2015-05-28 16:00:28 +0200 | [diff] [blame] | 1643 | */ |
Willy Tarreau | 898529b | 2016-01-06 18:07:04 +0100 | [diff] [blame] | 1644 | const char *csv_enc_append(const char *str, int quote, struct chunk *output) |
Thierry FOURNIER | ddea626 | 2015-05-28 16:00:28 +0200 | [diff] [blame] | 1645 | { |
| 1646 | char *end = output->str + output->size; |
Willy Tarreau | b631c29 | 2016-01-08 10:04:08 +0100 | [diff] [blame] | 1647 | char *out = output->str + output->len; |
Willy Tarreau | 898529b | 2016-01-06 18:07:04 +0100 | [diff] [blame] | 1648 | char *ptr = out; |
Thierry FOURNIER | ddea626 | 2015-05-28 16:00:28 +0200 | [diff] [blame] | 1649 | |
Willy Tarreau | b631c29 | 2016-01-08 10:04:08 +0100 | [diff] [blame] | 1650 | if (quote == 1) { |
| 1651 | /* automatic quoting: first verify if we'll have to quote the string */ |
| 1652 | if (!strpbrk(str, "\n\r,\"")) |
| 1653 | quote = 0; |
| 1654 | } |
| 1655 | |
| 1656 | if (quote) |
| 1657 | *ptr++ = '"'; |
| 1658 | |
Willy Tarreau | 898529b | 2016-01-06 18:07:04 +0100 | [diff] [blame] | 1659 | while (*str && ptr < end - 2) { /* -2 for reserving space for <"> and \0. */ |
| 1660 | *ptr = *str; |
Thierry FOURNIER | ddea626 | 2015-05-28 16:00:28 +0200 | [diff] [blame] | 1661 | if (*str == '"') { |
Willy Tarreau | 898529b | 2016-01-06 18:07:04 +0100 | [diff] [blame] | 1662 | ptr++; |
| 1663 | if (ptr >= end - 2) { |
| 1664 | ptr--; |
Thierry FOURNIER | ddea626 | 2015-05-28 16:00:28 +0200 | [diff] [blame] | 1665 | break; |
| 1666 | } |
Willy Tarreau | 898529b | 2016-01-06 18:07:04 +0100 | [diff] [blame] | 1667 | *ptr = '"'; |
Thierry FOURNIER | ddea626 | 2015-05-28 16:00:28 +0200 | [diff] [blame] | 1668 | } |
Willy Tarreau | 898529b | 2016-01-06 18:07:04 +0100 | [diff] [blame] | 1669 | ptr++; |
Thierry FOURNIER | ddea626 | 2015-05-28 16:00:28 +0200 | [diff] [blame] | 1670 | str++; |
| 1671 | } |
| 1672 | |
Willy Tarreau | b631c29 | 2016-01-08 10:04:08 +0100 | [diff] [blame] | 1673 | if (quote) |
| 1674 | *ptr++ = '"'; |
Thierry FOURNIER | ddea626 | 2015-05-28 16:00:28 +0200 | [diff] [blame] | 1675 | |
Willy Tarreau | 898529b | 2016-01-06 18:07:04 +0100 | [diff] [blame] | 1676 | *ptr = '\0'; |
| 1677 | output->len = ptr - output->str; |
| 1678 | return out; |
Thierry FOURNIER | ddea626 | 2015-05-28 16:00:28 +0200 | [diff] [blame] | 1679 | } |
| 1680 | |
Willy Tarreau | bf9c2fc | 2011-05-31 18:06:18 +0200 | [diff] [blame] | 1681 | /* Decode an URL-encoded string in-place. The resulting string might |
| 1682 | * be shorter. If some forbidden characters are found, the conversion is |
Thierry FOURNIER | 5068d96 | 2013-10-04 16:27:27 +0200 | [diff] [blame] | 1683 | * aborted, the string is truncated before the issue and a negative value is |
| 1684 | * returned, otherwise the operation returns the length of the decoded string. |
Willy Tarreau | bf9c2fc | 2011-05-31 18:06:18 +0200 | [diff] [blame] | 1685 | */ |
| 1686 | int url_decode(char *string) |
| 1687 | { |
| 1688 | char *in, *out; |
Thierry FOURNIER | 5068d96 | 2013-10-04 16:27:27 +0200 | [diff] [blame] | 1689 | int ret = -1; |
Willy Tarreau | bf9c2fc | 2011-05-31 18:06:18 +0200 | [diff] [blame] | 1690 | |
| 1691 | in = string; |
| 1692 | out = string; |
| 1693 | while (*in) { |
| 1694 | switch (*in) { |
| 1695 | case '+' : |
| 1696 | *out++ = ' '; |
| 1697 | break; |
| 1698 | case '%' : |
| 1699 | if (!ishex(in[1]) || !ishex(in[2])) |
| 1700 | goto end; |
| 1701 | *out++ = (hex2i(in[1]) << 4) + hex2i(in[2]); |
| 1702 | in += 2; |
| 1703 | break; |
| 1704 | default: |
| 1705 | *out++ = *in; |
| 1706 | break; |
| 1707 | } |
| 1708 | in++; |
| 1709 | } |
Thierry FOURNIER | 5068d96 | 2013-10-04 16:27:27 +0200 | [diff] [blame] | 1710 | ret = out - string; /* success */ |
Willy Tarreau | bf9c2fc | 2011-05-31 18:06:18 +0200 | [diff] [blame] | 1711 | end: |
| 1712 | *out = 0; |
| 1713 | return ret; |
| 1714 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1715 | |
Willy Tarreau | 6911fa4 | 2007-03-04 18:06:08 +0100 | [diff] [blame] | 1716 | unsigned int str2ui(const char *s) |
| 1717 | { |
| 1718 | return __str2ui(s); |
| 1719 | } |
| 1720 | |
| 1721 | unsigned int str2uic(const char *s) |
| 1722 | { |
| 1723 | return __str2uic(s); |
| 1724 | } |
| 1725 | |
| 1726 | unsigned int strl2ui(const char *s, int len) |
| 1727 | { |
| 1728 | return __strl2ui(s, len); |
| 1729 | } |
| 1730 | |
| 1731 | unsigned int strl2uic(const char *s, int len) |
| 1732 | { |
| 1733 | return __strl2uic(s, len); |
| 1734 | } |
| 1735 | |
Willy Tarreau | 4ec83cd | 2010-10-15 23:19:55 +0200 | [diff] [blame] | 1736 | unsigned int read_uint(const char **s, const char *end) |
| 1737 | { |
| 1738 | return __read_uint(s, end); |
| 1739 | } |
| 1740 | |
Thierry FOURNIER | 763a5d8 | 2015-07-06 23:09:52 +0200 | [diff] [blame] | 1741 | /* This function reads an unsigned integer from the string pointed to by <s> and |
| 1742 | * returns it. The <s> pointer is adjusted to point to the first unread char. The |
| 1743 | * function automatically stops at <end>. If the number overflows, the 2^64-1 |
| 1744 | * value is returned. |
| 1745 | */ |
| 1746 | unsigned long long int read_uint64(const char **s, const char *end) |
| 1747 | { |
| 1748 | const char *ptr = *s; |
| 1749 | unsigned long long int i = 0, tmp; |
| 1750 | unsigned int j; |
| 1751 | |
| 1752 | while (ptr < end) { |
| 1753 | |
| 1754 | /* read next char */ |
| 1755 | j = *ptr - '0'; |
| 1756 | if (j > 9) |
| 1757 | goto read_uint64_end; |
| 1758 | |
| 1759 | /* add char to the number and check overflow. */ |
| 1760 | tmp = i * 10; |
| 1761 | if (tmp / 10 != i) { |
| 1762 | i = ULLONG_MAX; |
| 1763 | goto read_uint64_eat; |
| 1764 | } |
| 1765 | if (ULLONG_MAX - tmp < j) { |
| 1766 | i = ULLONG_MAX; |
| 1767 | goto read_uint64_eat; |
| 1768 | } |
| 1769 | i = tmp + j; |
| 1770 | ptr++; |
| 1771 | } |
| 1772 | read_uint64_eat: |
| 1773 | /* eat each numeric char */ |
| 1774 | while (ptr < end) { |
| 1775 | if ((unsigned int)(*ptr - '0') > 9) |
| 1776 | break; |
| 1777 | ptr++; |
| 1778 | } |
| 1779 | read_uint64_end: |
| 1780 | *s = ptr; |
| 1781 | return i; |
| 1782 | } |
| 1783 | |
| 1784 | /* This function reads an integer from the string pointed to by <s> and returns |
| 1785 | * it. The <s> pointer is adjusted to point to the first unread char. The function |
| 1786 | * automatically stops at <end>. Il the number is bigger than 2^63-2, the 2^63-1 |
| 1787 | * value is returned. If the number is lowest than -2^63-1, the -2^63 value is |
| 1788 | * returned. |
| 1789 | */ |
| 1790 | long long int read_int64(const char **s, const char *end) |
| 1791 | { |
| 1792 | unsigned long long int i = 0; |
| 1793 | int neg = 0; |
| 1794 | |
| 1795 | /* Look for minus char. */ |
| 1796 | if (**s == '-') { |
| 1797 | neg = 1; |
| 1798 | (*s)++; |
| 1799 | } |
| 1800 | else if (**s == '+') |
| 1801 | (*s)++; |
| 1802 | |
| 1803 | /* convert as positive number. */ |
| 1804 | i = read_uint64(s, end); |
| 1805 | |
| 1806 | if (neg) { |
| 1807 | if (i > 0x8000000000000000ULL) |
| 1808 | return LLONG_MIN; |
| 1809 | return -i; |
| 1810 | } |
| 1811 | if (i > 0x7fffffffffffffffULL) |
| 1812 | return LLONG_MAX; |
| 1813 | return i; |
| 1814 | } |
| 1815 | |
Willy Tarreau | 6911fa4 | 2007-03-04 18:06:08 +0100 | [diff] [blame] | 1816 | /* This one is 7 times faster than strtol() on athlon with checks. |
| 1817 | * It returns the value of the number composed of all valid digits read, |
| 1818 | * and can process negative numbers too. |
| 1819 | */ |
| 1820 | int strl2ic(const char *s, int len) |
| 1821 | { |
| 1822 | int i = 0; |
Willy Tarreau | 3f0c976 | 2007-10-25 09:42:24 +0200 | [diff] [blame] | 1823 | int j, k; |
Willy Tarreau | 6911fa4 | 2007-03-04 18:06:08 +0100 | [diff] [blame] | 1824 | |
| 1825 | if (len > 0) { |
| 1826 | if (*s != '-') { |
| 1827 | /* positive number */ |
| 1828 | while (len-- > 0) { |
| 1829 | j = (*s++) - '0'; |
Willy Tarreau | 3f0c976 | 2007-10-25 09:42:24 +0200 | [diff] [blame] | 1830 | k = i * 10; |
Willy Tarreau | 6911fa4 | 2007-03-04 18:06:08 +0100 | [diff] [blame] | 1831 | if (j > 9) |
| 1832 | break; |
Willy Tarreau | 3f0c976 | 2007-10-25 09:42:24 +0200 | [diff] [blame] | 1833 | i = k + j; |
Willy Tarreau | 6911fa4 | 2007-03-04 18:06:08 +0100 | [diff] [blame] | 1834 | } |
| 1835 | } else { |
| 1836 | /* negative number */ |
| 1837 | s++; |
| 1838 | while (--len > 0) { |
| 1839 | j = (*s++) - '0'; |
Willy Tarreau | 3f0c976 | 2007-10-25 09:42:24 +0200 | [diff] [blame] | 1840 | k = i * 10; |
Willy Tarreau | 6911fa4 | 2007-03-04 18:06:08 +0100 | [diff] [blame] | 1841 | if (j > 9) |
| 1842 | break; |
Willy Tarreau | 3f0c976 | 2007-10-25 09:42:24 +0200 | [diff] [blame] | 1843 | i = k - j; |
Willy Tarreau | 6911fa4 | 2007-03-04 18:06:08 +0100 | [diff] [blame] | 1844 | } |
| 1845 | } |
| 1846 | } |
| 1847 | return i; |
| 1848 | } |
| 1849 | |
| 1850 | |
| 1851 | /* This function reads exactly <len> chars from <s> and converts them to a |
| 1852 | * signed integer which it stores into <ret>. It accurately detects any error |
| 1853 | * (truncated string, invalid chars, overflows). It is meant to be used in |
| 1854 | * applications designed for hostile environments. It returns zero when the |
| 1855 | * number has successfully been converted, non-zero otherwise. When an error |
| 1856 | * is returned, the <ret> value is left untouched. It is yet 5 to 40 times |
| 1857 | * faster than strtol(). |
| 1858 | */ |
| 1859 | int strl2irc(const char *s, int len, int *ret) |
| 1860 | { |
| 1861 | int i = 0; |
| 1862 | int j; |
| 1863 | |
| 1864 | if (!len) |
| 1865 | return 1; |
| 1866 | |
| 1867 | if (*s != '-') { |
| 1868 | /* positive number */ |
| 1869 | while (len-- > 0) { |
| 1870 | j = (*s++) - '0'; |
| 1871 | if (j > 9) return 1; /* invalid char */ |
| 1872 | if (i > INT_MAX / 10) return 1; /* check for multiply overflow */ |
| 1873 | i = i * 10; |
| 1874 | if (i + j < i) return 1; /* check for addition overflow */ |
| 1875 | i = i + j; |
| 1876 | } |
| 1877 | } else { |
| 1878 | /* negative number */ |
| 1879 | s++; |
| 1880 | while (--len > 0) { |
| 1881 | j = (*s++) - '0'; |
| 1882 | if (j > 9) return 1; /* invalid char */ |
| 1883 | if (i < INT_MIN / 10) return 1; /* check for multiply overflow */ |
| 1884 | i = i * 10; |
| 1885 | if (i - j > i) return 1; /* check for subtract overflow */ |
| 1886 | i = i - j; |
| 1887 | } |
| 1888 | } |
| 1889 | *ret = i; |
| 1890 | return 0; |
| 1891 | } |
| 1892 | |
| 1893 | |
| 1894 | /* This function reads exactly <len> chars from <s> and converts them to a |
| 1895 | * signed integer which it stores into <ret>. It accurately detects any error |
| 1896 | * (truncated string, invalid chars, overflows). It is meant to be used in |
| 1897 | * applications designed for hostile environments. It returns zero when the |
| 1898 | * number has successfully been converted, non-zero otherwise. When an error |
| 1899 | * is returned, the <ret> value is left untouched. It is about 3 times slower |
| 1900 | * than str2irc(). |
| 1901 | */ |
Willy Tarreau | 6911fa4 | 2007-03-04 18:06:08 +0100 | [diff] [blame] | 1902 | |
| 1903 | int strl2llrc(const char *s, int len, long long *ret) |
| 1904 | { |
| 1905 | long long i = 0; |
| 1906 | int j; |
| 1907 | |
| 1908 | if (!len) |
| 1909 | return 1; |
| 1910 | |
| 1911 | if (*s != '-') { |
| 1912 | /* positive number */ |
| 1913 | while (len-- > 0) { |
| 1914 | j = (*s++) - '0'; |
| 1915 | if (j > 9) return 1; /* invalid char */ |
| 1916 | if (i > LLONG_MAX / 10LL) return 1; /* check for multiply overflow */ |
| 1917 | i = i * 10LL; |
| 1918 | if (i + j < i) return 1; /* check for addition overflow */ |
| 1919 | i = i + j; |
| 1920 | } |
| 1921 | } else { |
| 1922 | /* negative number */ |
| 1923 | s++; |
| 1924 | while (--len > 0) { |
| 1925 | j = (*s++) - '0'; |
| 1926 | if (j > 9) return 1; /* invalid char */ |
| 1927 | if (i < LLONG_MIN / 10LL) return 1; /* check for multiply overflow */ |
| 1928 | i = i * 10LL; |
| 1929 | if (i - j > i) return 1; /* check for subtract overflow */ |
| 1930 | i = i - j; |
| 1931 | } |
| 1932 | } |
| 1933 | *ret = i; |
| 1934 | return 0; |
| 1935 | } |
| 1936 | |
Thierry FOURNIER | 511e947 | 2014-01-23 17:40:34 +0100 | [diff] [blame] | 1937 | /* This function is used with pat_parse_dotted_ver(). It converts a string |
| 1938 | * composed by two number separated by a dot. Each part must contain in 16 bits |
| 1939 | * because internally they will be represented as a 32-bit quantity stored in |
| 1940 | * a 64-bit integer. It returns zero when the number has successfully been |
| 1941 | * converted, non-zero otherwise. When an error is returned, the <ret> value |
| 1942 | * is left untouched. |
| 1943 | * |
| 1944 | * "1.3" -> 0x0000000000010003 |
| 1945 | * "65535.65535" -> 0x00000000ffffffff |
| 1946 | */ |
| 1947 | int strl2llrc_dotted(const char *text, int len, long long *ret) |
| 1948 | { |
| 1949 | const char *end = &text[len]; |
| 1950 | const char *p; |
| 1951 | long long major, minor; |
| 1952 | |
| 1953 | /* Look for dot. */ |
| 1954 | for (p = text; p < end; p++) |
| 1955 | if (*p == '.') |
| 1956 | break; |
| 1957 | |
| 1958 | /* Convert major. */ |
| 1959 | if (strl2llrc(text, p - text, &major) != 0) |
| 1960 | return 1; |
| 1961 | |
| 1962 | /* Check major. */ |
| 1963 | if (major >= 65536) |
| 1964 | return 1; |
| 1965 | |
| 1966 | /* Convert minor. */ |
| 1967 | minor = 0; |
| 1968 | if (p < end) |
| 1969 | if (strl2llrc(p + 1, end - (p + 1), &minor) != 0) |
| 1970 | return 1; |
| 1971 | |
| 1972 | /* Check minor. */ |
| 1973 | if (minor >= 65536) |
| 1974 | return 1; |
| 1975 | |
| 1976 | /* Compose value. */ |
| 1977 | *ret = (major << 16) | (minor & 0xffff); |
| 1978 | return 0; |
| 1979 | } |
| 1980 | |
Willy Tarreau | a0d37b6 | 2007-12-02 22:00:35 +0100 | [diff] [blame] | 1981 | /* This function parses a time value optionally followed by a unit suffix among |
| 1982 | * "d", "h", "m", "s", "ms" or "us". It converts the value into the unit |
| 1983 | * expected by the caller. The computation does its best to avoid overflows. |
| 1984 | * The value is returned in <ret> if everything is fine, and a NULL is returned |
| 1985 | * by the function. In case of error, a pointer to the error is returned and |
| 1986 | * <ret> is left untouched. Values are automatically rounded up when needed. |
| 1987 | */ |
| 1988 | const char *parse_time_err(const char *text, unsigned *ret, unsigned unit_flags) |
| 1989 | { |
| 1990 | unsigned imult, idiv; |
| 1991 | unsigned omult, odiv; |
| 1992 | unsigned value; |
| 1993 | |
| 1994 | omult = odiv = 1; |
| 1995 | |
| 1996 | switch (unit_flags & TIME_UNIT_MASK) { |
| 1997 | case TIME_UNIT_US: omult = 1000000; break; |
| 1998 | case TIME_UNIT_MS: omult = 1000; break; |
| 1999 | case TIME_UNIT_S: break; |
| 2000 | case TIME_UNIT_MIN: odiv = 60; break; |
| 2001 | case TIME_UNIT_HOUR: odiv = 3600; break; |
| 2002 | case TIME_UNIT_DAY: odiv = 86400; break; |
| 2003 | default: break; |
| 2004 | } |
| 2005 | |
| 2006 | value = 0; |
| 2007 | |
| 2008 | while (1) { |
| 2009 | unsigned int j; |
| 2010 | |
| 2011 | j = *text - '0'; |
| 2012 | if (j > 9) |
| 2013 | break; |
| 2014 | text++; |
| 2015 | value *= 10; |
| 2016 | value += j; |
| 2017 | } |
| 2018 | |
| 2019 | imult = idiv = 1; |
| 2020 | switch (*text) { |
| 2021 | case '\0': /* no unit = default unit */ |
| 2022 | imult = omult = idiv = odiv = 1; |
| 2023 | break; |
| 2024 | case 's': /* second = unscaled unit */ |
| 2025 | break; |
| 2026 | case 'u': /* microsecond : "us" */ |
| 2027 | if (text[1] == 's') { |
| 2028 | idiv = 1000000; |
| 2029 | text++; |
| 2030 | } |
| 2031 | break; |
| 2032 | case 'm': /* millisecond : "ms" or minute: "m" */ |
| 2033 | if (text[1] == 's') { |
| 2034 | idiv = 1000; |
| 2035 | text++; |
| 2036 | } else |
| 2037 | imult = 60; |
| 2038 | break; |
| 2039 | case 'h': /* hour : "h" */ |
| 2040 | imult = 3600; |
| 2041 | break; |
| 2042 | case 'd': /* day : "d" */ |
| 2043 | imult = 86400; |
| 2044 | break; |
| 2045 | default: |
| 2046 | return text; |
| 2047 | break; |
| 2048 | } |
| 2049 | |
| 2050 | if (omult % idiv == 0) { omult /= idiv; idiv = 1; } |
| 2051 | if (idiv % omult == 0) { idiv /= omult; omult = 1; } |
| 2052 | if (imult % odiv == 0) { imult /= odiv; odiv = 1; } |
| 2053 | if (odiv % imult == 0) { odiv /= imult; imult = 1; } |
| 2054 | |
| 2055 | value = (value * (imult * omult) + (idiv * odiv - 1)) / (idiv * odiv); |
| 2056 | *ret = value; |
| 2057 | return NULL; |
| 2058 | } |
Willy Tarreau | 6911fa4 | 2007-03-04 18:06:08 +0100 | [diff] [blame] | 2059 | |
Emeric Brun | 39132b2 | 2010-01-04 14:57:24 +0100 | [diff] [blame] | 2060 | /* this function converts the string starting at <text> to an unsigned int |
| 2061 | * stored in <ret>. If an error is detected, the pointer to the unexpected |
| 2062 | * character is returned. If the conversio is succesful, NULL is returned. |
| 2063 | */ |
| 2064 | const char *parse_size_err(const char *text, unsigned *ret) { |
| 2065 | unsigned value = 0; |
| 2066 | |
| 2067 | while (1) { |
| 2068 | unsigned int j; |
| 2069 | |
| 2070 | j = *text - '0'; |
| 2071 | if (j > 9) |
| 2072 | break; |
| 2073 | if (value > ~0U / 10) |
| 2074 | return text; |
| 2075 | value *= 10; |
| 2076 | if (value > (value + j)) |
| 2077 | return text; |
| 2078 | value += j; |
| 2079 | text++; |
| 2080 | } |
| 2081 | |
| 2082 | switch (*text) { |
| 2083 | case '\0': |
| 2084 | break; |
| 2085 | case 'K': |
| 2086 | case 'k': |
| 2087 | if (value > ~0U >> 10) |
| 2088 | return text; |
| 2089 | value = value << 10; |
| 2090 | break; |
| 2091 | case 'M': |
| 2092 | case 'm': |
| 2093 | if (value > ~0U >> 20) |
| 2094 | return text; |
| 2095 | value = value << 20; |
| 2096 | break; |
| 2097 | case 'G': |
| 2098 | case 'g': |
| 2099 | if (value > ~0U >> 30) |
| 2100 | return text; |
| 2101 | value = value << 30; |
| 2102 | break; |
| 2103 | default: |
| 2104 | return text; |
| 2105 | } |
| 2106 | |
Godbach | 58048a2 | 2015-01-28 17:36:16 +0800 | [diff] [blame] | 2107 | if (*text != '\0' && *++text != '\0') |
| 2108 | return text; |
| 2109 | |
Emeric Brun | 39132b2 | 2010-01-04 14:57:24 +0100 | [diff] [blame] | 2110 | *ret = value; |
| 2111 | return NULL; |
| 2112 | } |
| 2113 | |
Willy Tarreau | 126d406 | 2013-12-03 17:50:47 +0100 | [diff] [blame] | 2114 | /* |
| 2115 | * Parse binary string written in hexadecimal (source) and store the decoded |
| 2116 | * result into binstr and set binstrlen to the lengh of binstr. Memory for |
| 2117 | * binstr is allocated by the function. In case of error, returns 0 with an |
Thierry FOURNIER | ee330af | 2014-01-21 11:36:14 +0100 | [diff] [blame] | 2118 | * error message in err. In succes case, it returns the consumed length. |
Willy Tarreau | 126d406 | 2013-12-03 17:50:47 +0100 | [diff] [blame] | 2119 | */ |
| 2120 | int parse_binary(const char *source, char **binstr, int *binstrlen, char **err) |
| 2121 | { |
| 2122 | int len; |
| 2123 | const char *p = source; |
| 2124 | int i,j; |
Thierry FOURNIER | 9645d42 | 2013-12-06 19:59:28 +0100 | [diff] [blame] | 2125 | int alloc; |
Willy Tarreau | 126d406 | 2013-12-03 17:50:47 +0100 | [diff] [blame] | 2126 | |
| 2127 | len = strlen(source); |
| 2128 | if (len % 2) { |
| 2129 | memprintf(err, "an even number of hex digit is expected"); |
| 2130 | return 0; |
| 2131 | } |
| 2132 | |
| 2133 | len = len >> 1; |
Thierry FOURNIER | 9645d42 | 2013-12-06 19:59:28 +0100 | [diff] [blame] | 2134 | |
Willy Tarreau | 126d406 | 2013-12-03 17:50:47 +0100 | [diff] [blame] | 2135 | if (!*binstr) { |
Thierry FOURNIER | 9645d42 | 2013-12-06 19:59:28 +0100 | [diff] [blame] | 2136 | *binstr = calloc(len, sizeof(char)); |
| 2137 | if (!*binstr) { |
| 2138 | memprintf(err, "out of memory while loading string pattern"); |
| 2139 | return 0; |
| 2140 | } |
| 2141 | alloc = 1; |
Willy Tarreau | 126d406 | 2013-12-03 17:50:47 +0100 | [diff] [blame] | 2142 | } |
Thierry FOURNIER | 9645d42 | 2013-12-06 19:59:28 +0100 | [diff] [blame] | 2143 | else { |
| 2144 | if (*binstrlen < len) { |
| 2145 | memprintf(err, "no space avalaible in the buffer. expect %d, provides %d", |
| 2146 | len, *binstrlen); |
| 2147 | return 0; |
| 2148 | } |
| 2149 | alloc = 0; |
| 2150 | } |
| 2151 | *binstrlen = len; |
Willy Tarreau | 126d406 | 2013-12-03 17:50:47 +0100 | [diff] [blame] | 2152 | |
| 2153 | i = j = 0; |
| 2154 | while (j < len) { |
| 2155 | if (!ishex(p[i++])) |
| 2156 | goto bad_input; |
| 2157 | if (!ishex(p[i++])) |
| 2158 | goto bad_input; |
| 2159 | (*binstr)[j++] = (hex2i(p[i-2]) << 4) + hex2i(p[i-1]); |
| 2160 | } |
Thierry FOURNIER | ee330af | 2014-01-21 11:36:14 +0100 | [diff] [blame] | 2161 | return len << 1; |
Willy Tarreau | 126d406 | 2013-12-03 17:50:47 +0100 | [diff] [blame] | 2162 | |
| 2163 | bad_input: |
| 2164 | memprintf(err, "an hex digit is expected (found '%c')", p[i-1]); |
Andreas Seltenreich | 93f91c3 | 2016-03-03 20:40:37 +0100 | [diff] [blame] | 2165 | if (alloc) { |
| 2166 | free(*binstr); |
| 2167 | *binstr = NULL; |
| 2168 | } |
Willy Tarreau | 126d406 | 2013-12-03 17:50:47 +0100 | [diff] [blame] | 2169 | return 0; |
| 2170 | } |
| 2171 | |
Willy Tarreau | 946ba59 | 2009-05-10 15:41:18 +0200 | [diff] [blame] | 2172 | /* copies at most <n> characters from <src> and always terminates with '\0' */ |
| 2173 | char *my_strndup(const char *src, int n) |
| 2174 | { |
| 2175 | int len = 0; |
| 2176 | char *ret; |
| 2177 | |
| 2178 | while (len < n && src[len]) |
| 2179 | len++; |
| 2180 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 2181 | ret = malloc(len + 1); |
Willy Tarreau | 946ba59 | 2009-05-10 15:41:18 +0200 | [diff] [blame] | 2182 | if (!ret) |
| 2183 | return ret; |
| 2184 | memcpy(ret, src, len); |
| 2185 | ret[len] = '\0'; |
| 2186 | return ret; |
| 2187 | } |
| 2188 | |
Baptiste Assmann | bb77c8e | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2189 | /* |
| 2190 | * search needle in haystack |
| 2191 | * returns the pointer if found, returns NULL otherwise |
| 2192 | */ |
| 2193 | const void *my_memmem(const void *haystack, size_t haystacklen, const void *needle, size_t needlelen) |
| 2194 | { |
| 2195 | const void *c = NULL; |
| 2196 | unsigned char f; |
| 2197 | |
| 2198 | if ((haystack == NULL) || (needle == NULL) || (haystacklen < needlelen)) |
| 2199 | return NULL; |
| 2200 | |
| 2201 | f = *(char *)needle; |
| 2202 | c = haystack; |
| 2203 | while ((c = memchr(c, f, haystacklen - (c - haystack))) != NULL) { |
| 2204 | if ((haystacklen - (c - haystack)) < needlelen) |
| 2205 | return NULL; |
| 2206 | |
| 2207 | if (memcmp(c, needle, needlelen) == 0) |
| 2208 | return c; |
| 2209 | ++c; |
| 2210 | } |
| 2211 | return NULL; |
| 2212 | } |
| 2213 | |
Willy Tarreau | 482b00d | 2009-10-04 22:48:42 +0200 | [diff] [blame] | 2214 | /* This function returns the first unused key greater than or equal to <key> in |
| 2215 | * ID tree <root>. Zero is returned if no place is found. |
| 2216 | */ |
| 2217 | unsigned int get_next_id(struct eb_root *root, unsigned int key) |
| 2218 | { |
| 2219 | struct eb32_node *used; |
| 2220 | |
| 2221 | do { |
| 2222 | used = eb32_lookup_ge(root, key); |
| 2223 | if (!used || used->key > key) |
| 2224 | return key; /* key is available */ |
| 2225 | key++; |
| 2226 | } while (key); |
| 2227 | return key; |
| 2228 | } |
| 2229 | |
Willy Tarreau | 348238b | 2010-01-18 15:05:57 +0100 | [diff] [blame] | 2230 | /* This function compares a sample word possibly followed by blanks to another |
| 2231 | * clean word. The compare is case-insensitive. 1 is returned if both are equal, |
| 2232 | * otherwise zero. This intends to be used when checking HTTP headers for some |
| 2233 | * values. Note that it validates a word followed only by blanks but does not |
| 2234 | * validate a word followed by blanks then other chars. |
| 2235 | */ |
| 2236 | int word_match(const char *sample, int slen, const char *word, int wlen) |
| 2237 | { |
| 2238 | if (slen < wlen) |
| 2239 | return 0; |
| 2240 | |
| 2241 | while (wlen) { |
| 2242 | char c = *sample ^ *word; |
| 2243 | if (c && c != ('A' ^ 'a')) |
| 2244 | return 0; |
| 2245 | sample++; |
| 2246 | word++; |
| 2247 | slen--; |
| 2248 | wlen--; |
| 2249 | } |
| 2250 | |
| 2251 | while (slen) { |
| 2252 | if (*sample != ' ' && *sample != '\t') |
| 2253 | return 0; |
| 2254 | sample++; |
| 2255 | slen--; |
| 2256 | } |
| 2257 | return 1; |
| 2258 | } |
Willy Tarreau | 482b00d | 2009-10-04 22:48:42 +0200 | [diff] [blame] | 2259 | |
Willy Tarreau | d54bbdc | 2009-09-07 11:00:31 +0200 | [diff] [blame] | 2260 | /* Converts any text-formatted IPv4 address to a host-order IPv4 address. It |
| 2261 | * is particularly fast because it avoids expensive operations such as |
| 2262 | * multiplies, which are optimized away at the end. It requires a properly |
| 2263 | * formated address though (3 points). |
| 2264 | */ |
| 2265 | unsigned int inetaddr_host(const char *text) |
| 2266 | { |
| 2267 | const unsigned int ascii_zero = ('0' << 24) | ('0' << 16) | ('0' << 8) | '0'; |
| 2268 | register unsigned int dig100, dig10, dig1; |
| 2269 | int s; |
| 2270 | const char *p, *d; |
| 2271 | |
| 2272 | dig1 = dig10 = dig100 = ascii_zero; |
| 2273 | s = 24; |
| 2274 | |
| 2275 | p = text; |
| 2276 | while (1) { |
| 2277 | if (((unsigned)(*p - '0')) <= 9) { |
| 2278 | p++; |
| 2279 | continue; |
| 2280 | } |
| 2281 | |
| 2282 | /* here, we have a complete byte between <text> and <p> (exclusive) */ |
| 2283 | if (p == text) |
| 2284 | goto end; |
| 2285 | |
| 2286 | d = p - 1; |
| 2287 | dig1 |= (unsigned int)(*d << s); |
| 2288 | if (d == text) |
| 2289 | goto end; |
| 2290 | |
| 2291 | d--; |
| 2292 | dig10 |= (unsigned int)(*d << s); |
| 2293 | if (d == text) |
| 2294 | goto end; |
| 2295 | |
| 2296 | d--; |
| 2297 | dig100 |= (unsigned int)(*d << s); |
| 2298 | end: |
| 2299 | if (!s || *p != '.') |
| 2300 | break; |
| 2301 | |
| 2302 | s -= 8; |
| 2303 | text = ++p; |
| 2304 | } |
| 2305 | |
| 2306 | dig100 -= ascii_zero; |
| 2307 | dig10 -= ascii_zero; |
| 2308 | dig1 -= ascii_zero; |
| 2309 | return ((dig100 * 10) + dig10) * 10 + dig1; |
| 2310 | } |
| 2311 | |
| 2312 | /* |
| 2313 | * Idem except the first unparsed character has to be passed in <stop>. |
| 2314 | */ |
| 2315 | unsigned int inetaddr_host_lim(const char *text, const char *stop) |
| 2316 | { |
| 2317 | const unsigned int ascii_zero = ('0' << 24) | ('0' << 16) | ('0' << 8) | '0'; |
| 2318 | register unsigned int dig100, dig10, dig1; |
| 2319 | int s; |
| 2320 | const char *p, *d; |
| 2321 | |
| 2322 | dig1 = dig10 = dig100 = ascii_zero; |
| 2323 | s = 24; |
| 2324 | |
| 2325 | p = text; |
| 2326 | while (1) { |
| 2327 | if (((unsigned)(*p - '0')) <= 9 && p < stop) { |
| 2328 | p++; |
| 2329 | continue; |
| 2330 | } |
| 2331 | |
| 2332 | /* here, we have a complete byte between <text> and <p> (exclusive) */ |
| 2333 | if (p == text) |
| 2334 | goto end; |
| 2335 | |
| 2336 | d = p - 1; |
| 2337 | dig1 |= (unsigned int)(*d << s); |
| 2338 | if (d == text) |
| 2339 | goto end; |
| 2340 | |
| 2341 | d--; |
| 2342 | dig10 |= (unsigned int)(*d << s); |
| 2343 | if (d == text) |
| 2344 | goto end; |
| 2345 | |
| 2346 | d--; |
| 2347 | dig100 |= (unsigned int)(*d << s); |
| 2348 | end: |
| 2349 | if (!s || p == stop || *p != '.') |
| 2350 | break; |
| 2351 | |
| 2352 | s -= 8; |
| 2353 | text = ++p; |
| 2354 | } |
| 2355 | |
| 2356 | dig100 -= ascii_zero; |
| 2357 | dig10 -= ascii_zero; |
| 2358 | dig1 -= ascii_zero; |
| 2359 | return ((dig100 * 10) + dig10) * 10 + dig1; |
| 2360 | } |
| 2361 | |
| 2362 | /* |
| 2363 | * Idem except the pointer to first unparsed byte is returned into <ret> which |
| 2364 | * must not be NULL. |
| 2365 | */ |
Willy Tarreau | 7417275 | 2010-10-15 23:21:42 +0200 | [diff] [blame] | 2366 | unsigned int inetaddr_host_lim_ret(char *text, char *stop, char **ret) |
Willy Tarreau | d54bbdc | 2009-09-07 11:00:31 +0200 | [diff] [blame] | 2367 | { |
| 2368 | const unsigned int ascii_zero = ('0' << 24) | ('0' << 16) | ('0' << 8) | '0'; |
| 2369 | register unsigned int dig100, dig10, dig1; |
| 2370 | int s; |
Willy Tarreau | 7417275 | 2010-10-15 23:21:42 +0200 | [diff] [blame] | 2371 | char *p, *d; |
Willy Tarreau | d54bbdc | 2009-09-07 11:00:31 +0200 | [diff] [blame] | 2372 | |
| 2373 | dig1 = dig10 = dig100 = ascii_zero; |
| 2374 | s = 24; |
| 2375 | |
| 2376 | p = text; |
| 2377 | while (1) { |
| 2378 | if (((unsigned)(*p - '0')) <= 9 && p < stop) { |
| 2379 | p++; |
| 2380 | continue; |
| 2381 | } |
| 2382 | |
| 2383 | /* here, we have a complete byte between <text> and <p> (exclusive) */ |
| 2384 | if (p == text) |
| 2385 | goto end; |
| 2386 | |
| 2387 | d = p - 1; |
| 2388 | dig1 |= (unsigned int)(*d << s); |
| 2389 | if (d == text) |
| 2390 | goto end; |
| 2391 | |
| 2392 | d--; |
| 2393 | dig10 |= (unsigned int)(*d << s); |
| 2394 | if (d == text) |
| 2395 | goto end; |
| 2396 | |
| 2397 | d--; |
| 2398 | dig100 |= (unsigned int)(*d << s); |
| 2399 | end: |
| 2400 | if (!s || p == stop || *p != '.') |
| 2401 | break; |
| 2402 | |
| 2403 | s -= 8; |
| 2404 | text = ++p; |
| 2405 | } |
| 2406 | |
| 2407 | *ret = p; |
| 2408 | dig100 -= ascii_zero; |
| 2409 | dig10 -= ascii_zero; |
| 2410 | dig1 -= ascii_zero; |
| 2411 | return ((dig100 * 10) + dig10) * 10 + dig1; |
| 2412 | } |
| 2413 | |
Willy Tarreau | f0b38bf | 2010-06-06 13:22:23 +0200 | [diff] [blame] | 2414 | /* Convert a fixed-length string to an IP address. Returns 0 in case of error, |
| 2415 | * or the number of chars read in case of success. Maybe this could be replaced |
| 2416 | * by one of the functions above. Also, apparently this function does not support |
| 2417 | * hosts above 255 and requires exactly 4 octets. |
Willy Tarreau | 075415a | 2013-12-12 11:29:39 +0100 | [diff] [blame] | 2418 | * The destination is only modified on success. |
Willy Tarreau | f0b38bf | 2010-06-06 13:22:23 +0200 | [diff] [blame] | 2419 | */ |
| 2420 | int buf2ip(const char *buf, size_t len, struct in_addr *dst) |
| 2421 | { |
| 2422 | const char *addr; |
| 2423 | int saw_digit, octets, ch; |
| 2424 | u_char tmp[4], *tp; |
| 2425 | const char *cp = buf; |
| 2426 | |
| 2427 | saw_digit = 0; |
| 2428 | octets = 0; |
| 2429 | *(tp = tmp) = 0; |
| 2430 | |
| 2431 | for (addr = buf; addr - buf < len; addr++) { |
| 2432 | unsigned char digit = (ch = *addr) - '0'; |
| 2433 | |
| 2434 | if (digit > 9 && ch != '.') |
| 2435 | break; |
| 2436 | |
| 2437 | if (digit <= 9) { |
| 2438 | u_int new = *tp * 10 + digit; |
| 2439 | |
| 2440 | if (new > 255) |
| 2441 | return 0; |
| 2442 | |
| 2443 | *tp = new; |
| 2444 | |
| 2445 | if (!saw_digit) { |
| 2446 | if (++octets > 4) |
| 2447 | return 0; |
| 2448 | saw_digit = 1; |
| 2449 | } |
| 2450 | } else if (ch == '.' && saw_digit) { |
| 2451 | if (octets == 4) |
| 2452 | return 0; |
| 2453 | |
| 2454 | *++tp = 0; |
| 2455 | saw_digit = 0; |
| 2456 | } else |
| 2457 | return 0; |
| 2458 | } |
| 2459 | |
| 2460 | if (octets < 4) |
| 2461 | return 0; |
| 2462 | |
| 2463 | memcpy(&dst->s_addr, tmp, 4); |
| 2464 | return addr - cp; |
| 2465 | } |
| 2466 | |
Thierry FOURNIER | d559dd8 | 2013-11-22 16:16:59 +0100 | [diff] [blame] | 2467 | /* This function converts the string in <buf> of the len <len> to |
| 2468 | * struct in6_addr <dst> which must be allocated by the caller. |
| 2469 | * This function returns 1 in success case, otherwise zero. |
Willy Tarreau | 075415a | 2013-12-12 11:29:39 +0100 | [diff] [blame] | 2470 | * The destination is only modified on success. |
Thierry FOURNIER | d559dd8 | 2013-11-22 16:16:59 +0100 | [diff] [blame] | 2471 | */ |
Thierry FOURNIER | d559dd8 | 2013-11-22 16:16:59 +0100 | [diff] [blame] | 2472 | int buf2ip6(const char *buf, size_t len, struct in6_addr *dst) |
| 2473 | { |
Thierry FOURNIER | cd65991 | 2013-12-11 12:33:54 +0100 | [diff] [blame] | 2474 | char null_term_ip6[INET6_ADDRSTRLEN + 1]; |
Willy Tarreau | 075415a | 2013-12-12 11:29:39 +0100 | [diff] [blame] | 2475 | struct in6_addr out; |
Thierry FOURNIER | d559dd8 | 2013-11-22 16:16:59 +0100 | [diff] [blame] | 2476 | |
Thierry FOURNIER | cd65991 | 2013-12-11 12:33:54 +0100 | [diff] [blame] | 2477 | if (len > INET6_ADDRSTRLEN) |
Thierry FOURNIER | d559dd8 | 2013-11-22 16:16:59 +0100 | [diff] [blame] | 2478 | return 0; |
| 2479 | |
| 2480 | memcpy(null_term_ip6, buf, len); |
| 2481 | null_term_ip6[len] = '\0'; |
| 2482 | |
Willy Tarreau | 075415a | 2013-12-12 11:29:39 +0100 | [diff] [blame] | 2483 | if (!inet_pton(AF_INET6, null_term_ip6, &out)) |
Thierry FOURNIER | d559dd8 | 2013-11-22 16:16:59 +0100 | [diff] [blame] | 2484 | return 0; |
| 2485 | |
Willy Tarreau | 075415a | 2013-12-12 11:29:39 +0100 | [diff] [blame] | 2486 | *dst = out; |
Thierry FOURNIER | d559dd8 | 2013-11-22 16:16:59 +0100 | [diff] [blame] | 2487 | return 1; |
| 2488 | } |
| 2489 | |
Willy Tarreau | acf9577 | 2010-06-14 19:09:21 +0200 | [diff] [blame] | 2490 | /* To be used to quote config arg positions. Returns the short string at <ptr> |
| 2491 | * surrounded by simple quotes if <ptr> is valid and non-empty, or "end of line" |
| 2492 | * if ptr is NULL or empty. The string is locally allocated. |
| 2493 | */ |
| 2494 | const char *quote_arg(const char *ptr) |
| 2495 | { |
| 2496 | static char val[32]; |
| 2497 | int i; |
| 2498 | |
| 2499 | if (!ptr || !*ptr) |
| 2500 | return "end of line"; |
| 2501 | val[0] = '\''; |
Willy Tarreau | de2dd6b | 2013-01-24 02:14:42 +0100 | [diff] [blame] | 2502 | for (i = 1; i < sizeof(val) - 2 && *ptr; i++) |
Willy Tarreau | acf9577 | 2010-06-14 19:09:21 +0200 | [diff] [blame] | 2503 | val[i] = *ptr++; |
| 2504 | val[i++] = '\''; |
| 2505 | val[i] = '\0'; |
| 2506 | return val; |
| 2507 | } |
| 2508 | |
Willy Tarreau | 5b18020 | 2010-07-18 10:40:48 +0200 | [diff] [blame] | 2509 | /* returns an operator among STD_OP_* for string <str> or < 0 if unknown */ |
| 2510 | int get_std_op(const char *str) |
| 2511 | { |
| 2512 | int ret = -1; |
| 2513 | |
| 2514 | if (*str == 'e' && str[1] == 'q') |
| 2515 | ret = STD_OP_EQ; |
| 2516 | else if (*str == 'n' && str[1] == 'e') |
| 2517 | ret = STD_OP_NE; |
| 2518 | else if (*str == 'l') { |
| 2519 | if (str[1] == 'e') ret = STD_OP_LE; |
| 2520 | else if (str[1] == 't') ret = STD_OP_LT; |
| 2521 | } |
| 2522 | else if (*str == 'g') { |
| 2523 | if (str[1] == 'e') ret = STD_OP_GE; |
| 2524 | else if (str[1] == 't') ret = STD_OP_GT; |
| 2525 | } |
| 2526 | |
| 2527 | if (ret == -1 || str[2] != '\0') |
| 2528 | return -1; |
| 2529 | return ret; |
| 2530 | } |
| 2531 | |
Willy Tarreau | 4c14eaa | 2010-11-24 14:01:45 +0100 | [diff] [blame] | 2532 | /* hash a 32-bit integer to another 32-bit integer */ |
| 2533 | unsigned int full_hash(unsigned int a) |
| 2534 | { |
| 2535 | return __full_hash(a); |
| 2536 | } |
| 2537 | |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 2538 | /* Return non-zero if IPv4 address is part of the network, |
Willy Tarreau | eec1d38 | 2016-07-13 11:59:39 +0200 | [diff] [blame] | 2539 | * otherwise zero. Note that <addr> may not necessarily be aligned |
| 2540 | * while the two other ones must. |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 2541 | */ |
Willy Tarreau | eec1d38 | 2016-07-13 11:59:39 +0200 | [diff] [blame] | 2542 | int in_net_ipv4(const void *addr, const struct in_addr *mask, const struct in_addr *net) |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 2543 | { |
Willy Tarreau | eec1d38 | 2016-07-13 11:59:39 +0200 | [diff] [blame] | 2544 | struct in_addr addr_copy; |
| 2545 | |
| 2546 | memcpy(&addr_copy, addr, sizeof(addr_copy)); |
| 2547 | return((addr_copy.s_addr & mask->s_addr) == (net->s_addr & mask->s_addr)); |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 2548 | } |
| 2549 | |
| 2550 | /* Return non-zero if IPv6 address is part of the network, |
Willy Tarreau | eec1d38 | 2016-07-13 11:59:39 +0200 | [diff] [blame] | 2551 | * otherwise zero. Note that <addr> may not necessarily be aligned |
| 2552 | * while the two other ones must. |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 2553 | */ |
Willy Tarreau | eec1d38 | 2016-07-13 11:59:39 +0200 | [diff] [blame] | 2554 | int in_net_ipv6(const void *addr, const struct in6_addr *mask, const struct in6_addr *net) |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 2555 | { |
| 2556 | int i; |
Willy Tarreau | eec1d38 | 2016-07-13 11:59:39 +0200 | [diff] [blame] | 2557 | struct in6_addr addr_copy; |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 2558 | |
Willy Tarreau | eec1d38 | 2016-07-13 11:59:39 +0200 | [diff] [blame] | 2559 | memcpy(&addr_copy, addr, sizeof(addr_copy)); |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 2560 | for (i = 0; i < sizeof(struct in6_addr) / sizeof(int); i++) |
Willy Tarreau | eec1d38 | 2016-07-13 11:59:39 +0200 | [diff] [blame] | 2561 | if (((((int *)&addr_copy)[i] & ((int *)mask)[i])) != |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 2562 | (((int *)net)[i] & ((int *)mask)[i])) |
| 2563 | return 0; |
| 2564 | return 1; |
| 2565 | } |
| 2566 | |
| 2567 | /* RFC 4291 prefix */ |
| 2568 | const char rfc4291_pfx[] = { 0x00, 0x00, 0x00, 0x00, |
| 2569 | 0x00, 0x00, 0x00, 0x00, |
| 2570 | 0x00, 0x00, 0xFF, 0xFF }; |
| 2571 | |
Thierry FOURNIER | 4a04dc3 | 2013-11-28 16:33:15 +0100 | [diff] [blame] | 2572 | /* Map IPv4 adress on IPv6 address, as specified in RFC 3513. |
| 2573 | * Input and output may overlap. |
| 2574 | */ |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 2575 | void v4tov6(struct in6_addr *sin6_addr, struct in_addr *sin_addr) |
| 2576 | { |
Thierry FOURNIER | 4a04dc3 | 2013-11-28 16:33:15 +0100 | [diff] [blame] | 2577 | struct in_addr tmp_addr; |
| 2578 | |
| 2579 | tmp_addr.s_addr = sin_addr->s_addr; |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 2580 | memcpy(sin6_addr->s6_addr, rfc4291_pfx, sizeof(rfc4291_pfx)); |
Thierry FOURNIER | 4a04dc3 | 2013-11-28 16:33:15 +0100 | [diff] [blame] | 2581 | memcpy(sin6_addr->s6_addr+12, &tmp_addr.s_addr, 4); |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 2582 | } |
| 2583 | |
| 2584 | /* Map IPv6 adress on IPv4 address, as specified in RFC 3513. |
| 2585 | * Return true if conversion is possible and false otherwise. |
| 2586 | */ |
| 2587 | int v6tov4(struct in_addr *sin_addr, struct in6_addr *sin6_addr) |
| 2588 | { |
| 2589 | if (memcmp(sin6_addr->s6_addr, rfc4291_pfx, sizeof(rfc4291_pfx)) == 0) { |
| 2590 | memcpy(&(sin_addr->s_addr), &(sin6_addr->s6_addr[12]), |
| 2591 | sizeof(struct in_addr)); |
| 2592 | return 1; |
| 2593 | } |
| 2594 | |
| 2595 | return 0; |
| 2596 | } |
| 2597 | |
Baptiste Assmann | 08b24cf | 2016-01-23 23:39:12 +0100 | [diff] [blame] | 2598 | /* compare two struct sockaddr_storage and return: |
| 2599 | * 0 (true) if the addr is the same in both |
| 2600 | * 1 (false) if the addr is not the same in both |
| 2601 | * -1 (unable) if one of the addr is not AF_INET* |
| 2602 | */ |
| 2603 | int ipcmp(struct sockaddr_storage *ss1, struct sockaddr_storage *ss2) |
| 2604 | { |
| 2605 | if ((ss1->ss_family != AF_INET) && (ss1->ss_family != AF_INET6)) |
| 2606 | return -1; |
| 2607 | |
| 2608 | if ((ss2->ss_family != AF_INET) && (ss2->ss_family != AF_INET6)) |
| 2609 | return -1; |
| 2610 | |
| 2611 | if (ss1->ss_family != ss2->ss_family) |
| 2612 | return 1; |
| 2613 | |
| 2614 | switch (ss1->ss_family) { |
| 2615 | case AF_INET: |
| 2616 | return memcmp(&((struct sockaddr_in *)ss1)->sin_addr, |
| 2617 | &((struct sockaddr_in *)ss2)->sin_addr, |
| 2618 | sizeof(struct in_addr)) != 0; |
| 2619 | case AF_INET6: |
| 2620 | return memcmp(&((struct sockaddr_in6 *)ss1)->sin6_addr, |
| 2621 | &((struct sockaddr_in6 *)ss2)->sin6_addr, |
| 2622 | sizeof(struct in6_addr)) != 0; |
| 2623 | } |
| 2624 | |
| 2625 | return 1; |
| 2626 | } |
| 2627 | |
Baptiste Assmann | 08396c8 | 2016-01-31 00:27:17 +0100 | [diff] [blame] | 2628 | /* copy IP address from <source> into <dest> |
Willy Tarreau | dc3a9e8 | 2016-11-04 18:47:01 +0100 | [diff] [blame] | 2629 | * The caller must allocate and clear <dest> before calling. |
| 2630 | * The source must be in either AF_INET or AF_INET6 family, or the destination |
| 2631 | * address will be undefined. If the destination address used to hold a port, |
| 2632 | * it is preserved, so that this function can be used to switch to another |
| 2633 | * address family with no risk. Returns a pointer to the destination. |
Baptiste Assmann | 08396c8 | 2016-01-31 00:27:17 +0100 | [diff] [blame] | 2634 | */ |
| 2635 | struct sockaddr_storage *ipcpy(struct sockaddr_storage *source, struct sockaddr_storage *dest) |
| 2636 | { |
Willy Tarreau | dc3a9e8 | 2016-11-04 18:47:01 +0100 | [diff] [blame] | 2637 | int prev_port; |
| 2638 | |
| 2639 | prev_port = get_net_port(dest); |
| 2640 | memset(dest, 0, sizeof(*dest)); |
Baptiste Assmann | 08396c8 | 2016-01-31 00:27:17 +0100 | [diff] [blame] | 2641 | dest->ss_family = source->ss_family; |
| 2642 | |
| 2643 | /* copy new addr and apply it */ |
| 2644 | switch (source->ss_family) { |
| 2645 | case AF_INET: |
| 2646 | ((struct sockaddr_in *)dest)->sin_addr.s_addr = ((struct sockaddr_in *)source)->sin_addr.s_addr; |
Willy Tarreau | dc3a9e8 | 2016-11-04 18:47:01 +0100 | [diff] [blame] | 2647 | ((struct sockaddr_in *)dest)->sin_port = prev_port; |
Baptiste Assmann | 08396c8 | 2016-01-31 00:27:17 +0100 | [diff] [blame] | 2648 | break; |
| 2649 | case AF_INET6: |
| 2650 | memcpy(((struct sockaddr_in6 *)dest)->sin6_addr.s6_addr, ((struct sockaddr_in6 *)source)->sin6_addr.s6_addr, sizeof(struct in6_addr)); |
Willy Tarreau | dc3a9e8 | 2016-11-04 18:47:01 +0100 | [diff] [blame] | 2651 | ((struct sockaddr_in6 *)dest)->sin6_port = prev_port; |
Baptiste Assmann | 08396c8 | 2016-01-31 00:27:17 +0100 | [diff] [blame] | 2652 | break; |
| 2653 | } |
| 2654 | |
| 2655 | return dest; |
| 2656 | } |
| 2657 | |
William Lallemand | 421f5b5 | 2012-02-06 18:15:57 +0100 | [diff] [blame] | 2658 | char *human_time(int t, short hz_div) { |
| 2659 | static char rv[sizeof("24855d23h")+1]; // longest of "23h59m" and "59m59s" |
| 2660 | char *p = rv; |
Willy Tarreau | 761b3d5 | 2014-04-14 14:53:06 +0200 | [diff] [blame] | 2661 | char *end = rv + sizeof(rv); |
William Lallemand | 421f5b5 | 2012-02-06 18:15:57 +0100 | [diff] [blame] | 2662 | int cnt=2; // print two numbers |
| 2663 | |
| 2664 | if (unlikely(t < 0 || hz_div <= 0)) { |
Willy Tarreau | 761b3d5 | 2014-04-14 14:53:06 +0200 | [diff] [blame] | 2665 | snprintf(p, end - p, "?"); |
William Lallemand | 421f5b5 | 2012-02-06 18:15:57 +0100 | [diff] [blame] | 2666 | return rv; |
| 2667 | } |
| 2668 | |
| 2669 | if (unlikely(hz_div > 1)) |
| 2670 | t /= hz_div; |
| 2671 | |
| 2672 | if (t >= DAY) { |
Willy Tarreau | 761b3d5 | 2014-04-14 14:53:06 +0200 | [diff] [blame] | 2673 | p += snprintf(p, end - p, "%dd", t / DAY); |
William Lallemand | 421f5b5 | 2012-02-06 18:15:57 +0100 | [diff] [blame] | 2674 | cnt--; |
| 2675 | } |
| 2676 | |
| 2677 | if (cnt && t % DAY / HOUR) { |
Willy Tarreau | 761b3d5 | 2014-04-14 14:53:06 +0200 | [diff] [blame] | 2678 | p += snprintf(p, end - p, "%dh", t % DAY / HOUR); |
William Lallemand | 421f5b5 | 2012-02-06 18:15:57 +0100 | [diff] [blame] | 2679 | cnt--; |
| 2680 | } |
| 2681 | |
| 2682 | if (cnt && t % HOUR / MINUTE) { |
Willy Tarreau | 761b3d5 | 2014-04-14 14:53:06 +0200 | [diff] [blame] | 2683 | p += snprintf(p, end - p, "%dm", t % HOUR / MINUTE); |
William Lallemand | 421f5b5 | 2012-02-06 18:15:57 +0100 | [diff] [blame] | 2684 | cnt--; |
| 2685 | } |
| 2686 | |
| 2687 | if ((cnt && t % MINUTE) || !t) // also display '0s' |
Willy Tarreau | 761b3d5 | 2014-04-14 14:53:06 +0200 | [diff] [blame] | 2688 | p += snprintf(p, end - p, "%ds", t % MINUTE / SEC); |
William Lallemand | 421f5b5 | 2012-02-06 18:15:57 +0100 | [diff] [blame] | 2689 | |
| 2690 | return rv; |
| 2691 | } |
| 2692 | |
| 2693 | const char *monthname[12] = { |
| 2694 | "Jan", "Feb", "Mar", "Apr", "May", "Jun", |
| 2695 | "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" |
| 2696 | }; |
| 2697 | |
| 2698 | /* date2str_log: write a date in the format : |
| 2699 | * sprintf(str, "%02d/%s/%04d:%02d:%02d:%02d.%03d", |
| 2700 | * tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900, |
| 2701 | * tm.tm_hour, tm.tm_min, tm.tm_sec, (int)date.tv_usec/1000); |
| 2702 | * |
| 2703 | * without using sprintf. return a pointer to the last char written (\0) or |
| 2704 | * NULL if there isn't enough space. |
| 2705 | */ |
| 2706 | char *date2str_log(char *dst, struct tm *tm, struct timeval *date, size_t size) |
| 2707 | { |
| 2708 | |
| 2709 | if (size < 25) /* the size is fixed: 24 chars + \0 */ |
| 2710 | return NULL; |
| 2711 | |
| 2712 | dst = utoa_pad((unsigned int)tm->tm_mday, dst, 3); // day |
| 2713 | *dst++ = '/'; |
| 2714 | memcpy(dst, monthname[tm->tm_mon], 3); // month |
| 2715 | dst += 3; |
| 2716 | *dst++ = '/'; |
| 2717 | dst = utoa_pad((unsigned int)tm->tm_year+1900, dst, 5); // year |
| 2718 | *dst++ = ':'; |
| 2719 | dst = utoa_pad((unsigned int)tm->tm_hour, dst, 3); // hour |
| 2720 | *dst++ = ':'; |
| 2721 | dst = utoa_pad((unsigned int)tm->tm_min, dst, 3); // minutes |
| 2722 | *dst++ = ':'; |
| 2723 | dst = utoa_pad((unsigned int)tm->tm_sec, dst, 3); // secondes |
| 2724 | *dst++ = '.'; |
| 2725 | utoa_pad((unsigned int)(date->tv_usec/1000), dst, 4); // millisecondes |
| 2726 | dst += 3; // only the 3 first digits |
| 2727 | *dst = '\0'; |
| 2728 | |
| 2729 | return dst; |
| 2730 | } |
| 2731 | |
Benoit GARNIER | e2e5bde | 2016-03-27 03:04:16 +0200 | [diff] [blame] | 2732 | /* Base year used to compute leap years */ |
| 2733 | #define TM_YEAR_BASE 1900 |
| 2734 | |
| 2735 | /* Return the difference in seconds between two times (leap seconds are ignored). |
| 2736 | * Retrieved from glibc 2.18 source code. |
| 2737 | */ |
| 2738 | static int my_tm_diff(const struct tm *a, const struct tm *b) |
| 2739 | { |
| 2740 | /* Compute intervening leap days correctly even if year is negative. |
| 2741 | * Take care to avoid int overflow in leap day calculations, |
| 2742 | * but it's OK to assume that A and B are close to each other. |
| 2743 | */ |
| 2744 | int a4 = (a->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (a->tm_year & 3); |
| 2745 | int b4 = (b->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (b->tm_year & 3); |
| 2746 | int a100 = a4 / 25 - (a4 % 25 < 0); |
| 2747 | int b100 = b4 / 25 - (b4 % 25 < 0); |
| 2748 | int a400 = a100 >> 2; |
| 2749 | int b400 = b100 >> 2; |
| 2750 | int intervening_leap_days = (a4 - b4) - (a100 - b100) + (a400 - b400); |
| 2751 | int years = a->tm_year - b->tm_year; |
| 2752 | int days = (365 * years + intervening_leap_days |
| 2753 | + (a->tm_yday - b->tm_yday)); |
| 2754 | return (60 * (60 * (24 * days + (a->tm_hour - b->tm_hour)) |
| 2755 | + (a->tm_min - b->tm_min)) |
| 2756 | + (a->tm_sec - b->tm_sec)); |
| 2757 | } |
| 2758 | |
Benoit GARNIER | b413c2a | 2016-03-27 11:08:03 +0200 | [diff] [blame] | 2759 | /* Return the GMT offset for a specific local time. |
Benoit GARNIER | e2e5bde | 2016-03-27 03:04:16 +0200 | [diff] [blame] | 2760 | * Both t and tm must represent the same time. |
Benoit GARNIER | b413c2a | 2016-03-27 11:08:03 +0200 | [diff] [blame] | 2761 | * The string returned has the same format as returned by strftime(... "%z", tm). |
| 2762 | * Offsets are kept in an internal cache for better performances. |
| 2763 | */ |
Benoit GARNIER | e2e5bde | 2016-03-27 03:04:16 +0200 | [diff] [blame] | 2764 | const char *get_gmt_offset(time_t t, struct tm *tm) |
Benoit GARNIER | b413c2a | 2016-03-27 11:08:03 +0200 | [diff] [blame] | 2765 | { |
| 2766 | /* Cache offsets from GMT (depending on whether DST is active or not) */ |
| 2767 | static char gmt_offsets[2][5+1] = { "", "" }; |
| 2768 | |
Benoit GARNIER | b413c2a | 2016-03-27 11:08:03 +0200 | [diff] [blame] | 2769 | char *gmt_offset; |
Benoit GARNIER | e2e5bde | 2016-03-27 03:04:16 +0200 | [diff] [blame] | 2770 | struct tm tm_gmt; |
| 2771 | int diff; |
| 2772 | int isdst = tm->tm_isdst; |
Benoit GARNIER | b413c2a | 2016-03-27 11:08:03 +0200 | [diff] [blame] | 2773 | |
Benoit GARNIER | e2e5bde | 2016-03-27 03:04:16 +0200 | [diff] [blame] | 2774 | /* Pretend DST not active if its status is unknown */ |
| 2775 | if (isdst < 0) |
| 2776 | isdst = 0; |
Benoit GARNIER | b413c2a | 2016-03-27 11:08:03 +0200 | [diff] [blame] | 2777 | |
Benoit GARNIER | e2e5bde | 2016-03-27 03:04:16 +0200 | [diff] [blame] | 2778 | /* Fetch the offset and initialize it if needed */ |
| 2779 | gmt_offset = gmt_offsets[isdst & 0x01]; |
| 2780 | if (unlikely(!*gmt_offset)) { |
| 2781 | get_gmtime(t, &tm_gmt); |
| 2782 | diff = my_tm_diff(tm, &tm_gmt); |
| 2783 | if (diff < 0) { |
| 2784 | diff = -diff; |
| 2785 | *gmt_offset = '-'; |
| 2786 | } else { |
| 2787 | *gmt_offset = '+'; |
| 2788 | } |
| 2789 | diff /= 60; /* Convert to minutes */ |
| 2790 | snprintf(gmt_offset+1, 4+1, "%02d%02d", diff/60, diff%60); |
| 2791 | } |
Benoit GARNIER | b413c2a | 2016-03-27 11:08:03 +0200 | [diff] [blame] | 2792 | |
| 2793 | return gmt_offset; |
| 2794 | } |
| 2795 | |
William Lallemand | 421f5b5 | 2012-02-06 18:15:57 +0100 | [diff] [blame] | 2796 | /* gmt2str_log: write a date in the format : |
| 2797 | * "%02d/%s/%04d:%02d:%02d:%02d +0000" without using snprintf |
| 2798 | * return a pointer to the last char written (\0) or |
| 2799 | * NULL if there isn't enough space. |
| 2800 | */ |
| 2801 | char *gmt2str_log(char *dst, struct tm *tm, size_t size) |
| 2802 | { |
Yuxans Yao | 4e25b01 | 2012-10-19 10:36:09 +0800 | [diff] [blame] | 2803 | if (size < 27) /* the size is fixed: 26 chars + \0 */ |
William Lallemand | 421f5b5 | 2012-02-06 18:15:57 +0100 | [diff] [blame] | 2804 | return NULL; |
| 2805 | |
| 2806 | dst = utoa_pad((unsigned int)tm->tm_mday, dst, 3); // day |
| 2807 | *dst++ = '/'; |
| 2808 | memcpy(dst, monthname[tm->tm_mon], 3); // month |
| 2809 | dst += 3; |
| 2810 | *dst++ = '/'; |
| 2811 | dst = utoa_pad((unsigned int)tm->tm_year+1900, dst, 5); // year |
| 2812 | *dst++ = ':'; |
| 2813 | dst = utoa_pad((unsigned int)tm->tm_hour, dst, 3); // hour |
| 2814 | *dst++ = ':'; |
| 2815 | dst = utoa_pad((unsigned int)tm->tm_min, dst, 3); // minutes |
| 2816 | *dst++ = ':'; |
| 2817 | dst = utoa_pad((unsigned int)tm->tm_sec, dst, 3); // secondes |
| 2818 | *dst++ = ' '; |
| 2819 | *dst++ = '+'; |
| 2820 | *dst++ = '0'; |
| 2821 | *dst++ = '0'; |
| 2822 | *dst++ = '0'; |
| 2823 | *dst++ = '0'; |
| 2824 | *dst = '\0'; |
| 2825 | |
| 2826 | return dst; |
| 2827 | } |
| 2828 | |
Yuxans Yao | 4e25b01 | 2012-10-19 10:36:09 +0800 | [diff] [blame] | 2829 | /* localdate2str_log: write a date in the format : |
| 2830 | * "%02d/%s/%04d:%02d:%02d:%02d +0000(local timezone)" without using snprintf |
Benoit GARNIER | e2e5bde | 2016-03-27 03:04:16 +0200 | [diff] [blame] | 2831 | * Both t and tm must represent the same time. |
| 2832 | * return a pointer to the last char written (\0) or |
| 2833 | * NULL if there isn't enough space. |
Yuxans Yao | 4e25b01 | 2012-10-19 10:36:09 +0800 | [diff] [blame] | 2834 | */ |
Benoit GARNIER | e2e5bde | 2016-03-27 03:04:16 +0200 | [diff] [blame] | 2835 | char *localdate2str_log(char *dst, time_t t, struct tm *tm, size_t size) |
Yuxans Yao | 4e25b01 | 2012-10-19 10:36:09 +0800 | [diff] [blame] | 2836 | { |
Benoit GARNIER | b413c2a | 2016-03-27 11:08:03 +0200 | [diff] [blame] | 2837 | const char *gmt_offset; |
Yuxans Yao | 4e25b01 | 2012-10-19 10:36:09 +0800 | [diff] [blame] | 2838 | if (size < 27) /* the size is fixed: 26 chars + \0 */ |
| 2839 | return NULL; |
| 2840 | |
Benoit GARNIER | e2e5bde | 2016-03-27 03:04:16 +0200 | [diff] [blame] | 2841 | gmt_offset = get_gmt_offset(t, tm); |
Benoit GARNIER | b413c2a | 2016-03-27 11:08:03 +0200 | [diff] [blame] | 2842 | |
Yuxans Yao | 4e25b01 | 2012-10-19 10:36:09 +0800 | [diff] [blame] | 2843 | dst = utoa_pad((unsigned int)tm->tm_mday, dst, 3); // day |
| 2844 | *dst++ = '/'; |
| 2845 | memcpy(dst, monthname[tm->tm_mon], 3); // month |
| 2846 | dst += 3; |
| 2847 | *dst++ = '/'; |
| 2848 | dst = utoa_pad((unsigned int)tm->tm_year+1900, dst, 5); // year |
| 2849 | *dst++ = ':'; |
| 2850 | dst = utoa_pad((unsigned int)tm->tm_hour, dst, 3); // hour |
| 2851 | *dst++ = ':'; |
| 2852 | dst = utoa_pad((unsigned int)tm->tm_min, dst, 3); // minutes |
| 2853 | *dst++ = ':'; |
| 2854 | dst = utoa_pad((unsigned int)tm->tm_sec, dst, 3); // secondes |
| 2855 | *dst++ = ' '; |
Benoit GARNIER | b413c2a | 2016-03-27 11:08:03 +0200 | [diff] [blame] | 2856 | memcpy(dst, gmt_offset, 5); // Offset from local time to GMT |
Yuxans Yao | 4e25b01 | 2012-10-19 10:36:09 +0800 | [diff] [blame] | 2857 | dst += 5; |
| 2858 | *dst = '\0'; |
| 2859 | |
| 2860 | return dst; |
| 2861 | } |
| 2862 | |
Thierry Fournier | 9312794 | 2016-01-20 18:49:45 +0100 | [diff] [blame] | 2863 | /* This function check a char. It returns true and updates |
| 2864 | * <date> and <len> pointer to the new position if the |
| 2865 | * character is found. |
| 2866 | */ |
| 2867 | static inline int parse_expect_char(const char **date, int *len, char c) |
| 2868 | { |
| 2869 | if (*len < 1 || **date != c) |
| 2870 | return 0; |
| 2871 | (*len)--; |
| 2872 | (*date)++; |
| 2873 | return 1; |
| 2874 | } |
| 2875 | |
| 2876 | /* This function expects a string <str> of len <l>. It return true and updates. |
| 2877 | * <date> and <len> if the string matches, otherwise, it returns false. |
| 2878 | */ |
| 2879 | static inline int parse_strcmp(const char **date, int *len, char *str, int l) |
| 2880 | { |
| 2881 | if (*len < l || strncmp(*date, str, l) != 0) |
| 2882 | return 0; |
| 2883 | (*len) -= l; |
| 2884 | (*date) += l; |
| 2885 | return 1; |
| 2886 | } |
| 2887 | |
| 2888 | /* This macro converts 3 chars name in integer. */ |
| 2889 | #define STR2I3(__a, __b, __c) ((__a) * 65536 + (__b) * 256 + (__c)) |
| 2890 | |
| 2891 | /* day-name = %x4D.6F.6E ; "Mon", case-sensitive |
| 2892 | * / %x54.75.65 ; "Tue", case-sensitive |
| 2893 | * / %x57.65.64 ; "Wed", case-sensitive |
| 2894 | * / %x54.68.75 ; "Thu", case-sensitive |
| 2895 | * / %x46.72.69 ; "Fri", case-sensitive |
| 2896 | * / %x53.61.74 ; "Sat", case-sensitive |
| 2897 | * / %x53.75.6E ; "Sun", case-sensitive |
| 2898 | * |
| 2899 | * This array must be alphabetically sorted |
| 2900 | */ |
| 2901 | static inline int parse_http_dayname(const char **date, int *len, struct tm *tm) |
| 2902 | { |
| 2903 | if (*len < 3) |
| 2904 | return 0; |
| 2905 | switch (STR2I3((*date)[0], (*date)[1], (*date)[2])) { |
| 2906 | case STR2I3('M','o','n'): tm->tm_wday = 1; break; |
| 2907 | case STR2I3('T','u','e'): tm->tm_wday = 2; break; |
| 2908 | case STR2I3('W','e','d'): tm->tm_wday = 3; break; |
| 2909 | case STR2I3('T','h','u'): tm->tm_wday = 4; break; |
| 2910 | case STR2I3('F','r','i'): tm->tm_wday = 5; break; |
| 2911 | case STR2I3('S','a','t'): tm->tm_wday = 6; break; |
| 2912 | case STR2I3('S','u','n'): tm->tm_wday = 7; break; |
| 2913 | default: return 0; |
| 2914 | } |
| 2915 | *len -= 3; |
| 2916 | *date += 3; |
| 2917 | return 1; |
| 2918 | } |
| 2919 | |
| 2920 | /* month = %x4A.61.6E ; "Jan", case-sensitive |
| 2921 | * / %x46.65.62 ; "Feb", case-sensitive |
| 2922 | * / %x4D.61.72 ; "Mar", case-sensitive |
| 2923 | * / %x41.70.72 ; "Apr", case-sensitive |
| 2924 | * / %x4D.61.79 ; "May", case-sensitive |
| 2925 | * / %x4A.75.6E ; "Jun", case-sensitive |
| 2926 | * / %x4A.75.6C ; "Jul", case-sensitive |
| 2927 | * / %x41.75.67 ; "Aug", case-sensitive |
| 2928 | * / %x53.65.70 ; "Sep", case-sensitive |
| 2929 | * / %x4F.63.74 ; "Oct", case-sensitive |
| 2930 | * / %x4E.6F.76 ; "Nov", case-sensitive |
| 2931 | * / %x44.65.63 ; "Dec", case-sensitive |
| 2932 | * |
| 2933 | * This array must be alphabetically sorted |
| 2934 | */ |
| 2935 | static inline int parse_http_monthname(const char **date, int *len, struct tm *tm) |
| 2936 | { |
| 2937 | if (*len < 3) |
| 2938 | return 0; |
| 2939 | switch (STR2I3((*date)[0], (*date)[1], (*date)[2])) { |
| 2940 | case STR2I3('J','a','n'): tm->tm_mon = 0; break; |
| 2941 | case STR2I3('F','e','b'): tm->tm_mon = 1; break; |
| 2942 | case STR2I3('M','a','r'): tm->tm_mon = 2; break; |
| 2943 | case STR2I3('A','p','r'): tm->tm_mon = 3; break; |
| 2944 | case STR2I3('M','a','y'): tm->tm_mon = 4; break; |
| 2945 | case STR2I3('J','u','n'): tm->tm_mon = 5; break; |
| 2946 | case STR2I3('J','u','l'): tm->tm_mon = 6; break; |
| 2947 | case STR2I3('A','u','g'): tm->tm_mon = 7; break; |
| 2948 | case STR2I3('S','e','p'): tm->tm_mon = 8; break; |
| 2949 | case STR2I3('O','c','t'): tm->tm_mon = 9; break; |
| 2950 | case STR2I3('N','o','v'): tm->tm_mon = 10; break; |
| 2951 | case STR2I3('D','e','c'): tm->tm_mon = 11; break; |
| 2952 | default: return 0; |
| 2953 | } |
| 2954 | *len -= 3; |
| 2955 | *date += 3; |
| 2956 | return 1; |
| 2957 | } |
| 2958 | |
| 2959 | /* day-name-l = %x4D.6F.6E.64.61.79 ; "Monday", case-sensitive |
| 2960 | * / %x54.75.65.73.64.61.79 ; "Tuesday", case-sensitive |
| 2961 | * / %x57.65.64.6E.65.73.64.61.79 ; "Wednesday", case-sensitive |
| 2962 | * / %x54.68.75.72.73.64.61.79 ; "Thursday", case-sensitive |
| 2963 | * / %x46.72.69.64.61.79 ; "Friday", case-sensitive |
| 2964 | * / %x53.61.74.75.72.64.61.79 ; "Saturday", case-sensitive |
| 2965 | * / %x53.75.6E.64.61.79 ; "Sunday", case-sensitive |
| 2966 | * |
| 2967 | * This array must be alphabetically sorted |
| 2968 | */ |
| 2969 | static inline int parse_http_ldayname(const char **date, int *len, struct tm *tm) |
| 2970 | { |
| 2971 | if (*len < 6) /* Minimum length. */ |
| 2972 | return 0; |
| 2973 | switch (STR2I3((*date)[0], (*date)[1], (*date)[2])) { |
| 2974 | case STR2I3('M','o','n'): |
| 2975 | RET0_UNLESS(parse_strcmp(date, len, "Monday", 6)); |
| 2976 | tm->tm_wday = 1; |
| 2977 | return 1; |
| 2978 | case STR2I3('T','u','e'): |
| 2979 | RET0_UNLESS(parse_strcmp(date, len, "Tuesday", 7)); |
| 2980 | tm->tm_wday = 2; |
| 2981 | return 1; |
| 2982 | case STR2I3('W','e','d'): |
| 2983 | RET0_UNLESS(parse_strcmp(date, len, "Wednesday", 9)); |
| 2984 | tm->tm_wday = 3; |
| 2985 | return 1; |
| 2986 | case STR2I3('T','h','u'): |
| 2987 | RET0_UNLESS(parse_strcmp(date, len, "Thursday", 8)); |
| 2988 | tm->tm_wday = 4; |
| 2989 | return 1; |
| 2990 | case STR2I3('F','r','i'): |
| 2991 | RET0_UNLESS(parse_strcmp(date, len, "Friday", 6)); |
| 2992 | tm->tm_wday = 5; |
| 2993 | return 1; |
| 2994 | case STR2I3('S','a','t'): |
| 2995 | RET0_UNLESS(parse_strcmp(date, len, "Saturday", 8)); |
| 2996 | tm->tm_wday = 6; |
| 2997 | return 1; |
| 2998 | case STR2I3('S','u','n'): |
| 2999 | RET0_UNLESS(parse_strcmp(date, len, "Sunday", 6)); |
| 3000 | tm->tm_wday = 7; |
| 3001 | return 1; |
| 3002 | } |
| 3003 | return 0; |
| 3004 | } |
| 3005 | |
| 3006 | /* This function parses exactly 1 digit and returns the numeric value in "digit". */ |
| 3007 | static inline int parse_digit(const char **date, int *len, int *digit) |
| 3008 | { |
| 3009 | if (*len < 1 || **date < '0' || **date > '9') |
| 3010 | return 0; |
| 3011 | *digit = (**date - '0'); |
| 3012 | (*date)++; |
| 3013 | (*len)--; |
| 3014 | return 1; |
| 3015 | } |
| 3016 | |
| 3017 | /* This function parses exactly 2 digits and returns the numeric value in "digit". */ |
| 3018 | static inline int parse_2digit(const char **date, int *len, int *digit) |
| 3019 | { |
| 3020 | int value; |
| 3021 | |
| 3022 | RET0_UNLESS(parse_digit(date, len, &value)); |
| 3023 | (*digit) = value * 10; |
| 3024 | RET0_UNLESS(parse_digit(date, len, &value)); |
| 3025 | (*digit) += value; |
| 3026 | |
| 3027 | return 1; |
| 3028 | } |
| 3029 | |
| 3030 | /* This function parses exactly 4 digits and returns the numeric value in "digit". */ |
| 3031 | static inline int parse_4digit(const char **date, int *len, int *digit) |
| 3032 | { |
| 3033 | int value; |
| 3034 | |
| 3035 | RET0_UNLESS(parse_digit(date, len, &value)); |
| 3036 | (*digit) = value * 1000; |
| 3037 | |
| 3038 | RET0_UNLESS(parse_digit(date, len, &value)); |
| 3039 | (*digit) += value * 100; |
| 3040 | |
| 3041 | RET0_UNLESS(parse_digit(date, len, &value)); |
| 3042 | (*digit) += value * 10; |
| 3043 | |
| 3044 | RET0_UNLESS(parse_digit(date, len, &value)); |
| 3045 | (*digit) += value; |
| 3046 | |
| 3047 | return 1; |
| 3048 | } |
| 3049 | |
| 3050 | /* time-of-day = hour ":" minute ":" second |
| 3051 | * ; 00:00:00 - 23:59:60 (leap second) |
| 3052 | * |
| 3053 | * hour = 2DIGIT |
| 3054 | * minute = 2DIGIT |
| 3055 | * second = 2DIGIT |
| 3056 | */ |
| 3057 | static inline int parse_http_time(const char **date, int *len, struct tm *tm) |
| 3058 | { |
| 3059 | RET0_UNLESS(parse_2digit(date, len, &tm->tm_hour)); /* hour 2DIGIT */ |
| 3060 | RET0_UNLESS(parse_expect_char(date, len, ':')); /* expect ":" */ |
| 3061 | RET0_UNLESS(parse_2digit(date, len, &tm->tm_min)); /* min 2DIGIT */ |
| 3062 | RET0_UNLESS(parse_expect_char(date, len, ':')); /* expect ":" */ |
| 3063 | RET0_UNLESS(parse_2digit(date, len, &tm->tm_sec)); /* sec 2DIGIT */ |
| 3064 | return 1; |
| 3065 | } |
| 3066 | |
| 3067 | /* From RFC7231 |
| 3068 | * https://tools.ietf.org/html/rfc7231#section-7.1.1.1 |
| 3069 | * |
| 3070 | * IMF-fixdate = day-name "," SP date1 SP time-of-day SP GMT |
| 3071 | * ; fixed length/zone/capitalization subset of the format |
| 3072 | * ; see Section 3.3 of [RFC5322] |
| 3073 | * |
| 3074 | * |
| 3075 | * date1 = day SP month SP year |
| 3076 | * ; e.g., 02 Jun 1982 |
| 3077 | * |
| 3078 | * day = 2DIGIT |
| 3079 | * year = 4DIGIT |
| 3080 | * |
| 3081 | * GMT = %x47.4D.54 ; "GMT", case-sensitive |
| 3082 | * |
| 3083 | * time-of-day = hour ":" minute ":" second |
| 3084 | * ; 00:00:00 - 23:59:60 (leap second) |
| 3085 | * |
| 3086 | * hour = 2DIGIT |
| 3087 | * minute = 2DIGIT |
| 3088 | * second = 2DIGIT |
| 3089 | * |
| 3090 | * DIGIT = decimal 0-9 |
| 3091 | */ |
| 3092 | int parse_imf_date(const char *date, int len, struct tm *tm) |
| 3093 | { |
David Carlier | 327298c | 2016-11-20 10:42:38 +0000 | [diff] [blame] | 3094 | /* tm_gmtoff, if present, ought to be zero'ed */ |
| 3095 | memset(tm, 0, sizeof(*tm)); |
| 3096 | |
Thierry Fournier | 9312794 | 2016-01-20 18:49:45 +0100 | [diff] [blame] | 3097 | RET0_UNLESS(parse_http_dayname(&date, &len, tm)); /* day-name */ |
| 3098 | RET0_UNLESS(parse_expect_char(&date, &len, ',')); /* expect "," */ |
| 3099 | RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */ |
| 3100 | RET0_UNLESS(parse_2digit(&date, &len, &tm->tm_mday)); /* day 2DIGIT */ |
| 3101 | RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */ |
| 3102 | RET0_UNLESS(parse_http_monthname(&date, &len, tm)); /* Month */ |
| 3103 | RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */ |
| 3104 | RET0_UNLESS(parse_4digit(&date, &len, &tm->tm_year)); /* year = 4DIGIT */ |
| 3105 | tm->tm_year -= 1900; |
| 3106 | RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */ |
| 3107 | RET0_UNLESS(parse_http_time(&date, &len, tm)); /* Parse time. */ |
| 3108 | RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */ |
| 3109 | RET0_UNLESS(parse_strcmp(&date, &len, "GMT", 3)); /* GMT = %x47.4D.54 ; "GMT", case-sensitive */ |
| 3110 | tm->tm_isdst = -1; |
Thierry Fournier | 9312794 | 2016-01-20 18:49:45 +0100 | [diff] [blame] | 3111 | return 1; |
| 3112 | } |
| 3113 | |
| 3114 | /* From RFC7231 |
| 3115 | * https://tools.ietf.org/html/rfc7231#section-7.1.1.1 |
| 3116 | * |
| 3117 | * rfc850-date = day-name-l "," SP date2 SP time-of-day SP GMT |
| 3118 | * date2 = day "-" month "-" 2DIGIT |
| 3119 | * ; e.g., 02-Jun-82 |
| 3120 | * |
| 3121 | * day = 2DIGIT |
| 3122 | */ |
| 3123 | int parse_rfc850_date(const char *date, int len, struct tm *tm) |
| 3124 | { |
| 3125 | int year; |
| 3126 | |
David Carlier | 327298c | 2016-11-20 10:42:38 +0000 | [diff] [blame] | 3127 | /* tm_gmtoff, if present, ought to be zero'ed */ |
| 3128 | memset(tm, 0, sizeof(*tm)); |
| 3129 | |
Thierry Fournier | 9312794 | 2016-01-20 18:49:45 +0100 | [diff] [blame] | 3130 | RET0_UNLESS(parse_http_ldayname(&date, &len, tm)); /* Read the day name */ |
| 3131 | RET0_UNLESS(parse_expect_char(&date, &len, ',')); /* expect "," */ |
| 3132 | RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */ |
| 3133 | RET0_UNLESS(parse_2digit(&date, &len, &tm->tm_mday)); /* day 2DIGIT */ |
| 3134 | RET0_UNLESS(parse_expect_char(&date, &len, '-')); /* expect "-" */ |
| 3135 | RET0_UNLESS(parse_http_monthname(&date, &len, tm)); /* Month */ |
| 3136 | RET0_UNLESS(parse_expect_char(&date, &len, '-')); /* expect "-" */ |
| 3137 | |
| 3138 | /* year = 2DIGIT |
| 3139 | * |
| 3140 | * Recipients of a timestamp value in rfc850-(*date) format, which uses a |
| 3141 | * two-digit year, MUST interpret a timestamp that appears to be more |
| 3142 | * than 50 years in the future as representing the most recent year in |
| 3143 | * the past that had the same last two digits. |
| 3144 | */ |
| 3145 | RET0_UNLESS(parse_2digit(&date, &len, &tm->tm_year)); |
| 3146 | |
| 3147 | /* expect SP */ |
| 3148 | if (!parse_expect_char(&date, &len, ' ')) { |
| 3149 | /* Maybe we have the date with 4 digits. */ |
| 3150 | RET0_UNLESS(parse_2digit(&date, &len, &year)); |
| 3151 | tm->tm_year = (tm->tm_year * 100 + year) - 1900; |
| 3152 | /* expect SP */ |
| 3153 | RET0_UNLESS(parse_expect_char(&date, &len, ' ')); |
| 3154 | } else { |
| 3155 | /* I fix 60 as pivot: >60: +1900, <60: +2000. Note that the |
| 3156 | * tm_year is the number of year since 1900, so for +1900, we |
| 3157 | * do nothing, and for +2000, we add 100. |
| 3158 | */ |
| 3159 | if (tm->tm_year <= 60) |
| 3160 | tm->tm_year += 100; |
| 3161 | } |
| 3162 | |
| 3163 | RET0_UNLESS(parse_http_time(&date, &len, tm)); /* Parse time. */ |
| 3164 | RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */ |
| 3165 | RET0_UNLESS(parse_strcmp(&date, &len, "GMT", 3)); /* GMT = %x47.4D.54 ; "GMT", case-sensitive */ |
| 3166 | tm->tm_isdst = -1; |
Thierry Fournier | 9312794 | 2016-01-20 18:49:45 +0100 | [diff] [blame] | 3167 | |
| 3168 | return 1; |
| 3169 | } |
| 3170 | |
| 3171 | /* From RFC7231 |
| 3172 | * https://tools.ietf.org/html/rfc7231#section-7.1.1.1 |
| 3173 | * |
| 3174 | * asctime-date = day-name SP date3 SP time-of-day SP year |
| 3175 | * date3 = month SP ( 2DIGIT / ( SP 1DIGIT )) |
| 3176 | * ; e.g., Jun 2 |
| 3177 | * |
| 3178 | * HTTP-date is case sensitive. A sender MUST NOT generate additional |
| 3179 | * whitespace in an HTTP-date beyond that specifically included as SP in |
| 3180 | * the grammar. |
| 3181 | */ |
| 3182 | int parse_asctime_date(const char *date, int len, struct tm *tm) |
| 3183 | { |
David Carlier | 327298c | 2016-11-20 10:42:38 +0000 | [diff] [blame] | 3184 | /* tm_gmtoff, if present, ought to be zero'ed */ |
| 3185 | memset(tm, 0, sizeof(*tm)); |
| 3186 | |
Thierry Fournier | 9312794 | 2016-01-20 18:49:45 +0100 | [diff] [blame] | 3187 | RET0_UNLESS(parse_http_dayname(&date, &len, tm)); /* day-name */ |
| 3188 | RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */ |
| 3189 | RET0_UNLESS(parse_http_monthname(&date, &len, tm)); /* expect month */ |
| 3190 | RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */ |
| 3191 | |
| 3192 | /* expect SP and 1DIGIT or 2DIGIT */ |
| 3193 | if (parse_expect_char(&date, &len, ' ')) |
| 3194 | RET0_UNLESS(parse_digit(&date, &len, &tm->tm_mday)); |
| 3195 | else |
| 3196 | RET0_UNLESS(parse_2digit(&date, &len, &tm->tm_mday)); |
| 3197 | |
| 3198 | RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */ |
| 3199 | RET0_UNLESS(parse_http_time(&date, &len, tm)); /* Parse time. */ |
| 3200 | RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */ |
| 3201 | RET0_UNLESS(parse_4digit(&date, &len, &tm->tm_year)); /* year = 4DIGIT */ |
| 3202 | tm->tm_year -= 1900; |
| 3203 | tm->tm_isdst = -1; |
Thierry Fournier | 9312794 | 2016-01-20 18:49:45 +0100 | [diff] [blame] | 3204 | return 1; |
| 3205 | } |
| 3206 | |
| 3207 | /* From RFC7231 |
| 3208 | * https://tools.ietf.org/html/rfc7231#section-7.1.1.1 |
| 3209 | * |
| 3210 | * HTTP-date = IMF-fixdate / obs-date |
| 3211 | * obs-date = rfc850-date / asctime-date |
| 3212 | * |
| 3213 | * parses an HTTP date in the RFC format and is accepted |
| 3214 | * alternatives. <date> is the strinf containing the date, |
| 3215 | * len is the len of the string. <tm> is filled with the |
| 3216 | * parsed time. We must considers this time as GMT. |
| 3217 | */ |
| 3218 | int parse_http_date(const char *date, int len, struct tm *tm) |
| 3219 | { |
| 3220 | if (parse_imf_date(date, len, tm)) |
| 3221 | return 1; |
| 3222 | |
| 3223 | if (parse_rfc850_date(date, len, tm)) |
| 3224 | return 1; |
| 3225 | |
| 3226 | if (parse_asctime_date(date, len, tm)) |
| 3227 | return 1; |
| 3228 | |
| 3229 | return 0; |
| 3230 | } |
| 3231 | |
Willy Tarreau | 9a7bea5 | 2012-04-27 11:16:50 +0200 | [diff] [blame] | 3232 | /* Dynamically allocates a string of the proper length to hold the formatted |
| 3233 | * output. NULL is returned on error. The caller is responsible for freeing the |
| 3234 | * memory area using free(). The resulting string is returned in <out> if the |
| 3235 | * pointer is not NULL. A previous version of <out> might be used to build the |
| 3236 | * new string, and it will be freed before returning if it is not NULL, which |
| 3237 | * makes it possible to build complex strings from iterative calls without |
| 3238 | * having to care about freeing intermediate values, as in the example below : |
| 3239 | * |
| 3240 | * memprintf(&err, "invalid argument: '%s'", arg); |
| 3241 | * ... |
| 3242 | * memprintf(&err, "parser said : <%s>\n", *err); |
| 3243 | * ... |
| 3244 | * free(*err); |
| 3245 | * |
| 3246 | * This means that <err> must be initialized to NULL before first invocation. |
| 3247 | * The return value also holds the allocated string, which eases error checking |
| 3248 | * and immediate consumption. If the output pointer is not used, NULL must be |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3249 | * passed instead and it will be ignored. The returned message will then also |
| 3250 | * be NULL so that the caller does not have to bother with freeing anything. |
Willy Tarreau | 9a7bea5 | 2012-04-27 11:16:50 +0200 | [diff] [blame] | 3251 | * |
| 3252 | * It is also convenient to use it without any free except the last one : |
| 3253 | * err = NULL; |
| 3254 | * if (!fct1(err)) report(*err); |
| 3255 | * if (!fct2(err)) report(*err); |
| 3256 | * if (!fct3(err)) report(*err); |
| 3257 | * free(*err); |
| 3258 | */ |
| 3259 | char *memprintf(char **out, const char *format, ...) |
| 3260 | { |
| 3261 | va_list args; |
| 3262 | char *ret = NULL; |
| 3263 | int allocated = 0; |
| 3264 | int needed = 0; |
| 3265 | |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3266 | if (!out) |
| 3267 | return NULL; |
| 3268 | |
Willy Tarreau | 9a7bea5 | 2012-04-27 11:16:50 +0200 | [diff] [blame] | 3269 | do { |
| 3270 | /* vsnprintf() will return the required length even when the |
| 3271 | * target buffer is NULL. We do this in a loop just in case |
| 3272 | * intermediate evaluations get wrong. |
| 3273 | */ |
| 3274 | va_start(args, format); |
Willy Tarreau | 1b2fed6 | 2013-04-01 22:48:54 +0200 | [diff] [blame] | 3275 | needed = vsnprintf(ret, allocated, format, args); |
Willy Tarreau | 9a7bea5 | 2012-04-27 11:16:50 +0200 | [diff] [blame] | 3276 | va_end(args); |
| 3277 | |
Willy Tarreau | 1b2fed6 | 2013-04-01 22:48:54 +0200 | [diff] [blame] | 3278 | if (needed < allocated) { |
| 3279 | /* Note: on Solaris 8, the first iteration always |
| 3280 | * returns -1 if allocated is zero, so we force a |
| 3281 | * retry. |
| 3282 | */ |
| 3283 | if (!allocated) |
| 3284 | needed = 0; |
| 3285 | else |
| 3286 | break; |
| 3287 | } |
Willy Tarreau | 9a7bea5 | 2012-04-27 11:16:50 +0200 | [diff] [blame] | 3288 | |
Willy Tarreau | 1b2fed6 | 2013-04-01 22:48:54 +0200 | [diff] [blame] | 3289 | allocated = needed + 1; |
Hubert Verstraete | 831962e | 2016-06-28 22:44:26 +0200 | [diff] [blame] | 3290 | ret = my_realloc2(ret, allocated); |
Willy Tarreau | 9a7bea5 | 2012-04-27 11:16:50 +0200 | [diff] [blame] | 3291 | } while (ret); |
| 3292 | |
| 3293 | if (needed < 0) { |
| 3294 | /* an error was encountered */ |
| 3295 | free(ret); |
| 3296 | ret = NULL; |
| 3297 | } |
| 3298 | |
| 3299 | if (out) { |
| 3300 | free(*out); |
| 3301 | *out = ret; |
| 3302 | } |
| 3303 | |
| 3304 | return ret; |
| 3305 | } |
William Lallemand | 421f5b5 | 2012-02-06 18:15:57 +0100 | [diff] [blame] | 3306 | |
Willy Tarreau | 21c705b | 2012-09-14 11:40:36 +0200 | [diff] [blame] | 3307 | /* Used to add <level> spaces before each line of <out>, unless there is only one line. |
| 3308 | * The input argument is automatically freed and reassigned. The result will have to be |
Willy Tarreau | 70eec38 | 2012-10-10 08:56:47 +0200 | [diff] [blame] | 3309 | * freed by the caller. It also supports being passed a NULL which results in the same |
| 3310 | * output. |
Willy Tarreau | 21c705b | 2012-09-14 11:40:36 +0200 | [diff] [blame] | 3311 | * Example of use : |
| 3312 | * parse(cmd, &err); (callee: memprintf(&err, ...)) |
| 3313 | * fprintf(stderr, "Parser said: %s\n", indent_error(&err)); |
| 3314 | * free(err); |
| 3315 | */ |
| 3316 | char *indent_msg(char **out, int level) |
| 3317 | { |
| 3318 | char *ret, *in, *p; |
| 3319 | int needed = 0; |
| 3320 | int lf = 0; |
| 3321 | int lastlf = 0; |
| 3322 | int len; |
| 3323 | |
Willy Tarreau | 70eec38 | 2012-10-10 08:56:47 +0200 | [diff] [blame] | 3324 | if (!out || !*out) |
| 3325 | return NULL; |
| 3326 | |
Willy Tarreau | 21c705b | 2012-09-14 11:40:36 +0200 | [diff] [blame] | 3327 | in = *out - 1; |
| 3328 | while ((in = strchr(in + 1, '\n')) != NULL) { |
| 3329 | lastlf = in - *out; |
| 3330 | lf++; |
| 3331 | } |
| 3332 | |
| 3333 | if (!lf) /* single line, no LF, return it as-is */ |
| 3334 | return *out; |
| 3335 | |
| 3336 | len = strlen(*out); |
| 3337 | |
| 3338 | if (lf == 1 && lastlf == len - 1) { |
| 3339 | /* single line, LF at end, strip it and return as-is */ |
| 3340 | (*out)[lastlf] = 0; |
| 3341 | return *out; |
| 3342 | } |
| 3343 | |
| 3344 | /* OK now we have at least one LF, we need to process the whole string |
| 3345 | * as a multi-line string. What we'll do : |
| 3346 | * - prefix with an LF if there is none |
| 3347 | * - add <level> spaces before each line |
| 3348 | * This means at most ( 1 + level + (len-lf) + lf*<1+level) ) = |
| 3349 | * 1 + level + len + lf * level = 1 + level * (lf + 1) + len. |
| 3350 | */ |
| 3351 | |
| 3352 | needed = 1 + level * (lf + 1) + len + 1; |
| 3353 | p = ret = malloc(needed); |
| 3354 | in = *out; |
| 3355 | |
| 3356 | /* skip initial LFs */ |
| 3357 | while (*in == '\n') |
| 3358 | in++; |
| 3359 | |
| 3360 | /* copy each line, prefixed with LF and <level> spaces, and without the trailing LF */ |
| 3361 | while (*in) { |
| 3362 | *p++ = '\n'; |
| 3363 | memset(p, ' ', level); |
| 3364 | p += level; |
| 3365 | do { |
| 3366 | *p++ = *in++; |
| 3367 | } while (*in && *in != '\n'); |
| 3368 | if (*in) |
| 3369 | in++; |
| 3370 | } |
| 3371 | *p = 0; |
| 3372 | |
| 3373 | free(*out); |
| 3374 | *out = ret; |
| 3375 | |
| 3376 | return ret; |
| 3377 | } |
| 3378 | |
Willy Tarreau | dad36a3 | 2013-03-11 01:20:04 +0100 | [diff] [blame] | 3379 | /* Convert occurrences of environment variables in the input string to their |
| 3380 | * corresponding value. A variable is identified as a series of alphanumeric |
| 3381 | * characters or underscores following a '$' sign. The <in> string must be |
| 3382 | * free()able. NULL returns NULL. The resulting string might be reallocated if |
| 3383 | * some expansion is made. Variable names may also be enclosed into braces if |
| 3384 | * needed (eg: to concatenate alphanum characters). |
| 3385 | */ |
| 3386 | char *env_expand(char *in) |
| 3387 | { |
| 3388 | char *txt_beg; |
| 3389 | char *out; |
| 3390 | char *txt_end; |
| 3391 | char *var_beg; |
| 3392 | char *var_end; |
| 3393 | char *value; |
| 3394 | char *next; |
| 3395 | int out_len; |
| 3396 | int val_len; |
| 3397 | |
| 3398 | if (!in) |
| 3399 | return in; |
| 3400 | |
| 3401 | value = out = NULL; |
| 3402 | out_len = 0; |
| 3403 | |
| 3404 | txt_beg = in; |
| 3405 | do { |
| 3406 | /* look for next '$' sign in <in> */ |
| 3407 | for (txt_end = txt_beg; *txt_end && *txt_end != '$'; txt_end++); |
| 3408 | |
| 3409 | if (!*txt_end && !out) /* end and no expansion performed */ |
| 3410 | return in; |
| 3411 | |
| 3412 | val_len = 0; |
| 3413 | next = txt_end; |
| 3414 | if (*txt_end == '$') { |
| 3415 | char save; |
| 3416 | |
| 3417 | var_beg = txt_end + 1; |
| 3418 | if (*var_beg == '{') |
| 3419 | var_beg++; |
| 3420 | |
| 3421 | var_end = var_beg; |
| 3422 | while (isalnum((int)(unsigned char)*var_end) || *var_end == '_') { |
| 3423 | var_end++; |
| 3424 | } |
| 3425 | |
| 3426 | next = var_end; |
| 3427 | if (*var_end == '}' && (var_beg > txt_end + 1)) |
| 3428 | next++; |
| 3429 | |
| 3430 | /* get value of the variable name at this location */ |
| 3431 | save = *var_end; |
| 3432 | *var_end = '\0'; |
| 3433 | value = getenv(var_beg); |
| 3434 | *var_end = save; |
| 3435 | val_len = value ? strlen(value) : 0; |
| 3436 | } |
| 3437 | |
Hubert Verstraete | 831962e | 2016-06-28 22:44:26 +0200 | [diff] [blame] | 3438 | out = my_realloc2(out, out_len + (txt_end - txt_beg) + val_len + 1); |
Willy Tarreau | dad36a3 | 2013-03-11 01:20:04 +0100 | [diff] [blame] | 3439 | if (txt_end > txt_beg) { |
| 3440 | memcpy(out + out_len, txt_beg, txt_end - txt_beg); |
| 3441 | out_len += txt_end - txt_beg; |
| 3442 | } |
| 3443 | if (val_len) { |
| 3444 | memcpy(out + out_len, value, val_len); |
| 3445 | out_len += val_len; |
| 3446 | } |
| 3447 | out[out_len] = 0; |
| 3448 | txt_beg = next; |
| 3449 | } while (*txt_beg); |
| 3450 | |
| 3451 | /* here we know that <out> was allocated and that we don't need <in> anymore */ |
| 3452 | free(in); |
| 3453 | return out; |
| 3454 | } |
| 3455 | |
de Lafond Guillaume | 88c278f | 2013-04-15 19:27:10 +0200 | [diff] [blame] | 3456 | |
| 3457 | /* same as strstr() but case-insensitive and with limit length */ |
| 3458 | const char *strnistr(const char *str1, int len_str1, const char *str2, int len_str2) |
| 3459 | { |
| 3460 | char *pptr, *sptr, *start; |
Willy Tarreau | c874653 | 2014-05-28 23:05:07 +0200 | [diff] [blame] | 3461 | unsigned int slen, plen; |
| 3462 | unsigned int tmp1, tmp2; |
de Lafond Guillaume | 88c278f | 2013-04-15 19:27:10 +0200 | [diff] [blame] | 3463 | |
| 3464 | if (str1 == NULL || len_str1 == 0) // search pattern into an empty string => search is not found |
| 3465 | return NULL; |
| 3466 | |
| 3467 | if (str2 == NULL || len_str2 == 0) // pattern is empty => every str1 match |
| 3468 | return str1; |
| 3469 | |
| 3470 | if (len_str1 < len_str2) // pattern is longer than string => search is not found |
| 3471 | return NULL; |
| 3472 | |
| 3473 | for (tmp1 = 0, start = (char *)str1, pptr = (char *)str2, slen = len_str1, plen = len_str2; slen >= plen; start++, slen--) { |
| 3474 | while (toupper(*start) != toupper(*str2)) { |
| 3475 | start++; |
| 3476 | slen--; |
| 3477 | tmp1++; |
| 3478 | |
| 3479 | if (tmp1 >= len_str1) |
| 3480 | return NULL; |
| 3481 | |
| 3482 | /* if pattern longer than string */ |
| 3483 | if (slen < plen) |
| 3484 | return NULL; |
| 3485 | } |
| 3486 | |
| 3487 | sptr = start; |
| 3488 | pptr = (char *)str2; |
| 3489 | |
| 3490 | tmp2 = 0; |
| 3491 | while (toupper(*sptr) == toupper(*pptr)) { |
| 3492 | sptr++; |
| 3493 | pptr++; |
| 3494 | tmp2++; |
| 3495 | |
| 3496 | if (*pptr == '\0' || tmp2 == len_str2) /* end of pattern found */ |
| 3497 | return start; |
| 3498 | if (*sptr == '\0' || tmp2 == len_str1) /* end of string found and the pattern is not fully found */ |
| 3499 | return NULL; |
| 3500 | } |
| 3501 | } |
| 3502 | return NULL; |
| 3503 | } |
| 3504 | |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 3505 | /* This function read the next valid utf8 char. |
| 3506 | * <s> is the byte srray to be decode, <len> is its length. |
| 3507 | * The function returns decoded char encoded like this: |
| 3508 | * The 4 msb are the return code (UTF8_CODE_*), the 4 lsb |
| 3509 | * are the length read. The decoded character is stored in <c>. |
| 3510 | */ |
| 3511 | unsigned char utf8_next(const char *s, int len, unsigned int *c) |
| 3512 | { |
| 3513 | const unsigned char *p = (unsigned char *)s; |
| 3514 | int dec; |
| 3515 | unsigned char code = UTF8_CODE_OK; |
| 3516 | |
| 3517 | if (len < 1) |
| 3518 | return UTF8_CODE_OK; |
| 3519 | |
| 3520 | /* Check the type of UTF8 sequence |
| 3521 | * |
| 3522 | * 0... .... 0x00 <= x <= 0x7f : 1 byte: ascii char |
| 3523 | * 10.. .... 0x80 <= x <= 0xbf : invalid sequence |
| 3524 | * 110. .... 0xc0 <= x <= 0xdf : 2 bytes |
| 3525 | * 1110 .... 0xe0 <= x <= 0xef : 3 bytes |
| 3526 | * 1111 0... 0xf0 <= x <= 0xf7 : 4 bytes |
| 3527 | * 1111 10.. 0xf8 <= x <= 0xfb : 5 bytes |
| 3528 | * 1111 110. 0xfc <= x <= 0xfd : 6 bytes |
| 3529 | * 1111 111. 0xfe <= x <= 0xff : invalid sequence |
| 3530 | */ |
| 3531 | switch (*p) { |
| 3532 | case 0x00 ... 0x7f: |
| 3533 | *c = *p; |
| 3534 | return UTF8_CODE_OK | 1; |
| 3535 | |
| 3536 | case 0x80 ... 0xbf: |
| 3537 | *c = *p; |
| 3538 | return UTF8_CODE_BADSEQ | 1; |
| 3539 | |
| 3540 | case 0xc0 ... 0xdf: |
| 3541 | if (len < 2) { |
| 3542 | *c = *p; |
| 3543 | return UTF8_CODE_BADSEQ | 1; |
| 3544 | } |
| 3545 | *c = *p & 0x1f; |
| 3546 | dec = 1; |
| 3547 | break; |
| 3548 | |
| 3549 | case 0xe0 ... 0xef: |
| 3550 | if (len < 3) { |
| 3551 | *c = *p; |
| 3552 | return UTF8_CODE_BADSEQ | 1; |
| 3553 | } |
| 3554 | *c = *p & 0x0f; |
| 3555 | dec = 2; |
| 3556 | break; |
| 3557 | |
| 3558 | case 0xf0 ... 0xf7: |
| 3559 | if (len < 4) { |
| 3560 | *c = *p; |
| 3561 | return UTF8_CODE_BADSEQ | 1; |
| 3562 | } |
| 3563 | *c = *p & 0x07; |
| 3564 | dec = 3; |
| 3565 | break; |
| 3566 | |
| 3567 | case 0xf8 ... 0xfb: |
| 3568 | if (len < 5) { |
| 3569 | *c = *p; |
| 3570 | return UTF8_CODE_BADSEQ | 1; |
| 3571 | } |
| 3572 | *c = *p & 0x03; |
| 3573 | dec = 4; |
| 3574 | break; |
| 3575 | |
| 3576 | case 0xfc ... 0xfd: |
| 3577 | if (len < 6) { |
| 3578 | *c = *p; |
| 3579 | return UTF8_CODE_BADSEQ | 1; |
| 3580 | } |
| 3581 | *c = *p & 0x01; |
| 3582 | dec = 5; |
| 3583 | break; |
| 3584 | |
| 3585 | case 0xfe ... 0xff: |
| 3586 | default: |
| 3587 | *c = *p; |
| 3588 | return UTF8_CODE_BADSEQ | 1; |
| 3589 | } |
| 3590 | |
| 3591 | p++; |
| 3592 | |
| 3593 | while (dec > 0) { |
| 3594 | |
| 3595 | /* need 0x10 for the 2 first bits */ |
| 3596 | if ( ( *p & 0xc0 ) != 0x80 ) |
| 3597 | return UTF8_CODE_BADSEQ | ((p-(unsigned char *)s)&0xffff); |
| 3598 | |
| 3599 | /* add data at char */ |
| 3600 | *c = ( *c << 6 ) | ( *p & 0x3f ); |
| 3601 | |
| 3602 | dec--; |
| 3603 | p++; |
| 3604 | } |
| 3605 | |
| 3606 | /* Check ovelong encoding. |
| 3607 | * 1 byte : 5 + 6 : 11 : 0x80 ... 0x7ff |
| 3608 | * 2 bytes : 4 + 6 + 6 : 16 : 0x800 ... 0xffff |
| 3609 | * 3 bytes : 3 + 6 + 6 + 6 : 21 : 0x10000 ... 0x1fffff |
| 3610 | */ |
Thierry FOURNIER | 9e7ec08 | 2015-03-12 19:32:38 +0100 | [diff] [blame] | 3611 | if (( *c <= 0x7f && (p-(unsigned char *)s) > 1) || |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 3612 | (*c >= 0x80 && *c <= 0x7ff && (p-(unsigned char *)s) > 2) || |
| 3613 | (*c >= 0x800 && *c <= 0xffff && (p-(unsigned char *)s) > 3) || |
| 3614 | (*c >= 0x10000 && *c <= 0x1fffff && (p-(unsigned char *)s) > 4)) |
| 3615 | code |= UTF8_CODE_OVERLONG; |
| 3616 | |
| 3617 | /* Check invalid UTF8 range. */ |
| 3618 | if ((*c >= 0xd800 && *c <= 0xdfff) || |
| 3619 | (*c >= 0xfffe && *c <= 0xffff)) |
| 3620 | code |= UTF8_CODE_INVRANGE; |
| 3621 | |
| 3622 | return code | ((p-(unsigned char *)s)&0x0f); |
| 3623 | } |
| 3624 | |
Maxime de Roucy | dc88785 | 2016-05-13 23:52:54 +0200 | [diff] [blame] | 3625 | /* append a copy of string <str> (in a wordlist) at the end of the list <li> |
| 3626 | * On failure : return 0 and <err> filled with an error message. |
| 3627 | * The caller is responsible for freeing the <err> and <str> copy |
| 3628 | * memory area using free() |
| 3629 | */ |
| 3630 | int list_append_word(struct list *li, const char *str, char **err) |
| 3631 | { |
| 3632 | struct wordlist *wl; |
| 3633 | |
| 3634 | wl = calloc(1, sizeof(*wl)); |
| 3635 | if (!wl) { |
| 3636 | memprintf(err, "out of memory"); |
| 3637 | goto fail_wl; |
| 3638 | } |
| 3639 | |
| 3640 | wl->s = strdup(str); |
| 3641 | if (!wl->s) { |
| 3642 | memprintf(err, "out of memory"); |
| 3643 | goto fail_wl_s; |
| 3644 | } |
| 3645 | |
| 3646 | LIST_ADDQ(li, &wl->list); |
| 3647 | |
| 3648 | return 1; |
| 3649 | |
| 3650 | fail_wl_s: |
| 3651 | free(wl->s); |
| 3652 | fail_wl: |
| 3653 | free(wl); |
| 3654 | return 0; |
| 3655 | } |
| 3656 | |
Willy Tarreau | 97c2ae1 | 2016-11-22 18:00:20 +0100 | [diff] [blame] | 3657 | /* print a string of text buffer to <out>. The format is : |
| 3658 | * Non-printable chars \t, \n, \r and \e are * encoded in C format. |
| 3659 | * Other non-printable chars are encoded "\xHH". Space, '\', and '=' are also escaped. |
| 3660 | * Print stopped if null char or <bsize> is reached, or if no more place in the chunk. |
| 3661 | */ |
| 3662 | int dump_text(struct chunk *out, const char *buf, int bsize) |
| 3663 | { |
| 3664 | unsigned char c; |
| 3665 | int ptr = 0; |
| 3666 | |
| 3667 | while (buf[ptr] && ptr < bsize) { |
| 3668 | c = buf[ptr]; |
| 3669 | if (isprint(c) && isascii(c) && c != '\\' && c != ' ' && c != '=') { |
| 3670 | if (out->len > out->size - 1) |
| 3671 | break; |
| 3672 | out->str[out->len++] = c; |
| 3673 | } |
| 3674 | else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\' || c == ' ' || c == '=') { |
| 3675 | if (out->len > out->size - 2) |
| 3676 | break; |
| 3677 | out->str[out->len++] = '\\'; |
| 3678 | switch (c) { |
| 3679 | case ' ': c = ' '; break; |
| 3680 | case '\t': c = 't'; break; |
| 3681 | case '\n': c = 'n'; break; |
| 3682 | case '\r': c = 'r'; break; |
| 3683 | case '\e': c = 'e'; break; |
| 3684 | case '\\': c = '\\'; break; |
| 3685 | case '=': c = '='; break; |
| 3686 | } |
| 3687 | out->str[out->len++] = c; |
| 3688 | } |
| 3689 | else { |
| 3690 | if (out->len > out->size - 4) |
| 3691 | break; |
| 3692 | out->str[out->len++] = '\\'; |
| 3693 | out->str[out->len++] = 'x'; |
| 3694 | out->str[out->len++] = hextab[(c >> 4) & 0xF]; |
| 3695 | out->str[out->len++] = hextab[c & 0xF]; |
| 3696 | } |
| 3697 | ptr++; |
| 3698 | } |
| 3699 | |
| 3700 | return ptr; |
| 3701 | } |
| 3702 | |
| 3703 | /* print a buffer in hexa. |
| 3704 | * Print stopped if <bsize> is reached, or if no more place in the chunk. |
| 3705 | */ |
| 3706 | int dump_binary(struct chunk *out, const char *buf, int bsize) |
| 3707 | { |
| 3708 | unsigned char c; |
| 3709 | int ptr = 0; |
| 3710 | |
| 3711 | while (ptr < bsize) { |
| 3712 | c = buf[ptr]; |
| 3713 | |
| 3714 | if (out->len > out->size - 2) |
| 3715 | break; |
| 3716 | out->str[out->len++] = hextab[(c >> 4) & 0xF]; |
| 3717 | out->str[out->len++] = hextab[c & 0xF]; |
| 3718 | |
| 3719 | ptr++; |
| 3720 | } |
| 3721 | return ptr; |
| 3722 | } |
| 3723 | |
| 3724 | /* print a line of text buffer (limited to 70 bytes) to <out>. The format is : |
| 3725 | * <2 spaces> <offset=5 digits> <space or plus> <space> <70 chars max> <\n> |
| 3726 | * which is 60 chars per line. Non-printable chars \t, \n, \r and \e are |
| 3727 | * encoded in C format. Other non-printable chars are encoded "\xHH". Original |
| 3728 | * lines are respected within the limit of 70 output chars. Lines that are |
| 3729 | * continuation of a previous truncated line begin with "+" instead of " " |
| 3730 | * after the offset. The new pointer is returned. |
| 3731 | */ |
| 3732 | int dump_text_line(struct chunk *out, const char *buf, int bsize, int len, |
| 3733 | int *line, int ptr) |
| 3734 | { |
| 3735 | int end; |
| 3736 | unsigned char c; |
| 3737 | |
| 3738 | end = out->len + 80; |
| 3739 | if (end > out->size) |
| 3740 | return ptr; |
| 3741 | |
| 3742 | chunk_appendf(out, " %05d%c ", ptr, (ptr == *line) ? ' ' : '+'); |
| 3743 | |
| 3744 | while (ptr < len && ptr < bsize) { |
| 3745 | c = buf[ptr]; |
| 3746 | if (isprint(c) && isascii(c) && c != '\\') { |
| 3747 | if (out->len > end - 2) |
| 3748 | break; |
| 3749 | out->str[out->len++] = c; |
| 3750 | } else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\') { |
| 3751 | if (out->len > end - 3) |
| 3752 | break; |
| 3753 | out->str[out->len++] = '\\'; |
| 3754 | switch (c) { |
| 3755 | case '\t': c = 't'; break; |
| 3756 | case '\n': c = 'n'; break; |
| 3757 | case '\r': c = 'r'; break; |
| 3758 | case '\e': c = 'e'; break; |
| 3759 | case '\\': c = '\\'; break; |
| 3760 | } |
| 3761 | out->str[out->len++] = c; |
| 3762 | } else { |
| 3763 | if (out->len > end - 5) |
| 3764 | break; |
| 3765 | out->str[out->len++] = '\\'; |
| 3766 | out->str[out->len++] = 'x'; |
| 3767 | out->str[out->len++] = hextab[(c >> 4) & 0xF]; |
| 3768 | out->str[out->len++] = hextab[c & 0xF]; |
| 3769 | } |
| 3770 | if (buf[ptr++] == '\n') { |
| 3771 | /* we had a line break, let's return now */ |
| 3772 | out->str[out->len++] = '\n'; |
| 3773 | *line = ptr; |
| 3774 | return ptr; |
| 3775 | } |
| 3776 | } |
| 3777 | /* we have an incomplete line, we return it as-is */ |
| 3778 | out->str[out->len++] = '\n'; |
| 3779 | return ptr; |
| 3780 | } |
| 3781 | |
Willy Tarreau | 0ebb511 | 2016-12-05 00:10:57 +0100 | [diff] [blame] | 3782 | /* displays a <len> long memory block at <buf>, assuming first byte of <buf> |
| 3783 | * has address <baseaddr>. The output is emitted to file <out>. |
| 3784 | */ |
| 3785 | void debug_hexdump(FILE *out, char *buf, unsigned int baseaddr, int len) |
| 3786 | { |
Willy Tarreau | 7345979 | 2017-04-11 07:58:08 +0200 | [diff] [blame] | 3787 | unsigned int i; |
| 3788 | int b, j; |
Willy Tarreau | 0ebb511 | 2016-12-05 00:10:57 +0100 | [diff] [blame] | 3789 | |
| 3790 | for (i = 0; i < (len + (baseaddr & 15)); i += 16) { |
| 3791 | b = i - (baseaddr & 15); |
| 3792 | fprintf(out, "%08x: ", i + (baseaddr & ~15)); |
| 3793 | for (j = 0; j < 8; j++) { |
| 3794 | if (b + j >= 0 && b + j < len) |
| 3795 | fprintf(out, "%02x ", (unsigned char)buf[b + j]); |
| 3796 | else |
| 3797 | fprintf(out, " "); |
| 3798 | } |
| 3799 | |
| 3800 | if (b + j >= 0 && b + j < len) |
| 3801 | fputc('-', out); |
| 3802 | else |
| 3803 | fputc(' ', out); |
| 3804 | |
| 3805 | for (j = 8; j < 16; j++) { |
| 3806 | if (b + j >= 0 && b + j < len) |
| 3807 | fprintf(out, " %02x", (unsigned char)buf[b + j]); |
| 3808 | else |
| 3809 | fprintf(out, " "); |
| 3810 | } |
| 3811 | |
| 3812 | fprintf(out, " "); |
| 3813 | for (j = 0; j < 16; j++) { |
| 3814 | if (b + j >= 0 && b + j < len) { |
| 3815 | if (isprint((unsigned char)buf[b + j])) |
| 3816 | fputc((unsigned char)buf[b + j], out); |
| 3817 | else |
| 3818 | fputc('.', out); |
| 3819 | } |
| 3820 | else |
| 3821 | fputc(' ', out); |
| 3822 | } |
| 3823 | fputc('\n', out); |
| 3824 | } |
| 3825 | } |
| 3826 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3827 | /* |
| 3828 | * Local variables: |
| 3829 | * c-indent-level: 8 |
| 3830 | * c-basic-offset: 8 |
| 3831 | * End: |
| 3832 | */ |