“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 1 | /* |
| 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” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 18 | #include <vnet/ip/ip.h> |
| 19 | #include <vnet/ipsec/ipsec.h> |
Arthur de Kerhor | ad95b06 | 2022-11-16 19:12:05 +0100 | [diff] [blame] | 20 | #include <vnet/ipsec/ipsec.api_enum.h> |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 21 | |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 22 | typedef 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 | |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 33 | typedef CLIB_PACKED (struct { |
| 34 | ip4_header_t ip4; |
| 35 | ah_header_t ah; |
| 36 | }) ip4_and_ah_header_t; |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 37 | |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 38 | typedef CLIB_PACKED (struct { |
| 39 | ip6_header_t ip6; |
| 40 | ah_header_t ah; |
| 41 | }) ip6_and_ah_header_t; |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 42 | |
Arthur de Kerhor | ad95b06 | 2022-11-16 19:12:05 +0100 | [diff] [blame] | 43 | always_inline u32 |
| 44 | ah_encrypt_err_to_sa_err (u32 err) |
| 45 | { |
| 46 | switch (err) |
| 47 | { |
| 48 | case AH_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR: |
| 49 | return IPSEC_SA_ERROR_CRYPTO_ENGINE_ERROR; |
| 50 | case AH_ENCRYPT_ERROR_SEQ_CYCLED: |
| 51 | return IPSEC_SA_ERROR_SEQ_CYCLED; |
| 52 | } |
| 53 | return ~0; |
| 54 | } |
| 55 | |
| 56 | always_inline u32 |
| 57 | ah_decrypt_err_to_sa_err (u32 err) |
| 58 | { |
| 59 | switch (err) |
| 60 | { |
| 61 | case AH_DECRYPT_ERROR_DECRYPTION_FAILED: |
| 62 | return IPSEC_SA_ERROR_DECRYPTION_FAILED; |
| 63 | case AH_DECRYPT_ERROR_INTEG_ERROR: |
| 64 | return IPSEC_SA_ERROR_INTEG_ERROR; |
| 65 | case AH_DECRYPT_ERROR_NO_TAIL_SPACE: |
| 66 | return IPSEC_SA_ERROR_NO_TAIL_SPACE; |
| 67 | case AH_DECRYPT_ERROR_DROP_FRAGMENTS: |
| 68 | return IPSEC_SA_ERROR_DROP_FRAGMENTS; |
| 69 | case AH_DECRYPT_ERROR_REPLAY: |
| 70 | return IPSEC_SA_ERROR_REPLAY; |
| 71 | } |
| 72 | return ~0; |
| 73 | } |
| 74 | |
| 75 | always_inline void |
| 76 | ah_encrypt_set_next_index (vlib_buffer_t *b, vlib_node_runtime_t *node, |
| 77 | u32 thread_index, u32 err, u16 index, u16 *nexts, |
| 78 | u16 drop_next, u32 sa_index) |
| 79 | { |
| 80 | ipsec_set_next_index (b, node, thread_index, err, |
| 81 | ah_encrypt_err_to_sa_err (err), index, nexts, |
| 82 | drop_next, sa_index); |
| 83 | } |
| 84 | |
| 85 | always_inline void |
| 86 | ah_decrypt_set_next_index (vlib_buffer_t *b, vlib_node_runtime_t *node, |
| 87 | u32 thread_index, u32 err, u16 index, u16 *nexts, |
| 88 | u16 drop_next, u32 sa_index) |
| 89 | { |
| 90 | ipsec_set_next_index (b, node, thread_index, err, |
| 91 | ah_decrypt_err_to_sa_err (err), index, nexts, |
| 92 | drop_next, sa_index); |
| 93 | } |
| 94 | |
Klement Sekera | 611864f | 2018-09-26 11:19:00 +0200 | [diff] [blame] | 95 | always_inline u8 |
| 96 | ah_calc_icv_padding_len (u8 icv_size, int is_ipv6) |
| 97 | { |
| 98 | ASSERT (0 == is_ipv6 || 1 == is_ipv6); |
| 99 | const u8 req_multiple = 4 + 4 * is_ipv6; // 4 for ipv4, 8 for ipv6 |
| 100 | const u8 total_size = sizeof (ah_header_t) + icv_size; |
| 101 | return (req_multiple - total_size % req_multiple) % req_multiple; |
| 102 | } |
| 103 | |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 104 | #endif /* __AH_H__ */ |
| 105 | |
| 106 | /* |
| 107 | * fd.io coding-style-patch-verification: ON |
| 108 | * |
| 109 | * Local Variables: |
| 110 | * eval: (c-set-style "gnu") |
| 111 | * End: |
| 112 | */ |