Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2011 Daniel Drown |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | * |
| 16 | * dump.c - print various headers for debugging |
| 17 | */ |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 18 | #include <stdint.h> |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 19 | #include <stdio.h> |
Lorenzo Colitti | d908418 | 2013-03-22 00:42:21 +0900 | [diff] [blame] | 20 | #include <stdlib.h> |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 21 | |
| 22 | #include <arpa/inet.h> |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 23 | #include <linux/icmp.h> |
| 24 | #include <netinet/icmp6.h> |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 25 | #include <netinet/in.h> |
| 26 | #include <netinet/ip.h> |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 27 | #include <netinet/ip6.h> |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 28 | #include <netinet/ip_icmp.h> |
| 29 | #include <netinet/tcp.h> |
| 30 | #include <netinet/udp.h> |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 31 | |
| 32 | #include "checksum.h" |
| 33 | #include "clatd.h" |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 34 | #include "debug.h" |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 35 | #include "logging.h" |
| 36 | |
Lorenzo Colitti | f68200a | 2013-02-01 10:48:29 +0900 | [diff] [blame] | 37 | #if CLAT_DEBUG |
| 38 | |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 39 | /* print ip header */ |
| 40 | void dump_ip(struct iphdr *header) { |
| 41 | u_int16_t frag_flags; |
| 42 | char addrstr[INET6_ADDRSTRLEN]; |
| 43 | |
| 44 | frag_flags = ntohs(header->frag_off); |
| 45 | |
| 46 | printf("IP packet\n"); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 47 | printf("header_len = %x\n", header->ihl); |
| 48 | printf("version = %x\n", header->version); |
| 49 | printf("tos = %x\n", header->tos); |
| 50 | printf("tot_len = %x\n", ntohs(header->tot_len)); |
| 51 | printf("id = %x\n", ntohs(header->id)); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 52 | printf("frag: "); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 53 | if (frag_flags & IP_RF) { |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 54 | printf("(RF) "); |
| 55 | } |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 56 | if (frag_flags & IP_DF) { |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 57 | printf("DF "); |
| 58 | } |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 59 | if (frag_flags & IP_MF) { |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 60 | printf("MF "); |
| 61 | } |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 62 | printf("offset = %x\n", frag_flags & IP_OFFMASK); |
| 63 | printf("ttl = %x\n", header->ttl); |
| 64 | printf("protocol = %x\n", header->protocol); |
| 65 | printf("checksum = %x\n", ntohs(header->check)); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 66 | inet_ntop(AF_INET, &header->saddr, addrstr, sizeof(addrstr)); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 67 | printf("saddr = %s\n", addrstr); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 68 | inet_ntop(AF_INET, &header->daddr, addrstr, sizeof(addrstr)); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 69 | printf("daddr = %s\n", addrstr); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | /* print ip6 header */ |
| 73 | void dump_ip6(struct ip6_hdr *header) { |
| 74 | char addrstr[INET6_ADDRSTRLEN]; |
| 75 | |
| 76 | printf("ipv6\n"); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 77 | printf("version = %x\n", header->ip6_vfc >> 4); |
| 78 | printf("traffic class = %x\n", header->ip6_flow >> 20); |
| 79 | printf("flow label = %x\n", ntohl(header->ip6_flow & 0x000fffff)); |
| 80 | printf("payload len = %x\n", ntohs(header->ip6_plen)); |
| 81 | printf("next header = %x\n", header->ip6_nxt); |
| 82 | printf("hop limit = %x\n", header->ip6_hlim); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 83 | |
| 84 | inet_ntop(AF_INET6, &header->ip6_src, addrstr, sizeof(addrstr)); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 85 | printf("source = %s\n", addrstr); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 86 | |
| 87 | inet_ntop(AF_INET6, &header->ip6_dst, addrstr, sizeof(addrstr)); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 88 | printf("dest = %s\n", addrstr); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | /* print icmp header */ |
| 92 | void dump_icmp(struct icmphdr *icmp) { |
| 93 | printf("ICMP\n"); |
| 94 | |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 95 | printf("icmp.type = %x ", icmp->type); |
| 96 | if (icmp->type == ICMP_ECHOREPLY) { |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 97 | printf("echo reply"); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 98 | } else if (icmp->type == ICMP_ECHO) { |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 99 | printf("echo request"); |
| 100 | } else { |
| 101 | printf("other"); |
| 102 | } |
| 103 | printf("\n"); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 104 | printf("icmp.code = %x\n", icmp->code); |
| 105 | printf("icmp.checksum = %x\n", ntohs(icmp->checksum)); |
| 106 | if (icmp->type == ICMP_ECHOREPLY || icmp->type == ICMP_ECHO) { |
| 107 | printf("icmp.un.echo.id = %x\n", ntohs(icmp->un.echo.id)); |
| 108 | printf("icmp.un.echo.sequence = %x\n", ntohs(icmp->un.echo.sequence)); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 109 | } |
| 110 | } |
| 111 | |
| 112 | /* print icmp6 header */ |
| 113 | void dump_icmp6(struct icmp6_hdr *icmp6) { |
| 114 | printf("ICMP6\n"); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 115 | printf("type = %x", icmp6->icmp6_type); |
| 116 | if (icmp6->icmp6_type == ICMP6_ECHO_REQUEST) { |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 117 | printf("(echo request)"); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 118 | } else if (icmp6->icmp6_type == ICMP6_ECHO_REPLY) { |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 119 | printf("(echo reply)"); |
| 120 | } |
| 121 | printf("\n"); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 122 | printf("code = %x\n", icmp6->icmp6_code); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 123 | |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 124 | printf("checksum = %x\n", icmp6->icmp6_cksum); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 125 | |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 126 | if ((icmp6->icmp6_type == ICMP6_ECHO_REQUEST) || (icmp6->icmp6_type == ICMP6_ECHO_REPLY)) { |
| 127 | printf("icmp6_id = %x\n", icmp6->icmp6_id); |
| 128 | printf("icmp6_seq = %x\n", icmp6->icmp6_seq); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 129 | } |
| 130 | } |
| 131 | |
| 132 | /* print udp header */ |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 133 | void dump_udp_generic(const struct udphdr *udp, uint32_t temp_checksum, const uint8_t *payload, |
| 134 | size_t payload_size) { |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 135 | uint16_t my_checksum; |
| 136 | |
| 137 | temp_checksum = ip_checksum_add(temp_checksum, udp, sizeof(struct udphdr)); |
| 138 | temp_checksum = ip_checksum_add(temp_checksum, payload, payload_size); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 139 | my_checksum = ip_checksum_finish(temp_checksum); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 140 | |
| 141 | printf("UDP\n"); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 142 | printf("source = %x\n", ntohs(udp->source)); |
| 143 | printf("dest = %x\n", ntohs(udp->dest)); |
| 144 | printf("len = %x\n", ntohs(udp->len)); |
| 145 | printf("check = %x (mine %x)\n", udp->check, my_checksum); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | /* print ipv4/udp header */ |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 149 | void dump_udp(const struct udphdr *udp, const struct iphdr *ip, const uint8_t *payload, |
| 150 | size_t payload_size) { |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 151 | uint32_t temp_checksum; |
Lorenzo Colitti | 07f0265 | 2014-02-20 14:28:43 +0900 | [diff] [blame] | 152 | temp_checksum = ipv4_pseudo_header_checksum(ip, sizeof(*udp) + payload_size); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 153 | dump_udp_generic(udp, temp_checksum, payload, payload_size); |
| 154 | } |
| 155 | |
| 156 | /* print ipv6/udp header */ |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 157 | void dump_udp6(const struct udphdr *udp, const struct ip6_hdr *ip6, const uint8_t *payload, |
| 158 | size_t payload_size) { |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 159 | uint32_t temp_checksum; |
Lorenzo Colitti | 07f0265 | 2014-02-20 14:28:43 +0900 | [diff] [blame] | 160 | temp_checksum = ipv6_pseudo_header_checksum(ip6, sizeof(*udp) + payload_size, IPPROTO_UDP); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 161 | dump_udp_generic(udp, temp_checksum, payload, payload_size); |
| 162 | } |
| 163 | |
| 164 | /* print tcp header */ |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 165 | void dump_tcp_generic(const struct tcphdr *tcp, const uint8_t *options, size_t options_size, |
| 166 | uint32_t temp_checksum, const uint8_t *payload, size_t payload_size) { |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 167 | uint16_t my_checksum; |
| 168 | |
| 169 | temp_checksum = ip_checksum_add(temp_checksum, tcp, sizeof(struct tcphdr)); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 170 | if (options) { |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 171 | temp_checksum = ip_checksum_add(temp_checksum, options, options_size); |
| 172 | } |
| 173 | temp_checksum = ip_checksum_add(temp_checksum, payload, payload_size); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 174 | my_checksum = ip_checksum_finish(temp_checksum); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 175 | |
| 176 | printf("TCP\n"); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 177 | printf("source = %x\n", ntohs(tcp->source)); |
| 178 | printf("dest = %x\n", ntohs(tcp->dest)); |
| 179 | printf("seq = %x\n", ntohl(tcp->seq)); |
| 180 | printf("ack = %x\n", ntohl(tcp->ack_seq)); |
| 181 | printf("d_off = %x\n", tcp->doff); |
| 182 | printf("res1 = %x\n", tcp->res1); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 183 | #ifdef __BIONIC__ |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 184 | printf("CWR = %x\n", tcp->cwr); |
| 185 | printf("ECE = %x\n", tcp->ece); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 186 | #else |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 187 | printf("CWR/ECE = %x\n", tcp->res2); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 188 | #endif |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 189 | printf("urg = %x ack = %x psh = %x rst = %x syn = %x fin = %x\n", tcp->urg, tcp->ack, |
| 190 | tcp->psh, tcp->rst, tcp->syn, tcp->fin); |
| 191 | printf("window = %x\n", ntohs(tcp->window)); |
| 192 | printf("check = %x [mine %x]\n", tcp->check, my_checksum); |
| 193 | printf("urgent = %x\n", tcp->urg_ptr); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 194 | |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 195 | if (options) { |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 196 | size_t i; |
| 197 | |
| 198 | printf("options: "); |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 199 | for (i = 0; i < options_size; i++) { |
| 200 | printf("%x ", *(options + i)); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 201 | } |
| 202 | printf("\n"); |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | /* print ipv4/tcp header */ |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 207 | void dump_tcp(const struct tcphdr *tcp, const struct iphdr *ip, const uint8_t *payload, |
| 208 | size_t payload_size, const uint8_t *options, size_t options_size) { |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 209 | uint32_t temp_checksum; |
| 210 | |
Lorenzo Colitti | 07f0265 | 2014-02-20 14:28:43 +0900 | [diff] [blame] | 211 | temp_checksum = ipv4_pseudo_header_checksum(ip, sizeof(*tcp) + options_size + payload_size); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 212 | dump_tcp_generic(tcp, options, options_size, temp_checksum, payload, payload_size); |
| 213 | } |
| 214 | |
| 215 | /* print ipv6/tcp header */ |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 216 | void dump_tcp6(const struct tcphdr *tcp, const struct ip6_hdr *ip6, const uint8_t *payload, |
| 217 | size_t payload_size, const uint8_t *options, size_t options_size) { |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 218 | uint32_t temp_checksum; |
| 219 | |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 220 | temp_checksum = |
| 221 | ipv6_pseudo_header_checksum(ip6, sizeof(*tcp) + options_size + payload_size, IPPROTO_TCP); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 222 | dump_tcp_generic(tcp, options, options_size, temp_checksum, payload, payload_size); |
| 223 | } |
| 224 | |
| 225 | /* generic hex dump */ |
Brian Carlstrom | fcac410 | 2014-02-24 20:03:01 -0800 | [diff] [blame] | 226 | void logcat_hexdump(const char *info, const uint8_t *data, size_t len) { |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 227 | char output[PACKETLEN * 3 + 2]; |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 228 | size_t i; |
| 229 | |
Lorenzo Colitti | 57d480d | 2014-02-09 10:35:38 +0900 | [diff] [blame] | 230 | output[0] = '\0'; |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 231 | for (i = 0; i < len && i < PACKETLEN; i++) { |
| 232 | snprintf(output + i * 3, 4, " %02x", data[i]); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 233 | } |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 234 | output[len * 3 + 3] = '\0'; |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 235 | |
junyulai | c4e591a | 2018-11-26 22:36:10 +0900 | [diff] [blame^] | 236 | logmsg(ANDROID_LOG_WARN, "info %s len %d data%s", info, len, output); |
Daniel Drown | a45056e | 2012-03-23 10:42:54 -0500 | [diff] [blame] | 237 | } |
Lorenzo Colitti | f68200a | 2013-02-01 10:48:29 +0900 | [diff] [blame] | 238 | |
Lorenzo Colitti | f913fe4 | 2013-04-08 18:30:55 +0900 | [diff] [blame] | 239 | void dump_iovec(const struct iovec *iov, int iov_len) { |
| 240 | int i; |
| 241 | char *str; |
| 242 | for (i = 0; i < iov_len; i++) { |
| 243 | asprintf(&str, "iov[%d]: ", i); |
| 244 | logcat_hexdump(str, iov[i].iov_base, iov[i].iov_len); |
| 245 | free(str); |
| 246 | } |
| 247 | } |
Lorenzo Colitti | f68200a | 2013-02-01 10:48:29 +0900 | [diff] [blame] | 248 | #endif // CLAT_DEBUG |