Index Index for
Section 2
Index Alphabetical
listing for S
Bottom of page Bottom of
page

setsysinfo(2)

NAME

setsysinfo - Set system information

SYNOPSIS

#include <sys/sysinfo.h> #include <machine/hal_sysinfo.h> setsysinfo(op, buffer, nbytes, arg, flag) unsigned long op; datatype *buffer; unsigned long nbytes; datatype *arg; unsigned long flag;

PARAMETERS

op Specifies the operation to be performed. Values for op are defined in the <sys/sysinfo.h> and <machine/hal_sysinfo.h> header files. See the DESCRIPTION for the operations you can specify. The op value determines which of the remaining parameters specify required information and, for the buffer or arg (sometimes both) parameters, what datatype should be. buffer, nbytes The buffer argument specifies the location where the system information is stored. The nbytes argument specifies the size of buffer. When the buffer and nbytes arguments are not required for a given op, they should be set to NULL. arg, flag The arg and flag arguments can be used by certain op values to store information. When the flag argument or both the argand flag arguments are not required for a given op, they should be set to NULL.

DESCRIPTION

The setsysinfo system call modifies system information. The op argument specifies the operation to be performed. Values for op are defined in the <sys/sysinfo.h> and <machine/hal_sysinfo.h> header files. Possible op values are: SSI_COREDIR This operation sets the directory where a core file is created or disables dump creation. For use with SSI_COREDIR, the arg parameter passes the only significant information and is defined as type char *. The core file dumped by a privileged application contains sensitive system information; therefore, it is important that privileged applications ensure that core files are not written to unprotected locations. For an example of using SSI_COREDIR, see EXAMPLES. For information about enabling or disabling application core dumps on a systemwide basis, see the descriptions of the dump_cores and dump_setugid_cores attributes in sys_attrs_proc(5). SSI_FD_NEWMAX For support of up to 64K file descriptors per process. If the flag is set to one, the utask bit is set and support for up to 64K file descriptors is enabled. Additionally, the process's hard file limit is raised to 64K. If the flag is set to zero, the utask bit is cleared and support for up to 64K file descriptors is disabled. The process's hard file limit returns to the default maximum of 4K. If the process is using more than 4K file descriptors, the process's hard file limit is not changed: [EINVAL] is returned. If either the process's hard or soft limit is above 4K, that limit is set to 4K. SSI_NVPAIRS This operation uses pairs of values or their named equivalents to modify system behavior. The buffer variable is an array of paired values (or their named equivalents). One member of a pair is from a set of system names defined in the <sys/sysinfo.h> header file. The other member can be one of the following: A_BSD, A_POSIX, A_SYSV, a system name defined as a flag for UAC (unaligned access control), or an IEC (Instruction Emulation Control) flag in the <sys/proc.h> header file and set on a per task basis. The following UAC flags can be specified in any combination: UAC_NOPRINT, UAC_NOFIX, and UAC_SIGBUS. UAC_NOPRINT suppresses the printing of the unaligned error message to the user. UAC_NOFIX instructs the operating system not to fix the unaligned access fault. UAC_SIGBUS causes a SIGBUS signal to be delivered to the thread. The following IEC flags can be specified in any combination: IEC_VERBOSE, IEC_NOPRINT, and IEC_NOEMUL. IEC_VERBOSE prints the instruction emulated message for each instruction emulation, not just the first. IEC_NOPRINT suppresses printing of the instruction emulated message to the user. IEC_NOEMUL instructs the operating system to deliver a SIGILL signal to the user instead of emulating instructions not supported by the host processor. UAC and IEC settings are inherited by a forked process so that the process will have the same UAC and IEC characteristics as its parent. Possible name values for the first member, are: SSIN_NFSPORTMON Determines whether incoming NFS traffic is originating at a privileged port or not. Its paired value must be 0 or 1. SSIN_PROG_ENV Reserved for future use. SSIN_UACSYS This is a system-specified value that accepts the UAC_NOPRINT flag only, as its paired value, even if other UAC flags are specified. Accordingly, it toggles an "unaligned access fixup" message. Use of this value is restricted to the superuser and supersedes a user setting that requests printing. SSIN_UACPARNT A value that is set in the current process's parent proc structure. This value is paired with the UAC flags UAC_NOPRINT, UAC_NOFIX, and UAC_SIGBUS, specified in any combination with inclusive OR. Accordingly, it toggles printing of an "unaligned access fixup" message, fixing of UAC faults, and delivery of a SIGBUS signal to the thread. This value is inherited across forks and execs. If parent is init, the system call returns [EPERM]. SSIN_UACPROC A value that is set in the proc structure. This value is paired with UAC flags UAC_NOPRINT, UAC_NOFIX, and UAC_SIGBUS, specified in any combination, with inclusive OR. Accordingly, it toggles printing of an "unaligned access fixup" message, fixing of UAC faults, and delivery of a SIGBUS signal to the thread. SSIN_IECSYS This is a system-specified value that accepts only the IEC_NOPRINT flag as its paired value, even if other IEC flags are specified. Accordingly, it toggles an "instruction emulated" message. Use of this value is restricted to the superuser and supersedes a user setting that requests printing. SSIN_IECPARNT A value that is set in the current process's parent proc structure. This value is paired with the IEC flags IEC_VERBOSE, IEC_NOPRINT, and IEC_NOEMUL, specified in any combination with inclusive OR. Accordingly, it toggles verbose printing of "instruction emulated", not printing "instruction emulated", and not emulating instructions. This value is inherited across forks and execs. If the parent is init, the system call returns [EPERM]. SSIN_IECPROC A value that is set in the proc structure. This value is paired with the IEC flags IEC_VERBOSE, IEC_NOPRINT, and IEC_NOEMUL, specified in any combination, with inclusive OR. Accordingly, it toggles verbose printing of "instruction emulated", not printing "instruction emulated", and not emulating instructions. The value is a legal value for name. The nbytes argument defines the number of pairs in buffer. The arg and flag arguments are not used. SSI_PROM_ENV Sets the value of a named console environment variable. If the variable is disabled due to a known firmware problem, then errno will contain [EACCES]. buffer Specifies the location of the string value. arg A string containing the name of the console environment variable. flag If the flag contains PROM_CONVERT_TYPE (defined in <prom.h>), then the kernel does value conversion. Device values should be specified as a fully qualified path to a device special file. For network devices, the controller name (e.g. tu2) should be provided. The kernel will convert these device references to the native console bootstring format. Integer values should be specified as strings, which the kernel will convert to binary form. SSI_PROM_SAVE_ENV Saves the values of all console environment variables to non-volatile storage. If saving is disabled due to a known firmware problem, then errno will contain [EACCES]. SSI_ZERO_STRUCT Each member of a system structure is set to zero. The arg defines the structure type. Possible values for arg are: SSIS_NFS_CLSTAT NFS client statistics. SSIS_NFS_SVSTAT NFS server statistics. SSIS_RPC_STAT RPC statistics. The flag argument is used for a particular arg value, to further define the operation or a resultant action to be performed. The buffer and nbytes arguments are not used. Permission checking is done on a structure-by-structure basis. SSI_SET_STRUCT Each member of a system structure is set to a supplied value. The arg defines the structure type. Possible values for arg are as defined for SSI_STRUCT_ZERO. The flag argument is used for a particular arg value, to further define the operation or a resultant action to be performed. The buffer argument is the address of a structure of the appropriate type that contains the desired values. The nbytes argument specifies the amount of data to be transferred that is stored at buffer.

RETURN VALUES

A zero (0) is returned if the call succeeds. If the call fails, -1; is returned, and the global variable errno is set to indicate the error.

ERRORS

[EFAULT] Either buffer or arg causes an illegal address to be referenced. [EINVAL] The op, arg, or flag argument is invalid. The process has more than 4K file descriptors active when a call is issued to disable support for more than 4K file descriptors. [EPERM] Permission is denied for the operation requested.

EXAMPLES

1. #include <sys/sysinfo.h>; #include <machine/hal_sysinfo.h>; #include <sys/proc.h>; &. int buf[2], val, arg; . /* Don't print the warning to the user */ buf[0] = SSIN_UACPROC; buf[1] = UAC_NOPRINT; error = setsysinfo(SSI_NVPAIRS, buf, 1, 0, 0); . . . /* Deliver a SIGBUS signal and don't print the warning */ buf[0] = SSIN_UACPROC; buf[1] = UAC_SIGBUS | UAC_NOPRINT; error = setsysinfo(SSI_NVPAIRS, buf, 1, 0, 0); 2. The following example shows that you can pass more than one pair of values to the SSI_NVPAIRS call. Notice that members of a pair are contiguous, and an SSI_* value appears in the even number position beginning with array position [0]. buf[0] = SSIN_UACPARNT; buf[1] = UAC_NOPRINT; buf[2] = SSIN_NSFPORTMON; buf[3] = 1; if (setsysinfo(SSI_NVPAIRS, buf, 2, 0, 0) < 0) { perror("setsysinfo"); return; } 3. In the following example, the setsysinfo operation SSI_PROM_ENV sets the value of a named console environment variable: #include <machine/prom.h>; char evname[]="boot_dev"; char evval[]="/dev/rz0a"; /* or something like "tu0" */ int status; status = setsysinfo(SSI_PROM_ENV,evval, strlen(evval)+1, evname, PROM_CONVERT_TYPE; 4. The following example shows how to use SSI_COREDIR to control the directory location where core files might be written: #include <sys/signal.h> #include <sys/sysinfo.h> #include <stdlib.h> main (argc, argv) int argc; char *argv[]; { char *coredir; /* * fetch core directory value from environment variable */ if (!(coredir = getenv("COREDIR"))) { printf("please \"setenv COREDIR\" to desired core directory\n"); exit(1); } /* * set core directory */ if (setsysinfo(SSI_COREDIR, NULL, 0, coredir, 0) == -1) { perror("setsysinfo(SSI_COREDIR)"); exit(1); } /* * Now kill the process. If core dumps are allowed, the core file will be * written to the specified core directory. */ kill(getpid(), SIGSEGV); exit(1); }

SEE ALSO

Commands: iec(1), uac(1) Functions: getsysinfo(2) Files: signal(4)

Index Index for
Section 2
Index Alphabetical
listing for S
Top of page Top of
page