blob: 04a2a0b5be1b5a4138209b83a48bc968ae0b69d6 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * decap.c : IPSec tunnel support
3 *
4 * Copyright (c) 2015 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <vnet/vnet.h>
19#include <vnet/api_errno.h>
20#include <vnet/ip/ip.h>
21#include <vnet/interface.h>
Neale Ranns8d7c5022019-02-06 01:41:05 -080022#include <vnet/fib/fib_table.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070023
24#include <vnet/ipsec/ipsec.h>
25
26u8 *
27format_ipsec_policy_action (u8 * s, va_list * args)
28{
29 u32 i = va_arg (*args, u32);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070030 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070031
32 switch (i)
33 {
34#define _(v,f,str) case IPSEC_POLICY_ACTION_##f: t = str; break;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070035 foreach_ipsec_policy_action
Ed Warnickecb9cada2015-12-08 15:45:58 -070036#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070037 default:
38 s = format (s, "unknown");
Ed Warnickecb9cada2015-12-08 15:45:58 -070039 }
40 s = format (s, "%s", t);
41 return s;
42}
43
44uword
45unformat_ipsec_policy_action (unformat_input_t * input, va_list * args)
46{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070047 u32 *r = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070048
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070049 if (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070050#define _(v,f,s) else if (unformat (input, s)) *r = IPSEC_POLICY_ACTION_##f;
51 foreach_ipsec_policy_action
52#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070053 else
Ed Warnickecb9cada2015-12-08 15:45:58 -070054 return 0;
55 return 1;
56}
57
58u8 *
59format_ipsec_crypto_alg (u8 * s, va_list * args)
60{
61 u32 i = va_arg (*args, u32);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070062 u8 *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070063
64 switch (i)
65 {
66#define _(v,f,str) case IPSEC_CRYPTO_ALG_##f: t = (u8 *) str; break;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070067 foreach_ipsec_crypto_alg
Ed Warnickecb9cada2015-12-08 15:45:58 -070068#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070069 default:
70 s = format (s, "unknown");
Ed Warnickecb9cada2015-12-08 15:45:58 -070071 }
72 s = format (s, "%s", t);
73 return s;
74}
75
76uword
77unformat_ipsec_crypto_alg (unformat_input_t * input, va_list * args)
78{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070079 u32 *r = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070080
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070081 if (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070082#define _(v,f,s) else if (unformat (input, s)) *r = IPSEC_CRYPTO_ALG_##f;
83 foreach_ipsec_crypto_alg
84#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070085 else
Ed Warnickecb9cada2015-12-08 15:45:58 -070086 return 0;
87 return 1;
88}
89
90u8 *
91format_ipsec_integ_alg (u8 * s, va_list * args)
92{
93 u32 i = va_arg (*args, u32);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070094 u8 *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070095
96 switch (i)
97 {
98#define _(v,f,str) case IPSEC_INTEG_ALG_##f: t = (u8 *) str; break;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070099 foreach_ipsec_integ_alg
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700101 default:
102 s = format (s, "unknown");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103 }
104 s = format (s, "%s", t);
105 return s;
106}
107
108uword
109unformat_ipsec_integ_alg (unformat_input_t * input, va_list * args)
110{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700111 u32 *r = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700113 if (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114#define _(v,f,s) else if (unformat (input, s)) *r = IPSEC_INTEG_ALG_##f;
115 foreach_ipsec_integ_alg
116#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700117 else
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118 return 0;
119 return 1;
120}
121
122u8 *
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700123format_ipsec_replay_window (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124{
125 u64 w = va_arg (*args, u64);
126 u8 i;
127
128 for (i = 0; i < 64; i++)
129 {
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700130 s = format (s, "%u", w & (1ULL << i) ? 1 : 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131 }
132
133 return s;
134}
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700135
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800136u8 *
137format_ipsec_policy (u8 * s, va_list * args)
138{
139 u32 pi = va_arg (*args, u32);
140 ipsec_main_t *im = &ipsec_main;
141 ipsec_policy_t *p;
142 vlib_counter_t counts;
143
144 p = pool_elt_at_index (im->policies, pi);
145
146 s = format (s, " [%d] priority %d action %U protocol ",
147 pi, p->priority, format_ipsec_policy_action, p->policy);
148 if (p->protocol)
149 {
150 s = format (s, "%U", format_ip_protocol, p->protocol);
151 }
152 else
153 {
154 s = format (s, "any");
155 }
156 if (p->policy == IPSEC_POLICY_ACTION_PROTECT)
157 {
158 s = format (s, " sa %u", p->sa_id);
159 }
160 if (p->is_ipv6)
161 {
162 s = format (s, "\n local addr range %U - %U port range %u - %u",
163 format_ip6_address, &p->laddr.start.ip6,
164 format_ip6_address, &p->laddr.stop.ip6,
165 p->lport.start, p->lport.stop);
166 s = format (s, "\n remote addr range %U - %U port range %u - %u",
167 format_ip6_address, &p->raddr.start.ip6,
168 format_ip6_address, &p->raddr.stop.ip6,
169 p->rport.start, p->rport.stop);
170 }
171 else
172 {
173 s = format (s, "\n local addr range %U - %U port range %u - %u",
174 format_ip4_address, &p->laddr.start.ip4,
175 format_ip4_address, &p->laddr.stop.ip4,
176 p->lport.start, p->lport.stop);
177 s = format (s, "\n remote addr range %U - %U port range %u - %u",
178 format_ip4_address, &p->raddr.start.ip4,
179 format_ip4_address, &p->raddr.stop.ip4,
180 p->rport.start, p->rport.stop);
181 }
182 vlib_get_combined_counter (&ipsec_spd_policy_counters, pi, &counts);
183 s = format (s, "\n packets %u bytes %u", counts.packets, counts.bytes);
184
185 return (s);
186}
187
188u8 *
189format_ipsec_spd (u8 * s, va_list * args)
190{
191 u32 si = va_arg (*args, u32);
192 ipsec_main_t *im = &ipsec_main;
193 ipsec_spd_t *spd;
194 u32 *i;
195
196 spd = pool_elt_at_index (im->spds, si);
197
198 s = format (s, "spd %u", spd->id);
199
200#define _(v, n) \
201 s = format (s, "\n %s:", n); \
202 vec_foreach(i, spd->policies[IPSEC_SPD_POLICY_##v]) \
203 { \
204 s = format (s, "\n %U", format_ipsec_policy, *i); \
205 }
206 foreach_ipsec_spd_policy_type;
207#undef _
208
209 return (s);
210}
211
Neale Ranns8d7c5022019-02-06 01:41:05 -0800212u8 *
213format_ipsec_key (u8 * s, va_list * args)
214{
215 ipsec_key_t *key = va_arg (*args, ipsec_key_t *);
216
217 return (format (s, "%U", format_hex_bytes, key->data, key->len));
218}
219
220uword
221unformat_ipsec_key (unformat_input_t * input, va_list * args)
222{
223 ipsec_key_t *key = va_arg (*args, ipsec_key_t *);
224 u8 *data;
225
226 if (unformat (input, "%U", unformat_hex_string, &data))
227 {
228 ipsec_mk_key (key, data, vec_len (data));
229 vec_free (data);
230 }
231 else
232 return 0;
233 return 1;
234}
235
236u8 *
237format_ipsec_sa (u8 * s, va_list * args)
238{
239 u32 sai = va_arg (*args, u32);
240 ipsec_main_t *im = &ipsec_main;
241 u32 tx_table_id;
242 ipsec_sa_t *sa;
243
244 sa = pool_elt_at_index (im->sad, sai);
245
246 s = format (s, "[%d] sa %u spi %u mode %s%s protocol %s%s%s%s",
247 sai, sa->id, sa->spi,
248 sa->is_tunnel ? "tunnel" : "transport",
249 sa->is_tunnel_ip6 ? "-ip6" : "",
250 sa->protocol ? "esp" : "ah",
251 sa->udp_encap ? " udp-encap-enabled" : "",
252 sa->use_anti_replay ? " anti-replay" : "",
253 sa->use_esn ? " extended-sequence-number" : "");
254 s = format (s, "\n last-seq %u last-seq-hi %u window %U",
255 sa->last_seq, sa->last_seq_hi,
256 format_ipsec_replay_window, sa->replay_window);
257 s = format (s, "\n crypto alg %U%s%U",
258 format_ipsec_crypto_alg, sa->crypto_alg,
259 sa->crypto_alg ? " key " : "",
260 format_ipsec_key, &sa->crypto_key);
261 s = format (s, "\n integrity alg %U%s%U",
262 format_ipsec_integ_alg, sa->integ_alg,
263 sa->integ_alg ? " key " : "", format_ipsec_key, &sa->integ_key);
264
265 if (sa->is_tunnel)
266 {
267 tx_table_id = fib_table_get_table_id (sa->tx_fib_index,
268 FIB_PROTOCOL_IP4);
269 s = format (s, "\n table-ID %d tunnel src %U dst %U",
270 tx_table_id,
271 format_ip46_address, &sa->tunnel_src_addr, IP46_TYPE_ANY,
272 format_ip46_address, &sa->tunnel_dst_addr, IP46_TYPE_ANY);
273 s = format (s, "\n resovle via fib-entry: %d", sa->fib_entry_index);
274 s = format (s, "\n stacked on:");
275 s =
276 format (s, "\n %U", format_dpo_id, &sa->dpo[IPSEC_PROTOCOL_ESP],
277 6);
278 }
279
280 return (s);
281}
282
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700283/*
284 * fd.io coding-style-patch-verification: ON
285 *
286 * Local Variables:
287 * eval: (c-set-style "gnu")
288 * End:
289 */