blob: f4da01bc2ce5555e62768ccb73e1b0054e026cc3 [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
Willy Tarreauc6f4ce82009-06-10 11:09:37 +02001005/*
Willy Tarreaud077a8e2007-05-08 18:28:09 +02001006 * converts <str> to two struct in_addr* which must be pre-allocated.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001007 * The format is "addr[/mask]", where "addr" cannot be empty, and mask
1008 * is optionnal and either in the dotted or CIDR notation.
1009 * Note: "addr" can also be a hostname. Returns 1 if OK, 0 if error.
1010 */
Thierry FOURNIERfc7ac7b2014-02-11 15:23:04 +01001011int str2net(const char *str, int resolve, struct in_addr *addr, struct in_addr *mask)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001012{
Willy Tarreau8aeae4a2007-06-17 11:42:08 +02001013 __label__ out_free, out_err;
1014 char *c, *s;
1015 int ret_val;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001016
Willy Tarreau8aeae4a2007-06-17 11:42:08 +02001017 s = strdup(str);
1018 if (!s)
1019 return 0;
1020
Willy Tarreaubaaee002006-06-26 02:48:02 +02001021 memset(mask, 0, sizeof(*mask));
1022 memset(addr, 0, sizeof(*addr));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001023
Willy Tarreau8aeae4a2007-06-17 11:42:08 +02001024 if ((c = strrchr(s, '/')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001025 *c++ = '\0';
1026 /* c points to the mask */
Willy Tarreau2937c0d2010-01-26 17:36:17 +01001027 if (!str2mask(c, mask))
1028 goto out_err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001029 }
1030 else {
Willy Tarreauebd61602006-12-30 11:54:15 +01001031 mask->s_addr = ~0U;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001032 }
Willy Tarreau8aeae4a2007-06-17 11:42:08 +02001033 if (!inet_pton(AF_INET, s, addr)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001034 struct hostent *he;
1035
Thierry FOURNIERfc7ac7b2014-02-11 15:23:04 +01001036 if (!resolve)
1037 goto out_err;
1038
Willy Tarreau8aeae4a2007-06-17 11:42:08 +02001039 if ((he = gethostbyname(s)) == NULL) {
1040 goto out_err;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001041 }
1042 else
1043 *addr = *(struct in_addr *) *(he->h_addr_list);
1044 }
Willy Tarreau8aeae4a2007-06-17 11:42:08 +02001045
1046 ret_val = 1;
1047 out_free:
1048 free(s);
1049 return ret_val;
1050 out_err:
1051 ret_val = 0;
1052 goto out_free;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001053}
1054
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001055
1056/*
Willy Tarreau6d20e282012-04-27 22:49:47 +02001057 * converts <str> to two struct in6_addr* which must be pre-allocated.
1058 * The format is "addr[/mask]", where "addr" cannot be empty, and mask
1059 * is an optionnal number of bits (128 being the default).
1060 * Returns 1 if OK, 0 if error.
1061 */
1062int str62net(const char *str, struct in6_addr *addr, unsigned char *mask)
1063{
1064 char *c, *s;
1065 int ret_val = 0;
1066 char *err;
1067 unsigned long len = 128;
1068
1069 s = strdup(str);
1070 if (!s)
1071 return 0;
1072
1073 memset(mask, 0, sizeof(*mask));
1074 memset(addr, 0, sizeof(*addr));
1075
1076 if ((c = strrchr(s, '/')) != NULL) {
1077 *c++ = '\0'; /* c points to the mask */
1078 if (!*c)
1079 goto out_free;
1080
1081 len = strtoul(c, &err, 10);
1082 if ((err && *err) || (unsigned)len > 128)
1083 goto out_free;
1084 }
1085 *mask = len; /* OK we have a valid mask in <len> */
1086
1087 if (!inet_pton(AF_INET6, s, addr))
1088 goto out_free;
1089
1090 ret_val = 1;
1091 out_free:
1092 free(s);
1093 return ret_val;
1094}
1095
1096
1097/*
David du Colombier6f5ccb12011-03-10 22:26:24 +01001098 * Parse IPv4 address found in url.
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001099 */
David du Colombier6f5ccb12011-03-10 22:26:24 +01001100int url2ipv4(const char *addr, struct in_addr *dst)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001101{
1102 int saw_digit, octets, ch;
1103 u_char tmp[4], *tp;
1104 const char *cp = addr;
1105
1106 saw_digit = 0;
1107 octets = 0;
1108 *(tp = tmp) = 0;
1109
1110 while (*addr) {
1111 unsigned char digit = (ch = *addr++) - '0';
1112 if (digit > 9 && ch != '.')
1113 break;
1114 if (digit <= 9) {
1115 u_int new = *tp * 10 + digit;
1116 if (new > 255)
1117 return 0;
1118 *tp = new;
1119 if (!saw_digit) {
1120 if (++octets > 4)
1121 return 0;
1122 saw_digit = 1;
1123 }
1124 } else if (ch == '.' && saw_digit) {
1125 if (octets == 4)
1126 return 0;
1127 *++tp = 0;
1128 saw_digit = 0;
1129 } else
1130 return 0;
1131 }
1132
1133 if (octets < 4)
1134 return 0;
1135
1136 memcpy(&dst->s_addr, tmp, 4);
1137 return addr-cp-1;
1138}
1139
1140/*
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001141 * Resolve destination server from URL. Convert <str> to a sockaddr_storage.
1142 * <out> contain the code of the dectected scheme, the start and length of
1143 * the hostname. Actually only http and https are supported. <out> can be NULL.
1144 * This function returns the consumed length. It is useful if you parse complete
1145 * url like http://host:port/path, because the consumed length corresponds to
1146 * the first character of the path. If the conversion fails, it returns -1.
1147 *
1148 * This function tries to resolve the DNS name if haproxy is in starting mode.
1149 * So, this function may be used during the configuration parsing.
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001150 */
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001151int url2sa(const char *url, int ulen, struct sockaddr_storage *addr, struct split_url *out)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001152{
1153 const char *curr = url, *cp = url;
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001154 const char *end;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001155 int ret, url_code = 0;
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001156 unsigned long long int http_code = 0;
1157 int default_port;
1158 struct hostent *he;
1159 char *p;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001160
1161 /* Firstly, try to find :// pattern */
1162 while (curr < url+ulen && url_code != 0x3a2f2f) {
1163 url_code = ((url_code & 0xffff) << 8);
1164 url_code += (unsigned char)*curr++;
1165 }
1166
1167 /* Secondly, if :// pattern is found, verify parsed stuff
1168 * before pattern is matching our http pattern.
1169 * If so parse ip address and port in uri.
1170 *
1171 * WARNING: Current code doesn't support dynamic async dns resolver.
1172 */
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001173 if (url_code != 0x3a2f2f)
1174 return -1;
1175
1176 /* Copy scheme, and utrn to lower case. */
1177 while (cp < curr - 3)
1178 http_code = (http_code << 8) + *cp++;
1179 http_code |= 0x2020202020202020ULL; /* Turn everything to lower case */
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001180
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001181 /* HTTP or HTTPS url matching */
1182 if (http_code == 0x2020202068747470ULL) {
1183 default_port = 80;
1184 if (out)
1185 out->scheme = SCH_HTTP;
1186 }
1187 else if (http_code == 0x2020206874747073ULL) {
1188 default_port = 443;
1189 if (out)
1190 out->scheme = SCH_HTTPS;
1191 }
1192 else
1193 return -1;
1194
1195 /* If the next char is '[', the host address is IPv6. */
1196 if (*curr == '[') {
1197 curr++;
1198
1199 /* Check trash size */
1200 if (trash.size < ulen)
1201 return -1;
1202
1203 /* Look for ']' and copy the address in a trash buffer. */
1204 p = trash.str;
1205 for (end = curr;
1206 end < url + ulen && *end != ']';
1207 end++, p++)
1208 *p = *end;
1209 if (*end != ']')
1210 return -1;
1211 *p = '\0';
1212
1213 /* Update out. */
1214 if (out) {
1215 out->host = curr;
1216 out->host_len = end - curr;
1217 }
1218
1219 /* Try IPv6 decoding. */
1220 if (!inet_pton(AF_INET6, trash.str, &((struct sockaddr_in6 *)addr)->sin6_addr))
1221 return -1;
1222 end++;
1223
1224 /* Decode port. */
1225 if (*end == ':') {
1226 end++;
1227 default_port = read_uint(&end, url + ulen);
1228 }
1229 ((struct sockaddr_in6 *)addr)->sin6_port = htons(default_port);
1230 ((struct sockaddr_in6 *)addr)->sin6_family = AF_INET6;
1231 return end - url;
1232 }
1233 else {
1234 /* We are looking for IP address. If you want to parse and
1235 * resolve hostname found in url, you can use str2sa_range(), but
1236 * be warned this can slow down global daemon performances
1237 * while handling lagging dns responses.
1238 */
1239 ret = url2ipv4(curr, &((struct sockaddr_in *)addr)->sin_addr);
1240 if (ret) {
1241 /* Update out. */
1242 if (out) {
1243 out->host = curr;
1244 out->host_len = ret;
1245 }
1246
1247 curr += ret;
1248
1249 /* Decode port. */
1250 if (*curr == ':') {
1251 curr++;
1252 default_port = read_uint(&curr, url + ulen);
1253 }
1254 ((struct sockaddr_in *)addr)->sin_port = htons(default_port);
1255
1256 /* Set family. */
1257 ((struct sockaddr_in *)addr)->sin_family = AF_INET;
1258 return curr - url;
1259 }
1260 else if (global.mode & MODE_STARTING) {
1261 /* The IPv4 and IPv6 decoding fails, maybe the url contain name. Try to execute
1262 * synchronous DNS request only if HAProxy is in the start state.
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001263 */
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001264
1265 /* look for : or / or end */
1266 for (end = curr;
1267 end < url + ulen && *end != '/' && *end != ':';
1268 end++);
1269 memcpy(trash.str, curr, end - curr);
1270 trash.str[end - curr] = '\0';
1271
1272 /* try to resolve an IPv4/IPv6 hostname */
1273 he = gethostbyname(trash.str);
1274 if (!he)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001275 return -1;
Thierry FOURNIER9f95e402014-03-21 14:51:46 +01001276
1277 /* Update out. */
1278 if (out) {
1279 out->host = curr;
1280 out->host_len = end - curr;
1281 }
1282
1283 /* Decode port. */
1284 if (*end == ':') {
1285 end++;
1286 default_port = read_uint(&end, url + ulen);
1287 }
1288
1289 /* Copy IP address, set port and family. */
1290 switch (he->h_addrtype) {
1291 case AF_INET:
1292 ((struct sockaddr_in *)addr)->sin_addr = *(struct in_addr *) *(he->h_addr_list);
1293 ((struct sockaddr_in *)addr)->sin_port = htons(default_port);
1294 ((struct sockaddr_in *)addr)->sin_family = AF_INET;
1295 return end - url;
1296
1297 case AF_INET6:
1298 ((struct sockaddr_in6 *)addr)->sin6_addr = *(struct in6_addr *) *(he->h_addr_list);
1299 ((struct sockaddr_in6 *)addr)->sin6_port = htons(default_port);
1300 ((struct sockaddr_in6 *)addr)->sin6_family = AF_INET6;
1301 return end - url;
1302 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001303 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001304 }
Alexandre Cassen5eb1a902007-11-29 15:43:32 +01001305 return -1;
1306}
1307
Willy Tarreau631f01c2011-09-05 00:36:48 +02001308/* Tries to convert a sockaddr_storage address to text form. Upon success, the
1309 * address family is returned so that it's easy for the caller to adapt to the
1310 * output format. Zero is returned if the address family is not supported. -1
1311 * is returned upon error, with errno set. AF_INET, AF_INET6 and AF_UNIX are
1312 * supported.
1313 */
1314int addr_to_str(struct sockaddr_storage *addr, char *str, int size)
1315{
1316
1317 void *ptr;
1318
1319 if (size < 5)
1320 return 0;
1321 *str = '\0';
1322
1323 switch (addr->ss_family) {
1324 case AF_INET:
1325 ptr = &((struct sockaddr_in *)addr)->sin_addr;
1326 break;
1327 case AF_INET6:
1328 ptr = &((struct sockaddr_in6 *)addr)->sin6_addr;
1329 break;
1330 case AF_UNIX:
1331 memcpy(str, "unix", 5);
1332 return addr->ss_family;
1333 default:
1334 return 0;
1335 }
1336
1337 if (inet_ntop(addr->ss_family, ptr, str, size))
1338 return addr->ss_family;
1339
1340 /* failed */
1341 return -1;
1342}
1343
Simon Horman75ab8bd2014-06-16 09:39:41 +09001344/* Tries to convert a sockaddr_storage port to text form. Upon success, the
1345 * address family is returned so that it's easy for the caller to adapt to the
1346 * output format. Zero is returned if the address family is not supported. -1
1347 * is returned upon error, with errno set. AF_INET, AF_INET6 and AF_UNIX are
1348 * supported.
1349 */
1350int port_to_str(struct sockaddr_storage *addr, char *str, int size)
1351{
1352
1353 uint16_t port;
1354
1355
1356 if (size < 5)
1357 return 0;
1358 *str = '\0';
1359
1360 switch (addr->ss_family) {
1361 case AF_INET:
1362 port = ((struct sockaddr_in *)addr)->sin_port;
1363 break;
1364 case AF_INET6:
1365 port = ((struct sockaddr_in6 *)addr)->sin6_port;
1366 break;
1367 case AF_UNIX:
1368 memcpy(str, "unix", 5);
1369 return addr->ss_family;
1370 default:
1371 return 0;
1372 }
1373
1374 snprintf(str, size, "%u", ntohs(port));
1375 return addr->ss_family;
1376}
1377
Willy Tarreaubaaee002006-06-26 02:48:02 +02001378/* will try to encode the string <string> replacing all characters tagged in
1379 * <map> with the hexadecimal representation of their ASCII-code (2 digits)
1380 * prefixed by <escape>, and will store the result between <start> (included)
1381 * and <stop> (excluded), and will always terminate the string with a '\0'
1382 * before <stop>. The position of the '\0' is returned if the conversion
1383 * completes. If bytes are missing between <start> and <stop>, then the
1384 * conversion will be incomplete and truncated. If <stop> <= <start>, the '\0'
1385 * cannot even be stored so we return <start> without writing the 0.
1386 * The input string must also be zero-terminated.
1387 */
1388const char hextab[16] = "0123456789ABCDEF";
1389char *encode_string(char *start, char *stop,
1390 const char escape, const fd_set *map,
1391 const char *string)
1392{
1393 if (start < stop) {
1394 stop--; /* reserve one byte for the final '\0' */
1395 while (start < stop && *string != '\0') {
1396 if (!FD_ISSET((unsigned char)(*string), map))
1397 *start++ = *string;
1398 else {
1399 if (start + 3 >= stop)
1400 break;
1401 *start++ = escape;
1402 *start++ = hextab[(*string >> 4) & 15];
1403 *start++ = hextab[*string & 15];
1404 }
1405 string++;
1406 }
1407 *start = '\0';
1408 }
1409 return start;
1410}
1411
Thierry FOURNIERe059ec92014-03-17 12:01:13 +01001412/*
1413 * Same behavior as encode_string() above, except that it encodes chunk
1414 * <chunk> instead of a string.
1415 */
1416char *encode_chunk(char *start, char *stop,
1417 const char escape, const fd_set *map,
1418 const struct chunk *chunk)
1419{
1420 char *str = chunk->str;
1421 char *end = chunk->str + chunk->len;
1422
1423 if (start < stop) {
1424 stop--; /* reserve one byte for the final '\0' */
1425 while (start < stop && str < end) {
1426 if (!FD_ISSET((unsigned char)(*str), map))
1427 *start++ = *str;
1428 else {
1429 if (start + 3 >= stop)
1430 break;
1431 *start++ = escape;
1432 *start++ = hextab[(*str >> 4) & 15];
1433 *start++ = hextab[*str & 15];
1434 }
1435 str++;
1436 }
1437 *start = '\0';
1438 }
1439 return start;
1440}
1441
Dragan Dosen0edd1092016-02-12 13:23:02 +01001442/*
1443 * Tries to prefix characters tagged in the <map> with the <escape>
1444 * character. <chunk> contains the input to be escaped. The result will be
1445 * stored between <start> (included) and <stop> (excluded). The function
1446 * will always try to terminate the resulting string with a '\0' before
1447 * <stop>, and will return its position if the conversion completes.
1448 */
1449char *escape_chunk(char *start, char *stop,
1450 const char escape, const fd_set *map,
1451 const struct chunk *chunk)
1452{
1453 char *str = chunk->str;
1454 char *end = chunk->str + chunk->len;
1455
1456 if (start < stop) {
1457 stop--; /* reserve one byte for the final '\0' */
1458 while (start < stop && str < end) {
1459 if (!FD_ISSET((unsigned char)(*str), map))
1460 *start++ = *str;
1461 else {
1462 if (start + 2 >= stop)
1463 break;
1464 *start++ = escape;
1465 *start++ = *str;
1466 }
1467 str++;
1468 }
1469 *start = '\0';
1470 }
1471 return start;
1472}
1473
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001474/* Check a string for using it in a CSV output format. If the string contains
1475 * one of the following four char <">, <,>, CR or LF, the string is
1476 * encapsulated between <"> and the <"> are escaped by a <""> sequence.
1477 * <str> is the input string to be escaped. The function assumes that
1478 * the input string is null-terminated.
1479 *
1480 * If <quote> is 0, the result is returned escaped but without double quote.
Willy Tarreau898529b2016-01-06 18:07:04 +01001481 * It is useful if the escaped string is used between double quotes in the
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001482 * format.
1483 *
Willy Tarreau898529b2016-01-06 18:07:04 +01001484 * printf("..., \"%s\", ...\r\n", csv_enc(str, 0, &trash));
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001485 *
Willy Tarreaub631c292016-01-08 10:04:08 +01001486 * If <quote> is 1, the converter puts the quotes only if any reserved character
1487 * is present. If <quote> is 2, the converter always puts the quotes.
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001488 *
Willy Tarreau898529b2016-01-06 18:07:04 +01001489 * <output> is a struct chunk used for storing the output string.
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001490 *
Willy Tarreau898529b2016-01-06 18:07:04 +01001491 * The function returns the converted string on its output. If an error
1492 * occurs, the function returns an empty string. This type of output is useful
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001493 * for using the function directly as printf() argument.
1494 *
1495 * If the output buffer is too short to contain the input string, the result
1496 * is truncated.
Willy Tarreau898529b2016-01-06 18:07:04 +01001497 *
Willy Tarreaub631c292016-01-08 10:04:08 +01001498 * This function appends the encoding to the existing output chunk, and it
1499 * guarantees that it starts immediately at the first available character of
1500 * the chunk. Please use csv_enc() instead if you want to replace the output
1501 * chunk.
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001502 */
Willy Tarreau898529b2016-01-06 18:07:04 +01001503const char *csv_enc_append(const char *str, int quote, struct chunk *output)
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001504{
1505 char *end = output->str + output->size;
Willy Tarreaub631c292016-01-08 10:04:08 +01001506 char *out = output->str + output->len;
Willy Tarreau898529b2016-01-06 18:07:04 +01001507 char *ptr = out;
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001508
Willy Tarreaub631c292016-01-08 10:04:08 +01001509 if (quote == 1) {
1510 /* automatic quoting: first verify if we'll have to quote the string */
1511 if (!strpbrk(str, "\n\r,\""))
1512 quote = 0;
1513 }
1514
1515 if (quote)
1516 *ptr++ = '"';
1517
Willy Tarreau898529b2016-01-06 18:07:04 +01001518 while (*str && ptr < end - 2) { /* -2 for reserving space for <"> and \0. */
1519 *ptr = *str;
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001520 if (*str == '"') {
Willy Tarreau898529b2016-01-06 18:07:04 +01001521 ptr++;
1522 if (ptr >= end - 2) {
1523 ptr--;
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001524 break;
1525 }
Willy Tarreau898529b2016-01-06 18:07:04 +01001526 *ptr = '"';
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001527 }
Willy Tarreau898529b2016-01-06 18:07:04 +01001528 ptr++;
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001529 str++;
1530 }
1531
Willy Tarreaub631c292016-01-08 10:04:08 +01001532 if (quote)
1533 *ptr++ = '"';
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001534
Willy Tarreau898529b2016-01-06 18:07:04 +01001535 *ptr = '\0';
1536 output->len = ptr - output->str;
1537 return out;
Thierry FOURNIERddea6262015-05-28 16:00:28 +02001538}
1539
Willy Tarreaubf9c2fc2011-05-31 18:06:18 +02001540/* Decode an URL-encoded string in-place. The resulting string might
1541 * be shorter. If some forbidden characters are found, the conversion is
Thierry FOURNIER5068d962013-10-04 16:27:27 +02001542 * aborted, the string is truncated before the issue and a negative value is
1543 * returned, otherwise the operation returns the length of the decoded string.
Willy Tarreaubf9c2fc2011-05-31 18:06:18 +02001544 */
1545int url_decode(char *string)
1546{
1547 char *in, *out;
Thierry FOURNIER5068d962013-10-04 16:27:27 +02001548 int ret = -1;
Willy Tarreaubf9c2fc2011-05-31 18:06:18 +02001549
1550 in = string;
1551 out = string;
1552 while (*in) {
1553 switch (*in) {
1554 case '+' :
1555 *out++ = ' ';
1556 break;
1557 case '%' :
1558 if (!ishex(in[1]) || !ishex(in[2]))
1559 goto end;
1560 *out++ = (hex2i(in[1]) << 4) + hex2i(in[2]);
1561 in += 2;
1562 break;
1563 default:
1564 *out++ = *in;
1565 break;
1566 }
1567 in++;
1568 }
Thierry FOURNIER5068d962013-10-04 16:27:27 +02001569 ret = out - string; /* success */
Willy Tarreaubf9c2fc2011-05-31 18:06:18 +02001570 end:
1571 *out = 0;
1572 return ret;
1573}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001574
Willy Tarreau6911fa42007-03-04 18:06:08 +01001575unsigned int str2ui(const char *s)
1576{
1577 return __str2ui(s);
1578}
1579
1580unsigned int str2uic(const char *s)
1581{
1582 return __str2uic(s);
1583}
1584
1585unsigned int strl2ui(const char *s, int len)
1586{
1587 return __strl2ui(s, len);
1588}
1589
1590unsigned int strl2uic(const char *s, int len)
1591{
1592 return __strl2uic(s, len);
1593}
1594
Willy Tarreau4ec83cd2010-10-15 23:19:55 +02001595unsigned int read_uint(const char **s, const char *end)
1596{
1597 return __read_uint(s, end);
1598}
1599
Thierry FOURNIER763a5d82015-07-06 23:09:52 +02001600/* This function reads an unsigned integer from the string pointed to by <s> and
1601 * returns it. The <s> pointer is adjusted to point to the first unread char. The
1602 * function automatically stops at <end>. If the number overflows, the 2^64-1
1603 * value is returned.
1604 */
1605unsigned long long int read_uint64(const char **s, const char *end)
1606{
1607 const char *ptr = *s;
1608 unsigned long long int i = 0, tmp;
1609 unsigned int j;
1610
1611 while (ptr < end) {
1612
1613 /* read next char */
1614 j = *ptr - '0';
1615 if (j > 9)
1616 goto read_uint64_end;
1617
1618 /* add char to the number and check overflow. */
1619 tmp = i * 10;
1620 if (tmp / 10 != i) {
1621 i = ULLONG_MAX;
1622 goto read_uint64_eat;
1623 }
1624 if (ULLONG_MAX - tmp < j) {
1625 i = ULLONG_MAX;
1626 goto read_uint64_eat;
1627 }
1628 i = tmp + j;
1629 ptr++;
1630 }
1631read_uint64_eat:
1632 /* eat each numeric char */
1633 while (ptr < end) {
1634 if ((unsigned int)(*ptr - '0') > 9)
1635 break;
1636 ptr++;
1637 }
1638read_uint64_end:
1639 *s = ptr;
1640 return i;
1641}
1642
1643/* This function reads an integer from the string pointed to by <s> and returns
1644 * it. The <s> pointer is adjusted to point to the first unread char. The function
1645 * automatically stops at <end>. Il the number is bigger than 2^63-2, the 2^63-1
1646 * value is returned. If the number is lowest than -2^63-1, the -2^63 value is
1647 * returned.
1648 */
1649long long int read_int64(const char **s, const char *end)
1650{
1651 unsigned long long int i = 0;
1652 int neg = 0;
1653
1654 /* Look for minus char. */
1655 if (**s == '-') {
1656 neg = 1;
1657 (*s)++;
1658 }
1659 else if (**s == '+')
1660 (*s)++;
1661
1662 /* convert as positive number. */
1663 i = read_uint64(s, end);
1664
1665 if (neg) {
1666 if (i > 0x8000000000000000ULL)
1667 return LLONG_MIN;
1668 return -i;
1669 }
1670 if (i > 0x7fffffffffffffffULL)
1671 return LLONG_MAX;
1672 return i;
1673}
1674
Willy Tarreau6911fa42007-03-04 18:06:08 +01001675/* This one is 7 times faster than strtol() on athlon with checks.
1676 * It returns the value of the number composed of all valid digits read,
1677 * and can process negative numbers too.
1678 */
1679int strl2ic(const char *s, int len)
1680{
1681 int i = 0;
Willy Tarreau3f0c9762007-10-25 09:42:24 +02001682 int j, k;
Willy Tarreau6911fa42007-03-04 18:06:08 +01001683
1684 if (len > 0) {
1685 if (*s != '-') {
1686 /* positive number */
1687 while (len-- > 0) {
1688 j = (*s++) - '0';
Willy Tarreau3f0c9762007-10-25 09:42:24 +02001689 k = i * 10;
Willy Tarreau6911fa42007-03-04 18:06:08 +01001690 if (j > 9)
1691 break;
Willy Tarreau3f0c9762007-10-25 09:42:24 +02001692 i = k + j;
Willy Tarreau6911fa42007-03-04 18:06:08 +01001693 }
1694 } else {
1695 /* negative number */
1696 s++;
1697 while (--len > 0) {
1698 j = (*s++) - '0';
Willy Tarreau3f0c9762007-10-25 09:42:24 +02001699 k = i * 10;
Willy Tarreau6911fa42007-03-04 18:06:08 +01001700 if (j > 9)
1701 break;
Willy Tarreau3f0c9762007-10-25 09:42:24 +02001702 i = k - j;
Willy Tarreau6911fa42007-03-04 18:06:08 +01001703 }
1704 }
1705 }
1706 return i;
1707}
1708
1709
1710/* This function reads exactly <len> chars from <s> and converts them to a
1711 * signed integer which it stores into <ret>. It accurately detects any error
1712 * (truncated string, invalid chars, overflows). It is meant to be used in
1713 * applications designed for hostile environments. It returns zero when the
1714 * number has successfully been converted, non-zero otherwise. When an error
1715 * is returned, the <ret> value is left untouched. It is yet 5 to 40 times
1716 * faster than strtol().
1717 */
1718int strl2irc(const char *s, int len, int *ret)
1719{
1720 int i = 0;
1721 int j;
1722
1723 if (!len)
1724 return 1;
1725
1726 if (*s != '-') {
1727 /* positive number */
1728 while (len-- > 0) {
1729 j = (*s++) - '0';
1730 if (j > 9) return 1; /* invalid char */
1731 if (i > INT_MAX / 10) return 1; /* check for multiply overflow */
1732 i = i * 10;
1733 if (i + j < i) return 1; /* check for addition overflow */
1734 i = i + j;
1735 }
1736 } else {
1737 /* negative number */
1738 s++;
1739 while (--len > 0) {
1740 j = (*s++) - '0';
1741 if (j > 9) return 1; /* invalid char */
1742 if (i < INT_MIN / 10) return 1; /* check for multiply overflow */
1743 i = i * 10;
1744 if (i - j > i) return 1; /* check for subtract overflow */
1745 i = i - j;
1746 }
1747 }
1748 *ret = i;
1749 return 0;
1750}
1751
1752
1753/* This function reads exactly <len> chars from <s> and converts them to a
1754 * signed integer which it stores into <ret>. It accurately detects any error
1755 * (truncated string, invalid chars, overflows). It is meant to be used in
1756 * applications designed for hostile environments. It returns zero when the
1757 * number has successfully been converted, non-zero otherwise. When an error
1758 * is returned, the <ret> value is left untouched. It is about 3 times slower
1759 * than str2irc().
1760 */
Willy Tarreau6911fa42007-03-04 18:06:08 +01001761
1762int strl2llrc(const char *s, int len, long long *ret)
1763{
1764 long long i = 0;
1765 int j;
1766
1767 if (!len)
1768 return 1;
1769
1770 if (*s != '-') {
1771 /* positive number */
1772 while (len-- > 0) {
1773 j = (*s++) - '0';
1774 if (j > 9) return 1; /* invalid char */
1775 if (i > LLONG_MAX / 10LL) return 1; /* check for multiply overflow */
1776 i = i * 10LL;
1777 if (i + j < i) return 1; /* check for addition overflow */
1778 i = i + j;
1779 }
1780 } else {
1781 /* negative number */
1782 s++;
1783 while (--len > 0) {
1784 j = (*s++) - '0';
1785 if (j > 9) return 1; /* invalid char */
1786 if (i < LLONG_MIN / 10LL) return 1; /* check for multiply overflow */
1787 i = i * 10LL;
1788 if (i - j > i) return 1; /* check for subtract overflow */
1789 i = i - j;
1790 }
1791 }
1792 *ret = i;
1793 return 0;
1794}
1795
Thierry FOURNIER511e9472014-01-23 17:40:34 +01001796/* This function is used with pat_parse_dotted_ver(). It converts a string
1797 * composed by two number separated by a dot. Each part must contain in 16 bits
1798 * because internally they will be represented as a 32-bit quantity stored in
1799 * a 64-bit integer. It returns zero when the number has successfully been
1800 * converted, non-zero otherwise. When an error is returned, the <ret> value
1801 * is left untouched.
1802 *
1803 * "1.3" -> 0x0000000000010003
1804 * "65535.65535" -> 0x00000000ffffffff
1805 */
1806int strl2llrc_dotted(const char *text, int len, long long *ret)
1807{
1808 const char *end = &text[len];
1809 const char *p;
1810 long long major, minor;
1811
1812 /* Look for dot. */
1813 for (p = text; p < end; p++)
1814 if (*p == '.')
1815 break;
1816
1817 /* Convert major. */
1818 if (strl2llrc(text, p - text, &major) != 0)
1819 return 1;
1820
1821 /* Check major. */
1822 if (major >= 65536)
1823 return 1;
1824
1825 /* Convert minor. */
1826 minor = 0;
1827 if (p < end)
1828 if (strl2llrc(p + 1, end - (p + 1), &minor) != 0)
1829 return 1;
1830
1831 /* Check minor. */
1832 if (minor >= 65536)
1833 return 1;
1834
1835 /* Compose value. */
1836 *ret = (major << 16) | (minor & 0xffff);
1837 return 0;
1838}
1839
Willy Tarreaua0d37b62007-12-02 22:00:35 +01001840/* This function parses a time value optionally followed by a unit suffix among
1841 * "d", "h", "m", "s", "ms" or "us". It converts the value into the unit
1842 * expected by the caller. The computation does its best to avoid overflows.
1843 * The value is returned in <ret> if everything is fine, and a NULL is returned
1844 * by the function. In case of error, a pointer to the error is returned and
1845 * <ret> is left untouched. Values are automatically rounded up when needed.
1846 */
1847const char *parse_time_err(const char *text, unsigned *ret, unsigned unit_flags)
1848{
1849 unsigned imult, idiv;
1850 unsigned omult, odiv;
1851 unsigned value;
1852
1853 omult = odiv = 1;
1854
1855 switch (unit_flags & TIME_UNIT_MASK) {
1856 case TIME_UNIT_US: omult = 1000000; break;
1857 case TIME_UNIT_MS: omult = 1000; break;
1858 case TIME_UNIT_S: break;
1859 case TIME_UNIT_MIN: odiv = 60; break;
1860 case TIME_UNIT_HOUR: odiv = 3600; break;
1861 case TIME_UNIT_DAY: odiv = 86400; break;
1862 default: break;
1863 }
1864
1865 value = 0;
1866
1867 while (1) {
1868 unsigned int j;
1869
1870 j = *text - '0';
1871 if (j > 9)
1872 break;
1873 text++;
1874 value *= 10;
1875 value += j;
1876 }
1877
1878 imult = idiv = 1;
1879 switch (*text) {
1880 case '\0': /* no unit = default unit */
1881 imult = omult = idiv = odiv = 1;
1882 break;
1883 case 's': /* second = unscaled unit */
1884 break;
1885 case 'u': /* microsecond : "us" */
1886 if (text[1] == 's') {
1887 idiv = 1000000;
1888 text++;
1889 }
1890 break;
1891 case 'm': /* millisecond : "ms" or minute: "m" */
1892 if (text[1] == 's') {
1893 idiv = 1000;
1894 text++;
1895 } else
1896 imult = 60;
1897 break;
1898 case 'h': /* hour : "h" */
1899 imult = 3600;
1900 break;
1901 case 'd': /* day : "d" */
1902 imult = 86400;
1903 break;
1904 default:
1905 return text;
1906 break;
1907 }
1908
1909 if (omult % idiv == 0) { omult /= idiv; idiv = 1; }
1910 if (idiv % omult == 0) { idiv /= omult; omult = 1; }
1911 if (imult % odiv == 0) { imult /= odiv; odiv = 1; }
1912 if (odiv % imult == 0) { odiv /= imult; imult = 1; }
1913
1914 value = (value * (imult * omult) + (idiv * odiv - 1)) / (idiv * odiv);
1915 *ret = value;
1916 return NULL;
1917}
Willy Tarreau6911fa42007-03-04 18:06:08 +01001918
Emeric Brun39132b22010-01-04 14:57:24 +01001919/* this function converts the string starting at <text> to an unsigned int
1920 * stored in <ret>. If an error is detected, the pointer to the unexpected
1921 * character is returned. If the conversio is succesful, NULL is returned.
1922 */
1923const char *parse_size_err(const char *text, unsigned *ret) {
1924 unsigned value = 0;
1925
1926 while (1) {
1927 unsigned int j;
1928
1929 j = *text - '0';
1930 if (j > 9)
1931 break;
1932 if (value > ~0U / 10)
1933 return text;
1934 value *= 10;
1935 if (value > (value + j))
1936 return text;
1937 value += j;
1938 text++;
1939 }
1940
1941 switch (*text) {
1942 case '\0':
1943 break;
1944 case 'K':
1945 case 'k':
1946 if (value > ~0U >> 10)
1947 return text;
1948 value = value << 10;
1949 break;
1950 case 'M':
1951 case 'm':
1952 if (value > ~0U >> 20)
1953 return text;
1954 value = value << 20;
1955 break;
1956 case 'G':
1957 case 'g':
1958 if (value > ~0U >> 30)
1959 return text;
1960 value = value << 30;
1961 break;
1962 default:
1963 return text;
1964 }
1965
Godbach58048a22015-01-28 17:36:16 +08001966 if (*text != '\0' && *++text != '\0')
1967 return text;
1968
Emeric Brun39132b22010-01-04 14:57:24 +01001969 *ret = value;
1970 return NULL;
1971}
1972
Willy Tarreau126d4062013-12-03 17:50:47 +01001973/*
1974 * Parse binary string written in hexadecimal (source) and store the decoded
1975 * result into binstr and set binstrlen to the lengh of binstr. Memory for
1976 * binstr is allocated by the function. In case of error, returns 0 with an
Thierry FOURNIERee330af2014-01-21 11:36:14 +01001977 * error message in err. In succes case, it returns the consumed length.
Willy Tarreau126d4062013-12-03 17:50:47 +01001978 */
1979int parse_binary(const char *source, char **binstr, int *binstrlen, char **err)
1980{
1981 int len;
1982 const char *p = source;
1983 int i,j;
Thierry FOURNIER9645d422013-12-06 19:59:28 +01001984 int alloc;
Willy Tarreau126d4062013-12-03 17:50:47 +01001985
1986 len = strlen(source);
1987 if (len % 2) {
1988 memprintf(err, "an even number of hex digit is expected");
1989 return 0;
1990 }
1991
1992 len = len >> 1;
Thierry FOURNIER9645d422013-12-06 19:59:28 +01001993
Willy Tarreau126d4062013-12-03 17:50:47 +01001994 if (!*binstr) {
Thierry FOURNIER9645d422013-12-06 19:59:28 +01001995 *binstr = calloc(len, sizeof(char));
1996 if (!*binstr) {
1997 memprintf(err, "out of memory while loading string pattern");
1998 return 0;
1999 }
2000 alloc = 1;
Willy Tarreau126d4062013-12-03 17:50:47 +01002001 }
Thierry FOURNIER9645d422013-12-06 19:59:28 +01002002 else {
2003 if (*binstrlen < len) {
2004 memprintf(err, "no space avalaible in the buffer. expect %d, provides %d",
2005 len, *binstrlen);
2006 return 0;
2007 }
2008 alloc = 0;
2009 }
2010 *binstrlen = len;
Willy Tarreau126d4062013-12-03 17:50:47 +01002011
2012 i = j = 0;
2013 while (j < len) {
2014 if (!ishex(p[i++]))
2015 goto bad_input;
2016 if (!ishex(p[i++]))
2017 goto bad_input;
2018 (*binstr)[j++] = (hex2i(p[i-2]) << 4) + hex2i(p[i-1]);
2019 }
Thierry FOURNIERee330af2014-01-21 11:36:14 +01002020 return len << 1;
Willy Tarreau126d4062013-12-03 17:50:47 +01002021
2022bad_input:
2023 memprintf(err, "an hex digit is expected (found '%c')", p[i-1]);
Thierry FOURNIER9645d422013-12-06 19:59:28 +01002024 if (alloc)
2025 free(binstr);
Willy Tarreau126d4062013-12-03 17:50:47 +01002026 return 0;
2027}
2028
Willy Tarreau946ba592009-05-10 15:41:18 +02002029/* copies at most <n> characters from <src> and always terminates with '\0' */
2030char *my_strndup(const char *src, int n)
2031{
2032 int len = 0;
2033 char *ret;
2034
2035 while (len < n && src[len])
2036 len++;
2037
2038 ret = (char *)malloc(len + 1);
2039 if (!ret)
2040 return ret;
2041 memcpy(ret, src, len);
2042 ret[len] = '\0';
2043 return ret;
2044}
2045
Baptiste Assmannbb77c8e2013-10-06 23:24:13 +02002046/*
2047 * search needle in haystack
2048 * returns the pointer if found, returns NULL otherwise
2049 */
2050const void *my_memmem(const void *haystack, size_t haystacklen, const void *needle, size_t needlelen)
2051{
2052 const void *c = NULL;
2053 unsigned char f;
2054
2055 if ((haystack == NULL) || (needle == NULL) || (haystacklen < needlelen))
2056 return NULL;
2057
2058 f = *(char *)needle;
2059 c = haystack;
2060 while ((c = memchr(c, f, haystacklen - (c - haystack))) != NULL) {
2061 if ((haystacklen - (c - haystack)) < needlelen)
2062 return NULL;
2063
2064 if (memcmp(c, needle, needlelen) == 0)
2065 return c;
2066 ++c;
2067 }
2068 return NULL;
2069}
2070
Willy Tarreau482b00d2009-10-04 22:48:42 +02002071/* This function returns the first unused key greater than or equal to <key> in
2072 * ID tree <root>. Zero is returned if no place is found.
2073 */
2074unsigned int get_next_id(struct eb_root *root, unsigned int key)
2075{
2076 struct eb32_node *used;
2077
2078 do {
2079 used = eb32_lookup_ge(root, key);
2080 if (!used || used->key > key)
2081 return key; /* key is available */
2082 key++;
2083 } while (key);
2084 return key;
2085}
2086
Willy Tarreau348238b2010-01-18 15:05:57 +01002087/* This function compares a sample word possibly followed by blanks to another
2088 * clean word. The compare is case-insensitive. 1 is returned if both are equal,
2089 * otherwise zero. This intends to be used when checking HTTP headers for some
2090 * values. Note that it validates a word followed only by blanks but does not
2091 * validate a word followed by blanks then other chars.
2092 */
2093int word_match(const char *sample, int slen, const char *word, int wlen)
2094{
2095 if (slen < wlen)
2096 return 0;
2097
2098 while (wlen) {
2099 char c = *sample ^ *word;
2100 if (c && c != ('A' ^ 'a'))
2101 return 0;
2102 sample++;
2103 word++;
2104 slen--;
2105 wlen--;
2106 }
2107
2108 while (slen) {
2109 if (*sample != ' ' && *sample != '\t')
2110 return 0;
2111 sample++;
2112 slen--;
2113 }
2114 return 1;
2115}
Willy Tarreau482b00d2009-10-04 22:48:42 +02002116
Willy Tarreaud54bbdc2009-09-07 11:00:31 +02002117/* Converts any text-formatted IPv4 address to a host-order IPv4 address. It
2118 * is particularly fast because it avoids expensive operations such as
2119 * multiplies, which are optimized away at the end. It requires a properly
2120 * formated address though (3 points).
2121 */
2122unsigned int inetaddr_host(const char *text)
2123{
2124 const unsigned int ascii_zero = ('0' << 24) | ('0' << 16) | ('0' << 8) | '0';
2125 register unsigned int dig100, dig10, dig1;
2126 int s;
2127 const char *p, *d;
2128
2129 dig1 = dig10 = dig100 = ascii_zero;
2130 s = 24;
2131
2132 p = text;
2133 while (1) {
2134 if (((unsigned)(*p - '0')) <= 9) {
2135 p++;
2136 continue;
2137 }
2138
2139 /* here, we have a complete byte between <text> and <p> (exclusive) */
2140 if (p == text)
2141 goto end;
2142
2143 d = p - 1;
2144 dig1 |= (unsigned int)(*d << s);
2145 if (d == text)
2146 goto end;
2147
2148 d--;
2149 dig10 |= (unsigned int)(*d << s);
2150 if (d == text)
2151 goto end;
2152
2153 d--;
2154 dig100 |= (unsigned int)(*d << s);
2155 end:
2156 if (!s || *p != '.')
2157 break;
2158
2159 s -= 8;
2160 text = ++p;
2161 }
2162
2163 dig100 -= ascii_zero;
2164 dig10 -= ascii_zero;
2165 dig1 -= ascii_zero;
2166 return ((dig100 * 10) + dig10) * 10 + dig1;
2167}
2168
2169/*
2170 * Idem except the first unparsed character has to be passed in <stop>.
2171 */
2172unsigned int inetaddr_host_lim(const char *text, const char *stop)
2173{
2174 const unsigned int ascii_zero = ('0' << 24) | ('0' << 16) | ('0' << 8) | '0';
2175 register unsigned int dig100, dig10, dig1;
2176 int s;
2177 const char *p, *d;
2178
2179 dig1 = dig10 = dig100 = ascii_zero;
2180 s = 24;
2181
2182 p = text;
2183 while (1) {
2184 if (((unsigned)(*p - '0')) <= 9 && p < stop) {
2185 p++;
2186 continue;
2187 }
2188
2189 /* here, we have a complete byte between <text> and <p> (exclusive) */
2190 if (p == text)
2191 goto end;
2192
2193 d = p - 1;
2194 dig1 |= (unsigned int)(*d << s);
2195 if (d == text)
2196 goto end;
2197
2198 d--;
2199 dig10 |= (unsigned int)(*d << s);
2200 if (d == text)
2201 goto end;
2202
2203 d--;
2204 dig100 |= (unsigned int)(*d << s);
2205 end:
2206 if (!s || p == stop || *p != '.')
2207 break;
2208
2209 s -= 8;
2210 text = ++p;
2211 }
2212
2213 dig100 -= ascii_zero;
2214 dig10 -= ascii_zero;
2215 dig1 -= ascii_zero;
2216 return ((dig100 * 10) + dig10) * 10 + dig1;
2217}
2218
2219/*
2220 * Idem except the pointer to first unparsed byte is returned into <ret> which
2221 * must not be NULL.
2222 */
Willy Tarreau74172752010-10-15 23:21:42 +02002223unsigned int inetaddr_host_lim_ret(char *text, char *stop, char **ret)
Willy Tarreaud54bbdc2009-09-07 11:00:31 +02002224{
2225 const unsigned int ascii_zero = ('0' << 24) | ('0' << 16) | ('0' << 8) | '0';
2226 register unsigned int dig100, dig10, dig1;
2227 int s;
Willy Tarreau74172752010-10-15 23:21:42 +02002228 char *p, *d;
Willy Tarreaud54bbdc2009-09-07 11:00:31 +02002229
2230 dig1 = dig10 = dig100 = ascii_zero;
2231 s = 24;
2232
2233 p = text;
2234 while (1) {
2235 if (((unsigned)(*p - '0')) <= 9 && p < stop) {
2236 p++;
2237 continue;
2238 }
2239
2240 /* here, we have a complete byte between <text> and <p> (exclusive) */
2241 if (p == text)
2242 goto end;
2243
2244 d = p - 1;
2245 dig1 |= (unsigned int)(*d << s);
2246 if (d == text)
2247 goto end;
2248
2249 d--;
2250 dig10 |= (unsigned int)(*d << s);
2251 if (d == text)
2252 goto end;
2253
2254 d--;
2255 dig100 |= (unsigned int)(*d << s);
2256 end:
2257 if (!s || p == stop || *p != '.')
2258 break;
2259
2260 s -= 8;
2261 text = ++p;
2262 }
2263
2264 *ret = p;
2265 dig100 -= ascii_zero;
2266 dig10 -= ascii_zero;
2267 dig1 -= ascii_zero;
2268 return ((dig100 * 10) + dig10) * 10 + dig1;
2269}
2270
Willy Tarreauf0b38bf2010-06-06 13:22:23 +02002271/* Convert a fixed-length string to an IP address. Returns 0 in case of error,
2272 * or the number of chars read in case of success. Maybe this could be replaced
2273 * by one of the functions above. Also, apparently this function does not support
2274 * hosts above 255 and requires exactly 4 octets.
Willy Tarreau075415a2013-12-12 11:29:39 +01002275 * The destination is only modified on success.
Willy Tarreauf0b38bf2010-06-06 13:22:23 +02002276 */
2277int buf2ip(const char *buf, size_t len, struct in_addr *dst)
2278{
2279 const char *addr;
2280 int saw_digit, octets, ch;
2281 u_char tmp[4], *tp;
2282 const char *cp = buf;
2283
2284 saw_digit = 0;
2285 octets = 0;
2286 *(tp = tmp) = 0;
2287
2288 for (addr = buf; addr - buf < len; addr++) {
2289 unsigned char digit = (ch = *addr) - '0';
2290
2291 if (digit > 9 && ch != '.')
2292 break;
2293
2294 if (digit <= 9) {
2295 u_int new = *tp * 10 + digit;
2296
2297 if (new > 255)
2298 return 0;
2299
2300 *tp = new;
2301
2302 if (!saw_digit) {
2303 if (++octets > 4)
2304 return 0;
2305 saw_digit = 1;
2306 }
2307 } else if (ch == '.' && saw_digit) {
2308 if (octets == 4)
2309 return 0;
2310
2311 *++tp = 0;
2312 saw_digit = 0;
2313 } else
2314 return 0;
2315 }
2316
2317 if (octets < 4)
2318 return 0;
2319
2320 memcpy(&dst->s_addr, tmp, 4);
2321 return addr - cp;
2322}
2323
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002324/* This function converts the string in <buf> of the len <len> to
2325 * struct in6_addr <dst> which must be allocated by the caller.
2326 * This function returns 1 in success case, otherwise zero.
Willy Tarreau075415a2013-12-12 11:29:39 +01002327 * The destination is only modified on success.
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002328 */
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002329int buf2ip6(const char *buf, size_t len, struct in6_addr *dst)
2330{
Thierry FOURNIERcd659912013-12-11 12:33:54 +01002331 char null_term_ip6[INET6_ADDRSTRLEN + 1];
Willy Tarreau075415a2013-12-12 11:29:39 +01002332 struct in6_addr out;
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002333
Thierry FOURNIERcd659912013-12-11 12:33:54 +01002334 if (len > INET6_ADDRSTRLEN)
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002335 return 0;
2336
2337 memcpy(null_term_ip6, buf, len);
2338 null_term_ip6[len] = '\0';
2339
Willy Tarreau075415a2013-12-12 11:29:39 +01002340 if (!inet_pton(AF_INET6, null_term_ip6, &out))
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002341 return 0;
2342
Willy Tarreau075415a2013-12-12 11:29:39 +01002343 *dst = out;
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01002344 return 1;
2345}
2346
Willy Tarreauacf95772010-06-14 19:09:21 +02002347/* To be used to quote config arg positions. Returns the short string at <ptr>
2348 * surrounded by simple quotes if <ptr> is valid and non-empty, or "end of line"
2349 * if ptr is NULL or empty. The string is locally allocated.
2350 */
2351const char *quote_arg(const char *ptr)
2352{
2353 static char val[32];
2354 int i;
2355
2356 if (!ptr || !*ptr)
2357 return "end of line";
2358 val[0] = '\'';
Willy Tarreaude2dd6b2013-01-24 02:14:42 +01002359 for (i = 1; i < sizeof(val) - 2 && *ptr; i++)
Willy Tarreauacf95772010-06-14 19:09:21 +02002360 val[i] = *ptr++;
2361 val[i++] = '\'';
2362 val[i] = '\0';
2363 return val;
2364}
2365
Willy Tarreau5b180202010-07-18 10:40:48 +02002366/* returns an operator among STD_OP_* for string <str> or < 0 if unknown */
2367int get_std_op(const char *str)
2368{
2369 int ret = -1;
2370
2371 if (*str == 'e' && str[1] == 'q')
2372 ret = STD_OP_EQ;
2373 else if (*str == 'n' && str[1] == 'e')
2374 ret = STD_OP_NE;
2375 else if (*str == 'l') {
2376 if (str[1] == 'e') ret = STD_OP_LE;
2377 else if (str[1] == 't') ret = STD_OP_LT;
2378 }
2379 else if (*str == 'g') {
2380 if (str[1] == 'e') ret = STD_OP_GE;
2381 else if (str[1] == 't') ret = STD_OP_GT;
2382 }
2383
2384 if (ret == -1 || str[2] != '\0')
2385 return -1;
2386 return ret;
2387}
2388
Willy Tarreau4c14eaa2010-11-24 14:01:45 +01002389/* hash a 32-bit integer to another 32-bit integer */
2390unsigned int full_hash(unsigned int a)
2391{
2392 return __full_hash(a);
2393}
2394
David du Colombier4f92d322011-03-24 11:09:31 +01002395/* Return non-zero if IPv4 address is part of the network,
2396 * otherwise zero.
2397 */
2398int in_net_ipv4(struct in_addr *addr, struct in_addr *mask, struct in_addr *net)
2399{
2400 return((addr->s_addr & mask->s_addr) == (net->s_addr & mask->s_addr));
2401}
2402
2403/* Return non-zero if IPv6 address is part of the network,
2404 * otherwise zero.
2405 */
2406int in_net_ipv6(struct in6_addr *addr, struct in6_addr *mask, struct in6_addr *net)
2407{
2408 int i;
2409
2410 for (i = 0; i < sizeof(struct in6_addr) / sizeof(int); i++)
2411 if (((((int *)addr)[i] & ((int *)mask)[i])) !=
2412 (((int *)net)[i] & ((int *)mask)[i]))
2413 return 0;
2414 return 1;
2415}
2416
2417/* RFC 4291 prefix */
2418const char rfc4291_pfx[] = { 0x00, 0x00, 0x00, 0x00,
2419 0x00, 0x00, 0x00, 0x00,
2420 0x00, 0x00, 0xFF, 0xFF };
2421
Thierry FOURNIER4a04dc32013-11-28 16:33:15 +01002422/* Map IPv4 adress on IPv6 address, as specified in RFC 3513.
2423 * Input and output may overlap.
2424 */
David du Colombier4f92d322011-03-24 11:09:31 +01002425void v4tov6(struct in6_addr *sin6_addr, struct in_addr *sin_addr)
2426{
Thierry FOURNIER4a04dc32013-11-28 16:33:15 +01002427 struct in_addr tmp_addr;
2428
2429 tmp_addr.s_addr = sin_addr->s_addr;
David du Colombier4f92d322011-03-24 11:09:31 +01002430 memcpy(sin6_addr->s6_addr, rfc4291_pfx, sizeof(rfc4291_pfx));
Thierry FOURNIER4a04dc32013-11-28 16:33:15 +01002431 memcpy(sin6_addr->s6_addr+12, &tmp_addr.s_addr, 4);
David du Colombier4f92d322011-03-24 11:09:31 +01002432}
2433
2434/* Map IPv6 adress on IPv4 address, as specified in RFC 3513.
2435 * Return true if conversion is possible and false otherwise.
2436 */
2437int v6tov4(struct in_addr *sin_addr, struct in6_addr *sin6_addr)
2438{
2439 if (memcmp(sin6_addr->s6_addr, rfc4291_pfx, sizeof(rfc4291_pfx)) == 0) {
2440 memcpy(&(sin_addr->s_addr), &(sin6_addr->s6_addr[12]),
2441 sizeof(struct in_addr));
2442 return 1;
2443 }
2444
2445 return 0;
2446}
2447
William Lallemand421f5b52012-02-06 18:15:57 +01002448char *human_time(int t, short hz_div) {
2449 static char rv[sizeof("24855d23h")+1]; // longest of "23h59m" and "59m59s"
2450 char *p = rv;
Willy Tarreau761b3d52014-04-14 14:53:06 +02002451 char *end = rv + sizeof(rv);
William Lallemand421f5b52012-02-06 18:15:57 +01002452 int cnt=2; // print two numbers
2453
2454 if (unlikely(t < 0 || hz_div <= 0)) {
Willy Tarreau761b3d52014-04-14 14:53:06 +02002455 snprintf(p, end - p, "?");
William Lallemand421f5b52012-02-06 18:15:57 +01002456 return rv;
2457 }
2458
2459 if (unlikely(hz_div > 1))
2460 t /= hz_div;
2461
2462 if (t >= DAY) {
Willy Tarreau761b3d52014-04-14 14:53:06 +02002463 p += snprintf(p, end - p, "%dd", t / DAY);
William Lallemand421f5b52012-02-06 18:15:57 +01002464 cnt--;
2465 }
2466
2467 if (cnt && t % DAY / HOUR) {
Willy Tarreau761b3d52014-04-14 14:53:06 +02002468 p += snprintf(p, end - p, "%dh", t % DAY / HOUR);
William Lallemand421f5b52012-02-06 18:15:57 +01002469 cnt--;
2470 }
2471
2472 if (cnt && t % HOUR / MINUTE) {
Willy Tarreau761b3d52014-04-14 14:53:06 +02002473 p += snprintf(p, end - p, "%dm", t % HOUR / MINUTE);
William Lallemand421f5b52012-02-06 18:15:57 +01002474 cnt--;
2475 }
2476
2477 if ((cnt && t % MINUTE) || !t) // also display '0s'
Willy Tarreau761b3d52014-04-14 14:53:06 +02002478 p += snprintf(p, end - p, "%ds", t % MINUTE / SEC);
William Lallemand421f5b52012-02-06 18:15:57 +01002479
2480 return rv;
2481}
2482
2483const char *monthname[12] = {
2484 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
2485 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
2486};
2487
2488/* date2str_log: write a date in the format :
2489 * sprintf(str, "%02d/%s/%04d:%02d:%02d:%02d.%03d",
2490 * tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2491 * tm.tm_hour, tm.tm_min, tm.tm_sec, (int)date.tv_usec/1000);
2492 *
2493 * without using sprintf. return a pointer to the last char written (\0) or
2494 * NULL if there isn't enough space.
2495 */
2496char *date2str_log(char *dst, struct tm *tm, struct timeval *date, size_t size)
2497{
2498
2499 if (size < 25) /* the size is fixed: 24 chars + \0 */
2500 return NULL;
2501
2502 dst = utoa_pad((unsigned int)tm->tm_mday, dst, 3); // day
2503 *dst++ = '/';
2504 memcpy(dst, monthname[tm->tm_mon], 3); // month
2505 dst += 3;
2506 *dst++ = '/';
2507 dst = utoa_pad((unsigned int)tm->tm_year+1900, dst, 5); // year
2508 *dst++ = ':';
2509 dst = utoa_pad((unsigned int)tm->tm_hour, dst, 3); // hour
2510 *dst++ = ':';
2511 dst = utoa_pad((unsigned int)tm->tm_min, dst, 3); // minutes
2512 *dst++ = ':';
2513 dst = utoa_pad((unsigned int)tm->tm_sec, dst, 3); // secondes
2514 *dst++ = '.';
2515 utoa_pad((unsigned int)(date->tv_usec/1000), dst, 4); // millisecondes
2516 dst += 3; // only the 3 first digits
2517 *dst = '\0';
2518
2519 return dst;
2520}
2521
2522/* gmt2str_log: write a date in the format :
2523 * "%02d/%s/%04d:%02d:%02d:%02d +0000" without using snprintf
2524 * return a pointer to the last char written (\0) or
2525 * NULL if there isn't enough space.
2526 */
2527char *gmt2str_log(char *dst, struct tm *tm, size_t size)
2528{
Yuxans Yao4e25b012012-10-19 10:36:09 +08002529 if (size < 27) /* the size is fixed: 26 chars + \0 */
William Lallemand421f5b52012-02-06 18:15:57 +01002530 return NULL;
2531
2532 dst = utoa_pad((unsigned int)tm->tm_mday, dst, 3); // day
2533 *dst++ = '/';
2534 memcpy(dst, monthname[tm->tm_mon], 3); // month
2535 dst += 3;
2536 *dst++ = '/';
2537 dst = utoa_pad((unsigned int)tm->tm_year+1900, dst, 5); // year
2538 *dst++ = ':';
2539 dst = utoa_pad((unsigned int)tm->tm_hour, dst, 3); // hour
2540 *dst++ = ':';
2541 dst = utoa_pad((unsigned int)tm->tm_min, dst, 3); // minutes
2542 *dst++ = ':';
2543 dst = utoa_pad((unsigned int)tm->tm_sec, dst, 3); // secondes
2544 *dst++ = ' ';
2545 *dst++ = '+';
2546 *dst++ = '0';
2547 *dst++ = '0';
2548 *dst++ = '0';
2549 *dst++ = '0';
2550 *dst = '\0';
2551
2552 return dst;
2553}
2554
Yuxans Yao4e25b012012-10-19 10:36:09 +08002555/* localdate2str_log: write a date in the format :
2556 * "%02d/%s/%04d:%02d:%02d:%02d +0000(local timezone)" without using snprintf
2557 * * return a pointer to the last char written (\0) or
2558 * * NULL if there isn't enough space.
2559 */
2560char *localdate2str_log(char *dst, struct tm *tm, size_t size)
2561{
2562 if (size < 27) /* the size is fixed: 26 chars + \0 */
2563 return NULL;
2564
2565 dst = utoa_pad((unsigned int)tm->tm_mday, dst, 3); // day
2566 *dst++ = '/';
2567 memcpy(dst, monthname[tm->tm_mon], 3); // month
2568 dst += 3;
2569 *dst++ = '/';
2570 dst = utoa_pad((unsigned int)tm->tm_year+1900, dst, 5); // year
2571 *dst++ = ':';
2572 dst = utoa_pad((unsigned int)tm->tm_hour, dst, 3); // hour
2573 *dst++ = ':';
2574 dst = utoa_pad((unsigned int)tm->tm_min, dst, 3); // minutes
2575 *dst++ = ':';
2576 dst = utoa_pad((unsigned int)tm->tm_sec, dst, 3); // secondes
2577 *dst++ = ' ';
2578 memcpy(dst, localtimezone, 5); // timezone
2579 dst += 5;
2580 *dst = '\0';
2581
2582 return dst;
2583}
2584
Thierry Fournier93127942016-01-20 18:49:45 +01002585/* This function check a char. It returns true and updates
2586 * <date> and <len> pointer to the new position if the
2587 * character is found.
2588 */
2589static inline int parse_expect_char(const char **date, int *len, char c)
2590{
2591 if (*len < 1 || **date != c)
2592 return 0;
2593 (*len)--;
2594 (*date)++;
2595 return 1;
2596}
2597
2598/* This function expects a string <str> of len <l>. It return true and updates.
2599 * <date> and <len> if the string matches, otherwise, it returns false.
2600 */
2601static inline int parse_strcmp(const char **date, int *len, char *str, int l)
2602{
2603 if (*len < l || strncmp(*date, str, l) != 0)
2604 return 0;
2605 (*len) -= l;
2606 (*date) += l;
2607 return 1;
2608}
2609
2610/* This macro converts 3 chars name in integer. */
2611#define STR2I3(__a, __b, __c) ((__a) * 65536 + (__b) * 256 + (__c))
2612
2613/* day-name = %x4D.6F.6E ; "Mon", case-sensitive
2614 * / %x54.75.65 ; "Tue", case-sensitive
2615 * / %x57.65.64 ; "Wed", case-sensitive
2616 * / %x54.68.75 ; "Thu", case-sensitive
2617 * / %x46.72.69 ; "Fri", case-sensitive
2618 * / %x53.61.74 ; "Sat", case-sensitive
2619 * / %x53.75.6E ; "Sun", case-sensitive
2620 *
2621 * This array must be alphabetically sorted
2622 */
2623static inline int parse_http_dayname(const char **date, int *len, struct tm *tm)
2624{
2625 if (*len < 3)
2626 return 0;
2627 switch (STR2I3((*date)[0], (*date)[1], (*date)[2])) {
2628 case STR2I3('M','o','n'): tm->tm_wday = 1; break;
2629 case STR2I3('T','u','e'): tm->tm_wday = 2; break;
2630 case STR2I3('W','e','d'): tm->tm_wday = 3; break;
2631 case STR2I3('T','h','u'): tm->tm_wday = 4; break;
2632 case STR2I3('F','r','i'): tm->tm_wday = 5; break;
2633 case STR2I3('S','a','t'): tm->tm_wday = 6; break;
2634 case STR2I3('S','u','n'): tm->tm_wday = 7; break;
2635 default: return 0;
2636 }
2637 *len -= 3;
2638 *date += 3;
2639 return 1;
2640}
2641
2642/* month = %x4A.61.6E ; "Jan", case-sensitive
2643 * / %x46.65.62 ; "Feb", case-sensitive
2644 * / %x4D.61.72 ; "Mar", case-sensitive
2645 * / %x41.70.72 ; "Apr", case-sensitive
2646 * / %x4D.61.79 ; "May", case-sensitive
2647 * / %x4A.75.6E ; "Jun", case-sensitive
2648 * / %x4A.75.6C ; "Jul", case-sensitive
2649 * / %x41.75.67 ; "Aug", case-sensitive
2650 * / %x53.65.70 ; "Sep", case-sensitive
2651 * / %x4F.63.74 ; "Oct", case-sensitive
2652 * / %x4E.6F.76 ; "Nov", case-sensitive
2653 * / %x44.65.63 ; "Dec", case-sensitive
2654 *
2655 * This array must be alphabetically sorted
2656 */
2657static inline int parse_http_monthname(const char **date, int *len, struct tm *tm)
2658{
2659 if (*len < 3)
2660 return 0;
2661 switch (STR2I3((*date)[0], (*date)[1], (*date)[2])) {
2662 case STR2I3('J','a','n'): tm->tm_mon = 0; break;
2663 case STR2I3('F','e','b'): tm->tm_mon = 1; break;
2664 case STR2I3('M','a','r'): tm->tm_mon = 2; break;
2665 case STR2I3('A','p','r'): tm->tm_mon = 3; break;
2666 case STR2I3('M','a','y'): tm->tm_mon = 4; break;
2667 case STR2I3('J','u','n'): tm->tm_mon = 5; break;
2668 case STR2I3('J','u','l'): tm->tm_mon = 6; break;
2669 case STR2I3('A','u','g'): tm->tm_mon = 7; break;
2670 case STR2I3('S','e','p'): tm->tm_mon = 8; break;
2671 case STR2I3('O','c','t'): tm->tm_mon = 9; break;
2672 case STR2I3('N','o','v'): tm->tm_mon = 10; break;
2673 case STR2I3('D','e','c'): tm->tm_mon = 11; break;
2674 default: return 0;
2675 }
2676 *len -= 3;
2677 *date += 3;
2678 return 1;
2679}
2680
2681/* day-name-l = %x4D.6F.6E.64.61.79 ; "Monday", case-sensitive
2682 * / %x54.75.65.73.64.61.79 ; "Tuesday", case-sensitive
2683 * / %x57.65.64.6E.65.73.64.61.79 ; "Wednesday", case-sensitive
2684 * / %x54.68.75.72.73.64.61.79 ; "Thursday", case-sensitive
2685 * / %x46.72.69.64.61.79 ; "Friday", case-sensitive
2686 * / %x53.61.74.75.72.64.61.79 ; "Saturday", case-sensitive
2687 * / %x53.75.6E.64.61.79 ; "Sunday", case-sensitive
2688 *
2689 * This array must be alphabetically sorted
2690 */
2691static inline int parse_http_ldayname(const char **date, int *len, struct tm *tm)
2692{
2693 if (*len < 6) /* Minimum length. */
2694 return 0;
2695 switch (STR2I3((*date)[0], (*date)[1], (*date)[2])) {
2696 case STR2I3('M','o','n'):
2697 RET0_UNLESS(parse_strcmp(date, len, "Monday", 6));
2698 tm->tm_wday = 1;
2699 return 1;
2700 case STR2I3('T','u','e'):
2701 RET0_UNLESS(parse_strcmp(date, len, "Tuesday", 7));
2702 tm->tm_wday = 2;
2703 return 1;
2704 case STR2I3('W','e','d'):
2705 RET0_UNLESS(parse_strcmp(date, len, "Wednesday", 9));
2706 tm->tm_wday = 3;
2707 return 1;
2708 case STR2I3('T','h','u'):
2709 RET0_UNLESS(parse_strcmp(date, len, "Thursday", 8));
2710 tm->tm_wday = 4;
2711 return 1;
2712 case STR2I3('F','r','i'):
2713 RET0_UNLESS(parse_strcmp(date, len, "Friday", 6));
2714 tm->tm_wday = 5;
2715 return 1;
2716 case STR2I3('S','a','t'):
2717 RET0_UNLESS(parse_strcmp(date, len, "Saturday", 8));
2718 tm->tm_wday = 6;
2719 return 1;
2720 case STR2I3('S','u','n'):
2721 RET0_UNLESS(parse_strcmp(date, len, "Sunday", 6));
2722 tm->tm_wday = 7;
2723 return 1;
2724 }
2725 return 0;
2726}
2727
2728/* This function parses exactly 1 digit and returns the numeric value in "digit". */
2729static inline int parse_digit(const char **date, int *len, int *digit)
2730{
2731 if (*len < 1 || **date < '0' || **date > '9')
2732 return 0;
2733 *digit = (**date - '0');
2734 (*date)++;
2735 (*len)--;
2736 return 1;
2737}
2738
2739/* This function parses exactly 2 digits and returns the numeric value in "digit". */
2740static inline int parse_2digit(const char **date, int *len, int *digit)
2741{
2742 int value;
2743
2744 RET0_UNLESS(parse_digit(date, len, &value));
2745 (*digit) = value * 10;
2746 RET0_UNLESS(parse_digit(date, len, &value));
2747 (*digit) += value;
2748
2749 return 1;
2750}
2751
2752/* This function parses exactly 4 digits and returns the numeric value in "digit". */
2753static inline int parse_4digit(const char **date, int *len, int *digit)
2754{
2755 int value;
2756
2757 RET0_UNLESS(parse_digit(date, len, &value));
2758 (*digit) = value * 1000;
2759
2760 RET0_UNLESS(parse_digit(date, len, &value));
2761 (*digit) += value * 100;
2762
2763 RET0_UNLESS(parse_digit(date, len, &value));
2764 (*digit) += value * 10;
2765
2766 RET0_UNLESS(parse_digit(date, len, &value));
2767 (*digit) += value;
2768
2769 return 1;
2770}
2771
2772/* time-of-day = hour ":" minute ":" second
2773 * ; 00:00:00 - 23:59:60 (leap second)
2774 *
2775 * hour = 2DIGIT
2776 * minute = 2DIGIT
2777 * second = 2DIGIT
2778 */
2779static inline int parse_http_time(const char **date, int *len, struct tm *tm)
2780{
2781 RET0_UNLESS(parse_2digit(date, len, &tm->tm_hour)); /* hour 2DIGIT */
2782 RET0_UNLESS(parse_expect_char(date, len, ':')); /* expect ":" */
2783 RET0_UNLESS(parse_2digit(date, len, &tm->tm_min)); /* min 2DIGIT */
2784 RET0_UNLESS(parse_expect_char(date, len, ':')); /* expect ":" */
2785 RET0_UNLESS(parse_2digit(date, len, &tm->tm_sec)); /* sec 2DIGIT */
2786 return 1;
2787}
2788
2789/* From RFC7231
2790 * https://tools.ietf.org/html/rfc7231#section-7.1.1.1
2791 *
2792 * IMF-fixdate = day-name "," SP date1 SP time-of-day SP GMT
2793 * ; fixed length/zone/capitalization subset of the format
2794 * ; see Section 3.3 of [RFC5322]
2795 *
2796 *
2797 * date1 = day SP month SP year
2798 * ; e.g., 02 Jun 1982
2799 *
2800 * day = 2DIGIT
2801 * year = 4DIGIT
2802 *
2803 * GMT = %x47.4D.54 ; "GMT", case-sensitive
2804 *
2805 * time-of-day = hour ":" minute ":" second
2806 * ; 00:00:00 - 23:59:60 (leap second)
2807 *
2808 * hour = 2DIGIT
2809 * minute = 2DIGIT
2810 * second = 2DIGIT
2811 *
2812 * DIGIT = decimal 0-9
2813 */
2814int parse_imf_date(const char *date, int len, struct tm *tm)
2815{
2816 RET0_UNLESS(parse_http_dayname(&date, &len, tm)); /* day-name */
2817 RET0_UNLESS(parse_expect_char(&date, &len, ',')); /* expect "," */
2818 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2819 RET0_UNLESS(parse_2digit(&date, &len, &tm->tm_mday)); /* day 2DIGIT */
2820 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2821 RET0_UNLESS(parse_http_monthname(&date, &len, tm)); /* Month */
2822 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2823 RET0_UNLESS(parse_4digit(&date, &len, &tm->tm_year)); /* year = 4DIGIT */
2824 tm->tm_year -= 1900;
2825 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2826 RET0_UNLESS(parse_http_time(&date, &len, tm)); /* Parse time. */
2827 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2828 RET0_UNLESS(parse_strcmp(&date, &len, "GMT", 3)); /* GMT = %x47.4D.54 ; "GMT", case-sensitive */
2829 tm->tm_isdst = -1;
2830 tm->tm_gmtoff = 0;
2831 return 1;
2832}
2833
2834/* From RFC7231
2835 * https://tools.ietf.org/html/rfc7231#section-7.1.1.1
2836 *
2837 * rfc850-date = day-name-l "," SP date2 SP time-of-day SP GMT
2838 * date2 = day "-" month "-" 2DIGIT
2839 * ; e.g., 02-Jun-82
2840 *
2841 * day = 2DIGIT
2842 */
2843int parse_rfc850_date(const char *date, int len, struct tm *tm)
2844{
2845 int year;
2846
2847 RET0_UNLESS(parse_http_ldayname(&date, &len, tm)); /* Read the 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 "-" */
2852 RET0_UNLESS(parse_http_monthname(&date, &len, tm)); /* Month */
2853 RET0_UNLESS(parse_expect_char(&date, &len, '-')); /* expect "-" */
2854
2855 /* year = 2DIGIT
2856 *
2857 * Recipients of a timestamp value in rfc850-(*date) format, which uses a
2858 * two-digit year, MUST interpret a timestamp that appears to be more
2859 * than 50 years in the future as representing the most recent year in
2860 * the past that had the same last two digits.
2861 */
2862 RET0_UNLESS(parse_2digit(&date, &len, &tm->tm_year));
2863
2864 /* expect SP */
2865 if (!parse_expect_char(&date, &len, ' ')) {
2866 /* Maybe we have the date with 4 digits. */
2867 RET0_UNLESS(parse_2digit(&date, &len, &year));
2868 tm->tm_year = (tm->tm_year * 100 + year) - 1900;
2869 /* expect SP */
2870 RET0_UNLESS(parse_expect_char(&date, &len, ' '));
2871 } else {
2872 /* I fix 60 as pivot: >60: +1900, <60: +2000. Note that the
2873 * tm_year is the number of year since 1900, so for +1900, we
2874 * do nothing, and for +2000, we add 100.
2875 */
2876 if (tm->tm_year <= 60)
2877 tm->tm_year += 100;
2878 }
2879
2880 RET0_UNLESS(parse_http_time(&date, &len, tm)); /* Parse time. */
2881 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2882 RET0_UNLESS(parse_strcmp(&date, &len, "GMT", 3)); /* GMT = %x47.4D.54 ; "GMT", case-sensitive */
2883 tm->tm_isdst = -1;
2884 tm->tm_gmtoff = 0;
2885
2886 return 1;
2887}
2888
2889/* From RFC7231
2890 * https://tools.ietf.org/html/rfc7231#section-7.1.1.1
2891 *
2892 * asctime-date = day-name SP date3 SP time-of-day SP year
2893 * date3 = month SP ( 2DIGIT / ( SP 1DIGIT ))
2894 * ; e.g., Jun 2
2895 *
2896 * HTTP-date is case sensitive. A sender MUST NOT generate additional
2897 * whitespace in an HTTP-date beyond that specifically included as SP in
2898 * the grammar.
2899 */
2900int parse_asctime_date(const char *date, int len, struct tm *tm)
2901{
2902 RET0_UNLESS(parse_http_dayname(&date, &len, tm)); /* day-name */
2903 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2904 RET0_UNLESS(parse_http_monthname(&date, &len, tm)); /* expect month */
2905 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2906
2907 /* expect SP and 1DIGIT or 2DIGIT */
2908 if (parse_expect_char(&date, &len, ' '))
2909 RET0_UNLESS(parse_digit(&date, &len, &tm->tm_mday));
2910 else
2911 RET0_UNLESS(parse_2digit(&date, &len, &tm->tm_mday));
2912
2913 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2914 RET0_UNLESS(parse_http_time(&date, &len, tm)); /* Parse time. */
2915 RET0_UNLESS(parse_expect_char(&date, &len, ' ')); /* expect SP */
2916 RET0_UNLESS(parse_4digit(&date, &len, &tm->tm_year)); /* year = 4DIGIT */
2917 tm->tm_year -= 1900;
2918 tm->tm_isdst = -1;
2919 tm->tm_gmtoff = 0;
2920 return 1;
2921}
2922
2923/* From RFC7231
2924 * https://tools.ietf.org/html/rfc7231#section-7.1.1.1
2925 *
2926 * HTTP-date = IMF-fixdate / obs-date
2927 * obs-date = rfc850-date / asctime-date
2928 *
2929 * parses an HTTP date in the RFC format and is accepted
2930 * alternatives. <date> is the strinf containing the date,
2931 * len is the len of the string. <tm> is filled with the
2932 * parsed time. We must considers this time as GMT.
2933 */
2934int parse_http_date(const char *date, int len, struct tm *tm)
2935{
2936 if (parse_imf_date(date, len, tm))
2937 return 1;
2938
2939 if (parse_rfc850_date(date, len, tm))
2940 return 1;
2941
2942 if (parse_asctime_date(date, len, tm))
2943 return 1;
2944
2945 return 0;
2946}
2947
Willy Tarreau9a7bea52012-04-27 11:16:50 +02002948/* Dynamically allocates a string of the proper length to hold the formatted
2949 * output. NULL is returned on error. The caller is responsible for freeing the
2950 * memory area using free(). The resulting string is returned in <out> if the
2951 * pointer is not NULL. A previous version of <out> might be used to build the
2952 * new string, and it will be freed before returning if it is not NULL, which
2953 * makes it possible to build complex strings from iterative calls without
2954 * having to care about freeing intermediate values, as in the example below :
2955 *
2956 * memprintf(&err, "invalid argument: '%s'", arg);
2957 * ...
2958 * memprintf(&err, "parser said : <%s>\n", *err);
2959 * ...
2960 * free(*err);
2961 *
2962 * This means that <err> must be initialized to NULL before first invocation.
2963 * The return value also holds the allocated string, which eases error checking
2964 * and immediate consumption. If the output pointer is not used, NULL must be
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002965 * passed instead and it will be ignored. The returned message will then also
2966 * be NULL so that the caller does not have to bother with freeing anything.
Willy Tarreau9a7bea52012-04-27 11:16:50 +02002967 *
2968 * It is also convenient to use it without any free except the last one :
2969 * err = NULL;
2970 * if (!fct1(err)) report(*err);
2971 * if (!fct2(err)) report(*err);
2972 * if (!fct3(err)) report(*err);
2973 * free(*err);
2974 */
2975char *memprintf(char **out, const char *format, ...)
2976{
2977 va_list args;
2978 char *ret = NULL;
2979 int allocated = 0;
2980 int needed = 0;
2981
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002982 if (!out)
2983 return NULL;
2984
Willy Tarreau9a7bea52012-04-27 11:16:50 +02002985 do {
2986 /* vsnprintf() will return the required length even when the
2987 * target buffer is NULL. We do this in a loop just in case
2988 * intermediate evaluations get wrong.
2989 */
2990 va_start(args, format);
Willy Tarreau1b2fed62013-04-01 22:48:54 +02002991 needed = vsnprintf(ret, allocated, format, args);
Willy Tarreau9a7bea52012-04-27 11:16:50 +02002992 va_end(args);
2993
Willy Tarreau1b2fed62013-04-01 22:48:54 +02002994 if (needed < allocated) {
2995 /* Note: on Solaris 8, the first iteration always
2996 * returns -1 if allocated is zero, so we force a
2997 * retry.
2998 */
2999 if (!allocated)
3000 needed = 0;
3001 else
3002 break;
3003 }
Willy Tarreau9a7bea52012-04-27 11:16:50 +02003004
Willy Tarreau1b2fed62013-04-01 22:48:54 +02003005 allocated = needed + 1;
Willy Tarreau9a7bea52012-04-27 11:16:50 +02003006 ret = realloc(ret, allocated);
3007 } while (ret);
3008
3009 if (needed < 0) {
3010 /* an error was encountered */
3011 free(ret);
3012 ret = NULL;
3013 }
3014
3015 if (out) {
3016 free(*out);
3017 *out = ret;
3018 }
3019
3020 return ret;
3021}
William Lallemand421f5b52012-02-06 18:15:57 +01003022
Willy Tarreau21c705b2012-09-14 11:40:36 +02003023/* Used to add <level> spaces before each line of <out>, unless there is only one line.
3024 * The input argument is automatically freed and reassigned. The result will have to be
Willy Tarreau70eec382012-10-10 08:56:47 +02003025 * freed by the caller. It also supports being passed a NULL which results in the same
3026 * output.
Willy Tarreau21c705b2012-09-14 11:40:36 +02003027 * Example of use :
3028 * parse(cmd, &err); (callee: memprintf(&err, ...))
3029 * fprintf(stderr, "Parser said: %s\n", indent_error(&err));
3030 * free(err);
3031 */
3032char *indent_msg(char **out, int level)
3033{
3034 char *ret, *in, *p;
3035 int needed = 0;
3036 int lf = 0;
3037 int lastlf = 0;
3038 int len;
3039
Willy Tarreau70eec382012-10-10 08:56:47 +02003040 if (!out || !*out)
3041 return NULL;
3042
Willy Tarreau21c705b2012-09-14 11:40:36 +02003043 in = *out - 1;
3044 while ((in = strchr(in + 1, '\n')) != NULL) {
3045 lastlf = in - *out;
3046 lf++;
3047 }
3048
3049 if (!lf) /* single line, no LF, return it as-is */
3050 return *out;
3051
3052 len = strlen(*out);
3053
3054 if (lf == 1 && lastlf == len - 1) {
3055 /* single line, LF at end, strip it and return as-is */
3056 (*out)[lastlf] = 0;
3057 return *out;
3058 }
3059
3060 /* OK now we have at least one LF, we need to process the whole string
3061 * as a multi-line string. What we'll do :
3062 * - prefix with an LF if there is none
3063 * - add <level> spaces before each line
3064 * This means at most ( 1 + level + (len-lf) + lf*<1+level) ) =
3065 * 1 + level + len + lf * level = 1 + level * (lf + 1) + len.
3066 */
3067
3068 needed = 1 + level * (lf + 1) + len + 1;
3069 p = ret = malloc(needed);
3070 in = *out;
3071
3072 /* skip initial LFs */
3073 while (*in == '\n')
3074 in++;
3075
3076 /* copy each line, prefixed with LF and <level> spaces, and without the trailing LF */
3077 while (*in) {
3078 *p++ = '\n';
3079 memset(p, ' ', level);
3080 p += level;
3081 do {
3082 *p++ = *in++;
3083 } while (*in && *in != '\n');
3084 if (*in)
3085 in++;
3086 }
3087 *p = 0;
3088
3089 free(*out);
3090 *out = ret;
3091
3092 return ret;
3093}
3094
Willy Tarreaudad36a32013-03-11 01:20:04 +01003095/* Convert occurrences of environment variables in the input string to their
3096 * corresponding value. A variable is identified as a series of alphanumeric
3097 * characters or underscores following a '$' sign. The <in> string must be
3098 * free()able. NULL returns NULL. The resulting string might be reallocated if
3099 * some expansion is made. Variable names may also be enclosed into braces if
3100 * needed (eg: to concatenate alphanum characters).
3101 */
3102char *env_expand(char *in)
3103{
3104 char *txt_beg;
3105 char *out;
3106 char *txt_end;
3107 char *var_beg;
3108 char *var_end;
3109 char *value;
3110 char *next;
3111 int out_len;
3112 int val_len;
3113
3114 if (!in)
3115 return in;
3116
3117 value = out = NULL;
3118 out_len = 0;
3119
3120 txt_beg = in;
3121 do {
3122 /* look for next '$' sign in <in> */
3123 for (txt_end = txt_beg; *txt_end && *txt_end != '$'; txt_end++);
3124
3125 if (!*txt_end && !out) /* end and no expansion performed */
3126 return in;
3127
3128 val_len = 0;
3129 next = txt_end;
3130 if (*txt_end == '$') {
3131 char save;
3132
3133 var_beg = txt_end + 1;
3134 if (*var_beg == '{')
3135 var_beg++;
3136
3137 var_end = var_beg;
3138 while (isalnum((int)(unsigned char)*var_end) || *var_end == '_') {
3139 var_end++;
3140 }
3141
3142 next = var_end;
3143 if (*var_end == '}' && (var_beg > txt_end + 1))
3144 next++;
3145
3146 /* get value of the variable name at this location */
3147 save = *var_end;
3148 *var_end = '\0';
3149 value = getenv(var_beg);
3150 *var_end = save;
3151 val_len = value ? strlen(value) : 0;
3152 }
3153
3154 out = realloc(out, out_len + (txt_end - txt_beg) + val_len + 1);
3155 if (txt_end > txt_beg) {
3156 memcpy(out + out_len, txt_beg, txt_end - txt_beg);
3157 out_len += txt_end - txt_beg;
3158 }
3159 if (val_len) {
3160 memcpy(out + out_len, value, val_len);
3161 out_len += val_len;
3162 }
3163 out[out_len] = 0;
3164 txt_beg = next;
3165 } while (*txt_beg);
3166
3167 /* here we know that <out> was allocated and that we don't need <in> anymore */
3168 free(in);
3169 return out;
3170}
3171
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003172
3173/* same as strstr() but case-insensitive and with limit length */
3174const char *strnistr(const char *str1, int len_str1, const char *str2, int len_str2)
3175{
3176 char *pptr, *sptr, *start;
Willy Tarreauc8746532014-05-28 23:05:07 +02003177 unsigned int slen, plen;
3178 unsigned int tmp1, tmp2;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003179
3180 if (str1 == NULL || len_str1 == 0) // search pattern into an empty string => search is not found
3181 return NULL;
3182
3183 if (str2 == NULL || len_str2 == 0) // pattern is empty => every str1 match
3184 return str1;
3185
3186 if (len_str1 < len_str2) // pattern is longer than string => search is not found
3187 return NULL;
3188
3189 for (tmp1 = 0, start = (char *)str1, pptr = (char *)str2, slen = len_str1, plen = len_str2; slen >= plen; start++, slen--) {
3190 while (toupper(*start) != toupper(*str2)) {
3191 start++;
3192 slen--;
3193 tmp1++;
3194
3195 if (tmp1 >= len_str1)
3196 return NULL;
3197
3198 /* if pattern longer than string */
3199 if (slen < plen)
3200 return NULL;
3201 }
3202
3203 sptr = start;
3204 pptr = (char *)str2;
3205
3206 tmp2 = 0;
3207 while (toupper(*sptr) == toupper(*pptr)) {
3208 sptr++;
3209 pptr++;
3210 tmp2++;
3211
3212 if (*pptr == '\0' || tmp2 == len_str2) /* end of pattern found */
3213 return start;
3214 if (*sptr == '\0' || tmp2 == len_str1) /* end of string found and the pattern is not fully found */
3215 return NULL;
3216 }
3217 }
3218 return NULL;
3219}
3220
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02003221/* This function read the next valid utf8 char.
3222 * <s> is the byte srray to be decode, <len> is its length.
3223 * The function returns decoded char encoded like this:
3224 * The 4 msb are the return code (UTF8_CODE_*), the 4 lsb
3225 * are the length read. The decoded character is stored in <c>.
3226 */
3227unsigned char utf8_next(const char *s, int len, unsigned int *c)
3228{
3229 const unsigned char *p = (unsigned char *)s;
3230 int dec;
3231 unsigned char code = UTF8_CODE_OK;
3232
3233 if (len < 1)
3234 return UTF8_CODE_OK;
3235
3236 /* Check the type of UTF8 sequence
3237 *
3238 * 0... .... 0x00 <= x <= 0x7f : 1 byte: ascii char
3239 * 10.. .... 0x80 <= x <= 0xbf : invalid sequence
3240 * 110. .... 0xc0 <= x <= 0xdf : 2 bytes
3241 * 1110 .... 0xe0 <= x <= 0xef : 3 bytes
3242 * 1111 0... 0xf0 <= x <= 0xf7 : 4 bytes
3243 * 1111 10.. 0xf8 <= x <= 0xfb : 5 bytes
3244 * 1111 110. 0xfc <= x <= 0xfd : 6 bytes
3245 * 1111 111. 0xfe <= x <= 0xff : invalid sequence
3246 */
3247 switch (*p) {
3248 case 0x00 ... 0x7f:
3249 *c = *p;
3250 return UTF8_CODE_OK | 1;
3251
3252 case 0x80 ... 0xbf:
3253 *c = *p;
3254 return UTF8_CODE_BADSEQ | 1;
3255
3256 case 0xc0 ... 0xdf:
3257 if (len < 2) {
3258 *c = *p;
3259 return UTF8_CODE_BADSEQ | 1;
3260 }
3261 *c = *p & 0x1f;
3262 dec = 1;
3263 break;
3264
3265 case 0xe0 ... 0xef:
3266 if (len < 3) {
3267 *c = *p;
3268 return UTF8_CODE_BADSEQ | 1;
3269 }
3270 *c = *p & 0x0f;
3271 dec = 2;
3272 break;
3273
3274 case 0xf0 ... 0xf7:
3275 if (len < 4) {
3276 *c = *p;
3277 return UTF8_CODE_BADSEQ | 1;
3278 }
3279 *c = *p & 0x07;
3280 dec = 3;
3281 break;
3282
3283 case 0xf8 ... 0xfb:
3284 if (len < 5) {
3285 *c = *p;
3286 return UTF8_CODE_BADSEQ | 1;
3287 }
3288 *c = *p & 0x03;
3289 dec = 4;
3290 break;
3291
3292 case 0xfc ... 0xfd:
3293 if (len < 6) {
3294 *c = *p;
3295 return UTF8_CODE_BADSEQ | 1;
3296 }
3297 *c = *p & 0x01;
3298 dec = 5;
3299 break;
3300
3301 case 0xfe ... 0xff:
3302 default:
3303 *c = *p;
3304 return UTF8_CODE_BADSEQ | 1;
3305 }
3306
3307 p++;
3308
3309 while (dec > 0) {
3310
3311 /* need 0x10 for the 2 first bits */
3312 if ( ( *p & 0xc0 ) != 0x80 )
3313 return UTF8_CODE_BADSEQ | ((p-(unsigned char *)s)&0xffff);
3314
3315 /* add data at char */
3316 *c = ( *c << 6 ) | ( *p & 0x3f );
3317
3318 dec--;
3319 p++;
3320 }
3321
3322 /* Check ovelong encoding.
3323 * 1 byte : 5 + 6 : 11 : 0x80 ... 0x7ff
3324 * 2 bytes : 4 + 6 + 6 : 16 : 0x800 ... 0xffff
3325 * 3 bytes : 3 + 6 + 6 + 6 : 21 : 0x10000 ... 0x1fffff
3326 */
Thierry FOURNIER9e7ec082015-03-12 19:32:38 +01003327 if (( *c <= 0x7f && (p-(unsigned char *)s) > 1) ||
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02003328 (*c >= 0x80 && *c <= 0x7ff && (p-(unsigned char *)s) > 2) ||
3329 (*c >= 0x800 && *c <= 0xffff && (p-(unsigned char *)s) > 3) ||
3330 (*c >= 0x10000 && *c <= 0x1fffff && (p-(unsigned char *)s) > 4))
3331 code |= UTF8_CODE_OVERLONG;
3332
3333 /* Check invalid UTF8 range. */
3334 if ((*c >= 0xd800 && *c <= 0xdfff) ||
3335 (*c >= 0xfffe && *c <= 0xffff))
3336 code |= UTF8_CODE_INVRANGE;
3337
3338 return code | ((p-(unsigned char *)s)&0x0f);
3339}
3340
Willy Tarreaubaaee002006-06-26 02:48:02 +02003341/*
3342 * Local variables:
3343 * c-indent-level: 8
3344 * c-basic-offset: 8
3345 * End:
3346 */