Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 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 | * ip/ip6_input.c: IP v6 input node |
| 17 | * |
| 18 | * Copyright (c) 2008 Eliot Dresselhaus |
| 19 | * |
| 20 | * Permission is hereby granted, free of charge, to any person obtaining |
| 21 | * a copy of this software and associated documentation files (the |
| 22 | * "Software"), to deal in the Software without restriction, including |
| 23 | * without limitation the rights to use, copy, modify, merge, publish, |
| 24 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 25 | * permit persons to whom the Software is furnished to do so, subject to |
| 26 | * the following conditions: |
| 27 | * |
| 28 | * The above copyright notice and this permission notice shall be |
| 29 | * included in all copies or substantial portions of the Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 32 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 33 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 34 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 35 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 36 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 37 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 38 | */ |
| 39 | |
| 40 | #ifndef included_ip6_input_h |
| 41 | #define included_ip6_input_h |
| 42 | |
| 43 | #include <vnet/ip/ip.h> |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 44 | #include <vnet/ip/icmp6.h> |
Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 45 | |
Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 46 | typedef enum |
| 47 | { |
| 48 | IP6_INPUT_NEXT_DROP, |
| 49 | IP6_INPUT_NEXT_LOOKUP, |
| 50 | IP6_INPUT_NEXT_LOOKUP_MULTICAST, |
| 51 | IP6_INPUT_NEXT_ICMP_ERROR, |
| 52 | IP6_INPUT_N_NEXT, |
| 53 | } ip6_input_next_t; |
| 54 | |
| 55 | always_inline void |
Ole Troan | 01ea72b | 2024-07-31 11:16:35 +0200 | [diff] [blame] | 56 | ip6_input_check_x2 (vlib_main_t *vm, vlib_node_runtime_t *error_node, |
| 57 | vlib_buffer_t *p0, vlib_buffer_t *p1, ip6_header_t *ip0, |
| 58 | ip6_header_t *ip1, u32 *next0, u32 *next1) |
Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 59 | { |
| 60 | u8 error0, error1; |
| 61 | |
| 62 | error0 = error1 = IP6_ERROR_NONE; |
| 63 | |
| 64 | /* Version != 6? Drop it. */ |
| 65 | error0 = |
Ole Troan | 01ea72b | 2024-07-31 11:16:35 +0200 | [diff] [blame] | 66 | (clib_net_to_host_u32 (ip0->ip_version_traffic_class_and_flow_label) >> |
| 67 | 28) != 6 ? |
| 68 | IP6_ERROR_VERSION : |
| 69 | error0; |
Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 70 | error1 = |
Ole Troan | 01ea72b | 2024-07-31 11:16:35 +0200 | [diff] [blame] | 71 | (clib_net_to_host_u32 (ip1->ip_version_traffic_class_and_flow_label) >> |
| 72 | 28) != 6 ? |
| 73 | IP6_ERROR_VERSION : |
| 74 | error1; |
Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 75 | |
| 76 | /* hop limit < 1? Drop it. for link-local broadcast packets, |
| 77 | * like dhcpv6 packets from client has hop-limit 1, which should not |
| 78 | * be dropped. |
| 79 | */ |
| 80 | error0 = ip0->hop_limit < 1 ? IP6_ERROR_TIME_EXPIRED : error0; |
| 81 | error1 = ip1->hop_limit < 1 ? IP6_ERROR_TIME_EXPIRED : error1; |
| 82 | |
| 83 | /* L2 length must be at least minimal IP header. */ |
Ole Troan | 01ea72b | 2024-07-31 11:16:35 +0200 | [diff] [blame] | 84 | error0 = p0->current_length < sizeof (ip0[0]) ? IP6_ERROR_TOO_SHORT : error0; |
| 85 | error1 = p1->current_length < sizeof (ip1[0]) ? IP6_ERROR_TOO_SHORT : error1; |
Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 86 | |
| 87 | if (PREDICT_FALSE (error0 != IP6_ERROR_NONE)) |
| 88 | { |
Ole Troan | 01ea72b | 2024-07-31 11:16:35 +0200 | [diff] [blame] | 89 | p0->error = error_node->errors[error0]; |
| 90 | |
Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 91 | if (error0 == IP6_ERROR_TIME_EXPIRED) |
| 92 | { |
Ole Troan | 01ea72b | 2024-07-31 11:16:35 +0200 | [diff] [blame] | 93 | icmp6_error_set_vnet_buffer ( |
| 94 | p0, ICMP6_time_exceeded, |
| 95 | ICMP6_time_exceeded_ttl_exceeded_in_transit, 0); |
Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 96 | *next0 = IP6_INPUT_NEXT_ICMP_ERROR; |
| 97 | } |
| 98 | else |
| 99 | { |
| 100 | *next0 = IP6_INPUT_NEXT_DROP; |
| 101 | } |
| 102 | } |
| 103 | if (PREDICT_FALSE (error1 != IP6_ERROR_NONE)) |
| 104 | { |
BenoƮt Ganne | 51ca1ea | 2024-08-28 11:41:46 +0200 | [diff] [blame^] | 105 | p1->error = error_node->errors[error1]; |
Ole Troan | 01ea72b | 2024-07-31 11:16:35 +0200 | [diff] [blame] | 106 | |
Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 107 | if (error1 == IP6_ERROR_TIME_EXPIRED) |
| 108 | { |
Ole Troan | 01ea72b | 2024-07-31 11:16:35 +0200 | [diff] [blame] | 109 | icmp6_error_set_vnet_buffer ( |
| 110 | p1, ICMP6_time_exceeded, |
| 111 | ICMP6_time_exceeded_ttl_exceeded_in_transit, 0); |
Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 112 | *next1 = IP6_INPUT_NEXT_ICMP_ERROR; |
| 113 | } |
| 114 | else |
| 115 | { |
| 116 | *next1 = IP6_INPUT_NEXT_DROP; |
| 117 | } |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | always_inline void |
Ole Troan | 01ea72b | 2024-07-31 11:16:35 +0200 | [diff] [blame] | 122 | ip6_input_check_x1 (vlib_main_t *vm, vlib_node_runtime_t *error_node, |
| 123 | vlib_buffer_t *p0, ip6_header_t *ip0, u32 *next0) |
Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 124 | { |
| 125 | u8 error0; |
| 126 | |
| 127 | error0 = IP6_ERROR_NONE; |
| 128 | |
| 129 | /* Version != 6? Drop it. */ |
| 130 | error0 = |
Ole Troan | 01ea72b | 2024-07-31 11:16:35 +0200 | [diff] [blame] | 131 | (clib_net_to_host_u32 (ip0->ip_version_traffic_class_and_flow_label) >> |
| 132 | 28) != 6 ? |
| 133 | IP6_ERROR_VERSION : |
| 134 | error0; |
Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 135 | |
| 136 | /* hop limit < 1? Drop it. for link-local broadcast packets, |
| 137 | * like dhcpv6 packets from client has hop-limit 1, which should not |
| 138 | * be dropped. |
| 139 | */ |
| 140 | error0 = ip0->hop_limit < 1 ? IP6_ERROR_TIME_EXPIRED : error0; |
| 141 | |
| 142 | /* L2 length must be at least minimal IP header. */ |
Ole Troan | 01ea72b | 2024-07-31 11:16:35 +0200 | [diff] [blame] | 143 | error0 = p0->current_length < sizeof (ip0[0]) ? IP6_ERROR_TOO_SHORT : error0; |
Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 144 | |
| 145 | if (PREDICT_FALSE (error0 != IP6_ERROR_NONE)) |
| 146 | { |
Ole Troan | 01ea72b | 2024-07-31 11:16:35 +0200 | [diff] [blame] | 147 | p0->error = error_node->errors[error0]; |
Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 148 | if (error0 == IP6_ERROR_TIME_EXPIRED) |
| 149 | { |
Ole Troan | 01ea72b | 2024-07-31 11:16:35 +0200 | [diff] [blame] | 150 | icmp6_error_set_vnet_buffer ( |
| 151 | p0, ICMP6_time_exceeded, |
| 152 | ICMP6_time_exceeded_ttl_exceeded_in_transit, 0); |
Neale Ranns | 4c7c8e5 | 2017-10-21 09:37:55 -0700 | [diff] [blame] | 153 | *next0 = IP6_INPUT_NEXT_ICMP_ERROR; |
| 154 | } |
| 155 | else |
| 156 | { |
| 157 | *next0 = IP6_INPUT_NEXT_DROP; |
| 158 | } |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | #endif |
| 163 | |
| 164 | /* |
| 165 | * fd.io coding-style-patch-verification: ON |
| 166 | * |
| 167 | * Local Variables: |
| 168 | * eval: (c-set-style "gnu") |
| 169 | * End: |
| 170 | */ |