Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 1 | /* Socket module header file */ |
| 2 | |
| 3 | /* Includes needed for the sockaddr_* symbols below */ |
| 4 | #ifndef MS_WINDOWS |
Martin v. Löwis | c16f3bd | 2003-05-03 09:14:54 +0000 | [diff] [blame] | 5 | #ifdef __VMS |
| 6 | # include <socket.h> |
| 7 | # else |
| 8 | # include <sys/socket.h> |
| 9 | # endif |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 10 | # include <netinet/in.h> |
Jesus Cea | 14c81ab | 2012-10-05 02:11:36 +0200 | [diff] [blame] | 11 | # if !defined(__CYGWIN__) |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 12 | # include <netinet/tcp.h> |
| 13 | # endif |
| 14 | |
| 15 | #else /* MS_WINDOWS */ |
Martin v. Löwis | 272cb40 | 2002-03-01 08:31:07 +0000 | [diff] [blame] | 16 | # include <winsock2.h> |
Steve Dower | 3e96f32 | 2015-03-02 08:01:10 -0800 | [diff] [blame] | 17 | /* Windows 'supports' CMSG_LEN, but does not follow the POSIX standard |
| 18 | * interface at all, so there is no point including the code that |
| 19 | * attempts to use it. |
| 20 | */ |
| 21 | # ifdef PySocket_BUILDING_SOCKET |
| 22 | # undef CMSG_LEN |
| 23 | # endif |
Martin v. Löwis | 272cb40 | 2002-03-01 08:31:07 +0000 | [diff] [blame] | 24 | # include <ws2tcpip.h> |
Amaury Forgeot d'Arc | 3d17a5c | 2008-06-13 01:09:34 +0000 | [diff] [blame] | 25 | /* VC6 is shipped with old platform headers, and does not have MSTcpIP.h |
| 26 | * Separate SDKs have all the functions we want, but older ones don't have |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 27 | * any version information. |
Martin v. Löwis | b072cf2 | 2008-06-14 11:59:52 +0000 | [diff] [blame] | 28 | * I use SIO_GET_MULTICAST_FILTER to detect a decent SDK. |
Amaury Forgeot d'Arc | 3d17a5c | 2008-06-13 01:09:34 +0000 | [diff] [blame] | 29 | */ |
Martin v. Löwis | b072cf2 | 2008-06-14 11:59:52 +0000 | [diff] [blame] | 30 | # ifdef SIO_GET_MULTICAST_FILTER |
Amaury Forgeot d'Arc | 3d17a5c | 2008-06-13 01:09:34 +0000 | [diff] [blame] | 31 | # include <MSTcpIP.h> /* for SIO_RCVALL */ |
| 32 | # define HAVE_ADDRINFO |
| 33 | # define HAVE_SOCKADDR_STORAGE |
| 34 | # define HAVE_GETADDRINFO |
| 35 | # define HAVE_GETNAMEINFO |
| 36 | # define ENABLE_IPV6 |
| 37 | # else |
| 38 | typedef int socklen_t; |
| 39 | # endif /* IPPROTO_IPV6 */ |
| 40 | #endif /* MS_WINDOWS */ |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 41 | |
| 42 | #ifdef HAVE_SYS_UN_H |
| 43 | # include <sys/un.h> |
| 44 | #else |
| 45 | # undef AF_UNIX |
| 46 | #endif |
| 47 | |
Martin v. Löwis | 11017b1 | 2006-01-14 18:12:57 +0000 | [diff] [blame] | 48 | #ifdef HAVE_LINUX_NETLINK_H |
Neal Norwitz | 6585166 | 2006-01-16 04:31:40 +0000 | [diff] [blame] | 49 | # ifdef HAVE_ASM_TYPES_H |
| 50 | # include <asm/types.h> |
| 51 | # endif |
Martin v. Löwis | 11017b1 | 2006-01-14 18:12:57 +0000 | [diff] [blame] | 52 | # include <linux/netlink.h> |
| 53 | #else |
| 54 | # undef AF_NETLINK |
| 55 | #endif |
| 56 | |
Martin v. Löwis | 12af048 | 2004-01-31 12:34:17 +0000 | [diff] [blame] | 57 | #ifdef HAVE_BLUETOOTH_BLUETOOTH_H |
| 58 | #include <bluetooth/bluetooth.h> |
| 59 | #include <bluetooth/rfcomm.h> |
| 60 | #include <bluetooth/l2cap.h> |
| 61 | #include <bluetooth/sco.h> |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 62 | #include <bluetooth/hci.h> |
Martin v. Löwis | 12af048 | 2004-01-31 12:34:17 +0000 | [diff] [blame] | 63 | #endif |
| 64 | |
Hye-Shik Chang | 96c44658 | 2004-02-02 08:48:45 +0000 | [diff] [blame] | 65 | #ifdef HAVE_BLUETOOTH_H |
| 66 | #include <bluetooth.h> |
| 67 | #endif |
| 68 | |
Nadeem Vawda | d74b593 | 2011-05-15 13:16:22 +0200 | [diff] [blame] | 69 | #ifdef HAVE_NET_IF_H |
| 70 | # include <net/if.h> |
| 71 | #endif |
| 72 | |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 73 | #ifdef HAVE_NETPACKET_PACKET_H |
| 74 | # include <sys/ioctl.h> |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 75 | # include <netpacket/packet.h> |
| 76 | #endif |
| 77 | |
Christian Heimes | 043d6f6 | 2008-01-07 17:19:16 +0000 | [diff] [blame] | 78 | #ifdef HAVE_LINUX_TIPC_H |
| 79 | # include <linux/tipc.h> |
| 80 | #endif |
| 81 | |
Charles-François Natali | 47413c1 | 2011-10-06 19:47:44 +0200 | [diff] [blame] | 82 | #ifdef HAVE_LINUX_CAN_H |
| 83 | #include <linux/can.h> |
| 84 | #endif |
| 85 | |
| 86 | #ifdef HAVE_LINUX_CAN_RAW_H |
| 87 | #include <linux/can/raw.h> |
| 88 | #endif |
| 89 | |
Charles-François Natali | 773e42d | 2013-02-05 19:42:01 +0100 | [diff] [blame] | 90 | #ifdef HAVE_LINUX_CAN_BCM_H |
| 91 | #include <linux/can/bcm.h> |
| 92 | #endif |
| 93 | |
Martin v. Löwis | 9d6c669 | 2012-02-03 17:44:58 +0100 | [diff] [blame] | 94 | #ifdef HAVE_SYS_SYS_DOMAIN_H |
| 95 | #include <sys/sys_domain.h> |
| 96 | #endif |
| 97 | #ifdef HAVE_SYS_KERN_CONTROL_H |
| 98 | #include <sys/kern_control.h> |
| 99 | #endif |
| 100 | |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 101 | #ifndef Py__SOCKET_H |
| 102 | #define Py__SOCKET_H |
| 103 | #ifdef __cplusplus |
| 104 | extern "C" { |
| 105 | #endif |
| 106 | |
| 107 | /* Python module and C API name */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 108 | #define PySocket_MODULE_NAME "_socket" |
| 109 | #define PySocket_CAPI_NAME "CAPI" |
| 110 | #define PySocket_CAPSULE_NAME PySocket_MODULE_NAME "." PySocket_CAPI_NAME |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 111 | |
| 112 | /* Abstract the socket file descriptor type */ |
| 113 | #ifdef MS_WINDOWS |
| 114 | typedef SOCKET SOCKET_T; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 115 | # ifdef MS_WIN64 |
| 116 | # define SIZEOF_SOCKET_T 8 |
| 117 | # else |
| 118 | # define SIZEOF_SOCKET_T 4 |
| 119 | # endif |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 120 | #else |
| 121 | typedef int SOCKET_T; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 122 | # define SIZEOF_SOCKET_T SIZEOF_INT |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 123 | #endif |
| 124 | |
Antoine Pitrou | 67c7ce4 | 2010-08-28 20:42:55 +0000 | [diff] [blame] | 125 | #if SIZEOF_SOCKET_T <= SIZEOF_LONG |
| 126 | #define PyLong_FromSocket_t(fd) PyLong_FromLong((SOCKET_T)(fd)) |
| 127 | #define PyLong_AsSocket_t(fd) (SOCKET_T)PyLong_AsLong(fd) |
| 128 | #else |
| 129 | #define PyLong_FromSocket_t(fd) PyLong_FromLongLong((SOCKET_T)(fd)) |
| 130 | #define PyLong_AsSocket_t(fd) (SOCKET_T)PyLong_AsLongLong(fd) |
| 131 | #endif |
| 132 | |
Guido van Rossum | 8ee3e5a | 2005-09-14 18:09:42 +0000 | [diff] [blame] | 133 | /* Socket address */ |
| 134 | typedef union sock_addr { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 135 | struct sockaddr_in in; |
Charles-François Natali | 8b75965 | 2011-12-23 16:44:51 +0100 | [diff] [blame] | 136 | struct sockaddr sa; |
Guido van Rossum | 8ee3e5a | 2005-09-14 18:09:42 +0000 | [diff] [blame] | 137 | #ifdef AF_UNIX |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 138 | struct sockaddr_un un; |
Guido van Rossum | 8ee3e5a | 2005-09-14 18:09:42 +0000 | [diff] [blame] | 139 | #endif |
Martin v. Löwis | 11017b1 | 2006-01-14 18:12:57 +0000 | [diff] [blame] | 140 | #ifdef AF_NETLINK |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 141 | struct sockaddr_nl nl; |
Martin v. Löwis | 11017b1 | 2006-01-14 18:12:57 +0000 | [diff] [blame] | 142 | #endif |
Guido van Rossum | 8ee3e5a | 2005-09-14 18:09:42 +0000 | [diff] [blame] | 143 | #ifdef ENABLE_IPV6 |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 144 | struct sockaddr_in6 in6; |
| 145 | struct sockaddr_storage storage; |
Guido van Rossum | 8ee3e5a | 2005-09-14 18:09:42 +0000 | [diff] [blame] | 146 | #endif |
| 147 | #ifdef HAVE_BLUETOOTH_BLUETOOTH_H |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 148 | struct sockaddr_l2 bt_l2; |
| 149 | struct sockaddr_rc bt_rc; |
| 150 | struct sockaddr_sco bt_sco; |
| 151 | struct sockaddr_hci bt_hci; |
Guido van Rossum | 8ee3e5a | 2005-09-14 18:09:42 +0000 | [diff] [blame] | 152 | #endif |
| 153 | #ifdef HAVE_NETPACKET_PACKET_H |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 154 | struct sockaddr_ll ll; |
Guido van Rossum | 8ee3e5a | 2005-09-14 18:09:42 +0000 | [diff] [blame] | 155 | #endif |
Charles-François Natali | 47413c1 | 2011-10-06 19:47:44 +0200 | [diff] [blame] | 156 | #ifdef HAVE_LINUX_CAN_H |
| 157 | struct sockaddr_can can; |
| 158 | #endif |
Martin v. Löwis | 9d6c669 | 2012-02-03 17:44:58 +0100 | [diff] [blame] | 159 | #ifdef HAVE_SYS_KERN_CONTROL_H |
| 160 | struct sockaddr_ctl ctl; |
| 161 | #endif |
Guido van Rossum | 8ee3e5a | 2005-09-14 18:09:42 +0000 | [diff] [blame] | 162 | } sock_addr_t; |
| 163 | |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 164 | /* The object holding a socket. It holds some extra information, |
| 165 | like the address family, which is used to decode socket address |
| 166 | arguments properly. */ |
| 167 | |
| 168 | typedef struct { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 169 | PyObject_HEAD |
| 170 | SOCKET_T sock_fd; /* Socket file descriptor */ |
| 171 | int sock_family; /* Address family, e.g., AF_INET */ |
| 172 | int sock_type; /* Socket type, e.g., SOCK_STREAM */ |
| 173 | int sock_proto; /* Protocol type, usually 0 */ |
| 174 | PyObject *(*errorhandler)(void); /* Error handler; checks |
| 175 | errno, returns NULL and |
| 176 | sets a Python exception */ |
Victor Stinner | 71694d5 | 2015-03-28 01:18:54 +0100 | [diff] [blame] | 177 | _PyTime_t sock_timeout; /* Operation timeout in seconds; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 178 | 0.0 means non-blocking */ |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 179 | } PySocketSockObject; |
| 180 | |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 181 | /* --- C API ----------------------------------------------------*/ |
| 182 | |
Marc-André Lemburg | 666e70d | 2002-02-25 14:45:40 +0000 | [diff] [blame] | 183 | /* Short explanation of what this C API export mechanism does |
| 184 | and how it works: |
| 185 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 186 | The _ssl module needs access to the type object defined in |
Marc-André Lemburg | 666e70d | 2002-02-25 14:45:40 +0000 | [diff] [blame] | 187 | the _socket module. Since cross-DLL linking introduces a lot of |
| 188 | problems on many platforms, the "trick" is to wrap the |
| 189 | C API of a module in a struct which then gets exported to |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 190 | other modules via a PyCapsule. |
Marc-André Lemburg | 666e70d | 2002-02-25 14:45:40 +0000 | [diff] [blame] | 191 | |
| 192 | The code in socketmodule.c defines this struct (which currently |
| 193 | only contains the type object reference, but could very |
| 194 | well also include other C APIs needed by other modules) |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 195 | and exports it as PyCapsule via the module dictionary |
Marc-André Lemburg | 666e70d | 2002-02-25 14:45:40 +0000 | [diff] [blame] | 196 | under the name "CAPI". |
| 197 | |
| 198 | Other modules can now include the socketmodule.h file |
| 199 | which defines the needed C APIs to import and set up |
| 200 | a static copy of this struct in the importing module. |
| 201 | |
| 202 | After initialization, the importing module can then |
| 203 | access the C APIs from the _socket module by simply |
| 204 | referring to the static struct, e.g. |
| 205 | |
| 206 | Load _socket module and its C API; this sets up the global |
| 207 | PySocketModule: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 208 | |
| 209 | if (PySocketModule_ImportModuleAndAPI()) |
| 210 | return; |
Marc-André Lemburg | 666e70d | 2002-02-25 14:45:40 +0000 | [diff] [blame] | 211 | |
| 212 | |
| 213 | Now use the C API as if it were defined in the using |
| 214 | module: |
| 215 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 216 | if (!PyArg_ParseTuple(args, "O!|zz:ssl", |
Marc-André Lemburg | 666e70d | 2002-02-25 14:45:40 +0000 | [diff] [blame] | 217 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 218 | PySocketModule.Sock_Type, |
Marc-André Lemburg | 666e70d | 2002-02-25 14:45:40 +0000 | [diff] [blame] | 219 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 220 | (PyObject*)&Sock, |
| 221 | &key_file, &cert_file)) |
| 222 | return NULL; |
Marc-André Lemburg | 666e70d | 2002-02-25 14:45:40 +0000 | [diff] [blame] | 223 | |
| 224 | Support could easily be extended to export more C APIs/symbols |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 225 | this way. Currently, only the type object is exported, |
Marc-André Lemburg | 666e70d | 2002-02-25 14:45:40 +0000 | [diff] [blame] | 226 | other candidates would be socket constructors and socket |
| 227 | access functions. |
| 228 | |
| 229 | */ |
| 230 | |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 231 | /* C API for usage by other Python modules */ |
| 232 | typedef struct { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 233 | PyTypeObject *Sock_Type; |
| 234 | PyObject *error; |
Antoine Pitrou | c4df784 | 2010-12-03 19:59:41 +0000 | [diff] [blame] | 235 | PyObject *timeout_error; |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 236 | } PySocketModule_APIObject; |
Tim Peters | 6f5505a | 2002-02-17 03:58:51 +0000 | [diff] [blame] | 237 | |
Benjamin Peterson | 81c447f | 2009-05-06 02:43:58 +0000 | [diff] [blame] | 238 | #define PySocketModule_ImportModuleAndAPI() PyCapsule_Import(PySocket_CAPSULE_NAME, 1) |
Marc-André Lemburg | 666e70d | 2002-02-25 14:45:40 +0000 | [diff] [blame] | 239 | |
Benjamin Peterson | 2349020 | 2009-08-12 18:11:03 +0000 | [diff] [blame] | 240 | #ifdef __cplusplus |
Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 241 | } |
| 242 | #endif |
| 243 | #endif /* !Py__SOCKET_H */ |