Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2011-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 | #include <vnet/cdp/cdp_node.h> |
| 16 | #include <vppinfra/hash.h> |
| 17 | #include <vnet/unix/pcap.h> |
| 18 | #include <vnet/srp/srp.h> |
| 19 | #include <vnet/ppp/ppp.h> |
| 20 | #include <vnet/hdlc/hdlc.h> |
| 21 | #include <vnet/srp/packet.h> |
| 22 | |
| 23 | /* |
| 24 | * Generate a set of specific CDP TLVs. |
| 25 | * |
| 26 | * $$$ eventually these need to fish better data from |
| 27 | * other data structures; e.g. the hostname, software version info |
| 28 | * etc. |
| 29 | */ |
| 30 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 31 | static void |
| 32 | add_device_name_tlv (vnet_hw_interface_t * hw, u8 ** t0p) |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 33 | { |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 34 | cdp_tlv_t *t = (cdp_tlv_t *) * t0p; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 35 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 36 | t->t = htons (CDP_TLV_device_name); |
| 37 | t->l = htons (3 + sizeof (*t)); |
| 38 | clib_memcpy (&t->v, "VPP", 3); |
| 39 | |
| 40 | *t0p += ntohs (t->l); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 41 | } |
| 42 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 43 | static void |
| 44 | add_port_id_tlv (vnet_hw_interface_t * hw, u8 ** t0p) |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 45 | { |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 46 | cdp_tlv_t *t = (cdp_tlv_t *) * t0p; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 47 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 48 | t->t = htons (CDP_TLV_port_id); |
| 49 | t->l = htons (vec_len (hw->name) + sizeof (*t)); |
| 50 | clib_memcpy (&t->v, hw->name, vec_len (hw->name)); |
| 51 | *t0p += ntohs (t->l); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 52 | } |
| 53 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 54 | static void |
| 55 | add_version_tlv (vnet_hw_interface_t * hw, u8 ** t0p) |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 56 | { |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 57 | cdp_tlv_t *t = (cdp_tlv_t *) * t0p; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 58 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 59 | t->t = htons (CDP_TLV_version); |
| 60 | t->l = htons (12 + sizeof (*t)); |
| 61 | clib_memcpy (&t->v, "VPP Software", 12); |
| 62 | *t0p += ntohs (t->l); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 63 | } |
| 64 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 65 | static void |
| 66 | add_platform_tlv (vnet_hw_interface_t * hw, u8 ** t0p) |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 67 | { |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 68 | cdp_tlv_t *t = (cdp_tlv_t *) * t0p; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 69 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 70 | t->t = htons (CDP_TLV_platform); |
| 71 | t->l = htons (2 + sizeof (*t)); |
| 72 | clib_memcpy (&t->v, "SW", 2); |
| 73 | *t0p += ntohs (t->l); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 74 | } |
| 75 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 76 | static void |
| 77 | add_capability_tlv (vnet_hw_interface_t * hw, u8 ** t0p) |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 78 | { |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 79 | cdp_tlv_t *t = (cdp_tlv_t *) * t0p; |
| 80 | u32 capabilities; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 81 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 82 | t->t = htons (CDP_TLV_capabilities); |
| 83 | t->l = htons (4 + sizeof (*t)); |
| 84 | capabilities = CDP_ROUTER_DEVICE; |
| 85 | capabilities = htonl (capabilities); |
| 86 | clib_memcpy (&t->v, &capabilities, sizeof (capabilities)); |
| 87 | *t0p += ntohs (t->l); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 88 | } |
| 89 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 90 | static void |
| 91 | add_tlvs (cdp_main_t * cm, vnet_hw_interface_t * hw, u8 ** t0p) |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 92 | { |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 93 | add_device_name_tlv (hw, t0p); |
| 94 | add_port_id_tlv (hw, t0p); |
| 95 | add_version_tlv (hw, t0p); |
| 96 | add_platform_tlv (hw, t0p); |
| 97 | add_capability_tlv (hw, t0p); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | /* |
| 101 | * send a cdp pkt on an ethernet interface |
| 102 | */ |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 103 | static void |
| 104 | send_ethernet_hello (cdp_main_t * cm, cdp_neighbor_t * n, int count) |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 105 | { |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 106 | u32 *to_next; |
| 107 | ethernet_llc_snap_and_cdp_header_t *h0; |
| 108 | vnet_hw_interface_t *hw; |
| 109 | u32 bi0; |
| 110 | vlib_buffer_t *b0; |
| 111 | u8 *t0; |
| 112 | u16 checksum; |
| 113 | int nbytes_to_checksum; |
| 114 | int i; |
| 115 | vlib_frame_t *f; |
| 116 | vlib_main_t *vm = cm->vlib_main; |
| 117 | vnet_main_t *vnm = cm->vnet_main; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 118 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 119 | for (i = 0; i < count; i++) |
| 120 | { |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 121 | /* |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 122 | * see cdp_periodic_init() to understand what's already painted |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 123 | * into the buffer by the packet template mechanism |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 124 | */ |
| 125 | h0 = vlib_packet_template_get_packet |
| 126 | (vm, &cm->packet_templates[n->packet_template_index], &bi0); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 127 | |
Steven | 0ff5c56 | 2017-09-28 16:38:56 -0700 | [diff] [blame] | 128 | if (!h0) |
| 129 | break; |
| 130 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 131 | /* Add the interface's ethernet source address */ |
| 132 | hw = vnet_get_sup_hw_interface (vnm, n->sw_if_index); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 133 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 134 | clib_memcpy (h0->ethernet.src_address, hw->hw_address, |
| 135 | vec_len (hw->hw_address)); |
Dave Barach | f60a822 | 2016-02-08 16:57:13 -0500 | [diff] [blame] | 136 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 137 | t0 = (u8 *) & h0->cdp.data; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 138 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 139 | /* add TLVs */ |
| 140 | add_tlvs (cm, hw, &t0); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 141 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 142 | /* add the cdp packet checksum */ |
| 143 | nbytes_to_checksum = t0 - (u8 *) & h0->cdp; |
| 144 | checksum = cdp_checksum (&h0->cdp, nbytes_to_checksum); |
| 145 | h0->cdp.checksum = htons (checksum); |
| 146 | |
| 147 | /* Set the outbound packet length */ |
| 148 | b0 = vlib_get_buffer (vm, bi0); |
| 149 | b0->current_length = nbytes_to_checksum + sizeof (*h0) |
| 150 | - sizeof (cdp_hdr_t); |
| 151 | |
| 152 | /* And the outbound interface */ |
| 153 | vnet_buffer (b0)->sw_if_index[VLIB_TX] = hw->sw_if_index; |
| 154 | |
| 155 | /* Set the 802.3 ethernet length */ |
| 156 | h0->ethernet.len = htons (b0->current_length |
| 157 | - sizeof (ethernet_802_3_header_t)); |
| 158 | |
| 159 | /* And output the packet on the correct interface */ |
| 160 | f = vlib_get_frame_to_node (vm, hw->output_node_index); |
| 161 | to_next = vlib_frame_vector_args (f); |
| 162 | to_next[0] = bi0; |
| 163 | f->n_vectors = 1; |
| 164 | |
| 165 | vlib_put_frame_to_node (vm, hw->output_node_index, f); |
| 166 | n->last_sent = vlib_time_now (vm); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 167 | } |
| 168 | } |
| 169 | |
| 170 | /* |
| 171 | * send a cdp pkt on an hdlc interface |
| 172 | */ |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 173 | static void |
| 174 | send_hdlc_hello (cdp_main_t * cm, cdp_neighbor_t * n, int count) |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 175 | { |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 176 | u32 *to_next; |
| 177 | hdlc_and_cdp_header_t *h0; |
| 178 | vnet_hw_interface_t *hw; |
| 179 | u32 bi0; |
| 180 | vlib_buffer_t *b0; |
| 181 | u8 *t0; |
| 182 | u16 checksum; |
| 183 | int nbytes_to_checksum; |
| 184 | int i; |
| 185 | vlib_frame_t *f; |
| 186 | vlib_main_t *vm = cm->vlib_main; |
| 187 | vnet_main_t *vnm = cm->vnet_main; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 188 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 189 | for (i = 0; i < count; i++) |
| 190 | { |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 191 | /* |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 192 | * see cdp_periodic_init() to understand what's already painted |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 193 | * into the buffer by the packet template mechanism |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 194 | */ |
| 195 | h0 = vlib_packet_template_get_packet |
| 196 | (vm, &cm->packet_templates[n->packet_template_index], &bi0); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 197 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 198 | hw = vnet_get_sup_hw_interface (vnm, n->sw_if_index); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 199 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 200 | t0 = (u8 *) & h0->cdp.data; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 201 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 202 | /* add TLVs */ |
| 203 | add_tlvs (cm, hw, &t0); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 204 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 205 | /* add the cdp packet checksum */ |
| 206 | nbytes_to_checksum = t0 - (u8 *) & h0->cdp; |
| 207 | checksum = cdp_checksum (&h0->cdp, nbytes_to_checksum); |
| 208 | h0->cdp.checksum = htons (checksum); |
| 209 | |
| 210 | /* Set the outbound packet length */ |
| 211 | b0 = vlib_get_buffer (vm, bi0); |
| 212 | b0->current_length = nbytes_to_checksum + sizeof (*h0) |
| 213 | - sizeof (cdp_hdr_t); |
| 214 | |
| 215 | /* And output the packet on the correct interface */ |
| 216 | f = vlib_get_frame_to_node (vm, hw->output_node_index); |
| 217 | to_next = vlib_frame_vector_args (f); |
| 218 | to_next[0] = bi0; |
| 219 | f->n_vectors = 1; |
| 220 | |
| 221 | vlib_put_frame_to_node (vm, hw->output_node_index, f); |
| 222 | n->last_sent = vlib_time_now (vm); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 223 | } |
| 224 | } |
| 225 | |
| 226 | /* |
| 227 | * send a cdp pkt on an srp interface |
| 228 | */ |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 229 | static void |
| 230 | send_srp_hello (cdp_main_t * cm, cdp_neighbor_t * n, int count) |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 231 | { |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 232 | u32 *to_next; |
| 233 | srp_and_cdp_header_t *h0; |
| 234 | vnet_hw_interface_t *hw; |
| 235 | u32 bi0; |
| 236 | vlib_buffer_t *b0; |
| 237 | u8 *t0; |
| 238 | u16 checksum; |
| 239 | int nbytes_to_checksum; |
| 240 | int i; |
| 241 | vlib_frame_t *f; |
| 242 | vlib_main_t *vm = cm->vlib_main; |
| 243 | vnet_main_t *vnm = cm->vnet_main; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 244 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 245 | for (i = 0; i < count; i++) |
| 246 | { |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 247 | /* |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 248 | * see cdp_periodic_init() to understand what's already painted |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 249 | * into the buffer by the packet template mechanism |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 250 | */ |
| 251 | h0 = vlib_packet_template_get_packet |
| 252 | (vm, &cm->packet_templates[n->packet_template_index], &bi0); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 253 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 254 | hw = vnet_get_sup_hw_interface (vnm, n->sw_if_index); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 255 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 256 | t0 = (u8 *) & h0->cdp.data; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 257 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 258 | /* add TLVs */ |
| 259 | add_tlvs (cm, hw, &t0); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 260 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 261 | /* Add the interface's ethernet source address */ |
| 262 | clib_memcpy (h0->ethernet.src_address, hw->hw_address, |
| 263 | vec_len (hw->hw_address)); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 264 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 265 | /* add the cdp packet checksum */ |
| 266 | nbytes_to_checksum = t0 - (u8 *) & h0->cdp; |
| 267 | checksum = cdp_checksum (&h0->cdp, nbytes_to_checksum); |
| 268 | h0->cdp.checksum = htons (checksum); |
| 269 | |
| 270 | /* Set the outbound packet length */ |
| 271 | b0 = vlib_get_buffer (vm, bi0); |
| 272 | b0->current_length = nbytes_to_checksum + sizeof (*h0) |
| 273 | - sizeof (cdp_hdr_t); |
| 274 | |
| 275 | /* And output the packet on the correct interface */ |
| 276 | f = vlib_get_frame_to_node (vm, hw->output_node_index); |
| 277 | to_next = vlib_frame_vector_args (f); |
| 278 | to_next[0] = bi0; |
| 279 | f->n_vectors = 1; |
| 280 | |
| 281 | vlib_put_frame_to_node (vm, hw->output_node_index, f); |
| 282 | n->last_sent = vlib_time_now (vm); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 283 | } |
| 284 | } |
| 285 | |
| 286 | /* |
| 287 | * Decide which cdp packet template to use |
| 288 | */ |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 289 | static int |
| 290 | pick_packet_template (cdp_main_t * cm, cdp_neighbor_t * n) |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 291 | { |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 292 | n->packet_template_index = CDP_PACKET_TEMPLATE_ETHERNET; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 293 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 294 | return 0; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | /* Send a cdp neighbor announcement */ |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 298 | static void |
| 299 | send_hello (cdp_main_t * cm, cdp_neighbor_t * n, int count) |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 300 | { |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 301 | if (n->packet_template_index == (u8) ~ 0) |
| 302 | { |
| 303 | /* If we don't know how to talk to this peer, don't try again */ |
| 304 | if (pick_packet_template (cm, n)) |
| 305 | { |
| 306 | n->last_sent = 1e70; |
| 307 | return; |
| 308 | } |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 309 | } |
| 310 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 311 | switch (n->packet_template_index) |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 312 | { |
| 313 | case CDP_PACKET_TEMPLATE_ETHERNET: |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 314 | send_ethernet_hello (cm, n, count); |
| 315 | break; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 316 | |
| 317 | case CDP_PACKET_TEMPLATE_HDLC: |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 318 | send_hdlc_hello (cm, n, count); |
| 319 | break; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 320 | |
| 321 | case CDP_PACKET_TEMPLATE_SRP: |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 322 | send_srp_hello (cm, n, count); |
| 323 | break; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 324 | |
| 325 | default: |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 326 | ASSERT (0); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 327 | } |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 328 | n->last_sent = vlib_time_now (cm->vlib_main); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 329 | } |
| 330 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 331 | static void |
| 332 | delete_neighbor (cdp_main_t * cm, cdp_neighbor_t * n, int want_broadcast) |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 333 | { |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 334 | hash_unset (cm->neighbor_by_sw_if_index, n->sw_if_index); |
| 335 | vec_free (n->device_name); |
| 336 | vec_free (n->version); |
| 337 | vec_free (n->port_id); |
| 338 | vec_free (n->platform); |
| 339 | vec_free (n->last_rx_pkt); |
| 340 | pool_put (cm->neighbors, n); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 341 | } |
| 342 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 343 | void |
| 344 | cdp_periodic (vlib_main_t * vm) |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 345 | { |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 346 | cdp_main_t *cm = &cdp_main; |
| 347 | cdp_neighbor_t *n; |
| 348 | f64 now = vlib_time_now (vm); |
| 349 | vnet_sw_interface_t *sw; |
| 350 | static u32 *delete_list = 0; |
| 351 | int i; |
| 352 | static cdp_neighbor_t **n_list = 0; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 353 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 354 | /* *INDENT-OFF* */ |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 355 | pool_foreach (n, cm->neighbors, |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 356 | ({ |
| 357 | vec_add1 (n_list, n); |
| 358 | })); |
| 359 | /* *INDENT-ON* */ |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 360 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 361 | /* Across all cdp neighbors known to the system */ |
| 362 | for (i = 0; i < vec_len (n_list); i++) |
| 363 | { |
| 364 | n = n_list[i]; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 365 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 366 | /* "no cdp run" provisioned on the interface? */ |
| 367 | if (n->disabled == 1) |
| 368 | continue; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 369 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 370 | sw = vnet_get_sw_interface (cm->vnet_main, n->sw_if_index); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 371 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 372 | /* Interface shutdown or rx timeout? */ |
| 373 | if (!(sw->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) |
| 374 | || (now > (n->last_heard + (f64) n->ttl_in_seconds))) |
| 375 | /* add to list of neighbors to delete */ |
| 376 | vec_add1 (delete_list, n - cm->neighbors); |
| 377 | else if (n->last_sent == 0.0) |
| 378 | /* First time, send 3 hellos */ |
| 379 | send_hello (cm, n, 3 /* three to begin with */ ); |
| 380 | else if (now > (n->last_sent + (((f64) n->ttl_in_seconds) / 6.0))) |
| 381 | /* Normal keepalive, send one */ |
| 382 | send_hello (cm, n, 1 /* one as a keepalive */ ); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 383 | } |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 384 | |
| 385 | for (i = 0; i < vec_len (delete_list); i++) |
| 386 | { |
| 387 | n = vec_elt_at_index (cm->neighbors, delete_list[i]); |
| 388 | delete_neighbor (cm, n, 1); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 389 | } |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 390 | if (delete_list) |
| 391 | _vec_len (delete_list) = 0; |
| 392 | if (n_list) |
| 393 | _vec_len (n_list) = 0; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 394 | } |
| 395 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 396 | static clib_error_t * |
| 397 | cdp_periodic_init (vlib_main_t * vm) |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 398 | { |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 399 | cdp_main_t *cm = &cdp_main; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 400 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 401 | /* Create the ethernet cdp hello packet template */ |
| 402 | { |
| 403 | ethernet_llc_snap_and_cdp_header_t h; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 404 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 405 | memset (&h, 0, sizeof (h)); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 406 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 407 | /* Send to 01:00:0c:cc:cc */ |
| 408 | h.ethernet.dst_address[0] = 0x01; |
| 409 | /* h.ethernet.dst_address[1] = 0x00; (memset) */ |
| 410 | h.ethernet.dst_address[2] = 0x0C; |
| 411 | h.ethernet.dst_address[3] = 0xCC; |
| 412 | h.ethernet.dst_address[4] = 0xCC; |
| 413 | h.ethernet.dst_address[5] = 0xCC; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 414 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 415 | /* leave src address blank (fill in at send time) */ |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 416 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 417 | /* leave length blank (fill in at send time) */ |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 418 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 419 | /* LLC */ |
| 420 | h.llc.dst_sap = h.llc.src_sap = 0xAA; /* SNAP */ |
| 421 | h.llc.control = 0x03; /* UI (no extended control bytes) */ |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 422 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 423 | /* SNAP */ |
| 424 | /* h.snap.oui[0] = 0x00; (memset) */ |
| 425 | /* h.snap.oui[1] = 0x00; (memset) */ |
| 426 | h.snap.oui[2] = 0x0C; /* Cisco = 0x00000C */ |
| 427 | h.snap.protocol = htons (0x2000); /* CDP = 0x2000 */ |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 428 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 429 | /* CDP */ |
| 430 | h.cdp.version = 2; |
| 431 | h.cdp.ttl = 180; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 432 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 433 | vlib_packet_template_init |
| 434 | (vm, &cm->packet_templates[CDP_PACKET_TEMPLATE_ETHERNET], |
| 435 | /* data */ &h, |
| 436 | sizeof (h), |
| 437 | /* alloc chunk size */ 8, |
| 438 | "cdp-ethernet"); |
| 439 | } |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 440 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 441 | #if 0 /* retain for reference */ |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 442 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 443 | /* Create the hdlc cdp hello packet template */ |
| 444 | { |
| 445 | hdlc_and_cdp_header_t h; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 446 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 447 | memset (&h, 0, sizeof (h)); |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 448 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 449 | h.hdlc.address = 0x0f; |
| 450 | /* h.hdlc.control = 0; (memset) */ |
| 451 | h.hdlc.protocol = htons (0x2000); /* CDP = 0x2000 */ |
| 452 | |
| 453 | /* CDP */ |
| 454 | h.cdp.version = 2; |
| 455 | h.cdp.ttl = 180; |
| 456 | |
| 457 | vlib_packet_template_init |
| 458 | (vm, &cm->packet_templates[CDP_PACKET_TEMPLATE_HDLC], |
| 459 | /* data */ &h, |
| 460 | sizeof (h), |
| 461 | /* alloc chunk size */ 8, |
| 462 | "cdp-hdlc"); |
| 463 | } |
| 464 | |
| 465 | /* Create the srp cdp hello packet template */ |
| 466 | { |
| 467 | srp_and_cdp_header_t h; |
| 468 | |
| 469 | memset (&h, 0, sizeof (h)); |
| 470 | |
| 471 | /* Send to 01:00:0c:cc:cc */ |
| 472 | h.ethernet.dst_address[0] = 0x01; |
| 473 | /* h.ethernet.dst_address[1] = 0x00; (memset) */ |
| 474 | h.ethernet.dst_address[2] = 0x0C; |
| 475 | h.ethernet.dst_address[3] = 0xCC; |
| 476 | h.ethernet.dst_address[4] = 0xCC; |
| 477 | h.ethernet.dst_address[5] = 0xCC; |
| 478 | |
| 479 | /* leave src address blank (fill in at send time) */ |
| 480 | |
| 481 | /* The srp header is filled in at xmt */ |
| 482 | h.srp.ttl = 1; |
| 483 | h.srp.priority = 7; |
| 484 | h.srp.mode = SRP_MODE_data; |
| 485 | srp_header_compute_parity (&h.srp); |
| 486 | |
| 487 | /* Inner ring and parity will be set at send time */ |
| 488 | |
| 489 | h.ethernet.type = htons (0x2000); /* CDP = 0x2000 */ |
| 490 | |
| 491 | /* CDP */ |
| 492 | h.cdp.version = 2; |
| 493 | h.cdp.ttl = 180; |
| 494 | |
| 495 | vlib_packet_template_init |
| 496 | (vm, &cm->packet_templates[CDP_PACKET_TEMPLATE_SRP], |
| 497 | /* data */ &h, |
| 498 | sizeof (h), |
| 499 | /* alloc chunk size */ 8, |
| 500 | "cdp-srp"); |
| 501 | } |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 502 | #endif |
| 503 | |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 504 | return 0; |
Dave Barach | ced48e7 | 2016-02-08 15:57:35 -0500 | [diff] [blame] | 505 | } |
| 506 | |
| 507 | VLIB_INIT_FUNCTION (cdp_periodic_init); |
Dave Barach | 861bd21 | 2016-08-09 08:55:49 -0400 | [diff] [blame] | 508 | |
| 509 | /* |
| 510 | * fd.io coding-style-patch-verification: ON |
| 511 | * |
| 512 | * Local Variables: |
| 513 | * eval: (c-set-style "gnu") |
| 514 | * End: |
| 515 | */ |