blob: 028df4ede66e412185e869300ed07b1ecb8d020b [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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/*
16 * snap.h: SNAP definitions
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_snap_h
41#define included_snap_h
42
43#include <vnet/vnet.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070044
45#define foreach_ieee_oui \
46 _ (0x000000, ethernet) \
47 _ (0x00000c, cisco)
48
Calvin Ferencecc6ca882016-08-25 10:04:09 -040049typedef enum
50{
Ed Warnickecb9cada2015-12-08 15:45:58 -070051#define _(n,f) IEEE_OUI_##f = n,
52 foreach_ieee_oui
53#undef _
54} ieee_oui_t;
55
56#define foreach_snap_cisco_protocol \
57 _ (0x0102, drip) \
58 _ (0x0104, port_aggregation_protocol) \
59 _ (0x0105, mls_hello) \
60 _ (0x010b, per_vlan_spanning_tree) \
61 _ (0x010c, vlan_bridge) \
62 _ (0x0111, unidirectional_link_detection) \
63 _ (0x2000, cdp) \
64 _ (0x2001, cgmp) \
65 _ (0x2003, vtp) \
66 _ (0x2004, dtp) \
67 _ (0x200a, stp_uplink_fast)
68
Calvin Ferencecc6ca882016-08-25 10:04:09 -040069typedef enum
70{
Ed Warnickecb9cada2015-12-08 15:45:58 -070071#define _(n,f) SNAP_cisco_##f = n,
72 foreach_snap_cisco_protocol
73#undef _
74} snap_cisco_protocol_t;
75
Calvin Ferencecc6ca882016-08-25 10:04:09 -040076typedef union
77{
Ed Warnickecb9cada2015-12-08 15:45:58 -070078 CLIB_PACKED (struct {
79 /* OUI: organization unique identifier. */
80 u8 oui[3];
81
82 /* Per-OUI protocol. */
83 u16 protocol;
84 });
85
86 u8 as_u8[5];
87} snap_header_t;
88
Calvin Ferencecc6ca882016-08-25 10:04:09 -040089typedef struct
90{
Ed Warnickecb9cada2015-12-08 15:45:58 -070091 u32 oui;
92 u32 protocol;
93} snap_oui_and_protocol_t;
94
Calvin Ferencecc6ca882016-08-25 10:04:09 -040095typedef struct
96{
Ed Warnickecb9cada2015-12-08 15:45:58 -070097 /* Name vector string. */
Calvin Ferencecc6ca882016-08-25 10:04:09 -040098 u8 *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -070099
100 snap_oui_and_protocol_t oui_and_protocol;
101
102 /* Node which handles this type. */
103 u32 node_index;
104
105 /* snap-input next index for this type. */
106 u32 next_index;
107} snap_protocol_info_t;
108
109always_inline void
110snap_header_set_protocol (snap_header_t * h, snap_oui_and_protocol_t * p)
111{
112 u16 protocol = p->protocol;
113 u32 oui = p->oui;
114 h->protocol = clib_host_to_net_u16 (protocol);
115 h->oui[0] = (oui >> 16) & 0xff;
Calvin Ferencecc6ca882016-08-25 10:04:09 -0400116 h->oui[1] = (oui >> 8) & 0xff;
117 h->oui[2] = (oui >> 0) & 0xff;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118}
119
120#define foreach_snap_error \
121 _ (NONE, "no error") \
122 _ (UNKNOWN_PROTOCOL, "unknown oui/snap protocol")
123
Calvin Ferencecc6ca882016-08-25 10:04:09 -0400124typedef enum
125{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126#define _(f,s) SNAP_ERROR_##f,
127 foreach_snap_error
128#undef _
Calvin Ferencecc6ca882016-08-25 10:04:09 -0400129 SNAP_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130} snap_error_t;
131
Calvin Ferencecc6ca882016-08-25 10:04:09 -0400132typedef struct
133{
134 vlib_main_t *vlib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135
136 /* Vector of known SNAP oui/protocol pairs. */
Calvin Ferencecc6ca882016-08-25 10:04:09 -0400137 snap_protocol_info_t *protocols;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138
139 /* Hash table mapping oui/protocol to protocol index. */
140 mhash_t protocol_hash;
141
142 /* Hash table mapping protocol by name. */
Calvin Ferencecc6ca882016-08-25 10:04:09 -0400143 uword *protocol_info_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144} snap_main_t;
145
146always_inline u32
147snap_header_get_oui (snap_header_t * h)
148{
149 return (h->oui[0] << 16) | (h->oui[1] << 8) | h->oui[2];
150}
151
152always_inline snap_protocol_info_t *
153snap_get_protocol_info (snap_main_t * sm, snap_header_t * h)
154{
155 snap_oui_and_protocol_t key;
Calvin Ferencecc6ca882016-08-25 10:04:09 -0400156 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157
158 key.oui = snap_header_get_oui (h);
159 key.protocol = h->protocol;
160
161 p = mhash_get (&sm->protocol_hash, &key);
162 return p ? vec_elt_at_index (sm->protocols, p[0]) : 0;
163}
164
Dave Wallace71612d62017-10-24 01:32:41 -0400165extern snap_main_t snap_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166
167/* Register given node index to take input for given snap type. */
168void
169snap_register_input_protocol (vlib_main_t * vm,
Calvin Ferencecc6ca882016-08-25 10:04:09 -0400170 char *name,
171 u32 ieee_oui, u16 protocol, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173format_function_t format_snap_protocol;
174format_function_t format_snap_header;
175format_function_t format_snap_header_with_length;
176
177/* Parse snap protocol as 0xXXXX or protocol name. */
178unformat_function_t unformat_snap_protocol;
179
180/* Parse snap header. */
181unformat_function_t unformat_snap_header;
182unformat_function_t unformat_pg_snap_header;
183
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184#endif /* included_snap_h */
Calvin Ferencecc6ca882016-08-25 10:04:09 -0400185
186/*
187 * fd.io coding-style-patch-verification: ON
188 *
189 * Local Variables:
190 * eval: (c-set-style "gnu")
191 * End:
192 */