forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ip_addr.c
284 lines (242 loc) · 6.59 KB
/
ip_addr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/*
* ip address & address family related functions
*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of opensips, a free SIP server.
*
* opensips is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* opensips is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* History:
* --------
* 2003-03-19 replaced all mallocs/frees w/ pkg_malloc/pkg_free
* 2004-10-01 mk_net fixes bad network addresses now (andrei)
*/
/*!
* \file
* \brief OpenSIPS IP address & address family related functions
*/
#include <stdlib.h>
#include <stdio.h>
#include "ut.h"
#include "ip_addr.h"
#include "dprint.h"
#include "mem/mem.h"
char _ip_addr_A_buffs[IP_ADDR2STR_BUF_NO][IP_ADDR_MAX_STR_SIZE];
struct net* mk_net(const struct ip_addr* ip, struct ip_addr* mask)
{
struct net* n;
int warning;
unsigned int r;
warning=0;
if ((ip->af != mask->af) || (ip->len != mask->len)){
LM_CRIT("trying to use a different mask family"
" (eg. ipv4/ipv6mask or ipv6/ipv4mask)\n");
goto error;
}
n=(struct net*)pkg_malloc(sizeof(struct net));
if (n==0){
LM_CRIT("memory allocation failure\n");
goto error;
}
n->ip=*ip;
n->mask=*mask;
for (r=0; r<n->ip.len/4; r++) { /*ipv4 & ipv6 addresses are multiple of 4*/
n->ip.u.addr32[r] &= n->mask.u.addr32[r];
if (n->ip.u.addr32[r]!=ip->u.addr32[r]) warning=1;
};
if (warning){
LM_WARN("invalid network address/netmask "
"combination fixed...\n");
print_ip("original network address:", ip, "/");
print_ip("", mask, "\n");
print_ip("fixed network address:", &(n->ip), "/");
print_ip("", &(n->mask), "\n");
};
return n;
error:
return 0;
}
struct net* mk_net_bitlen(const struct ip_addr* ip, unsigned int bitlen)
{
struct ip_addr mask;
unsigned int r;
if (bitlen>ip->len*8){
LM_CRIT("bad bitlen number %d\n", bitlen);
goto error;
}
memset(&mask,0, sizeof(mask));
for (r=0;r<bitlen/8;r++) mask.u.addr[r]=0xff;
if (bitlen%8) mask.u.addr[r]= ~((1<<(8-(bitlen%8)))-1);
mask.af=ip->af;
mask.len=ip->len;
return mk_net(ip, &mask);
error:
return 0;
}
void print_ip(char* p, const struct ip_addr* ip, char *s)
{
switch(ip->af){
case AF_INET:
LM_DBG("%s%d.%d.%d.%d%s", (p)?p:"",
ip->u.addr[0],
ip->u.addr[1],
ip->u.addr[2],
ip->u.addr[3],
(s)?s:""
);
break;
case AF_INET6:
LM_DBG("%s%x:%x:%x:%x:%x:%x:%x:%x%s", (p)?p:"",
htons(ip->u.addr16[0]),
htons(ip->u.addr16[1]),
htons(ip->u.addr16[2]),
htons(ip->u.addr16[3]),
htons(ip->u.addr16[4]),
htons(ip->u.addr16[5]),
htons(ip->u.addr16[6]),
htons(ip->u.addr16[7]),
(s)?s:""
);
break;
default:
LM_DBG("warning unknown address family %d\n", ip->af);
}
}
void stdout_print_ip(struct ip_addr* ip)
{
switch(ip->af){
case AF_INET:
printf("%d.%d.%d.%d", ip->u.addr[0],
ip->u.addr[1],
ip->u.addr[2],
ip->u.addr[3]);
break;
case AF_INET6:
printf("%x:%x:%x:%x:%x:%x:%x:%x", htons(ip->u.addr16[0]),
htons(ip->u.addr16[1]),
htons(ip->u.addr16[2]),
htons(ip->u.addr16[3]),
htons(ip->u.addr16[4]),
htons(ip->u.addr16[5]),
htons(ip->u.addr16[6]),
htons(ip->u.addr16[7])
);
break;
default:
LM_DBG("warning unknown address family %d\n", ip->af);
}
}
void print_net(struct net* net)
{
if (net==0){
LM_WARN("null pointer\n");
return;
}
print_ip("", &net->ip, "/"); print_ip("", &net->mask, "");
}
int ip_addr_is_1918(str *s_ip, int check_rfc_6333)
{
static struct {
uint32_t netaddr;
uint32_t mask;
} nets_1918[] = {
{ 0x0a000000, 0xffffffffu << 24}, /* "10.0.0.0" RFC 1918 */
{ 0xac100000, 0xffffffffu << 20}, /* "172.16.0.0" RFC 1918 */
{ 0xc0a80000, 0xffffffffu << 16}, /* "192.168.0.0" RFC 1918 */
{ 0x64400000, 0xffffffffu << 22}, /* "100.64.0.0" RFC 6598 */
{ 0x7f000000, 0xffffffffu << 24}, /* "127.0.0.0" RFC 1122 */
{ 0xc0000000, 0xffffffffu << 3}, /* "192.0.0.0" RFC 6333 */
{ 0, 0}
};
struct ip_addr *ip;
uint32_t netaddr;
int i;
if (!check_rfc_6333)
nets_1918[5].netaddr = 0;
/* is it an IPv4 address? */
if ( (ip=str2ip(s_ip))==NULL )
return 0;
netaddr = ntohl(ip->u.addr32[0]);
for (i = 0; nets_1918[i].netaddr != 0; i++) {
if ((netaddr & nets_1918[i].mask) == nets_1918[i].netaddr)
return 1;
}
return 0;
}
#ifdef USE_MCAST
/* Returns 1 if the given address is a multicast address */
int is_mcast(struct ip_addr* ip)
{
if (!ip){
LM_ERR("invalid parameter value\n");
return -1;
}
if (ip->af==AF_INET){
return IN_MULTICAST(htonl(ip->u.addr32[0]));
} else if (ip->af==AF_INET6){
return IN6_IS_ADDR_MULTICAST((struct in6_addr *)(void *)ip->u.addr);
} else {
LM_ERR("unsupported protocol family\n");
return -1;
}
}
int mk_net_cidr(const str *cidr, struct net *out_net)
{
str ip_str, px_str;
unsigned int prefix_len = UINT_MAX;
struct ip_addr *ip;
struct net *tmp_cidr;
char *c;
ip_str.s = cidr->s;
c = q_memchr(ip_str.s, '/', cidr->len);
if (c) {
ip_str.len = c - ip_str.s;
px_str.s = c + 1;
px_str.len = cidr->len - ip_str.len - 1;
if (px_str.len > 0 && str2int(&px_str, &prefix_len) != 0) {
LM_ERR("bad characters in network prefix length (CIDR: %.*s)\n",
cidr->len, cidr->s);
goto error;
}
} else {
ip_str.len = cidr->len;
}
if (!(ip=str2ip(&ip_str)) && !(ip=str2ip6(&ip_str))) {
LM_ERR("invalid IP address <%.*s>\n", ip_str.len, ip_str.s);
goto error;
}
if (prefix_len == UINT_MAX)
prefix_len = (ip->af == AF_INET ? 32 : 128);
/* now that we know the AF family, we can validate the prefix len */
if ((ip->af==AF_INET && prefix_len>32) ||
(ip->af==AF_INET6 && prefix_len>128)) {
LM_ERR("network prefix length %d too large for AF %d (ip: %.*s)\n",
prefix_len, ip->af, ip_str.len, ip_str.s);
goto error;
}
tmp_cidr = mk_net_bitlen(ip, prefix_len);
if (!tmp_cidr) {
LM_ERR("oom\n");
goto error;
}
*out_net = *tmp_cidr;
pkg_free(tmp_cidr);
return 0;
error:
memset(out_net, 0, sizeof *out_net);
return -1;
}
#endif /* USE_MCAST */