]> granicus.if.org Git - strace/blob - mem.c
Mpersify parsers of utimes, futimesat, and utimensat syscalls
[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         /* addr */
61         printaddr(u_arg[0]);
62         /* len */
63         tprintf(", %lu, ", u_arg[1]);
64         /* prot */
65         printflags(mmap_prot, u_arg[2], "PROT_???");
66         tprints(", ");
67         /* flags */
68 #ifdef MAP_TYPE
69         printxval(mmap_flags, u_arg[3] & MAP_TYPE, "MAP_???");
70         addflags(mmap_flags, u_arg[3] & ~MAP_TYPE);
71 #else
72         printflags(mmap_flags, u_arg[3], "MAP_???");
73 #endif
74         tprints(", ");
75         /* fd */
76         printfd(tcp, u_arg[4]);
77         /* offset */
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 /* Params are pointed to by u_arg[0], offset is in bytes */
90 SYS_FUNC(old_mmap)
91 {
92         long u_arg[6];
93 #if defined(IA64)
94         /*
95          * IA64 processes never call this routine, they only use the
96          * new 'sys_mmap' interface. Only IA32 processes come here.
97          */
98         int i;
99         unsigned narrow_arg[6];
100         if (umoven(tcp, tcp->u_arg[0], sizeof(narrow_arg), narrow_arg) == -1)
101                 return 0;
102         for (i = 0; i < 6; i++)
103                 u_arg[i] = (unsigned long) narrow_arg[i];
104 #elif defined(X86_64)
105         /* We are here only in personality 1 (i386) */
106         int i;
107         unsigned narrow_arg[6];
108         if (umoven(tcp, tcp->u_arg[0], sizeof(narrow_arg), narrow_arg) == -1)
109                 return 0;
110         for (i = 0; i < 6; ++i)
111                 u_arg[i] = (unsigned long) narrow_arg[i];
112 #else
113         if (umoven(tcp, tcp->u_arg[0], sizeof(u_arg), u_arg) == -1)
114                 return 0;
115 #endif
116         print_mmap(tcp, u_arg, (unsigned long) u_arg[5]);
117
118         return RVAL_DECODED | RVAL_HEX;
119 }
120
121 #if defined(S390)
122 /* Params are pointed to by u_arg[0], offset is in pages */
123 SYS_FUNC(old_mmap_pgoff)
124 {
125         long u_arg[5];
126         int i;
127         unsigned narrow_arg[6];
128         unsigned long long offset;
129         if (umoven(tcp, tcp->u_arg[0], sizeof(narrow_arg), narrow_arg) == -1)
130                 return 0;
131         for (i = 0; i < 5; i++)
132                 u_arg[i] = (unsigned long) narrow_arg[i];
133         offset = narrow_arg[5];
134         offset *= get_pagesize();
135         print_mmap(tcp, u_arg, offset);
136
137         return RVAL_DECODED | RVAL_HEX;
138 }
139 #endif
140
141 /* Params are passed directly, offset is in bytes */
142 SYS_FUNC(mmap)
143 {
144         unsigned long long offset = (unsigned long) tcp->u_arg[5];
145 #if defined(LINUX_MIPSN32) || defined(X32)
146         /* Try test/x32_mmap.c */
147         offset = tcp->ext_arg[5];
148 #endif
149         /* Example of kernel-side handling of this variety of mmap:
150          * arch/x86/kernel/sys_x86_64.c::SYSCALL_DEFINE6(mmap, ...) calls
151          * sys_mmap_pgoff(..., off >> PAGE_SHIFT); i.e. off is in bytes,
152          * since the above code converts off to pages.
153          */
154         print_mmap(tcp, tcp->u_arg, offset);
155
156         return RVAL_DECODED | RVAL_HEX;
157 }
158
159 /* Params are passed directly, offset is in pages */
160 SYS_FUNC(mmap_pgoff)
161 {
162         /* Try test/mmap_offset_decode.c */
163         unsigned long long offset;
164         offset = (unsigned long) tcp->u_arg[5];
165         offset *= get_pagesize();
166         print_mmap(tcp, tcp->u_arg, offset);
167
168         return RVAL_DECODED | RVAL_HEX;
169 }
170
171 /* Params are passed directly, offset is in 4k units */
172 SYS_FUNC(mmap_4koff)
173 {
174         unsigned long long offset;
175         offset = (unsigned long) tcp->u_arg[5];
176         offset <<= 12;
177         print_mmap(tcp, tcp->u_arg, offset);
178
179         return RVAL_DECODED | RVAL_HEX;
180 }
181
182 SYS_FUNC(munmap)
183 {
184         printaddr(tcp->u_arg[0]);
185         tprintf(", %lu", tcp->u_arg[1]);
186
187         return RVAL_DECODED;
188 }
189
190 SYS_FUNC(mprotect)
191 {
192         printaddr(tcp->u_arg[0]);
193         tprintf(", %lu, ", tcp->u_arg[1]);
194         printflags(mmap_prot, tcp->u_arg[2], "PROT_???");
195
196         return RVAL_DECODED;
197 }
198
199 #include "xlat/mremap_flags.h"
200
201 SYS_FUNC(mremap)
202 {
203         printaddr(tcp->u_arg[0]);
204         tprintf(", %lu, %lu, ", tcp->u_arg[1], tcp->u_arg[2]);
205         printflags(mremap_flags, tcp->u_arg[3], "MREMAP_???");
206 #ifdef MREMAP_FIXED
207         if ((tcp->u_arg[3] & (MREMAP_MAYMOVE | MREMAP_FIXED)) ==
208             (MREMAP_MAYMOVE | MREMAP_FIXED)) {
209                 tprints(", ");
210                 printaddr(tcp->u_arg[4]);
211         }
212 #endif
213         return RVAL_DECODED | RVAL_HEX;
214 }
215
216 #include "xlat/madvise_cmds.h"
217
218 SYS_FUNC(madvise)
219 {
220         printaddr(tcp->u_arg[0]);
221         tprintf(", %lu, ", tcp->u_arg[1]);
222         printxval(madvise_cmds, tcp->u_arg[2], "MADV_???");
223
224         return RVAL_DECODED;
225 }
226
227 #include "xlat/mlockall_flags.h"
228
229 SYS_FUNC(mlockall)
230 {
231         printflags(mlockall_flags, tcp->u_arg[0], "MCL_???");
232
233         return RVAL_DECODED;
234 }
235
236 #include "xlat/mctl_sync.h"
237
238 SYS_FUNC(msync)
239 {
240         /* addr */
241         printaddr(tcp->u_arg[0]);
242         /* len */
243         tprintf(", %lu, ", tcp->u_arg[1]);
244         /* flags */
245         printflags(mctl_sync, tcp->u_arg[2], "MS_???");
246
247         return RVAL_DECODED;
248 }
249
250 SYS_FUNC(mincore)
251 {
252         if (entering(tcp)) {
253                 printaddr(tcp->u_arg[0]);
254                 tprintf(", %lu, ", tcp->u_arg[1]);
255         } else {
256                 unsigned long i, len;
257                 char *vec = NULL;
258
259                 len = tcp->u_arg[1];
260                 if (syserror(tcp) || !verbose(tcp) ||
261                     !tcp->u_arg[2] || !(vec = malloc(len)) ||
262                     umoven(tcp, tcp->u_arg[2], len, vec) < 0)
263                         printaddr(tcp->u_arg[2]);
264                 else {
265                         tprints("[");
266                         for (i = 0; i < len; i++) {
267                                 if (abbrev(tcp) && i >= max_strlen) {
268                                         tprints("...");
269                                         break;
270                                 }
271                                 tprints((vec[i] & 1) ? "1" : "0");
272                         }
273                         tprints("]");
274                 }
275                 free(vec);
276         }
277         return 0;
278 }
279
280 #if defined ALPHA || defined IA64 || defined M68K \
281  || defined SPARC || defined SPARC64
282 SYS_FUNC(getpagesize)
283 {
284         if (exiting(tcp))
285                 return RVAL_HEX;
286         return 0;
287 }
288 #endif
289
290 SYS_FUNC(remap_file_pages)
291 {
292         printaddr(tcp->u_arg[0]);
293         tprintf(", %lu, ", tcp->u_arg[1]);
294         printflags(mmap_prot, tcp->u_arg[2], "PROT_???");
295         tprintf(", %lu, ", tcp->u_arg[3]);
296 #ifdef MAP_TYPE
297         printxval(mmap_flags, tcp->u_arg[4] & MAP_TYPE, "MAP_???");
298         addflags(mmap_flags, tcp->u_arg[4] & ~MAP_TYPE);
299 #else
300         printflags(mmap_flags, tcp->u_arg[4], "MAP_???");
301 #endif
302
303         return RVAL_DECODED;
304 }
305
306 #define MPOL_DEFAULT    0
307 #define MPOL_PREFERRED  1
308 #define MPOL_BIND       2
309 #define MPOL_INTERLEAVE 3
310
311 #define MPOL_F_NODE     (1<<0)
312 #define MPOL_F_ADDR     (1<<1)
313
314 #define MPOL_MF_STRICT  (1<<0)
315 #define MPOL_MF_MOVE    (1<<1)
316 #define MPOL_MF_MOVE_ALL (1<<2)
317
318 #include "xlat/policies.h"
319 #include "xlat/mbindflags.h"
320 #include "xlat/mempolicyflags.h"
321 #include "xlat/move_pages_flags.h"
322
323 static void
324 get_nodes(struct tcb *tcp, unsigned long ptr, unsigned long maxnodes, int err)
325 {
326         unsigned long nlongs, size, end;
327
328         nlongs = (maxnodes + 8 * sizeof(long) - 1) / (8 * sizeof(long));
329         size = nlongs * sizeof(long);
330         end = ptr + size;
331         if (nlongs == 0 || ((err || verbose(tcp)) && (size * 8 == maxnodes)
332                             && (end > ptr))) {
333                 unsigned long n, cur, abbrev_end;
334                 int failed = 0;
335
336                 if (abbrev(tcp)) {
337                         abbrev_end = ptr + max_strlen * sizeof(long);
338                         if (abbrev_end < ptr)
339                                 abbrev_end = end;
340                 } else {
341                         abbrev_end = end;
342                 }
343                 tprints(", {");
344                 for (cur = ptr; cur < end; cur += sizeof(long)) {
345                         if (cur > ptr)
346                                 tprints(", ");
347                         if (cur >= abbrev_end) {
348                                 tprints("...");
349                                 break;
350                         }
351                         if (umoven(tcp, cur, sizeof(n), &n) < 0) {
352                                 tprints("?");
353                                 failed = 1;
354                                 break;
355                         }
356                         tprintf("%#0*lx", (int) sizeof(long) * 2 + 2, n);
357                 }
358                 tprints("}");
359                 if (failed) {
360                         tprints(" ");
361                         printaddr(ptr);
362                 }
363         } else {
364                 tprints(" ");
365                 printaddr(ptr);
366         }
367         tprintf(", %lu", maxnodes);
368 }
369
370 SYS_FUNC(mbind)
371 {
372         printaddr(tcp->u_arg[0]);
373         tprintf(", %lu, ", tcp->u_arg[1]);
374         printxval(policies, tcp->u_arg[2], "MPOL_???");
375         get_nodes(tcp, tcp->u_arg[3], tcp->u_arg[4], 0);
376         tprints(", ");
377         printflags(mbindflags, tcp->u_arg[5], "MPOL_???");
378
379         return RVAL_DECODED;
380 }
381
382 SYS_FUNC(set_mempolicy)
383 {
384         printxval(policies, tcp->u_arg[0], "MPOL_???");
385         get_nodes(tcp, tcp->u_arg[1], tcp->u_arg[2], 0);
386
387         return RVAL_DECODED;
388 }
389
390 SYS_FUNC(get_mempolicy)
391 {
392         if (exiting(tcp)) {
393                 int pol;
394                 if (!umove_or_printaddr(tcp, tcp->u_arg[0], &pol))
395                         printxval(policies, pol, "MPOL_???");
396                 get_nodes(tcp, tcp->u_arg[1], tcp->u_arg[2], syserror(tcp));
397                 tprints(", ");
398                 printaddr(tcp->u_arg[3]);
399                 tprints(", ");
400                 printflags(mempolicyflags, tcp->u_arg[4], "MPOL_???");
401         }
402         return 0;
403 }
404
405 SYS_FUNC(migrate_pages)
406 {
407         tprintf("%ld, ", (long) (pid_t) tcp->u_arg[0]);
408         get_nodes(tcp, tcp->u_arg[2], tcp->u_arg[1], 0);
409         tprints(", ");
410         get_nodes(tcp, tcp->u_arg[3], tcp->u_arg[1], 0);
411
412         return RVAL_DECODED;
413 }
414
415 SYS_FUNC(move_pages)
416 {
417         if (entering(tcp)) {
418                 unsigned long npages = tcp->u_arg[1];
419                 tprintf("%ld, %lu, ", tcp->u_arg[0], npages);
420                 if (tcp->u_arg[2] == 0)
421                         tprints("NULL, ");
422                 else {
423                         unsigned int i;
424                         long puser = tcp->u_arg[2];
425                         tprints("{");
426                         for (i = 0; i < npages; ++i) {
427                                 void *p;
428                                 if (i > 0)
429                                         tprints(", ");
430                                 if (umove(tcp, puser, &p) < 0) {
431                                         tprints("???");
432                                         break;
433                                 }
434                                 tprintf("%p", p);
435                                 puser += sizeof(void *);
436                         }
437                         tprints("}, ");
438                 }
439                 if (tcp->u_arg[3] == 0)
440                         tprints("NULL, ");
441                 else {
442                         unsigned int i;
443                         long nodeuser = tcp->u_arg[3];
444                         tprints("{");
445                         for (i = 0; i < npages; ++i) {
446                                 int node;
447                                 if (i > 0)
448                                         tprints(", ");
449                                 if (umove(tcp, nodeuser, &node) < 0) {
450                                         tprints("???");
451                                         break;
452                                 }
453                                 tprintf("%#x", node);
454                                 nodeuser += sizeof(int);
455                         }
456                         tprints("}, ");
457                 }
458         } else {
459                 unsigned long npages = tcp->u_arg[1];
460                 if (tcp->u_arg[4] == 0)
461                         tprints("NULL, ");
462                 else {
463                         unsigned int i;
464                         long statususer = tcp->u_arg[4];
465                         tprints("{");
466                         for (i = 0; i < npages; ++i) {
467                                 int status;
468                                 if (i > 0)
469                                         tprints(", ");
470                                 if (umove(tcp, statususer, &status) < 0) {
471                                         tprints("???");
472                                         break;
473                                 }
474                                 tprintf("%#x", status);
475                                 statususer += sizeof(int);
476                         }
477                         tprints("}, ");
478                 }
479                 printflags(move_pages_flags, tcp->u_arg[5], "MPOL_???");
480         }
481         return 0;
482 }
483
484 #if defined(POWERPC)
485 SYS_FUNC(subpage_prot)
486 {
487         unsigned long cur, end, abbrev_end, entries;
488         unsigned int entry;
489
490         printaddr(tcp->u_arg[0]);
491         tprints(", ");
492         printaddr(tcp->u_arg[1]);
493         tprints(", ");
494         entries = tcp->u_arg[1] >> 16;
495         if (!entries || !tcp->u_arg[2]) {
496                 tprints("{}");
497                 return 0;
498         }
499         cur = tcp->u_arg[2];
500         end = cur + (sizeof(int) * entries);
501         if (!verbose(tcp) || end < (unsigned long) tcp->u_arg[2]) {
502                 printaddr(tcp->u_arg[2]);
503                 return 0;
504         }
505         if (abbrev(tcp)) {
506                 abbrev_end = cur + (sizeof(int) * max_strlen);
507                 if (abbrev_end > end)
508                         abbrev_end = end;
509         }
510         else
511                 abbrev_end = end;
512         tprints("{");
513         for (; cur < end; cur += sizeof(int)) {
514                 if (cur > (unsigned long) tcp->u_arg[2])
515                         tprints(", ");
516                 if (cur >= abbrev_end) {
517                         tprints("...");
518                         break;
519                 }
520                 if (umove(tcp, cur, &entry) < 0) {
521                         tprintf("??? [%#lx]", cur);
522                         break;
523                 }
524                 else
525                         tprintf("%#08x", entry);
526         }
527         tprints("}");
528
529         return RVAL_DECODED;
530 }
531 #endif