2 * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by John Birrell.
16 * 4. Neither the name of the author nor the names of any co-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 JOHN BIRRELL 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 AUTHOR 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 * $FreeBSD: src/lib/libc_r/uthread/uthread_write.c,v 1.16.2.6 2002/11/12 20:46:53 archie Exp $
33 * $DragonFly: src/lib/libc_r/uthread/uthread_write.c,v 1.6 2007/01/08 21:41:53 dillon Exp $
36 #include <sys/types.h>
37 #include <sys/fcntl.h>
42 #include "pthread_private.h"
45 _write(int fd
, const void *buf
, size_t nbytes
)
47 struct pthread
*curthread
= _get_curthread();
54 /* POSIX says to do just this: */
58 /* Lock the file descriptor for write: */
59 if ((ret
= _FD_LOCK(fd
, FD_WRITE
, NULL
)) == 0) {
60 /* Get the read/write mode type: */
61 type
= _thread_fd_getflags(fd
) & O_ACCMODE
;
63 /* Check if the file is not open for write: */
64 if (type
!= O_WRONLY
&& type
!= O_RDWR
) {
65 /* File is not open for write: */
67 _FD_UNLOCK(fd
, FD_WRITE
);
71 /* Check if file operations are to block */
72 blocking
= ((_thread_fd_getflags(fd
) & O_NONBLOCK
) == 0);
75 * Loop while no error occurs and until the expected number
76 * of bytes are written if performing a blocking write:
79 /* Perform a non-blocking write syscall: */
80 n
= __sys_extpwrite(fd
, buf
+ num
, nbytes
- num
, O_FNONBLOCKING
, -1);
82 /* Check if one or more bytes were written: */
85 * Keep a count of the number of bytes
91 * If performing a blocking write, check if the
92 * write would have blocked or if some bytes
93 * were written but there are still more to
96 if (blocking
&& ((n
< 0 && (errno
== EWOULDBLOCK
||
97 errno
== EAGAIN
)) || (n
> 0 && num
< nbytes
))) {
98 curthread
->data
.fd
.fd
= fd
;
99 _thread_kern_set_timeout(NULL
);
101 /* Reset the interrupted operation flag: */
102 curthread
->interrupted
= 0;
104 _thread_kern_sched_state(PS_FDW_WAIT
,
108 * Check if the operation was
109 * interrupted by a signal
111 if (curthread
->interrupted
) {
113 /* Return partial success: */
116 /* Return an error: */
123 * If performing a non-blocking write,
124 * just return whatever the write syscall did:
126 } else if (!blocking
) {
127 /* A non-blocking call might return zero: */
132 * If there was an error, return partial success
133 * (if any bytes were written) or else the error:
143 /* Check if the write has completed: */
144 } else if (num
>= nbytes
)
145 /* Return the number of bytes written: */
148 _FD_UNLOCK(fd
, FD_WRITE
);
154 write(int fd
, const void *buf
, size_t nbytes
)
158 _thread_enter_cancellation_point();
159 ret
= _write(fd
, buf
, nbytes
);
160 _thread_leave_cancellation_point();