]> granicus.if.org Git - strace/blob - aio.c
btrfs.c: fix build on systems without BTRFS_IOC_FILE_EXTENT_SAME
[strace] / aio.c
1 /*
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-1999 Wichert Akkerman <wichert@cistron.nl>
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 <linux/aio_abi.h>
33
34 SYS_FUNC(io_setup)
35 {
36         if (entering(tcp))
37                 tprintf("%u, ", (unsigned int) tcp->u_arg[0]);
38         else
39                 printnum_ulong(tcp, tcp->u_arg[1]);
40         return 0;
41 }
42
43 SYS_FUNC(io_destroy)
44 {
45         tprintf("%lu", tcp->u_arg[0]);
46
47         return RVAL_DECODED;
48 }
49
50 enum iocb_sub {
51         SUB_NONE, SUB_COMMON, SUB_VECTOR
52 };
53
54 static enum iocb_sub
55 tprint_lio_opcode(unsigned cmd)
56 {
57         static const struct {
58                 const char *name;
59                 enum iocb_sub sub;
60         } cmds[] = {
61                 { "pread", SUB_COMMON },
62                 { "pwrite", SUB_COMMON },
63                 { "fsync", SUB_NONE },
64                 { "fdsync", SUB_NONE },
65                 { "preadx", SUB_NONE },
66                 { "poll", SUB_NONE },
67                 { "noop", SUB_NONE },
68                 { "preadv", SUB_VECTOR },
69                 { "pwritev", SUB_VECTOR },
70         };
71
72         if (cmd < ARRAY_SIZE(cmds)) {
73                 tprints(cmds[cmd].name);
74                 return cmds[cmd].sub;
75         }
76         tprintf("%u /* SUB_??? */", cmd);
77         return SUB_NONE;
78 }
79
80 static void
81 print_common_flags(const struct iocb *cb)
82 {
83 /* IOCB_FLAG_RESFD is available since v2.6.22-rc1~47 */
84 #ifdef IOCB_FLAG_RESFD
85         if (cb->aio_flags & IOCB_FLAG_RESFD)
86                 tprintf(", resfd=%d", cb->aio_resfd);
87         if (cb->aio_flags & ~IOCB_FLAG_RESFD)
88                 tprintf(", flags=%x", cb->aio_flags);
89 #endif
90 }
91
92 static bool
93 iocb_is_valid(const struct iocb *cb)
94 {
95         return cb->aio_buf == (unsigned long) cb->aio_buf &&
96                cb->aio_nbytes == (size_t) cb->aio_nbytes &&
97                (ssize_t) cb->aio_nbytes >= 0;
98 }
99
100 static enum iocb_sub
101 print_iocb_header(const struct iocb *cb)
102 {
103         enum iocb_sub sub;
104
105         if (cb->aio_data)
106                 tprintf("data=%#" PRIx64 ", ",
107                         (uint64_t) cb->aio_data);
108
109         if (cb->aio_key)
110                 tprintf("key=%u, ", cb->aio_key);
111
112         sub = tprint_lio_opcode(cb->aio_lio_opcode);
113         if (cb->aio_reqprio)
114                 tprintf(", reqprio=%hd", cb->aio_reqprio);
115
116         tprintf(", fildes=%d", cb->aio_fildes);
117
118         return sub;
119 }
120
121 static void
122 print_iocb(struct tcb *tcp, const struct iocb *cb)
123 {
124         enum iocb_sub sub = print_iocb_header(cb);
125
126         switch (sub) {
127         case SUB_COMMON:
128                 if (cb->aio_lio_opcode == 1 && iocb_is_valid(cb)) {
129                         tprints(", str=");
130                         printstr(tcp, (unsigned long) cb->aio_buf,
131                                  (unsigned long) cb->aio_nbytes);
132                 } else {
133                         tprintf(", buf=%#" PRIx64, (uint64_t) cb->aio_buf);
134                 }
135                 tprintf(", nbytes=%" PRIu64 ", offset=%" PRId64,
136                         (uint64_t) cb->aio_nbytes, (int64_t) cb->aio_offset);
137                 print_common_flags(cb);
138                 break;
139         case SUB_VECTOR:
140                 if (iocb_is_valid(cb)) {
141                         tprints(", iovec=");
142                         tprint_iov(tcp, cb->aio_nbytes, cb->aio_buf,
143                                    cb->aio_lio_opcode == 8);
144                 } else {
145                         tprintf(", buf=%#" PRIx64 ", nbytes=%" PRIu64,
146                                 (uint64_t) cb->aio_buf,
147                                 (uint64_t) cb->aio_nbytes);
148                 }
149                 tprintf(", offset=%" PRId64, (int64_t) cb->aio_offset);
150                 print_common_flags(cb);
151                 break;
152         case SUB_NONE:
153                 break;
154         }
155 }
156
157 static bool
158 print_iocbp(struct tcb *tcp, void *elem_buf, size_t elem_size, void *data)
159 {
160         unsigned long addr;
161         struct iocb cb;
162
163         if (elem_size < sizeof(long)) {
164                 addr = * (unsigned int *) elem_buf;
165         } else {
166                 addr = * (unsigned long *) elem_buf;
167         }
168
169         tprints("{");
170         if (!umove_or_printaddr(tcp, addr, &cb))
171                 print_iocb(tcp, &cb);
172         tprints("}");
173
174         return true;
175 }
176
177 SYS_FUNC(io_submit)
178 {
179         const long nr = widen_to_long(tcp->u_arg[1]);
180         const unsigned long addr = tcp->u_arg[2];
181         unsigned long iocbp;
182
183         tprintf("%lu, %ld, ", tcp->u_arg[0], nr);
184
185         if (nr < 0)
186                 printaddr(addr);
187         else
188                 print_array(tcp, addr, nr, &iocbp, current_wordsize,
189                             umoven_or_printaddr, print_iocbp, 0);
190
191         return RVAL_DECODED;
192 }
193
194 static bool
195 print_io_event(struct tcb *tcp, void *elem_buf, size_t elem_size, void *data)
196 {
197         struct io_event *event = elem_buf;
198
199         tprintf("{data=%#" PRIx64 ", obj=%#" PRIx64
200                 ", res=%" PRId64 ", res2=%" PRId64 "}",
201                 (uint64_t) event->data, (uint64_t) event->obj,
202                 (int64_t) event->res, (int64_t) event->res2);
203
204         return true;
205 }
206
207 SYS_FUNC(io_cancel)
208 {
209         if (entering(tcp)) {
210                 tprintf("%lu, ", tcp->u_arg[0]);
211                 struct iocb cb;
212
213                 if (!umove_or_printaddr(tcp, tcp->u_arg[1], &cb)) {
214                         tprints("{");
215                         print_iocb_header(&cb);
216                         tprints("}");
217                 }
218                 tprints(", ");
219         } else {
220                 struct io_event event;
221
222                 if (!umove_or_printaddr(tcp, tcp->u_arg[2], &event))
223                         print_io_event(tcp, &event, sizeof(event), 0);
224         }
225         return 0;
226 }
227
228 SYS_FUNC(io_getevents)
229 {
230         if (entering(tcp)) {
231                 tprintf("%lu, %ld, %ld, ",
232                         tcp->u_arg[0],
233                         widen_to_long(tcp->u_arg[1]),
234                         widen_to_long(tcp->u_arg[2]));
235         } else {
236                 struct io_event buf;
237                 print_array(tcp, tcp->u_arg[3], tcp->u_rval, &buf, sizeof(buf),
238                             umoven_or_printaddr, print_io_event, 0);
239                 tprints(", ");
240                 /*
241                  * Since the timeout parameter is read by the kernel
242                  * on entering syscall, it has to be decoded the same way
243                  * whether the syscall has failed or not.
244                  */
245                 temporarily_clear_syserror(tcp);
246                 print_timespec(tcp, tcp->u_arg[4]);
247                 restore_cleared_syserror(tcp);
248         }
249         return 0;
250 }