blob: 58c54c875b867a5ea50a060e5b3dbdf5a1847a44 [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
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>
Wichert Akkerman7987cdf2000-07-05 16:05:39 +00005 * Copyright (c) 1996-2000 Wichert Akkerman <wichert@cistron.nl>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00006 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000029 */
30
31#include "defs.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000032#include <sys/stat.h>
33#include <sys/socket.h>
Dmitry V. Levinb2fa2be2014-11-21 20:46:16 +000034#include <sys/uio.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000035#include <sys/un.h>
36#include <netinet/in.h>
Wichert Akkerman8c7122c2001-02-16 19:59:55 +000037#ifdef HAVE_NETINET_TCP_H
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010038# include <netinet/tcp.h>
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000039#endif
Wichert Akkerman8c7122c2001-02-16 19:59:55 +000040#ifdef HAVE_NETINET_UDP_H
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010041# include <netinet/udp.h>
Wichert Akkerman8c7122c2001-02-16 19:59:55 +000042#endif
Holger Hans Peter Freyther7fea79b2011-01-14 11:08:12 +010043#ifdef HAVE_NETINET_SCTP_H
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010044# include <netinet/sctp.h>
Holger Hans Peter Freyther7fea79b2011-01-14 11:08:12 +010045#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000046#include <arpa/inet.h>
Wichert Akkermanf1850652001-02-16 20:29:03 +000047#include <net/if.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000048#include <asm/types.h>
Denys Vlasenko99aa1812013-02-08 18:49:06 +010049#if defined(__GLIBC__)
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010050# include <netipx/ipx.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000051#else
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010052# include <linux/ipx.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000053#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000054
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +000055#if defined(HAVE_LINUX_NETLINK_H)
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010056# include <linux/netlink.h>
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +000057#endif
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +000058#if defined(HAVE_LINUX_IF_PACKET_H)
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010059# include <linux/if_packet.h>
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +000060#endif
Wichert Akkerman7987cdf2000-07-05 16:05:39 +000061#if defined(HAVE_LINUX_ICMP_H)
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010062# include <linux/icmp.h>
Wichert Akkerman7987cdf2000-07-05 16:05:39 +000063#endif
Lubomir Rintelc400a1c2014-10-03 11:40:28 +020064#ifdef HAVE_BLUETOOTH_BLUETOOTH_H
65# include <bluetooth/bluetooth.h>
66# include <bluetooth/hci.h>
67# include <bluetooth/l2cap.h>
68# include <bluetooth/rfcomm.h>
69# include <bluetooth/sco.h>
70#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000071#ifndef PF_UNSPEC
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010072# define PF_UNSPEC AF_UNSPEC
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000073#endif
74
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +000075#include "xlat/domains.h"
76#include "xlat/addrfams.h"
77#include "xlat/socktypes.h"
78#include "xlat/sock_type_flags.h"
Dmitry V. Levin8a550d72008-11-10 17:21:23 +000079#ifndef SOCK_TYPE_MASK
80# define SOCK_TYPE_MASK 0xf
81#endif
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +000082
83#ifndef SOL_IP
84# define SOL_IP 0
85#endif
86#ifndef SOL_TCP
87# define SOL_TCP 6
88#endif
89#ifndef SOL_UDP
90# define SOL_UDP 17
91#endif
92#ifndef SOL_IPV6
93# define SOL_IPV6 41
94#endif
95#ifndef SOL_ICMPV6
96# define SOL_ICMPV6 58
97#endif
98#ifndef SOL_SCTP
99# define SOL_SCTP 132
100#endif
101#ifndef SOL_UDPLITE
102# define SOL_UDPLITE 136
103#endif
104#ifndef SOL_RAW
105# define SOL_RAW 255
106#endif
107#ifndef SOL_IPX
108# define SOL_IPX 256
109#endif
110#ifndef SOL_AX25
111# define SOL_AX25 257
112#endif
113#ifndef SOL_ATALK
114# define SOL_ATALK 258
115#endif
116#ifndef SOL_NETROM
117# define SOL_NETROM 259
118#endif
119#ifndef SOL_ROSE
120# define SOL_ROSE 260
121#endif
122#ifndef SOL_DECNET
123# define SOL_DECNET 261
124#endif
125#ifndef SOL_X25
126# define SOL_X25 262
127#endif
128#ifndef SOL_PACKET
129# define SOL_PACKET 263
130#endif
131#ifndef SOL_ATM
132# define SOL_ATM 264
133#endif
134#ifndef SOL_AAL
135# define SOL_AAL 265
136#endif
137#ifndef SOL_IRDA
138# define SOL_IRDA 266
139#endif
140#ifndef SOL_NETBEUI
141# define SOL_NETBEUI 267
142#endif
143#ifndef SOL_LLC
144# define SOL_LLC 268
145#endif
146#ifndef SOL_DCCP
147# define SOL_DCCP 269
148#endif
149#ifndef SOL_NETLINK
150# define SOL_NETLINK 270
151#endif
152#ifndef SOL_TIPC
153# define SOL_TIPC 271
154#endif
155#ifndef SOL_RXRPC
156# define SOL_RXRPC 272
157#endif
158#ifndef SOL_PPPOL2TP
159# define SOL_PPPOL2TP 273
160#endif
161#ifndef SOL_BLUETOOTH
162# define SOL_BLUETOOTH 274
163#endif
164#ifndef SOL_PNPIPE
165# define SOL_PNPIPE 275
166#endif
167#ifndef SOL_RDS
168# define SOL_RDS 276
169#endif
170#ifndef SOL_IUCV
171# define SOL_IUCV 277
172#endif
173#ifndef SOL_CAIF
174# define SOL_CAIF 278
175#endif
176#ifndef SOL_ALG
177# define SOL_ALG 279
178#endif
179#ifndef SOL_NFC
180# define SOL_NFC 280
181#endif
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000182#include "xlat/socketlayers.h"
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +0000183
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000184#include "xlat/inet_protocols.h"
Masatake YAMATO2394a3d2014-03-11 23:37:37 +0900185
186#ifdef PF_NETLINK
Dmitry V. Levind9f7e7a2015-01-09 03:03:39 +0000187# if !defined NETLINK_SOCK_DIAG && defined NETLINK_INET_DIAG
188# define NETLINK_SOCK_DIAG NETLINK_INET_DIAG
189# endif
190# include "xlat/netlink_protocols.h"
Masatake YAMATO2394a3d2014-03-11 23:37:37 +0900191#endif
192
Lubomir Rintelc400a1c2014-10-03 11:40:28 +0200193#if defined(HAVE_BLUETOOTH_BLUETOOTH_H)
194# include "xlat/bt_protocols.h"
195#endif
196
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +0000197#include "xlat/msg_flags.h"
Wichert Akkerman7987cdf2000-07-05 16:05:39 +0000198
Wichert Akkermanb0c598f2002-04-01 12:48:06 +0000199#if defined(AF_PACKET) /* from e.g. linux/if_packet.h */
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +0000200# include "xlat/af_packet_types.h"
201#endif
Wichert Akkermanb0c598f2002-04-01 12:48:06 +0000202
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000203void
Dmitry V. Levinb6c32f42007-10-08 23:31:19 +0000204printsock(struct tcb *tcp, long addr, int addrlen)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000205{
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000206 union {
207 char pad[128];
208 struct sockaddr sa;
209 struct sockaddr_in sin;
210 struct sockaddr_un sau;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000211#ifdef HAVE_INET_NTOP
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000212 struct sockaddr_in6 sa6;
213#endif
Denys Vlasenko84703742012-02-25 02:38:52 +0100214#if defined(AF_IPX)
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000215 struct sockaddr_ipx sipx;
216#endif
217#ifdef AF_PACKET
218 struct sockaddr_ll ll;
219#endif
220#ifdef AF_NETLINK
221 struct sockaddr_nl nl;
222#endif
Lubomir Rintelc400a1c2014-10-03 11:40:28 +0200223#ifdef HAVE_BLUETOOTH_BLUETOOTH_H
224 struct sockaddr_hci hci;
225 struct sockaddr_l2 l2;
226 struct sockaddr_rc rc;
227 struct sockaddr_sco sco;
228#endif
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000229 } addrbuf;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000230 char string_addr[100];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000231
232 if (addr == 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200233 tprints("NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000234 return;
235 }
236 if (!verbose(tcp)) {
237 tprintf("%#lx", addr);
238 return;
239 }
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000240
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000241 if (addrlen < 2 || addrlen > (int) sizeof(addrbuf))
Dmitry V. Levinb6c32f42007-10-08 23:31:19 +0000242 addrlen = sizeof(addrbuf);
243
244 memset(&addrbuf, 0, sizeof(addrbuf));
245 if (umoven(tcp, addr, addrlen, addrbuf.pad) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200246 tprints("{...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000247 return;
248 }
Dmitry V. Levinb6c32f42007-10-08 23:31:19 +0000249 addrbuf.pad[sizeof(addrbuf.pad) - 1] = '\0';
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000250
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200251 tprints("{sa_family=");
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000252 printxval(addrfams, addrbuf.sa.sa_family, "AF_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200253 tprints(", ");
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000254
255 switch (addrbuf.sa.sa_family) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000256 case AF_UNIX:
Dmitry V. Levinb6c32f42007-10-08 23:31:19 +0000257 if (addrlen == 2) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200258 tprints("NULL");
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000259 } else if (addrbuf.sau.sun_path[0]) {
Dmitry V. Levinc86340e2012-02-22 00:23:52 +0000260 tprints("sun_path=");
Dmitry V. Levind9177df2015-01-29 07:34:40 +0000261 print_quoted_string(addrbuf.sau.sun_path,
Dmitry V. Levinf57bd112015-01-29 15:19:21 +0000262 sizeof(addrbuf.sau.sun_path) + 1,
Dmitry V. Levind9177df2015-01-29 07:34:40 +0000263 QUOTE_0_TERMINATED);
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000264 } else {
Dmitry V. Levinc86340e2012-02-22 00:23:52 +0000265 tprints("sun_path=@");
Dmitry V. Levind9177df2015-01-29 07:34:40 +0000266 print_quoted_string(addrbuf.sau.sun_path + 1,
Dmitry V. Levinf57bd112015-01-29 15:19:21 +0000267 sizeof(addrbuf.sau.sun_path),
Dmitry V. Levind9177df2015-01-29 07:34:40 +0000268 QUOTE_0_TERMINATED);
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000269 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000270 break;
271 case AF_INET:
John Hughes1fcb1d62001-09-18 15:56:53 +0000272 tprintf("sin_port=htons(%u), sin_addr=inet_addr(\"%s\")",
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000273 ntohs(addrbuf.sin.sin_port), inet_ntoa(addrbuf.sin.sin_addr));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000274 break;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000275#ifdef HAVE_INET_NTOP
276 case AF_INET6:
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000277 inet_ntop(AF_INET6, &addrbuf.sa6.sin6_addr, string_addr, sizeof(string_addr));
Wichert Akkermanf1850652001-02-16 20:29:03 +0000278 tprintf("sin6_port=htons(%u), inet_pton(AF_INET6, \"%s\", &sin6_addr), sin6_flowinfo=%u",
279 ntohs(addrbuf.sa6.sin6_port), string_addr,
280 addrbuf.sa6.sin6_flowinfo);
Roland McGrath6d2b3492002-12-30 00:51:30 +0000281#ifdef HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID
Wichert Akkermanf1850652001-02-16 20:29:03 +0000282 {
283#if defined(HAVE_IF_INDEXTONAME) && defined(IN6_IS_ADDR_LINKLOCAL) && defined(IN6_IS_ADDR_MC_LINKLOCAL)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200284 int numericscope = 0;
285 if (IN6_IS_ADDR_LINKLOCAL(&addrbuf.sa6.sin6_addr)
286 || IN6_IS_ADDR_MC_LINKLOCAL(&addrbuf.sa6.sin6_addr)) {
287 char scopebuf[IFNAMSIZ + 1];
Roland McGrath6d2b3492002-12-30 00:51:30 +0000288
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200289 if (if_indextoname(addrbuf.sa6.sin6_scope_id, scopebuf) == NULL)
290 numericscope++;
Dmitry V. Levin0e9d5942015-01-24 20:23:02 +0000291 else {
292 tprints(", sin6_scope_id=if_nametoindex(");
293 print_quoted_string(scopebuf,
294 sizeof(scopebuf),
295 QUOTE_0_TERMINATED);
296 tprints(")");
297 }
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200298 } else
299 numericscope++;
Roland McGrath6d2b3492002-12-30 00:51:30 +0000300
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200301 if (numericscope)
Wichert Akkermanf1850652001-02-16 20:29:03 +0000302#endif
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200303 tprintf(", sin6_scope_id=%u", addrbuf.sa6.sin6_scope_id);
Wichert Akkermanf1850652001-02-16 20:29:03 +0000304 }
305#endif
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200306 break;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000307#endif
Denys Vlasenko84703742012-02-25 02:38:52 +0100308#if defined(AF_IPX)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000309 case AF_IPX:
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000310 {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000311 int i;
John Hughes1fcb1d62001-09-18 15:56:53 +0000312 tprintf("sipx_port=htons(%u), ",
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000313 ntohs(addrbuf.sipx.sipx_port));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000314 /* Yes, I know, this does not look too
315 * strace-ish, but otherwise the IPX
316 * addresses just look monstrous...
317 * Anyways, feel free if you don't like
Roland McGrath6d2b3492002-12-30 00:51:30 +0000318 * this way.. :)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000319 */
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000320 tprintf("%08lx:", (unsigned long)ntohl(addrbuf.sipx.sipx_network));
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200321 for (i = 0; i < IPX_NODE_LEN; i++)
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000322 tprintf("%02x", addrbuf.sipx.sipx_node[i]);
323 tprintf("/[%02x]", addrbuf.sipx.sipx_type);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000324 }
325 break;
Denys Vlasenko84703742012-02-25 02:38:52 +0100326#endif /* AF_IPX */
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000327#ifdef AF_PACKET
328 case AF_PACKET:
329 {
330 int i;
Wichert Akkermanb0c598f2002-04-01 12:48:06 +0000331 tprintf("proto=%#04x, if%d, pkttype=",
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000332 ntohs(addrbuf.ll.sll_protocol),
Wichert Akkermanb0c598f2002-04-01 12:48:06 +0000333 addrbuf.ll.sll_ifindex);
Dmitry V. Levin13063652014-09-10 00:13:56 +0000334 printxval(af_packet_types, addrbuf.ll.sll_pkttype, "PACKET_???");
Wichert Akkermanb0c598f2002-04-01 12:48:06 +0000335 tprintf(", addr(%d)={%d, ",
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000336 addrbuf.ll.sll_halen,
337 addrbuf.ll.sll_hatype);
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200338 for (i = 0; i < addrbuf.ll.sll_halen; i++)
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000339 tprintf("%02x", addrbuf.ll.sll_addr[i]);
340 }
341 break;
342
Denys Vlasenko84703742012-02-25 02:38:52 +0100343#endif /* AF_PACKET */
Roland McGrath36ef1bc2003-11-06 23:41:23 +0000344#ifdef AF_NETLINK
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000345 case AF_NETLINK:
346 tprintf("pid=%d, groups=%08x", addrbuf.nl.nl_pid, addrbuf.nl.nl_groups);
347 break;
348#endif /* AF_NETLINK */
Lubomir Rintelc400a1c2014-10-03 11:40:28 +0200349#if defined(AF_BLUETOOTH) && defined(HAVE_BLUETOOTH_BLUETOOTH_H)
350 case AF_BLUETOOTH:
351 tprintf("{sco_bdaddr=%02X:%02X:%02X:%02X:%02X:%02X} or "
352 "{rc_bdaddr=%02X:%02X:%02X:%02X:%02X:%02X, rc_channel=%d} or "
353 "{l2_psm=htobs(%d), l2_bdaddr=%02X:%02X:%02X:%02X:%02X:%02X, l2_cid=htobs(%d)} or "
354 "{hci_dev=htobs(%d)}",
355 addrbuf.sco.sco_bdaddr.b[0], addrbuf.sco.sco_bdaddr.b[1],
356 addrbuf.sco.sco_bdaddr.b[2], addrbuf.sco.sco_bdaddr.b[3],
357 addrbuf.sco.sco_bdaddr.b[4], addrbuf.sco.sco_bdaddr.b[5],
358 addrbuf.rc.rc_bdaddr.b[0], addrbuf.rc.rc_bdaddr.b[1],
359 addrbuf.rc.rc_bdaddr.b[2], addrbuf.rc.rc_bdaddr.b[3],
360 addrbuf.rc.rc_bdaddr.b[4], addrbuf.rc.rc_bdaddr.b[5],
361 addrbuf.rc.rc_channel,
362 btohs(addrbuf.l2.l2_psm), addrbuf.l2.l2_bdaddr.b[0],
363 addrbuf.l2.l2_bdaddr.b[1], addrbuf.l2.l2_bdaddr.b[2],
364 addrbuf.l2.l2_bdaddr.b[3], addrbuf.l2.l2_bdaddr.b[4],
365 addrbuf.l2.l2_bdaddr.b[5], btohs(addrbuf.l2.l2_cid),
366 btohs(addrbuf.hci.hci_dev));
367 break;
368#endif /* AF_BLUETOOTH && HAVE_BLUETOOTH_BLUETOOTH_H */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000369 /* AF_AX25 AF_APPLETALK AF_NETROM AF_BRIDGE AF_AAL5
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000370 AF_X25 AF_ROSE etc. still need to be done */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000371
372 default:
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200373 tprints("sa_data=");
Dmitry V. Levind0dceaf2015-01-30 13:36:49 +0000374 print_quoted_string(addrbuf.sa.sa_data,
375 sizeof(addrbuf.sa.sa_data), 0);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000376 break;
377 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200378 tprints("}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000379}
380
381#if HAVE_SENDMSG
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000382# ifndef SCM_SECURITY
383# define SCM_SECURITY 0x03
384# endif
385# include "xlat/scmvals.h"
Roland McGrath50770822004-10-06 22:11:51 +0000386
Dmitry V. Levin05884d82015-01-24 01:08:57 +0000387#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
388struct cmsghdr32 {
389 uint32_t cmsg_len;
390 int cmsg_level;
391 int cmsg_type;
392};
393#endif
394
395typedef union {
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000396 char *ptr;
Dmitry V. Levin05884d82015-01-24 01:08:57 +0000397 struct cmsghdr *cmsg;
398#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
399 struct cmsghdr32 *cmsg32;
400#endif
401} union_cmsghdr;
402
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000403static bool
404print_scm_rights(struct tcb *tcp, size_t cmsg_size, char *ptr, size_t cmsg_len)
Roland McGrath50770822004-10-06 22:11:51 +0000405{
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000406 if (cmsg_size + sizeof(int) > cmsg_len)
407 return false;
Dmitry V. Levin05884d82015-01-24 01:08:57 +0000408
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000409 int *fds = (int *) (ptr + cmsg_size);
410 bool seen = false;
411
412 tprints(", [");
413 while ((char *) fds < (ptr + cmsg_len)) {
414 if (seen)
415 tprints(", ");
416 else
417 seen = true;
418 printfd(tcp, *fds++);
419 }
420 tprints("]}");
421 return true;
422}
423
424static bool
425print_scm_creds(struct tcb *tcp, size_t cmsg_size, char *ptr, size_t cmsg_len)
426{
427 if (cmsg_size + sizeof(struct ucred) > cmsg_len)
428 return false;
429
430 const struct ucred *uc = (void *) (ptr + cmsg_size);
431
432 tprintf(", {pid=%u, uid=%u, gid=%u}}",
433 (unsigned) uc->pid, (unsigned) uc->uid, (unsigned) uc->gid);
434 return true;
435}
436
437static bool
438print_scm_security(struct tcb *tcp, size_t cmsg_size, char *ptr, size_t cmsg_len)
439{
440 if (cmsg_size + sizeof(char) > cmsg_len)
441 return false;
442
443 const char *label = (const char *) (ptr + cmsg_size);
444 const size_t label_len = cmsg_len - cmsg_size;
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000445
Dmitry V. Levin513e96e2015-01-26 01:17:08 +0000446 tprints(", ");
447 print_quoted_string(label, label_len, 0);
448 tprints("}");
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000449
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000450 return true;
451}
452
453static void
454printcmsghdr(struct tcb *tcp, unsigned long addr, size_t len)
455{
456 const size_t cmsg_size =
Dmitry V. Levin05884d82015-01-24 01:08:57 +0000457#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
458 (current_wordsize < sizeof(long)) ? sizeof(struct cmsghdr32) :
459#endif
460 sizeof(struct cmsghdr);
461
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000462 char *buf = len < cmsg_size ? NULL : malloc(len);
463 if (!buf || umoven(tcp, addr, len, buf) < 0) {
Roland McGrath50770822004-10-06 22:11:51 +0000464 tprintf(", msg_control=%#lx", addr);
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000465 free(buf);
Roland McGrath50770822004-10-06 22:11:51 +0000466 return;
467 }
468
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000469 union_cmsghdr u = { .ptr = buf };
470
471 tprints(", [");
472 while (len >= cmsg_size) {
473 size_t cmsg_len =
Dmitry V. Levin05884d82015-01-24 01:08:57 +0000474#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000475 (current_wordsize < sizeof(long)) ? u.cmsg32->cmsg_len :
Dmitry V. Levin05884d82015-01-24 01:08:57 +0000476#endif
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000477 u.cmsg->cmsg_len;
478 int cmsg_level =
Dmitry V. Levin05884d82015-01-24 01:08:57 +0000479#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000480 (current_wordsize < sizeof(long)) ? u.cmsg32->cmsg_level :
Dmitry V. Levin05884d82015-01-24 01:08:57 +0000481#endif
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000482 u.cmsg->cmsg_level;
483 int cmsg_type =
Dmitry V. Levin05884d82015-01-24 01:08:57 +0000484#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000485 (current_wordsize < sizeof(long)) ? u.cmsg32->cmsg_type :
Dmitry V. Levin05884d82015-01-24 01:08:57 +0000486#endif
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000487 u.cmsg->cmsg_type;
Dmitry V. Levin05884d82015-01-24 01:08:57 +0000488
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000489 if (u.ptr != buf)
490 tprints(", ");
491 tprintf("{cmsg_len=%lu, cmsg_level=", (unsigned long) cmsg_len);
492 printxval(socketlayers, cmsg_level, "SOL_???");
493 tprints(", cmsg_type=");
Roland McGrath50770822004-10-06 22:11:51 +0000494
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000495 if (cmsg_len > len)
496 cmsg_len = len;
Roland McGrath96ad7b82005-02-02 03:11:32 +0000497
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000498 if (cmsg_level == SOL_SOCKET) {
499 printxval(scmvals, cmsg_type, "SCM_???");
500 switch (cmsg_type) {
501 case SCM_RIGHTS:
502 if (print_scm_rights(tcp, cmsg_size, u.ptr, cmsg_len))
503 goto next_cmsg;
504 break;
505 case SCM_CREDENTIALS:
506 if (print_scm_creds(tcp, cmsg_size, u.ptr, cmsg_len))
507 goto next_cmsg;
508 break;
509 case SCM_SECURITY:
510 if (print_scm_security(tcp, cmsg_size, u.ptr, cmsg_len))
511 goto next_cmsg;
512 break;
Roland McGrath50770822004-10-06 22:11:51 +0000513 }
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000514 } else {
515 tprintf("%u", cmsg_type);
Roland McGrath50770822004-10-06 22:11:51 +0000516 }
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000517 tprints(", ...}");
518next_cmsg:
519 if (cmsg_len < cmsg_size) {
520 len -= cmsg_size;
521 break;
Roland McGrath50770822004-10-06 22:11:51 +0000522 }
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000523 cmsg_len = (cmsg_len + current_wordsize - 1) &
524 (size_t) ~(current_wordsize - 1);
525 if (cmsg_len >= len) {
526 len = 0;
527 break;
528 }
529 u.ptr += cmsg_len;
530 len -= cmsg_len;
Roland McGrath50770822004-10-06 22:11:51 +0000531 }
Dmitry V. Levinb85a7f32015-01-24 15:20:31 +0000532 if (len)
533 tprints(", ...");
534 tprints("]");
535 free(buf);
Roland McGrath50770822004-10-06 22:11:51 +0000536}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000537
538static void
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200539do_msghdr(struct tcb *tcp, struct msghdr *msg, unsigned long data_size)
Andreas Schwab0873f292010-02-12 21:39:12 +0100540{
541 tprintf("{msg_name(%d)=", msg->msg_namelen);
542 printsock(tcp, (long)msg->msg_name, msg->msg_namelen);
543
544 tprintf(", msg_iov(%lu)=", (unsigned long)msg->msg_iovlen);
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200545 tprint_iov_upto(tcp, (unsigned long)msg->msg_iovlen,
546 (unsigned long)msg->msg_iov, 1, data_size);
Andreas Schwab0873f292010-02-12 21:39:12 +0100547
548#ifdef HAVE_STRUCT_MSGHDR_MSG_CONTROL
549 tprintf(", msg_controllen=%lu", (unsigned long)msg->msg_controllen);
550 if (msg->msg_controllen)
551 printcmsghdr(tcp, (unsigned long) msg->msg_control,
552 msg->msg_controllen);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200553 tprints(", msg_flags=");
Andreas Schwab0873f292010-02-12 21:39:12 +0100554 printflags(msg_flags, msg->msg_flags, "MSG_???");
555#else /* !HAVE_STRUCT_MSGHDR_MSG_CONTROL */
556 tprintf("msg_accrights=%#lx, msg_accrightslen=%u",
557 (unsigned long) msg->msg_accrights, msg->msg_accrightslen);
558#endif /* !HAVE_STRUCT_MSGHDR_MSG_CONTROL */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200559 tprints("}");
Andreas Schwab0873f292010-02-12 21:39:12 +0100560}
561
Denys Vlasenko3e759d42013-02-12 11:57:48 +0100562struct msghdr32 {
563 uint32_t /* void* */ msg_name;
564 uint32_t /* socklen_t */msg_namelen;
565 uint32_t /* iovec* */ msg_iov;
566 uint32_t /* size_t */ msg_iovlen;
567 uint32_t /* void* */ msg_control;
568 uint32_t /* size_t */ msg_controllen;
569 uint32_t /* int */ msg_flags;
570};
571struct mmsghdr32 {
572 struct msghdr32 msg_hdr;
573 uint32_t /* unsigned */ msg_len;
574};
575
Masatake YAMATOcaf6a432014-11-07 01:23:25 +0900576#ifndef HAVE_STRUCT_MMSGHDR
577struct mmsghdr {
578 struct msghdr msg_hdr;
579 unsigned msg_len;
580};
581#endif
582
Masatake YAMATOb2485432014-11-07 01:23:24 +0900583#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
584static void
585copy_from_msghdr32(struct msghdr *to_msg, struct msghdr32 *from_msg32)
586{
587 to_msg->msg_name = (void*)(long)from_msg32->msg_name;
588 to_msg->msg_namelen = from_msg32->msg_namelen;
589 to_msg->msg_iov = (void*)(long)from_msg32->msg_iov;
590 to_msg->msg_iovlen = from_msg32->msg_iovlen;
591 to_msg->msg_control = (void*)(long)from_msg32->msg_control;
592 to_msg->msg_controllen = from_msg32->msg_controllen;
593 to_msg->msg_flags = from_msg32->msg_flags;
594}
595#endif
596
Masatake YAMATO02f9f6b2014-10-15 22:11:43 +0900597static bool
598extractmsghdr(struct tcb *tcp, long addr, struct msghdr *msg)
599{
600#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
601 if (current_wordsize == 4) {
602 struct msghdr32 msg32;
603
604 if (umove(tcp, addr, &msg32) < 0)
605 return false;
Masatake YAMATOb2485432014-11-07 01:23:24 +0900606 copy_from_msghdr32(msg, &msg32);
Masatake YAMATO02f9f6b2014-10-15 22:11:43 +0900607 } else
608#endif
609 if (umove(tcp, addr, msg) < 0)
610 return false;
611 return true;
612}
613
Masatake YAMATOa807dce2014-11-07 01:23:26 +0900614static bool
615extractmmsghdr(struct tcb *tcp, long addr, unsigned int idx, struct mmsghdr *mmsg)
616{
617#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
618 if (current_wordsize == 4) {
619 struct mmsghdr32 mmsg32;
620
621 addr += sizeof(struct mmsghdr32) * idx;
622 if (umove(tcp, addr, &mmsg32) < 0)
623 return false;
624
625 copy_from_msghdr32(&mmsg->msg_hdr, &mmsg32.msg_hdr);
626 mmsg->msg_len = mmsg32.msg_len;
627 } else
628#endif
629 {
630 addr += sizeof(*mmsg) * idx;
631 if (umove(tcp, addr, mmsg) < 0)
632 return false;
633 }
634 return true;
635}
636
Andreas Schwab0873f292010-02-12 21:39:12 +0100637static void
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200638printmsghdr(struct tcb *tcp, long addr, unsigned long data_size)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000639{
640 struct msghdr msg;
641
Dmitry V. Levin00244b92015-01-28 01:52:25 +0000642 if (verbose(tcp) && extractmsghdr(tcp, addr, &msg))
Masatake YAMATO02f9f6b2014-10-15 22:11:43 +0900643 do_msghdr(tcp, &msg, data_size);
644 else
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000645 tprintf("%#lx", addr);
Masatake YAMATO02f9f6b2014-10-15 22:11:43 +0900646}
647
648void
649dumpiov_in_msghdr(struct tcb *tcp, long addr)
650{
651 struct msghdr msg;
652
653 if (extractmsghdr(tcp, addr, &msg))
654 dumpiov(tcp, msg.msg_iovlen, (long)msg.msg_iov);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000655}
656
Andreas Schwab0873f292010-02-12 21:39:12 +0100657static void
Dmitry V. Levin5ea97652012-05-01 20:41:40 +0000658printmmsghdr(struct tcb *tcp, long addr, unsigned int idx, unsigned long msg_len)
Andreas Schwab0873f292010-02-12 21:39:12 +0100659{
Masatake YAMATOcaf6a432014-11-07 01:23:25 +0900660 struct mmsghdr mmsg;
Andreas Schwab0873f292010-02-12 21:39:12 +0100661
Masatake YAMATOa807dce2014-11-07 01:23:26 +0900662 if (extractmmsghdr(tcp, addr, idx, &mmsg)) {
663 tprints("{");
664 do_msghdr(tcp, &mmsg.msg_hdr, msg_len ? msg_len : mmsg.msg_len);
665 tprintf(", %u}", mmsg.msg_len);
Andreas Schwab0873f292010-02-12 21:39:12 +0100666 }
Masatake YAMATOa807dce2014-11-07 01:23:26 +0900667 else
668 tprintf("%#lx", addr);
Andreas Schwab0873f292010-02-12 21:39:12 +0100669}
Andreas Schwab0873f292010-02-12 21:39:12 +0100670
Dmitry V. Levin7af9f352012-03-11 23:59:29 +0000671static void
Dmitry V. Levin5ea97652012-05-01 20:41:40 +0000672decode_mmsg(struct tcb *tcp, unsigned long msg_len)
Dmitry V. Levin7af9f352012-03-11 23:59:29 +0000673{
674 /* mmsgvec */
675 if (syserror(tcp)) {
676 tprintf("%#lx", tcp->u_arg[1]);
677 } else {
678 unsigned int len = tcp->u_rval;
679 unsigned int i;
680
681 tprints("{");
682 for (i = 0; i < len; ++i) {
683 if (i)
684 tprints(", ");
Dmitry V. Levin5ea97652012-05-01 20:41:40 +0000685 printmmsghdr(tcp, tcp->u_arg[1], i, msg_len);
Dmitry V. Levin7af9f352012-03-11 23:59:29 +0000686 }
687 tprints("}");
688 }
689 /* vlen */
690 tprintf(", %u, ", (unsigned int) tcp->u_arg[2]);
691 /* flags */
692 printflags(msg_flags, tcp->u_arg[3], "MSG_???");
693}
694
Masatake YAMATOa807dce2014-11-07 01:23:26 +0900695void
696dumpiov_in_mmsghdr(struct tcb *tcp, long addr)
697{
698 unsigned int len = tcp->u_rval;
699 unsigned int i;
700 struct mmsghdr mmsg;
701
702 for (i = 0; i < len; ++i) {
703 if (extractmmsghdr(tcp, addr, i, &mmsg)) {
704 tprintf(" = %lu buffers in vector %u\n",
705 (unsigned long)mmsg.msg_hdr.msg_iovlen, i);
706 dumpiov(tcp, mmsg.msg_hdr.msg_iovlen,
707 (long)mmsg.msg_hdr.msg_iov);
708 }
709 }
710}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000711#endif /* HAVE_SENDMSG */
712
Dmitry V. Levin8a550d72008-11-10 17:21:23 +0000713/*
714 * low bits of the socket type define real socket type,
715 * other bits are socket type flags.
716 */
717static void
Dmitry V. Levin1e42f2d2014-09-10 17:48:28 +0000718tprint_sock_type(int flags)
Dmitry V. Levin8a550d72008-11-10 17:21:23 +0000719{
720 const char *str = xlookup(socktypes, flags & SOCK_TYPE_MASK);
721
Denys Vlasenko7b609d52011-06-22 14:32:43 +0200722 if (str) {
Denys Vlasenko5940e652011-09-01 09:55:05 +0200723 tprints(str);
Dmitry V. Levin8a550d72008-11-10 17:21:23 +0000724 flags &= ~SOCK_TYPE_MASK;
725 if (!flags)
726 return;
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200727 tprints("|");
Dmitry V. Levin8a550d72008-11-10 17:21:23 +0000728 }
729 printflags(sock_type_flags, flags, "SOCK_???");
730}
731
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000732int
Dmitry V. Levin8a550d72008-11-10 17:21:23 +0000733sys_socket(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000734{
735 if (entering(tcp)) {
736 printxval(domains, tcp->u_arg[0], "PF_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200737 tprints(", ");
Dmitry V. Levin1e42f2d2014-09-10 17:48:28 +0000738 tprint_sock_type(tcp->u_arg[1]);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200739 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000740 switch (tcp->u_arg[0]) {
741 case PF_INET:
Roland McGrath8758e542003-06-23 23:39:59 +0000742#ifdef PF_INET6
743 case PF_INET6:
744#endif
Masatake YAMATO2394a3d2014-03-11 23:37:37 +0900745 printxval(inet_protocols, tcp->u_arg[2], "IPPROTO_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000746 break;
747#ifdef PF_IPX
748 case PF_IPX:
749 /* BTW: I don't believe this.. */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200750 tprints("[");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000751 printxval(domains, tcp->u_arg[2], "PF_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200752 tprints("]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000753 break;
754#endif /* PF_IPX */
Masatake YAMATO2394a3d2014-03-11 23:37:37 +0900755#ifdef PF_NETLINK
756 case PF_NETLINK:
757 printxval(netlink_protocols, tcp->u_arg[2], "NETLINK_???");
758 break;
759#endif
Lubomir Rintelc400a1c2014-10-03 11:40:28 +0200760#if defined(PF_BLUETOOTH) && defined(HAVE_BLUETOOTH_BLUETOOTH_H)
761 case PF_BLUETOOTH:
762 printxval(bt_protocols, tcp->u_arg[2], "BTPROTO_???");
763 break;
764#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000765 default:
766 tprintf("%lu", tcp->u_arg[2]);
767 break;
768 }
769 }
770 return 0;
771}
772
John Hughesbdf48f52001-03-06 15:08:09 +0000773int
Denys Vlasenko12014262011-05-30 14:00:14 +0200774sys_bind(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000775{
776 if (entering(tcp)) {
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800777 printfd(tcp, tcp->u_arg[0]);
778 tprints(", ");
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000779 printsock(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000780 tprintf(", %lu", tcp->u_arg[2]);
781 }
782 return 0;
783}
784
785int
Denys Vlasenko12014262011-05-30 14:00:14 +0200786sys_connect(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000787{
788 return sys_bind(tcp);
789}
790
791int
Denys Vlasenko12014262011-05-30 14:00:14 +0200792sys_listen(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000793{
794 if (entering(tcp)) {
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800795 printfd(tcp, tcp->u_arg[0]);
796 tprints(", ");
797 tprintf("%lu", tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000798 }
799 return 0;
800}
801
Paolo Bonzini705ff102009-08-14 12:34:05 +0200802static int
Dmitry V. Levin15114ec2014-08-06 16:46:13 +0000803do_sockname(struct tcb *tcp, int flags_arg)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000804{
805 if (entering(tcp)) {
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800806 printfd(tcp, tcp->u_arg[0]);
807 tprints(", ");
Paolo Bonzini705ff102009-08-14 12:34:05 +0200808 return 0;
809 }
810 if (!tcp->u_arg[2])
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000811 tprintf("%#lx, NULL", tcp->u_arg[1]);
812 else {
Dmitry V. Levin2fc66152009-01-01 22:47:51 +0000813 int len;
814 if (tcp->u_arg[1] == 0 || syserror(tcp)
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200815 || umove(tcp, tcp->u_arg[2], &len) < 0) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000816 tprintf("%#lx", tcp->u_arg[1]);
817 } else {
Dmitry V. Levin2fc66152009-01-01 22:47:51 +0000818 printsock(tcp, tcp->u_arg[1], len);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000819 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200820 tprints(", ");
Dmitry V. Levin2fc66152009-01-01 22:47:51 +0000821 printnum_int(tcp, tcp->u_arg[2], "%u");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000822 }
Paolo Bonzini705ff102009-08-14 12:34:05 +0200823 if (flags_arg >= 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200824 tprints(", ");
Paolo Bonzini705ff102009-08-14 12:34:05 +0200825 printflags(sock_type_flags, tcp->u_arg[flags_arg],
826 "SOCK_???");
827 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000828 return 0;
829}
830
831int
Paolo Bonzini705ff102009-08-14 12:34:05 +0200832sys_accept(struct tcb *tcp)
833{
Dmitry V. Levin15114ec2014-08-06 16:46:13 +0000834 do_sockname(tcp, -1);
835 return RVAL_FD;
Paolo Bonzini705ff102009-08-14 12:34:05 +0200836}
837
Paolo Bonzini705ff102009-08-14 12:34:05 +0200838int
839sys_accept4(struct tcb *tcp)
840{
Dmitry V. Levin15114ec2014-08-06 16:46:13 +0000841 do_sockname(tcp, 3);
842 return RVAL_FD;
Paolo Bonzini705ff102009-08-14 12:34:05 +0200843}
Paolo Bonzini705ff102009-08-14 12:34:05 +0200844
845int
Denys Vlasenko12014262011-05-30 14:00:14 +0200846sys_send(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000847{
848 if (entering(tcp)) {
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800849 printfd(tcp, tcp->u_arg[0]);
850 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000851 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
852 tprintf(", %lu, ", tcp->u_arg[2]);
853 /* flags */
Roland McGrathb2dee132005-06-01 19:02:36 +0000854 printflags(msg_flags, tcp->u_arg[3], "MSG_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000855 }
856 return 0;
857}
858
859int
Denys Vlasenko12014262011-05-30 14:00:14 +0200860sys_sendto(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000861{
862 if (entering(tcp)) {
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800863 printfd(tcp, tcp->u_arg[0]);
864 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000865 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
866 tprintf(", %lu, ", tcp->u_arg[2]);
867 /* flags */
Roland McGrathb2dee132005-06-01 19:02:36 +0000868 printflags(msg_flags, tcp->u_arg[3], "MSG_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000869 /* to address */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200870 tprints(", ");
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000871 printsock(tcp, tcp->u_arg[4], tcp->u_arg[5]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000872 /* to length */
873 tprintf(", %lu", tcp->u_arg[5]);
874 }
875 return 0;
876}
877
878#ifdef HAVE_SENDMSG
879
880int
Denys Vlasenko12014262011-05-30 14:00:14 +0200881sys_sendmsg(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000882{
883 if (entering(tcp)) {
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800884 printfd(tcp, tcp->u_arg[0]);
885 tprints(", ");
Dmitry V. Levin043b5f82012-05-01 20:30:02 +0000886 printmsghdr(tcp, tcp->u_arg[1], (unsigned long) -1L);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000887 /* flags */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200888 tprints(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +0000889 printflags(msg_flags, tcp->u_arg[2], "MSG_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000890 }
891 return 0;
892}
893
Dmitry V. Levin7af9f352012-03-11 23:59:29 +0000894int
895sys_sendmmsg(struct tcb *tcp)
896{
897 if (entering(tcp)) {
898 /* sockfd */
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800899 printfd(tcp, tcp->u_arg[0]);
900 tprints(", ");
Dmitry V. Levin7af9f352012-03-11 23:59:29 +0000901 if (!verbose(tcp)) {
902 tprintf("%#lx, %u, ",
903 tcp->u_arg[1], (unsigned int) tcp->u_arg[2]);
904 printflags(msg_flags, tcp->u_arg[3], "MSG_???");
905 }
906 } else {
907 if (verbose(tcp))
Dmitry V. Levin5ea97652012-05-01 20:41:40 +0000908 decode_mmsg(tcp, (unsigned long) -1L);
Dmitry V. Levin7af9f352012-03-11 23:59:29 +0000909 }
910 return 0;
911}
912
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000913#endif /* HAVE_SENDMSG */
914
915int
Denys Vlasenko12014262011-05-30 14:00:14 +0200916sys_recv(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000917{
918 if (entering(tcp)) {
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800919 printfd(tcp, tcp->u_arg[0]);
920 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000921 } else {
922 if (syserror(tcp))
923 tprintf("%#lx", tcp->u_arg[1]);
924 else
925 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
926
927 tprintf(", %lu, ", tcp->u_arg[2]);
Roland McGrathb2dee132005-06-01 19:02:36 +0000928 printflags(msg_flags, tcp->u_arg[3], "MSG_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000929 }
930 return 0;
931}
932
933int
Denys Vlasenko12014262011-05-30 14:00:14 +0200934sys_recvfrom(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000935{
936 int fromlen;
937
938 if (entering(tcp)) {
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800939 printfd(tcp, tcp->u_arg[0]);
940 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000941 } else {
942 if (syserror(tcp)) {
943 tprintf("%#lx, %lu, %lu, %#lx, %#lx",
944 tcp->u_arg[1], tcp->u_arg[2], tcp->u_arg[3],
945 tcp->u_arg[4], tcp->u_arg[5]);
946 return 0;
947 }
948 /* buf */
949 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
950 /* len */
951 tprintf(", %lu, ", tcp->u_arg[2]);
952 /* flags */
Roland McGrathb2dee132005-06-01 19:02:36 +0000953 printflags(msg_flags, tcp->u_arg[3], "MSG_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000954 /* from address, len */
955 if (!tcp->u_arg[4] || !tcp->u_arg[5]) {
956 if (tcp->u_arg[4] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200957 tprints(", NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000958 else
959 tprintf(", %#lx", tcp->u_arg[4]);
960 if (tcp->u_arg[5] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200961 tprints(", NULL");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000962 else
963 tprintf(", %#lx", tcp->u_arg[5]);
964 return 0;
965 }
966 if (umove(tcp, tcp->u_arg[5], &fromlen) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200967 tprints(", {...}, [?]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000968 return 0;
969 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200970 tprints(", ");
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000971 printsock(tcp, tcp->u_arg[4], tcp->u_arg[5]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000972 /* from length */
973 tprintf(", [%u]", fromlen);
974 }
975 return 0;
976}
977
978#ifdef HAVE_SENDMSG
979
980int
Denys Vlasenko12014262011-05-30 14:00:14 +0200981sys_recvmsg(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000982{
983 if (entering(tcp)) {
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800984 printfd(tcp, tcp->u_arg[0]);
985 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000986 } else {
Dmitry V. Levin00244b92015-01-28 01:52:25 +0000987 if (syserror(tcp))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000988 tprintf("%#lx", tcp->u_arg[1]);
989 else
Denys Vlasenkoe0bc2222012-04-28 14:26:18 +0200990 printmsghdr(tcp, tcp->u_arg[1], tcp->u_rval);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000991 /* flags */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200992 tprints(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +0000993 printflags(msg_flags, tcp->u_arg[2], "MSG_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000994 }
995 return 0;
996}
997
Andreas Schwab0873f292010-02-12 21:39:12 +0100998int
999sys_recvmmsg(struct tcb *tcp)
1000{
Denys Vlasenkoa1d541e2012-01-20 11:04:04 +01001001 /* +5 chars are for "left " prefix */
1002 static char str[5 + TIMESPEC_TEXT_BUFSIZE];
Dmitry V. Levine6591032010-03-29 20:45:48 +04001003
Denys Vlasenkoa1d541e2012-01-20 11:04:04 +01001004 if (entering(tcp)) {
Philippe Ombredanne894c7e32014-02-01 09:57:45 -08001005 printfd(tcp, tcp->u_arg[0]);
1006 tprints(", ");
Dmitry V. Levine6591032010-03-29 20:45:48 +04001007 if (verbose(tcp)) {
1008 sprint_timespec(str, tcp, tcp->u_arg[4]);
Denys Vlasenkoa1d541e2012-01-20 11:04:04 +01001009 /* Abusing tcp->auxstr as temp storage.
1010 * Will be used and freed on syscall exit.
1011 */
Dmitry V. Levine6591032010-03-29 20:45:48 +04001012 tcp->auxstr = strdup(str);
1013 } else {
1014 tprintf("%#lx, %ld, ", tcp->u_arg[1], tcp->u_arg[2]);
1015 printflags(msg_flags, tcp->u_arg[3], "MSG_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001016 tprints(", ");
Dmitry V. Levine6591032010-03-29 20:45:48 +04001017 print_timespec(tcp, tcp->u_arg[4]);
1018 }
1019 return 0;
1020 } else {
1021 if (verbose(tcp)) {
Dmitry V. Levin5ea97652012-05-01 20:41:40 +00001022 decode_mmsg(tcp, 0);
Dmitry V. Levine6591032010-03-29 20:45:48 +04001023 /* timeout on entrance */
1024 tprintf(", %s", tcp->auxstr ? tcp->auxstr : "{...}");
1025 free((void *) tcp->auxstr);
1026 tcp->auxstr = NULL;
1027 }
1028 if (syserror(tcp))
1029 return 0;
1030 if (tcp->u_rval == 0) {
1031 tcp->auxstr = "Timeout";
1032 return RVAL_STR;
1033 }
1034 if (!verbose(tcp))
1035 return 0;
1036 /* timeout on exit */
Denys Vlasenkoa1d541e2012-01-20 11:04:04 +01001037 sprint_timespec(stpcpy(str, "left "), tcp, tcp->u_arg[4]);
Dmitry V. Levine6591032010-03-29 20:45:48 +04001038 tcp->auxstr = str;
1039 return RVAL_STR;
Andreas Schwab0873f292010-02-12 21:39:12 +01001040 }
Andreas Schwab0873f292010-02-12 21:39:12 +01001041}
Andreas Schwab0873f292010-02-12 21:39:12 +01001042
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001043#endif /* HAVE_SENDMSG */
1044
Dmitry V. Levin0ed617b2014-04-25 23:30:54 +00001045#include "xlat/shutdown_modes.h"
Sebastian Pipping9cd38502011-03-03 01:12:25 +01001046
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001047int
Denys Vlasenko12014262011-05-30 14:00:14 +02001048sys_shutdown(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001049{
1050 if (entering(tcp)) {
Philippe Ombredanne894c7e32014-02-01 09:57:45 -08001051 printfd(tcp, tcp->u_arg[0]);
1052 tprints(", ");
Sebastian Pipping9cd38502011-03-03 01:12:25 +01001053 printxval(shutdown_modes, tcp->u_arg[1], "SHUT_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001054 }
1055 return 0;
1056}
1057
1058int
Denys Vlasenko12014262011-05-30 14:00:14 +02001059sys_getsockname(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001060{
Dmitry V. Levin15114ec2014-08-06 16:46:13 +00001061 return do_sockname(tcp, -1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001062}
1063
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001064static int
1065do_pipe(struct tcb *tcp, int flags_arg)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001066{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001067 if (exiting(tcp)) {
1068 if (syserror(tcp)) {
1069 tprintf("%#lx", tcp->u_arg[0]);
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001070 } else {
Dmitry V. Levin78ed3f32015-03-23 00:04:27 +00001071#ifdef HAVE_GETRVAL2
1072 if (flags_arg < 0) {
1073 tprintf("[%lu, %lu]", tcp->u_rval, getrval2(tcp));
1074 } else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001075#endif
Dmitry V. Levin78ed3f32015-03-23 00:04:27 +00001076 {
1077 int fds[2];
1078
1079 if (umove(tcp, tcp->u_arg[0], &fds) < 0)
1080 tprintf("%#lx", tcp->u_arg[0]);
1081 else
1082 tprintf("[%u, %u]", fds[0], fds[1]);
1083 }
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001084 }
1085 if (flags_arg >= 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001086 tprints(", ");
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001087 printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???");
1088 }
1089 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001090 return 0;
1091}
1092
1093int
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001094sys_pipe(struct tcb *tcp)
1095{
1096 return do_pipe(tcp, -1);
1097}
1098
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001099int
1100sys_pipe2(struct tcb *tcp)
1101{
1102 return do_pipe(tcp, 1);
1103}
Dmitry V. Levin4371b102008-11-10 22:53:02 +00001104
1105int
Dmitry V. Levin8a550d72008-11-10 17:21:23 +00001106sys_socketpair(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001107{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001108 int fds[2];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001109
1110 if (entering(tcp)) {
1111 printxval(domains, tcp->u_arg[0], "PF_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001112 tprints(", ");
Dmitry V. Levin1e42f2d2014-09-10 17:48:28 +00001113 tprint_sock_type(tcp->u_arg[1]);
Dmitry V. Levin033fb912014-03-11 22:50:39 +00001114 tprintf(", %lu", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001115 } else {
1116 if (syserror(tcp)) {
Wichert Akkerman2e2553a1999-05-09 00:29:58 +00001117 tprintf(", %#lx", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001118 return 0;
1119 }
Denys Vlasenko7e69ed92015-03-21 19:50:53 +01001120 if (umoven(tcp, tcp->u_arg[3], sizeof fds, fds) < 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001121 tprints(", [...]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001122 else
1123 tprintf(", [%u, %u]", fds[0], fds[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001124 }
1125 return 0;
1126}
1127
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +00001128#include "xlat/sockoptions.h"
1129#include "xlat/sockipoptions.h"
1130#include "xlat/sockipv6options.h"
1131#include "xlat/sockipxoptions.h"
1132#include "xlat/sockrawoptions.h"
1133#include "xlat/sockpacketoptions.h"
1134#include "xlat/socksctpoptions.h"
1135#include "xlat/socktcpoptions.h"
1136
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001137static void
1138print_sockopt_fd_level_name(struct tcb *tcp, int fd, int level, int name)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001139{
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001140 printfd(tcp, fd);
1141 tprints(", ");
John Hughes38ae88d2002-05-23 11:48:58 +00001142 printxval(socketlayers, level, "SOL_??");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +02001143 tprints(", ");
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001144
John Hughes38ae88d2002-05-23 11:48:58 +00001145 switch (level) {
Denys Vlasenko989ebc92012-03-17 04:42:07 +01001146 case SOL_SOCKET:
John Hughes38ae88d2002-05-23 11:48:58 +00001147 printxval(sockoptions, name, "SO_???");
John Hughes38ae88d2002-05-23 11:48:58 +00001148 break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +01001149 case SOL_IP:
John Hughes38ae88d2002-05-23 11:48:58 +00001150 printxval(sockipoptions, name, "IP_???");
1151 break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +01001152 case SOL_IPV6:
Roland McGrath4f6ba692004-08-31 07:01:26 +00001153 printxval(sockipv6options, name, "IPV6_???");
1154 break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +01001155 case SOL_IPX:
John Hughes38ae88d2002-05-23 11:48:58 +00001156 printxval(sockipxoptions, name, "IPX_???");
1157 break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +01001158 case SOL_PACKET:
John Hughes38ae88d2002-05-23 11:48:58 +00001159 printxval(sockpacketoptions, name, "PACKET_???");
John Hughes38ae88d2002-05-23 11:48:58 +00001160 break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +01001161 case SOL_TCP:
John Hughes38ae88d2002-05-23 11:48:58 +00001162 printxval(socktcpoptions, name, "TCP_???");
1163 break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +01001164 case SOL_SCTP:
Holger Hans Peter Freyther7fea79b2011-01-14 11:08:12 +01001165 printxval(socksctpoptions, name, "SCTP_???");
1166 break;
Denys Vlasenko989ebc92012-03-17 04:42:07 +01001167 case SOL_RAW:
John Hughes38ae88d2002-05-23 11:48:58 +00001168 printxval(sockrawoptions, name, "RAW_???");
John Hughes38ae88d2002-05-23 11:48:58 +00001169 break;
John Hughes38ae88d2002-05-23 11:48:58 +00001170
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001171 /* Other SOL_* protocol levels still need work. */
John Hughes38ae88d2002-05-23 11:48:58 +00001172
Denys Vlasenko989ebc92012-03-17 04:42:07 +01001173 default:
John Hughes38ae88d2002-05-23 11:48:58 +00001174 tprintf("%u", name);
1175 }
1176
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001177 tprints(", ");
1178}
1179
1180#ifdef SO_LINGER
1181static void
1182print_linger(struct tcb *tcp, long addr, int len)
1183{
1184 struct linger linger;
1185
1186 if (len != sizeof(linger) ||
1187 umove(tcp, addr, &linger) < 0) {
1188 tprintf("%#lx", addr);
1189 return;
1190 }
1191
1192 tprintf("{onoff=%d, linger=%d}",
1193 linger.l_onoff,
1194 linger.l_linger);
1195}
1196#endif /* SO_LINGER */
1197
1198#ifdef SO_PEERCRED
1199static void
1200print_ucred(struct tcb *tcp, long addr, int len)
1201{
1202 struct ucred uc;
1203
1204 if (len != sizeof(uc) ||
1205 umove(tcp, addr, &uc) < 0) {
1206 tprintf("%#lx", addr);
1207 } else {
1208 tprintf("{pid=%u, uid=%u, gid=%u}",
1209 (unsigned) uc.pid,
1210 (unsigned) uc.uid,
1211 (unsigned) uc.gid);
1212 }
1213}
1214#endif /* SO_PEERCRED */
1215
1216#ifdef PACKET_STATISTICS
1217static void
1218print_tpacket_stats(struct tcb *tcp, long addr, int len)
1219{
1220 struct tpacket_stats stats;
1221
1222 if (len != sizeof(stats) ||
1223 umove(tcp, addr, &stats) < 0) {
1224 tprintf("%#lx", addr);
1225 } else {
1226 tprintf("{packets=%u, drops=%u}",
1227 stats.tp_packets,
1228 stats.tp_drops);
1229 }
1230}
1231#endif /* PACKET_STATISTICS */
1232
1233#ifdef ICMP_FILTER
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +00001234# include "xlat/icmpfilterflags.h"
1235
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001236static void
1237print_icmp_filter(struct tcb *tcp, long addr, int len)
1238{
1239 struct icmp_filter filter;
1240
1241 if (len != sizeof(filter) ||
1242 umove(tcp, addr, &filter) < 0) {
1243 tprintf("%#lx", addr);
1244 return;
1245 }
1246
1247 tprints("~(");
1248 printflags(icmpfilterflags, ~filter.data, "ICMP_???");
1249 tprints(")");
1250}
1251#endif /* ICMP_FILTER */
1252
1253static void
1254print_getsockopt(struct tcb *tcp, int level, int name, long addr, int len)
1255{
1256 if (addr && verbose(tcp))
1257 switch (level) {
1258 case SOL_SOCKET:
1259 switch (name) {
1260#ifdef SO_LINGER
1261 case SO_LINGER:
1262 print_linger(tcp, addr, len);
1263 goto done;
1264#endif
1265#ifdef SO_PEERCRED
1266 case SO_PEERCRED:
1267 print_ucred(tcp, addr, len);
1268 goto done;
1269#endif
1270 }
1271 break;
1272
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001273 case SOL_PACKET:
1274 switch (name) {
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +00001275#ifdef PACKET_STATISTICS
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001276 case PACKET_STATISTICS:
1277 print_tpacket_stats(tcp, addr, len);
1278 goto done;
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +00001279#endif
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001280 }
1281 break;
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001282
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001283 case SOL_RAW:
1284 switch (name) {
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +00001285#ifdef ICMP_FILTER
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001286 case ICMP_FILTER:
1287 print_icmp_filter(tcp, addr, len);
1288 goto done;
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +00001289#endif
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001290 }
1291 break;
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001292 }
1293
John Hughes38ae88d2002-05-23 11:48:58 +00001294 /* default arg printing */
1295
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001296 if (verbose(tcp)) {
1297 if (len == sizeof(int)) {
1298 printnum_int(tcp, addr, "%d");
1299 } else {
1300 printstr(tcp, addr, len);
1301 }
1302 } else {
1303 tprintf("%#lx", addr);
John Hughes38ae88d2002-05-23 11:48:58 +00001304 }
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001305done:
1306 tprintf(", [%d]", len);
1307}
1308
1309int
1310sys_getsockopt(struct tcb *tcp)
1311{
1312 if (entering(tcp)) {
1313 print_sockopt_fd_level_name(tcp, tcp->u_arg[0],
1314 tcp->u_arg[1], tcp->u_arg[2]);
1315 } else {
1316 int len;
1317
1318 if (syserror(tcp) || umove(tcp, tcp->u_arg[4], &len) < 0) {
1319 tprintf("%#lx, %#lx",
1320 tcp->u_arg[3], tcp->u_arg[4]);
1321 } else {
1322 print_getsockopt(tcp, tcp->u_arg[1], tcp->u_arg[2],
1323 tcp->u_arg[3], len);
1324 }
John Hughes38ae88d2002-05-23 11:48:58 +00001325 }
1326 return 0;
1327}
1328
Dmitry V. Levina0a49092015-01-30 01:55:20 +00001329#ifdef MCAST_JOIN_GROUP
1330static void
1331print_group_req(struct tcb *tcp, long addr, int len)
1332{
1333 struct group_req greq;
1334
1335 if (len != sizeof(greq) ||
1336 umove(tcp, addr, &greq) < 0) {
1337 tprintf("%#lx", addr);
1338 return;
1339 }
1340
1341 union {
1342 struct sockaddr *sa;
1343 struct sockaddr_in *sin;
1344#ifdef HAVE_INET_NTOP
1345 struct sockaddr_in6 *sin6;
1346#endif
1347 } a = { .sa = (struct sockaddr *) &greq.gr_group };
1348#ifdef HAVE_INET_NTOP
1349 char str[INET6_ADDRSTRLEN];
1350#endif
1351
1352 tprintf("{gr_interface=%u, gr_group={sa_family=", greq.gr_interface);
1353 printxval(addrfams, a.sa->sa_family, "AF_???");
1354
1355 switch (a.sa->sa_family) {
1356 case AF_INET:
1357 tprintf(", sin_port=htons(%u), sin_addr=inet_addr(\"%s\")}}",
1358 ntohs(a.sin->sin_port),
1359 inet_ntoa(a.sin->sin_addr));
1360 return;
1361#ifdef HAVE_INET_NTOP
1362 case AF_INET6:
1363 if (!inet_ntop(AF_INET6, &a.sin6->sin6_addr, str, sizeof(str)))
1364 break;
1365 tprintf(", sin6_port=htons(%u)"
1366 ", inet_pton(AF_INET6, \"%s\", &sin6_addr)}}",
1367 ntohs(a.sin6->sin6_port), str);
1368 return;
1369#endif /* HAVE_INET_NTOP */
1370 }
1371
1372 tprints(", sa_data=");
1373 print_quoted_string(a.sa->sa_data, sizeof(a.sa->sa_data), 0);
1374 tprintf("}}");
1375
1376}
1377#endif /* MCAST_JOIN_GROUP */
1378
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001379#ifdef PACKET_RX_RING
1380static void
1381print_tpacket_req(struct tcb *tcp, long addr, int len)
1382{
1383 struct tpacket_req req;
1384
1385 if (len != sizeof(req) ||
1386 umove(tcp, addr, &req) < 0) {
1387 tprintf("%#lx", addr);
1388 } else {
1389 tprintf("{block_size=%u, block_nr=%u, "
1390 "frame_size=%u, frame_nr=%u}",
1391 req.tp_block_size,
1392 req.tp_block_nr,
1393 req.tp_frame_size,
1394 req.tp_frame_nr);
1395 }
1396}
1397#endif /* PACKET_RX_RING */
1398
Dmitry V. Levin02f2f092015-01-29 03:26:53 +00001399#ifdef PACKET_ADD_MEMBERSHIP
1400# include "xlat/packet_mreq_type.h"
1401
1402static void
1403print_packet_mreq(struct tcb *tcp, long addr, int len)
1404{
1405 struct packet_mreq mreq;
1406
1407 if (len != sizeof(mreq) ||
1408 umove(tcp, addr, &mreq) < 0) {
1409 tprintf("%#lx", addr);
1410 } else {
1411 unsigned int i;
1412
1413 tprintf("{mr_ifindex=%u, mr_type=", mreq.mr_ifindex);
1414 printxval(packet_mreq_type, mreq.mr_type, "PACKET_MR_???");
1415 tprintf(", mr_alen=%u, mr_address=", mreq.mr_alen);
1416 if (mreq.mr_alen > ARRAY_SIZE(mreq.mr_address))
1417 mreq.mr_alen = ARRAY_SIZE(mreq.mr_address);
1418 for (i = 0; i < mreq.mr_alen; ++i)
1419 tprintf("%02x", mreq.mr_address[i]);
1420 tprints("}");
1421 }
1422}
1423#endif /* PACKET_ADD_MEMBERSHIP */
1424
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001425static void
1426print_setsockopt(struct tcb *tcp, int level, int name, long addr, int len)
1427{
1428 if (addr && verbose(tcp))
1429 switch (level) {
1430 case SOL_SOCKET:
1431 switch (name) {
1432#ifdef SO_LINGER
1433 case SO_LINGER:
1434 print_linger(tcp, addr, len);
1435 goto done;
1436#endif
1437 }
1438 break;
1439
Dmitry V. Levina0a49092015-01-30 01:55:20 +00001440 case SOL_IP:
1441 switch (name) {
1442#ifdef MCAST_JOIN_GROUP
1443 case MCAST_JOIN_GROUP:
1444 case MCAST_LEAVE_GROUP:
1445 print_group_req(tcp, addr, len);
1446 goto done;
1447#endif /* MCAST_JOIN_GROUP */
1448 }
Dmitry V. Levin3910d0f2015-02-08 01:19:06 +00001449 break;
Dmitry V. Levina0a49092015-01-30 01:55:20 +00001450
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001451 case SOL_PACKET:
1452 switch (name) {
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +00001453#ifdef PACKET_RX_RING
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001454 case PACKET_RX_RING:
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +00001455# ifdef PACKET_TX_RING
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001456 case PACKET_TX_RING:
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +00001457# endif
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001458 print_tpacket_req(tcp, addr, len);
1459 goto done;
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +00001460#endif /* PACKET_RX_RING */
1461#ifdef PACKET_ADD_MEMBERSHIP
Dmitry V. Levin02f2f092015-01-29 03:26:53 +00001462 case PACKET_ADD_MEMBERSHIP:
1463 case PACKET_DROP_MEMBERSHIP:
1464 print_packet_mreq(tcp, addr, len);
1465 goto done;
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +00001466#endif /* PACKET_ADD_MEMBERSHIP */
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001467 }
1468 break;
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001469
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001470 case SOL_RAW:
1471 switch (name) {
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +00001472#ifdef ICMP_FILTER
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001473 case ICMP_FILTER:
1474 print_icmp_filter(tcp, addr, len);
1475 goto done;
Dmitry V. Levin6d31c7a2015-01-29 04:42:37 +00001476#endif
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001477 }
1478 break;
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001479 }
1480
1481 /* default arg printing */
1482
1483 if (verbose(tcp)) {
1484 if (len == sizeof(int)) {
1485 printnum_int(tcp, addr, "%d");
1486 } else {
1487 printstr(tcp, addr, len);
1488 }
1489 } else {
1490 tprintf("%#lx", addr);
1491 }
1492done:
1493 tprintf(", %d", len);
1494}
1495
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001496int
Denys Vlasenko12014262011-05-30 14:00:14 +02001497sys_setsockopt(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001498{
1499 if (entering(tcp)) {
Dmitry V. Levin0509c8e2015-01-29 03:11:41 +00001500 print_sockopt_fd_level_name(tcp, tcp->u_arg[0],
1501 tcp->u_arg[1], tcp->u_arg[2]);
1502 print_setsockopt(tcp, tcp->u_arg[1], tcp->u_arg[2],
1503 tcp->u_arg[3], tcp->u_arg[4]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001504 }
1505 return 0;
1506}