blob: 63f5171457e50d744f66b470ab65af029e357139 [file] [log] [blame]
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +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>
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 "msghdr.h"
Dmitry V. Levin8da96682016-07-15 22:58:48 +000034#include <limits.h>
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +000035#include <arpa/inet.h>
36#include <netinet/in.h>
37
38#include "xlat/msg_flags.h"
39#include "xlat/scmvals.h"
40#include "xlat/ip_cmsg_types.h"
41
42#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
43struct cmsghdr32 {
44 uint32_t cmsg_len;
45 int cmsg_level;
46 int cmsg_type;
47};
48#endif
49
50typedef union {
51 char *ptr;
52 struct cmsghdr *cmsg;
53#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
54 struct cmsghdr32 *cmsg32;
55#endif
56} union_cmsghdr;
57
58static void
Dmitry V. Levinb7937bd2016-06-30 22:39:02 +000059print_scm_rights(struct tcb *tcp, const void *cmsg_data, const size_t data_len)
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +000060{
61 const int *fds = cmsg_data;
Dmitry V. Levin029d9792016-06-30 22:20:56 +000062 const size_t nfds = data_len / sizeof(*fds);
63 size_t i;
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +000064
Dmitry V. Levindf57a9b2016-06-30 22:49:36 +000065 tprints("[");
Dmitry V. Levin029d9792016-06-30 22:20:56 +000066
67 for (i = 0; i < nfds; ++i) {
68 if (i)
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +000069 tprints(", ");
Dmitry V. Levind35d5ec2016-07-02 21:14:26 +000070 if (abbrev(tcp) && i >= max_strlen) {
71 tprints("...");
72 break;
73 }
Dmitry V. Levin029d9792016-06-30 22:20:56 +000074 printfd(tcp, fds[i]);
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +000075 }
Dmitry V. Levin029d9792016-06-30 22:20:56 +000076
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +000077 tprints("]");
78}
79
80static void
Dmitry V. Levinb7937bd2016-06-30 22:39:02 +000081print_scm_creds(struct tcb *tcp, const void *cmsg_data, const size_t data_len)
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +000082{
83 const struct ucred *uc = cmsg_data;
84
Dmitry V. Levindf57a9b2016-06-30 22:49:36 +000085 tprintf("{pid=%u, uid=%u, gid=%u}",
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +000086 (unsigned) uc->pid, (unsigned) uc->uid, (unsigned) uc->gid);
87}
88
89static void
90print_scm_security(struct tcb *tcp, const void *cmsg_data,
91 const size_t data_len)
92{
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +000093 print_quoted_string(cmsg_data, data_len, 0);
94}
95
96static void
97print_cmsg_ip_pktinfo(struct tcb *tcp, const void *cmsg_data,
98 const size_t data_len)
99{
100 const struct in_pktinfo *info = cmsg_data;
101
Dmitry V. Levindf57a9b2016-06-30 22:49:36 +0000102 tprints("{ipi_ifindex=");
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000103 print_ifindex(info->ipi_ifindex);
Dmitry V. Levindb0e6e12016-06-29 22:07:20 +0000104 tprintf(", ipi_spec_dst=inet_addr(\"%s\")",
105 inet_ntoa(info->ipi_spec_dst));
106 tprintf(", ipi_addr=inet_addr(\"%s\")}",
107 inet_ntoa(info->ipi_addr));
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000108}
109
110static void
Dmitry V. Levinb7937bd2016-06-30 22:39:02 +0000111print_cmsg_uint(struct tcb *tcp, const void *cmsg_data, const size_t data_len)
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000112{
Dmitry V. Levinb7937bd2016-06-30 22:39:02 +0000113 const unsigned int *p = cmsg_data;
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000114
Dmitry V. Levindf57a9b2016-06-30 22:49:36 +0000115 tprintf("[%u]", *p);
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000116}
117
118static void
Dmitry V. Levindf57a9b2016-06-30 22:49:36 +0000119print_cmsg_uint8_t(struct tcb *tcp, const void *cmsg_data,
120 const size_t data_len)
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000121{
Dmitry V. Levindf57a9b2016-06-30 22:49:36 +0000122 const uint8_t *p = cmsg_data;
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000123
Dmitry V. Levindf57a9b2016-06-30 22:49:36 +0000124 tprintf("[%#x]", *p);
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000125}
126
127static void
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000128print_cmsg_ip_opts(struct tcb *tcp, const void *cmsg_data,
129 const size_t data_len)
130{
131 const unsigned char *opts = cmsg_data;
132 size_t i;
133
Dmitry V. Levindf57a9b2016-06-30 22:49:36 +0000134 tprints("[");
Dmitry V. Levin2a897372016-06-28 22:25:10 +0000135 for (i = 0; i < data_len; ++i) {
136 if (i)
137 tprints(", ");
Dmitry V. Levin67135822016-07-02 21:14:48 +0000138 if (abbrev(tcp) && i >= max_strlen) {
139 tprints("...");
140 break;
141 }
Dmitry V. Levin2a897372016-06-28 22:25:10 +0000142 tprintf("0x%02x", opts[i]);
143 }
144 tprints("]");
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000145}
146
Dmitry V. Levindf57a9b2016-06-30 22:49:36 +0000147struct sock_ee {
148 uint32_t ee_errno;
149 uint8_t ee_origin;
150 uint8_t ee_type;
151 uint8_t ee_code;
152 uint8_t ee_pad;
153 uint32_t ee_info;
154 uint32_t ee_data;
155 struct sockaddr_in offender;
156};
157
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000158static void
159print_cmsg_ip_recverr(struct tcb *tcp, const void *cmsg_data,
160 const size_t data_len)
161{
Dmitry V. Levindf57a9b2016-06-30 22:49:36 +0000162 const struct sock_ee *const err = cmsg_data;
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000163
Dmitry V. Levindf57a9b2016-06-30 22:49:36 +0000164 tprintf("{ee_errno=%u, ee_origin=%u, ee_type=%u, ee_code=%u"
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000165 ", ee_info=%u, ee_data=%u, offender=",
166 err->ee_errno, err->ee_origin, err->ee_type,
167 err->ee_code, err->ee_info, err->ee_data);
168 print_sockaddr(tcp, &err->offender, sizeof(err->offender));
169 tprints("}");
170}
171
172static void
173print_cmsg_ip_origdstaddr(struct tcb *tcp, const void *cmsg_data,
174 const size_t data_len)
175{
Dmitry V. Levindfeea692016-06-30 22:26:35 +0000176 const int addr_len =
177 data_len > sizeof(struct sockaddr_storage)
178 ? sizeof(struct sockaddr_storage) : data_len;
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000179
Dmitry V. Levindfeea692016-06-30 22:26:35 +0000180 print_sockaddr(tcp, cmsg_data, addr_len);
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000181}
182
Dmitry V. Levindf57a9b2016-06-30 22:49:36 +0000183typedef void (* const cmsg_printer)(struct tcb *, const void *, size_t);
184
185static const struct {
186 const cmsg_printer printer;
187 const size_t min_len;
188} cmsg_socket_printers[] = {
189 [SCM_RIGHTS] = { print_scm_rights, sizeof(int) },
190 [SCM_CREDENTIALS] = { print_scm_creds, sizeof(struct ucred) },
191 [SCM_SECURITY] = { print_scm_security, 1 }
192}, cmsg_ip_printers[] = {
193 [IP_PKTINFO] = { print_cmsg_ip_pktinfo, sizeof(struct in_pktinfo) },
194 [IP_TTL] = { print_cmsg_uint, sizeof(unsigned int) },
195 [IP_TOS] = { print_cmsg_uint8_t, 1 },
196 [IP_RECVOPTS] = { print_cmsg_ip_opts, 1 },
197 [IP_RETOPTS] = { print_cmsg_ip_opts, 1 },
198 [IP_RECVERR] = { print_cmsg_ip_recverr, sizeof(struct sock_ee) },
199 [IP_ORIGDSTADDR] = { print_cmsg_ip_origdstaddr, sizeof(struct sockaddr_in) },
200 [IP_CHECKSUM] = { print_cmsg_uint, sizeof(unsigned int) },
201 [SCM_SECURITY] = { print_scm_security, 1 }
202};
203
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000204static void
205print_cmsg_type_data(struct tcb *tcp, const int cmsg_level, const int cmsg_type,
206 const void *cmsg_data, const size_t data_len)
207{
Dmitry V. Levindf57a9b2016-06-30 22:49:36 +0000208 const unsigned int utype = cmsg_type;
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000209 switch (cmsg_level) {
210 case SOL_SOCKET:
211 printxval(scmvals, cmsg_type, "SCM_???");
Dmitry V. Levindf57a9b2016-06-30 22:49:36 +0000212 if (utype < ARRAY_SIZE(cmsg_socket_printers)
213 && cmsg_socket_printers[utype].printer
214 && data_len >= cmsg_socket_printers[utype].min_len) {
215 tprints(", cmsg_data=");
216 cmsg_socket_printers[utype].printer(tcp, cmsg_data, data_len);
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000217 }
218 break;
219 case SOL_IP:
220 printxval(ip_cmsg_types, cmsg_type, "IP_???");
Dmitry V. Levindf57a9b2016-06-30 22:49:36 +0000221 if (utype < ARRAY_SIZE(cmsg_ip_printers)
222 && cmsg_ip_printers[utype].printer
223 && data_len >= cmsg_ip_printers[utype].min_len) {
224 tprints(", cmsg_data=");
225 cmsg_ip_printers[utype].printer(tcp, cmsg_data, data_len);
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000226 }
227 break;
228 default:
Dmitry V. Levin6c30aec2016-06-30 22:14:51 +0000229 tprintf("%#x", cmsg_type);
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000230 }
231}
232
Dmitry V. Levinbf2698a2016-07-03 22:15:45 +0000233static unsigned int
234get_optmem_max(void)
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000235{
Dmitry V. Levinbf2698a2016-07-03 22:15:45 +0000236 static int optmem_max;
237
238 if (!optmem_max) {
239 if (read_int_from_file("/proc/sys/net/core/optmem_max",
240 &optmem_max) || optmem_max <= 0) {
Dmitry V. Levin8da96682016-07-15 22:58:48 +0000241 optmem_max = sizeof(long long) * (2 * IOV_MAX + 512);
Dmitry V. Levinbf2698a2016-07-03 22:15:45 +0000242 } else {
243 optmem_max = (optmem_max + sizeof(long long) - 1)
244 & ~(sizeof(long long) - 1);
245 }
246 }
247
248 return optmem_max;
249}
250
251static void
252decode_msg_control(struct tcb *tcp, unsigned long addr,
253 const size_t in_control_len)
254{
255 if (!in_control_len)
Dmitry V. Levin1d532102016-06-30 22:34:27 +0000256 return;
257 tprints(", msg_control=");
258
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000259 const size_t cmsg_size =
260#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
261 (current_wordsize < sizeof(long)) ? sizeof(struct cmsghdr32) :
262#endif
263 sizeof(struct cmsghdr);
264
Dmitry V. Levinbf2698a2016-07-03 22:15:45 +0000265 size_t control_len =
266 in_control_len > get_optmem_max()
267 ? get_optmem_max() : in_control_len;
Dmitry V. Levin1d532102016-06-30 22:34:27 +0000268 size_t buf_len = control_len;
269 char *buf = buf_len < cmsg_size ? NULL : malloc(buf_len);
270 if (!buf || umoven(tcp, addr, buf_len, buf) < 0) {
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000271 printaddr(addr);
272 free(buf);
273 return;
274 }
275
276 union_cmsghdr u = { .ptr = buf };
277
278 tprints("[");
Dmitry V. Levin1d532102016-06-30 22:34:27 +0000279 while (buf_len >= cmsg_size) {
280 const size_t cmsg_len =
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000281#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
282 (current_wordsize < sizeof(long)) ? u.cmsg32->cmsg_len :
283#endif
284 u.cmsg->cmsg_len;
Dmitry V. Levin1d532102016-06-30 22:34:27 +0000285 const int cmsg_level =
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000286#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
287 (current_wordsize < sizeof(long)) ? u.cmsg32->cmsg_level :
288#endif
289 u.cmsg->cmsg_level;
Dmitry V. Levin1d532102016-06-30 22:34:27 +0000290 const int cmsg_type =
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000291#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
292 (current_wordsize < sizeof(long)) ? u.cmsg32->cmsg_type :
293#endif
294 u.cmsg->cmsg_type;
295
296 if (u.ptr != buf)
297 tprints(", ");
298 tprintf("{cmsg_len=%lu, cmsg_level=", (unsigned long) cmsg_len);
299 printxval(socketlayers, cmsg_level, "SOL_???");
300 tprints(", cmsg_type=");
301
Dmitry V. Levin1d532102016-06-30 22:34:27 +0000302 size_t len = cmsg_len > buf_len ? buf_len : cmsg_len;
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000303
304 print_cmsg_type_data(tcp, cmsg_level, cmsg_type,
305 (const void *) (u.ptr + cmsg_size),
Dmitry V. Levin1d532102016-06-30 22:34:27 +0000306 len > cmsg_size ? len - cmsg_size: 0);
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000307 tprints("}");
308
Dmitry V. Levin1d532102016-06-30 22:34:27 +0000309 if (len < cmsg_size) {
310 buf_len -= cmsg_size;
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000311 break;
312 }
Dmitry V. Levin1d532102016-06-30 22:34:27 +0000313 len = (cmsg_len + current_wordsize - 1) &
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000314 (size_t) ~(current_wordsize - 1);
Dmitry V. Levin1d532102016-06-30 22:34:27 +0000315 if (len >= buf_len) {
316 buf_len = 0;
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000317 break;
318 }
Dmitry V. Levin1d532102016-06-30 22:34:27 +0000319 u.ptr += len;
320 buf_len -= len;
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000321 }
Dmitry V. Levin1d532102016-06-30 22:34:27 +0000322 if (buf_len) {
323 tprints(", ");
324 printaddr(addr + (control_len - buf_len));
Dmitry V. Levinbf2698a2016-07-03 22:15:45 +0000325 } else if (control_len < in_control_len) {
326 tprints(", ...");
Dmitry V. Levin1d532102016-06-30 22:34:27 +0000327 }
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000328 tprints("]");
329 free(buf);
330}
331
Dmitry V. Levin7c37ce42016-07-14 22:13:58 +0000332void
333print_struct_msghdr(struct tcb *tcp, const struct msghdr *msg,
334 const int *const p_user_msg_namelen,
335 const unsigned long data_size)
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000336{
Dmitry V. Levind8f77cd2016-07-13 21:56:16 +0000337 const int msg_namelen =
338 p_user_msg_namelen && (int) msg->msg_namelen > *p_user_msg_namelen
339 ? *p_user_msg_namelen : (int) msg->msg_namelen;
Fabien Siron2850f742016-07-06 15:49:22 +0000340
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000341 tprints("{msg_name=");
Dmitry V. Levind8f77cd2016-07-13 21:56:16 +0000342 const int family =
343 decode_sockaddr(tcp, (long) msg->msg_name, msg_namelen);
344 const enum iov_decode decode =
345 (family == AF_NETLINK) ? IOV_DECODE_NETLINK : IOV_DECODE_STR;
346
347 tprints(", msg_namelen=");
348 if (p_user_msg_namelen && *p_user_msg_namelen != (int) msg->msg_namelen)
349 tprintf("%d->", *p_user_msg_namelen);
350 tprintf("%d", msg->msg_namelen);
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000351
352 tprints(", msg_iov=");
Fabien Siron2850f742016-07-06 15:49:22 +0000353
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000354 tprint_iov_upto(tcp, (unsigned long) msg->msg_iovlen,
Fabien Siron2850f742016-07-06 15:49:22 +0000355 (unsigned long) msg->msg_iov, decode, data_size);
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000356 tprintf(", msg_iovlen=%lu", (unsigned long) msg->msg_iovlen);
357
358 decode_msg_control(tcp, (unsigned long) msg->msg_control,
359 msg->msg_controllen);
360 tprintf(", msg_controllen=%lu", (unsigned long) msg->msg_controllen);
361
362 tprints(", msg_flags=");
363 printflags(msg_flags, msg->msg_flags, "MSG_???");
364 tprints("}");
365}
366
Dmitry V. Levindc84fa32016-07-14 22:26:28 +0000367static bool
Dmitry V. Levind8f77cd2016-07-13 21:56:16 +0000368fetch_msghdr_namelen(struct tcb *tcp, const long addr, int *const p_msg_namelen)
369{
370 struct msghdr msg;
371
372 if (addr && verbose(tcp) && fetch_struct_msghdr(tcp, addr, &msg)) {
373 *p_msg_namelen = msg.msg_namelen;
374 return true;
375 } else {
376 return false;
377 }
378}
379
Dmitry V. Levindc84fa32016-07-14 22:26:28 +0000380static void
Dmitry V. Levind8f77cd2016-07-13 21:56:16 +0000381decode_msghdr(struct tcb *tcp, const int *const p_user_msg_namelen,
382 const long addr, const unsigned long data_size)
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000383{
384 struct msghdr msg;
385
386 if (addr && verbose(tcp) && fetch_struct_msghdr(tcp, addr, &msg))
Dmitry V. Levin7c37ce42016-07-14 22:13:58 +0000387 print_struct_msghdr(tcp, &msg, p_user_msg_namelen, data_size);
Dmitry V. Levin95cce4f2016-06-27 00:02:55 +0000388 else
389 printaddr(addr);
390}
391
392void
393dumpiov_in_msghdr(struct tcb *tcp, long addr, unsigned long data_size)
394{
395 struct msghdr msg;
396
397 if (fetch_struct_msghdr(tcp, addr, &msg))
398 dumpiov_upto(tcp, msg.msg_iovlen, (long)msg.msg_iov, data_size);
399}
Dmitry V. Levindc84fa32016-07-14 22:26:28 +0000400
401SYS_FUNC(sendmsg)
402{
403 printfd(tcp, tcp->u_arg[0]);
404 tprints(", ");
405 decode_msghdr(tcp, 0, tcp->u_arg[1], (unsigned long) -1L);
406 /* flags */
407 tprints(", ");
408 printflags(msg_flags, tcp->u_arg[2], "MSG_???");
409
410 return RVAL_DECODED;
411}
412
413SYS_FUNC(recvmsg)
414{
415 int msg_namelen;
416
417 if (entering(tcp)) {
418 printfd(tcp, tcp->u_arg[0]);
419 tprints(", ");
420 if (fetch_msghdr_namelen(tcp, tcp->u_arg[1], &msg_namelen)) {
Dmitry V. Levinb759d272016-07-15 16:08:19 +0000421 set_tcb_priv_ulong(tcp, msg_namelen);
Dmitry V. Levindc84fa32016-07-14 22:26:28 +0000422 return 0;
423 }
424 printaddr(tcp->u_arg[1]);
425 } else {
Dmitry V. Levinb759d272016-07-15 16:08:19 +0000426 msg_namelen = get_tcb_priv_ulong(tcp);
Dmitry V. Levindc84fa32016-07-14 22:26:28 +0000427
428 if (syserror(tcp))
429 tprintf("{msg_namelen=%d}", msg_namelen);
430 else
431 decode_msghdr(tcp, &msg_namelen, tcp->u_arg[1],
432 tcp->u_rval);
433 }
434
435 /* flags */
436 tprints(", ");
437 printflags(msg_flags, tcp->u_arg[2], "MSG_???");
438
439 return RVAL_DECODED;
440}