]> granicus.if.org Git - strace/blob - sockaddr.c
print_inet_addr: add support of invocations without field name
[strace] / sockaddr.c
1 /*
2  * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
3  * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
4  * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
5  * Copyright (c) 1996-2000 Wichert Akkerman <wichert@cistron.nl>
6  * Copyright (c) 2005-2016 Dmitry V. Levin <ldv@altlinux.org>
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. The name of the author may not be used to endorse or promote products
18  *    derived from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 #include "defs.h"
33 #include "print_fields.h"
34
35 #include <sys/socket.h>
36 #include <sys/un.h>
37 #include <netinet/in.h>
38 #include <arpa/inet.h>
39
40 #include "netlink.h"
41 #include <linux/if_packet.h>
42 #include <linux/if_arp.h>
43 #include <linux/if_ether.h>
44
45 #ifdef HAVE_NETIPX_IPX_H
46 # include <netipx/ipx.h>
47 #else
48 # include <linux/ipx.h>
49 #endif
50
51 #include "xlat/addrfams.h"
52 #include "xlat/arp_hardware_types.h"
53 #include "xlat/ethernet_protocols.h"
54 #include "xlat/af_packet_types.h"
55
56 #ifdef HAVE_BLUETOOTH_BLUETOOTH_H
57 # include <bluetooth/bluetooth.h>
58 # include <bluetooth/hci.h>
59 # include <bluetooth/l2cap.h>
60 # include <bluetooth/rfcomm.h>
61 # include <bluetooth/sco.h>
62
63 # include "xlat/hci_channels.h"
64 #endif
65
66 #define SIZEOF_SA_FAMILY sizeof(((struct sockaddr *) 0)->sa_family)
67
68 static void
69 print_sockaddr_data_un(const void *const buf, const int addrlen)
70 {
71         const struct sockaddr_un *const sa_un = buf;
72         const int un_len = addrlen > (int) sizeof(*sa_un)
73                            ? (int) sizeof(*sa_un) : addrlen;
74         const int path_len = un_len - SIZEOF_SA_FAMILY;
75
76         tprints("sun_path=");
77         if (sa_un->sun_path[0]) {
78                 print_quoted_string(sa_un->sun_path, path_len + 1,
79                                     QUOTE_0_TERMINATED);
80         } else {
81                 tprints("@");
82                 print_quoted_string(sa_un->sun_path + 1, path_len - 1, 0);
83         }
84 }
85
86 bool
87 print_inet_addr(const int af,
88                 const void *const addr,
89                 const unsigned int len,
90                 const char *const var_name)
91 {
92         char buf[INET6_ADDRSTRLEN];
93
94         switch (af) {
95         case AF_INET:
96                 if (inet_ntop(af, addr, buf, sizeof(buf))) {
97                         if (var_name)
98                                 tprintf("%s=inet_addr(\"%s\")", var_name, buf);
99                         else
100                                 tprints(buf);
101                         return true;
102                 }
103                 break;
104         case AF_INET6:
105                 if (inet_ntop(af, addr, buf, sizeof(buf))) {
106                         if (var_name)
107                                 tprintf("inet_pton(%s, \"%s\", &%s)",
108                                         "AF_INET6", buf, var_name);
109                         else
110                                 tprints(buf);
111                         return true;
112                 }
113                 break;
114         }
115
116         if (var_name)
117                 tprintf("%s=", var_name);
118         print_quoted_string(addr, len, QUOTE_FORCE_HEX);
119         return false;
120 }
121
122 static void
123 print_sockaddr_data_in(const void *const buf, const int addrlen)
124 {
125         const struct sockaddr_in *const sa_in = buf;
126
127         PRINT_FIELD_NET_PORT("", *sa_in, sin_port);
128         PRINT_FIELD_INET4_ADDR(", ", *sa_in, sin_addr);
129 }
130
131 #define SIN6_MIN_LEN offsetof(struct sockaddr_in6, sin6_scope_id)
132
133 static void
134 print_sockaddr_data_in6(const void *const buf, const int addrlen)
135 {
136         const struct sockaddr_in6 *const sa_in6 = buf;
137
138         PRINT_FIELD_NET_PORT("", *sa_in6, sin6_port);
139         PRINT_FIELD_INET_ADDR(", ", *sa_in6, sin6_addr, AF_INET6);
140         tprintf(", sin6_flowinfo=htonl(%u)", ntohl(sa_in6->sin6_flowinfo));
141
142         if (addrlen <= (int) SIN6_MIN_LEN)
143                 return;
144
145 #if defined IN6_IS_ADDR_LINKLOCAL && defined IN6_IS_ADDR_MC_LINKLOCAL
146         if (IN6_IS_ADDR_LINKLOCAL(&sa_in6->sin6_addr)
147             || IN6_IS_ADDR_MC_LINKLOCAL(&sa_in6->sin6_addr))
148                 PRINT_FIELD_IFINDEX(", ", *sa_in6, sin6_scope_id);
149         else
150 #endif
151                 PRINT_FIELD_U(", ", *sa_in6, sin6_scope_id);
152 }
153
154 static void
155 print_sockaddr_data_ipx(const void *const buf, const int addrlen)
156 {
157         const struct sockaddr_ipx *const sa_ipx = buf;
158         unsigned int i;
159
160         PRINT_FIELD_NET_PORT("", *sa_ipx, sipx_port);
161         tprintf(", sipx_network=htonl(%#08x)"
162                 ", sipx_node=[",
163                 ntohl(sa_ipx->sipx_network));
164         for (i = 0; i < IPX_NODE_LEN; ++i) {
165                 tprintf("%s%#02x", i ? ", " : "",
166                         sa_ipx->sipx_node[i]);
167         }
168         PRINT_FIELD_0X("], ", *sa_ipx, sipx_type);
169 }
170
171 static void
172 print_sockaddr_data_nl(const void *const buf, const int addrlen)
173 {
174         const struct sockaddr_nl *const sa_nl = buf;
175
176         PRINT_FIELD_D("", *sa_nl, nl_pid);
177         PRINT_FIELD_0X(", ", *sa_nl, nl_groups);
178 }
179
180 static void
181 print_sockaddr_data_ll(const void *const buf, const int addrlen)
182 {
183         const struct sockaddr_ll *const sa_ll = buf;
184
185         tprints("sll_protocol=htons(");
186         printxval(ethernet_protocols, ntohs(sa_ll->sll_protocol), "ETH_P_???");
187         PRINT_FIELD_IFINDEX("), ", *sa_ll, sll_ifindex);
188         tprints(", sll_hatype=");
189         printxval(arp_hardware_types, sa_ll->sll_hatype, "ARPHRD_???");
190         tprints(", sll_pkttype=");
191         printxval(af_packet_types, sa_ll->sll_pkttype, "PACKET_???");
192         tprintf(", sll_halen=%u", sa_ll->sll_halen);
193         if (sa_ll->sll_halen) {
194                 const unsigned int oob_halen =
195                         addrlen - offsetof(struct sockaddr_ll, sll_addr);
196                 unsigned int i;
197
198                 tprints(", sll_addr=[");
199                 for (i = 0; i < sa_ll->sll_halen; ++i) {
200                         if (i)
201                                 tprints(", ");
202                         if (i >= oob_halen) {
203                                 tprints("...");
204                                 break;
205                         }
206                         tprintf("%#02x", sa_ll->sll_addr[i]);
207                 }
208                 tprints("]");
209         }
210 }
211
212 static void
213 print_sockaddr_data_raw(const void *const buf, const int addrlen)
214 {
215         const char *const data = buf + SIZEOF_SA_FAMILY;
216         const int datalen = addrlen - SIZEOF_SA_FAMILY;
217
218         tprints("sa_data=");
219         print_quoted_string(data, datalen, 0);
220 }
221
222 #ifdef HAVE_BLUETOOTH_BLUETOOTH_H
223 static void
224 print_sockaddr_data_bt(const void *const buf, const int addrlen)
225 {
226         switch (addrlen) {
227                 case sizeof(struct sockaddr_hci): {
228                         const struct sockaddr_hci *const hci = buf;
229                         tprintf("hci_dev=htobs(%hu), hci_channel=",
230                                 btohs(hci->hci_dev));
231                         printxval(hci_channels, hci->hci_channel,
232                                   "HCI_CHANNEL_???");
233                         break;
234                 }
235                 case sizeof(struct sockaddr_sco): {
236                         const struct sockaddr_sco *const sco = buf;
237                         tprintf("sco_bdaddr=%02x:%02x:%02x:%02x:%02x:%02x",
238                                 sco->sco_bdaddr.b[0], sco->sco_bdaddr.b[1],
239                                 sco->sco_bdaddr.b[2], sco->sco_bdaddr.b[3],
240                                 sco->sco_bdaddr.b[4], sco->sco_bdaddr.b[5]);
241                         break;
242                 }
243                 case sizeof(struct sockaddr_rc): {
244                         const struct sockaddr_rc *const rc = buf;
245                         tprintf("rc_bdaddr=%02x:%02x:%02x:%02x:%02x:%02x"
246                                 ", rc_channel=%u",
247                                 rc->rc_bdaddr.b[0], rc->rc_bdaddr.b[1],
248                                 rc->rc_bdaddr.b[2], rc->rc_bdaddr.b[3],
249                                 rc->rc_bdaddr.b[4], rc->rc_bdaddr.b[5],
250                                 rc->rc_channel);
251                         break;
252                 }
253                 case sizeof(struct sockaddr_l2): {
254                         const struct sockaddr_l2 *const l2 = buf;
255                         tprintf("l2_psm=htobs(%hu)"
256                                 ", l2_bdaddr=%02x:%02x:%02x:%02x:%02x:%02x"
257                                 ", l2_cid=htobs(%hu), l2_bdaddr_type=%u",
258                                 btohs(l2->l2_psm),
259                                 l2->l2_bdaddr.b[0], l2->l2_bdaddr.b[1],
260                                 l2->l2_bdaddr.b[2], l2->l2_bdaddr.b[3],
261                                 l2->l2_bdaddr.b[4], l2->l2_bdaddr.b[5],
262                                 btohs(l2->l2_cid), l2->l2_bdaddr_type);
263                         break;
264                 }
265                 default:
266                         print_sockaddr_data_raw(buf, addrlen);
267                         break;
268         }
269 }
270 #endif /* HAVE_BLUETOOTH_BLUETOOTH_H */
271
272 typedef void (* const sockaddr_printer)(const void *const, const int);
273
274 static const struct {
275         const sockaddr_printer printer;
276         const int min_len;
277 } sa_printers[] = {
278         [AF_UNIX] = { print_sockaddr_data_un, SIZEOF_SA_FAMILY + 1 },
279         [AF_INET] = { print_sockaddr_data_in, sizeof(struct sockaddr_in) },
280         [AF_IPX] = { print_sockaddr_data_ipx, sizeof(struct sockaddr_ipx) },
281         [AF_INET6] = { print_sockaddr_data_in6, SIN6_MIN_LEN },
282         [AF_NETLINK] = { print_sockaddr_data_nl, SIZEOF_SA_FAMILY + 1 },
283         [AF_PACKET] = { print_sockaddr_data_ll, sizeof(struct sockaddr_ll) },
284 #ifdef HAVE_BLUETOOTH_BLUETOOTH_H
285         [AF_BLUETOOTH] = { print_sockaddr_data_bt, SIZEOF_SA_FAMILY + 1 },
286 #endif
287 };
288
289 void
290 print_sockaddr(const void *const buf, const int addrlen)
291 {
292         const struct sockaddr *const sa = buf;
293
294         tprints("{sa_family=");
295         printxval(addrfams, sa->sa_family, "AF_???");
296
297         if (addrlen > (int) SIZEOF_SA_FAMILY) {
298                 tprints(", ");
299
300                 if (sa->sa_family < ARRAY_SIZE(sa_printers)
301                     && sa_printers[sa->sa_family].printer
302                     && addrlen >= sa_printers[sa->sa_family].min_len) {
303                         sa_printers[sa->sa_family].printer(buf, addrlen);
304                 } else {
305                         print_sockaddr_data_raw(buf, addrlen);
306                 }
307         }
308
309         tprints("}");
310 }
311
312 int
313 decode_sockaddr(struct tcb *const tcp, const kernel_ulong_t addr, int addrlen)
314 {
315         if (addrlen < 2) {
316                 printaddr(addr);
317                 return -1;
318         }
319
320         union {
321                 struct sockaddr sa;
322                 struct sockaddr_storage storage;
323                 char pad[sizeof(struct sockaddr_storage) + 1];
324         } addrbuf;
325
326         if ((unsigned) addrlen > sizeof(addrbuf.storage))
327                 addrlen = sizeof(addrbuf.storage);
328
329         if (umoven_or_printaddr(tcp, addr, addrlen, addrbuf.pad))
330                 return -1;
331
332         memset(&addrbuf.pad[addrlen], 0, sizeof(addrbuf.pad) - addrlen);
333
334         print_sockaddr(&addrbuf, addrlen);
335
336         return addrbuf.sa.sa_family;
337 }