]> granicus.if.org Git - strace/blob - io.c
io.c: move sendfile parsers to a separate file
[strace] / io.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 <fcntl.h>
33 #include <sys/uio.h>
34
35 SYS_FUNC(read)
36 {
37         if (entering(tcp)) {
38                 printfd(tcp, tcp->u_arg[0]);
39                 tprints(", ");
40         } else {
41                 if (syserror(tcp))
42                         printaddr(tcp->u_arg[1]);
43                 else
44                         printstr(tcp, tcp->u_arg[1], tcp->u_rval);
45                 tprintf(", %lu", tcp->u_arg[2]);
46         }
47         return 0;
48 }
49
50 SYS_FUNC(write)
51 {
52         printfd(tcp, tcp->u_arg[0]);
53         tprints(", ");
54         printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
55         tprintf(", %lu", tcp->u_arg[2]);
56
57         return RVAL_DECODED;
58 }
59
60 /*
61  * data_size limits the cumulative size of printed data.
62  * Example: recvmsg returing a short read.
63  */
64 void
65 tprint_iov_upto(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov, unsigned long data_size)
66 {
67 #if SUPPORTED_PERSONALITIES > 1
68         union {
69                 struct { u_int32_t base; u_int32_t len; } iov32;
70                 struct { u_int64_t base; u_int64_t len; } iov64;
71         } iov;
72 #define sizeof_iov \
73         (current_wordsize == 4 ? sizeof(iov.iov32) : sizeof(iov.iov64))
74 #define iov_iov_base \
75         (current_wordsize == 4 ? (uint64_t) iov.iov32.base : iov.iov64.base)
76 #define iov_iov_len \
77         (current_wordsize == 4 ? (uint64_t) iov.iov32.len : iov.iov64.len)
78 #else
79         struct iovec iov;
80 #define sizeof_iov sizeof(iov)
81 #define iov_iov_base iov.iov_base
82 #define iov_iov_len iov.iov_len
83 #endif
84         unsigned long size, cur, end, abbrev_end;
85
86         if (!len) {
87                 tprints("[]");
88                 return;
89         }
90         size = len * sizeof_iov;
91         end = addr + size;
92         if (!verbose(tcp) || (exiting(tcp) && syserror(tcp)) ||
93             !addr || size / sizeof_iov != len || end < addr) {
94                 printaddr(addr);
95                 return;
96         }
97         if (abbrev(tcp)) {
98                 abbrev_end = addr + max_strlen * sizeof_iov;
99                 if (abbrev_end < addr)
100                         abbrev_end = end;
101         } else {
102                 abbrev_end = end;
103         }
104         tprints("[");
105         for (cur = addr; cur < end; cur += sizeof_iov) {
106                 if (cur > addr)
107                         tprints(", ");
108                 if (cur >= abbrev_end) {
109                         tprints("...");
110                         break;
111                 }
112                 if (umoven_or_printaddr(tcp, cur, sizeof_iov, &iov))
113                         break;
114                 tprints("{");
115                 if (decode_iov) {
116                         unsigned long len = iov_iov_len;
117                         if (len > data_size)
118                                 len = data_size;
119                         data_size -= len;
120                         printstr(tcp, (long) iov_iov_base, len);
121                 } else
122                         printaddr((long) iov_iov_base);
123                 tprintf(", %lu}", (unsigned long)iov_iov_len);
124         }
125         tprints("]");
126 #undef sizeof_iov
127 #undef iov_iov_base
128 #undef iov_iov_len
129 }
130
131 void
132 tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov)
133 {
134         tprint_iov_upto(tcp, len, addr, decode_iov, (unsigned long) -1L);
135 }
136
137 SYS_FUNC(readv)
138 {
139         if (entering(tcp)) {
140                 printfd(tcp, tcp->u_arg[0]);
141                 tprints(", ");
142         } else {
143                 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
144                 tprintf(", %lu", tcp->u_arg[2]);
145         }
146         return 0;
147 }
148
149 SYS_FUNC(writev)
150 {
151         printfd(tcp, tcp->u_arg[0]);
152         tprints(", ");
153         tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
154         tprintf(", %lu", tcp->u_arg[2]);
155
156         return RVAL_DECODED;
157 }
158
159 /* The SH4 ABI does allow long longs in odd-numbered registers, but
160    does not allow them to be split between registers and memory - and
161    there are only four argument registers for normal functions.  As a
162    result pread takes an extra padding argument before the offset.  This
163    was changed late in the 2.4 series (around 2.4.20).  */
164 #if defined(SH)
165 #define PREAD_OFFSET_ARG 4
166 #else
167 #define PREAD_OFFSET_ARG 3
168 #endif
169
170 SYS_FUNC(pread)
171 {
172         if (entering(tcp)) {
173                 printfd(tcp, tcp->u_arg[0]);
174                 tprints(", ");
175         } else {
176                 if (syserror(tcp))
177                         printaddr(tcp->u_arg[1]);
178                 else
179                         printstr(tcp, tcp->u_arg[1], tcp->u_rval);
180                 tprintf(", %lu, ", tcp->u_arg[2]);
181                 printllval(tcp, "%llu", PREAD_OFFSET_ARG);
182         }
183         return 0;
184 }
185
186 SYS_FUNC(pwrite)
187 {
188         printfd(tcp, tcp->u_arg[0]);
189         tprints(", ");
190         printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
191         tprintf(", %lu, ", tcp->u_arg[2]);
192         printllval(tcp, "%llu", PREAD_OFFSET_ARG);
193
194         return RVAL_DECODED;
195 }
196
197 static void
198 print_llu_from_low_high_val(struct tcb *tcp, int arg)
199 {
200 #if SIZEOF_LONG == SIZEOF_LONG_LONG
201 # if SUPPORTED_PERSONALITIES > 1
202         if (current_wordsize == sizeof(long))
203 # endif
204                 tprintf("%lu", (unsigned long) tcp->u_arg[arg]);
205 # if SUPPORTED_PERSONALITIES > 1
206         else
207                 tprintf("%lu",
208                         ((unsigned long) tcp->u_arg[arg + 1] << current_wordsize * 8)
209                         | (unsigned long) tcp->u_arg[arg]);
210 # endif
211 #else
212 # ifdef X32
213         if (current_personality == 0)
214                 tprintf("%llu", (unsigned long long) tcp->ext_arg[arg]);
215         else
216 # endif
217         tprintf("%llu",
218                 ((unsigned long long) (unsigned long) tcp->u_arg[arg + 1] << sizeof(long) * 8)
219                 | (unsigned long long) (unsigned long) tcp->u_arg[arg]);
220 #endif
221 }
222
223 SYS_FUNC(preadv)
224 {
225         if (entering(tcp)) {
226                 printfd(tcp, tcp->u_arg[0]);
227                 tprints(", ");
228         } else {
229                 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
230                 tprintf(", %lu, ", tcp->u_arg[2]);
231                 print_llu_from_low_high_val(tcp, 3);
232         }
233         return 0;
234 }
235
236 SYS_FUNC(pwritev)
237 {
238         printfd(tcp, tcp->u_arg[0]);
239         tprints(", ");
240         tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
241         tprintf(", %lu, ", tcp->u_arg[2]);
242         print_llu_from_low_high_val(tcp, 3);
243
244         return RVAL_DECODED;
245 }
246
247 #include "xlat/splice_flags.h"
248
249 SYS_FUNC(tee)
250 {
251         /* int fd_in */
252         printfd(tcp, tcp->u_arg[0]);
253         tprints(", ");
254         /* int fd_out */
255         printfd(tcp, tcp->u_arg[1]);
256         tprints(", ");
257         /* size_t len */
258         tprintf("%lu, ", tcp->u_arg[2]);
259         /* unsigned int flags */
260         printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???");
261
262         return RVAL_DECODED;
263 }
264
265 SYS_FUNC(splice)
266 {
267         /* int fd_in */
268         printfd(tcp, tcp->u_arg[0]);
269         tprints(", ");
270         /* loff_t *off_in */
271         printnum_int64(tcp, tcp->u_arg[1], "%" PRIu64);
272         tprints(", ");
273         /* int fd_out */
274         printfd(tcp, tcp->u_arg[2]);
275         tprints(", ");
276         /* loff_t *off_out */
277         printnum_int64(tcp, tcp->u_arg[3], "%" PRIu64);
278         tprints(", ");
279         /* size_t len */
280         tprintf("%lu, ", tcp->u_arg[4]);
281         /* unsigned int flags */
282         printflags(splice_flags, tcp->u_arg[5], "SPLICE_F_???");
283
284         return RVAL_DECODED;
285 }
286
287 SYS_FUNC(vmsplice)
288 {
289         /* int fd */
290         printfd(tcp, tcp->u_arg[0]);
291         tprints(", ");
292         /* const struct iovec *iov, unsigned long nr_segs */
293         tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1);
294         tprintf(", %lu, ", tcp->u_arg[2]);
295         /* unsigned int flags */
296         printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???");
297
298         return RVAL_DECODED;
299 }