Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
Florin Coras | c5df8c7 | 2019-04-08 07:42:30 -0700 | [diff] [blame] | 2 | * Copyright (c) 2015-2019 Cisco and/or its affiliates. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 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 | * tcp/tcp_format.c: tcp formatting |
| 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 | #include <vnet/ip/ip.h> |
| 41 | #include <vnet/tcp/tcp.h> |
| 42 | |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 43 | u8 * |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 44 | format_tcp_flags (u8 * s, va_list * args) |
| 45 | { |
| 46 | int flags = va_arg (*args, int); |
| 47 | |
Dave Barach | 6368151 | 2017-04-20 17:50:39 -0400 | [diff] [blame] | 48 | s = format (s, "0x%02x", flags); |
| 49 | #define _(f) if (flags & TCP_FLAG_##f) s = format (s, " %s", #f); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 50 | foreach_tcp_flag |
| 51 | #undef _ |
| 52 | return s; |
| 53 | } |
| 54 | |
Maxime Peim | fdf6fbe | 2023-06-19 18:19:48 +0200 | [diff] [blame] | 55 | u8 * |
| 56 | format_tcp_options (u8 *s, va_list *args) |
| 57 | { |
| 58 | tcp_options_t *opts = va_arg (*args, tcp_options_t *); |
| 59 | u32 indent, n_opts = 0; |
| 60 | int i; |
| 61 | |
| 62 | if (!opts->flags) |
| 63 | return s; |
| 64 | |
| 65 | indent = format_get_indent (s); |
| 66 | indent += 2; |
| 67 | |
| 68 | s = format (s, "options:\n%U", format_white_space, indent); |
| 69 | |
| 70 | if (tcp_opts_mss (opts)) |
| 71 | { |
| 72 | s = format (s, "mss %d", opts->mss); |
| 73 | n_opts++; |
| 74 | } |
| 75 | if (tcp_opts_wscale (opts)) |
| 76 | { |
| 77 | s = format (s, "%swindow scale %d", n_opts > 0 ? ", " : "", |
| 78 | format_white_space, indent, opts->wscale); |
| 79 | n_opts++; |
| 80 | } |
| 81 | if (tcp_opts_tstamp (opts)) |
| 82 | { |
| 83 | s = format (s, "%stimestamp %d, echo/reflected timestamp", |
| 84 | n_opts > 0 ? ", " : "", format_white_space, indent, |
| 85 | opts->tsval, opts->tsecr); |
| 86 | n_opts++; |
| 87 | } |
| 88 | if (tcp_opts_sack_permitted (opts)) |
| 89 | { |
| 90 | s = format (s, "%ssack permitted", n_opts > 0 ? ", " : "", |
| 91 | format_white_space, indent); |
| 92 | n_opts++; |
| 93 | } |
| 94 | if (tcp_opts_sack (opts)) |
| 95 | { |
| 96 | s = format (s, "%ssacks:", n_opts > 0 ? ", " : "", format_white_space, |
| 97 | indent); |
| 98 | for (i = 0; i < opts->n_sack_blocks; ++i) |
| 99 | { |
| 100 | s = format (s, "\n%Ublock %d: start %d, end %d", format_white_space, |
| 101 | indent + 2, i + 1, opts->sacks[i].start, |
| 102 | opts->sacks[i].end); |
| 103 | } |
| 104 | n_opts++; |
| 105 | } |
| 106 | |
| 107 | return s; |
| 108 | } |
| 109 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 110 | /* Format TCP header. */ |
| 111 | u8 * |
| 112 | format_tcp_header (u8 * s, va_list * args) |
| 113 | { |
| 114 | tcp_header_t *tcp = va_arg (*args, tcp_header_t *); |
| 115 | u32 max_header_bytes = va_arg (*args, u32); |
Maxime Peim | fdf6fbe | 2023-06-19 18:19:48 +0200 | [diff] [blame] | 116 | tcp_options_t opts = { .flags = 0 }; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 117 | u32 header_bytes; |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 118 | u32 indent; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 119 | |
| 120 | /* Nothing to do. */ |
| 121 | if (max_header_bytes < sizeof (tcp[0])) |
| 122 | return format (s, "TCP header truncated"); |
| 123 | |
| 124 | indent = format_get_indent (s); |
| 125 | indent += 2; |
| 126 | header_bytes = tcp_header_bytes (tcp); |
| 127 | |
| 128 | s = format (s, "TCP: %d -> %d", clib_net_to_host_u16 (tcp->src), |
| 129 | clib_net_to_host_u16 (tcp->dst)); |
| 130 | |
| 131 | s = format (s, "\n%Useq. 0x%08x ack 0x%08x", format_white_space, indent, |
| 132 | clib_net_to_host_u32 (tcp->seq_number), |
| 133 | clib_net_to_host_u32 (tcp->ack_number)); |
| 134 | |
| 135 | s = format (s, "\n%Uflags %U, tcp header: %d bytes", format_white_space, |
| 136 | indent, format_tcp_flags, tcp->flags, header_bytes); |
| 137 | |
| 138 | s = format (s, "\n%Uwindow %d, checksum 0x%04x", format_white_space, indent, |
| 139 | clib_net_to_host_u16 (tcp->window), |
| 140 | clib_net_to_host_u16 (tcp->checksum)); |
| 141 | |
BenoƮt Ganne | 11f7965 | 2024-04-09 12:03:53 +0200 | [diff] [blame^] | 142 | if (header_bytes > max_header_bytes) |
| 143 | s = format (s, "\n%Uoptions: truncated", format_white_space, indent); |
| 144 | else if (tcp_options_parse (tcp, &opts, tcp_is_syn (tcp)) < 0) |
Maxime Peim | fdf6fbe | 2023-06-19 18:19:48 +0200 | [diff] [blame] | 145 | s = format (s, "\n%Uoptions: parsing failed", format_white_space, indent); |
| 146 | else |
| 147 | s = format (s, "\n%U%U", format_white_space, indent, format_tcp_options, |
| 148 | &opts); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 149 | |
| 150 | /* Recurse into next protocol layer. */ |
| 151 | if (max_header_bytes != 0 && header_bytes < max_header_bytes) |
| 152 | { |
| 153 | ip_main_t *im = &ip_main; |
| 154 | tcp_udp_port_info_t *pi; |
| 155 | |
| 156 | pi = ip_get_tcp_udp_port_info (im, tcp->dst); |
| 157 | |
| 158 | if (pi && pi->format_header) |
| 159 | s = format (s, "\n%U%U", format_white_space, indent - 2, |
| 160 | pi->format_header, |
| 161 | /* next protocol header */ (void *) tcp + header_bytes, |
| 162 | max_header_bytes - header_bytes); |
| 163 | } |
| 164 | |
| 165 | return s; |
| 166 | } |
| 167 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 168 | /* |
| 169 | * fd.io coding-style-patch-verification: ON |
| 170 | * |
| 171 | * Local Variables: |
| 172 | * eval: (c-set-style "gnu") |
| 173 | * End: |
| 174 | */ |