blob: 063b74b7c5cdb73bd139e6c8c6b596e362d48c9e [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 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 */
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000015#ifndef __ESP_H__
16#define __ESP_H__
Ed Warnickecb9cada2015-12-08 15:45:58 -070017
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +010018#include <vnet/ip/ip.h>
Damjan Marion91f17dc2019-03-18 18:59:25 +010019#include <vnet/crypto/crypto.h>
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +010020#include <vnet/ipsec/ipsec.h>
21
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070022typedef struct
23{
Ed Warnickecb9cada2015-12-08 15:45:58 -070024 u32 spi;
25 u32 seq;
26 u8 data[0];
27} esp_header_t;
28
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070029typedef struct
30{
Ed Warnickecb9cada2015-12-08 15:45:58 -070031 u8 pad_length;
32 u8 next_header;
33} esp_footer_t;
34
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070035/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070036typedef CLIB_PACKED (struct {
37 ip4_header_t ip4;
38 esp_header_t esp;
39}) ip4_and_esp_header_t;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070040/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070041
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070042/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070043typedef CLIB_PACKED (struct {
Klement Sekera4b089f22018-04-17 18:04:57 +020044 ip4_header_t ip4;
45 udp_header_t udp;
46 esp_header_t esp;
47}) ip4_and_udp_and_esp_header_t;
48/* *INDENT-ON* */
49
50/* *INDENT-OFF* */
51typedef CLIB_PACKED (struct {
Ed Warnickecb9cada2015-12-08 15:45:58 -070052 ip6_header_t ip6;
53 esp_header_t esp;
54}) ip6_and_esp_header_t;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070055/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000057#define ESP_WINDOW_SIZE (64)
Damjan Marionc59b9a22019-03-19 15:38:40 +010058#define ESP_SEQ_MAX (4294967295UL)
59#define ESP_MAX_BLOCK_SIZE (16)
60#define ESP_MAX_ICV_SIZE (16)
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000061
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +010062u8 *format_esp_header (u8 * s, va_list * args);
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000063
64always_inline int
65esp_replay_check (ipsec_sa_t * sa, u32 seq)
66{
67 u32 diff;
68
69 if (PREDICT_TRUE (seq > sa->last_seq))
70 return 0;
71
72 diff = sa->last_seq - seq;
73
74 if (ESP_WINDOW_SIZE > diff)
75 return (sa->replay_window & (1ULL << diff)) ? 1 : 0;
76 else
77 return 1;
78
79 return 0;
80}
81
82always_inline int
83esp_replay_check_esn (ipsec_sa_t * sa, u32 seq)
84{
85 u32 tl = sa->last_seq;
86 u32 th = sa->last_seq_hi;
87 u32 diff = tl - seq;
88
89 if (PREDICT_TRUE (tl >= (ESP_WINDOW_SIZE - 1)))
90 {
91 if (seq >= (tl - ESP_WINDOW_SIZE + 1))
92 {
93 sa->seq_hi = th;
94 if (seq <= tl)
95 return (sa->replay_window & (1ULL << diff)) ? 1 : 0;
96 else
97 return 0;
98 }
99 else
100 {
101 sa->seq_hi = th + 1;
102 return 0;
103 }
104 }
105 else
106 {
107 if (seq >= (tl - ESP_WINDOW_SIZE + 1))
108 {
109 sa->seq_hi = th - 1;
110 return (sa->replay_window & (1ULL << diff)) ? 1 : 0;
111 }
112 else
113 {
114 sa->seq_hi = th;
115 if (seq <= tl)
116 return (sa->replay_window & (1ULL << diff)) ? 1 : 0;
117 else
118 return 0;
119 }
120 }
121
122 return 0;
123}
124
125/* TODO seq increment should be atomic to be accessed by multiple workers */
126always_inline void
127esp_replay_advance (ipsec_sa_t * sa, u32 seq)
128{
129 u32 pos;
130
131 if (seq > sa->last_seq)
132 {
133 pos = seq - sa->last_seq;
134 if (pos < ESP_WINDOW_SIZE)
135 sa->replay_window = ((sa->replay_window) << pos) | 1;
136 else
137 sa->replay_window = 1;
138 sa->last_seq = seq;
139 }
140 else
141 {
142 pos = sa->last_seq - seq;
143 sa->replay_window |= (1ULL << pos);
144 }
145}
146
147always_inline void
148esp_replay_advance_esn (ipsec_sa_t * sa, u32 seq)
149{
150 int wrap = sa->seq_hi - sa->last_seq_hi;
151 u32 pos;
152
153 if (wrap == 0 && seq > sa->last_seq)
154 {
155 pos = seq - sa->last_seq;
156 if (pos < ESP_WINDOW_SIZE)
157 sa->replay_window = ((sa->replay_window) << pos) | 1;
158 else
159 sa->replay_window = 1;
160 sa->last_seq = seq;
161 }
162 else if (wrap > 0)
163 {
164 pos = ~seq + sa->last_seq + 1;
165 if (pos < ESP_WINDOW_SIZE)
166 sa->replay_window = ((sa->replay_window) << pos) | 1;
167 else
168 sa->replay_window = 1;
169 sa->last_seq = seq;
170 sa->last_seq_hi = sa->seq_hi;
171 }
172 else if (wrap < 0)
173 {
174 pos = ~seq + sa->last_seq + 1;
175 sa->replay_window |= (1ULL << pos);
176 }
177 else
178 {
179 pos = sa->last_seq - seq;
180 sa->replay_window |= (1ULL << pos);
181 }
182}
183
184always_inline int
185esp_seq_advance (ipsec_sa_t * sa)
186{
187 if (PREDICT_TRUE (sa->use_esn))
188 {
189 if (PREDICT_FALSE (sa->seq == ESP_SEQ_MAX))
190 {
191 if (PREDICT_FALSE
192 (sa->use_anti_replay && sa->seq_hi == ESP_SEQ_MAX))
193 return 1;
194 sa->seq_hi++;
195 }
196 sa->seq++;
197 }
198 else
199 {
200 if (PREDICT_FALSE (sa->use_anti_replay && sa->seq == ESP_SEQ_MAX))
201 return 1;
202 sa->seq++;
203 }
204
205 return 0;
206}
207
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208
209always_inline unsigned int
Damjan Marionb966e8b2019-03-20 16:07:09 +0100210hmac_calc (vlib_main_t * vm, ipsec_sa_t * sa, u8 * data, int data_len,
211 u8 * signature)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212{
Damjan Marion91f17dc2019-03-18 18:59:25 +0100213 vnet_crypto_op_t _op, *op = &_op;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700214
Damjan Marionb966e8b2019-03-20 16:07:09 +0100215 if (PREDICT_FALSE (sa->integ_op_type == 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216 return 0;
217
Damjan Marionb966e8b2019-03-20 16:07:09 +0100218 op->op = sa->integ_op_type;
219 op->key = sa->integ_key.data;
220 op->key_len = sa->integ_key.len;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100221 op->src = data;
222 op->len = data_len;
223 op->dst = signature;
Damjan Marion88631232019-03-20 16:30:54 +0100224 op->hmac_trunc_len = sa->integ_trunc_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225
Damjan Marionaf73eda2019-03-20 16:30:54 +0100226 if (sa->use_esn)
227 {
Neale Ranns3833ffd2019-03-21 14:34:09 +0000228 u32 seq_hi = clib_host_to_net_u32 (sa->seq_hi);
229
Damjan Marionaf73eda2019-03-20 16:30:54 +0100230 op->len += 4;
Neale Ranns3833ffd2019-03-21 14:34:09 +0000231 clib_memcpy (data + data_len, &seq_hi, 4);
Damjan Marionaf73eda2019-03-20 16:30:54 +0100232 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233
Damjan Marion91f17dc2019-03-18 18:59:25 +0100234 vnet_crypto_process_ops (vm, op, 1);
Damjan Marionb966e8b2019-03-20 16:07:09 +0100235 return sa->integ_trunc_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236}
237
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000238#endif /* __ESP_H__ */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700239
240/*
241 * fd.io coding-style-patch-verification: ON
242 *
243 * Local Variables:
244 * eval: (c-set-style "gnu")
245 * End:
246 */