blob: 93e38897d2d00250414b52fbabee6f3deebf8075 [file] [log] [blame]
Dmitry V. Levin7c37ce42016-07-14 22:13:58 +00001/*
2 * Copyright (c) 2010 Andreas Schwab <schwab@linux-m68k.org>
3 * Copyright (c) 2012-2013 Denys Vlasenko <vda.linux@googlemail.com>
4 * Copyright (c) 2014 Masatake YAMATO <yamato@redhat.com>
5 * Copyright (c) 2010-2016 Dmitry V. Levin <ldv@altlinux.org>
6 * 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.
29 */
30
31#include "defs.h"
32#include "msghdr.h"
Dmitry V. Levin0485ab52016-07-16 22:04:24 +000033#include <limits.h>
Dmitry V. Levin7c37ce42016-07-14 22:13:58 +000034
35static int
Dmitry V. Levin0485ab52016-07-16 22:04:24 +000036fetch_struct_mmsghdr_or_printaddr(struct tcb *tcp, const long addr,
37 const unsigned int len, void *const mh)
Dmitry V. Levin7c37ce42016-07-14 22:13:58 +000038{
Dmitry V. Levin0485ab52016-07-16 22:04:24 +000039 if ((entering(tcp) || !syserror(tcp))
40 && fetch_struct_mmsghdr(tcp, addr, mh)) {
41 return 0;
Dmitry V. Levin7c37ce42016-07-14 22:13:58 +000042 } else {
43 printaddr(addr);
Dmitry V. Levin0485ab52016-07-16 22:04:24 +000044 return -1;
Dmitry V. Levin7c37ce42016-07-14 22:13:58 +000045 }
Dmitry V. Levin0485ab52016-07-16 22:04:24 +000046}
Dmitry V. Levin7c37ce42016-07-14 22:13:58 +000047
Dmitry V. Levin0485ab52016-07-16 22:04:24 +000048struct print_struct_mmsghdr_config {
49 const int *p_user_msg_namelen;
Dmitry V. Levin3a161d12016-07-18 16:25:25 +000050 unsigned int msg_len_vlen;
Dmitry V. Levin0485ab52016-07-16 22:04:24 +000051 unsigned int count;
52 bool use_msg_len;
53};
54
55static bool
56print_struct_mmsghdr(struct tcb *tcp, void *elem_buf,
57 size_t elem_size, void *data)
58{
59 const struct mmsghdr *const mmsg = elem_buf;
60 struct print_struct_mmsghdr_config *const c = data;
61
62 if (!c->count) {
63 tprints("...");
64 return false;
65 }
66 --c->count;
67
68 tprints("{msg_hdr=");
69 print_struct_msghdr(tcp, &mmsg->msg_hdr, c->p_user_msg_namelen,
70 c->use_msg_len ? mmsg->msg_len : -1UL);
Dmitry V. Levin3a161d12016-07-18 16:25:25 +000071 if (c->msg_len_vlen) {
72 tprintf(", msg_len=%u", mmsg->msg_len);
73 --c->msg_len_vlen;
74 }
75 tprints("}");
Dmitry V. Levin0485ab52016-07-16 22:04:24 +000076
Dmitry V. Levinb42f6b32016-07-17 23:51:39 +000077 if (c->p_user_msg_namelen)
78 ++c->p_user_msg_namelen;
79
Dmitry V. Levin0485ab52016-07-16 22:04:24 +000080 return true;
Dmitry V. Levin7c37ce42016-07-14 22:13:58 +000081}
82
Dmitry V. Levin4de8de52016-07-14 22:20:04 +000083static void
Dmitry V. Levinb42f6b32016-07-17 23:51:39 +000084free_mmsgvec_data(void *ptr)
85{
86 char **pstr = ptr;
87 free(*pstr);
88 *pstr = 0;
89
90 free(ptr);
91}
92
93struct mmsgvec_data {
94 char *timeout;
95 unsigned int count;
96 int namelen[IOV_MAX];
97};
98
99static void
100save_mmsgvec_namelen(struct tcb *tcp, unsigned long addr,
101 unsigned int len, const char *const timeout)
102{
103 if (len > IOV_MAX)
104 len = IOV_MAX;
105
106 const size_t data_size = offsetof(struct mmsgvec_data, namelen)
107 + sizeof(int) * len;
108 struct mmsgvec_data *const data = xmalloc(data_size);
109 data->timeout = xstrdup(timeout);
110
111 unsigned int i, fetched;
112
113 for (i = 0; i < len; ++i, addr += fetched) {
114 struct mmsghdr mh;
115
116 fetched = fetch_struct_mmsghdr(tcp, addr, &mh);
117 if (!fetched)
118 break;
119 data->namelen[i] = mh.msg_hdr.msg_namelen;
120 }
121 data->count = i;
122
123 set_tcb_priv_data(tcp, data, free_mmsgvec_data);
124}
125
126static void
Dmitry V. Levin0485ab52016-07-16 22:04:24 +0000127decode_mmsgvec(struct tcb *tcp, const unsigned long addr,
Dmitry V. Levin3a161d12016-07-18 16:25:25 +0000128 const unsigned int vlen, const unsigned int msg_len_vlen,
129 const bool use_msg_len)
Dmitry V. Levin7c37ce42016-07-14 22:13:58 +0000130{
Dmitry V. Levin0485ab52016-07-16 22:04:24 +0000131 struct mmsghdr mmsg;
132 struct print_struct_mmsghdr_config c = {
Dmitry V. Levin3a161d12016-07-18 16:25:25 +0000133 .msg_len_vlen = msg_len_vlen,
Dmitry V. Levin0485ab52016-07-16 22:04:24 +0000134 .count = IOV_MAX,
135 .use_msg_len = use_msg_len
136 };
Dmitry V. Levinb42f6b32016-07-17 23:51:39 +0000137 const struct mmsgvec_data *const data = get_tcb_priv_data(tcp);
138
139 if (data) {
140 if (data->count < c.count)
141 c.count = data->count;
142 c.p_user_msg_namelen = data->namelen;
143 }
Dmitry V. Levin7c37ce42016-07-14 22:13:58 +0000144
Dmitry V. Levin3a161d12016-07-18 16:25:25 +0000145 print_array(tcp, addr, vlen, &mmsg, sizeof_struct_mmsghdr(),
Dmitry V. Levin0485ab52016-07-16 22:04:24 +0000146 fetch_struct_mmsghdr_or_printaddr,
147 print_struct_mmsghdr, &c);
Dmitry V. Levin7c37ce42016-07-14 22:13:58 +0000148}
149
150void
151dumpiov_in_mmsghdr(struct tcb *tcp, long addr)
152{
153 unsigned int len = tcp->u_rval;
154 unsigned int i, fetched;
155 struct mmsghdr mmsg;
156
157 for (i = 0; i < len; ++i, addr += fetched) {
158 fetched = fetch_struct_mmsghdr(tcp, addr, &mmsg);
159 if (!fetched)
160 break;
161 tprintf(" = %lu buffers in vector %u\n",
162 (unsigned long) mmsg.msg_hdr.msg_iovlen, i);
163 dumpiov_upto(tcp, mmsg.msg_hdr.msg_iovlen,
164 (long) mmsg.msg_hdr.msg_iov, mmsg.msg_len);
165 }
166}
Dmitry V. Levin4de8de52016-07-14 22:20:04 +0000167
168SYS_FUNC(sendmmsg)
169{
170 if (entering(tcp)) {
171 /* sockfd */
172 printfd(tcp, tcp->u_arg[0]);
173 tprints(", ");
174 if (!verbose(tcp)) {
Dmitry V. Levin0d88d992016-07-18 17:48:44 +0000175 /* msgvec */
Dmitry V. Levin4de8de52016-07-14 22:20:04 +0000176 printaddr(tcp->u_arg[1]);
177 /* vlen */
178 tprintf(", %u, ", (unsigned int) tcp->u_arg[2]);
179 /* flags */
180 printflags(msg_flags, tcp->u_arg[3], "MSG_???");
181 return RVAL_DECODED;
182 }
183 } else {
Dmitry V. Levin0d88d992016-07-18 17:48:44 +0000184 const unsigned int msg_len_vlen =
185 syserror(tcp) ? 0 : tcp->u_rval;
186 /* msgvec */
187 temporarily_clear_syserror(tcp);
Dmitry V. Levin3a161d12016-07-18 16:25:25 +0000188 decode_mmsgvec(tcp, tcp->u_arg[1], tcp->u_arg[2],
Dmitry V. Levin0d88d992016-07-18 17:48:44 +0000189 msg_len_vlen, false);
190 restore_cleared_syserror(tcp);
Dmitry V. Levin4de8de52016-07-14 22:20:04 +0000191 /* vlen */
192 tprintf(", %u, ", (unsigned int) tcp->u_arg[2]);
193 /* flags */
194 printflags(msg_flags, tcp->u_arg[3], "MSG_???");
195 }
196 return 0;
197}
198
199SYS_FUNC(recvmmsg)
200{
Dmitry V. Levin4de8de52016-07-14 22:20:04 +0000201 if (entering(tcp)) {
202 printfd(tcp, tcp->u_arg[0]);
203 tprints(", ");
204 if (verbose(tcp)) {
Dmitry V. Levinb42f6b32016-07-17 23:51:39 +0000205 save_mmsgvec_namelen(tcp, tcp->u_arg[1], tcp->u_arg[2],
206 sprint_timespec(tcp, tcp->u_arg[4]));
Dmitry V. Levin4de8de52016-07-14 22:20:04 +0000207 } else {
Dmitry V. Levin0d88d992016-07-18 17:48:44 +0000208 /* msgvec */
Dmitry V. Levin4de8de52016-07-14 22:20:04 +0000209 printaddr(tcp->u_arg[1]);
210 /* vlen */
211 tprintf(", %u, ", (unsigned int) tcp->u_arg[2]);
212 /* flags */
213 printflags(msg_flags, tcp->u_arg[3], "MSG_???");
214 tprints(", ");
215 print_timespec(tcp, tcp->u_arg[4]);
216 }
217 return 0;
218 } else {
219 if (verbose(tcp)) {
Dmitry V. Levin0d88d992016-07-18 17:48:44 +0000220 /* msgvec */
Dmitry V. Levin3a161d12016-07-18 16:25:25 +0000221 decode_mmsgvec(tcp, tcp->u_arg[1], tcp->u_rval,
222 tcp->u_rval, true);
Dmitry V. Levin4de8de52016-07-14 22:20:04 +0000223 /* vlen */
224 tprintf(", %u, ", (unsigned int) tcp->u_arg[2]);
225 /* flags */
226 printflags(msg_flags, tcp->u_arg[3], "MSG_???");
227 tprints(", ");
228 /* timeout on entrance */
Dmitry V. Levinb42f6b32016-07-17 23:51:39 +0000229 tprints(*(const char **) get_tcb_priv_data(tcp));
Dmitry V. Levin4de8de52016-07-14 22:20:04 +0000230 }
231 if (syserror(tcp))
232 return 0;
233 if (tcp->u_rval == 0) {
234 tcp->auxstr = "Timeout";
235 return RVAL_STR;
236 }
Dmitry V. Levin3e3b7f62016-07-18 10:34:41 +0000237 if (!verbose(tcp) || !tcp->u_arg[4])
Dmitry V. Levin4de8de52016-07-14 22:20:04 +0000238 return 0;
239 /* timeout on exit */
Dmitry V. Levin7f8ece12016-07-15 17:46:07 +0000240 static char str[sizeof("left") + TIMESPEC_TEXT_BUFSIZE];
Dmitry V. Levin4de8de52016-07-14 22:20:04 +0000241 snprintf(str, sizeof(str), "left %s",
242 sprint_timespec(tcp, tcp->u_arg[4]));
243 tcp->auxstr = str;
244 return RVAL_STR;
245 }
246}