]> granicus.if.org Git - strace/blob - mem.c
xlat: extend syntax with #val_type directive
[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(mmap_prot, prot, "PROT_???");
69         tprints(", ");
70 #ifdef MAP_TYPE
71         printxval(mmap_flags, flags & MAP_TYPE, "MAP_???");
72         addflags(mmap_flags, flags & ~MAP_TYPE);
73 #else
74         printflags(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 = (unsigned long) tcp->u_arg[5];
139 #if defined(LINUX_MIPSN32) || defined(X32)
140         /* Try test/x32_mmap.c */
141         offset = tcp->ext_arg[5];
142 #endif
143         /* Example of kernel-side handling of this variety of mmap:
144          * arch/x86/kernel/sys_x86_64.c::SYSCALL_DEFINE6(mmap, ...) calls
145          * sys_mmap_pgoff(..., off >> PAGE_SHIFT); i.e. off is in bytes,
146          * since the above code converts off to pages.
147          */
148         print_mmap(tcp, tcp->u_arg, offset);
149
150         return RVAL_DECODED | RVAL_HEX;
151 }
152
153 /* Params are passed directly, offset is in pages */
154 SYS_FUNC(mmap_pgoff)
155 {
156         /* Try test/mmap_offset_decode.c */
157         unsigned long long offset;
158         offset = (unsigned long) tcp->u_arg[5];
159         offset *= get_pagesize();
160         print_mmap(tcp, tcp->u_arg, offset);
161
162         return RVAL_DECODED | RVAL_HEX;
163 }
164
165 /* Params are passed directly, offset is in 4k units */
166 SYS_FUNC(mmap_4koff)
167 {
168         unsigned long long offset;
169         offset = (unsigned long) tcp->u_arg[5];
170         offset <<= 12;
171         print_mmap(tcp, tcp->u_arg, offset);
172
173         return RVAL_DECODED | RVAL_HEX;
174 }
175
176 SYS_FUNC(munmap)
177 {
178         printaddr(tcp->u_arg[0]);
179         tprintf(", %lu", tcp->u_arg[1]);
180
181         return RVAL_DECODED;
182 }
183
184 SYS_FUNC(mprotect)
185 {
186         printaddr(tcp->u_arg[0]);
187         tprintf(", %lu, ", tcp->u_arg[1]);
188         printflags(mmap_prot, tcp->u_arg[2], "PROT_???");
189
190         return RVAL_DECODED;
191 }
192
193 #include "xlat/mremap_flags.h"
194
195 SYS_FUNC(mremap)
196 {
197         printaddr(tcp->u_arg[0]);
198         tprintf(", %lu, %lu, ", tcp->u_arg[1], tcp->u_arg[2]);
199         printflags(mremap_flags, tcp->u_arg[3], "MREMAP_???");
200 #ifdef MREMAP_FIXED
201         if ((tcp->u_arg[3] & (MREMAP_MAYMOVE | MREMAP_FIXED)) ==
202             (MREMAP_MAYMOVE | MREMAP_FIXED)) {
203                 tprints(", ");
204                 printaddr(tcp->u_arg[4]);
205         }
206 #endif
207         return RVAL_DECODED | RVAL_HEX;
208 }
209
210 #include "xlat/madvise_cmds.h"
211
212 SYS_FUNC(madvise)
213 {
214         printaddr(tcp->u_arg[0]);
215         tprintf(", %lu, ", tcp->u_arg[1]);
216         printxval(madvise_cmds, tcp->u_arg[2], "MADV_???");
217
218         return RVAL_DECODED;
219 }
220
221 #include "xlat/mlockall_flags.h"
222
223 SYS_FUNC(mlockall)
224 {
225         printflags(mlockall_flags, tcp->u_arg[0], "MCL_???");
226
227         return RVAL_DECODED;
228 }
229
230 #include "xlat/mctl_sync.h"
231
232 SYS_FUNC(msync)
233 {
234         /* addr */
235         printaddr(tcp->u_arg[0]);
236         /* len */
237         tprintf(", %lu, ", tcp->u_arg[1]);
238         /* flags */
239         printflags(mctl_sync, tcp->u_arg[2], "MS_???");
240
241         return RVAL_DECODED;
242 }
243
244 #include "xlat/mlock_flags.h"
245
246 SYS_FUNC(mlock2)
247 {
248         printaddr(tcp->u_arg[0]);
249         tprintf(", %lu, ", tcp->u_arg[1]);
250         printflags(mlock_flags, tcp->u_arg[2], "MLOCK_???");
251
252         return RVAL_DECODED;
253 }
254
255 SYS_FUNC(mincore)
256 {
257         if (entering(tcp)) {
258                 printaddr(tcp->u_arg[0]);
259                 tprintf(", %lu, ", tcp->u_arg[1]);
260         } else {
261                 const unsigned long page_size = get_pagesize();
262                 const unsigned long page_mask = page_size - 1;
263                 unsigned long len = tcp->u_arg[1];
264                 unsigned char *vec = NULL;
265
266                 len = len / page_size + (len & page_mask ? 1 : 0);
267                 if (syserror(tcp) || !verbose(tcp) ||
268                     !tcp->u_arg[2] || !(vec = malloc(len)) ||
269                     umoven(tcp, tcp->u_arg[2], len, vec) < 0)
270                         printaddr(tcp->u_arg[2]);
271                 else {
272                         unsigned long i;
273                         tprints("[");
274                         for (i = 0; i < len; i++) {
275                                 if (abbrev(tcp) && i >= max_strlen) {
276                                         tprints("...");
277                                         break;
278                                 }
279                                 tprints((vec[i] & 1) ? "1" : "0");
280                         }
281                         tprints("]");
282                 }
283                 free(vec);
284         }
285         return 0;
286 }
287
288 #if defined ALPHA || defined IA64 || defined M68K \
289  || defined SPARC || defined SPARC64
290 SYS_FUNC(getpagesize)
291 {
292         return RVAL_DECODED | RVAL_HEX;
293 }
294 #endif
295
296 SYS_FUNC(remap_file_pages)
297 {
298         const unsigned long addr = tcp->u_arg[0];
299         const unsigned long size = tcp->u_arg[1];
300         const unsigned long prot = tcp->u_arg[2];
301         const unsigned long pgoff = tcp->u_arg[3];
302         const unsigned long flags = tcp->u_arg[4];
303
304         printaddr(addr);
305         tprintf(", %lu, ", size);
306         printflags(mmap_prot, prot, "PROT_???");
307         tprintf(", %lu, ", pgoff);
308 #ifdef MAP_TYPE
309         printxval(mmap_flags, flags & MAP_TYPE, "MAP_???");
310         addflags(mmap_flags, flags & ~MAP_TYPE);
311 #else
312         printflags(mmap_flags, flags, "MAP_???");
313 #endif
314
315         return RVAL_DECODED;
316 }
317
318 #if defined(POWERPC)
319 SYS_FUNC(subpage_prot)
320 {
321         unsigned long cur, end, abbrev_end, entries;
322         unsigned int entry;
323
324         printaddr(tcp->u_arg[0]);
325         tprints(", ");
326         printaddr(tcp->u_arg[1]);
327         tprints(", ");
328         entries = tcp->u_arg[1] >> 16;
329         if (!entries || !tcp->u_arg[2]) {
330                 tprints("{}");
331                 return 0;
332         }
333         cur = tcp->u_arg[2];
334         end = cur + (sizeof(int) * entries);
335         if (!verbose(tcp) || end < (unsigned long) tcp->u_arg[2]) {
336                 printaddr(tcp->u_arg[2]);
337                 return 0;
338         }
339         if (abbrev(tcp)) {
340                 abbrev_end = cur + (sizeof(int) * max_strlen);
341                 if (abbrev_end > end)
342                         abbrev_end = end;
343         }
344         else
345                 abbrev_end = end;
346         tprints("{");
347         for (; cur < end; cur += sizeof(int)) {
348                 if (cur > (unsigned long) tcp->u_arg[2])
349                         tprints(", ");
350                 if (cur >= abbrev_end) {
351                         tprints("...");
352                         break;
353                 }
354                 if (umove(tcp, cur, &entry) < 0) {
355                         tprintf("??? [%#lx]", cur);
356                         break;
357                 }
358                 else
359                         tprintf("%#08x", entry);
360         }
361         tprints("}");
362
363         return RVAL_DECODED;
364 }
365 #endif