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