blob: c31913980257e13a0c831ebe3cd6fbe5853f1ceb [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>
Willy Tarreau127f9662007-12-06 00:53:51 +010019#include <sys/socket.h>
20#include <sys/un.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021#include <netinet/in.h>
22#include <arpa/inet.h>
23
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020024#include <common/config.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020025#include <common/standard.h>
Willy Tarreau45cb4fb2009-10-26 21:10:04 +010026#include <eb32tree.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020027
Willy Tarreau56adcf22012-12-23 18:00:29 +010028/* enough to store NB_ITOA_STR integers of :
Willy Tarreau72d759c2007-10-25 12:14:10 +020029 * 2^64-1 = 18446744073709551615 or
30 * -2^63 = -9223372036854775808
Willy Tarreaue7239b52009-03-29 13:41:58 +020031 *
32 * The HTML version needs room for adding the 25 characters
33 * '<span class="rls"></span>' around digits at positions 3N+1 in order
34 * to add spacing at up to 6 positions : 18 446 744 073 709 551 615
Willy Tarreau72d759c2007-10-25 12:14:10 +020035 */
Willy Tarreau56adcf22012-12-23 18:00:29 +010036char itoa_str[NB_ITOA_STR][171];
37int itoa_idx = 0; /* index of next itoa_str to use */
Willy Tarreaubaaee002006-06-26 02:48:02 +020038
39/*
William Lallemande7340ec2012-01-24 11:15:39 +010040 * unsigned long long ASCII representation
41 *
42 * return the last char '\0' or NULL if no enough
43 * space in dst
44 */
45char *ulltoa(unsigned long long n, char *dst, size_t size)
46{
47 int i = 0;
48 char *res;
49
50 switch(n) {
51 case 1ULL ... 9ULL:
52 i = 0;
53 break;
54
55 case 10ULL ... 99ULL:
56 i = 1;
57 break;
58
59 case 100ULL ... 999ULL:
60 i = 2;
61 break;
62
63 case 1000ULL ... 9999ULL:
64 i = 3;
65 break;
66
67 case 10000ULL ... 99999ULL:
68 i = 4;
69 break;
70
71 case 100000ULL ... 999999ULL:
72 i = 5;
73 break;
74
75 case 1000000ULL ... 9999999ULL:
76 i = 6;
77 break;
78
79 case 10000000ULL ... 99999999ULL:
80 i = 7;
81 break;
82
83 case 100000000ULL ... 999999999ULL:
84 i = 8;
85 break;
86
87 case 1000000000ULL ... 9999999999ULL:
88 i = 9;
89 break;
90
91 case 10000000000ULL ... 99999999999ULL:
92 i = 10;
93 break;
94
95 case 100000000000ULL ... 999999999999ULL:
96 i = 11;
97 break;
98
99 case 1000000000000ULL ... 9999999999999ULL:
100 i = 12;
101 break;
102
103 case 10000000000000ULL ... 99999999999999ULL:
104 i = 13;
105 break;
106
107 case 100000000000000ULL ... 999999999999999ULL:
108 i = 14;
109 break;
110
111 case 1000000000000000ULL ... 9999999999999999ULL:
112 i = 15;
113 break;
114
115 case 10000000000000000ULL ... 99999999999999999ULL:
116 i = 16;
117 break;
118
119 case 100000000000000000ULL ... 999999999999999999ULL:
120 i = 17;
121 break;
122
123 case 1000000000000000000ULL ... 9999999999999999999ULL:
124 i = 18;
125 break;
126
127 case 10000000000000000000ULL ... ULLONG_MAX:
128 i = 19;
129 break;
130 }
131 if (i + 2 > size) // (i + 1) + '\0'
132 return NULL; // too long
133 res = dst + i + 1;
134 *res = '\0';
135 for (; i >= 0; i--) {
136 dst[i] = n % 10ULL + '0';
137 n /= 10ULL;
138 }
139 return res;
140}
141
142/*
143 * unsigned long ASCII representation
144 *
145 * return the last char '\0' or NULL if no enough
146 * space in dst
147 */
148char *ultoa_o(unsigned long n, char *dst, size_t size)
149{
150 int i = 0;
151 char *res;
152
153 switch (n) {
154 case 0U ... 9UL:
155 i = 0;
156 break;
157
158 case 10U ... 99UL:
159 i = 1;
160 break;
161
162 case 100U ... 999UL:
163 i = 2;
164 break;
165
166 case 1000U ... 9999UL:
167 i = 3;
168 break;
169
170 case 10000U ... 99999UL:
171 i = 4;
172 break;
173
174 case 100000U ... 999999UL:
175 i = 5;
176 break;
177
178 case 1000000U ... 9999999UL:
179 i = 6;
180 break;
181
182 case 10000000U ... 99999999UL:
183 i = 7;
184 break;
185
186 case 100000000U ... 999999999UL:
187 i = 8;
188 break;
189#if __WORDSIZE == 32
190
191 case 1000000000ULL ... ULONG_MAX:
192 i = 9;
193 break;
194
195#elif __WORDSIZE == 64
196
197 case 1000000000ULL ... 9999999999UL:
198 i = 9;
199 break;
200
201 case 10000000000ULL ... 99999999999UL:
202 i = 10;
203 break;
204
205 case 100000000000ULL ... 999999999999UL:
206 i = 11;
207 break;
208
209 case 1000000000000ULL ... 9999999999999UL:
210 i = 12;
211 break;
212
213 case 10000000000000ULL ... 99999999999999UL:
214 i = 13;
215 break;
216
217 case 100000000000000ULL ... 999999999999999UL:
218 i = 14;
219 break;
220
221 case 1000000000000000ULL ... 9999999999999999UL:
222 i = 15;
223 break;
224
225 case 10000000000000000ULL ... 99999999999999999UL:
226 i = 16;
227 break;
228
229 case 100000000000000000ULL ... 999999999999999999UL:
230 i = 17;
231 break;
232
233 case 1000000000000000000ULL ... 9999999999999999999UL:
234 i = 18;
235 break;
236
237 case 10000000000000000000ULL ... ULONG_MAX:
238 i = 19;
239 break;
240
241#endif
242 }
243 if (i + 2 > size) // (i + 1) + '\0'
244 return NULL; // too long
245 res = dst + i + 1;
246 *res = '\0';
247 for (; i >= 0; i--) {
248 dst[i] = n % 10U + '0';
249 n /= 10U;
250 }
251 return res;
252}
253
254/*
255 * signed long ASCII representation
256 *
257 * return the last char '\0' or NULL if no enough
258 * space in dst
259 */
260char *ltoa_o(long int n, char *dst, size_t size)
261{
262 char *pos = dst;
263
264 if (n < 0) {
265 if (size < 3)
266 return NULL; // min size is '-' + digit + '\0' but another test in ultoa
267 *pos = '-';
268 pos++;
269 dst = ultoa_o(-n, pos, size - 1);
270 } else {
271 dst = ultoa_o(n, dst, size);
272 }
273 return dst;
274}
275
276/*
277 * signed long long ASCII representation
278 *
279 * return the last char '\0' or NULL if no enough
280 * space in dst
281 */
282char *lltoa(long long n, char *dst, size_t size)
283{
284 char *pos = dst;
285
286 if (n < 0) {
287 if (size < 3)
288 return NULL; // min size is '-' + digit + '\0' but another test in ulltoa
289 *pos = '-';
290 pos++;
291 dst = ulltoa(-n, pos, size - 1);
292 } else {
293 dst = ulltoa(n, dst, size);
294 }
295 return dst;
296}
297
298/*
299 * write a ascii representation of a unsigned into dst,
300 * return a pointer to the last character
301 * Pad the ascii representation with '0', using size.
302 */
303char *utoa_pad(unsigned int n, char *dst, size_t size)
304{
305 int i = 0;
306 char *ret;
307
308 switch(n) {
309 case 0U ... 9U:
310 i = 0;
311 break;
312
313 case 10U ... 99U:
314 i = 1;
315 break;
316
317 case 100U ... 999U:
318 i = 2;
319 break;
320
321 case 1000U ... 9999U:
322 i = 3;
323 break;
324
325 case 10000U ... 99999U:
326 i = 4;
327 break;
328
329 case 100000U ... 999999U:
330 i = 5;
331 break;
332
333 case 1000000U ... 9999999U:
334 i = 6;
335 break;
336
337 case 10000000U ... 99999999U:
338 i = 7;
339 break;
340
341 case 100000000U ... 999999999U:
342 i = 8;
343 break;
344
345 case 1000000000U ... 4294967295U:
346 i = 9;
347 break;
348 }
349 if (i + 2 > size) // (i + 1) + '\0'
350 return NULL; // too long
351 if (i < size)
352 i = size - 2; // padding - '\0'
353
354 ret = dst + i + 1;
355 *ret = '\0';
356 for (; i >= 0; i--) {
357 dst[i] = n % 10U + '0';
358 n /= 10U;
359 }
360 return ret;
361}
362
363/*
Willy Tarreaubaaee002006-06-26 02:48:02 +0200364 * copies at most <size-1> chars from <src> to <dst>. Last char is always
365 * set to 0, unless <size> is 0. The number of chars copied is returned
366 * (excluding the terminating zero).
367 * This code has been optimized for size and speed : on x86, it's 45 bytes
368 * long, uses only registers, and consumes only 4 cycles per char.
369 */
370int strlcpy2(char *dst, const char *src, int size)
371{
372 char *orig = dst;
373 if (size) {
374 while (--size && (*dst = *src)) {
375 src++; dst++;
376 }
377 *dst = 0;
378 }
379 return dst - orig;
380}
381
382/*
Willy Tarreau72d759c2007-10-25 12:14:10 +0200383 * This function simply returns a locally allocated string containing
Willy Tarreaubaaee002006-06-26 02:48:02 +0200384 * the ascii representation for number 'n' in decimal.
385 */
Emeric Brun3a7fce52010-01-04 14:54:38 +0100386char *ultoa_r(unsigned long n, char *buffer, int size)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200387{
388 char *pos;
389
Willy Tarreau72d759c2007-10-25 12:14:10 +0200390 pos = buffer + size - 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200391 *pos-- = '\0';
392
393 do {
394 *pos-- = '0' + n % 10;
395 n /= 10;
Willy Tarreau72d759c2007-10-25 12:14:10 +0200396 } while (n && pos >= buffer);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200397 return pos + 1;
398}
399
Willy Tarreau91092e52007-10-25 16:58:42 +0200400/*
Willy Tarreaue7239b52009-03-29 13:41:58 +0200401 * This function simply returns a locally allocated string containing
402 * the ascii representation for number 'n' in decimal, formatted for
403 * HTML output with tags to create visual grouping by 3 digits. The
404 * output needs to support at least 171 characters.
405 */
406const char *ulltoh_r(unsigned long long n, char *buffer, int size)
407{
408 char *start;
409 int digit = 0;
410
411 start = buffer + size;
412 *--start = '\0';
413
414 do {
415 if (digit == 3 && start >= buffer + 7)
416 memcpy(start -= 7, "</span>", 7);
417
418 if (start >= buffer + 1) {
419 *--start = '0' + n % 10;
420 n /= 10;
421 }
422
423 if (digit == 3 && start >= buffer + 18)
424 memcpy(start -= 18, "<span class=\"rls\">", 18);
425
426 if (digit++ == 3)
427 digit = 1;
428 } while (n && start > buffer);
429 return start;
430}
431
432/*
Willy Tarreau91092e52007-10-25 16:58:42 +0200433 * This function simply returns a locally allocated string containing the ascii
434 * representation for number 'n' in decimal, unless n is 0 in which case it
435 * returns the alternate string (or an empty string if the alternate string is
436 * NULL). It use is intended for limits reported in reports, where it's
437 * desirable not to display anything if there is no limit. Warning! it shares
438 * the same vector as ultoa_r().
439 */
440const char *limit_r(unsigned long n, char *buffer, int size, const char *alt)
441{
442 return (n) ? ultoa_r(n, buffer, size) : (alt ? alt : "");
443}
444
Robert Tsai81ae1952007-12-05 10:47:29 +0100445/*
Willy Tarreaubaaee002006-06-26 02:48:02 +0200446 * Returns non-zero if character <s> is a hex digit (0-9, a-f, A-F), else zero.
447 *
448 * It looks like this one would be a good candidate for inlining, but this is
449 * not interesting because it around 35 bytes long and often called multiple
450 * times within the same function.
451 */
452int ishex(char s)
453{
454 s -= '0';
455 if ((unsigned char)s <= 9)
456 return 1;
457 s -= 'A' - '0';
458 if ((unsigned char)s <= 5)
459 return 1;
460 s -= 'a' - 'A';
461 if ((unsigned char)s <= 5)
462 return 1;
463 return 0;
464}
465
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100466/*
467 * Checks <name> for invalid characters. Valid chars are [A-Za-z0-9_:.-]. If an
468 * invalid character is found, a pointer to it is returned. If everything is
469 * fine, NULL is returned.
470 */
471const char *invalid_char(const char *name)
472{
473 if (!*name)
474 return name;
475
476 while (*name) {
Willy Tarreau88e05812010-03-03 00:16:00 +0100477 if (!isalnum((int)(unsigned char)*name) && *name != '.' && *name != ':' &&
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100478 *name != '_' && *name != '-')
479 return name;
480 name++;
481 }
482 return NULL;
483}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200484
485/*
Krzysztof Piotr Oledzkiefe3b6f2008-05-23 23:49:32 +0200486 * Checks <domainname> for invalid characters. Valid chars are [A-Za-z0-9_.-].
487 * If an invalid character is found, a pointer to it is returned.
488 * If everything is fine, NULL is returned.
489 */
490const char *invalid_domainchar(const char *name) {
491
492 if (!*name)
493 return name;
494
495 while (*name) {
Willy Tarreau88e05812010-03-03 00:16:00 +0100496 if (!isalnum((int)(unsigned char)*name) && *name != '.' &&
Krzysztof Piotr Oledzkiefe3b6f2008-05-23 23:49:32 +0200497 *name != '_' && *name != '-')
498 return name;
499
500 name++;
501 }
502
503 return NULL;
504}
505
506/*
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100507 * converts <str> to a struct sockaddr_storage* provided by the caller. The
Willy Tarreau24709282013-03-10 21:32:12 +0100508 * caller must have zeroed <sa> first, and may have set sa->ss_family to force
509 * parse a specific address format. If the ss_family is 0 or AF_UNSPEC, then
510 * the function tries to guess the address family from the syntax. If the
511 * family is forced and the format doesn't match, an error is returned. The
Willy Tarreaufab5a432011-03-04 15:31:53 +0100512 * string is assumed to contain only an address, no port. The address can be a
513 * dotted IPv4 address, an IPv6 address, a host name, or empty or "*" to
514 * indicate INADDR_ANY. NULL is returned if the host part cannot be resolved.
515 * The return address will only have the address family and the address set,
516 * all other fields remain zero. The string is not supposed to be modified.
517 * The IPv6 '::' address is IN6ADDR_ANY.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200518 */
Willy Tarreau24709282013-03-10 21:32:12 +0100519static struct sockaddr_storage *str2ip(const char *str, struct sockaddr_storage *sa)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200520{
Willy Tarreaufab5a432011-03-04 15:31:53 +0100521 struct hostent *he;
522
Willy Tarreaufab5a432011-03-04 15:31:53 +0100523 /* Any IPv6 address */
524 if (str[0] == ':' && str[1] == ':' && !str[2]) {
Willy Tarreau24709282013-03-10 21:32:12 +0100525 if (!sa->ss_family || sa->ss_family == AF_UNSPEC)
526 sa->ss_family = AF_INET6;
527 else if (sa->ss_family != AF_INET6)
528 goto fail;
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100529 return sa;
Willy Tarreaufab5a432011-03-04 15:31:53 +0100530 }
531
Willy Tarreau24709282013-03-10 21:32:12 +0100532 /* Any address for the family, defaults to IPv4 */
Willy Tarreaufab5a432011-03-04 15:31:53 +0100533 if (!str[0] || (str[0] == '*' && !str[1])) {
Willy Tarreau24709282013-03-10 21:32:12 +0100534 if (!sa->ss_family || sa->ss_family == AF_UNSPEC)
535 sa->ss_family = AF_INET;
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100536 return sa;
Willy Tarreaufab5a432011-03-04 15:31:53 +0100537 }
538
539 /* check for IPv6 first */
Willy Tarreau24709282013-03-10 21:32:12 +0100540 if ((!sa->ss_family || sa->ss_family == AF_UNSPEC || sa->ss_family == AF_INET6) &&
541 inet_pton(AF_INET6, str, &((struct sockaddr_in6 *)sa)->sin6_addr)) {
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100542 sa->ss_family = AF_INET6;
543 return sa;
Willy Tarreaufab5a432011-03-04 15:31:53 +0100544 }
545
546 /* then check for IPv4 */
Willy Tarreau24709282013-03-10 21:32:12 +0100547 if ((!sa->ss_family || sa->ss_family == AF_UNSPEC || sa->ss_family == AF_INET) &&
548 inet_pton(AF_INET, str, &((struct sockaddr_in *)sa)->sin_addr)) {
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100549 sa->ss_family = AF_INET;
550 return sa;
Willy Tarreaufab5a432011-03-04 15:31:53 +0100551 }
552
553 /* try to resolve an IPv4/IPv6 hostname */
554 he = gethostbyname(str);
555 if (he) {
Willy Tarreau24709282013-03-10 21:32:12 +0100556 if (!sa->ss_family || sa->ss_family == AF_UNSPEC)
557 sa->ss_family = he->h_addrtype;
558 else if (sa->ss_family != he->h_addrtype)
559 goto fail;
560
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100561 switch (sa->ss_family) {
Willy Tarreaufab5a432011-03-04 15:31:53 +0100562 case AF_INET:
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100563 ((struct sockaddr_in *)sa)->sin_addr = *(struct in_addr *) *(he->h_addr_list);
564 return sa;
Willy Tarreaufab5a432011-03-04 15:31:53 +0100565 case AF_INET6:
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100566 ((struct sockaddr_in6 *)sa)->sin6_addr = *(struct in6_addr *) *(he->h_addr_list);
567 return sa;
Willy Tarreaufab5a432011-03-04 15:31:53 +0100568 }
David du Colombierd5f43282011-03-17 10:40:16 +0100569 }
570#ifdef USE_GETADDRINFO
571 else {
572 struct addrinfo hints, *result;
573
574 memset(&result, 0, sizeof(result));
575 memset(&hints, 0, sizeof(hints));
Willy Tarreau24709282013-03-10 21:32:12 +0100576 hints.ai_family = sa->ss_family ? sa->ss_family : AF_UNSPEC;
David du Colombierd5f43282011-03-17 10:40:16 +0100577 hints.ai_socktype = SOCK_DGRAM;
578 hints.ai_flags = AI_PASSIVE;
579 hints.ai_protocol = 0;
580
581 if (getaddrinfo(str, NULL, &hints, &result) == 0) {
Willy Tarreau24709282013-03-10 21:32:12 +0100582 if (!sa->ss_family || sa->ss_family == AF_UNSPEC)
583 sa->ss_family = result->ai_family;
584 else if (sa->ss_family != result->ai_family)
585 goto fail;
586
David du Colombierd5f43282011-03-17 10:40:16 +0100587 switch (result->ai_family) {
588 case AF_INET:
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100589 memcpy((struct sockaddr_in *)sa, result->ai_addr, result->ai_addrlen);
590 return sa;
David du Colombierd5f43282011-03-17 10:40:16 +0100591 case AF_INET6:
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100592 memcpy((struct sockaddr_in6 *)sa, result->ai_addr, result->ai_addrlen);
593 return sa;
David du Colombierd5f43282011-03-17 10:40:16 +0100594 }
595 }
596
Sean Carey58ea0392013-02-15 23:39:18 +0100597 if (result)
598 freeaddrinfo(result);
Willy Tarreaufab5a432011-03-04 15:31:53 +0100599 }
David du Colombierd5f43282011-03-17 10:40:16 +0100600#endif
601 /* unsupported address family */
Willy Tarreau24709282013-03-10 21:32:12 +0100602 fail:
Willy Tarreaufab5a432011-03-04 15:31:53 +0100603 return NULL;
604}
605
606/*
Willy Tarreaud4448bc2013-02-20 15:55:15 +0100607 * Converts <str> to a locally allocated struct sockaddr_storage *, and a port
608 * range or offset consisting in two integers that the caller will have to
609 * check to find the relevant input format. The following format are supported :
610 *
611 * String format | address | port | low | high
612 * addr | <addr> | 0 | 0 | 0
613 * addr: | <addr> | 0 | 0 | 0
614 * addr:port | <addr> | <port> | <port> | <port>
615 * addr:pl-ph | <addr> | <pl> | <pl> | <ph>
616 * addr:+port | <addr> | <port> | 0 | <port>
617 * addr:-port | <addr> |-<port> | <port> | 0
618 *
619 * The detection of a port range or increment by the caller is made by
620 * comparing <low> and <high>. If both are equal, then port 0 means no port
621 * was specified. The caller may pass NULL for <low> and <high> if it is not
622 * interested in retrieving port ranges.
623 *
624 * Note that <addr> above may also be :
625 * - empty ("") => family will be AF_INET and address will be INADDR_ANY
626 * - "*" => family will be AF_INET and address will be INADDR_ANY
627 * - "::" => family will be AF_INET6 and address will be IN6ADDR_ANY
628 * - a host name => family and address will depend on host name resolving.
629 *
Willy Tarreau24709282013-03-10 21:32:12 +0100630 * A prefix may be passed in before the address above to force the family :
631 * - "ipv4@" => force address to resolve as IPv4 and fail if not possible.
632 * - "ipv6@" => force address to resolve as IPv6 and fail if not possible.
633 * - "unix@" => force address to be a path to a UNIX socket even if the
634 * path does not start with a '/'
Willy Tarreau40aa0702013-03-10 23:51:38 +0100635 * - "fd@" => an integer must follow, and is a file descriptor number.
Willy Tarreau24709282013-03-10 21:32:12 +0100636 *
Willy Tarreaud4448bc2013-02-20 15:55:15 +0100637 * Also note that in order to avoid any ambiguity with IPv6 addresses, the ':'
638 * is mandatory after the IP address even when no port is specified. NULL is
639 * returned if the address cannot be parsed. The <low> and <high> ports are
Willy Tarreau24709282013-03-10 21:32:12 +0100640 * always initialized if non-null, even for non-IP families.
Willy Tarreaud393a622013-03-04 18:22:00 +0100641 *
642 * If <pfx> is non-null, it is used as a string prefix before any path-based
643 * address (typically the path to a unix socket).
Willy Tarreau40aa0702013-03-10 23:51:38 +0100644 *
645 * When a file descriptor is passed, its value is put into the s_addr part of
646 * the address when cast to sockaddr_in and the address family is AF_UNSPEC.
Willy Tarreaufab5a432011-03-04 15:31:53 +0100647 */
Willy Tarreaud393a622013-03-04 18:22:00 +0100648struct sockaddr_storage *str2sa_range(const char *str, int *low, int *high, char **err, const char *pfx)
Willy Tarreaufab5a432011-03-04 15:31:53 +0100649{
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100650 static struct sockaddr_storage ss;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100651 struct sockaddr_storage *ret = NULL;
Willy Tarreau24709282013-03-10 21:32:12 +0100652 char *back, *str2;
Willy Tarreaud4448bc2013-02-20 15:55:15 +0100653 char *port1, *port2;
654 int portl, porth, porta;
655
656 portl = porth = porta = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200657
Willy Tarreaudad36a32013-03-11 01:20:04 +0100658 str2 = back = env_expand(strdup(str));
Willy Tarreaudf350f12013-03-01 20:22:54 +0100659 if (str2 == NULL) {
660 memprintf(err, "out of memory in '%s'\n", __FUNCTION__);
Willy Tarreaud5191e72010-02-09 20:50:45 +0100661 goto out;
Willy Tarreaudf350f12013-03-01 20:22:54 +0100662 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200663
Willy Tarreau24709282013-03-10 21:32:12 +0100664 memset(&ss, 0, sizeof(ss));
665
666 if (strncmp(str2, "unix@", 5) == 0) {
667 str2 += 5;
668 ss.ss_family = AF_UNIX;
669 }
670 else if (strncmp(str2, "ipv4@", 5) == 0) {
671 str2 += 5;
672 ss.ss_family = AF_INET;
673 }
674 else if (strncmp(str2, "ipv6@", 5) == 0) {
675 str2 += 5;
676 ss.ss_family = AF_INET6;
677 }
678 else if (*str2 == '/') {
679 ss.ss_family = AF_UNIX;
680 }
681 else
682 ss.ss_family = AF_UNSPEC;
683
Willy Tarreau40aa0702013-03-10 23:51:38 +0100684 if (ss.ss_family == AF_UNSPEC && strncmp(str2, "fd@", 3) == 0) {
685 char *endptr;
686
687 str2 += 3;
688 ((struct sockaddr_in *)&ss)->sin_addr.s_addr = strtol(str2, &endptr, 10);
689
690 if (!*str2 || *endptr) {
Willy Tarreaudad36a32013-03-11 01:20:04 +0100691 memprintf(err, "file descriptor '%s' is not a valid integer in '%s'\n", str2, str);
Willy Tarreau40aa0702013-03-10 23:51:38 +0100692 goto out;
693 }
694
695 /* we return AF_UNSPEC if we use a file descriptor number */
696 ss.ss_family = AF_UNSPEC;
697 }
698 else if (ss.ss_family == AF_UNIX) {
Willy Tarreau15586382013-03-04 19:48:14 +0100699 int prefix_path_len;
700 int max_path_len;
701
702 /* complete unix socket path name during startup or soft-restart is
703 * <unix_bind_prefix><path>.<pid>.<bak|tmp>
704 */
705 prefix_path_len = pfx ? strlen(pfx) : 0;
706 max_path_len = (sizeof(((struct sockaddr_un *)&ss)->sun_path) - 1) -
707 (prefix_path_len ? prefix_path_len + 1 + 5 + 1 + 3 : 0);
708
709 if (strlen(str2) > max_path_len) {
710 memprintf(err, "socket path '%s' too long (max %d)\n", str, max_path_len);
711 goto out;
712 }
713
Willy Tarreau15586382013-03-04 19:48:14 +0100714 if (pfx) {
715 memcpy(((struct sockaddr_un *)&ss)->sun_path, pfx, prefix_path_len);
716 strcpy(((struct sockaddr_un *)&ss)->sun_path + prefix_path_len, str2);
717 }
718 else {
719 strcpy(((struct sockaddr_un *)&ss)->sun_path, str2);
720 }
Willy Tarreau15586382013-03-04 19:48:14 +0100721 }
Willy Tarreau24709282013-03-10 21:32:12 +0100722 else { /* IPv4 and IPv6 */
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100723 port1 = strrchr(str2, ':');
724 if (port1)
725 *port1++ = '\0';
726 else
727 port1 = "";
Willy Tarreaubaaee002006-06-26 02:48:02 +0200728
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100729 if (str2ip(str2, &ss) == NULL) {
730 memprintf(err, "invalid address: '%s' in '%s'\n", str2, str);
731 goto out;
732 }
Willy Tarreaufab5a432011-03-04 15:31:53 +0100733
Willy Tarreaua39d1992013-04-01 20:37:42 +0200734 if (isdigit((int)(unsigned char)*port1)) { /* single port or range */
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100735 port2 = strchr(port1, '-');
736 if (port2)
737 *port2++ = '\0';
738 else
739 port2 = port1;
740 portl = atoi(port1);
741 porth = atoi(port2);
742 porta = portl;
743 }
744 else if (*port1 == '-') { /* negative offset */
745 portl = atoi(port1 + 1);
746 porta = -portl;
747 }
748 else if (*port1 == '+') { /* positive offset */
749 porth = atoi(port1 + 1);
750 porta = porth;
751 }
752 else if (*port1) { /* other any unexpected char */
Willy Tarreaudad36a32013-03-11 01:20:04 +0100753 memprintf(err, "invalid character '%c' in port number '%s' in '%s'\n", *port1, port1, str);
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100754 goto out;
755 }
756 set_host_port(&ss, porta);
Willy Tarreaue4c58c82013-03-06 15:28:17 +0100757 }
Willy Tarreaufab5a432011-03-04 15:31:53 +0100758
Willy Tarreauc120c8d2013-03-10 19:27:44 +0100759 ret = &ss;
Willy Tarreaud5191e72010-02-09 20:50:45 +0100760 out:
Willy Tarreaud4448bc2013-02-20 15:55:15 +0100761 if (low)
762 *low = portl;
763 if (high)
764 *high = porth;
Willy Tarreau24709282013-03-10 21:32:12 +0100765 free(back);
Willy Tarreaud5191e72010-02-09 20:50:45 +0100766 return ret;
Willy Tarreauc6f4ce82009-06-10 11:09:37 +0200767}
768
Willy Tarreau2937c0d2010-01-26 17:36:17 +0100769/* converts <str> to a struct in_addr containing a network mask. It can be
770 * passed in dotted form (255.255.255.0) or in CIDR form (24). It returns 1
771 * if the conversion succeeds otherwise non-zero.
772 */
773int str2mask(const char *str, struct in_addr *mask)
774{
775 if (strchr(str, '.') != NULL) { /* dotted notation */
776 if (!inet_pton(AF_INET, str, mask))
777 return 0;
778 }
779 else { /* mask length */
780 char *err;
781 unsigned long len = strtol(str, &err, 10);
782
783 if (!*str || (err && *err) || (unsigned)len > 32)
784 return 0;
785 if (len)
786 mask->s_addr = htonl(~0UL << (32 - len));
787 else
788 mask->s_addr = 0;
789 }
790 return 1;
791}
792
Willy Tarreauc6f4ce82009-06-10 11:09:37 +0200793/*
Willy Tarreaud077a8e2007-05-08 18:28:09 +0200794 * converts <str> to two struct in_addr* which must be pre-allocated.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200795 * The format is "addr[/mask]", where "addr" cannot be empty, and mask
796 * is optionnal and either in the dotted or CIDR notation.
797 * Note: "addr" can also be a hostname. Returns 1 if OK, 0 if error.
798 */
Willy Tarreaud077a8e2007-05-08 18:28:09 +0200799int str2net(const char *str, struct in_addr *addr, struct in_addr *mask)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200800{
Willy Tarreau8aeae4a2007-06-17 11:42:08 +0200801 __label__ out_free, out_err;
802 char *c, *s;
803 int ret_val;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200804
Willy Tarreau8aeae4a2007-06-17 11:42:08 +0200805 s = strdup(str);
806 if (!s)
807 return 0;
808
Willy Tarreaubaaee002006-06-26 02:48:02 +0200809 memset(mask, 0, sizeof(*mask));
810 memset(addr, 0, sizeof(*addr));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200811
Willy Tarreau8aeae4a2007-06-17 11:42:08 +0200812 if ((c = strrchr(s, '/')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200813 *c++ = '\0';
814 /* c points to the mask */
Willy Tarreau2937c0d2010-01-26 17:36:17 +0100815 if (!str2mask(c, mask))
816 goto out_err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200817 }
818 else {
Willy Tarreauebd61602006-12-30 11:54:15 +0100819 mask->s_addr = ~0U;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200820 }
Willy Tarreau8aeae4a2007-06-17 11:42:08 +0200821 if (!inet_pton(AF_INET, s, addr)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200822 struct hostent *he;
823
Willy Tarreau8aeae4a2007-06-17 11:42:08 +0200824 if ((he = gethostbyname(s)) == NULL) {
825 goto out_err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200826 }
827 else
828 *addr = *(struct in_addr *) *(he->h_addr_list);
829 }
Willy Tarreau8aeae4a2007-06-17 11:42:08 +0200830
831 ret_val = 1;
832 out_free:
833 free(s);
834 return ret_val;
835 out_err:
836 ret_val = 0;
837 goto out_free;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200838}
839
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100840
841/*
Willy Tarreau6d20e282012-04-27 22:49:47 +0200842 * converts <str> to two struct in6_addr* which must be pre-allocated.
843 * The format is "addr[/mask]", where "addr" cannot be empty, and mask
844 * is an optionnal number of bits (128 being the default).
845 * Returns 1 if OK, 0 if error.
846 */
847int str62net(const char *str, struct in6_addr *addr, unsigned char *mask)
848{
849 char *c, *s;
850 int ret_val = 0;
851 char *err;
852 unsigned long len = 128;
853
854 s = strdup(str);
855 if (!s)
856 return 0;
857
858 memset(mask, 0, sizeof(*mask));
859 memset(addr, 0, sizeof(*addr));
860
861 if ((c = strrchr(s, '/')) != NULL) {
862 *c++ = '\0'; /* c points to the mask */
863 if (!*c)
864 goto out_free;
865
866 len = strtoul(c, &err, 10);
867 if ((err && *err) || (unsigned)len > 128)
868 goto out_free;
869 }
870 *mask = len; /* OK we have a valid mask in <len> */
871
872 if (!inet_pton(AF_INET6, s, addr))
873 goto out_free;
874
875 ret_val = 1;
876 out_free:
877 free(s);
878 return ret_val;
879}
880
881
882/*
David du Colombier6f5ccb12011-03-10 22:26:24 +0100883 * Parse IPv4 address found in url.
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100884 */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100885int url2ipv4(const char *addr, struct in_addr *dst)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100886{
887 int saw_digit, octets, ch;
888 u_char tmp[4], *tp;
889 const char *cp = addr;
890
891 saw_digit = 0;
892 octets = 0;
893 *(tp = tmp) = 0;
894
895 while (*addr) {
896 unsigned char digit = (ch = *addr++) - '0';
897 if (digit > 9 && ch != '.')
898 break;
899 if (digit <= 9) {
900 u_int new = *tp * 10 + digit;
901 if (new > 255)
902 return 0;
903 *tp = new;
904 if (!saw_digit) {
905 if (++octets > 4)
906 return 0;
907 saw_digit = 1;
908 }
909 } else if (ch == '.' && saw_digit) {
910 if (octets == 4)
911 return 0;
912 *++tp = 0;
913 saw_digit = 0;
914 } else
915 return 0;
916 }
917
918 if (octets < 4)
919 return 0;
920
921 memcpy(&dst->s_addr, tmp, 4);
922 return addr-cp-1;
923}
924
925/*
David du Colombier6f5ccb12011-03-10 22:26:24 +0100926 * Resolve destination server from URL. Convert <str> to a sockaddr_storage*.
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100927 */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100928int url2sa(const char *url, int ulen, struct sockaddr_storage *addr)
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100929{
930 const char *curr = url, *cp = url;
931 int ret, url_code = 0;
932 unsigned int http_code = 0;
933
934 /* Cleanup the room */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100935
936 /* FIXME: assume IPv4 only for now */
937 ((struct sockaddr_in *)addr)->sin_family = AF_INET;
938 ((struct sockaddr_in *)addr)->sin_addr.s_addr = 0;
939 ((struct sockaddr_in *)addr)->sin_port = 0;
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100940
941 /* Firstly, try to find :// pattern */
942 while (curr < url+ulen && url_code != 0x3a2f2f) {
943 url_code = ((url_code & 0xffff) << 8);
944 url_code += (unsigned char)*curr++;
945 }
946
947 /* Secondly, if :// pattern is found, verify parsed stuff
948 * before pattern is matching our http pattern.
949 * If so parse ip address and port in uri.
950 *
951 * WARNING: Current code doesn't support dynamic async dns resolver.
952 */
953 if (url_code == 0x3a2f2f) {
954 while (cp < curr - 3)
955 http_code = (http_code << 8) + *cp++;
956 http_code |= 0x20202020; /* Turn everything to lower case */
957
958 /* HTTP url matching */
959 if (http_code == 0x68747470) {
960 /* We are looking for IP address. If you want to parse and
Willy Tarreaud4448bc2013-02-20 15:55:15 +0100961 * resolve hostname found in url, you can use str2sa_range(), but
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100962 * be warned this can slow down global daemon performances
963 * while handling lagging dns responses.
964 */
Cyril Bonté9ccf6612012-10-24 23:47:47 +0200965 ret = url2ipv4(curr, &((struct sockaddr_in *)addr)->sin_addr);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100966 if (!ret)
967 return -1;
968 curr += ret;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100969 ((struct sockaddr_in *)addr)->sin_port = (*curr == ':') ? str2uic(++curr) : 80;
Cyril Bonté9ccf6612012-10-24 23:47:47 +0200970 ((struct sockaddr_in *)addr)->sin_port = htons(((struct sockaddr_in *)addr)->sin_port);
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100971 }
972 return 0;
973 }
974
975 return -1;
976}
977
Willy Tarreau631f01c2011-09-05 00:36:48 +0200978/* Tries to convert a sockaddr_storage address to text form. Upon success, the
979 * address family is returned so that it's easy for the caller to adapt to the
980 * output format. Zero is returned if the address family is not supported. -1
981 * is returned upon error, with errno set. AF_INET, AF_INET6 and AF_UNIX are
982 * supported.
983 */
984int addr_to_str(struct sockaddr_storage *addr, char *str, int size)
985{
986
987 void *ptr;
988
989 if (size < 5)
990 return 0;
991 *str = '\0';
992
993 switch (addr->ss_family) {
994 case AF_INET:
995 ptr = &((struct sockaddr_in *)addr)->sin_addr;
996 break;
997 case AF_INET6:
998 ptr = &((struct sockaddr_in6 *)addr)->sin6_addr;
999 break;
1000 case AF_UNIX:
1001 memcpy(str, "unix", 5);
1002 return addr->ss_family;
1003 default:
1004 return 0;
1005 }
1006
1007 if (inet_ntop(addr->ss_family, ptr, str, size))
1008 return addr->ss_family;
1009
1010 /* failed */
1011 return -1;
1012}
1013
Willy Tarreaubaaee002006-06-26 02:48:02 +02001014/* will try to encode the string <string> replacing all characters tagged in
1015 * <map> with the hexadecimal representation of their ASCII-code (2 digits)
1016 * prefixed by <escape>, and will store the result between <start> (included)
1017 * and <stop> (excluded), and will always terminate the string with a '\0'
1018 * before <stop>. The position of the '\0' is returned if the conversion
1019 * completes. If bytes are missing between <start> and <stop>, then the
1020 * conversion will be incomplete and truncated. If <stop> <= <start>, the '\0'
1021 * cannot even be stored so we return <start> without writing the 0.
1022 * The input string must also be zero-terminated.
1023 */
1024const char hextab[16] = "0123456789ABCDEF";
1025char *encode_string(char *start, char *stop,
1026 const char escape, const fd_set *map,
1027 const char *string)
1028{
1029 if (start < stop) {
1030 stop--; /* reserve one byte for the final '\0' */
1031 while (start < stop && *string != '\0') {
1032 if (!FD_ISSET((unsigned char)(*string), map))
1033 *start++ = *string;
1034 else {
1035 if (start + 3 >= stop)
1036 break;
1037 *start++ = escape;
1038 *start++ = hextab[(*string >> 4) & 15];
1039 *start++ = hextab[*string & 15];
1040 }
1041 string++;
1042 }
1043 *start = '\0';
1044 }
1045 return start;
1046}
1047
Willy Tarreaubf9c2fc2011-05-31 18:06:18 +02001048/* Decode an URL-encoded string in-place. The resulting string might
1049 * be shorter. If some forbidden characters are found, the conversion is
Thierry FOURNIER5068d962013-10-04 16:27:27 +02001050 * aborted, the string is truncated before the issue and a negative value is
1051 * returned, otherwise the operation returns the length of the decoded string.
Willy Tarreaubf9c2fc2011-05-31 18:06:18 +02001052 */
1053int url_decode(char *string)
1054{
1055 char *in, *out;
Thierry FOURNIER5068d962013-10-04 16:27:27 +02001056 int ret = -1;
Willy Tarreaubf9c2fc2011-05-31 18:06:18 +02001057
1058 in = string;
1059 out = string;
1060 while (*in) {
1061 switch (*in) {
1062 case '+' :
1063 *out++ = ' ';
1064 break;
1065 case '%' :
1066 if (!ishex(in[1]) || !ishex(in[2]))
1067 goto end;
1068 *out++ = (hex2i(in[1]) << 4) + hex2i(in[2]);
1069 in += 2;
1070 break;
1071 default:
1072 *out++ = *in;
1073 break;
1074 }
1075 in++;
1076 }
Thierry FOURNIER5068d962013-10-04 16:27:27 +02001077 ret = out - string; /* success */
Willy Tarreaubf9c2fc2011-05-31 18:06:18 +02001078 end:
1079 *out = 0;
1080 return ret;
1081}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001082
Willy Tarreau6911fa42007-03-04 18:06:08 +01001083unsigned int str2ui(const char *s)
1084{
1085 return __str2ui(s);
1086}
1087
1088unsigned int str2uic(const char *s)
1089{
1090 return __str2uic(s);
1091}
1092
1093unsigned int strl2ui(const char *s, int len)
1094{
1095 return __strl2ui(s, len);
1096}
1097
1098unsigned int strl2uic(const char *s, int len)
1099{
1100 return __strl2uic(s, len);
1101}
1102
Willy Tarreau4ec83cd2010-10-15 23:19:55 +02001103unsigned int read_uint(const char **s, const char *end)
1104{
1105 return __read_uint(s, end);
1106}
1107
Willy Tarreau6911fa42007-03-04 18:06:08 +01001108/* This one is 7 times faster than strtol() on athlon with checks.
1109 * It returns the value of the number composed of all valid digits read,
1110 * and can process negative numbers too.
1111 */
1112int strl2ic(const char *s, int len)
1113{
1114 int i = 0;
Willy Tarreau3f0c9762007-10-25 09:42:24 +02001115 int j, k;
Willy Tarreau6911fa42007-03-04 18:06:08 +01001116
1117 if (len > 0) {
1118 if (*s != '-') {
1119 /* positive number */
1120 while (len-- > 0) {
1121 j = (*s++) - '0';
Willy Tarreau3f0c9762007-10-25 09:42:24 +02001122 k = i * 10;
Willy Tarreau6911fa42007-03-04 18:06:08 +01001123 if (j > 9)
1124 break;
Willy Tarreau3f0c9762007-10-25 09:42:24 +02001125 i = k + j;
Willy Tarreau6911fa42007-03-04 18:06:08 +01001126 }
1127 } else {
1128 /* negative number */
1129 s++;
1130 while (--len > 0) {
1131 j = (*s++) - '0';
Willy Tarreau3f0c9762007-10-25 09:42:24 +02001132 k = i * 10;
Willy Tarreau6911fa42007-03-04 18:06:08 +01001133 if (j > 9)
1134 break;
Willy Tarreau3f0c9762007-10-25 09:42:24 +02001135 i = k - j;
Willy Tarreau6911fa42007-03-04 18:06:08 +01001136 }
1137 }
1138 }
1139 return i;
1140}
1141
1142
1143/* This function reads exactly <len> chars from <s> and converts them to a
1144 * signed integer which it stores into <ret>. It accurately detects any error
1145 * (truncated string, invalid chars, overflows). It is meant to be used in
1146 * applications designed for hostile environments. It returns zero when the
1147 * number has successfully been converted, non-zero otherwise. When an error
1148 * is returned, the <ret> value is left untouched. It is yet 5 to 40 times
1149 * faster than strtol().
1150 */
1151int strl2irc(const char *s, int len, int *ret)
1152{
1153 int i = 0;
1154 int j;
1155
1156 if (!len)
1157 return 1;
1158
1159 if (*s != '-') {
1160 /* positive number */
1161 while (len-- > 0) {
1162 j = (*s++) - '0';
1163 if (j > 9) return 1; /* invalid char */
1164 if (i > INT_MAX / 10) return 1; /* check for multiply overflow */
1165 i = i * 10;
1166 if (i + j < i) return 1; /* check for addition overflow */
1167 i = i + j;
1168 }
1169 } else {
1170 /* negative number */
1171 s++;
1172 while (--len > 0) {
1173 j = (*s++) - '0';
1174 if (j > 9) return 1; /* invalid char */
1175 if (i < INT_MIN / 10) return 1; /* check for multiply overflow */
1176 i = i * 10;
1177 if (i - j > i) return 1; /* check for subtract overflow */
1178 i = i - j;
1179 }
1180 }
1181 *ret = i;
1182 return 0;
1183}
1184
1185
1186/* This function reads exactly <len> chars from <s> and converts them to a
1187 * signed integer which it stores into <ret>. It accurately detects any error
1188 * (truncated string, invalid chars, overflows). It is meant to be used in
1189 * applications designed for hostile environments. It returns zero when the
1190 * number has successfully been converted, non-zero otherwise. When an error
1191 * is returned, the <ret> value is left untouched. It is about 3 times slower
1192 * than str2irc().
1193 */
Willy Tarreau6911fa42007-03-04 18:06:08 +01001194
1195int strl2llrc(const char *s, int len, long long *ret)
1196{
1197 long long i = 0;
1198 int j;
1199
1200 if (!len)
1201 return 1;
1202
1203 if (*s != '-') {
1204 /* positive number */
1205 while (len-- > 0) {
1206 j = (*s++) - '0';
1207 if (j > 9) return 1; /* invalid char */
1208 if (i > LLONG_MAX / 10LL) return 1; /* check for multiply overflow */
1209 i = i * 10LL;
1210 if (i + j < i) return 1; /* check for addition overflow */
1211 i = i + j;
1212 }
1213 } else {
1214 /* negative number */
1215 s++;
1216 while (--len > 0) {
1217 j = (*s++) - '0';
1218 if (j > 9) return 1; /* invalid char */
1219 if (i < LLONG_MIN / 10LL) return 1; /* check for multiply overflow */
1220 i = i * 10LL;
1221 if (i - j > i) return 1; /* check for subtract overflow */
1222 i = i - j;
1223 }
1224 }
1225 *ret = i;
1226 return 0;
1227}
1228
Willy Tarreaua0d37b62007-12-02 22:00:35 +01001229/* This function parses a time value optionally followed by a unit suffix among
1230 * "d", "h", "m", "s", "ms" or "us". It converts the value into the unit
1231 * expected by the caller. The computation does its best to avoid overflows.
1232 * The value is returned in <ret> if everything is fine, and a NULL is returned
1233 * by the function. In case of error, a pointer to the error is returned and
1234 * <ret> is left untouched. Values are automatically rounded up when needed.
1235 */
1236const char *parse_time_err(const char *text, unsigned *ret, unsigned unit_flags)
1237{
1238 unsigned imult, idiv;
1239 unsigned omult, odiv;
1240 unsigned value;
1241
1242 omult = odiv = 1;
1243
1244 switch (unit_flags & TIME_UNIT_MASK) {
1245 case TIME_UNIT_US: omult = 1000000; break;
1246 case TIME_UNIT_MS: omult = 1000; break;
1247 case TIME_UNIT_S: break;
1248 case TIME_UNIT_MIN: odiv = 60; break;
1249 case TIME_UNIT_HOUR: odiv = 3600; break;
1250 case TIME_UNIT_DAY: odiv = 86400; break;
1251 default: break;
1252 }
1253
1254 value = 0;
1255
1256 while (1) {
1257 unsigned int j;
1258
1259 j = *text - '0';
1260 if (j > 9)
1261 break;
1262 text++;
1263 value *= 10;
1264 value += j;
1265 }
1266
1267 imult = idiv = 1;
1268 switch (*text) {
1269 case '\0': /* no unit = default unit */
1270 imult = omult = idiv = odiv = 1;
1271 break;
1272 case 's': /* second = unscaled unit */
1273 break;
1274 case 'u': /* microsecond : "us" */
1275 if (text[1] == 's') {
1276 idiv = 1000000;
1277 text++;
1278 }
1279 break;
1280 case 'm': /* millisecond : "ms" or minute: "m" */
1281 if (text[1] == 's') {
1282 idiv = 1000;
1283 text++;
1284 } else
1285 imult = 60;
1286 break;
1287 case 'h': /* hour : "h" */
1288 imult = 3600;
1289 break;
1290 case 'd': /* day : "d" */
1291 imult = 86400;
1292 break;
1293 default:
1294 return text;
1295 break;
1296 }
1297
1298 if (omult % idiv == 0) { omult /= idiv; idiv = 1; }
1299 if (idiv % omult == 0) { idiv /= omult; omult = 1; }
1300 if (imult % odiv == 0) { imult /= odiv; odiv = 1; }
1301 if (odiv % imult == 0) { odiv /= imult; imult = 1; }
1302
1303 value = (value * (imult * omult) + (idiv * odiv - 1)) / (idiv * odiv);
1304 *ret = value;
1305 return NULL;
1306}
Willy Tarreau6911fa42007-03-04 18:06:08 +01001307
Emeric Brun39132b22010-01-04 14:57:24 +01001308/* this function converts the string starting at <text> to an unsigned int
1309 * stored in <ret>. If an error is detected, the pointer to the unexpected
1310 * character is returned. If the conversio is succesful, NULL is returned.
1311 */
1312const char *parse_size_err(const char *text, unsigned *ret) {
1313 unsigned value = 0;
1314
1315 while (1) {
1316 unsigned int j;
1317
1318 j = *text - '0';
1319 if (j > 9)
1320 break;
1321 if (value > ~0U / 10)
1322 return text;
1323 value *= 10;
1324 if (value > (value + j))
1325 return text;
1326 value += j;
1327 text++;
1328 }
1329
1330 switch (*text) {
1331 case '\0':
1332 break;
1333 case 'K':
1334 case 'k':
1335 if (value > ~0U >> 10)
1336 return text;
1337 value = value << 10;
1338 break;
1339 case 'M':
1340 case 'm':
1341 if (value > ~0U >> 20)
1342 return text;
1343 value = value << 20;
1344 break;
1345 case 'G':
1346 case 'g':
1347 if (value > ~0U >> 30)
1348 return text;
1349 value = value << 30;
1350 break;
1351 default:
1352 return text;
1353 }
1354
1355 *ret = value;
1356 return NULL;
1357}
1358
Willy Tarreau126d4062013-12-03 17:50:47 +01001359/*
1360 * Parse binary string written in hexadecimal (source) and store the decoded
1361 * result into binstr and set binstrlen to the lengh of binstr. Memory for
1362 * binstr is allocated by the function. In case of error, returns 0 with an
1363 * error message in err.
1364 */
1365int parse_binary(const char *source, char **binstr, int *binstrlen, char **err)
1366{
1367 int len;
1368 const char *p = source;
1369 int i,j;
1370
1371 len = strlen(source);
1372 if (len % 2) {
1373 memprintf(err, "an even number of hex digit is expected");
1374 return 0;
1375 }
1376
1377 len = len >> 1;
1378 *binstrlen = len;
1379 *binstr = calloc(len, sizeof(char));
1380 if (!*binstr) {
1381 memprintf(err, "out of memory while loading string pattern");
1382 return 0;
1383 }
1384
1385 i = j = 0;
1386 while (j < len) {
1387 if (!ishex(p[i++]))
1388 goto bad_input;
1389 if (!ishex(p[i++]))
1390 goto bad_input;
1391 (*binstr)[j++] = (hex2i(p[i-2]) << 4) + hex2i(p[i-1]);
1392 }
1393 return len;
1394
1395bad_input:
1396 memprintf(err, "an hex digit is expected (found '%c')", p[i-1]);
1397 free(binstr);
1398 return 0;
1399}
1400
Willy Tarreau946ba592009-05-10 15:41:18 +02001401/* copies at most <n> characters from <src> and always terminates with '\0' */
1402char *my_strndup(const char *src, int n)
1403{
1404 int len = 0;
1405 char *ret;
1406
1407 while (len < n && src[len])
1408 len++;
1409
1410 ret = (char *)malloc(len + 1);
1411 if (!ret)
1412 return ret;
1413 memcpy(ret, src, len);
1414 ret[len] = '\0';
1415 return ret;
1416}
1417
Willy Tarreau482b00d2009-10-04 22:48:42 +02001418/* This function returns the first unused key greater than or equal to <key> in
1419 * ID tree <root>. Zero is returned if no place is found.
1420 */
1421unsigned int get_next_id(struct eb_root *root, unsigned int key)
1422{
1423 struct eb32_node *used;
1424
1425 do {
1426 used = eb32_lookup_ge(root, key);
1427 if (!used || used->key > key)
1428 return key; /* key is available */
1429 key++;
1430 } while (key);
1431 return key;
1432}
1433
Willy Tarreau348238b2010-01-18 15:05:57 +01001434/* This function compares a sample word possibly followed by blanks to another
1435 * clean word. The compare is case-insensitive. 1 is returned if both are equal,
1436 * otherwise zero. This intends to be used when checking HTTP headers for some
1437 * values. Note that it validates a word followed only by blanks but does not
1438 * validate a word followed by blanks then other chars.
1439 */
1440int word_match(const char *sample, int slen, const char *word, int wlen)
1441{
1442 if (slen < wlen)
1443 return 0;
1444
1445 while (wlen) {
1446 char c = *sample ^ *word;
1447 if (c && c != ('A' ^ 'a'))
1448 return 0;
1449 sample++;
1450 word++;
1451 slen--;
1452 wlen--;
1453 }
1454
1455 while (slen) {
1456 if (*sample != ' ' && *sample != '\t')
1457 return 0;
1458 sample++;
1459 slen--;
1460 }
1461 return 1;
1462}
Willy Tarreau482b00d2009-10-04 22:48:42 +02001463
Willy Tarreaud54bbdc2009-09-07 11:00:31 +02001464/* Converts any text-formatted IPv4 address to a host-order IPv4 address. It
1465 * is particularly fast because it avoids expensive operations such as
1466 * multiplies, which are optimized away at the end. It requires a properly
1467 * formated address though (3 points).
1468 */
1469unsigned int inetaddr_host(const char *text)
1470{
1471 const unsigned int ascii_zero = ('0' << 24) | ('0' << 16) | ('0' << 8) | '0';
1472 register unsigned int dig100, dig10, dig1;
1473 int s;
1474 const char *p, *d;
1475
1476 dig1 = dig10 = dig100 = ascii_zero;
1477 s = 24;
1478
1479 p = text;
1480 while (1) {
1481 if (((unsigned)(*p - '0')) <= 9) {
1482 p++;
1483 continue;
1484 }
1485
1486 /* here, we have a complete byte between <text> and <p> (exclusive) */
1487 if (p == text)
1488 goto end;
1489
1490 d = p - 1;
1491 dig1 |= (unsigned int)(*d << s);
1492 if (d == text)
1493 goto end;
1494
1495 d--;
1496 dig10 |= (unsigned int)(*d << s);
1497 if (d == text)
1498 goto end;
1499
1500 d--;
1501 dig100 |= (unsigned int)(*d << s);
1502 end:
1503 if (!s || *p != '.')
1504 break;
1505
1506 s -= 8;
1507 text = ++p;
1508 }
1509
1510 dig100 -= ascii_zero;
1511 dig10 -= ascii_zero;
1512 dig1 -= ascii_zero;
1513 return ((dig100 * 10) + dig10) * 10 + dig1;
1514}
1515
1516/*
1517 * Idem except the first unparsed character has to be passed in <stop>.
1518 */
1519unsigned int inetaddr_host_lim(const char *text, const char *stop)
1520{
1521 const unsigned int ascii_zero = ('0' << 24) | ('0' << 16) | ('0' << 8) | '0';
1522 register unsigned int dig100, dig10, dig1;
1523 int s;
1524 const char *p, *d;
1525
1526 dig1 = dig10 = dig100 = ascii_zero;
1527 s = 24;
1528
1529 p = text;
1530 while (1) {
1531 if (((unsigned)(*p - '0')) <= 9 && p < stop) {
1532 p++;
1533 continue;
1534 }
1535
1536 /* here, we have a complete byte between <text> and <p> (exclusive) */
1537 if (p == text)
1538 goto end;
1539
1540 d = p - 1;
1541 dig1 |= (unsigned int)(*d << s);
1542 if (d == text)
1543 goto end;
1544
1545 d--;
1546 dig10 |= (unsigned int)(*d << s);
1547 if (d == text)
1548 goto end;
1549
1550 d--;
1551 dig100 |= (unsigned int)(*d << s);
1552 end:
1553 if (!s || p == stop || *p != '.')
1554 break;
1555
1556 s -= 8;
1557 text = ++p;
1558 }
1559
1560 dig100 -= ascii_zero;
1561 dig10 -= ascii_zero;
1562 dig1 -= ascii_zero;
1563 return ((dig100 * 10) + dig10) * 10 + dig1;
1564}
1565
1566/*
1567 * Idem except the pointer to first unparsed byte is returned into <ret> which
1568 * must not be NULL.
1569 */
Willy Tarreau74172752010-10-15 23:21:42 +02001570unsigned int inetaddr_host_lim_ret(char *text, char *stop, char **ret)
Willy Tarreaud54bbdc2009-09-07 11:00:31 +02001571{
1572 const unsigned int ascii_zero = ('0' << 24) | ('0' << 16) | ('0' << 8) | '0';
1573 register unsigned int dig100, dig10, dig1;
1574 int s;
Willy Tarreau74172752010-10-15 23:21:42 +02001575 char *p, *d;
Willy Tarreaud54bbdc2009-09-07 11:00:31 +02001576
1577 dig1 = dig10 = dig100 = ascii_zero;
1578 s = 24;
1579
1580 p = text;
1581 while (1) {
1582 if (((unsigned)(*p - '0')) <= 9 && p < stop) {
1583 p++;
1584 continue;
1585 }
1586
1587 /* here, we have a complete byte between <text> and <p> (exclusive) */
1588 if (p == text)
1589 goto end;
1590
1591 d = p - 1;
1592 dig1 |= (unsigned int)(*d << s);
1593 if (d == text)
1594 goto end;
1595
1596 d--;
1597 dig10 |= (unsigned int)(*d << s);
1598 if (d == text)
1599 goto end;
1600
1601 d--;
1602 dig100 |= (unsigned int)(*d << s);
1603 end:
1604 if (!s || p == stop || *p != '.')
1605 break;
1606
1607 s -= 8;
1608 text = ++p;
1609 }
1610
1611 *ret = p;
1612 dig100 -= ascii_zero;
1613 dig10 -= ascii_zero;
1614 dig1 -= ascii_zero;
1615 return ((dig100 * 10) + dig10) * 10 + dig1;
1616}
1617
Willy Tarreauf0b38bf2010-06-06 13:22:23 +02001618/* Convert a fixed-length string to an IP address. Returns 0 in case of error,
1619 * or the number of chars read in case of success. Maybe this could be replaced
1620 * by one of the functions above. Also, apparently this function does not support
1621 * hosts above 255 and requires exactly 4 octets.
1622 */
1623int buf2ip(const char *buf, size_t len, struct in_addr *dst)
1624{
1625 const char *addr;
1626 int saw_digit, octets, ch;
1627 u_char tmp[4], *tp;
1628 const char *cp = buf;
1629
1630 saw_digit = 0;
1631 octets = 0;
1632 *(tp = tmp) = 0;
1633
1634 for (addr = buf; addr - buf < len; addr++) {
1635 unsigned char digit = (ch = *addr) - '0';
1636
1637 if (digit > 9 && ch != '.')
1638 break;
1639
1640 if (digit <= 9) {
1641 u_int new = *tp * 10 + digit;
1642
1643 if (new > 255)
1644 return 0;
1645
1646 *tp = new;
1647
1648 if (!saw_digit) {
1649 if (++octets > 4)
1650 return 0;
1651 saw_digit = 1;
1652 }
1653 } else if (ch == '.' && saw_digit) {
1654 if (octets == 4)
1655 return 0;
1656
1657 *++tp = 0;
1658 saw_digit = 0;
1659 } else
1660 return 0;
1661 }
1662
1663 if (octets < 4)
1664 return 0;
1665
1666 memcpy(&dst->s_addr, tmp, 4);
1667 return addr - cp;
1668}
1669
Thierry FOURNIERd559dd82013-11-22 16:16:59 +01001670/* This function converts the string in <buf> of the len <len> to
1671 * struct in6_addr <dst> which must be allocated by the caller.
1672 * This function returns 1 in success case, otherwise zero.
1673 */
1674#define MAX_IP6_LEN 45
1675int buf2ip6(const char *buf, size_t len, struct in6_addr *dst)
1676{
1677 char null_term_ip6[MAX_IP6_LEN + 1];
1678
1679 if (len > MAX_IP6_LEN)
1680 return 0;
1681
1682 memcpy(null_term_ip6, buf, len);
1683 null_term_ip6[len] = '\0';
1684
1685 if (!inet_pton(AF_INET6, null_term_ip6, dst))
1686 return 0;
1687
1688 return 1;
1689}
1690
Willy Tarreauacf95772010-06-14 19:09:21 +02001691/* To be used to quote config arg positions. Returns the short string at <ptr>
1692 * surrounded by simple quotes if <ptr> is valid and non-empty, or "end of line"
1693 * if ptr is NULL or empty. The string is locally allocated.
1694 */
1695const char *quote_arg(const char *ptr)
1696{
1697 static char val[32];
1698 int i;
1699
1700 if (!ptr || !*ptr)
1701 return "end of line";
1702 val[0] = '\'';
Willy Tarreaude2dd6b2013-01-24 02:14:42 +01001703 for (i = 1; i < sizeof(val) - 2 && *ptr; i++)
Willy Tarreauacf95772010-06-14 19:09:21 +02001704 val[i] = *ptr++;
1705 val[i++] = '\'';
1706 val[i] = '\0';
1707 return val;
1708}
1709
Willy Tarreau5b180202010-07-18 10:40:48 +02001710/* returns an operator among STD_OP_* for string <str> or < 0 if unknown */
1711int get_std_op(const char *str)
1712{
1713 int ret = -1;
1714
1715 if (*str == 'e' && str[1] == 'q')
1716 ret = STD_OP_EQ;
1717 else if (*str == 'n' && str[1] == 'e')
1718 ret = STD_OP_NE;
1719 else if (*str == 'l') {
1720 if (str[1] == 'e') ret = STD_OP_LE;
1721 else if (str[1] == 't') ret = STD_OP_LT;
1722 }
1723 else if (*str == 'g') {
1724 if (str[1] == 'e') ret = STD_OP_GE;
1725 else if (str[1] == 't') ret = STD_OP_GT;
1726 }
1727
1728 if (ret == -1 || str[2] != '\0')
1729 return -1;
1730 return ret;
1731}
1732
Willy Tarreau4c14eaa2010-11-24 14:01:45 +01001733/* hash a 32-bit integer to another 32-bit integer */
1734unsigned int full_hash(unsigned int a)
1735{
1736 return __full_hash(a);
1737}
1738
David du Colombier4f92d322011-03-24 11:09:31 +01001739/* Return non-zero if IPv4 address is part of the network,
1740 * otherwise zero.
1741 */
1742int in_net_ipv4(struct in_addr *addr, struct in_addr *mask, struct in_addr *net)
1743{
1744 return((addr->s_addr & mask->s_addr) == (net->s_addr & mask->s_addr));
1745}
1746
1747/* Return non-zero if IPv6 address is part of the network,
1748 * otherwise zero.
1749 */
1750int in_net_ipv6(struct in6_addr *addr, struct in6_addr *mask, struct in6_addr *net)
1751{
1752 int i;
1753
1754 for (i = 0; i < sizeof(struct in6_addr) / sizeof(int); i++)
1755 if (((((int *)addr)[i] & ((int *)mask)[i])) !=
1756 (((int *)net)[i] & ((int *)mask)[i]))
1757 return 0;
1758 return 1;
1759}
1760
1761/* RFC 4291 prefix */
1762const char rfc4291_pfx[] = { 0x00, 0x00, 0x00, 0x00,
1763 0x00, 0x00, 0x00, 0x00,
1764 0x00, 0x00, 0xFF, 0xFF };
1765
Thierry FOURNIER4a04dc32013-11-28 16:33:15 +01001766/* Map IPv4 adress on IPv6 address, as specified in RFC 3513.
1767 * Input and output may overlap.
1768 */
David du Colombier4f92d322011-03-24 11:09:31 +01001769void v4tov6(struct in6_addr *sin6_addr, struct in_addr *sin_addr)
1770{
Thierry FOURNIER4a04dc32013-11-28 16:33:15 +01001771 struct in_addr tmp_addr;
1772
1773 tmp_addr.s_addr = sin_addr->s_addr;
David du Colombier4f92d322011-03-24 11:09:31 +01001774 memcpy(sin6_addr->s6_addr, rfc4291_pfx, sizeof(rfc4291_pfx));
Thierry FOURNIER4a04dc32013-11-28 16:33:15 +01001775 memcpy(sin6_addr->s6_addr+12, &tmp_addr.s_addr, 4);
David du Colombier4f92d322011-03-24 11:09:31 +01001776}
1777
1778/* Map IPv6 adress on IPv4 address, as specified in RFC 3513.
1779 * Return true if conversion is possible and false otherwise.
1780 */
1781int v6tov4(struct in_addr *sin_addr, struct in6_addr *sin6_addr)
1782{
1783 if (memcmp(sin6_addr->s6_addr, rfc4291_pfx, sizeof(rfc4291_pfx)) == 0) {
1784 memcpy(&(sin_addr->s_addr), &(sin6_addr->s6_addr[12]),
1785 sizeof(struct in_addr));
1786 return 1;
1787 }
1788
1789 return 0;
1790}
1791
William Lallemand421f5b52012-02-06 18:15:57 +01001792char *human_time(int t, short hz_div) {
1793 static char rv[sizeof("24855d23h")+1]; // longest of "23h59m" and "59m59s"
1794 char *p = rv;
1795 int cnt=2; // print two numbers
1796
1797 if (unlikely(t < 0 || hz_div <= 0)) {
1798 sprintf(p, "?");
1799 return rv;
1800 }
1801
1802 if (unlikely(hz_div > 1))
1803 t /= hz_div;
1804
1805 if (t >= DAY) {
1806 p += sprintf(p, "%dd", t / DAY);
1807 cnt--;
1808 }
1809
1810 if (cnt && t % DAY / HOUR) {
1811 p += sprintf(p, "%dh", t % DAY / HOUR);
1812 cnt--;
1813 }
1814
1815 if (cnt && t % HOUR / MINUTE) {
1816 p += sprintf(p, "%dm", t % HOUR / MINUTE);
1817 cnt--;
1818 }
1819
1820 if ((cnt && t % MINUTE) || !t) // also display '0s'
1821 p += sprintf(p, "%ds", t % MINUTE / SEC);
1822
1823 return rv;
1824}
1825
1826const char *monthname[12] = {
1827 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
1828 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
1829};
1830
1831/* date2str_log: write a date in the format :
1832 * sprintf(str, "%02d/%s/%04d:%02d:%02d:%02d.%03d",
1833 * tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
1834 * tm.tm_hour, tm.tm_min, tm.tm_sec, (int)date.tv_usec/1000);
1835 *
1836 * without using sprintf. return a pointer to the last char written (\0) or
1837 * NULL if there isn't enough space.
1838 */
1839char *date2str_log(char *dst, struct tm *tm, struct timeval *date, size_t size)
1840{
1841
1842 if (size < 25) /* the size is fixed: 24 chars + \0 */
1843 return NULL;
1844
1845 dst = utoa_pad((unsigned int)tm->tm_mday, dst, 3); // day
1846 *dst++ = '/';
1847 memcpy(dst, monthname[tm->tm_mon], 3); // month
1848 dst += 3;
1849 *dst++ = '/';
1850 dst = utoa_pad((unsigned int)tm->tm_year+1900, dst, 5); // year
1851 *dst++ = ':';
1852 dst = utoa_pad((unsigned int)tm->tm_hour, dst, 3); // hour
1853 *dst++ = ':';
1854 dst = utoa_pad((unsigned int)tm->tm_min, dst, 3); // minutes
1855 *dst++ = ':';
1856 dst = utoa_pad((unsigned int)tm->tm_sec, dst, 3); // secondes
1857 *dst++ = '.';
1858 utoa_pad((unsigned int)(date->tv_usec/1000), dst, 4); // millisecondes
1859 dst += 3; // only the 3 first digits
1860 *dst = '\0';
1861
1862 return dst;
1863}
1864
1865/* gmt2str_log: write a date in the format :
1866 * "%02d/%s/%04d:%02d:%02d:%02d +0000" without using snprintf
1867 * return a pointer to the last char written (\0) or
1868 * NULL if there isn't enough space.
1869 */
1870char *gmt2str_log(char *dst, struct tm *tm, size_t size)
1871{
Yuxans Yao4e25b012012-10-19 10:36:09 +08001872 if (size < 27) /* the size is fixed: 26 chars + \0 */
William Lallemand421f5b52012-02-06 18:15:57 +01001873 return NULL;
1874
1875 dst = utoa_pad((unsigned int)tm->tm_mday, dst, 3); // day
1876 *dst++ = '/';
1877 memcpy(dst, monthname[tm->tm_mon], 3); // month
1878 dst += 3;
1879 *dst++ = '/';
1880 dst = utoa_pad((unsigned int)tm->tm_year+1900, dst, 5); // year
1881 *dst++ = ':';
1882 dst = utoa_pad((unsigned int)tm->tm_hour, dst, 3); // hour
1883 *dst++ = ':';
1884 dst = utoa_pad((unsigned int)tm->tm_min, dst, 3); // minutes
1885 *dst++ = ':';
1886 dst = utoa_pad((unsigned int)tm->tm_sec, dst, 3); // secondes
1887 *dst++ = ' ';
1888 *dst++ = '+';
1889 *dst++ = '0';
1890 *dst++ = '0';
1891 *dst++ = '0';
1892 *dst++ = '0';
1893 *dst = '\0';
1894
1895 return dst;
1896}
1897
Yuxans Yao4e25b012012-10-19 10:36:09 +08001898/* localdate2str_log: write a date in the format :
1899 * "%02d/%s/%04d:%02d:%02d:%02d +0000(local timezone)" without using snprintf
1900 * * return a pointer to the last char written (\0) or
1901 * * NULL if there isn't enough space.
1902 */
1903char *localdate2str_log(char *dst, struct tm *tm, size_t size)
1904{
1905 if (size < 27) /* the size is fixed: 26 chars + \0 */
1906 return NULL;
1907
1908 dst = utoa_pad((unsigned int)tm->tm_mday, dst, 3); // day
1909 *dst++ = '/';
1910 memcpy(dst, monthname[tm->tm_mon], 3); // month
1911 dst += 3;
1912 *dst++ = '/';
1913 dst = utoa_pad((unsigned int)tm->tm_year+1900, dst, 5); // year
1914 *dst++ = ':';
1915 dst = utoa_pad((unsigned int)tm->tm_hour, dst, 3); // hour
1916 *dst++ = ':';
1917 dst = utoa_pad((unsigned int)tm->tm_min, dst, 3); // minutes
1918 *dst++ = ':';
1919 dst = utoa_pad((unsigned int)tm->tm_sec, dst, 3); // secondes
1920 *dst++ = ' ';
1921 memcpy(dst, localtimezone, 5); // timezone
1922 dst += 5;
1923 *dst = '\0';
1924
1925 return dst;
1926}
1927
Willy Tarreau9a7bea52012-04-27 11:16:50 +02001928/* Dynamically allocates a string of the proper length to hold the formatted
1929 * output. NULL is returned on error. The caller is responsible for freeing the
1930 * memory area using free(). The resulting string is returned in <out> if the
1931 * pointer is not NULL. A previous version of <out> might be used to build the
1932 * new string, and it will be freed before returning if it is not NULL, which
1933 * makes it possible to build complex strings from iterative calls without
1934 * having to care about freeing intermediate values, as in the example below :
1935 *
1936 * memprintf(&err, "invalid argument: '%s'", arg);
1937 * ...
1938 * memprintf(&err, "parser said : <%s>\n", *err);
1939 * ...
1940 * free(*err);
1941 *
1942 * This means that <err> must be initialized to NULL before first invocation.
1943 * The return value also holds the allocated string, which eases error checking
1944 * and immediate consumption. If the output pointer is not used, NULL must be
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001945 * passed instead and it will be ignored. The returned message will then also
1946 * be NULL so that the caller does not have to bother with freeing anything.
Willy Tarreau9a7bea52012-04-27 11:16:50 +02001947 *
1948 * It is also convenient to use it without any free except the last one :
1949 * err = NULL;
1950 * if (!fct1(err)) report(*err);
1951 * if (!fct2(err)) report(*err);
1952 * if (!fct3(err)) report(*err);
1953 * free(*err);
1954 */
1955char *memprintf(char **out, const char *format, ...)
1956{
1957 va_list args;
1958 char *ret = NULL;
1959 int allocated = 0;
1960 int needed = 0;
1961
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001962 if (!out)
1963 return NULL;
1964
Willy Tarreau9a7bea52012-04-27 11:16:50 +02001965 do {
1966 /* vsnprintf() will return the required length even when the
1967 * target buffer is NULL. We do this in a loop just in case
1968 * intermediate evaluations get wrong.
1969 */
1970 va_start(args, format);
Willy Tarreau1b2fed62013-04-01 22:48:54 +02001971 needed = vsnprintf(ret, allocated, format, args);
Willy Tarreau9a7bea52012-04-27 11:16:50 +02001972 va_end(args);
1973
Willy Tarreau1b2fed62013-04-01 22:48:54 +02001974 if (needed < allocated) {
1975 /* Note: on Solaris 8, the first iteration always
1976 * returns -1 if allocated is zero, so we force a
1977 * retry.
1978 */
1979 if (!allocated)
1980 needed = 0;
1981 else
1982 break;
1983 }
Willy Tarreau9a7bea52012-04-27 11:16:50 +02001984
Willy Tarreau1b2fed62013-04-01 22:48:54 +02001985 allocated = needed + 1;
Willy Tarreau9a7bea52012-04-27 11:16:50 +02001986 ret = realloc(ret, allocated);
1987 } while (ret);
1988
1989 if (needed < 0) {
1990 /* an error was encountered */
1991 free(ret);
1992 ret = NULL;
1993 }
1994
1995 if (out) {
1996 free(*out);
1997 *out = ret;
1998 }
1999
2000 return ret;
2001}
William Lallemand421f5b52012-02-06 18:15:57 +01002002
Willy Tarreau21c705b2012-09-14 11:40:36 +02002003/* Used to add <level> spaces before each line of <out>, unless there is only one line.
2004 * The input argument is automatically freed and reassigned. The result will have to be
Willy Tarreau70eec382012-10-10 08:56:47 +02002005 * freed by the caller. It also supports being passed a NULL which results in the same
2006 * output.
Willy Tarreau21c705b2012-09-14 11:40:36 +02002007 * Example of use :
2008 * parse(cmd, &err); (callee: memprintf(&err, ...))
2009 * fprintf(stderr, "Parser said: %s\n", indent_error(&err));
2010 * free(err);
2011 */
2012char *indent_msg(char **out, int level)
2013{
2014 char *ret, *in, *p;
2015 int needed = 0;
2016 int lf = 0;
2017 int lastlf = 0;
2018 int len;
2019
Willy Tarreau70eec382012-10-10 08:56:47 +02002020 if (!out || !*out)
2021 return NULL;
2022
Willy Tarreau21c705b2012-09-14 11:40:36 +02002023 in = *out - 1;
2024 while ((in = strchr(in + 1, '\n')) != NULL) {
2025 lastlf = in - *out;
2026 lf++;
2027 }
2028
2029 if (!lf) /* single line, no LF, return it as-is */
2030 return *out;
2031
2032 len = strlen(*out);
2033
2034 if (lf == 1 && lastlf == len - 1) {
2035 /* single line, LF at end, strip it and return as-is */
2036 (*out)[lastlf] = 0;
2037 return *out;
2038 }
2039
2040 /* OK now we have at least one LF, we need to process the whole string
2041 * as a multi-line string. What we'll do :
2042 * - prefix with an LF if there is none
2043 * - add <level> spaces before each line
2044 * This means at most ( 1 + level + (len-lf) + lf*<1+level) ) =
2045 * 1 + level + len + lf * level = 1 + level * (lf + 1) + len.
2046 */
2047
2048 needed = 1 + level * (lf + 1) + len + 1;
2049 p = ret = malloc(needed);
2050 in = *out;
2051
2052 /* skip initial LFs */
2053 while (*in == '\n')
2054 in++;
2055
2056 /* copy each line, prefixed with LF and <level> spaces, and without the trailing LF */
2057 while (*in) {
2058 *p++ = '\n';
2059 memset(p, ' ', level);
2060 p += level;
2061 do {
2062 *p++ = *in++;
2063 } while (*in && *in != '\n');
2064 if (*in)
2065 in++;
2066 }
2067 *p = 0;
2068
2069 free(*out);
2070 *out = ret;
2071
2072 return ret;
2073}
2074
Willy Tarreaudad36a32013-03-11 01:20:04 +01002075/* Convert occurrences of environment variables in the input string to their
2076 * corresponding value. A variable is identified as a series of alphanumeric
2077 * characters or underscores following a '$' sign. The <in> string must be
2078 * free()able. NULL returns NULL. The resulting string might be reallocated if
2079 * some expansion is made. Variable names may also be enclosed into braces if
2080 * needed (eg: to concatenate alphanum characters).
2081 */
2082char *env_expand(char *in)
2083{
2084 char *txt_beg;
2085 char *out;
2086 char *txt_end;
2087 char *var_beg;
2088 char *var_end;
2089 char *value;
2090 char *next;
2091 int out_len;
2092 int val_len;
2093
2094 if (!in)
2095 return in;
2096
2097 value = out = NULL;
2098 out_len = 0;
2099
2100 txt_beg = in;
2101 do {
2102 /* look for next '$' sign in <in> */
2103 for (txt_end = txt_beg; *txt_end && *txt_end != '$'; txt_end++);
2104
2105 if (!*txt_end && !out) /* end and no expansion performed */
2106 return in;
2107
2108 val_len = 0;
2109 next = txt_end;
2110 if (*txt_end == '$') {
2111 char save;
2112
2113 var_beg = txt_end + 1;
2114 if (*var_beg == '{')
2115 var_beg++;
2116
2117 var_end = var_beg;
2118 while (isalnum((int)(unsigned char)*var_end) || *var_end == '_') {
2119 var_end++;
2120 }
2121
2122 next = var_end;
2123 if (*var_end == '}' && (var_beg > txt_end + 1))
2124 next++;
2125
2126 /* get value of the variable name at this location */
2127 save = *var_end;
2128 *var_end = '\0';
2129 value = getenv(var_beg);
2130 *var_end = save;
2131 val_len = value ? strlen(value) : 0;
2132 }
2133
2134 out = realloc(out, out_len + (txt_end - txt_beg) + val_len + 1);
2135 if (txt_end > txt_beg) {
2136 memcpy(out + out_len, txt_beg, txt_end - txt_beg);
2137 out_len += txt_end - txt_beg;
2138 }
2139 if (val_len) {
2140 memcpy(out + out_len, value, val_len);
2141 out_len += val_len;
2142 }
2143 out[out_len] = 0;
2144 txt_beg = next;
2145 } while (*txt_beg);
2146
2147 /* here we know that <out> was allocated and that we don't need <in> anymore */
2148 free(in);
2149 return out;
2150}
2151
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02002152
2153/* same as strstr() but case-insensitive and with limit length */
2154const char *strnistr(const char *str1, int len_str1, const char *str2, int len_str2)
2155{
2156 char *pptr, *sptr, *start;
2157 uint slen, plen;
2158 uint tmp1, tmp2;
2159
2160 if (str1 == NULL || len_str1 == 0) // search pattern into an empty string => search is not found
2161 return NULL;
2162
2163 if (str2 == NULL || len_str2 == 0) // pattern is empty => every str1 match
2164 return str1;
2165
2166 if (len_str1 < len_str2) // pattern is longer than string => search is not found
2167 return NULL;
2168
2169 for (tmp1 = 0, start = (char *)str1, pptr = (char *)str2, slen = len_str1, plen = len_str2; slen >= plen; start++, slen--) {
2170 while (toupper(*start) != toupper(*str2)) {
2171 start++;
2172 slen--;
2173 tmp1++;
2174
2175 if (tmp1 >= len_str1)
2176 return NULL;
2177
2178 /* if pattern longer than string */
2179 if (slen < plen)
2180 return NULL;
2181 }
2182
2183 sptr = start;
2184 pptr = (char *)str2;
2185
2186 tmp2 = 0;
2187 while (toupper(*sptr) == toupper(*pptr)) {
2188 sptr++;
2189 pptr++;
2190 tmp2++;
2191
2192 if (*pptr == '\0' || tmp2 == len_str2) /* end of pattern found */
2193 return start;
2194 if (*sptr == '\0' || tmp2 == len_str1) /* end of string found and the pattern is not fully found */
2195 return NULL;
2196 }
2197 }
2198 return NULL;
2199}
2200
Willy Tarreaubaaee002006-06-26 02:48:02 +02002201/*
2202 * Local variables:
2203 * c-indent-level: 8
2204 * c-basic-offset: 8
2205 * End:
2206 */