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