]> granicus.if.org Git - strace/blob - sockaddr.c
tests: check decoding of netlink smc_diag_msg attributes
[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         const char *af_name = NULL;
93         char buf[INET6_ADDRSTRLEN];
94
95         switch (af) {
96         case AF_INET:
97                 af_name = "AF_INET";
98                 break;
99         case AF_INET6:
100                 af_name = "AF_INET6";
101                 break;
102         }
103
104         if (af_name && inet_ntop(af, addr, buf, sizeof(buf))) {
105                 tprintf("inet_pton(%s, \"%s\", &%s)", af_name, buf, var_name);
106                 return true;
107         } else {
108                 tprintf("%s=", var_name);
109                 print_quoted_string(addr, len, 0);
110                 return false;
111         }
112 }
113
114 static void
115 print_sockaddr_data_in(const void *const buf, const int addrlen)
116 {
117         const struct sockaddr_in *const sa_in = buf;
118
119         PRINT_FIELD_NET_PORT("", *sa_in, sin_port);
120         PRINT_FIELD_INET4_ADDR(", ", *sa_in, sin_addr);
121 }
122
123 #define SIN6_MIN_LEN offsetof(struct sockaddr_in6, sin6_scope_id)
124
125 static void
126 print_sockaddr_data_in6(const void *const buf, const int addrlen)
127 {
128         const struct sockaddr_in6 *const sa_in6 = buf;
129
130         PRINT_FIELD_NET_PORT("", *sa_in6, sin6_port);
131         PRINT_FIELD_INET_ADDR(", ", *sa_in6, sin6_addr, AF_INET6);
132         tprintf(", sin6_flowinfo=htonl(%u)", ntohl(sa_in6->sin6_flowinfo));
133
134         if (addrlen <= (int) SIN6_MIN_LEN)
135                 return;
136
137 #if defined IN6_IS_ADDR_LINKLOCAL && defined IN6_IS_ADDR_MC_LINKLOCAL
138         if (IN6_IS_ADDR_LINKLOCAL(&sa_in6->sin6_addr)
139             || IN6_IS_ADDR_MC_LINKLOCAL(&sa_in6->sin6_addr))
140                 PRINT_FIELD_IFINDEX(", ", *sa_in6, sin6_scope_id);
141         else
142 #endif
143                 PRINT_FIELD_U(", ", *sa_in6, sin6_scope_id);
144 }
145
146 static void
147 print_sockaddr_data_ipx(const void *const buf, const int addrlen)
148 {
149         const struct sockaddr_ipx *const sa_ipx = buf;
150         unsigned int i;
151
152         PRINT_FIELD_NET_PORT("", *sa_ipx, sipx_port);
153         tprintf(", sipx_network=htonl(%#08x)"
154                 ", sipx_node=[",
155                 ntohl(sa_ipx->sipx_network));
156         for (i = 0; i < IPX_NODE_LEN; ++i) {
157                 tprintf("%s%#02x", i ? ", " : "",
158                         sa_ipx->sipx_node[i]);
159         }
160         tprintf("], sipx_type=%#02x", sa_ipx->sipx_type);
161 }
162
163 static void
164 print_sockaddr_data_nl(const void *const buf, const int addrlen)
165 {
166         const struct sockaddr_nl *const sa_nl = buf;
167
168         tprintf("nl_pid=%d, nl_groups=%#08x",
169                 sa_nl->nl_pid, sa_nl->nl_groups);
170 }
171
172 static void
173 print_sockaddr_data_ll(const void *const buf, const int addrlen)
174 {
175         const struct sockaddr_ll *const sa_ll = buf;
176
177         tprints("sll_protocol=htons(");
178         printxval(ethernet_protocols, ntohs(sa_ll->sll_protocol), "ETH_P_???");
179         PRINT_FIELD_IFINDEX("), ", *sa_ll, sll_ifindex);
180         tprints(", sll_hatype=");
181         printxval(arp_hardware_types, sa_ll->sll_hatype, "ARPHRD_???");
182         tprints(", sll_pkttype=");
183         printxval(af_packet_types, sa_ll->sll_pkttype, "PACKET_???");
184         tprintf(", sll_halen=%u", sa_ll->sll_halen);
185         if (sa_ll->sll_halen) {
186                 const unsigned int oob_halen =
187                         addrlen - offsetof(struct sockaddr_ll, sll_addr);
188                 unsigned int i;
189
190                 tprints(", sll_addr=[");
191                 for (i = 0; i < sa_ll->sll_halen; ++i) {
192                         if (i)
193                                 tprints(", ");
194                         if (i >= oob_halen) {
195                                 tprints("...");
196                                 break;
197                         }
198                         tprintf("%#02x", sa_ll->sll_addr[i]);
199                 }
200                 tprints("]");
201         }
202 }
203
204 static void
205 print_sockaddr_data_raw(const void *const buf, const int addrlen)
206 {
207         const char *const data = buf + SIZEOF_SA_FAMILY;
208         const int datalen = addrlen - SIZEOF_SA_FAMILY;
209
210         tprints("sa_data=");
211         print_quoted_string(data, datalen, 0);
212 }
213
214 #ifdef HAVE_BLUETOOTH_BLUETOOTH_H
215 static void
216 print_sockaddr_data_bt(const void *const buf, const int addrlen)
217 {
218         switch (addrlen) {
219                 case sizeof(struct sockaddr_hci): {
220                         const struct sockaddr_hci *const hci = buf;
221                         tprintf("hci_dev=htobs(%hu), hci_channel=",
222                                 btohs(hci->hci_dev));
223                         printxval(hci_channels, hci->hci_channel,
224                                   "HCI_CHANNEL_???");
225                         break;
226                 }
227                 case sizeof(struct sockaddr_sco): {
228                         const struct sockaddr_sco *const sco = buf;
229                         tprintf("sco_bdaddr=%02x:%02x:%02x:%02x:%02x:%02x",
230                                 sco->sco_bdaddr.b[0], sco->sco_bdaddr.b[1],
231                                 sco->sco_bdaddr.b[2], sco->sco_bdaddr.b[3],
232                                 sco->sco_bdaddr.b[4], sco->sco_bdaddr.b[5]);
233                         break;
234                 }
235                 case sizeof(struct sockaddr_rc): {
236                         const struct sockaddr_rc *const rc = buf;
237                         tprintf("rc_bdaddr=%02x:%02x:%02x:%02x:%02x:%02x"
238                                 ", rc_channel=%u",
239                                 rc->rc_bdaddr.b[0], rc->rc_bdaddr.b[1],
240                                 rc->rc_bdaddr.b[2], rc->rc_bdaddr.b[3],
241                                 rc->rc_bdaddr.b[4], rc->rc_bdaddr.b[5],
242                                 rc->rc_channel);
243                         break;
244                 }
245                 case sizeof(struct sockaddr_l2): {
246                         const struct sockaddr_l2 *const l2 = buf;
247                         tprintf("l2_psm=htobs(%hu)"
248                                 ", l2_bdaddr=%02x:%02x:%02x:%02x:%02x:%02x"
249                                 ", l2_cid=htobs(%hu), l2_bdaddr_type=%u",
250                                 btohs(l2->l2_psm),
251                                 l2->l2_bdaddr.b[0], l2->l2_bdaddr.b[1],
252                                 l2->l2_bdaddr.b[2], l2->l2_bdaddr.b[3],
253                                 l2->l2_bdaddr.b[4], l2->l2_bdaddr.b[5],
254                                 btohs(l2->l2_cid), l2->l2_bdaddr_type);
255                         break;
256                 }
257                 default:
258                         print_sockaddr_data_raw(buf, addrlen);
259                         break;
260         }
261 }
262 #endif /* HAVE_BLUETOOTH_BLUETOOTH_H */
263
264 typedef void (* const sockaddr_printer)(const void *const, const int);
265
266 static const struct {
267         const sockaddr_printer printer;
268         const int min_len;
269 } sa_printers[] = {
270         [AF_UNIX] = { print_sockaddr_data_un, SIZEOF_SA_FAMILY + 1 },
271         [AF_INET] = { print_sockaddr_data_in, sizeof(struct sockaddr_in) },
272         [AF_IPX] = { print_sockaddr_data_ipx, sizeof(struct sockaddr_ipx) },
273         [AF_INET6] = { print_sockaddr_data_in6, SIN6_MIN_LEN },
274         [AF_NETLINK] = { print_sockaddr_data_nl, SIZEOF_SA_FAMILY + 1 },
275         [AF_PACKET] = { print_sockaddr_data_ll, sizeof(struct sockaddr_ll) },
276 #ifdef HAVE_BLUETOOTH_BLUETOOTH_H
277         [AF_BLUETOOTH] = { print_sockaddr_data_bt, SIZEOF_SA_FAMILY + 1 },
278 #endif
279 };
280
281 void
282 print_sockaddr(const void *const buf, const int addrlen)
283 {
284         const struct sockaddr *const sa = buf;
285
286         tprints("{sa_family=");
287         printxval(addrfams, sa->sa_family, "AF_???");
288
289         if (addrlen > (int) SIZEOF_SA_FAMILY) {
290                 tprints(", ");
291
292                 if (sa->sa_family < ARRAY_SIZE(sa_printers)
293                     && sa_printers[sa->sa_family].printer
294                     && addrlen >= sa_printers[sa->sa_family].min_len) {
295                         sa_printers[sa->sa_family].printer(buf, addrlen);
296                 } else {
297                         print_sockaddr_data_raw(buf, addrlen);
298                 }
299         }
300
301         tprints("}");
302 }
303
304 int
305 decode_sockaddr(struct tcb *const tcp, const kernel_ulong_t addr, int addrlen)
306 {
307         if (addrlen < 2) {
308                 printaddr(addr);
309                 return -1;
310         }
311
312         union {
313                 struct sockaddr sa;
314                 struct sockaddr_storage storage;
315                 char pad[sizeof(struct sockaddr_storage) + 1];
316         } addrbuf;
317
318         if ((unsigned) addrlen > sizeof(addrbuf.storage))
319                 addrlen = sizeof(addrbuf.storage);
320
321         if (umoven_or_printaddr(tcp, addr, addrlen, addrbuf.pad))
322                 return -1;
323
324         memset(&addrbuf.pad[addrlen], 0, sizeof(addrbuf.pad) - addrlen);
325
326         print_sockaddr(&addrbuf, addrlen);
327
328         return addrbuf.sa.sa_family;
329 }