blob: 5b9d4a8c6aeaef09e7ae6c47236ffa9a48dfd545 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau2dd0d472006-06-29 17:53:05 +02002 include/common/standard.h
Willy Tarreaubaaee002006-06-26 02:48:02 +02003 This files contains some general purpose functions and macros.
4
Willy Tarreau6911fa42007-03-04 18:06:08 +01005 Copyright (C) 2000-2007 Willy Tarreau - w@1wt.eu
Willy Tarreaubaaee002006-06-26 02:48:02 +02006
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation, version 2.1
10 exclusively.
11
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public
18 License along with this library; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20*/
21
Willy Tarreau2dd0d472006-06-29 17:53:05 +020022#ifndef _COMMON_STANDARD_H
23#define _COMMON_STANDARD_H
Willy Tarreaubaaee002006-06-26 02:48:02 +020024
25#include <netinet/in.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020026#include <common/config.h>
Willy Tarreauca28d1e2007-01-24 18:20:50 +010027#include <proto/fd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020028
29/****** string-specific macros and functions ******/
30/* if a > max, then bound <a> to <max>. The macro returns the new <a> */
31#define UBOUND(a, max) ({ typeof(a) b = (max); if ((a) > b) (a) = b; (a); })
32
33/* if a < min, then bound <a> to <min>. The macro returns the new <a> */
34#define LBOUND(a, min) ({ typeof(a) b = (min); if ((a) < b) (a) = b; (a); })
35
36/* returns 1 only if only zero or one bit is set in X, which means that X is a
37 * power of 2, and 0 otherwise */
38#define POWEROF2(x) (((x) & ((x)-1)) == 0)
39
Willy Tarreau7d58a632007-01-13 23:06:06 +010040/*
41 * Gcc >= 3 provides the ability for the programme to give hints to the
42 * compiler about what branch of an if is most likely to be taken. This
43 * helps the compiler produce the most compact critical paths, which is
44 * generally better for the cache and to reduce the number of jumps.
45 */
46#if __GNUC__ < 3
47#define __builtin_expect(x,y) (x)
48#endif
49
50#define likely(x) (__builtin_expect((x) != 0, 1))
51#define unlikely(x) (__builtin_expect((x) != 0, 0))
52
Willy Tarreaubaaee002006-06-26 02:48:02 +020053
54/*
55 * copies at most <size-1> chars from <src> to <dst>. Last char is always
56 * set to 0, unless <size> is 0. The number of chars copied is returned
57 * (excluding the terminating zero).
58 * This code has been optimized for size and speed : on x86, it's 45 bytes
59 * long, uses only registers, and consumes only 4 cycles per char.
60 */
61extern int strlcpy2(char *dst, const char *src, int size);
62
63/*
64 * This function simply returns a statically allocated string containing
65 * the ascii representation for number 'n' in decimal.
66 */
67extern char *ultoa(unsigned long n);
68
69/*
70 * Returns non-zero if character <s> is a hex digit (0-9, a-f, A-F), else zero.
71 */
72extern int ishex(char s);
73
74/*
75 * converts <str> to a struct sockaddr_in* which is locally allocated.
76 * The format is "addr:port", where "addr" can be a dotted IPv4 address,
77 * a host name, or empty or "*" to indicate INADDR_ANY.
78 */
79struct sockaddr_in *str2sa(char *str);
80
81/*
82 * converts <str> to a two struct in_addr* which are locally allocated.
83 * The format is "addr[/mask]", where "addr" cannot be empty, and mask
84 * is optionnal and either in the dotted or CIDR notation.
85 * Note: "addr" can also be a hostname. Returns 1 if OK, 0 if error.
86 */
87int str2net(char *str, struct in_addr *addr, struct in_addr *mask);
88
89/* will try to encode the string <string> replacing all characters tagged in
90 * <map> with the hexadecimal representation of their ASCII-code (2 digits)
91 * prefixed by <escape>, and will store the result between <start> (included)
92 * and <stop> (excluded), and will always terminate the string with a '\0'
93 * before <stop>. The position of the '\0' is returned if the conversion
94 * completes. If bytes are missing between <start> and <stop>, then the
95 * conversion will be incomplete and truncated. If <stop> <= <start>, the '\0'
96 * cannot even be stored so we return <start> without writing the 0.
97 * The input string must also be zero-terminated.
98 */
99extern const char hextab[];
100char *encode_string(char *start, char *stop,
101 const char escape, const fd_set *map,
102 const char *string);
103
Willy Tarreau6911fa42007-03-04 18:06:08 +0100104/* This one is 6 times faster than strtoul() on athlon, but does
105 * no check at all.
106 */
107static inline unsigned int __str2ui(const char *s)
108{
109 unsigned int i = 0;
110 while (*s) {
111 i = i * 10 - '0';
112 i += (unsigned char)*s++;
113 }
114 return i;
115}
116
117/* This one is 5 times faster than strtoul() on athlon with checks.
118 * It returns the value of the number composed of all valid digits read.
119 */
120static inline unsigned int __str2uic(const char *s)
121{
122 unsigned int i = 0;
123 unsigned int j;
124 while (1) {
125 j = (*s++) - '0';
126 if (j > 9)
127 break;
128 i *= 10;
129 i += j;
130 }
131 return i;
132}
133
134/* This one is 28 times faster than strtoul() on athlon, but does
135 * no check at all!
136 */
137static inline unsigned int __strl2ui(const char *s, int len)
138{
139 unsigned int i = 0;
140 while (len-- > 0) {
141 i = i * 10 - '0';
142 i += (unsigned char)*s++;
143 }
144 return i;
145}
146
147/* This one is 7 times faster than strtoul() on athlon with checks.
148 * It returns the value of the number composed of all valid digits read.
149 */
150static inline unsigned int __strl2uic(const char *s, int len)
151{
152 unsigned int i = 0;
153 unsigned int j;
154
155 while (len-- > 0) {
156 j = (*s++) - '0';
157 i = i * 10;
158 if (j > 9)
159 break;
160 i += j;
161 }
162 return i;
163}
164
165extern unsigned int str2ui(const char *s);
166extern unsigned int str2uic(const char *s);
167extern unsigned int strl2ui(const char *s, int len);
168extern unsigned int strl2uic(const char *s, int len);
169extern int strl2ic(const char *s, int len);
170extern int strl2irc(const char *s, int len, int *ret);
171extern int strl2llrc(const char *s, int len, long long *ret);
172
Willy Tarreau2dd0d472006-06-29 17:53:05 +0200173#endif /* _COMMON_STANDARD_H */