blob: 30883d759f6f683820dd268c272ed52fe0fc79b0 [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]);
Thierry FOURNIER9645d422013-12-06 19:59:28 +01002055 if (alloc)
2056 free(binstr);
Willy Tarreau126d4062013-12-03 17:50:47 +01002057 return 0;
2058}
2059
Willy Tarreau946ba592009-05-10 15:41:18 +02002060/* copies at most <n> characters from <src> and always terminates with '\0' */
2061char *my_strndup(const char *src, int n)
2062{
2063 int len = 0;
2064 char *ret;
2065
2066 while (len < n && src[len])
2067 len++;
2068
2069 ret = (char *)malloc(len + 1);
2070 if (!ret)
2071 return ret;
2072 memcpy(ret, src, len);
2073 ret[len] = '\0';
2074 return ret;
2075}
2076
Baptiste Assmannbb77c8e2013-10-06 23:24:13 +02002077/*
2078 * search needle in haystack
2079 * returns the pointer if found, returns NULL otherwise
2080 */
2081const void *my_memmem(const void *haystack, size_t haystacklen, const void *needle, size_t needlelen)
2082{
2083 const void *c = NULL;
2084 unsigned char f;
2085
2086 if ((haystack == NULL) || (needle == NULL) || (haystacklen < needlelen))
2087 return NULL;
2088
2089 f = *(char *)needle;
2090 c = haystack;
2091 while ((c = memchr(c, f, haystacklen - (c - haystack))) != NULL) {
2092 if ((haystacklen - (c - haystack)) < needlelen)
2093 return NULL;
2094
2095 if (memcmp(c, needle, needlelen) == 0)
2096 return c;
2097 ++c;
2098 }
2099 return NULL;
2100}
2101
Willy Tarreau482b00d2009-10-04 22:48:42 +02002102/* This function returns the first unused key greater than or equal to <key> in
2103 * ID tree <root>. Zero is returned if no place is found.
2104 */
2105unsigned int get_next_id(struct eb_root *root, unsigned int key)
2106{
2107 struct eb32_node *used;
2108
2109 do {
2110 used = eb32_lookup_ge(root, key);
2111 if (!used || used->key > key)
2112 return key; /* key is available */
2113 key++;
2114 } while (key);
2115 return key;
2116}
2117
Willy Tarreau348238b2010-01-18 15:05:57 +01002118/* This function compares a sample word possibly followed by blanks to another
2119 * clean word. The compare is case-insensitive. 1 is returned if both are equal,
2120 * otherwise zero. This intends to be used when checking HTTP headers for some
2121 * values. Note that it validates a word followed only by blanks but does not
2122 * validate a word followed by blanks then other chars.
2123 */
2124int word_match(const char *sample, int slen, const char *word, int wlen)
2125{
2126 if (slen < wlen)
2127 return 0;
2128
2129 while (wlen) {
2130 char c = *sample ^ *word;
2131 if (c && c != ('A' ^ 'a'))
2132 return 0;
2133 sample++;
2134 word++;
2135 slen--;
2136 wlen--;
2137 }
2138
2139 while (slen) {
2140 if (*sample != ' ' && *sample != '\t')
2141 return 0;
2142 sample++;
2143 slen--;
2144 }
2145 return 1;
2146}
Willy Tarreau482b00d2009-10-04 22:48:42 +02002147
Willy Tarreaud54bbdc2009-09-07 11:00:31 +02002148/* Converts any text-formatted IPv4 address to a host-order IPv4 address. It
2149 * is particularly fast because it avoids expensive operations such as
2150 * multiplies, which are optimized away at the end. It requires a properly
2151 * formated address though (3 points).
2152 */
2153unsigned int inetaddr_host(const char *text)
2154{
2155 const unsigned int ascii_zero = ('0' << 24) | ('0' << 16) | ('0' << 8) | '0';
2156 register unsigned int dig100, dig10, dig1;
2157 int s;
2158 const char *p, *d;
2159
2160 dig1 = dig10 = dig100 = ascii_zero;
2161 s = 24;
2162
2163 p = text;
2164 while (1) {
2165 if (((unsigned)(*p - '0')) <= 9) {
2166 p++;
2167 continue;
2168 }
2169
2170 /* here, we have a complete byte between <text> and <p> (exclusive) */
2171 if (p == text)
2172 goto end;
2173
2174 d = p - 1;
2175 dig1 |= (unsigned int)(*d << s);
2176 if (d == text)
2177 goto end;
2178
2179 d--;
2180 dig10 |= (unsigned int)(*d << s);
2181 if (d == text)
2182 goto end;
2183
2184 d--;
2185 dig100 |= (unsigned int)(*d << s);
2186 end:
2187 if (!s || *p != '.')
2188 break;
2189
2190 s -= 8;
2191 text = ++p;
2192 }
2193
2194 dig100 -= ascii_zero;
2195 dig10 -= ascii_zero;
2196 dig1 -= ascii_zero;
2197 return ((dig100 * 10) + dig10) * 10 + dig1;
2198}
2199
2200/*
2201 * Idem except the first unparsed character has to be passed in <stop>.
2202 */
2203unsigned int inetaddr_host_lim(const char *text, const char *stop)
2204{
2205 const unsigned int ascii_zero = ('0' << 24) | ('0' << 16) | ('0' << 8) | '0';
2206 register unsigned int dig100, dig10, dig1;
2207 int s;
2208 const char *p, *d;
2209
2210 dig1 = dig10 = dig100 = ascii_zero;
2211 s = 24;
2212
2213 p = text;
2214 while (1) {
2215 if (((unsigned)(*p - '0')) <= 9 && p < stop) {
2216 p++;
2217 continue;
2218 }
2219
2220 /* here, we have a complete byte between <text> and <p> (exclusive) */
2221 if (p == text)
2222 goto end;
2223
2224 d = p - 1;
2225 dig1 |= (unsigned int)(*d << s);
2226 if (d == text)
2227 goto end;
2228
2229 d--;
2230 dig10 |= (unsigned int)(*d << s);
2231 if (d == text)
2232 goto end;
2233
2234 d--;
2235 dig100 |= (unsigned int)(*d << s);
2236 end:
2237 if (!s || p == stop || *p != '.')
2238 break;
2239
2240 s -= 8;
2241 text = ++p;
2242 }
2243
2244 dig100 -= ascii_zero;
2245 dig10 -= ascii_zero;
2246 dig1 -= ascii_zero;
2247 return ((dig100 * 10) + dig10) * 10 + dig1;
2248}
2249
2250/*
2251 * Idem except the pointer to first unparsed byte is returned into <ret> which
2252 * must not be NULL.
2253 */
Willy Tarreau74172752010-10-15 23:21:42 +02002254unsigned int inetaddr_host_lim_ret(char *text, char *stop, char **ret)
Willy Tarreaud54bbdc2009-09-07 11:00:31 +02002255{
2256 const unsigned int ascii_zero = ('0' << 24) | ('0' << 16) | ('0' << 8) | '0';
2257 register unsigned int dig100, dig10, dig1;
2258 int s;
Willy Tarreau74172752010-10-15 23:21:42 +02002259 char *p, *d;
Willy Tarreaud54bbdc2009-09-07 11:00:31 +02002260
2261 dig1 = dig10 = dig100 = ascii_zero;
2262 s = 24;
2263
2264 p = text;
2265 while (1) {
2266 if (((unsigned)(*p - '0')) <= 9 && p < stop) {
2267 p++;
2268 continue;
2269 }
2270
2271 /* here, we have a complete byte between <text> and <p> (exclusive) */
2272 if (p == text)
2273 goto end;
2274
2275 d = p - 1;
2276 dig1 |= (unsigned int)(*d << s);
2277 if (d == text)
2278 goto end;
2279
2280 d--;
2281 dig10 |= (unsigned int)(*d << s);
2282 if (d == text)
2283 goto end;
2284
2285 d--;
2286 dig100 |= (unsigned int)(*d << s);
2287 end:
2288 if (!s || p == stop || *p != '.')
2289 break;
2290
2291 s -= 8;
2292 text = ++p;
2293 }
2294
2295 *ret = p;
2296 dig100 -= ascii_zero;
2297 dig10 -= ascii_zero;
2298 dig1 -= ascii_zero;
2299 return ((dig100 * 10) + dig10) * 10 + dig1;
2300}
2301
Willy Tarreauf0b38bf2010-06-06 13:22:23 +02002302/* Convert a fixed-length string to an IP address. Returns 0 in case of error,
2303 * or the number of chars read in case of success. Maybe this could be replaced
2304 * by one of the functions above. Also, apparently this function does not support
2305 * hosts above 255 and requires exactly 4 octets.
Willy Tarreau075415a2013-12-12 11:29:39 +01002306 * The destination is only modified on success.
Willy Tarreauf0b38bf2010-06-06 13:22:23 +02002307 */
2308int buf2ip(const char *buf, size_t len, struct in_addr *dst)
2309{
2310 const char *addr;
2311 int saw_digit, octets, ch;
2312 u_char tmp[4], *tp;
2313 const char *cp = buf;
2314
2315 saw_digit = 0;
2316 octets = 0;
2317 *(tp = tmp) = 0;
2318
2319 for (addr = buf; addr - buf < len; addr++) {
2320 unsigned char digit = (ch = *addr) - '0';
2321
2322 if (digit > 9 && ch != '.')
2323 break;
2324
2325 if (digit <= 9) {
2326 u_int new = *tp * 10 + digit;
2327
2328 if (new > 255)
2329 return 0;
2330
2331 *tp = new;
2332
2333 if (!saw_digit) {
2334 if (++octets > 4)
2335 return 0;
2336 saw_digit = 1;
2337 }
2338 } else if (ch == '.' && saw_digit) {
2339 if (octets == 4)
2340 return 0;
2341
2342 *++tp = 0;
2343 saw_digit = 0;
2344 } else
2345 return 0;
2346 }
2347
2348 if (octets < 4)
2349 return 0;
2350
2351 memcpy(&dst->s_addr, tmp, 4);
2352 return addr - cp;
2353}
2354
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002355/* This function converts the string in <buf> of the len <len> to
2356 * struct in6_addr <dst> which must be allocated by the caller.
2357 * This function returns 1 in success case, otherwise zero.
Willy Tarreau075415a2013-12-12 11:29:39 +01002358 * The destination is only modified on success.
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002359 */
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002360int buf2ip6(const char *buf, size_t len, struct in6_addr *dst)
2361{
Thierry FOURNIERcd659912013-12-11 12:33:54 +01002362 char null_term_ip6[INET6_ADDRSTRLEN + 1];
Willy Tarreau075415a2013-12-12 11:29:39 +01002363 struct in6_addr out;
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002364
Thierry FOURNIERcd659912013-12-11 12:33:54 +01002365 if (len > INET6_ADDRSTRLEN)
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002366 return 0;
2367
2368 memcpy(null_term_ip6, buf, len);
2369 null_term_ip6[len] = '\0';
2370
Willy Tarreau075415a2013-12-12 11:29:39 +01002371 if (!inet_pton(AF_INET6, null_term_ip6, &out))
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002372 return 0;
2373
Willy Tarreau075415a2013-12-12 11:29:39 +01002374 *dst = out;
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002375 return 1;
2376}
2377
Willy Tarreauacf95772010-06-14 19:09:21 +02002378/* To be used to quote config arg positions. Returns the short string at <ptr>
2379 * surrounded by simple quotes if <ptr> is valid and non-empty, or "end of line"
2380 * if ptr is NULL or empty. The string is locally allocated.
2381 */
2382const char *quote_arg(const char *ptr)
2383{
2384 static char val[32];
2385 int i;
2386
2387 if (!ptr || !*ptr)
2388 return "end of line";
2389 val[0] = '\'';
Willy Tarreaude2dd6b2013-01-24 02:14:42 +01002390 for (i = 1; i < sizeof(val) - 2 && *ptr; i++)
Willy Tarreauacf95772010-06-14 19:09:21 +02002391 val[i] = *ptr++;
2392 val[i++] = '\'';
2393 val[i] = '\0';
2394 return val;
2395}
2396
Willy Tarreau5b180202010-07-18 10:40:48 +02002397/* returns an operator among STD_OP_* for string <str> or < 0 if unknown */
2398int get_std_op(const char *str)
2399{
2400 int ret = -1;
2401
2402 if (*str == 'e' && str[1] == 'q')
2403 ret = STD_OP_EQ;
2404 else if (*str == 'n' && str[1] == 'e')
2405 ret = STD_OP_NE;
2406 else if (*str == 'l') {
2407 if (str[1] == 'e') ret = STD_OP_LE;
2408 else if (str[1] == 't') ret = STD_OP_LT;
2409 }
2410 else if (*str == 'g') {
2411 if (str[1] == 'e') ret = STD_OP_GE;
2412 else if (str[1] == 't') ret = STD_OP_GT;
2413 }
2414
2415 if (ret == -1 || str[2] != '\0')
2416 return -1;
2417 return ret;
2418}
2419
Willy Tarreau4c14eaa2010-11-24 14:01:45 +01002420/* hash a 32-bit integer to another 32-bit integer */
2421unsigned int full_hash(unsigned int a)
2422{
2423 return __full_hash(a);
2424}
2425
David du Colombier4f92d322011-03-24 11:09:31 +01002426/* Return non-zero if IPv4 address is part of the network,
2427 * otherwise zero.
2428 */
2429int in_net_ipv4(struct in_addr *addr, struct in_addr *mask, struct in_addr *net)
2430{
2431 return((addr->s_addr & mask->s_addr) == (net->s_addr & mask->s_addr));
2432}
2433
2434/* Return non-zero if IPv6 address is part of the network,
2435 * otherwise zero.
2436 */
2437int in_net_ipv6(struct in6_addr *addr, struct in6_addr *mask, struct in6_addr *net)
2438{
2439 int i;
2440
2441 for (i = 0; i < sizeof(struct in6_addr) / sizeof(int); i++)
2442 if (((((int *)addr)[i] & ((int *)mask)[i])) !=
2443 (((int *)net)[i] & ((int *)mask)[i]))
2444 return 0;
2445 return 1;
2446}
2447
2448/* RFC 4291 prefix */
2449const char rfc4291_pfx[] = { 0x00, 0x00, 0x00, 0x00,
2450 0x00, 0x00, 0x00, 0x00,
2451 0x00, 0x00, 0xFF, 0xFF };
2452
Thierry FOURNIER4a04dc32013-11-28 16:33:15 +01002453/* Map IPv4 adress on IPv6 address, as specified in RFC 3513.
2454 * Input and output may overlap.
2455 */
David du Colombier4f92d322011-03-24 11:09:31 +01002456void v4tov6(struct in6_addr *sin6_addr, struct in_addr *sin_addr)
2457{
Thierry FOURNIER4a04dc32013-11-28 16:33:15 +01002458 struct in_addr tmp_addr;
2459
2460 tmp_addr.s_addr = sin_addr->s_addr;
David du Colombier4f92d322011-03-24 11:09:31 +01002461 memcpy(sin6_addr->s6_addr, rfc4291_pfx, sizeof(rfc4291_pfx));
Thierry FOURNIER4a04dc32013-11-28 16:33:15 +01002462 memcpy(sin6_addr->s6_addr+12, &tmp_addr.s_addr, 4);
David du Colombier4f92d322011-03-24 11:09:31 +01002463}
2464
2465/* Map IPv6 adress on IPv4 address, as specified in RFC 3513.
2466 * Return true if conversion is possible and false otherwise.
2467 */
2468int v6tov4(struct in_addr *sin_addr, struct in6_addr *sin6_addr)
2469{
2470 if (memcmp(sin6_addr->s6_addr, rfc4291_pfx, sizeof(rfc4291_pfx)) == 0) {
2471 memcpy(&(sin_addr->s_addr), &(sin6_addr->s6_addr[12]),
2472 sizeof(struct in_addr));
2473 return 1;
2474 }
2475
2476 return 0;
2477}
2478
William Lallemand421f5b52012-02-06 18:15:57 +01002479char *human_time(int t, short hz_div) {
2480 static char rv[sizeof("24855d23h")+1]; // longest of "23h59m" and "59m59s"
2481 char *p = rv;
Willy Tarreau761b3d52014-04-14 14:53:06 +02002482 char *end = rv + sizeof(rv);
William Lallemand421f5b52012-02-06 18:15:57 +01002483 int cnt=2; // print two numbers
2484
2485 if (unlikely(t < 0 || hz_div <= 0)) {
Willy Tarreau761b3d52014-04-14 14:53:06 +02002486 snprintf(p, end - p, "?");
William Lallemand421f5b52012-02-06 18:15:57 +01002487 return rv;
2488 }
2489
2490 if (unlikely(hz_div > 1))
2491 t /= hz_div;
2492
2493 if (t >= DAY) {
Willy Tarreau761b3d52014-04-14 14:53:06 +02002494 p += snprintf(p, end - p, "%dd", t / DAY);
William Lallemand421f5b52012-02-06 18:15:57 +01002495 cnt--;
2496 }
2497
2498 if (cnt && t % DAY / HOUR) {
Willy Tarreau761b3d52014-04-14 14:53:06 +02002499 p += snprintf(p, end - p, "%dh", t % DAY / HOUR);
William Lallemand421f5b52012-02-06 18:15:57 +01002500 cnt--;
2501 }
2502
2503 if (cnt && t % HOUR / MINUTE) {
Willy Tarreau761b3d52014-04-14 14:53:06 +02002504 p += snprintf(p, end - p, "%dm", t % HOUR / MINUTE);
William Lallemand421f5b52012-02-06 18:15:57 +01002505 cnt--;
2506 }
2507
2508 if ((cnt && t % MINUTE) || !t) // also display '0s'
Willy Tarreau761b3d52014-04-14 14:53:06 +02002509 p += snprintf(p, end - p, "%ds", t % MINUTE / SEC);
William Lallemand421f5b52012-02-06 18:15:57 +01002510
2511 return rv;
2512}
2513
2514const char *monthname[12] = {
2515 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
2516 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
2517};
2518
2519/* date2str_log: write a date in the format :
2520 * sprintf(str, "%02d/%s/%04d:%02d:%02d:%02d.%03d",
2521 * tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2522 * tm.tm_hour, tm.tm_min, tm.tm_sec, (int)date.tv_usec/1000);
2523 *
2524 * without using sprintf. return a pointer to the last char written (\0) or
2525 * NULL if there isn't enough space.
2526 */
2527char *date2str_log(char *dst, struct tm *tm, struct timeval *date, size_t size)
2528{
2529
2530 if (size < 25) /* the size is fixed: 24 chars + \0 */
2531 return NULL;
2532
2533 dst = utoa_pad((unsigned int)tm->tm_mday, dst, 3); // day
2534 *dst++ = '/';
2535 memcpy(dst, monthname[tm->tm_mon], 3); // month
2536 dst += 3;
2537 *dst++ = '/';
2538 dst = utoa_pad((unsigned int)tm->tm_year+1900, dst, 5); // year
2539 *dst++ = ':';
2540 dst = utoa_pad((unsigned int)tm->tm_hour, dst, 3); // hour
2541 *dst++ = ':';
2542 dst = utoa_pad((unsigned int)tm->tm_min, dst, 3); // minutes
2543 *dst++ = ':';
2544 dst = utoa_pad((unsigned int)tm->tm_sec, dst, 3); // secondes
2545 *dst++ = '.';
2546 utoa_pad((unsigned int)(date->tv_usec/1000), dst, 4); // millisecondes
2547 dst += 3; // only the 3 first digits
2548 *dst = '\0';
2549
2550 return dst;
2551}
2552
2553/* gmt2str_log: write a date in the format :
2554 * "%02d/%s/%04d:%02d:%02d:%02d +0000" without using snprintf
2555 * return a pointer to the last char written (\0) or
2556 * NULL if there isn't enough space.
2557 */
2558char *gmt2str_log(char *dst, struct tm *tm, size_t size)
2559{
Yuxans Yao4e25b012012-10-19 10:36:09 +08002560 if (size < 27) /* the size is fixed: 26 chars + \0 */
William Lallemand421f5b52012-02-06 18:15:57 +01002561 return NULL;
2562
2563 dst = utoa_pad((unsigned int)tm->tm_mday, dst, 3); // day
2564 *dst++ = '/';
2565 memcpy(dst, monthname[tm->tm_mon], 3); // month
2566 dst += 3;
2567 *dst++ = '/';
2568 dst = utoa_pad((unsigned int)tm->tm_year+1900, dst, 5); // year
2569 *dst++ = ':';
2570 dst = utoa_pad((unsigned int)tm->tm_hour, dst, 3); // hour
2571 *dst++ = ':';
2572 dst = utoa_pad((unsigned int)tm->tm_min, dst, 3); // minutes
2573 *dst++ = ':';
2574 dst = utoa_pad((unsigned int)tm->tm_sec, dst, 3); // secondes
2575 *dst++ = ' ';
2576 *dst++ = '+';
2577 *dst++ = '0';
2578 *dst++ = '0';
2579 *dst++ = '0';
2580 *dst++ = '0';
2581 *dst = '\0';
2582
2583 return dst;
2584}
2585
Yuxans Yao4e25b012012-10-19 10:36:09 +08002586/* localdate2str_log: write a date in the format :
2587 * "%02d/%s/%04d:%02d:%02d:%02d +0000(local timezone)" without using snprintf
2588 * * return a pointer to the last char written (\0) or
2589 * * NULL if there isn't enough space.
2590 */
2591char *localdate2str_log(char *dst, struct tm *tm, size_t size)
2592{
2593 if (size < 27) /* the size is fixed: 26 chars + \0 */
2594 return NULL;
2595
2596 dst = utoa_pad((unsigned int)tm->tm_mday, dst, 3); // day
2597 *dst++ = '/';
2598 memcpy(dst, monthname[tm->tm_mon], 3); // month
2599 dst += 3;
2600 *dst++ = '/';
2601 dst = utoa_pad((unsigned int)tm->tm_year+1900, dst, 5); // year
2602 *dst++ = ':';
2603 dst = utoa_pad((unsigned int)tm->tm_hour, dst, 3); // hour
2604 *dst++ = ':';
2605 dst = utoa_pad((unsigned int)tm->tm_min, dst, 3); // minutes
2606 *dst++ = ':';
2607 dst = utoa_pad((unsigned int)tm->tm_sec, dst, 3); // secondes
2608 *dst++ = ' ';
2609 memcpy(dst, localtimezone, 5); // timezone
2610 dst += 5;
2611 *dst = '\0';
2612
2613 return dst;
2614}
2615
Thierry Fournier93127942016-01-20 18:49:45 +01002616/* This function check a char. It returns true and updates
2617 * <date> and <len> pointer to the new position if the
2618 * character is found.
2619 */
2620static inline int parse_expect_char(const char **date, int *len, char c)
2621{
2622 if (*len < 1 || **date != c)
2623 return 0;
2624 (*len)--;
2625 (*date)++;
2626 return 1;
2627}
2628
2629/* This function expects a string <str> of len <l>. It return true and updates.
2630 * <date> and <len> if the string matches, otherwise, it returns false.
2631 */
2632static inline int parse_strcmp(const char **date, int *len, char *str, int l)
2633{
2634 if (*len < l || strncmp(*date, str, l) != 0)
2635 return 0;
2636 (*len) -= l;
2637 (*date) += l;
2638 return 1;
2639}
2640
2641/* This macro converts 3 chars name in integer. */
2642#define STR2I3(__a, __b, __c) ((__a) * 65536 + (__b) * 256 + (__c))
2643
2644/* day-name = %x4D.6F.6E ; "Mon", case-sensitive
2645 * / %x54.75.65 ; "Tue", case-sensitive
2646 * / %x57.65.64 ; "Wed", case-sensitive
2647 * / %x54.68.75 ; "Thu", case-sensitive
2648 * / %x46.72.69 ; "Fri", case-sensitive
2649 * / %x53.61.74 ; "Sat", case-sensitive
2650 * / %x53.75.6E ; "Sun", case-sensitive
2651 *
2652 * This array must be alphabetically sorted
2653 */
2654static inline int parse_http_dayname(const char **date, int *len, struct tm *tm)
2655{
2656 if (*len < 3)
2657 return 0;
2658 switch (STR2I3((*date)[0], (*date)[1], (*date)[2])) {
2659 case STR2I3('M','o','n'): tm->tm_wday = 1; break;
2660 case STR2I3('T','u','e'): tm->tm_wday = 2; break;
2661 case STR2I3('W','e','d'): tm->tm_wday = 3; break;
2662 case STR2I3('T','h','u'): tm->tm_wday = 4; break;
2663 case STR2I3('F','r','i'): tm->tm_wday = 5; break;
2664 case STR2I3('S','a','t'): tm->tm_wday = 6; break;
2665 case STR2I3('S','u','n'): tm->tm_wday = 7; break;
2666 default: return 0;
2667 }
2668 *len -= 3;
2669 *date += 3;
2670 return 1;
2671}
2672
2673/* month = %x4A.61.6E ; "Jan", case-sensitive
2674 * / %x46.65.62 ; "Feb", case-sensitive
2675 * / %x4D.61.72 ; "Mar", case-sensitive
2676 * / %x41.70.72 ; "Apr", case-sensitive
2677 * / %x4D.61.79 ; "May", case-sensitive
2678 * / %x4A.75.6E ; "Jun", case-sensitive
2679 * / %x4A.75.6C ; "Jul", case-sensitive
2680 * / %x41.75.67 ; "Aug", case-sensitive
2681 * / %x53.65.70 ; "Sep", case-sensitive
2682 * / %x4F.63.74 ; "Oct", case-sensitive
2683 * / %x4E.6F.76 ; "Nov", case-sensitive
2684 * / %x44.65.63 ; "Dec", case-sensitive
2685 *
2686 * This array must be alphabetically sorted
2687 */
2688static inline int parse_http_monthname(const char **date, int *len, struct tm *tm)
2689{
2690 if (*len < 3)
2691 return 0;
2692 switch (STR2I3((*date)[0], (*date)[1], (*date)[2])) {
2693 case STR2I3('J','a','n'): tm->tm_mon = 0; break;
2694 case STR2I3('F','e','b'): tm->tm_mon = 1; break;
2695 case STR2I3('M','a','r'): tm->tm_mon = 2; break;
2696 case STR2I3('A','p','r'): tm->tm_mon = 3; break;
2697 case STR2I3('M','a','y'): tm->tm_mon = 4; break;
2698 case STR2I3('J','u','n'): tm->tm_mon = 5; break;
2699 case STR2I3('J','u','l'): tm->tm_mon = 6; break;
2700 case STR2I3('A','u','g'): tm->tm_mon = 7; break;
2701 case STR2I3('S','e','p'): tm->tm_mon = 8; break;
2702 case STR2I3('O','c','t'): tm->tm_mon = 9; break;
2703 case STR2I3('N','o','v'): tm->tm_mon = 10; break;
2704 case STR2I3('D','e','c'): tm->tm_mon = 11; break;
2705 default: return 0;
2706 }
2707 *len -= 3;
2708 *date += 3;
2709 return 1;
2710}
2711
2712/* day-name-l = %x4D.6F.6E.64.61.79 ; "Monday", case-sensitive
2713 * / %x54.75.65.73.64.61.79 ; "Tuesday", case-sensitive
2714 * / %x57.65.64.6E.65.73.64.61.79 ; "Wednesday", case-sensitive
2715 * / %x54.68.75.72.73.64.61.79 ; "Thursday", case-sensitive
2716 * / %x46.72.69.64.61.79 ; "Friday", case-sensitive
2717 * / %x53.61.74.75.72.64.61.79 ; "Saturday", case-sensitive
2718 * / %x53.75.6E.64.61.79 ; "Sunday", case-sensitive
2719 *
2720 * This array must be alphabetically sorted
2721 */
2722static inline int parse_http_ldayname(const char **date, int *len, struct tm *tm)
2723{
2724 if (*len < 6) /* Minimum length. */
2725 return 0;
2726 switch (STR2I3((*date)[0], (*date)[1], (*date)[2])) {
2727 case STR2I3('M','o','n'):
2728 RET0_UNLESS(parse_strcmp(date, len, "Monday", 6));
2729 tm->tm_wday = 1;
2730 return 1;
2731 case STR2I3('T','u','e'):
2732 RET0_UNLESS(parse_strcmp(date, len, "Tuesday", 7));
2733 tm->tm_wday = 2;
2734 return 1;
2735 case STR2I3('W','e','d'):
2736 RET0_UNLESS(parse_strcmp(date, len, "Wednesday", 9));
2737 tm->tm_wday = 3;
2738 return 1;
2739 case STR2I3('T','h','u'):
2740 RET0_UNLESS(parse_strcmp(date, len, "Thursday", 8));
2741 tm->tm_wday = 4;
2742 return 1;
2743 case STR2I3('F','r','i'):
2744 RET0_UNLESS(parse_strcmp(date, len, "Friday", 6));
2745 tm->tm_wday = 5;
2746 return 1;
2747 case STR2I3('S','a','t'):
2748 RET0_UNLESS(parse_strcmp(date, len, "Saturday", 8));
2749 tm->tm_wday = 6;
2750 return 1;
2751 case STR2I3('S','u','n'):
2752 RET0_UNLESS(parse_strcmp(date, len, "Sunday", 6));
2753 tm->tm_wday = 7;
2754 return 1;
2755 }
2756 return 0;
2757}
2758
2759/* This function parses exactly 1 digit and returns the numeric value in "digit". */
2760static inline int parse_digit(const char **date, int *len, int *digit)
2761{
2762 if (*len < 1 || **date < '0' || **date > '9')
2763 return 0;
2764 *digit = (**date - '0');
2765 (*date)++;
2766 (*len)--;
2767 return 1;
2768}
2769
2770/* This function parses exactly 2 digits and returns the numeric value in "digit". */
2771static inline int parse_2digit(const char **date, int *len, int *digit)
2772{
2773 int value;
2774
2775 RET0_UNLESS(parse_digit(date, len, &value));
2776 (*digit) = value * 10;
2777 RET0_UNLESS(parse_digit(date, len, &value));
2778 (*digit) += value;
2779
2780 return 1;
2781}
2782
2783/* This function parses exactly 4 digits and returns the numeric value in "digit". */
2784static inline int parse_4digit(const char **date, int *len, int *digit)
2785{
2786 int value;
2787
2788 RET0_UNLESS(parse_digit(date, len, &value));
2789 (*digit) = value * 1000;
2790
2791 RET0_UNLESS(parse_digit(date, len, &value));
2792 (*digit) += value * 100;
2793
2794 RET0_UNLESS(parse_digit(date, len, &value));
2795 (*digit) += value * 10;
2796
2797 RET0_UNLESS(parse_digit(date, len, &value));
2798 (*digit) += value;
2799
2800 return 1;
2801}
2802
2803/* time-of-day = hour ":" minute ":" second
2804 * ; 00:00:00 - 23:59:60 (leap second)
2805 *
2806 * hour = 2DIGIT
2807 * minute = 2DIGIT
2808 * second = 2DIGIT
2809 */
2810static inline int parse_http_time(const char **date, int *len, struct tm *tm)
2811{
2812 RET0_UNLESS(parse_2digit(date, len, &tm->tm_hour)); /* hour 2DIGIT */
2813 RET0_UNLESS(parse_expect_char(date, len, ':')); /* expect ":" */
2814 RET0_UNLESS(parse_2digit(date, len, &tm->tm_min)); /* min 2DIGIT */
2815 RET0_UNLESS(parse_expect_char(date, len, ':')); /* expect ":" */
2816 RET0_UNLESS(parse_2digit(date, len, &tm->tm_sec)); /* sec 2DIGIT */
2817 return 1;
2818}
2819
2820/* From RFC7231
2821 * https://tools.ietf.org/html/rfc7231#section-7.1.1.1
2822 *
2823 * IMF-fixdate = day-name "," SP date1 SP time-of-day SP GMT
2824 * ; fixed length/zone/capitalization subset of the format
2825 * ; see Section 3.3 of [RFC5322]
2826 *
2827 *
2828 * date1 = day SP month SP year
2829 * ; e.g., 02 Jun 1982
2830 *
2831 * day = 2DIGIT
2832 * year = 4DIGIT
2833 *
2834 * GMT = %x47.4D.54 ; "GMT", case-sensitive
2835 *
2836 * time-of-day = hour ":" minute ":" second
2837 * ; 00:00:00 - 23:59:60 (leap second)
2838 *
2839 * hour = 2DIGIT
2840 * minute = 2DIGIT
2841 * second = 2DIGIT
2842 *
2843 * DIGIT = decimal 0-9
2844 */
2845int parse_imf_date(const char *date, int len, struct tm *tm)
2846{
2847 RET0_UNLESS(parse_http_dayname(&date, &len, tm)); /* day-name */
2848 RET0_UNLESS(parse_expect_char(&date, &len, ',')); /* expect "," */
2849 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2850 RET0_UNLESS(parse_2digit(&date, &len, &tm->tm_mday)); /* day 2DIGIT */
2851 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2852 RET0_UNLESS(parse_http_monthname(&date, &len, tm)); /* Month */
2853 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2854 RET0_UNLESS(parse_4digit(&date, &len, &tm->tm_year)); /* year = 4DIGIT */
2855 tm->tm_year -= 1900;
2856 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2857 RET0_UNLESS(parse_http_time(&date, &len, tm)); /* Parse time. */
2858 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2859 RET0_UNLESS(parse_strcmp(&date, &len, "GMT", 3)); /* GMT = %x47.4D.54 ; "GMT", case-sensitive */
2860 tm->tm_isdst = -1;
2861 tm->tm_gmtoff = 0;
2862 return 1;
2863}
2864
2865/* From RFC7231
2866 * https://tools.ietf.org/html/rfc7231#section-7.1.1.1
2867 *
2868 * rfc850-date = day-name-l "," SP date2 SP time-of-day SP GMT
2869 * date2 = day "-" month "-" 2DIGIT
2870 * ; e.g., 02-Jun-82
2871 *
2872 * day = 2DIGIT
2873 */
2874int parse_rfc850_date(const char *date, int len, struct tm *tm)
2875{
2876 int year;
2877
2878 RET0_UNLESS(parse_http_ldayname(&date, &len, tm)); /* Read the day name */
2879 RET0_UNLESS(parse_expect_char(&date, &len, ',')); /* expect "," */
2880 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2881 RET0_UNLESS(parse_2digit(&date, &len, &tm->tm_mday)); /* day 2DIGIT */
2882 RET0_UNLESS(parse_expect_char(&date, &len, '-')); /* expect "-" */
2883 RET0_UNLESS(parse_http_monthname(&date, &len, tm)); /* Month */
2884 RET0_UNLESS(parse_expect_char(&date, &len, '-')); /* expect "-" */
2885
2886 /* year = 2DIGIT
2887 *
2888 * Recipients of a timestamp value in rfc850-(*date) format, which uses a
2889 * two-digit year, MUST interpret a timestamp that appears to be more
2890 * than 50 years in the future as representing the most recent year in
2891 * the past that had the same last two digits.
2892 */
2893 RET0_UNLESS(parse_2digit(&date, &len, &tm->tm_year));
2894
2895 /* expect SP */
2896 if (!parse_expect_char(&date, &len, ' ')) {
2897 /* Maybe we have the date with 4 digits. */
2898 RET0_UNLESS(parse_2digit(&date, &len, &year));
2899 tm->tm_year = (tm->tm_year * 100 + year) - 1900;
2900 /* expect SP */
2901 RET0_UNLESS(parse_expect_char(&date, &len, ' '));
2902 } else {
2903 /* I fix 60 as pivot: >60: +1900, <60: +2000. Note that the
2904 * tm_year is the number of year since 1900, so for +1900, we
2905 * do nothing, and for +2000, we add 100.
2906 */
2907 if (tm->tm_year <= 60)
2908 tm->tm_year += 100;
2909 }
2910
2911 RET0_UNLESS(parse_http_time(&date, &len, tm)); /* Parse time. */
2912 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2913 RET0_UNLESS(parse_strcmp(&date, &len, "GMT", 3)); /* GMT = %x47.4D.54 ; "GMT", case-sensitive */
2914 tm->tm_isdst = -1;
2915 tm->tm_gmtoff = 0;
2916
2917 return 1;
2918}
2919
2920/* From RFC7231
2921 * https://tools.ietf.org/html/rfc7231#section-7.1.1.1
2922 *
2923 * asctime-date = day-name SP date3 SP time-of-day SP year
2924 * date3 = month SP ( 2DIGIT / ( SP 1DIGIT ))
2925 * ; e.g., Jun 2
2926 *
2927 * HTTP-date is case sensitive. A sender MUST NOT generate additional
2928 * whitespace in an HTTP-date beyond that specifically included as SP in
2929 * the grammar.
2930 */
2931int parse_asctime_date(const char *date, int len, struct tm *tm)
2932{
2933 RET0_UNLESS(parse_http_dayname(&date, &len, tm)); /* day-name */
2934 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2935 RET0_UNLESS(parse_http_monthname(&date, &len, tm)); /* expect month */
2936 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2937
2938 /* expect SP and 1DIGIT or 2DIGIT */
2939 if (parse_expect_char(&date, &len, ' '))
2940 RET0_UNLESS(parse_digit(&date, &len, &tm->tm_mday));
2941 else
2942 RET0_UNLESS(parse_2digit(&date, &len, &tm->tm_mday));
2943
2944 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2945 RET0_UNLESS(parse_http_time(&date, &len, tm)); /* Parse time. */
2946 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2947 RET0_UNLESS(parse_4digit(&date, &len, &tm->tm_year)); /* year = 4DIGIT */
2948 tm->tm_year -= 1900;
2949 tm->tm_isdst = -1;
2950 tm->tm_gmtoff = 0;
2951 return 1;
2952}
2953
2954/* From RFC7231
2955 * https://tools.ietf.org/html/rfc7231#section-7.1.1.1
2956 *
2957 * HTTP-date = IMF-fixdate / obs-date
2958 * obs-date = rfc850-date / asctime-date
2959 *
2960 * parses an HTTP date in the RFC format and is accepted
2961 * alternatives. <date> is the strinf containing the date,
2962 * len is the len of the string. <tm> is filled with the
2963 * parsed time. We must considers this time as GMT.
2964 */
2965int parse_http_date(const char *date, int len, struct tm *tm)
2966{
2967 if (parse_imf_date(date, len, tm))
2968 return 1;
2969
2970 if (parse_rfc850_date(date, len, tm))
2971 return 1;
2972
2973 if (parse_asctime_date(date, len, tm))
2974 return 1;
2975
2976 return 0;
2977}
2978
Willy Tarreau9a7bea52012-04-27 11:16:50 +02002979/* Dynamically allocates a string of the proper length to hold the formatted
2980 * output. NULL is returned on error. The caller is responsible for freeing the
2981 * memory area using free(). The resulting string is returned in <out> if the
2982 * pointer is not NULL. A previous version of <out> might be used to build the
2983 * new string, and it will be freed before returning if it is not NULL, which
2984 * makes it possible to build complex strings from iterative calls without
2985 * having to care about freeing intermediate values, as in the example below :
2986 *
2987 * memprintf(&err, "invalid argument: '%s'", arg);
2988 * ...
2989 * memprintf(&err, "parser said : <%s>\n", *err);
2990 * ...
2991 * free(*err);
2992 *
2993 * This means that <err> must be initialized to NULL before first invocation.
2994 * The return value also holds the allocated string, which eases error checking
2995 * and immediate consumption. If the output pointer is not used, NULL must be
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002996 * passed instead and it will be ignored. The returned message will then also
2997 * be NULL so that the caller does not have to bother with freeing anything.
Willy Tarreau9a7bea52012-04-27 11:16:50 +02002998 *
2999 * It is also convenient to use it without any free except the last one :
3000 * err = NULL;
3001 * if (!fct1(err)) report(*err);
3002 * if (!fct2(err)) report(*err);
3003 * if (!fct3(err)) report(*err);
3004 * free(*err);
3005 */
3006char *memprintf(char **out, const char *format, ...)
3007{
3008 va_list args;
3009 char *ret = NULL;
3010 int allocated = 0;
3011 int needed = 0;
3012
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003013 if (!out)
3014 return NULL;
3015
Willy Tarreau9a7bea52012-04-27 11:16:50 +02003016 do {
3017 /* vsnprintf() will return the required length even when the
3018 * target buffer is NULL. We do this in a loop just in case
3019 * intermediate evaluations get wrong.
3020 */
3021 va_start(args, format);
Willy Tarreau1b2fed62013-04-01 22:48:54 +02003022 needed = vsnprintf(ret, allocated, format, args);
Willy Tarreau9a7bea52012-04-27 11:16:50 +02003023 va_end(args);
3024
Willy Tarreau1b2fed62013-04-01 22:48:54 +02003025 if (needed < allocated) {
3026 /* Note: on Solaris 8, the first iteration always
3027 * returns -1 if allocated is zero, so we force a
3028 * retry.
3029 */
3030 if (!allocated)
3031 needed = 0;
3032 else
3033 break;
3034 }
Willy Tarreau9a7bea52012-04-27 11:16:50 +02003035
Willy Tarreau1b2fed62013-04-01 22:48:54 +02003036 allocated = needed + 1;
Willy Tarreau9a7bea52012-04-27 11:16:50 +02003037 ret = realloc(ret, allocated);
3038 } while (ret);
3039
3040 if (needed < 0) {
3041 /* an error was encountered */
3042 free(ret);
3043 ret = NULL;
3044 }
3045
3046 if (out) {
3047 free(*out);
3048 *out = ret;
3049 }
3050
3051 return ret;
3052}
William Lallemand421f5b52012-02-06 18:15:57 +01003053
Willy Tarreau21c705b2012-09-14 11:40:36 +02003054/* Used to add <level> spaces before each line of <out>, unless there is only one line.
3055 * The input argument is automatically freed and reassigned. The result will have to be
Willy Tarreau70eec382012-10-10 08:56:47 +02003056 * freed by the caller. It also supports being passed a NULL which results in the same
3057 * output.
Willy Tarreau21c705b2012-09-14 11:40:36 +02003058 * Example of use :
3059 * parse(cmd, &err); (callee: memprintf(&err, ...))
3060 * fprintf(stderr, "Parser said: %s\n", indent_error(&err));
3061 * free(err);
3062 */
3063char *indent_msg(char **out, int level)
3064{
3065 char *ret, *in, *p;
3066 int needed = 0;
3067 int lf = 0;
3068 int lastlf = 0;
3069 int len;
3070
Willy Tarreau70eec382012-10-10 08:56:47 +02003071 if (!out || !*out)
3072 return NULL;
3073
Willy Tarreau21c705b2012-09-14 11:40:36 +02003074 in = *out - 1;
3075 while ((in = strchr(in + 1, '\n')) != NULL) {
3076 lastlf = in - *out;
3077 lf++;
3078 }
3079
3080 if (!lf) /* single line, no LF, return it as-is */
3081 return *out;
3082
3083 len = strlen(*out);
3084
3085 if (lf == 1 && lastlf == len - 1) {
3086 /* single line, LF at end, strip it and return as-is */
3087 (*out)[lastlf] = 0;
3088 return *out;
3089 }
3090
3091 /* OK now we have at least one LF, we need to process the whole string
3092 * as a multi-line string. What we'll do :
3093 * - prefix with an LF if there is none
3094 * - add <level> spaces before each line
3095 * This means at most ( 1 + level + (len-lf) + lf*<1+level) ) =
3096 * 1 + level + len + lf * level = 1 + level * (lf + 1) + len.
3097 */
3098
3099 needed = 1 + level * (lf + 1) + len + 1;
3100 p = ret = malloc(needed);
3101 in = *out;
3102
3103 /* skip initial LFs */
3104 while (*in == '\n')
3105 in++;
3106
3107 /* copy each line, prefixed with LF and <level> spaces, and without the trailing LF */
3108 while (*in) {
3109 *p++ = '\n';
3110 memset(p, ' ', level);
3111 p += level;
3112 do {
3113 *p++ = *in++;
3114 } while (*in && *in != '\n');
3115 if (*in)
3116 in++;
3117 }
3118 *p = 0;
3119
3120 free(*out);
3121 *out = ret;
3122
3123 return ret;
3124}
3125
Willy Tarreaudad36a32013-03-11 01:20:04 +01003126/* Convert occurrences of environment variables in the input string to their
3127 * corresponding value. A variable is identified as a series of alphanumeric
3128 * characters or underscores following a '$' sign. The <in> string must be
3129 * free()able. NULL returns NULL. The resulting string might be reallocated if
3130 * some expansion is made. Variable names may also be enclosed into braces if
3131 * needed (eg: to concatenate alphanum characters).
3132 */
3133char *env_expand(char *in)
3134{
3135 char *txt_beg;
3136 char *out;
3137 char *txt_end;
3138 char *var_beg;
3139 char *var_end;
3140 char *value;
3141 char *next;
3142 int out_len;
3143 int val_len;
3144
3145 if (!in)
3146 return in;
3147
3148 value = out = NULL;
3149 out_len = 0;
3150
3151 txt_beg = in;
3152 do {
3153 /* look for next '$' sign in <in> */
3154 for (txt_end = txt_beg; *txt_end && *txt_end != '$'; txt_end++);
3155
3156 if (!*txt_end && !out) /* end and no expansion performed */
3157 return in;
3158
3159 val_len = 0;
3160 next = txt_end;
3161 if (*txt_end == '$') {
3162 char save;
3163
3164 var_beg = txt_end + 1;
3165 if (*var_beg == '{')
3166 var_beg++;
3167
3168 var_end = var_beg;
3169 while (isalnum((int)(unsigned char)*var_end) || *var_end == '_') {
3170 var_end++;
3171 }
3172
3173 next = var_end;
3174 if (*var_end == '}' && (var_beg > txt_end + 1))
3175 next++;
3176
3177 /* get value of the variable name at this location */
3178 save = *var_end;
3179 *var_end = '\0';
3180 value = getenv(var_beg);
3181 *var_end = save;
3182 val_len = value ? strlen(value) : 0;
3183 }
3184
3185 out = realloc(out, out_len + (txt_end - txt_beg) + val_len + 1);
3186 if (txt_end > txt_beg) {
3187 memcpy(out + out_len, txt_beg, txt_end - txt_beg);
3188 out_len += txt_end - txt_beg;
3189 }
3190 if (val_len) {
3191 memcpy(out + out_len, value, val_len);
3192 out_len += val_len;
3193 }
3194 out[out_len] = 0;
3195 txt_beg = next;
3196 } while (*txt_beg);
3197
3198 /* here we know that <out> was allocated and that we don't need <in> anymore */
3199 free(in);
3200 return out;
3201}
3202
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003203
3204/* same as strstr() but case-insensitive and with limit length */
3205const char *strnistr(const char *str1, int len_str1, const char *str2, int len_str2)
3206{
3207 char *pptr, *sptr, *start;
Willy Tarreauc8746532014-05-28 23:05:07 +02003208 unsigned int slen, plen;
3209 unsigned int tmp1, tmp2;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003210
3211 if (str1 == NULL || len_str1 == 0) // search pattern into an empty string => search is not found
3212 return NULL;
3213
3214 if (str2 == NULL || len_str2 == 0) // pattern is empty => every str1 match
3215 return str1;
3216
3217 if (len_str1 < len_str2) // pattern is longer than string => search is not found
3218 return NULL;
3219
3220 for (tmp1 = 0, start = (char *)str1, pptr = (char *)str2, slen = len_str1, plen = len_str2; slen >= plen; start++, slen--) {
3221 while (toupper(*start) != toupper(*str2)) {
3222 start++;
3223 slen--;
3224 tmp1++;
3225
3226 if (tmp1 >= len_str1)
3227 return NULL;
3228
3229 /* if pattern longer than string */
3230 if (slen < plen)
3231 return NULL;
3232 }
3233
3234 sptr = start;
3235 pptr = (char *)str2;
3236
3237 tmp2 = 0;
3238 while (toupper(*sptr) == toupper(*pptr)) {
3239 sptr++;
3240 pptr++;
3241 tmp2++;
3242
3243 if (*pptr == '\0' || tmp2 == len_str2) /* end of pattern found */
3244 return start;
3245 if (*sptr == '\0' || tmp2 == len_str1) /* end of string found and the pattern is not fully found */
3246 return NULL;
3247 }
3248 }
3249 return NULL;
3250}
3251
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02003252/* This function read the next valid utf8 char.
3253 * <s> is the byte srray to be decode, <len> is its length.
3254 * The function returns decoded char encoded like this:
3255 * The 4 msb are the return code (UTF8_CODE_*), the 4 lsb
3256 * are the length read. The decoded character is stored in <c>.
3257 */
3258unsigned char utf8_next(const char *s, int len, unsigned int *c)
3259{
3260 const unsigned char *p = (unsigned char *)s;
3261 int dec;
3262 unsigned char code = UTF8_CODE_OK;
3263
3264 if (len < 1)
3265 return UTF8_CODE_OK;
3266
3267 /* Check the type of UTF8 sequence
3268 *
3269 * 0... .... 0x00 <= x <= 0x7f : 1 byte: ascii char
3270 * 10.. .... 0x80 <= x <= 0xbf : invalid sequence
3271 * 110. .... 0xc0 <= x <= 0xdf : 2 bytes
3272 * 1110 .... 0xe0 <= x <= 0xef : 3 bytes
3273 * 1111 0... 0xf0 <= x <= 0xf7 : 4 bytes
3274 * 1111 10.. 0xf8 <= x <= 0xfb : 5 bytes
3275 * 1111 110. 0xfc <= x <= 0xfd : 6 bytes
3276 * 1111 111. 0xfe <= x <= 0xff : invalid sequence
3277 */
3278 switch (*p) {
3279 case 0x00 ... 0x7f:
3280 *c = *p;
3281 return UTF8_CODE_OK | 1;
3282
3283 case 0x80 ... 0xbf:
3284 *c = *p;
3285 return UTF8_CODE_BADSEQ | 1;
3286
3287 case 0xc0 ... 0xdf:
3288 if (len < 2) {
3289 *c = *p;
3290 return UTF8_CODE_BADSEQ | 1;
3291 }
3292 *c = *p & 0x1f;
3293 dec = 1;
3294 break;
3295
3296 case 0xe0 ... 0xef:
3297 if (len < 3) {
3298 *c = *p;
3299 return UTF8_CODE_BADSEQ | 1;
3300 }
3301 *c = *p & 0x0f;
3302 dec = 2;
3303 break;
3304
3305 case 0xf0 ... 0xf7:
3306 if (len < 4) {
3307 *c = *p;
3308 return UTF8_CODE_BADSEQ | 1;
3309 }
3310 *c = *p & 0x07;
3311 dec = 3;
3312 break;
3313
3314 case 0xf8 ... 0xfb:
3315 if (len < 5) {
3316 *c = *p;
3317 return UTF8_CODE_BADSEQ | 1;
3318 }
3319 *c = *p & 0x03;
3320 dec = 4;
3321 break;
3322
3323 case 0xfc ... 0xfd:
3324 if (len < 6) {
3325 *c = *p;
3326 return UTF8_CODE_BADSEQ | 1;
3327 }
3328 *c = *p & 0x01;
3329 dec = 5;
3330 break;
3331
3332 case 0xfe ... 0xff:
3333 default:
3334 *c = *p;
3335 return UTF8_CODE_BADSEQ | 1;
3336 }
3337
3338 p++;
3339
3340 while (dec > 0) {
3341
3342 /* need 0x10 for the 2 first bits */
3343 if ( ( *p & 0xc0 ) != 0x80 )
3344 return UTF8_CODE_BADSEQ | ((p-(unsigned char *)s)&0xffff);
3345
3346 /* add data at char */
3347 *c = ( *c << 6 ) | ( *p & 0x3f );
3348
3349 dec--;
3350 p++;
3351 }
3352
3353 /* Check ovelong encoding.
3354 * 1 byte : 5 + 6 : 11 : 0x80 ... 0x7ff
3355 * 2 bytes : 4 + 6 + 6 : 16 : 0x800 ... 0xffff
3356 * 3 bytes : 3 + 6 + 6 + 6 : 21 : 0x10000 ... 0x1fffff
3357 */
Thierry FOURNIER9e7ec082015-03-12 19:32:38 +01003358 if (( *c <= 0x7f && (p-(unsigned char *)s) > 1) ||
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02003359 (*c >= 0x80 && *c <= 0x7ff && (p-(unsigned char *)s) > 2) ||
3360 (*c >= 0x800 && *c <= 0xffff && (p-(unsigned char *)s) > 3) ||
3361 (*c >= 0x10000 && *c <= 0x1fffff && (p-(unsigned char *)s) > 4))
3362 code |= UTF8_CODE_OVERLONG;
3363
3364 /* Check invalid UTF8 range. */
3365 if ((*c >= 0xd800 && *c <= 0xdfff) ||
3366 (*c >= 0xfffe && *c <= 0xffff))
3367 code |= UTF8_CODE_INVRANGE;
3368
3369 return code | ((p-(unsigned char *)s)&0x0f);
3370}
3371
Willy Tarreaubaaee002006-06-26 02:48:02 +02003372/*
3373 * Local variables:
3374 * c-indent-level: 8
3375 * c-basic-offset: 8
3376 * End:
3377 */