public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
From: "qq qq" <miska0000@gmx.com>
To: cygwin@cygwin.com
Subject: Dup'd sockets lose error information
Date: Wed, 23 Apr 2014 14:25:00 -0000	[thread overview]
Message-ID: <20140423142541.156360@gmx.com> (raw)

The following code is a simplified app that was used to test-connect to local ports 55000+ (none of which were actually listening) and received false-positive "connected" results because Cygwin's dup()
for socket causes SO_ERROR to be lost.  Since FD_SETSIZE is only 64 on Cygwin, the app uses dup()'s to lower the descriptors as it checks them for completion.  There is no such problem on Linux.
Also, strangely that Cygwin does not accept sin_addr as 0 to connect locally (and either localhost or local host IP must be stuffed in there, otherwise resulting in the "Cannot assign requested address" error).

$ cat connect.c
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <netinet/in.h>
#include <sys/socket.h>

#ifndef MAX_SOCK
#define MAX_SOCK 100
#endif

#ifdef LINUX
#undef  FD_SETSIZE
#define FD_SETSIZE 16
#endif


int main()
{
   static struct {
       struct sockaddr_in sin;
       int                sock;
   } s[MAX_SOCK];
   int i;
   
   for (i = 0;  i < MAX_SOCK;  ++i) {
       s[i].sock = socket(AF_INET, SOCK_STREAM, 0);
       fcntl(s[i].sock, F_SETFL, O_NONBLOCK);
       memset(&s[i].sin, 0, sizeof(s[i].sin));
       s[i].sin.sin_family = AF_INET;
#ifdef BUG2
       s[i].sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
#endif
       s[i].sin.sin_port = htons(55000 + i);
       connect(s[i].sock, (struct sockaddr*) &s[i].sin, sizeof(s[i].sin));
       printf("connecting #%d(%d) to :%hu\n", i, s[i].sock, ntohs(s[i].sin.sin_port));
   }

   for (;;) {
      fd_set wfds, efds;
      int m = 0, v = 0;

      for (i = 0;  i < MAX_SOCK;  ++i) {
          if (s[i].sock < 0)
              continue;

          if (s[i].sock >= FD_SETSIZE) {
              int fd = dup(s[i].sock);
              if (fd < 0)
                  continue;
              if (fd >= FD_SETSIZE) {
                  close(fd);
                  continue;
              }
              close(s[i].sock);
              printf("%d -> %d\n", s[i].sock, fd);
              s[i].sock = fd;
          }

          if (!m) {
              FD_ZERO(&wfds);
              FD_ZERO(&efds);
          }
          
          FD_SET(s[i].sock, &wfds);
          FD_SET(s[i].sock, &efds);
          ++m;
          if (v < s[i].sock)
              v = s[i].sock;
       }
       if (!m)
          break;

       if (select(v + 1, 0, &wfds, &efds, 0) < 0) {
          perror("select");
          return 1;
       }

       for (i = 0;  i < MAX_SOCK;  ++i) {
          int err;
          socklen_t len;
          
          if (s[i].sock < 0  ||  FD_SETSIZE <= s[i].sock)
              continue;
              
          if (FD_ISSET(s[i].sock, &efds))
              v = 1;
          else if (FD_ISSET(s[i].sock, &wfds))
              v = 0;
          else
              continue;
              
          len = sizeof(err);
          if (getsockopt(s[i].sock, SOL_SOCKET, SO_ERROR, &err, &len) < 0) {
              perror("getsockopt");
              return 1;
          }
          if (!err)
              printf("#%d connected to :%hu%s\n", i, ntohs(s[i].sin.sin_port), v ? " w/exception" : "!");
          else
              printf("#%d to :%hu: %s\n", i, ntohs(s[i].sin.sin_port), strerror(err));
          close(s[i].sock);
          s[i].sock = -1;
       }
   }
   return 0;
}

Linux:
$ gcc -Wall -DLINUX connect.c
$ ./a.out
(shows all connection refused with or without -DBUG2 given to the compiler)

Cygwin:
$ gcc -Wall -DBUG2 connect.c
$ ./a.exe
(only shows "connection refused" for fds less than FD_SETSIZE==64, others will be "successfully connected")

$ gcc -Wall connect.c
(shows "cannot assign requested address" errors for fds < 64, all others "successfully connected")

Keep in mind the socket fds are offset by 3 open descriptors used by stdio.

Setting MAX_SOCK to 2 and FD_SETSIZE to 1 on Cygwin clearly shows that it's the dup() call that messes up the socket error state:
the first socket will get the proper "connection refused", and the other -- will be erroneously reported back as "connected" (no error returned).

--
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

             reply	other threads:[~2014-04-23 14:25 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-23 14:25 qq qq [this message]
2014-04-23 15:38 ` Corinna Vinschen
2014-04-24 14:14   ` Corinna Vinschen
2014-05-05  9:08     ` Corinna Vinschen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140423142541.156360@gmx.com \
    --to=miska0000@gmx.com \
    --cc=cygwin@cygwin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).