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
|
/*
* Copyright (c) 2020 Cisco and/or its affiliates.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @brief FIB Source Address selection
*
* Use the FIB for source address selection on an interface
*/
#include <vnet/fib/fib_sas.h>
#include <vnet/adj/adj_glean.h>
#include <vnet/ip/ip6_link.h>
bool
fib_sas_get (u32 sw_if_index,
ip_address_family_t af,
const ip46_address_t *dst,
ip46_address_t *src)
{
switch (af)
{
case AF_IP4:
if (dst)
return (fib_sas4_get(sw_if_index, &dst->ip4, &src->ip4));
else
return (fib_sas4_get(sw_if_index, NULL, &src->ip4));
case AF_IP6:
if (dst)
return (fib_sas6_get(sw_if_index, &dst->ip6, &src->ip6));
else
return (fib_sas6_get(sw_if_index, NULL, &src->ip6));
}
return (false);
}
bool
fib_sas4_get (u32 sw_if_index,
const ip4_address_t *dst,
ip4_address_t *src)
{
ip46_address_t d_tmp, *d_tmpp = NULL;
const ip46_address_t *s_tmp;
vnet_sw_interface_t *swif;
if (dst)
{
d_tmpp = &d_tmp;
d_tmp.ip4 = *dst;
}
/*
* If the interface is unnumbered then use the IP interface
*/
swif = vnet_get_sw_interface (vnet_get_main(), sw_if_index);
if (swif->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED)
sw_if_index = swif->unnumbered_sw_if_index;
/*
* get the source address from the glean adjacency
*/
s_tmp = adj_glean_get_src (FIB_PROTOCOL_IP4, sw_if_index, d_tmpp);
if (NULL != s_tmp)
{
src->as_u32 = s_tmp->ip4.as_u32;
return (true);
}
return (false);
}
bool
fib_sas6_get (u32 sw_if_index,
const ip6_address_t *dst,
ip6_address_t *src)
{
ip46_address_t d_tmp, *d_tmpp = NULL;
const ip46_address_t *s_tmp;
if (dst)
{
d_tmpp = &d_tmp;
d_tmp.ip6 = *dst;
}
/*
* if the dst is v6 and link local, use the source link local
*/
if (ip6_address_is_link_local_unicast (dst))
{
ip6_address_copy (src, ip6_get_link_local_address (sw_if_index));
return (true);
}
/*
* get the source address from the glean adjacency
*/
s_tmp = adj_glean_get_src (FIB_PROTOCOL_IP6, sw_if_index, d_tmpp);
if (NULL != s_tmp)
{
ip6_address_copy(src, &s_tmp->ip6);
return (true);
}
return (false);
}
|