diff(1): Commit our patches to contrib/ and get rid of -I-.
[dragonfly.git] / lib / libc_r / uthread / uthread_write.c
blob859fa18475c30a5f28a08b85efec7a10efd90192
1 /*
2 * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
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
30 * SUCH DAMAGE.
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>
38 #include <sys/uio.h>
39 #include <errno.h>
40 #include <unistd.h>
41 #include <pthread.h>
42 #include "pthread_private.h"
44 ssize_t
45 _write(int fd, const void *buf, size_t nbytes)
47 struct pthread *curthread = _get_curthread();
48 int blocking;
49 int type;
50 ssize_t n;
51 ssize_t num = 0;
52 ssize_t ret;
54 /* POSIX says to do just this: */
55 if (nbytes == 0)
56 return (0);
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: */
66 errno = EBADF;
67 _FD_UNLOCK(fd, FD_WRITE);
68 return (-1);
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:
78 while (ret == 0) {
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: */
83 if (n > 0)
85 * Keep a count of the number of bytes
86 * written:
88 num += n;
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
94 * write:
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,
105 __FILE__, __LINE__);
108 * Check if the operation was
109 * interrupted by a signal
111 if (curthread->interrupted) {
112 if (num > 0) {
113 /* Return partial success: */
114 ret = num;
115 } else {
116 /* Return an error: */
117 errno = EINTR;
118 ret = -1;
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: */
128 ret = n;
129 break;
132 * If there was an error, return partial success
133 * (if any bytes were written) or else the error:
135 } else if (n <= 0) {
136 if (num > 0)
137 ret = num;
138 else
139 ret = n;
140 if(n == 0)
141 break;
143 /* Check if the write has completed: */
144 } else if (num >= nbytes)
145 /* Return the number of bytes written: */
146 ret = num;
148 _FD_UNLOCK(fd, FD_WRITE);
150 return (ret);
153 ssize_t
154 write(int fd, const void *buf, size_t nbytes)
156 ssize_t ret;
158 _thread_enter_cancellation_point();
159 ret = _write(fd, buf, nbytes);
160 _thread_leave_cancellation_point();
162 return ret;