forked from kamailio/kamailio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathip_addr.c
151 lines (131 loc) · 3.53 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
/*
* $Id$
*
*
* ip address & address family related functions
*
* Copyright (C) 2001-2003 Fhg Fokus
*
* This file is part of ser, a free SIP server.
*
* ser 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
*
* For a license to use the ser software under conditions
* other than those described here, or to purchase support for this
* software, please contact iptel.org by e-mail at the following addresses:
*
* ser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <stdlib.h>
#include <stdio.h>
#include "ip_addr.h"
#include "dprint.h"
struct net* mk_net(struct ip_addr* ip, struct ip_addr* mask)
{
struct net* n;
if ((ip->af != mask->af) || (ip->len != mask->len)){
LOG(L_CRIT, "ERROR: mk_net: trying to use a different mask family"
" (eg. ipv4/ipv6mask or ipv6/ipv4mask)\n");
goto error;
}
n=(struct net*)malloc(sizeof(struct net));
if (n==0){
LOG(L_CRIT, "ERROR: mk_net: memory allocation failure\n");
goto error;
}
n->ip=*ip;
n->mask=*mask;
return n;
error:
return 0;
}
struct net* mk_net_bitlen(struct ip_addr* ip, unsigned int bitlen)
{
struct net* n;
int r;
if (bitlen>ip->len*8){
LOG(L_CRIT, "ERROR: mk_net_bitlen: bad bitlen number %d\n", bitlen);
goto error;
}
n=(struct net*)malloc(sizeof(struct net));
if (n==0){
LOG(L_CRIT, "ERROR: mk_net_bitlen: memory allocation failure\n");
goto error;
}
memset(n,0, sizeof(struct net));
n->ip=*ip;
for (r=0;r<bitlen/8;r++) n->mask.u.addr[r]=0xff;
if (bitlen%8) n->mask.u.addr[r]= ~((1<<(8-(bitlen%8)))-1);
n->mask.af=ip->af;
n->mask.len=ip->len;
return n;
error:
return 0;
}
void print_ip(struct ip_addr* ip)
{
switch(ip->af){
case AF_INET:
DBG("%d.%d.%d.%d", ip->u.addr[0],
ip->u.addr[1],
ip->u.addr[2],
ip->u.addr[3]);
break;
case AF_INET6:
DBG("%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:
DBG("print_ip: warning unknown adress 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:
DBG("print_ip: warning unknown adress family %d\n", ip->af);
}
}
void print_net(struct net* net)
{
if (net==0){
LOG(L_WARN, "ERROR: print net: null pointer\n");
return;
}
print_ip(&net->ip); DBG("/"); print_ip(&net->mask);
}