Branch data Line data Source code
1 : : /*
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 : :
34 : : static bool
35 : 522 : print_pollfd(struct tcb *tcp, void *elem_buf, size_t elem_size, void *data)
36 : : {
37 : 522 : const struct pollfd *fds = elem_buf;
38 : :
39 : 522 : tprints("{fd=");
40 : 522 : printfd(tcp, fds->fd);
41 [ + + ]: 522 : if (fds->fd >= 0) {
42 : 324 : tprints(", events=");
43 : 324 : printflags(pollflags, (unsigned short) fds->events, "POLL???");
44 : : }
45 : 522 : tprints("}");
46 : :
47 : 522 : return true;
48 : : }
49 : :
50 : : static void
51 : 384 : decode_poll_entering(struct tcb *tcp)
52 : : {
53 : 384 : const kernel_ulong_t addr = tcp->u_arg[0];
54 : 384 : const unsigned int nfds = tcp->u_arg[1];
55 : : struct pollfd fds;
56 : :
57 : 384 : print_array(tcp, addr, nfds, &fds, sizeof(fds),
58 : : umoven_or_printaddr, print_pollfd, 0);
59 : 384 : tprintf(", %u, ", nfds);
60 : 384 : }
61 : :
62 : : static int
63 : 384 : decode_poll_exiting(struct tcb *const tcp, const kernel_ulong_t pts)
64 : : {
65 : : struct pollfd fds;
66 : 384 : const unsigned int nfds = tcp->u_arg[1];
67 : 384 : const unsigned long size = sizeof(fds) * nfds;
68 : 384 : const kernel_ulong_t start = tcp->u_arg[0];
69 : 384 : const kernel_ulong_t end = start + size;
70 : : kernel_ulong_t cur;
71 : 384 : const unsigned int max_printed =
72 [ + + ]: 384 : abbrev(tcp) ? max_strlen : -1U;
73 : : unsigned int printed;
74 : :
75 : : static char outstr[1024];
76 : : char *outptr;
77 : : #define end_outstr (outstr + sizeof(outstr))
78 : :
79 [ + + ]: 384 : if (syserror(tcp))
80 : 150 : return 0;
81 [ + + ]: 234 : if (tcp->u_rval == 0) {
82 : 96 : tcp->auxstr = "Timeout";
83 : 96 : return RVAL_STR;
84 : : }
85 : :
86 [ + - ][ + - ]: 138 : if (!verbose(tcp) || !start || !nfds ||
[ + - ][ + - ]
87 [ - + ]: 138 : size / sizeof(fds) != nfds || end < start)
88 : 0 : return 0;
89 : :
90 : 138 : outptr = outstr;
91 : :
92 [ + + ]: 726 : for (printed = 0, cur = start; cur < end; cur += sizeof(fds)) {
93 [ - + ]: 624 : if (umove(tcp, cur, &fds) < 0) {
94 [ # # ]: 0 : if (outptr == outstr)
95 : 0 : *outptr++ = '[';
96 : : else
97 : 0 : outptr = stpcpy(outptr, ", ");
98 : 0 : outptr += sprintf(outptr, "%#" PRI_klx, cur);
99 : 36 : break;
100 : : }
101 [ + + ]: 624 : if (!fds.revents)
102 : 372 : continue;
103 [ + + ]: 252 : if (outptr == outstr)
104 : 138 : *outptr++ = '[';
105 : : else
106 : 114 : outptr = stpcpy(outptr, ", ");
107 [ + + ]: 252 : if (printed >= max_printed) {
108 : 36 : outptr = stpcpy(outptr, "...");
109 : 36 : break;
110 : : }
111 : :
112 : : static const char fmt[] = "{fd=%d, revents=";
113 : : char fdstr[sizeof(fmt) + sizeof(int) * 3];
114 : 216 : sprintf(fdstr, fmt, fds.fd);
115 : :
116 : 216 : const char *flagstr = sprintflags("", pollflags,
117 : 216 : (unsigned short) fds.revents);
118 : :
119 [ - + ]: 216 : if (outptr + strlen(fdstr) + strlen(flagstr) + 1 >=
120 : 216 : end_outstr - (2 + 2 * sizeof(long) + sizeof(", ], ..."))) {
121 : 0 : outptr = stpcpy(outptr, "...");
122 : 0 : break;
123 : : }
124 : 216 : outptr = stpcpy(outptr, fdstr);
125 : 216 : outptr = stpcpy(outptr, flagstr);
126 : 216 : *outptr++ = '}';
127 : 216 : ++printed;
128 : : }
129 : :
130 [ + - ]: 138 : if (outptr != outstr)
131 : 138 : *outptr++ = ']';
132 : :
133 : 138 : *outptr = '\0';
134 [ + + ]: 138 : if (pts) {
135 : 12 : const char *str = sprint_timespec(tcp, pts);
136 : :
137 [ + - ]: 12 : if (outptr + sizeof(", left ") + strlen(str) < end_outstr) {
138 [ - + ]: 12 : outptr = stpcpy(outptr, outptr == outstr ? "left " : ", left ");
139 : 12 : outptr = stpcpy(outptr, str);
140 : : } else {
141 : 0 : outptr = stpcpy(outptr, ", ...");
142 : : }
143 : : }
144 : :
145 [ - + ]: 138 : if (outptr == outstr)
146 : 0 : return 0;
147 : :
148 : 138 : tcp->auxstr = outstr;
149 : 384 : return RVAL_STR;
150 : : #undef end_outstr
151 : : }
152 : :
153 : 672 : SYS_FUNC(poll)
154 : : {
155 [ + + ]: 672 : if (entering(tcp)) {
156 : 336 : decode_poll_entering(tcp);
157 : 336 : int timeout = tcp->u_arg[2];
158 : :
159 : : #ifdef INFTIM
160 : : if (INFTIM == timeout)
161 : : tprints("INFTIM");
162 : : else
163 : : #endif
164 : 336 : tprintf("%d", timeout);
165 : :
166 : 336 : return 0;
167 : : } else {
168 : 336 : return decode_poll_exiting(tcp, 0);
169 : : }
170 : : }
171 : :
172 : 96 : SYS_FUNC(ppoll)
173 : : {
174 [ + + ]: 96 : if (entering(tcp)) {
175 : 48 : decode_poll_entering(tcp);
176 : :
177 : 48 : print_timespec(tcp, tcp->u_arg[2]);
178 : 48 : tprints(", ");
179 : : /* NB: kernel requires arg[4] == NSIG_BYTES */
180 : 48 : print_sigset_addr_len(tcp, tcp->u_arg[3], tcp->u_arg[4]);
181 : 48 : tprintf(", %" PRI_klu, tcp->u_arg[4]);
182 : :
183 : 48 : return 0;
184 : : } else {
185 : 48 : return decode_poll_exiting(tcp, tcp->u_arg[2]);
186 : : }
187 : : }
|