blob: 2496cfd510d36da43343b9d4b391cb685e53d5f2 [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 * llc.h: LLC 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_llc_h
41#define included_llc_h
42
43#include <vnet/vnet.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070044
45/* Protocol (SSAP/DSAP) types. */
46#define foreach_llc_protocol \
47 _ (null, 0x0) \
48 _ (sublayer, 0x2) \
49 _ (sna_path_control, 0x4) \
50 _ (ip4, 0x6) \
51 _ (sna1, 0x8) \
52 _ (sna2, 0xc) \
53 _ (sna3, 0x40) \
54 _ (proway_lan, 0x0e) \
55 _ (netware1, 0x10) \
56 _ (netware2, 0xe0) \
57 _ (osi_layer1, 0x14) \
58 _ (osi_layer2, 0x20) \
59 _ (osi_layer3, 0x34) \
60 _ (osi_layer4, 0x54) \
61 _ (osi_layer5, 0xfe) \
62 _ (bpdu, 0x42) \
63 _ (arp, 0x98) \
64 _ (snap, 0xaa) \
65 _ (vines1, 0xba) \
66 _ (vines2, 0xbc) \
67 _ (netbios, 0xf0) \
68 _ (global_dsap, 0xff)
69
Calvin151fb722016-08-24 10:35:59 -040070typedef enum
71{
Ed Warnickecb9cada2015-12-08 15:45:58 -070072#define _(f,n) LLC_PROTOCOL_##f = n,
73 foreach_llc_protocol
74#undef _
75} llc_protocol_t;
76
Calvin151fb722016-08-24 10:35:59 -040077typedef struct
78{
Ed Warnickecb9cada2015-12-08 15:45:58 -070079#define LLC_DST_SAP_IS_GROUP (1 << 0)
80#define LLC_SRC_SAP_IS_RESPONSE (1 << 0)
81 u8 dst_sap, src_sap;
82
83 /* Control byte.
84 [0] 1 => supervisory 0 => information
85 [1] unnumbered frame. */
86 u8 control;
87
88 /* Only present if (control & 3) != 3. */
89 u8 extended_control[0];
90} llc_header_t;
91
92always_inline u16
93llc_header_get_control (llc_header_t * h)
94{
95 u16 r = h->control;
96 return r | ((((r & 3) != 3) ? h->extended_control[0] : 0) << 8);
97}
98
99always_inline u8
100llc_header_length (llc_header_t * h)
101{
102 return ((h->control & 3) != 3 ? 4 : 3);
103}
104
Calvin151fb722016-08-24 10:35:59 -0400105typedef struct
106{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107 /* Name (a c string). */
Calvin151fb722016-08-24 10:35:59 -0400108 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109
110 /* LLC protocol (SAP type). */
111 llc_protocol_t protocol;
112
113 /* Node which handles this type. */
114 u32 node_index;
115
116 /* Next index for this type. */
117 u32 next_index;
118} llc_protocol_info_t;
119
120#define foreach_llc_error \
121 _ (NONE, "no error") \
122 _ (UNKNOWN_PROTOCOL, "unknown llc ssap/dsap") \
123 _ (UNKNOWN_CONTROL, "control != 0x3")
124
Calvin151fb722016-08-24 10:35:59 -0400125typedef enum
126{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127#define _(f,s) LLC_ERROR_##f,
128 foreach_llc_error
129#undef _
Calvin151fb722016-08-24 10:35:59 -0400130 LLC_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131} llc_error_t;
132
Calvin151fb722016-08-24 10:35:59 -0400133typedef struct
134{
135 vlib_main_t *vlib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136
Calvin151fb722016-08-24 10:35:59 -0400137 llc_protocol_info_t *protocol_infos;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138
139 /* Hash tables mapping name/protocol to protocol info index. */
Calvin151fb722016-08-24 10:35:59 -0400140 uword *protocol_info_by_name, *protocol_info_by_protocol;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141
142 /* llc-input next index indexed by protocol. */
143 u8 input_next_by_protocol[256];
144} llc_main_t;
145
146always_inline llc_protocol_info_t *
147llc_get_protocol_info (llc_main_t * m, llc_protocol_t protocol)
148{
Calvin151fb722016-08-24 10:35:59 -0400149 uword *p = hash_get (m->protocol_info_by_protocol, protocol);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150 return p ? vec_elt_at_index (m->protocol_infos, p[0]) : 0;
151}
152
153extern llc_main_t llc_main;
154
155/* Register given node index to take input for given llc type. */
156void
157llc_register_input_protocol (vlib_main_t * vm,
Calvin151fb722016-08-24 10:35:59 -0400158 llc_protocol_t protocol, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160format_function_t format_llc_protocol;
161format_function_t format_llc_header;
162format_function_t format_llc_header_with_length;
163
164/* Parse llc protocol as 0xXXXX or protocol name. */
165unformat_function_t unformat_llc_protocol;
166
167/* Parse llc header. */
168unformat_function_t unformat_llc_header;
169unformat_function_t unformat_pg_llc_header;
170
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171#endif /* included_llc_h */
Calvin151fb722016-08-24 10:35:59 -0400172
173/*
174 * fd.io coding-style-patch-verification: ON
175 *
176 * Local Variables:
177 * eval: (c-set-style "gnu")
178 * End:
179 */