Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 861c522

Browse files
committedDec 9, 2020
lib/connect: defer port selection until connect() time
If supported, defer port selection until connect() time if --interface is given and source port is 0. Reproducer: * start fast webserver on port 80 * starve system of ephemeral ports $ sysctl net.ipv4.ip_local_port_range="60990 60999" * start a curl/libcurl "crawler" $curl --keepalive --parallel --parallel-immediate --head --interface 127.0.0.2 "http://127.0.0.[1-254]/file[001-002].txt" current result: (possible some successful data) curl: (45) bind failed with errno 98: Address already in use result after patch: (complete success or few connections failing, higlhy depending on load) Fail only when all the possible 4-tuple combinations are exhausted, which is impossible to do when port is selected at bind() time becuse the kernel does not know if socket will be listen()'ed on or connect'ed yet.
1 parent e052859 commit 861c522

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎lib/connect.c

+6-1
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,9 @@ static CURLcode bindlocal(struct connectdata *conn,
256256
int portnum = data->set.localportrange;
257257
const char *dev = data->set.str[STRING_DEVICE];
258258
int error;
259+
#ifdef IP_BIND_ADDRESS_NO_PORT
260+
int on = 1;
261+
#endif
259262

260263
/*************************************************************
261264
* Select device to bind socket to
@@ -441,7 +444,9 @@ static CURLcode bindlocal(struct connectdata *conn,
441444
sizeof_sa = sizeof(struct sockaddr_in);
442445
}
443446
}
444-
447+
#ifdef IP_BIND_ADDRESS_NO_PORT
448+
setsockopt(sockfd, SOL_IP, IP_BIND_ADDRESS_NO_PORT, &on, sizeof(on));
449+
#endif
445450
for(;;) {
446451
if(bind(sockfd, sock, sizeof_sa) >= 0) {
447452
/* we succeeded to bind */

0 commit comments

Comments
 (0)
Please sign in to comment.