Alexander Popovsky (apopovsk) | 4a7e58b | 2016-10-05 22:31:23 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 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 | /** |
| 17 | * @file |
| 18 | * @brief Definitions for punt infrastructure. |
| 19 | */ |
| 20 | #ifndef included_punt_h |
| 21 | #define included_punt_h |
| 22 | |
Tom Jones | 078affa | 2024-01-29 15:23:23 +0000 | [diff] [blame] | 23 | #ifdef __linux__ |
Pavel Kotucek | e88865d | 2018-11-28 07:42:11 +0100 | [diff] [blame] | 24 | #include <linux/un.h> |
Tom Jones | 078affa | 2024-01-29 15:23:23 +0000 | [diff] [blame] | 25 | #elif __FreeBSD__ |
| 26 | #include <sys/un.h> |
| 27 | #define UNIX_PATH_MAX SUNPATHLEN |
| 28 | #endif /* __linux__ */ |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 29 | #include <stdbool.h> |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 30 | #include <vnet/ip/ip.h> |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 31 | |
Mohammed Hawari | 45723b8 | 2021-02-05 15:40:00 +0100 | [diff] [blame] | 32 | /* Punting reason flags bitfield |
| 33 | * (position, length, value, name, string) |
| 34 | */ |
| 35 | #define foreach_vnet_punt_reason_flag \ |
| 36 | _ (0, 1, 0, IP4_PACKET, "ip4-packet") \ |
| 37 | _ (0, 1, 1, IP6_PACKET, "ip6-packet") |
| 38 | |
| 39 | typedef enum vnet_punt_reason_flag_t_ |
| 40 | { |
| 41 | #define _(pos, len, value, name, str) \ |
| 42 | VNET_PUNT_REASON_F_##name = ((value) << (pos)), |
| 43 | foreach_vnet_punt_reason_flag |
| 44 | #undef _ |
| 45 | } __clib_packed vnet_punt_reason_flag_t; |
| 46 | |
| 47 | enum vnet_punt_reason_flag_mask_t_ |
| 48 | { |
| 49 | #define _(pos, len, value, name, str) \ |
| 50 | VNET_PUNT_REASON_F_MASK_##name = (((1 << (len)) - 1) << (pos)), |
| 51 | foreach_vnet_punt_reason_flag |
| 52 | #undef _ |
| 53 | }; |
| 54 | |
| 55 | /* predicates associated with vlib_punt_reason_flag_t*/ |
| 56 | #define _(pos, len, value, name, str) \ |
| 57 | static_always_inline int vnet_punt_reason_flag_is_##name ( \ |
| 58 | vnet_punt_reason_flag_t f) \ |
| 59 | { \ |
| 60 | return (f & VNET_PUNT_REASON_F_MASK_##name) == VNET_PUNT_REASON_F_##name; \ |
| 61 | } |
| 62 | foreach_vnet_punt_reason_flag |
| 63 | #undef _ |
| 64 | |
Neale Ranns | b538dd8 | 2019-05-21 06:54:54 -0700 | [diff] [blame] | 65 | #define foreach_punt_type \ |
| 66 | _(L4, "l4") \ |
| 67 | _(EXCEPTION, "exception") \ |
| 68 | _(IP_PROTO, "ip-proto") |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 69 | |
Mohammed Hawari | 45723b8 | 2021-02-05 15:40:00 +0100 | [diff] [blame] | 70 | typedef enum punt_type_t_ { |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 71 | #define _(v, s) PUNT_TYPE_##v, |
Mohammed Hawari | 45723b8 | 2021-02-05 15:40:00 +0100 | [diff] [blame] | 72 | foreach_punt_type |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 73 | #undef _ |
Mohammed Hawari | 45723b8 | 2021-02-05 15:40:00 +0100 | [diff] [blame] | 74 | } punt_type_t; |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 75 | |
| 76 | typedef struct punt_l4_t_ |
| 77 | { |
| 78 | ip_address_family_t af; |
| 79 | ip_protocol_t protocol; |
| 80 | u16 port; |
| 81 | } punt_l4_t; |
| 82 | |
Neale Ranns | b538dd8 | 2019-05-21 06:54:54 -0700 | [diff] [blame] | 83 | typedef struct punt_ip_proto_t_ |
| 84 | { |
| 85 | ip_address_family_t af; |
| 86 | ip_protocol_t protocol; |
| 87 | } punt_ip_proto_t; |
| 88 | |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 89 | typedef struct punt_exception_t_ |
| 90 | { |
| 91 | vlib_punt_reason_t reason; |
| 92 | } punt_exception_t; |
| 93 | |
| 94 | typedef struct punt_union_t_ |
| 95 | { |
| 96 | punt_exception_t exception; |
| 97 | punt_l4_t l4; |
Neale Ranns | b538dd8 | 2019-05-21 06:54:54 -0700 | [diff] [blame] | 98 | punt_ip_proto_t ip_proto; |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 99 | } punt_union_t; |
| 100 | |
| 101 | typedef struct punt_reg_t_ |
| 102 | { |
| 103 | punt_type_t type; |
| 104 | punt_union_t punt; |
| 105 | } punt_reg_t; |
Alexander Popovsky (apopovsk) | 4a7e58b | 2016-10-05 22:31:23 -0700 | [diff] [blame] | 106 | |
| 107 | |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 108 | clib_error_t *vnet_punt_add_del (vlib_main_t * vm, |
| 109 | const punt_reg_t * pr, bool is_add); |
| 110 | clib_error_t *vnet_punt_socket_add (vlib_main_t * vm, |
| 111 | u32 header_version, |
| 112 | const punt_reg_t * pr, |
Ole Troan | f7a55ad | 2017-05-16 14:59:29 +0200 | [diff] [blame] | 113 | char *client_pathname); |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 114 | clib_error_t *vnet_punt_socket_del (vlib_main_t * vm, const punt_reg_t * pr); |
Ole Troan | f7a55ad | 2017-05-16 14:59:29 +0200 | [diff] [blame] | 115 | char *vnet_punt_get_server_pathname (void); |
Alexander Popovsky (apopovsk) | 4a7e58b | 2016-10-05 22:31:23 -0700 | [diff] [blame] | 116 | |
Ole Troan | f7a55ad | 2017-05-16 14:59:29 +0200 | [diff] [blame] | 117 | enum punt_action_e |
| 118 | { |
| 119 | PUNT_L2 = 0, |
| 120 | PUNT_IP4_ROUTED, |
| 121 | PUNT_IP6_ROUTED, |
| 122 | }; |
| 123 | |
| 124 | /* |
| 125 | * Packet descriptor header. Version 1 |
| 126 | * If this header changes, the version must also change to notify clients. |
| 127 | */ |
| 128 | #define PUNT_PACKETDESC_VERSION 1 |
| 129 | typedef struct __attribute__ ((packed)) |
| 130 | { |
| 131 | u32 sw_if_index; /* RX or TX interface */ |
| 132 | enum punt_action_e action; |
| 133 | } punt_packetdesc_t; |
| 134 | |
| 135 | /* |
| 136 | * Client registration |
| 137 | */ |
| 138 | typedef struct |
| 139 | { |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 140 | punt_reg_t reg; |
Ole Troan | f7a55ad | 2017-05-16 14:59:29 +0200 | [diff] [blame] | 141 | struct sockaddr_un caddr; |
| 142 | } punt_client_t; |
| 143 | |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 144 | typedef struct punt_client_db_t_ |
| 145 | { |
| 146 | void *clients_by_l4_port; |
| 147 | u32 *clients_by_exception; |
Neale Ranns | b538dd8 | 2019-05-21 06:54:54 -0700 | [diff] [blame] | 148 | void *clients_by_ip_proto; |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 149 | } punt_client_db_t; |
| 150 | |
Neale Ranns | 39040a6 | 2019-07-10 01:47:15 -0700 | [diff] [blame] | 151 | typedef struct punt_thread_data_t_ |
| 152 | { |
| 153 | struct iovec *iovecs; |
| 154 | } punt_thread_data_t; |
| 155 | |
Ole Troan | f7a55ad | 2017-05-16 14:59:29 +0200 | [diff] [blame] | 156 | typedef struct |
| 157 | { |
| 158 | int socket_fd; |
| 159 | char sun_path[sizeof (struct sockaddr_un)]; |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 160 | punt_client_db_t db; |
| 161 | punt_client_t *punt_client_pool; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 162 | u32 clib_file_index; |
Ole Troan | f7a55ad | 2017-05-16 14:59:29 +0200 | [diff] [blame] | 163 | bool is_configured; |
| 164 | vlib_node_t *interface_output_node; |
| 165 | u32 *ready_fds; |
| 166 | u32 *rx_buffers; |
Neale Ranns | 39040a6 | 2019-07-10 01:47:15 -0700 | [diff] [blame] | 167 | punt_thread_data_t *thread_data; |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 168 | vlib_punt_hdl_t hdl; |
Filip Tehlar | ce74c6f | 2021-06-22 14:10:41 +0000 | [diff] [blame] | 169 | u16 msg_id_base; |
Ole Troan | f7a55ad | 2017-05-16 14:59:29 +0200 | [diff] [blame] | 170 | } punt_main_t; |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 171 | |
Ole Troan | f7a55ad | 2017-05-16 14:59:29 +0200 | [diff] [blame] | 172 | extern punt_main_t punt_main; |
| 173 | |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 174 | typedef walk_rc_t (*punt_client_walk_cb_t) (const punt_client_t * pc, |
| 175 | void *ctx); |
| 176 | extern void punt_client_walk (punt_type_t pt, |
| 177 | punt_client_walk_cb_t cb, void *ctx); |
Pavel Kotucek | e88865d | 2018-11-28 07:42:11 +0100 | [diff] [blame] | 178 | |
Mohammed Hawari | 45723b8 | 2021-02-05 15:40:00 +0100 | [diff] [blame] | 179 | extern u8 *format_vnet_punt_reason_flags (u8 *s, va_list *args); |
| 180 | |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 181 | /* |
| 182 | * inlines for the data-plane |
| 183 | */ |
| 184 | static_always_inline u32 |
| 185 | punt_client_l4_mk_key (ip_address_family_t af, u16 port) |
| 186 | { |
| 187 | return (af << BITS (port) | port); |
| 188 | } |
| 189 | |
| 190 | static_always_inline punt_client_t * |
| 191 | punt_client_l4_get (ip_address_family_t af, u16 port) |
| 192 | { |
| 193 | punt_main_t *pm = &punt_main; |
| 194 | uword *p; |
| 195 | |
| 196 | p = hash_get (pm->db.clients_by_l4_port, punt_client_l4_mk_key (af, port)); |
| 197 | |
| 198 | if (p) |
| 199 | return (pool_elt_at_index (pm->punt_client_pool, p[0])); |
| 200 | |
| 201 | return (NULL); |
| 202 | } |
| 203 | |
Neale Ranns | b538dd8 | 2019-05-21 06:54:54 -0700 | [diff] [blame] | 204 | static_always_inline u32 |
| 205 | punt_client_ip_proto_mk_key (ip_address_family_t af, ip_protocol_t proto) |
| 206 | { |
| 207 | return (af << 16 | proto); |
| 208 | } |
| 209 | |
| 210 | static_always_inline punt_client_t * |
| 211 | punt_client_ip_proto_get (ip_address_family_t af, ip_protocol_t proto) |
| 212 | { |
| 213 | punt_main_t *pm = &punt_main; |
| 214 | uword *p; |
| 215 | |
| 216 | p = |
| 217 | hash_get (pm->db.clients_by_ip_proto, |
| 218 | punt_client_ip_proto_mk_key (af, proto)); |
| 219 | |
| 220 | if (p) |
| 221 | return (pool_elt_at_index (pm->punt_client_pool, p[0])); |
| 222 | |
| 223 | return (NULL); |
| 224 | } |
| 225 | |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 226 | static_always_inline punt_client_t * |
| 227 | punt_client_exception_get (vlib_punt_reason_t reason) |
| 228 | { |
| 229 | punt_main_t *pm = &punt_main; |
| 230 | u32 pci; |
| 231 | |
| 232 | if (reason >= vec_len (pm->db.clients_by_exception)) |
| 233 | return (NULL); |
| 234 | |
| 235 | pci = pm->db.clients_by_exception[reason]; |
| 236 | |
| 237 | if (~0 != pci) |
| 238 | return (pool_elt_at_index (pm->punt_client_pool, pci)); |
| 239 | |
| 240 | return (NULL); |
| 241 | } |
| 242 | |
| 243 | extern vlib_node_registration_t udp4_punt_node; |
| 244 | extern vlib_node_registration_t udp6_punt_node; |
| 245 | extern vlib_node_registration_t udp4_punt_socket_node; |
| 246 | extern vlib_node_registration_t udp6_punt_socket_node; |
Ole Troan | 56b8abc | 2023-09-05 08:27:53 +0200 | [diff] [blame] | 247 | extern vlib_node_registration_t icmp6_punt_socket_node; |
Neale Ranns | b538dd8 | 2019-05-21 06:54:54 -0700 | [diff] [blame] | 248 | extern vlib_node_registration_t ip4_proto_punt_socket_node; |
| 249 | extern vlib_node_registration_t ip6_proto_punt_socket_node; |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 250 | extern vlib_node_registration_t punt_socket_rx_node; |
| 251 | |
Ole Troan | f7a55ad | 2017-05-16 14:59:29 +0200 | [diff] [blame] | 252 | #endif |
Alexander Popovsky (apopovsk) | 4a7e58b | 2016-10-05 22:31:23 -0700 | [diff] [blame] | 253 | |
| 254 | /* |
| 255 | * fd.io coding-style-patch-verification: ON |
| 256 | * |
| 257 | * Local Variables: |
| 258 | * eval: (c-set-style "gnu") |
| 259 | * End: |
| 260 | */ |