Damjan Marion | bd846cd | 2017-11-21 13:12:41 +0100 | [diff] [blame] | 1 | /* |
| 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 Kazmi | 6809538 | 2021-02-10 11:26:24 +0100 | [diff] [blame] | 19 | u8 * |
| 20 | format_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 Kazmi | a7e830e | 2021-04-23 15:16:50 +0200 | [diff] [blame] | 25 | if (v && (vnet_buffer (b)->oflags & VNET_BUFFER_OFFLOAD_F_##name)) \ |
Mohsin Kazmi | 6809538 | 2021-02-10 11:26:24 +0100 | [diff] [blame] | 26 | s = format (s, "%s ", ss); |
| 27 | foreach_vnet_buffer_offload_flag |
| 28 | #undef _ |
| 29 | return s; |
| 30 | } |
Damjan Marion | bd846cd | 2017-11-21 13:12:41 +0100 | [diff] [blame] | 31 | |
| 32 | u8 * |
| 33 | format_vnet_buffer (u8 * s, va_list * args) |
| 34 | { |
| 35 | vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *); |
| 36 | u32 indent = format_get_indent (s); |
| 37 | u8 *a = 0; |
| 38 | |
Dave Barach | 7fff3d2 | 2018-11-27 16:52:59 -0500 | [diff] [blame] | 39 | #define _(bit,name,ss,v) \ |
Damjan Marion | bd846cd | 2017-11-21 13:12:41 +0100 | [diff] [blame] | 40 | if (v && (b->flags & VNET_BUFFER_F_##name)) \ |
Dave Barach | 7fff3d2 | 2018-11-27 16:52:59 -0500 | [diff] [blame] | 41 | a = format (a, "%s ", ss); |
Damjan Marion | dac0352 | 2018-02-01 15:30:13 +0100 | [diff] [blame] | 42 | foreach_vnet_buffer_flag |
Damjan Marion | bd846cd | 2017-11-21 13:12:41 +0100 | [diff] [blame] | 43 | #undef _ |
Mohsin Kazmi | 6809538 | 2021-02-10 11:26:24 +0100 | [diff] [blame] | 44 | if (b->flags & VNET_BUFFER_F_OFFLOAD) a = |
| 45 | format (a, "%U ", format_vnet_buffer_offload, b); |
| 46 | |
| 47 | if (b->flags & VNET_BUFFER_F_L2_HDR_OFFSET_VALID) |
Damjan Marion | bd846cd | 2017-11-21 13:12:41 +0100 | [diff] [blame] | 48 | a = format (a, "l2-hdr-offset %d ", vnet_buffer (b)->l2_hdr_offset); |
| 49 | |
| 50 | if (b->flags & VNET_BUFFER_F_L3_HDR_OFFSET_VALID) |
Steven | 0b26bd7 | 2017-12-01 06:58:56 -0800 | [diff] [blame] | 51 | a = format (a, "l3-hdr-offset %d ", vnet_buffer (b)->l3_hdr_offset); |
Damjan Marion | bd846cd | 2017-11-21 13:12:41 +0100 | [diff] [blame] | 52 | |
| 53 | if (b->flags & VNET_BUFFER_F_L4_HDR_OFFSET_VALID) |
| 54 | a = format (a, "l4-hdr-offset %d ", vnet_buffer (b)->l4_hdr_offset); |
| 55 | |
Mohsin Kazmi | 6809538 | 2021-02-10 11:26:24 +0100 | [diff] [blame] | 56 | if (b->flags & VNET_BUFFER_F_GSO) |
| 57 | a = format (a, "gso gso-size %d", vnet_buffer2 (b)->gso_size); |
| 58 | |
Neale Ranns | 039cbfe | 2018-02-27 03:45:38 -0800 | [diff] [blame] | 59 | if (b->flags & VNET_BUFFER_F_QOS_DATA_VALID) |
| 60 | a = format (a, "qos %d.%d ", |
| 61 | vnet_buffer2 (b)->qos.bits, vnet_buffer2 (b)->qos.source); |
| 62 | |
Neale Ranns | ce9e0b4 | 2018-08-01 12:53:17 -0700 | [diff] [blame] | 63 | if (b->flags & VNET_BUFFER_F_LOOP_COUNTER_VALID) |
| 64 | a = format (a, "loop-counter %d ", vnet_buffer2 (b)->loop_counter); |
| 65 | |
BenoƮt Ganne | 4354317 | 2019-10-21 15:13:54 +0200 | [diff] [blame] | 66 | s = format (s, "%U", format_vlib_buffer_no_chain, b); |
Damjan Marion | bd846cd | 2017-11-21 13:12:41 +0100 | [diff] [blame] | 67 | if (a) |
| 68 | s = format (s, "\n%U%v", format_white_space, indent, a); |
| 69 | vec_free (a); |
| 70 | |
| 71 | return s; |
| 72 | } |
| 73 | |
| 74 | |
| 75 | /* |
| 76 | * fd.io coding-style-patch-verification: ON |
| 77 | * |
| 78 | * Local Variables: |
| 79 | * eval: (c-set-style "gnu") |
| 80 | * End: |
| 81 | */ |