blob: 4d0e3ed14635125ea54bb8aa87fbd195dd2752e8 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * General purpose functions.
3 *
Willy Tarreau348238b2010-01-18 15:05:57 +01004 * Copyright 2000-2010 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreau2e74c3f2007-12-02 18:45:09 +010013#include <ctype.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020014#include <netdb.h>
Willy Tarreau9a7bea52012-04-27 11:16:50 +020015#include <stdarg.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020016#include <stdio.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020017#include <stdlib.h>
18#include <string.h>
Thierry Fournier93127942016-01-20 18:49:45 +010019#include <time.h>
Willy Tarreau127f9662007-12-06 00:53:51 +010020#include <sys/socket.h>
21#include <sys/un.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020022#include <netinet/in.h>
23#include <arpa/inet.h>
24
Thierry FOURNIERe059ec92014-03-17 12:01:13 +010025#include <common/chunk.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020026#include <common/config.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020027#include <common/standard.h>
Thierry Fournier93127942016-01-20 18:49:45 +010028#include <common/tools.h>
Thierry FOURNIER9f95e402014-03-21 14:51:46 +010029#include <types/global.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020030#include <proto/dns.h>
Willy Tarreau45cb4fb2009-10-26 21:10:04 +010031#include <eb32tree.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020032
Thierry Fournier93127942016-01-20 18:49:45 +010033/* This macro returns false if the test __x is false. Many
34 * of the following parsing function must be abort the processing
35 * if it returns 0, so this macro is useful for writing light code.
36 */
37#define RET0_UNLESS(__x) do { if (!(__x)) return 0; } while (0)
38
Willy Tarreau56adcf22012-12-23 18:00:29 +010039/* enough to store NB_ITOA_STR integers of :
Willy Tarreau72d759c2007-10-25 12:14:10 +020040 * 2^64-1 = 18446744073709551615 or
41 * -2^63 = -9223372036854775808
Willy Tarreaue7239b52009-03-29 13:41:58 +020042 *
43 * The HTML version needs room for adding the 25 characters
44 * '<span class="rls"></span>' around digits at positions 3N+1 in order
45 * to add spacing at up to 6 positions : 18 446 744 073 709 551 615
Willy Tarreau72d759c2007-10-25 12:14:10 +020046 */
Willy Tarreau56adcf22012-12-23 18:00:29 +010047char itoa_str[NB_ITOA_STR][171];
48int itoa_idx = 0; /* index of next itoa_str to use */
Willy Tarreaubaaee002006-06-26 02:48:02 +020049
Willy Tarreau588297f2014-06-16 15:16:40 +020050/* sometimes we'll need to quote strings (eg: in stats), and we don't expect
51 * to quote strings larger than a max configuration line.
52 */
53char quoted_str[NB_QSTR][QSTR_SIZE + 1];
54int quoted_idx = 0;
55
Willy Tarreaubaaee002006-06-26 02:48:02 +020056/*
William Lallemande7340ec2012-01-24 11:15:39 +010057 * unsigned long long ASCII representation
58 *
59 * return the last char '\0' or NULL if no enough
60 * space in dst
61 */
62char *ulltoa(unsigned long long n, char *dst, size_t size)
63{
64 int i = 0;
65 char *res;
66
67 switch(n) {
68 case 1ULL ... 9ULL:
69 i = 0;
70 break;
71
72 case 10ULL ... 99ULL:
73 i = 1;
74 break;
75
76 case 100ULL ... 999ULL:
77 i = 2;
78 break;
79
80 case 1000ULL ... 9999ULL:
81 i = 3;
82 break;
83
84 case 10000ULL ... 99999ULL:
85 i = 4;
86 break;
87
88 case 100000ULL ... 999999ULL:
89 i = 5;
90 break;
91
92 case 1000000ULL ... 9999999ULL:
93 i = 6;
94 break;
95
96 case 10000000ULL ... 99999999ULL:
97 i = 7;
98 break;
99
100 case 100000000ULL ... 999999999ULL:
101 i = 8;
102 break;
103
104 case 1000000000ULL ... 9999999999ULL:
105 i = 9;
106 break;
107
108 case 10000000000ULL ... 99999999999ULL:
109 i = 10;
110 break;
111
112 case 100000000000ULL ... 999999999999ULL:
113 i = 11;
114 break;
115
116 case 1000000000000ULL ... 9999999999999ULL:
117 i = 12;
118 break;
119
120 case 10000000000000ULL ... 99999999999999ULL:
121 i = 13;
122 break;
123
124 case 100000000000000ULL ... 999999999999999ULL:
125 i = 14;
126 break;
127
128 case 1000000000000000ULL ... 9999999999999999ULL:
129 i = 15;
130 break;
131
132 case 10000000000000000ULL ... 99999999999999999ULL:
133 i = 16;
134 break;
135
136 case 100000000000000000ULL ... 999999999999999999ULL:
137 i = 17;
138 break;
139
140 case 1000000000000000000ULL ... 9999999999999999999ULL:
141 i = 18;
142 break;
143
144 case 10000000000000000000ULL ... ULLONG_MAX:
145 i = 19;
146 break;
147 }
148 if (i + 2 > size) // (i + 1) + '\0'
149 return NULL; // too long
150 res = dst + i + 1;
151 *res = '\0';
152 for (; i >= 0; i--) {
153 dst[i] = n % 10ULL + '0';
154 n /= 10ULL;
155 }
156 return res;
157}
158
159/*
160 * unsigned long ASCII representation
161 *
162 * return the last char '\0' or NULL if no enough
163 * space in dst
164 */
165char *ultoa_o(unsigned long n, char *dst, size_t size)
166{
167 int i = 0;
168 char *res;
169
170 switch (n) {
171 case 0U ... 9UL:
172 i = 0;
173 break;
174
175 case 10U ... 99UL:
176 i = 1;
177 break;
178
179 case 100U ... 999UL:
180 i = 2;
181 break;
182
183 case 1000U ... 9999UL:
184 i = 3;
185 break;
186
187 case 10000U ... 99999UL:
188 i = 4;
189 break;
190
191 case 100000U ... 999999UL:
192 i = 5;
193 break;
194
195 case 1000000U ... 9999999UL:
196 i = 6;
197 break;
198
199 case 10000000U ... 99999999UL:
200 i = 7;
201 break;
202
203 case 100000000U ... 999999999UL:
204 i = 8;
205 break;
206#if __WORDSIZE == 32
207
208 case 1000000000ULL ... ULONG_MAX:
209 i = 9;
210 break;
211
212#elif __WORDSIZE == 64
213
214 case 1000000000ULL ... 9999999999UL:
215 i = 9;
216 break;
217
218 case 10000000000ULL ... 99999999999UL:
219 i = 10;
220 break;
221
222 case 100000000000ULL ... 999999999999UL:
223 i = 11;
224 break;
225
226 case 1000000000000ULL ... 9999999999999UL:
227 i = 12;
228 break;
229
230 case 10000000000000ULL ... 99999999999999UL:
231 i = 13;
232 break;
233
234 case 100000000000000ULL ... 999999999999999UL:
235 i = 14;
236 break;
237
238 case 1000000000000000ULL ... 9999999999999999UL:
239 i = 15;
240 break;
241
242 case 10000000000000000ULL ... 99999999999999999UL:
243 i = 16;
244 break;
245
246 case 100000000000000000ULL ... 999999999999999999UL:
247 i = 17;
248 break;
249
250 case 1000000000000000000ULL ... 9999999999999999999UL:
251 i = 18;
252 break;
253
254 case 10000000000000000000ULL ... ULONG_MAX:
255 i = 19;
256 break;
257
258#endif
259 }
260 if (i + 2 > size) // (i + 1) + '\0'
261 return NULL; // too long
262 res = dst + i + 1;
263 *res = '\0';
264 for (; i >= 0; i--) {
265 dst[i] = n % 10U + '0';
266 n /= 10U;
267 }
268 return res;
269}
270
271/*
272 * signed long ASCII representation
273 *
274 * return the last char '\0' or NULL if no enough
275 * space in dst
276 */
277char *ltoa_o(long int n, char *dst, size_t size)
278{
279 char *pos = dst;
280
281 if (n < 0) {
282 if (size < 3)
283 return NULL; // min size is '-' + digit + '\0' but another test in ultoa
284 *pos = '-';
285 pos++;
286 dst = ultoa_o(-n, pos, size - 1);
287 } else {
288 dst = ultoa_o(n, dst, size);
289 }
290 return dst;
291}
292
293/*
294 * signed long long ASCII representation
295 *
296 * return the last char '\0' or NULL if no enough
297 * space in dst
298 */
299char *lltoa(long long n, char *dst, size_t size)
300{
301 char *pos = dst;
302
303 if (n < 0) {
304 if (size < 3)
305 return NULL; // min size is '-' + digit + '\0' but another test in ulltoa
306 *pos = '-';
307 pos++;
308 dst = ulltoa(-n, pos, size - 1);
309 } else {
310 dst = ulltoa(n, dst, size);
311 }
312 return dst;
313}
314
315/*
316 * write a ascii representation of a unsigned into dst,
317 * return a pointer to the last character
318 * Pad the ascii representation with '0', using size.
319 */
320char *utoa_pad(unsigned int n, char *dst, size_t size)
321{
322 int i = 0;
323 char *ret;
324
325 switch(n) {
326 case 0U ... 9U:
327 i = 0;
328 break;
329
330 case 10U ... 99U:
331 i = 1;
332 break;
333
334 case 100U ... 999U:
335 i = 2;
336 break;
337
338 case 1000U ... 9999U:
339 i = 3;
340 break;
341
342 case 10000U ... 99999U:
343 i = 4;
344 break;
345
346 case 100000U ... 999999U:
347 i = 5;
348 break;
349
350 case 1000000U ... 9999999U:
351 i = 6;
352 break;
353
354 case 10000000U ... 99999999U:
355 i = 7;
356 break;
357
358 case 100000000U ... 999999999U:
359 i = 8;
360 break;
361
362 case 1000000000U ... 4294967295U:
363 i = 9;
364 break;
365 }
366 if (i + 2 > size) // (i + 1) + '\0'
367 return NULL; // too long
368 if (i < size)
369 i = size - 2; // padding - '\0'
370
371 ret = dst + i + 1;
372 *ret = '\0';
373 for (; i >= 0; i--) {
374 dst[i] = n % 10U + '0';
375 n /= 10U;
376 }
377 return ret;
378}
379
380/*
Willy Tarreaubaaee002006-06-26 02:48:02 +0200381 * copies at most <size-1> chars from <src> to <dst>. Last char is always
382 * set to 0, unless <size> is 0. The number of chars copied is returned
383 * (excluding the terminating zero).
384 * This code has been optimized for size and speed : on x86, it's 45 bytes
385 * long, uses only registers, and consumes only 4 cycles per char.
386 */
387int strlcpy2(char *dst, const char *src, int size)
388{
389 char *orig = dst;
390 if (size) {
391 while (--size && (*dst = *src)) {
392 src++; dst++;
393 }
394 *dst = 0;
395 }
396 return dst - orig;
397}
398
399/*
Willy Tarreau72d759c2007-10-25 12:14:10 +0200400 * This function simply returns a locally allocated string containing
Willy Tarreaubaaee002006-06-26 02:48:02 +0200401 * the ascii representation for number 'n' in decimal.
402 */
Emeric Brun3a7fce52010-01-04 14:54:38 +0100403char *ultoa_r(unsigned long n, char *buffer, int size)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200404{
405 char *pos;
406
Willy Tarreau72d759c2007-10-25 12:14:10 +0200407 pos = buffer + size - 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200408 *pos-- = '\0';
409
410 do {
411 *pos-- = '0' + n % 10;
412 n /= 10;
Willy Tarreau72d759c2007-10-25 12:14:10 +0200413 } while (n && pos >= buffer);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200414 return pos + 1;
415}
416
Willy Tarreau91092e52007-10-25 16:58:42 +0200417/*
Willy Tarreaue7239b52009-03-29 13:41:58 +0200418 * This function simply returns a locally allocated string containing
Thierry FOURNIER763a5d82015-07-06 23:09:52 +0200419 * the ascii representation for number 'n' in decimal.
420 */
421char *lltoa_r(long long int in, char *buffer, int size)
422{
423 char *pos;
424 int neg = 0;
425 unsigned long long int n;
426
427 pos = buffer + size - 1;
428 *pos-- = '\0';
429
430 if (in < 0) {
431 neg = 1;
432 n = -in;
433 }
434 else
435 n = in;
436
437 do {
438 *pos-- = '0' + n % 10;
439 n /= 10;
440 } while (n && pos >= buffer);
441 if (neg && pos > buffer)
442 *pos-- = '-';
443 return pos + 1;
444}
445
446/*
447 * This function simply returns a locally allocated string containing
Thierry FOURNIER1480bd82015-06-06 19:14:59 +0200448 * the ascii representation for signed number 'n' in decimal.
449 */
450char *sltoa_r(long n, char *buffer, int size)
451{
452 char *pos;
453
454 if (n >= 0)
455 return ultoa_r(n, buffer, size);
456
457 pos = ultoa_r(-n, buffer + 1, size - 1) - 1;
458 *pos = '-';
459 return pos;
460}
461
462/*
463 * This function simply returns a locally allocated string containing
Willy Tarreaue7239b52009-03-29 13:41:58 +0200464 * the ascii representation for number 'n' in decimal, formatted for
465 * HTML output with tags to create visual grouping by 3 digits. The
466 * output needs to support at least 171 characters.
467 */
468const char *ulltoh_r(unsigned long long n, char *buffer, int size)
469{
470 char *start;
471 int digit = 0;
472
473 start = buffer + size;
474 *--start = '\0';
475
476 do {
477 if (digit == 3 && start >= buffer + 7)
478 memcpy(start -= 7, "</span>", 7);
479
480 if (start >= buffer + 1) {
481 *--start = '0' + n % 10;
482 n /= 10;
483 }
484
485 if (digit == 3 && start >= buffer + 18)
486 memcpy(start -= 18, "<span class=\"rls\">", 18);
487
488 if (digit++ == 3)
489 digit = 1;
490 } while (n && start > buffer);
491 return start;
492}
493
494/*
Willy Tarreau91092e52007-10-25 16:58:42 +0200495 * This function simply returns a locally allocated string containing the ascii
496 * representation for number 'n' in decimal, unless n is 0 in which case it
497 * returns the alternate string (or an empty string if the alternate string is
498 * NULL). It use is intended for limits reported in reports, where it's
499 * desirable not to display anything if there is no limit. Warning! it shares
500 * the same vector as ultoa_r().
501 */
502const char *limit_r(unsigned long n, char *buffer, int size, const char *alt)
503{
504 return (n) ? ultoa_r(n, buffer, size) : (alt ? alt : "");
505}
506
Willy Tarreau588297f2014-06-16 15:16:40 +0200507/* returns a locally allocated string containing the quoted encoding of the
508 * input string. The output may be truncated to QSTR_SIZE chars, but it is
509 * guaranteed that the string will always be properly terminated. Quotes are
510 * encoded by doubling them as is commonly done in CSV files. QSTR_SIZE must
511 * always be at least 4 chars.
512 */
513const char *qstr(const char *str)
514{
515 char *ret = quoted_str[quoted_idx];
516 char *p, *end;
517
518 if (++quoted_idx >= NB_QSTR)
519 quoted_idx = 0;
520
521 p = ret;
522 end = ret + QSTR_SIZE;
523
524 *p++ = '"';
525
526 /* always keep 3 chars to support passing "" and the ending " */
527 while (*str && p < end - 3) {
528 if (*str == '"') {
529 *p++ = '"';
530 *p++ = '"';
531 }
532 else
533 *p++ = *str;
534 str++;
535 }
536 *p++ = '"';
537 return ret;
538}
539
Robert Tsai81ae1952007-12-05 10:47:29 +0100540/*
Willy Tarreaubaaee002006-06-26 02:48:02 +0200541 * Returns non-zero if character <s> is a hex digit (0-9, a-f, A-F), else zero.
542 *
543 * It looks like this one would be a good candidate for inlining, but this is
544 * not interesting because it around 35 bytes long and often called multiple
545 * times within the same function.
546 */
547int ishex(char s)
548{
549 s -= '0';
550 if ((unsigned char)s <= 9)
551 return 1;
552 s -= 'A' - '0';
553 if ((unsigned char)s <= 5)
554 return 1;
555 s -= 'a' - 'A';
556 if ((unsigned char)s <= 5)
557 return 1;
558 return 0;
559}
560
Willy Tarreau3ca1a882015-01-15 18:43:49 +0100561/* rounds <i> down to the closest value having max 2 digits */
562unsigned int round_2dig(unsigned int i)
563{
564 unsigned int mul = 1;
565
566 while (i >= 100) {
567 i /= 10;
568 mul *= 10;
569 }
570 return i * mul;
571}
572
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100573/*
574 * Checks <name> for invalid characters. Valid chars are [A-Za-z0-9_:.-]. If an
575 * invalid character is found, a pointer to it is returned. If everything is
576 * fine, NULL is returned.
577 */
578const char *invalid_char(const char *name)
579{
580 if (!*name)
581 return name;
582
583 while (*name) {
Willy Tarreau88e05812010-03-03 00:16:00 +0100584 if (!isalnum((int)(unsigned char)*name) && *name != '.' && *name != ':' &&
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100585 *name != '_' && *name != '-')
586 return name;
587 name++;
588 }
589 return NULL;
590}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200591
592/*
Krzysztof Piotr Oledzkiefe3b6f2008-05-23 23:49:32 +0200593 * Checks <domainname> for invalid characters. Valid chars are [A-Za-z0-9_.-].
594 * If an invalid character is found, a pointer to it is returned.
595 * If everything is fine, NULL is returned.
596 */
597const char *invalid_domainchar(const char *name) {
598
599 if (!*name)
600 return name;
601
602 while (*name) {
Willy Tarreau88e05812010-03-03 00:16:00 +0100603 if (!isalnum((int)(unsigned char)*name) && *name != '.' &&
Krzysztof Piotr Oledzkiefe3b6f2008-05-23 23:49:32 +0200604 *name != '_' && *name != '-')
605 return name;
606
607 name++;
608 }
609
610 return NULL;
611}
612
613/*
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100614 * converts <str> to a struct sockaddr_storage* provided by the caller. The
Willy Tarreau24709282013-03-10 21:32:12 +0100615 * caller must have zeroed <sa> first, and may have set sa->ss_family to force
616 * parse a specific address format. If the ss_family is 0 or AF_UNSPEC, then
617 * the function tries to guess the address family from the syntax. If the
618 * family is forced and the format doesn't match, an error is returned. The
Willy Tarreaufab5a432011-03-04 15:31:53 +0100619 * string is assumed to contain only an address, no port. The address can be a
620 * dotted IPv4 address, an IPv6 address, a host name, or empty or "*" to
621 * indicate INADDR_ANY. NULL is returned if the host part cannot be resolved.
622 * The return address will only have the address family and the address set,
623 * all other fields remain zero. The string is not supposed to be modified.
Thierry FOURNIER58639a02014-11-25 12:02:25 +0100624 * The IPv6 '::' address is IN6ADDR_ANY. If <resolve> is non-zero, the hostname
625 * is resolved, otherwise only IP addresses are resolved, and anything else
626 * returns NULL.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200627 */
Thierry FOURNIER58639a02014-11-25 12:02:25 +0100628struct sockaddr_storage *str2ip2(const char *str, struct sockaddr_storage *sa, int resolve)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200629{
Willy Tarreaufab5a432011-03-04 15:31:53 +0100630 struct hostent *he;
mildisff5d5102015-10-26 18:50:08 +0100631 /* max IPv6 length, including brackets and terminating NULL */
632 char tmpip[48];
633
634 /* check IPv6 with square brackets */
635 if (str[0] == '[') {
636 size_t iplength = strlen(str);
637
638 if (iplength < 4) {
639 /* minimal size is 4 when using brackets "[::]" */
640 goto fail;
641 }
642 else if (iplength >= sizeof(tmpip)) {
643 /* IPv6 literal can not be larger than tmpip */
644 goto fail;
645 }
646 else {
647 if (str[iplength - 1] != ']') {
648 /* if address started with bracket, it should end with bracket */
649 goto fail;
650 }
651 else {
652 memcpy(tmpip, str + 1, iplength - 2);
653 tmpip[iplength - 2] = '\0';
654 str = tmpip;
655 }
656 }
657 }
Willy Tarreaufab5a432011-03-04 15:31:53 +0100658
Willy Tarreaufab5a432011-03-04 15:31:53 +0100659 /* Any IPv6 address */
660 if (str[0] == ':' && str[1] == ':' && !str[2]) {
Willy Tarreau24709282013-03-10 21:32:12 +0100661 if (!sa->ss_family || sa->ss_family == AF_UNSPEC)
662 sa->ss_family = AF_INET6;
663 else if (sa->ss_family != AF_INET6)
664 goto fail;
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100665 return sa;
Willy Tarreaufab5a432011-03-04 15:31:53 +0100666 }
667
Willy Tarreau24709282013-03-10 21:32:12 +0100668 /* Any address for the family, defaults to IPv4 */
Willy Tarreaufab5a432011-03-04 15:31:53 +0100669 if (!str[0] || (str[0] == '*' && !str[1])) {
Willy Tarreau24709282013-03-10 21:32:12 +0100670 if (!sa->ss_family || sa->ss_family == AF_UNSPEC)
671 sa->ss_family = AF_INET;
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100672 return sa;
Willy Tarreaufab5a432011-03-04 15:31:53 +0100673 }
674
675 /* check for IPv6 first */
Willy Tarreau24709282013-03-10 21:32:12 +0100676 if ((!sa->ss_family || sa->ss_family == AF_UNSPEC || sa->ss_family == AF_INET6) &&
677 inet_pton(AF_INET6, str, &((struct sockaddr_in6 *)sa)->sin6_addr)) {
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100678 sa->ss_family = AF_INET6;
679 return sa;
Willy Tarreaufab5a432011-03-04 15:31:53 +0100680 }
681
682 /* then check for IPv4 */
Willy Tarreau24709282013-03-10 21:32:12 +0100683 if ((!sa->ss_family || sa->ss_family == AF_UNSPEC || sa->ss_family == AF_INET) &&
684 inet_pton(AF_INET, str, &((struct sockaddr_in *)sa)->sin_addr)) {
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100685 sa->ss_family = AF_INET;
686 return sa;
Willy Tarreaufab5a432011-03-04 15:31:53 +0100687 }
688
Thierry FOURNIER58639a02014-11-25 12:02:25 +0100689 if (!resolve)
690 return NULL;
691
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200692 if (!dns_hostname_validation(str, NULL))
693 return NULL;
694
David du Colombierd5f43282011-03-17 10:40:16 +0100695#ifdef USE_GETADDRINFO
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200696 if (global.tune.options & GTUNE_USE_GAI) {
David du Colombierd5f43282011-03-17 10:40:16 +0100697 struct addrinfo hints, *result;
698
699 memset(&result, 0, sizeof(result));
700 memset(&hints, 0, sizeof(hints));
Willy Tarreau24709282013-03-10 21:32:12 +0100701 hints.ai_family = sa->ss_family ? sa->ss_family : AF_UNSPEC;
David du Colombierd5f43282011-03-17 10:40:16 +0100702 hints.ai_socktype = SOCK_DGRAM;
Dmitry Sivachenkoeab7f392015-10-02 01:01:58 +0200703 hints.ai_flags = 0;
David du Colombierd5f43282011-03-17 10:40:16 +0100704 hints.ai_protocol = 0;
705
706 if (getaddrinfo(str, NULL, &hints, &result) == 0) {
Willy Tarreau24709282013-03-10 21:32:12 +0100707 if (!sa->ss_family || sa->ss_family == AF_UNSPEC)
708 sa->ss_family = result->ai_family;
709 else if (sa->ss_family != result->ai_family)
710 goto fail;
711
David du Colombierd5f43282011-03-17 10:40:16 +0100712 switch (result->ai_family) {
713 case AF_INET:
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100714 memcpy((struct sockaddr_in *)sa, result->ai_addr, result->ai_addrlen);
715 return sa;
David du Colombierd5f43282011-03-17 10:40:16 +0100716 case AF_INET6:
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100717 memcpy((struct sockaddr_in6 *)sa, result->ai_addr, result->ai_addrlen);
718 return sa;
David du Colombierd5f43282011-03-17 10:40:16 +0100719 }
720 }
721
Sean Carey58ea0392013-02-15 23:39:18 +0100722 if (result)
723 freeaddrinfo(result);
Willy Tarreaufab5a432011-03-04 15:31:53 +0100724 }
David du Colombierd5f43282011-03-17 10:40:16 +0100725#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200726 /* try to resolve an IPv4/IPv6 hostname */
727 he = gethostbyname(str);
728 if (he) {
729 if (!sa->ss_family || sa->ss_family == AF_UNSPEC)
730 sa->ss_family = he->h_addrtype;
731 else if (sa->ss_family != he->h_addrtype)
732 goto fail;
733
734 switch (sa->ss_family) {
735 case AF_INET:
736 ((struct sockaddr_in *)sa)->sin_addr = *(struct in_addr *) *(he->h_addr_list);
737 return sa;
738 case AF_INET6:
739 ((struct sockaddr_in6 *)sa)->sin6_addr = *(struct in6_addr *) *(he->h_addr_list);
740 return sa;
741 }
742 }
743
David du Colombierd5f43282011-03-17 10:40:16 +0100744 /* unsupported address family */
Willy Tarreau24709282013-03-10 21:32:12 +0100745 fail:
Willy Tarreaufab5a432011-03-04 15:31:53 +0100746 return NULL;
747}
748
749/*
Willy Tarreaud4448bc2013-02-20 15:55:15 +0100750 * Converts <str> to a locally allocated struct sockaddr_storage *, and a port
751 * range or offset consisting in two integers that the caller will have to
752 * check to find the relevant input format. The following format are supported :
753 *
754 * String format | address | port | low | high
755 * addr | <addr> | 0 | 0 | 0
756 * addr: | <addr> | 0 | 0 | 0
757 * addr:port | <addr> | <port> | <port> | <port>
758 * addr:pl-ph | <addr> | <pl> | <pl> | <ph>
759 * addr:+port | <addr> | <port> | 0 | <port>
760 * addr:-port | <addr> |-<port> | <port> | 0
761 *
762 * The detection of a port range or increment by the caller is made by
763 * comparing <low> and <high>. If both are equal, then port 0 means no port
764 * was specified. The caller may pass NULL for <low> and <high> if it is not
765 * interested in retrieving port ranges.
766 *
767 * Note that <addr> above may also be :
768 * - empty ("") => family will be AF_INET and address will be INADDR_ANY
769 * - "*" => family will be AF_INET and address will be INADDR_ANY
770 * - "::" => family will be AF_INET6 and address will be IN6ADDR_ANY
771 * - a host name => family and address will depend on host name resolving.
772 *
Willy Tarreau24709282013-03-10 21:32:12 +0100773 * A prefix may be passed in before the address above to force the family :
774 * - "ipv4@" => force address to resolve as IPv4 and fail if not possible.
775 * - "ipv6@" => force address to resolve as IPv6 and fail if not possible.
776 * - "unix@" => force address to be a path to a UNIX socket even if the
777 * path does not start with a '/'
Willy Tarreauccfccef2014-05-10 01:49:15 +0200778 * - 'abns@' -> force address to belong to the abstract namespace (Linux
779 * only). These sockets are just like Unix sockets but without
780 * the need for an underlying file system. The address is a
781 * string. Technically it's like a Unix socket with a zero in
782 * the first byte of the address.
Willy Tarreau40aa0702013-03-10 23:51:38 +0100783 * - "fd@" => an integer must follow, and is a file descriptor number.
Willy Tarreau24709282013-03-10 21:32:12 +0100784 *
mildisff5d5102015-10-26 18:50:08 +0100785 * IPv6 addresses can be declared with or without square brackets. When using
786 * square brackets for IPv6 addresses, the port separator (colon) is optional.
787 * If not using square brackets, and in order to avoid any ambiguity with
788 * IPv6 addresses, the last colon ':' is mandatory even when no port is specified.
789 * NULL is returned if the address cannot be parsed. The <low> and <high> ports
790 * are always initialized if non-null, even for non-IP families.
Willy Tarreaud393a622013-03-04 18:22:00 +0100791 *
792 * If <pfx> is non-null, it is used as a string prefix before any path-based
793 * address (typically the path to a unix socket).
Willy Tarreau40aa0702013-03-10 23:51:38 +0100794 *
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200795 * if <fqdn> is non-null, it will be filled with :
796 * - a pointer to the FQDN of the server name to resolve if there's one, and
797 * that the caller will have to free(),
798 * - NULL if there was an explicit address that doesn't require resolution.
799 *
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +0200800 * Hostnames are only resolved if <resolve> is non-null.
801 *
Willy Tarreau40aa0702013-03-10 23:51:38 +0100802 * When a file descriptor is passed, its value is put into the s_addr part of
803 * the address when cast to sockaddr_in and the address family is AF_UNSPEC.
Willy Tarreaufab5a432011-03-04 15:31:53 +0100804 */
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +0200805struct sockaddr_storage *str2sa_range(const char *str, int *low, int *high, char **err, const char *pfx, char **fqdn, int resolve)
Willy Tarreaufab5a432011-03-04 15:31:53 +0100806{
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100807 static struct sockaddr_storage ss;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100808 struct sockaddr_storage *ret = NULL;
Willy Tarreau24709282013-03-10 21:32:12 +0100809 char *back, *str2;
Willy Tarreaud4448bc2013-02-20 15:55:15 +0100810 char *port1, *port2;
811 int portl, porth, porta;
Willy Tarreauccfccef2014-05-10 01:49:15 +0200812 int abstract = 0;
Willy Tarreaud4448bc2013-02-20 15:55:15 +0100813
814 portl = porth = porta = 0;
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200815 if (fqdn)
816 *fqdn = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200817
Willy Tarreaudad36a32013-03-11 01:20:04 +0100818 str2 = back = env_expand(strdup(str));
Willy Tarreaudf350f12013-03-01 20:22:54 +0100819 if (str2 == NULL) {
820 memprintf(err, "out of memory in '%s'\n", __FUNCTION__);
Willy Tarreaud5191e72010-02-09 20:50:45 +0100821 goto out;
Willy Tarreaudf350f12013-03-01 20:22:54 +0100822 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200823
Willy Tarreau9f69f462015-09-08 16:01:25 +0200824 if (!*str2) {
825 memprintf(err, "'%s' resolves to an empty address (environment variable missing?)\n", str);
826 goto out;
827 }
828
Willy Tarreau24709282013-03-10 21:32:12 +0100829 memset(&ss, 0, sizeof(ss));
830
831 if (strncmp(str2, "unix@", 5) == 0) {
832 str2 += 5;
Willy Tarreauccfccef2014-05-10 01:49:15 +0200833 abstract = 0;
Willy Tarreau24709282013-03-10 21:32:12 +0100834 ss.ss_family = AF_UNIX;
835 }
Willy Tarreauccfccef2014-05-10 01:49:15 +0200836 else if (strncmp(str2, "abns@", 5) == 0) {
837 str2 += 5;
838 abstract = 1;
839 ss.ss_family = AF_UNIX;
840 }
Willy Tarreau24709282013-03-10 21:32:12 +0100841 else if (strncmp(str2, "ipv4@", 5) == 0) {
842 str2 += 5;
843 ss.ss_family = AF_INET;
844 }
845 else if (strncmp(str2, "ipv6@", 5) == 0) {
846 str2 += 5;
847 ss.ss_family = AF_INET6;
848 }
849 else if (*str2 == '/') {
850 ss.ss_family = AF_UNIX;
851 }
852 else
853 ss.ss_family = AF_UNSPEC;
854
Willy Tarreau40aa0702013-03-10 23:51:38 +0100855 if (ss.ss_family == AF_UNSPEC && strncmp(str2, "fd@", 3) == 0) {
856 char *endptr;
857
858 str2 += 3;
859 ((struct sockaddr_in *)&ss)->sin_addr.s_addr = strtol(str2, &endptr, 10);
860
861 if (!*str2 || *endptr) {
Willy Tarreaudad36a32013-03-11 01:20:04 +0100862 memprintf(err, "file descriptor '%s' is not a valid integer in '%s'\n", str2, str);
Willy Tarreau40aa0702013-03-10 23:51:38 +0100863 goto out;
864 }
865
866 /* we return AF_UNSPEC if we use a file descriptor number */
867 ss.ss_family = AF_UNSPEC;
868 }
869 else if (ss.ss_family == AF_UNIX) {
Willy Tarreau15586382013-03-04 19:48:14 +0100870 int prefix_path_len;
871 int max_path_len;
Willy Tarreau94ef3f32014-04-14 14:49:00 +0200872 int adr_len;
Willy Tarreau15586382013-03-04 19:48:14 +0100873
874 /* complete unix socket path name during startup or soft-restart is
875 * <unix_bind_prefix><path>.<pid>.<bak|tmp>
876 */
Willy Tarreauccfccef2014-05-10 01:49:15 +0200877 prefix_path_len = (pfx && !abstract) ? strlen(pfx) : 0;
Willy Tarreau15586382013-03-04 19:48:14 +0100878 max_path_len = (sizeof(((struct sockaddr_un *)&ss)->sun_path) - 1) -
879 (prefix_path_len ? prefix_path_len + 1 + 5 + 1 + 3 : 0);
880
Willy Tarreau94ef3f32014-04-14 14:49:00 +0200881 adr_len = strlen(str2);
882 if (adr_len > max_path_len) {
Willy Tarreau15586382013-03-04 19:48:14 +0100883 memprintf(err, "socket path '%s' too long (max %d)\n", str, max_path_len);
884 goto out;
885 }
886
Willy Tarreauccfccef2014-05-10 01:49:15 +0200887 /* when abstract==1, we skip the first zero and copy all bytes except the trailing zero */
888 memset(((struct sockaddr_un *)&ss)->sun_path, 0, sizeof(((struct sockaddr_un *)&ss)->sun_path));
Willy Tarreau94ef3f32014-04-14 14:49:00 +0200889 if (prefix_path_len)
Willy Tarreau15586382013-03-04 19:48:14 +0100890 memcpy(((struct sockaddr_un *)&ss)->sun_path, pfx, prefix_path_len);
Willy Tarreauccfccef2014-05-10 01:49:15 +0200891 memcpy(((struct sockaddr_un *)&ss)->sun_path + prefix_path_len + abstract, str2, adr_len + 1 - abstract);
Willy Tarreau15586382013-03-04 19:48:14 +0100892 }
Willy Tarreau24709282013-03-10 21:32:12 +0100893 else { /* IPv4 and IPv6 */
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200894 int use_fqdn = 0;
mildisff5d5102015-10-26 18:50:08 +0100895 char *end = str2 + strlen(str2);
896 char *chr;
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200897
mildisff5d5102015-10-26 18:50:08 +0100898 /* search for : or ] whatever comes first */
899 for (chr = end-1; chr > str2; chr--) {
900 if (*chr == ']' || *chr == ':')
901 break;
902 }
903
904 if (*chr == ':') {
905 /* Found a colon before a closing-bracket, must be a port separator.
906 * This guarantee backward compatibility.
907 */
908 *chr++ = '\0';
909 port1 = chr;
910 }
911 else {
912 /* Either no colon and no closing-bracket
913 * or directly ending with a closing-bracket.
914 * However, no port.
915 */
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100916 port1 = "";
mildisff5d5102015-10-26 18:50:08 +0100917 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200918
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200919 if (str2ip2(str2, &ss, 0) == NULL) {
920 use_fqdn = 1;
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +0200921 if (!resolve || str2ip2(str2, &ss, 1) == NULL) {
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200922 memprintf(err, "invalid address: '%s' in '%s'\n", str2, str);
923 goto out;
924 }
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100925 }
Willy Tarreaufab5a432011-03-04 15:31:53 +0100926
Willy Tarreaua39d1992013-04-01 20:37:42 +0200927 if (isdigit((int)(unsigned char)*port1)) { /* single port or range */
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100928 port2 = strchr(port1, '-');
929 if (port2)
930 *port2++ = '\0';
931 else
932 port2 = port1;
933 portl = atoi(port1);
934 porth = atoi(port2);
935 porta = portl;
936 }
937 else if (*port1 == '-') { /* negative offset */
938 portl = atoi(port1 + 1);
939 porta = -portl;
940 }
941 else if (*port1 == '+') { /* positive offset */
942 porth = atoi(port1 + 1);
943 porta = porth;
944 }
945 else if (*port1) { /* other any unexpected char */
Willy Tarreaudad36a32013-03-11 01:20:04 +0100946 memprintf(err, "invalid character '%c' in port number '%s' in '%s'\n", *port1, port1, str);
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100947 goto out;
948 }
949 set_host_port(&ss, porta);
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200950
951 if (use_fqdn && fqdn) {
952 if (str2 != back)
953 memmove(back, str2, strlen(str2) + 1);
954 *fqdn = back;
955 back = NULL;
956 }
Willy Tarreaue4c58c82013-03-06 15:28:17 +0100957 }
Willy Tarreaufab5a432011-03-04 15:31:53 +0100958
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100959 ret = &ss;
Willy Tarreaud5191e72010-02-09 20:50:45 +0100960 out:
Willy Tarreaud4448bc2013-02-20 15:55:15 +0100961 if (low)
962 *low = portl;
963 if (high)
964 *high = porth;
Willy Tarreau24709282013-03-10 21:32:12 +0100965 free(back);
Willy Tarreaud5191e72010-02-09 20:50:45 +0100966 return ret;
Willy Tarreauc6f4ce82009-06-10 11:09:37 +0200967}
968
Willy Tarreau2937c0d2010-01-26 17:36:17 +0100969/* converts <str> to a struct in_addr containing a network mask. It can be
970 * passed in dotted form (255.255.255.0) or in CIDR form (24). It returns 1
971 * if the conversion succeeds otherwise non-zero.
972 */
973int str2mask(const char *str, struct in_addr *mask)
974{
975 if (strchr(str, '.') != NULL) { /* dotted notation */
976 if (!inet_pton(AF_INET, str, mask))
977 return 0;
978 }
979 else { /* mask length */
980 char *err;
981 unsigned long len = strtol(str, &err, 10);
982
983 if (!*str || (err && *err) || (unsigned)len > 32)
984 return 0;
985 if (len)
986 mask->s_addr = htonl(~0UL << (32 - len));
987 else
988 mask->s_addr = 0;
989 }
990 return 1;
991}
992
Thierry FOURNIERb0504632013-12-14 15:39:02 +0100993/* convert <cidr> to struct in_addr <mask>. It returns 1 if the conversion
994 * succeeds otherwise zero.
995 */
996int cidr2dotted(int cidr, struct in_addr *mask) {
997
998 if (cidr < 0 || cidr > 32)
999 return 0;
1000
1001 mask->s_addr = cidr ? htonl(~0UL << (32 - cidr)) : 0;
1002 return 1;
1003}
1004
Thierry Fournier70473a52016-02-17 17:12:14 +01001005/* Convert mask from bit length form to in_addr form.
1006 * This function never fails.
1007 */
1008void len2mask4(int len, struct in_addr *addr)
1009{
1010 if (len >= 32) {
1011 addr->s_addr = 0xffffffff;
1012 return;
1013 }
1014 if (len <= 0) {
1015 addr->s_addr = 0x00000000;
1016 return;
1017 }
1018 addr->s_addr = 0xffffffff << (32 - len);
1019 addr->s_addr = htonl(addr->s_addr);
1020}
1021
1022/* Convert mask from bit length form to in6_addr form.
1023 * This function never fails.
1024 */
1025void len2mask6(int len, struct in6_addr *addr)
1026{
1027 len2mask4(len, (struct in_addr *)&addr->s6_addr[0]); /* msb */
1028 len -= 32;
1029 len2mask4(len, (struct in_addr *)&addr->s6_addr[4]);
1030 len -= 32;
1031 len2mask4(len, (struct in_addr *)&addr->s6_addr[8]);
1032 len -= 32;
1033 len2mask4(len, (struct in_addr *)&addr->s6_addr[12]); /* lsb */
1034}
1035
Willy Tarreauc6f4ce82009-06-10 11:09:37 +02001036/*
Willy Tarreaud077a8e2007-05-08 18:28:09 +02001037 * converts <str> to two struct in_addr* which must be pre-allocated.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001038 * The format is "addr[/mask]", where "addr" cannot be empty, and mask
1039 * is optionnal and either in the dotted or CIDR notation.
1040 * Note: "addr" can also be a hostname. Returns 1 if OK, 0 if error.
1041 */
Thierry FOURNIERfc7ac7b2014-02-11 15:23:04 +01001042int str2net(const char *str, int resolve, struct in_addr *addr, struct in_addr *mask)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001043{
Willy Tarreau8aeae4a2007-06-17 11:42:08 +02001044 __label__ out_free, out_err;
1045 char *c, *s;
1046 int ret_val;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001047
Willy Tarreau8aeae4a2007-06-17 11:42:08 +02001048 s = strdup(str);
1049 if (!s)
1050 return 0;
1051
Willy Tarreaubaaee002006-06-26 02:48:02 +02001052 memset(mask, 0, sizeof(*mask));
1053 memset(addr, 0, sizeof(*addr));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001054
Willy Tarreau8aeae4a2007-06-17 11:42:08 +02001055 if ((c = strrchr(s, '/')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001056 *c++ = '\0';
1057 /* c points to the mask */
Willy Tarreau2937c0d2010-01-26 17:36:17 +01001058 if (!str2mask(c, mask))
1059 goto out_err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001060 }
1061 else {
Willy Tarreauebd61602006-12-30 11:54:15 +01001062 mask->s_addr = ~0U;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001063 }
Willy Tarreau8aeae4a2007-06-17 11:42:08 +02001064 if (!inet_pton(AF_INET, s, addr)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001065 struct hostent *he;
1066
Thierry FOURNIERfc7ac7b2014-02-11 15:23:04 +01001067 if (!resolve)
1068 goto out_err;
1069
Willy Tarreau8aeae4a2007-06-17 11:42:08 +02001070 if ((he = gethostbyname(s)) == NULL) {
1071 goto out_err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001072 }
1073 else
1074 *addr = *(struct in_addr *) *(he->h_addr_list);
1075 }
Willy Tarreau8aeae4a2007-06-17 11:42:08 +02001076
1077 ret_val = 1;
1078 out_free:
1079 free(s);
1080 return ret_val;
1081 out_err:
1082 ret_val = 0;
1083 goto out_free;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001084}
1085
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001086
1087/*
Willy Tarreau6d20e282012-04-27 22:49:47 +02001088 * converts <str> to two struct in6_addr* which must be pre-allocated.
1089 * The format is "addr[/mask]", where "addr" cannot be empty, and mask
1090 * is an optionnal number of bits (128 being the default).
1091 * Returns 1 if OK, 0 if error.
1092 */
1093int str62net(const char *str, struct in6_addr *addr, unsigned char *mask)
1094{
1095 char *c, *s;
1096 int ret_val = 0;
1097 char *err;
1098 unsigned long len = 128;
1099
1100 s = strdup(str);
1101 if (!s)
1102 return 0;
1103
1104 memset(mask, 0, sizeof(*mask));
1105 memset(addr, 0, sizeof(*addr));
1106
1107 if ((c = strrchr(s, '/')) != NULL) {
1108 *c++ = '\0'; /* c points to the mask */
1109 if (!*c)
1110 goto out_free;
1111
1112 len = strtoul(c, &err, 10);
1113 if ((err && *err) || (unsigned)len > 128)
1114 goto out_free;
1115 }
1116 *mask = len; /* OK we have a valid mask in <len> */
1117
1118 if (!inet_pton(AF_INET6, s, addr))
1119 goto out_free;
1120
1121 ret_val = 1;
1122 out_free:
1123 free(s);
1124 return ret_val;
1125}
1126
1127
1128/*
David du Colombier6f5ccb12011-03-10 22:26:24 +01001129 * Parse IPv4 address found in url.
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001130 */
David du Colombier6f5ccb12011-03-10 22:26:24 +01001131int url2ipv4(const char *addr, struct in_addr *dst)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001132{
1133 int saw_digit, octets, ch;
1134 u_char tmp[4], *tp;
1135 const char *cp = addr;
1136
1137 saw_digit = 0;
1138 octets = 0;
1139 *(tp = tmp) = 0;
1140
1141 while (*addr) {
1142 unsigned char digit = (ch = *addr++) - '0';
1143 if (digit > 9 && ch != '.')
1144 break;
1145 if (digit <= 9) {
1146 u_int new = *tp * 10 + digit;
1147 if (new > 255)
1148 return 0;
1149 *tp = new;
1150 if (!saw_digit) {
1151 if (++octets > 4)
1152 return 0;
1153 saw_digit = 1;
1154 }
1155 } else if (ch == '.' && saw_digit) {
1156 if (octets == 4)
1157 return 0;
1158 *++tp = 0;
1159 saw_digit = 0;
1160 } else
1161 return 0;
1162 }
1163
1164 if (octets < 4)
1165 return 0;
1166
1167 memcpy(&dst->s_addr, tmp, 4);
1168 return addr-cp-1;
1169}
1170
1171/*
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001172 * Resolve destination server from URL. Convert <str> to a sockaddr_storage.
1173 * <out> contain the code of the dectected scheme, the start and length of
1174 * the hostname. Actually only http and https are supported. <out> can be NULL.
1175 * This function returns the consumed length. It is useful if you parse complete
1176 * url like http://host:port/path, because the consumed length corresponds to
1177 * the first character of the path. If the conversion fails, it returns -1.
1178 *
1179 * This function tries to resolve the DNS name if haproxy is in starting mode.
1180 * So, this function may be used during the configuration parsing.
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001181 */
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001182int url2sa(const char *url, int ulen, struct sockaddr_storage *addr, struct split_url *out)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001183{
1184 const char *curr = url, *cp = url;
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001185 const char *end;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001186 int ret, url_code = 0;
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001187 unsigned long long int http_code = 0;
1188 int default_port;
1189 struct hostent *he;
1190 char *p;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001191
1192 /* Firstly, try to find :// pattern */
1193 while (curr < url+ulen && url_code != 0x3a2f2f) {
1194 url_code = ((url_code & 0xffff) << 8);
1195 url_code += (unsigned char)*curr++;
1196 }
1197
1198 /* Secondly, if :// pattern is found, verify parsed stuff
1199 * before pattern is matching our http pattern.
1200 * If so parse ip address and port in uri.
1201 *
1202 * WARNING: Current code doesn't support dynamic async dns resolver.
1203 */
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001204 if (url_code != 0x3a2f2f)
1205 return -1;
1206
1207 /* Copy scheme, and utrn to lower case. */
1208 while (cp < curr - 3)
1209 http_code = (http_code << 8) + *cp++;
1210 http_code |= 0x2020202020202020ULL; /* Turn everything to lower case */
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001211
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001212 /* HTTP or HTTPS url matching */
1213 if (http_code == 0x2020202068747470ULL) {
1214 default_port = 80;
1215 if (out)
1216 out->scheme = SCH_HTTP;
1217 }
1218 else if (http_code == 0x2020206874747073ULL) {
1219 default_port = 443;
1220 if (out)
1221 out->scheme = SCH_HTTPS;
1222 }
1223 else
1224 return -1;
1225
1226 /* If the next char is '[', the host address is IPv6. */
1227 if (*curr == '[') {
1228 curr++;
1229
1230 /* Check trash size */
1231 if (trash.size < ulen)
1232 return -1;
1233
1234 /* Look for ']' and copy the address in a trash buffer. */
1235 p = trash.str;
1236 for (end = curr;
1237 end < url + ulen && *end != ']';
1238 end++, p++)
1239 *p = *end;
1240 if (*end != ']')
1241 return -1;
1242 *p = '\0';
1243
1244 /* Update out. */
1245 if (out) {
1246 out->host = curr;
1247 out->host_len = end - curr;
1248 }
1249
1250 /* Try IPv6 decoding. */
1251 if (!inet_pton(AF_INET6, trash.str, &((struct sockaddr_in6 *)addr)->sin6_addr))
1252 return -1;
1253 end++;
1254
1255 /* Decode port. */
1256 if (*end == ':') {
1257 end++;
1258 default_port = read_uint(&end, url + ulen);
1259 }
1260 ((struct sockaddr_in6 *)addr)->sin6_port = htons(default_port);
1261 ((struct sockaddr_in6 *)addr)->sin6_family = AF_INET6;
1262 return end - url;
1263 }
1264 else {
1265 /* We are looking for IP address. If you want to parse and
1266 * resolve hostname found in url, you can use str2sa_range(), but
1267 * be warned this can slow down global daemon performances
1268 * while handling lagging dns responses.
1269 */
1270 ret = url2ipv4(curr, &((struct sockaddr_in *)addr)->sin_addr);
1271 if (ret) {
1272 /* Update out. */
1273 if (out) {
1274 out->host = curr;
1275 out->host_len = ret;
1276 }
1277
1278 curr += ret;
1279
1280 /* Decode port. */
1281 if (*curr == ':') {
1282 curr++;
1283 default_port = read_uint(&curr, url + ulen);
1284 }
1285 ((struct sockaddr_in *)addr)->sin_port = htons(default_port);
1286
1287 /* Set family. */
1288 ((struct sockaddr_in *)addr)->sin_family = AF_INET;
1289 return curr - url;
1290 }
1291 else if (global.mode & MODE_STARTING) {
1292 /* The IPv4 and IPv6 decoding fails, maybe the url contain name. Try to execute
1293 * synchronous DNS request only if HAProxy is in the start state.
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001294 */
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001295
1296 /* look for : or / or end */
1297 for (end = curr;
1298 end < url + ulen && *end != '/' && *end != ':';
1299 end++);
1300 memcpy(trash.str, curr, end - curr);
1301 trash.str[end - curr] = '\0';
1302
1303 /* try to resolve an IPv4/IPv6 hostname */
1304 he = gethostbyname(trash.str);
1305 if (!he)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001306 return -1;
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001307
1308 /* Update out. */
1309 if (out) {
1310 out->host = curr;
1311 out->host_len = end - curr;
1312 }
1313
1314 /* Decode port. */
1315 if (*end == ':') {
1316 end++;
1317 default_port = read_uint(&end, url + ulen);
1318 }
1319
1320 /* Copy IP address, set port and family. */
1321 switch (he->h_addrtype) {
1322 case AF_INET:
1323 ((struct sockaddr_in *)addr)->sin_addr = *(struct in_addr *) *(he->h_addr_list);
1324 ((struct sockaddr_in *)addr)->sin_port = htons(default_port);
1325 ((struct sockaddr_in *)addr)->sin_family = AF_INET;
1326 return end - url;
1327
1328 case AF_INET6:
1329 ((struct sockaddr_in6 *)addr)->sin6_addr = *(struct in6_addr *) *(he->h_addr_list);
1330 ((struct sockaddr_in6 *)addr)->sin6_port = htons(default_port);
1331 ((struct sockaddr_in6 *)addr)->sin6_family = AF_INET6;
1332 return end - url;
1333 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001334 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001335 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001336 return -1;
1337}
1338
Willy Tarreau631f01c2011-09-05 00:36:48 +02001339/* Tries to convert a sockaddr_storage address to text form. Upon success, the
1340 * address family is returned so that it's easy for the caller to adapt to the
1341 * output format. Zero is returned if the address family is not supported. -1
1342 * is returned upon error, with errno set. AF_INET, AF_INET6 and AF_UNIX are
1343 * supported.
1344 */
1345int addr_to_str(struct sockaddr_storage *addr, char *str, int size)
1346{
1347
1348 void *ptr;
1349
1350 if (size < 5)
1351 return 0;
1352 *str = '\0';
1353
1354 switch (addr->ss_family) {
1355 case AF_INET:
1356 ptr = &((struct sockaddr_in *)addr)->sin_addr;
1357 break;
1358 case AF_INET6:
1359 ptr = &((struct sockaddr_in6 *)addr)->sin6_addr;
1360 break;
1361 case AF_UNIX:
1362 memcpy(str, "unix", 5);
1363 return addr->ss_family;
1364 default:
1365 return 0;
1366 }
1367
1368 if (inet_ntop(addr->ss_family, ptr, str, size))
1369 return addr->ss_family;
1370
1371 /* failed */
1372 return -1;
1373}
1374
Simon Horman75ab8bd2014-06-16 09:39:41 +09001375/* Tries to convert a sockaddr_storage port to text form. Upon success, the
1376 * address family is returned so that it's easy for the caller to adapt to the
1377 * output format. Zero is returned if the address family is not supported. -1
1378 * is returned upon error, with errno set. AF_INET, AF_INET6 and AF_UNIX are
1379 * supported.
1380 */
1381int port_to_str(struct sockaddr_storage *addr, char *str, int size)
1382{
1383
1384 uint16_t port;
1385
1386
1387 if (size < 5)
1388 return 0;
1389 *str = '\0';
1390
1391 switch (addr->ss_family) {
1392 case AF_INET:
1393 port = ((struct sockaddr_in *)addr)->sin_port;
1394 break;
1395 case AF_INET6:
1396 port = ((struct sockaddr_in6 *)addr)->sin6_port;
1397 break;
1398 case AF_UNIX:
1399 memcpy(str, "unix", 5);
1400 return addr->ss_family;
1401 default:
1402 return 0;
1403 }
1404
1405 snprintf(str, size, "%u", ntohs(port));
1406 return addr->ss_family;
1407}
1408
Willy Tarreaubaaee002006-06-26 02:48:02 +02001409/* will try to encode the string <string> replacing all characters tagged in
1410 * <map> with the hexadecimal representation of their ASCII-code (2 digits)
1411 * prefixed by <escape>, and will store the result between <start> (included)
1412 * and <stop> (excluded), and will always terminate the string with a '\0'
1413 * before <stop>. The position of the '\0' is returned if the conversion
1414 * completes. If bytes are missing between <start> and <stop>, then the
1415 * conversion will be incomplete and truncated. If <stop> <= <start>, the '\0'
1416 * cannot even be stored so we return <start> without writing the 0.
1417 * The input string must also be zero-terminated.
1418 */
1419const char hextab[16] = "0123456789ABCDEF";
1420char *encode_string(char *start, char *stop,
1421 const char escape, const fd_set *map,
1422 const char *string)
1423{
1424 if (start < stop) {
1425 stop--; /* reserve one byte for the final '\0' */
1426 while (start < stop && *string != '\0') {
1427 if (!FD_ISSET((unsigned char)(*string), map))
1428 *start++ = *string;
1429 else {
1430 if (start + 3 >= stop)
1431 break;
1432 *start++ = escape;
1433 *start++ = hextab[(*string >> 4) & 15];
1434 *start++ = hextab[*string & 15];
1435 }
1436 string++;
1437 }
1438 *start = '\0';
1439 }
1440 return start;
1441}
1442
Thierry FOURNIERe059ec92014-03-17 12:01:13 +01001443/*
1444 * Same behavior as encode_string() above, except that it encodes chunk
1445 * <chunk> instead of a string.
1446 */
1447char *encode_chunk(char *start, char *stop,
1448 const char escape, const fd_set *map,
1449 const struct chunk *chunk)
1450{
1451 char *str = chunk->str;
1452 char *end = chunk->str + chunk->len;
1453
1454 if (start < stop) {
1455 stop--; /* reserve one byte for the final '\0' */
1456 while (start < stop && str < end) {
1457 if (!FD_ISSET((unsigned char)(*str), map))
1458 *start++ = *str;
1459 else {
1460 if (start + 3 >= stop)
1461 break;
1462 *start++ = escape;
1463 *start++ = hextab[(*str >> 4) & 15];
1464 *start++ = hextab[*str & 15];
1465 }
1466 str++;
1467 }
1468 *start = '\0';
1469 }
1470 return start;
1471}
1472
Dragan Dosen0edd1092016-02-12 13:23:02 +01001473/*
1474 * Tries to prefix characters tagged in the <map> with the <escape>
1475 * character. <chunk> contains the input to be escaped. The result will be
1476 * stored between <start> (included) and <stop> (excluded). The function
1477 * will always try to terminate the resulting string with a '\0' before
1478 * <stop>, and will return its position if the conversion completes.
1479 */
1480char *escape_chunk(char *start, char *stop,
1481 const char escape, const fd_set *map,
1482 const struct chunk *chunk)
1483{
1484 char *str = chunk->str;
1485 char *end = chunk->str + chunk->len;
1486
1487 if (start < stop) {
1488 stop--; /* reserve one byte for the final '\0' */
1489 while (start < stop && str < end) {
1490 if (!FD_ISSET((unsigned char)(*str), map))
1491 *start++ = *str;
1492 else {
1493 if (start + 2 >= stop)
1494 break;
1495 *start++ = escape;
1496 *start++ = *str;
1497 }
1498 str++;
1499 }
1500 *start = '\0';
1501 }
1502 return start;
1503}
1504
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001505/* Check a string for using it in a CSV output format. If the string contains
1506 * one of the following four char <">, <,>, CR or LF, the string is
1507 * encapsulated between <"> and the <"> are escaped by a <""> sequence.
1508 * <str> is the input string to be escaped. The function assumes that
1509 * the input string is null-terminated.
1510 *
1511 * If <quote> is 0, the result is returned escaped but without double quote.
Willy Tarreau898529b2016-01-06 18:07:04 +01001512 * It is useful if the escaped string is used between double quotes in the
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001513 * format.
1514 *
Willy Tarreau898529b2016-01-06 18:07:04 +01001515 * printf("..., \"%s\", ...\r\n", csv_enc(str, 0, &trash));
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001516 *
Willy Tarreaub631c292016-01-08 10:04:08 +01001517 * If <quote> is 1, the converter puts the quotes only if any reserved character
1518 * is present. If <quote> is 2, the converter always puts the quotes.
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001519 *
Willy Tarreau898529b2016-01-06 18:07:04 +01001520 * <output> is a struct chunk used for storing the output string.
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001521 *
Willy Tarreau898529b2016-01-06 18:07:04 +01001522 * The function returns the converted string on its output. If an error
1523 * occurs, the function returns an empty string. This type of output is useful
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001524 * for using the function directly as printf() argument.
1525 *
1526 * If the output buffer is too short to contain the input string, the result
1527 * is truncated.
Willy Tarreau898529b2016-01-06 18:07:04 +01001528 *
Willy Tarreaub631c292016-01-08 10:04:08 +01001529 * This function appends the encoding to the existing output chunk, and it
1530 * guarantees that it starts immediately at the first available character of
1531 * the chunk. Please use csv_enc() instead if you want to replace the output
1532 * chunk.
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001533 */
Willy Tarreau898529b2016-01-06 18:07:04 +01001534const char *csv_enc_append(const char *str, int quote, struct chunk *output)
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001535{
1536 char *end = output->str + output->size;
Willy Tarreaub631c292016-01-08 10:04:08 +01001537 char *out = output->str + output->len;
Willy Tarreau898529b2016-01-06 18:07:04 +01001538 char *ptr = out;
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001539
Willy Tarreaub631c292016-01-08 10:04:08 +01001540 if (quote == 1) {
1541 /* automatic quoting: first verify if we'll have to quote the string */
1542 if (!strpbrk(str, "\n\r,\""))
1543 quote = 0;
1544 }
1545
1546 if (quote)
1547 *ptr++ = '"';
1548
Willy Tarreau898529b2016-01-06 18:07:04 +01001549 while (*str && ptr < end - 2) { /* -2 for reserving space for <"> and \0. */
1550 *ptr = *str;
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001551 if (*str == '"') {
Willy Tarreau898529b2016-01-06 18:07:04 +01001552 ptr++;
1553 if (ptr >= end - 2) {
1554 ptr--;
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001555 break;
1556 }
Willy Tarreau898529b2016-01-06 18:07:04 +01001557 *ptr = '"';
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001558 }
Willy Tarreau898529b2016-01-06 18:07:04 +01001559 ptr++;
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001560 str++;
1561 }
1562
Willy Tarreaub631c292016-01-08 10:04:08 +01001563 if (quote)
1564 *ptr++ = '"';
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001565
Willy Tarreau898529b2016-01-06 18:07:04 +01001566 *ptr = '\0';
1567 output->len = ptr - output->str;
1568 return out;
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001569}
1570
Willy Tarreaubf9c2fc2011-05-31 18:06:18 +02001571/* Decode an URL-encoded string in-place. The resulting string might
1572 * be shorter. If some forbidden characters are found, the conversion is
Thierry FOURNIER5068d962013-10-04 16:27:27 +02001573 * aborted, the string is truncated before the issue and a negative value is
1574 * returned, otherwise the operation returns the length of the decoded string.
Willy Tarreaubf9c2fc2011-05-31 18:06:18 +02001575 */
1576int url_decode(char *string)
1577{
1578 char *in, *out;
Thierry FOURNIER5068d962013-10-04 16:27:27 +02001579 int ret = -1;
Willy Tarreaubf9c2fc2011-05-31 18:06:18 +02001580
1581 in = string;
1582 out = string;
1583 while (*in) {
1584 switch (*in) {
1585 case '+' :
1586 *out++ = ' ';
1587 break;
1588 case '%' :
1589 if (!ishex(in[1]) || !ishex(in[2]))
1590 goto end;
1591 *out++ = (hex2i(in[1]) << 4) + hex2i(in[2]);
1592 in += 2;
1593 break;
1594 default:
1595 *out++ = *in;
1596 break;
1597 }
1598 in++;
1599 }
Thierry FOURNIER5068d962013-10-04 16:27:27 +02001600 ret = out - string; /* success */
Willy Tarreaubf9c2fc2011-05-31 18:06:18 +02001601 end:
1602 *out = 0;
1603 return ret;
1604}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001605
Willy Tarreau6911fa42007-03-04 18:06:08 +01001606unsigned int str2ui(const char *s)
1607{
1608 return __str2ui(s);
1609}
1610
1611unsigned int str2uic(const char *s)
1612{
1613 return __str2uic(s);
1614}
1615
1616unsigned int strl2ui(const char *s, int len)
1617{
1618 return __strl2ui(s, len);
1619}
1620
1621unsigned int strl2uic(const char *s, int len)
1622{
1623 return __strl2uic(s, len);
1624}
1625
Willy Tarreau4ec83cd2010-10-15 23:19:55 +02001626unsigned int read_uint(const char **s, const char *end)
1627{
1628 return __read_uint(s, end);
1629}
1630
Thierry FOURNIER763a5d82015-07-06 23:09:52 +02001631/* This function reads an unsigned integer from the string pointed to by <s> and
1632 * returns it. The <s> pointer is adjusted to point to the first unread char. The
1633 * function automatically stops at <end>. If the number overflows, the 2^64-1
1634 * value is returned.
1635 */
1636unsigned long long int read_uint64(const char **s, const char *end)
1637{
1638 const char *ptr = *s;
1639 unsigned long long int i = 0, tmp;
1640 unsigned int j;
1641
1642 while (ptr < end) {
1643
1644 /* read next char */
1645 j = *ptr - '0';
1646 if (j > 9)
1647 goto read_uint64_end;
1648
1649 /* add char to the number and check overflow. */
1650 tmp = i * 10;
1651 if (tmp / 10 != i) {
1652 i = ULLONG_MAX;
1653 goto read_uint64_eat;
1654 }
1655 if (ULLONG_MAX - tmp < j) {
1656 i = ULLONG_MAX;
1657 goto read_uint64_eat;
1658 }
1659 i = tmp + j;
1660 ptr++;
1661 }
1662read_uint64_eat:
1663 /* eat each numeric char */
1664 while (ptr < end) {
1665 if ((unsigned int)(*ptr - '0') > 9)
1666 break;
1667 ptr++;
1668 }
1669read_uint64_end:
1670 *s = ptr;
1671 return i;
1672}
1673
1674/* This function reads an integer from the string pointed to by <s> and returns
1675 * it. The <s> pointer is adjusted to point to the first unread char. The function
1676 * automatically stops at <end>. Il the number is bigger than 2^63-2, the 2^63-1
1677 * value is returned. If the number is lowest than -2^63-1, the -2^63 value is
1678 * returned.
1679 */
1680long long int read_int64(const char **s, const char *end)
1681{
1682 unsigned long long int i = 0;
1683 int neg = 0;
1684
1685 /* Look for minus char. */
1686 if (**s == '-') {
1687 neg = 1;
1688 (*s)++;
1689 }
1690 else if (**s == '+')
1691 (*s)++;
1692
1693 /* convert as positive number. */
1694 i = read_uint64(s, end);
1695
1696 if (neg) {
1697 if (i > 0x8000000000000000ULL)
1698 return LLONG_MIN;
1699 return -i;
1700 }
1701 if (i > 0x7fffffffffffffffULL)
1702 return LLONG_MAX;
1703 return i;
1704}
1705
Willy Tarreau6911fa42007-03-04 18:06:08 +01001706/* This one is 7 times faster than strtol() on athlon with checks.
1707 * It returns the value of the number composed of all valid digits read,
1708 * and can process negative numbers too.
1709 */
1710int strl2ic(const char *s, int len)
1711{
1712 int i = 0;
Willy Tarreau3f0c9762007-10-25 09:42:24 +02001713 int j, k;
Willy Tarreau6911fa42007-03-04 18:06:08 +01001714
1715 if (len > 0) {
1716 if (*s != '-') {
1717 /* positive number */
1718 while (len-- > 0) {
1719 j = (*s++) - '0';
Willy Tarreau3f0c9762007-10-25 09:42:24 +02001720 k = i * 10;
Willy Tarreau6911fa42007-03-04 18:06:08 +01001721 if (j > 9)
1722 break;
Willy Tarreau3f0c9762007-10-25 09:42:24 +02001723 i = k + j;
Willy Tarreau6911fa42007-03-04 18:06:08 +01001724 }
1725 } else {
1726 /* negative number */
1727 s++;
1728 while (--len > 0) {
1729 j = (*s++) - '0';
Willy Tarreau3f0c9762007-10-25 09:42:24 +02001730 k = i * 10;
Willy Tarreau6911fa42007-03-04 18:06:08 +01001731 if (j > 9)
1732 break;
Willy Tarreau3f0c9762007-10-25 09:42:24 +02001733 i = k - j;
Willy Tarreau6911fa42007-03-04 18:06:08 +01001734 }
1735 }
1736 }
1737 return i;
1738}
1739
1740
1741/* This function reads exactly <len> chars from <s> and converts them to a
1742 * signed integer which it stores into <ret>. It accurately detects any error
1743 * (truncated string, invalid chars, overflows). It is meant to be used in
1744 * applications designed for hostile environments. It returns zero when the
1745 * number has successfully been converted, non-zero otherwise. When an error
1746 * is returned, the <ret> value is left untouched. It is yet 5 to 40 times
1747 * faster than strtol().
1748 */
1749int strl2irc(const char *s, int len, int *ret)
1750{
1751 int i = 0;
1752 int j;
1753
1754 if (!len)
1755 return 1;
1756
1757 if (*s != '-') {
1758 /* positive number */
1759 while (len-- > 0) {
1760 j = (*s++) - '0';
1761 if (j > 9) return 1; /* invalid char */
1762 if (i > INT_MAX / 10) return 1; /* check for multiply overflow */
1763 i = i * 10;
1764 if (i + j < i) return 1; /* check for addition overflow */
1765 i = i + j;
1766 }
1767 } else {
1768 /* negative number */
1769 s++;
1770 while (--len > 0) {
1771 j = (*s++) - '0';
1772 if (j > 9) return 1; /* invalid char */
1773 if (i < INT_MIN / 10) return 1; /* check for multiply overflow */
1774 i = i * 10;
1775 if (i - j > i) return 1; /* check for subtract overflow */
1776 i = i - j;
1777 }
1778 }
1779 *ret = i;
1780 return 0;
1781}
1782
1783
1784/* This function reads exactly <len> chars from <s> and converts them to a
1785 * signed integer which it stores into <ret>. It accurately detects any error
1786 * (truncated string, invalid chars, overflows). It is meant to be used in
1787 * applications designed for hostile environments. It returns zero when the
1788 * number has successfully been converted, non-zero otherwise. When an error
1789 * is returned, the <ret> value is left untouched. It is about 3 times slower
1790 * than str2irc().
1791 */
Willy Tarreau6911fa42007-03-04 18:06:08 +01001792
1793int strl2llrc(const char *s, int len, long long *ret)
1794{
1795 long long i = 0;
1796 int j;
1797
1798 if (!len)
1799 return 1;
1800
1801 if (*s != '-') {
1802 /* positive number */
1803 while (len-- > 0) {
1804 j = (*s++) - '0';
1805 if (j > 9) return 1; /* invalid char */
1806 if (i > LLONG_MAX / 10LL) return 1; /* check for multiply overflow */
1807 i = i * 10LL;
1808 if (i + j < i) return 1; /* check for addition overflow */
1809 i = i + j;
1810 }
1811 } else {
1812 /* negative number */
1813 s++;
1814 while (--len > 0) {
1815 j = (*s++) - '0';
1816 if (j > 9) return 1; /* invalid char */
1817 if (i < LLONG_MIN / 10LL) return 1; /* check for multiply overflow */
1818 i = i * 10LL;
1819 if (i - j > i) return 1; /* check for subtract overflow */
1820 i = i - j;
1821 }
1822 }
1823 *ret = i;
1824 return 0;
1825}
1826
Thierry FOURNIER511e9472014-01-23 17:40:34 +01001827/* This function is used with pat_parse_dotted_ver(). It converts a string
1828 * composed by two number separated by a dot. Each part must contain in 16 bits
1829 * because internally they will be represented as a 32-bit quantity stored in
1830 * a 64-bit integer. It returns zero when the number has successfully been
1831 * converted, non-zero otherwise. When an error is returned, the <ret> value
1832 * is left untouched.
1833 *
1834 * "1.3" -> 0x0000000000010003
1835 * "65535.65535" -> 0x00000000ffffffff
1836 */
1837int strl2llrc_dotted(const char *text, int len, long long *ret)
1838{
1839 const char *end = &text[len];
1840 const char *p;
1841 long long major, minor;
1842
1843 /* Look for dot. */
1844 for (p = text; p < end; p++)
1845 if (*p == '.')
1846 break;
1847
1848 /* Convert major. */
1849 if (strl2llrc(text, p - text, &major) != 0)
1850 return 1;
1851
1852 /* Check major. */
1853 if (major >= 65536)
1854 return 1;
1855
1856 /* Convert minor. */
1857 minor = 0;
1858 if (p < end)
1859 if (strl2llrc(p + 1, end - (p + 1), &minor) != 0)
1860 return 1;
1861
1862 /* Check minor. */
1863 if (minor >= 65536)
1864 return 1;
1865
1866 /* Compose value. */
1867 *ret = (major << 16) | (minor & 0xffff);
1868 return 0;
1869}
1870
Willy Tarreaua0d37b62007-12-02 22:00:35 +01001871/* This function parses a time value optionally followed by a unit suffix among
1872 * "d", "h", "m", "s", "ms" or "us". It converts the value into the unit
1873 * expected by the caller. The computation does its best to avoid overflows.
1874 * The value is returned in <ret> if everything is fine, and a NULL is returned
1875 * by the function. In case of error, a pointer to the error is returned and
1876 * <ret> is left untouched. Values are automatically rounded up when needed.
1877 */
1878const char *parse_time_err(const char *text, unsigned *ret, unsigned unit_flags)
1879{
1880 unsigned imult, idiv;
1881 unsigned omult, odiv;
1882 unsigned value;
1883
1884 omult = odiv = 1;
1885
1886 switch (unit_flags & TIME_UNIT_MASK) {
1887 case TIME_UNIT_US: omult = 1000000; break;
1888 case TIME_UNIT_MS: omult = 1000; break;
1889 case TIME_UNIT_S: break;
1890 case TIME_UNIT_MIN: odiv = 60; break;
1891 case TIME_UNIT_HOUR: odiv = 3600; break;
1892 case TIME_UNIT_DAY: odiv = 86400; break;
1893 default: break;
1894 }
1895
1896 value = 0;
1897
1898 while (1) {
1899 unsigned int j;
1900
1901 j = *text - '0';
1902 if (j > 9)
1903 break;
1904 text++;
1905 value *= 10;
1906 value += j;
1907 }
1908
1909 imult = idiv = 1;
1910 switch (*text) {
1911 case '\0': /* no unit = default unit */
1912 imult = omult = idiv = odiv = 1;
1913 break;
1914 case 's': /* second = unscaled unit */
1915 break;
1916 case 'u': /* microsecond : "us" */
1917 if (text[1] == 's') {
1918 idiv = 1000000;
1919 text++;
1920 }
1921 break;
1922 case 'm': /* millisecond : "ms" or minute: "m" */
1923 if (text[1] == 's') {
1924 idiv = 1000;
1925 text++;
1926 } else
1927 imult = 60;
1928 break;
1929 case 'h': /* hour : "h" */
1930 imult = 3600;
1931 break;
1932 case 'd': /* day : "d" */
1933 imult = 86400;
1934 break;
1935 default:
1936 return text;
1937 break;
1938 }
1939
1940 if (omult % idiv == 0) { omult /= idiv; idiv = 1; }
1941 if (idiv % omult == 0) { idiv /= omult; omult = 1; }
1942 if (imult % odiv == 0) { imult /= odiv; odiv = 1; }
1943 if (odiv % imult == 0) { odiv /= imult; imult = 1; }
1944
1945 value = (value * (imult * omult) + (idiv * odiv - 1)) / (idiv * odiv);
1946 *ret = value;
1947 return NULL;
1948}
Willy Tarreau6911fa42007-03-04 18:06:08 +01001949
Emeric Brun39132b22010-01-04 14:57:24 +01001950/* this function converts the string starting at <text> to an unsigned int
1951 * stored in <ret>. If an error is detected, the pointer to the unexpected
1952 * character is returned. If the conversio is succesful, NULL is returned.
1953 */
1954const char *parse_size_err(const char *text, unsigned *ret) {
1955 unsigned value = 0;
1956
1957 while (1) {
1958 unsigned int j;
1959
1960 j = *text - '0';
1961 if (j > 9)
1962 break;
1963 if (value > ~0U / 10)
1964 return text;
1965 value *= 10;
1966 if (value > (value + j))
1967 return text;
1968 value += j;
1969 text++;
1970 }
1971
1972 switch (*text) {
1973 case '\0':
1974 break;
1975 case 'K':
1976 case 'k':
1977 if (value > ~0U >> 10)
1978 return text;
1979 value = value << 10;
1980 break;
1981 case 'M':
1982 case 'm':
1983 if (value > ~0U >> 20)
1984 return text;
1985 value = value << 20;
1986 break;
1987 case 'G':
1988 case 'g':
1989 if (value > ~0U >> 30)
1990 return text;
1991 value = value << 30;
1992 break;
1993 default:
1994 return text;
1995 }
1996
Godbach58048a22015-01-28 17:36:16 +08001997 if (*text != '\0' && *++text != '\0')
1998 return text;
1999
Emeric Brun39132b22010-01-04 14:57:24 +01002000 *ret = value;
2001 return NULL;
2002}
2003
Willy Tarreau126d4062013-12-03 17:50:47 +01002004/*
2005 * Parse binary string written in hexadecimal (source) and store the decoded
2006 * result into binstr and set binstrlen to the lengh of binstr. Memory for
2007 * binstr is allocated by the function. In case of error, returns 0 with an
Thierry FOURNIERee330af2014-01-21 11:36:14 +01002008 * error message in err. In succes case, it returns the consumed length.
Willy Tarreau126d4062013-12-03 17:50:47 +01002009 */
2010int parse_binary(const char *source, char **binstr, int *binstrlen, char **err)
2011{
2012 int len;
2013 const char *p = source;
2014 int i,j;
Thierry FOURNIER9645d422013-12-06 19:59:28 +01002015 int alloc;
Willy Tarreau126d4062013-12-03 17:50:47 +01002016
2017 len = strlen(source);
2018 if (len % 2) {
2019 memprintf(err, "an even number of hex digit is expected");
2020 return 0;
2021 }
2022
2023 len = len >> 1;
Thierry FOURNIER9645d422013-12-06 19:59:28 +01002024
Willy Tarreau126d4062013-12-03 17:50:47 +01002025 if (!*binstr) {
Thierry FOURNIER9645d422013-12-06 19:59:28 +01002026 *binstr = calloc(len, sizeof(char));
2027 if (!*binstr) {
2028 memprintf(err, "out of memory while loading string pattern");
2029 return 0;
2030 }
2031 alloc = 1;
Willy Tarreau126d4062013-12-03 17:50:47 +01002032 }
Thierry FOURNIER9645d422013-12-06 19:59:28 +01002033 else {
2034 if (*binstrlen < len) {
2035 memprintf(err, "no space avalaible in the buffer. expect %d, provides %d",
2036 len, *binstrlen);
2037 return 0;
2038 }
2039 alloc = 0;
2040 }
2041 *binstrlen = len;
Willy Tarreau126d4062013-12-03 17:50:47 +01002042
2043 i = j = 0;
2044 while (j < len) {
2045 if (!ishex(p[i++]))
2046 goto bad_input;
2047 if (!ishex(p[i++]))
2048 goto bad_input;
2049 (*binstr)[j++] = (hex2i(p[i-2]) << 4) + hex2i(p[i-1]);
2050 }
Thierry FOURNIERee330af2014-01-21 11:36:14 +01002051 return len << 1;
Willy Tarreau126d4062013-12-03 17:50:47 +01002052
2053bad_input:
2054 memprintf(err, "an hex digit is expected (found '%c')", p[i-1]);
Andreas Seltenreich93f91c32016-03-03 20:40:37 +01002055 if (alloc) {
2056 free(*binstr);
2057 *binstr = NULL;
2058 }
Willy Tarreau126d4062013-12-03 17:50:47 +01002059 return 0;
2060}
2061
Willy Tarreau946ba592009-05-10 15:41:18 +02002062/* copies at most <n> characters from <src> and always terminates with '\0' */
2063char *my_strndup(const char *src, int n)
2064{
2065 int len = 0;
2066 char *ret;
2067
2068 while (len < n && src[len])
2069 len++;
2070
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002071 ret = malloc(len + 1);
Willy Tarreau946ba592009-05-10 15:41:18 +02002072 if (!ret)
2073 return ret;
2074 memcpy(ret, src, len);
2075 ret[len] = '\0';
2076 return ret;
2077}
2078
Baptiste Assmannbb77c8e2013-10-06 23:24:13 +02002079/*
2080 * search needle in haystack
2081 * returns the pointer if found, returns NULL otherwise
2082 */
2083const void *my_memmem(const void *haystack, size_t haystacklen, const void *needle, size_t needlelen)
2084{
2085 const void *c = NULL;
2086 unsigned char f;
2087
2088 if ((haystack == NULL) || (needle == NULL) || (haystacklen < needlelen))
2089 return NULL;
2090
2091 f = *(char *)needle;
2092 c = haystack;
2093 while ((c = memchr(c, f, haystacklen - (c - haystack))) != NULL) {
2094 if ((haystacklen - (c - haystack)) < needlelen)
2095 return NULL;
2096
2097 if (memcmp(c, needle, needlelen) == 0)
2098 return c;
2099 ++c;
2100 }
2101 return NULL;
2102}
2103
Willy Tarreau482b00d2009-10-04 22:48:42 +02002104/* This function returns the first unused key greater than or equal to <key> in
2105 * ID tree <root>. Zero is returned if no place is found.
2106 */
2107unsigned int get_next_id(struct eb_root *root, unsigned int key)
2108{
2109 struct eb32_node *used;
2110
2111 do {
2112 used = eb32_lookup_ge(root, key);
2113 if (!used || used->key > key)
2114 return key; /* key is available */
2115 key++;
2116 } while (key);
2117 return key;
2118}
2119
Willy Tarreau348238b2010-01-18 15:05:57 +01002120/* This function compares a sample word possibly followed by blanks to another
2121 * clean word. The compare is case-insensitive. 1 is returned if both are equal,
2122 * otherwise zero. This intends to be used when checking HTTP headers for some
2123 * values. Note that it validates a word followed only by blanks but does not
2124 * validate a word followed by blanks then other chars.
2125 */
2126int word_match(const char *sample, int slen, const char *word, int wlen)
2127{
2128 if (slen < wlen)
2129 return 0;
2130
2131 while (wlen) {
2132 char c = *sample ^ *word;
2133 if (c && c != ('A' ^ 'a'))
2134 return 0;
2135 sample++;
2136 word++;
2137 slen--;
2138 wlen--;
2139 }
2140
2141 while (slen) {
2142 if (*sample != ' ' && *sample != '\t')
2143 return 0;
2144 sample++;
2145 slen--;
2146 }
2147 return 1;
2148}
Willy Tarreau482b00d2009-10-04 22:48:42 +02002149
Willy Tarreaud54bbdc2009-09-07 11:00:31 +02002150/* Converts any text-formatted IPv4 address to a host-order IPv4 address. It
2151 * is particularly fast because it avoids expensive operations such as
2152 * multiplies, which are optimized away at the end. It requires a properly
2153 * formated address though (3 points).
2154 */
2155unsigned int inetaddr_host(const char *text)
2156{
2157 const unsigned int ascii_zero = ('0' << 24) | ('0' << 16) | ('0' << 8) | '0';
2158 register unsigned int dig100, dig10, dig1;
2159 int s;
2160 const char *p, *d;
2161
2162 dig1 = dig10 = dig100 = ascii_zero;
2163 s = 24;
2164
2165 p = text;
2166 while (1) {
2167 if (((unsigned)(*p - '0')) <= 9) {
2168 p++;
2169 continue;
2170 }
2171
2172 /* here, we have a complete byte between <text> and <p> (exclusive) */
2173 if (p == text)
2174 goto end;
2175
2176 d = p - 1;
2177 dig1 |= (unsigned int)(*d << s);
2178 if (d == text)
2179 goto end;
2180
2181 d--;
2182 dig10 |= (unsigned int)(*d << s);
2183 if (d == text)
2184 goto end;
2185
2186 d--;
2187 dig100 |= (unsigned int)(*d << s);
2188 end:
2189 if (!s || *p != '.')
2190 break;
2191
2192 s -= 8;
2193 text = ++p;
2194 }
2195
2196 dig100 -= ascii_zero;
2197 dig10 -= ascii_zero;
2198 dig1 -= ascii_zero;
2199 return ((dig100 * 10) + dig10) * 10 + dig1;
2200}
2201
2202/*
2203 * Idem except the first unparsed character has to be passed in <stop>.
2204 */
2205unsigned int inetaddr_host_lim(const char *text, const char *stop)
2206{
2207 const unsigned int ascii_zero = ('0' << 24) | ('0' << 16) | ('0' << 8) | '0';
2208 register unsigned int dig100, dig10, dig1;
2209 int s;
2210 const char *p, *d;
2211
2212 dig1 = dig10 = dig100 = ascii_zero;
2213 s = 24;
2214
2215 p = text;
2216 while (1) {
2217 if (((unsigned)(*p - '0')) <= 9 && p < stop) {
2218 p++;
2219 continue;
2220 }
2221
2222 /* here, we have a complete byte between <text> and <p> (exclusive) */
2223 if (p == text)
2224 goto end;
2225
2226 d = p - 1;
2227 dig1 |= (unsigned int)(*d << s);
2228 if (d == text)
2229 goto end;
2230
2231 d--;
2232 dig10 |= (unsigned int)(*d << s);
2233 if (d == text)
2234 goto end;
2235
2236 d--;
2237 dig100 |= (unsigned int)(*d << s);
2238 end:
2239 if (!s || p == stop || *p != '.')
2240 break;
2241
2242 s -= 8;
2243 text = ++p;
2244 }
2245
2246 dig100 -= ascii_zero;
2247 dig10 -= ascii_zero;
2248 dig1 -= ascii_zero;
2249 return ((dig100 * 10) + dig10) * 10 + dig1;
2250}
2251
2252/*
2253 * Idem except the pointer to first unparsed byte is returned into <ret> which
2254 * must not be NULL.
2255 */
Willy Tarreau74172752010-10-15 23:21:42 +02002256unsigned int inetaddr_host_lim_ret(char *text, char *stop, char **ret)
Willy Tarreaud54bbdc2009-09-07 11:00:31 +02002257{
2258 const unsigned int ascii_zero = ('0' << 24) | ('0' << 16) | ('0' << 8) | '0';
2259 register unsigned int dig100, dig10, dig1;
2260 int s;
Willy Tarreau74172752010-10-15 23:21:42 +02002261 char *p, *d;
Willy Tarreaud54bbdc2009-09-07 11:00:31 +02002262
2263 dig1 = dig10 = dig100 = ascii_zero;
2264 s = 24;
2265
2266 p = text;
2267 while (1) {
2268 if (((unsigned)(*p - '0')) <= 9 && p < stop) {
2269 p++;
2270 continue;
2271 }
2272
2273 /* here, we have a complete byte between <text> and <p> (exclusive) */
2274 if (p == text)
2275 goto end;
2276
2277 d = p - 1;
2278 dig1 |= (unsigned int)(*d << s);
2279 if (d == text)
2280 goto end;
2281
2282 d--;
2283 dig10 |= (unsigned int)(*d << s);
2284 if (d == text)
2285 goto end;
2286
2287 d--;
2288 dig100 |= (unsigned int)(*d << s);
2289 end:
2290 if (!s || p == stop || *p != '.')
2291 break;
2292
2293 s -= 8;
2294 text = ++p;
2295 }
2296
2297 *ret = p;
2298 dig100 -= ascii_zero;
2299 dig10 -= ascii_zero;
2300 dig1 -= ascii_zero;
2301 return ((dig100 * 10) + dig10) * 10 + dig1;
2302}
2303
Willy Tarreauf0b38bf2010-06-06 13:22:23 +02002304/* Convert a fixed-length string to an IP address. Returns 0 in case of error,
2305 * or the number of chars read in case of success. Maybe this could be replaced
2306 * by one of the functions above. Also, apparently this function does not support
2307 * hosts above 255 and requires exactly 4 octets.
Willy Tarreau075415a2013-12-12 11:29:39 +01002308 * The destination is only modified on success.
Willy Tarreauf0b38bf2010-06-06 13:22:23 +02002309 */
2310int buf2ip(const char *buf, size_t len, struct in_addr *dst)
2311{
2312 const char *addr;
2313 int saw_digit, octets, ch;
2314 u_char tmp[4], *tp;
2315 const char *cp = buf;
2316
2317 saw_digit = 0;
2318 octets = 0;
2319 *(tp = tmp) = 0;
2320
2321 for (addr = buf; addr - buf < len; addr++) {
2322 unsigned char digit = (ch = *addr) - '0';
2323
2324 if (digit > 9 && ch != '.')
2325 break;
2326
2327 if (digit <= 9) {
2328 u_int new = *tp * 10 + digit;
2329
2330 if (new > 255)
2331 return 0;
2332
2333 *tp = new;
2334
2335 if (!saw_digit) {
2336 if (++octets > 4)
2337 return 0;
2338 saw_digit = 1;
2339 }
2340 } else if (ch == '.' && saw_digit) {
2341 if (octets == 4)
2342 return 0;
2343
2344 *++tp = 0;
2345 saw_digit = 0;
2346 } else
2347 return 0;
2348 }
2349
2350 if (octets < 4)
2351 return 0;
2352
2353 memcpy(&dst->s_addr, tmp, 4);
2354 return addr - cp;
2355}
2356
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002357/* This function converts the string in <buf> of the len <len> to
2358 * struct in6_addr <dst> which must be allocated by the caller.
2359 * This function returns 1 in success case, otherwise zero.
Willy Tarreau075415a2013-12-12 11:29:39 +01002360 * The destination is only modified on success.
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002361 */
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002362int buf2ip6(const char *buf, size_t len, struct in6_addr *dst)
2363{
Thierry FOURNIERcd659912013-12-11 12:33:54 +01002364 char null_term_ip6[INET6_ADDRSTRLEN + 1];
Willy Tarreau075415a2013-12-12 11:29:39 +01002365 struct in6_addr out;
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002366
Thierry FOURNIERcd659912013-12-11 12:33:54 +01002367 if (len > INET6_ADDRSTRLEN)
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002368 return 0;
2369
2370 memcpy(null_term_ip6, buf, len);
2371 null_term_ip6[len] = '\0';
2372
Willy Tarreau075415a2013-12-12 11:29:39 +01002373 if (!inet_pton(AF_INET6, null_term_ip6, &out))
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002374 return 0;
2375
Willy Tarreau075415a2013-12-12 11:29:39 +01002376 *dst = out;
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002377 return 1;
2378}
2379
Willy Tarreauacf95772010-06-14 19:09:21 +02002380/* To be used to quote config arg positions. Returns the short string at <ptr>
2381 * surrounded by simple quotes if <ptr> is valid and non-empty, or "end of line"
2382 * if ptr is NULL or empty. The string is locally allocated.
2383 */
2384const char *quote_arg(const char *ptr)
2385{
2386 static char val[32];
2387 int i;
2388
2389 if (!ptr || !*ptr)
2390 return "end of line";
2391 val[0] = '\'';
Willy Tarreaude2dd6b2013-01-24 02:14:42 +01002392 for (i = 1; i < sizeof(val) - 2 && *ptr; i++)
Willy Tarreauacf95772010-06-14 19:09:21 +02002393 val[i] = *ptr++;
2394 val[i++] = '\'';
2395 val[i] = '\0';
2396 return val;
2397}
2398
Willy Tarreau5b180202010-07-18 10:40:48 +02002399/* returns an operator among STD_OP_* for string <str> or < 0 if unknown */
2400int get_std_op(const char *str)
2401{
2402 int ret = -1;
2403
2404 if (*str == 'e' && str[1] == 'q')
2405 ret = STD_OP_EQ;
2406 else if (*str == 'n' && str[1] == 'e')
2407 ret = STD_OP_NE;
2408 else if (*str == 'l') {
2409 if (str[1] == 'e') ret = STD_OP_LE;
2410 else if (str[1] == 't') ret = STD_OP_LT;
2411 }
2412 else if (*str == 'g') {
2413 if (str[1] == 'e') ret = STD_OP_GE;
2414 else if (str[1] == 't') ret = STD_OP_GT;
2415 }
2416
2417 if (ret == -1 || str[2] != '\0')
2418 return -1;
2419 return ret;
2420}
2421
Willy Tarreau4c14eaa2010-11-24 14:01:45 +01002422/* hash a 32-bit integer to another 32-bit integer */
2423unsigned int full_hash(unsigned int a)
2424{
2425 return __full_hash(a);
2426}
2427
David du Colombier4f92d322011-03-24 11:09:31 +01002428/* Return non-zero if IPv4 address is part of the network,
Willy Tarreaueec1d382016-07-13 11:59:39 +02002429 * otherwise zero. Note that <addr> may not necessarily be aligned
2430 * while the two other ones must.
David du Colombier4f92d322011-03-24 11:09:31 +01002431 */
Willy Tarreaueec1d382016-07-13 11:59:39 +02002432int in_net_ipv4(const void *addr, const struct in_addr *mask, const struct in_addr *net)
David du Colombier4f92d322011-03-24 11:09:31 +01002433{
Willy Tarreaueec1d382016-07-13 11:59:39 +02002434 struct in_addr addr_copy;
2435
2436 memcpy(&addr_copy, addr, sizeof(addr_copy));
2437 return((addr_copy.s_addr & mask->s_addr) == (net->s_addr & mask->s_addr));
David du Colombier4f92d322011-03-24 11:09:31 +01002438}
2439
2440/* Return non-zero if IPv6 address is part of the network,
Willy Tarreaueec1d382016-07-13 11:59:39 +02002441 * otherwise zero. Note that <addr> may not necessarily be aligned
2442 * while the two other ones must.
David du Colombier4f92d322011-03-24 11:09:31 +01002443 */
Willy Tarreaueec1d382016-07-13 11:59:39 +02002444int in_net_ipv6(const void *addr, const struct in6_addr *mask, const struct in6_addr *net)
David du Colombier4f92d322011-03-24 11:09:31 +01002445{
2446 int i;
Willy Tarreaueec1d382016-07-13 11:59:39 +02002447 struct in6_addr addr_copy;
David du Colombier4f92d322011-03-24 11:09:31 +01002448
Willy Tarreaueec1d382016-07-13 11:59:39 +02002449 memcpy(&addr_copy, addr, sizeof(addr_copy));
David du Colombier4f92d322011-03-24 11:09:31 +01002450 for (i = 0; i < sizeof(struct in6_addr) / sizeof(int); i++)
Willy Tarreaueec1d382016-07-13 11:59:39 +02002451 if (((((int *)&addr_copy)[i] & ((int *)mask)[i])) !=
David du Colombier4f92d322011-03-24 11:09:31 +01002452 (((int *)net)[i] & ((int *)mask)[i]))
2453 return 0;
2454 return 1;
2455}
2456
2457/* RFC 4291 prefix */
2458const char rfc4291_pfx[] = { 0x00, 0x00, 0x00, 0x00,
2459 0x00, 0x00, 0x00, 0x00,
2460 0x00, 0x00, 0xFF, 0xFF };
2461
Thierry FOURNIER4a04dc32013-11-28 16:33:15 +01002462/* Map IPv4 adress on IPv6 address, as specified in RFC 3513.
2463 * Input and output may overlap.
2464 */
David du Colombier4f92d322011-03-24 11:09:31 +01002465void v4tov6(struct in6_addr *sin6_addr, struct in_addr *sin_addr)
2466{
Thierry FOURNIER4a04dc32013-11-28 16:33:15 +01002467 struct in_addr tmp_addr;
2468
2469 tmp_addr.s_addr = sin_addr->s_addr;
David du Colombier4f92d322011-03-24 11:09:31 +01002470 memcpy(sin6_addr->s6_addr, rfc4291_pfx, sizeof(rfc4291_pfx));
Thierry FOURNIER4a04dc32013-11-28 16:33:15 +01002471 memcpy(sin6_addr->s6_addr+12, &tmp_addr.s_addr, 4);
David du Colombier4f92d322011-03-24 11:09:31 +01002472}
2473
2474/* Map IPv6 adress on IPv4 address, as specified in RFC 3513.
2475 * Return true if conversion is possible and false otherwise.
2476 */
2477int v6tov4(struct in_addr *sin_addr, struct in6_addr *sin6_addr)
2478{
2479 if (memcmp(sin6_addr->s6_addr, rfc4291_pfx, sizeof(rfc4291_pfx)) == 0) {
2480 memcpy(&(sin_addr->s_addr), &(sin6_addr->s6_addr[12]),
2481 sizeof(struct in_addr));
2482 return 1;
2483 }
2484
2485 return 0;
2486}
2487
William Lallemand421f5b52012-02-06 18:15:57 +01002488char *human_time(int t, short hz_div) {
2489 static char rv[sizeof("24855d23h")+1]; // longest of "23h59m" and "59m59s"
2490 char *p = rv;
Willy Tarreau761b3d52014-04-14 14:53:06 +02002491 char *end = rv + sizeof(rv);
William Lallemand421f5b52012-02-06 18:15:57 +01002492 int cnt=2; // print two numbers
2493
2494 if (unlikely(t < 0 || hz_div <= 0)) {
Willy Tarreau761b3d52014-04-14 14:53:06 +02002495 snprintf(p, end - p, "?");
William Lallemand421f5b52012-02-06 18:15:57 +01002496 return rv;
2497 }
2498
2499 if (unlikely(hz_div > 1))
2500 t /= hz_div;
2501
2502 if (t >= DAY) {
Willy Tarreau761b3d52014-04-14 14:53:06 +02002503 p += snprintf(p, end - p, "%dd", t / DAY);
William Lallemand421f5b52012-02-06 18:15:57 +01002504 cnt--;
2505 }
2506
2507 if (cnt && t % DAY / HOUR) {
Willy Tarreau761b3d52014-04-14 14:53:06 +02002508 p += snprintf(p, end - p, "%dh", t % DAY / HOUR);
William Lallemand421f5b52012-02-06 18:15:57 +01002509 cnt--;
2510 }
2511
2512 if (cnt && t % HOUR / MINUTE) {
Willy Tarreau761b3d52014-04-14 14:53:06 +02002513 p += snprintf(p, end - p, "%dm", t % HOUR / MINUTE);
William Lallemand421f5b52012-02-06 18:15:57 +01002514 cnt--;
2515 }
2516
2517 if ((cnt && t % MINUTE) || !t) // also display '0s'
Willy Tarreau761b3d52014-04-14 14:53:06 +02002518 p += snprintf(p, end - p, "%ds", t % MINUTE / SEC);
William Lallemand421f5b52012-02-06 18:15:57 +01002519
2520 return rv;
2521}
2522
2523const char *monthname[12] = {
2524 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
2525 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
2526};
2527
2528/* date2str_log: write a date in the format :
2529 * sprintf(str, "%02d/%s/%04d:%02d:%02d:%02d.%03d",
2530 * tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2531 * tm.tm_hour, tm.tm_min, tm.tm_sec, (int)date.tv_usec/1000);
2532 *
2533 * without using sprintf. return a pointer to the last char written (\0) or
2534 * NULL if there isn't enough space.
2535 */
2536char *date2str_log(char *dst, struct tm *tm, struct timeval *date, size_t size)
2537{
2538
2539 if (size < 25) /* the size is fixed: 24 chars + \0 */
2540 return NULL;
2541
2542 dst = utoa_pad((unsigned int)tm->tm_mday, dst, 3); // day
2543 *dst++ = '/';
2544 memcpy(dst, monthname[tm->tm_mon], 3); // month
2545 dst += 3;
2546 *dst++ = '/';
2547 dst = utoa_pad((unsigned int)tm->tm_year+1900, dst, 5); // year
2548 *dst++ = ':';
2549 dst = utoa_pad((unsigned int)tm->tm_hour, dst, 3); // hour
2550 *dst++ = ':';
2551 dst = utoa_pad((unsigned int)tm->tm_min, dst, 3); // minutes
2552 *dst++ = ':';
2553 dst = utoa_pad((unsigned int)tm->tm_sec, dst, 3); // secondes
2554 *dst++ = '.';
2555 utoa_pad((unsigned int)(date->tv_usec/1000), dst, 4); // millisecondes
2556 dst += 3; // only the 3 first digits
2557 *dst = '\0';
2558
2559 return dst;
2560}
2561
Benoit GARNIERe2e5bde2016-03-27 03:04:16 +02002562/* Base year used to compute leap years */
2563#define TM_YEAR_BASE 1900
2564
2565/* Return the difference in seconds between two times (leap seconds are ignored).
2566 * Retrieved from glibc 2.18 source code.
2567 */
2568static int my_tm_diff(const struct tm *a, const struct tm *b)
2569{
2570 /* Compute intervening leap days correctly even if year is negative.
2571 * Take care to avoid int overflow in leap day calculations,
2572 * but it's OK to assume that A and B are close to each other.
2573 */
2574 int a4 = (a->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (a->tm_year & 3);
2575 int b4 = (b->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (b->tm_year & 3);
2576 int a100 = a4 / 25 - (a4 % 25 < 0);
2577 int b100 = b4 / 25 - (b4 % 25 < 0);
2578 int a400 = a100 >> 2;
2579 int b400 = b100 >> 2;
2580 int intervening_leap_days = (a4 - b4) - (a100 - b100) + (a400 - b400);
2581 int years = a->tm_year - b->tm_year;
2582 int days = (365 * years + intervening_leap_days
2583 + (a->tm_yday - b->tm_yday));
2584 return (60 * (60 * (24 * days + (a->tm_hour - b->tm_hour))
2585 + (a->tm_min - b->tm_min))
2586 + (a->tm_sec - b->tm_sec));
2587}
2588
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02002589/* Return the GMT offset for a specific local time.
Benoit GARNIERe2e5bde2016-03-27 03:04:16 +02002590 * Both t and tm must represent the same time.
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02002591 * The string returned has the same format as returned by strftime(... "%z", tm).
2592 * Offsets are kept in an internal cache for better performances.
2593 */
Benoit GARNIERe2e5bde2016-03-27 03:04:16 +02002594const char *get_gmt_offset(time_t t, struct tm *tm)
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02002595{
2596 /* Cache offsets from GMT (depending on whether DST is active or not) */
2597 static char gmt_offsets[2][5+1] = { "", "" };
2598
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02002599 char *gmt_offset;
Benoit GARNIERe2e5bde2016-03-27 03:04:16 +02002600 struct tm tm_gmt;
2601 int diff;
2602 int isdst = tm->tm_isdst;
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02002603
Benoit GARNIERe2e5bde2016-03-27 03:04:16 +02002604 /* Pretend DST not active if its status is unknown */
2605 if (isdst < 0)
2606 isdst = 0;
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02002607
Benoit GARNIERe2e5bde2016-03-27 03:04:16 +02002608 /* Fetch the offset and initialize it if needed */
2609 gmt_offset = gmt_offsets[isdst & 0x01];
2610 if (unlikely(!*gmt_offset)) {
2611 get_gmtime(t, &tm_gmt);
2612 diff = my_tm_diff(tm, &tm_gmt);
2613 if (diff < 0) {
2614 diff = -diff;
2615 *gmt_offset = '-';
2616 } else {
2617 *gmt_offset = '+';
2618 }
2619 diff /= 60; /* Convert to minutes */
2620 snprintf(gmt_offset+1, 4+1, "%02d%02d", diff/60, diff%60);
2621 }
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02002622
2623 return gmt_offset;
2624}
2625
William Lallemand421f5b52012-02-06 18:15:57 +01002626/* gmt2str_log: write a date in the format :
2627 * "%02d/%s/%04d:%02d:%02d:%02d +0000" without using snprintf
2628 * return a pointer to the last char written (\0) or
2629 * NULL if there isn't enough space.
2630 */
2631char *gmt2str_log(char *dst, struct tm *tm, size_t size)
2632{
Yuxans Yao4e25b012012-10-19 10:36:09 +08002633 if (size < 27) /* the size is fixed: 26 chars + \0 */
William Lallemand421f5b52012-02-06 18:15:57 +01002634 return NULL;
2635
2636 dst = utoa_pad((unsigned int)tm->tm_mday, dst, 3); // day
2637 *dst++ = '/';
2638 memcpy(dst, monthname[tm->tm_mon], 3); // month
2639 dst += 3;
2640 *dst++ = '/';
2641 dst = utoa_pad((unsigned int)tm->tm_year+1900, dst, 5); // year
2642 *dst++ = ':';
2643 dst = utoa_pad((unsigned int)tm->tm_hour, dst, 3); // hour
2644 *dst++ = ':';
2645 dst = utoa_pad((unsigned int)tm->tm_min, dst, 3); // minutes
2646 *dst++ = ':';
2647 dst = utoa_pad((unsigned int)tm->tm_sec, dst, 3); // secondes
2648 *dst++ = ' ';
2649 *dst++ = '+';
2650 *dst++ = '0';
2651 *dst++ = '0';
2652 *dst++ = '0';
2653 *dst++ = '0';
2654 *dst = '\0';
2655
2656 return dst;
2657}
2658
Yuxans Yao4e25b012012-10-19 10:36:09 +08002659/* localdate2str_log: write a date in the format :
2660 * "%02d/%s/%04d:%02d:%02d:%02d +0000(local timezone)" without using snprintf
Benoit GARNIERe2e5bde2016-03-27 03:04:16 +02002661 * Both t and tm must represent the same time.
2662 * return a pointer to the last char written (\0) or
2663 * NULL if there isn't enough space.
Yuxans Yao4e25b012012-10-19 10:36:09 +08002664 */
Benoit GARNIERe2e5bde2016-03-27 03:04:16 +02002665char *localdate2str_log(char *dst, time_t t, struct tm *tm, size_t size)
Yuxans Yao4e25b012012-10-19 10:36:09 +08002666{
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02002667 const char *gmt_offset;
Yuxans Yao4e25b012012-10-19 10:36:09 +08002668 if (size < 27) /* the size is fixed: 26 chars + \0 */
2669 return NULL;
2670
Benoit GARNIERe2e5bde2016-03-27 03:04:16 +02002671 gmt_offset = get_gmt_offset(t, tm);
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02002672
Yuxans Yao4e25b012012-10-19 10:36:09 +08002673 dst = utoa_pad((unsigned int)tm->tm_mday, dst, 3); // day
2674 *dst++ = '/';
2675 memcpy(dst, monthname[tm->tm_mon], 3); // month
2676 dst += 3;
2677 *dst++ = '/';
2678 dst = utoa_pad((unsigned int)tm->tm_year+1900, dst, 5); // year
2679 *dst++ = ':';
2680 dst = utoa_pad((unsigned int)tm->tm_hour, dst, 3); // hour
2681 *dst++ = ':';
2682 dst = utoa_pad((unsigned int)tm->tm_min, dst, 3); // minutes
2683 *dst++ = ':';
2684 dst = utoa_pad((unsigned int)tm->tm_sec, dst, 3); // secondes
2685 *dst++ = ' ';
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02002686 memcpy(dst, gmt_offset, 5); // Offset from local time to GMT
Yuxans Yao4e25b012012-10-19 10:36:09 +08002687 dst += 5;
2688 *dst = '\0';
2689
2690 return dst;
2691}
2692
Thierry Fournier93127942016-01-20 18:49:45 +01002693/* This function check a char. It returns true and updates
2694 * <date> and <len> pointer to the new position if the
2695 * character is found.
2696 */
2697static inline int parse_expect_char(const char **date, int *len, char c)
2698{
2699 if (*len < 1 || **date != c)
2700 return 0;
2701 (*len)--;
2702 (*date)++;
2703 return 1;
2704}
2705
2706/* This function expects a string <str> of len <l>. It return true and updates.
2707 * <date> and <len> if the string matches, otherwise, it returns false.
2708 */
2709static inline int parse_strcmp(const char **date, int *len, char *str, int l)
2710{
2711 if (*len < l || strncmp(*date, str, l) != 0)
2712 return 0;
2713 (*len) -= l;
2714 (*date) += l;
2715 return 1;
2716}
2717
2718/* This macro converts 3 chars name in integer. */
2719#define STR2I3(__a, __b, __c) ((__a) * 65536 + (__b) * 256 + (__c))
2720
2721/* day-name = %x4D.6F.6E ; "Mon", case-sensitive
2722 * / %x54.75.65 ; "Tue", case-sensitive
2723 * / %x57.65.64 ; "Wed", case-sensitive
2724 * / %x54.68.75 ; "Thu", case-sensitive
2725 * / %x46.72.69 ; "Fri", case-sensitive
2726 * / %x53.61.74 ; "Sat", case-sensitive
2727 * / %x53.75.6E ; "Sun", case-sensitive
2728 *
2729 * This array must be alphabetically sorted
2730 */
2731static inline int parse_http_dayname(const char **date, int *len, struct tm *tm)
2732{
2733 if (*len < 3)
2734 return 0;
2735 switch (STR2I3((*date)[0], (*date)[1], (*date)[2])) {
2736 case STR2I3('M','o','n'): tm->tm_wday = 1; break;
2737 case STR2I3('T','u','e'): tm->tm_wday = 2; break;
2738 case STR2I3('W','e','d'): tm->tm_wday = 3; break;
2739 case STR2I3('T','h','u'): tm->tm_wday = 4; break;
2740 case STR2I3('F','r','i'): tm->tm_wday = 5; break;
2741 case STR2I3('S','a','t'): tm->tm_wday = 6; break;
2742 case STR2I3('S','u','n'): tm->tm_wday = 7; break;
2743 default: return 0;
2744 }
2745 *len -= 3;
2746 *date += 3;
2747 return 1;
2748}
2749
2750/* month = %x4A.61.6E ; "Jan", case-sensitive
2751 * / %x46.65.62 ; "Feb", case-sensitive
2752 * / %x4D.61.72 ; "Mar", case-sensitive
2753 * / %x41.70.72 ; "Apr", case-sensitive
2754 * / %x4D.61.79 ; "May", case-sensitive
2755 * / %x4A.75.6E ; "Jun", case-sensitive
2756 * / %x4A.75.6C ; "Jul", case-sensitive
2757 * / %x41.75.67 ; "Aug", case-sensitive
2758 * / %x53.65.70 ; "Sep", case-sensitive
2759 * / %x4F.63.74 ; "Oct", case-sensitive
2760 * / %x4E.6F.76 ; "Nov", case-sensitive
2761 * / %x44.65.63 ; "Dec", case-sensitive
2762 *
2763 * This array must be alphabetically sorted
2764 */
2765static inline int parse_http_monthname(const char **date, int *len, struct tm *tm)
2766{
2767 if (*len < 3)
2768 return 0;
2769 switch (STR2I3((*date)[0], (*date)[1], (*date)[2])) {
2770 case STR2I3('J','a','n'): tm->tm_mon = 0; break;
2771 case STR2I3('F','e','b'): tm->tm_mon = 1; break;
2772 case STR2I3('M','a','r'): tm->tm_mon = 2; break;
2773 case STR2I3('A','p','r'): tm->tm_mon = 3; break;
2774 case STR2I3('M','a','y'): tm->tm_mon = 4; break;
2775 case STR2I3('J','u','n'): tm->tm_mon = 5; break;
2776 case STR2I3('J','u','l'): tm->tm_mon = 6; break;
2777 case STR2I3('A','u','g'): tm->tm_mon = 7; break;
2778 case STR2I3('S','e','p'): tm->tm_mon = 8; break;
2779 case STR2I3('O','c','t'): tm->tm_mon = 9; break;
2780 case STR2I3('N','o','v'): tm->tm_mon = 10; break;
2781 case STR2I3('D','e','c'): tm->tm_mon = 11; break;
2782 default: return 0;
2783 }
2784 *len -= 3;
2785 *date += 3;
2786 return 1;
2787}
2788
2789/* day-name-l = %x4D.6F.6E.64.61.79 ; "Monday", case-sensitive
2790 * / %x54.75.65.73.64.61.79 ; "Tuesday", case-sensitive
2791 * / %x57.65.64.6E.65.73.64.61.79 ; "Wednesday", case-sensitive
2792 * / %x54.68.75.72.73.64.61.79 ; "Thursday", case-sensitive
2793 * / %x46.72.69.64.61.79 ; "Friday", case-sensitive
2794 * / %x53.61.74.75.72.64.61.79 ; "Saturday", case-sensitive
2795 * / %x53.75.6E.64.61.79 ; "Sunday", case-sensitive
2796 *
2797 * This array must be alphabetically sorted
2798 */
2799static inline int parse_http_ldayname(const char **date, int *len, struct tm *tm)
2800{
2801 if (*len < 6) /* Minimum length. */
2802 return 0;
2803 switch (STR2I3((*date)[0], (*date)[1], (*date)[2])) {
2804 case STR2I3('M','o','n'):
2805 RET0_UNLESS(parse_strcmp(date, len, "Monday", 6));
2806 tm->tm_wday = 1;
2807 return 1;
2808 case STR2I3('T','u','e'):
2809 RET0_UNLESS(parse_strcmp(date, len, "Tuesday", 7));
2810 tm->tm_wday = 2;
2811 return 1;
2812 case STR2I3('W','e','d'):
2813 RET0_UNLESS(parse_strcmp(date, len, "Wednesday", 9));
2814 tm->tm_wday = 3;
2815 return 1;
2816 case STR2I3('T','h','u'):
2817 RET0_UNLESS(parse_strcmp(date, len, "Thursday", 8));
2818 tm->tm_wday = 4;
2819 return 1;
2820 case STR2I3('F','r','i'):
2821 RET0_UNLESS(parse_strcmp(date, len, "Friday", 6));
2822 tm->tm_wday = 5;
2823 return 1;
2824 case STR2I3('S','a','t'):
2825 RET0_UNLESS(parse_strcmp(date, len, "Saturday", 8));
2826 tm->tm_wday = 6;
2827 return 1;
2828 case STR2I3('S','u','n'):
2829 RET0_UNLESS(parse_strcmp(date, len, "Sunday", 6));
2830 tm->tm_wday = 7;
2831 return 1;
2832 }
2833 return 0;
2834}
2835
2836/* This function parses exactly 1 digit and returns the numeric value in "digit". */
2837static inline int parse_digit(const char **date, int *len, int *digit)
2838{
2839 if (*len < 1 || **date < '0' || **date > '9')
2840 return 0;
2841 *digit = (**date - '0');
2842 (*date)++;
2843 (*len)--;
2844 return 1;
2845}
2846
2847/* This function parses exactly 2 digits and returns the numeric value in "digit". */
2848static inline int parse_2digit(const char **date, int *len, int *digit)
2849{
2850 int value;
2851
2852 RET0_UNLESS(parse_digit(date, len, &value));
2853 (*digit) = value * 10;
2854 RET0_UNLESS(parse_digit(date, len, &value));
2855 (*digit) += value;
2856
2857 return 1;
2858}
2859
2860/* This function parses exactly 4 digits and returns the numeric value in "digit". */
2861static inline int parse_4digit(const char **date, int *len, int *digit)
2862{
2863 int value;
2864
2865 RET0_UNLESS(parse_digit(date, len, &value));
2866 (*digit) = value * 1000;
2867
2868 RET0_UNLESS(parse_digit(date, len, &value));
2869 (*digit) += value * 100;
2870
2871 RET0_UNLESS(parse_digit(date, len, &value));
2872 (*digit) += value * 10;
2873
2874 RET0_UNLESS(parse_digit(date, len, &value));
2875 (*digit) += value;
2876
2877 return 1;
2878}
2879
2880/* time-of-day = hour ":" minute ":" second
2881 * ; 00:00:00 - 23:59:60 (leap second)
2882 *
2883 * hour = 2DIGIT
2884 * minute = 2DIGIT
2885 * second = 2DIGIT
2886 */
2887static inline int parse_http_time(const char **date, int *len, struct tm *tm)
2888{
2889 RET0_UNLESS(parse_2digit(date, len, &tm->tm_hour)); /* hour 2DIGIT */
2890 RET0_UNLESS(parse_expect_char(date, len, ':')); /* expect ":" */
2891 RET0_UNLESS(parse_2digit(date, len, &tm->tm_min)); /* min 2DIGIT */
2892 RET0_UNLESS(parse_expect_char(date, len, ':')); /* expect ":" */
2893 RET0_UNLESS(parse_2digit(date, len, &tm->tm_sec)); /* sec 2DIGIT */
2894 return 1;
2895}
2896
2897/* From RFC7231
2898 * https://tools.ietf.org/html/rfc7231#section-7.1.1.1
2899 *
2900 * IMF-fixdate = day-name "," SP date1 SP time-of-day SP GMT
2901 * ; fixed length/zone/capitalization subset of the format
2902 * ; see Section 3.3 of [RFC5322]
2903 *
2904 *
2905 * date1 = day SP month SP year
2906 * ; e.g., 02 Jun 1982
2907 *
2908 * day = 2DIGIT
2909 * year = 4DIGIT
2910 *
2911 * GMT = %x47.4D.54 ; "GMT", case-sensitive
2912 *
2913 * time-of-day = hour ":" minute ":" second
2914 * ; 00:00:00 - 23:59:60 (leap second)
2915 *
2916 * hour = 2DIGIT
2917 * minute = 2DIGIT
2918 * second = 2DIGIT
2919 *
2920 * DIGIT = decimal 0-9
2921 */
2922int parse_imf_date(const char *date, int len, struct tm *tm)
2923{
2924 RET0_UNLESS(parse_http_dayname(&date, &len, tm)); /* day-name */
2925 RET0_UNLESS(parse_expect_char(&date, &len, ',')); /* expect "," */
2926 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2927 RET0_UNLESS(parse_2digit(&date, &len, &tm->tm_mday)); /* day 2DIGIT */
2928 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2929 RET0_UNLESS(parse_http_monthname(&date, &len, tm)); /* Month */
2930 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2931 RET0_UNLESS(parse_4digit(&date, &len, &tm->tm_year)); /* year = 4DIGIT */
2932 tm->tm_year -= 1900;
2933 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2934 RET0_UNLESS(parse_http_time(&date, &len, tm)); /* Parse time. */
2935 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2936 RET0_UNLESS(parse_strcmp(&date, &len, "GMT", 3)); /* GMT = %x47.4D.54 ; "GMT", case-sensitive */
2937 tm->tm_isdst = -1;
2938 tm->tm_gmtoff = 0;
2939 return 1;
2940}
2941
2942/* From RFC7231
2943 * https://tools.ietf.org/html/rfc7231#section-7.1.1.1
2944 *
2945 * rfc850-date = day-name-l "," SP date2 SP time-of-day SP GMT
2946 * date2 = day "-" month "-" 2DIGIT
2947 * ; e.g., 02-Jun-82
2948 *
2949 * day = 2DIGIT
2950 */
2951int parse_rfc850_date(const char *date, int len, struct tm *tm)
2952{
2953 int year;
2954
2955 RET0_UNLESS(parse_http_ldayname(&date, &len, tm)); /* Read the day name */
2956 RET0_UNLESS(parse_expect_char(&date, &len, ',')); /* expect "," */
2957 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2958 RET0_UNLESS(parse_2digit(&date, &len, &tm->tm_mday)); /* day 2DIGIT */
2959 RET0_UNLESS(parse_expect_char(&date, &len, '-')); /* expect "-" */
2960 RET0_UNLESS(parse_http_monthname(&date, &len, tm)); /* Month */
2961 RET0_UNLESS(parse_expect_char(&date, &len, '-')); /* expect "-" */
2962
2963 /* year = 2DIGIT
2964 *
2965 * Recipients of a timestamp value in rfc850-(*date) format, which uses a
2966 * two-digit year, MUST interpret a timestamp that appears to be more
2967 * than 50 years in the future as representing the most recent year in
2968 * the past that had the same last two digits.
2969 */
2970 RET0_UNLESS(parse_2digit(&date, &len, &tm->tm_year));
2971
2972 /* expect SP */
2973 if (!parse_expect_char(&date, &len, ' ')) {
2974 /* Maybe we have the date with 4 digits. */
2975 RET0_UNLESS(parse_2digit(&date, &len, &year));
2976 tm->tm_year = (tm->tm_year * 100 + year) - 1900;
2977 /* expect SP */
2978 RET0_UNLESS(parse_expect_char(&date, &len, ' '));
2979 } else {
2980 /* I fix 60 as pivot: >60: +1900, <60: +2000. Note that the
2981 * tm_year is the number of year since 1900, so for +1900, we
2982 * do nothing, and for +2000, we add 100.
2983 */
2984 if (tm->tm_year <= 60)
2985 tm->tm_year += 100;
2986 }
2987
2988 RET0_UNLESS(parse_http_time(&date, &len, tm)); /* Parse time. */
2989 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2990 RET0_UNLESS(parse_strcmp(&date, &len, "GMT", 3)); /* GMT = %x47.4D.54 ; "GMT", case-sensitive */
2991 tm->tm_isdst = -1;
2992 tm->tm_gmtoff = 0;
2993
2994 return 1;
2995}
2996
2997/* From RFC7231
2998 * https://tools.ietf.org/html/rfc7231#section-7.1.1.1
2999 *
3000 * asctime-date = day-name SP date3 SP time-of-day SP year
3001 * date3 = month SP ( 2DIGIT / ( SP 1DIGIT ))
3002 * ; e.g., Jun 2
3003 *
3004 * HTTP-date is case sensitive. A sender MUST NOT generate additional
3005 * whitespace in an HTTP-date beyond that specifically included as SP in
3006 * the grammar.
3007 */
3008int parse_asctime_date(const char *date, int len, struct tm *tm)
3009{
3010 RET0_UNLESS(parse_http_dayname(&date, &len, tm)); /* day-name */
3011 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
3012 RET0_UNLESS(parse_http_monthname(&date, &len, tm)); /* expect month */
3013 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
3014
3015 /* expect SP and 1DIGIT or 2DIGIT */
3016 if (parse_expect_char(&date, &len, ' '))
3017 RET0_UNLESS(parse_digit(&date, &len, &tm->tm_mday));
3018 else
3019 RET0_UNLESS(parse_2digit(&date, &len, &tm->tm_mday));
3020
3021 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
3022 RET0_UNLESS(parse_http_time(&date, &len, tm)); /* Parse time. */
3023 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
3024 RET0_UNLESS(parse_4digit(&date, &len, &tm->tm_year)); /* year = 4DIGIT */
3025 tm->tm_year -= 1900;
3026 tm->tm_isdst = -1;
3027 tm->tm_gmtoff = 0;
3028 return 1;
3029}
3030
3031/* From RFC7231
3032 * https://tools.ietf.org/html/rfc7231#section-7.1.1.1
3033 *
3034 * HTTP-date = IMF-fixdate / obs-date
3035 * obs-date = rfc850-date / asctime-date
3036 *
3037 * parses an HTTP date in the RFC format and is accepted
3038 * alternatives. <date> is the strinf containing the date,
3039 * len is the len of the string. <tm> is filled with the
3040 * parsed time. We must considers this time as GMT.
3041 */
3042int parse_http_date(const char *date, int len, struct tm *tm)
3043{
3044 if (parse_imf_date(date, len, tm))
3045 return 1;
3046
3047 if (parse_rfc850_date(date, len, tm))
3048 return 1;
3049
3050 if (parse_asctime_date(date, len, tm))
3051 return 1;
3052
3053 return 0;
3054}
3055
Willy Tarreau9a7bea52012-04-27 11:16:50 +02003056/* Dynamically allocates a string of the proper length to hold the formatted
3057 * output. NULL is returned on error. The caller is responsible for freeing the
3058 * memory area using free(). The resulting string is returned in <out> if the
3059 * pointer is not NULL. A previous version of <out> might be used to build the
3060 * new string, and it will be freed before returning if it is not NULL, which
3061 * makes it possible to build complex strings from iterative calls without
3062 * having to care about freeing intermediate values, as in the example below :
3063 *
3064 * memprintf(&err, "invalid argument: '%s'", arg);
3065 * ...
3066 * memprintf(&err, "parser said : <%s>\n", *err);
3067 * ...
3068 * free(*err);
3069 *
3070 * This means that <err> must be initialized to NULL before first invocation.
3071 * The return value also holds the allocated string, which eases error checking
3072 * and immediate consumption. If the output pointer is not used, NULL must be
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003073 * passed instead and it will be ignored. The returned message will then also
3074 * be NULL so that the caller does not have to bother with freeing anything.
Willy Tarreau9a7bea52012-04-27 11:16:50 +02003075 *
3076 * It is also convenient to use it without any free except the last one :
3077 * err = NULL;
3078 * if (!fct1(err)) report(*err);
3079 * if (!fct2(err)) report(*err);
3080 * if (!fct3(err)) report(*err);
3081 * free(*err);
3082 */
3083char *memprintf(char **out, const char *format, ...)
3084{
3085 va_list args;
3086 char *ret = NULL;
3087 int allocated = 0;
3088 int needed = 0;
3089
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003090 if (!out)
3091 return NULL;
3092
Willy Tarreau9a7bea52012-04-27 11:16:50 +02003093 do {
3094 /* vsnprintf() will return the required length even when the
3095 * target buffer is NULL. We do this in a loop just in case
3096 * intermediate evaluations get wrong.
3097 */
3098 va_start(args, format);
Willy Tarreau1b2fed62013-04-01 22:48:54 +02003099 needed = vsnprintf(ret, allocated, format, args);
Willy Tarreau9a7bea52012-04-27 11:16:50 +02003100 va_end(args);
3101
Willy Tarreau1b2fed62013-04-01 22:48:54 +02003102 if (needed < allocated) {
3103 /* Note: on Solaris 8, the first iteration always
3104 * returns -1 if allocated is zero, so we force a
3105 * retry.
3106 */
3107 if (!allocated)
3108 needed = 0;
3109 else
3110 break;
3111 }
Willy Tarreau9a7bea52012-04-27 11:16:50 +02003112
Willy Tarreau1b2fed62013-04-01 22:48:54 +02003113 allocated = needed + 1;
Hubert Verstraete831962e2016-06-28 22:44:26 +02003114 ret = my_realloc2(ret, allocated);
Willy Tarreau9a7bea52012-04-27 11:16:50 +02003115 } while (ret);
3116
3117 if (needed < 0) {
3118 /* an error was encountered */
3119 free(ret);
3120 ret = NULL;
3121 }
3122
3123 if (out) {
3124 free(*out);
3125 *out = ret;
3126 }
3127
3128 return ret;
3129}
William Lallemand421f5b52012-02-06 18:15:57 +01003130
Willy Tarreau21c705b2012-09-14 11:40:36 +02003131/* Used to add <level> spaces before each line of <out>, unless there is only one line.
3132 * The input argument is automatically freed and reassigned. The result will have to be
Willy Tarreau70eec382012-10-10 08:56:47 +02003133 * freed by the caller. It also supports being passed a NULL which results in the same
3134 * output.
Willy Tarreau21c705b2012-09-14 11:40:36 +02003135 * Example of use :
3136 * parse(cmd, &err); (callee: memprintf(&err, ...))
3137 * fprintf(stderr, "Parser said: %s\n", indent_error(&err));
3138 * free(err);
3139 */
3140char *indent_msg(char **out, int level)
3141{
3142 char *ret, *in, *p;
3143 int needed = 0;
3144 int lf = 0;
3145 int lastlf = 0;
3146 int len;
3147
Willy Tarreau70eec382012-10-10 08:56:47 +02003148 if (!out || !*out)
3149 return NULL;
3150
Willy Tarreau21c705b2012-09-14 11:40:36 +02003151 in = *out - 1;
3152 while ((in = strchr(in + 1, '\n')) != NULL) {
3153 lastlf = in - *out;
3154 lf++;
3155 }
3156
3157 if (!lf) /* single line, no LF, return it as-is */
3158 return *out;
3159
3160 len = strlen(*out);
3161
3162 if (lf == 1 && lastlf == len - 1) {
3163 /* single line, LF at end, strip it and return as-is */
3164 (*out)[lastlf] = 0;
3165 return *out;
3166 }
3167
3168 /* OK now we have at least one LF, we need to process the whole string
3169 * as a multi-line string. What we'll do :
3170 * - prefix with an LF if there is none
3171 * - add <level> spaces before each line
3172 * This means at most ( 1 + level + (len-lf) + lf*<1+level) ) =
3173 * 1 + level + len + lf * level = 1 + level * (lf + 1) + len.
3174 */
3175
3176 needed = 1 + level * (lf + 1) + len + 1;
3177 p = ret = malloc(needed);
3178 in = *out;
3179
3180 /* skip initial LFs */
3181 while (*in == '\n')
3182 in++;
3183
3184 /* copy each line, prefixed with LF and <level> spaces, and without the trailing LF */
3185 while (*in) {
3186 *p++ = '\n';
3187 memset(p, ' ', level);
3188 p += level;
3189 do {
3190 *p++ = *in++;
3191 } while (*in && *in != '\n');
3192 if (*in)
3193 in++;
3194 }
3195 *p = 0;
3196
3197 free(*out);
3198 *out = ret;
3199
3200 return ret;
3201}
3202
Willy Tarreaudad36a32013-03-11 01:20:04 +01003203/* Convert occurrences of environment variables in the input string to their
3204 * corresponding value. A variable is identified as a series of alphanumeric
3205 * characters or underscores following a '$' sign. The <in> string must be
3206 * free()able. NULL returns NULL. The resulting string might be reallocated if
3207 * some expansion is made. Variable names may also be enclosed into braces if
3208 * needed (eg: to concatenate alphanum characters).
3209 */
3210char *env_expand(char *in)
3211{
3212 char *txt_beg;
3213 char *out;
3214 char *txt_end;
3215 char *var_beg;
3216 char *var_end;
3217 char *value;
3218 char *next;
3219 int out_len;
3220 int val_len;
3221
3222 if (!in)
3223 return in;
3224
3225 value = out = NULL;
3226 out_len = 0;
3227
3228 txt_beg = in;
3229 do {
3230 /* look for next '$' sign in <in> */
3231 for (txt_end = txt_beg; *txt_end && *txt_end != '$'; txt_end++);
3232
3233 if (!*txt_end && !out) /* end and no expansion performed */
3234 return in;
3235
3236 val_len = 0;
3237 next = txt_end;
3238 if (*txt_end == '$') {
3239 char save;
3240
3241 var_beg = txt_end + 1;
3242 if (*var_beg == '{')
3243 var_beg++;
3244
3245 var_end = var_beg;
3246 while (isalnum((int)(unsigned char)*var_end) || *var_end == '_') {
3247 var_end++;
3248 }
3249
3250 next = var_end;
3251 if (*var_end == '}' && (var_beg > txt_end + 1))
3252 next++;
3253
3254 /* get value of the variable name at this location */
3255 save = *var_end;
3256 *var_end = '\0';
3257 value = getenv(var_beg);
3258 *var_end = save;
3259 val_len = value ? strlen(value) : 0;
3260 }
3261
Hubert Verstraete831962e2016-06-28 22:44:26 +02003262 out = my_realloc2(out, out_len + (txt_end - txt_beg) + val_len + 1);
Willy Tarreaudad36a32013-03-11 01:20:04 +01003263 if (txt_end > txt_beg) {
3264 memcpy(out + out_len, txt_beg, txt_end - txt_beg);
3265 out_len += txt_end - txt_beg;
3266 }
3267 if (val_len) {
3268 memcpy(out + out_len, value, val_len);
3269 out_len += val_len;
3270 }
3271 out[out_len] = 0;
3272 txt_beg = next;
3273 } while (*txt_beg);
3274
3275 /* here we know that <out> was allocated and that we don't need <in> anymore */
3276 free(in);
3277 return out;
3278}
3279
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003280
3281/* same as strstr() but case-insensitive and with limit length */
3282const char *strnistr(const char *str1, int len_str1, const char *str2, int len_str2)
3283{
3284 char *pptr, *sptr, *start;
Willy Tarreauc8746532014-05-28 23:05:07 +02003285 unsigned int slen, plen;
3286 unsigned int tmp1, tmp2;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003287
3288 if (str1 == NULL || len_str1 == 0) // search pattern into an empty string => search is not found
3289 return NULL;
3290
3291 if (str2 == NULL || len_str2 == 0) // pattern is empty => every str1 match
3292 return str1;
3293
3294 if (len_str1 < len_str2) // pattern is longer than string => search is not found
3295 return NULL;
3296
3297 for (tmp1 = 0, start = (char *)str1, pptr = (char *)str2, slen = len_str1, plen = len_str2; slen >= plen; start++, slen--) {
3298 while (toupper(*start) != toupper(*str2)) {
3299 start++;
3300 slen--;
3301 tmp1++;
3302
3303 if (tmp1 >= len_str1)
3304 return NULL;
3305
3306 /* if pattern longer than string */
3307 if (slen < plen)
3308 return NULL;
3309 }
3310
3311 sptr = start;
3312 pptr = (char *)str2;
3313
3314 tmp2 = 0;
3315 while (toupper(*sptr) == toupper(*pptr)) {
3316 sptr++;
3317 pptr++;
3318 tmp2++;
3319
3320 if (*pptr == '\0' || tmp2 == len_str2) /* end of pattern found */
3321 return start;
3322 if (*sptr == '\0' || tmp2 == len_str1) /* end of string found and the pattern is not fully found */
3323 return NULL;
3324 }
3325 }
3326 return NULL;
3327}
3328
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02003329/* This function read the next valid utf8 char.
3330 * <s> is the byte srray to be decode, <len> is its length.
3331 * The function returns decoded char encoded like this:
3332 * The 4 msb are the return code (UTF8_CODE_*), the 4 lsb
3333 * are the length read. The decoded character is stored in <c>.
3334 */
3335unsigned char utf8_next(const char *s, int len, unsigned int *c)
3336{
3337 const unsigned char *p = (unsigned char *)s;
3338 int dec;
3339 unsigned char code = UTF8_CODE_OK;
3340
3341 if (len < 1)
3342 return UTF8_CODE_OK;
3343
3344 /* Check the type of UTF8 sequence
3345 *
3346 * 0... .... 0x00 <= x <= 0x7f : 1 byte: ascii char
3347 * 10.. .... 0x80 <= x <= 0xbf : invalid sequence
3348 * 110. .... 0xc0 <= x <= 0xdf : 2 bytes
3349 * 1110 .... 0xe0 <= x <= 0xef : 3 bytes
3350 * 1111 0... 0xf0 <= x <= 0xf7 : 4 bytes
3351 * 1111 10.. 0xf8 <= x <= 0xfb : 5 bytes
3352 * 1111 110. 0xfc <= x <= 0xfd : 6 bytes
3353 * 1111 111. 0xfe <= x <= 0xff : invalid sequence
3354 */
3355 switch (*p) {
3356 case 0x00 ... 0x7f:
3357 *c = *p;
3358 return UTF8_CODE_OK | 1;
3359
3360 case 0x80 ... 0xbf:
3361 *c = *p;
3362 return UTF8_CODE_BADSEQ | 1;
3363
3364 case 0xc0 ... 0xdf:
3365 if (len < 2) {
3366 *c = *p;
3367 return UTF8_CODE_BADSEQ | 1;
3368 }
3369 *c = *p & 0x1f;
3370 dec = 1;
3371 break;
3372
3373 case 0xe0 ... 0xef:
3374 if (len < 3) {
3375 *c = *p;
3376 return UTF8_CODE_BADSEQ | 1;
3377 }
3378 *c = *p & 0x0f;
3379 dec = 2;
3380 break;
3381
3382 case 0xf0 ... 0xf7:
3383 if (len < 4) {
3384 *c = *p;
3385 return UTF8_CODE_BADSEQ | 1;
3386 }
3387 *c = *p & 0x07;
3388 dec = 3;
3389 break;
3390
3391 case 0xf8 ... 0xfb:
3392 if (len < 5) {
3393 *c = *p;
3394 return UTF8_CODE_BADSEQ | 1;
3395 }
3396 *c = *p & 0x03;
3397 dec = 4;
3398 break;
3399
3400 case 0xfc ... 0xfd:
3401 if (len < 6) {
3402 *c = *p;
3403 return UTF8_CODE_BADSEQ | 1;
3404 }
3405 *c = *p & 0x01;
3406 dec = 5;
3407 break;
3408
3409 case 0xfe ... 0xff:
3410 default:
3411 *c = *p;
3412 return UTF8_CODE_BADSEQ | 1;
3413 }
3414
3415 p++;
3416
3417 while (dec > 0) {
3418
3419 /* need 0x10 for the 2 first bits */
3420 if ( ( *p & 0xc0 ) != 0x80 )
3421 return UTF8_CODE_BADSEQ | ((p-(unsigned char *)s)&0xffff);
3422
3423 /* add data at char */
3424 *c = ( *c << 6 ) | ( *p & 0x3f );
3425
3426 dec--;
3427 p++;
3428 }
3429
3430 /* Check ovelong encoding.
3431 * 1 byte : 5 + 6 : 11 : 0x80 ... 0x7ff
3432 * 2 bytes : 4 + 6 + 6 : 16 : 0x800 ... 0xffff
3433 * 3 bytes : 3 + 6 + 6 + 6 : 21 : 0x10000 ... 0x1fffff
3434 */
Thierry FOURNIER9e7ec082015-03-12 19:32:38 +01003435 if (( *c <= 0x7f && (p-(unsigned char *)s) > 1) ||
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02003436 (*c >= 0x80 && *c <= 0x7ff && (p-(unsigned char *)s) > 2) ||
3437 (*c >= 0x800 && *c <= 0xffff && (p-(unsigned char *)s) > 3) ||
3438 (*c >= 0x10000 && *c <= 0x1fffff && (p-(unsigned char *)s) > 4))
3439 code |= UTF8_CODE_OVERLONG;
3440
3441 /* Check invalid UTF8 range. */
3442 if ((*c >= 0xd800 && *c <= 0xdfff) ||
3443 (*c >= 0xfffe && *c <= 0xffff))
3444 code |= UTF8_CODE_INVRANGE;
3445
3446 return code | ((p-(unsigned char *)s)&0x0f);
3447}
3448
Maxime de Roucydc887852016-05-13 23:52:54 +02003449/* append a copy of string <str> (in a wordlist) at the end of the list <li>
3450 * On failure : return 0 and <err> filled with an error message.
3451 * The caller is responsible for freeing the <err> and <str> copy
3452 * memory area using free()
3453 */
3454int list_append_word(struct list *li, const char *str, char **err)
3455{
3456 struct wordlist *wl;
3457
3458 wl = calloc(1, sizeof(*wl));
3459 if (!wl) {
3460 memprintf(err, "out of memory");
3461 goto fail_wl;
3462 }
3463
3464 wl->s = strdup(str);
3465 if (!wl->s) {
3466 memprintf(err, "out of memory");
3467 goto fail_wl_s;
3468 }
3469
3470 LIST_ADDQ(li, &wl->list);
3471
3472 return 1;
3473
3474fail_wl_s:
3475 free(wl->s);
3476fail_wl:
3477 free(wl);
3478 return 0;
3479}
3480
Willy Tarreaubaaee002006-06-26 02:48:02 +02003481/*
3482 * Local variables:
3483 * c-indent-level: 8
3484 * c-basic-offset: 8
3485 * End:
3486 */