• Aucun résultat trouvé

SIGST ACK(2) SIGSTACK(2)

Dans le document HP-UX Reference (Page 191-200)

User-defined signal stacks do not grow automatically, as does the normal process stack. If a signal stack overflows, the resulting behavior of the process is undefined.

Methods for calculating the required stack size are not well developed.

Leaving the context of a service routine abnormally, such as by longjmp (on setjmp(3C), might remove the guarantee that the ordinary execution of the program does not extend into the guaranteed space. It might also cause the program to lose forever its ability to automatically increase the stack size, causing the program to be limited to the guaranteed space.

DEPENDENCIES Series 300

Stack addresses grow from high addresses to low addresses; therefore the signal stack address provided to sigstack(2) should point to the end of the space to be used for the sig-nal stack. This address should be aligned to a four-byte boundary.

Series 800

AUTHOR

Stack addresses grow from low addresses to high addresses; therefore the signal stack address provided to sigstack(2) should point to the beginning of the space to be used for the signal stack. This address should be aligned to an eight-byte boundary.

Sigstack was developed by HP and the University of California, Berkeley.

SEE ALSO

sigspace(2), setjmp(3C).

HP-UX Release 7.0: September 1989 - 2 - (Section 2) 167

SIGSUSPEND(2) Series 300 Only SIGSUSPEND(2)

NAME

sigsuspend - wait for a signal SYNOPSIS

#inc1ude <signal.h>

int sigsuspend (sigmask) sigseCt *sigmask ; DESCRIPTION

Sigsuspend replaces the process's current signal mask with the set of signals pointed to by sig-mask, and then suspends the process until delivery of a signal that either executes a signal handler or terminates the process.

If the signal terminates the process, sigsuspend never returns. If the signal executes a signal handler, sigsuspend returns after the signal handler returns, and restores the signal mask to the set that existed prior to the sigsuspend call.

It is impossible to block the SIGKILL or SIGSTOP signal. This is enforced by the system without causing an error to be indicated.

RETURN VALUE

Since sigsuspend suspends a process indefinitely, there is no successful completion return value.

If a return occurs, a value of -1 is returned and errno is set to indicate the error.

ERRORS

Sigsuspend fails if one or more of the following is true:

[EINTR]

[EFAULT]

AUTHOR

Sigsuspend was interrupted by receipt of a signal.

Sigmask points to an invalid address. The reliable detection of this error is implementation dependent.

Sigsuspend was derived from the IEEE Standard POSIX 1003.1-1988.

SEE ALSO

sigaction(2), sigpending(2), sigprocmask(2), sigsetops(3C), signal(5).

STANDARDS CONFORMANCE

sigsuspend: XPG3, POSIX.1, FIPS 151-1

168 (Section 2) - 1 - HP-UX Release 7.0: September 1989

SIGVECTOR(2) SIGVECTOR(2)

NAME

sigvector - software signal facilities SYNOPSIS along with those for sighlock(2), sigsetmask(2), sigpause(2), and sigspace(2), defines an alternate mechanism for handling these signals that assures the delivery of signals and integrity of signal handling procedures. The facilities described here should not be used in the same program as signal(2).

With the sigvector interface, signal delivery resembles the occurrence of a hardware interrupt:

the signal is blocked from further occurrence, the current process context is saved, and a new one is built. A process can specify a handler function to be invoked when a signal is delivered, or specify that a signal should be blocked or ignored. A process can also specify that a default action should be taken by the system when a signal occurs. It is possible to ensure a minimum amount of stack space for processing signals using the sigspace(2) call.

All signals have the same priority. Signal routines execute with the signal that causes their arranged so that if the signal handling routine returns normally, the process resumes execution in the same context as before the signal's delivery. If the process wishes to resume in a different context, it must arrange to restore the previous context itself.

When a signal is delivered to a process, a new signal mask is installed for the duration of the process' signal handler (or until a sighlock(2) or sigsetmask(2) call is made). This mask is formed by taking the current signal mask, computing the bitwise inclusive OR with the value of vec .sv _mask (see below) from the most recent call to sigvector for the signal to be delivered, and, unless the SV _RESETHAND flag is set (see below), setting the bit corresponding to the signal being delivered. When the user's signal handler returns normally, the original mask is restored.

Sigvector assigns a handler for the signal specified by sig. Vec and ovec are pointers to sigvec structures that include the following elements:

void (*sv _handler)O;

long sv _mask;

long sv _flags;

HP-UX Release 7.0: September 1989 - 1 - (Section 2) 169

SIGVECTOR(2) SIGVECTOR(2)

Use the sigspaee allocated space Use the Berkeley signal semantics Use the semantics of signal(2)

If SV _ONSTACK is set, the system uses, or permits the use of, the space reserved for signal processing in the sigspaee(2) system call.

If SV _BSDSIC is set, the signal is given the Berkeley semantics. The following signal is affected by this flag: (see above) and whether the handler is reset after a signal is caught (see below).

If SV _RESETHAND is not set, once a signal handler is installed, it remains installed until usually results in termination of the process. If sv _handler is SIC_ICN the signal is usually sub-sequently ignored, and pending instances of the signal are discarded. The exact meaning of SIC_DFL and SIC_ICN for each signal is discussed in signal(5).

Certain system calls can be interrupted by a signal; all other system calls complete before the signal is serviced. The sep pointer described in signal(5) is never null if sigveetor is supported.

Sep points to a machine-dependent sigeontext structure. All implementations of this structure include the fields:

int scsyscall;

char sc_syscaILaction;

The value SYS_NOTSYSCALL for the scsyseall field indicates that the signal is not interrupting a system call; any other value indicates which system call it is interrupting.

If a signal that is being caught occurs during a system call that can be interrupted, the signal no data. If some data had been transferred, the operation is considered to have completed with a partial transfer, and the scsyseall value is SYS_NOTSYSCALL. Other values are undefined

170 (Section 2) - 2 - HP-UX Release 7.0: September 1989

SIGVECTOR(2) SIGVECTOR(2)

and reserved for future use.

Exiting the handler abnormally (such as with longjmp on setjmp(3C)) aborts the call, leaving the user responsible for the context of further execution. The value of scp- >sc_syscalCaction is ignored when the value of scp->sc_syscall is SYS_NOTSYSCALL. Scp->sc_syscall_action is always initialized to SIG_RETURN before invocation of a signal handler. When an system call that can be interrupted is interrupted by multiple signals, if any signal handler returns a value of SIG_RETURN in scp->sc_syscalCaction, all subsequent signal handlers are passed a value of SYS_NOTSYSCALL in scp->sc_syscaii.

Note that calls to read(2), write(2) or ioctl(2) on fast devices (disks) cannot be interrupted, but I/O to a slow device (teletype) can be interrupted. Other system calls, such as those used for networking, also can be interrupted on some implementations. In these cases additional values can be specified for scp->sc_syscall. Programs that look at the values of scp->scsyscall always should compare them to these symbolic constants; the numerical values represented by these constants might vary among implementations. System calls that can be interrupted and their corresponding values for scp->sc_syscall are listed below:

Call sc_syscall value

read (slow devices) SYS_READ readv (slow devices) SYS_READV write (slow devices) SYS_ WRITE writev (slow devices) SYS_ WRITE V open (slow devices) SYS_OPEN ioctl (slow requests) SYS_IOCTL

wait SYS_WAIT different meaning for the symbol SYS_OPEN (see limits(5)).

After a fork(2) or vfork(2) system call, the child inherits all signals, the signal mask, and the reserved signal stack space.

Exec(2) resets all caught signals to the default action; ignored signals remain ignored, the signal mask remains unchanged, and the reserved signal stack space is released.

The mask specified in vec is not allowed to block Signals that cannot be ignored, as defined in signal (5). This is enforced silently by the system.

If sigvector is called to catch SIGCLD in a process that currently has terminated (zombie) SIGCLD is blocked in the handler result in delivery of only a single signal. Note that the func-tion must reinstall itself after it has called wait(2) or wait3(2). Otherwise the presence of the child that caused the original signal always causes another signal to be delivered.

HP-UX Release 7.0: September 1989 - 3 - (Section 2) 171

SIGVECTOR(2) SIGVECTOR(2)

RETURN VALUE

A 0 value indicates that the call succeeded. A -1 return value indicates an error occurred and errno is set to indicate the reason.

ERRORS

Sigvector fails and no new signal handler is installed if one of the following occurs:

[EFAULT] Either vec or ovec points to memory that is not a valid part of the process ad-dress space. The reliable detection of this error is implementation dependent.

[EINVAL]

[EINVAL]

WARNINGS

Sig is not a valid signal number.

An attempt is made to ignore or supply a handler for a signal that cannot be caught or ignored; see signal(5).

Restarting a select(2) call can sometimes cause unexpected results. If the select call has a timeout specified, the timeout is restarted with the call, ignoring any portion that had elapsed prior to interruption by the signal. Normally this simply extends the timeout and is not a prob-lem. However, if a handler repeatedly catches signals and the timeout specified to select is longer than the time between those signals, restarting the select call effectively renders the timeout infinite.

Sigvector should not be used in conjunction with the facilities described under sigset(2V).

AUTHOR

Sigvector was developed by HP and the University of California, Berkeley.

SEE ALSO

kil1(I), kil1(2), ptrace(2), sigblock(2), signal(2), sigpause(2), sigsetmask(2), sigspace(2), setjmp(3C), signal(5), termio(7).

172 (Section 2) - 4 - HP-UX Release 7.0: September 1989

STAT(2) STAT(2)

Stat obtains information about the named file.

Path points to a path name naming a file. Read, write, or execute permission of the named file is not required, but all directories listed in the path name leading to the file must be searchable.

Similarly, fstat obtains information about an open file known by the file descriptor fildes, obtained from a successful open(2), creat(2), dup(2), fcntl (2), or pipe (2) system call.

Lstat is similar to stat except when the named file is a symbolic link, in which case lstat returns the information about the link, while stat returns information about the file to which the link points.

Buf is a pointer to a stat structure into which information is placed concerning the file.

The contents of the structure stat pointed to by buf include the following members. Note that

STAT(2) zero on a named pipe (FIFO special) file that contains data.

Field indicating when file status was last changed. Changed by the fol-lowing system calls: chmod(2), chown(2), creat(2), [chmod(2), [chown(2), truncate(2), [truncate (on truncate(2», link(2), mknod(2), pipe(2), prea1-10c(2), rename(2), setacl(2), unlink(2), utime(2), write(2), and writev (on access permission. See mknod(2).

For ordinary users, the least significant nine bits consist of the file's permission bits modified to reflect the access granted or denied to the caller by optional entries in the file's access control list.

For superusers, the least significant nine bits are the file's access per-mission bits. In addition, the S_IXUSR (execute by owner) mode bit is set if the following conditions are met:

-- the file is a regular file,

-- no permission execute bits are set, and

-- an execute bit is set in one or more of the file's optional access control list entries.

The write bit is not cleared for a file on a read-only file system or a shared-text program file that is being executed. However, getaccess(2) clears this bit under these conditions.

NETWORKING FEATURES RFA

The contents of the structure stat pointed to by but also include the following members:

uint st_remote:1; j* Set if file is remote * j sCnetdev and st_netino identify the appropriate network special file;

174 (Section 2) - 2 - HP-UX Release 7.0: September 1989

STAT(2) STAT(2)

otherwise these fields are zero.

RETURN VALUE

Search permission is denied for a component of the path prefix.

But or path points to an invalid address. The reliable detection of this error is implementation dependent.

Too many symbolic links were encountered in translating the path name.

[ENAMETOOLONG]

The length of the specified path name exceeds PATH_MAX bytes, or the length of a component of the path name exceeds NAME_MAX bytes while _POSIX_NO_ TRUNC is in effect.

Fstat fails if any of the following is true:

The contents of the stat structure include the following additional members:

cnode_t st_cnode; /* Cnode ID of machine * / number mayor may not be the device number for the device con-taining the volume. Device numbers are not unique throughout a cluster, but the value of st_dev is guaranteed to be unique among all volumes currently mounted in the file system. The device number for the volume can always be found in the field sLrealdev, which together with sLcnode fully specifies the dev-ice containing the volume.

The sLuid and sLgid fields are set to -1 if they are not specified on the disk for a given file.

RFA and NFS

The sCbasemode and scacl fields are zero on files accessed remotely.

HP-UX Release 7.0: September 1989 - 3 - (Section 2) 175

STAT(2) STAT(2)

AUTHOR

Stat and fstat were developed by AT&T. Lstat was developed by the University of California, Berkeley.

SEE ALSO

touch(l), chmod(2), chown(2), creat(2), link(2), mknod(2), pipe(2), read(2), rename(2), setacl(2), time(2), truncate(2), unlink(2), utime(2), write(2), acl(5), stat(5).

STANDARDS CONFORMANCE

stat: SVID2, XPG2, XPG3, POSIX.1, FIPS 151-1 fstat: SVID2, XPG2, XPG3, POSIX.1, FIPS 151-1

176 (Section 2) - 4 - HP-UX Release 7.0: September 1989

Dans le document HP-UX Reference (Page 191-200)