Mail Archives: cygwin/2018/01/13/03:37:50
X-Recipient: | archive-cygwin AT delorie DOT com
|
DomainKey-Signature: | a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id
|
| :list-unsubscribe:list-subscribe:list-archive:list-post
|
| :list-help:sender:date:from:to:subject:message-id:mime-version
|
| :content-type; q=dns; s=default; b=wPpTlvEe4jp9i8dLcxPMUsKi9rBIy
|
| 33xYjMd2dLdL7+psg+JlTuQnymaoBprb10JDVcw1461WlygP6NzYC+krB3C79bov
|
| WIpuK+uXfkuB575eNIT1LDsHASdTdOUwXkScgq/gdrvXW7Ae7E99JYfky6sO4wQo
|
| P7ZR6H/RCBTGeI=
|
DKIM-Signature: | v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id
|
| :list-unsubscribe:list-subscribe:list-archive:list-post
|
| :list-help:sender:date:from:to:subject:message-id:mime-version
|
| :content-type; s=default; bh=FLlDCoINzIHL1YijOUsjwx51EDA=; b=rM1
|
| AGSWnwdAZMkSbDF7BTrzZchJ7sNf5s3KcumtN8K/6849P2UMTLLaXHhAa06pzNAK
|
| 8H/RGe22bljnEVYlJu75t4+EXDuud+Y0uWP+XsTu79O0+ym+e+Qi2MeSu588XnCR
|
| n3oL/mFy1AbWIMp9N9qi7kF4afwkD93/XOnNSOE0=
|
Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm
|
List-Id: | <cygwin.cygwin.com>
|
List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com>
|
List-Archive: | <http://sourceware.org/ml/cygwin/>
|
List-Post: | <mailto:cygwin AT cygwin DOT com>
|
List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs>
|
Sender: | cygwin-owner AT cygwin DOT com
|
Mail-Followup-To: | cygwin AT cygwin DOT com
|
Delivered-To: | mailing list cygwin AT cygwin DOT com
|
Authentication-Results: | sourceware.org; auth=none
|
X-Virus-Found: | No
|
X-Spam-SWARE-Status: | No, score=-5.4 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_2,KAM_LAZY_DOMAIN_SECURITY autolearn=ham version=3.3.2 spammy=ATTEMPT, H*r:8.12.11, paulus, H*F:U*mark
|
X-HELO: | m0.truegem.net
|
Date: | Sat, 13 Jan 2018 00:36:57 -0800 (PST)
|
From: | Mark Geisert <mark AT maxrnd DOT com>
|
To: | cygwin AT cygwin DOT com
|
Subject: | Cygwin socket option SO_REUSEADDR operates unlike Linux
|
Message-ID: | <Pine.BSF.4.63.1801122348420.62607@m0.truegem.net>
|
MIME-Version: | 1.0
|
This report is based on a series of recent list emails with Subject: lines
"RPC clnt_create() adress already in use" which date back to last
September but are unfortunately not chained together... They contain a
discussion I've been having with OP Raimund Paulus.
I believe I've distilled the issue(s) down as far as I can. A
self-contained STC is included at the end of this email.
On the latest 64-bit Cygwin, running the STC shows:
~ netstat -an|grep :111
TCP 0.0.0.0:111 0.0.0.0:0 LISTENING
TCP [::]:111 [::]:0 LISTENING
UDP 0.0.0.0:111 *:*
UDP [::]:111 *:*
~ ./bindtest
1st socket is 3
1st bind OK
1st connect OK
2nd socket is 3
2nd bind OK
2nd connect: Address already in use
~ ./bindtest
1st socket is 3
1st bind OK
1st connect: Address already in use
On Fedora 27, running the same STC shows:
[mark AT lux ~]$ netstat -an|grep :111
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN
tcp6 0 0 :::111 :::* LISTEN
udp 0 0 0.0.0.0:111 0.0.0.0:*
udp6 0 0 :::111 :::*
[mark AT lux ~]$ ./bindtest
1st socket is 3
1st bind OK
1st connect OK
2nd socket is 3
2nd bind OK
2nd connect OK
[mark AT lux ~]$ ./bindtest
1st socket is 3
1st bind OK
1st connect OK
2nd socket is 3
2nd bind OK
2nd connect OK
The STC source code is given below. It assumes you're running rpcbind on
the local machine at TCP port 111. Remember to abort rpcbind after
testing if you don't need it running for other RPC services.
Two issues are visible. (1) The 2nd connect attempt elicits an EADDRINUSE
on Cygwin even though SO_REUSEADDR has been set. Fedora allows the 2nd
connect to succeed. (2) The EADDRINUSE is being reported by connect(),
not by the preceding bind(), which is where one usually sees it.
I've spent some time inside Cygwin's net.cc and fhandler_socket.cc and see
how Cygwin deals with Winsock's peculiar notion of SO_REUSEADDR. Between
that unfortunate but necessary workaround and what I see on MSDN now, at
https://msdn.microsoft.com/en-us/library/windows/desktop/ms740621(v=vs.85).aspx
I can't help wondering if the workaround has maybe stopped working. The
web page's section "Enhanced Socket Security" is what made me wonder this.
Here's the STC, a single source file bindtest.c to be compiled with
gcc -g -Wall -o bindtest bindtest.c
Thanks,
..mark
--------8<--------
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define LCLADDR "127.0.0.1"
#define LCLPORT 8888
#define RMTADDR LCLADDR
#define RMTPORT 111
void
checkresult (int value, char *string)
{
if (value == -1) {
perror (string);
exit (1);
}
}
int
main (int argc, char **argv)
{
const int one = 1;
int res;
int sock;
struct sockaddr lcladdr, rmtaddr;
struct sockaddr_in addr;
socklen_t alen = sizeof (addr);
memset (&addr, 0, alen);
memset (&rmtaddr, 0, sizeof (rmtaddr));
memset (&lcladdr, 0, sizeof (lcladdr));
addr.sin_family = AF_INET;
addr.sin_port = htons (RMTPORT);
addr.sin_addr.s_addr = inet_addr (RMTADDR);
memcpy (&rmtaddr, &addr, alen);
addr.sin_port = htons (LCLPORT);
addr.sin_addr.s_addr = inet_addr (LCLADDR);
memcpy (&lcladdr, &addr, alen);
// FIRST CONNECTION ATTEMPT
sock = socket (AF_INET, SOCK_STREAM, 0);
checkresult (sock, "1st socket");
fprintf (stderr, "1st socket is %d\n", sock);
res = setsockopt (sock, SOL_SOCKET, SO_REUSEADDR, &one, sizeof (one));
checkresult (res, "1st setsockopt");
res = bind (sock, &lcladdr, alen);
checkresult (res, "1st bind");
fprintf (stderr, "1st bind OK\n");
res = connect (sock, &rmtaddr, alen);
checkresult (res, "1st connect");
fprintf (stderr, "1st connect OK\n");
res = close (sock);
checkresult (res, "1st close");
// SECOND CONNECTION ATTEMPT
sock = socket (AF_INET, SOCK_STREAM, 0);
checkresult (sock, "2nd socket");
fprintf (stderr, "2nd socket is %d\n", sock);
res = setsockopt (sock, SOL_SOCKET, SO_REUSEADDR, &one, sizeof (one));
checkresult (res, "2nd setsockopt");
res = bind (sock, &lcladdr, alen);
checkresult (res, "2nd bind");
fprintf (stderr, "2nd bind OK\n");
res = connect (sock, &rmtaddr, alen);
checkresult (res, "2nd connect");
fprintf (stderr, "2nd connect OK\n");
res = close (sock);
checkresult (res, "2nd close");
return 0;
}
--
Problem reports: http://cygwin.com/problems.html
FAQ: http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
- Raw text -