blob: 5f7609d24a6335f447a867defd6d9fa99366553d [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 * hdlc.c: hdlc
17 *
18 * Copyright (c) 2010 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#include <vnet/vnet.h>
41#include <vnet/hdlc/hdlc.h>
42
43/* Global main structure. */
44hdlc_main_t hdlc_main;
45
Swarup Nayakcc42db82017-11-22 16:41:57 +053046u8 *
47format_hdlc_protocol (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070048{
49 hdlc_protocol_t p = va_arg (*args, u32);
Swarup Nayakcc42db82017-11-22 16:41:57 +053050 hdlc_main_t *pm = &hdlc_main;
51 hdlc_protocol_info_t *pi = hdlc_get_protocol_info (pm, p);
Ed Warnickecb9cada2015-12-08 15:45:58 -070052
53 if (pi)
54 s = format (s, "%s", pi->name);
55 else
56 s = format (s, "0x%04x", p);
57
58 return s;
59}
60
Swarup Nayakcc42db82017-11-22 16:41:57 +053061u8 *
62format_hdlc_header_with_length (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070063{
Swarup Nayakcc42db82017-11-22 16:41:57 +053064 hdlc_main_t *pm = &hdlc_main;
65 hdlc_header_t *h = va_arg (*args, hdlc_header_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070066 u32 max_header_bytes = va_arg (*args, u32);
67 hdlc_protocol_t p = clib_net_to_host_u16 (h->protocol);
Christophe Fontained3c008d2017-10-02 18:10:54 +020068 u32 indent, header_bytes;
Ed Warnickecb9cada2015-12-08 15:45:58 -070069
70 header_bytes = sizeof (h[0]);
71 if (max_header_bytes != 0 && header_bytes > max_header_bytes)
72 return format (s, "hdlc header truncated");
73
74 indent = format_get_indent (s);
75
76 s = format (s, "HDLC %U", format_hdlc_protocol, p);
77
78 if (h->address != 0xff)
79 s = format (s, ", address 0x%02x", h->address);
80 if (h->control != 0x03)
81 s = format (s, ", control 0x%02x", h->control);
82
83 if (max_header_bytes != 0 && header_bytes > max_header_bytes)
84 {
Swarup Nayakcc42db82017-11-22 16:41:57 +053085 hdlc_protocol_info_t *pi = hdlc_get_protocol_info (pm, p);
86 vlib_node_t *node = vlib_get_node (pm->vlib_main, pi->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070087 if (node->format_buffer)
88 s = format (s, "\n%U%U",
89 format_white_space, indent,
90 node->format_buffer, (void *) (h + 1),
91 max_header_bytes - header_bytes);
92 }
93
94 return s;
95}
96
Swarup Nayakcc42db82017-11-22 16:41:57 +053097u8 *
98format_hdlc_header (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070099{
Swarup Nayakcc42db82017-11-22 16:41:57 +0530100 hdlc_header_t *h = va_arg (*args, hdlc_header_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101 return format (s, "%U", format_hdlc_header_with_length, h, 0);
102}
103
104/* Returns hdlc protocol as an int in host byte order. */
105uword
106unformat_hdlc_protocol_host_byte_order (unformat_input_t * input,
Swarup Nayakcc42db82017-11-22 16:41:57 +0530107 va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108{
Swarup Nayakcc42db82017-11-22 16:41:57 +0530109 u16 *result = va_arg (*args, u16 *);
110 hdlc_main_t *pm = &hdlc_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111 int p, i;
112
113 /* Numeric type. */
Swarup Nayakcc42db82017-11-22 16:41:57 +0530114 if (unformat (input, "0x%x", &p) || unformat (input, "%d", &p))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115 {
116 if (p >= (1 << 16))
117 return 0;
118 *result = p;
119 return 1;
120 }
121
122 /* Named type. */
123 if (unformat_user (input, unformat_vlib_number_by_name,
124 pm->protocol_info_by_name, &i))
125 {
Swarup Nayakcc42db82017-11-22 16:41:57 +0530126 hdlc_protocol_info_t *pi = vec_elt_at_index (pm->protocol_infos, i);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127 *result = pi->protocol;
128 return 1;
129 }
130
131 return 0;
132}
133
134uword
135unformat_hdlc_protocol_net_byte_order (unformat_input_t * input,
Swarup Nayakcc42db82017-11-22 16:41:57 +0530136 va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137{
Swarup Nayakcc42db82017-11-22 16:41:57 +0530138 u16 *result = va_arg (*args, u16 *);
139 if (!unformat_user (input, unformat_hdlc_protocol_host_byte_order, result))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140 return 0;
Swarup Nayakcc42db82017-11-22 16:41:57 +0530141 *result = clib_host_to_net_u16 ((u16) * result);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142 return 1;
143}
144
145uword
146unformat_hdlc_header (unformat_input_t * input, va_list * args)
147{
Swarup Nayakcc42db82017-11-22 16:41:57 +0530148 u8 **result = va_arg (*args, u8 **);
149 hdlc_header_t _h, *h = &_h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150 u16 p;
151
Swarup Nayakcc42db82017-11-22 16:41:57 +0530152 if (!unformat (input, "%U", unformat_hdlc_protocol_host_byte_order, &p))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153 return 0;
154
155 h->address = 0xff;
156 h->control = 0x03;
157 h->protocol = clib_host_to_net_u16 (p);
158
159 /* Add header to result. */
160 {
Swarup Nayakcc42db82017-11-22 16:41:57 +0530161 void *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162 u32 n_bytes = sizeof (h[0]);
163
164 vec_add2 (*result, p, n_bytes);
Damjan Marionf1213b82016-03-13 02:22:06 +0100165 clib_memcpy (p, h, n_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166 }
Swarup Nayakcc42db82017-11-22 16:41:57 +0530167
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168 return 1;
169}
170
Swarup Nayakcc42db82017-11-22 16:41:57 +0530171static u8 *
Neale Rannsb80c5362016-10-08 13:03:40 +0100172hdlc_build_rewrite (vnet_main_t * vnm,
173 u32 sw_if_index,
Swarup Nayakcc42db82017-11-22 16:41:57 +0530174 vnet_link_t link_type, const void *dst_address)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175{
Swarup Nayakcc42db82017-11-22 16:41:57 +0530176 hdlc_header_t *h;
177 u8 *rewrite = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178 hdlc_protocol_t protocol;
179
Swarup Nayakcc42db82017-11-22 16:41:57 +0530180 switch (link_type)
181 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100182#define _(a,b) case VNET_LINK_##a: protocol = HDLC_PROTOCOL_##b; break
Swarup Nayakcc42db82017-11-22 16:41:57 +0530183 _(IP4, ip4);
184 _(IP6, ip6);
185 _(MPLS, mpls_unicast);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186#undef _
Swarup Nayakcc42db82017-11-22 16:41:57 +0530187 default:
Neale Rannsb80c5362016-10-08 13:03:40 +0100188 return (NULL);
Swarup Nayakcc42db82017-11-22 16:41:57 +0530189 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190
Swarup Nayakcc42db82017-11-22 16:41:57 +0530191 vec_validate (rewrite, sizeof (*h) - 1);
192 h = (hdlc_header_t *) rewrite;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193 h->address = 0x0f;
194 h->control = 0x00;
195 h->protocol = clib_host_to_net_u16 (protocol);
Swarup Nayakcc42db82017-11-22 16:41:57 +0530196
Neale Rannsb80c5362016-10-08 13:03:40 +0100197 return (rewrite);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198}
199
Swarup Nayakcc42db82017-11-22 16:41:57 +0530200/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201VNET_HW_INTERFACE_CLASS (hdlc_hw_interface_class) = {
202 .name = "HDLC",
203 .format_header = format_hdlc_header_with_length,
204 .unformat_header = unformat_hdlc_header,
Neale Rannsb80c5362016-10-08 13:03:40 +0100205 .build_rewrite = hdlc_build_rewrite,
206 .flags = VNET_HW_INTERFACE_CLASS_FLAG_P2P,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207};
Swarup Nayakcc42db82017-11-22 16:41:57 +0530208/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209
Swarup Nayakcc42db82017-11-22 16:41:57 +0530210static void
211add_protocol (hdlc_main_t * pm, hdlc_protocol_t protocol, char *protocol_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212{
Swarup Nayakcc42db82017-11-22 16:41:57 +0530213 hdlc_protocol_info_t *pi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700214 u32 i;
215
216 vec_add2 (pm->protocol_infos, pi, 1);
217 i = pi - pm->protocol_infos;
218
219 pi->name = protocol_name;
220 pi->protocol = protocol;
221 pi->next_index = pi->node_index = ~0;
222
223 hash_set (pm->protocol_info_by_protocol, protocol, i);
224 hash_set_mem (pm->protocol_info_by_name, pi->name, i);
225}
226
Swarup Nayakcc42db82017-11-22 16:41:57 +0530227static clib_error_t *
228hdlc_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229{
Swarup Nayakcc42db82017-11-22 16:41:57 +0530230 hdlc_main_t *pm = &hdlc_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231
232 memset (pm, 0, sizeof (pm[0]));
233 pm->vlib_main = vm;
234
235 pm->protocol_info_by_name = hash_create_string (0, sizeof (uword));
236 pm->protocol_info_by_protocol = hash_create (0, sizeof (uword));
237
238#define _(n,s) add_protocol (pm, HDLC_PROTOCOL_##s, #s);
239 foreach_hdlc_protocol
240#undef _
Swarup Nayakcc42db82017-11-22 16:41:57 +0530241 return vlib_call_init_function (vm, hdlc_input_init);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242}
243
244VLIB_INIT_FUNCTION (hdlc_init);
245
Swarup Nayakcc42db82017-11-22 16:41:57 +0530246/*
247 * fd.io coding-style-patch-verification: ON
248 *
249 * Local Variables:
250 * eval: (c-set-style "gnu")
251 * End:
252 */