Skip to content

Commit d8f01e0

Browse files
icingbagder
authored andcommitted
ftp: fix socket wait activity in ftp_domore_getsock
- when waiting on the data connection, always add the control socket to the pollset on state STOP or let the pingpong add the socket according to its needs. Reported-by: Fabian Vogt Fixes #12901 Closes #12913
1 parent d0a851f commit d8f01e0

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

lib/ftp.c

+6-12
Original file line numberDiff line numberDiff line change
@@ -937,24 +937,18 @@ static int ftp_domore_getsock(struct Curl_easy *data,
937937
* remote site, or we could wait for that site to connect to us. Or just
938938
* handle ordinary commands.
939939
*/
940-
941940
DEBUGF(infof(data, "ftp_domore_getsock()"));
942-
if(conn->cfilter[SECONDARYSOCKET]
943-
&& !Curl_conn_is_connected(conn, SECONDARYSOCKET))
944-
return 0;
945941

946942
if(FTP_STOP == ftpc->state) {
947-
int bits = GETSOCK_READSOCK(0);
948-
949943
/* if stopped and still in this state, then we're also waiting for a
950944
connect on the secondary connection */
945+
DEBUGASSERT(conn->sock[SECONDARYSOCKET] != CURL_SOCKET_BAD ||
946+
(conn->cfilter[SECONDARYSOCKET] &&
947+
!Curl_conn_is_connected(conn, SECONDARYSOCKET)));
951948
socks[0] = conn->sock[FIRSTSOCKET];
952-
if(conn->sock[SECONDARYSOCKET] != CURL_SOCKET_BAD) {
953-
socks[1] = conn->sock[SECONDARYSOCKET];
954-
bits |= GETSOCK_WRITESOCK(1) | GETSOCK_READSOCK(1);
955-
}
956-
957-
return bits;
949+
/* An unconnected SECONDARY will add its socket by itself
950+
* via its adjust_pollset() */
951+
return GETSOCK_READSOCK(0);
958952
}
959953
return Curl_pp_getsock(data, &conn->proto.ftpc.pp, socks);
960954
}

0 commit comments

Comments
 (0)