Various fixes, see ChangeLog for details
diff --git a/ChangeLog b/ChangeLog
index a334cf1..eee0d05 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Jun 11 14:54:47 CEST 1999
+
+ * Applied IRIX64 patch from Thomas E. Dickey <dickey@clark.net>
+ * Applied Solaris and manpage updates from Guy Harris <guy@netapp.com>
+
Wed Jun 9 14:48:49 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
* Brought syscall list for alpha up to date
diff --git a/configure.in b/configure.in
index d6223c4..87dcf06 100644
--- a/configure.in
+++ b/configure.in
@@ -16,7 +16,7 @@
sysv4*)
opsys=svr4
;;
-irix5*)
+irix[56]*)
opsys=svr4
;;
*)
@@ -126,7 +126,7 @@
AC_SIG_ATOMIC_T
AC_CHECK_LIB(nsl, main)
AC_CHECK_FUNCS(sigaction strerror strsignal pread sys_siglist _sys_siglist getdents mctl putpmsg prctl sendmsg)
-AC_CHECK_HEADERS(sys/filio.h sys/asynch.h sys/stream.h sys/tiuser.h sys/sysconfig.h asm/sigcontext.h ioctls.h sys/ioctl.h sys/ptrace.h termio.h)
+AC_CHECK_HEADERS(sys/filio.h sys/acl.h sys/asynch.h sys/door.h sys/stream.h sys/tiuser.h sys/sysconfig.h asm/sigcontext.h ioctls.h sys/ioctl.h sys/ptrace.h termio.h)
AC_DECL_SYS_ERRLIST
AC_DECL_SYS_SIGLIST
AC_DECL__SYS_SIGLIST
diff --git a/file.c b/file.c
index 72d0a9e..bb5f9c6 100644
--- a/file.c
+++ b/file.c
@@ -784,6 +784,61 @@
return 0;
}
+#ifdef HAVE_SYS_ACL_H
+
+#include <sys/acl.h>
+
+struct xlat aclcmds[] = {
+ { SETACL, "SETACL" },
+ { GETACL, "GETACL" },
+ { GETACLCNT, "GETACLCNT" },
+ { 0, NULL },
+};
+
+int
+sys_acl(tcp)
+struct tcb *tcp;
+{
+ if (entering(tcp)) {
+ printpath(tcp, tcp->u_arg[0]);
+ tprintf(", ");
+ printxval(aclcmds, tcp->u_arg[1], "???ACL???");
+ tprintf(", %ld", tcp->u_arg[2]);
+ /*
+ * FIXME - dump out the list of aclent_t's pointed to
+ * by "tcp->u_arg[3]" if it's not NULL.
+ */
+ if (tcp->u_arg[3])
+ tprintf(", %#lx", tcp->u_arg[3]);
+ else
+ tprintf(", NULL");
+ }
+ return 0;
+}
+
+
+int
+sys_facl(tcp)
+struct tcb *tcp;
+{
+ if (entering(tcp)) {
+ tprintf("%ld, ", tcp->u_arg[0]);
+ printxval(aclcmds, tcp->u_arg[1], "???ACL???");
+ tprintf(", %ld", tcp->u_arg[2]);
+ /*
+ * FIXME - dump out the list of aclent_t's pointed to
+ * by "tcp->u_arg[3]" if it's not NULL.
+ */
+ if (tcp->u_arg[3])
+ tprintf(", %#lx", tcp->u_arg[3]);
+ else
+ tprintf(", NULL");
+ }
+ return 0;
+}
+
+#endif /* HAVE_SYS_ACL_H */
+
#endif /* SVR4 || LINUXSPARC */
#ifdef linux
diff --git a/mem.c b/mem.c
index 7a39412..baba7e8 100644
--- a/mem.c
+++ b/mem.c
@@ -85,6 +85,33 @@
#ifdef MAP_NORESERVE
{ MAP_NORESERVE,"MAP_NORESERVE" },
#endif
+ /*
+ * XXX - this was introduced in SunOS 4.x to distinguish between
+ * the old pre-4.x "mmap()", which:
+ *
+ * only let you map devices with an "mmap" routine (e.g.,
+ * frame buffers) in;
+ *
+ * required you to specify the mapping address;
+ *
+ * returned 0 on success and -1 on failure;
+ *
+ * memory and which, and the 4.x "mmap()" which:
+ *
+ * can map plain files;
+ *
+ * can be asked to pick where to map the file;
+ *
+ * returns the address where it mapped the file on success
+ * and -1 on failure.
+ *
+ * It's not actually used in source code that calls "mmap()"; the
+ * "mmap()" routine adds it for you.
+ *
+ * It'd be nice to come up with some way of eliminating it from
+ * the flags, e.g. reporting calls *without* it as "old_mmap()"
+ * and calls with it as "mmap()".
+ */
#ifdef _MAP_NEW
{ _MAP_NEW, "_MAP_NEW" },
#endif
@@ -128,7 +155,10 @@
#endif /* LINUX && !ALPHA && !sparc */
/* addr */
- tprintf("%#lx, ", u_arg[0]);
+ if (!u_arg[0])
+ tprintf("NULL, ");
+ else
+ tprintf("%#lx, ", u_arg[0]);
/* len */
tprintf("%lu, ", u_arg[1]);
/* prot */
diff --git a/process.c b/process.c
index 40a903d..32126d3 100644
--- a/process.c
+++ b/process.c
@@ -115,6 +115,15 @@
#if defined(PR_SET_PDEATHSIG)
{ PR_SET_PDEATHSIG, "PR_SET_PDEATHSIG" },
#endif
+#ifdef PR_COREPID
+ { PR_COREPID, "PR_COREPID" },
+#endif
+#ifdef PR_ATTACHADDRPERM
+ { PR_ATTACHADDRPERM, "PR_ATTACHADDRPERM" },
+#endif
+#ifdef PR_PTHREADEXIT
+ { PR_PTHREADEXIT, "PR_PTHREADEXIT" },
+#endif
{ 0, NULL },
};
diff --git a/strace.1 b/strace.1
index 84e11d0..281a585 100644
--- a/strace.1
+++ b/strace.1
@@ -33,7 +33,7 @@
.ft CW
..
.de CE
-.ft
+.ft R
.fi
.sp
..
@@ -148,8 +148,9 @@
flag argument into its three bitwise-OR constituents and printing the
mode value in octal by tradition. Where traditional or native
usage differs from ANSI or POSIX, the latter forms are preferred.
-In some cases, strace output has proven to be more readable than
-the source.
+In some cases,
+.B strace
+output has proven to be more readable than the source.
.LP
Structure pointers are dereferenced and the members are displayed
as appropriate. In all cases arguments are formatted in the most C-like
@@ -163,7 +164,7 @@
is carefully decoded into a bitwise-OR of symbolic and numeric values.
Also notice in this example that the first argument to lstat is an input
to the system call and the second argument is an output. Since output
-arguments not modified if the system call fails, arguments may not
+arguments are not modified if the system call fails, arguments may not
always be dereferenced. For example, retrying the ``ls \-l'' example
with a non-existent file produces the following line:
.CW
@@ -178,8 +179,9 @@
.I strsize
(32 by default) bytes of strings are printed;
longer strings have an ellipsis appended following the closing quote.
-Here is a line from ``ls \-l'' where the getpwuid library routine is
-reading the password file:
+Here is a line from ``ls \-l'' where the
+.B getpwuid
+library routine is reading the password file:
.CW
read(3, "root::0:0:System Administrator:/"..., 1024) = 422
.CE
@@ -212,17 +214,26 @@
summary on program exit.
.TP
.B \-d
-Show some debugging output of strace itself on
-.I stderr .
+Show some debugging output of
+.B strace
+itself on the standard error.
.TP
.B \-f
Trace child processes as they are created by currently traced
-processes as a result of the fork(2) system call. The new process is
+processes as a result of the
+.BR fork (2)
+system call. The new process is
attached to as soon as its pid is known (through the return value of
-fork(2) in the parent process). This means that such children may run
-uncontrolled for a while (especially in the case of a vfork(2)), until
-the parent is scheduled again to complete its (v)fork(2) call.
-If the parent process decides to wait(2) for a child that is currently
+.BR fork (2)
+in the parent process). This means that such children may run
+uncontrolled for a while (especially in the case of a
+.BR vfork (2)),
+until the parent is scheduled again to complete its
+.RB ( v ) fork (2)
+call.
+If the parent process decides to
+.BR wait (2)
+for a child that is currently
being traced, it is suspended until an appropriate child process either
terminates or incurs a signal that would cause it to terminate (as
determined from the child's current signal disposition).
@@ -236,9 +247,13 @@
where pid is the numeric process id of each process.
.TP
.B \-F
-Attempt to follow vforks. (On SunOS 4.x, this is accomplished with
+Attempt to follow
+.BR vfork s.
+(On SunOS 4.x, this is accomplished with
some dynamic linking trickery. On Linux, it requires some kernel
-functionality not yet in the standard kernel.) Otherwise, vforks will
+functionality not yet in the standard kernel.) Otherwise,
+.BR vfork s
+will
not be followed even if
.B \-f
has been given.
@@ -281,10 +296,11 @@
this option to get all of the gory details.
.TP
.B \-V
-Print the version number of strace.
+Print the version number of
+.BR strace .
.TP
.B \-x
-Print all non-ascii strings in hexadecimal string format.
+Print all non-ASCII strings in hexadecimal string format.
.TP
.B \-xx
Print all strings in hexadecimal string format.
@@ -295,34 +311,63 @@
.BI "\-e " expr
A qualifying expression which modifies which events to trace
or how to trace them. The format of the expression is:
-.br
-[qualifier=][!]value1[,value2]...
-.br
-where qualifier is one of trace, abbrev, verbose, raw, signal, read, or write
-and value is a qualifier-dependent symbol or number. The default
-qualifier is trace. Using an exclamation mark negates the set of values.
-For example \-eopen means literally \-e trace=open which in turn means
-trace only the open system call. By contrast, \-etrace=!open means
-to trace every system call except open. In addition the special values
-all and none have the obvious meanings.
-.LP
+.RS 15
+.IP
+[\fIqualifier\fB=\fR][\fB!\fR]\fIvalue1\fR[\fB,\fIvalue2\fR]...
+.RE
+.IP
+where
+.I qualifier
+is one of
+.BR trace ,
+.BR abbrev ,
+.BR verbose ,
+.BR raw ,
+.BR signal ,
+.BR read ,
+or
+.B write
+and
+.I value
+is a qualifier-dependent symbol or number. The default
+qualifier is
+.BR trace .
+Using an exclamation mark negates the set of values. For example,
+.B \-eopen
+means literally
+.B "\-e trace=open"
+which in turn means trace only the
+.B open
+system call. By contrast,
+.B "\-etrace=!open"
+means to trace every system call except
+.BR open .
+In addition, the special values
+.B all
+and
+.B none
+have the obvious meanings.
+.IP
Note that some shells use the exclamation point for history
-expansion; even inside quoted arguments. If so, you must escape
+expansion even inside quoted arguments. If so, you must escape
the exclamation point with a backslash.
.TP
.BI "\-e trace=" set
Trace only the specified set of system calls. The
.B \-c
option is useful for determining which system calls might be useful
-to trace. For example, trace=open,close,read,write means to only
+to trace. For example,
+.B trace=open,close,read,write
+means to only
trace those four system calls. Be careful when making inferences
about the user/kernel boundary if only a subset of system calls
-are being monitored. The default is trace=all.
+are being monitored. The default is
+.BR trace=all .
.TP
.B "\-e trace=file"
Trace all system calls which take a file name as an argument. You
can think of this as an abbreviation for
-.BR "\-e trace=open,stat,chmod,unlink," ...
+.BR "\-e\ trace=open,stat,chmod,unlink," ...
which is useful to seeing what files the process is referencing.
Furthermore, using the abbreviation will ensure that you don't
accidentally forget to include a call like
@@ -344,13 +389,17 @@
.TP
.BI "\-e abbrev=" set
Abbreviate the output from printing each member of large structures.
-The default is abbrev=all. The
+The default is
+.BR abbrev=all .
+The
.B \-v
-option has the effect of abbrev=none.
+option has the effect of
+.BR abbrev=none .
.TP
.BI "\-e verbose=" set
Dereference structures for the specified set of system calls. The
-default is verbose=all.
+default is
+.BR verbose=all .
.TP
.BI "\-e raw=" set
Print raw, undecoded arguments for the specifed set of system calls.
@@ -360,25 +409,31 @@
argument.
.TP
.BI "\-e signal=" set
-Trace only the specified subset of signals. The default is signal=all.
-For example signal=!SIGIO (or signal=!io) causes SIGIO signals not to
-be traced.
+Trace only the specified subset of signals. The default is
+.BR signal=all .
+For example,
+.B signal=!SIGIO
+(or
+.BR signal=!io )
+causes SIGIO signals not to be traced.
.TP
.BI "\-e read=" set
-Perform a full hexadecimal and ascii dump of all the data read from
+Perform a full hexadecimal and ASCII dump of all the data read from
file descriptors listed in the specified set. For example, to see
all input activity on file descriptors 3 and 5 use
.BR "\-e read=3,5" .
-Note that this is independent from the normal tracing of the read
+Note that this is independent from the normal tracing of the
+.BR read (2)
system call which is controlled by the option
.BR "\-e trace=read" .
.TP
.BI "\-e write=" set
-Perform a full hexadecimal and ascii dump of all the data written to
+Perform a full hexadecimal and ASCII dump of all the data written to
file descriptors listed in the specified set. For example, to see
all output activity on file descriptors 3 and 5 use
.BR "\-e write=3,5" .
-Note that this is independent from the normal tracing of the write
+Note that this is independent from the normal tracing of the
+.BR write (2)
system call which is controlled by the option
.BR "\-e trace=write" .
.TP
@@ -397,15 +452,19 @@
without affecting the redirections of executed programs.
.TP
.BI "\-O " overhead
-Set the overhead for tracing system calls to overhead microseconds.
+Set the overhead for tracing system calls to
+.I overhead
+microseconds.
This is useful for overriding the default heuristic for guessing
how much time is spent in mere measuring when timing system calls using
the
.B \-c
option. The acuracy of the heuristic can be gauged by timing a given
-program run without tracing (using time(1)) and comparing the accumulated
+program run without tracing (using
+.BR time (1))
+and comparing the accumulated
system call time to the total produced using
-.B \-c .
+.BR \-c .
.TP
.BI "\-p " pid
Attach to the process with the process
@@ -435,10 +494,17 @@
Sort the output of the histogram printed by the
.B \-c
option by the specified critereon. Legal values are
-time, calls, name, and nothing (default time).
+.BR time ,
+.BR calls ,
+.BR name ,
+and
+.B nothing
+(default
+.BR time ).
.TP
.BI "\-u " username
-Run command with the userid, groupid and supplementary groups of
+Run command with the user \s-1ID\s0, group \s-2ID\s0, and
+supplementary groups of
.IR username .
This option is only useful when running as root and enables the
correct execution of setuid and/or setgid binaries.
@@ -458,18 +524,24 @@
as setuid to root when the users who can execute it are restricted
to those users who have this trust.
For example, it makes sense to install a special version of
-.B
-strace
-with mode `rwsr-xr--', user root and group trace,
-where members of the trace group are trusted users.
+.B strace
+with mode `rwsr-xr--', user
+.B root
+and group
+.BR trace ,
+where members of the
+.B trace
+group are trusted users.
If you do use this feature, please remember to install
-a non-setuid version of strace for ordinary lusers to use.
+a non-setuid version of
+.B strace
+for ordinary lusers to use.
.SH "SEE ALSO"
-.BR ptrace(2) ,
-.BR proc(4) ,
-.BR time(1) ,
-.BR trace(1) ,
-.BR truss(1)
+.BR ptrace (2),
+.BR proc (4),
+.BR time (1),
+.BR trace (1),
+.BR truss (1)
.SH NOTES
It is a pity that so much tracing clutter is produced by systems
employing shared libraries.
@@ -481,9 +553,14 @@
behavior using inputs and outputs as propositions.
.LP
In some cases, a system call will differ from the documented behavior
-or have a different name. For example, on System V derived systems
-the true time(2) system call does not take an argument and the stat
-function is called xstat and takes an extra leading argument. These
+or have a different name. For example, on System V-derived systems
+the true
+.BR time (2)
+system call does not take an argument and the
+.B stat
+function is called
+.B xstat
+and takes an extra leading argument. These
discrepancies are normal but idiosyncratic characteristics of the
system call interface and are accounted for by C library wrapper
functions.
@@ -525,17 +602,34 @@
option is weakly supported.
.SH HISTORY
.B strace
-The original strace was written by Paul Kranenburg
+The original
+.B strace
+was written by Paul Kranenburg
for SunOS and was inspired by its trace utility.
-The SunOS version of strace was ported to Linux and enhanced
+The SunOS version of
+.B strace
+was ported to Linux and enhanced
by Branko Lankester, who also wrote the Linux kernel support.
-Even though Paul released strace 2.5 in 1992,
-Branko's work was based on Paul's strace 1.5 release from 1991.
-In 1993, Rick Sladkey merged strace 2.5 for SunOS and the
-second release of strace for Linux, added many of the features of
-truss from SVR4, and produced an strace that worked on both platforms.
-In 1994 Rick ported strace to SVR4 and Solaris and wrote the
-automatic configuration support. In 1995 he ported strace to Irix
+Even though Paul released
+.B strace
+2.5 in 1992,
+Branko's work was based on Paul's
+.B strace
+1.5 release from 1991.
+In 1993, Rick Sladkey merged
+.B strace
+2.5 for SunOS and the second release of
+.B strace
+for Linux, added many of the features of
+.BR truss (1)
+from SVR4, and produced an
+.B strace
+that worked on both platforms. In 1994 Rick ported
+.B strace
+to SVR4 and Solaris and wrote the
+automatic configuration support. In 1995 he ported
+.B strace
+to Irix
and tired of writing about himself in the third person.
.SH PROBLEMS
Problems with
diff --git a/svr4/dummy.h b/svr4/dummy.h
index 96e7d25..61e3e85 100644
--- a/svr4/dummy.h
+++ b/svr4/dummy.h
@@ -157,6 +157,8 @@
#define sys_setegid sys_close
#define sys_vhangup sys_close
#define sys_fdsync sys_close
+#define sys_setreuid sys_dup2
+#define sys_setregid sys_dup2
#define sys_sigfillset sys_sigpending
#define sys_vfork sys_fork
#define sys_ksigaction sys_sigaction
@@ -181,6 +183,7 @@
#define sys_sysfs printargs
#define sys_spcall printargs
#define sys_context printargs
+#define sys_door printargs
#if DONE
#define sys_mount printargs
diff --git a/svr4/syscall.h b/svr4/syscall.h
index 4036eef..9f385aa 100644
--- a/svr4/syscall.h
+++ b/svr4/syscall.h
@@ -104,6 +104,7 @@
extern int sys_getmsg();
extern int sys_putmsg();
extern int sys_poll();
+extern int sys_dup2();
#ifdef MIPS
extern int sys_sigreturn();
extern int sys_accept();
@@ -292,6 +293,13 @@
extern int sys_timer_gettime();
extern int sys_timer_getoverrun();
extern int sys_nanosleep();
+#ifdef HAVE_SYS_ACL_H
+extern int sys_acl();
+extern int sys_facl();
+#endif
+#ifdef HAVE_SYS_DOOR_H
+extern int sys_door();
+#endif
#endif /* !MIPS */
#ifdef MIPS
@@ -428,3 +436,17 @@
#define SYS_context_nsubcalls 2
#endif /* !MIPS */
+
+#ifdef HAVE_SYS_DOOR_H
+
+#define SYS_door_subcall 390 + SGI_KLUDGE
+#define SYS_door_create (SYS_door_subcall + 0)
+#define SYS_door_revoke (SYS_door_subcall + 1)
+#define SYS_door_info (SYS_door_subcall + 2)
+#define SYS_door_call (SYS_door_subcall + 3)
+#define SYS_door_return (SYS_door_subcall + 4)
+#define SYS_door_cred (SYS_door_subcall + 5)
+
+#define SYS_door_nsubcalls 6
+
+#endif /* HAVE_SYS_DOOR_H */
diff --git a/svr4/syscallent.h b/svr4/syscallent.h
index cff7c44..4f69b1e 100644
--- a/svr4/syscallent.h
+++ b/svr4/syscallent.h
@@ -400,7 +400,11 @@
{ -1, 0, printargs, "SYS_182" }, /* 182 */
{ -1, 0, printargs, "SYS_183" }, /* 183 */
{ -1, 0, printargs, "SYS_184" }, /* 184 */
+#ifdef HAVE_SYS_ACL_H
+ { -1, TF, sys_acl, "acl" }, /* 185 */
+#else
{ -1, 0, printargs, "SYS_185" }, /* 185 */
+#endif
{ -1, 0, sys_auditsys, "auditsys" }, /* 186 */
{ -1, 0, sys_processor_bind, "processor_bind"}, /* 187 */
{ -1, 0, sys_processor_info, "processor_info"}, /* 188 */
@@ -415,10 +419,18 @@
{ -1, 0, sys_timer_gettime, "timer_gettime" }, /* 197 */
{ -1, 0, sys_timer_getoverrun, "timer_getoverrun"}, /* 198 */
{ -1, 0, sys_nanosleep, "nanosleep" }, /* 199 */
+#ifdef HAVE_SYS_ACL_H
+ { -1, 0, sys_facl, "facl" }, /* 200 */
+#else
{ -1, 0, printargs, "SYS_200" }, /* 200 */
+#endif
+#ifdef HAVE_SYS_DOOR_H
+ { -1, 0, sys_door, "door" }, /* 201 */
+#else
{ -1, 0, printargs, "SYS_201" }, /* 201 */
- { -1, 0, printargs, "SYS_202" }, /* 202 */
- { -1, 0, printargs, "SYS_203" }, /* 203 */
+#endif
+ { -1, 0, sys_setreuid, "setreuid" }, /* 202 */
+ { -1, 0, sys_setregid, "setregid" }, /* 203 */
{ -1, 0, printargs, "SYS_204" }, /* 204 */
{ -1, 0, printargs, "SYS_205" }, /* 205 */
{ -1, 0, printargs, "SYS_206" }, /* 206 */
@@ -616,12 +628,12 @@
{ -1, 0, printargs, "SYS_388" }, /* 388 */
{ -1, 0, printargs, "SYS_389" }, /* 389 */
- { -1, 0, printargs, "SYS_390" }, /* 390 */
- { -1, 0, printargs, "SYS_391" }, /* 391 */
- { -1, 0, printargs, "SYS_392" }, /* 392 */
- { -1, 0, printargs, "SYS_393" }, /* 393 */
- { -1, 0, printargs, "SYS_394" }, /* 394 */
- { -1, 0, printargs, "SYS_395" }, /* 395 */
+ { -1, 0, printargs, "door_create" }, /* 390 */
+ { -1, 0, printargs, "door_revoke" }, /* 391 */
+ { -1, 0, printargs, "door_info" }, /* 392 */
+ { -1, 0, printargs, "door_call" }, /* 393 */
+ { -1, 0, printargs, "door_return" }, /* 394 */
+ { -1, 0, printargs, "door_cred" }, /* 395 */
{ -1, 0, printargs, "SYS_396" }, /* 396 */
{ -1, 0, printargs, "SYS_397" }, /* 397 */
{ -1, 0, printargs, "SYS_398" }, /* 398 */
diff --git a/syscall.c b/syscall.c
index cea9e67..5ff3906 100644
--- a/syscall.c
+++ b/syscall.c
@@ -394,7 +394,7 @@
}
}
-enum subcall_style { shift_style, deref_style, mask_style };
+enum subcall_style { shift_style, deref_style, mask_style, door_style };
#if !(defined(LINUX) && defined(ALPHA))
@@ -480,6 +480,16 @@
if (sysent[tcp->scno].nargs != -1)
tcp->u_nargs = sysent[tcp->scno].nargs;
break;
+ case door_style:
+ /*
+ * Oh, yuck. The call code is the *sixth* argument.
+ */
+ tcp->scno = subcall + tcp->u_arg[5];
+ if (sysent[tcp->scno].nargs != -1)
+ tcp->u_nargs = sysent[tcp->scno].nargs;
+ else
+ tcp->u_nargs--;
+ break;
}
}
#endif
@@ -1201,6 +1211,12 @@
SYS_context_nsubcalls, shift_style);
break;
#endif /* SYS_context_subcall */
+#ifdef SYS_door_subcall
+ case SYS_door:
+ decode_subcall(tcp, SYS_door_subcall,
+ SYS_door_nsubcalls, door_style);
+ break;
+#endif /* SYS_door_subcall */
#endif /* SVR4 */
#ifdef SUNOS4
case SYS_semsys:
diff --git a/system.c b/system.c
index c49cdc7..e386ba5 100644
--- a/system.c
+++ b/system.c
@@ -708,7 +708,9 @@
static struct xlat syssgi_options[] = {
{ SGI_SYSID, "SGI_SYSID" },
+#ifdef SGI_RDUBLK
{ SGI_RDUBLK, "SGI_RDUBLK" },
+#endif
{ SGI_TUNE, "SGI_TUNE" },
{ SGI_IDBG, "SGI_IDBG" },
{ SGI_INVENT, "SGI_INVENT" },
@@ -765,6 +767,27 @@
{ SGI_PLANGMOUNT, "SGI_PLANGMOUNT" },
{ SGI_GETPSOACL, "SGI_GETPSOACL" },
{ SGI_SETPSOACL, "SGI_SETPSOACL" },
+#ifdef SGI_EAG_GET_ATTR
+ { SGI_EAG_GET_ATTR, "SGI_EAG_GET_ATTR" },
+#endif
+#ifdef SGI_EAG_SET_ATTR
+ { SGI_EAG_SET_ATTR, "SGI_EAG_SET_ATTR" },
+#endif
+#ifdef SGI_EAG_GET_PROCATTR
+ { SGI_EAG_GET_PROCATTR, "SGI_EAG_GET_PROCATTR" },
+#endif
+#ifdef SGI_EAG_SET_PROCATTR
+ { SGI_EAG_SET_PROCATTR, "SGI_EAG_SET_PROCATTR" },
+#endif
+#ifdef SGI_FREVOKE
+ { SGI_FREVOKE, "SGI_FREVOKE" },
+#endif
+#ifdef SGI_SBE_GET_INFO
+ { SGI_SBE_GET_INFO, "SGI_SBE_GET_INFO" },
+#endif
+#ifdef SGI_SBE_CLR_INFO
+ { SGI_SBE_CLR_INFO, "SGI_SBE_CLR_INFO" },
+#endif
{ SGI_RMI_FIXECC, "SGI_RMI_FIXECC" },
{ SGI_R4K_CERRS, "SGI_R4K_CERRS" },
{ SGI_GET_EVCONF, "SGI_GET_EVCONF" },
@@ -775,9 +798,273 @@
#ifdef SGI_SET_FPDEBUG
{ SGI_SET_FPDEBUG, "SGI_SET_FPDEBUG" },
#endif
+#ifdef SGI_SET_FP_PRECISE
+ { SGI_SET_FP_PRECISE, "SGI_SET_FP_PRECISE" },
+#endif
{ SGI_TOSSTSAVE, "SGI_TOSSTSAVE" },
{ SGI_FDHI, "SGI_FDHI" },
+#ifdef SGI_SET_CONFIG_SMM
+ { SGI_SET_CONFIG_SMM, "SGI_SET_CONFIG_SMM" },
+#endif
+#ifdef SGI_SET_FP_PRESERVE
+ { SGI_SET_FP_PRESERVE, "SGI_SET_FP_PRESERVE" },
+#endif
{ SGI_MINRSS, "SGI_MINRSS" },
+#ifdef SGI_GRIO
+ { SGI_GRIO, "SGI_GRIO" },
+#endif
+#ifdef SGI_XLV_SET_TAB
+ { SGI_XLV_SET_TAB, "SGI_XLV_SET_TAB" },
+#endif
+#ifdef SGI_XLV_GET_TAB
+ { SGI_XLV_GET_TAB, "SGI_XLV_GET_TAB" },
+#endif
+#ifdef SGI_GET_FP_PRECISE
+ { SGI_GET_FP_PRECISE, "SGI_GET_FP_PRECISE" },
+#endif
+#ifdef SGI_GET_CONFIG_SMM
+ { SGI_GET_CONFIG_SMM, "SGI_GET_CONFIG_SMM" },
+#endif
+#ifdef SGI_FP_IMPRECISE_SUPP
+ { SGI_FP_IMPRECISE_SUPP,"SGI_FP_IMPRECISE_SUPP" },
+#endif
+#ifdef SGI_CONFIG_NSMM_SUPP
+ { SGI_CONFIG_NSMM_SUPP, "SGI_CONFIG_NSMM_SUPP" },
+#endif
+#ifdef SGI_RT_TSTAMP_CREATE
+ { SGI_RT_TSTAMP_CREATE, "SGI_RT_TSTAMP_CREATE" },
+#endif
+#ifdef SGI_RT_TSTAMP_DELETE
+ { SGI_RT_TSTAMP_DELETE, "SGI_RT_TSTAMP_DELETE" },
+#endif
+#ifdef SGI_RT_TSTAMP_START
+ { SGI_RT_TSTAMP_START, "SGI_RT_TSTAMP_START" },
+#endif
+#ifdef SGI_RT_TSTAMP_STOP
+ { SGI_RT_TSTAMP_STOP, "SGI_RT_TSTAMP_STOP" },
+#endif
+#ifdef SGI_RT_TSTAMP_ADDR
+ { SGI_RT_TSTAMP_ADDR, "SGI_RT_TSTAMP_ADDR" },
+#endif
+#ifdef SGI_RT_TSTAMP_MASK
+ { SGI_RT_TSTAMP_MASK, "SGI_RT_TSTAMP_MASK" },
+#endif
+#ifdef SGI_RT_TSTAMP_EOB_MODE
+ { SGI_RT_TSTAMP_EOB_MODE,"SGI_RT_TSTAMP_EOB_MODE"},
+#endif
+#ifdef SGI_USE_FP_BCOPY
+ { SGI_USE_FP_BCOPY, "SGI_USE_FP_BCOPY" },
+#endif
+#ifdef SGI_GET_UST
+ { SGI_GET_UST, "SGI_GET_UST" },
+#endif
+#ifdef SGI_SPECULATIVE_EXEC
+ { SGI_SPECULATIVE_EXEC, "SGI_SPECULATIVE_EXEC" },
+#endif
+#ifdef SGI_XLV_NEXT_RQST
+ { SGI_XLV_NEXT_RQST, "SGI_XLV_NEXT_RQST" },
+#endif
+#ifdef SGI_XLV_ATTR_CURSOR
+ { SGI_XLV_ATTR_CURSOR, "SGI_XLV_ATTR_CURSOR" },
+#endif
+#ifdef SGI_XLV_ATTR_GET
+ { SGI_XLV_ATTR_GET, "SGI_XLV_ATTR_GET" },
+#endif
+#ifdef SGI_XLV_ATTR_SET
+ { SGI_XLV_ATTR_SET, "SGI_XLV_ATTR_SET" },
+#endif
+#ifdef SGI_BTOOLSIZE
+ { SGI_BTOOLSIZE, "SGI_BTOOLSIZE" },
+#endif
+#ifdef SGI_BTOOLGET
+ { SGI_BTOOLGET, "SGI_BTOOLGET" },
+#endif
+#ifdef SGI_BTOOLREINIT
+ { SGI_BTOOLREINIT, "SGI_BTOOLREINIT" },
+#endif
+#ifdef SGI_CREATE_UUID
+ { SGI_CREATE_UUID, "SGI_CREATE_UUID" },
+#endif
+#ifdef SGI_NOFPE
+ { SGI_NOFPE, "SGI_NOFPE" },
+#endif
+#ifdef SGI_OLD_SOFTFP
+ { SGI_OLD_SOFTFP, "SGI_OLD_SOFTFP" },
+#endif
+#ifdef SGI_FS_INUMBERS
+ { SGI_FS_INUMBERS, "SGI_FS_INUMBERS" },
+#endif
+#ifdef SGI_FS_BULKSTAT
+ { SGI_FS_BULKSTAT, "SGI_FS_BULKSTAT" },
+#endif
+#ifdef SGI_RT_TSTAMP_WAIT
+ { SGI_RT_TSTAMP_WAIT, "SGI_RT_TSTAMP_WAIT" },
+#endif
+#ifdef SGI_RT_TSTAMP_UPDATE
+ { SGI_RT_TSTAMP_UPDATE, "SGI_RT_TSTAMP_UPDATE" },
+#endif
+#ifdef SGI_PATH_TO_HANDLE
+ { SGI_PATH_TO_HANDLE, "SGI_PATH_TO_HANDLE" },
+#endif
+#ifdef SGI_PATH_TO_FSHANDLE
+ { SGI_PATH_TO_FSHANDLE, "SGI_PATH_TO_FSHANDLE" },
+#endif
+#ifdef SGI_FD_TO_HANDLE
+ { SGI_FD_TO_HANDLE, "SGI_FD_TO_HANDLE" },
+#endif
+#ifdef SGI_OPEN_BY_HANDLE
+ { SGI_OPEN_BY_HANDLE, "SGI_OPEN_BY_HANDLE" },
+#endif
+#ifdef SGI_READLINK_BY_HANDLE
+ { SGI_READLINK_BY_HANDLE,"SGI_READLINK_BY_HANDLE"},
+#endif
+#ifdef SGI_READ_DANGID
+ { SGI_READ_DANGID, "SGI_READ_DANGID" },
+#endif
+#ifdef SGI_CONST
+ { SGI_CONST, "SGI_CONST" },
+#endif
+#ifdef SGI_XFS_FSOPERATIONS
+ { SGI_XFS_FSOPERATIONS, "SGI_XFS_FSOPERATIONS" },
+#endif
+#ifdef SGI_SETASH
+ { SGI_SETASH, "SGI_SETASH" },
+#endif
+#ifdef SGI_GETASH
+ { SGI_GETASH, "SGI_GETASH" },
+#endif
+#ifdef SGI_SETPRID
+ { SGI_SETPRID, "SGI_SETPRID" },
+#endif
+#ifdef SGI_GETPRID
+ { SGI_GETPRID, "SGI_GETPRID" },
+#endif
+#ifdef SGI_SETSPINFO
+ { SGI_SETSPINFO, "SGI_SETSPINFO" },
+#endif
+#ifdef SGI_GETSPINFO
+ { SGI_GETSPINFO, "SGI_GETSPINFO" },
+#endif
+#ifdef SGI_SHAREII
+ { SGI_SHAREII, "SGI_SHAREII" },
+#endif
+#ifdef SGI_NEWARRAYSESS
+ { SGI_NEWARRAYSESS, "SGI_NEWARRAYSESS" },
+#endif
+#ifdef SGI_GETDFLTPRID
+ { SGI_GETDFLTPRID, "SGI_GETDFLTPRID" },
+#endif
+#ifdef SGI_SET_DISMISSED_EXC_CNT
+ { SGI_SET_DISMISSED_EXC_CNT,"SGI_SET_DISMISSED_EXC_CNT" },
+#endif
+#ifdef SGI_GET_DISMISSED_EXC_CNT
+ { SGI_GET_DISMISSED_EXC_CNT,"SGI_GET_DISMISSED_EXC_CNT" },
+#endif
+#ifdef SGI_CYCLECNTR_SIZE
+ { SGI_CYCLECNTR_SIZE, "SGI_CYCLECNTR_SIZE" },
+#endif
+#ifdef SGI_QUERY_FASTTIMER
+ { SGI_QUERY_FASTTIMER, "SGI_QUERY_FASTTIMER" },
+#endif
+#ifdef SGI_PIDSINASH
+ { SGI_PIDSINASH, "SGI_PIDSINASH" },
+#endif
+#ifdef SGI_ULI
+ { SGI_ULI, "SGI_ULI" },
+#endif
+#ifdef SGI_LPG_SHMGET
+ { SGI_LPG_SHMGET, "SGI_LPG_SHMGET" },
+#endif
+#ifdef SGI_LPG_MAP
+ { SGI_LPG_MAP, "SGI_LPG_MAP" },
+#endif
+#ifdef SGI_CACHEFS_SYS
+ { SGI_CACHEFS_SYS, "SGI_CACHEFS_SYS" },
+#endif
+#ifdef SGI_NFSNOTIFY
+ { SGI_NFSNOTIFY, "SGI_NFSNOTIFY" },
+#endif
+#ifdef SGI_LOCKDSYS
+ { SGI_LOCKDSYS, "SGI_LOCKDSYS" },
+#endif
+#ifdef SGI_EVENTCTR
+ { SGI_EVENTCTR, "SGI_EVENTCTR" },
+#endif
+#ifdef SGI_GETPRUSAGE
+ { SGI_GETPRUSAGE, "SGI_GETPRUSAGE" },
+#endif
+#ifdef SGI_PROCMASK_LOCATION
+ { SGI_PROCMASK_LOCATION,"SGI_PROCMASK_LOCATION" },
+#endif
+#ifdef SGI_UNUSED
+ { SGI_UNUSED, "SGI_UNUSED" },
+#endif
+#ifdef SGI_CKPT_SYS
+ { SGI_CKPT_SYS, "SGI_CKPT_SYS" },
+#endif
+#ifdef SGI_CKPT_SYS
+ { SGI_CKPT_SYS, "SGI_CKPT_SYS" },
+#endif
+#ifdef SGI_GETGRPPID
+ { SGI_GETGRPPID, "SGI_GETGRPPID" },
+#endif
+#ifdef SGI_GETSESPID
+ { SGI_GETSESPID, "SGI_GETSESPID" },
+#endif
+#ifdef SGI_ENUMASHS
+ { SGI_ENUMASHS, "SGI_ENUMASHS" },
+#endif
+#ifdef SGI_SETASMACHID
+ { SGI_SETASMACHID, "SGI_SETASMACHID" },
+#endif
+#ifdef SGI_GETASMACHID
+ { SGI_GETASMACHID, "SGI_GETASMACHID" },
+#endif
+#ifdef SGI_GETARSESS
+ { SGI_GETARSESS, "SGI_GETARSESS" },
+#endif
+#ifdef SGI_JOINARRAYSESS
+ { SGI_JOINARRAYSESS, "SGI_JOINARRAYSESS" },
+#endif
+#ifdef SGI_SPROC_KILL
+ { SGI_SPROC_KILL, "SGI_SPROC_KILL" },
+#endif
+#ifdef SGI_DBA_CONFIG
+ { SGI_DBA_CONFIG, "SGI_DBA_CONFIG" },
+#endif
+#ifdef SGI_RELEASE_NAME
+ { SGI_RELEASE_NAME, "SGI_RELEASE_NAME" },
+#endif
+#ifdef SGI_SYNCH_CACHE_HANDLER
+ { SGI_SYNCH_CACHE_HANDLER,"SGI_SYNCH_CACHE_HANDLER"},
+#endif
+#ifdef SGI_SWASH_INIT
+ { SGI_SWASH_INIT, "SGI_SWASH_INIT" },
+#endif
+#ifdef SGI_NUMA_MIGR_PAGE
+ { SGI_NUMA_MIGR_PAGE, "SGI_NUMA_MIGR_PAGE" },
+#endif
+#ifdef SGI_NUMA_MIGR_PAGE_ALT
+ { SGI_NUMA_MIGR_PAGE_ALT,"SGI_NUMA_MIGR_PAGE_ALT"},
+#endif
+#ifdef SGI_KAIO_USERINIT
+ { SGI_KAIO_USERINIT, "SGI_KAIO_USERINIT" },
+#endif
+#ifdef SGI_KAIO_READ
+ { SGI_KAIO_READ, "SGI_KAIO_READ" },
+#endif
+#ifdef SGI_KAIO_WRITE
+ { SGI_KAIO_WRITE, "SGI_KAIO_WRITE" },
+#endif
+#ifdef SGI_KAIO_SUSPEND
+ { SGI_KAIO_SUSPEND, "SGI_KAIO_SUSPEND" },
+#endif
+#ifdef SGI_KAIO_STATS
+ { SGI_KAIO_STATS, "SGI_KAIO_STATS" },
+#endif
+#ifdef SGI_INITIAL_PT_SPROC
+ { SGI_INITIAL_PT_SPROC, "SGI_INITIAL_PT_SPROC" },
+#endif
{ 0, NULL },
};
@@ -829,7 +1116,12 @@
{ NFSMNT_TIMEO, "NFSMNT_TIMEO" },
{ NFSMNT_RETRANS, "NFSMNT_RETRANS" },
{ NFSMNT_HOSTNAME, "NFSMNT_HOSTNAME" },
+#ifdef NFSMNT_NOINT /* IRIX 6 */
+ { NFSMNT_NOINT, "NFSMNT_NOINT" },
+#endif
+#ifdef NFSMNT_INT /* IRIX 5 */
{ NFSMNT_INT, "NFSMNT_INT" },
+#endif
{ NFSMNT_NOAC, "NFSMNT_NOAC" },
{ NFSMNT_ACREGMIN, "NFSMNT_ACREGMIN" },
{ NFSMNT_ACREGMAX, "NFSMNT_ACREGMAX" },
@@ -840,6 +1132,12 @@
{ NFSMNT_LOOPBACK, "NFSMNT_LOOPBACK" },
{ NFSMNT_BASETYPE, "NFSMNT_BASETYPE" },
{ NFSMNT_NAMEMAX, "NFSMNT_NAMEMAX" },
+#ifdef NFSMNT_SHORTUID /* IRIX 6 */
+ { NFSMNT_SHORTUID, "NFSMNT_SHORTUID" },
+#endif
+#ifdef NFSMNT_ASYNCNLM /* IRIX 6 */
+ { NFSMNT_ASYNCNLM, "NFSMNT_ASYNCNLM" },
+#endif
{ 0, NULL },
};