blob: deefff3d79f8760387a36fea5a4a245fc871552e [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>
Roland McGrathe1e584b2003-06-02 19:18:58 +00006 * Copyright (c) 2000 PocketPenguins Inc. Linux for Hitachi SuperH
7 * port by Greg Banks <gbanks@pocketpenguins.com>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00008 * 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.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000031 */
32
33#include "defs.h"
Roland McGrath05cdd3c2004-03-02 06:16:59 +000034#include <asm/mman.h>
Wichert Akkerman2e2553a1999-05-09 00:29:58 +000035#include <sys/mman.h>
Denys Vlasenko84703742012-02-25 02:38:52 +010036#if defined(I386)
Denys Vlasenko72a58482011-08-19 16:01:51 +020037# include <asm/ldt.h>
Roland McGrath7decfb22004-03-01 22:10:52 +000038# ifdef HAVE_STRUCT_USER_DESC
39# define modify_ldt_ldt_s user_desc
40# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000041#endif
Denys Vlasenko84703742012-02-25 02:38:52 +010042#if defined(SH64)
Denys Vlasenko72a58482011-08-19 16:01:51 +020043# include <asm/page.h> /* for PAGE_SHIFT */
Roland McGrathe1e584b2003-06-02 19:18:58 +000044#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000045
John Hughes70623be2001-03-08 13:59:00 +000046#ifdef HAVE_LONG_LONG_OFF_T
47/*
48 * Ugly hacks for systems that have a long long off_t
49 */
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010050# define sys_mmap64 sys_mmap
John Hughes70623be2001-03-08 13:59:00 +000051#endif
52
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000053int
Denys Vlasenko12014262011-05-30 14:00:14 +020054sys_brk(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000055{
56 if (entering(tcp)) {
57 tprintf("%#lx", tcp->u_arg[0]);
58 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000059 return RVAL_HEX;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000060}
61
Roland McGrathd9f816f2004-09-04 03:39:20 +000062static const struct xlat mmap_prot[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000063 { PROT_NONE, "PROT_NONE", },
64 { PROT_READ, "PROT_READ" },
65 { PROT_WRITE, "PROT_WRITE" },
66 { PROT_EXEC, "PROT_EXEC" },
Roland McGrath47eb0e22003-09-25 23:06:04 +000067#ifdef PROT_SEM
68 { PROT_SEM, "PROT_SEM" },
69#endif
70#ifdef PROT_GROWSDOWN
71 { PROT_GROWSDOWN,"PROT_GROWSDOWN"},
72#endif
73#ifdef PROT_GROWSUP
74 { PROT_GROWSUP, "PROT_GROWSUP" },
75#endif
Roland McGrath586d6ab2008-08-25 03:00:47 +000076#ifdef PROT_SAO
77 { PROT_SAO, "PROT_SAO" },
78#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000079 { 0, NULL },
80};
81
Roland McGrathd9f816f2004-09-04 03:39:20 +000082static const struct xlat mmap_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000083 { MAP_SHARED, "MAP_SHARED" },
84 { MAP_PRIVATE, "MAP_PRIVATE" },
85 { MAP_FIXED, "MAP_FIXED" },
86#ifdef MAP_ANONYMOUS
87 { MAP_ANONYMOUS,"MAP_ANONYMOUS" },
88#endif
Dmitry V. Levin71f1a132007-03-29 23:30:09 +000089#ifdef MAP_32BIT
90 { MAP_32BIT, "MAP_32BIT" },
91#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000092#ifdef MAP_RENAME
93 { MAP_RENAME, "MAP_RENAME" },
94#endif
95#ifdef MAP_NORESERVE
96 { MAP_NORESERVE,"MAP_NORESERVE" },
97#endif
Roland McGrath72c5b7b2003-03-05 04:08:00 +000098#ifdef MAP_POPULATE
99 { MAP_POPULATE, "MAP_POPULATE" },
100#endif
101#ifdef MAP_NONBLOCK
102 { MAP_NONBLOCK, "MAP_NONBLOCK" },
103#endif
Wichert Akkerman8829a551999-06-11 13:18:40 +0000104 /*
105 * XXX - this was introduced in SunOS 4.x to distinguish between
106 * the old pre-4.x "mmap()", which:
107 *
108 * only let you map devices with an "mmap" routine (e.g.,
109 * frame buffers) in;
110 *
111 * required you to specify the mapping address;
112 *
113 * returned 0 on success and -1 on failure;
114 *
115 * memory and which, and the 4.x "mmap()" which:
116 *
117 * can map plain files;
118 *
119 * can be asked to pick where to map the file;
120 *
121 * returns the address where it mapped the file on success
122 * and -1 on failure.
123 *
124 * It's not actually used in source code that calls "mmap()"; the
125 * "mmap()" routine adds it for you.
126 *
127 * It'd be nice to come up with some way of eliminating it from
128 * the flags, e.g. reporting calls *without* it as "old_mmap()"
129 * and calls with it as "mmap()".
130 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000131#ifdef _MAP_NEW
132 { _MAP_NEW, "_MAP_NEW" },
133#endif
134#ifdef MAP_GROWSDOWN
135 { MAP_GROWSDOWN,"MAP_GROWSDOWN" },
136#endif
137#ifdef MAP_DENYWRITE
138 { MAP_DENYWRITE,"MAP_DENYWRITE" },
139#endif
140#ifdef MAP_EXECUTABLE
141 { MAP_EXECUTABLE,"MAP_EXECUTABLE"},
142#endif
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000143#ifdef MAP_INHERIT
Denys Vlasenko3e3490a2012-03-17 01:27:37 +0100144 { MAP_INHERIT, "MAP_INHERIT" },
Wichert Akkermanf5eeabb1999-11-18 17:09:47 +0000145#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000146#ifdef MAP_FILE
Denys Vlasenko3e3490a2012-03-17 01:27:37 +0100147 { MAP_FILE, "MAP_FILE" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000148#endif
149#ifdef MAP_LOCKED
Denys Vlasenko3e3490a2012-03-17 01:27:37 +0100150 { MAP_LOCKED, "MAP_LOCKED" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000151#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000152 /* FreeBSD ones */
Denys Vlasenko2897fb32012-03-17 01:29:40 +0100153#if defined(MAP_ANON) && (!defined(MAP_ANONYMOUS) || MAP_ANON != MAP_ANONYMOUS)
Denys Vlasenko3e3490a2012-03-17 01:27:37 +0100154 { MAP_ANON, "MAP_ANON" },
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000155#endif
156#ifdef MAP_HASSEMAPHORE
Denys Vlasenko3e3490a2012-03-17 01:27:37 +0100157 { MAP_HASSEMAPHORE,"MAP_HASSEMAPHORE"},
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000158#endif
159#ifdef MAP_STACK
Denys Vlasenko3e3490a2012-03-17 01:27:37 +0100160 { MAP_STACK, "MAP_STACK" },
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000161#endif
Bernhard Reutner-Fischer21ceeb42013-02-05 19:31:55 +0100162#if defined MAP_UNINITIALIZED && MAP_UNINITIALIZED > 0
163 { MAP_UNINITIALIZED,"MAP_UNINITIALIZED"},
164#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000165#ifdef MAP_NOSYNC
Denys Vlasenko3e3490a2012-03-17 01:27:37 +0100166 { MAP_NOSYNC, "MAP_NOSYNC" },
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000167#endif
168#ifdef MAP_NOCORE
Denys Vlasenko3e3490a2012-03-17 01:27:37 +0100169 { MAP_NOCORE, "MAP_NOCORE" },
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000170#endif
Chris Metcalfc8c66982009-12-28 10:00:15 -0500171#ifdef TILE
172 { MAP_CACHE_NO_LOCAL, "MAP_CACHE_NO_LOCAL" },
173 { MAP_CACHE_NO_L2, "MAP_CACHE_NO_L2" },
174 { MAP_CACHE_NO_L1, "MAP_CACHE_NO_L1" },
175#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000176 { 0, NULL },
177};
178
Chris Metcalfc8c66982009-12-28 10:00:15 -0500179#ifdef TILE
Denys Vlasenko72a58482011-08-19 16:01:51 +0200180static int
181addtileflags(long flags)
Chris Metcalfc8c66982009-12-28 10:00:15 -0500182{
183 long home = flags & _MAP_CACHE_MKHOME(_MAP_CACHE_HOME_MASK);
184 flags &= ~_MAP_CACHE_MKHOME(_MAP_CACHE_HOME_MASK);
185
186 if (flags & _MAP_CACHE_INCOHERENT) {
187 flags &= ~_MAP_CACHE_INCOHERENT;
188 if (home == MAP_CACHE_HOME_NONE) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200189 tprints("|MAP_CACHE_INCOHERENT");
Chris Metcalfc8c66982009-12-28 10:00:15 -0500190 return flags;
191 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200192 tprints("|_MAP_CACHE_INCOHERENT");
Chris Metcalfc8c66982009-12-28 10:00:15 -0500193 }
194
195 switch (home) {
196 case 0: break;
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200197 case MAP_CACHE_HOME_HERE: tprints("|MAP_CACHE_HOME_HERE"); break;
198 case MAP_CACHE_HOME_NONE: tprints("|MAP_CACHE_HOME_NONE"); break;
199 case MAP_CACHE_HOME_SINGLE: tprints("|MAP_CACHE_HOME_SINGLE"); break;
200 case MAP_CACHE_HOME_TASK: tprints("|MAP_CACHE_HOME_TASK"); break;
201 case MAP_CACHE_HOME_HASH: tprints("|MAP_CACHE_HOME_HASH"); break;
Chris Metcalfc8c66982009-12-28 10:00:15 -0500202 default:
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100203 tprintf("|MAP_CACHE_HOME(%ld)",
Chris Metcalfc8c66982009-12-28 10:00:15 -0500204 (home >> _MAP_CACHE_HOME_SHIFT) );
205 break;
206 }
207
208 return flags;
209}
210#endif
211
John Hughes70623be2001-03-08 13:59:00 +0000212#if !HAVE_LONG_LONG_OFF_T
Dmitry V. Levin31382132011-03-04 05:08:02 +0300213static int
214print_mmap(struct tcb *tcp, long *u_arg, long long offset)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000215{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000216 if (entering(tcp)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000217 /* addr */
Wichert Akkerman8829a551999-06-11 13:18:40 +0000218 if (!u_arg[0])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200219 tprints("NULL, ");
Wichert Akkerman8829a551999-06-11 13:18:40 +0000220 else
221 tprintf("%#lx, ", u_arg[0]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000222 /* len */
223 tprintf("%lu, ", u_arg[1]);
224 /* prot */
Roland McGrathb2dee132005-06-01 19:02:36 +0000225 printflags(mmap_prot, u_arg[2], "PROT_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200226 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000227 /* flags */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000228#ifdef MAP_TYPE
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000229 printxval(mmap_flags, u_arg[3] & MAP_TYPE, "MAP_???");
Chris Metcalfc8c66982009-12-28 10:00:15 -0500230#ifdef TILE
231 addflags(mmap_flags, addtileflags(u_arg[3] & ~MAP_TYPE));
232#else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000233 addflags(mmap_flags, u_arg[3] & ~MAP_TYPE);
Chris Metcalfc8c66982009-12-28 10:00:15 -0500234#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000235#else
Roland McGrathb2dee132005-06-01 19:02:36 +0000236 printflags(mmap_flags, u_arg[3], "MAP_???");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000237#endif
Dmitry V. Levin31382132011-03-04 05:08:02 +0300238 /* fd */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200239 tprints(", ");
Dmitry V. Levin31382132011-03-04 05:08:02 +0300240 printfd(tcp, u_arg[4]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000241 /* offset */
Dmitry V. Levin31382132011-03-04 05:08:02 +0300242 tprintf(", %#llx", offset);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000243 }
244 return RVAL_HEX;
245}
246
Denys Vlasenko12014262011-05-30 14:00:14 +0200247int sys_old_mmap(struct tcb *tcp)
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +0000248{
Denys Vlasenko72a58482011-08-19 16:01:51 +0200249#if defined(IA64)
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000250 /*
Denys Vlasenko9aa97962011-08-19 17:07:38 +0200251 * IA64 processes never call this routine, they only use the
252 * new `sys_mmap' interface.
253 * For IA32 processes, this code converts the integer arguments
254 * that they pushed onto the stack, into longs.
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000255 *
Denys Vlasenko9aa97962011-08-19 17:07:38 +0200256 * Note that addresses with bit 31 set will be sign extended.
257 * Fortunately, those addresses are not currently being generated
258 * for IA32 processes so it's not a problem.
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000259 */
Denys Vlasenko9aa97962011-08-19 17:07:38 +0200260 int i;
261 long u_arg[6];
262 int narrow_arg[6];
263 if (umoven(tcp, tcp->u_arg[0], sizeof(narrow_arg), (char *) narrow_arg) == -1)
264 return 0;
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000265 for (i = 0; i < 6; i++)
Denys Vlasenko9aa97962011-08-19 17:07:38 +0200266 u_arg[i] = narrow_arg[i];
Roland McGrathf5a47772003-06-26 22:40:42 +0000267#elif defined(SH) || defined(SH64)
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000268 /* SH has always passed the args in registers */
Denys Vlasenko9aa97962011-08-19 17:07:38 +0200269 long *u_arg = tcp->u_arg;
Roland McGrath6b1d43e2003-03-31 01:05:01 +0000270#else
Denys Vlasenko9aa97962011-08-19 17:07:38 +0200271 long u_arg[6];
Roland McGrath520e21f2005-07-05 09:50:18 +0000272# if defined(X86_64)
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000273 if (current_personality == 1) {
274 int i;
Denys Vlasenko9aa97962011-08-19 17:07:38 +0200275 unsigned narrow_arg[6];
276 if (umoven(tcp, tcp->u_arg[0], sizeof(narrow_arg), (char *) narrow_arg) == -1)
277 return 0;
278 for (i = 0; i < 6; ++i)
279 u_arg[i] = narrow_arg[i];
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000280 }
281 else
Roland McGrath520e21f2005-07-05 09:50:18 +0000282# endif
Denys Vlasenko9aa97962011-08-19 17:07:38 +0200283 if (umoven(tcp, tcp->u_arg[0], sizeof(u_arg), (char *) u_arg) == -1)
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000284 return 0;
Denys Vlasenko9aa97962011-08-19 17:07:38 +0200285#endif /* other architectures */
286
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000287 return print_mmap(tcp, u_arg, u_arg[5]);
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +0000288}
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +0000289
290int
Denys Vlasenko12014262011-05-30 14:00:14 +0200291sys_mmap(struct tcb *tcp)
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +0000292{
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000293 long long offset = tcp->u_arg[5];
Roland McGrath542c2c62008-05-20 01:11:56 +0000294
Denys Vlasenko9aa97962011-08-19 17:07:38 +0200295 /* FIXME: why only SH64? i386 mmap2 syscall ends up
296 * in this function, but does not convert offset
297 * from pages to bytes. See test/mmap_offset_decode.c
298 * Why SH64 and i386 are handled differently?
299 */
Denys Vlasenko84703742012-02-25 02:38:52 +0100300#if defined(SH64)
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000301 /*
302 * Old mmap differs from new mmap in specifying the
303 * offset in units of bytes rather than pages. We
304 * pretend it's in byte units so the user only ever
305 * sees bytes in the printout.
306 */
307 offset <<= PAGE_SHIFT;
Roland McGrathe1e584b2003-06-02 19:18:58 +0000308#endif
Roland McGrath542c2c62008-05-20 01:11:56 +0000309#if defined(LINUX_MIPSN32)
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000310 offset = tcp->ext_arg[5];
Roland McGrath542c2c62008-05-20 01:11:56 +0000311#endif
Denys Vlasenkoadedb512008-12-30 18:47:55 +0000312 return print_mmap(tcp, tcp->u_arg, offset);
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +0000313}
John Hughes70623be2001-03-08 13:59:00 +0000314#endif /* !HAVE_LONG_LONG_OFF_T */
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +0000315
John Hughes70623be2001-03-08 13:59:00 +0000316#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T
H.J. Lu085e4282012-04-17 11:05:04 -0700317# if defined(X32)
318int sys_old_mmap(struct tcb *tcp)
319{
320 long u_arg[6];
321 if (umoven(tcp, tcp->u_arg[0], sizeof(u_arg), (char *) u_arg) == -1)
322 return 0;
323 if (entering(tcp)) {
324 /* addr */
325 if (!u_arg[0])
326 tprints("NULL, ");
327 else
328 tprintf("%#lx, ", u_arg[0]);
329 /* len */
330 tprintf("%lu, ", u_arg[1]);
331 /* prot */
332 printflags(mmap_prot, u_arg[2], "PROT_???");
333 tprints(", ");
334 /* flags */
335# ifdef MAP_TYPE
336 printxval(mmap_flags, u_arg[3] & MAP_TYPE, "MAP_???");
337 addflags(mmap_flags, u_arg[3] & ~MAP_TYPE);
338# else
339 printflags(mmap_flags, u_arg[3], "MAP_???");
340# endif
341 /* fd */
342 tprints(", ");
343 printfd(tcp, u_arg[4]);
344 /* offset */
345 tprintf(", %#lx", u_arg[5]);
346 }
347 return RVAL_HEX;
348}
349# endif
350
Denys Vlasenkod5e66c42011-08-23 17:51:58 +0200351/* TODO: comment which arches use this routine.
352 * For one, does ALPHA on Linux use this??
353 * From code it seems that it might use 7 or 8 registers,
354 * which is strange - Linux syscalls can pass maximum of 6 parameters!
355 */
John Hughesbdf48f52001-03-06 15:08:09 +0000356int
Dmitry V. Levin31382132011-03-04 05:08:02 +0300357sys_mmap64(struct tcb *tcp)
John Hughesbdf48f52001-03-06 15:08:09 +0000358{
John Hughesbdf48f52001-03-06 15:08:09 +0000359 if (entering(tcp)) {
H.J. Lu35be5812012-04-16 13:00:01 +0200360#if defined(ALPHA) || defined(X32)
Denys Vlasenko31f9cb62011-08-19 16:11:07 +0200361 long *u_arg = tcp->u_arg;
362#else
363 long u_arg[7];
John Hughesbdf48f52001-03-06 15:08:09 +0000364 if (umoven(tcp, tcp->u_arg[0], sizeof u_arg,
365 (char *) u_arg) == -1)
366 return 0;
Denys Vlasenko31f9cb62011-08-19 16:11:07 +0200367#endif
John Hughesbdf48f52001-03-06 15:08:09 +0000368 /* addr */
H.J. Lud0cd4432012-02-03 10:07:42 -0800369 if (!u_arg[0])
370 tprints("NULL, ");
371 else
372 tprintf("%#lx, ", u_arg[0]);
John Hughesbdf48f52001-03-06 15:08:09 +0000373 /* len */
374 tprintf("%lu, ", u_arg[1]);
375 /* prot */
Roland McGrathb2dee132005-06-01 19:02:36 +0000376 printflags(mmap_prot, u_arg[2], "PROT_???");
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200377 tprints(", ");
John Hughesbdf48f52001-03-06 15:08:09 +0000378 /* flags */
John Hughes5a826b82001-03-07 13:21:24 +0000379#ifdef MAP_TYPE
John Hughesbdf48f52001-03-06 15:08:09 +0000380 printxval(mmap_flags, u_arg[3] & MAP_TYPE, "MAP_???");
381 addflags(mmap_flags, u_arg[3] & ~MAP_TYPE);
John Hughes5a826b82001-03-07 13:21:24 +0000382#else
Roland McGrathb2dee132005-06-01 19:02:36 +0000383 printflags(mmap_flags, u_arg[3], "MAP_???");
John Hughes5a826b82001-03-07 13:21:24 +0000384#endif
John Hughesbdf48f52001-03-06 15:08:09 +0000385 /* fd */
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200386 tprints(", ");
Denys Vlasenkod5e66c42011-08-23 17:51:58 +0200387 printfd(tcp, u_arg[4]);
John Hughesbdf48f52001-03-06 15:08:09 +0000388 /* offset */
H.J. Lu35be5812012-04-16 13:00:01 +0200389#if defined(ALPHA) || defined(X32)
Dmitry V. Levin31382132011-03-04 05:08:02 +0300390 printllval(tcp, ", %#llx", 5);
Denys Vlasenkod5e66c42011-08-23 17:51:58 +0200391#else
392 /* NOTE: not verified that [5] and [6] should be used.
393 * It's possible that long long is 64-bit aligned in memory
394 * and we need to use [6] and [7] here instead:
395 */
396 tprintf(", %#llx", LONG_LONG(u_arg[5], u_arg[6]));
397#endif
John Hughesbdf48f52001-03-06 15:08:09 +0000398 }
399 return RVAL_HEX;
400}
Denys Vlasenko31f9cb62011-08-19 16:11:07 +0200401#endif /* _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T */
John Hughesbdf48f52001-03-06 15:08:09 +0000402
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000403int
Denys Vlasenko12014262011-05-30 14:00:14 +0200404sys_munmap(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000405{
406 if (entering(tcp)) {
407 tprintf("%#lx, %lu",
408 tcp->u_arg[0], tcp->u_arg[1]);
409 }
410 return 0;
411}
412
413int
Denys Vlasenko12014262011-05-30 14:00:14 +0200414sys_mprotect(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000415{
416 if (entering(tcp)) {
417 tprintf("%#lx, %lu, ",
418 tcp->u_arg[0], tcp->u_arg[1]);
Roland McGrathb2dee132005-06-01 19:02:36 +0000419 printflags(mmap_prot, tcp->u_arg[2], "PROT_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000420 }
421 return 0;
422}
423
Roland McGrathd9f816f2004-09-04 03:39:20 +0000424static const struct xlat mremap_flags[] = {
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000425 { MREMAP_MAYMOVE, "MREMAP_MAYMOVE" },
Chris Metcalfff3474a2009-12-24 23:19:19 +0000426#ifdef MREMAP_FIXED
427 { MREMAP_FIXED, "MREMAP_FIXED" },
428#endif
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000429 { 0, NULL }
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000430};
431
432int
Dmitry V. Levinfdc45592009-12-24 23:34:58 +0000433sys_mremap(struct tcb *tcp)
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000434{
435 if (entering(tcp)) {
436 tprintf("%#lx, %lu, %lu, ", tcp->u_arg[0], tcp->u_arg[1],
437 tcp->u_arg[2]);
Roland McGrathb2dee132005-06-01 19:02:36 +0000438 printflags(mremap_flags, tcp->u_arg[3], "MREMAP_???");
Dmitry V. Levinfdc45592009-12-24 23:34:58 +0000439#ifdef MREMAP_FIXED
440 if ((tcp->u_arg[3] & (MREMAP_MAYMOVE | MREMAP_FIXED)) ==
441 (MREMAP_MAYMOVE | MREMAP_FIXED))
442 tprintf(", %#lx", tcp->u_arg[4]);
443#endif
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000444 }
445 return RVAL_HEX;
446}
447
Roland McGrathf4021b12008-08-25 02:59:36 +0000448static const struct xlat madvise_cmds[] = {
Wichert Akkermanc7926982000-04-10 22:22:31 +0000449#ifdef MADV_NORMAL
450 { MADV_NORMAL, "MADV_NORMAL" },
451#endif
Roland McGrathf4021b12008-08-25 02:59:36 +0000452#ifdef MADV_RANDOM
Wichert Akkermanc7926982000-04-10 22:22:31 +0000453 { MADV_RANDOM, "MADV_RANDOM" },
454#endif
455#ifdef MADV_SEQUENTIAL
456 { MADV_SEQUENTIAL, "MADV_SEQUENTIAL" },
457#endif
458#ifdef MADV_WILLNEED
459 { MADV_WILLNEED, "MADV_WILLNEED" },
460#endif
Roland McGrathf4021b12008-08-25 02:59:36 +0000461#ifdef MADV_DONTNEED
Wichert Akkermanc7926982000-04-10 22:22:31 +0000462 { MADV_DONTNEED, "MADV_DONTNEED" },
463#endif
464 { 0, NULL },
465};
466
Wichert Akkermanc7926982000-04-10 22:22:31 +0000467int
Denys Vlasenko12014262011-05-30 14:00:14 +0200468sys_madvise(struct tcb *tcp)
Wichert Akkermanc7926982000-04-10 22:22:31 +0000469{
470 if (entering(tcp)) {
471 tprintf("%#lx, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
Roland McGrathf4021b12008-08-25 02:59:36 +0000472 printxval(madvise_cmds, tcp->u_arg[2], "MADV_???");
Wichert Akkermanc7926982000-04-10 22:22:31 +0000473 }
474 return 0;
475}
476
Roland McGrathd9f816f2004-09-04 03:39:20 +0000477static const struct xlat mlockall_flags[] = {
Wichert Akkermanc7926982000-04-10 22:22:31 +0000478#ifdef MCL_CURRENT
479 { MCL_CURRENT, "MCL_CURRENT" },
480#endif
481#ifdef MCL_FUTURE
482 { MCL_FUTURE, "MCL_FUTURE" },
483#endif
484 { 0, NULL}
485};
486
487int
Denys Vlasenko12014262011-05-30 14:00:14 +0200488sys_mlockall(struct tcb *tcp)
Wichert Akkermanc7926982000-04-10 22:22:31 +0000489{
490 if (entering(tcp)) {
Roland McGrathb2dee132005-06-01 19:02:36 +0000491 printflags(mlockall_flags, tcp->u_arg[0], "MCL_???");
Wichert Akkermanc7926982000-04-10 22:22:31 +0000492 }
493 return 0;
494}
495
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000496#ifdef MS_ASYNC
497
Roland McGrathd9f816f2004-09-04 03:39:20 +0000498static const struct xlat mctl_sync[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000499#ifdef MS_SYNC
500 { MS_SYNC, "MS_SYNC" },
501#endif
John Hughesaca07f32001-10-16 18:12:27 +0000502 { MS_ASYNC, "MS_ASYNC" },
503 { MS_INVALIDATE,"MS_INVALIDATE" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000504 { 0, NULL },
505};
506
507int
Denys Vlasenko12014262011-05-30 14:00:14 +0200508sys_msync(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000509{
510 if (entering(tcp)) {
511 /* addr */
512 tprintf("%#lx", tcp->u_arg[0]);
513 /* len */
514 tprintf(", %lu, ", tcp->u_arg[1]);
515 /* flags */
Roland McGrathb2dee132005-06-01 19:02:36 +0000516 printflags(mctl_sync, tcp->u_arg[2], "MS_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000517 }
518 return 0;
519}
520
521#endif /* MS_ASYNC */
522
523#ifdef MC_SYNC
524
Roland McGrathd9f816f2004-09-04 03:39:20 +0000525static const struct xlat mctl_funcs[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000526 { MC_LOCK, "MC_LOCK" },
527 { MC_LOCKAS, "MC_LOCKAS" },
528 { MC_SYNC, "MC_SYNC" },
529 { MC_UNLOCK, "MC_UNLOCK" },
530 { MC_UNLOCKAS, "MC_UNLOCKAS" },
531 { 0, NULL },
532};
533
Roland McGrathd9f816f2004-09-04 03:39:20 +0000534static const struct xlat mctl_lockas[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000535 { MCL_CURRENT, "MCL_CURRENT" },
536 { MCL_FUTURE, "MCL_FUTURE" },
537 { 0, NULL },
538};
539
540int
Denys Vlasenko12014262011-05-30 14:00:14 +0200541sys_mctl(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000542{
543 int arg, function;
544
545 if (entering(tcp)) {
546 /* addr */
547 tprintf("%#lx", tcp->u_arg[0]);
548 /* len */
549 tprintf(", %lu, ", tcp->u_arg[1]);
550 /* function */
551 function = tcp->u_arg[2];
Roland McGrathb2dee132005-06-01 19:02:36 +0000552 printflags(mctl_funcs, function, "MC_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000553 /* arg */
554 arg = tcp->u_arg[3];
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200555 tprints(", ");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000556 switch (function) {
557 case MC_SYNC:
Roland McGrathb2dee132005-06-01 19:02:36 +0000558 printflags(mctl_sync, arg, "MS_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000559 break;
560 case MC_LOCKAS:
Roland McGrathb2dee132005-06-01 19:02:36 +0000561 printflags(mctl_lockas, arg, "MCL_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000562 break;
563 default:
564 tprintf("%#x", arg);
565 break;
566 }
567 }
568 return 0;
569}
570
571#endif /* MC_SYNC */
572
573int
Denys Vlasenko12014262011-05-30 14:00:14 +0200574sys_mincore(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000575{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000576 if (entering(tcp)) {
577 tprintf("%#lx, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
578 } else {
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200579 unsigned long i, len;
580 char *vec = NULL;
581
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000582 len = tcp->u_arg[1];
583 if (syserror(tcp) || tcp->u_arg[2] == 0 ||
Roland McGrath46100d02005-06-01 18:55:42 +0000584 (vec = malloc(len)) == NULL ||
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000585 umoven(tcp, tcp->u_arg[2], len, vec) < 0)
586 tprintf("%#lx", tcp->u_arg[2]);
587 else {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200588 tprints("[");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000589 for (i = 0; i < len; i++) {
590 if (abbrev(tcp) && i >= max_strlen) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200591 tprints("...");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000592 break;
593 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200594 tprints((vec[i] & 1) ? "1" : "0");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000595 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200596 tprints("]");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000597 }
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200598 free(vec);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000599 }
600 return 0;
601}
602
Denys Vlasenko84703742012-02-25 02:38:52 +0100603#if defined(ALPHA) || defined(IA64) || defined(SPARC) || defined(SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000604int
Denys Vlasenko12014262011-05-30 14:00:14 +0200605sys_getpagesize(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000606{
607 if (exiting(tcp))
608 return RVAL_HEX;
609 return 0;
610}
Denys Vlasenko84703742012-02-25 02:38:52 +0100611#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000612
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100613#if defined(I386)
Roland McGrath909875b2002-12-22 03:34:36 +0000614void
Denys Vlasenko1f458252009-01-23 16:10:22 +0000615print_ldt_entry(struct modify_ldt_ldt_s *ldt_entry)
Roland McGrath34e4a692002-12-15 23:58:17 +0000616{
617 tprintf("base_addr:%#08lx, "
618 "limit:%d, "
619 "seg_32bit:%d, "
620 "contents:%d, "
621 "read_exec_only:%d, "
622 "limit_in_pages:%d, "
623 "seg_not_present:%d, "
624 "useable:%d}",
Denys Vlasenko1f458252009-01-23 16:10:22 +0000625 (long) ldt_entry->base_addr,
Roland McGrath34e4a692002-12-15 23:58:17 +0000626 ldt_entry->limit,
627 ldt_entry->seg_32bit,
628 ldt_entry->contents,
629 ldt_entry->read_exec_only,
630 ldt_entry->limit_in_pages,
631 ldt_entry->seg_not_present,
632 ldt_entry->useable);
633}
634
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000635int
Denys Vlasenko12014262011-05-30 14:00:14 +0200636sys_modify_ldt(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000637{
638 if (entering(tcp)) {
639 struct modify_ldt_ldt_s copy;
640 tprintf("%ld", tcp->u_arg[0]);
641 if (tcp->u_arg[1] == 0
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200642 || tcp->u_arg[2] != sizeof(struct modify_ldt_ldt_s)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000643 || umove(tcp, tcp->u_arg[1], &copy) == -1)
644 tprintf(", %lx", tcp->u_arg[1]);
645 else {
646 tprintf(", {entry_number:%d, ", copy.entry_number);
647 if (!verbose(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200648 tprints("...}");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000649 else {
Roland McGrath34e4a692002-12-15 23:58:17 +0000650 print_ldt_entry(&copy);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000651 }
652 }
653 tprintf(", %lu", tcp->u_arg[2]);
654 }
655 return 0;
656}
Roland McGrath34e4a692002-12-15 23:58:17 +0000657
658int
Denys Vlasenko12014262011-05-30 14:00:14 +0200659sys_set_thread_area(struct tcb *tcp)
Roland McGrath34e4a692002-12-15 23:58:17 +0000660{
661 struct modify_ldt_ldt_s copy;
662 if (entering(tcp)) {
663 if (umove(tcp, tcp->u_arg[0], &copy) != -1) {
664 if (copy.entry_number == -1)
665 tprintf("{entry_number:%d -> ",
666 copy.entry_number);
667 else
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200668 tprints("{entry_number:");
Roland McGrath34e4a692002-12-15 23:58:17 +0000669 }
670 } else {
671 if (umove(tcp, tcp->u_arg[0], &copy) != -1) {
672 tprintf("%d, ", copy.entry_number);
673 if (!verbose(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200674 tprints("...}");
Roland McGrath34e4a692002-12-15 23:58:17 +0000675 else {
676 print_ldt_entry(&copy);
677 }
678 } else {
679 tprintf("%lx", tcp->u_arg[0]);
680 }
681 }
682 return 0;
Roland McGrath909875b2002-12-22 03:34:36 +0000683
Roland McGrath34e4a692002-12-15 23:58:17 +0000684}
685
686int
Denys Vlasenko12014262011-05-30 14:00:14 +0200687sys_get_thread_area(struct tcb *tcp)
Roland McGrath34e4a692002-12-15 23:58:17 +0000688{
689 struct modify_ldt_ldt_s copy;
690 if (exiting(tcp)) {
691 if (umove(tcp, tcp->u_arg[0], &copy) != -1) {
692 tprintf("{entry_number:%d, ", copy.entry_number);
693 if (!verbose(tcp))
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200694 tprints("...}");
Roland McGrath34e4a692002-12-15 23:58:17 +0000695 else {
696 print_ldt_entry(&copy);
697 }
698 } else {
699 tprintf("%lx", tcp->u_arg[0]);
700 }
701 }
702 return 0;
Roland McGrath909875b2002-12-22 03:34:36 +0000703
Roland McGrath34e4a692002-12-15 23:58:17 +0000704}
Denys Vlasenkoc36c3522012-02-25 02:47:15 +0100705#endif /* I386 */
Roland McGrath72c5b7b2003-03-05 04:08:00 +0000706
Denys Vlasenko84703742012-02-25 02:38:52 +0100707#if defined(M68K)
Andreas Schwab58743222010-05-28 22:28:51 +0200708int
Denys Vlasenko12014262011-05-30 14:00:14 +0200709sys_set_thread_area(struct tcb *tcp)
Andreas Schwab58743222010-05-28 22:28:51 +0200710{
711 if (entering(tcp))
712 tprintf("%#lx", tcp->u_arg[0]);
713 return 0;
714
715}
716
717int
Denys Vlasenko12014262011-05-30 14:00:14 +0200718sys_get_thread_area(struct tcb *tcp)
Andreas Schwab58743222010-05-28 22:28:51 +0200719{
720 return RVAL_HEX;
721}
722#endif
723
Roland McGrath72c5b7b2003-03-05 04:08:00 +0000724int
Denys Vlasenko12014262011-05-30 14:00:14 +0200725sys_remap_file_pages(struct tcb *tcp)
Roland McGrath72c5b7b2003-03-05 04:08:00 +0000726{
727 if (entering(tcp)) {
728 tprintf("%#lx, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
Roland McGrathb2dee132005-06-01 19:02:36 +0000729 printflags(mmap_prot, tcp->u_arg[2], "PROT_???");
Roland McGrath72c5b7b2003-03-05 04:08:00 +0000730 tprintf(", %lu, ", tcp->u_arg[3]);
731#ifdef MAP_TYPE
732 printxval(mmap_flags, tcp->u_arg[4] & MAP_TYPE, "MAP_???");
733 addflags(mmap_flags, tcp->u_arg[4] & ~MAP_TYPE);
734#else
Roland McGrathb2dee132005-06-01 19:02:36 +0000735 printflags(mmap_flags, tcp->u_arg[4], "MAP_???");
Roland McGrath72c5b7b2003-03-05 04:08:00 +0000736#endif
737 }
738 return 0;
739}
Roland McGrathb10a3352004-10-07 18:53:12 +0000740
Roland McGrathb10a3352004-10-07 18:53:12 +0000741#define MPOL_DEFAULT 0
742#define MPOL_PREFERRED 1
743#define MPOL_BIND 2
744#define MPOL_INTERLEAVE 3
745
746#define MPOL_F_NODE (1<<0)
747#define MPOL_F_ADDR (1<<1)
748
749#define MPOL_MF_STRICT (1<<0)
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000750#define MPOL_MF_MOVE (1<<1)
751#define MPOL_MF_MOVE_ALL (1<<2)
Roland McGrathb10a3352004-10-07 18:53:12 +0000752
Roland McGrathb10a3352004-10-07 18:53:12 +0000753static const struct xlat policies[] = {
754 { MPOL_DEFAULT, "MPOL_DEFAULT" },
755 { MPOL_PREFERRED, "MPOL_PREFERRED" },
756 { MPOL_BIND, "MPOL_BIND" },
757 { MPOL_INTERLEAVE, "MPOL_INTERLEAVE" },
758 { 0, NULL }
759};
760
761static const struct xlat mbindflags[] = {
762 { MPOL_MF_STRICT, "MPOL_MF_STRICT" },
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000763 { MPOL_MF_MOVE, "MPOL_MF_MOVE" },
764 { MPOL_MF_MOVE_ALL, "MPOL_MF_MOVE_ALL" },
Roland McGrathb10a3352004-10-07 18:53:12 +0000765 { 0, NULL }
766};
767
768static const struct xlat mempolicyflags[] = {
769 { MPOL_F_NODE, "MPOL_F_NODE" },
770 { MPOL_F_ADDR, "MPOL_F_ADDR" },
771 { 0, NULL }
772};
773
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000774static const struct xlat move_pages_flags[] = {
775 { MPOL_MF_MOVE, "MPOL_MF_MOVE" },
776 { MPOL_MF_MOVE_ALL, "MPOL_MF_MOVE_ALL" },
777 { 0, NULL }
778};
779
Roland McGrathb10a3352004-10-07 18:53:12 +0000780static void
Denys Vlasenko12014262011-05-30 14:00:14 +0200781get_nodes(struct tcb *tcp, unsigned long ptr, unsigned long maxnodes, int err)
Roland McGrathb10a3352004-10-07 18:53:12 +0000782{
Roland McGrathaa524c82005-06-01 19:22:06 +0000783 unsigned long nlongs, size, end;
784
785 nlongs = (maxnodes + 8 * sizeof(long) - 1) / (8 * sizeof(long));
786 size = nlongs * sizeof(long);
787 end = ptr + size;
788 if (nlongs == 0 || ((err || verbose(tcp)) && (size * 8 == maxnodes)
789 && (end > ptr))) {
790 unsigned long n, cur, abbrev_end;
791 int failed = 0;
792
793 if (abbrev(tcp)) {
794 abbrev_end = ptr + max_strlen * sizeof(long);
795 if (abbrev_end < ptr)
796 abbrev_end = end;
797 } else {
798 abbrev_end = end;
Roland McGrathb10a3352004-10-07 18:53:12 +0000799 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200800 tprints(", {");
Roland McGrathaa524c82005-06-01 19:22:06 +0000801 for (cur = ptr; cur < end; cur += sizeof(long)) {
802 if (cur > ptr)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200803 tprints(", ");
Roland McGrathaa524c82005-06-01 19:22:06 +0000804 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200805 tprints("...");
Roland McGrathaa524c82005-06-01 19:22:06 +0000806 break;
807 }
808 if (umoven(tcp, cur, sizeof(n), (char *) &n) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200809 tprints("?");
Roland McGrathaa524c82005-06-01 19:22:06 +0000810 failed = 1;
811 break;
812 }
813 tprintf("%#0*lx", (int) sizeof(long) * 2 + 2, n);
814 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200815 tprints("}");
Roland McGrathaa524c82005-06-01 19:22:06 +0000816 if (failed)
817 tprintf(" %#lx", ptr);
Roland McGrathb10a3352004-10-07 18:53:12 +0000818 } else
Roland McGrathaa524c82005-06-01 19:22:06 +0000819 tprintf(", %#lx", ptr);
Roland McGrathb10a3352004-10-07 18:53:12 +0000820 tprintf(", %lu", maxnodes);
821}
822
823int
Denys Vlasenko12014262011-05-30 14:00:14 +0200824sys_mbind(struct tcb *tcp)
Roland McGrathb10a3352004-10-07 18:53:12 +0000825{
826 if (entering(tcp)) {
Chris Metcalfc5fd1d92009-12-24 23:19:35 +0000827 tprintf("%#lx, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
Roland McGrathb10a3352004-10-07 18:53:12 +0000828 printxval(policies, tcp->u_arg[2], "MPOL_???");
829 get_nodes(tcp, tcp->u_arg[3], tcp->u_arg[4], 0);
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200830 tprints(", ");
Roland McGrathb2dee132005-06-01 19:02:36 +0000831 printflags(mbindflags, tcp->u_arg[5], "MPOL_???");
Roland McGrathb10a3352004-10-07 18:53:12 +0000832 }
833 return 0;
834}
835
836int
Denys Vlasenko12014262011-05-30 14:00:14 +0200837sys_set_mempolicy(struct tcb *tcp)
Roland McGrathb10a3352004-10-07 18:53:12 +0000838{
839 if (entering(tcp)) {
840 printxval(policies, tcp->u_arg[0], "MPOL_???");
841 get_nodes(tcp, tcp->u_arg[1], tcp->u_arg[2], 0);
842 }
843 return 0;
844}
845
846int
Denys Vlasenko12014262011-05-30 14:00:14 +0200847sys_get_mempolicy(struct tcb *tcp)
Roland McGrathb10a3352004-10-07 18:53:12 +0000848{
849 if (exiting(tcp)) {
850 int pol;
851 if (tcp->u_arg[0] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200852 tprints("NULL");
Roland McGrathb10a3352004-10-07 18:53:12 +0000853 else if (syserror(tcp) || umove(tcp, tcp->u_arg[0], &pol) < 0)
854 tprintf("%#lx", tcp->u_arg[0]);
855 else
856 printxval(policies, pol, "MPOL_???");
857 get_nodes(tcp, tcp->u_arg[1], tcp->u_arg[2], syserror(tcp));
858 tprintf(", %#lx, ", tcp->u_arg[3]);
Roland McGrathb2dee132005-06-01 19:02:36 +0000859 printflags(mempolicyflags, tcp->u_arg[4], "MPOL_???");
Roland McGrathb10a3352004-10-07 18:53:12 +0000860 }
861 return 0;
862}
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000863
864int
Dmitry V. Levin64d0e712012-03-11 22:44:14 +0000865sys_migrate_pages(struct tcb *tcp)
866{
867 if (entering(tcp)) {
868 tprintf("%ld, ", (long) (pid_t) tcp->u_arg[0]);
869 get_nodes(tcp, tcp->u_arg[2], tcp->u_arg[1], 0);
870 tprints(", ");
871 get_nodes(tcp, tcp->u_arg[3], tcp->u_arg[1], 0);
872 }
873 return 0;
874}
875
876int
Denys Vlasenko12014262011-05-30 14:00:14 +0200877sys_move_pages(struct tcb *tcp)
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000878{
879 if (entering(tcp)) {
880 unsigned long npages = tcp->u_arg[1];
881 tprintf("%ld, %lu, ", tcp->u_arg[0], npages);
882 if (tcp->u_arg[2] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200883 tprints("NULL, ");
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000884 else {
885 int i;
886 long puser = tcp->u_arg[2];
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200887 tprints("{");
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000888 for (i = 0; i < npages; ++i) {
889 void *p;
890 if (i > 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200891 tprints(", ");
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000892 if (umove(tcp, puser, &p) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200893 tprints("???");
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000894 break;
895 }
896 tprintf("%p", p);
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200897 puser += sizeof(void *);
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000898 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200899 tprints("}, ");
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000900 }
901 if (tcp->u_arg[3] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200902 tprints("NULL, ");
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000903 else {
904 int i;
905 long nodeuser = tcp->u_arg[3];
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200906 tprints("{");
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000907 for (i = 0; i < npages; ++i) {
908 int node;
909 if (i > 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200910 tprints(", ");
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000911 if (umove(tcp, nodeuser, &node) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200912 tprints("???");
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000913 break;
914 }
915 tprintf("%#x", node);
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200916 nodeuser += sizeof(int);
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000917 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200918 tprints("}, ");
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000919 }
920 }
921 if (exiting(tcp)) {
922 unsigned long npages = tcp->u_arg[1];
923 if (tcp->u_arg[4] == 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200924 tprints("NULL, ");
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000925 else {
926 int i;
927 long statususer = tcp->u_arg[4];
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200928 tprints("{");
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000929 for (i = 0; i < npages; ++i) {
930 int status;
931 if (i > 0)
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200932 tprints(", ");
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000933 if (umove(tcp, statususer, &status) < 0) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200934 tprints("???");
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000935 break;
936 }
937 tprintf("%#x", status);
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200938 statususer += sizeof(int);
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000939 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200940 tprints("}, ");
Roland McGrath2c00a4a2007-07-24 01:52:58 +0000941 }
942 printflags(move_pages_flags, tcp->u_arg[5], "MPOL_???");
943 }
944 return 0;
945}
Roland McGrath4a6f6522008-08-25 03:09:16 +0000946
Denys Vlasenko84703742012-02-25 02:38:52 +0100947#if defined(POWERPC)
Roland McGrath4a6f6522008-08-25 03:09:16 +0000948int
Denys Vlasenko12014262011-05-30 14:00:14 +0200949sys_subpage_prot(struct tcb *tcp)
Roland McGrath4a6f6522008-08-25 03:09:16 +0000950{
951 if (entering(tcp)) {
952 unsigned long cur, end, abbrev_end, entries;
953 unsigned int entry;
954
955 tprintf("%#lx, %#lx, ", tcp->u_arg[0], tcp->u_arg[1]);
956 entries = tcp->u_arg[1] >> 16;
957 if (!entries || !tcp->u_arg[2]) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200958 tprints("{}");
Roland McGrath4a6f6522008-08-25 03:09:16 +0000959 return 0;
960 }
961 cur = tcp->u_arg[2];
962 end = cur + (sizeof(int) * entries);
963 if (!verbose(tcp) || end < tcp->u_arg[2]) {
964 tprintf("%#lx", tcp->u_arg[2]);
965 return 0;
966 }
967 if (abbrev(tcp)) {
968 abbrev_end = cur + (sizeof(int) * max_strlen);
969 if (abbrev_end > end)
970 abbrev_end = end;
971 }
972 else
973 abbrev_end = end;
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200974 tprints("{");
Roland McGrath4a6f6522008-08-25 03:09:16 +0000975 for (; cur < end; cur += sizeof(int)) {
976 if (cur > tcp->u_arg[2])
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200977 tprints(", ");
Roland McGrath4a6f6522008-08-25 03:09:16 +0000978 if (cur >= abbrev_end) {
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200979 tprints("...");
Roland McGrath4a6f6522008-08-25 03:09:16 +0000980 break;
981 }
982 if (umove(tcp, cur, &entry) < 0) {
983 tprintf("??? [%#lx]", cur);
984 break;
985 }
986 else
987 tprintf("%#08x", entry);
988 }
Denys Vlasenko60fe8c12011-09-01 10:00:28 +0200989 tprints("}");
Roland McGrath4a6f6522008-08-25 03:09:16 +0000990 }
991
992 return 0;
993}
994#endif