1 .\" Copyright (c) 1980, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)write.2 8.5 (Berkeley) 4/2/94
33 .\" $FreeBSD: src/lib/libc/sys/write.2,v 1.12.2.7 2001/12/14 18:34:02 ru Exp $
50 .Fn write "int d" "const void *buf" "size_t nbytes"
52 .Fn writev "int d" "const struct iovec *iov" "int iovcnt"
54 .Fn pwrite "int d" "const void *buf" "size_t nbytes" "off_t offset"
59 of data to the object referenced by the descriptor
61 from the buffer pointed to by
64 performs the same action, but gathers the output data
67 buffers specified by the members of the
69 array: iov[0], iov[1], ..., iov[iovcnt\|-\|1].
71 performs the same function, but writes to the specified position in
72 the file without modifying the file pointer.
78 structure is defined as:
80 .Bd -literal -offset indent -compact
82 char *iov_base; /* Base address. */
83 size_t iov_len; /* Length. */
89 entry specifies the base address and length of an area
90 in memory from which data should be written.
92 will always write a complete area before proceeding
95 On objects capable of seeking, the
98 given by the pointer associated with
104 the pointer is incremented by the number of bytes which were written.
106 Objects that are not capable of seeking always write from the current
107 position. The value of the pointer associated with such an object
110 If the real user is not the super-user, then
112 clears the set-user-id bit on a file.
113 This prevents penetration of system security
116 a writable set-user-id file
117 owned by the super-user.
119 When using non-blocking I/O on objects such as sockets that are subject
124 may write fewer bytes than requested;
125 the return value must be noted,
126 and the remainder of the operation should be retried when possible.
128 Upon successful completion the number of bytes which were written
129 is returned. Otherwise a -1 is returned and the global variable
131 is set to indicate the error.
137 will fail and the file pointer will remain unchanged if:
141 is not a valid descriptor open for writing.
143 An attempt is made to write to a pipe that is not open
144 for reading by any process.
146 An attempt is made to write to a socket of type
148 that is not connected to a peer socket.
150 An attempt was made to write a file that exceeds the process's
151 file size limit or the maximum file size.
155 or data to be written to the file
156 points outside the process's allocated address space.
158 The pointer associated with
162 There is no free space remaining on the file system
165 The user's quota of disk blocks on the file system
166 containing the file has been exhausted.
168 An I/O error occurred while reading from or writing to the file system.
170 A signal interrupted the write before it could be completed.
172 The file was marked for non-blocking I/O,
173 and no data could be written immediately.
178 may return one of the following errors:
180 .It Bq Er EDESTADDRREQ
181 The destination is no longer available when writing to a
183 domain datagram socket on which
185 had been used to set a destination address.
188 was less than or equal to 0, or greater than
201 array overflowed a 32-bit integer.
203 The mbuf pool has been completely exhausted when writing to a socket.
208 call may also return the following errors:
211 The specified file offset is invalid.
213 The file descriptor is associated with a pipe, socket, or FIFO.
224 function call is expected to conform to
230 functions are expected to conform to
245 function call appeared in