DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

write(S)


write, writev -- write on a file

Synopsis

   #include <unistd.h>
   

ssize_t write(int fildes, const void *buf, size_t nbyte);

#include <sys/types.h> #include <sys/uio.h>

ssize_t writev(int fildes, const struct iovec *iov, int iovcnt);

Description

write attempts to write nbyte bytes from the buffer pointed to by buf to the file associated with fildes. If nbyte is 0 and the file is a regular file, write returns 0 and has no other results. If the value of nbyte is greater than {SSIZE_MAX} the result is undefined. fildes is a file descriptor obtained from a creat, open, dup, fcntl, pipe, or ioctl system call.

writev performs the same action as write, but gathers the output data from the iovcnt buffers specified by the members of the iov array: iov[0], iov[1], ..., iov[iovcnt-1]. The iovcnt is valid only if greater than 0 and less than or equal to {MAXIOVCNT}.

For writev, the iovec structure contains the following members:

   void	*iov_base;
   size_t	iov_len;

Each iovec entry specifies the base address and length of an area in memory from which data should be written. writev always writes a complete area before proceeding to the next.

On devices capable of seeking, the writing of data proceeds from the position in the file indicated by the file pointer. On return from write, the file pointer is incremented by the number of bytes actually written. On a regular file, if the incremented file pointer is greater than the length of the file, the length of the file is set to the new file pointer.

On devices incapable of seeking, writing always takes place starting at the current position. The value of a file pointer associated with such a device is undefined.

If the O_APPEND flag of the file status flags is set, the file pointer is set to the end of the file before each write.

For regular files, if the O_SYNC flag of the file status flags is set, write does not return until both the file data and file status have been physically updated. This function is for special applications that require extra reliability at the cost of performance. For block special files, if O_SYNC is set, write does not return until the data has been physically updated.

A write to a regular file is blocked if mandatory file/record locking is set (see chmod(S)), and there is a record lock owned by another process on the segment of the file to be written:

If a write requests that more bytes be written than there is room for--for example, if the write would exceed the process file size limit (see getrlimit(S) and ulimit(S)), the system file size limit, or the free space on the device--only as many bytes as there is room for will be written. For example, suppose there is space for 20 bytes more in a file before reaching a limit. A write of 512-bytes returns 20. The next write of a non-zero number of bytes gives a failure return (except as noted for pipes and FIFO below).

Write requests to a pipe or FIFO are handled the same as a regular file with the following exceptions:

When attempting to write to a file descriptor (other than a pipe or FIFO) that supports nonblocking writes and cannot accept the data immediately:

For STREAMS files (see intro(S)), the operation of write is determined by the values of the minimum and maximum nbyte range (``packet size'') accepted by the stream. These values are contained in the topmost stream module. Unless the user pushes the topmost module (see I_PUSH in streamio(HW)), these values cannot be set or tested from user level. If nbyte falls within the packet size range, nbyte bytes are written. If nbyte does not fall within the range and the minimum packet size value is 0, write breaks the buffer into maximum packet size segments prior to sending the data downstream (the last segment may be smaller than the maximum packet size). If nbyte does not fall within the range and the minimum value is non-zero, write fails and sets errno to ERANGE. Writing a zero-length buffer (nbyte is 0) to a STREAMS device sends a zero-length message with 0 returned. However, writing a zero-length buffer to a pipe or FIFO sends no message and 0 is returned. The user program may issue the I_SWROPT ioctl(S) to enable zero-length messages to be sent across the pipe or FIFO (see streamio(HW)).

When writing to a stream, data messages are created with a priority band of 0. When writing to a stream that is not a pipe or FIFO:

Return values

On success, write and writev return the number of bytes actually written and mark for update the ``st_ctime'' and ``st_mtime'' fields of the file. On failure, write and writev return -1 and set errno to identify the error.

Errors

In the following conditions, write and writev fail and set errno to:

EAGAIN
Mandatory file/record locking is set, O_NDELAY or O_NONBLOCK is set, and there is a blocking record lock.

EAGAIN
Total amount of system memory available when reading via raw I/O is temporarily insufficient.

EAGAIN
An attempt is made to write to a stream that cannot accept data with the O_NDELAY or O_NONBLOCK flag set.

EAGAIN
If a write to a pipe or FIFO of {PIPE_BUF} bytes or less is requested and less than nbytes of free space is available.

EBADF
fildes is not a valid file descriptor open for writing.

EDEADLK
The write was going to go to sleep and cause a deadlock to occur.

EFAULT
buf points outside the process's allocated address space.

EFBIG
An attempt is made to write a file that exceeds the process's file size limit or the maximum file size (see getrlimit(S) and ulimit(S)).

EFBIG
The file is a regular file, nbyte is greater than 0, and the starting position is greater than or equal to the offset maximum established in the open file descriptor associated with fildes. There is no data transfer.

EINTR
A signal was caught during the write system call.

EINVAL
An attempt is made to write to a stream linked below a multiplexor.

EIO
The process is in the background and is attempting to write to its controlling terminal whose TOSTOP flag is set; the process is neither ignoring nor blocking SIGTTOU signals, and the process group of the process is orphaned.

EIO
fildes points to a device special file that is in the closing state.

ENOLCK
The system record lock table was full, so the write could not go to sleep until the blocking record lock was removed.

ENOLINK
fildes is on a remote machine and the link to that machine is no longer active.

ENOSR
An attempt is made to write to a stream with insufficient STREAMS memory resources available in the system.

ENOSPC
During a write to an ordinary file, there is no free space left on the device.

ENXIO
The device associated with the file descriptor is a block-special or character-special file and the file-pointer value is out of range.

EPIPE and SIGPIPE signal
An attempt is made to write to a pipe that is not open for reading by any process.

EPIPE
An attempt is made to write to a FIFO that is not open for reading by any process.

EPIPE
An attempt is made to write to a pipe that has only one end open.

ERANGE
An attempt is made to write to a stream with nbyte outside specified minimum and maximum write range, and the minimum value is non-zero

ENOLCK
Enforced record locking was enabled and {LOCK_MAX} regions are already locked in the system.

In addition, in the following conditions writev fails and sets errno to:


EINVAL
iovcnt was less than or equal to 0, or greater than 16.

EINVAL
An iov_len value in the iov array was negative.

EINVAL
The sum of the iov_len values in the iov array overflowed a 32-bit integer.

A write to a STREAMS file can fail if an error message has been received at the stream head. In this case, errno is set to the value included in the error message.

After carrier loss, M_HANGUP is set, and a subsequent write will return -1 with errno set to EIO. To write after disconnecting and reconnecting the line, set the CLOCAL flag to tell the driver to ignore the state of the line and the driver will not send M_HANGUP to the stream head. If CLOCAL is not set, and hangup occurs, the application is responsible for re-establishing the connection.

References

creat(S), dup(S), fcntl(S), getrlimit(S), intro(S), lseek(S), open(S), pipe(S), pwrite(S), read(S), types(M), ulimit(S)

Notices

If fildes refers to a socket, write is equivalent to send(SSC) with no flags set.

Considerations for threads programming

Open file descriptors are a process resource and available to any sibling thread; if used concurrently, actions by one thread can interfere with those of a sibling.

While one thread is blocked, siblings might still be executing.


© 2005 The SCO Group, Inc. All rights reserved.
SCO OpenServer Release 6.0.0 - 01 June 2005