]> granicus.if.org Git - strace/blob - mem.c
tests: fix printing of min_nr and nr arguments of io_getevents syscall
[strace] / mem.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  * Copyright (c) 2000 PocketPenguins Inc.  Linux for Hitachi SuperH
7  *                    port by Greg Banks <gbanks@pocketpenguins.com>
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. The name of the author may not be used to endorse or promote products
19  *    derived from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include "defs.h"
34 #include <asm/mman.h>
35 #include <sys/mman.h>
36
37 unsigned long
38 get_pagesize(void)
39 {
40         static unsigned long pagesize;
41
42         if (!pagesize)
43                 pagesize = sysconf(_SC_PAGESIZE);
44         return pagesize;
45 }
46
47 SYS_FUNC(brk)
48 {
49         printaddr(tcp->u_arg[0]);
50
51         return RVAL_DECODED | RVAL_HEX;
52 }
53
54 #include "xlat/mmap_prot.h"
55 #include "xlat/mmap_flags.h"
56
57 static void
58 print_mmap(struct tcb *tcp, long *u_arg, unsigned long long offset)
59 {
60         const unsigned long addr = u_arg[0];
61         const unsigned long len = u_arg[1];
62         const unsigned long prot = u_arg[2];
63         const unsigned long flags = u_arg[3];
64         const int fd = u_arg[4];
65
66         printaddr(addr);
67         tprintf(", %lu, ", len);
68         printflags_long(mmap_prot, prot, "PROT_???");
69         tprints(", ");
70 #ifdef MAP_TYPE
71         printxval_long(mmap_flags, flags & MAP_TYPE, "MAP_???");
72         addflags(mmap_flags, flags & ~MAP_TYPE);
73 #else
74         printflags_long(mmap_flags, flags, "MAP_???");
75 #endif
76         tprints(", ");
77         printfd(tcp, fd);
78         tprintf(", %#llx", offset);
79 }
80
81 /* Syscall name<->function correspondence is messed up on many arches.
82  * For example:
83  * i386 has __NR_mmap == 90, and it is "old mmap", and
84  * also it has __NR_mmap2 == 192, which is a "new mmap with page offsets".
85  * But x86_64 has just one __NR_mmap == 9, a "new mmap with byte offsets".
86  * Confused? Me too!
87  */
88
89 #if defined AARCH64 || defined ARM \
90  || defined I386 || defined X86_64 || defined X32 \
91  || defined M68K \
92  || defined S390 || defined S390X
93 /* Params are pointed to by u_arg[0], offset is in bytes */
94 SYS_FUNC(old_mmap)
95 {
96         long u_arg[6];
97 # if defined AARCH64 || defined X86_64
98         /* We are here only in a 32-bit personality. */
99         unsigned int narrow_arg[6];
100         if (umove_or_printaddr(tcp, tcp->u_arg[0], &narrow_arg))
101                 return RVAL_DECODED | RVAL_HEX;
102         unsigned int i;
103         for (i = 0; i < 6; i++)
104                 u_arg[i] = narrow_arg[i];
105 # else
106         if (umove_or_printaddr(tcp, tcp->u_arg[0], &u_arg))
107                 return RVAL_DECODED | RVAL_HEX;
108 # endif
109         print_mmap(tcp, u_arg, (unsigned long) u_arg[5]);
110
111         return RVAL_DECODED | RVAL_HEX;
112 }
113 #endif /* old_mmap architectures */
114
115 #if defined(S390)
116 /* Params are pointed to by u_arg[0], offset is in pages */
117 SYS_FUNC(old_mmap_pgoff)
118 {
119         long u_arg[5];
120         int i;
121         unsigned narrow_arg[6];
122         unsigned long long offset;
123         if (umoven(tcp, tcp->u_arg[0], sizeof(narrow_arg), narrow_arg) == -1)
124                 return 0;
125         for (i = 0; i < 5; i++)
126                 u_arg[i] = (unsigned long) narrow_arg[i];
127         offset = narrow_arg[5];
128         offset *= get_pagesize();
129         print_mmap(tcp, u_arg, offset);
130
131         return RVAL_DECODED | RVAL_HEX;
132 }
133 #endif
134
135 /* Params are passed directly, offset is in bytes */
136 SYS_FUNC(mmap)
137 {
138         unsigned long long offset =
139 #if HAVE_STRUCT_TCB_EXT_ARG
140                 tcp->ext_arg[5];        /* try test/x32_mmap.c */
141 #else
142                 (unsigned long) tcp->u_arg[5];
143 #endif
144         /* Example of kernel-side handling of this variety of mmap:
145          * arch/x86/kernel/sys_x86_64.c::SYSCALL_DEFINE6(mmap, ...) calls
146          * sys_mmap_pgoff(..., off >> PAGE_SHIFT); i.e. off is in bytes,
147          * since the above code converts off to pages.
148          */
149         print_mmap(tcp, tcp->u_arg, offset);
150
151         return RVAL_DECODED | RVAL_HEX;
152 }
153
154 /* Params are passed directly, offset is in pages */
155 SYS_FUNC(mmap_pgoff)
156 {
157         /* Try test/mmap_offset_decode.c */
158         unsigned long long offset;
159         offset = (unsigned long) tcp->u_arg[5];
160         offset *= get_pagesize();
161         print_mmap(tcp, tcp->u_arg, offset);
162
163         return RVAL_DECODED | RVAL_HEX;
164 }
165
166 /* Params are passed directly, offset is in 4k units */
167 SYS_FUNC(mmap_4koff)
168 {
169         unsigned long long offset;
170         offset = (unsigned long) tcp->u_arg[5];
171         offset <<= 12;
172         print_mmap(tcp, tcp->u_arg, offset);
173
174         return RVAL_DECODED | RVAL_HEX;
175 }
176
177 SYS_FUNC(munmap)
178 {
179         printaddr(tcp->u_arg[0]);
180         tprintf(", %lu", tcp->u_arg[1]);
181
182         return RVAL_DECODED;
183 }
184
185 SYS_FUNC(mprotect)
186 {
187         printaddr(tcp->u_arg[0]);
188         tprintf(", %lu, ", tcp->u_arg[1]);
189         printflags_long(mmap_prot, tcp->u_arg[2], "PROT_???");
190
191         return RVAL_DECODED;
192 }
193
194 #include "xlat/mremap_flags.h"
195
196 SYS_FUNC(mremap)
197 {
198         printaddr(tcp->u_arg[0]);
199         tprintf(", %lu, %lu, ", tcp->u_arg[1], tcp->u_arg[2]);
200         printflags_long(mremap_flags, tcp->u_arg[3], "MREMAP_???");
201 #ifdef MREMAP_FIXED
202         if ((tcp->u_arg[3] & (MREMAP_MAYMOVE | MREMAP_FIXED)) ==
203             (MREMAP_MAYMOVE | MREMAP_FIXED)) {
204                 tprints(", ");
205                 printaddr(tcp->u_arg[4]);
206         }
207 #endif
208         return RVAL_DECODED | RVAL_HEX;
209 }
210
211 #include "xlat/madvise_cmds.h"
212
213 SYS_FUNC(madvise)
214 {
215         printaddr(tcp->u_arg[0]);
216         tprintf(", %lu, ", tcp->u_arg[1]);
217         printxval(madvise_cmds, tcp->u_arg[2], "MADV_???");
218
219         return RVAL_DECODED;
220 }
221
222 #include "xlat/mlockall_flags.h"
223
224 SYS_FUNC(mlockall)
225 {
226         printflags(mlockall_flags, tcp->u_arg[0], "MCL_???");
227
228         return RVAL_DECODED;
229 }
230
231 #include "xlat/mctl_sync.h"
232
233 SYS_FUNC(msync)
234 {
235         /* addr */
236         printaddr(tcp->u_arg[0]);
237         /* len */
238         tprintf(", %lu, ", tcp->u_arg[1]);
239         /* flags */
240         printflags(mctl_sync, tcp->u_arg[2], "MS_???");
241
242         return RVAL_DECODED;
243 }
244
245 #include "xlat/mlock_flags.h"
246
247 SYS_FUNC(mlock2)
248 {
249         printaddr(tcp->u_arg[0]);
250         tprintf(", %lu, ", tcp->u_arg[1]);
251         printflags(mlock_flags, tcp->u_arg[2], "MLOCK_???");
252
253         return RVAL_DECODED;
254 }
255
256 SYS_FUNC(mincore)
257 {
258         if (entering(tcp)) {
259                 printaddr(tcp->u_arg[0]);
260                 tprintf(", %lu, ", tcp->u_arg[1]);
261         } else {
262                 const unsigned long page_size = get_pagesize();
263                 const unsigned long page_mask = page_size - 1;
264                 unsigned long len = tcp->u_arg[1];
265                 unsigned char *vec = NULL;
266
267                 len = len / page_size + (len & page_mask ? 1 : 0);
268                 if (syserror(tcp) || !verbose(tcp) ||
269                     !tcp->u_arg[2] || !(vec = malloc(len)) ||
270                     umoven(tcp, tcp->u_arg[2], len, vec) < 0)
271                         printaddr(tcp->u_arg[2]);
272                 else {
273                         unsigned long i;
274                         tprints("[");
275                         for (i = 0; i < len; i++) {
276                                 if (abbrev(tcp) && i >= max_strlen) {
277                                         tprints("...");
278                                         break;
279                                 }
280                                 tprints((vec[i] & 1) ? "1" : "0");
281                         }
282                         tprints("]");
283                 }
284                 free(vec);
285         }
286         return 0;
287 }
288
289 #if defined ALPHA || defined IA64 || defined M68K \
290  || defined SPARC || defined SPARC64
291 SYS_FUNC(getpagesize)
292 {
293         return RVAL_DECODED | RVAL_HEX;
294 }
295 #endif
296
297 SYS_FUNC(remap_file_pages)
298 {
299         const unsigned long addr = tcp->u_arg[0];
300         const unsigned long size = tcp->u_arg[1];
301         const unsigned long prot = tcp->u_arg[2];
302         const unsigned long pgoff = tcp->u_arg[3];
303         const unsigned long flags = tcp->u_arg[4];
304
305         printaddr(addr);
306         tprintf(", %lu, ", size);
307         printflags_long(mmap_prot, prot, "PROT_???");
308         tprintf(", %lu, ", pgoff);
309 #ifdef MAP_TYPE
310         printxval_long(mmap_flags, flags & MAP_TYPE, "MAP_???");
311         addflags(mmap_flags, flags & ~MAP_TYPE);
312 #else
313         printflags_long(mmap_flags, flags, "MAP_???");
314 #endif
315
316         return RVAL_DECODED;
317 }
318
319 #if defined(POWERPC)
320 static bool
321 print_protmap_entry(struct tcb *tcp, void *elem_buf, size_t elem_size, void *data)
322 {
323         tprintf("%#08x", * (unsigned int *) elem_buf);
324
325         return true;
326 }
327
328 SYS_FUNC(subpage_prot)
329 {
330         unsigned long addr = tcp->u_arg[0];
331         unsigned long len = tcp->u_arg[1];
332         unsigned long nmemb = len >> 16;
333         unsigned long map = tcp->u_arg[2];
334
335         printaddr(addr);
336         tprintf(", %lu, ", len);
337
338         unsigned int entry;
339         print_array(tcp, map, nmemb, &entry, sizeof(entry),
340                     umoven_or_printaddr, print_protmap_entry, 0);
341
342         return RVAL_DECODED;
343 }
344 #endif