blob: 86f9abe0f79515f5d617756f9e26a967f9cb3a0f [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
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>
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00005 * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00006 * 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 * $Id$
31 */
32
33#include "defs.h"
34
35#include <fcntl.h>
John Hughes1d08dcf2001-07-10 13:48:44 +000036#if HAVE_SYS_UIO_H
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000037#include <sys/uio.h>
John Hughes1d08dcf2001-07-10 13:48:44 +000038#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000039
John Hughes70623be2001-03-08 13:59:00 +000040#ifdef HAVE_LONG_LONG_OFF_T
41/*
42 * Hacks for systems that have a long long off_t
43 */
44
45#define sys_pread64 sys_pread
46#define sys_pwrite64 sys_pwrite
47#endif
48
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000049int
50sys_read(tcp)
51struct tcb *tcp;
52{
53 if (entering(tcp)) {
54 tprintf("%ld, ", tcp->u_arg[0]);
55 } else {
56 if (syserror(tcp))
57 tprintf("%#lx", tcp->u_arg[1]);
58 else
59 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
60 tprintf(", %lu", tcp->u_arg[2]);
61 }
62 return 0;
63}
64
65int
66sys_write(tcp)
67struct tcb *tcp;
68{
69 if (entering(tcp)) {
70 tprintf("%ld, ", tcp->u_arg[0]);
71 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
72 tprintf(", %lu", tcp->u_arg[2]);
73 }
74 return 0;
75}
76
John Hughes1d08dcf2001-07-10 13:48:44 +000077#if HAVE_SYS_UIO_H
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000078void
79tprint_iov(tcp, len, addr)
80struct tcb * tcp;
81int len;
John Hughes1d08dcf2001-07-10 13:48:44 +000082long addr;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000083{
84 struct iovec *iov;
85 int i;
86
87
88 if (!len) {
89 tprintf("[]");
90 return;
91 }
Roland McGrath186c5ac2002-12-15 23:58:23 +000092
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000093 if ((iov = (struct iovec *) malloc(len * sizeof *iov)) == NULL) {
94 fprintf(stderr, "No memory");
95 return;
96 }
John Hughes1d08dcf2001-07-10 13:48:44 +000097 if (umoven(tcp, addr,
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +000098 len * sizeof *iov, (char *) iov) < 0) {
99 tprintf("%#lx", tcp->u_arg[1]);
100 } else {
101 tprintf("[");
102 for (i = 0; i < len; i++) {
103 if (i)
104 tprintf(", ");
105 tprintf("{");
106 printstr(tcp, (long) iov[i].iov_base,
107 iov[i].iov_len);
108 tprintf(", %lu}", (unsigned long)iov[i].iov_len);
109 }
110 tprintf("]");
111 }
112 free((char *) iov);
113}
114
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000115int
116sys_readv(tcp)
117struct tcb *tcp;
118{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000119 if (entering(tcp)) {
120 tprintf("%ld, ", tcp->u_arg[0]);
121 } else {
122 if (syserror(tcp)) {
123 tprintf("%#lx, %lu",
124 tcp->u_arg[1], tcp->u_arg[2]);
125 return 0;
126 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000127 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000128 tprintf(", %lu", tcp->u_arg[2]);
129 }
130 return 0;
131}
132
133int
134sys_writev(tcp)
135struct tcb *tcp;
136{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000137 if (entering(tcp)) {
138 tprintf("%ld, ", tcp->u_arg[0]);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000139 tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000140 tprintf(", %lu", tcp->u_arg[2]);
141 }
142 return 0;
143}
John Hughes1d08dcf2001-07-10 13:48:44 +0000144#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000145
John Hughes5a826b82001-03-07 13:21:24 +0000146#if defined(SVR4)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000147
148int
149sys_pread(tcp)
150struct tcb *tcp;
151{
152 if (entering(tcp)) {
153 tprintf("%ld, ", tcp->u_arg[0]);
154 } else {
155 if (syserror(tcp))
156 tprintf("%#lx", tcp->u_arg[1]);
157 else
158 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000159#if UNIXWARE
160 /* off_t is signed int */
161 tprintf(", %lu, %ld", tcp->u_arg[2], tcp->u_arg[3]);
162#else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000163 tprintf(", %lu, %llu", tcp->u_arg[2],
Roland McGrath2fe2a3e2004-10-07 19:09:16 +0000164 LONG_LONG(tcp->u_arg[3], tcp->u_arg[4]));
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000165#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000166 }
167 return 0;
168}
169
170int
171sys_pwrite(tcp)
172struct tcb *tcp;
173{
174 if (entering(tcp)) {
175 tprintf("%ld, ", tcp->u_arg[0]);
176 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000177#if UNIXWARE
178 /* off_t is signed int */
179 tprintf(", %lu, %ld", tcp->u_arg[2], tcp->u_arg[3]);
180#else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000181 tprintf(", %lu, %llu", tcp->u_arg[2],
Roland McGrath2fe2a3e2004-10-07 19:09:16 +0000182 LONG_LONG(tcp->u_arg[3], tcp->u_arg[4]));
Wichert Akkerman9ce1a631999-08-29 23:15:07 +0000183#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000184 }
185 return 0;
186}
John Hughes5a826b82001-03-07 13:21:24 +0000187#endif /* SVR4 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000188
189#ifdef FREEBSD
190#include <sys/types.h>
191#include <sys/socket.h>
192
193int
194sys_sendfile(tcp)
195struct tcb *tcp;
196{
197 if (entering(tcp)) {
198 tprintf("%ld, %ld, %llu, %lu", tcp->u_arg[0], tcp->u_arg[1],
Roland McGrath2fe2a3e2004-10-07 19:09:16 +0000199 LONG_LONG(tcp->u_arg[2], tcp->u_arg[3]),
200 tcp->u_arg[4]);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000201 } else {
202 off_t offset;
203
204 if (!tcp->u_arg[5])
205 tprintf(", NULL");
206 else {
207 struct sf_hdtr hdtr;
208
209 if (umove(tcp, tcp->u_arg[5], &hdtr) < 0)
210 tprintf(", %#lx", tcp->u_arg[5]);
211 else {
212 tprintf(", { ");
213 tprint_iov(tcp, hdtr.hdr_cnt, hdtr.headers);
214 tprintf(", %u, ", hdtr.hdr_cnt);
215 tprint_iov(tcp, hdtr.trl_cnt, hdtr.trailers);
216 tprintf(", %u }", hdtr.hdr_cnt);
217 }
218 }
219 if (!tcp->u_arg[6])
220 tprintf(", NULL");
221 else if (umove(tcp, tcp->u_arg[6], &offset) < 0)
222 tprintf(", %#lx", tcp->u_arg[6]);
223 else
224 tprintf(", [%llu]", offset);
225 tprintf(", %lu", tcp->u_arg[7]);
226 }
227 return 0;
228}
229#endif /* FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000230
231#ifdef LINUX
Roland McGrathc0f8bbd2003-08-21 09:58:00 +0000232
233/* The SH4 ABI does allow long longs in odd-numbered registers, but
234 does not allow them to be split between registers and memory - and
235 there are only four argument registers for normal functions. As a
236 result pread takes an extra padding argument before the offset. This
237 was changed late in the 2.4 series (around 2.4.20). */
238#if defined(SH)
239#define PREAD_OFFSET_ARG 4
240#else
241#define PREAD_OFFSET_ARG 3
242#endif
243
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000244int
245sys_pread(tcp)
246struct tcb *tcp;
247{
248 if (entering(tcp)) {
249 tprintf("%ld, ", tcp->u_arg[0]);
250 } else {
251 if (syserror(tcp))
252 tprintf("%#lx", tcp->u_arg[1]);
253 else
254 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
Roland McGrathc0f8bbd2003-08-21 09:58:00 +0000255 ALIGN64 (tcp, PREAD_OFFSET_ARG); /* PowerPC alignment restriction */
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000256 tprintf(", %lu, %llu", tcp->u_arg[2],
Roland McGrathc0f8bbd2003-08-21 09:58:00 +0000257 *(unsigned long long *)&tcp->u_arg[PREAD_OFFSET_ARG]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000258 }
259 return 0;
260}
261
262int
263sys_pwrite(tcp)
264struct tcb *tcp;
265{
266 if (entering(tcp)) {
267 tprintf("%ld, ", tcp->u_arg[0]);
268 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
Roland McGrathc0f8bbd2003-08-21 09:58:00 +0000269 ALIGN64 (tcp, PREAD_OFFSET_ARG); /* PowerPC alignment restriction */
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000270 tprintf(", %lu, %llu", tcp->u_arg[2],
Roland McGrathc0f8bbd2003-08-21 09:58:00 +0000271 *(unsigned long long *)&tcp->u_arg[PREAD_OFFSET_ARG]);
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000272 }
273 return 0;
274}
275
276int
277sys_sendfile(tcp)
278struct tcb *tcp;
279{
280 if (entering(tcp)) {
281 off_t offset;
282
283 tprintf("%ld, %ld, ", tcp->u_arg[0], tcp->u_arg[1]);
284 if (!tcp->u_arg[2])
285 tprintf("NULL");
286 else if (umove(tcp, tcp->u_arg[2], &offset) < 0)
287 tprintf("%#lx", tcp->u_arg[2]);
288 else
289 tprintf("[%lu]", offset);
290 tprintf(", %lu", tcp->u_arg[3]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000291 }
292 return 0;
293}
294
Roland McGrath186c5ac2002-12-15 23:58:23 +0000295int
296sys_sendfile64(tcp)
297struct tcb *tcp;
298{
299 if (entering(tcp)) {
300 loff_t offset;
301
302 tprintf("%ld, %ld, ", tcp->u_arg[0], tcp->u_arg[1]);
303 if (!tcp->u_arg[2])
304 tprintf("NULL");
305 else if (umove(tcp, tcp->u_arg[2], &offset) < 0)
306 tprintf("%#lx", tcp->u_arg[2]);
307 else
308 tprintf("[%llu]", (unsigned long long int) offset);
309 tprintf(", %lu", tcp->u_arg[3]);
310 }
311 return 0;
312}
313
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000314#endif /* LINUX */
315
John Hughes70623be2001-03-08 13:59:00 +0000316#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
John Hughesbdf48f52001-03-06 15:08:09 +0000317int
318sys_pread64(tcp)
319struct tcb *tcp;
320{
321 if (entering(tcp)) {
322 tprintf("%ld, ", tcp->u_arg[0]);
323 } else {
John Hughes5a826b82001-03-07 13:21:24 +0000324 ALIGN64 (tcp, 3);
John Hughesbdf48f52001-03-06 15:08:09 +0000325 if (syserror(tcp))
326 tprintf("%#lx", tcp->u_arg[1]);
327 else
328 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
John Hughes5a826b82001-03-07 13:21:24 +0000329 tprintf(", %lu, %#llx", tcp->u_arg[2],
John Hughes0c79e012001-03-08 14:40:06 +0000330 LONG_LONG(tcp->u_arg[3], tcp->u_arg[4]));
John Hughesbdf48f52001-03-06 15:08:09 +0000331 }
332 return 0;
333}
334
335int
336sys_pwrite64(tcp)
337struct tcb *tcp;
338{
339 if (entering(tcp)) {
John Hughes5a826b82001-03-07 13:21:24 +0000340 ALIGN64 (tcp, 3);
John Hughesbdf48f52001-03-06 15:08:09 +0000341 tprintf("%ld, ", tcp->u_arg[0]);
342 printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
John Hughes5a826b82001-03-07 13:21:24 +0000343 tprintf(", %lu, %#llx", tcp->u_arg[2],
John Hughes0c79e012001-03-08 14:40:06 +0000344 LONG_LONG(tcp->u_arg[3], tcp->u_arg[4]));
John Hughesbdf48f52001-03-06 15:08:09 +0000345 }
346 return 0;
347}
348#endif
Roland McGrath186c5ac2002-12-15 23:58:23 +0000349
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000350int
351sys_ioctl(tcp)
352struct tcb *tcp;
353{
Roland McGrathee36ce12004-09-04 03:53:10 +0000354 const struct ioctlent *iop;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000355
356 if (entering(tcp)) {
357 tprintf("%ld, ", tcp->u_arg[0]);
Roland McGrath2843a4e2003-11-14 02:54:03 +0000358 iop = ioctl_lookup(tcp->u_arg[1]);
359 if (iop) {
360 tprintf("%s", iop->symbol);
361 while ((iop = ioctl_next_match(iop)))
362 tprintf(" or %s", iop->symbol);
363 } else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000364 tprintf("%#lx", tcp->u_arg[1]);
365 ioctl_decode(tcp, tcp->u_arg[1], tcp->u_arg[2]);
366 }
367 else {
John Hughes38ae88d2002-05-23 11:48:58 +0000368 int ret;
369 if (!(ret = ioctl_decode(tcp, tcp->u_arg[1], tcp->u_arg[2])))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000370 tprintf(", %#lx", tcp->u_arg[2]);
John Hughes38ae88d2002-05-23 11:48:58 +0000371 else
372 return ret - 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000373 }
374 return 0;
375}