thr_write.c revision 13546
113546Sjulian/*
213546Sjulian * Copyright (c) 1995 John Birrell <jb@cimlogic.com.au>.
313546Sjulian * All rights reserved.
413546Sjulian *
513546Sjulian * Redistribution and use in source and binary forms, with or without
613546Sjulian * modification, are permitted provided that the following conditions
713546Sjulian * are met:
813546Sjulian * 1. Redistributions of source code must retain the above copyright
913546Sjulian *    notice, this list of conditions and the following disclaimer.
1013546Sjulian * 2. Redistributions in binary form must reproduce the above copyright
1113546Sjulian *    notice, this list of conditions and the following disclaimer in the
1213546Sjulian *    documentation and/or other materials provided with the distribution.
1313546Sjulian * 3. All advertising materials mentioning features or use of this software
1413546Sjulian *    must display the following acknowledgement:
1513546Sjulian *	This product includes software developed by John Birrell.
1613546Sjulian * 4. Neither the name of the author nor the names of any co-contributors
1713546Sjulian *    may be used to endorse or promote products derived from this software
1813546Sjulian *    without specific prior written permission.
1913546Sjulian *
2013546Sjulian * THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
2113546Sjulian * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2213546Sjulian * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2313546Sjulian * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2413546Sjulian * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2513546Sjulian * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2613546Sjulian * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2713546Sjulian * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2813546Sjulian * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2913546Sjulian * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3013546Sjulian * SUCH DAMAGE.
3113546Sjulian *
3213546Sjulian */
3313546Sjulian#include <sys/types.h>
3413546Sjulian#include <sys/fcntl.h>
3513546Sjulian#include <sys/uio.h>
3613546Sjulian#include <errno.h>
3713546Sjulian#include <unistd.h>
3813546Sjulian#ifdef _THREAD_SAFE
3913546Sjulian#include <pthread.h>
4013546Sjulian#include "pthread_private.h"
4113546Sjulian
4213546Sjulianssize_t
4313546Sjulianwrite(int fd, const void *buf, size_t nbytes)
4413546Sjulian{
4513546Sjulian	int             nonblock;
4613546Sjulian	int             ret;
4713546Sjulian	int             status;
4813546Sjulian	if (fd < 0 || fd > _thread_dtablesize || _thread_fd_table[fd] == NULL) {
4913546Sjulian		_thread_seterrno(_thread_run, EBADF);
5013546Sjulian		ret = -1;
5113546Sjulian	} else if ((nonblock = _thread_fd_table[fd]->flags & O_NONBLOCK) == 0 && (ret = _thread_fd_lock(fd, FD_RDWR, NULL, __FILE__, __LINE__)) != 0) {
5213546Sjulian		/* Cannot lock file descriptor. */
5313546Sjulian	} else {
5413546Sjulian		while ((ret = _thread_sys_write(fd, buf, nbytes)) < 0) {
5513546Sjulian			if (nonblock == 0 && (errno == EWOULDBLOCK || errno == EAGAIN)) {
5613546Sjulian				_thread_kern_sig_block(&status);
5713546Sjulian				_thread_run->data.fd.fd = fd;
5813546Sjulian				_thread_kern_set_timeout(NULL);
5913546Sjulian				_thread_kern_sched_state(PS_FDW_WAIT, __FILE__, __LINE__);
6013546Sjulian				if (errno == EINTR) {
6113546Sjulian					ret = -1;
6213546Sjulian					break;
6313546Sjulian				}
6413546Sjulian			} else {
6513546Sjulian				break;
6613546Sjulian			}
6713546Sjulian		}
6813546Sjulian		if (nonblock == 0) {
6913546Sjulian			_thread_fd_unlock(fd, FD_RDWR);
7013546Sjulian		}
7113546Sjulian	}
7213546Sjulian	return (ret);
7313546Sjulian}
7413546Sjulian#endif
75