blob: 3cb6b948d2b650ebfd12991a5a2ef0adb56135a2 [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
19
20u8 *
21format_vnet_buffer (u8 * s, va_list * args)
22{
23 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
24 u32 indent = format_get_indent (s);
25 u8 *a = 0;
26
Dave Barach7fff3d22018-11-27 16:52:59 -050027#define _(bit,name,ss,v) \
Damjan Marionbd846cd2017-11-21 13:12:41 +010028 if (v && (b->flags & VNET_BUFFER_F_##name)) \
Dave Barach7fff3d22018-11-27 16:52:59 -050029 a = format (a, "%s ", ss);
Damjan Mariondac03522018-02-01 15:30:13 +010030 foreach_vnet_buffer_flag
Damjan Marionbd846cd2017-11-21 13:12:41 +010031#undef _
32 if (b->flags & VNET_BUFFER_F_L2_HDR_OFFSET_VALID)
33 a = format (a, "l2-hdr-offset %d ", vnet_buffer (b)->l2_hdr_offset);
34
35 if (b->flags & VNET_BUFFER_F_L3_HDR_OFFSET_VALID)
Steven0b26bd72017-12-01 06:58:56 -080036 a = format (a, "l3-hdr-offset %d ", vnet_buffer (b)->l3_hdr_offset);
Damjan Marionbd846cd2017-11-21 13:12:41 +010037
38 if (b->flags & VNET_BUFFER_F_L4_HDR_OFFSET_VALID)
39 a = format (a, "l4-hdr-offset %d ", vnet_buffer (b)->l4_hdr_offset);
40
Neale Ranns039cbfe2018-02-27 03:45:38 -080041 if (b->flags & VNET_BUFFER_F_QOS_DATA_VALID)
42 a = format (a, "qos %d.%d ",
43 vnet_buffer2 (b)->qos.bits, vnet_buffer2 (b)->qos.source);
44
Neale Rannsce9e0b42018-08-01 12:53:17 -070045 if (b->flags & VNET_BUFFER_F_LOOP_COUNTER_VALID)
46 a = format (a, "loop-counter %d ", vnet_buffer2 (b)->loop_counter);
47
BenoƮt Ganne43543172019-10-21 15:13:54 +020048 s = format (s, "%U", format_vlib_buffer_no_chain, b);
Damjan Marionbd846cd2017-11-21 13:12:41 +010049 if (a)
50 s = format (s, "\n%U%v", format_white_space, indent, a);
51 vec_free (a);
52
53 return s;
54}
55
56
57/*
58 * fd.io coding-style-patch-verification: ON
59 *
60 * Local Variables:
61 * eval: (c-set-style "gnu")
62 * End:
63 */