blob: ac7727a8b41838644ea947f16256577453a6fec9 [file] [log] [blame]
Florin Corascea194d2017-10-02 00:18:51 -07001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vnet/ip/ip.h>
17#include <vnet/fib/fib_table.h>
18
19u8
20ip_is_zero (ip46_address_t * ip46_address, u8 is_ip4)
21{
22 if (is_ip4)
23 return (ip46_address->ip4.as_u32 == 0);
24 else
25 return (ip46_address->as_u64[0] == 0 && ip46_address->as_u64[1] == 0);
26}
27
28u8
29ip_is_local_host (ip46_address_t * ip46_address, u8 is_ip4)
30{
31 if (is_ip4)
32 return (ip46_address->ip4.as_u8[0] == 127);
33 else
34 return (ip46_address->as_u64[0] == 0 && ip46_address->as_u64[1] == 1);
35}
36
37/**
38 * Checks that an ip is local to the requested fib
39 */
40u8
41ip_is_local (u32 fib_index, ip46_address_t * ip46_address, u8 is_ip4)
42{
43 fib_node_index_t fei;
44 fib_entry_flag_t flags;
45 fib_prefix_t prefix;
46
47 /* Check if requester is local */
48 if (is_ip4)
49 {
50 prefix.fp_len = 32;
51 prefix.fp_proto = FIB_PROTOCOL_IP4;
52 }
53 else
54 {
55 prefix.fp_len = 128;
56 prefix.fp_proto = FIB_PROTOCOL_IP6;
57 }
58
59 clib_memcpy (&prefix.fp_addr, ip46_address, sizeof (ip46_address_t));
60 fei = fib_table_lookup (0, &prefix);
61 flags = fib_entry_get_flags (fei);
62
63 return (flags & FIB_ENTRY_FLAG_LOCAL);
64}
65
Florin Coras3cbc04b2017-10-02 00:18:51 -070066void
67ip_copy (ip46_address_t * dst, ip46_address_t * src, u8 is_ip4)
68{
69 if (is_ip4)
70 dst->ip4.as_u32 = src->ip4.as_u32;
71 else
72 clib_memcpy (&dst->ip6, &src->ip6, sizeof (ip6_address_t));
73}
74
75void
76ip_set (ip46_address_t * dst, void *src, u8 is_ip4)
77{
78 if (is_ip4)
79 dst->ip4.as_u32 = ((ip4_address_t *) src)->as_u32;
80 else
81 clib_memcpy (&dst->ip6, (ip6_address_t *) src, sizeof (ip6_address_t));
82}
83
Florin Corascea194d2017-10-02 00:18:51 -070084u8
85ip_interface_has_address (u32 sw_if_index, ip46_address_t * ip, u8 is_ip4)
86{
87 ip_interface_address_t *ia = 0;
88
89 if (is_ip4)
90 {
91 ip_lookup_main_t *lm4 = &ip4_main.lookup_main;
92 ip4_address_t *ip4;
93 /* *INDENT-OFF* */
94 foreach_ip_interface_address (lm4, ia, sw_if_index, 1 /* unnumbered */ ,
95 ({
96 ip4 = ip_interface_address_get_address (lm4, ia);
97 if (ip4_address_compare (ip4, &ip->ip4) == 0)
98 return 1;
99 }));
100 /* *INDENT-ON* */
101 }
102 else
103 {
104 ip_lookup_main_t *lm6 = &ip6_main.lookup_main;
105 ip6_address_t *ip6;
106 /* *INDENT-OFF* */
107 foreach_ip_interface_address (lm6, ia, sw_if_index, 1 /* unnumbered */ ,
108 ({
109 ip6 = ip_interface_address_get_address (lm6, ia);
110 if (ip6_address_compare (ip6, &ip->ip6) == 0)
111 return 1;
112 }));
113 /* *INDENT-ON* */
114 }
115 return 0;
116}
117
Florin Coras3cbc04b2017-10-02 00:18:51 -0700118void *
119ip_interface_get_first_ip (u32 sw_if_index, u8 is_ip4)
Florin Corascea194d2017-10-02 00:18:51 -0700120{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700121 ip_lookup_main_t *lm4 = &ip4_main.lookup_main;
122 ip_lookup_main_t *lm6 = &ip6_main.lookup_main;
123 ip_interface_address_t *ia = 0;
Florin Corascea194d2017-10-02 00:18:51 -0700124
Florin Corascea194d2017-10-02 00:18:51 -0700125 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700126 {
127 /* *INDENT-OFF* */
128 foreach_ip_interface_address (lm4, ia, sw_if_index, 1 /* unnumbered */ ,
129 ({
130 return ip_interface_address_get_address (lm4, ia);
131 }));
132 /* *INDENT-ON* */
133 }
Florin Corascea194d2017-10-02 00:18:51 -0700134 else
Florin Coras3cbc04b2017-10-02 00:18:51 -0700135 {
136 /* *INDENT-OFF* */
137 foreach_ip_interface_address (lm6, ia, sw_if_index, 1 /* unnumbered */ ,
138 ({
139 ip6_address_t *rv;
140 rv = ip_interface_address_get_address (lm6, ia);
141 /* Trying to use a link-local ip6 src address is a fool's errand */
142 if (!ip6_address_is_link_local_unicast (rv))
143 return rv;
144 }));
145 /* *INDENT-ON* */
146 }
147
148 return 0;
Florin Corascea194d2017-10-02 00:18:51 -0700149}
150
Florin Coras1c710452017-10-17 00:03:13 -0700151void
152ip4_address_normalize (ip4_address_t * ip4, u8 preflen)
153{
154 ASSERT (preflen <= 32);
155 if (preflen == 0)
156 ip4->data_u32 = 0;
157 else
158 ip4->data_u32 &= clib_net_to_host_u32 (0xffffffff << (32 - preflen));
159}
160
161void
162ip6_address_normalize (ip6_address_t * ip6, u8 preflen)
163{
164 ASSERT (preflen <= 128);
165 if (preflen == 0)
166 {
167 ip6->as_u64[0] = 0;
168 ip6->as_u64[1] = 0;
169 }
170 else if (preflen <= 64)
171 {
172 ip6->as_u64[0] &=
173 clib_host_to_net_u64 (0xffffffffffffffffL << (64 - preflen));
174 ip6->as_u64[1] = 0;
175 }
176 else
177 ip6->as_u64[1] &=
178 clib_host_to_net_u64 (0xffffffffffffffffL << (128 - preflen));
179}
180
181void
182ip4_preflen_to_mask (u8 pref_len, ip4_address_t * ip)
183{
184 if (pref_len == 0)
185 ip->as_u32 = 0;
186 else
187 ip->as_u32 = clib_host_to_net_u32 (~((1 << (32 - pref_len)) - 1));
188}
189
190u32
191ip4_mask_to_preflen (ip4_address_t * mask)
192{
193 return (32 - log2_first_set (clib_net_to_host_u32 (mask->as_u32)));
194}
195
196void
197ip4_prefix_max_address_host_order (ip4_address_t * ip, u8 plen,
198 ip4_address_t * res)
199{
200 u32 not_mask;
201 not_mask = (1 << (32 - plen)) - 1;
202 res->as_u32 = clib_net_to_host_u32 (ip->as_u32) + not_mask;
203}
204
205void
206ip6_preflen_to_mask (u8 pref_len, ip6_address_t * mask)
207{
208 if (pref_len == 0)
209 {
210 mask->as_u64[0] = 0;
211 mask->as_u64[1] = 0;
212 }
213 else if (pref_len <= 64)
214 {
215 mask->as_u64[0] =
216 clib_host_to_net_u64 (0xffffffffffffffffL << (64 - pref_len));
217 mask->as_u64[1] = 0;
218 }
219 else
220 {
221 mask->as_u64[1] =
222 clib_host_to_net_u64 (0xffffffffffffffffL << (128 - pref_len));
223 }
224}
225
226void
227ip6_prefix_max_address_host_order (ip6_address_t * ip, u8 plen,
228 ip6_address_t * res)
229{
230 u64 not_mask;
Florin Corasa2e244c2017-10-29 10:56:15 -0700231 if (plen == 0)
Florin Coras1c710452017-10-17 00:03:13 -0700232 {
Florin Corasa2e244c2017-10-29 10:56:15 -0700233 res->as_u64[0] = 0xffffffffffffffffL;
234 res->as_u64[1] = 0xffffffffffffffffL;
235 }
236 else if (plen <= 64)
237 {
238 not_mask = ((u64) 1 << (64 - plen)) - 1;
Florin Coras1c710452017-10-17 00:03:13 -0700239 res->as_u64[0] = clib_net_to_host_u64 (ip->as_u64[0]) + not_mask;
240 res->as_u64[1] = 0xffffffffffffffffL;
241 }
242 else
243 {
Florin Corasa2e244c2017-10-29 10:56:15 -0700244 not_mask = ((u64) 1 << (128 - plen)) - 1;
Florin Coras1c710452017-10-17 00:03:13 -0700245 res->as_u64[1] = clib_net_to_host_u64 (ip->as_u64[1]) + not_mask;
246 }
247}
248
249u32
250ip6_mask_to_preflen (ip6_address_t * mask)
251{
252 u8 first1, first0;
253 if (mask->as_u64[0] == 0 && mask->as_u64[1] == 0)
254 return 128;
255 first1 = log2_first_set (mask->as_u64[1]);
256 first0 = log2_first_set (mask->as_u64[0]);
257
258 if (first1 != 0)
259 return 128 - first1;
260 else
261 return 64 - first0;
262}
263
Florin Corascea194d2017-10-02 00:18:51 -0700264/*
265 * fd.io coding-style-patch-verification: ON
266 *
267 * Local Variables:
268 * eval: (c-set-style "gnu")
269 * End:
270 */