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