FD.io VPP
v21.06-3-gbb25fbf28
Vector Packet Processing
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
b
d
e
f
g
i
l
m
n
o
p
r
s
t
v
w
Functions
d
f
g
l
m
n
o
p
t
v
Variables
Typedefs
Enumerations
Enumerator
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
c
e
g
h
k
m
n
o
r
s
Related Functions
c
d
e
h
i
m
o
p
r
s
v
Source
Files
Symbols
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Macros
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
osi.h
Go to the documentation of this file.
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
{
70
#define _(f,n) OSI_PROTOCOL_##f = n,
71
foreach_osi_protocol
72
#undef _
73
}
osi_protocol_t
;
74
75
typedef
struct
76
{
77
u8
protocol
;
78
79
u8
payload[0];
80
}
osi_header_t
;
81
82
typedef
struct
83
{
84
/* Name (a c string). */
85
char
*
name
;
86
87
/* OSI protocol (SAP type). */
88
osi_protocol_t
protocol
;
89
90
/* Node which handles this type. */
91
u32
node_index
;
92
93
/* Next index for this type. */
94
u32
next_index
;
95
}
osi_protocol_info_t
;
96
97
#define foreach_osi_error \
98
_ (NONE, "no error") \
99
_ (UNKNOWN_PROTOCOL, "unknown osi protocol")
100
101
typedef
enum
102
{
103
#define _(f,s) OSI_ERROR_##f,
104
foreach_osi_error
105
#undef _
106
OSI_N_ERROR
,
107
}
osi_error_t
;
108
109
typedef
struct
110
{
111
vlib_main_t
*
vlib_main
;
112
113
osi_protocol_info_t
*
protocol_infos
;
114
115
/* Hash tables mapping name/protocol to protocol info index. */
116
uword
*protocol_info_by_name, *
protocol_info_by_protocol
;
117
118
/* osi-input next index indexed by protocol. */
119
u8
input_next_by_protocol[256];
120
}
osi_main_t
;
121
122
always_inline
osi_protocol_info_t
*
123
osi_get_protocol_info
(
osi_main_t
* m,
osi_protocol_t
protocol
)
124
{
125
uword
*p =
hash_get
(m->
protocol_info_by_protocol
,
protocol
);
126
return
p ?
vec_elt_at_index
(m->
protocol_infos
, p[0]) : 0;
127
}
128
129
extern
osi_main_t
osi_main
;
130
131
/* Register given node index to take input for given osi type. */
132
void
osi_register_input_protocol
(
osi_protocol_t
protocol
,
u32
node_index
);
133
134
format_function_t
format_osi_protocol
;
135
format_function_t
format_osi_header
;
136
format_function_t
format_osi_header_with_length
;
137
138
/* Parse osi protocol as 0xXXXX or protocol name. */
139
unformat_function_t
unformat_osi_protocol
;
140
141
/* Parse osi header. */
142
unformat_function_t
unformat_osi_header
;
143
unformat_function_t
unformat_pg_osi_header
;
144
145
always_inline
void
146
osi_setup_node
(
vlib_main_t
*
vm
,
u32
node_index
)
147
{
148
vlib_node_t
*n =
vlib_get_node
(
vm
,
node_index
);
149
pg_node_t
*pn =
pg_get_node
(
node_index
);
150
151
n->
format_buffer
=
format_osi_header_with_length
;
152
n->
unformat_buffer
=
unformat_osi_header
;
153
pn->
unformat_edit
=
unformat_pg_osi_header
;
154
}
155
156
void
osi_register_input_protocol
(
osi_protocol_t
protocol
,
u32
node_index
);
157
158
format_function_t
format_osi_header
;
159
160
#endif
/* included_osi_h */
161
162
/*
163
* fd.io coding-style-patch-verification: ON
164
*
165
* Local Variables:
166
* eval: (c-set-style "gnu")
167
* End:
168
*/
unformat_osi_protocol
unformat_function_t unformat_osi_protocol
Definition:
osi.h:139
OSI_N_ERROR
@ OSI_N_ERROR
Definition:
osi.h:106
osi_protocol_info_t::node_index
u32 node_index
Definition:
osi.h:91
osi_protocol_t
osi_protocol_t
Definition:
osi.h:68
osi_protocol_info_t::next_index
u32 next_index
Definition:
osi.h:94
pg.h
foreach_osi_protocol
#define foreach_osi_protocol
Definition:
osi.h:46
osi_main_t::protocol_info_by_protocol
uword * protocol_info_by_protocol
Definition:
osi.h:116
format_osi_header_with_length
format_function_t format_osi_header_with_length
Definition:
osi.h:136
osi_protocol_info_t::protocol
osi_protocol_t protocol
Definition:
osi.h:88
osi_protocol_info_t
Definition:
osi.h:82
unformat_pg_osi_header
unformat_function_t unformat_pg_osi_header
Definition:
osi.h:143
osi_setup_node
static void osi_setup_node(vlib_main_t *vm, u32 node_index)
Definition:
osi.h:146
osi_get_protocol_info
static osi_protocol_info_t * osi_get_protocol_info(osi_main_t *m, osi_protocol_t protocol)
Definition:
osi.h:123
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition:
nat44_ei.c:3047
node_index
node node_index
Definition:
interface_output.c:420
format_osi_protocol
format_function_t format_osi_protocol
Definition:
osi.h:134
vlib_node_t::unformat_buffer
unformat_function_t * unformat_buffer
Definition:
node.h:349
osi_protocol_info_t::name
char * name
Definition:
osi.h:85
pg_node_t
Definition:
pg.h:324
vlib_node_t::format_buffer
format_function_t * format_buffer
Definition:
node.h:348
osi_main_t::vlib_main
vlib_main_t * vlib_main
Definition:
osi.h:111
osi_error_t
osi_error_t
Definition:
osi.h:101
pg_node_t::unformat_edit
unformat_function_t * unformat_edit
Definition:
pg.h:327
vec_elt_at_index
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
Definition:
vec_bootstrap.h:203
osi_header_t
Definition:
osi.h:75
osi_main_t::protocol_infos
osi_protocol_info_t * protocol_infos
Definition:
osi.h:113
uword
u64 uword
Definition:
types.h:112
pg_get_node
static pg_node_t * pg_get_node(uword node_index)
Definition:
pg.h:381
hash_get
#define hash_get(h, key)
Definition:
hash.h:249
foreach_osi_error
#define foreach_osi_error
Definition:
osi.h:97
unformat_osi_header
unformat_function_t unformat_osi_header
Definition:
osi.h:142
vlib_get_node
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition:
node_funcs.h:86
osi_main_t
Definition:
osi.h:109
format_function_t
u8 *() format_function_t(u8 *s, va_list *args)
Definition:
format.h:48
always_inline
#define always_inline
Definition:
rdma_mlx5dv.h:23
u32
unsigned int u32
Definition:
types.h:88
protocol
vl_api_ip_proto_t protocol
Definition:
lb_types.api:72
unformat_function_t
uword() unformat_function_t(unformat_input_t *input, va_list *args)
Definition:
format.h:225
vlib_main_t
Definition:
main.h:102
vlib_node_t
Definition:
node.h:247
format_osi_header
format_function_t format_osi_header
Definition:
osi.h:135
u8
unsigned char u8
Definition:
types.h:56
osi_header_t::protocol
u8 protocol
Definition:
osi.h:77
vnet.h
osi_main
osi_main_t osi_main
Definition:
osi.c:44
osi_register_input_protocol
void osi_register_input_protocol(osi_protocol_t protocol, u32 node_index)
Definition:
node.c:301
src
vnet
osi
osi.h
Generated on Sat Jan 8 2022 10:05:23 for FD.io VPP by
1.8.17