blob: bf9707cf03b6febb6719983a534830eff186ff83 [file] [log] [blame]
Dmitry V. Levin811bda62015-07-30 16:49:42 +00001/*
2 * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
3 * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include "defs.h"
30#include <poll.h>
31
32#include "xlat/pollflags.h"
33
Dmitry V. Levind9fb4502015-07-30 19:46:11 +000034static void
35print_pollfd(struct tcb *tcp, const struct pollfd *fds)
36{
37 tprints("{fd=");
38 printfd(tcp, fds->fd);
39 if (fds->fd >= 0) {
40 tprints(", events=");
41 printflags(pollflags, fds->events, "POLL???");
42 }
43 tprints("}");
44}
45
Dmitry V. Levin811bda62015-07-30 16:49:42 +000046static int
Dmitry V. Levind9fb4502015-07-30 19:46:11 +000047decode_poll_entering(struct tcb *tcp)
Dmitry V. Levin811bda62015-07-30 16:49:42 +000048{
49 struct pollfd fds;
Dmitry V. Levind9fb4502015-07-30 19:46:11 +000050 const unsigned int nfds = tcp->u_arg[1];
51 const unsigned long size = sizeof(fds) * nfds;
52 const unsigned long start = tcp->u_arg[0];
53 const unsigned long end = start + size;
54 unsigned long cur, abbrev_end;
Dmitry V. Levin811bda62015-07-30 16:49:42 +000055
Dmitry V. Levind9fb4502015-07-30 19:46:11 +000056 if (!verbose(tcp) || !start || !nfds ||
57 size / sizeof(fds) != nfds || end < start) {
58 printaddr(start);
59 tprintf(", %u, ", nfds);
Dmitry V. Levin811bda62015-07-30 16:49:42 +000060 return 0;
Dmitry V. Levin811bda62015-07-30 16:49:42 +000061 }
Dmitry V. Levind9fb4502015-07-30 19:46:11 +000062
63 if (abbrev(tcp)) {
64 abbrev_end = start + max_strlen * sizeof(fds);
65 if (abbrev_end < start)
66 abbrev_end = end;
67 } else {
68 abbrev_end = end;
69 }
70
71 if (start >= abbrev_end || umove(tcp, start, &fds) < 0) {
72 printaddr(start);
73 tprintf(", %u, ", nfds);
74 return 0;
75 }
76
77 tprints("[");
78 print_pollfd(tcp, &fds);
79 for (cur = start + sizeof(fds); cur < end; cur += sizeof(fds)) {
80 tprints(", ");
81 if (cur >= abbrev_end) {
82 tprints("...");
83 break;
84 }
85 if (umove(tcp, cur, &fds) < 0) {
86 tprints("???");
87 break;
88 }
89 print_pollfd(tcp, &fds);
90
91 }
92 tprintf("], %u, ", nfds);
93
94 return 0;
95}
96
97static int
98decode_poll_exiting(struct tcb *tcp, const long pts)
99{
100 struct pollfd fds;
101 const unsigned int nfds = tcp->u_arg[1];
102 const unsigned long size = sizeof(fds) * nfds;
103 const unsigned long start = tcp->u_arg[0];
104 const unsigned long end = start + size;
105 unsigned long cur, abbrev_end;
106
107 static char outstr[1024];
108 char *outptr;
109#define end_outstr (outstr + sizeof(outstr))
110
111 if (syserror(tcp))
112 return 0;
113 if (tcp->u_rval == 0) {
114 tcp->auxstr = "Timeout";
115 return RVAL_STR;
116 }
117
118 if (!verbose(tcp) || !start || !nfds ||
119 size / sizeof(fds) != nfds || end < start)
120 return 0;
121 if (abbrev(tcp)) {
122 abbrev_end = start + max_strlen * sizeof(fds);
123 if (abbrev_end < start)
124 abbrev_end = end;
125 } else {
126 abbrev_end = end;
127 }
128
129 outptr = outstr;
130
131 for (cur = start; cur < end; cur += sizeof(fds)) {
132 if (umove(tcp, cur, &fds) < 0) {
133 if (outptr == outstr)
134 *outptr++ = '[';
135 else
136 outptr = stpcpy(outptr, ", ");
137 outptr = stpcpy(outptr, "???");
138 break;
139 }
140 if (!fds.revents)
141 continue;
142 if (outptr == outstr)
143 *outptr++ = '[';
144 else
145 outptr = stpcpy(outptr, ", ");
146 if (cur >= abbrev_end) {
147 outptr = stpcpy(outptr, "...");
148 break;
149 }
150
151 static const char fmt[] = "{fd=%d, revents=";
152 char fdstr[sizeof(fmt) + sizeof(int) * 3];
153 sprintf(fdstr, fmt, fds.fd);
154
155 const char *flagstr = sprintflags("", pollflags, fds.revents);
156
157 if (outptr + strlen(fdstr) + strlen(flagstr) + 1
Dmitry V. Levin3b9d3152015-08-01 08:34:57 +0000158 >= end_outstr - sizeof(", ...], ...")) {
Dmitry V. Levind9fb4502015-07-30 19:46:11 +0000159 outptr = stpcpy(outptr, "...");
160 break;
161 }
162 outptr = stpcpy(outptr, fdstr);
163 outptr = stpcpy(outptr, flagstr);
164 *outptr++ = '}';
165 }
166
167 if (outptr != outstr)
168 *outptr++ = ']';
169
170 *outptr = '\0';
171 if (pts) {
172 char tmbuf[TIMESPEC_TEXT_BUFSIZE];
173
174 sprint_timespec(tmbuf, tcp, pts);
175 if (outptr + sizeof(", left ") + strlen(tmbuf) < end_outstr) {
176 outptr = stpcpy(outptr, outptr == outstr ? "left " : ", left ");
177 outptr = stpcpy(outptr, tmbuf);
178 } else {
179 outptr = stpcpy(outptr, ", ...");
180 }
181 }
182
183 if (outptr == outstr)
184 return 0;
185
186 tcp->auxstr = outstr;
187 return RVAL_STR;
188#undef end_outstr
Dmitry V. Levin811bda62015-07-30 16:49:42 +0000189}
190
191SYS_FUNC(poll)
192{
Dmitry V. Levin811bda62015-07-30 16:49:42 +0000193 if (entering(tcp)) {
Dmitry V. Levind9fb4502015-07-30 19:46:11 +0000194 int rc = decode_poll_entering(tcp);
195
Dmitry V. Levin811bda62015-07-30 16:49:42 +0000196#ifdef INFTIM
Dmitry V. Levinc18b0022015-07-30 16:54:31 +0000197 if (INFTIM == (int) tcp->u_arg[2])
Dmitry V. Levin811bda62015-07-30 16:49:42 +0000198 tprints("INFTIM");
199 else
200#endif
Dmitry V. Levinc18b0022015-07-30 16:54:31 +0000201 tprintf("%d", (int) tcp->u_arg[2]);
Dmitry V. Levind9fb4502015-07-30 19:46:11 +0000202
203 return rc;
204 } else {
205 return decode_poll_exiting(tcp, 0);
Dmitry V. Levin811bda62015-07-30 16:49:42 +0000206 }
Dmitry V. Levin811bda62015-07-30 16:49:42 +0000207}
208
209SYS_FUNC(ppoll)
210{
Dmitry V. Levin811bda62015-07-30 16:49:42 +0000211 if (entering(tcp)) {
Dmitry V. Levind9fb4502015-07-30 19:46:11 +0000212 int rc = decode_poll_entering(tcp);
213
Dmitry V. Levin811bda62015-07-30 16:49:42 +0000214 print_timespec(tcp, tcp->u_arg[2]);
215 tprints(", ");
216 /* NB: kernel requires arg[4] == NSIG / 8 */
217 print_sigset_addr_len(tcp, tcp->u_arg[3], tcp->u_arg[4]);
218 tprintf(", %lu", tcp->u_arg[4]);
Dmitry V. Levind9fb4502015-07-30 19:46:11 +0000219
220 return rc;
221 } else {
222 return decode_poll_exiting(tcp, tcp->u_arg[2]);
Dmitry V. Levin811bda62015-07-30 16:49:42 +0000223 }
Dmitry V. Levin811bda62015-07-30 16:49:42 +0000224}