blob: 7d3632d95ed22a81a860570704ded67aeca8f4fe [file] [log] [blame]
Ole Troan8034a362021-08-11 13:54:14 +02001/*
2 * Copyright (c) 2021 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 "ip_sas.h"
17#include <vppinfra/types.h>
18#include <vnet/ip/ip_interface.h>
19#include <vnet/fib/fib_table.h>
20#include <vnet/ip/ip6_link.h>
21#include <vppinfra/byte_order.h>
22
23/*
24 * This file implement source address selection for VPP applications
25 * (e.g. ping, DNS, ICMP)
26 * It does not yet implement full fledged RFC6724 SAS.
27 * SAS assumes every IP enabled interface has an address. The algorithm will
28 * not go and hunt for a suitable IP address on other interfaces than the
29 * output interface or the specified preferred sw_if_index.
30 * That means that an interface with just an IPv6 link-local address must also
31 * be configured with an unnumbered configuration pointing to a numbered
32 * interface.
33 */
34
35static int
36ip6_sas_commonlen (const ip6_address_t *a1, const ip6_address_t *a2)
37{
38 u64 fa = clib_net_to_host_u64 (a1->as_u64[0]) ^
39 clib_net_to_host_u64 (a2->as_u64[0]);
40 if (fa == 0)
41 {
42 u64 la = clib_net_to_host_u64 (a1->as_u64[1]) ^
43 clib_net_to_host_u64 (a2->as_u64[1]);
44 if (la == 0)
45 return 128;
46 return 64 + __builtin_clzll (la);
47 }
48 else
49 {
50 return __builtin_clzll (fa);
51 }
52}
53
54static int
55ip4_sas_commonlen (const ip4_address_t *a1, const ip4_address_t *a2)
56{
57 u64 a =
58 clib_net_to_host_u32 (a1->as_u32) ^ clib_net_to_host_u32 (a2->as_u32);
59 if (a == 0)
60 return 32;
61 return __builtin_clz (a);
62}
63
64/*
65 * walk all addresses on an interface:
66 * - prefer a source matching the scope of the destination address.
67 * - last resort pick the source address with the longest
68 * common prefix with destination
69 * NOTE: This should at some point implement RFC6724.
70 */
71bool
72ip6_sas_by_sw_if_index (u32 sw_if_index, const ip6_address_t *dst,
73 ip6_address_t *src)
74{
75 ip_interface_address_t *ia = 0;
76 ip_lookup_main_t *lm6 = &ip6_main.lookup_main;
77 ip6_address_t *tmp, *bestsrc = 0;
78 int bestlen = 0, l;
79
80 if (ip6_address_is_link_local_unicast (dst) ||
81 dst->as_u32[0] == clib_host_to_net_u32 (0xff020000))
82 {
83 ip6_address_copy (src, ip6_get_link_local_address (sw_if_index));
84 return true;
85 }
86
87 foreach_ip_interface_address (
88 lm6, ia, sw_if_index, 1, ({
89 if (ia->flags & IP_INTERFACE_ADDRESS_FLAG_STALE)
90 continue;
91 tmp = ip_interface_address_get_address (lm6, ia);
92 l = ip6_sas_commonlen (tmp, dst);
93 if (l > bestlen || bestsrc == 0)
94 {
95 bestsrc = tmp;
96 bestlen = l;
97 }
98 }));
99 if (bestsrc)
100 {
101 ip6_address_copy (src, bestsrc);
102 return true;
103 }
104 return false;
105}
106
107/*
108 * walk all addresses on an interface and pick the source address with the
109 * longest common prefix with destination.
110 */
111bool
112ip4_sas_by_sw_if_index (u32 sw_if_index, const ip4_address_t *dst,
113 ip4_address_t *src)
114{
115 ip_interface_address_t *ia = 0;
116 ip_lookup_main_t *lm4 = &ip4_main.lookup_main;
117 ip4_address_t *tmp, *bestsrc = 0;
118 int bestlen = 0, l;
119
120 foreach_ip_interface_address (
121 lm4, ia, sw_if_index, 1, ({
122 if (ia->flags & IP_INTERFACE_ADDRESS_FLAG_STALE)
123 continue;
124 tmp = ip_interface_address_get_address (lm4, ia);
125 l = ip4_sas_commonlen (tmp, dst);
126 if (l > bestlen || bestsrc == 0)
127 {
128 bestsrc = tmp;
129 bestlen = l;
130 }
131 }));
132 if (bestsrc)
133 {
134 src->as_u32 = bestsrc->as_u32;
135 return true;
136 }
137 return false;
138}
139
140/*
141 * table_id must be set. Default = 0.
142 * sw_if_index is the interface to pick SA from otherwise ~0 will pick from
143 * outbound interface.
144 *
145 * NOTE: What to do if multiple output interfaces?
146 *
147 */
148bool
149ip6_sas (u32 table_id, u32 sw_if_index, const ip6_address_t *dst,
150 ip6_address_t *src)
151{
152 fib_prefix_t prefix;
153 u32 if_index = sw_if_index;
154
155 /* If sw_if_index is not specified use the output interface. */
156 if (sw_if_index == ~0)
157 {
158 clib_memcpy (&prefix.fp_addr.ip6, dst, sizeof (*dst));
159 prefix.fp_proto = FIB_PROTOCOL_IP6;
160 prefix.fp_len = 128;
161
162 u32 fib_index = fib_table_find (prefix.fp_proto, table_id);
163 if (fib_index == (u32) ~0)
164 return false;
165
166 fib_node_index_t fei = fib_table_lookup (fib_index, &prefix);
167 if (fei == FIB_NODE_INDEX_INVALID)
168 return false;
169
170 u32 output_sw_if_index = fib_entry_get_resolving_interface (fei);
171 if (output_sw_if_index == ~0)
172 return false;
173 if_index = output_sw_if_index;
174 }
175 return ip6_sas_by_sw_if_index (if_index, dst, src);
176}
177
178/*
179 * table_id must be set. Default = 0.
180 * sw_if_index is the interface to pick SA from otherwise ~0 will pick from
181 * outbound interface.
182 *
183 * NOTE: What to do if multiple output interfaces?
184 *
185 */
186bool
187ip4_sas (u32 table_id, u32 sw_if_index, const ip4_address_t *dst,
188 ip4_address_t *src)
189{
190 fib_prefix_t prefix;
191 u32 if_index = sw_if_index;
192
193 /* If sw_if_index is not specified use the output interface. */
194 if (sw_if_index == ~0)
195 {
196 clib_memcpy (&prefix.fp_addr.ip4, dst, sizeof (*dst));
197 prefix.fp_proto = FIB_PROTOCOL_IP4;
198 prefix.fp_len = 32;
199
200 u32 fib_index = fib_table_find (prefix.fp_proto, table_id);
201 if (fib_index == (u32) ~0)
202 return false;
203
204 fib_node_index_t fei = fib_table_lookup (fib_index, &prefix);
205 if (fei == FIB_NODE_INDEX_INVALID)
206 return false;
207
208 u32 output_sw_if_index = fib_entry_get_resolving_interface (fei);
209 if (output_sw_if_index == ~0)
210 return false;
211 if_index = output_sw_if_index;
212 }
213 return ip4_sas_by_sw_if_index (if_index, dst, src);
214}