Initial commit of vpp code.
[vpp.git] / vnet / vnet / osi / osi.h
1 /*
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  * osi.h: OSI 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_osi_h
41 #define included_osi_h
42
43 #include <vnet/vnet.h>
44 #include <vnet/pg/pg.h>
45
46 #define foreach_osi_protocol                    \
47   _ (null, 0x0)                                 \
48   _ (x_29, 0x01)                                \
49   _ (x_633, 0x03)                               \
50   _ (q_931, 0x08)                               \
51   _ (q_933, 0x08)                               \
52   _ (q_2931, 0x09)                              \
53   _ (q_2119, 0x0c)                              \
54   _ (snap, 0x80)                                \
55   _ (clnp, 0x81)                                \
56   _ (esis, 0x82)                                \
57   _ (isis, 0x83)                                \
58   _ (idrp, 0x85)                                \
59   _ (x25_esis, 0x8a)                            \
60   _ (iso10030, 0x8c)                            \
61   _ (iso11577, 0x8d)                            \
62   _ (ip6, 0x8e)                                 \
63   _ (compressed, 0xb0)                          \
64   _ (sndcf, 0xc1)                               \
65   _ (ip4, 0xcc)                                 \
66   _ (ppp, 0xcf)
67
68 typedef enum {
69 #define _(f,n) OSI_PROTOCOL_##f = n,
70   foreach_osi_protocol
71 #undef _
72 } osi_protocol_t;
73
74 typedef struct {
75   u8 protocol;
76
77   u8 payload[0];
78 } osi_header_t;
79
80 typedef struct {
81   /* Name (a c string). */
82   char * name;
83
84   /* OSI protocol (SAP type). */
85   osi_protocol_t protocol;
86
87   /* Node which handles this type. */
88   u32 node_index;
89
90   /* Next index for this type. */
91   u32 next_index;
92 } osi_protocol_info_t;
93
94 #define foreach_osi_error                       \
95   _ (NONE, "no error")                          \
96   _ (UNKNOWN_PROTOCOL, "unknown osi protocol")
97
98 typedef enum {
99 #define _(f,s) OSI_ERROR_##f,
100   foreach_osi_error
101 #undef _
102   OSI_N_ERROR,
103 } osi_error_t;
104
105 typedef struct {
106   vlib_main_t * vlib_main;
107
108   osi_protocol_info_t * protocol_infos;
109
110   /* Hash tables mapping name/protocol to protocol info index. */
111   uword * protocol_info_by_name, * protocol_info_by_protocol;
112
113   /* osi-input next index indexed by protocol. */
114   u8 input_next_by_protocol[256];
115 } osi_main_t;
116
117 always_inline osi_protocol_info_t *
118 osi_get_protocol_info (osi_main_t * m, osi_protocol_t protocol)
119 {
120   uword * p = hash_get (m->protocol_info_by_protocol, protocol);
121   return p ? vec_elt_at_index (m->protocol_infos, p[0]) : 0;
122 }
123
124 extern osi_main_t osi_main;
125
126 /* Register given node index to take input for given osi type. */
127 void
128 osi_register_input_protocol (osi_protocol_t protocol,
129                              u32 node_index);
130
131 void osi_set_adjacency (vnet_rewrite_header_t * rw,
132                         uword max_data_bytes,
133                         osi_protocol_t protocol);
134
135 format_function_t format_osi_protocol;
136 format_function_t format_osi_header;
137 format_function_t format_osi_header_with_length;
138
139 /* Parse osi protocol as 0xXXXX or protocol name. */
140 unformat_function_t unformat_osi_protocol;
141
142 /* Parse osi header. */
143 unformat_function_t unformat_osi_header;
144 unformat_function_t unformat_pg_osi_header;
145
146 always_inline void
147 osi_setup_node (vlib_main_t * vm, u32 node_index)
148 {
149   vlib_node_t * n = vlib_get_node (vm, node_index);
150   pg_node_t * pn = pg_get_node (node_index);
151
152   n->format_buffer = format_osi_header_with_length;
153   n->unformat_buffer = unformat_osi_header;
154   pn->unformat_edit = unformat_pg_osi_header;
155 }
156
157 void
158 osi_register_input_protocol (osi_protocol_t protocol,
159                              u32 node_index);
160
161 format_function_t format_osi_header;
162
163 #endif /* included_osi_h */