Cygwin: Allow to build without experimental AF_UNIX code by default
Introduce __WITH_AF_UNIX preprocessor flag to enable the new code Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
17918cc6a6
commit
6c55be9dbb
@ -520,9 +520,11 @@ fh_alloc (path_conv& pc)
|
|||||||
case FH_LOCAL:
|
case FH_LOCAL:
|
||||||
fh = cnew (fhandler_socket_local);
|
fh = cnew (fhandler_socket_local);
|
||||||
break;
|
break;
|
||||||
|
#ifdef __WITH_AF_UNIX
|
||||||
case FH_UNIX:
|
case FH_UNIX:
|
||||||
fh = cnew (fhandler_socket_unix);
|
fh = cnew (fhandler_socket_unix);
|
||||||
break;
|
break;
|
||||||
|
#endif /* __WITH_AF_UNIX */
|
||||||
case FH_FS:
|
case FH_FS:
|
||||||
fh = cnew (fhandler_disk_file);
|
fh = cnew (fhandler_disk_file);
|
||||||
break;
|
break;
|
||||||
|
@ -951,6 +951,8 @@ class af_unix_shmem_t
|
|||||||
struct ucred *peer_cred () { return &_peer_cred; }
|
struct ucred *peer_cred () { return &_peer_cred; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#ifdef __WITH_AF_UNIX
|
||||||
|
|
||||||
class fhandler_socket_unix : public fhandler_socket
|
class fhandler_socket_unix : public fhandler_socket
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
@ -1110,6 +1112,8 @@ class fhandler_socket_unix : public fhandler_socket
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif /* __WITH_AF_UNIX */
|
||||||
|
|
||||||
class fhandler_base_overlapped: public fhandler_base
|
class fhandler_base_overlapped: public fhandler_base
|
||||||
{
|
{
|
||||||
static HANDLE asio_done;
|
static HANDLE asio_done;
|
||||||
@ -2631,6 +2635,9 @@ typedef union
|
|||||||
char __serial[sizeof (fhandler_serial)];
|
char __serial[sizeof (fhandler_serial)];
|
||||||
char __socket_inet[sizeof (fhandler_socket_inet)];
|
char __socket_inet[sizeof (fhandler_socket_inet)];
|
||||||
char __socket_local[sizeof (fhandler_socket_local)];
|
char __socket_local[sizeof (fhandler_socket_local)];
|
||||||
|
#ifdef __WITH_AF_UNIX
|
||||||
|
char __socket_unix[sizeof (fhandler_socket_unix)];
|
||||||
|
#endif /* __WITH_AF_UNIX */
|
||||||
char __termios[sizeof (fhandler_termios)];
|
char __termios[sizeof (fhandler_termios)];
|
||||||
char __pty_common[sizeof (fhandler_pty_common)];
|
char __pty_common[sizeof (fhandler_pty_common)];
|
||||||
char __pty_slave[sizeof (fhandler_pty_slave)];
|
char __pty_slave[sizeof (fhandler_pty_slave)];
|
||||||
|
@ -8,6 +8,8 @@
|
|||||||
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
||||||
details. */
|
details. */
|
||||||
|
|
||||||
|
#ifdef __WITH_AF_UNIX
|
||||||
|
|
||||||
#include "winsup.h"
|
#include "winsup.h"
|
||||||
#include <w32api/winioctl.h>
|
#include <w32api/winioctl.h>
|
||||||
#include <asm/byteorder.h>
|
#include <asm/byteorder.h>
|
||||||
@ -2376,3 +2378,5 @@ fhandler_socket_unix::link (const char *newpath)
|
|||||||
fhandler_disk_file fh (pc);
|
fhandler_disk_file fh (pc);
|
||||||
return fh.link (newpath);
|
return fh.link (newpath);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* __WITH_AF_UNIX */
|
||||||
|
@ -136,7 +136,7 @@ struct OLD_msghdr
|
|||||||
#define AF_UNSPEC 0 /* unspecified */
|
#define AF_UNSPEC 0 /* unspecified */
|
||||||
/* FIXME: This is for testing only, while developing the new
|
/* FIXME: This is for testing only, while developing the new
|
||||||
fhandler_socket_unix class. */
|
fhandler_socket_unix class. */
|
||||||
#ifdef __INSIDE_CYGWIN__
|
#if defined (__INSIDE_CYGWIN__) && defined (__WITH_AF_UNIX)
|
||||||
#define AF_UNIX 31
|
#define AF_UNIX 31
|
||||||
#else
|
#else
|
||||||
#define AF_UNIX 1 /* local to host (pipes, portals) */
|
#define AF_UNIX 1 /* local to host (pipes, portals) */
|
||||||
|
@ -500,8 +500,12 @@ cygwin_socket (int af, int type, int protocol)
|
|||||||
switch (af)
|
switch (af)
|
||||||
{
|
{
|
||||||
case AF_LOCAL:
|
case AF_LOCAL:
|
||||||
|
#ifndef __WITH_AF_UNIX
|
||||||
|
dev = af_local_dev;
|
||||||
|
#else
|
||||||
case AF_UNIX:
|
case AF_UNIX:
|
||||||
dev = (af == AF_LOCAL) ? af_local_dev : af_unix_dev;
|
dev = (af == AF_LOCAL) ? af_local_dev : af_unix_dev;
|
||||||
|
#endif /* __WITH_AF_UNIX */
|
||||||
break;
|
break;
|
||||||
case AF_INET:
|
case AF_INET:
|
||||||
case AF_INET6:
|
case AF_INET6:
|
||||||
@ -2285,8 +2289,12 @@ socketpair (int af, int type, int protocol, int sv[2])
|
|||||||
switch (af)
|
switch (af)
|
||||||
{
|
{
|
||||||
case AF_LOCAL:
|
case AF_LOCAL:
|
||||||
|
#ifndef __WITH_AF_UNIX
|
||||||
|
dev = af_local_dev;
|
||||||
|
#else
|
||||||
case AF_UNIX:
|
case AF_UNIX:
|
||||||
dev = (af == AF_LOCAL) ? af_local_dev : af_unix_dev;
|
dev = (af == AF_LOCAL) ? af_local_dev : af_unix_dev;
|
||||||
|
#endif /* __WITH_AF_UNIX */
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
set_errno (EAFNOSUPPORT);
|
set_errno (EAFNOSUPPORT);
|
||||||
|
@ -951,7 +951,11 @@ path_conv::check (const char *src, unsigned opt,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
fileattr = sym.fileattr;
|
fileattr = sym.fileattr;
|
||||||
|
#ifdef __WITH_AF_UNIX
|
||||||
dev.parse ((sym.pflags & PATH_REP) ? FH_UNIX : FH_LOCAL);
|
dev.parse ((sym.pflags & PATH_REP) ? FH_UNIX : FH_LOCAL);
|
||||||
|
#else
|
||||||
|
dev.parse (FH_LOCAL);
|
||||||
|
#endif /* __WITH_AF_UNIX */
|
||||||
dev.setfs (1);
|
dev.setfs (1);
|
||||||
path_flags = sym.pflags;
|
path_flags = sym.pflags;
|
||||||
goto out;
|
goto out;
|
||||||
@ -2370,6 +2374,7 @@ check_reparse_point_target (HANDLE h, bool remote, PREPARSE_DATA_BUFFER rp,
|
|||||||
if (check_reparse_point_string (psymbuf))
|
if (check_reparse_point_string (psymbuf))
|
||||||
return PATH_SYMLINK | PATH_REP;
|
return PATH_SYMLINK | PATH_REP;
|
||||||
}
|
}
|
||||||
|
#ifdef __WITH_AF_UNIX
|
||||||
else if (rp->ReparseTag == IO_REPARSE_TAG_CYGUNIX)
|
else if (rp->ReparseTag == IO_REPARSE_TAG_CYGUNIX)
|
||||||
{
|
{
|
||||||
PREPARSE_GUID_DATA_BUFFER rgp = (PREPARSE_GUID_DATA_BUFFER) rp;
|
PREPARSE_GUID_DATA_BUFFER rgp = (PREPARSE_GUID_DATA_BUFFER) rp;
|
||||||
@ -2377,6 +2382,7 @@ check_reparse_point_target (HANDLE h, bool remote, PREPARSE_DATA_BUFFER rp,
|
|||||||
if (memcmp (CYGWIN_SOCKET_GUID, &rgp->ReparseGuid, sizeof (GUID)) == 0)
|
if (memcmp (CYGWIN_SOCKET_GUID, &rgp->ReparseGuid, sizeof (GUID)) == 0)
|
||||||
return PATH_SOCKET | PATH_REP;
|
return PATH_SOCKET | PATH_REP;
|
||||||
}
|
}
|
||||||
|
#endif /* __WITH_AF_UNIX */
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -192,8 +192,12 @@ class path_conv
|
|||||||
int is_fs_device () const {return isdevice () && is_fs_special ();}
|
int is_fs_device () const {return isdevice () && is_fs_special ();}
|
||||||
int is_fs_special () const {return dev.is_fs_special ();}
|
int is_fs_special () const {return dev.is_fs_special ();}
|
||||||
int is_lnk_special () const {return is_fs_device () || isfifo () || is_lnk_symlink ();}
|
int is_lnk_special () const {return is_fs_device () || isfifo () || is_lnk_symlink ();}
|
||||||
|
#ifdef __WITH_AF_UNIX
|
||||||
int issocket () const {return dev.is_device (FH_LOCAL)
|
int issocket () const {return dev.is_device (FH_LOCAL)
|
||||||
|| dev.is_device (FH_UNIX);}
|
|| dev.is_device (FH_UNIX);}
|
||||||
|
#else
|
||||||
|
int issocket () const {return dev.is_device (FH_LOCAL);}
|
||||||
|
#endif /* __WITH_AF_UNIX */
|
||||||
int iscygexec () const {return path_flags & PATH_CYGWIN_EXEC;}
|
int iscygexec () const {return path_flags & PATH_CYGWIN_EXEC;}
|
||||||
int isopen () const {return path_flags & PATH_OPEN;}
|
int isopen () const {return path_flags & PATH_OPEN;}
|
||||||
int isctty_capable () const {return path_flags & PATH_CTTY;}
|
int isctty_capable () const {return path_flags & PATH_CTTY;}
|
||||||
|
@ -1602,6 +1602,8 @@ fhandler_socket_wsock::select_except (select_stuff *ss)
|
|||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __WITH_AF_UNIX
|
||||||
|
|
||||||
select_record *
|
select_record *
|
||||||
fhandler_socket_unix::select_read (select_stuff *ss)
|
fhandler_socket_unix::select_read (select_stuff *ss)
|
||||||
{
|
{
|
||||||
@ -1647,6 +1649,8 @@ fhandler_socket_unix::select_except (select_stuff *ss)
|
|||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* __WITH_AF_UNIX */
|
||||||
|
|
||||||
static int
|
static int
|
||||||
peek_windows (select_record *me, bool)
|
peek_windows (select_record *me, bool)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user