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