blob: ef93185b2c17b52fa0f866a1b6893597b298b06b [file] [log] [blame]
Damjan Marionbd846cd2017-11-21 13:12:41 +01001/*
2 * Copyright (c) 2017 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#include <vlib/vlib.h>
17#include <vnet/buffer.h>
18
Mohsin Kazmi68095382021-02-10 11:26:24 +010019u8 *
20format_vnet_buffer_offload (u8 *s, va_list *args)
21{
22 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
23
24#define _(bit, name, ss, v) \
Mohsin Kazmia7e830e2021-04-23 15:16:50 +020025 if (v && (vnet_buffer (b)->oflags & VNET_BUFFER_OFFLOAD_F_##name)) \
Mohsin Kazmi68095382021-02-10 11:26:24 +010026 s = format (s, "%s ", ss);
27 foreach_vnet_buffer_offload_flag
28#undef _
Mohsin Kazmi537e9552021-06-17 14:33:03 +020029
30 if (vnet_buffer (b)->oflags & VNET_BUFFER_OFFLOAD_F_TNL_MASK)
31 {
32 s = format (s, "outer-l3-hdr-offset %d ",
33 vnet_buffer2 (b)->outer_l3_hdr_offset);
34 s = format (s, "outer-l4-hdr-offset %d ",
35 vnet_buffer2 (b)->outer_l4_hdr_offset);
36 }
Mohsin Kazmi68095382021-02-10 11:26:24 +010037 return s;
38}
Damjan Marionbd846cd2017-11-21 13:12:41 +010039
40u8 *
41format_vnet_buffer (u8 * s, va_list * args)
42{
43 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
44 u32 indent = format_get_indent (s);
45 u8 *a = 0;
46
Dave Barach7fff3d22018-11-27 16:52:59 -050047#define _(bit,name,ss,v) \
Damjan Marionbd846cd2017-11-21 13:12:41 +010048 if (v && (b->flags & VNET_BUFFER_F_##name)) \
Dave Barach7fff3d22018-11-27 16:52:59 -050049 a = format (a, "%s ", ss);
Damjan Mariondac03522018-02-01 15:30:13 +010050 foreach_vnet_buffer_flag
Damjan Marionbd846cd2017-11-21 13:12:41 +010051#undef _
Mohsin Kazmi68095382021-02-10 11:26:24 +010052 if (b->flags & VNET_BUFFER_F_OFFLOAD) a =
53 format (a, "%U ", format_vnet_buffer_offload, b);
54
55 if (b->flags & VNET_BUFFER_F_L2_HDR_OFFSET_VALID)
Damjan Marionbd846cd2017-11-21 13:12:41 +010056 a = format (a, "l2-hdr-offset %d ", vnet_buffer (b)->l2_hdr_offset);
57
58 if (b->flags & VNET_BUFFER_F_L3_HDR_OFFSET_VALID)
Steven0b26bd72017-12-01 06:58:56 -080059 a = format (a, "l3-hdr-offset %d ", vnet_buffer (b)->l3_hdr_offset);
Damjan Marionbd846cd2017-11-21 13:12:41 +010060
61 if (b->flags & VNET_BUFFER_F_L4_HDR_OFFSET_VALID)
62 a = format (a, "l4-hdr-offset %d ", vnet_buffer (b)->l4_hdr_offset);
63
Mohsin Kazmi68095382021-02-10 11:26:24 +010064 if (b->flags & VNET_BUFFER_F_GSO)
Mohsin Kazmi537e9552021-06-17 14:33:03 +020065 a = format (a, "gso l4-hdr-len %d gso-size %d",
66 vnet_buffer2 (b)->gso_l4_hdr_sz, vnet_buffer2 (b)->gso_size);
Mohsin Kazmi68095382021-02-10 11:26:24 +010067
Neale Ranns039cbfe2018-02-27 03:45:38 -080068 if (b->flags & VNET_BUFFER_F_QOS_DATA_VALID)
69 a = format (a, "qos %d.%d ",
70 vnet_buffer2 (b)->qos.bits, vnet_buffer2 (b)->qos.source);
71
Neale Rannsce9e0b42018-08-01 12:53:17 -070072 if (b->flags & VNET_BUFFER_F_LOOP_COUNTER_VALID)
73 a = format (a, "loop-counter %d ", vnet_buffer2 (b)->loop_counter);
74
BenoƮt Ganne43543172019-10-21 15:13:54 +020075 s = format (s, "%U", format_vlib_buffer_no_chain, b);
Damjan Marionbd846cd2017-11-21 13:12:41 +010076 if (a)
77 s = format (s, "\n%U%v", format_white_space, indent, a);
78 vec_free (a);
79
80 return s;
81}
82
83
84/*
85 * fd.io coding-style-patch-verification: ON
86 *
87 * Local Variables:
88 * eval: (c-set-style "gnu")
89 * End:
90 */