2 * Generic address resultion entity
6 * net_ratelimit Andi Kleen
7 * in{4,6}_pton YOSHIFUJI Hideaki, Copyright (C)2006 USAGI/WIDE Project
9 * Created by Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
17 #include <linux/module.h>
18 #include <linux/jiffies.h>
19 #include <linux/kernel.h>
20 #include <linux/inet.h>
22 #include <linux/net.h>
23 #include <linux/string.h>
24 #include <linux/types.h>
25 #include <linux/random.h>
26 #include <linux/percpu.h>
27 #include <linux/init.h>
29 #include <asm/byteorder.h>
30 #include <asm/system.h>
31 #include <asm/uaccess.h>
33 int net_msg_cost
= 5*HZ
;
34 int net_msg_burst
= 10;
37 * All net warning printk()s should be guarded by this function.
39 int net_ratelimit(void)
41 return __printk_ratelimit(net_msg_cost
, net_msg_burst
);
43 EXPORT_SYMBOL(net_ratelimit
);
46 * Convert an ASCII string to binary IP.
47 * This is outside of net/ipv4/ because various code that uses IP addresses
48 * is otherwise not dependent on the TCP/IP stack.
51 __be32
in_aton(const char *str
)
58 for (i
= 0; i
< 4; i
++)
64 while (*str
!= '\0' && *str
!= '.' && *str
!= '\n')
78 EXPORT_SYMBOL(in_aton
);
80 #define IN6PTON_XDIGIT 0x00010000
81 #define IN6PTON_DIGIT 0x00020000
82 #define IN6PTON_COLON_MASK 0x00700000
83 #define IN6PTON_COLON_1 0x00100000 /* single : requested */
84 #define IN6PTON_COLON_2 0x00200000 /* second : requested */
85 #define IN6PTON_COLON_1_2 0x00400000 /* :: requested */
86 #define IN6PTON_DOT 0x00800000 /* . */
87 #define IN6PTON_DELIM 0x10000000
88 #define IN6PTON_NULL 0x20000000 /* first/tail */
89 #define IN6PTON_UNKNOWN 0x40000000
91 static inline int digit2bin(char c
, int delim
)
93 if (c
== delim
|| c
== '\0')
97 if (c
>= '0' && c
<= '9')
98 return (IN6PTON_DIGIT
| (c
- '0'));
99 return IN6PTON_UNKNOWN
;
102 static inline int xdigit2bin(char c
, int delim
)
104 if (c
== delim
|| c
== '\0')
105 return IN6PTON_DELIM
;
107 return IN6PTON_COLON_MASK
;
110 if (c
>= '0' && c
<= '9')
111 return (IN6PTON_XDIGIT
| IN6PTON_DIGIT
| (c
- '0'));
112 if (c
>= 'a' && c
<= 'f')
113 return (IN6PTON_XDIGIT
| (c
- 'a' + 10));
114 if (c
>= 'A' && c
<= 'F')
115 return (IN6PTON_XDIGIT
| (c
- 'A' + 10));
117 return IN6PTON_DELIM
;
118 return IN6PTON_UNKNOWN
;
121 int in4_pton(const char *src
, int srclen
,
123 int delim
, const char **end
)
133 srclen
= strlen(src
);
139 c
= xdigit2bin(srclen
> 0 ? *s
: '\0', delim
);
140 if (!(c
& (IN6PTON_DIGIT
| IN6PTON_DOT
| IN6PTON_DELIM
))) {
143 if (c
& (IN6PTON_DOT
| IN6PTON_DELIM
)) {
149 if (c
& IN6PTON_DELIM
) {
157 if ((w
& 0xffff) > 255) {
167 memcpy(dst
, dbuf
, sizeof(dbuf
));
174 EXPORT_SYMBOL(in4_pton
);
176 int in6_pton(const char *src
, int srclen
,
178 int delim
, const char **end
)
180 const char *s
, *tok
= NULL
;
185 int state
= IN6PTON_COLON_1_2
| IN6PTON_XDIGIT
| IN6PTON_NULL
;
188 memset(dbuf
, 0, sizeof(dbuf
));
193 srclen
= strlen(src
);
198 c
= xdigit2bin(srclen
> 0 ? *s
: '\0', delim
);
201 if (c
& (IN6PTON_DELIM
| IN6PTON_COLON_MASK
)) {
202 /* process one 16-bit word */
203 if (!(state
& IN6PTON_NULL
)) {
204 *d
++ = (w
>> 8) & 0xff;
208 if (c
& IN6PTON_DELIM
) {
209 /* We've processed last word */
214 * COLON_2 => XDIGIT|DELIM
215 * COLON_1_2 => COLON_2
217 switch (state
& IN6PTON_COLON_MASK
) {
218 case IN6PTON_COLON_2
:
220 state
= IN6PTON_XDIGIT
| IN6PTON_DELIM
;
221 if (dc
- dbuf
>= sizeof(dbuf
))
222 state
|= IN6PTON_NULL
;
224 case IN6PTON_COLON_1
|IN6PTON_COLON_1_2
:
225 state
= IN6PTON_XDIGIT
| IN6PTON_COLON_2
;
227 case IN6PTON_COLON_1
:
228 state
= IN6PTON_XDIGIT
;
230 case IN6PTON_COLON_1_2
:
231 state
= IN6PTON_COLON_2
;
240 if (c
& IN6PTON_DOT
) {
241 ret
= in4_pton(tok
? tok
: s
, srclen
+ (int)(s
- tok
), d
, delim
, &s
);
249 w
= (w
<< 4) | (0xff & c
);
250 state
= IN6PTON_COLON_1
| IN6PTON_DELIM
;
252 state
|= IN6PTON_XDIGIT
;
254 if (!dc
&& d
+ 2 < dbuf
+ sizeof(dbuf
)) {
255 state
|= IN6PTON_COLON_1_2
;
256 state
&= ~IN6PTON_DELIM
;
258 if (d
+ 2 >= dbuf
+ sizeof(dbuf
)) {
259 state
&= ~(IN6PTON_COLON_1
|IN6PTON_COLON_1_2
);
262 if ((dc
&& d
+ 4 < dbuf
+ sizeof(dbuf
)) ||
263 d
+ 4 == dbuf
+ sizeof(dbuf
)) {
264 state
|= IN6PTON_DOT
;
266 if (d
>= dbuf
+ sizeof(dbuf
)) {
267 state
&= ~(IN6PTON_XDIGIT
|IN6PTON_COLON_MASK
);
278 while(i
>= dc
- dbuf
)
283 memcpy(dst
, dbuf
, sizeof(dbuf
));
292 EXPORT_SYMBOL(in6_pton
);