socketmodule.h 5 KB
Newer Older
1 2 3 4
/* Socket module header file */

/* Includes needed for the sockaddr_* symbols below */
#ifndef MS_WINDOWS
5 6 7 8 9
#ifdef __VMS
#   include <socket.h>
# else
#   include <sys/socket.h>
# endif
10
# include <netinet/in.h>
11
# if !(defined(__CYGWIN__) || (defined(PYOS_OS2) && defined(PYCC_VACPP)))
12 13 14 15
#  include <netinet/tcp.h>
# endif

#else /* MS_WINDOWS */
16 17
# include <winsock2.h>
# include <ws2tcpip.h>
18 19
/* VC6 is shipped with old platform headers, and does not have MSTcpIP.h
 * Separate SDKs have all the functions we want, but older ones don't have
20 21
 * any version information. 
 * I use SIO_GET_MULTICAST_FILTER to detect a decent SDK.
22
 */
23
# ifdef SIO_GET_MULTICAST_FILTER
24 25 26 27 28 29 30 31 32 33
#  include <MSTcpIP.h> /* for SIO_RCVALL */
#  define HAVE_ADDRINFO
#  define HAVE_SOCKADDR_STORAGE
#  define HAVE_GETADDRINFO
#  define HAVE_GETNAMEINFO
#  define ENABLE_IPV6
# else
typedef int socklen_t;
# endif /* IPPROTO_IPV6 */
#endif /* MS_WINDOWS */
34 35 36 37 38 39 40

#ifdef HAVE_SYS_UN_H
# include <sys/un.h>
#else
# undef AF_UNIX
#endif

41
#ifdef HAVE_LINUX_NETLINK_H
42 43 44
# ifdef HAVE_ASM_TYPES_H
#  include <asm/types.h>
# endif
45 46 47 48 49
# include <linux/netlink.h>
#else
#  undef AF_NETLINK
#endif

50 51 52 53 54
#ifdef HAVE_BLUETOOTH_BLUETOOTH_H
#include <bluetooth/bluetooth.h>
#include <bluetooth/rfcomm.h>
#include <bluetooth/l2cap.h>
#include <bluetooth/sco.h>
55
#include <bluetooth/hci.h>
56 57
#endif

58 59 60 61
#ifdef HAVE_BLUETOOTH_H
#include <bluetooth.h>
#endif

62 63 64 65 66 67
#ifdef HAVE_NETPACKET_PACKET_H
# include <sys/ioctl.h>
# include <net/if.h>
# include <netpacket/packet.h>
#endif

68 69 70 71
#ifdef HAVE_LINUX_TIPC_H
# include <linux/tipc.h>
#endif

72 73 74 75 76 77 78 79 80
#ifndef Py__SOCKET_H
#define Py__SOCKET_H
#ifdef __cplusplus
extern "C" {
#endif

/* Python module and C API name */
#define PySocket_MODULE_NAME	"_socket"
#define PySocket_CAPI_NAME	"CAPI"
81
#define PySocket_CAPSULE_NAME	PySocket_MODULE_NAME "." PySocket_CAPI_NAME
82 83 84 85 86 87 88 89 90 91 92 93 94 95

/* Abstract the socket file descriptor type */
#ifdef MS_WINDOWS
typedef SOCKET SOCKET_T;
#	ifdef MS_WIN64
#		define SIZEOF_SOCKET_T 8
#	else
#		define SIZEOF_SOCKET_T 4
#	endif
#else
typedef int SOCKET_T;
#	define SIZEOF_SOCKET_T SIZEOF_INT
#endif

96 97 98 99 100 101
/* Socket address */
typedef union sock_addr {
	struct sockaddr_in in;
#ifdef AF_UNIX
	struct sockaddr_un un;
#endif
102 103 104
#ifdef AF_NETLINK
	struct sockaddr_nl nl;
#endif
105 106 107 108 109 110 111 112
#ifdef ENABLE_IPV6
	struct sockaddr_in6 in6;
	struct sockaddr_storage storage;
#endif
#ifdef HAVE_BLUETOOTH_BLUETOOTH_H
	struct sockaddr_l2 bt_l2;
	struct sockaddr_rc bt_rc;
	struct sockaddr_sco bt_sco;
113
	struct sockaddr_hci bt_hci;
114 115 116 117 118 119
#endif
#ifdef HAVE_NETPACKET_PACKET_H
	struct sockaddr_ll ll;
#endif
} sock_addr_t;

120 121 122 123 124 125 126 127 128 129
/* The object holding a socket.  It holds some extra information,
   like the address family, which is used to decode socket address
   arguments properly. */

typedef struct {
	PyObject_HEAD
	SOCKET_T sock_fd;	/* Socket file descriptor */
	int sock_family;	/* Address family, e.g., AF_INET */
	int sock_type;		/* Socket type, e.g., SOCK_STREAM */
	int sock_proto;		/* Protocol type, usually 0 */
130
	PyObject *(*errorhandler)(void); /* Error handler; checks
131 132
					    errno, returns NULL and
					    sets a Python exception */
133 134
	double sock_timeout;		 /* Operation timeout in seconds;
					    0.0 means non-blocking */
135 136 137 138
} PySocketSockObject;

/* --- C API ----------------------------------------------------*/

139 140 141 142 143 144 145
/* Short explanation of what this C API export mechanism does
   and how it works:

    The _ssl module needs access to the type object defined in 
    the _socket module. Since cross-DLL linking introduces a lot of
    problems on many platforms, the "trick" is to wrap the
    C API of a module in a struct which then gets exported to
146
    other modules via a PyCapsule.
147 148 149 150

    The code in socketmodule.c defines this struct (which currently
    only contains the type object reference, but could very
    well also include other C APIs needed by other modules)
151
    and exports it as PyCapsule via the module dictionary
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
    under the name "CAPI".

    Other modules can now include the socketmodule.h file
    which defines the needed C APIs to import and set up
    a static copy of this struct in the importing module.

    After initialization, the importing module can then
    access the C APIs from the _socket module by simply
    referring to the static struct, e.g.

    Load _socket module and its C API; this sets up the global
    PySocketModule:
    
	if (PySocketModule_ImportModuleAndAPI())
	    return;


    Now use the C API as if it were defined in the using
    module:

        if (!PyArg_ParseTuple(args, "O!|zz:ssl",

			      PySocketModule.Sock_Type,

			      (PyObject*)&Sock,
			      &key_file, &cert_file))
	    return NULL;

    Support could easily be extended to export more C APIs/symbols
    this way. Currently, only the type object is exported, 
    other candidates would be socket constructors and socket
    access functions.

*/

187 188
/* C API for usage by other Python modules */
typedef struct {
189
	PyTypeObject *Sock_Type;
190
        PyObject *error;
191
} PySocketModule_APIObject;
192

193
#define PySocketModule_ImportModuleAndAPI() PyCapsule_Import(PySocket_CAPSULE_NAME, 1)
194

195
#ifdef __cplusplus
196 197 198
}
#endif
#endif /* !Py__SOCKET_H */