blob: b83f9af3bdedb3cce19d4bf56afb66fc23113781 [file] [log] [blame]
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00001/* Socket module header file */
2
3/* Includes needed for the sockaddr_* symbols below */
4#ifndef MS_WINDOWS
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +00005#ifdef __VMS
6# include <socket.h>
7# else
8# include <sys/socket.h>
9# endif
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +000010# include <netinet/in.h>
Jesus Cea14c81ab2012-10-05 02:11:36 +020011# if !defined(__CYGWIN__)
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +000012# include <netinet/tcp.h>
13# endif
14
15#else /* MS_WINDOWS */
Martin v. Löwis272cb402002-03-01 08:31:07 +000016# include <winsock2.h>
17# include <ws2tcpip.h>
Amaury Forgeot d'Arc3d17a5c2008-06-13 01:09:34 +000018/* VC6 is shipped with old platform headers, and does not have MSTcpIP.h
19 * Separate SDKs have all the functions we want, but older ones don't have
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000020 * any version information.
Martin v. Löwisb072cf22008-06-14 11:59:52 +000021 * I use SIO_GET_MULTICAST_FILTER to detect a decent SDK.
Amaury Forgeot d'Arc3d17a5c2008-06-13 01:09:34 +000022 */
Martin v. Löwisb072cf22008-06-14 11:59:52 +000023# ifdef SIO_GET_MULTICAST_FILTER
Amaury Forgeot d'Arc3d17a5c2008-06-13 01:09:34 +000024# include <MSTcpIP.h> /* for SIO_RCVALL */
25# define HAVE_ADDRINFO
26# define HAVE_SOCKADDR_STORAGE
27# define HAVE_GETADDRINFO
28# define HAVE_GETNAMEINFO
29# define ENABLE_IPV6
30# else
31typedef int socklen_t;
32# endif /* IPPROTO_IPV6 */
33#endif /* MS_WINDOWS */
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +000034
35#ifdef HAVE_SYS_UN_H
36# include <sys/un.h>
37#else
38# undef AF_UNIX
39#endif
40
Martin v. Löwis11017b12006-01-14 18:12:57 +000041#ifdef HAVE_LINUX_NETLINK_H
Neal Norwitz65851662006-01-16 04:31:40 +000042# ifdef HAVE_ASM_TYPES_H
43# include <asm/types.h>
44# endif
Martin v. Löwis11017b12006-01-14 18:12:57 +000045# include <linux/netlink.h>
46#else
47# undef AF_NETLINK
48#endif
49
Martin v. Löwis12af0482004-01-31 12:34:17 +000050#ifdef HAVE_BLUETOOTH_BLUETOOTH_H
51#include <bluetooth/bluetooth.h>
52#include <bluetooth/rfcomm.h>
53#include <bluetooth/l2cap.h>
54#include <bluetooth/sco.h>
Thomas Wouterscf297e42007-02-23 15:07:44 +000055#include <bluetooth/hci.h>
Martin v. Löwis12af0482004-01-31 12:34:17 +000056#endif
57
Hye-Shik Chang96c446582004-02-02 08:48:45 +000058#ifdef HAVE_BLUETOOTH_H
59#include <bluetooth.h>
60#endif
61
Nadeem Vawdad74b5932011-05-15 13:16:22 +020062#ifdef HAVE_NET_IF_H
63# include <net/if.h>
64#endif
65
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +000066#ifdef HAVE_NETPACKET_PACKET_H
67# include <sys/ioctl.h>
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +000068# include <netpacket/packet.h>
69#endif
70
Christian Heimes043d6f62008-01-07 17:19:16 +000071#ifdef HAVE_LINUX_TIPC_H
72# include <linux/tipc.h>
73#endif
74
Charles-François Natali47413c12011-10-06 19:47:44 +020075#ifdef HAVE_LINUX_CAN_H
76#include <linux/can.h>
77#endif
78
79#ifdef HAVE_LINUX_CAN_RAW_H
80#include <linux/can/raw.h>
81#endif
82
Charles-François Natali773e42d2013-02-05 19:42:01 +010083#ifdef HAVE_LINUX_CAN_BCM_H
84#include <linux/can/bcm.h>
85#endif
86
Martin v. Löwis9d6c6692012-02-03 17:44:58 +010087#ifdef HAVE_SYS_SYS_DOMAIN_H
88#include <sys/sys_domain.h>
89#endif
90#ifdef HAVE_SYS_KERN_CONTROL_H
91#include <sys/kern_control.h>
92#endif
93
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +000094#ifndef Py__SOCKET_H
95#define Py__SOCKET_H
96#ifdef __cplusplus
97extern "C" {
98#endif
99
100/* Python module and C API name */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000101#define PySocket_MODULE_NAME "_socket"
102#define PySocket_CAPI_NAME "CAPI"
103#define PySocket_CAPSULE_NAME PySocket_MODULE_NAME "." PySocket_CAPI_NAME
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000104
105/* Abstract the socket file descriptor type */
106#ifdef MS_WINDOWS
107typedef SOCKET SOCKET_T;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000108# ifdef MS_WIN64
109# define SIZEOF_SOCKET_T 8
110# else
111# define SIZEOF_SOCKET_T 4
112# endif
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000113#else
114typedef int SOCKET_T;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000115# define SIZEOF_SOCKET_T SIZEOF_INT
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000116#endif
117
Antoine Pitrou67c7ce42010-08-28 20:42:55 +0000118#if SIZEOF_SOCKET_T <= SIZEOF_LONG
119#define PyLong_FromSocket_t(fd) PyLong_FromLong((SOCKET_T)(fd))
120#define PyLong_AsSocket_t(fd) (SOCKET_T)PyLong_AsLong(fd)
121#else
122#define PyLong_FromSocket_t(fd) PyLong_FromLongLong((SOCKET_T)(fd))
123#define PyLong_AsSocket_t(fd) (SOCKET_T)PyLong_AsLongLong(fd)
124#endif
125
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000126/* Socket address */
127typedef union sock_addr {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000128 struct sockaddr_in in;
Charles-François Natali8b759652011-12-23 16:44:51 +0100129 struct sockaddr sa;
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000130#ifdef AF_UNIX
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000131 struct sockaddr_un un;
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000132#endif
Martin v. Löwis11017b12006-01-14 18:12:57 +0000133#ifdef AF_NETLINK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000134 struct sockaddr_nl nl;
Martin v. Löwis11017b12006-01-14 18:12:57 +0000135#endif
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000136#ifdef ENABLE_IPV6
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000137 struct sockaddr_in6 in6;
138 struct sockaddr_storage storage;
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000139#endif
140#ifdef HAVE_BLUETOOTH_BLUETOOTH_H
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000141 struct sockaddr_l2 bt_l2;
142 struct sockaddr_rc bt_rc;
143 struct sockaddr_sco bt_sco;
144 struct sockaddr_hci bt_hci;
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000145#endif
146#ifdef HAVE_NETPACKET_PACKET_H
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000147 struct sockaddr_ll ll;
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000148#endif
Charles-François Natali47413c12011-10-06 19:47:44 +0200149#ifdef HAVE_LINUX_CAN_H
150 struct sockaddr_can can;
151#endif
Martin v. Löwis9d6c6692012-02-03 17:44:58 +0100152#ifdef HAVE_SYS_KERN_CONTROL_H
153 struct sockaddr_ctl ctl;
154#endif
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000155} sock_addr_t;
156
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000157/* The object holding a socket. It holds some extra information,
158 like the address family, which is used to decode socket address
159 arguments properly. */
160
161typedef struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000162 PyObject_HEAD
163 SOCKET_T sock_fd; /* Socket file descriptor */
164 int sock_family; /* Address family, e.g., AF_INET */
165 int sock_type; /* Socket type, e.g., SOCK_STREAM */
166 int sock_proto; /* Protocol type, usually 0 */
167 PyObject *(*errorhandler)(void); /* Error handler; checks
168 errno, returns NULL and
169 sets a Python exception */
170 double sock_timeout; /* Operation timeout in seconds;
171 0.0 means non-blocking */
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000172} PySocketSockObject;
173
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000174/* --- C API ----------------------------------------------------*/
175
Marc-André Lemburg666e70d2002-02-25 14:45:40 +0000176/* Short explanation of what this C API export mechanism does
177 and how it works:
178
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000179 The _ssl module needs access to the type object defined in
Marc-André Lemburg666e70d2002-02-25 14:45:40 +0000180 the _socket module. Since cross-DLL linking introduces a lot of
181 problems on many platforms, the "trick" is to wrap the
182 C API of a module in a struct which then gets exported to
Benjamin Petersonb173f782009-05-05 22:31:58 +0000183 other modules via a PyCapsule.
Marc-André Lemburg666e70d2002-02-25 14:45:40 +0000184
185 The code in socketmodule.c defines this struct (which currently
186 only contains the type object reference, but could very
187 well also include other C APIs needed by other modules)
Benjamin Petersonb173f782009-05-05 22:31:58 +0000188 and exports it as PyCapsule via the module dictionary
Marc-André Lemburg666e70d2002-02-25 14:45:40 +0000189 under the name "CAPI".
190
191 Other modules can now include the socketmodule.h file
192 which defines the needed C APIs to import and set up
193 a static copy of this struct in the importing module.
194
195 After initialization, the importing module can then
196 access the C APIs from the _socket module by simply
197 referring to the static struct, e.g.
198
199 Load _socket module and its C API; this sets up the global
200 PySocketModule:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000201
202 if (PySocketModule_ImportModuleAndAPI())
203 return;
Marc-André Lemburg666e70d2002-02-25 14:45:40 +0000204
205
206 Now use the C API as if it were defined in the using
207 module:
208
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000209 if (!PyArg_ParseTuple(args, "O!|zz:ssl",
Marc-André Lemburg666e70d2002-02-25 14:45:40 +0000210
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000211 PySocketModule.Sock_Type,
Marc-André Lemburg666e70d2002-02-25 14:45:40 +0000212
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000213 (PyObject*)&Sock,
214 &key_file, &cert_file))
215 return NULL;
Marc-André Lemburg666e70d2002-02-25 14:45:40 +0000216
217 Support could easily be extended to export more C APIs/symbols
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000218 this way. Currently, only the type object is exported,
Marc-André Lemburg666e70d2002-02-25 14:45:40 +0000219 other candidates would be socket constructors and socket
220 access functions.
221
222*/
223
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000224/* C API for usage by other Python modules */
225typedef struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000226 PyTypeObject *Sock_Type;
227 PyObject *error;
Antoine Pitrouc4df7842010-12-03 19:59:41 +0000228 PyObject *timeout_error;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000229} PySocketModule_APIObject;
Tim Peters6f5505a2002-02-17 03:58:51 +0000230
Benjamin Peterson81c447f2009-05-06 02:43:58 +0000231#define PySocketModule_ImportModuleAndAPI() PyCapsule_Import(PySocket_CAPSULE_NAME, 1)
Marc-André Lemburg666e70d2002-02-25 14:45:40 +0000232
Benjamin Peterson23490202009-08-12 18:11:03 +0000233#ifdef __cplusplus
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000234}
235#endif
236#endif /* !Py__SOCKET_H */