blob: 82c5499a2dfcb53f2edae6d495a5509b81f1c8ef [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#ifdef LINUX
36#define _LINUX_SOCKET_H
Wichert Akkerman14cd9f01999-07-09 18:56:34 +000037#define _LINUX_FS_H
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000038
Roland McGrathcbd33582005-02-02 04:36:11 +000039#define MS_RDONLY 1 /* Mount read-only */
40#define MS_NOSUID 2 /* Ignore suid and sgid bits */
41#define MS_NODEV 4 /* Disallow access to device special files */
42#define MS_NOEXEC 8 /* Disallow program execution */
43#define MS_SYNCHRONOUS 16 /* Writes are synced at once */
44#define MS_REMOUNT 32 /* Alter flags of a mounted FS */
45#define MS_MANDLOCK 64 /* Allow mandatory locks on an FS */
46#define MS_DIRSYNC 128 /* Directory modifications are synchronous */
47#define MS_NOATIME 1024 /* Do not update access times. */
48#define MS_NODIRATIME 2048 /* Do not update directory access times */
49#define MS_BIND 4096
50#define MS_MOVE 8192
51#define MS_REC 16384
52#define MS_VERBOSE 32768
53#define MS_POSIXACL (1<<16) /* VFS does not apply the umask */
54#define MS_ACTIVE (1<<30)
55#define MS_NOUSER (1<<31)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000056
57#include <sys/socket.h>
58#include <netinet/in.h>
59#include <arpa/inet.h>
60
Nate Sammons8d5860c1999-07-03 18:53:05 +000061#include <sys/syscall.h>
62
Nate Sammons8d5860c1999-07-03 18:53:05 +000063#ifdef SYS_capget
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000064#include <linux/capability.h>
65#endif
66
Nate Sammons8d5860c1999-07-03 18:53:05 +000067#ifdef SYS_cacheflush
Wichert Akkerman2e2553a1999-05-09 00:29:58 +000068#include <asm/cachectl.h>
69#endif
70
Wichert Akkermand6b92492001-04-07 21:37:12 +000071#ifdef HAVE_LINUX_USTNAME_H
72#include <linux/utsname.h>
73#endif
74
Michal Ludvig39c0e942002-11-06 14:00:12 +000075#ifdef MIPS
Wichert Akkermand6b92492001-04-07 21:37:12 +000076#include <asm/sysmips.h>
77#endif
78
Wichert Akkerman22fe9d21999-05-27 12:00:57 +000079#include <linux/sysctl.h>
Wichert Akkerman22fe9d21999-05-27 12:00:57 +000080
Roland McGrathd9f816f2004-09-04 03:39:20 +000081static const struct xlat mount_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000082 { MS_RDONLY, "MS_RDONLY" },
83 { MS_NOSUID, "MS_NOSUID" },
84 { MS_NODEV, "MS_NODEV" },
85 { MS_NOEXEC, "MS_NOEXEC" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000086 { MS_SYNCHRONOUS,"MS_SYNCHRONOUS"},
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000087 { MS_REMOUNT, "MS_REMOUNT" },
Roland McGrathcbd33582005-02-02 04:36:11 +000088 { MS_MANDLOCK, "MS_MANDLOCK" },
89 { MS_NOATIME, "MS_NOATIME" },
90 { MS_NODIRATIME,"MS_NODIRATIME" },
91 { MS_BIND, "MS_BIND" },
92 { MS_MOVE, "MS_MOVE" },
93 { MS_REC, "MS_REC" },
94 { MS_VERBOSE, "MS_VERBOSE" },
95 { MS_POSIXACL, "MS_POSIXACL" },
96 { MS_ACTIVE, "MS_ACTIVE" },
97 { MS_NOUSER, "MS_NOUSER" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000098 { 0, NULL },
99};
100
101int
102sys_mount(tcp)
103struct tcb *tcp;
104{
105 if (entering(tcp)) {
106 printpath(tcp, tcp->u_arg[0]);
107 tprintf(", ");
108 printpath(tcp, tcp->u_arg[1]);
109 tprintf(", ");
Roland McGrathcbd33582005-02-02 04:36:11 +0000110 if ((tcp->u_arg[3] & (MS_BIND|MS_MOVE|MS_REMOUNT)) == 0)
111 printpath(tcp, tcp->u_arg[2]);
112 else
113 tprintf("%#lx", tcp->u_arg[2]);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000114 tprintf(", ");
115 printflags(mount_flags, tcp->u_arg[3]);
116 tprintf(", %#lx", tcp->u_arg[4]);
117 }
118 return 0;
119}
120
Wichert Akkermandacfb6e1999-06-03 14:21:07 +0000121int
122sys_umount2(tcp)
123struct tcb *tcp;
124{
125 if (entering(tcp)) {
126 printstr(tcp, tcp->u_arg[0], -1);
127 tprintf(", ");
128 if (tcp->u_arg[1] & 1)
129 tprintf("MNT_FORCE");
130 else
131 tprintf("0");
132 }
133 return 0;
134}
135
Roland McGrathced50da2004-08-31 06:48:46 +0000136/* These are not macros, but enums. We just copy the values by hand
137 from Linux 2.6.9 here. */
Roland McGrathd9f816f2004-09-04 03:39:20 +0000138static const struct xlat personality_options[] = {
Roland McGrathced50da2004-08-31 06:48:46 +0000139 { 0, "PER_LINUX" },
140 { 0x00800000, "PER_LINUX_32BIT"},
141 { 0x04100001, "PER_SVR4" },
142 { 0x05000002, "PER_SVR3" },
143 { 0x07000003, "PER_SCOSVR3" },
144 { 0x06000003, "PER_OSR5" },
145 { 0x05000004, "PER_WYSEV386" },
146 { 0x04000005, "PER_ISCR4" },
147 { 0x00000006, "PER_BSD" },
148 { 0x04000006, "PER_SUNOS" },
149 { 0x05000007, "PER_XENIX" },
150 { 0x00000008, "PER_LINUX32" },
151 { 0x08000008, "PER_LINUX32_3GB"},
152 { 0x04000009, "PER_IRIX32" },
153 { 0x0400000a, "PER_IRIXN32" },
154 { 0x0400000b, "PER_IRIX64" },
155 { 0x0000000c, "PER_RISCOS" },
156 { 0x0400000d, "PER_SOLARIS" },
157 { 0x0410000e, "PER_UW7" },
158 { 0x0000000f, "PER_OSF4" },
159 { 0x00000010, "PER_HPUX" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000160 { 0, NULL },
161};
162
163int
164sys_personality(tcp)
165struct tcb *tcp;
166{
167 if (entering(tcp))
168 printxval(personality_options, tcp->u_arg[0], "PER_???");
169 return 0;
170}
171
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000172#include <linux/reboot.h>
Roland McGrathd9f816f2004-09-04 03:39:20 +0000173static const struct xlat bootflags1[] = {
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000174 { LINUX_REBOOT_MAGIC1, "LINUX_REBOOT_MAGIC1" },
175 { 0, NULL },
176};
177
Roland McGrathd9f816f2004-09-04 03:39:20 +0000178static const struct xlat bootflags2[] = {
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000179 { LINUX_REBOOT_MAGIC2, "LINUX_REBOOT_MAGIC2" },
180 { LINUX_REBOOT_MAGIC2A, "LINUX_REBOOT_MAGIC2A" },
181 { LINUX_REBOOT_MAGIC2B, "LINUX_REBOOT_MAGIC2B" },
182 { 0, NULL },
183};
184
Roland McGrathd9f816f2004-09-04 03:39:20 +0000185static const struct xlat bootflags3[] = {
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000186 { LINUX_REBOOT_CMD_CAD_OFF, "LINUX_REBOOT_CMD_CAD_OFF" },
187 { LINUX_REBOOT_CMD_RESTART, "LINUX_REBOOT_CMD_RESTART" },
188 { LINUX_REBOOT_CMD_HALT, "LINUX_REBOOT_CMD_HALT" },
189 { LINUX_REBOOT_CMD_CAD_ON, "LINUX_REBOOT_CMD_CAD_ON" },
190 { LINUX_REBOOT_CMD_POWER_OFF, "LINUX_REBOOT_CMD_POWER_OFF" },
191 { LINUX_REBOOT_CMD_RESTART2, "LINUX_REBOOT_CMD_RESTART2" },
192 { 0, NULL },
193};
194
195int
196sys_reboot(tcp)
197struct tcb *tcp;
198{
199 if (entering(tcp)) {
200 if (!printflags(bootflags1, tcp->u_arg[0]))
201 tprintf("LINUX_REBOOT_MAGIC???");
202 tprintf(", ");
203 if (!printflags(bootflags2, tcp->u_arg[1]))
204 tprintf("LINUX_REBOOT_MAGIC???");
205 tprintf(", ");
206 if (!printflags(bootflags3, tcp->u_arg[2]))
207 tprintf("LINUX_REBOOT_CMD_???");
208 if (tcp->u_arg[2] == LINUX_REBOOT_CMD_RESTART2) {
209 tprintf(", ");
210 printstr(tcp, tcp->u_arg[3], -1);
211 }
212 }
213 return 0;
214}
215
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000216#ifdef M68K
Roland McGrathd9f816f2004-09-04 03:39:20 +0000217static const struct xlat cacheflush_scope[] = {
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000218#ifdef FLUSH_SCOPE_LINE
219 { FLUSH_SCOPE_LINE, "FLUSH_SCOPE_LINE" },
220#endif
221#ifdef FLUSH_SCOPE_PAGE
222 { FLUSH_SCOPE_PAGE, "FLUSH_SCOPE_PAGE" },
223#endif
224#ifdef FLUSH_SCOPE_ALL
225 { FLUSH_SCOPE_ALL, "FLUSH_SCOPE_ALL" },
226#endif
227 { 0, NULL },
228};
229
Roland McGrathd9f816f2004-09-04 03:39:20 +0000230static const struct xlat cacheflush_flags[] = {
Wichert Akkerman2e2553a1999-05-09 00:29:58 +0000231#ifdef FLUSH_CACHE_BOTH
232 { FLUSH_CACHE_BOTH, "FLUSH_CACHE_BOTH" },
233#endif
234#ifdef FLUSH_CACHE_DATA
235 { FLUSH_CACHE_DATA, "FLUSH_CACHE_DATA" },
236#endif
237#ifdef FLUSH_CACHE_INSN
238 { FLUSH_CACHE_INSN, "FLUSH_CACHE_INSN" },
239#endif
240 { 0, NULL },
241};
242
243int
244sys_cacheflush(tcp)
245struct tcb *tcp;
246{
247 if (entering(tcp)) {
248 /* addr */
249 tprintf("%#lx, ", tcp->u_arg[0]);
250 /* scope */
251 printxval(cacheflush_scope, tcp->u_arg[1], "FLUSH_SCOPE_???");
252 tprintf(", ");
253 /* flags */
254 printflags(cacheflush_flags, tcp->u_arg[2]);
255 /* len */
256 tprintf(", %lu", tcp->u_arg[3]);
257 }
258 return 0;
259}
260#endif /* M68K */
261
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000262#endif /* LINUX */
263
264#ifdef SUNOS4
265
266#include <sys/reboot.h>
267#define NFSCLIENT
268#define LOFS
269#define RFS
270#define PCFS
271#include <sys/mount.h>
272#include <sys/socket.h>
273#include <nfs/export.h>
274#include <rpc/types.h>
275#include <rpc/auth.h>
276
277/*ARGSUSED*/
278int
279sys_sync(tcp)
280struct tcb *tcp;
281{
282 return 0;
283}
284
Roland McGrathd9f816f2004-09-04 03:39:20 +0000285static const struct xlat bootflags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000286 { RB_AUTOBOOT, "RB_AUTOBOOT" }, /* for system auto-booting itself */
287 { RB_ASKNAME, "RB_ASKNAME" }, /* ask for file name to reboot from */
288 { RB_SINGLE, "RB_SINGLE" }, /* reboot to single user only */
289 { RB_NOSYNC, "RB_NOSYNC" }, /* dont sync before reboot */
290 { RB_HALT, "RB_HALT" }, /* don't reboot, just halt */
291 { RB_INITNAME, "RB_INITNAME" }, /* name given for /etc/init */
292 { RB_NOBOOTRC, "RB_NOBOOTRC" }, /* don't run /etc/rc.boot */
293 { RB_DEBUG, "RB_DEBUG" }, /* being run under debugger */
294 { RB_DUMP, "RB_DUMP" }, /* dump system core */
295 { RB_WRITABLE, "RB_WRITABLE" }, /* mount root read/write */
296 { RB_STRING, "RB_STRING" }, /* pass boot args to prom monitor */
297 { 0, NULL },
298};
299
300int
301sys_reboot(tcp)
302struct tcb *tcp;
303{
304 if (entering(tcp)) {
305 if (!printflags(bootflags, tcp->u_arg[0]))
306 tprintf("RB_???");
307 if (tcp->u_arg[0] & RB_STRING) {
308 printstr(tcp, tcp->u_arg[1], -1);
309 }
310 }
311 return 0;
312}
313
314int
315sys_sysacct(tcp)
316struct tcb *tcp;
317{
318 if (entering(tcp)) {
319 printstr(tcp, tcp->u_arg[0], -1);
320 }
321 return 0;
322}
323
324int
325sys_swapon(tcp)
326struct tcb *tcp;
327{
328 if (entering(tcp)) {
329 printstr(tcp, tcp->u_arg[0], -1);
330 }
331 return 0;
332}
333
334int
335sys_nfs_svc(tcp)
336struct tcb *tcp;
337{
338 if (entering(tcp)) {
339 printsock(tcp, tcp->u_arg[0]);
340 }
341 return 0;
342}
343
Roland McGrathd9f816f2004-09-04 03:39:20 +0000344static const struct xlat mountflags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000345 { M_RDONLY, "M_RDONLY" },
346 { M_NOSUID, "M_NOSUID" },
347 { M_NEWTYPE, "M_NEWTYPE" },
348 { M_GRPID, "M_GRPID" },
349#ifdef M_REMOUNT
350 { M_REMOUNT, "M_REMOUNT" },
351#endif
352#ifdef M_NOSUB
353 { M_NOSUB, "M_NOSUB" },
354#endif
355#ifdef M_MULTI
356 { M_MULTI, "M_MULTI" },
357#endif
358#ifdef M_SYS5
359 { M_SYS5, "M_SYS5" },
360#endif
361 { 0, NULL },
362};
363
Roland McGrathd9f816f2004-09-04 03:39:20 +0000364static const struct xlat nfsflags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000365 { NFSMNT_SOFT, "NFSMNT_SOFT" },
366 { NFSMNT_WSIZE, "NFSMNT_WSIZE" },
367 { NFSMNT_RSIZE, "NFSMNT_RSIZE" },
368 { NFSMNT_TIMEO, "NFSMNT_TIMEO" },
369 { NFSMNT_RETRANS, "NFSMNT_RETRANS" },
370 { NFSMNT_HOSTNAME, "NFSMNT_HOSTNAME" },
371 { NFSMNT_INT, "NFSMNT_INT" },
372 { NFSMNT_NOAC, "NFSMNT_NOAC" },
373 { NFSMNT_ACREGMIN, "NFSMNT_ACREGMIN" },
374 { NFSMNT_ACREGMAX, "NFSMNT_ACREGMAX" },
375 { NFSMNT_ACDIRMIN, "NFSMNT_ACDIRMIN" },
376 { NFSMNT_ACDIRMAX, "NFSMNT_ACDIRMAX" },
377#ifdef NFSMNT_SECURE
378 { NFSMNT_SECURE, "NFSMNT_SECURE" },
379#endif
380#ifdef NFSMNT_NOCTO
381 { NFSMNT_NOCTO, "NFSMNT_NOCTO" },
382#endif
383#ifdef NFSMNT_POSIX
384 { NFSMNT_POSIX, "NFSMNT_POSIX" },
385#endif
386 { 0, NULL },
387};
388
389int
390sys_mount(tcp)
391struct tcb *tcp;
392{
393 char type[4];
394
395 if (entering(tcp)) {
396 if (!(tcp->u_arg[2] & M_NEWTYPE) || umovestr(tcp,
397 tcp->u_arg[0], sizeof type, type) < 0) {
398 tprintf("OLDTYPE:#%lx", tcp->u_arg[0]);
399 } else {
400 tprintf("\"%s\", ", type);
401 }
402 printstr(tcp, tcp->u_arg[1], -1);
403 tprintf(", ");
404 if (!printflags(mountflags, tcp->u_arg[2] & ~M_NEWTYPE))
405 tprintf("0");
406 tprintf(", ");
407
408 if (strcmp(type, "4.2") == 0) {
409 struct ufs_args a;
410 if (umove(tcp, tcp->u_arg[3], &a) < 0)
411 return 0;
412 printstr(tcp, (int)a.fspec, -1);
413 } else if (strcmp(type, "lo") == 0) {
414 struct lo_args a;
415 if (umove(tcp, tcp->u_arg[3], &a) < 0)
416 return 0;
417 printstr(tcp, (int)a.fsdir, -1);
418 } else if (strcmp(type, "nfs") == 0) {
419 struct nfs_args a;
420 if (umove(tcp, tcp->u_arg[3], &a) < 0)
421 return 0;
422 tprintf("[");
423 printsock(tcp, (int) a.addr);
424 tprintf(", ");
425 if (!printflags(nfsflags, a.flags))
426 tprintf("NFSMNT_???");
427 tprintf(", ws:%u,rs:%u,to:%u,re:%u,",
428 a.wsize, a.rsize, a.timeo, a.retrans);
429 if (a.flags & NFSMNT_HOSTNAME && a.hostname)
430 printstr(tcp, (int)a.hostname, -1);
431 else
432 tprintf("%#lx", (unsigned long) a.hostname);
433 tprintf(",reg-min:%u,max:%u,dir-min:%u,max:%u,",
434 a.acregmin, a.acregmax, a.acdirmin, a.acdirmax);
435 if ((a.flags & NFSMNT_SECURE) && a.netname)
436 printstr(tcp, (int) a.netname, -1);
437 else
438 tprintf("%#lx", (unsigned long) a.netname);
439 tprintf("]");
440 } else if (strcmp(type, "rfs") == 0) {
441 struct rfs_args a;
442 struct token t;
443 if (umove(tcp, tcp->u_arg[3], &a) < 0)
444 return 0;
445 tprintf("[");
446 printstr(tcp, (int)a.rmtfs, -1);
447 if (umove(tcp, (int)a.token, &t) < 0)
448 return 0;
449 tprintf(", %u, %s]", t.t_id, t.t_uname);
450 } else if (strcmp(type, "pcfs") == 0) {
451 struct pc_args a;
452 if (umove(tcp, tcp->u_arg[3], &a) < 0)
453 return 0;
454 printstr(tcp, (int)a.fspec, -1);
455 }
456 }
457 return 0;
458}
459
460int
461sys_unmount(tcp)
462struct tcb *tcp;
463{
464 if (entering(tcp)) {
465 printstr(tcp, tcp->u_arg[0], -1);
466 }
467 return 0;
468}
469
470int
471sys_umount(tcp)
472struct tcb *tcp;
473{
474 return sys_unmount(tcp);
475}
476
477int
478sys_auditsys(tcp)
479struct tcb *tcp;
480{
481 /* XXX - no information available */
482 return printargs(tcp);
483}
484
Roland McGrathd9f816f2004-09-04 03:39:20 +0000485static const struct xlat ex_auth_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000486 { AUTH_UNIX, "AUTH_UNIX" },
487 { AUTH_DES, "AUTH_DES" },
488 { 0, NULL },
489};
490
491int
492sys_exportfs(tcp)
493struct tcb *tcp;
494{
495 struct export e;
496 int i;
497
498 if (entering(tcp)) {
499 printstr(tcp, tcp->u_arg[0], -1);
500 if (umove(tcp, tcp->u_arg[1], &e) < 0) {
501 tprintf("%#lx", tcp->u_arg[1]);
502 return 0;
503 }
504 tprintf("{fl:%u, anon:%u, ", e.ex_flags, e.ex_anon);
505 printxval(ex_auth_flags, e.ex_auth, "AUTH_???");
506 tprintf(", roots:[");
507 if (e.ex_auth == AUTH_UNIX) {
508 for (i=0; i<e.ex_u.exunix.rootaddrs.naddrs; i++) {
509 printsock(tcp,
510 (int)&e.ex_u.exunix.rootaddrs.addrvec[i]);
511 }
512 tprintf("], writers:[");
513 for (i=0; i<e.ex_writeaddrs.naddrs; i++) {
514 printsock(tcp,
515 (int)&e.ex_writeaddrs.addrvec[i]);
516 }
517 tprintf("]");
518 } else {
519 for (i=0; i<e.ex_u.exdes.nnames; i++) {
520 printsock(tcp,
521 (int)&e.ex_u.exdes.rootnames[i]);
522 tprintf(", ");
523 }
524 tprintf("], window:%u", e.ex_u.exdes.window);
525 }
526 tprintf("}");
527 }
528 return 0;
529}
530
Roland McGrathd9f816f2004-09-04 03:39:20 +0000531static const struct xlat sysconflimits[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000532#ifdef _SC_ARG_MAX
533 { _SC_ARG_MAX, "_SC_ARG_MAX" }, /* space for argv & envp */
534#endif
535#ifdef _SC_CHILD_MAX
536 { _SC_CHILD_MAX, "_SC_CHILD_MAX" }, /* maximum children per process??? */
537#endif
538#ifdef _SC_CLK_TCK
539 { _SC_CLK_TCK, "_SC_CLK_TCK" }, /* clock ticks/sec */
540#endif
541#ifdef _SC_NGROUPS_MAX
542 { _SC_NGROUPS_MAX, "_SC_NGROUPS_MAX" }, /* number of groups if multple supp. */
543#endif
544#ifdef _SC_OPEN_MAX
545 { _SC_OPEN_MAX, "_SC_OPEN_MAX" }, /* max open files per process */
546#endif
547#ifdef _SC_JOB_CONTROL
548 { _SC_JOB_CONTROL, "_SC_JOB_CONTROL" }, /* do we have job control */
549#endif
550#ifdef _SC_SAVED_IDS
551 { _SC_SAVED_IDS, "_SC_SAVED_IDS" }, /* do we have saved uid/gids */
552#endif
553#ifdef _SC_VERSION
554 { _SC_VERSION, "_SC_VERSION" }, /* POSIX version supported */
555#endif
556 { 0, NULL },
557};
558
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000559int
560sys_sysconf(tcp)
561struct tcb *tcp;
562{
563 if (entering(tcp)) {
564 printxval(sysconflimits, tcp->u_arg[0], "_SC_???");
565 }
566 return 0;
567}
568
569#endif /* SUNOS4 */
570
571#if defined(SUNOS4) || defined(FREEBSD)
Roland McGrathd9f816f2004-09-04 03:39:20 +0000572static const struct xlat pathconflimits[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000573#ifdef _PC_LINK_MAX
574 { _PC_LINK_MAX, "_PC_LINK_MAX" }, /* max links to file/dir */
575#endif
576#ifdef _PC_MAX_CANON
577 { _PC_MAX_CANON, "_PC_MAX_CANON" }, /* max line length */
578#endif
579#ifdef _PC_MAX_INPUT
580 { _PC_MAX_INPUT, "_PC_MAX_INPUT" }, /* max "packet" to a tty device */
581#endif
582#ifdef _PC_NAME_MAX
583 { _PC_NAME_MAX, "_PC_NAME_MAX" }, /* max pathname component length */
584#endif
585#ifdef _PC_PATH_MAX
586 { _PC_PATH_MAX, "_PC_PATH_MAX" }, /* max pathname length */
587#endif
588#ifdef _PC_PIPE_BUF
589 { _PC_PIPE_BUF, "_PC_PIPE_BUF" }, /* size of a pipe */
590#endif
591#ifdef _PC_CHOWN_RESTRICTED
592 { _PC_CHOWN_RESTRICTED, "_PC_CHOWN_RESTRICTED" }, /* can we give away files */
593#endif
594#ifdef _PC_NO_TRUNC
595 { _PC_NO_TRUNC, "_PC_NO_TRUNC" }, /* trunc or error on >NAME_MAX */
596#endif
597#ifdef _PC_VDISABLE
598 { _PC_VDISABLE, "_PC_VDISABLE" }, /* best char to shut off tty c_cc */
599#endif
600 { 0, NULL },
601};
602
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000603
604int
605sys_pathconf(tcp)
606struct tcb *tcp;
607{
608 if (entering(tcp)) {
609 printstr(tcp, tcp->u_arg[0], -1);
610 tprintf(", ");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000611 printxval(pathconflimits, tcp->u_arg[1], "_PC_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000612 }
613 return 0;
614}
615
616int
617sys_fpathconf(tcp)
618struct tcb *tcp;
619{
620 if (entering(tcp)) {
621 tprintf("%lu, ", tcp->u_arg[0]);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000622 printxval(pathconflimits, tcp->u_arg[1], "_PC_???");
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000623 }
624 return 0;
625}
626
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000627#endif /* SUNOS4 || FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000628
629#ifdef SVR4
630
631#ifdef HAVE_SYS_SYSCONFIG_H
632#include <sys/sysconfig.h>
633#endif /* HAVE_SYS_SYSCONFIG_H */
634
635#include <sys/mount.h>
636#include <sys/systeminfo.h>
637#include <sys/utsname.h>
638
Roland McGrathd9f816f2004-09-04 03:39:20 +0000639static const struct xlat sysconfig_options[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000640#ifdef _CONFIG_NGROUPS
641 { _CONFIG_NGROUPS, "_CONFIG_NGROUPS" },
642#endif
643#ifdef _CONFIG_CHILD_MAX
644 { _CONFIG_CHILD_MAX, "_CONFIG_CHILD_MAX" },
645#endif
646#ifdef _CONFIG_OPEN_FILES
647 { _CONFIG_OPEN_FILES, "_CONFIG_OPEN_FILES" },
648#endif
649#ifdef _CONFIG_POSIX_VER
650 { _CONFIG_POSIX_VER, "_CONFIG_POSIX_VER" },
651#endif
652#ifdef _CONFIG_PAGESIZE
653 { _CONFIG_PAGESIZE, "_CONFIG_PAGESIZE" },
654#endif
655#ifdef _CONFIG_CLK_TCK
656 { _CONFIG_CLK_TCK, "_CONFIG_CLK_TCK" },
657#endif
658#ifdef _CONFIG_XOPEN_VER
659 { _CONFIG_XOPEN_VER, "_CONFIG_XOPEN_VER" },
660#endif
661#ifdef _CONFIG_PROF_TCK
662 { _CONFIG_PROF_TCK, "_CONFIG_PROF_TCK" },
663#endif
664#ifdef _CONFIG_NPROC_CONF
665 { _CONFIG_NPROC_CONF, "_CONFIG_NPROC_CONF" },
666#endif
667#ifdef _CONFIG_NPROC_ONLN
668 { _CONFIG_NPROC_ONLN, "_CONFIG_NPROC_ONLN" },
669#endif
670#ifdef _CONFIG_AIO_LISTIO_MAX
671 { _CONFIG_AIO_LISTIO_MAX, "_CONFIG_AIO_LISTIO_MAX" },
672#endif
673#ifdef _CONFIG_AIO_MAX
674 { _CONFIG_AIO_MAX, "_CONFIG_AIO_MAX" },
675#endif
676#ifdef _CONFIG_AIO_PRIO_DELTA_MAX
677 { _CONFIG_AIO_PRIO_DELTA_MAX, "_CONFIG_AIO_PRIO_DELTA_MAX" },
678#endif
679#ifdef _CONFIG_CONFIG_DELAYTIMER_MAX
680 { _CONFIG_DELAYTIMER_MAX, "_CONFIG_DELAYTIMER_MAX" },
681#endif
682#ifdef _CONFIG_MQ_OPEN_MAX
683 { _CONFIG_MQ_OPEN_MAX, "_CONFIG_MQ_OPEN_MAX" },
684#endif
685#ifdef _CONFIG_MQ_PRIO_MAX
686 { _CONFIG_MQ_PRIO_MAX, "_CONFIG_MQ_PRIO_MAX" },
687#endif
688#ifdef _CONFIG_RTSIG_MAX
689 { _CONFIG_RTSIG_MAX, "_CONFIG_RTSIG_MAX" },
690#endif
691#ifdef _CONFIG_SEM_NSEMS_MAX
692 { _CONFIG_SEM_NSEMS_MAX, "_CONFIG_SEM_NSEMS_MAX" },
693#endif
694#ifdef _CONFIG_SEM_VALUE_MAX
695 { _CONFIG_SEM_VALUE_MAX, "_CONFIG_SEM_VALUE_MAX" },
696#endif
697#ifdef _CONFIG_SIGQUEUE_MAX
698 { _CONFIG_SIGQUEUE_MAX, "_CONFIG_SIGQUEUE_MAX" },
699#endif
700#ifdef _CONFIG_SIGRT_MIN
701 { _CONFIG_SIGRT_MIN, "_CONFIG_SIGRT_MIN" },
702#endif
703#ifdef _CONFIG_SIGRT_MAX
704 { _CONFIG_SIGRT_MAX, "_CONFIG_SIGRT_MAX" },
705#endif
706#ifdef _CONFIG_TIMER_MAX
707 { _CONFIG_TIMER_MAX, "_CONFIG_TIMER_MAX" },
708#endif
709#ifdef _CONFIG_CONFIG_PHYS_PAGES
710 { _CONFIG_PHYS_PAGES, "_CONFIG_PHYS_PAGES" },
711#endif
712#ifdef _CONFIG_AVPHYS_PAGES
713 { _CONFIG_AVPHYS_PAGES, "_CONFIG_AVPHYS_PAGES" },
714#endif
715 { 0, NULL },
716};
717
718int
719sys_sysconfig(tcp)
720struct tcb *tcp;
721{
722 if (entering(tcp))
723 printxval(sysconfig_options, tcp->u_arg[0], "_CONFIG_???");
724 return 0;
725}
726
Roland McGrathd9f816f2004-09-04 03:39:20 +0000727static const struct xlat sysinfo_options[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000728 { SI_SYSNAME, "SI_SYSNAME" },
729 { SI_HOSTNAME, "SI_HOSTNAME" },
730 { SI_RELEASE, "SI_RELEASE" },
731 { SI_VERSION, "SI_VERSION" },
732 { SI_MACHINE, "SI_MACHINE" },
733 { SI_ARCHITECTURE, "SI_ARCHITECTURE" },
734 { SI_HW_SERIAL, "SI_HW_SERIAL" },
735 { SI_HW_PROVIDER, "SI_HW_PROVIDER" },
736 { SI_SRPC_DOMAIN, "SI_SRPC_DOMAIN" },
737#ifdef SI_SET_HOSTNAME
738 { SI_SET_HOSTNAME, "SI_SET_HOSTNAME" },
739#endif
740#ifdef SI_SET_SRPC_DOMAIN
741 { SI_SET_SRPC_DOMAIN, "SI_SET_SRPC_DOMAIN" },
742#endif
743#ifdef SI_SET_KERB_REALM
744 { SI_SET_KERB_REALM, "SI_SET_KERB_REALM" },
745#endif
746#ifdef SI_KERB_REALM
747 { SI_KERB_REALM, "SI_KERB_REALM" },
748#endif
749 { 0, NULL },
750};
751
752int
753sys_sysinfo(tcp)
754struct tcb *tcp;
755{
756 if (entering(tcp)) {
757 printxval(sysinfo_options, tcp->u_arg[0], "SI_???");
758 tprintf(", ");
759 }
760 else {
761 /* Technically some calls write values. So what. */
762 if (syserror(tcp))
763 tprintf("%#lx", tcp->u_arg[1]);
764 else
765 printpath(tcp, tcp->u_arg[1]);
766 tprintf(", %lu", tcp->u_arg[2]);
767 }
768 return 0;
769}
770
771#ifdef MIPS
772
773#include <sys/syssgi.h>
774
Roland McGrathd9f816f2004-09-04 03:39:20 +0000775static const struct xlat syssgi_options[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000776 { SGI_SYSID, "SGI_SYSID" },
Wichert Akkerman8829a551999-06-11 13:18:40 +0000777#ifdef SGI_RDUBLK
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000778 { SGI_RDUBLK, "SGI_RDUBLK" },
Wichert Akkerman8829a551999-06-11 13:18:40 +0000779#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000780 { SGI_TUNE, "SGI_TUNE" },
781 { SGI_IDBG, "SGI_IDBG" },
782 { SGI_INVENT, "SGI_INVENT" },
783 { SGI_RDNAME, "SGI_RDNAME" },
784 { SGI_SETLED, "SGI_SETLED" },
785 { SGI_SETNVRAM, "SGI_SETNVRAM" },
786 { SGI_GETNVRAM, "SGI_GETNVRAM" },
787 { SGI_QUERY_FTIMER, "SGI_QUERY_FTIMER" },
788 { SGI_QUERY_CYCLECNTR, "SGI_QUERY_CYCLECNTR" },
789 { SGI_PROCSZ, "SGI_PROCSZ" },
790 { SGI_SIGACTION, "SGI_SIGACTION" },
791 { SGI_SIGPENDING, "SGI_SIGPENDING" },
792 { SGI_SIGPROCMASK, "SGI_SIGPROCMASK" },
793 { SGI_SIGSUSPEND, "SGI_SIGSUSPEND" },
794 { SGI_SETSID, "SGI_SETSID" },
795 { SGI_SETPGID, "SGI_SETPGID" },
796 { SGI_SYSCONF, "SGI_SYSCONF" },
797 { SGI_WAIT4, "SGI_WAIT4" },
798 { SGI_PATHCONF, "SGI_PATHCONF" },
799 { SGI_READB, "SGI_READB" },
800 { SGI_WRITEB, "SGI_WRITEB" },
801 { SGI_SETGROUPS, "SGI_SETGROUPS" },
802 { SGI_GETGROUPS, "SGI_GETGROUPS" },
803 { SGI_SETTIMEOFDAY, "SGI_SETTIMEOFDAY" },
804 { SGI_SETTIMETRIM, "SGI_SETTIMETRIM" },
805 { SGI_GETTIMETRIM, "SGI_GETTIMETRIM" },
806 { SGI_SPROFIL, "SGI_SPROFIL" },
807 { SGI_RUSAGE, "SGI_RUSAGE" },
808 { SGI_SIGSTACK, "SGI_SIGSTACK" },
809 { SGI_SIGSTATUS, "SGI_SIGSTATUS" },
810 { SGI_NETPROC, "SGI_NETPROC" },
811 { SGI_SIGALTSTACK, "SGI_SIGALTSTACK" },
812 { SGI_BDFLUSHCNT, "SGI_BDFLUSHCNT" },
813 { SGI_SSYNC, "SGI_SSYNC" },
814 { SGI_NFSCNVT, "SGI_NFSCNVT" },
815 { SGI_GETPGID, "SGI_GETPGID" },
816 { SGI_GETSID, "SGI_GETSID" },
817 { SGI_IOPROBE, "SGI_IOPROBE" },
818 { SGI_CONFIG, "SGI_CONFIG" },
819 { SGI_ELFMAP, "SGI_ELFMAP" },
820 { SGI_MCONFIG, "SGI_MCONFIG" },
821 { SGI_GETPLABEL, "SGI_GETPLABEL" },
822 { SGI_SETPLABEL, "SGI_SETPLABEL" },
823 { SGI_GETLABEL, "SGI_GETLABEL" },
824 { SGI_SETLABEL, "SGI_SETLABEL" },
825 { SGI_SATREAD, "SGI_SATREAD" },
826 { SGI_SATWRITE, "SGI_SATWRITE" },
827 { SGI_SATCTL, "SGI_SATCTL" },
828 { SGI_LOADATTR, "SGI_LOADATTR" },
829 { SGI_UNLOADATTR, "SGI_UNLOADATTR" },
830#ifdef SGI_RECVLMSG
831 { SGI_RECVLMSG, "SGI_RECVLMSG" },
832#endif
833 { SGI_PLANGMOUNT, "SGI_PLANGMOUNT" },
834 { SGI_GETPSOACL, "SGI_GETPSOACL" },
835 { SGI_SETPSOACL, "SGI_SETPSOACL" },
Wichert Akkerman8829a551999-06-11 13:18:40 +0000836#ifdef SGI_EAG_GET_ATTR
837 { SGI_EAG_GET_ATTR, "SGI_EAG_GET_ATTR" },
838#endif
839#ifdef SGI_EAG_SET_ATTR
840 { SGI_EAG_SET_ATTR, "SGI_EAG_SET_ATTR" },
841#endif
842#ifdef SGI_EAG_GET_PROCATTR
843 { SGI_EAG_GET_PROCATTR, "SGI_EAG_GET_PROCATTR" },
844#endif
845#ifdef SGI_EAG_SET_PROCATTR
846 { SGI_EAG_SET_PROCATTR, "SGI_EAG_SET_PROCATTR" },
847#endif
848#ifdef SGI_FREVOKE
849 { SGI_FREVOKE, "SGI_FREVOKE" },
850#endif
851#ifdef SGI_SBE_GET_INFO
852 { SGI_SBE_GET_INFO, "SGI_SBE_GET_INFO" },
853#endif
854#ifdef SGI_SBE_CLR_INFO
855 { SGI_SBE_CLR_INFO, "SGI_SBE_CLR_INFO" },
856#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000857 { SGI_RMI_FIXECC, "SGI_RMI_FIXECC" },
858 { SGI_R4K_CERRS, "SGI_R4K_CERRS" },
859 { SGI_GET_EVCONF, "SGI_GET_EVCONF" },
860 { SGI_MPCWAROFF, "SGI_MPCWAROFF" },
861 { SGI_SET_AUTOPWRON, "SGI_SET_AUTOPWRON" },
862 { SGI_SPIPE, "SGI_SPIPE" },
863 { SGI_SYMTAB, "SGI_SYMTAB" },
864#ifdef SGI_SET_FPDEBUG
865 { SGI_SET_FPDEBUG, "SGI_SET_FPDEBUG" },
866#endif
Wichert Akkerman8829a551999-06-11 13:18:40 +0000867#ifdef SGI_SET_FP_PRECISE
868 { SGI_SET_FP_PRECISE, "SGI_SET_FP_PRECISE" },
869#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000870 { SGI_TOSSTSAVE, "SGI_TOSSTSAVE" },
871 { SGI_FDHI, "SGI_FDHI" },
Wichert Akkerman8829a551999-06-11 13:18:40 +0000872#ifdef SGI_SET_CONFIG_SMM
873 { SGI_SET_CONFIG_SMM, "SGI_SET_CONFIG_SMM" },
874#endif
875#ifdef SGI_SET_FP_PRESERVE
876 { SGI_SET_FP_PRESERVE, "SGI_SET_FP_PRESERVE" },
877#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000878 { SGI_MINRSS, "SGI_MINRSS" },
Wichert Akkerman8829a551999-06-11 13:18:40 +0000879#ifdef SGI_GRIO
880 { SGI_GRIO, "SGI_GRIO" },
881#endif
882#ifdef SGI_XLV_SET_TAB
883 { SGI_XLV_SET_TAB, "SGI_XLV_SET_TAB" },
884#endif
885#ifdef SGI_XLV_GET_TAB
886 { SGI_XLV_GET_TAB, "SGI_XLV_GET_TAB" },
887#endif
888#ifdef SGI_GET_FP_PRECISE
889 { SGI_GET_FP_PRECISE, "SGI_GET_FP_PRECISE" },
890#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000891#ifdef SGI_GET_CONFIG_SMM
Wichert Akkerman8829a551999-06-11 13:18:40 +0000892 { SGI_GET_CONFIG_SMM, "SGI_GET_CONFIG_SMM" },
893#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000894#ifdef SGI_FP_IMPRECISE_SUPP
Wichert Akkerman8829a551999-06-11 13:18:40 +0000895 { SGI_FP_IMPRECISE_SUPP,"SGI_FP_IMPRECISE_SUPP" },
896#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000897#ifdef SGI_CONFIG_NSMM_SUPP
Wichert Akkerman8829a551999-06-11 13:18:40 +0000898 { SGI_CONFIG_NSMM_SUPP, "SGI_CONFIG_NSMM_SUPP" },
899#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000900#ifdef SGI_RT_TSTAMP_CREATE
Wichert Akkerman8829a551999-06-11 13:18:40 +0000901 { SGI_RT_TSTAMP_CREATE, "SGI_RT_TSTAMP_CREATE" },
902#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000903#ifdef SGI_RT_TSTAMP_DELETE
Wichert Akkerman8829a551999-06-11 13:18:40 +0000904 { SGI_RT_TSTAMP_DELETE, "SGI_RT_TSTAMP_DELETE" },
905#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000906#ifdef SGI_RT_TSTAMP_START
Wichert Akkerman8829a551999-06-11 13:18:40 +0000907 { SGI_RT_TSTAMP_START, "SGI_RT_TSTAMP_START" },
908#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000909#ifdef SGI_RT_TSTAMP_STOP
Wichert Akkerman8829a551999-06-11 13:18:40 +0000910 { SGI_RT_TSTAMP_STOP, "SGI_RT_TSTAMP_STOP" },
911#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000912#ifdef SGI_RT_TSTAMP_ADDR
Wichert Akkerman8829a551999-06-11 13:18:40 +0000913 { SGI_RT_TSTAMP_ADDR, "SGI_RT_TSTAMP_ADDR" },
914#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000915#ifdef SGI_RT_TSTAMP_MASK
Wichert Akkerman8829a551999-06-11 13:18:40 +0000916 { SGI_RT_TSTAMP_MASK, "SGI_RT_TSTAMP_MASK" },
917#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000918#ifdef SGI_RT_TSTAMP_EOB_MODE
Wichert Akkerman8829a551999-06-11 13:18:40 +0000919 { SGI_RT_TSTAMP_EOB_MODE,"SGI_RT_TSTAMP_EOB_MODE"},
920#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000921#ifdef SGI_USE_FP_BCOPY
Wichert Akkerman8829a551999-06-11 13:18:40 +0000922 { SGI_USE_FP_BCOPY, "SGI_USE_FP_BCOPY" },
923#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000924#ifdef SGI_GET_UST
Wichert Akkerman8829a551999-06-11 13:18:40 +0000925 { SGI_GET_UST, "SGI_GET_UST" },
926#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000927#ifdef SGI_SPECULATIVE_EXEC
Wichert Akkerman8829a551999-06-11 13:18:40 +0000928 { SGI_SPECULATIVE_EXEC, "SGI_SPECULATIVE_EXEC" },
929#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000930#ifdef SGI_XLV_NEXT_RQST
Wichert Akkerman8829a551999-06-11 13:18:40 +0000931 { SGI_XLV_NEXT_RQST, "SGI_XLV_NEXT_RQST" },
932#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000933#ifdef SGI_XLV_ATTR_CURSOR
Wichert Akkerman8829a551999-06-11 13:18:40 +0000934 { SGI_XLV_ATTR_CURSOR, "SGI_XLV_ATTR_CURSOR" },
935#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000936#ifdef SGI_XLV_ATTR_GET
Wichert Akkerman8829a551999-06-11 13:18:40 +0000937 { SGI_XLV_ATTR_GET, "SGI_XLV_ATTR_GET" },
938#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000939#ifdef SGI_XLV_ATTR_SET
Wichert Akkerman8829a551999-06-11 13:18:40 +0000940 { SGI_XLV_ATTR_SET, "SGI_XLV_ATTR_SET" },
941#endif
942#ifdef SGI_BTOOLSIZE
943 { SGI_BTOOLSIZE, "SGI_BTOOLSIZE" },
944#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000945#ifdef SGI_BTOOLGET
Wichert Akkerman8829a551999-06-11 13:18:40 +0000946 { SGI_BTOOLGET, "SGI_BTOOLGET" },
947#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000948#ifdef SGI_BTOOLREINIT
Wichert Akkerman8829a551999-06-11 13:18:40 +0000949 { SGI_BTOOLREINIT, "SGI_BTOOLREINIT" },
950#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000951#ifdef SGI_CREATE_UUID
Wichert Akkerman8829a551999-06-11 13:18:40 +0000952 { SGI_CREATE_UUID, "SGI_CREATE_UUID" },
953#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000954#ifdef SGI_NOFPE
Wichert Akkerman8829a551999-06-11 13:18:40 +0000955 { SGI_NOFPE, "SGI_NOFPE" },
956#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000957#ifdef SGI_OLD_SOFTFP
Wichert Akkerman8829a551999-06-11 13:18:40 +0000958 { SGI_OLD_SOFTFP, "SGI_OLD_SOFTFP" },
959#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000960#ifdef SGI_FS_INUMBERS
Wichert Akkerman8829a551999-06-11 13:18:40 +0000961 { SGI_FS_INUMBERS, "SGI_FS_INUMBERS" },
962#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000963#ifdef SGI_FS_BULKSTAT
Wichert Akkerman8829a551999-06-11 13:18:40 +0000964 { SGI_FS_BULKSTAT, "SGI_FS_BULKSTAT" },
965#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000966#ifdef SGI_RT_TSTAMP_WAIT
Wichert Akkerman8829a551999-06-11 13:18:40 +0000967 { SGI_RT_TSTAMP_WAIT, "SGI_RT_TSTAMP_WAIT" },
968#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000969#ifdef SGI_RT_TSTAMP_UPDATE
Wichert Akkerman8829a551999-06-11 13:18:40 +0000970 { SGI_RT_TSTAMP_UPDATE, "SGI_RT_TSTAMP_UPDATE" },
971#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000972#ifdef SGI_PATH_TO_HANDLE
Wichert Akkerman8829a551999-06-11 13:18:40 +0000973 { SGI_PATH_TO_HANDLE, "SGI_PATH_TO_HANDLE" },
974#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000975#ifdef SGI_PATH_TO_FSHANDLE
Wichert Akkerman8829a551999-06-11 13:18:40 +0000976 { SGI_PATH_TO_FSHANDLE, "SGI_PATH_TO_FSHANDLE" },
977#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000978#ifdef SGI_FD_TO_HANDLE
Wichert Akkerman8829a551999-06-11 13:18:40 +0000979 { SGI_FD_TO_HANDLE, "SGI_FD_TO_HANDLE" },
980#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000981#ifdef SGI_OPEN_BY_HANDLE
Wichert Akkerman8829a551999-06-11 13:18:40 +0000982 { SGI_OPEN_BY_HANDLE, "SGI_OPEN_BY_HANDLE" },
983#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000984#ifdef SGI_READLINK_BY_HANDLE
Wichert Akkerman8829a551999-06-11 13:18:40 +0000985 { SGI_READLINK_BY_HANDLE,"SGI_READLINK_BY_HANDLE"},
986#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000987#ifdef SGI_READ_DANGID
Wichert Akkerman8829a551999-06-11 13:18:40 +0000988 { SGI_READ_DANGID, "SGI_READ_DANGID" },
989#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000990#ifdef SGI_CONST
Wichert Akkerman8829a551999-06-11 13:18:40 +0000991 { SGI_CONST, "SGI_CONST" },
992#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000993#ifdef SGI_XFS_FSOPERATIONS
Wichert Akkerman8829a551999-06-11 13:18:40 +0000994 { SGI_XFS_FSOPERATIONS, "SGI_XFS_FSOPERATIONS" },
995#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000996#ifdef SGI_SETASH
Wichert Akkerman8829a551999-06-11 13:18:40 +0000997 { SGI_SETASH, "SGI_SETASH" },
998#endif
Roland McGrathced50da2004-08-31 06:48:46 +0000999#ifdef SGI_GETASH
Wichert Akkerman8829a551999-06-11 13:18:40 +00001000 { SGI_GETASH, "SGI_GETASH" },
1001#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001002#ifdef SGI_SETPRID
Wichert Akkerman8829a551999-06-11 13:18:40 +00001003 { SGI_SETPRID, "SGI_SETPRID" },
1004#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001005#ifdef SGI_GETPRID
Wichert Akkerman8829a551999-06-11 13:18:40 +00001006 { SGI_GETPRID, "SGI_GETPRID" },
1007#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001008#ifdef SGI_SETSPINFO
Wichert Akkerman8829a551999-06-11 13:18:40 +00001009 { SGI_SETSPINFO, "SGI_SETSPINFO" },
1010#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001011#ifdef SGI_GETSPINFO
Wichert Akkerman8829a551999-06-11 13:18:40 +00001012 { SGI_GETSPINFO, "SGI_GETSPINFO" },
1013#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001014#ifdef SGI_SHAREII
Wichert Akkerman8829a551999-06-11 13:18:40 +00001015 { SGI_SHAREII, "SGI_SHAREII" },
1016#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001017#ifdef SGI_NEWARRAYSESS
Wichert Akkerman8829a551999-06-11 13:18:40 +00001018 { SGI_NEWARRAYSESS, "SGI_NEWARRAYSESS" },
1019#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001020#ifdef SGI_GETDFLTPRID
Wichert Akkerman8829a551999-06-11 13:18:40 +00001021 { SGI_GETDFLTPRID, "SGI_GETDFLTPRID" },
1022#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001023#ifdef SGI_SET_DISMISSED_EXC_CNT
Wichert Akkerman8829a551999-06-11 13:18:40 +00001024 { SGI_SET_DISMISSED_EXC_CNT,"SGI_SET_DISMISSED_EXC_CNT" },
1025#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001026#ifdef SGI_GET_DISMISSED_EXC_CNT
Wichert Akkerman8829a551999-06-11 13:18:40 +00001027 { SGI_GET_DISMISSED_EXC_CNT,"SGI_GET_DISMISSED_EXC_CNT" },
1028#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001029#ifdef SGI_CYCLECNTR_SIZE
Wichert Akkerman8829a551999-06-11 13:18:40 +00001030 { SGI_CYCLECNTR_SIZE, "SGI_CYCLECNTR_SIZE" },
1031#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001032#ifdef SGI_QUERY_FASTTIMER
Wichert Akkerman8829a551999-06-11 13:18:40 +00001033 { SGI_QUERY_FASTTIMER, "SGI_QUERY_FASTTIMER" },
1034#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001035#ifdef SGI_PIDSINASH
Wichert Akkerman8829a551999-06-11 13:18:40 +00001036 { SGI_PIDSINASH, "SGI_PIDSINASH" },
1037#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001038#ifdef SGI_ULI
Wichert Akkerman8829a551999-06-11 13:18:40 +00001039 { SGI_ULI, "SGI_ULI" },
1040#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001041#ifdef SGI_LPG_SHMGET
Wichert Akkerman8829a551999-06-11 13:18:40 +00001042 { SGI_LPG_SHMGET, "SGI_LPG_SHMGET" },
1043#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001044#ifdef SGI_LPG_MAP
Wichert Akkerman8829a551999-06-11 13:18:40 +00001045 { SGI_LPG_MAP, "SGI_LPG_MAP" },
1046#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001047#ifdef SGI_CACHEFS_SYS
Wichert Akkerman8829a551999-06-11 13:18:40 +00001048 { SGI_CACHEFS_SYS, "SGI_CACHEFS_SYS" },
1049#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001050#ifdef SGI_NFSNOTIFY
Wichert Akkerman8829a551999-06-11 13:18:40 +00001051 { SGI_NFSNOTIFY, "SGI_NFSNOTIFY" },
1052#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001053#ifdef SGI_LOCKDSYS
Wichert Akkerman8829a551999-06-11 13:18:40 +00001054 { SGI_LOCKDSYS, "SGI_LOCKDSYS" },
1055#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001056#ifdef SGI_EVENTCTR
Wichert Akkerman8829a551999-06-11 13:18:40 +00001057 { SGI_EVENTCTR, "SGI_EVENTCTR" },
1058#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001059#ifdef SGI_GETPRUSAGE
Wichert Akkerman8829a551999-06-11 13:18:40 +00001060 { SGI_GETPRUSAGE, "SGI_GETPRUSAGE" },
1061#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001062#ifdef SGI_PROCMASK_LOCATION
Wichert Akkerman8829a551999-06-11 13:18:40 +00001063 { SGI_PROCMASK_LOCATION,"SGI_PROCMASK_LOCATION" },
1064#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001065#ifdef SGI_UNUSED
Wichert Akkerman8829a551999-06-11 13:18:40 +00001066 { SGI_UNUSED, "SGI_UNUSED" },
1067#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001068#ifdef SGI_CKPT_SYS
Wichert Akkerman8829a551999-06-11 13:18:40 +00001069 { SGI_CKPT_SYS, "SGI_CKPT_SYS" },
1070#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001071#ifdef SGI_CKPT_SYS
Wichert Akkerman8829a551999-06-11 13:18:40 +00001072 { SGI_CKPT_SYS, "SGI_CKPT_SYS" },
1073#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001074#ifdef SGI_GETGRPPID
Wichert Akkerman8829a551999-06-11 13:18:40 +00001075 { SGI_GETGRPPID, "SGI_GETGRPPID" },
1076#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001077#ifdef SGI_GETSESPID
Wichert Akkerman8829a551999-06-11 13:18:40 +00001078 { SGI_GETSESPID, "SGI_GETSESPID" },
1079#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001080#ifdef SGI_ENUMASHS
Wichert Akkerman8829a551999-06-11 13:18:40 +00001081 { SGI_ENUMASHS, "SGI_ENUMASHS" },
1082#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001083#ifdef SGI_SETASMACHID
Wichert Akkerman8829a551999-06-11 13:18:40 +00001084 { SGI_SETASMACHID, "SGI_SETASMACHID" },
1085#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001086#ifdef SGI_GETASMACHID
Wichert Akkerman8829a551999-06-11 13:18:40 +00001087 { SGI_GETASMACHID, "SGI_GETASMACHID" },
1088#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001089#ifdef SGI_GETARSESS
Wichert Akkerman8829a551999-06-11 13:18:40 +00001090 { SGI_GETARSESS, "SGI_GETARSESS" },
1091#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001092#ifdef SGI_JOINARRAYSESS
Wichert Akkerman8829a551999-06-11 13:18:40 +00001093 { SGI_JOINARRAYSESS, "SGI_JOINARRAYSESS" },
1094#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001095#ifdef SGI_SPROC_KILL
Wichert Akkerman8829a551999-06-11 13:18:40 +00001096 { SGI_SPROC_KILL, "SGI_SPROC_KILL" },
1097#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001098#ifdef SGI_DBA_CONFIG
Wichert Akkerman8829a551999-06-11 13:18:40 +00001099 { SGI_DBA_CONFIG, "SGI_DBA_CONFIG" },
1100#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001101#ifdef SGI_RELEASE_NAME
Wichert Akkerman8829a551999-06-11 13:18:40 +00001102 { SGI_RELEASE_NAME, "SGI_RELEASE_NAME" },
1103#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001104#ifdef SGI_SYNCH_CACHE_HANDLER
Wichert Akkerman8829a551999-06-11 13:18:40 +00001105 { SGI_SYNCH_CACHE_HANDLER,"SGI_SYNCH_CACHE_HANDLER"},
1106#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001107#ifdef SGI_SWASH_INIT
Wichert Akkerman8829a551999-06-11 13:18:40 +00001108 { SGI_SWASH_INIT, "SGI_SWASH_INIT" },
1109#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001110#ifdef SGI_NUMA_MIGR_PAGE
Wichert Akkerman8829a551999-06-11 13:18:40 +00001111 { SGI_NUMA_MIGR_PAGE, "SGI_NUMA_MIGR_PAGE" },
1112#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001113#ifdef SGI_NUMA_MIGR_PAGE_ALT
Wichert Akkerman8829a551999-06-11 13:18:40 +00001114 { SGI_NUMA_MIGR_PAGE_ALT,"SGI_NUMA_MIGR_PAGE_ALT"},
1115#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001116#ifdef SGI_KAIO_USERINIT
Wichert Akkerman8829a551999-06-11 13:18:40 +00001117 { SGI_KAIO_USERINIT, "SGI_KAIO_USERINIT" },
1118#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001119#ifdef SGI_KAIO_READ
Wichert Akkerman8829a551999-06-11 13:18:40 +00001120 { SGI_KAIO_READ, "SGI_KAIO_READ" },
1121#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001122#ifdef SGI_KAIO_WRITE
Wichert Akkerman8829a551999-06-11 13:18:40 +00001123 { SGI_KAIO_WRITE, "SGI_KAIO_WRITE" },
1124#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001125#ifdef SGI_KAIO_SUSPEND
Wichert Akkerman8829a551999-06-11 13:18:40 +00001126 { SGI_KAIO_SUSPEND, "SGI_KAIO_SUSPEND" },
1127#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001128#ifdef SGI_KAIO_STATS
Wichert Akkerman8829a551999-06-11 13:18:40 +00001129 { SGI_KAIO_STATS, "SGI_KAIO_STATS" },
1130#endif
Roland McGrathced50da2004-08-31 06:48:46 +00001131#ifdef SGI_INITIAL_PT_SPROC
Wichert Akkerman8829a551999-06-11 13:18:40 +00001132 { SGI_INITIAL_PT_SPROC, "SGI_INITIAL_PT_SPROC" },
1133#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001134 { 0, NULL },
1135};
1136
1137int
1138sys_syssgi(tcp)
1139struct tcb *tcp;
1140{
1141 int i;
1142
1143 if (entering(tcp)) {
1144 printxval(syssgi_options, tcp->u_arg[0], "SGI_???");
1145 switch (tcp->u_arg[0]) {
1146 default:
1147 for (i = 1; i < tcp->u_nargs; i++)
1148 tprintf(", %#lx", tcp->u_arg[i]);
1149 break;
1150 }
1151 }
1152 return 0;
1153}
1154
1155#include <sys/types.h>
1156#include <rpc/rpc.h>
1157struct cred;
1158struct uio;
1159#include <sys/fsid.h>
1160#include <sys/vnode.h>
1161#include <sys/fs/nfs.h>
1162#include <sys/fs/nfs_clnt.h>
1163
Roland McGrathd9f816f2004-09-04 03:39:20 +00001164static const struct xlat mount_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001165 { MS_RDONLY, "MS_RDONLY" },
1166 { MS_FSS, "MS_FSS" },
1167 { MS_DATA, "MS_DATA" },
1168 { MS_NOSUID, "MS_NOSUID" },
1169 { MS_REMOUNT, "MS_REMOUNT" },
1170 { MS_NOTRUNC, "MS_NOTRUNC" },
1171 { MS_GRPID, "MS_GRPID" },
1172 { MS_NODEV, "MS_NODEV" },
1173 { MS_BEFORE, "MS_BEFORE" },
1174 { MS_AFTER, "MS_AFTER" },
1175 { 0, NULL },
1176};
1177
Roland McGrathd9f816f2004-09-04 03:39:20 +00001178static const struct xlat nfs_flags[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001179 { NFSMNT_SOFT, "NFSMNT_SOFT" },
1180 { NFSMNT_WSIZE, "NFSMNT_WSIZE" },
1181 { NFSMNT_RSIZE, "NFSMNT_RSIZE" },
1182 { NFSMNT_TIMEO, "NFSMNT_TIMEO" },
1183 { NFSMNT_RETRANS, "NFSMNT_RETRANS" },
1184 { NFSMNT_HOSTNAME, "NFSMNT_HOSTNAME" },
Wichert Akkerman8829a551999-06-11 13:18:40 +00001185#ifdef NFSMNT_NOINT /* IRIX 6 */
1186 { NFSMNT_NOINT, "NFSMNT_NOINT" },
1187#endif
1188#ifdef NFSMNT_INT /* IRIX 5 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001189 { NFSMNT_INT, "NFSMNT_INT" },
Wichert Akkerman8829a551999-06-11 13:18:40 +00001190#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001191 { NFSMNT_NOAC, "NFSMNT_NOAC" },
1192 { NFSMNT_ACREGMIN, "NFSMNT_ACREGMIN" },
1193 { NFSMNT_ACREGMAX, "NFSMNT_ACREGMAX" },
1194 { NFSMNT_ACDIRMIN, "NFSMNT_ACDIRMIN" },
1195 { NFSMNT_ACDIRMAX, "NFSMNT_ACDIRMAX" },
1196 { NFSMNT_PRIVATE, "NFSMNT_PRIVATE" },
1197 { NFSMNT_SYMTTL, "NFSMNT_SYMTTL" },
1198 { NFSMNT_LOOPBACK, "NFSMNT_LOOPBACK" },
1199 { NFSMNT_BASETYPE, "NFSMNT_BASETYPE" },
1200 { NFSMNT_NAMEMAX, "NFSMNT_NAMEMAX" },
Wichert Akkerman8829a551999-06-11 13:18:40 +00001201#ifdef NFSMNT_SHORTUID /* IRIX 6 */
1202 { NFSMNT_SHORTUID, "NFSMNT_SHORTUID" },
1203#endif
1204#ifdef NFSMNT_ASYNCNLM /* IRIX 6 */
1205 { NFSMNT_ASYNCNLM, "NFSMNT_ASYNCNLM" },
1206#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001207 { 0, NULL },
1208};
1209
1210int
1211sys_mount(tcp)
1212struct tcb *tcp;
1213{
1214 if (entering(tcp)) {
1215 printpath(tcp, tcp->u_arg[0]);
1216 tprintf(", ");
1217 printpath(tcp, tcp->u_arg[1]);
1218 tprintf(", ");
1219 printflags(mount_flags, tcp->u_arg[2]);
1220 if (tcp->u_arg[2] & (MS_FSS | MS_DATA)) {
1221 tprintf(", ");
1222 tprintf("%ld", tcp->u_arg[3]);
1223 }
1224 if (tcp->u_arg[2] & MS_DATA) {
1225 int nfs_type = sysfs(GETFSIND, FSID_NFS);
1226
1227 tprintf(", ");
1228 if (tcp->u_arg[3] == nfs_type) {
1229 struct nfs_args args;
1230 if (umove(tcp, tcp->u_arg[4], &args) < 0)
1231 tprintf("%#lx", tcp->u_arg[4]);
1232 else {
1233 tprintf("addr=");
1234 printsock(tcp, (int) args.addr);
1235 tprintf(", flags=");
1236 if (!printflags(nfs_flags, args.flags))
1237 tprintf("NFSMNT_???");
1238 tprintf(", hostname=");
1239 printstr(tcp, (int) args.hostname, -1);
1240 tprintf(", ...}");
1241 }
1242 }
1243 else
1244 tprintf("%#lx", tcp->u_arg[4]);
1245 tprintf(", %ld", tcp->u_arg[5]);
1246 }
1247 }
1248 return 0;
1249}
1250
1251#else /* !MIPS */
1252
Wichert Akkerman3377df71999-11-26 13:14:41 +00001253#if UNIXWARE
1254
1255#include <sys/types.h>
1256#include <sys/fstyp.h>
1257#include <sys/mount.h>
1258#include <sys/xti.h>
1259
1260#define NFSCLIENT 1
1261#include <nfs/mount.h>
1262
1263#include <sys/fs/vx_ioctl.h>
1264
Roland McGrathd9f816f2004-09-04 03:39:20 +00001265static const struct xlat mount_flags[] = {
Wichert Akkerman3377df71999-11-26 13:14:41 +00001266 { MS_RDONLY, "MS_RDONLY" },
1267 { MS_FSS, "MS_FSS" },
1268 { MS_DATA, "MS_DATA" },
1269 { MS_HADBAD, "MS_HADBAD" },
1270 { MS_NOSUID, "MS_NOSUID" },
1271 { MS_REMOUNT, "MS_REMOUNT" },
1272 { MS_NOTRUNC, "MS_NOTRUNC" },
1273 { MS_SOFTMNT, "MS_SOFTMNT" },
1274 { MS_SYSSPACE, "MS_SYSSPACE" },
1275 { 0, NULL },
1276};
1277
1278#ifdef VX_MS_MASK
Roland McGrathd9f816f2004-09-04 03:39:20 +00001279static const struct xlat vxfs_flags[] = {
Wichert Akkerman3377df71999-11-26 13:14:41 +00001280 { VX_MS_NOLOG, "VX_MS_NOLOG" },
1281 { VX_MS_BLKCLEAR, "VX_MS_BLKCLEAR" },
1282 { VX_MS_SNAPSHOT, "VX_MS_SNAPSHOT" },
1283 { VX_MS_NODATAINLOG, "VX_MS_NODATAINLOG" },
1284 { VX_MS_DELAYLOG, "VX_MS_DELAYLOG" },
1285 { VX_MS_TMPLOG, "VX_MS_TMPLOG" },
1286 { VX_MS_FILESET, "VX_MS_FILESET" },
1287
1288 { VX_MS_CACHE_DIRECT, "VX_MS_CACHE_DIRECT" },
1289 { VX_MS_CACHE_DSYNC, "VX_MS_CACHE_DSYNC" },
1290 { VX_MS_CACHE_CLOSESYNC,"VX_MS_CACHE_CLOSESYNC" },
1291 { VX_MS_CACHE_TMPCACHE, "VX_MS_CACHE_TMPCACHE" },
1292
1293 { VX_MS_OSYNC_DIRECT, "VX_MS_OSYNC_DIRECT" },
1294 { VX_MS_OSYNC_DSYNC, "VX_MS_OSYNC_DSYNC" },
1295 { VX_MS_OSYNC_CLOSESYNC,"VX_MS_OSYNC_CLOSESYNC" },
1296 { VX_MS_OSYNC_DELAY, "VX_MS_OSYNC_DELAY" },
1297 { 0, NULL, },
1298};
1299#endif
1300
Roland McGrathd9f816f2004-09-04 03:39:20 +00001301static const struct xlat nfs_flags[] = {
Wichert Akkerman3377df71999-11-26 13:14:41 +00001302 { NFSMNT_SOFT, "NFSMNT_SOFT" },
1303 { NFSMNT_WSIZE, "NFSMNT_WSIZE" },
1304 { NFSMNT_RSIZE, "NFSMNT_RSIZE" },
1305 { NFSMNT_TIMEO, "NFSMNT_TIMEO" },
1306 { NFSMNT_RETRANS, "NFSMNT_RETRANS" },
1307 { NFSMNT_HOSTNAME, "NFSMNT_HOSTNAME" },
1308 { NFSMNT_INT, "NFSMNT_INT" },
1309 { NFSMNT_NOAC, "NFSMNT_NOAC" },
1310 { NFSMNT_ACREGMIN, "NFSMNT_ACREGMIN" },
1311 { NFSMNT_ACREGMAX, "NFSMNT_ACREGMAX" },
1312 { NFSMNT_ACDIRMIN, "NFSMNT_ACDIRMIN" },
1313 { NFSMNT_ACDIRMAX, "NFSMNT_ACDIRMAX" },
1314 { NFSMNT_SECURE, "NFSMNT_SECURE" },
1315 { NFSMNT_NOCTO, "NFSMNT_NOCTO" },
1316 { NFSMNT_GRPID, "NFSMNT_GRPID" },
1317 { NFSMNT_RPCTIMESYNC, "NFSMNT_RPCTIMESYNC" },
1318 { NFSMNT_LWPSMAX, "NFSMNT_LWPSMAX" },
1319 { 0, NULL },
1320};
1321
1322int
1323sys_mount(tcp)
1324struct tcb *tcp;
1325{
1326 if (entering(tcp)) {
1327 char fstyp [FSTYPSZ];
1328 printpath(tcp, tcp->u_arg[0]);
1329 tprintf(", ");
1330 printpath(tcp, tcp->u_arg[1]);
1331 tprintf(", ");
1332 printflags(mount_flags, tcp->u_arg[2]);
1333 /* The doc sez that the file system type is given as a
1334 fsindex, and we should use sysfs to work out the name.
1335 This appears to be untrue for UW. Maybe it's untrue
1336 for all SVR4's? */
1337 if (tcp->u_arg[2] & (MS_FSS | MS_DATA)) {
1338 if (umovestr(tcp, tcp->u_arg[3], FSTYPSZ, fstyp) < 0) {
1339 *fstyp = 0;
1340 tprintf(", %ld", tcp->u_arg[3]);
1341 }
1342 else
1343 tprintf(", \"%s\"", fstyp);
1344 }
1345 if (tcp->u_arg[2] & MS_DATA) {
1346 tprintf(", ");
1347#ifdef VX_MS_MASK
1348 /* On UW7 they don't give us the defines and structs
1349 we need to see what is going on. Bummer. */
1350 if (strcmp (fstyp, "vxfs") == 0) {
1351 struct vx_mountargs5 args;
1352 if (umove(tcp, tcp->u_arg[4], &args) < 0)
1353 tprintf("%#lx", tcp->u_arg[4]);
1354 else {
1355 tprintf("{ flags=");
1356 if (!printflags(vxfs_flags, args.mflags))
1357 tprintf("0x%08x", args.mflags);
1358 if (args.mflags & VX_MS_SNAPSHOT) {
1359 tprintf (", snapof=");
1360 printstr (tcp,
Roland McGrathced50da2004-08-31 06:48:46 +00001361 (long) args.primaryspec,
Wichert Akkerman3377df71999-11-26 13:14:41 +00001362 -1);
1363 if (args.snapsize > 0)
1364 tprintf (", snapsize=%ld", args.snapsize);
1365 }
1366 tprintf(" }");
1367 }
1368 }
1369 else
1370#endif
1371 if (strcmp (fstyp, "specfs") == 0) {
1372 tprintf ("dev=");
1373 printstr (tcp, tcp->u_arg[4], -1);
1374 }
1375 else
1376 if (strcmp (fstyp, "nfs") == 0) {
1377 struct nfs_args args;
1378 if (umove(tcp, tcp->u_arg[4], &args) < 0)
1379 tprintf("%#lx", tcp->u_arg[4]);
1380 else {
1381 struct netbuf addr;
1382 tprintf("{ addr=");
1383 if (umove (tcp, (int) args.addr, &addr) < 0) {
1384 tprintf ("%#lx", (long) args.addr);
1385 }
1386 else {
1387 printsock(tcp, (int) addr.buf, addr.len);
1388 }
1389 tprintf(", flags=");
1390 if (!printflags(nfs_flags, args.flags))
1391 tprintf("NFSMNT_???");
1392 tprintf(", hostname=");
1393 printstr(tcp, (int) args.hostname, -1);
1394 tprintf(", ...}");
1395 }
1396 }
1397 else
1398 tprintf("%#lx", tcp->u_arg[4]);
1399 tprintf(", %ld", tcp->u_arg[5]);
1400 }
1401 }
1402 return 0;
1403}
1404
1405#else /* !UNIXWARE */
1406
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001407int
1408sys_mount(tcp)
1409struct tcb *tcp;
1410{
1411 if (entering(tcp)) {
1412 printpath(tcp, tcp->u_arg[0]);
1413 tprintf(", ");
1414 printpath(tcp, tcp->u_arg[1]);
1415 tprintf(", ...");
1416 }
1417 return 0;
1418}
Wichert Akkermanea78f0f1999-11-29 15:34:02 +00001419#endif /* !UNIXWARE */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001420
1421#endif /* !MIPS */
1422
1423#endif /* SVR4 */
1424
Nate Sammons8d5860c1999-07-03 18:53:05 +00001425#ifdef SYS_capget
Wichert Akkermanc7926982000-04-10 22:22:31 +00001426
Roland McGrathd9f816f2004-09-04 03:39:20 +00001427static const struct xlat capabilities[] = {
Wichert Akkermanc7926982000-04-10 22:22:31 +00001428 { 1<<CAP_CHOWN, "CAP_CHOWN" },
1429 { 1<<CAP_DAC_OVERRIDE, "CAP_DAC_OVERRIDE"},
1430 { 1<<CAP_DAC_READ_SEARCH,"CAP_DAC_READ_SEARCH"},
1431 { 1<<CAP_FOWNER, "CAP_FOWNER" },
1432 { 1<<CAP_FSETID, "CAP_FSETID" },
1433 { 1<<CAP_KILL, "CAP_KILL" },
1434 { 1<<CAP_SETGID, "CAP_SETGID" },
1435 { 1<<CAP_SETUID, "CAP_SETUID" },
1436 { 1<<CAP_SETPCAP, "CAP_SETPCAP" },
1437 { 1<<CAP_LINUX_IMMUTABLE,"CAP_LINUX_IMMUTABLE"},
1438 { 1<<CAP_NET_BIND_SERVICE,"CAP_NET_BIND_SERVICE"},
1439 { 1<<CAP_NET_BROADCAST, "CAP_NET_BROADCAST"},
1440 { 1<<CAP_NET_ADMIN, "CAP_NET_ADMIN" },
1441 { 1<<CAP_NET_RAW, "CAP_NET_RAW" },
1442 { 1<<CAP_IPC_LOCK, "CAP_IPC_LOCK" },
1443 { 1<<CAP_IPC_OWNER, "CAP_IPC_OWNER" },
1444 { 1<<CAP_SYS_MODULE, "CAP_SYS_MODULE"},
1445 { 1<<CAP_SYS_RAWIO, "CAP_SYS_RAWIO" },
1446 { 1<<CAP_SYS_CHROOT, "CAP_SYS_CHROOT"},
1447 { 1<<CAP_SYS_PTRACE, "CAP_SYS_PTRACE"},
1448 { 1<<CAP_SYS_PACCT, "CAP_SYS_PACCT" },
1449 { 1<<CAP_SYS_ADMIN, "CAP_SYS_ADMIN" },
1450 { 1<<CAP_SYS_BOOT, "CAP_SYS_BOOT" },
1451 { 1<<CAP_SYS_NICE, "CAP_SYS_NICE" },
1452 { 1<<CAP_SYS_RESOURCE, "CAP_SYS_RESOURCE"},
1453 { 1<<CAP_SYS_TIME, "CAP_SYS_TIME" },
1454 { 1<<CAP_SYS_TTY_CONFIG,"CAP_SYS_TTY_CONFIG"},
1455 { 0, NULL },
1456};
1457
1458
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001459int
1460sys_capget(tcp)
1461struct tcb *tcp;
1462{
Wichert Akkermanc7926982000-04-10 22:22:31 +00001463 static cap_user_header_t arg0 = NULL;
1464 static cap_user_data_t arg1 = NULL;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001465
1466 if(!entering(tcp)) {
Wichert Akkermanc7926982000-04-10 22:22:31 +00001467 if (!arg0) {
1468 if ((arg0 = malloc(sizeof(*arg0))) == NULL) {
1469 fprintf(stderr, "sys_capget: no memory\n");
1470 tprintf("%#lx, %#lx", tcp->u_arg[0], tcp->u_arg[1]);
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001471 return -1;
Wichert Akkermanc7926982000-04-10 22:22:31 +00001472 }
1473 }
1474 if (!arg1) {
1475 if ((arg1 = malloc(sizeof(*arg1))) == NULL) {
1476 fprintf(stderr, "sys_capget: no memory\n");
1477 tprintf("%#lx, %#lx", tcp->u_arg[0], tcp->u_arg[1]);
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001478 return -1;
Wichert Akkermanc7926982000-04-10 22:22:31 +00001479 }
1480 }
1481
1482 if (!tcp->u_arg[0])
1483 tprintf("NULL");
1484 else if (!verbose(tcp))
1485 tprintf("%#lx", tcp->u_arg[0]);
1486 else if (umoven(tcp, tcp->u_arg[0], sizeof(*arg0), (char *) arg0) < 0)
1487 tprintf("???");
1488 else {
1489 tprintf("%#x, %d", arg0->version, arg0->pid);
1490 }
1491 tprintf(", ");
1492 if (!tcp->u_arg[1])
1493 tprintf("NULL");
1494 else if (!verbose(tcp))
1495 tprintf("%#lx", tcp->u_arg[1]);
1496 else if (umoven(tcp, tcp->u_arg[1], sizeof(*arg1), (char *) arg1) < 0)
1497 tprintf("???");
1498 else {
1499 tprintf("{");
1500 printflags(capabilities, arg1->effective);
1501 tprintf(", ");
1502 printflags(capabilities, arg1->permitted);
1503 tprintf(", ");
1504 printflags(capabilities, arg1->inheritable);
1505 tprintf("}");
Roland McGrathced50da2004-08-31 06:48:46 +00001506 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001507 }
1508 return 0;
1509}
1510
1511int
1512sys_capset(tcp)
1513struct tcb *tcp;
1514{
Wichert Akkermanc7926982000-04-10 22:22:31 +00001515 static cap_user_header_t arg0 = NULL;
1516 static cap_user_data_t arg1 = NULL;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001517
Wichert Akkermanc7926982000-04-10 22:22:31 +00001518 if(entering(tcp)) {
1519 if (!arg0) {
1520 if ((arg0 = malloc(sizeof(*arg0))) == NULL) {
1521 fprintf(stderr, "sys_capset: no memory\n");
1522 tprintf("%#lx, %#lx", tcp->u_arg[0], tcp->u_arg[1]);
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001523 return -1;
Wichert Akkermanc7926982000-04-10 22:22:31 +00001524 }
1525 }
1526 if (!arg1) {
1527 if ((arg1 = malloc(sizeof(*arg1))) == NULL) {
1528 fprintf(stderr, "sys_capset: no memory\n");
1529 tprintf("%#lx, %#lx", tcp->u_arg[0], tcp->u_arg[1]);
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001530 return -1;
Wichert Akkermanc7926982000-04-10 22:22:31 +00001531 }
1532 }
1533
1534 if (!tcp->u_arg[0])
1535 tprintf("NULL");
1536 else if (!verbose(tcp))
1537 tprintf("%#lx", tcp->u_arg[0]);
1538 else if (umoven(tcp, tcp->u_arg[0], sizeof(*arg0), (char *) arg0) < 0)
1539 tprintf("???");
1540 else {
1541 tprintf("%#x, %d", arg0->version, arg0->pid);
1542 }
1543 tprintf(", ");
1544 if (!tcp->u_arg[1])
1545 tprintf("NULL");
1546 else if (!verbose(tcp))
1547 tprintf("%#lx", tcp->u_arg[1]);
1548 else if (umoven(tcp, tcp->u_arg[1], sizeof(*arg1), (char *) arg1) < 0)
1549 tprintf("???");
1550 else {
1551 tprintf("{");
1552 printflags(capabilities, arg1->effective);
1553 tprintf(", ");
1554 printflags(capabilities, arg1->permitted);
1555 tprintf(", ");
1556 printflags(capabilities, arg1->inheritable);
1557 tprintf("}");
Roland McGrathced50da2004-08-31 06:48:46 +00001558 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001559 }
1560 return 0;
1561}
1562
1563#else
1564
1565int sys_capget(tcp)
1566struct tcb *tcp;
1567{
1568 return printargs(tcp);
1569}
1570
1571int sys_capset(tcp)
1572struct tcb *tcp;
1573{
1574 return printargs(tcp);
1575}
1576
1577#endif
1578
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001579#ifdef LINUX
Roland McGrathd9f816f2004-09-04 03:39:20 +00001580static const struct xlat sysctl_root[] = {
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001581 { CTL_KERN, "CTL_KERN" },
1582 { CTL_VM, "CTL_VM" },
1583 { CTL_NET, "CTL_NET" },
1584 { CTL_PROC, "CTL_PROC" },
1585 { CTL_FS, "CTL_FS" },
1586 { CTL_DEBUG, "CTL_DEBUG" },
1587 { CTL_DEV, "CTL_DEV" },
1588 { 0, NULL }
1589};
1590
Roland McGrathd9f816f2004-09-04 03:39:20 +00001591static const struct xlat sysctl_kern[] = {
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001592 { KERN_OSTYPE, "KERN_OSTYPE" },
1593 { KERN_OSRELEASE, "KERN_OSRELEASE" },
1594 { KERN_OSREV, "KERN_OSREV" },
1595 { KERN_VERSION, "KERN_VERSION" },
1596 { KERN_SECUREMASK, "KERN_SECUREMASK" },
1597 { KERN_PROF, "KERN_PROF" },
1598 { KERN_NODENAME, "KERN_NODENAME" },
1599 { KERN_DOMAINNAME, "KERN_DOMAINNAME" },
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001600#ifdef KERN_SECURELVL
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001601 { KERN_SECURELVL, "KERN_SECURELVL" },
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001602#endif
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001603 { KERN_PANIC, "KERN_PANIC" },
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001604#ifdef KERN_REALROOTDEV
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001605 { KERN_REALROOTDEV, "KERN_REALROOTDEV" },
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001606#endif
1607#ifdef KERN_JAVA_INTERPRETER
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001608 { KERN_JAVA_INTERPRETER, "KERN_JAVA_INTERPRETER" },
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001609#endif
1610#ifdef KERN_JAVA_APPLETVIEWER
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001611 { KERN_JAVA_APPLETVIEWER, "KERN_JAVA_APPLETVIEWER" },
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001612#endif
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001613 { KERN_SPARC_REBOOT, "KERN_SPARC_REBOOT" },
1614 { KERN_CTLALTDEL, "KERN_CTLALTDEL" },
1615 { KERN_PRINTK, "KERN_PRINTK" },
1616 { KERN_NAMETRANS, "KERN_NAMETRANS" },
1617 { KERN_PPC_HTABRECLAIM, "KERN_PPC_HTABRECLAIM" },
1618 { KERN_PPC_ZEROPAGED, "KERN_PPC_ZEROPAGED" },
1619 { KERN_PPC_POWERSAVE_NAP, "KERN_PPC_POWERSAVE_NAP" },
1620 { KERN_MODPROBE, "KERN_MODPROBE" },
1621 { KERN_SG_BIG_BUFF, "KERN_SG_BIG_BUFF" },
1622 { KERN_ACCT, "KERN_ACCT" },
1623 { KERN_PPC_L2CR, "KERN_PPC_L2CR" },
1624 { KERN_RTSIGNR, "KERN_RTSIGNR" },
1625 { KERN_RTSIGMAX, "KERN_RTSIGMAX" },
1626 { KERN_SHMMAX, "KERN_SHMMAX" },
1627 { KERN_MSGMAX, "KERN_MSGMAX" },
1628 { KERN_MSGMNB, "KERN_MSGMNB" },
1629 { KERN_MSGPOOL, "KERN_MSGPOOL" },
1630 { 0, NULL }
1631};
1632
Roland McGrathd9f816f2004-09-04 03:39:20 +00001633static const struct xlat sysctl_vm[] = {
Roland McGratha796fd02004-03-01 22:10:54 +00001634#ifdef VM_SWAPCTL
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001635 { VM_SWAPCTL, "VM_SWAPCTL" },
Roland McGratha796fd02004-03-01 22:10:54 +00001636#endif
1637#ifdef VM_UNUSED1
1638 { VM_UNUSED1, "VM_UNUSED1" },
1639#endif
1640#ifdef VM_SWAPOUT
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001641 { VM_SWAPOUT, "VM_SWAPOUT" },
Roland McGratha796fd02004-03-01 22:10:54 +00001642#endif
1643#ifdef VM_UNUSED2
1644 { VM_UNUSED2, "VM_UNUSED2" },
1645#endif
1646#ifdef VM_FREEPG
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001647 { VM_FREEPG, "VM_FREEPG" },
Roland McGratha796fd02004-03-01 22:10:54 +00001648#endif
1649#ifdef VM_UNUSED3
1650 { VM_UNUSED3, "VM_UNUSED3" },
1651#endif
1652#ifdef VM_BDFLUSH
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001653 { VM_BDFLUSH, "VM_BDFLUSH" },
Roland McGratha796fd02004-03-01 22:10:54 +00001654#endif
1655#ifdef VM_UNUSED4
1656 { VM_UNUSED4, "VM_UNUSED4" },
1657#endif
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001658 { VM_OVERCOMMIT_MEMORY, "VM_OVERCOMMIT_MEMORY" },
Roland McGratha796fd02004-03-01 22:10:54 +00001659#ifdef VM_BUFFERMEM
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001660 { VM_BUFFERMEM, "VM_BUFFERMEM" },
Roland McGratha796fd02004-03-01 22:10:54 +00001661#endif
1662#ifdef VM_UNUSED5
1663 { VM_UNUSED5, "VM_UNUSED5" },
1664#endif
1665#ifdef VM_PAGECACHE
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001666 { VM_PAGECACHE, "VM_PAGECACHE" },
Roland McGratha796fd02004-03-01 22:10:54 +00001667#endif
1668#ifdef VM_UNUSED7
1669 { VM_UNUSED7, "VM_UNUSED7" },
1670#endif
1671#ifdef VM_PAGERDAEMON
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001672 { VM_PAGERDAEMON, "VM_PAGERDAEMON" },
Roland McGratha796fd02004-03-01 22:10:54 +00001673#endif
1674#ifdef VM_UNUSED8
1675 { VM_UNUSED8, "VM_UNUSED8" },
1676#endif
1677#ifdef VM_PGT_CACHE
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001678 { VM_PGT_CACHE, "VM_PGT_CACHE" },
Roland McGratha796fd02004-03-01 22:10:54 +00001679#endif
1680#ifdef VM_UNUSED9
1681 { VM_UNUSED9, "VM_UNUSED9" },
1682#endif
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001683 { VM_PAGE_CLUSTER, "VM_PAGE_CLUSTER" },
1684 { 0, NULL },
1685};
1686
Roland McGrathd9f816f2004-09-04 03:39:20 +00001687static const struct xlat sysctl_net[] = {
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001688 { NET_CORE, "NET_CORE" },
1689 { NET_ETHER, "NET_ETHER" },
1690 { NET_802, "NET_802" },
1691 { NET_UNIX, "NET_UNIX" },
1692 { NET_IPV4, "NET_IPV4" },
1693 { NET_IPX, "NET_IPX" },
1694 { NET_ATALK, "NET_ATALK" },
1695 { NET_NETROM, "NET_NETROM" },
1696 { NET_AX25, "NET_AX25" },
1697 { NET_BRIDGE, "NET_BRIDGE" },
1698 { NET_ROSE, "NET_ROSE" },
1699 { NET_IPV6, "NET_IPV6" },
1700 { NET_X25, "NET_X25" },
1701 { NET_TR, "NET_TR" },
1702 { NET_DECNET, "NET_DECNET" },
1703 { 0, NULL }
1704};
1705
Roland McGrathd9f816f2004-09-04 03:39:20 +00001706static const struct xlat sysctl_net_core[] = {
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001707 { NET_CORE_WMEM_MAX, "NET_CORE_WMEM_MAX" },
1708 { NET_CORE_RMEM_MAX, "NET_CORE_RMEM_MAX" },
1709 { NET_CORE_WMEM_DEFAULT, "NET_CORE_WMEM_DEFAULT" },
1710 { NET_CORE_RMEM_DEFAULT, "NET_CORE_RMEM_DEFAULT" },
1711 { NET_CORE_MAX_BACKLOG, "NET_CORE_MAX_BACKLOG" },
1712 { NET_CORE_FASTROUTE, "NET_CORE_FASTROUTE" },
1713 { NET_CORE_MSG_COST, "NET_CORE_MSG_COST" },
1714 { NET_CORE_MSG_BURST, "NET_CORE_MSG_BURST" },
1715 { NET_CORE_OPTMEM_MAX, "NET_CORE_OPTMEM_MAX" },
1716 { 0, NULL }
1717};
1718
Roland McGrathd9f816f2004-09-04 03:39:20 +00001719static const struct xlat sysctl_net_unix[] = {
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001720 { NET_UNIX_DESTROY_DELAY, "NET_UNIX_DESTROY_DELAY" },
1721 { NET_UNIX_DELETE_DELAY, "NET_UNIX_DELETE_DELAY" },
1722 { 0, NULL }
1723};
1724
Roland McGrathd9f816f2004-09-04 03:39:20 +00001725static const struct xlat sysctl_net_ipv4[] = {
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001726 { NET_IPV4_FORWARD, "NET_IPV4_FORWARD" },
1727 { NET_IPV4_DYNADDR, "NET_IPV4_DYNADDR" },
1728 { NET_IPV4_CONF, "NET_IPV4_CONF" },
1729 { NET_IPV4_NEIGH, "NET_IPV4_NEIGH" },
1730 { NET_IPV4_ROUTE, "NET_IPV4_ROUTE" },
1731 { NET_IPV4_FIB_HASH, "NET_IPV4_FIB_HASH" },
1732 { NET_IPV4_TCP_TIMESTAMPS, "NET_IPV4_TCP_TIMESTAMPS" },
1733 { NET_IPV4_TCP_WINDOW_SCALING, "NET_IPV4_TCP_WINDOW_SCALING" },
1734 { NET_IPV4_TCP_SACK, "NET_IPV4_TCP_SACK" },
1735 { NET_IPV4_TCP_RETRANS_COLLAPSE, "NET_IPV4_TCP_RETRANS_COLLAPSE" },
1736 { NET_IPV4_DEFAULT_TTL, "NET_IPV4_DEFAULT_TTL" },
1737 { NET_IPV4_AUTOCONFIG, "NET_IPV4_AUTOCONFIG" },
1738 { NET_IPV4_NO_PMTU_DISC, "NET_IPV4_NO_PMTU_DISC" },
1739 { NET_IPV4_TCP_SYN_RETRIES, "NET_IPV4_TCP_SYN_RETRIES" },
1740 { NET_IPV4_IPFRAG_HIGH_THRESH, "NET_IPV4_IPFRAG_HIGH_THRESH" },
1741 { NET_IPV4_IPFRAG_LOW_THRESH, "NET_IPV4_IPFRAG_LOW_THRESH" },
1742 { NET_IPV4_IPFRAG_TIME, "NET_IPV4_IPFRAG_TIME" },
1743 { NET_IPV4_TCP_MAX_KA_PROBES, "NET_IPV4_TCP_MAX_KA_PROBES" },
1744 { NET_IPV4_TCP_KEEPALIVE_TIME, "NET_IPV4_TCP_KEEPALIVE_TIME" },
1745 { NET_IPV4_TCP_KEEPALIVE_PROBES, "NET_IPV4_TCP_KEEPALIVE_PROBES" },
1746 { NET_IPV4_TCP_RETRIES1, "NET_IPV4_TCP_RETRIES1" },
1747 { NET_IPV4_TCP_RETRIES2, "NET_IPV4_TCP_RETRIES2" },
1748 { NET_IPV4_TCP_FIN_TIMEOUT, "NET_IPV4_TCP_FIN_TIMEOUT" },
1749 { NET_IPV4_IP_MASQ_DEBUG, "NET_IPV4_IP_MASQ_DEBUG" },
1750 { NET_TCP_SYNCOOKIES, "NET_TCP_SYNCOOKIES" },
1751 { NET_TCP_STDURG, "NET_TCP_STDURG" },
1752 { NET_TCP_RFC1337, "NET_TCP_RFC1337" },
1753 { NET_TCP_SYN_TAILDROP, "NET_TCP_SYN_TAILDROP" },
1754 { NET_TCP_MAX_SYN_BACKLOG, "NET_TCP_MAX_SYN_BACKLOG" },
1755 { NET_IPV4_LOCAL_PORT_RANGE, "NET_IPV4_LOCAL_PORT_RANGE" },
1756 { NET_IPV4_ICMP_ECHO_IGNORE_ALL, "NET_IPV4_ICMP_ECHO_IGNORE_ALL" },
1757 { NET_IPV4_ICMP_ECHO_IGNORE_BROADCASTS, "NET_IPV4_ICMP_ECHO_IGNORE_BROADCASTS" },
1758 { NET_IPV4_ICMP_SOURCEQUENCH_RATE, "NET_IPV4_ICMP_SOURCEQUENCH_RATE" },
1759 { NET_IPV4_ICMP_DESTUNREACH_RATE, "NET_IPV4_ICMP_DESTUNREACH_RATE" },
1760 { NET_IPV4_ICMP_TIMEEXCEED_RATE, "NET_IPV4_ICMP_TIMEEXCEED_RATE" },
1761 { NET_IPV4_ICMP_PARAMPROB_RATE, "NET_IPV4_ICMP_PARAMPROB_RATE" },
1762 { NET_IPV4_ICMP_ECHOREPLY_RATE, "NET_IPV4_ICMP_ECHOREPLY_RATE" },
1763 { NET_IPV4_ICMP_IGNORE_BOGUS_ERROR_RESPONSES, "NET_IPV4_ICMP_IGNORE_BOGUS_ERROR_RESPONSES" },
1764 { NET_IPV4_IGMP_MAX_MEMBERSHIPS, "NET_IPV4_IGMP_MAX_MEMBERSHIPS" },
1765 { 0, NULL }
1766};
1767
Roland McGrathd9f816f2004-09-04 03:39:20 +00001768static const struct xlat sysctl_net_ipv4_route[] = {
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001769 { NET_IPV4_ROUTE_FLUSH, "NET_IPV4_ROUTE_FLUSH" },
1770 { NET_IPV4_ROUTE_MIN_DELAY, "NET_IPV4_ROUTE_MIN_DELAY" },
1771 { NET_IPV4_ROUTE_MAX_DELAY, "NET_IPV4_ROUTE_MAX_DELAY" },
1772 { NET_IPV4_ROUTE_GC_THRESH, "NET_IPV4_ROUTE_GC_THRESH" },
1773 { NET_IPV4_ROUTE_MAX_SIZE, "NET_IPV4_ROUTE_MAX_SIZE" },
1774 { NET_IPV4_ROUTE_GC_MIN_INTERVAL, "NET_IPV4_ROUTE_GC_MIN_INTERVAL" },
1775 { NET_IPV4_ROUTE_GC_TIMEOUT, "NET_IPV4_ROUTE_GC_TIMEOUT" },
1776 { NET_IPV4_ROUTE_GC_INTERVAL, "NET_IPV4_ROUTE_GC_INTERVAL" },
1777 { NET_IPV4_ROUTE_REDIRECT_LOAD, "NET_IPV4_ROUTE_REDIRECT_LOAD" },
1778 { NET_IPV4_ROUTE_REDIRECT_NUMBER, "NET_IPV4_ROUTE_REDIRECT_NUMBER" },
1779 { NET_IPV4_ROUTE_REDIRECT_SILENCE, "NET_IPV4_ROUTE_REDIRECT_SILENCE" },
1780 { NET_IPV4_ROUTE_ERROR_COST, "NET_IPV4_ROUTE_ERROR_COST" },
1781 { NET_IPV4_ROUTE_ERROR_BURST, "NET_IPV4_ROUTE_ERROR_BURST" },
1782 { NET_IPV4_ROUTE_GC_ELASTICITY, "NET_IPV4_ROUTE_GC_ELASTICITY" },
1783 { 0, NULL }
1784};
1785
Roland McGrathd9f816f2004-09-04 03:39:20 +00001786static const struct xlat sysctl_net_ipv4_conf[] = {
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001787 { NET_IPV4_CONF_FORWARDING, "NET_IPV4_CONF_FORWARDING" },
1788 { NET_IPV4_CONF_MC_FORWARDING, "NET_IPV4_CONF_MC_FORWARDING" },
1789 { NET_IPV4_CONF_PROXY_ARP, "NET_IPV4_CONF_PROXY_ARP" },
1790 { NET_IPV4_CONF_ACCEPT_REDIRECTS, "NET_IPV4_CONF_ACCEPT_REDIRECTS" },
1791 { NET_IPV4_CONF_SECURE_REDIRECTS, "NET_IPV4_CONF_SECURE_REDIRECTS" },
1792 { NET_IPV4_CONF_SEND_REDIRECTS, "NET_IPV4_CONF_SEND_REDIRECTS" },
1793 { NET_IPV4_CONF_SHARED_MEDIA, "NET_IPV4_CONF_SHARED_MEDIA" },
1794 { NET_IPV4_CONF_RP_FILTER, "NET_IPV4_CONF_RP_FILTER" },
1795 { NET_IPV4_CONF_ACCEPT_SOURCE_ROUTE, "NET_IPV4_CONF_ACCEPT_SOURCE_ROUTE" },
1796 { NET_IPV4_CONF_BOOTP_RELAY, "NET_IPV4_CONF_BOOTP_RELAY" },
1797 { NET_IPV4_CONF_LOG_MARTIANS, "NET_IPV4_CONF_LOG_MARTIANS" },
1798 { 0, NULL }
1799};
1800
Roland McGrathd9f816f2004-09-04 03:39:20 +00001801static const struct xlat sysctl_net_ipv6[] = {
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001802 { NET_IPV6_CONF, "NET_IPV6_CONF" },
1803 { NET_IPV6_NEIGH, "NET_IPV6_NEIGH" },
1804 { NET_IPV6_ROUTE, "NET_IPV6_ROUTE" },
1805 { 0, NULL }
1806};
1807
Roland McGrathd9f816f2004-09-04 03:39:20 +00001808static const struct xlat sysctl_net_ipv6_route[] = {
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001809 { NET_IPV6_ROUTE_FLUSH, "NET_IPV6_ROUTE_FLUSH" },
1810 { NET_IPV6_ROUTE_GC_THRESH, "NET_IPV6_ROUTE_GC_THRESH" },
1811 { NET_IPV6_ROUTE_MAX_SIZE, "NET_IPV6_ROUTE_MAX_SIZE" },
1812 { NET_IPV6_ROUTE_GC_MIN_INTERVAL, "NET_IPV6_ROUTE_GC_MIN_INTERVAL" },
1813 { NET_IPV6_ROUTE_GC_TIMEOUT, "NET_IPV6_ROUTE_GC_TIMEOUT" },
1814 { NET_IPV6_ROUTE_GC_INTERVAL, "NET_IPV6_ROUTE_GC_INTERVAL" },
1815 { NET_IPV6_ROUTE_GC_ELASTICITY, "NET_IPV6_ROUTE_GC_ELASTICITY" },
1816 { 0, NULL }
1817};
1818
1819int
1820sys_sysctl(tcp)
1821struct tcb *tcp;
1822{
1823 struct __sysctl_args info;
1824 int *name;
Roland McGrath2cbe44e2005-05-26 23:21:09 +00001825 if (umove (tcp, tcp->u_arg[0], &info) < 0)
1826 return printargs(tcp);
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001827
Roland McGrath2cbe44e2005-05-26 23:21:09 +00001828 name = malloc (sizeof (int) * info.nlen);
1829 if (name == NULL ||
1830 umoven(tcp, (unsigned long) info.name,
1831 sizeof (int) * info.nlen, (char *) name) < 0) {
1832 if (name != NULL)
1833 free(name);
1834 tprintf("{%p, %d, %p, %p, %p, %Zu}",
1835 info.name, info.nlen, info.oldval, info.oldlenp,
1836 info.newval, info.newlen);
1837 return 0;
1838 }
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001839
1840 if (entering(tcp)) {
1841 int cnt = 0;
1842
1843 tprintf("{{");
1844
1845 if (info.nlen == 0)
1846 goto out;
1847 printxval(sysctl_root, name[0], "CTL_???");
1848 ++cnt;
1849
1850 if (info.nlen == 1)
1851 goto out;
1852 switch (name[0]) {
1853 case CTL_KERN:
1854 tprintf(", ");
1855 printxval(sysctl_kern, name[1], "KERN_???");
1856 ++cnt;
1857 break;
1858 case CTL_VM:
1859 tprintf(", ");
1860 printxval(sysctl_vm, name[1], "VM_???");
1861 ++cnt;
1862 break;
1863 case CTL_NET:
1864 tprintf(", ");
1865 printxval(sysctl_net, name[1], "NET_???");
1866 ++cnt;
1867
1868 if (info.nlen == 2)
1869 goto out;
1870 switch (name[1]) {
1871 case NET_CORE:
1872 tprintf(", ");
1873 printxval(sysctl_net_core, name[2],
1874 "NET_CORE_???");
1875 break;
1876 case NET_UNIX:
1877 tprintf(", ");
1878 printxval(sysctl_net_unix, name[2],
1879 "NET_UNIX_???");
1880 break;
1881 case NET_IPV4:
1882 tprintf(", ");
1883 printxval(sysctl_net_ipv4, name[2],
1884 "NET_IPV4_???");
1885
1886 if (info.nlen == 3)
1887 goto out;
1888 switch (name[2]) {
1889 case NET_IPV4_ROUTE:
1890 tprintf(", ");
1891 printxval(sysctl_net_ipv4_route,
1892 name[3],
1893 "NET_IPV4_ROUTE_???");
1894 break;
1895 case NET_IPV4_CONF:
1896 tprintf(", ");
1897 printxval(sysctl_net_ipv4_conf,
1898 name[3],
1899 "NET_IPV4_CONF_???");
1900 break;
1901 default:
1902 goto out;
1903 }
1904 break;
1905 case NET_IPV6:
1906 tprintf(", ");
1907 printxval(sysctl_net_ipv6, name[2],
1908 "NET_IPV6_???");
1909
1910 if (info.nlen == 3)
1911 goto out;
1912 switch (name[2]) {
1913 case NET_IPV6_ROUTE:
1914 tprintf(", ");
1915 printxval(sysctl_net_ipv6_route,
1916 name[3],
1917 "NET_IPV6_ROUTE_???");
1918 break;
1919 default:
1920 goto out;
1921 }
1922 break;
1923 default:
1924 goto out;
1925 }
1926 break;
1927 default:
1928 goto out;
1929 }
1930 out:
1931 while (cnt < info.nlen)
1932 tprintf(", %x", name[cnt++]);
1933 tprintf("}, %d, ", info.nlen);
1934 } else {
1935 size_t oldlen;
1936 umove(tcp, (size_t)info.oldlenp, &oldlen);
1937 if (info.nlen >= 2
1938 && ((name[0] == CTL_KERN
1939 && (name[1] == KERN_OSRELEASE
1940 || name[1] == KERN_OSTYPE
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001941#ifdef KERN_JAVA_INTERPRETER
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001942 || name[1] == KERN_JAVA_INTERPRETER
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001943#endif
1944#ifdef KERN_JAVA_APPLETVIEWER
1945 || name[1] == KERN_JAVA_APPLETVIEWER
1946#endif
1947 )))) {
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001948 printpath(tcp, (size_t)info.oldval);
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001949 tprintf(", %Zu, ", oldlen);
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001950 if (info.newval == 0)
1951 tprintf("NULL");
1952 else if (syserror(tcp))
1953 tprintf("%p", info.newval);
1954 else
1955 printpath(tcp, (size_t)info.newval);
1956 tprintf(", %Zd", info.newlen);
1957 } else {
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001958 tprintf("%p, %Zd, %p, %Zd", info.oldval, oldlen,
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001959 info.newval, info.newlen);
1960 }
1961 tprintf("}");
1962 }
Roland McGrath2cbe44e2005-05-26 23:21:09 +00001963
1964 free(name);
Wichert Akkerman22fe9d21999-05-27 12:00:57 +00001965 return 0;
1966}
1967#else
1968int sys_sysctl(tcp)
1969struct tcb *tcp;
1970{
1971 return printargs(tcp);
1972}
1973#endif
1974
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001975#ifdef FREEBSD
1976#include <sys/sysctl.h>
1977
1978int sys___sysctl(tcp)
1979struct tcb *tcp;
1980{
1981 int qoid[CTL_MAXNAME+2];
1982 char ctl[1024];
1983 size_t len;
1984 int i, numeric;
Roland McGrathced50da2004-08-31 06:48:46 +00001985
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001986 if (entering(tcp)) {
1987 if (tcp->u_arg[1] < 0 || tcp->u_arg[1] > CTL_MAXNAME ||
1988 (umoven(tcp, tcp->u_arg[0], tcp->u_arg[1] * sizeof(int),
1989 (char *) (qoid + 2)) < 0))
1990 tprintf("[...], ");
1991 else {
1992 /* Use sysctl to ask the name of the current MIB
1993 This uses the undocumented "Staff-functions" used
1994 by the sysctl program. See kern_sysctl.c for
1995 details. */
1996 qoid[0] = 0; /* sysctl */
1997 qoid[1] = 1; /* name */
1998 i = sizeof(ctl);
1999 tprintf("[");
2000 if (sysctl(qoid, tcp->u_arg[1] + 2, ctl, &i, 0, 0) >= 0) {
2001 numeric = !abbrev(tcp);
2002 tprintf("%s%s", ctl, numeric ? ", " : "");
2003 } else
2004 numeric = 1;
2005 if (numeric) {
2006 for (i = 0; i < tcp->u_arg[1]; i++)
2007 tprintf("%s%d", i ? "." : "", qoid[i + 2]);
2008 }
2009 tprintf("], ");
2010 tprintf("%lu, ", tcp->u_arg[1]);
2011 }
2012 } else {
2013 if (!syserror(tcp) && (umove(tcp, tcp->u_arg[3], &len) >= 0)) {
2014 printstr(tcp, tcp->u_arg[2], len);
2015 tprintf(", [%u], ", len);
Roland McGrathced50da2004-08-31 06:48:46 +00002016 } else
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002017 tprintf("%#lx, %#lx, ", tcp->u_arg[2], tcp->u_arg[3]);
2018 printstr(tcp, tcp->u_arg[4], tcp->u_arg[5]);
2019 tprintf(", %lu", tcp->u_arg[5]);
2020 }
2021 return 0;
2022}
2023#endif
Wichert Akkerman16a03d22000-08-10 02:14:04 +00002024
2025#if UNIXWARE >= 2
2026
2027#include <sys/ksym.h>
2028#include <sys/elf.h>
2029
Roland McGrathd9f816f2004-09-04 03:39:20 +00002030static const struct xlat ksym_flags[] = {
Roland McGrathced50da2004-08-31 06:48:46 +00002031 { STT_NOTYPE, "STT_NOTYPE" },
2032 { STT_FUNC, "STT_FUNC" },
2033 { STT_OBJECT, "STT_OBJECT" },
Wichert Akkerman16a03d22000-08-10 02:14:04 +00002034 { 0, NULL },
2035};
2036
2037int
2038sys_getksym(tcp)
2039struct tcb *tcp;
2040{
2041 if (entering (tcp)) {
2042 printstr(tcp, tcp->u_arg[0], -1);
2043 tprintf(", ");
2044 }
2045 else {
2046 if (syserror(tcp)) {
2047 tprintf("%#lx, %#lx",
2048 tcp->u_arg[1], tcp->u_arg[2]);
2049 }
2050 else {
2051 int val;
2052 printnum (tcp, tcp->u_arg[1], "%#lx");
2053 tprintf(", ");
2054 if (umove(tcp, tcp->u_arg[2], &val) < 0) {
2055 tprintf("%#lx", tcp->u_arg[2]);
2056 }
2057 else {
2058 tprintf("[");
2059 printxval (ksym_flags, val, "STT_???");
2060 tprintf("]");
2061 }
2062 }
2063 }
2064
2065 return 0;
2066}
2067
Roland McGrath5ef24ab2004-02-20 02:22:35 +00002068#ifdef HAVE_SYS_NSCSYS_H
John Hughes4e36a812001-04-18 15:11:51 +00002069
John Hughes0aadba42001-10-16 18:19:52 +00002070struct cred;
John Hughes4e36a812001-04-18 15:11:51 +00002071#include <sys/nscsys.h>
2072
Roland McGrathd9f816f2004-09-04 03:39:20 +00002073static const struct xlat ssi_cmd [] = {
John Hughes4e36a812001-04-18 15:11:51 +00002074 { SSISYS_BADOP, "SSISYS_BADOP" },
2075 { SSISYS_LDLVL_INIT,"SSISYS_LDLVL_INIT"},
2076 { SSISYS_LDLVL_GETVEC,"SSISYS_LDLVL_GETVEC"},
2077 { SSISYS_LDLVL_PUTVEC,"SSISYS_LDLVL_PUTVEC"},
2078 { SSISYS_LDLVL_PUTRCMDS,"SSISYS_LDLVL_PUTRCMDS"},
2079 { SSISYS_LDLVL_SETREXEC,"SSISYS_LDLVL_SETREXEC"},
2080 { SSISYS_CMS_CLUSTERID,"SSISYS_CMS_CLUSTERID"},
2081 { SSISYS_CFS_STATVFS,"SSISYS_CFS_STATVFS"},
2082 { SSISYS_NODE_GETNUM,"SSISYS_NODE_GETNUM"},
2083 { SSISYS_NODE_TABLE,"SSISYS_NODE_TABLE"},
2084 { SSISYS_NODE_DOWN,"SSISYS_NODE_DOWN"},
2085 { SSISYS_RECLAIM_CHILD,"SSISYS_RECLAIM_CHILD"},
2086 { SSISYS_IPC_GETINFO,"SSISYS_IPC_GETINFO"},
2087 { SSISYS_ICS_TEST,"SSISYS_ICS_TEST"},
2088 { SSISYS_NODE_PID,"SSISYS_NODE_PID"},
2089 { SSISYS_ISLOCAL,"SSISYS_ISLOCAL"},
2090 { SSISYS_CFS_ISSTACKED,"SSISYS_CFS_ISSTACKED"},
2091 { SSISYS_DNET_SYNC,"SSISYS_DNET_SYNC"},
2092 { SSISYS_CFS_WAIT_MODE,"SSISYS_CFS_WAIT_MODE"},
2093 { SSISYS_CFS_UMOUNT,"SSISYS_CFS_UMOUNT"},
2094 { SSISYS_LLSTAT,"SSISYS_LLSTAT" },
2095 { SSISYS_LTS_PERFTEST,"SSISYS_LTS_PERFTEST"},
2096 { SSISYS_LTS_CONFIG,"SSISYS_LTS_CONFIG"},
2097 { SSISYS_SNET_PERFTEST,"SSISYS_SNET_PERFTEST"},
2098 { SSISYS_IGNORE_HALFUP,"SSISYS_IGNORE_HALFUP"},
2099 { SSISYS_NODE_ROOTDEV,"SSISYS_NODE_ROOTDEV"},
2100 { SSISYS_GET_PRIMARY,"SSISYS_GET_PRIMARY"},
2101 { SSISYS_GET_SECONDARY,"SSISYS_GET_SECONDARY"},
2102 { SSISYS_GET_ROOTDISK,"SSISYS_GET_ROOTDISK"},
2103 { SSISYS_CLUSTERNODE_NUM,"SSISYS_CLUSTERNODE_NUM"},
2104 { SSISYS_CLUSTER_MEMBERSHIP,"SSISYS_CLUSTER_MEMBERSHIP"},
2105 { SSISYS_CLUSTER_DETAILEDTRANS,"SSISYS_CLUSTER_DETAILEDTRANS"},
2106 { SSISYS_CLUSTERNODE_INFO,"SSISYS_CLUSTERNODE_INFO"},
2107 { SSISYS_CLUSTERNODE_SETINFO,"SSISYS_CLUSTERNODE_SETINFO"},
2108 { SSISYS_CLUSTERNODE_AVAIL,"SSISYS_CLUSTERNODE_AVAIL"},
2109 { SSISYS_CLUSTER_MAXNODES,"SSISYS_CLUSTER_MAXNODES"},
2110 { SSISYS_SET_MEMPRIO,"SSISYS_SET_MEMPRIO"},
2111 { SSISYS_GET_USERS,"SSISYS_GET_USERS"},
2112 { SSISYS_FORCE_ROOT_NODE,"SSISYS_FORCE_ROOT_NODE"},
2113 { SSISYS_CVIP_SET,"SSISYS_CVIP_SET"},
2114 { SSISYS_CVIP_GET,"SSISYS_CVIP_GET"},
2115 { SSISYS_GET_NODE_COUNTS,"SSISYS_GET_NODE_COUNTS"},
2116 { SSISYS_GET_TRANSPORT,"SSISYS_GET_TRANSPORT"},
2117 { 0, NULL },
2118};
2119
2120int sys_ssisys (tcp)
2121struct tcb *tcp;
2122{
2123 struct ssisys_iovec iov;
John Hughes2d8b2c52001-10-18 14:52:24 +00002124 cls_nodeinfo_args_t cni;
2125 clusternode_info_t info;
2126
John Hughes4e36a812001-04-18 15:11:51 +00002127 if (entering (tcp)) {
John Hughes0aadba42001-10-16 18:19:52 +00002128 ts_reclaim_child_inargs_t trc;
John Hughes4e36a812001-04-18 15:11:51 +00002129 if (tcp->u_arg[1] != sizeof iov ||
2130 umove (tcp, tcp->u_arg[0], &iov) < 0)
2131 {
2132 tprintf ("%#lx, %ld", tcp->u_arg[0], tcp->u_arg[1]);
2133 return 0;
2134 }
2135 tprintf ("{id=");
2136 printxval(ssi_cmd, iov.tio_id.id_cmd, "SSISYS_???");
2137 tprintf (":%d", iov.tio_id.id_ver);
2138 switch (iov.tio_id.id_cmd) {
John Hughes0aadba42001-10-16 18:19:52 +00002139 case SSISYS_RECLAIM_CHILD:
2140 if (iov.tio_udatainlen != sizeof trc ||
2141 umove (tcp, (long) iov.tio_udatain, &trc) < 0)
2142 goto bad;
2143 tprintf (", in={pid=%ld, start=%ld}",
Roland McGrath5ef24ab2004-02-20 02:22:35 +00002144 trc.trc_pid, trc.trc_start);
John Hughes0aadba42001-10-16 18:19:52 +00002145 break;
2146 case SSISYS_CLUSTERNODE_INFO:
2147 if (iov.tio_udatainlen != sizeof cni ||
2148 umove (tcp, (long) iov.tio_udatain, &cni) < 0)
2149 goto bad;
2150 tprintf (", in={node=%ld, len=%d}",
2151 cni.nodenum, cni.info_len);
2152 break;
John Hughes4e36a812001-04-18 15:11:51 +00002153 default:
John Hughes0aadba42001-10-16 18:19:52 +00002154 bad:
John Hughes4e36a812001-04-18 15:11:51 +00002155 if (iov.tio_udatainlen) {
2156 tprintf (", in=[/* %d bytes */]",
2157 iov.tio_udatainlen);
2158 }
2159 }
2160 }
2161 else {
John Hughes2d8b2c52001-10-18 14:52:24 +00002162 if (tcp->u_arg[1] != sizeof iov ||
2163 umove (tcp, tcp->u_arg[0], &iov) < 0)
2164 goto done;
John Hughes4e36a812001-04-18 15:11:51 +00002165 switch (iov.tio_id.id_cmd) {
John Hughes2d8b2c52001-10-18 14:52:24 +00002166 case SSISYS_CLUSTERNODE_INFO:
2167 if (iov.tio_udatainlen != sizeof cni ||
2168 umove (tcp, (long) iov.tio_udatain, &cni) < 0)
2169 goto bad_out;
Roland McGrathced50da2004-08-31 06:48:46 +00002170 if (cni.info_len != sizeof info ||
Roland McGrath5ef24ab2004-02-20 02:22:35 +00002171 iov.tio_udataoutlen != sizeof &info ||
John Hughes2d8b2c52001-10-18 14:52:24 +00002172 umove (tcp, (long) iov.tio_udataout, &info) < 0)
2173 goto bad_out;
2174 tprintf (", out={node=%ld, cpus=%d, online=%d}",
2175 info.node_num, info.node_totalcpus,
2176 info.node_onlinecpus);
2177 break;
Roland McGrathced50da2004-08-31 06:48:46 +00002178
John Hughes4e36a812001-04-18 15:11:51 +00002179 default:
John Hughes2d8b2c52001-10-18 14:52:24 +00002180 bad_out:
John Hughes4e36a812001-04-18 15:11:51 +00002181 if (iov.tio_udataoutlen) {
2182 tprintf (", out=[/* %d bytes */]",
2183 iov.tio_udataoutlen);
2184 }
2185 }
John Hughes2d8b2c52001-10-18 14:52:24 +00002186 done:
John Hughes4e36a812001-04-18 15:11:51 +00002187 tprintf ("}, %ld", tcp->u_arg[1]);
2188 }
2189 return 0;
2190}
2191
Roland McGrath5ef24ab2004-02-20 02:22:35 +00002192#endif
John Hughes4e36a812001-04-18 15:11:51 +00002193
Roland McGrath5ef24ab2004-02-20 02:22:35 +00002194#endif /* UNIXWARE > 2 */
Wichert Akkerman0cbfb322001-02-19 13:35:53 +00002195
2196#ifdef MIPS
2197
Wichert Akkermand6b92492001-04-07 21:37:12 +00002198#ifndef __NEW_UTS_LEN
2199#define __NEW_UTS_LEN 64
2200#endif
2201
Roland McGrathd9f816f2004-09-04 03:39:20 +00002202static const struct xlat sysmips_operations[] = {
Wichert Akkerman0cbfb322001-02-19 13:35:53 +00002203 { SETNAME, "SETNAME" },
2204 { FLUSH_CACHE, "FLUSH_CACHE" },
2205 { MIPS_FIXADE, "MIPS_FIXADE" },
2206 { MIPS_RDNVRAM, "MIPS_RDNVRAM" },
2207 { MIPS_ATOMIC_SET, "MIPS_ATOMIC_SET" },
2208 { 0, NULL }
2209};
2210
2211int sys_sysmips(tcp)
2212struct tcb *tcp;
2213{
2214 if (entering(tcp)) {
Wichert Akkerman3472dd52001-04-10 10:27:52 +00002215 printxval(sysmips_operations, tcp->u_arg[0], "???");
Wichert Akkerman0cbfb322001-02-19 13:35:53 +00002216 if (!verbose(tcp)) {
Wichert Akkerman3472dd52001-04-10 10:27:52 +00002217 tprintf("%ld, %ld, %ld", tcp->u_arg[1], tcp->u_arg[2], tcp->u_arg[3]);
Wichert Akkerman0cbfb322001-02-19 13:35:53 +00002218 } else if (tcp->u_arg[0]==SETNAME) {
Wichert Akkerman3472dd52001-04-10 10:27:52 +00002219 char nodename[__NEW_UTS_LEN + 1];
2220 if (umovestr(tcp, tcp->u_arg[1], (__NEW_UTS_LEN + 1), nodename) < 0)
Wichert Akkerman0cbfb322001-02-19 13:35:53 +00002221 tprintf(", %#lx", tcp->u_arg[1]);
2222 else
2223 tprintf(", \"%s\"", nodename);
Wichert Akkerman3472dd52001-04-10 10:27:52 +00002224 } else if (tcp->u_arg[0] == MIPS_ATOMIC_SET) {
2225 tprintf(", %#lx, 0x%lx", tcp->u_arg[1], tcp->u_arg[2]);
2226 } else if (tcp->u_arg[0] == MIPS_FIXADE) {
2227 tprintf(", 0x%lx", tcp->u_arg[1]);
Wichert Akkerman0cbfb322001-02-19 13:35:53 +00002228 } else {
Wichert Akkerman3472dd52001-04-10 10:27:52 +00002229 tprintf("%ld, %ld, %ld", tcp->u_arg[1], tcp->u_arg[2], tcp->u_arg[3]);
Wichert Akkerman0cbfb322001-02-19 13:35:53 +00002230 }
2231 }
2232
2233 return 0;
2234}
2235
2236#endif /* MIPS */