ipsec: Tunnel SA DSCP behaviour
[vpp.git] / src / vnet / ip / ip.c
1 /*
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
19 u8
20 ip_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
28 u8
29 ip_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 &&
35             clib_net_to_host_u64 (ip46_address->as_u64[1]) == 1);
36 }
37
38 u8
39 ip4_is_local_host (ip4_address_t * ip4_address)
40 {
41   return (ip4_address->as_u8[0] == 127);
42 }
43
44 u8
45 ip6_is_local_host (ip6_address_t * ip6_address)
46 {
47   return (ip6_address->as_u64[0] == 0 &&
48           clib_net_to_host_u64 (ip6_address->as_u64[1]) == 1);
49 }
50
51 /**
52  * Checks that an ip is local to the requested fib
53  */
54 u8
55 ip_is_local (u32 fib_index, ip46_address_t * ip46_address, u8 is_ip4)
56 {
57   fib_node_index_t fei;
58   fib_entry_flag_t flags;
59   fib_prefix_t prefix;
60
61   /* Check if requester is local */
62   if (is_ip4)
63     {
64       prefix.fp_len = 32;
65       prefix.fp_proto = FIB_PROTOCOL_IP4;
66     }
67   else
68     {
69       prefix.fp_len = 128;
70       prefix.fp_proto = FIB_PROTOCOL_IP6;
71     }
72
73   clib_memcpy_fast (&prefix.fp_addr, ip46_address, sizeof (ip46_address_t));
74   fei = fib_table_lookup (fib_index, &prefix);
75   flags = fib_entry_get_flags (fei);
76
77   return (flags & FIB_ENTRY_FLAG_LOCAL);
78 }
79
80 void
81 ip_copy (ip46_address_t * dst, ip46_address_t * src, u8 is_ip4)
82 {
83   if (is_ip4)
84     {
85       ip46_address_mask_ip4 (dst);
86       dst->ip4.as_u32 = src->ip4.as_u32;
87     }
88   else
89     clib_memcpy_fast (&dst->ip6, &src->ip6, sizeof (ip6_address_t));
90 }
91
92 void
93 ip_set (ip46_address_t * dst, void *src, u8 is_ip4)
94 {
95   if (is_ip4)
96     {
97       ip46_address_mask_ip4 (dst);
98       dst->ip4.as_u32 = ((ip4_address_t *) src)->as_u32;
99     }
100   else
101     clib_memcpy_fast (&dst->ip6, (ip6_address_t *) src,
102                       sizeof (ip6_address_t));
103 }
104
105 u8 *
106 format_ip_address_family (u8 * s, va_list * args)
107 {
108   ip_address_family_t af = va_arg (*args, int); // int promo ip_address_family_t);
109
110   switch (af)
111     {
112     case AF_IP4:
113       return (format (s, "ip4"));
114     case AF_IP6:
115       return (format (s, "ip6"));
116     }
117
118   return (format (s, "unknown"));
119 }
120
121 uword
122 unformat_ip_address_family (unformat_input_t * input, va_list * args)
123 {
124   ip_address_family_t *af = va_arg (*args, ip_address_family_t *);
125
126   if (unformat (input, "ip4") || unformat (input, "ipv4") ||
127       unformat (input, "IP4") || unformat (input, "IPv4"))
128     {
129       *af = AF_IP4;
130       return (1);
131     }
132   else if (unformat (input, "ip6") || unformat (input, "ipv6") ||
133            unformat (input, "IP6") || unformat (input, "IPv6"))
134     {
135       *af = AF_IP6;
136       return (1);
137     }
138   return (0);
139 }
140
141 u8 *
142 format_ip_dscp (u8 * s, va_list * va)
143 {
144   ip_dscp_t dscp = va_arg (*va, u32);   // int promotion of u8
145
146   switch (dscp)
147     {
148 #define _(n,v)                                                  \
149     case IP_DSCP_##v:                                           \
150       return (format (s, "%s", #v));
151       foreach_ip_dscp
152 #undef _
153     }
154
155   return (format (s, "unknown"));
156 }
157
158 uword
159 unformat_ip_dscp (unformat_input_t * input, va_list * args)
160 {
161   ip_dscp_t *dscp = va_arg (*args, ip_dscp_t *);
162
163   if (0)
164     ;
165 #define _(n,v)                                                  \
166   else if (unformat (input, #v))                                \
167     *dscp = IP_DSCP_##v;
168   foreach_ip_dscp
169 #undef _
170     else
171     return 0;
172
173   return 1;
174 }
175
176 u8 *
177 format_ip_ecn (u8 * s, va_list * va)
178 {
179   ip_ecn_t ecn = va_arg (*va, u32);     // int promotion of u8
180
181   switch (ecn)
182     {
183 #define _(n,v)                                                  \
184     case IP_ECN_##v:                                           \
185       return (format (s, "%s", #v));
186       foreach_ip_ecn
187 #undef _
188     }
189
190   return (format (s, "unknown"));
191 }
192
193 /*
194  * fd.io coding-style-patch-verification: ON
195  *
196  * Local Variables:
197  * eval: (c-set-style "gnu")
198  * End:
199  */