1 /* POSIX compatible write() function.
2 Copyright (C) 2008-2020 Free Software Foundation, Inc.
3 Written by Bruno Haible <bruno@clisp.org>, 2008.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
23 /* On native Windows platforms, SIGPIPE does not exist. When write() is
24 called on a pipe with no readers, WriteFile() fails with error
25 GetLastError() = ERROR_NO_DATA, and write() in consequence fails with
28 #if defined _WIN32 && ! defined __CYGWIN__
34 # define WIN32_LEAN_AND_MEAN /* avoid including junk */
37 # if HAVE_MSVC_INVALID_PARAMETER_HANDLER
38 # include "msvc-inval.h"
40 # if GNULIB_MSVC_NOTHROW
41 # include "msvc-nothrow.h"
46 /* Don't assume that UNICODE is not defined. */
47 # undef GetNamedPipeHandleState
48 # define GetNamedPipeHandleState GetNamedPipeHandleStateA
52 # if HAVE_MSVC_INVALID_PARAMETER_HANDLER
54 write_nothrow (int fd
, const void *buf
, size_t count
)
60 result
= _write (fd
, buf
, count
);
72 # define write_nothrow _write
76 rpl_write (int fd
, const void *buf
, size_t count
)
80 ssize_t ret
= write_nothrow (fd
, buf
, count
);
84 # if GNULIB_NONBLOCKING
87 HANDLE h
= (HANDLE
) _get_osfhandle (fd
);
88 if (GetFileType (h
) == FILE_TYPE_PIPE
)
90 /* h is a pipe or socket. */
92 if (GetNamedPipeHandleState (h
, &state
, NULL
, NULL
, NULL
,
94 && (state
& PIPE_NOWAIT
) != 0)
96 /* h is a pipe in non-blocking mode.
97 We can get here in four situations:
98 1. When the pipe buffer is full.
99 2. When count <= pipe_buf_size and the number of
100 free bytes in the pipe buffer is < count.
101 3. When count > pipe_buf_size and the number of free
102 bytes in the pipe buffer is > 0, < pipe_buf_size.
103 4. When count > pipe_buf_size and the pipe buffer is
105 The cases 1 and 2 are POSIX compliant. In cases 3 and
106 4 POSIX specifies that write() must split the request
107 and succeed with a partial write. We fix case 4.
108 We don't fix case 3 because it is not essential for
110 DWORD out_size
; /* size of the buffer for outgoing data */
111 DWORD in_size
; /* size of the buffer for incoming data */
112 if (GetNamedPipeInfo (h
, NULL
, &out_size
, &in_size
, NULL
))
114 size_t reduced_count
= count
;
115 /* In theory we need only one of out_size, in_size.
116 But I don't know which of the two. The description
118 if (out_size
!= 0 && out_size
< reduced_count
)
119 reduced_count
= out_size
;
120 if (in_size
!= 0 && in_size
< reduced_count
)
121 reduced_count
= in_size
;
122 if (reduced_count
< count
)
124 /* Attempt to write only the first part. */
125 count
= reduced_count
;
129 /* Change errno from ENOSPC to EAGAIN. */
138 if (GetLastError () == ERROR_NO_DATA
139 && GetFileType ((HANDLE
) _get_osfhandle (fd
))
142 /* Try to raise signal SIGPIPE. */
144 /* If it is currently blocked or ignored, change errno from