blob: ae4cd0b590851d1a3bbced8f13bf6020251141de [file] [log] [blame]
“mukeshyadav1984”430ac932017-11-23 02:39:33 -08001/*
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 */
15#ifndef __AH_H__
16#define __AH_H__
17
“mukeshyadav1984”430ac932017-11-23 02:39:33 -080018#include <vnet/ip/ip.h>
19#include <vnet/ipsec/ipsec.h>
Arthur de Kerhorad95b062022-11-16 19:12:05 +010020#include <vnet/ipsec/ipsec.api_enum.h>
“mukeshyadav1984”430ac932017-11-23 02:39:33 -080021
“mukeshyadav1984”430ac932017-11-23 02:39:33 -080022typedef struct
23{
24 unsigned char nexthdr;
25 unsigned char hdrlen;
26 unsigned short reserved;
27 unsigned int spi;
28 unsigned int seq_no;
29 unsigned char auth_data[0];
30} ah_header_t;
31
32
33/* *INDENT-OFF* */
34typedef CLIB_PACKED (struct {
35 ip4_header_t ip4;
36 ah_header_t ah;
37}) ip4_and_ah_header_t;
38/* *INDENT-ON* */
39
40/* *INDENT-OFF* */
41typedef CLIB_PACKED (struct {
42 ip6_header_t ip6;
43 ah_header_t ah;
44}) ip6_and_ah_header_t;
45/* *INDENT-ON* */
46
Arthur de Kerhorad95b062022-11-16 19:12:05 +010047always_inline u32
48ah_encrypt_err_to_sa_err (u32 err)
49{
50 switch (err)
51 {
52 case AH_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR:
53 return IPSEC_SA_ERROR_CRYPTO_ENGINE_ERROR;
54 case AH_ENCRYPT_ERROR_SEQ_CYCLED:
55 return IPSEC_SA_ERROR_SEQ_CYCLED;
56 }
57 return ~0;
58}
59
60always_inline u32
61ah_decrypt_err_to_sa_err (u32 err)
62{
63 switch (err)
64 {
65 case AH_DECRYPT_ERROR_DECRYPTION_FAILED:
66 return IPSEC_SA_ERROR_DECRYPTION_FAILED;
67 case AH_DECRYPT_ERROR_INTEG_ERROR:
68 return IPSEC_SA_ERROR_INTEG_ERROR;
69 case AH_DECRYPT_ERROR_NO_TAIL_SPACE:
70 return IPSEC_SA_ERROR_NO_TAIL_SPACE;
71 case AH_DECRYPT_ERROR_DROP_FRAGMENTS:
72 return IPSEC_SA_ERROR_DROP_FRAGMENTS;
73 case AH_DECRYPT_ERROR_REPLAY:
74 return IPSEC_SA_ERROR_REPLAY;
75 }
76 return ~0;
77}
78
79always_inline void
80ah_encrypt_set_next_index (vlib_buffer_t *b, vlib_node_runtime_t *node,
81 u32 thread_index, u32 err, u16 index, u16 *nexts,
82 u16 drop_next, u32 sa_index)
83{
84 ipsec_set_next_index (b, node, thread_index, err,
85 ah_encrypt_err_to_sa_err (err), index, nexts,
86 drop_next, sa_index);
87}
88
89always_inline void
90ah_decrypt_set_next_index (vlib_buffer_t *b, vlib_node_runtime_t *node,
91 u32 thread_index, u32 err, u16 index, u16 *nexts,
92 u16 drop_next, u32 sa_index)
93{
94 ipsec_set_next_index (b, node, thread_index, err,
95 ah_decrypt_err_to_sa_err (err), index, nexts,
96 drop_next, sa_index);
97}
98
Klement Sekera611864f2018-09-26 11:19:00 +020099always_inline u8
100ah_calc_icv_padding_len (u8 icv_size, int is_ipv6)
101{
102 ASSERT (0 == is_ipv6 || 1 == is_ipv6);
103 const u8 req_multiple = 4 + 4 * is_ipv6; // 4 for ipv4, 8 for ipv6
104 const u8 total_size = sizeof (ah_header_t) + icv_size;
105 return (req_multiple - total_size % req_multiple) % req_multiple;
106}
107
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800108#endif /* __AH_H__ */
109
110/*
111 * fd.io coding-style-patch-verification: ON
112 *
113 * Local Variables:
114 * eval: (c-set-style "gnu")
115 * End:
116 */