Skip to content

Commit d4314cd

Browse files
committed
ntlm_wb: use pipe instead of socketpair when possible
Closes #12149
1 parent 913eacf commit d4314cd

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

lib/curl_ntlm_wb.c

+8-6
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@
6868

6969
/* Portable 'sclose_nolog' used only in child process instead of 'sclose'
7070
to avoid fooling the socket leak detector */
71-
#if defined(HAVE_CLOSESOCKET)
71+
#ifdef HAVE_PIPE
72+
# define sclose_nolog(x) close((x))
73+
#eliif defined(HAVE_CLOSESOCKET)
7274
# define sclose_nolog(x) closesocket((x))
7375
#elif defined(HAVE_CLOSESOCKET_CAMEL)
7476
# define sclose_nolog(x) CloseSocket((x))
@@ -189,16 +191,16 @@ static CURLcode ntlm_wb_init(struct Curl_easy *data, struct ntlmdata *ntlm,
189191
goto done;
190192
}
191193

192-
if(Curl_socketpair(AF_UNIX, SOCK_STREAM, 0, sockfds)) {
194+
if(wakeup_create(sockfds)) {
193195
failf(data, "Could not open socket pair. errno %d: %s",
194196
errno, Curl_strerror(errno, buffer, sizeof(buffer)));
195197
goto done;
196198
}
197199

198200
child_pid = fork();
199201
if(child_pid == -1) {
200-
sclose(sockfds[0]);
201-
sclose(sockfds[1]);
202+
wakeup_close(sockfds[0]);
203+
wakeup_close(sockfds[1]);
202204
failf(data, "Could not fork. errno %d: %s",
203205
errno, Curl_strerror(errno, buffer, sizeof(buffer)));
204206
goto done;
@@ -268,7 +270,7 @@ static CURLcode ntlm_wb_response(struct Curl_easy *data, struct ntlmdata *ntlm,
268270
Curl_dyn_init(&b, MAX_NTLM_WB_RESPONSE);
269271

270272
while(len_in > 0) {
271-
ssize_t written = swrite(ntlm->ntlm_auth_hlpr_socket, input, len_in);
273+
ssize_t written = wakeup_write(ntlm->ntlm_auth_hlpr_socket, input, len_in);
272274
if(written == -1) {
273275
/* Interrupted by a signal, retry it */
274276
if(errno == EINTR)
@@ -282,7 +284,7 @@ static CURLcode ntlm_wb_response(struct Curl_easy *data, struct ntlmdata *ntlm,
282284
/* Read one line */
283285
while(1) {
284286
ssize_t size =
285-
sread(ntlm->ntlm_auth_hlpr_socket, buf, data->set.buffer_size);
287+
wakeup_read(ntlm->ntlm_auth_hlpr_socket, buf, data->set.buffer_size);
286288
if(size == -1) {
287289
if(errno == EINTR)
288290
continue;

0 commit comments

Comments
 (0)