blob: 652900811f3c97d81f78be7dc2a0edeef1cb5499 [file] [log] [blame]
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001/* Socket module */
2
3/*
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004
Guido van Rossum6574b3e1991-06-25 21:36:08 +00005This module provides an interface to Berkeley socket IPC.
6
7Limitations:
8
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00009- Only AF_INET, AF_INET6 and AF_UNIX address families are supported in a
Christian Heimes043d6f62008-01-07 17:19:16 +000010 portable manner, though AF_PACKET, AF_NETLINK and AF_TIPC are supported
11 under Linux.
Guido van Rossumc4fcfa32002-06-07 03:19:37 +000012- No read/write operations (use sendall/recv or makefile instead).
13- Additional restrictions apply on some non-Unix platforms (compensated
14 for by socket.py).
Guido van Rossum6574b3e1991-06-25 21:36:08 +000015
Guido van Rossum27e177d1995-03-16 15:43:47 +000016Module interface:
Guido van Rossum6574b3e1991-06-25 21:36:08 +000017
Guido van Rossum27e177d1995-03-16 15:43:47 +000018- socket.error: exception raised for socket specific errors
Martin v. Löwis2d8d4272001-07-21 18:05:31 +000019- socket.gaierror: exception raised for getaddrinfo/getnameinfo errors,
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000020 a subclass of socket.error
Martin v. Löwis2d8d4272001-07-21 18:05:31 +000021- socket.herror: exception raised for gethostby* errors,
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000022 a subclass of socket.error
Guido van Rossum30a685f1991-06-27 15:51:29 +000023- socket.gethostbyname(hostname) --> host IP address (string: 'dd.dd.dd.dd')
Guido van Rossum3bbc62e1995-01-02 19:30:30 +000024- socket.gethostbyaddr(IP address) --> (hostname, [alias, ...], [IP addr, ...])
Guido van Rossum27e177d1995-03-16 15:43:47 +000025- socket.gethostname() --> host name (string: 'spam' or 'spam.domain.com')
Guido van Rossum25405c71996-12-19 16:42:52 +000026- socket.getprotobyname(protocolname) --> protocol number
Barry Warsaw11b91a02004-06-28 00:50:43 +000027- socket.getservbyname(servicename[, protocolname]) --> port number
28- socket.getservbyport(portnumber[, protocolname]) --> service name
Guido van Rossum7d0a8262007-05-21 23:13:11 +000029- socket.socket([family[, type [, proto, fileno]]]) --> new socket object
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000030 (fileno specifies a pre-existing socket file descriptor)
Dave Cole331708b2004-08-09 04:51:41 +000031- socket.socketpair([family[, type [, proto]]]) --> (socket, socket)
Guido van Rossum006bf911996-06-12 04:04:55 +000032- socket.ntohs(16 bit value) --> new int object
33- socket.ntohl(32 bit value) --> new int object
34- socket.htons(16 bit value) --> new int object
35- socket.htonl(32 bit value) --> new int object
Martin v. Löwis2d8d4272001-07-21 18:05:31 +000036- socket.getaddrinfo(host, port [, family, socktype, proto, flags])
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000037 --> List of (family, socktype, proto, canonname, sockaddr)
Martin v. Löwis2d8d4272001-07-21 18:05:31 +000038- socket.getnameinfo(sockaddr, flags) --> (host, port)
Guido van Rossum27e177d1995-03-16 15:43:47 +000039- socket.AF_INET, socket.SOCK_STREAM, etc.: constants from <socket.h>
Guido van Rossum47dfa4a2003-04-25 05:48:32 +000040- socket.has_ipv6: boolean value indicating if IPv6 is supported
Guido van Rossum5c9eb211999-08-20 18:21:51 +000041- socket.inet_aton(IP address) -> 32-bit packed IP representation
42- socket.inet_ntoa(packed IP) -> IP address string
Guido van Rossum9d0c8ce2002-07-18 17:08:35 +000043- socket.getdefaulttimeout() -> None | float
44- socket.setdefaulttimeout(None | float)
Guido van Rossum6574b3e1991-06-25 21:36:08 +000045- an Internet socket address is a pair (hostname, port)
46 where hostname can be anything recognized by gethostbyname()
47 (including the dd.dd.dd.dd notation) and port is in host byte order
48- where a hostname is returned, the dd.dd.dd.dd notation is used
Guido van Rossum27e177d1995-03-16 15:43:47 +000049- a UNIX domain socket address is a string specifying the pathname
Jeremy Hylton22308652001-02-02 03:23:09 +000050- an AF_PACKET socket address is a tuple containing a string
51 specifying the ethernet interface and an integer specifying
52 the Ethernet protocol number to be received. For example:
Jeremy Hyltondbfb6622001-02-02 19:55:17 +000053 ("eth0",0x1234). Optional 3rd,4th,5th elements in the tuple
Andrew M. Kuchlingb8e17172004-07-10 23:39:35 +000054 specify packet-type and ha-type/addr.
Christian Heimes043d6f62008-01-07 17:19:16 +000055- an AF_TIPC socket address is expressed as
56 (addr_type, v1, v2, v3 [, scope]); where addr_type can be one of:
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000057 TIPC_ADDR_NAMESEQ, TIPC_ADDR_NAME, and TIPC_ADDR_ID;
Christian Heimes043d6f62008-01-07 17:19:16 +000058 and scope can be one of:
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000059 TIPC_ZONE_SCOPE, TIPC_CLUSTER_SCOPE, and TIPC_NODE_SCOPE.
Christian Heimes043d6f62008-01-07 17:19:16 +000060 The meaning of v1, v2 and v3 depends on the value of addr_type:
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000061 if addr_type is TIPC_ADDR_NAME:
62 v1 is the server type
63 v2 is the port identifier
64 v3 is ignored
65 if addr_type is TIPC_ADDR_NAMESEQ:
66 v1 is the server type
67 v2 is the lower port number
68 v3 is the upper port number
69 if addr_type is TIPC_ADDR_ID:
70 v1 is the node
71 v2 is the ref
72 v3 is ignored
Christian Heimes043d6f62008-01-07 17:19:16 +000073
Guido van Rossum6574b3e1991-06-25 21:36:08 +000074
Guido van Rossumc4fcfa32002-06-07 03:19:37 +000075Local naming conventions:
Guido van Rossum6574b3e1991-06-25 21:36:08 +000076
Guido van Rossumc4fcfa32002-06-07 03:19:37 +000077- names starting with sock_ are socket object methods
78- names starting with socket_ are module-level functions
79- names starting with PySocket are exported through socketmodule.h
Guido van Rossum30a685f1991-06-27 15:51:29 +000080
Guido van Rossum6574b3e1991-06-25 21:36:08 +000081*/
82
Thomas Wouters477c8d52006-05-27 19:21:47 +000083#ifdef __APPLE__
84 /*
85 * inet_aton is not available on OSX 10.3, yet we want to use a binary
86 * that was build on 10.4 or later to work on that release, weak linking
87 * comes to the rescue.
88 */
89# pragma weak inet_aton
90#endif
91
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000092#include "Python.h"
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000093#include "structmember.h"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000094
Guido van Rossum47dfa4a2003-04-25 05:48:32 +000095#undef MAX
96#define MAX(x, y) ((x) < (y) ? (y) : (x))
97
Guido van Rossumc4fcfa32002-06-07 03:19:37 +000098/* Socket object documentation */
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000099PyDoc_STRVAR(sock_doc,
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000100"socket([family[, type[, proto]]]) -> socket object\n\
101\n\
102Open a socket of the given type. The family argument specifies the\n\
103address family; it defaults to AF_INET. The type argument specifies\n\
104whether this is a stream (SOCK_STREAM, this is the default)\n\
105or datagram (SOCK_DGRAM) socket. The protocol argument defaults to 0,\n\
106specifying the default protocol. Keyword arguments are accepted.\n\
107\n\
108A socket object represents one endpoint of a network connection.\n\
109\n\
110Methods of socket objects (keyword arguments not allowed):\n\
111\n\
Guido van Rossum39eb8fa2007-11-16 01:24:05 +0000112_accept() -- accept connection, returning new socket fd and client address\n\
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000113bind(addr) -- bind the socket to a local address\n\
114close() -- close the socket\n\
115connect(addr) -- connect the socket to a remote address\n\
116connect_ex(addr) -- connect, return an error code instead of an exception\n\
Guido van Rossum39eb8fa2007-11-16 01:24:05 +0000117_dup() -- return a new socket fd duplicated from fileno()\n\
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000118fileno() -- return underlying file descriptor\n\
119getpeername() -- return remote address [*]\n\
120getsockname() -- return local address\n\
121getsockopt(level, optname[, buflen]) -- get socket options\n\
122gettimeout() -- return timeout or None\n\
123listen(n) -- start listening for incoming connections\n\
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000124recv(buflen[, flags]) -- receive data\n\
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000125recv_into(buffer[, nbytes[, flags]]) -- receive data (into a buffer)\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +0000126recvfrom(buflen[, flags]) -- receive data and sender\'s address\n\
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000127recvfrom_into(buffer[, nbytes, [, flags])\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +0000128 -- receive data and sender\'s address (into a buffer)\n\
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000129sendall(data[, flags]) -- send all data\n\
130send(data[, flags]) -- send data, may not send all of it\n\
131sendto(data[, flags], addr) -- send data to a given address\n\
132setblocking(0 | 1) -- set or clear the blocking I/O flag\n\
133setsockopt(level, optname, value) -- set socket options\n\
134settimeout(None | float) -- set or clear the timeout\n\
135shutdown(how) -- shut down traffic in one or both directions\n\
136\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000137 [*] not available on all platforms!");
Guido van Rossum3baaa131999-03-22 21:44:51 +0000138
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +0000139/* XXX This is a terrible mess of platform-dependent preprocessor hacks.
Guido van Rossum384ca9c2001-10-27 22:20:47 +0000140 I hope some day someone can clean this up please... */
141
Guido van Rossum9376b741999-09-15 22:01:40 +0000142/* Hacks for gethostbyname_r(). On some non-Linux platforms, the configure
143 script doesn't get this right, so we hardcode some platform checks below.
144 On the other hand, not all Linux versions agree, so there the settings
145 computed by the configure script are needed! */
146
147#ifndef linux
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000148# undef HAVE_GETHOSTBYNAME_R_3_ARG
149# undef HAVE_GETHOSTBYNAME_R_5_ARG
150# undef HAVE_GETHOSTBYNAME_R_6_ARG
Guido van Rossum9376b741999-09-15 22:01:40 +0000151#endif
Guido van Rossume7de2061999-03-24 17:24:33 +0000152
Guido van Rossum7a122991999-04-13 04:07:32 +0000153#ifndef WITH_THREAD
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000154# undef HAVE_GETHOSTBYNAME_R
Guido van Rossum7a122991999-04-13 04:07:32 +0000155#endif
156
Guido van Rossume7de2061999-03-24 17:24:33 +0000157#ifdef HAVE_GETHOSTBYNAME_R
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000158# if defined(_AIX) || defined(__osf__)
159# define HAVE_GETHOSTBYNAME_R_3_ARG
160# elif defined(__sun) || defined(__sgi)
161# define HAVE_GETHOSTBYNAME_R_5_ARG
162# elif defined(linux)
Guido van Rossum9376b741999-09-15 22:01:40 +0000163/* Rely on the configure script */
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000164# else
165# undef HAVE_GETHOSTBYNAME_R
166# endif
Guido van Rossume7de2061999-03-24 17:24:33 +0000167#endif
168
Guido van Rossum3eede5a2002-06-07 02:08:35 +0000169#if !defined(HAVE_GETHOSTBYNAME_R) && defined(WITH_THREAD) && \
170 !defined(MS_WINDOWS)
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000171# define USE_GETHOSTBYNAME_LOCK
Guido van Rossum3baaa131999-03-22 21:44:51 +0000172#endif
173
Hye-Shik Chang9ceebd52005-09-24 14:58:47 +0000174/* To use __FreeBSD_version */
175#ifdef HAVE_SYS_PARAM_H
176#include <sys/param.h>
177#endif
Just van Rossum1040d2c2003-05-09 07:53:18 +0000178/* On systems on which getaddrinfo() is believed to not be thread-safe,
Just van Rossum09aecd72003-05-09 08:03:44 +0000179 (this includes the getaddrinfo emulation) protect access with a lock. */
Hye-Shik Chang9ceebd52005-09-24 14:58:47 +0000180#if defined(WITH_THREAD) && (defined(__APPLE__) || \
181 (defined(__FreeBSD__) && __FreeBSD_version+0 < 503000) || \
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000182 defined(__OpenBSD__) || defined(__NetBSD__) || \
183 defined(__VMS) || !defined(HAVE_GETADDRINFO))
Just van Rossum1040d2c2003-05-09 07:53:18 +0000184#define USE_GETADDRINFO_LOCK
185#endif
186
187#ifdef USE_GETADDRINFO_LOCK
188#define ACQUIRE_GETADDRINFO_LOCK PyThread_acquire_lock(netdb_lock, 1);
189#define RELEASE_GETADDRINFO_LOCK PyThread_release_lock(netdb_lock);
190#else
191#define ACQUIRE_GETADDRINFO_LOCK
192#define RELEASE_GETADDRINFO_LOCK
193#endif
194
195#if defined(USE_GETHOSTBYNAME_LOCK) || defined(USE_GETADDRINFO_LOCK)
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000196# include "pythread.h"
Guido van Rossum4f199ea1998-04-09 20:56:35 +0000197#endif
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000198
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000199#if defined(PYCC_VACPP)
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000200# include <types.h>
201# include <io.h>
202# include <sys/ioctl.h>
203# include <utils.h>
204# include <ctype.h>
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000205#endif
206
Martin v. Löwis9e437302002-12-06 12:57:26 +0000207#if defined(__VMS)
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000208# include <ioctl.h>
209#endif
210
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000211#if defined(PYOS_OS2)
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000212# define INCL_DOS
213# define INCL_DOSERRORS
214# define INCL_NOPMAPI
215# include <os2.h>
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000216#endif
217
Jeremy Hyltonfb509a32003-07-17 16:58:48 +0000218#if defined(__sgi) && _COMPILER_VERSION>700 && !_SGIAPI
Martin v. Löwis8eb92a02002-09-19 08:03:21 +0000219/* make sure that the reentrant (gethostbyaddr_r etc)
220 functions are declared correctly if compiling with
221 MIPSPro 7.x in ANSI C mode (default) */
Jeremy Hyltonfb509a32003-07-17 16:58:48 +0000222
Thomas Wouters477c8d52006-05-27 19:21:47 +0000223/* XXX Using _SGIAPI is the wrong thing,
Jeremy Hyltonfb509a32003-07-17 16:58:48 +0000224 but I don't know what the right thing is. */
Trent Mick8ea5bdf2004-09-13 17:48:41 +0000225#undef _SGIAPI /* to avoid warning */
Martin v. Löwis8eb92a02002-09-19 08:03:21 +0000226#define _SGIAPI 1
Jeremy Hyltonfb509a32003-07-17 16:58:48 +0000227
Trent Mick8ea5bdf2004-09-13 17:48:41 +0000228#undef _XOPEN_SOURCE
229#include <sys/socket.h>
230#include <sys/types.h>
231#include <netinet/in.h>
232#ifdef _SS_ALIGNSIZE
233#define HAVE_GETADDRINFO 1
234#define HAVE_GETNAMEINFO 1
235#endif
236
Jeremy Hyltonfb509a32003-07-17 16:58:48 +0000237#define HAVE_INET_PTON
238#include <netdb.h>
Martin v. Löwis8eb92a02002-09-19 08:03:21 +0000239#endif
240
Thomas Wouters477c8d52006-05-27 19:21:47 +0000241/* Irix 6.5 fails to define this variable at all. This is needed
242 for both GCC and SGI's compiler. I'd say that the SGI headers
Georg Brandldbd83392006-02-20 09:42:33 +0000243 are just busted. Same thing for Solaris. */
244#if (defined(__sgi) || defined(sun)) && !defined(INET_ADDRSTRLEN)
Anthony Baxterbab23cf2003-10-04 08:00:49 +0000245#define INET_ADDRSTRLEN 16
246#endif
247
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000248/* Generic includes */
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000249#ifdef HAVE_SYS_TYPES_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000250#include <sys/types.h>
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000251#endif
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000252
Marc-André Lemburg976ade62002-02-16 18:47:07 +0000253/* Generic socket object definitions and includes */
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000254#define PySocket_BUILDING_SOCKET
Marc-André Lemburgbb8b78b2002-02-16 18:44:52 +0000255#include "socketmodule.h"
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000256
257/* Addressing includes */
258
Guido van Rossum6f489d91996-06-28 20:15:15 +0000259#ifndef MS_WINDOWS
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000260
261/* Non-MS WINDOWS includes */
262# include <netdb.h>
Guido van Rossum5c9eb211999-08-20 18:21:51 +0000263
Guido van Rossum9376b741999-09-15 22:01:40 +0000264/* Headers needed for inet_ntoa() and inet_addr() */
Skip Montanaroeb33e5a2007-08-17 12:57:41 +0000265# if defined(PYOS_OS2) && defined(PYCC_VACPP)
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000266# include <netdb.h>
Tim Peters603c6832001-11-05 02:45:59 +0000267typedef size_t socklen_t;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000268# else
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000269# include <arpa/inet.h>
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000270# endif
Guido van Rossum5c9eb211999-08-20 18:21:51 +0000271
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000272# include <fcntl.h>
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000273
Guido van Rossume2ae77b2001-10-24 20:42:55 +0000274#else
Guido van Rossum48a680c2001-03-02 06:34:14 +0000275
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000276/* MS_WINDOWS includes */
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000277# ifdef HAVE_FCNTL_H
278# include <fcntl.h>
279# endif
Guido van Rossum48a680c2001-03-02 06:34:14 +0000280
Jeremy Hylton22308652001-02-02 03:23:09 +0000281#endif
282
Skip Montanaro7befb992004-02-10 16:50:21 +0000283#include <stddef.h>
Martin v. Löwisa45ecae2001-06-24 21:28:42 +0000284
285#ifndef offsetof
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000286# define offsetof(type, member) ((size_t)(&((type *)0)->member))
Martin v. Löwisa45ecae2001-06-24 21:28:42 +0000287#endif
288
Neal Norwitz39d22e52002-11-02 19:55:21 +0000289#ifndef O_NONBLOCK
290# define O_NONBLOCK O_NDELAY
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000291#endif
292
Trent Micka708d6e2004-09-07 17:48:26 +0000293/* include Python's addrinfo.h unless it causes trouble */
294#if defined(__sgi) && _COMPILER_VERSION>700 && defined(_SS_ALIGNSIZE)
295 /* Do not include addinfo.h on some newer IRIX versions.
296 * _SS_ALIGNSIZE is defined in sys/socket.h by 6.5.21,
297 * for example, but not by 6.5.10.
298 */
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000299#elif defined(_MSC_VER) && _MSC_VER>1201
Trent Micka708d6e2004-09-07 17:48:26 +0000300 /* Do not include addrinfo.h for MSVC7 or greater. 'addrinfo' and
301 * EAI_* constants are defined in (the already included) ws2tcpip.h.
302 */
303#else
304# include "addrinfo.h"
305#endif
Jason Tishlerc246cb72004-08-09 13:25:59 +0000306
Martin v. Löwisb9ab1592001-06-24 21:18:26 +0000307#ifndef HAVE_INET_PTON
Christian Heimes96e7b3d2007-11-20 06:51:17 +0000308#if !defined(NTDDI_VERSION) || (NTDDI_VERSION < NTDDI_LONGHORN)
Guido van Rossum3eede5a2002-06-07 02:08:35 +0000309int inet_pton(int af, const char *src, void *dst);
Martin v. Löwisc925b1532001-07-21 09:42:15 +0000310const char *inet_ntop(int af, const void *src, char *dst, socklen_t size);
Martin v. Löwisb9ab1592001-06-24 21:18:26 +0000311#endif
Christian Heimesb6150692007-11-15 23:37:07 +0000312#endif
Martin v. Löwisb9ab1592001-06-24 21:18:26 +0000313
Martin v. Löwisae26dc22001-08-03 10:02:29 +0000314#ifdef __APPLE__
315/* On OS X, getaddrinfo returns no error indication of lookup
316 failure, so we must use the emulation instead of the libinfo
317 implementation. Unfortunately, performing an autoconf test
318 for this bug would require DNS access for the machine performing
319 the configuration, which is not acceptable. Therefore, we
320 determine the bug just by checking for __APPLE__. If this bug
321 gets ever fixed, perhaps checking for sys/version.h would be
322 appropriate, which is 10/0 on the system with the bug. */
Jack Jansen84262fb2002-07-02 14:40:42 +0000323#ifndef HAVE_GETNAMEINFO
324/* This bug seems to be fixed in Jaguar. Ths easiest way I could
325 Find to check for Jaguar is that it has getnameinfo(), which
326 older releases don't have */
Martin v. Löwisae26dc22001-08-03 10:02:29 +0000327#undef HAVE_GETADDRINFO
Martin v. Löwisae26dc22001-08-03 10:02:29 +0000328#endif
Thomas Wouters477c8d52006-05-27 19:21:47 +0000329
330#ifdef HAVE_INET_ATON
331#define USE_INET_ATON_WEAKLINK
332#endif
333
Jack Jansen84262fb2002-07-02 14:40:42 +0000334#endif
Martin v. Löwisae26dc22001-08-03 10:02:29 +0000335
Martin v. Löwis01dfdb32001-06-23 16:30:13 +0000336/* I know this is a bad practice, but it is the easiest... */
Martin v. Löwisae26dc22001-08-03 10:02:29 +0000337#if !defined(HAVE_GETADDRINFO)
Martin v. Löwisfccac2e2003-05-01 05:20:46 +0000338/* avoid clashes with the C library definition of the symbol. */
339#define getaddrinfo fake_getaddrinfo
340#define gai_strerror fake_gai_strerror
341#define freeaddrinfo fake_freeaddrinfo
Martin v. Löwis01dfdb32001-06-23 16:30:13 +0000342#include "getaddrinfo.c"
343#endif
Martin v. Löwisae26dc22001-08-03 10:02:29 +0000344#if !defined(HAVE_GETNAMEINFO)
Martin v. Löwisfccac2e2003-05-01 05:20:46 +0000345#define getnameinfo fake_getnameinfo
Martin v. Löwis01dfdb32001-06-23 16:30:13 +0000346#include "getnameinfo.c"
347#endif
348
Guido van Rossum39eb8fa2007-11-16 01:24:05 +0000349#ifdef MS_WINDOWS
350/* On Windows a socket is really a handle not an fd */
351static SOCKET
352dup_socket(SOCKET handle)
353{
Daniel Stutzbachee541e02010-09-03 12:42:06 +0000354 WSAPROTOCOL_INFO info;
Guido van Rossum39eb8fa2007-11-16 01:24:05 +0000355
Daniel Stutzbachee541e02010-09-03 12:42:06 +0000356 if (WSADuplicateSocket(handle, GetCurrentProcessId(), &info))
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000357 return INVALID_SOCKET;
Daniel Stutzbachee541e02010-09-03 12:42:06 +0000358
359 return WSASocket(FROM_PROTOCOL_INFO, FROM_PROTOCOL_INFO,
360 FROM_PROTOCOL_INFO, &info, 0, 0);
Guido van Rossum39eb8fa2007-11-16 01:24:05 +0000361}
Guido van Rossum2dd8ddd2000-04-21 20:33:00 +0000362#define SOCKETCLOSE closesocket
Guido van Rossum39eb8fa2007-11-16 01:24:05 +0000363#else
364/* On Unix we can use dup to duplicate the file descriptor of a socket*/
365#define dup_socket(fd) dup(fd)
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000366#endif
367
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000368#ifdef MS_WIN32
Guido van Rossum3eede5a2002-06-07 02:08:35 +0000369#define EAFNOSUPPORT WSAEAFNOSUPPORT
370#define snprintf _snprintf
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000371#endif
Fred Drakea04eaad2000-06-30 02:46:07 +0000372
Andrew MacIntyreba43e872002-03-03 03:03:52 +0000373#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Guido van Rossum2dd8ddd2000-04-21 20:33:00 +0000374#define SOCKETCLOSE soclose
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000375#define NO_DUP /* Sockets are Not Actual File Handles under OS/2 */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000376#endif
377
Guido van Rossum2dd8ddd2000-04-21 20:33:00 +0000378#ifndef SOCKETCLOSE
379#define SOCKETCLOSE close
380#endif
381
Jesse Noller32d68c22009-03-31 18:48:42 +0000382#if defined(HAVE_BLUETOOTH_H) || defined(HAVE_BLUETOOTH_BLUETOOTH_H) && !defined(__NetBSD__)
Hye-Shik Chang81268602004-02-02 06:05:24 +0000383#define USE_BLUETOOTH 1
384#if defined(__FreeBSD__)
385#define BTPROTO_L2CAP BLUETOOTH_PROTO_L2CAP
386#define BTPROTO_RFCOMM BLUETOOTH_PROTO_RFCOMM
Thomas Wouterscf297e42007-02-23 15:07:44 +0000387#define BTPROTO_HCI BLUETOOTH_PROTO_HCI
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000388#define SOL_HCI SOL_HCI_RAW
389#define HCI_FILTER SO_HCI_RAW_FILTER
Hye-Shik Chang81268602004-02-02 06:05:24 +0000390#define sockaddr_l2 sockaddr_l2cap
391#define sockaddr_rc sockaddr_rfcomm
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000392#define hci_dev hci_node
Hye-Shik Chang81268602004-02-02 06:05:24 +0000393#define _BT_L2_MEMB(sa, memb) ((sa)->l2cap_##memb)
394#define _BT_RC_MEMB(sa, memb) ((sa)->rfcomm_##memb)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000395#define _BT_HCI_MEMB(sa, memb) ((sa)->hci_##memb)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000396#elif defined(__NetBSD__)
397#define sockaddr_l2 sockaddr_bt
398#define sockaddr_rc sockaddr_bt
Thomas Wouterscf297e42007-02-23 15:07:44 +0000399#define sockaddr_hci sockaddr_bt
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000400#define sockaddr_sco sockaddr_bt
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000401#define _BT_L2_MEMB(sa, memb) ((sa)->bt_##memb)
402#define _BT_RC_MEMB(sa, memb) ((sa)->bt_##memb)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000403#define _BT_HCI_MEMB(sa, memb) ((sa)->bt_##memb)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000404#define _BT_SCO_MEMB(sa, memb) ((sa)->bt_##memb)
Hye-Shik Chang81268602004-02-02 06:05:24 +0000405#else
Hye-Shik Chang81268602004-02-02 06:05:24 +0000406#define _BT_L2_MEMB(sa, memb) ((sa)->l2_##memb)
407#define _BT_RC_MEMB(sa, memb) ((sa)->rc_##memb)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000408#define _BT_HCI_MEMB(sa, memb) ((sa)->hci_##memb)
Hye-Shik Chang81268602004-02-02 06:05:24 +0000409#define _BT_SCO_MEMB(sa, memb) ((sa)->sco_##memb)
410#endif
411#endif
412
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000413#ifdef __VMS
414/* TCP/IP Services for VMS uses a maximum send/recv buffer length */
415#define SEGMENT_SIZE (32 * 1024 -1)
416#endif
417
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000418#define SAS2SA(x) ((struct sockaddr *)(x))
Thomas Wouters89f507f2006-12-13 04:49:30 +0000419
Martin v. Löwise9416172003-05-03 10:12:45 +0000420/*
421 * Constants for getnameinfo()
422 */
423#if !defined(NI_MAXHOST)
424#define NI_MAXHOST 1025
425#endif
426#if !defined(NI_MAXSERV)
427#define NI_MAXSERV 32
428#endif
429
Guido van Rossum7d0a8262007-05-21 23:13:11 +0000430#ifndef INVALID_SOCKET /* MS defines this */
431#define INVALID_SOCKET (-1)
432#endif
433
Guido van Rossum384ca9c2001-10-27 22:20:47 +0000434/* XXX There's a problem here: *static* functions are not supposed to have
435 a Py prefix (or use CapitalizedWords). Later... */
436
Guido van Rossum30a685f1991-06-27 15:51:29 +0000437/* Global variable holding the exception type for errors detected
438 by this module (but not argument type or memory errors, etc.). */
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000439static PyObject *socket_error;
440static PyObject *socket_herror;
441static PyObject *socket_gaierror;
Raymond Hettingeref7343c2003-06-29 03:08:05 +0000442static PyObject *socket_timeout;
Guido van Rossum30a685f1991-06-27 15:51:29 +0000443
Tim Peters643a7fc2002-02-17 04:13:21 +0000444/* A forward reference to the socket type object.
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000445 The sock_type variable contains pointers to various functions,
446 some of which call new_sockobject(), which uses sock_type, so
Tim Peters643a7fc2002-02-17 04:13:21 +0000447 there has to be a circular reference. */
Jeremy Hylton938ace62002-07-17 16:30:39 +0000448static PyTypeObject sock_type;
Guido van Rossum48a680c2001-03-02 06:34:14 +0000449
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000450#if defined(HAVE_POLL_H)
451#include <poll.h>
452#elif defined(HAVE_SYS_POLL_H)
453#include <sys/poll.h>
454#endif
455
Martin v. Löwisf84d1b92006-02-11 09:27:05 +0000456#ifdef Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE
457/* Platform can select file descriptors beyond FD_SETSIZE */
458#define IS_SELECTABLE(s) 1
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000459#elif defined(HAVE_POLL)
460/* Instead of select(), we'll use poll() since poll() works on any fd. */
461#define IS_SELECTABLE(s) 1
462/* Can we call select() with this socket without a buffer overrun? */
Martin v. Löwisf84d1b92006-02-11 09:27:05 +0000463#else
464/* POSIX says selecting file descriptors beyond FD_SETSIZE
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000465 has undefined behaviour. If there's no timeout left, we don't have to
466 call select, so it's a safe, little white lie. */
467#define IS_SELECTABLE(s) ((s)->sock_fd < FD_SETSIZE || s->sock_timeout <= 0.0)
Martin v. Löwisf84d1b92006-02-11 09:27:05 +0000468#endif
Neal Norwitz082b2df2006-02-07 07:04:46 +0000469
470static PyObject*
471select_error(void)
472{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000473 PyErr_SetString(socket_error, "unable to select on socket");
474 return NULL;
Neal Norwitz082b2df2006-02-07 07:04:46 +0000475}
476
Guido van Rossum30a685f1991-06-27 15:51:29 +0000477/* Convenience function to raise an error according to errno
478 and return a NULL pointer from a function. */
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000479
Guido van Rossum73624e91994-10-10 17:59:00 +0000480static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000481set_error(void)
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000482{
Guido van Rossum8d665e61996-06-26 18:22:49 +0000483#ifdef MS_WINDOWS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000484 int err_no = WSAGetLastError();
485 /* PyErr_SetExcFromWindowsErr() invokes FormatMessage() which
486 recognizes the error codes used by both GetLastError() and
487 WSAGetLastError */
488 if (err_no)
489 return PyErr_SetExcFromWindowsErr(socket_error, err_no);
Guido van Rossum14ed0b21994-09-29 09:50:09 +0000490#endif
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000491
Andrew MacIntyreba43e872002-03-03 03:03:52 +0000492#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000493 if (sock_errno() != NO_ERROR) {
494 APIRET rc;
495 ULONG msglen;
496 char outbuf[100];
497 int myerrorcode = sock_errno();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000498
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000499 /* Retrieve socket-related error message from MPTN.MSG file */
500 rc = DosGetMessage(NULL, 0, outbuf, sizeof(outbuf),
501 myerrorcode - SOCBASEERR + 26,
502 "mptn.msg",
503 &msglen);
504 if (rc == NO_ERROR) {
505 PyObject *v;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000506
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000507 /* OS/2 doesn't guarantee a terminator */
508 outbuf[msglen] = '\0';
509 if (strlen(outbuf) > 0) {
510 /* If non-empty msg, trim CRLF */
511 char *lastc = &outbuf[ strlen(outbuf)-1 ];
512 while (lastc > outbuf &&
513 isspace(Py_CHARMASK(*lastc))) {
514 /* Trim trailing whitespace (CRLF) */
515 *lastc-- = '\0';
516 }
517 }
518 v = Py_BuildValue("(is)", myerrorcode, outbuf);
519 if (v != NULL) {
520 PyErr_SetObject(socket_error, v);
521 Py_DECREF(v);
522 }
523 return NULL;
524 }
525 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000526#endif
527
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000528 return PyErr_SetFromErrno(socket_error);
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000529}
530
Guido van Rossum30a685f1991-06-27 15:51:29 +0000531
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000532static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000533set_herror(int h_error)
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000534{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000535 PyObject *v;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000536
537#ifdef HAVE_HSTRERROR
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000538 v = Py_BuildValue("(is)", h_error, (char *)hstrerror(h_error));
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000539#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000540 v = Py_BuildValue("(is)", h_error, "host not found");
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000541#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000542 if (v != NULL) {
543 PyErr_SetObject(socket_herror, v);
544 Py_DECREF(v);
545 }
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000546
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000547 return NULL;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000548}
549
550
551static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000552set_gaierror(int error)
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000553{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000554 PyObject *v;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000555
Martin v. Löwis272cb402002-03-01 08:31:07 +0000556#ifdef EAI_SYSTEM
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000557 /* EAI_SYSTEM is not available on Windows XP. */
558 if (error == EAI_SYSTEM)
559 return set_error();
Martin v. Löwis272cb402002-03-01 08:31:07 +0000560#endif
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000561
Martin v. Löwisf95dd0a2001-08-15 17:14:33 +0000562#ifdef HAVE_GAI_STRERROR
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000563 v = Py_BuildValue("(is)", error, gai_strerror(error));
Martin v. Löwisf95dd0a2001-08-15 17:14:33 +0000564#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000565 v = Py_BuildValue("(is)", error, "getaddrinfo failed");
Martin v. Löwisf95dd0a2001-08-15 17:14:33 +0000566#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000567 if (v != NULL) {
568 PyErr_SetObject(socket_gaierror, v);
569 Py_DECREF(v);
570 }
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000571
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000572 return NULL;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000573}
574
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000575#ifdef __VMS
576/* Function to send in segments */
577static int
578sendsegmented(int sock_fd, char *buf, int len, int flags)
579{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000580 int n = 0;
581 int remaining = len;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000582
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000583 while (remaining > 0) {
584 unsigned int segment;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000585
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000586 segment = (remaining >= SEGMENT_SIZE ? SEGMENT_SIZE : remaining);
587 n = send(sock_fd, buf, segment, flags);
588 if (n < 0) {
589 return n;
590 }
591 remaining -= segment;
592 buf += segment;
593 } /* end while */
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000594
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000595 return len;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000596}
597#endif
598
Guido van Rossum3eede5a2002-06-07 02:08:35 +0000599/* Function to perform the setting of socket blocking mode
600 internally. block = (1 | 0). */
Guido van Rossum67f7a382002-06-06 21:08:16 +0000601static int
602internal_setblocking(PySocketSockObject *s, int block)
603{
Guido van Rossum67f7a382002-06-06 21:08:16 +0000604#ifndef MS_WINDOWS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000605 int delay_flag;
Guido van Rossum67f7a382002-06-06 21:08:16 +0000606#endif
Guido van Rossum67f7a382002-06-06 21:08:16 +0000607
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000608 Py_BEGIN_ALLOW_THREADS
Guido van Rossum67f7a382002-06-06 21:08:16 +0000609#ifndef MS_WINDOWS
610#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000611 block = !block;
612 ioctl(s->sock_fd, FIONBIO, (caddr_t)&block, sizeof(block));
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000613#elif defined(__VMS)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000614 block = !block;
615 ioctl(s->sock_fd, FIONBIO, (unsigned int *)&block);
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000616#else /* !PYOS_OS2 && !__VMS */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000617 delay_flag = fcntl(s->sock_fd, F_GETFL, 0);
618 if (block)
619 delay_flag &= (~O_NONBLOCK);
620 else
621 delay_flag |= O_NONBLOCK;
622 fcntl(s->sock_fd, F_SETFL, delay_flag);
Guido van Rossum67f7a382002-06-06 21:08:16 +0000623#endif /* !PYOS_OS2 */
624#else /* MS_WINDOWS */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000625 block = !block;
626 ioctlsocket(s->sock_fd, FIONBIO, (u_long*)&block);
Guido van Rossum67f7a382002-06-06 21:08:16 +0000627#endif /* MS_WINDOWS */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000628 Py_END_ALLOW_THREADS
Guido van Rossum67f7a382002-06-06 21:08:16 +0000629
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000630 /* Since these don't return anything */
631 return 1;
Guido van Rossum67f7a382002-06-06 21:08:16 +0000632}
633
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000634/* Do a select()/poll() on the socket, if necessary (sock_timeout > 0).
Guido van Rossum11ba0942002-06-13 15:07:44 +0000635 The argument writing indicates the direction.
Raymond Hettingeref7343c2003-06-29 03:08:05 +0000636 This does not raise an exception; we'll let our caller do that
637 after they've reacquired the interpreter lock.
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000638 Returns 1 on timeout, -1 on error, 0 otherwise. */
Raymond Hettingeref7343c2003-06-29 03:08:05 +0000639static int
Guido van Rossumb9e916a2002-06-07 01:42:47 +0000640internal_select(PySocketSockObject *s, int writing)
Guido van Rossum67f7a382002-06-06 21:08:16 +0000641{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000642 int n;
Guido van Rossum11ba0942002-06-13 15:07:44 +0000643
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000644 /* Nothing to do unless we're in timeout mode (not non-blocking) */
645 if (s->sock_timeout <= 0.0)
646 return 0;
Guido van Rossum67f7a382002-06-06 21:08:16 +0000647
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000648 /* Guard against closed socket */
649 if (s->sock_fd < 0)
650 return 0;
Guido van Rossumad654902002-07-19 12:44:59 +0000651
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000652 /* Prefer poll, if available, since you can poll() any fd
653 * which can't be done with select(). */
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000654#ifdef HAVE_POLL
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000655 {
656 struct pollfd pollfd;
657 int timeout;
Guido van Rossum67f7a382002-06-06 21:08:16 +0000658
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000659 pollfd.fd = s->sock_fd;
660 pollfd.events = writing ? POLLOUT : POLLIN;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000661
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000662 /* s->sock_timeout is in seconds, timeout in ms */
663 timeout = (int)(s->sock_timeout * 1000 + 0.5);
664 n = poll(&pollfd, 1, timeout);
665 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000666#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000667 {
668 /* Construct the arguments to select */
669 fd_set fds;
670 struct timeval tv;
671 tv.tv_sec = (int)s->sock_timeout;
672 tv.tv_usec = (int)((s->sock_timeout - tv.tv_sec) * 1e6);
673 FD_ZERO(&fds);
674 FD_SET(s->sock_fd, &fds);
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000675
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000676 /* See if the socket is ready */
677 if (writing)
Antoine Pitrouf72006f2010-08-17 19:39:39 +0000678 n = select(Py_SAFE_DOWNCAST(s->sock_fd+1, SOCKET_T, int),
679 NULL, &fds, NULL, &tv);
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000680 else
Antoine Pitrouf72006f2010-08-17 19:39:39 +0000681 n = select(Py_SAFE_DOWNCAST(s->sock_fd+1, SOCKET_T, int),
682 &fds, NULL, NULL, &tv);
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000683 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000684#endif
Guido van Rossum39eb8fa2007-11-16 01:24:05 +0000685
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000686 if (n < 0)
687 return -1;
688 if (n == 0)
689 return 1;
690 return 0;
Guido van Rossum67f7a382002-06-06 21:08:16 +0000691}
692
Guido van Rossum384ca9c2001-10-27 22:20:47 +0000693/* Initialize a new socket object. */
694
Tim Petersa12b4cf2002-07-18 22:38:44 +0000695static double defaulttimeout = -1.0; /* Default timeout for new sockets */
Guido van Rossum9d0c8ce2002-07-18 17:08:35 +0000696
Martin v. Löwis1a214512008-06-11 05:26:20 +0000697static void
Guido van Rossum384ca9c2001-10-27 22:20:47 +0000698init_sockobject(PySocketSockObject *s,
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000699 SOCKET_T fd, int family, int type, int proto)
Guido van Rossum384ca9c2001-10-27 22:20:47 +0000700{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000701 s->sock_fd = fd;
702 s->sock_family = family;
703 s->sock_type = type;
704 s->sock_proto = proto;
705 s->sock_timeout = defaulttimeout;
Guido van Rossum67f7a382002-06-06 21:08:16 +0000706
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000707 s->errorhandler = &set_error;
Guido van Rossum9d0c8ce2002-07-18 17:08:35 +0000708
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000709 if (defaulttimeout >= 0.0)
710 internal_setblocking(s, 0);
Guido van Rossum9d0c8ce2002-07-18 17:08:35 +0000711
Guido van Rossum384ca9c2001-10-27 22:20:47 +0000712}
713
714
Guido van Rossum30a685f1991-06-27 15:51:29 +0000715/* Create a new socket object.
716 This just creates the object and initializes it.
717 If the creation fails, return NULL and set an exception (implicit
718 in NEWOBJ()). */
719
Guido van Rossum73624e91994-10-10 17:59:00 +0000720static PySocketSockObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000721new_sockobject(SOCKET_T fd, int family, int type, int proto)
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000722{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000723 PySocketSockObject *s;
724 s = (PySocketSockObject *)
725 PyType_GenericNew(&sock_type, NULL, NULL);
726 if (s != NULL)
727 init_sockobject(s, fd, family, type, proto);
728 return s;
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000729}
730
Guido van Rossum30a685f1991-06-27 15:51:29 +0000731
Guido van Rossum48a680c2001-03-02 06:34:14 +0000732/* Lock to allow python interpreter to continue, but only allow one
Just van Rossum1040d2c2003-05-09 07:53:18 +0000733 thread to be in gethostbyname or getaddrinfo */
734#if defined(USE_GETHOSTBYNAME_LOCK) || defined(USE_GETADDRINFO_LOCK)
735PyThread_type_lock netdb_lock;
Guido van Rossum4f199ea1998-04-09 20:56:35 +0000736#endif
737
738
Guido van Rossum30a685f1991-06-27 15:51:29 +0000739/* Convert a string specifying a host name or one of a few symbolic
740 names to a numeric IP address. This usually calls gethostbyname()
741 to do the work; the names "" and "<broadcast>" are special.
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000742 Return the length (IPv4 should be 4 bytes), or negative if
Guido van Rossum30a685f1991-06-27 15:51:29 +0000743 an error occurred; then an exception is raised. */
744
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000745static int
Martin v. Löwisddc6f472002-07-28 16:10:31 +0000746setipaddr(char *name, struct sockaddr *addr_ret, size_t addr_ret_size, int af)
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000747{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000748 struct addrinfo hints, *res;
749 int error;
750 int d1, d2, d3, d4;
751 char ch;
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000752
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000753 memset((void *) addr_ret, '\0', sizeof(*addr_ret));
754 if (name[0] == '\0') {
755 int siz;
756 memset(&hints, 0, sizeof(hints));
757 hints.ai_family = af;
758 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
759 hints.ai_flags = AI_PASSIVE;
760 Py_BEGIN_ALLOW_THREADS
761 ACQUIRE_GETADDRINFO_LOCK
762 error = getaddrinfo(NULL, "0", &hints, &res);
763 Py_END_ALLOW_THREADS
764 /* We assume that those thread-unsafe getaddrinfo() versions
765 *are* safe regarding their return value, ie. that a
766 subsequent call to getaddrinfo() does not destroy the
767 outcome of the first call. */
768 RELEASE_GETADDRINFO_LOCK
769 if (error) {
770 set_gaierror(error);
771 return -1;
772 }
773 switch (res->ai_family) {
774 case AF_INET:
775 siz = 4;
776 break;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +0000777#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000778 case AF_INET6:
779 siz = 16;
780 break;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000781#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000782 default:
783 freeaddrinfo(res);
784 PyErr_SetString(socket_error,
785 "unsupported address family");
786 return -1;
787 }
788 if (res->ai_next) {
789 freeaddrinfo(res);
790 PyErr_SetString(socket_error,
791 "wildcard resolved to multiple address");
792 return -1;
793 }
794 if (res->ai_addrlen < addr_ret_size)
795 addr_ret_size = res->ai_addrlen;
796 memcpy(addr_ret, res->ai_addr, addr_ret_size);
797 freeaddrinfo(res);
798 return siz;
799 }
800 if (name[0] == '<' && strcmp(name, "<broadcast>") == 0) {
801 struct sockaddr_in *sin;
802 if (af != AF_INET && af != AF_UNSPEC) {
803 PyErr_SetString(socket_error,
804 "address family mismatched");
805 return -1;
806 }
807 sin = (struct sockaddr_in *)addr_ret;
808 memset((void *) sin, '\0', sizeof(*sin));
809 sin->sin_family = AF_INET;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000810#ifdef HAVE_SOCKADDR_SA_LEN
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000811 sin->sin_len = sizeof(*sin);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000812#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000813 sin->sin_addr.s_addr = INADDR_BROADCAST;
814 return sizeof(sin->sin_addr);
815 }
816 if (sscanf(name, "%d.%d.%d.%d%c", &d1, &d2, &d3, &d4, &ch) == 4 &&
817 0 <= d1 && d1 <= 255 && 0 <= d2 && d2 <= 255 &&
818 0 <= d3 && d3 <= 255 && 0 <= d4 && d4 <= 255) {
819 struct sockaddr_in *sin;
820 sin = (struct sockaddr_in *)addr_ret;
821 sin->sin_addr.s_addr = htonl(
822 ((long) d1 << 24) | ((long) d2 << 16) |
823 ((long) d3 << 8) | ((long) d4 << 0));
824 sin->sin_family = AF_INET;
Anthony Baxter0e85f9d2003-05-02 15:40:46 +0000825#ifdef HAVE_SOCKADDR_SA_LEN
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000826 sin->sin_len = sizeof(*sin);
Anthony Baxter0e85f9d2003-05-02 15:40:46 +0000827#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000828 return 4;
829 }
830 memset(&hints, 0, sizeof(hints));
831 hints.ai_family = af;
832 Py_BEGIN_ALLOW_THREADS
833 ACQUIRE_GETADDRINFO_LOCK
834 error = getaddrinfo(name, NULL, &hints, &res);
Martin v. Löwis7c4b5fa2001-10-25 09:04:03 +0000835#if defined(__digital__) && defined(__unix__)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000836 if (error == EAI_NONAME && af == AF_UNSPEC) {
837 /* On Tru64 V5.1, numeric-to-addr conversion fails
838 if no address family is given. Assume IPv4 for now.*/
839 hints.ai_family = AF_INET;
840 error = getaddrinfo(name, NULL, &hints, &res);
841 }
Martin v. Löwis7c4b5fa2001-10-25 09:04:03 +0000842#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000843 Py_END_ALLOW_THREADS
844 RELEASE_GETADDRINFO_LOCK /* see comment in setipaddr() */
845 if (error) {
846 set_gaierror(error);
847 return -1;
848 }
849 if (res->ai_addrlen < addr_ret_size)
850 addr_ret_size = res->ai_addrlen;
851 memcpy((char *) addr_ret, res->ai_addr, addr_ret_size);
852 freeaddrinfo(res);
853 switch (addr_ret->sa_family) {
854 case AF_INET:
855 return 4;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +0000856#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000857 case AF_INET6:
858 return 16;
Guido van Rossum955becc1999-03-22 20:14:53 +0000859#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000860 default:
861 PyErr_SetString(socket_error, "unknown address family");
862 return -1;
863 }
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000864}
865
Guido van Rossum30a685f1991-06-27 15:51:29 +0000866
Guido van Rossum30a685f1991-06-27 15:51:29 +0000867/* Create a string object representing an IP address.
868 This is always a string of the form 'dd.dd.dd.dd' (with variable
869 size numbers). */
870
Guido van Rossum73624e91994-10-10 17:59:00 +0000871static PyObject *
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000872makeipaddr(struct sockaddr *addr, int addrlen)
Guido van Rossum30a685f1991-06-27 15:51:29 +0000873{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000874 char buf[NI_MAXHOST];
875 int error;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000876
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000877 error = getnameinfo(addr, addrlen, buf, sizeof(buf), NULL, 0,
878 NI_NUMERICHOST);
879 if (error) {
880 set_gaierror(error);
881 return NULL;
882 }
883 return PyUnicode_FromString(buf);
Guido van Rossum30a685f1991-06-27 15:51:29 +0000884}
885
886
Martin v. Löwis558d9bf2004-06-03 09:24:42 +0000887#ifdef USE_BLUETOOTH
888/* Convert a string representation of a Bluetooth address into a numeric
889 address. Returns the length (6), or raises an exception and returns -1 if
890 an error occurred. */
891
892static int
893setbdaddr(char *name, bdaddr_t *bdaddr)
894{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000895 unsigned int b0, b1, b2, b3, b4, b5;
896 char ch;
897 int n;
Martin v. Löwis558d9bf2004-06-03 09:24:42 +0000898
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000899 n = sscanf(name, "%X:%X:%X:%X:%X:%X%c",
900 &b5, &b4, &b3, &b2, &b1, &b0, &ch);
901 if (n == 6 && (b0 | b1 | b2 | b3 | b4 | b5) < 256) {
902 bdaddr->b[0] = b0;
903 bdaddr->b[1] = b1;
904 bdaddr->b[2] = b2;
905 bdaddr->b[3] = b3;
906 bdaddr->b[4] = b4;
907 bdaddr->b[5] = b5;
908 return 6;
909 } else {
910 PyErr_SetString(socket_error, "bad bluetooth address");
911 return -1;
912 }
Martin v. Löwis558d9bf2004-06-03 09:24:42 +0000913}
914
915/* Create a string representation of the Bluetooth address. This is always a
916 string of the form 'XX:XX:XX:XX:XX:XX' where XX is a two digit hexadecimal
917 value (zero padded if necessary). */
918
919static PyObject *
920makebdaddr(bdaddr_t *bdaddr)
921{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000922 char buf[(6 * 2) + 5 + 1];
Martin v. Löwis558d9bf2004-06-03 09:24:42 +0000923
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000924 sprintf(buf, "%02X:%02X:%02X:%02X:%02X:%02X",
925 bdaddr->b[5], bdaddr->b[4], bdaddr->b[3],
926 bdaddr->b[2], bdaddr->b[1], bdaddr->b[0]);
927 return PyUnicode_FromString(buf);
Martin v. Löwis558d9bf2004-06-03 09:24:42 +0000928}
929#endif
930
931
Guido van Rossum30a685f1991-06-27 15:51:29 +0000932/* Create an object representing the given socket address,
933 suitable for passing it back to bind(), connect() etc.
934 The family field of the sockaddr structure is inspected
935 to determine what kind of address it really is. */
936
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000937/*ARGSUSED*/
Guido van Rossum73624e91994-10-10 17:59:00 +0000938static PyObject *
Antoine Pitrouf72006f2010-08-17 19:39:39 +0000939makesockaddr(SOCKET_T sockfd, struct sockaddr *addr, size_t addrlen, int proto)
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000940{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000941 if (addrlen == 0) {
942 /* No address -- may be recvfrom() from known socket */
943 Py_INCREF(Py_None);
944 return Py_None;
945 }
Guido van Rossum25bec8c1992-08-05 19:00:45 +0000946
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000947 switch (addr->sa_family) {
Guido van Rossum30a685f1991-06-27 15:51:29 +0000948
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000949 case AF_INET:
950 {
951 struct sockaddr_in *a;
952 PyObject *addrobj = makeipaddr(addr, sizeof(*a));
953 PyObject *ret = NULL;
954 if (addrobj) {
955 a = (struct sockaddr_in *)addr;
956 ret = Py_BuildValue("Oi", addrobj, ntohs(a->sin_port));
957 Py_DECREF(addrobj);
958 }
959 return ret;
960 }
Guido van Rossum30a685f1991-06-27 15:51:29 +0000961
Andrew MacIntyred12dfbb2004-04-04 07:13:49 +0000962#if defined(AF_UNIX)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000963 case AF_UNIX:
964 {
965 struct sockaddr_un *a = (struct sockaddr_un *) addr;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000966#ifdef linux
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000967 if (a->sun_path[0] == 0) { /* Linux abstract namespace */
968 addrlen -= offsetof(struct sockaddr_un, sun_path);
969 return PyBytes_FromStringAndSize(a->sun_path, addrlen);
970 }
971 else
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000972#endif /* linux */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000973 {
974 /* regular NULL-terminated string */
975 return PyUnicode_FromString(a->sun_path);
976 }
977 }
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000978#endif /* AF_UNIX */
979
Martin v. Löwis11017b12006-01-14 18:12:57 +0000980#if defined(AF_NETLINK)
981 case AF_NETLINK:
982 {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000983 struct sockaddr_nl *a = (struct sockaddr_nl *) addr;
984 return Py_BuildValue("II", a->nl_pid, a->nl_groups);
Martin v. Löwis11017b12006-01-14 18:12:57 +0000985 }
986#endif /* AF_NETLINK */
987
Martin v. Löwis44ddbde2001-12-02 10:15:37 +0000988#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000989 case AF_INET6:
990 {
991 struct sockaddr_in6 *a;
992 PyObject *addrobj = makeipaddr(addr, sizeof(*a));
993 PyObject *ret = NULL;
994 if (addrobj) {
995 a = (struct sockaddr_in6 *)addr;
996 ret = Py_BuildValue("Oiii",
997 addrobj,
998 ntohs(a->sin6_port),
999 a->sin6_flowinfo,
1000 a->sin6_scope_id);
1001 Py_DECREF(addrobj);
1002 }
1003 return ret;
1004 }
Jeremy Hylton22308652001-02-02 03:23:09 +00001005#endif
Guido van Rossum30a685f1991-06-27 15:51:29 +00001006
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001007#ifdef USE_BLUETOOTH
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001008 case AF_BLUETOOTH:
1009 switch (proto) {
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001010
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001011 case BTPROTO_L2CAP:
1012 {
1013 struct sockaddr_l2 *a = (struct sockaddr_l2 *) addr;
1014 PyObject *addrobj = makebdaddr(&_BT_L2_MEMB(a, bdaddr));
1015 PyObject *ret = NULL;
1016 if (addrobj) {
1017 ret = Py_BuildValue("Oi",
1018 addrobj,
1019 _BT_L2_MEMB(a, psm));
1020 Py_DECREF(addrobj);
1021 }
1022 return ret;
1023 }
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001024
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001025 case BTPROTO_RFCOMM:
1026 {
1027 struct sockaddr_rc *a = (struct sockaddr_rc *) addr;
1028 PyObject *addrobj = makebdaddr(&_BT_RC_MEMB(a, bdaddr));
1029 PyObject *ret = NULL;
1030 if (addrobj) {
1031 ret = Py_BuildValue("Oi",
1032 addrobj,
1033 _BT_RC_MEMB(a, channel));
1034 Py_DECREF(addrobj);
1035 }
1036 return ret;
1037 }
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001038
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001039 case BTPROTO_HCI:
1040 {
1041 struct sockaddr_hci *a = (struct sockaddr_hci *) addr;
1042 PyObject *ret = NULL;
1043 ret = Py_BuildValue("i", _BT_HCI_MEMB(a, dev));
1044 return ret;
1045 }
Thomas Wouterscf297e42007-02-23 15:07:44 +00001046
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001047#if !defined(__FreeBSD__)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001048 case BTPROTO_SCO:
1049 {
1050 struct sockaddr_sco *a = (struct sockaddr_sco *) addr;
1051 return makebdaddr(&_BT_SCO_MEMB(a, bdaddr));
1052 }
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001053#endif
1054
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001055 default:
1056 PyErr_SetString(PyExc_ValueError,
1057 "Unknown Bluetooth protocol");
1058 return NULL;
1059 }
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001060#endif
1061
Martin v. Löwis1ba3fd52001-08-10 20:29:40 +00001062#ifdef HAVE_NETPACKET_PACKET_H
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001063 case AF_PACKET:
1064 {
1065 struct sockaddr_ll *a = (struct sockaddr_ll *)addr;
1066 char *ifname = "";
1067 struct ifreq ifr;
1068 /* need to look up interface name give index */
1069 if (a->sll_ifindex) {
1070 ifr.ifr_ifindex = a->sll_ifindex;
1071 if (ioctl(sockfd, SIOCGIFNAME, &ifr) == 0)
1072 ifname = ifr.ifr_name;
1073 }
1074 return Py_BuildValue("shbhy#",
1075 ifname,
1076 ntohs(a->sll_protocol),
1077 a->sll_pkttype,
1078 a->sll_hatype,
1079 a->sll_addr,
1080 a->sll_halen);
1081 }
Jeremy Hylton22308652001-02-02 03:23:09 +00001082#endif
Guido van Rossum48a680c2001-03-02 06:34:14 +00001083
Christian Heimes043d6f62008-01-07 17:19:16 +00001084#ifdef HAVE_LINUX_TIPC_H
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001085 case AF_TIPC:
1086 {
1087 struct sockaddr_tipc *a = (struct sockaddr_tipc *) addr;
1088 if (a->addrtype == TIPC_ADDR_NAMESEQ) {
1089 return Py_BuildValue("IIIII",
1090 a->addrtype,
1091 a->addr.nameseq.type,
1092 a->addr.nameseq.lower,
1093 a->addr.nameseq.upper,
1094 a->scope);
1095 } else if (a->addrtype == TIPC_ADDR_NAME) {
1096 return Py_BuildValue("IIIII",
1097 a->addrtype,
1098 a->addr.name.name.type,
1099 a->addr.name.name.instance,
1100 a->addr.name.name.instance,
1101 a->scope);
1102 } else if (a->addrtype == TIPC_ADDR_ID) {
1103 return Py_BuildValue("IIIII",
1104 a->addrtype,
1105 a->addr.id.node,
1106 a->addr.id.ref,
1107 0,
1108 a->scope);
1109 } else {
1110 PyErr_SetString(PyExc_ValueError,
1111 "Invalid address type");
1112 return NULL;
1113 }
1114 }
Christian Heimes043d6f62008-01-07 17:19:16 +00001115#endif
1116
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001117 /* More cases here... */
Guido van Rossum30a685f1991-06-27 15:51:29 +00001118
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001119 default:
1120 /* If we don't know the address family, don't raise an
1121 exception -- return it as an (int, bytes) tuple. */
1122 return Py_BuildValue("iy#",
1123 addr->sa_family,
1124 addr->sa_data,
1125 sizeof(addr->sa_data));
Guido van Rossum25bec8c1992-08-05 19:00:45 +00001126
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001127 }
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001128}
1129
Guido van Rossum30a685f1991-06-27 15:51:29 +00001130
1131/* Parse a socket address argument according to the socket object's
1132 address family. Return 1 if the address was in the proper format,
1133 0 of not. The address is returned through addr_ret, its length
1134 through len_ret. */
1135
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001136static int
Guido van Rossum48a680c2001-03-02 06:34:14 +00001137getsockaddrarg(PySocketSockObject *s, PyObject *args,
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001138 struct sockaddr *addr_ret, int *len_ret)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001139{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001140 switch (s->sock_family) {
Guido van Rossum30a685f1991-06-27 15:51:29 +00001141
Andrew MacIntyred12dfbb2004-04-04 07:13:49 +00001142#if defined(AF_UNIX)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001143 case AF_UNIX:
1144 {
1145 struct sockaddr_un* addr;
1146 char *path;
1147 int len;
1148 if (!PyArg_Parse(args, "s#", &path, &len))
1149 return 0;
Thomas Wouters89f507f2006-12-13 04:49:30 +00001150
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001151 addr = (struct sockaddr_un*)addr_ret;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001152#ifdef linux
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001153 if (len > 0 && path[0] == 0) {
1154 /* Linux abstract namespace extension */
1155 if (len > sizeof addr->sun_path) {
1156 PyErr_SetString(socket_error,
1157 "AF_UNIX path too long");
1158 return 0;
1159 }
1160 }
1161 else
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001162#endif /* linux */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001163 {
1164 /* regular NULL-terminated string */
1165 if (len >= sizeof addr->sun_path) {
1166 PyErr_SetString(socket_error,
1167 "AF_UNIX path too long");
1168 return 0;
1169 }
1170 addr->sun_path[len] = 0;
1171 }
1172 addr->sun_family = s->sock_family;
1173 memcpy(addr->sun_path, path, len);
Andrew MacIntyredaedf212004-04-11 12:03:57 +00001174#if defined(PYOS_OS2)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001175 *len_ret = sizeof(*addr);
Andrew MacIntyredaedf212004-04-11 12:03:57 +00001176#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001177 *len_ret = len + offsetof(struct sockaddr_un, sun_path);
Andrew MacIntyredaedf212004-04-11 12:03:57 +00001178#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001179 return 1;
1180 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00001181#endif /* AF_UNIX */
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001182
Martin v. Löwis11017b12006-01-14 18:12:57 +00001183#if defined(AF_NETLINK)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001184 case AF_NETLINK:
1185 {
1186 struct sockaddr_nl* addr;
1187 int pid, groups;
1188 addr = (struct sockaddr_nl *)addr_ret;
1189 if (!PyTuple_Check(args)) {
1190 PyErr_Format(
1191 PyExc_TypeError,
1192 "getsockaddrarg: "
1193 "AF_NETLINK address must be tuple, not %.500s",
1194 Py_TYPE(args)->tp_name);
1195 return 0;
1196 }
1197 if (!PyArg_ParseTuple(args, "II:getsockaddrarg", &pid, &groups))
1198 return 0;
1199 addr->nl_family = AF_NETLINK;
1200 addr->nl_pid = pid;
1201 addr->nl_groups = groups;
1202 *len_ret = sizeof(*addr);
1203 return 1;
1204 }
Martin v. Löwis11017b12006-01-14 18:12:57 +00001205#endif
1206
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001207 case AF_INET:
1208 {
1209 struct sockaddr_in* addr;
1210 char *host;
1211 int port, result;
1212 if (!PyTuple_Check(args)) {
1213 PyErr_Format(
1214 PyExc_TypeError,
1215 "getsockaddrarg: "
1216 "AF_INET address must be tuple, not %.500s",
1217 Py_TYPE(args)->tp_name);
1218 return 0;
1219 }
1220 if (!PyArg_ParseTuple(args, "eti:getsockaddrarg",
1221 "idna", &host, &port))
1222 return 0;
1223 addr=(struct sockaddr_in*)addr_ret;
1224 result = setipaddr(host, (struct sockaddr *)addr,
1225 sizeof(*addr), AF_INET);
1226 PyMem_Free(host);
1227 if (result < 0)
1228 return 0;
1229 if (port < 0 || port > 0xffff) {
1230 PyErr_SetString(
1231 PyExc_OverflowError,
1232 "getsockaddrarg: port must be 0-65535.");
1233 return 0;
1234 }
1235 addr->sin_family = AF_INET;
1236 addr->sin_port = htons((short)port);
1237 *len_ret = sizeof *addr;
1238 return 1;
1239 }
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001240
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001241#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001242 case AF_INET6:
1243 {
1244 struct sockaddr_in6* addr;
1245 char *host;
1246 int port, flowinfo, scope_id, result;
1247 flowinfo = scope_id = 0;
1248 if (!PyTuple_Check(args)) {
1249 PyErr_Format(
1250 PyExc_TypeError,
1251 "getsockaddrarg: "
1252 "AF_INET6 address must be tuple, not %.500s",
1253 Py_TYPE(args)->tp_name);
1254 return 0;
1255 }
1256 if (!PyArg_ParseTuple(args, "eti|ii",
1257 "idna", &host, &port, &flowinfo,
1258 &scope_id)) {
1259 return 0;
1260 }
1261 addr = (struct sockaddr_in6*)addr_ret;
1262 result = setipaddr(host, (struct sockaddr *)addr,
1263 sizeof(*addr), AF_INET6);
1264 PyMem_Free(host);
1265 if (result < 0)
1266 return 0;
1267 if (port < 0 || port > 0xffff) {
1268 PyErr_SetString(
1269 PyExc_OverflowError,
1270 "getsockaddrarg: port must be 0-65535.");
1271 return 0;
1272 }
1273 addr->sin6_family = s->sock_family;
1274 addr->sin6_port = htons((short)port);
1275 addr->sin6_flowinfo = flowinfo;
1276 addr->sin6_scope_id = scope_id;
1277 *len_ret = sizeof *addr;
1278 return 1;
1279 }
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00001280#endif
1281
Hye-Shik Chang81268602004-02-02 06:05:24 +00001282#ifdef USE_BLUETOOTH
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001283 case AF_BLUETOOTH:
1284 {
1285 switch (s->sock_proto) {
1286 case BTPROTO_L2CAP:
1287 {
1288 struct sockaddr_l2 *addr;
1289 char *straddr;
Martin v. Löwis12af0482004-01-31 12:34:17 +00001290
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001291 addr = (struct sockaddr_l2 *)addr_ret;
1292 memset(addr, 0, sizeof(struct sockaddr_l2));
1293 _BT_L2_MEMB(addr, family) = AF_BLUETOOTH;
1294 if (!PyArg_ParseTuple(args, "si", &straddr,
1295 &_BT_L2_MEMB(addr, psm))) {
1296 PyErr_SetString(socket_error, "getsockaddrarg: "
1297 "wrong format");
1298 return 0;
1299 }
1300 if (setbdaddr(straddr, &_BT_L2_MEMB(addr, bdaddr)) < 0)
1301 return 0;
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001302
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001303 *len_ret = sizeof *addr;
1304 return 1;
1305 }
1306 case BTPROTO_RFCOMM:
1307 {
1308 struct sockaddr_rc *addr;
1309 char *straddr;
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001310
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001311 addr = (struct sockaddr_rc *)addr_ret;
1312 _BT_RC_MEMB(addr, family) = AF_BLUETOOTH;
1313 if (!PyArg_ParseTuple(args, "si", &straddr,
1314 &_BT_RC_MEMB(addr, channel))) {
1315 PyErr_SetString(socket_error, "getsockaddrarg: "
1316 "wrong format");
1317 return 0;
1318 }
1319 if (setbdaddr(straddr, &_BT_RC_MEMB(addr, bdaddr)) < 0)
1320 return 0;
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001321
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001322 *len_ret = sizeof *addr;
1323 return 1;
1324 }
1325 case BTPROTO_HCI:
1326 {
1327 struct sockaddr_hci *addr = (struct sockaddr_hci *)addr_ret;
1328 _BT_HCI_MEMB(addr, family) = AF_BLUETOOTH;
1329 if (!PyArg_ParseTuple(args, "i", &_BT_HCI_MEMB(addr, dev))) {
1330 PyErr_SetString(socket_error, "getsockaddrarg: "
1331 "wrong format");
1332 return 0;
1333 }
1334 *len_ret = sizeof *addr;
1335 return 1;
1336 }
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001337#if !defined(__FreeBSD__)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001338 case BTPROTO_SCO:
1339 {
1340 struct sockaddr_sco *addr;
1341 char *straddr;
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001342
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001343 addr = (struct sockaddr_sco *)addr_ret;
1344 _BT_SCO_MEMB(addr, family) = AF_BLUETOOTH;
1345 if (!PyBytes_Check(args)) {
1346 PyErr_SetString(socket_error, "getsockaddrarg: "
1347 "wrong format");
1348 return 0;
1349 }
1350 straddr = PyBytes_AS_STRING(args);
1351 if (setbdaddr(straddr, &_BT_SCO_MEMB(addr, bdaddr)) < 0)
1352 return 0;
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001353
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001354 *len_ret = sizeof *addr;
1355 return 1;
1356 }
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001357#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001358 default:
1359 PyErr_SetString(socket_error, "getsockaddrarg: unknown Bluetooth protocol");
1360 return 0;
1361 }
1362 }
Martin v. Löwis12af0482004-01-31 12:34:17 +00001363#endif
1364
Martin v. Löwis1ba3fd52001-08-10 20:29:40 +00001365#ifdef HAVE_NETPACKET_PACKET_H
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001366 case AF_PACKET:
1367 {
1368 struct sockaddr_ll* addr;
1369 struct ifreq ifr;
1370 char *interfaceName;
1371 int protoNumber;
1372 int hatype = 0;
1373 int pkttype = 0;
1374 char *haddr = NULL;
1375 unsigned int halen = 0;
Guido van Rossum48a680c2001-03-02 06:34:14 +00001376
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001377 if (!PyTuple_Check(args)) {
1378 PyErr_Format(
1379 PyExc_TypeError,
1380 "getsockaddrarg: "
1381 "AF_PACKET address must be tuple, not %.500s",
1382 Py_TYPE(args)->tp_name);
1383 return 0;
1384 }
1385 if (!PyArg_ParseTuple(args, "si|iiy#", &interfaceName,
1386 &protoNumber, &pkttype, &hatype,
1387 &haddr, &halen))
1388 return 0;
1389 strncpy(ifr.ifr_name, interfaceName, sizeof(ifr.ifr_name));
1390 ifr.ifr_name[(sizeof(ifr.ifr_name))-1] = '\0';
1391 if (ioctl(s->sock_fd, SIOCGIFINDEX, &ifr) < 0) {
1392 s->errorhandler();
1393 return 0;
1394 }
1395 if (halen > 8) {
1396 PyErr_SetString(PyExc_ValueError,
1397 "Hardware address must be 8 bytes or less");
1398 return 0;
1399 }
1400 if (protoNumber < 0 || protoNumber > 0xffff) {
1401 PyErr_SetString(
1402 PyExc_OverflowError,
1403 "getsockaddrarg: protoNumber must be 0-65535.");
1404 return 0;
1405 }
1406 addr = (struct sockaddr_ll*)addr_ret;
1407 addr->sll_family = AF_PACKET;
1408 addr->sll_protocol = htons((short)protoNumber);
1409 addr->sll_ifindex = ifr.ifr_ifindex;
1410 addr->sll_pkttype = pkttype;
1411 addr->sll_hatype = hatype;
1412 if (halen != 0) {
1413 memcpy(&addr->sll_addr, haddr, halen);
1414 }
1415 addr->sll_halen = halen;
1416 *len_ret = sizeof *addr;
1417 return 1;
1418 }
Guido van Rossum48a680c2001-03-02 06:34:14 +00001419#endif
1420
Christian Heimes043d6f62008-01-07 17:19:16 +00001421#ifdef HAVE_LINUX_TIPC_H
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001422 case AF_TIPC:
1423 {
1424 unsigned int atype, v1, v2, v3;
1425 unsigned int scope = TIPC_CLUSTER_SCOPE;
1426 struct sockaddr_tipc *addr;
Christian Heimes043d6f62008-01-07 17:19:16 +00001427
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001428 if (!PyTuple_Check(args)) {
1429 PyErr_Format(
1430 PyExc_TypeError,
1431 "getsockaddrarg: "
1432 "AF_TIPC address must be tuple, not %.500s",
1433 Py_TYPE(args)->tp_name);
1434 return 0;
1435 }
Christian Heimes043d6f62008-01-07 17:19:16 +00001436
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001437 if (!PyArg_ParseTuple(args,
1438 "IIII|I;Invalid TIPC address format",
1439 &atype, &v1, &v2, &v3, &scope))
1440 return 0;
Christian Heimes043d6f62008-01-07 17:19:16 +00001441
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001442 addr = (struct sockaddr_tipc *) addr_ret;
1443 memset(addr, 0, sizeof(struct sockaddr_tipc));
Christian Heimes043d6f62008-01-07 17:19:16 +00001444
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001445 addr->family = AF_TIPC;
1446 addr->scope = scope;
1447 addr->addrtype = atype;
Christian Heimes043d6f62008-01-07 17:19:16 +00001448
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001449 if (atype == TIPC_ADDR_NAMESEQ) {
1450 addr->addr.nameseq.type = v1;
1451 addr->addr.nameseq.lower = v2;
1452 addr->addr.nameseq.upper = v3;
1453 } else if (atype == TIPC_ADDR_NAME) {
1454 addr->addr.name.name.type = v1;
1455 addr->addr.name.name.instance = v2;
1456 } else if (atype == TIPC_ADDR_ID) {
1457 addr->addr.id.node = v1;
1458 addr->addr.id.ref = v2;
1459 } else {
1460 /* Shouldn't happen */
1461 PyErr_SetString(PyExc_TypeError, "Invalid address type");
1462 return 0;
1463 }
Christian Heimes043d6f62008-01-07 17:19:16 +00001464
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001465 *len_ret = sizeof(*addr);
Christian Heimes043d6f62008-01-07 17:19:16 +00001466
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001467 return 1;
1468 }
Christian Heimes043d6f62008-01-07 17:19:16 +00001469#endif
1470
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001471 /* More cases here... */
Guido van Rossum30a685f1991-06-27 15:51:29 +00001472
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001473 default:
1474 PyErr_SetString(socket_error, "getsockaddrarg: bad family");
1475 return 0;
Guido van Rossum30a685f1991-06-27 15:51:29 +00001476
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001477 }
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001478}
1479
Guido van Rossum30a685f1991-06-27 15:51:29 +00001480
Guido van Rossum48a680c2001-03-02 06:34:14 +00001481/* Get the address length according to the socket object's address family.
Guido van Rossum710e1df1992-06-12 10:39:36 +00001482 Return 1 if the family is known, 0 otherwise. The length is returned
1483 through len_ret. */
1484
1485static int
Peter Schneider-Kamp618e25d2000-07-11 23:00:12 +00001486getsockaddrlen(PySocketSockObject *s, socklen_t *len_ret)
Guido van Rossum710e1df1992-06-12 10:39:36 +00001487{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001488 switch (s->sock_family) {
Guido van Rossum710e1df1992-06-12 10:39:36 +00001489
Andrew MacIntyred12dfbb2004-04-04 07:13:49 +00001490#if defined(AF_UNIX)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001491 case AF_UNIX:
1492 {
1493 *len_ret = sizeof (struct sockaddr_un);
1494 return 1;
1495 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00001496#endif /* AF_UNIX */
Martin v. Löwis11017b12006-01-14 18:12:57 +00001497#if defined(AF_NETLINK)
1498 case AF_NETLINK:
1499 {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001500 *len_ret = sizeof (struct sockaddr_nl);
1501 return 1;
Martin v. Löwis11017b12006-01-14 18:12:57 +00001502 }
1503#endif
Guido van Rossum710e1df1992-06-12 10:39:36 +00001504
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001505 case AF_INET:
1506 {
1507 *len_ret = sizeof (struct sockaddr_in);
1508 return 1;
1509 }
Guido van Rossum710e1df1992-06-12 10:39:36 +00001510
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001511#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001512 case AF_INET6:
1513 {
1514 *len_ret = sizeof (struct sockaddr_in6);
1515 return 1;
1516 }
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00001517#endif
1518
Hye-Shik Chang81268602004-02-02 06:05:24 +00001519#ifdef USE_BLUETOOTH
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001520 case AF_BLUETOOTH:
1521 {
1522 switch(s->sock_proto)
1523 {
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001524
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001525 case BTPROTO_L2CAP:
1526 *len_ret = sizeof (struct sockaddr_l2);
1527 return 1;
1528 case BTPROTO_RFCOMM:
1529 *len_ret = sizeof (struct sockaddr_rc);
1530 return 1;
1531 case BTPROTO_HCI:
1532 *len_ret = sizeof (struct sockaddr_hci);
1533 return 1;
Hye-Shik Chang81268602004-02-02 06:05:24 +00001534#if !defined(__FreeBSD__)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001535 case BTPROTO_SCO:
1536 *len_ret = sizeof (struct sockaddr_sco);
1537 return 1;
Hye-Shik Chang81268602004-02-02 06:05:24 +00001538#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001539 default:
1540 PyErr_SetString(socket_error, "getsockaddrlen: "
1541 "unknown BT protocol");
1542 return 0;
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001543
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001544 }
1545 }
Martin v. Löwis12af0482004-01-31 12:34:17 +00001546#endif
1547
Martin v. Löwis1ba3fd52001-08-10 20:29:40 +00001548#ifdef HAVE_NETPACKET_PACKET_H
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001549 case AF_PACKET:
1550 {
1551 *len_ret = sizeof (struct sockaddr_ll);
1552 return 1;
1553 }
Jeremy Hylton22308652001-02-02 03:23:09 +00001554#endif
Guido van Rossum48a680c2001-03-02 06:34:14 +00001555
Christian Heimes043d6f62008-01-07 17:19:16 +00001556#ifdef HAVE_LINUX_TIPC_H
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001557 case AF_TIPC:
1558 {
1559 *len_ret = sizeof (struct sockaddr_tipc);
1560 return 1;
1561 }
Christian Heimes043d6f62008-01-07 17:19:16 +00001562#endif
1563
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001564 /* More cases here... */
Guido van Rossum710e1df1992-06-12 10:39:36 +00001565
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001566 default:
1567 PyErr_SetString(socket_error, "getsockaddrlen: bad family");
1568 return 0;
Guido van Rossum710e1df1992-06-12 10:39:36 +00001569
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001570 }
Guido van Rossum710e1df1992-06-12 10:39:36 +00001571}
1572
1573
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00001574/* s._accept() -> (fd, address) */
Guido van Rossum30a685f1991-06-27 15:51:29 +00001575
Guido van Rossum73624e91994-10-10 17:59:00 +00001576static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001577sock_accept(PySocketSockObject *s)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001578{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001579 sock_addr_t addrbuf;
1580 SOCKET_T newfd = INVALID_SOCKET;
1581 socklen_t addrlen;
1582 PyObject *sock = NULL;
1583 PyObject *addr = NULL;
1584 PyObject *res = NULL;
1585 int timeout;
Barry Warsaw752300b1997-01-03 17:18:10 +00001586
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001587 if (!getsockaddrlen(s, &addrlen))
1588 return NULL;
1589 memset(&addrbuf, 0, addrlen);
Guido van Rossum67f7a382002-06-06 21:08:16 +00001590
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001591 if (!IS_SELECTABLE(s))
1592 return select_error();
Neal Norwitz082b2df2006-02-07 07:04:46 +00001593
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001594 Py_BEGIN_ALLOW_THREADS
1595 timeout = internal_select(s, 0);
1596 if (!timeout)
1597 newfd = accept(s->sock_fd, SAS2SA(&addrbuf), &addrlen);
1598 Py_END_ALLOW_THREADS
Guido van Rossum67f7a382002-06-06 21:08:16 +00001599
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001600 if (timeout == 1) {
1601 PyErr_SetString(socket_timeout, "timed out");
1602 return NULL;
1603 }
Raymond Hettingeref7343c2003-06-29 03:08:05 +00001604
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001605 if (newfd == INVALID_SOCKET)
1606 return s->errorhandler();
Barry Warsaw752300b1997-01-03 17:18:10 +00001607
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001608 sock = PyLong_FromSocket_t(newfd);
1609 if (sock == NULL) {
1610 SOCKETCLOSE(newfd);
1611 goto finally;
1612 }
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00001613
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001614 addr = makesockaddr(s->sock_fd, SAS2SA(&addrbuf),
1615 addrlen, s->sock_proto);
1616 if (addr == NULL)
1617 goto finally;
Barry Warsaw752300b1997-01-03 17:18:10 +00001618
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001619 res = PyTuple_Pack(2, sock, addr);
Barry Warsaw752300b1997-01-03 17:18:10 +00001620
Guido van Rossum67f7a382002-06-06 21:08:16 +00001621finally:
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001622 Py_XDECREF(sock);
1623 Py_XDECREF(addr);
1624 return res;
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001625}
1626
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001627PyDoc_STRVAR(accept_doc,
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00001628"_accept() -> (integer, address info)\n\
Guido van Rossum82a5c661998-07-07 20:45:43 +00001629\n\
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00001630Wait for an incoming connection. Return a new socket file descriptor\n\
1631representing the connection, and the address of the client.\n\
1632For IP sockets, the address info is a pair (hostaddr, port).");
Guido van Rossum82a5c661998-07-07 20:45:43 +00001633
Guido van Rossum11ba0942002-06-13 15:07:44 +00001634/* s.setblocking(flag) method. Argument:
1635 False -- non-blocking mode; same as settimeout(0)
1636 True -- blocking mode; same as settimeout(None)
1637*/
Guido van Rossume4485b01994-09-07 14:32:49 +00001638
Guido van Rossum73624e91994-10-10 17:59:00 +00001639static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001640sock_setblocking(PySocketSockObject *s, PyObject *arg)
Guido van Rossume4485b01994-09-07 14:32:49 +00001641{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001642 int block;
Guido van Rossum67f7a382002-06-06 21:08:16 +00001643
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001644 block = PyLong_AsLong(arg);
1645 if (block == -1 && PyErr_Occurred())
1646 return NULL;
Guido van Rossum67f7a382002-06-06 21:08:16 +00001647
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001648 s->sock_timeout = block ? -1.0 : 0.0;
1649 internal_setblocking(s, block);
Guido van Rossume4485b01994-09-07 14:32:49 +00001650
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001651 Py_INCREF(Py_None);
1652 return Py_None;
Guido van Rossume4485b01994-09-07 14:32:49 +00001653}
Guido van Rossume4485b01994-09-07 14:32:49 +00001654
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001655PyDoc_STRVAR(setblocking_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00001656"setblocking(flag)\n\
1657\n\
1658Set the socket to blocking (flag is true) or non-blocking (false).\n\
Guido van Rossum11ba0942002-06-13 15:07:44 +00001659setblocking(True) is equivalent to settimeout(None);\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001660setblocking(False) is equivalent to settimeout(0.0).");
Guido van Rossum82a5c661998-07-07 20:45:43 +00001661
Guido van Rossum11ba0942002-06-13 15:07:44 +00001662/* s.settimeout(timeout) method. Argument:
1663 None -- no timeout, blocking mode; same as setblocking(True)
1664 0.0 -- non-blocking mode; same as setblocking(False)
1665 > 0 -- timeout mode; operations time out after timeout seconds
1666 < 0 -- illegal; raises an exception
1667*/
Guido van Rossum67f7a382002-06-06 21:08:16 +00001668static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001669sock_settimeout(PySocketSockObject *s, PyObject *arg)
Guido van Rossum67f7a382002-06-06 21:08:16 +00001670{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001671 double timeout;
Guido van Rossum67f7a382002-06-06 21:08:16 +00001672
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001673 if (arg == Py_None)
1674 timeout = -1.0;
1675 else {
1676 timeout = PyFloat_AsDouble(arg);
1677 if (timeout < 0.0) {
1678 if (!PyErr_Occurred())
1679 PyErr_SetString(PyExc_ValueError,
1680 "Timeout value out of range");
1681 return NULL;
1682 }
1683 }
Guido van Rossum67f7a382002-06-06 21:08:16 +00001684
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001685 s->sock_timeout = timeout;
1686 internal_setblocking(s, timeout < 0.0);
Guido van Rossum67f7a382002-06-06 21:08:16 +00001687
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001688 Py_INCREF(Py_None);
1689 return Py_None;
Guido van Rossum67f7a382002-06-06 21:08:16 +00001690}
1691
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001692PyDoc_STRVAR(settimeout_doc,
Guido van Rossum3eede5a2002-06-07 02:08:35 +00001693"settimeout(timeout)\n\
Guido van Rossum67f7a382002-06-06 21:08:16 +00001694\n\
Guido van Rossum11ba0942002-06-13 15:07:44 +00001695Set a timeout on socket operations. 'timeout' can be a float,\n\
1696giving in seconds, or None. Setting a timeout of None disables\n\
1697the timeout feature and is equivalent to setblocking(1).\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001698Setting a timeout of zero is the same as setblocking(0).");
Guido van Rossum67f7a382002-06-06 21:08:16 +00001699
Guido van Rossum3eede5a2002-06-07 02:08:35 +00001700/* s.gettimeout() method.
1701 Returns the timeout associated with a socket. */
Guido van Rossum67f7a382002-06-06 21:08:16 +00001702static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001703sock_gettimeout(PySocketSockObject *s)
Guido van Rossum67f7a382002-06-06 21:08:16 +00001704{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001705 if (s->sock_timeout < 0.0) {
1706 Py_INCREF(Py_None);
1707 return Py_None;
1708 }
1709 else
1710 return PyFloat_FromDouble(s->sock_timeout);
Guido van Rossum67f7a382002-06-06 21:08:16 +00001711}
1712
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001713PyDoc_STRVAR(gettimeout_doc,
Guido van Rossum22a97152002-08-08 20:37:08 +00001714"gettimeout() -> timeout\n\
Guido van Rossum67f7a382002-06-06 21:08:16 +00001715\n\
1716Returns the timeout in floating seconds associated with socket \n\
1717operations. A timeout of None indicates that timeouts on socket \n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001718operations are disabled.");
Guido van Rossume4485b01994-09-07 14:32:49 +00001719
Guido van Rossumaee08791992-09-08 09:05:33 +00001720/* s.setsockopt() method.
1721 With an integer third argument, sets an integer option.
1722 With a string third argument, sets an option from a buffer;
1723 use optional built-in module 'struct' to encode the string. */
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001724
Guido van Rossum73624e91994-10-10 17:59:00 +00001725static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001726sock_setsockopt(PySocketSockObject *s, PyObject *args)
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001727{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001728 int level;
1729 int optname;
1730 int res;
1731 char *buf;
1732 int buflen;
1733 int flag;
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001734
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001735 if (PyArg_ParseTuple(args, "iii:setsockopt",
1736 &level, &optname, &flag)) {
1737 buf = (char *) &flag;
1738 buflen = sizeof flag;
1739 }
1740 else {
1741 PyErr_Clear();
1742 if (!PyArg_ParseTuple(args, "iiy#:setsockopt",
1743 &level, &optname, &buf, &buflen))
1744 return NULL;
1745 }
1746 res = setsockopt(s->sock_fd, level, optname, (void *)buf, buflen);
1747 if (res < 0)
1748 return s->errorhandler();
1749 Py_INCREF(Py_None);
1750 return Py_None;
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001751}
1752
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001753PyDoc_STRVAR(setsockopt_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00001754"setsockopt(level, option, value)\n\
1755\n\
1756Set a socket option. See the Unix manual for level and option.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001757The value argument can either be an integer or a string.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00001758
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001759
Guido van Rossumaee08791992-09-08 09:05:33 +00001760/* s.getsockopt() method.
1761 With two arguments, retrieves an integer option.
1762 With a third integer argument, retrieves a string buffer of that size;
1763 use optional built-in module 'struct' to decode the string. */
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001764
Guido van Rossum73624e91994-10-10 17:59:00 +00001765static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001766sock_getsockopt(PySocketSockObject *s, PyObject *args)
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001767{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001768 int level;
1769 int optname;
1770 int res;
1771 PyObject *buf;
1772 socklen_t buflen = 0;
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001773
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001774 if (!PyArg_ParseTuple(args, "ii|i:getsockopt",
1775 &level, &optname, &buflen))
1776 return NULL;
Guido van Rossum48a680c2001-03-02 06:34:14 +00001777
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001778 if (buflen == 0) {
1779 int flag = 0;
1780 socklen_t flagsize = sizeof flag;
1781 res = getsockopt(s->sock_fd, level, optname,
1782 (void *)&flag, &flagsize);
1783 if (res < 0)
1784 return s->errorhandler();
1785 return PyLong_FromLong(flag);
1786 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001787#ifdef __VMS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001788 /* socklen_t is unsigned so no negative test is needed,
1789 test buflen == 0 is previously done */
1790 if (buflen > 1024) {
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001791#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001792 if (buflen <= 0 || buflen > 1024) {
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001793#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001794 PyErr_SetString(socket_error,
1795 "getsockopt buflen out of range");
1796 return NULL;
1797 }
1798 buf = PyBytes_FromStringAndSize((char *)NULL, buflen);
1799 if (buf == NULL)
1800 return NULL;
1801 res = getsockopt(s->sock_fd, level, optname,
1802 (void *)PyBytes_AS_STRING(buf), &buflen);
1803 if (res < 0) {
1804 Py_DECREF(buf);
1805 return s->errorhandler();
1806 }
1807 _PyBytes_Resize(&buf, buflen);
1808 return buf;
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001809}
1810
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001811PyDoc_STRVAR(getsockopt_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00001812"getsockopt(level, option[, buffersize]) -> value\n\
1813\n\
1814Get a socket option. See the Unix manual for level and option.\n\
1815If a nonzero buffersize argument is given, the return value is a\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001816string of that length; otherwise it is an integer.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00001817
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001818
Fred Drake728819a2000-07-01 03:40:12 +00001819/* s.bind(sockaddr) method */
Guido van Rossum30a685f1991-06-27 15:51:29 +00001820
Guido van Rossum73624e91994-10-10 17:59:00 +00001821static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001822sock_bind(PySocketSockObject *s, PyObject *addro)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001823{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001824 sock_addr_t addrbuf;
1825 int addrlen;
1826 int res;
Jeremy Hyltonae0013d2001-10-11 16:36:35 +00001827
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001828 if (!getsockaddrarg(s, addro, SAS2SA(&addrbuf), &addrlen))
1829 return NULL;
1830 Py_BEGIN_ALLOW_THREADS
1831 res = bind(s->sock_fd, SAS2SA(&addrbuf), addrlen);
1832 Py_END_ALLOW_THREADS
1833 if (res < 0)
1834 return s->errorhandler();
1835 Py_INCREF(Py_None);
1836 return Py_None;
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001837}
1838
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001839PyDoc_STRVAR(bind_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00001840"bind(address)\n\
1841\n\
1842Bind the socket to a local address. For IP sockets, the address is a\n\
Jeremy Hylton22308652001-02-02 03:23:09 +00001843pair (host, port); the host must refer to the local host. For raw packet\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001844sockets the address is a tuple (ifname, proto [,pkttype [,hatype]])");
Guido van Rossum82a5c661998-07-07 20:45:43 +00001845
Guido van Rossum30a685f1991-06-27 15:51:29 +00001846
1847/* s.close() method.
1848 Set the file descriptor to -1 so operations tried subsequently
1849 will surely fail. */
1850
Guido van Rossum73624e91994-10-10 17:59:00 +00001851static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001852sock_close(PySocketSockObject *s)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001853{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001854 SOCKET_T fd;
Jeremy Hyltonae0013d2001-10-11 16:36:35 +00001855
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001856 if ((fd = s->sock_fd) != -1) {
1857 s->sock_fd = -1;
1858 Py_BEGIN_ALLOW_THREADS
1859 (void) SOCKETCLOSE(fd);
1860 Py_END_ALLOW_THREADS
1861 }
1862 Py_INCREF(Py_None);
1863 return Py_None;
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001864}
1865
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001866PyDoc_STRVAR(close_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00001867"close()\n\
1868\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001869Close the socket. It cannot be used after this call.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00001870
Guido van Rossum7b8bac12002-06-13 16:07:04 +00001871static int
Raymond Hettingeref7343c2003-06-29 03:08:05 +00001872internal_connect(PySocketSockObject *s, struct sockaddr *addr, int addrlen,
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001873 int *timeoutp)
Guido van Rossum7b8bac12002-06-13 16:07:04 +00001874{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001875 int res, timeout;
Guido van Rossum7b8bac12002-06-13 16:07:04 +00001876
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001877 timeout = 0;
1878 res = connect(s->sock_fd, addr, addrlen);
Guido van Rossum7b8bac12002-06-13 16:07:04 +00001879
1880#ifdef MS_WINDOWS
1881
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001882 if (s->sock_timeout > 0.0) {
1883 if (res < 0 && WSAGetLastError() == WSAEWOULDBLOCK &&
1884 IS_SELECTABLE(s)) {
1885 /* This is a mess. Best solution: trust select */
1886 fd_set fds;
1887 fd_set fds_exc;
1888 struct timeval tv;
1889 tv.tv_sec = (int)s->sock_timeout;
1890 tv.tv_usec = (int)((s->sock_timeout - tv.tv_sec) * 1e6);
1891 FD_ZERO(&fds);
1892 FD_SET(s->sock_fd, &fds);
1893 FD_ZERO(&fds_exc);
1894 FD_SET(s->sock_fd, &fds_exc);
Antoine Pitrouf72006f2010-08-17 19:39:39 +00001895 res = select(Py_SAFE_DOWNCAST(s->sock_fd+1, SOCKET_T, int),
1896 NULL, &fds, &fds_exc, &tv);
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001897 if (res == 0) {
1898 res = WSAEWOULDBLOCK;
1899 timeout = 1;
1900 } else if (res > 0) {
1901 if (FD_ISSET(s->sock_fd, &fds))
1902 /* The socket is in the writable set - this
1903 means connected */
1904 res = 0;
1905 else {
1906 /* As per MS docs, we need to call getsockopt()
1907 to get the underlying error */
1908 int res_size = sizeof res;
1909 /* It must be in the exception set */
1910 assert(FD_ISSET(s->sock_fd, &fds_exc));
1911 if (0 == getsockopt(s->sock_fd, SOL_SOCKET, SO_ERROR,
1912 (char *)&res, &res_size))
1913 /* getsockopt also clears WSAGetLastError,
1914 so reset it back. */
1915 WSASetLastError(res);
1916 else
1917 res = WSAGetLastError();
1918 }
1919 }
1920 /* else if (res < 0) an error occurred */
1921 }
1922 }
Guido van Rossum7b8bac12002-06-13 16:07:04 +00001923
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001924 if (res < 0)
1925 res = WSAGetLastError();
Guido van Rossum7b8bac12002-06-13 16:07:04 +00001926
1927#else
1928
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001929 if (s->sock_timeout > 0.0) {
1930 if (res < 0 && errno == EINPROGRESS && IS_SELECTABLE(s)) {
1931 timeout = internal_select(s, 1);
1932 if (timeout == 0) {
1933 /* Bug #1019808: in case of an EINPROGRESS,
1934 use getsockopt(SO_ERROR) to get the real
1935 error. */
1936 socklen_t res_size = sizeof res;
1937 (void)getsockopt(s->sock_fd, SOL_SOCKET,
1938 SO_ERROR, &res, &res_size);
1939 if (res == EISCONN)
1940 res = 0;
1941 errno = res;
1942 }
1943 else if (timeout == -1) {
1944 res = errno; /* had error */
1945 }
1946 else
1947 res = EWOULDBLOCK; /* timed out */
1948 }
1949 }
Guido van Rossum7b8bac12002-06-13 16:07:04 +00001950
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001951 if (res < 0)
1952 res = errno;
Guido van Rossum7b8bac12002-06-13 16:07:04 +00001953
1954#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001955 *timeoutp = timeout;
Guido van Rossum7b8bac12002-06-13 16:07:04 +00001956
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001957 return res;
Guido van Rossum7b8bac12002-06-13 16:07:04 +00001958}
Guido van Rossum30a685f1991-06-27 15:51:29 +00001959
Fred Drake728819a2000-07-01 03:40:12 +00001960/* s.connect(sockaddr) method */
Guido van Rossum30a685f1991-06-27 15:51:29 +00001961
Guido van Rossum73624e91994-10-10 17:59:00 +00001962static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001963sock_connect(PySocketSockObject *s, PyObject *addro)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001964{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001965 sock_addr_t addrbuf;
1966 int addrlen;
1967 int res;
1968 int timeout;
Jeremy Hyltonae0013d2001-10-11 16:36:35 +00001969
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001970 if (!getsockaddrarg(s, addro, SAS2SA(&addrbuf), &addrlen))
1971 return NULL;
Guido van Rossum67f7a382002-06-06 21:08:16 +00001972
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001973 Py_BEGIN_ALLOW_THREADS
1974 res = internal_connect(s, SAS2SA(&addrbuf), addrlen, &timeout);
1975 Py_END_ALLOW_THREADS
Guido van Rossum67f7a382002-06-06 21:08:16 +00001976
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001977 if (timeout == 1) {
1978 PyErr_SetString(socket_timeout, "timed out");
1979 return NULL;
1980 }
1981 if (res != 0)
1982 return s->errorhandler();
1983 Py_INCREF(Py_None);
1984 return Py_None;
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001985}
1986
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001987PyDoc_STRVAR(connect_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00001988"connect(address)\n\
1989\n\
1990Connect the socket to a remote address. For IP sockets, the address\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001991is a pair (host, port).");
Guido van Rossum82a5c661998-07-07 20:45:43 +00001992
Guido van Rossum30a685f1991-06-27 15:51:29 +00001993
Fred Drake728819a2000-07-01 03:40:12 +00001994/* s.connect_ex(sockaddr) method */
Guido van Rossumfc4255d1997-11-19 18:57:13 +00001995
1996static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001997sock_connect_ex(PySocketSockObject *s, PyObject *addro)
Guido van Rossumfc4255d1997-11-19 18:57:13 +00001998{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001999 sock_addr_t addrbuf;
2000 int addrlen;
2001 int res;
2002 int timeout;
Jeremy Hyltonae0013d2001-10-11 16:36:35 +00002003
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002004 if (!getsockaddrarg(s, addro, SAS2SA(&addrbuf), &addrlen))
2005 return NULL;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002006
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002007 Py_BEGIN_ALLOW_THREADS
2008 res = internal_connect(s, SAS2SA(&addrbuf), addrlen, &timeout);
2009 Py_END_ALLOW_THREADS
Guido van Rossum67f7a382002-06-06 21:08:16 +00002010
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002011 /* Signals are not errors (though they may raise exceptions). Adapted
2012 from PyErr_SetFromErrnoWithFilenameObject(). */
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002013#ifdef EINTR
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002014 if (res == EINTR && PyErr_CheckSignals())
2015 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002016#endif
2017
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002018 return PyLong_FromLong((long) res);
Guido van Rossumfc4255d1997-11-19 18:57:13 +00002019}
2020
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002021PyDoc_STRVAR(connect_ex_doc,
Guido van Rossum22a97152002-08-08 20:37:08 +00002022"connect_ex(address) -> errno\n\
Guido van Rossum82a5c661998-07-07 20:45:43 +00002023\n\
2024This is like connect(address), but returns an error code (the errno value)\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002025instead of raising an exception when an error occurs.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00002026
Guido van Rossumfc4255d1997-11-19 18:57:13 +00002027
Guido van Rossumed233a51992-06-23 09:07:03 +00002028/* s.fileno() method */
2029
Guido van Rossum73624e91994-10-10 17:59:00 +00002030static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002031sock_fileno(PySocketSockObject *s)
Guido van Rossumed233a51992-06-23 09:07:03 +00002032{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002033 return PyLong_FromSocket_t(s->sock_fd);
Guido van Rossumed233a51992-06-23 09:07:03 +00002034}
2035
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002036PyDoc_STRVAR(fileno_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00002037"fileno() -> integer\n\
2038\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002039Return the integer file descriptor of the socket.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00002040
Guido van Rossumed233a51992-06-23 09:07:03 +00002041
Guido van Rossumc89705d1992-11-26 08:54:07 +00002042/* s.getsockname() method */
2043
Guido van Rossum73624e91994-10-10 17:59:00 +00002044static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002045sock_getsockname(PySocketSockObject *s)
Guido van Rossumc89705d1992-11-26 08:54:07 +00002046{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002047 sock_addr_t addrbuf;
2048 int res;
2049 socklen_t addrlen;
Guido van Rossumff3ab422000-04-24 15:16:03 +00002050
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002051 if (!getsockaddrlen(s, &addrlen))
2052 return NULL;
2053 memset(&addrbuf, 0, addrlen);
2054 Py_BEGIN_ALLOW_THREADS
2055 res = getsockname(s->sock_fd, SAS2SA(&addrbuf), &addrlen);
2056 Py_END_ALLOW_THREADS
2057 if (res < 0)
2058 return s->errorhandler();
2059 return makesockaddr(s->sock_fd, SAS2SA(&addrbuf), addrlen,
2060 s->sock_proto);
Guido van Rossumc89705d1992-11-26 08:54:07 +00002061}
2062
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002063PyDoc_STRVAR(getsockname_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00002064"getsockname() -> address info\n\
2065\n\
2066Return the address of the local endpoint. For IP sockets, the address\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002067info is a pair (hostaddr, port).");
Guido van Rossum82a5c661998-07-07 20:45:43 +00002068
Guido van Rossumc89705d1992-11-26 08:54:07 +00002069
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002070#ifdef HAVE_GETPEERNAME /* Cray APP doesn't have this :-( */
Guido van Rossumc89705d1992-11-26 08:54:07 +00002071/* s.getpeername() method */
2072
Guido van Rossum73624e91994-10-10 17:59:00 +00002073static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002074sock_getpeername(PySocketSockObject *s)
Guido van Rossumc89705d1992-11-26 08:54:07 +00002075{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002076 sock_addr_t addrbuf;
2077 int res;
2078 socklen_t addrlen;
Guido van Rossumff3ab422000-04-24 15:16:03 +00002079
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002080 if (!getsockaddrlen(s, &addrlen))
2081 return NULL;
2082 memset(&addrbuf, 0, addrlen);
2083 Py_BEGIN_ALLOW_THREADS
2084 res = getpeername(s->sock_fd, SAS2SA(&addrbuf), &addrlen);
2085 Py_END_ALLOW_THREADS
2086 if (res < 0)
2087 return s->errorhandler();
2088 return makesockaddr(s->sock_fd, SAS2SA(&addrbuf), addrlen,
2089 s->sock_proto);
Guido van Rossumc89705d1992-11-26 08:54:07 +00002090}
Guido van Rossum82a5c661998-07-07 20:45:43 +00002091
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002092PyDoc_STRVAR(getpeername_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00002093"getpeername() -> address info\n\
2094\n\
2095Return the address of the remote endpoint. For IP sockets, the address\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002096info is a pair (hostaddr, port).");
Guido van Rossum82a5c661998-07-07 20:45:43 +00002097
Guido van Rossumb6775db1994-08-01 11:34:53 +00002098#endif /* HAVE_GETPEERNAME */
Guido van Rossumc89705d1992-11-26 08:54:07 +00002099
2100
Guido van Rossum30a685f1991-06-27 15:51:29 +00002101/* s.listen(n) method */
2102
Guido van Rossum73624e91994-10-10 17:59:00 +00002103static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002104sock_listen(PySocketSockObject *s, PyObject *arg)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002105{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002106 int backlog;
2107 int res;
Jeremy Hyltonae0013d2001-10-11 16:36:35 +00002108
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002109 backlog = PyLong_AsLong(arg);
2110 if (backlog == -1 && PyErr_Occurred())
2111 return NULL;
2112 Py_BEGIN_ALLOW_THREADS
2113 if (backlog < 1)
2114 backlog = 1;
2115 res = listen(s->sock_fd, backlog);
2116 Py_END_ALLOW_THREADS
2117 if (res < 0)
2118 return s->errorhandler();
2119 Py_INCREF(Py_None);
2120 return Py_None;
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002121}
2122
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002123PyDoc_STRVAR(listen_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00002124"listen(backlog)\n\
2125\n\
2126Enable a server to accept connections. The backlog argument must be at\n\
2127least 1; it specifies the number of unaccepted connection that the system\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002128will allow before refusing new connections.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00002129
2130
Thomas Wouters477c8d52006-05-27 19:21:47 +00002131/*
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002132 * This is the guts of the recv() and recv_into() methods, which reads into a
Thomas Wouters902d6eb2007-01-09 23:18:33 +00002133 * char buffer. If you have any inc/dec ref to do to the objects that contain
Thomas Wouters477c8d52006-05-27 19:21:47 +00002134 * the buffer, do it in the caller. This function returns the number of bytes
2135 * succesfully read. If there was an error, it returns -1. Note that it is
2136 * also possible that we return a number of bytes smaller than the request
2137 * bytes.
2138 */
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002139static Py_ssize_t
2140sock_recv_guts(PySocketSockObject *s, char* cbuf, Py_ssize_t len, int flags)
Thomas Wouters477c8d52006-05-27 19:21:47 +00002141{
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002142 Py_ssize_t outlen = -1;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002143 int timeout;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002144#ifdef __VMS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002145 int remaining;
2146 char *read_buf;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002147#endif
2148
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002149 if (!IS_SELECTABLE(s)) {
2150 select_error();
2151 return -1;
2152 }
2153 if (len == 0) {
2154 /* If 0 bytes were requested, do nothing. */
2155 return 0;
2156 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002157
2158#ifndef __VMS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002159 Py_BEGIN_ALLOW_THREADS
2160 timeout = internal_select(s, 0);
2161 if (!timeout)
2162 outlen = recv(s->sock_fd, cbuf, len, flags);
2163 Py_END_ALLOW_THREADS
Thomas Wouters477c8d52006-05-27 19:21:47 +00002164
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002165 if (timeout == 1) {
2166 PyErr_SetString(socket_timeout, "timed out");
2167 return -1;
2168 }
2169 if (outlen < 0) {
2170 /* Note: the call to errorhandler() ALWAYS indirectly returned
2171 NULL, so ignore its return value */
2172 s->errorhandler();
2173 return -1;
2174 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002175#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002176 read_buf = cbuf;
2177 remaining = len;
2178 while (remaining != 0) {
2179 unsigned int segment;
2180 int nread = -1;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002181
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002182 segment = remaining /SEGMENT_SIZE;
2183 if (segment != 0) {
2184 segment = SEGMENT_SIZE;
2185 }
2186 else {
2187 segment = remaining;
2188 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002189
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002190 Py_BEGIN_ALLOW_THREADS
2191 timeout = internal_select(s, 0);
2192 if (!timeout)
2193 nread = recv(s->sock_fd, read_buf, segment, flags);
2194 Py_END_ALLOW_THREADS
Thomas Wouters477c8d52006-05-27 19:21:47 +00002195
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002196 if (timeout == 1) {
2197 PyErr_SetString(socket_timeout, "timed out");
2198 return -1;
2199 }
2200 if (nread < 0) {
2201 s->errorhandler();
2202 return -1;
2203 }
2204 if (nread != remaining) {
2205 read_buf += nread;
2206 break;
2207 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002208
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002209 remaining -= segment;
2210 read_buf += segment;
2211 }
2212 outlen = read_buf - cbuf;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002213#endif /* !__VMS */
2214
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002215 return outlen;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002216}
2217
Guido van Rossum48a680c2001-03-02 06:34:14 +00002218
Guido van Rossumeb6b33a1993-05-25 09:38:27 +00002219/* s.recv(nbytes [,flags]) method */
Guido van Rossum30a685f1991-06-27 15:51:29 +00002220
Guido van Rossum73624e91994-10-10 17:59:00 +00002221static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002222sock_recv(PySocketSockObject *s, PyObject *args)
Guido van Rossum30a685f1991-06-27 15:51:29 +00002223{
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002224 Py_ssize_t recvlen, outlen;
2225 int flags = 0;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002226 PyObject *buf;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002227
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002228 if (!PyArg_ParseTuple(args, "n|i:recv", &recvlen, &flags))
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002229 return NULL;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002230
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002231 if (recvlen < 0) {
2232 PyErr_SetString(PyExc_ValueError,
2233 "negative buffersize in recv");
2234 return NULL;
2235 }
Guido van Rossum67f7a382002-06-06 21:08:16 +00002236
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002237 /* Allocate a new string. */
2238 buf = PyBytes_FromStringAndSize((char *) 0, recvlen);
2239 if (buf == NULL)
2240 return NULL;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002241
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002242 /* Call the guts */
2243 outlen = sock_recv_guts(s, PyBytes_AS_STRING(buf), recvlen, flags);
2244 if (outlen < 0) {
2245 /* An error occurred, release the string and return an
2246 error. */
2247 Py_DECREF(buf);
2248 return NULL;
2249 }
2250 if (outlen != recvlen) {
2251 /* We did not read as many bytes as we anticipated, resize the
2252 string if possible and be successful. */
2253 _PyBytes_Resize(&buf, outlen);
2254 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00002255
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002256 return buf;
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002257}
2258
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002259PyDoc_STRVAR(recv_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00002260"recv(buffersize[, flags]) -> data\n\
2261\n\
2262Receive up to buffersize bytes from the socket. For the optional flags\n\
2263argument, see the Unix manual. When no data is available, block until\n\
2264at least one byte is available or until the remote end is closed. When\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002265the remote end is closed and all data is read, return the empty string.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00002266
Guido van Rossum30a685f1991-06-27 15:51:29 +00002267
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002268/* s.recv_into(buffer, [nbytes [,flags]]) method */
Guido van Rossum30a685f1991-06-27 15:51:29 +00002269
Thomas Wouters477c8d52006-05-27 19:21:47 +00002270static PyObject*
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002271sock_recv_into(PySocketSockObject *s, PyObject *args, PyObject *kwds)
Thomas Wouters477c8d52006-05-27 19:21:47 +00002272{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002273 static char *kwlist[] = {"buffer", "nbytes", "flags", 0};
Thomas Wouters477c8d52006-05-27 19:21:47 +00002274
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002275 int flags = 0;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002276 Py_buffer pbuf;
2277 char *buf;
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002278 Py_ssize_t buflen, readlen, recvlen = 0;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002279
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002280 /* Get the buffer's memory */
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002281 if (!PyArg_ParseTupleAndKeywords(args, kwds, "w*|ni:recv_into", kwlist,
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002282 &pbuf, &recvlen, &flags))
2283 return NULL;
2284 buf = pbuf.buf;
2285 buflen = pbuf.len;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002286
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002287 if (recvlen < 0) {
2288 PyBuffer_Release(&pbuf);
2289 PyErr_SetString(PyExc_ValueError,
2290 "negative buffersize in recv_into");
2291 return NULL;
2292 }
2293 if (recvlen == 0) {
2294 /* If nbytes was not specified, use the buffer's length */
2295 recvlen = buflen;
2296 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002297
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002298 /* Check if the buffer is large enough */
2299 if (buflen < recvlen) {
2300 PyBuffer_Release(&pbuf);
2301 PyErr_SetString(PyExc_ValueError,
2302 "buffer too small for requested bytes");
2303 return NULL;
2304 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002305
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002306 /* Call the guts */
2307 readlen = sock_recv_guts(s, buf, recvlen, flags);
2308 if (readlen < 0) {
2309 /* Return an error. */
2310 PyBuffer_Release(&pbuf);
2311 return NULL;
2312 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002313
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002314 PyBuffer_Release(&pbuf);
2315 /* Return the number of bytes read. Note that we do not do anything
2316 special here in the case that readlen < recvlen. */
2317 return PyLong_FromSsize_t(readlen);
Thomas Wouters477c8d52006-05-27 19:21:47 +00002318}
2319
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002320PyDoc_STRVAR(recv_into_doc,
2321"recv_into(buffer, [nbytes[, flags]]) -> nbytes_read\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +00002322\n\
2323A version of recv() that stores its data into a buffer rather than creating \n\
2324a new string. Receive up to buffersize bytes from the socket. If buffersize \n\
2325is not specified (or 0), receive up to the size available in the given buffer.\n\
2326\n\
2327See recv() for documentation about the flags.");
2328
2329
2330/*
Christian Heimes99170a52007-12-19 02:07:34 +00002331 * This is the guts of the recvfrom() and recvfrom_into() methods, which reads
2332 * into a char buffer. If you have any inc/def ref to do to the objects that
2333 * contain the buffer, do it in the caller. This function returns the number
2334 * of bytes succesfully read. If there was an error, it returns -1. Note
2335 * that it is also possible that we return a number of bytes smaller than the
2336 * request bytes.
Thomas Wouters477c8d52006-05-27 19:21:47 +00002337 *
2338 * 'addr' is a return value for the address object. Note that you must decref
2339 * it yourself.
2340 */
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002341static Py_ssize_t
2342sock_recvfrom_guts(PySocketSockObject *s, char* cbuf, Py_ssize_t len, int flags,
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002343 PyObject** addr)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002344{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002345 sock_addr_t addrbuf;
2346 int timeout;
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002347 Py_ssize_t n = -1;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002348 socklen_t addrlen;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002349
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002350 *addr = NULL;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002351
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002352 if (!getsockaddrlen(s, &addrlen))
2353 return -1;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002354
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002355 if (!IS_SELECTABLE(s)) {
2356 select_error();
2357 return -1;
2358 }
Neal Norwitz082b2df2006-02-07 07:04:46 +00002359
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002360 Py_BEGIN_ALLOW_THREADS
2361 memset(&addrbuf, 0, addrlen);
2362 timeout = internal_select(s, 0);
2363 if (!timeout) {
Guido van Rossum8d665e61996-06-26 18:22:49 +00002364#ifndef MS_WINDOWS
Andrew MacIntyreba43e872002-03-03 03:03:52 +00002365#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002366 n = recvfrom(s->sock_fd, cbuf, len, flags,
2367 SAS2SA(&addrbuf), &addrlen);
Guido van Rossum32c575d1997-12-02 20:37:32 +00002368#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002369 n = recvfrom(s->sock_fd, cbuf, len, flags,
2370 (void *) &addrbuf, &addrlen);
Guido van Rossum32c575d1997-12-02 20:37:32 +00002371#endif
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002372#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002373 n = recvfrom(s->sock_fd, cbuf, len, flags,
2374 SAS2SA(&addrbuf), &addrlen);
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002375#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002376 }
2377 Py_END_ALLOW_THREADS
Guido van Rossum67f7a382002-06-06 21:08:16 +00002378
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002379 if (timeout == 1) {
2380 PyErr_SetString(socket_timeout, "timed out");
2381 return -1;
2382 }
2383 if (n < 0) {
2384 s->errorhandler();
2385 return -1;
2386 }
Guido van Rossum67f7a382002-06-06 21:08:16 +00002387
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002388 if (!(*addr = makesockaddr(s->sock_fd, SAS2SA(&addrbuf),
2389 addrlen, s->sock_proto)))
2390 return -1;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002391
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002392 return n;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002393}
2394
2395/* s.recvfrom(nbytes [,flags]) method */
2396
2397static PyObject *
2398sock_recvfrom(PySocketSockObject *s, PyObject *args)
2399{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002400 PyObject *buf = NULL;
2401 PyObject *addr = NULL;
2402 PyObject *ret = NULL;
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002403 int flags = 0;
2404 Py_ssize_t recvlen, outlen;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002405
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002406 if (!PyArg_ParseTuple(args, "n|i:recvfrom", &recvlen, &flags))
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002407 return NULL;
Guido van Rossum48a680c2001-03-02 06:34:14 +00002408
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002409 if (recvlen < 0) {
2410 PyErr_SetString(PyExc_ValueError,
2411 "negative buffersize in recvfrom");
2412 return NULL;
2413 }
Guido van Rossumd8faa362007-04-27 19:54:29 +00002414
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002415 buf = PyBytes_FromStringAndSize((char *) 0, recvlen);
2416 if (buf == NULL)
2417 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002418
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002419 outlen = sock_recvfrom_guts(s, PyBytes_AS_STRING(buf),
2420 recvlen, flags, &addr);
2421 if (outlen < 0) {
2422 goto finally;
2423 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002424
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002425 if (outlen != recvlen) {
2426 /* We did not read as many bytes as we anticipated, resize the
2427 string if possible and be succesful. */
2428 if (_PyBytes_Resize(&buf, outlen) < 0)
2429 /* Oopsy, not so succesful after all. */
2430 goto finally;
2431 }
Barry Warsaw752300b1997-01-03 17:18:10 +00002432
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002433 ret = PyTuple_Pack(2, buf, addr);
Guido van Rossum67f7a382002-06-06 21:08:16 +00002434
2435finally:
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002436 Py_XDECREF(buf);
2437 Py_XDECREF(addr);
2438 return ret;
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002439}
2440
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002441PyDoc_STRVAR(recvfrom_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00002442"recvfrom(buffersize[, flags]) -> (data, address info)\n\
2443\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002444Like recv(buffersize, flags) but also return the sender's address info.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00002445
Thomas Wouters477c8d52006-05-27 19:21:47 +00002446
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002447/* s.recvfrom_into(buffer[, nbytes [,flags]]) method */
Thomas Wouters477c8d52006-05-27 19:21:47 +00002448
2449static PyObject *
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002450sock_recvfrom_into(PySocketSockObject *s, PyObject *args, PyObject* kwds)
Thomas Wouters477c8d52006-05-27 19:21:47 +00002451{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002452 static char *kwlist[] = {"buffer", "nbytes", "flags", 0};
Thomas Wouters477c8d52006-05-27 19:21:47 +00002453
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002454 int flags = 0;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002455 Py_buffer pbuf;
2456 char *buf;
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002457 Py_ssize_t readlen, buflen, recvlen = 0;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002458
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002459 PyObject *addr = NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002460
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002461 if (!PyArg_ParseTupleAndKeywords(args, kwds, "w*|ni:recvfrom_into",
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002462 kwlist, &pbuf,
2463 &recvlen, &flags))
2464 return NULL;
2465 buf = pbuf.buf;
2466 buflen = pbuf.len;
2467 assert(buf != 0 && buflen > 0);
Thomas Wouters477c8d52006-05-27 19:21:47 +00002468
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002469 if (recvlen < 0) {
2470 PyBuffer_Release(&pbuf);
2471 PyErr_SetString(PyExc_ValueError,
2472 "negative buffersize in recvfrom_into");
2473 return NULL;
2474 }
2475 if (recvlen == 0) {
2476 /* If nbytes was not specified, use the buffer's length */
2477 recvlen = buflen;
2478 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002479
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002480 readlen = sock_recvfrom_guts(s, buf, recvlen, flags, &addr);
2481 if (readlen < 0) {
2482 PyBuffer_Release(&pbuf);
2483 /* Return an error */
2484 Py_XDECREF(addr);
2485 return NULL;
2486 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002487
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002488 PyBuffer_Release(&pbuf);
2489 /* Return the number of bytes read and the address. Note that we do
2490 not do anything special here in the case that readlen < recvlen. */
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002491 return Py_BuildValue("nN", readlen, addr);
Thomas Wouters477c8d52006-05-27 19:21:47 +00002492}
2493
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002494PyDoc_STRVAR(recvfrom_into_doc,
2495"recvfrom_into(buffer[, nbytes[, flags]]) -> (nbytes, address info)\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +00002496\n\
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002497Like recv_into(buffer[, nbytes[, flags]]) but also return the sender's address info.");
Thomas Wouters477c8d52006-05-27 19:21:47 +00002498
2499
Guido van Rossumeb6b33a1993-05-25 09:38:27 +00002500/* s.send(data [,flags]) method */
Guido van Rossum30a685f1991-06-27 15:51:29 +00002501
Guido van Rossum73624e91994-10-10 17:59:00 +00002502static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002503sock_send(PySocketSockObject *s, PyObject *args)
Guido van Rossum30a685f1991-06-27 15:51:29 +00002504{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002505 char *buf;
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002506 Py_ssize_t len, n = -1;
2507 int flags = 0, timeout;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002508 Py_buffer pbuf;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002509
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002510 if (!PyArg_ParseTuple(args, "y*|i:send", &pbuf, &flags))
2511 return NULL;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002512
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002513 if (!IS_SELECTABLE(s)) {
2514 PyBuffer_Release(&pbuf);
2515 return select_error();
2516 }
2517 buf = pbuf.buf;
2518 len = pbuf.len;
Neal Norwitz082b2df2006-02-07 07:04:46 +00002519
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002520 Py_BEGIN_ALLOW_THREADS
2521 timeout = internal_select(s, 1);
2522 if (!timeout)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002523#ifdef __VMS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002524 n = sendsegmented(s->sock_fd, buf, len, flags);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002525#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002526 n = send(s->sock_fd, buf, len, flags);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002527#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002528 Py_END_ALLOW_THREADS
Guido van Rossum67f7a382002-06-06 21:08:16 +00002529
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002530 PyBuffer_Release(&pbuf);
Martin v. Löwis423be952008-08-13 15:53:07 +00002531
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002532 if (timeout == 1) {
2533 PyErr_SetString(socket_timeout, "timed out");
2534 return NULL;
2535 }
2536 if (n < 0)
2537 return s->errorhandler();
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002538 return PyLong_FromSsize_t(n);
Guido van Rossum30a685f1991-06-27 15:51:29 +00002539}
2540
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002541PyDoc_STRVAR(send_doc,
Guido van Rossum9f7a5392001-10-26 03:25:00 +00002542"send(data[, flags]) -> count\n\
Guido van Rossum82a5c661998-07-07 20:45:43 +00002543\n\
2544Send a data string to the socket. For the optional flags\n\
Guido van Rossum9f7a5392001-10-26 03:25:00 +00002545argument, see the Unix manual. Return the number of bytes\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002546sent; this may be less than len(data) if the network is busy.");
Guido van Rossum9f7a5392001-10-26 03:25:00 +00002547
2548
2549/* s.sendall(data [,flags]) method */
2550
2551static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002552sock_sendall(PySocketSockObject *s, PyObject *args)
Guido van Rossum9f7a5392001-10-26 03:25:00 +00002553{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002554 char *buf;
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002555 Py_ssize_t len, n = -1;
2556 int flags = 0, timeout;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002557 Py_buffer pbuf;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002558
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002559 if (!PyArg_ParseTuple(args, "y*|i:sendall", &pbuf, &flags))
2560 return NULL;
2561 buf = pbuf.buf;
2562 len = pbuf.len;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002563
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002564 if (!IS_SELECTABLE(s)) {
2565 PyBuffer_Release(&pbuf);
2566 return select_error();
2567 }
Neal Norwitz082b2df2006-02-07 07:04:46 +00002568
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002569 Py_BEGIN_ALLOW_THREADS
2570 do {
2571 timeout = internal_select(s, 1);
2572 n = -1;
2573 if (timeout)
2574 break;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002575#ifdef __VMS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002576 n = sendsegmented(s->sock_fd, buf, len, flags);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002577#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002578 n = send(s->sock_fd, buf, len, flags);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002579#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002580 if (n < 0)
2581 break;
2582 buf += n;
2583 len -= n;
2584 } while (len > 0);
2585 Py_END_ALLOW_THREADS
2586 PyBuffer_Release(&pbuf);
Guido van Rossum67f7a382002-06-06 21:08:16 +00002587
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002588 if (timeout == 1) {
2589 PyErr_SetString(socket_timeout, "timed out");
2590 return NULL;
2591 }
2592 if (n < 0)
2593 return s->errorhandler();
Guido van Rossum67f7a382002-06-06 21:08:16 +00002594
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002595 Py_INCREF(Py_None);
2596 return Py_None;
Guido van Rossum9f7a5392001-10-26 03:25:00 +00002597}
2598
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002599PyDoc_STRVAR(sendall_doc,
Guido van Rossum9f7a5392001-10-26 03:25:00 +00002600"sendall(data[, flags])\n\
2601\n\
2602Send a data string to the socket. For the optional flags\n\
2603argument, see the Unix manual. This calls send() repeatedly\n\
2604until all data is sent. If an error occurs, it's impossible\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002605to tell how much data has been sent.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00002606
Guido van Rossum30a685f1991-06-27 15:51:29 +00002607
Guido van Rossumeb6b33a1993-05-25 09:38:27 +00002608/* s.sendto(data, [flags,] sockaddr) method */
Guido van Rossum30a685f1991-06-27 15:51:29 +00002609
Guido van Rossum73624e91994-10-10 17:59:00 +00002610static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002611sock_sendto(PySocketSockObject *s, PyObject *args)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002612{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002613 Py_buffer pbuf;
2614 PyObject *addro;
2615 char *buf;
2616 Py_ssize_t len;
2617 sock_addr_t addrbuf;
2618 int addrlen, n = -1, flags, timeout;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002619
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002620 flags = 0;
2621 if (!PyArg_ParseTuple(args, "y*O:sendto", &pbuf, &addro)) {
2622 PyErr_Clear();
2623 if (!PyArg_ParseTuple(args, "y*iO:sendto",
2624 &pbuf, &flags, &addro))
2625 return NULL;
2626 }
2627 buf = pbuf.buf;
2628 len = pbuf.len;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002629
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002630 if (!IS_SELECTABLE(s)) {
2631 PyBuffer_Release(&pbuf);
2632 return select_error();
2633 }
Neal Norwitz082b2df2006-02-07 07:04:46 +00002634
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002635 if (!getsockaddrarg(s, addro, SAS2SA(&addrbuf), &addrlen)) {
2636 PyBuffer_Release(&pbuf);
2637 return NULL;
2638 }
Thomas Wouters89f507f2006-12-13 04:49:30 +00002639
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002640 Py_BEGIN_ALLOW_THREADS
2641 timeout = internal_select(s, 1);
2642 if (!timeout)
2643 n = sendto(s->sock_fd, buf, len, flags, SAS2SA(&addrbuf), addrlen);
2644 Py_END_ALLOW_THREADS
Guido van Rossum67f7a382002-06-06 21:08:16 +00002645
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002646 PyBuffer_Release(&pbuf);
2647 if (timeout == 1) {
2648 PyErr_SetString(socket_timeout, "timed out");
2649 return NULL;
2650 }
2651 if (n < 0)
2652 return s->errorhandler();
Antoine Pitrouf72006f2010-08-17 19:39:39 +00002653 return PyLong_FromSsize_t(n);
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002654}
2655
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002656PyDoc_STRVAR(sendto_doc,
Guido van Rossum22a97152002-08-08 20:37:08 +00002657"sendto(data[, flags], address) -> count\n\
Guido van Rossum82a5c661998-07-07 20:45:43 +00002658\n\
2659Like send(data, flags) but allows specifying the destination address.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002660For IP sockets, the address is a pair (hostaddr, port).");
Guido van Rossum82a5c661998-07-07 20:45:43 +00002661
Guido van Rossum30a685f1991-06-27 15:51:29 +00002662
2663/* s.shutdown(how) method */
2664
Guido van Rossum73624e91994-10-10 17:59:00 +00002665static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002666sock_shutdown(PySocketSockObject *s, PyObject *arg)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002667{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002668 int how;
2669 int res;
Jeremy Hyltonae0013d2001-10-11 16:36:35 +00002670
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002671 how = PyLong_AsLong(arg);
2672 if (how == -1 && PyErr_Occurred())
2673 return NULL;
2674 Py_BEGIN_ALLOW_THREADS
2675 res = shutdown(s->sock_fd, how);
2676 Py_END_ALLOW_THREADS
2677 if (res < 0)
2678 return s->errorhandler();
2679 Py_INCREF(Py_None);
2680 return Py_None;
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002681}
2682
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002683PyDoc_STRVAR(shutdown_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00002684"shutdown(flag)\n\
2685\n\
Martin v. Löwis94681fc2003-11-27 19:40:22 +00002686Shut down the reading side of the socket (flag == SHUT_RD), the writing side\n\
2687of the socket (flag == SHUT_WR), or both ends (flag == SHUT_RDWR).");
Guido van Rossum82a5c661998-07-07 20:45:43 +00002688
Amaury Forgeot d'Arc3d17a5c2008-06-13 01:09:34 +00002689#if defined(MS_WINDOWS) && defined(SIO_RCVALL)
Christian Heimesfaf2f632008-01-06 16:59:19 +00002690static PyObject*
2691sock_ioctl(PySocketSockObject *s, PyObject *arg)
2692{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002693 unsigned long cmd = SIO_RCVALL;
2694 unsigned int option = RCVALL_ON;
2695 DWORD recv;
Christian Heimesfaf2f632008-01-06 16:59:19 +00002696
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002697 if (!PyArg_ParseTuple(arg, "kI:ioctl", &cmd, &option))
2698 return NULL;
Christian Heimesfaf2f632008-01-06 16:59:19 +00002699
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002700 if (WSAIoctl(s->sock_fd, cmd, &option, sizeof(option),
2701 NULL, 0, &recv, NULL, NULL) == SOCKET_ERROR) {
2702 return set_error();
2703 }
2704 return PyLong_FromUnsignedLong(recv);
Christian Heimesfaf2f632008-01-06 16:59:19 +00002705}
2706PyDoc_STRVAR(sock_ioctl_doc,
2707"ioctl(cmd, option) -> long\n\
2708\n\
2709Control the socket with WSAIoctl syscall. Currently only socket.SIO_RCVALL\n\
2710is supported as control. Options must be one of the socket.RCVALL_*\n\
2711constants.");
2712
2713#endif
Guido van Rossum30a685f1991-06-27 15:51:29 +00002714
2715/* List of methods for socket objects */
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002716
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002717static PyMethodDef sock_methods[] = {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002718 {"_accept", (PyCFunction)sock_accept, METH_NOARGS,
2719 accept_doc},
2720 {"bind", (PyCFunction)sock_bind, METH_O,
2721 bind_doc},
2722 {"close", (PyCFunction)sock_close, METH_NOARGS,
2723 close_doc},
2724 {"connect", (PyCFunction)sock_connect, METH_O,
2725 connect_doc},
2726 {"connect_ex", (PyCFunction)sock_connect_ex, METH_O,
2727 connect_ex_doc},
2728 {"fileno", (PyCFunction)sock_fileno, METH_NOARGS,
2729 fileno_doc},
Guido van Rossumb6775db1994-08-01 11:34:53 +00002730#ifdef HAVE_GETPEERNAME
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002731 {"getpeername", (PyCFunction)sock_getpeername,
2732 METH_NOARGS, getpeername_doc},
Guido van Rossum9575a441993-04-07 14:06:14 +00002733#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002734 {"getsockname", (PyCFunction)sock_getsockname,
2735 METH_NOARGS, getsockname_doc},
2736 {"getsockopt", (PyCFunction)sock_getsockopt, METH_VARARGS,
2737 getsockopt_doc},
Amaury Forgeot d'Arc3d17a5c2008-06-13 01:09:34 +00002738#if defined(MS_WINDOWS) && defined(SIO_RCVALL)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002739 {"ioctl", (PyCFunction)sock_ioctl, METH_VARARGS,
2740 sock_ioctl_doc},
Christian Heimesfaf2f632008-01-06 16:59:19 +00002741#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002742 {"listen", (PyCFunction)sock_listen, METH_O,
2743 listen_doc},
2744 {"recv", (PyCFunction)sock_recv, METH_VARARGS,
2745 recv_doc},
2746 {"recv_into", (PyCFunction)sock_recv_into, METH_VARARGS | METH_KEYWORDS,
2747 recv_into_doc},
2748 {"recvfrom", (PyCFunction)sock_recvfrom, METH_VARARGS,
2749 recvfrom_doc},
2750 {"recvfrom_into", (PyCFunction)sock_recvfrom_into, METH_VARARGS | METH_KEYWORDS,
2751 recvfrom_into_doc},
2752 {"send", (PyCFunction)sock_send, METH_VARARGS,
2753 send_doc},
2754 {"sendall", (PyCFunction)sock_sendall, METH_VARARGS,
2755 sendall_doc},
2756 {"sendto", (PyCFunction)sock_sendto, METH_VARARGS,
2757 sendto_doc},
2758 {"setblocking", (PyCFunction)sock_setblocking, METH_O,
2759 setblocking_doc},
2760 {"settimeout", (PyCFunction)sock_settimeout, METH_O,
2761 settimeout_doc},
2762 {"gettimeout", (PyCFunction)sock_gettimeout, METH_NOARGS,
2763 gettimeout_doc},
2764 {"setsockopt", (PyCFunction)sock_setsockopt, METH_VARARGS,
2765 setsockopt_doc},
2766 {"shutdown", (PyCFunction)sock_shutdown, METH_O,
2767 shutdown_doc},
2768 {NULL, NULL} /* sentinel */
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002769};
2770
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002771/* SockObject members */
2772static PyMemberDef sock_memberlist[] = {
2773 {"family", T_INT, offsetof(PySocketSockObject, sock_family), READONLY, "the socket family"},
2774 {"type", T_INT, offsetof(PySocketSockObject, sock_type), READONLY, "the socket type"},
2775 {"proto", T_INT, offsetof(PySocketSockObject, sock_proto), READONLY, "the socket protocol"},
2776 {"timeout", T_DOUBLE, offsetof(PySocketSockObject, sock_timeout), READONLY, "the socket timeout"},
2777 {0},
2778};
Guido van Rossum30a685f1991-06-27 15:51:29 +00002779
Guido van Rossum73624e91994-10-10 17:59:00 +00002780/* Deallocate a socket object in response to the last Py_DECREF().
Guido van Rossum30a685f1991-06-27 15:51:29 +00002781 First close the file description. */
2782
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002783static void
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002784sock_dealloc(PySocketSockObject *s)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002785{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002786 if (s->sock_fd != -1)
2787 (void) SOCKETCLOSE(s->sock_fd);
2788 Py_TYPE(s)->tp_free((PyObject *)s);
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002789}
2790
Guido van Rossum30a685f1991-06-27 15:51:29 +00002791
Guido van Rossum3bbc62e1995-01-02 19:30:30 +00002792static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002793sock_repr(PySocketSockObject *s)
Guido van Rossum3bbc62e1995-01-02 19:30:30 +00002794{
Fred Drakea04eaad2000-06-30 02:46:07 +00002795#if SIZEOF_SOCKET_T > SIZEOF_LONG
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002796 if (s->sock_fd > LONG_MAX) {
2797 /* this can occur on Win64, and actually there is a special
2798 ugly printf formatter for decimal pointer length integer
2799 printing, only bother if necessary*/
2800 PyErr_SetString(PyExc_OverflowError,
2801 "no printf formatter to display "
2802 "the socket descriptor in decimal");
2803 return NULL;
2804 }
Fred Drakea04eaad2000-06-30 02:46:07 +00002805#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002806 return PyUnicode_FromFormat(
2807 "<socket object, fd=%ld, family=%d, type=%d, proto=%d>",
2808 (long)s->sock_fd, s->sock_family,
2809 s->sock_type,
2810 s->sock_proto);
Guido van Rossum3bbc62e1995-01-02 19:30:30 +00002811}
2812
2813
Guido van Rossum384ca9c2001-10-27 22:20:47 +00002814/* Create a new, uninitialized socket object. */
2815
2816static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002817sock_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
Guido van Rossum384ca9c2001-10-27 22:20:47 +00002818{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002819 PyObject *new;
Guido van Rossum384ca9c2001-10-27 22:20:47 +00002820
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002821 new = type->tp_alloc(type, 0);
2822 if (new != NULL) {
2823 ((PySocketSockObject *)new)->sock_fd = -1;
2824 ((PySocketSockObject *)new)->sock_timeout = -1.0;
2825 ((PySocketSockObject *)new)->errorhandler = &set_error;
2826 }
2827 return new;
Guido van Rossum384ca9c2001-10-27 22:20:47 +00002828}
2829
2830
2831/* Initialize a new socket object. */
2832
2833/*ARGSUSED*/
2834static int
Andrew MacIntyre7aec4a22002-06-13 11:53:52 +00002835sock_initobj(PyObject *self, PyObject *args, PyObject *kwds)
Guido van Rossum384ca9c2001-10-27 22:20:47 +00002836{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002837 PySocketSockObject *s = (PySocketSockObject *)self;
2838 PyObject *fdobj = NULL;
2839 SOCKET_T fd = INVALID_SOCKET;
2840 int family = AF_INET, type = SOCK_STREAM, proto = 0;
2841 static char *keywords[] = {"family", "type", "proto", "fileno", 0};
Guido van Rossum384ca9c2001-10-27 22:20:47 +00002842
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002843 if (!PyArg_ParseTupleAndKeywords(args, kwds,
2844 "|iiiO:socket", keywords,
2845 &family, &type, &proto, &fdobj))
2846 return -1;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002847
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002848 if (fdobj != NULL && fdobj != Py_None) {
2849 fd = PyLong_AsSocket_t(fdobj);
2850 if (fd == (SOCKET_T)(-1) && PyErr_Occurred())
2851 return -1;
2852 if (fd == INVALID_SOCKET) {
2853 PyErr_SetString(PyExc_ValueError,
2854 "can't use invalid socket value");
2855 return -1;
2856 }
2857 }
2858 else {
2859 Py_BEGIN_ALLOW_THREADS
2860 fd = socket(family, type, proto);
2861 Py_END_ALLOW_THREADS
Guido van Rossum67f7a382002-06-06 21:08:16 +00002862
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002863 if (fd == INVALID_SOCKET) {
2864 set_error();
2865 return -1;
2866 }
2867 }
2868 init_sockobject(s, fd, family, type, proto);
Guido van Rossum67f7a382002-06-06 21:08:16 +00002869
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002870 return 0;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002871
Guido van Rossum384ca9c2001-10-27 22:20:47 +00002872}
2873
2874
Guido van Rossumb6775db1994-08-01 11:34:53 +00002875/* Type object for socket objects. */
Guido van Rossum30a685f1991-06-27 15:51:29 +00002876
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002877static PyTypeObject sock_type = {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002878 PyVarObject_HEAD_INIT(0, 0) /* Must fill in type value later */
2879 "_socket.socket", /* tp_name */
2880 sizeof(PySocketSockObject), /* tp_basicsize */
2881 0, /* tp_itemsize */
2882 (destructor)sock_dealloc, /* tp_dealloc */
2883 0, /* tp_print */
2884 0, /* tp_getattr */
2885 0, /* tp_setattr */
2886 0, /* tp_reserved */
2887 (reprfunc)sock_repr, /* tp_repr */
2888 0, /* tp_as_number */
2889 0, /* tp_as_sequence */
2890 0, /* tp_as_mapping */
2891 0, /* tp_hash */
2892 0, /* tp_call */
2893 0, /* tp_str */
2894 PyObject_GenericGetAttr, /* tp_getattro */
2895 0, /* tp_setattro */
2896 0, /* tp_as_buffer */
2897 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
2898 sock_doc, /* tp_doc */
2899 0, /* tp_traverse */
2900 0, /* tp_clear */
2901 0, /* tp_richcompare */
2902 0, /* tp_weaklistoffset */
2903 0, /* tp_iter */
2904 0, /* tp_iternext */
2905 sock_methods, /* tp_methods */
2906 sock_memberlist, /* tp_members */
2907 0, /* tp_getset */
2908 0, /* tp_base */
2909 0, /* tp_dict */
2910 0, /* tp_descr_get */
2911 0, /* tp_descr_set */
2912 0, /* tp_dictoffset */
2913 sock_initobj, /* tp_init */
2914 PyType_GenericAlloc, /* tp_alloc */
2915 sock_new, /* tp_new */
2916 PyObject_Del, /* tp_free */
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002917};
2918
Guido van Rossum30a685f1991-06-27 15:51:29 +00002919
Guido van Rossum81194471991-07-27 21:42:02 +00002920/* Python interface to gethostname(). */
2921
2922/*ARGSUSED*/
Guido van Rossum73624e91994-10-10 17:59:00 +00002923static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002924socket_gethostname(PyObject *self, PyObject *unused)
Guido van Rossum81194471991-07-27 21:42:02 +00002925{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002926 char buf[1024];
2927 int res;
2928 Py_BEGIN_ALLOW_THREADS
2929 res = gethostname(buf, (int) sizeof buf - 1);
2930 Py_END_ALLOW_THREADS
2931 if (res < 0)
2932 return set_error();
2933 buf[sizeof buf - 1] = '\0';
2934 return PyUnicode_FromString(buf);
Guido van Rossum81194471991-07-27 21:42:02 +00002935}
Guido van Rossumff4949e1992-08-05 19:58:53 +00002936
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002937PyDoc_STRVAR(gethostname_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00002938"gethostname() -> string\n\
2939\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002940Return the current host name.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00002941
Guido van Rossumff4949e1992-08-05 19:58:53 +00002942
Guido van Rossum30a685f1991-06-27 15:51:29 +00002943/* Python interface to gethostbyname(name). */
2944
2945/*ARGSUSED*/
Guido van Rossum73624e91994-10-10 17:59:00 +00002946static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002947socket_gethostbyname(PyObject *self, PyObject *args)
Guido van Rossum30a685f1991-06-27 15:51:29 +00002948{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002949 char *name;
2950 sock_addr_t addrbuf;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00002951
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002952 if (!PyArg_ParseTuple(args, "s:gethostbyname", &name))
2953 return NULL;
2954 if (setipaddr(name, SAS2SA(&addrbuf), sizeof(addrbuf), AF_INET) < 0)
2955 return NULL;
2956 return makeipaddr(SAS2SA(&addrbuf), sizeof(struct sockaddr_in));
Guido van Rossum30a685f1991-06-27 15:51:29 +00002957}
2958
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002959PyDoc_STRVAR(gethostbyname_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00002960"gethostbyname(host) -> address\n\
2961\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002962Return the IP address (a string of the form '255.255.255.255') for a host.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00002963
2964
Guido van Rossum7d896ab1998-08-04 22:16:43 +00002965/* Convenience function common to gethostbyname_ex and gethostbyaddr */
2966
2967static PyObject *
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00002968gethost_common(struct hostent *h, struct sockaddr *addr, int alen, int af)
Guido van Rossum7d896ab1998-08-04 22:16:43 +00002969{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002970 char **pch;
2971 PyObject *rtn_tuple = (PyObject *)NULL;
2972 PyObject *name_list = (PyObject *)NULL;
2973 PyObject *addr_list = (PyObject *)NULL;
2974 PyObject *tmp;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00002975
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002976 if (h == NULL) {
2977 /* Let's get real error message to return */
2978 set_herror(h_errno);
2979 return NULL;
2980 }
Guido van Rossum67f7a382002-06-06 21:08:16 +00002981
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002982 if (h->h_addrtype != af) {
2983 /* Let's get real error message to return */
2984 PyErr_SetString(socket_error,
2985 (char *)strerror(EAFNOSUPPORT));
Christian Heimesada8c3b2008-03-18 18:26:33 +00002986
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002987 return NULL;
2988 }
Guido van Rossum67f7a382002-06-06 21:08:16 +00002989
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002990 switch (af) {
Guido van Rossum67f7a382002-06-06 21:08:16 +00002991
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002992 case AF_INET:
2993 if (alen < sizeof(struct sockaddr_in))
2994 return NULL;
2995 break;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002996
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00002997#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002998 case AF_INET6:
2999 if (alen < sizeof(struct sockaddr_in6))
3000 return NULL;
3001 break;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003002#endif
Guido van Rossum67f7a382002-06-06 21:08:16 +00003003
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003004 }
Guido van Rossum67f7a382002-06-06 21:08:16 +00003005
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003006 if ((name_list = PyList_New(0)) == NULL)
3007 goto err;
Guido van Rossum67f7a382002-06-06 21:08:16 +00003008
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003009 if ((addr_list = PyList_New(0)) == NULL)
3010 goto err;
Guido van Rossum67f7a382002-06-06 21:08:16 +00003011
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003012 /* SF #1511317: h_aliases can be NULL */
3013 if (h->h_aliases) {
3014 for (pch = h->h_aliases; *pch != NULL; pch++) {
3015 int status;
3016 tmp = PyUnicode_FromString(*pch);
3017 if (tmp == NULL)
3018 goto err;
Guido van Rossum67f7a382002-06-06 21:08:16 +00003019
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003020 status = PyList_Append(name_list, tmp);
3021 Py_DECREF(tmp);
Guido van Rossum67f7a382002-06-06 21:08:16 +00003022
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003023 if (status)
3024 goto err;
3025 }
3026 }
Guido van Rossum67f7a382002-06-06 21:08:16 +00003027
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003028 for (pch = h->h_addr_list; *pch != NULL; pch++) {
3029 int status;
Guido van Rossum67f7a382002-06-06 21:08:16 +00003030
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003031 switch (af) {
Guido van Rossum67f7a382002-06-06 21:08:16 +00003032
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003033 case AF_INET:
3034 {
3035 struct sockaddr_in sin;
3036 memset(&sin, 0, sizeof(sin));
3037 sin.sin_family = af;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003038#ifdef HAVE_SOCKADDR_SA_LEN
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003039 sin.sin_len = sizeof(sin);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003040#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003041 memcpy(&sin.sin_addr, *pch, sizeof(sin.sin_addr));
3042 tmp = makeipaddr((struct sockaddr *)&sin, sizeof(sin));
Guido van Rossum67f7a382002-06-06 21:08:16 +00003043
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003044 if (pch == h->h_addr_list && alen >= sizeof(sin))
3045 memcpy((char *) addr, &sin, sizeof(sin));
3046 break;
3047 }
Guido van Rossum67f7a382002-06-06 21:08:16 +00003048
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00003049#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003050 case AF_INET6:
3051 {
3052 struct sockaddr_in6 sin6;
3053 memset(&sin6, 0, sizeof(sin6));
3054 sin6.sin6_family = af;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003055#ifdef HAVE_SOCKADDR_SA_LEN
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003056 sin6.sin6_len = sizeof(sin6);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003057#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003058 memcpy(&sin6.sin6_addr, *pch, sizeof(sin6.sin6_addr));
3059 tmp = makeipaddr((struct sockaddr *)&sin6,
3060 sizeof(sin6));
Guido van Rossum67f7a382002-06-06 21:08:16 +00003061
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003062 if (pch == h->h_addr_list && alen >= sizeof(sin6))
3063 memcpy((char *) addr, &sin6, sizeof(sin6));
3064 break;
3065 }
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003066#endif
Guido van Rossum67f7a382002-06-06 21:08:16 +00003067
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003068 default: /* can't happen */
3069 PyErr_SetString(socket_error,
3070 "unsupported address family");
3071 return NULL;
3072 }
Guido van Rossum67f7a382002-06-06 21:08:16 +00003073
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003074 if (tmp == NULL)
3075 goto err;
Guido van Rossum67f7a382002-06-06 21:08:16 +00003076
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003077 status = PyList_Append(addr_list, tmp);
3078 Py_DECREF(tmp);
Guido van Rossum67f7a382002-06-06 21:08:16 +00003079
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003080 if (status)
3081 goto err;
3082 }
Guido van Rossum67f7a382002-06-06 21:08:16 +00003083
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003084 rtn_tuple = Py_BuildValue("sOO", h->h_name, name_list, addr_list);
Guido van Rossum67f7a382002-06-06 21:08:16 +00003085
Guido van Rossum7d896ab1998-08-04 22:16:43 +00003086 err:
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003087 Py_XDECREF(name_list);
3088 Py_XDECREF(addr_list);
3089 return rtn_tuple;
Guido van Rossum7d896ab1998-08-04 22:16:43 +00003090}
3091
3092
3093/* Python interface to gethostbyname_ex(name). */
3094
3095/*ARGSUSED*/
3096static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00003097socket_gethostbyname_ex(PyObject *self, PyObject *args)
Guido van Rossum7d896ab1998-08-04 22:16:43 +00003098{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003099 char *name;
3100 struct hostent *h;
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +00003101#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003102 struct sockaddr_storage addr;
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +00003103#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003104 struct sockaddr_in addr;
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +00003105#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003106 struct sockaddr *sa;
3107 PyObject *ret;
Guido van Rossum7d896ab1998-08-04 22:16:43 +00003108#ifdef HAVE_GETHOSTBYNAME_R
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003109 struct hostent hp_allocated;
Guido van Rossum7b6c71f1999-03-24 17:20:40 +00003110#ifdef HAVE_GETHOSTBYNAME_R_3_ARG
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003111 struct hostent_data data;
Guido van Rossum7b6c71f1999-03-24 17:20:40 +00003112#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003113 char buf[16384];
3114 int buf_len = (sizeof buf) - 1;
3115 int errnop;
Guido van Rossum7b6c71f1999-03-24 17:20:40 +00003116#endif
3117#if defined(HAVE_GETHOSTBYNAME_R_3_ARG) || defined(HAVE_GETHOSTBYNAME_R_6_ARG)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003118 int result;
Guido van Rossume9cd07b1999-03-15 21:40:14 +00003119#endif
Guido van Rossum7d896ab1998-08-04 22:16:43 +00003120#endif /* HAVE_GETHOSTBYNAME_R */
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003121
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003122 if (!PyArg_ParseTuple(args, "s:gethostbyname_ex", &name))
3123 return NULL;
3124 if (setipaddr(name, (struct sockaddr *)&addr, sizeof(addr), AF_INET) < 0)
3125 return NULL;
3126 Py_BEGIN_ALLOW_THREADS
Guido van Rossum7d896ab1998-08-04 22:16:43 +00003127#ifdef HAVE_GETHOSTBYNAME_R
Guido van Rossum7b6c71f1999-03-24 17:20:40 +00003128#if defined(HAVE_GETHOSTBYNAME_R_6_ARG)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003129 result = gethostbyname_r(name, &hp_allocated, buf, buf_len,
3130 &h, &errnop);
Guido van Rossum7b6c71f1999-03-24 17:20:40 +00003131#elif defined(HAVE_GETHOSTBYNAME_R_5_ARG)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003132 h = gethostbyname_r(name, &hp_allocated, buf, buf_len, &errnop);
Guido van Rossum7b6c71f1999-03-24 17:20:40 +00003133#else /* HAVE_GETHOSTBYNAME_R_3_ARG */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003134 memset((void *) &data, '\0', sizeof(data));
3135 result = gethostbyname_r(name, &hp_allocated, &data);
3136 h = (result != 0) ? NULL : &hp_allocated;
Guido van Rossume9cd07b1999-03-15 21:40:14 +00003137#endif
Guido van Rossum7d896ab1998-08-04 22:16:43 +00003138#else /* not HAVE_GETHOSTBYNAME_R */
Guido van Rossum3baaa131999-03-22 21:44:51 +00003139#ifdef USE_GETHOSTBYNAME_LOCK
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003140 PyThread_acquire_lock(netdb_lock, 1);
Guido van Rossum7d896ab1998-08-04 22:16:43 +00003141#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003142 h = gethostbyname(name);
Guido van Rossum7d896ab1998-08-04 22:16:43 +00003143#endif /* HAVE_GETHOSTBYNAME_R */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003144 Py_END_ALLOW_THREADS
3145 /* Some C libraries would require addr.__ss_family instead of
3146 addr.ss_family.
3147 Therefore, we cast the sockaddr_storage into sockaddr to
3148 access sa_family. */
3149 sa = (struct sockaddr*)&addr;
3150 ret = gethost_common(h, (struct sockaddr *)&addr, sizeof(addr),
3151 sa->sa_family);
Guido van Rossum3baaa131999-03-22 21:44:51 +00003152#ifdef USE_GETHOSTBYNAME_LOCK
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003153 PyThread_release_lock(netdb_lock);
Guido van Rossum955becc1999-03-22 20:14:53 +00003154#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003155 return ret;
Guido van Rossum7d896ab1998-08-04 22:16:43 +00003156}
3157
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003158PyDoc_STRVAR(ghbn_ex_doc,
Guido van Rossum7d896ab1998-08-04 22:16:43 +00003159"gethostbyname_ex(host) -> (name, aliaslist, addresslist)\n\
3160\n\
3161Return the true host name, a list of aliases, and a list of IP addresses,\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003162for a host. The host argument is a string giving a host name or IP number.");
Guido van Rossum7d896ab1998-08-04 22:16:43 +00003163
3164
Guido van Rossum3bbc62e1995-01-02 19:30:30 +00003165/* Python interface to gethostbyaddr(IP). */
3166
3167/*ARGSUSED*/
3168static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00003169socket_gethostbyaddr(PyObject *self, PyObject *args)
Guido van Rossum3bbc62e1995-01-02 19:30:30 +00003170{
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00003171#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003172 struct sockaddr_storage addr;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003173#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003174 struct sockaddr_in addr;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003175#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003176 struct sockaddr *sa = (struct sockaddr *)&addr;
3177 char *ip_num;
3178 struct hostent *h;
3179 PyObject *ret;
Guido van Rossum4f199ea1998-04-09 20:56:35 +00003180#ifdef HAVE_GETHOSTBYNAME_R
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003181 struct hostent hp_allocated;
Guido van Rossum7b6c71f1999-03-24 17:20:40 +00003182#ifdef HAVE_GETHOSTBYNAME_R_3_ARG
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003183 struct hostent_data data;
Guido van Rossum7b6c71f1999-03-24 17:20:40 +00003184#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003185 /* glibcs up to 2.10 assume that the buf argument to
3186 gethostbyaddr_r is 8-byte aligned, which at least llvm-gcc
3187 does not ensure. The attribute below instructs the compiler
3188 to maintain this alignment. */
3189 char buf[16384] Py_ALIGNED(8);
3190 int buf_len = (sizeof buf) - 1;
3191 int errnop;
Guido van Rossum7b6c71f1999-03-24 17:20:40 +00003192#endif
3193#if defined(HAVE_GETHOSTBYNAME_R_3_ARG) || defined(HAVE_GETHOSTBYNAME_R_6_ARG)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003194 int result;
Guido van Rossume9cd07b1999-03-15 21:40:14 +00003195#endif
Guido van Rossum4f199ea1998-04-09 20:56:35 +00003196#endif /* HAVE_GETHOSTBYNAME_R */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003197 char *ap;
3198 int al;
3199 int af;
Guido van Rossum3bbc62e1995-01-02 19:30:30 +00003200
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003201 if (!PyArg_ParseTuple(args, "s:gethostbyaddr", &ip_num))
3202 return NULL;
3203 af = AF_UNSPEC;
3204 if (setipaddr(ip_num, sa, sizeof(addr), af) < 0)
3205 return NULL;
3206 af = sa->sa_family;
3207 ap = NULL;
3208 al = 0;
3209 switch (af) {
3210 case AF_INET:
3211 ap = (char *)&((struct sockaddr_in *)sa)->sin_addr;
3212 al = sizeof(((struct sockaddr_in *)sa)->sin_addr);
3213 break;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00003214#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003215 case AF_INET6:
3216 ap = (char *)&((struct sockaddr_in6 *)sa)->sin6_addr;
3217 al = sizeof(((struct sockaddr_in6 *)sa)->sin6_addr);
3218 break;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003219#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003220 default:
3221 PyErr_SetString(socket_error, "unsupported address family");
3222 return NULL;
3223 }
3224 Py_BEGIN_ALLOW_THREADS
Guido van Rossum4f199ea1998-04-09 20:56:35 +00003225#ifdef HAVE_GETHOSTBYNAME_R
Guido van Rossum7b6c71f1999-03-24 17:20:40 +00003226#if defined(HAVE_GETHOSTBYNAME_R_6_ARG)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003227 result = gethostbyaddr_r(ap, al, af,
3228 &hp_allocated, buf, buf_len,
3229 &h, &errnop);
Guido van Rossum7b6c71f1999-03-24 17:20:40 +00003230#elif defined(HAVE_GETHOSTBYNAME_R_5_ARG)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003231 h = gethostbyaddr_r(ap, al, af,
3232 &hp_allocated, buf, buf_len, &errnop);
Guido van Rossum7b6c71f1999-03-24 17:20:40 +00003233#else /* HAVE_GETHOSTBYNAME_R_3_ARG */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003234 memset((void *) &data, '\0', sizeof(data));
3235 result = gethostbyaddr_r(ap, al, af, &hp_allocated, &data);
3236 h = (result != 0) ? NULL : &hp_allocated;
Guido van Rossume9cd07b1999-03-15 21:40:14 +00003237#endif
Guido van Rossum4f199ea1998-04-09 20:56:35 +00003238#else /* not HAVE_GETHOSTBYNAME_R */
Guido van Rossum3baaa131999-03-22 21:44:51 +00003239#ifdef USE_GETHOSTBYNAME_LOCK
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003240 PyThread_acquire_lock(netdb_lock, 1);
Guido van Rossum4f199ea1998-04-09 20:56:35 +00003241#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003242 h = gethostbyaddr(ap, al, af);
Guido van Rossum4f199ea1998-04-09 20:56:35 +00003243#endif /* HAVE_GETHOSTBYNAME_R */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003244 Py_END_ALLOW_THREADS
3245 ret = gethost_common(h, (struct sockaddr *)&addr, sizeof(addr), af);
Guido van Rossum3baaa131999-03-22 21:44:51 +00003246#ifdef USE_GETHOSTBYNAME_LOCK
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003247 PyThread_release_lock(netdb_lock);
Guido van Rossum3baaa131999-03-22 21:44:51 +00003248#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003249 return ret;
Guido van Rossum3bbc62e1995-01-02 19:30:30 +00003250}
3251
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003252PyDoc_STRVAR(gethostbyaddr_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00003253"gethostbyaddr(host) -> (name, aliaslist, addresslist)\n\
3254\n\
3255Return the true host name, a list of aliases, and a list of IP addresses,\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003256for a host. The host argument is a string giving a host name or IP number.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00003257
Guido van Rossum30a685f1991-06-27 15:51:29 +00003258
3259/* Python interface to getservbyname(name).
3260 This only returns the port number, since the other info is already
3261 known or not useful (like the list of aliases). */
3262
3263/*ARGSUSED*/
Guido van Rossum73624e91994-10-10 17:59:00 +00003264static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00003265socket_getservbyname(PyObject *self, PyObject *args)
Guido van Rossum30a685f1991-06-27 15:51:29 +00003266{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003267 char *name, *proto=NULL;
3268 struct servent *sp;
3269 if (!PyArg_ParseTuple(args, "s|s:getservbyname", &name, &proto))
3270 return NULL;
3271 Py_BEGIN_ALLOW_THREADS
3272 sp = getservbyname(name, proto);
3273 Py_END_ALLOW_THREADS
3274 if (sp == NULL) {
3275 PyErr_SetString(socket_error, "service/proto not found");
3276 return NULL;
3277 }
3278 return PyLong_FromLong((long) ntohs(sp->s_port));
Guido van Rossum30a685f1991-06-27 15:51:29 +00003279}
3280
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003281PyDoc_STRVAR(getservbyname_doc,
Barry Warsaw11b91a02004-06-28 00:50:43 +00003282"getservbyname(servicename[, protocolname]) -> integer\n\
Guido van Rossum82a5c661998-07-07 20:45:43 +00003283\n\
3284Return a port number from a service name and protocol name.\n\
Barry Warsaw11b91a02004-06-28 00:50:43 +00003285The optional protocol name, if given, should be 'tcp' or 'udp',\n\
3286otherwise any protocol will match.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00003287
Guido van Rossum30a685f1991-06-27 15:51:29 +00003288
Barry Warsaw11b91a02004-06-28 00:50:43 +00003289/* Python interface to getservbyport(port).
3290 This only returns the service name, since the other info is already
3291 known or not useful (like the list of aliases). */
3292
3293/*ARGSUSED*/
3294static PyObject *
3295socket_getservbyport(PyObject *self, PyObject *args)
3296{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003297 int port;
3298 char *proto=NULL;
3299 struct servent *sp;
3300 if (!PyArg_ParseTuple(args, "i|s:getservbyport", &port, &proto))
3301 return NULL;
3302 if (port < 0 || port > 0xffff) {
3303 PyErr_SetString(
3304 PyExc_OverflowError,
3305 "getservbyport: port must be 0-65535.");
3306 return NULL;
3307 }
3308 Py_BEGIN_ALLOW_THREADS
3309 sp = getservbyport(htons((short)port), proto);
3310 Py_END_ALLOW_THREADS
3311 if (sp == NULL) {
3312 PyErr_SetString(socket_error, "port/proto not found");
3313 return NULL;
3314 }
3315 return PyUnicode_FromString(sp->s_name);
Barry Warsaw11b91a02004-06-28 00:50:43 +00003316}
3317
3318PyDoc_STRVAR(getservbyport_doc,
3319"getservbyport(port[, protocolname]) -> string\n\
3320\n\
3321Return the service name from a port number and protocol name.\n\
3322The optional protocol name, if given, should be 'tcp' or 'udp',\n\
3323otherwise any protocol will match.");
3324
Guido van Rossum3901d851996-12-19 16:35:04 +00003325/* Python interface to getprotobyname(name).
3326 This only returns the protocol number, since the other info is
3327 already known or not useful (like the list of aliases). */
3328
3329/*ARGSUSED*/
3330static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00003331socket_getprotobyname(PyObject *self, PyObject *args)
Guido van Rossum3901d851996-12-19 16:35:04 +00003332{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003333 char *name;
3334 struct protoent *sp;
3335 if (!PyArg_ParseTuple(args, "s:getprotobyname", &name))
3336 return NULL;
3337 Py_BEGIN_ALLOW_THREADS
3338 sp = getprotobyname(name);
3339 Py_END_ALLOW_THREADS
3340 if (sp == NULL) {
3341 PyErr_SetString(socket_error, "protocol not found");
3342 return NULL;
3343 }
3344 return PyLong_FromLong((long) sp->p_proto);
Guido van Rossum3901d851996-12-19 16:35:04 +00003345}
3346
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003347PyDoc_STRVAR(getprotobyname_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00003348"getprotobyname(name) -> integer\n\
3349\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003350Return the protocol number for the named protocol. (Rarely used.)");
Guido van Rossum82a5c661998-07-07 20:45:43 +00003351
Guido van Rossum3901d851996-12-19 16:35:04 +00003352
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00003353#ifndef NO_DUP
3354/* dup() function for socket fds */
3355
3356static PyObject *
3357socket_dup(PyObject *self, PyObject *fdobj)
3358{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003359 SOCKET_T fd, newfd;
3360 PyObject *newfdobj;
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00003361
3362
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003363 fd = PyLong_AsSocket_t(fdobj);
3364 if (fd == (SOCKET_T)(-1) && PyErr_Occurred())
3365 return NULL;
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00003366
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003367 newfd = dup_socket(fd);
3368 if (newfd == INVALID_SOCKET)
3369 return set_error();
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00003370
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003371 newfdobj = PyLong_FromSocket_t(newfd);
3372 if (newfdobj == NULL)
3373 SOCKETCLOSE(newfd);
3374 return newfdobj;
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00003375}
3376
3377PyDoc_STRVAR(dup_doc,
3378"dup(integer) -> integer\n\
3379\n\
3380Duplicate an integer socket file descriptor. This is like os.dup(), but for\n\
3381sockets; on some platforms os.dup() won't work for socket file descriptors.");
3382#endif
3383
3384
Dave Cole331708b2004-08-09 04:51:41 +00003385#ifdef HAVE_SOCKETPAIR
3386/* Create a pair of sockets using the socketpair() function.
Dave Cole07fda7e2004-08-23 05:16:23 +00003387 Arguments as for socket() except the default family is AF_UNIX if
Dave Colee8bbfe42004-08-26 00:51:16 +00003388 defined on the platform; otherwise, the default is AF_INET. */
Dave Cole331708b2004-08-09 04:51:41 +00003389
3390/*ARGSUSED*/
3391static PyObject *
3392socket_socketpair(PyObject *self, PyObject *args)
3393{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003394 PySocketSockObject *s0 = NULL, *s1 = NULL;
3395 SOCKET_T sv[2];
3396 int family, type = SOCK_STREAM, proto = 0;
3397 PyObject *res = NULL;
Dave Cole331708b2004-08-09 04:51:41 +00003398
3399#if defined(AF_UNIX)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003400 family = AF_UNIX;
Dave Cole331708b2004-08-09 04:51:41 +00003401#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003402 family = AF_INET;
Dave Cole331708b2004-08-09 04:51:41 +00003403#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003404 if (!PyArg_ParseTuple(args, "|iii:socketpair",
3405 &family, &type, &proto))
3406 return NULL;
3407 /* Create a pair of socket fds */
3408 if (socketpair(family, type, proto, sv) < 0)
3409 return set_error();
3410 s0 = new_sockobject(sv[0], family, type, proto);
3411 if (s0 == NULL)
3412 goto finally;
3413 s1 = new_sockobject(sv[1], family, type, proto);
3414 if (s1 == NULL)
3415 goto finally;
3416 res = PyTuple_Pack(2, s0, s1);
Dave Cole331708b2004-08-09 04:51:41 +00003417
3418finally:
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003419 if (res == NULL) {
3420 if (s0 == NULL)
3421 SOCKETCLOSE(sv[0]);
3422 if (s1 == NULL)
3423 SOCKETCLOSE(sv[1]);
3424 }
3425 Py_XDECREF(s0);
3426 Py_XDECREF(s1);
3427 return res;
Dave Cole331708b2004-08-09 04:51:41 +00003428}
3429
3430PyDoc_STRVAR(socketpair_doc,
3431"socketpair([family[, type[, proto]]]) -> (socket object, socket object)\n\
3432\n\
3433Create a pair of socket objects from the sockets returned by the platform\n\
3434socketpair() function.\n\
Dave Cole07fda7e2004-08-23 05:16:23 +00003435The arguments are the same as for socket() except the default family is\n\
Dave Colee8bbfe42004-08-26 00:51:16 +00003436AF_UNIX if defined on the platform; otherwise, the default is AF_INET.");
Dave Cole331708b2004-08-09 04:51:41 +00003437
3438#endif /* HAVE_SOCKETPAIR */
3439
3440
Guido van Rossum006bf911996-06-12 04:04:55 +00003441static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00003442socket_ntohs(PyObject *self, PyObject *args)
Guido van Rossum006bf911996-06-12 04:04:55 +00003443{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003444 int x1, x2;
Guido van Rossum006bf911996-06-12 04:04:55 +00003445
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003446 if (!PyArg_ParseTuple(args, "i:ntohs", &x1)) {
3447 return NULL;
3448 }
3449 if (x1 < 0) {
3450 PyErr_SetString(PyExc_OverflowError,
3451 "can't convert negative number to unsigned long");
3452 return NULL;
3453 }
3454 x2 = (unsigned int)ntohs((unsigned short)x1);
3455 return PyLong_FromLong(x2);
Guido van Rossum006bf911996-06-12 04:04:55 +00003456}
3457
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003458PyDoc_STRVAR(ntohs_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00003459"ntohs(integer) -> integer\n\
3460\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003461Convert a 16-bit integer from network to host byte order.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00003462
3463
Guido van Rossum006bf911996-06-12 04:04:55 +00003464static PyObject *
Jeremy Hyltonc075e192002-07-25 16:01:12 +00003465socket_ntohl(PyObject *self, PyObject *arg)
Guido van Rossum006bf911996-06-12 04:04:55 +00003466{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003467 unsigned long x;
Guido van Rossum006bf911996-06-12 04:04:55 +00003468
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003469 if (PyLong_Check(arg)) {
3470 x = PyLong_AsUnsignedLong(arg);
3471 if (x == (unsigned long) -1 && PyErr_Occurred())
3472 return NULL;
Jeremy Hyltonc075e192002-07-25 16:01:12 +00003473#if SIZEOF_LONG > 4
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003474 {
3475 unsigned long y;
3476 /* only want the trailing 32 bits */
3477 y = x & 0xFFFFFFFFUL;
3478 if (y ^ x)
3479 return PyErr_Format(PyExc_OverflowError,
3480 "long int larger than 32 bits");
3481 x = y;
3482 }
Jeremy Hyltonc075e192002-07-25 16:01:12 +00003483#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003484 }
3485 else
3486 return PyErr_Format(PyExc_TypeError,
3487 "expected int/long, %s found",
3488 Py_TYPE(arg)->tp_name);
3489 if (x == (unsigned long) -1 && PyErr_Occurred())
3490 return NULL;
3491 return PyLong_FromUnsignedLong(ntohl(x));
Guido van Rossum006bf911996-06-12 04:04:55 +00003492}
3493
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003494PyDoc_STRVAR(ntohl_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00003495"ntohl(integer) -> integer\n\
3496\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003497Convert a 32-bit integer from network to host byte order.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00003498
3499
Guido van Rossum006bf911996-06-12 04:04:55 +00003500static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00003501socket_htons(PyObject *self, PyObject *args)
Guido van Rossum006bf911996-06-12 04:04:55 +00003502{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003503 int x1, x2;
Guido van Rossum006bf911996-06-12 04:04:55 +00003504
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003505 if (!PyArg_ParseTuple(args, "i:htons", &x1)) {
3506 return NULL;
3507 }
3508 if (x1 < 0) {
3509 PyErr_SetString(PyExc_OverflowError,
3510 "can't convert negative number to unsigned long");
3511 return NULL;
3512 }
3513 x2 = (unsigned int)htons((unsigned short)x1);
3514 return PyLong_FromLong(x2);
Guido van Rossum006bf911996-06-12 04:04:55 +00003515}
3516
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003517PyDoc_STRVAR(htons_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00003518"htons(integer) -> integer\n\
3519\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003520Convert a 16-bit integer from host to network byte order.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00003521
3522
Guido van Rossum006bf911996-06-12 04:04:55 +00003523static PyObject *
Jeremy Hyltonc075e192002-07-25 16:01:12 +00003524socket_htonl(PyObject *self, PyObject *arg)
Guido van Rossum006bf911996-06-12 04:04:55 +00003525{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003526 unsigned long x;
Guido van Rossum006bf911996-06-12 04:04:55 +00003527
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003528 if (PyLong_Check(arg)) {
3529 x = PyLong_AsUnsignedLong(arg);
3530 if (x == (unsigned long) -1 && PyErr_Occurred())
3531 return NULL;
Jeremy Hyltonc075e192002-07-25 16:01:12 +00003532#if SIZEOF_LONG > 4
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003533 {
3534 unsigned long y;
3535 /* only want the trailing 32 bits */
3536 y = x & 0xFFFFFFFFUL;
3537 if (y ^ x)
3538 return PyErr_Format(PyExc_OverflowError,
3539 "long int larger than 32 bits");
3540 x = y;
3541 }
Jeremy Hyltonc075e192002-07-25 16:01:12 +00003542#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003543 }
3544 else
3545 return PyErr_Format(PyExc_TypeError,
3546 "expected int/long, %s found",
3547 Py_TYPE(arg)->tp_name);
3548 return PyLong_FromUnsignedLong(htonl((unsigned long)x));
Guido van Rossum006bf911996-06-12 04:04:55 +00003549}
3550
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003551PyDoc_STRVAR(htonl_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00003552"htonl(integer) -> integer\n\
3553\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003554Convert a 32-bit integer from host to network byte order.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00003555
Guido van Rossum3eede5a2002-06-07 02:08:35 +00003556/* socket.inet_aton() and socket.inet_ntoa() functions. */
Guido van Rossum5c9eb211999-08-20 18:21:51 +00003557
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003558PyDoc_STRVAR(inet_aton_doc,
Guido van Rossum7d0a8262007-05-21 23:13:11 +00003559"inet_aton(string) -> bytes giving packed 32-bit IP representation\n\
Guido van Rossum5c9eb211999-08-20 18:21:51 +00003560\n\
Guido van Rossumc6a164b1999-08-20 19:11:27 +00003561Convert an IP address in string format (123.45.67.89) to the 32-bit packed\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003562binary format used in low-level network functions.");
Guido van Rossum5c9eb211999-08-20 18:21:51 +00003563
3564static PyObject*
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00003565socket_inet_aton(PyObject *self, PyObject *args)
Guido van Rossum5c9eb211999-08-20 18:21:51 +00003566{
Guido van Rossuma2e48551999-09-09 15:42:59 +00003567#ifndef INADDR_NONE
3568#define INADDR_NONE (-1)
3569#endif
Neal Norwitz88f115b2003-02-13 02:15:42 +00003570#ifdef HAVE_INET_ATON
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003571 struct in_addr buf;
Thomas Wouters477c8d52006-05-27 19:21:47 +00003572#endif
3573
3574#if !defined(HAVE_INET_ATON) || defined(USE_INET_ATON_WEAKLINK)
Benjamin Petersonf91df042009-02-13 02:50:59 +00003575#if (SIZEOF_INT != 4)
3576#error "Not sure if in_addr_t exists and int is not 32-bits."
3577#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003578 /* Have to use inet_addr() instead */
3579 unsigned int packed_addr;
Tim Peters1df9fdd2003-02-13 03:13:40 +00003580#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003581 char *ip_addr;
Guido van Rossumc6a164b1999-08-20 19:11:27 +00003582
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003583 if (!PyArg_ParseTuple(args, "s:inet_aton", &ip_addr))
3584 return NULL;
Guido van Rossumad05cdf2003-02-12 23:08:22 +00003585
Tim Peters1df9fdd2003-02-13 03:13:40 +00003586
3587#ifdef HAVE_INET_ATON
Thomas Wouters477c8d52006-05-27 19:21:47 +00003588
3589#ifdef USE_INET_ATON_WEAKLINK
3590 if (inet_aton != NULL) {
3591#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003592 if (inet_aton(ip_addr, &buf))
3593 return PyBytes_FromStringAndSize((char *)(&buf),
3594 sizeof(buf));
Guido van Rossumad05cdf2003-02-12 23:08:22 +00003595
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003596 PyErr_SetString(socket_error,
3597 "illegal IP address string passed to inet_aton");
3598 return NULL;
Guido van Rossumad05cdf2003-02-12 23:08:22 +00003599
Thomas Wouters477c8d52006-05-27 19:21:47 +00003600#ifdef USE_INET_ATON_WEAKLINK
3601 } else {
3602#endif
3603
3604#endif
3605
3606#if !defined(HAVE_INET_ATON) || defined(USE_INET_ATON_WEAKLINK)
3607
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003608 /* special-case this address as inet_addr might return INADDR_NONE
3609 * for this */
3610 if (strcmp(ip_addr, "255.255.255.255") == 0) {
3611 packed_addr = 0xFFFFFFFF;
3612 } else {
Thomas Wouters477c8d52006-05-27 19:21:47 +00003613
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003614 packed_addr = inet_addr(ip_addr);
Guido van Rossumc6a164b1999-08-20 19:11:27 +00003615
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003616 if (packed_addr == INADDR_NONE) { /* invalid address */
3617 PyErr_SetString(socket_error,
3618 "illegal IP address string passed to inet_aton");
3619 return NULL;
3620 }
3621 }
3622 return PyBytes_FromStringAndSize((char *) &packed_addr,
3623 sizeof(packed_addr));
Thomas Wouters477c8d52006-05-27 19:21:47 +00003624
3625#ifdef USE_INET_ATON_WEAKLINK
3626 }
3627#endif
3628
Guido van Rossumad05cdf2003-02-12 23:08:22 +00003629#endif
Guido van Rossum5c9eb211999-08-20 18:21:51 +00003630}
3631
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003632PyDoc_STRVAR(inet_ntoa_doc,
Fred Drakee0661342000-03-07 14:05:16 +00003633"inet_ntoa(packed_ip) -> ip_address_string\n\
Guido van Rossum5c9eb211999-08-20 18:21:51 +00003634\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003635Convert an IP address from 32-bit packed binary format to string format");
Guido van Rossum5c9eb211999-08-20 18:21:51 +00003636
3637static PyObject*
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00003638socket_inet_ntoa(PyObject *self, PyObject *args)
Guido van Rossum5c9eb211999-08-20 18:21:51 +00003639{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003640 char *packed_str;
3641 int addr_len;
3642 struct in_addr packed_addr;
Guido van Rossum5c9eb211999-08-20 18:21:51 +00003643
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003644 if (!PyArg_ParseTuple(args, "y#:inet_ntoa", &packed_str, &addr_len)) {
3645 return NULL;
3646 }
Guido van Rossum48a680c2001-03-02 06:34:14 +00003647
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003648 if (addr_len != sizeof(packed_addr)) {
3649 PyErr_SetString(socket_error,
3650 "packed IP wrong length for inet_ntoa");
3651 return NULL;
3652 }
Guido van Rossum5c9eb211999-08-20 18:21:51 +00003653
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003654 memcpy(&packed_addr, packed_str, addr_len);
Guido van Rossum5c9eb211999-08-20 18:21:51 +00003655
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003656 return PyUnicode_FromString(inet_ntoa(packed_addr));
Guido van Rossum5c9eb211999-08-20 18:21:51 +00003657}
Guido van Rossum82a5c661998-07-07 20:45:43 +00003658
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00003659#ifdef HAVE_INET_PTON
3660
3661PyDoc_STRVAR(inet_pton_doc,
3662"inet_pton(af, ip) -> packed IP address string\n\
3663\n\
3664Convert an IP address from string format to a packed string suitable\n\
3665for use with low-level network functions.");
3666
3667static PyObject *
3668socket_inet_pton(PyObject *self, PyObject *args)
3669{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003670 int af;
3671 char* ip;
3672 int retval;
Martin v. Löwisa94568a2003-05-10 07:36:56 +00003673#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003674 char packed[MAX(sizeof(struct in_addr), sizeof(struct in6_addr))];
Martin v. Löwisa94568a2003-05-10 07:36:56 +00003675#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003676 char packed[sizeof(struct in_addr)];
Martin v. Löwisa94568a2003-05-10 07:36:56 +00003677#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003678 if (!PyArg_ParseTuple(args, "is:inet_pton", &af, &ip)) {
3679 return NULL;
3680 }
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00003681
Martin v. Löwis04697e82004-06-02 12:35:29 +00003682#if !defined(ENABLE_IPV6) && defined(AF_INET6)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003683 if(af == AF_INET6) {
3684 PyErr_SetString(socket_error,
3685 "can't use AF_INET6, IPv6 is disabled");
3686 return NULL;
3687 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00003688#endif
Martin v. Löwis10649092003-08-05 06:25:06 +00003689
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003690 retval = inet_pton(af, ip, packed);
3691 if (retval < 0) {
3692 PyErr_SetFromErrno(socket_error);
3693 return NULL;
3694 } else if (retval == 0) {
3695 PyErr_SetString(socket_error,
3696 "illegal IP address string passed to inet_pton");
3697 return NULL;
3698 } else if (af == AF_INET) {
3699 return PyBytes_FromStringAndSize(packed,
3700 sizeof(struct in_addr));
Martin v. Löwisa94568a2003-05-10 07:36:56 +00003701#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003702 } else if (af == AF_INET6) {
3703 return PyBytes_FromStringAndSize(packed,
3704 sizeof(struct in6_addr));
Martin v. Löwisa94568a2003-05-10 07:36:56 +00003705#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003706 } else {
3707 PyErr_SetString(socket_error, "unknown address family");
3708 return NULL;
3709 }
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00003710}
Thomas Wouters477c8d52006-05-27 19:21:47 +00003711
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00003712PyDoc_STRVAR(inet_ntop_doc,
3713"inet_ntop(af, packed_ip) -> string formatted IP address\n\
3714\n\
3715Convert a packed IP address of the given family to string format.");
3716
3717static PyObject *
3718socket_inet_ntop(PyObject *self, PyObject *args)
3719{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003720 int af;
3721 char* packed;
3722 int len;
3723 const char* retval;
Martin v. Löwisa94568a2003-05-10 07:36:56 +00003724#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003725 char ip[MAX(INET_ADDRSTRLEN, INET6_ADDRSTRLEN) + 1];
Martin v. Löwisa94568a2003-05-10 07:36:56 +00003726#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003727 char ip[INET_ADDRSTRLEN + 1];
Martin v. Löwisa94568a2003-05-10 07:36:56 +00003728#endif
Thomas Wouters477c8d52006-05-27 19:21:47 +00003729
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003730 /* Guarantee NUL-termination for PyUnicode_FromString() below */
3731 memset((void *) &ip[0], '\0', sizeof(ip));
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00003732
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003733 if (!PyArg_ParseTuple(args, "iy#:inet_ntop", &af, &packed, &len)) {
3734 return NULL;
3735 }
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00003736
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003737 if (af == AF_INET) {
3738 if (len != sizeof(struct in_addr)) {
3739 PyErr_SetString(PyExc_ValueError,
3740 "invalid length of packed IP address string");
3741 return NULL;
3742 }
Martin v. Löwisa94568a2003-05-10 07:36:56 +00003743#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003744 } else if (af == AF_INET6) {
3745 if (len != sizeof(struct in6_addr)) {
3746 PyErr_SetString(PyExc_ValueError,
3747 "invalid length of packed IP address string");
3748 return NULL;
3749 }
Martin v. Löwisa94568a2003-05-10 07:36:56 +00003750#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003751 } else {
3752 PyErr_Format(PyExc_ValueError,
3753 "unknown address family %d", af);
3754 return NULL;
3755 }
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00003756
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003757 retval = inet_ntop(af, packed, ip, sizeof(ip));
3758 if (!retval) {
3759 PyErr_SetFromErrno(socket_error);
3760 return NULL;
3761 } else {
3762 return PyUnicode_FromString(retval);
3763 }
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00003764
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003765 /* NOTREACHED */
3766 PyErr_SetString(PyExc_RuntimeError, "invalid handling of inet_ntop");
3767 return NULL;
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00003768}
3769
3770#endif /* HAVE_INET_PTON */
3771
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003772/* Python interface to getaddrinfo(host, port). */
3773
3774/*ARGSUSED*/
3775static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00003776socket_getaddrinfo(PyObject *self, PyObject *args)
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003777{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003778 struct addrinfo hints, *res;
3779 struct addrinfo *res0 = NULL;
3780 PyObject *hobj = NULL;
3781 PyObject *pobj = (PyObject *)NULL;
3782 char pbuf[30];
3783 char *hptr, *pptr;
3784 int family, socktype, protocol, flags;
3785 int error;
3786 PyObject *all = (PyObject *)NULL;
3787 PyObject *idna = NULL;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003788
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003789 family = socktype = protocol = flags = 0;
3790 family = AF_UNSPEC;
3791 if (!PyArg_ParseTuple(args, "OO|iiii:getaddrinfo",
3792 &hobj, &pobj, &family, &socktype,
3793 &protocol, &flags)) {
3794 return NULL;
3795 }
3796 if (hobj == Py_None) {
3797 hptr = NULL;
3798 } else if (PyUnicode_Check(hobj)) {
3799 idna = PyObject_CallMethod(hobj, "encode", "s", "idna");
3800 if (!idna)
3801 return NULL;
3802 assert(PyBytes_Check(idna));
3803 hptr = PyBytes_AS_STRING(idna);
3804 } else if (PyBytes_Check(hobj)) {
3805 hptr = PyBytes_AsString(hobj);
3806 } else {
3807 PyErr_SetString(PyExc_TypeError,
3808 "getaddrinfo() argument 1 must be string or None");
3809 return NULL;
3810 }
3811 if (PyLong_CheckExact(pobj)) {
3812 long value = PyLong_AsLong(pobj);
3813 if (value == -1 && PyErr_Occurred())
3814 goto err;
3815 PyOS_snprintf(pbuf, sizeof(pbuf), "%ld", value);
3816 pptr = pbuf;
3817 } else if (PyUnicode_Check(pobj)) {
3818 pptr = _PyUnicode_AsString(pobj);
3819 } else if (PyBytes_Check(pobj)) {
3820 pptr = PyBytes_AsString(pobj);
3821 } else if (pobj == Py_None) {
3822 pptr = (char *)NULL;
3823 } else {
3824 PyErr_SetString(socket_error, "Int or String expected");
3825 goto err;
3826 }
3827 memset(&hints, 0, sizeof(hints));
3828 hints.ai_family = family;
3829 hints.ai_socktype = socktype;
3830 hints.ai_protocol = protocol;
3831 hints.ai_flags = flags;
3832 Py_BEGIN_ALLOW_THREADS
3833 ACQUIRE_GETADDRINFO_LOCK
3834 error = getaddrinfo(hptr, pptr, &hints, &res0);
3835 Py_END_ALLOW_THREADS
3836 RELEASE_GETADDRINFO_LOCK /* see comment in setipaddr() */
3837 if (error) {
3838 set_gaierror(error);
3839 goto err;
3840 }
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003841
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003842 if ((all = PyList_New(0)) == NULL)
3843 goto err;
3844 for (res = res0; res; res = res->ai_next) {
3845 PyObject *single;
3846 PyObject *addr =
3847 makesockaddr(-1, res->ai_addr, res->ai_addrlen, protocol);
3848 if (addr == NULL)
3849 goto err;
3850 single = Py_BuildValue("iiisO", res->ai_family,
3851 res->ai_socktype, res->ai_protocol,
3852 res->ai_canonname ? res->ai_canonname : "",
3853 addr);
3854 Py_DECREF(addr);
3855 if (single == NULL)
3856 goto err;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003857
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003858 if (PyList_Append(all, single))
3859 goto err;
3860 Py_XDECREF(single);
3861 }
3862 Py_XDECREF(idna);
3863 if (res0)
3864 freeaddrinfo(res0);
3865 return all;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003866 err:
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003867 Py_XDECREF(all);
3868 Py_XDECREF(idna);
3869 if (res0)
3870 freeaddrinfo(res0);
3871 return (PyObject *)NULL;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003872}
3873
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003874PyDoc_STRVAR(getaddrinfo_doc,
Guido van Rossum22a97152002-08-08 20:37:08 +00003875"getaddrinfo(host, port [, family, socktype, proto, flags])\n\
3876 -> list of (family, socktype, proto, canonname, sockaddr)\n\
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003877\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003878Resolve host and port into addrinfo struct.");
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003879
3880/* Python interface to getnameinfo(sa, flags). */
3881
3882/*ARGSUSED*/
3883static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00003884socket_getnameinfo(PyObject *self, PyObject *args)
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003885{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003886 PyObject *sa = (PyObject *)NULL;
3887 int flags;
3888 char *hostp;
3889 int port, flowinfo, scope_id;
3890 char hbuf[NI_MAXHOST], pbuf[NI_MAXSERV];
3891 struct addrinfo hints, *res = NULL;
3892 int error;
3893 PyObject *ret = (PyObject *)NULL;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003894
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003895 flags = flowinfo = scope_id = 0;
3896 if (!PyArg_ParseTuple(args, "Oi:getnameinfo", &sa, &flags))
3897 return NULL;
3898 if (!PyTuple_Check(sa)) {
3899 PyErr_SetString(PyExc_TypeError,
3900 "getnameinfo() argument 1 must be a tuple");
3901 return NULL;
3902 }
3903 if (!PyArg_ParseTuple(sa, "si|ii",
3904 &hostp, &port, &flowinfo, &scope_id))
3905 return NULL;
3906 PyOS_snprintf(pbuf, sizeof(pbuf), "%d", port);
3907 memset(&hints, 0, sizeof(hints));
3908 hints.ai_family = AF_UNSPEC;
3909 hints.ai_socktype = SOCK_DGRAM; /* make numeric port happy */
3910 Py_BEGIN_ALLOW_THREADS
3911 ACQUIRE_GETADDRINFO_LOCK
3912 error = getaddrinfo(hostp, pbuf, &hints, &res);
3913 Py_END_ALLOW_THREADS
3914 RELEASE_GETADDRINFO_LOCK /* see comment in setipaddr() */
3915 if (error) {
3916 set_gaierror(error);
3917 goto fail;
3918 }
3919 if (res->ai_next) {
3920 PyErr_SetString(socket_error,
3921 "sockaddr resolved to multiple addresses");
3922 goto fail;
3923 }
3924 switch (res->ai_family) {
3925 case AF_INET:
3926 {
3927 if (PyTuple_GET_SIZE(sa) != 2) {
3928 PyErr_SetString(socket_error,
3929 "IPv4 sockaddr must be 2 tuple");
3930 goto fail;
3931 }
3932 break;
3933 }
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00003934#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003935 case AF_INET6:
3936 {
3937 struct sockaddr_in6 *sin6;
3938 sin6 = (struct sockaddr_in6 *)res->ai_addr;
3939 sin6->sin6_flowinfo = flowinfo;
3940 sin6->sin6_scope_id = scope_id;
3941 break;
3942 }
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003943#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003944 }
Antoine Pitrouf72006f2010-08-17 19:39:39 +00003945 error = getnameinfo(res->ai_addr, (socklen_t) res->ai_addrlen,
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003946 hbuf, sizeof(hbuf), pbuf, sizeof(pbuf), flags);
3947 if (error) {
3948 set_gaierror(error);
3949 goto fail;
3950 }
3951 ret = Py_BuildValue("ss", hbuf, pbuf);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003952
3953fail:
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003954 if (res)
3955 freeaddrinfo(res);
3956 return ret;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003957}
3958
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003959PyDoc_STRVAR(getnameinfo_doc,
Guido van Rossum22a97152002-08-08 20:37:08 +00003960"getnameinfo(sockaddr, flags) --> (host, port)\n\
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003961\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003962Get host and port for a sockaddr.");
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00003963
Guido van Rossum9d0c8ce2002-07-18 17:08:35 +00003964
3965/* Python API to getting and setting the default timeout value. */
3966
3967static PyObject *
3968socket_getdefaulttimeout(PyObject *self)
3969{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003970 if (defaulttimeout < 0.0) {
3971 Py_INCREF(Py_None);
3972 return Py_None;
3973 }
3974 else
3975 return PyFloat_FromDouble(defaulttimeout);
Guido van Rossum9d0c8ce2002-07-18 17:08:35 +00003976}
3977
3978PyDoc_STRVAR(getdefaulttimeout_doc,
Guido van Rossum22a97152002-08-08 20:37:08 +00003979"getdefaulttimeout() -> timeout\n\
Guido van Rossum9d0c8ce2002-07-18 17:08:35 +00003980\n\
3981Returns the default timeout in floating seconds for new socket objects.\n\
3982A value of None indicates that new socket objects have no timeout.\n\
3983When the socket module is first imported, the default is None.");
3984
3985static PyObject *
3986socket_setdefaulttimeout(PyObject *self, PyObject *arg)
3987{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003988 double timeout;
Guido van Rossum9d0c8ce2002-07-18 17:08:35 +00003989
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003990 if (arg == Py_None)
3991 timeout = -1.0;
3992 else {
3993 timeout = PyFloat_AsDouble(arg);
3994 if (timeout < 0.0) {
3995 if (!PyErr_Occurred())
3996 PyErr_SetString(PyExc_ValueError,
3997 "Timeout value out of range");
3998 return NULL;
3999 }
4000 }
Guido van Rossum9d0c8ce2002-07-18 17:08:35 +00004001
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004002 defaulttimeout = timeout;
Guido van Rossum9d0c8ce2002-07-18 17:08:35 +00004003
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004004 Py_INCREF(Py_None);
4005 return Py_None;
Guido van Rossum9d0c8ce2002-07-18 17:08:35 +00004006}
4007
4008PyDoc_STRVAR(setdefaulttimeout_doc,
Guido van Rossum22a97152002-08-08 20:37:08 +00004009"setdefaulttimeout(timeout)\n\
Guido van Rossum9d0c8ce2002-07-18 17:08:35 +00004010\n\
4011Set the default timeout in floating seconds for new socket objects.\n\
4012A value of None indicates that new socket objects have no timeout.\n\
4013When the socket module is first imported, the default is None.");
4014
4015
Guido van Rossum30a685f1991-06-27 15:51:29 +00004016/* List of functions exported by this module. */
4017
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004018static PyMethodDef socket_methods[] = {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004019 {"gethostbyname", socket_gethostbyname,
4020 METH_VARARGS, gethostbyname_doc},
4021 {"gethostbyname_ex", socket_gethostbyname_ex,
4022 METH_VARARGS, ghbn_ex_doc},
4023 {"gethostbyaddr", socket_gethostbyaddr,
4024 METH_VARARGS, gethostbyaddr_doc},
4025 {"gethostname", socket_gethostname,
4026 METH_NOARGS, gethostname_doc},
4027 {"getservbyname", socket_getservbyname,
4028 METH_VARARGS, getservbyname_doc},
4029 {"getservbyport", socket_getservbyport,
4030 METH_VARARGS, getservbyport_doc},
4031 {"getprotobyname", socket_getprotobyname,
4032 METH_VARARGS, getprotobyname_doc},
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00004033#ifndef NO_DUP
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004034 {"dup", socket_dup,
4035 METH_O, dup_doc},
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00004036#endif
Dave Cole331708b2004-08-09 04:51:41 +00004037#ifdef HAVE_SOCKETPAIR
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004038 {"socketpair", socket_socketpair,
4039 METH_VARARGS, socketpair_doc},
Dave Cole331708b2004-08-09 04:51:41 +00004040#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004041 {"ntohs", socket_ntohs,
4042 METH_VARARGS, ntohs_doc},
4043 {"ntohl", socket_ntohl,
4044 METH_O, ntohl_doc},
4045 {"htons", socket_htons,
4046 METH_VARARGS, htons_doc},
4047 {"htonl", socket_htonl,
4048 METH_O, htonl_doc},
4049 {"inet_aton", socket_inet_aton,
4050 METH_VARARGS, inet_aton_doc},
4051 {"inet_ntoa", socket_inet_ntoa,
4052 METH_VARARGS, inet_ntoa_doc},
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00004053#ifdef HAVE_INET_PTON
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004054 {"inet_pton", socket_inet_pton,
4055 METH_VARARGS, inet_pton_doc},
4056 {"inet_ntop", socket_inet_ntop,
4057 METH_VARARGS, inet_ntop_doc},
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00004058#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004059 {"getaddrinfo", socket_getaddrinfo,
4060 METH_VARARGS, getaddrinfo_doc},
4061 {"getnameinfo", socket_getnameinfo,
4062 METH_VARARGS, getnameinfo_doc},
4063 {"getdefaulttimeout", (PyCFunction)socket_getdefaulttimeout,
4064 METH_NOARGS, getdefaulttimeout_doc},
4065 {"setdefaulttimeout", socket_setdefaulttimeout,
4066 METH_O, setdefaulttimeout_doc},
4067 {NULL, NULL} /* Sentinel */
Guido van Rossum6574b3e1991-06-25 21:36:08 +00004068};
4069
Guido van Rossum30a685f1991-06-27 15:51:29 +00004070
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004071#ifdef MS_WINDOWS
4072#define OS_INIT_DEFINED
4073
4074/* Additional initialization and cleanup for Windows */
Guido van Rossumbe32c891996-06-20 16:25:29 +00004075
4076static void
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004077os_cleanup(void)
Guido van Rossumbe32c891996-06-20 16:25:29 +00004078{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004079 WSACleanup();
Guido van Rossumbe32c891996-06-20 16:25:29 +00004080}
4081
4082static int
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004083os_init(void)
Guido van Rossumbe32c891996-06-20 16:25:29 +00004084{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004085 WSADATA WSAData;
4086 int ret;
4087 ret = WSAStartup(0x0101, &WSAData);
4088 switch (ret) {
4089 case 0: /* No error */
4090 Py_AtExit(os_cleanup);
4091 return 1; /* Success */
4092 case WSASYSNOTREADY:
4093 PyErr_SetString(PyExc_ImportError,
4094 "WSAStartup failed: network not ready");
4095 break;
4096 case WSAVERNOTSUPPORTED:
4097 case WSAEINVAL:
4098 PyErr_SetString(
4099 PyExc_ImportError,
4100 "WSAStartup failed: requested version not supported");
4101 break;
4102 default:
4103 PyErr_Format(PyExc_ImportError, "WSAStartup failed: error code %d", ret);
4104 break;
4105 }
4106 return 0; /* Failure */
Guido van Rossumbe32c891996-06-20 16:25:29 +00004107}
4108
Guido van Rossum8d665e61996-06-26 18:22:49 +00004109#endif /* MS_WINDOWS */
Guido van Rossumbe32c891996-06-20 16:25:29 +00004110
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004111
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004112#ifdef PYOS_OS2
4113#define OS_INIT_DEFINED
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004114
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004115/* Additional initialization for OS/2 */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004116
4117static int
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004118os_init(void)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004119{
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004120#ifndef PYCC_GCC
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004121 int rc = sock_init();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004122
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004123 if (rc == 0) {
4124 return 1; /* Success */
4125 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004126
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004127 PyErr_Format(PyExc_ImportError, "OS/2 TCP/IP Error# %d", sock_errno());
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004128
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004129 return 0; /* Failure */
Andrew MacIntyreba43e872002-03-03 03:03:52 +00004130#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004131 /* No need to initialise sockets with GCC/EMX */
4132 return 1; /* Success */
Andrew MacIntyreba43e872002-03-03 03:03:52 +00004133#endif
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004134}
4135
4136#endif /* PYOS_OS2 */
4137
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004138
4139#ifndef OS_INIT_DEFINED
4140static int
4141os_init(void)
4142{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004143 return 1; /* Success */
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004144}
4145#endif
4146
4147
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00004148/* C API table - always add new things to the end for binary
4149 compatibility. */
4150static
4151PySocketModule_APIObject PySocketModuleAPI =
4152{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004153 &sock_type,
4154 NULL
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00004155};
4156
Guido van Rossum3eede5a2002-06-07 02:08:35 +00004157
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004158/* Initialize the _socket module.
Guido van Rossum3eede5a2002-06-07 02:08:35 +00004159
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004160 This module is actually called "_socket", and there's a wrapper
Guido van Rossum7d0a8262007-05-21 23:13:11 +00004161 "socket.py" which implements some additional functionality.
4162 The import of "_socket" may fail with an ImportError exception if
4163 os-specific initialization fails. On Windows, this does WINSOCK
4164 initialization. When WINSOCK is initialized succesfully, a call to
4165 WSACleanup() is scheduled to be made at exit time.
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004166*/
Guido van Rossum3eede5a2002-06-07 02:08:35 +00004167
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004168PyDoc_STRVAR(socket_doc,
Guido van Rossum22a97152002-08-08 20:37:08 +00004169"Implementation module for socket operations.\n\
4170\n\
4171See the socket module for documentation.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00004172
Martin v. Löwis1a214512008-06-11 05:26:20 +00004173static struct PyModuleDef socketmodule = {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004174 PyModuleDef_HEAD_INIT,
4175 PySocket_MODULE_NAME,
4176 socket_doc,
4177 -1,
4178 socket_methods,
4179 NULL,
4180 NULL,
4181 NULL,
4182 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00004183};
4184
Mark Hammondfe51c6d2002-08-02 02:27:13 +00004185PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00004186PyInit__socket(void)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00004187{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004188 PyObject *m, *has_ipv6;
Fred Drake4baedc12002-04-01 14:53:37 +00004189
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004190 if (!os_init())
4191 return NULL;
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004192
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004193 Py_TYPE(&sock_type) = &PyType_Type;
4194 m = PyModule_Create(&socketmodule);
4195 if (m == NULL)
4196 return NULL;
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00004197
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004198 socket_error = PyErr_NewException("socket.error",
4199 PyExc_IOError, NULL);
4200 if (socket_error == NULL)
4201 return NULL;
4202 PySocketModuleAPI.error = socket_error;
4203 Py_INCREF(socket_error);
4204 PyModule_AddObject(m, "error", socket_error);
4205 socket_herror = PyErr_NewException("socket.herror",
4206 socket_error, NULL);
4207 if (socket_herror == NULL)
4208 return NULL;
4209 Py_INCREF(socket_herror);
4210 PyModule_AddObject(m, "herror", socket_herror);
4211 socket_gaierror = PyErr_NewException("socket.gaierror", socket_error,
4212 NULL);
4213 if (socket_gaierror == NULL)
4214 return NULL;
4215 Py_INCREF(socket_gaierror);
4216 PyModule_AddObject(m, "gaierror", socket_gaierror);
4217 socket_timeout = PyErr_NewException("socket.timeout",
4218 socket_error, NULL);
4219 if (socket_timeout == NULL)
4220 return NULL;
4221 Py_INCREF(socket_timeout);
4222 PyModule_AddObject(m, "timeout", socket_timeout);
4223 Py_INCREF((PyObject *)&sock_type);
4224 if (PyModule_AddObject(m, "SocketType",
4225 (PyObject *)&sock_type) != 0)
4226 return NULL;
4227 Py_INCREF((PyObject *)&sock_type);
4228 if (PyModule_AddObject(m, "socket",
4229 (PyObject *)&sock_type) != 0)
4230 return NULL;
Guido van Rossum09be4091999-08-09 14:40:40 +00004231
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00004232#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004233 has_ipv6 = Py_True;
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00004234#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004235 has_ipv6 = Py_False;
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00004236#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004237 Py_INCREF(has_ipv6);
4238 PyModule_AddObject(m, "has_ipv6", has_ipv6);
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00004239
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004240 /* Export C API */
4241 if (PyModule_AddObject(m, PySocket_CAPI_NAME,
4242 PyCapsule_New(&PySocketModuleAPI, PySocket_CAPSULE_NAME, NULL)
4243 ) != 0)
4244 return NULL;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00004245
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004246 /* Address families (we only support AF_INET and AF_UNIX) */
Guido van Rossum09be4091999-08-09 14:40:40 +00004247#ifdef AF_UNSPEC
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004248 PyModule_AddIntConstant(m, "AF_UNSPEC", AF_UNSPEC);
Guido van Rossum09be4091999-08-09 14:40:40 +00004249#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004250 PyModule_AddIntConstant(m, "AF_INET", AF_INET);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004251#ifdef AF_INET6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004252 PyModule_AddIntConstant(m, "AF_INET6", AF_INET6);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004253#endif /* AF_INET6 */
Andrew MacIntyred12dfbb2004-04-04 07:13:49 +00004254#if defined(AF_UNIX)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004255 PyModule_AddIntConstant(m, "AF_UNIX", AF_UNIX);
Guido van Rossumb6775db1994-08-01 11:34:53 +00004256#endif /* AF_UNIX */
Guido van Rossum09be4091999-08-09 14:40:40 +00004257#ifdef AF_AX25
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004258 /* Amateur Radio AX.25 */
4259 PyModule_AddIntConstant(m, "AF_AX25", AF_AX25);
Guido van Rossum09be4091999-08-09 14:40:40 +00004260#endif
4261#ifdef AF_IPX
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004262 PyModule_AddIntConstant(m, "AF_IPX", AF_IPX); /* Novell IPX */
Guido van Rossum09be4091999-08-09 14:40:40 +00004263#endif
4264#ifdef AF_APPLETALK
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004265 /* Appletalk DDP */
4266 PyModule_AddIntConstant(m, "AF_APPLETALK", AF_APPLETALK);
Guido van Rossum09be4091999-08-09 14:40:40 +00004267#endif
4268#ifdef AF_NETROM
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004269 /* Amateur radio NetROM */
4270 PyModule_AddIntConstant(m, "AF_NETROM", AF_NETROM);
Guido van Rossum09be4091999-08-09 14:40:40 +00004271#endif
4272#ifdef AF_BRIDGE
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004273 /* Multiprotocol bridge */
4274 PyModule_AddIntConstant(m, "AF_BRIDGE", AF_BRIDGE);
Guido van Rossum09be4091999-08-09 14:40:40 +00004275#endif
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004276#ifdef AF_ATMPVC
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004277 /* ATM PVCs */
4278 PyModule_AddIntConstant(m, "AF_ATMPVC", AF_ATMPVC);
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004279#endif
Guido van Rossum09be4091999-08-09 14:40:40 +00004280#ifdef AF_AAL5
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004281 /* Reserved for Werner's ATM */
4282 PyModule_AddIntConstant(m, "AF_AAL5", AF_AAL5);
Guido van Rossum09be4091999-08-09 14:40:40 +00004283#endif
4284#ifdef AF_X25
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004285 /* Reserved for X.25 project */
4286 PyModule_AddIntConstant(m, "AF_X25", AF_X25);
Guido van Rossum09be4091999-08-09 14:40:40 +00004287#endif
4288#ifdef AF_INET6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004289 PyModule_AddIntConstant(m, "AF_INET6", AF_INET6); /* IP version 6 */
Guido van Rossum09be4091999-08-09 14:40:40 +00004290#endif
4291#ifdef AF_ROSE
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004292 /* Amateur Radio X.25 PLP */
4293 PyModule_AddIntConstant(m, "AF_ROSE", AF_ROSE);
Guido van Rossum09be4091999-08-09 14:40:40 +00004294#endif
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004295#ifdef AF_DECnet
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004296 /* Reserved for DECnet project */
4297 PyModule_AddIntConstant(m, "AF_DECnet", AF_DECnet);
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004298#endif
4299#ifdef AF_NETBEUI
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004300 /* Reserved for 802.2LLC project */
4301 PyModule_AddIntConstant(m, "AF_NETBEUI", AF_NETBEUI);
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004302#endif
4303#ifdef AF_SECURITY
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004304 /* Security callback pseudo AF */
4305 PyModule_AddIntConstant(m, "AF_SECURITY", AF_SECURITY);
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004306#endif
4307#ifdef AF_KEY
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004308 /* PF_KEY key management API */
4309 PyModule_AddIntConstant(m, "AF_KEY", AF_KEY);
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004310#endif
4311#ifdef AF_NETLINK
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004312 /* */
4313 PyModule_AddIntConstant(m, "AF_NETLINK", AF_NETLINK);
4314 PyModule_AddIntConstant(m, "NETLINK_ROUTE", NETLINK_ROUTE);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004315#ifdef NETLINK_SKIP
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004316 PyModule_AddIntConstant(m, "NETLINK_SKIP", NETLINK_SKIP);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004317#endif
4318#ifdef NETLINK_W1
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004319 PyModule_AddIntConstant(m, "NETLINK_W1", NETLINK_W1);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004320#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004321 PyModule_AddIntConstant(m, "NETLINK_USERSOCK", NETLINK_USERSOCK);
4322 PyModule_AddIntConstant(m, "NETLINK_FIREWALL", NETLINK_FIREWALL);
Guido van Rossum668a94a2006-02-21 01:07:27 +00004323#ifdef NETLINK_TCPDIAG
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004324 PyModule_AddIntConstant(m, "NETLINK_TCPDIAG", NETLINK_TCPDIAG);
Guido van Rossum668a94a2006-02-21 01:07:27 +00004325#endif
4326#ifdef NETLINK_NFLOG
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004327 PyModule_AddIntConstant(m, "NETLINK_NFLOG", NETLINK_NFLOG);
Guido van Rossum668a94a2006-02-21 01:07:27 +00004328#endif
Neal Norwitz65851662006-01-16 04:31:40 +00004329#ifdef NETLINK_XFRM
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004330 PyModule_AddIntConstant(m, "NETLINK_XFRM", NETLINK_XFRM);
Neal Norwitz65851662006-01-16 04:31:40 +00004331#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004332#ifdef NETLINK_ARPD
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004333 PyModule_AddIntConstant(m, "NETLINK_ARPD", NETLINK_ARPD);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004334#endif
4335#ifdef NETLINK_ROUTE6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004336 PyModule_AddIntConstant(m, "NETLINK_ROUTE6", NETLINK_ROUTE6);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004337#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004338 PyModule_AddIntConstant(m, "NETLINK_IP6_FW", NETLINK_IP6_FW);
Thomas Wouterscf297e42007-02-23 15:07:44 +00004339#ifdef NETLINK_DNRTMSG
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004340 PyModule_AddIntConstant(m, "NETLINK_DNRTMSG", NETLINK_DNRTMSG);
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00004341#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004342#ifdef NETLINK_TAPBASE
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004343 PyModule_AddIntConstant(m, "NETLINK_TAPBASE", NETLINK_TAPBASE);
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004344#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004345#endif /* AF_NETLINK */
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004346#ifdef AF_ROUTE
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004347 /* Alias to emulate 4.4BSD */
4348 PyModule_AddIntConstant(m, "AF_ROUTE", AF_ROUTE);
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004349#endif
4350#ifdef AF_ASH
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004351 /* Ash */
4352 PyModule_AddIntConstant(m, "AF_ASH", AF_ASH);
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004353#endif
4354#ifdef AF_ECONET
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004355 /* Acorn Econet */
4356 PyModule_AddIntConstant(m, "AF_ECONET", AF_ECONET);
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004357#endif
4358#ifdef AF_ATMSVC
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004359 /* ATM SVCs */
4360 PyModule_AddIntConstant(m, "AF_ATMSVC", AF_ATMSVC);
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004361#endif
4362#ifdef AF_SNA
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004363 /* Linux SNA Project (nutters!) */
4364 PyModule_AddIntConstant(m, "AF_SNA", AF_SNA);
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004365#endif
4366#ifdef AF_IRDA
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004367 /* IRDA sockets */
4368 PyModule_AddIntConstant(m, "AF_IRDA", AF_IRDA);
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004369#endif
4370#ifdef AF_PPPOX
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004371 /* PPPoX sockets */
4372 PyModule_AddIntConstant(m, "AF_PPPOX", AF_PPPOX);
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004373#endif
4374#ifdef AF_WANPIPE
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004375 /* Wanpipe API Sockets */
4376 PyModule_AddIntConstant(m, "AF_WANPIPE", AF_WANPIPE);
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004377#endif
4378#ifdef AF_LLC
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004379 /* Linux LLC */
4380 PyModule_AddIntConstant(m, "AF_LLC", AF_LLC);
Martin v. Löwis81aec4b2004-07-19 17:01:20 +00004381#endif
Martin v. Löwis12af0482004-01-31 12:34:17 +00004382
Hye-Shik Chang81268602004-02-02 06:05:24 +00004383#ifdef USE_BLUETOOTH
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004384 PyModule_AddIntConstant(m, "AF_BLUETOOTH", AF_BLUETOOTH);
4385 PyModule_AddIntConstant(m, "BTPROTO_L2CAP", BTPROTO_L2CAP);
4386 PyModule_AddIntConstant(m, "BTPROTO_HCI", BTPROTO_HCI);
4387 PyModule_AddIntConstant(m, "SOL_HCI", SOL_HCI);
4388 PyModule_AddIntConstant(m, "HCI_FILTER", HCI_FILTER);
Hye-Shik Chang81268602004-02-02 06:05:24 +00004389#if !defined(__FreeBSD__)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004390 PyModule_AddIntConstant(m, "HCI_TIME_STAMP", HCI_TIME_STAMP);
4391 PyModule_AddIntConstant(m, "HCI_DATA_DIR", HCI_DATA_DIR);
4392 PyModule_AddIntConstant(m, "BTPROTO_SCO", BTPROTO_SCO);
Hye-Shik Chang81268602004-02-02 06:05:24 +00004393#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004394 PyModule_AddIntConstant(m, "BTPROTO_RFCOMM", BTPROTO_RFCOMM);
4395 PyModule_AddStringConstant(m, "BDADDR_ANY", "00:00:00:00:00:00");
4396 PyModule_AddStringConstant(m, "BDADDR_LOCAL", "00:00:00:FF:FF:FF");
Martin v. Löwis12af0482004-01-31 12:34:17 +00004397#endif
4398
Martin v. Löwis1ba3fd52001-08-10 20:29:40 +00004399#ifdef HAVE_NETPACKET_PACKET_H
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004400 PyModule_AddIntConstant(m, "AF_PACKET", AF_PACKET);
4401 PyModule_AddIntConstant(m, "PF_PACKET", PF_PACKET);
4402 PyModule_AddIntConstant(m, "PACKET_HOST", PACKET_HOST);
4403 PyModule_AddIntConstant(m, "PACKET_BROADCAST", PACKET_BROADCAST);
4404 PyModule_AddIntConstant(m, "PACKET_MULTICAST", PACKET_MULTICAST);
4405 PyModule_AddIntConstant(m, "PACKET_OTHERHOST", PACKET_OTHERHOST);
4406 PyModule_AddIntConstant(m, "PACKET_OUTGOING", PACKET_OUTGOING);
4407 PyModule_AddIntConstant(m, "PACKET_LOOPBACK", PACKET_LOOPBACK);
4408 PyModule_AddIntConstant(m, "PACKET_FASTROUTE", PACKET_FASTROUTE);
Guido van Rossum48a680c2001-03-02 06:34:14 +00004409#endif
Guido van Rossum09be4091999-08-09 14:40:40 +00004410
Christian Heimes043d6f62008-01-07 17:19:16 +00004411#ifdef HAVE_LINUX_TIPC_H
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004412 PyModule_AddIntConstant(m, "AF_TIPC", AF_TIPC);
Christian Heimes043d6f62008-01-07 17:19:16 +00004413
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004414 /* for addresses */
4415 PyModule_AddIntConstant(m, "TIPC_ADDR_NAMESEQ", TIPC_ADDR_NAMESEQ);
4416 PyModule_AddIntConstant(m, "TIPC_ADDR_NAME", TIPC_ADDR_NAME);
4417 PyModule_AddIntConstant(m, "TIPC_ADDR_ID", TIPC_ADDR_ID);
Christian Heimes043d6f62008-01-07 17:19:16 +00004418
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004419 PyModule_AddIntConstant(m, "TIPC_ZONE_SCOPE", TIPC_ZONE_SCOPE);
4420 PyModule_AddIntConstant(m, "TIPC_CLUSTER_SCOPE", TIPC_CLUSTER_SCOPE);
4421 PyModule_AddIntConstant(m, "TIPC_NODE_SCOPE", TIPC_NODE_SCOPE);
Christian Heimes043d6f62008-01-07 17:19:16 +00004422
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004423 /* for setsockopt() */
4424 PyModule_AddIntConstant(m, "SOL_TIPC", SOL_TIPC);
4425 PyModule_AddIntConstant(m, "TIPC_IMPORTANCE", TIPC_IMPORTANCE);
4426 PyModule_AddIntConstant(m, "TIPC_SRC_DROPPABLE", TIPC_SRC_DROPPABLE);
4427 PyModule_AddIntConstant(m, "TIPC_DEST_DROPPABLE",
4428 TIPC_DEST_DROPPABLE);
4429 PyModule_AddIntConstant(m, "TIPC_CONN_TIMEOUT", TIPC_CONN_TIMEOUT);
Christian Heimes043d6f62008-01-07 17:19:16 +00004430
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004431 PyModule_AddIntConstant(m, "TIPC_LOW_IMPORTANCE",
4432 TIPC_LOW_IMPORTANCE);
4433 PyModule_AddIntConstant(m, "TIPC_MEDIUM_IMPORTANCE",
4434 TIPC_MEDIUM_IMPORTANCE);
4435 PyModule_AddIntConstant(m, "TIPC_HIGH_IMPORTANCE",
4436 TIPC_HIGH_IMPORTANCE);
4437 PyModule_AddIntConstant(m, "TIPC_CRITICAL_IMPORTANCE",
4438 TIPC_CRITICAL_IMPORTANCE);
Christian Heimes043d6f62008-01-07 17:19:16 +00004439
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004440 /* for subscriptions */
4441 PyModule_AddIntConstant(m, "TIPC_SUB_PORTS", TIPC_SUB_PORTS);
4442 PyModule_AddIntConstant(m, "TIPC_SUB_SERVICE", TIPC_SUB_SERVICE);
Christian Heimes25bb7832008-01-11 16:17:00 +00004443#ifdef TIPC_SUB_CANCEL
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004444 /* doesn't seem to be available everywhere */
4445 PyModule_AddIntConstant(m, "TIPC_SUB_CANCEL", TIPC_SUB_CANCEL);
Christian Heimes25bb7832008-01-11 16:17:00 +00004446#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004447 PyModule_AddIntConstant(m, "TIPC_WAIT_FOREVER", TIPC_WAIT_FOREVER);
4448 PyModule_AddIntConstant(m, "TIPC_PUBLISHED", TIPC_PUBLISHED);
4449 PyModule_AddIntConstant(m, "TIPC_WITHDRAWN", TIPC_WITHDRAWN);
4450 PyModule_AddIntConstant(m, "TIPC_SUBSCR_TIMEOUT", TIPC_SUBSCR_TIMEOUT);
4451 PyModule_AddIntConstant(m, "TIPC_CFG_SRV", TIPC_CFG_SRV);
4452 PyModule_AddIntConstant(m, "TIPC_TOP_SRV", TIPC_TOP_SRV);
Christian Heimes043d6f62008-01-07 17:19:16 +00004453#endif
4454
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004455 /* Socket types */
4456 PyModule_AddIntConstant(m, "SOCK_STREAM", SOCK_STREAM);
4457 PyModule_AddIntConstant(m, "SOCK_DGRAM", SOCK_DGRAM);
Guido van Rossumbcc20741998-08-04 22:53:56 +00004458/* We have incomplete socket support. */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004459 PyModule_AddIntConstant(m, "SOCK_RAW", SOCK_RAW);
4460 PyModule_AddIntConstant(m, "SOCK_SEQPACKET", SOCK_SEQPACKET);
Martin v. Löwiscf8f47e2002-12-11 13:10:57 +00004461#if defined(SOCK_RDM)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004462 PyModule_AddIntConstant(m, "SOCK_RDM", SOCK_RDM);
Guido van Rossumbcc20741998-08-04 22:53:56 +00004463#endif
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004464
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004465#ifdef SO_DEBUG
4466 PyModule_AddIntConstant(m, "SO_DEBUG", SO_DEBUG);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004467#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004468#ifdef SO_ACCEPTCONN
4469 PyModule_AddIntConstant(m, "SO_ACCEPTCONN", SO_ACCEPTCONN);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004470#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004471#ifdef SO_REUSEADDR
4472 PyModule_AddIntConstant(m, "SO_REUSEADDR", SO_REUSEADDR);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004473#endif
Andrew M. Kuchling42851ab2004-07-10 14:19:21 +00004474#ifdef SO_EXCLUSIVEADDRUSE
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004475 PyModule_AddIntConstant(m, "SO_EXCLUSIVEADDRUSE", SO_EXCLUSIVEADDRUSE);
Andrew M. Kuchling42851ab2004-07-10 14:19:21 +00004476#endif
4477
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004478#ifdef SO_KEEPALIVE
4479 PyModule_AddIntConstant(m, "SO_KEEPALIVE", SO_KEEPALIVE);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004480#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004481#ifdef SO_DONTROUTE
4482 PyModule_AddIntConstant(m, "SO_DONTROUTE", SO_DONTROUTE);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004483#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004484#ifdef SO_BROADCAST
4485 PyModule_AddIntConstant(m, "SO_BROADCAST", SO_BROADCAST);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004486#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004487#ifdef SO_USELOOPBACK
4488 PyModule_AddIntConstant(m, "SO_USELOOPBACK", SO_USELOOPBACK);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004489#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004490#ifdef SO_LINGER
4491 PyModule_AddIntConstant(m, "SO_LINGER", SO_LINGER);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004492#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004493#ifdef SO_OOBINLINE
4494 PyModule_AddIntConstant(m, "SO_OOBINLINE", SO_OOBINLINE);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004495#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004496#ifdef SO_REUSEPORT
4497 PyModule_AddIntConstant(m, "SO_REUSEPORT", SO_REUSEPORT);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004498#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004499#ifdef SO_SNDBUF
4500 PyModule_AddIntConstant(m, "SO_SNDBUF", SO_SNDBUF);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004501#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004502#ifdef SO_RCVBUF
4503 PyModule_AddIntConstant(m, "SO_RCVBUF", SO_RCVBUF);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004504#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004505#ifdef SO_SNDLOWAT
4506 PyModule_AddIntConstant(m, "SO_SNDLOWAT", SO_SNDLOWAT);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004507#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004508#ifdef SO_RCVLOWAT
4509 PyModule_AddIntConstant(m, "SO_RCVLOWAT", SO_RCVLOWAT);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004510#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004511#ifdef SO_SNDTIMEO
4512 PyModule_AddIntConstant(m, "SO_SNDTIMEO", SO_SNDTIMEO);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004513#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004514#ifdef SO_RCVTIMEO
4515 PyModule_AddIntConstant(m, "SO_RCVTIMEO", SO_RCVTIMEO);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004516#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004517#ifdef SO_ERROR
4518 PyModule_AddIntConstant(m, "SO_ERROR", SO_ERROR);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004519#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004520#ifdef SO_TYPE
4521 PyModule_AddIntConstant(m, "SO_TYPE", SO_TYPE);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004522#endif
4523
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004524 /* Maximum number of connections for "listen" */
4525#ifdef SOMAXCONN
4526 PyModule_AddIntConstant(m, "SOMAXCONN", SOMAXCONN);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004527#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004528 PyModule_AddIntConstant(m, "SOMAXCONN", 5); /* Common value */
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004529#endif
4530
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004531 /* Flags for send, recv */
4532#ifdef MSG_OOB
4533 PyModule_AddIntConstant(m, "MSG_OOB", MSG_OOB);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004534#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004535#ifdef MSG_PEEK
4536 PyModule_AddIntConstant(m, "MSG_PEEK", MSG_PEEK);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004537#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004538#ifdef MSG_DONTROUTE
4539 PyModule_AddIntConstant(m, "MSG_DONTROUTE", MSG_DONTROUTE);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004540#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004541#ifdef MSG_DONTWAIT
4542 PyModule_AddIntConstant(m, "MSG_DONTWAIT", MSG_DONTWAIT);
Guido van Rossum2c8bcb82000-04-25 21:34:53 +00004543#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004544#ifdef MSG_EOR
4545 PyModule_AddIntConstant(m, "MSG_EOR", MSG_EOR);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004546#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004547#ifdef MSG_TRUNC
4548 PyModule_AddIntConstant(m, "MSG_TRUNC", MSG_TRUNC);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004549#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004550#ifdef MSG_CTRUNC
4551 PyModule_AddIntConstant(m, "MSG_CTRUNC", MSG_CTRUNC);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004552#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004553#ifdef MSG_WAITALL
4554 PyModule_AddIntConstant(m, "MSG_WAITALL", MSG_WAITALL);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004555#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004556#ifdef MSG_BTAG
4557 PyModule_AddIntConstant(m, "MSG_BTAG", MSG_BTAG);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004558#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004559#ifdef MSG_ETAG
4560 PyModule_AddIntConstant(m, "MSG_ETAG", MSG_ETAG);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004561#endif
4562
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004563 /* Protocol level and numbers, usable for [gs]etsockopt */
4564#ifdef SOL_SOCKET
4565 PyModule_AddIntConstant(m, "SOL_SOCKET", SOL_SOCKET);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004566#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004567#ifdef SOL_IP
4568 PyModule_AddIntConstant(m, "SOL_IP", SOL_IP);
Guido van Rossum09be4091999-08-09 14:40:40 +00004569#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004570 PyModule_AddIntConstant(m, "SOL_IP", 0);
Guido van Rossum09be4091999-08-09 14:40:40 +00004571#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004572#ifdef SOL_IPX
4573 PyModule_AddIntConstant(m, "SOL_IPX", SOL_IPX);
Guido van Rossum09be4091999-08-09 14:40:40 +00004574#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004575#ifdef SOL_AX25
4576 PyModule_AddIntConstant(m, "SOL_AX25", SOL_AX25);
Guido van Rossum09be4091999-08-09 14:40:40 +00004577#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004578#ifdef SOL_ATALK
4579 PyModule_AddIntConstant(m, "SOL_ATALK", SOL_ATALK);
Guido van Rossum09be4091999-08-09 14:40:40 +00004580#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004581#ifdef SOL_NETROM
4582 PyModule_AddIntConstant(m, "SOL_NETROM", SOL_NETROM);
Guido van Rossum09be4091999-08-09 14:40:40 +00004583#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004584#ifdef SOL_ROSE
4585 PyModule_AddIntConstant(m, "SOL_ROSE", SOL_ROSE);
Guido van Rossum09be4091999-08-09 14:40:40 +00004586#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004587#ifdef SOL_TCP
4588 PyModule_AddIntConstant(m, "SOL_TCP", SOL_TCP);
Guido van Rossum09be4091999-08-09 14:40:40 +00004589#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004590 PyModule_AddIntConstant(m, "SOL_TCP", 6);
Guido van Rossum09be4091999-08-09 14:40:40 +00004591#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004592#ifdef SOL_UDP
4593 PyModule_AddIntConstant(m, "SOL_UDP", SOL_UDP);
Guido van Rossum09be4091999-08-09 14:40:40 +00004594#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004595 PyModule_AddIntConstant(m, "SOL_UDP", 17);
Guido van Rossum09be4091999-08-09 14:40:40 +00004596#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004597#ifdef IPPROTO_IP
4598 PyModule_AddIntConstant(m, "IPPROTO_IP", IPPROTO_IP);
Guido van Rossum578de301998-05-28 20:18:18 +00004599#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004600 PyModule_AddIntConstant(m, "IPPROTO_IP", 0);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004601#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004602#ifdef IPPROTO_HOPOPTS
4603 PyModule_AddIntConstant(m, "IPPROTO_HOPOPTS", IPPROTO_HOPOPTS);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004604#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004605#ifdef IPPROTO_ICMP
4606 PyModule_AddIntConstant(m, "IPPROTO_ICMP", IPPROTO_ICMP);
Guido van Rossum578de301998-05-28 20:18:18 +00004607#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004608 PyModule_AddIntConstant(m, "IPPROTO_ICMP", 1);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004609#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004610#ifdef IPPROTO_IGMP
4611 PyModule_AddIntConstant(m, "IPPROTO_IGMP", IPPROTO_IGMP);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004612#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004613#ifdef IPPROTO_GGP
4614 PyModule_AddIntConstant(m, "IPPROTO_GGP", IPPROTO_GGP);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004615#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004616#ifdef IPPROTO_IPV4
4617 PyModule_AddIntConstant(m, "IPPROTO_IPV4", IPPROTO_IPV4);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004618#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004619#ifdef IPPROTO_IPV6
4620 PyModule_AddIntConstant(m, "IPPROTO_IPV6", IPPROTO_IPV6);
Martin v. Löwisa0f17342003-10-03 13:56:20 +00004621#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004622#ifdef IPPROTO_IPIP
4623 PyModule_AddIntConstant(m, "IPPROTO_IPIP", IPPROTO_IPIP);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004624#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004625#ifdef IPPROTO_TCP
4626 PyModule_AddIntConstant(m, "IPPROTO_TCP", IPPROTO_TCP);
Guido van Rossum578de301998-05-28 20:18:18 +00004627#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004628 PyModule_AddIntConstant(m, "IPPROTO_TCP", 6);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004629#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004630#ifdef IPPROTO_EGP
4631 PyModule_AddIntConstant(m, "IPPROTO_EGP", IPPROTO_EGP);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004632#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004633#ifdef IPPROTO_PUP
4634 PyModule_AddIntConstant(m, "IPPROTO_PUP", IPPROTO_PUP);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004635#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004636#ifdef IPPROTO_UDP
4637 PyModule_AddIntConstant(m, "IPPROTO_UDP", IPPROTO_UDP);
Guido van Rossum578de301998-05-28 20:18:18 +00004638#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004639 PyModule_AddIntConstant(m, "IPPROTO_UDP", 17);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004640#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004641#ifdef IPPROTO_IDP
4642 PyModule_AddIntConstant(m, "IPPROTO_IDP", IPPROTO_IDP);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004643#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004644#ifdef IPPROTO_HELLO
4645 PyModule_AddIntConstant(m, "IPPROTO_HELLO", IPPROTO_HELLO);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004646#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004647#ifdef IPPROTO_ND
4648 PyModule_AddIntConstant(m, "IPPROTO_ND", IPPROTO_ND);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004649#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004650#ifdef IPPROTO_TP
4651 PyModule_AddIntConstant(m, "IPPROTO_TP", IPPROTO_TP);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004652#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004653#ifdef IPPROTO_IPV6
4654 PyModule_AddIntConstant(m, "IPPROTO_IPV6", IPPROTO_IPV6);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004655#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004656#ifdef IPPROTO_ROUTING
4657 PyModule_AddIntConstant(m, "IPPROTO_ROUTING", IPPROTO_ROUTING);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004658#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004659#ifdef IPPROTO_FRAGMENT
4660 PyModule_AddIntConstant(m, "IPPROTO_FRAGMENT", IPPROTO_FRAGMENT);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004661#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004662#ifdef IPPROTO_RSVP
4663 PyModule_AddIntConstant(m, "IPPROTO_RSVP", IPPROTO_RSVP);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004664#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004665#ifdef IPPROTO_GRE
4666 PyModule_AddIntConstant(m, "IPPROTO_GRE", IPPROTO_GRE);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004667#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004668#ifdef IPPROTO_ESP
4669 PyModule_AddIntConstant(m, "IPPROTO_ESP", IPPROTO_ESP);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004670#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004671#ifdef IPPROTO_AH
4672 PyModule_AddIntConstant(m, "IPPROTO_AH", IPPROTO_AH);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004673#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004674#ifdef IPPROTO_MOBILE
4675 PyModule_AddIntConstant(m, "IPPROTO_MOBILE", IPPROTO_MOBILE);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004676#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004677#ifdef IPPROTO_ICMPV6
4678 PyModule_AddIntConstant(m, "IPPROTO_ICMPV6", IPPROTO_ICMPV6);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004679#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004680#ifdef IPPROTO_NONE
4681 PyModule_AddIntConstant(m, "IPPROTO_NONE", IPPROTO_NONE);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004682#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004683#ifdef IPPROTO_DSTOPTS
4684 PyModule_AddIntConstant(m, "IPPROTO_DSTOPTS", IPPROTO_DSTOPTS);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004685#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004686#ifdef IPPROTO_XTP
4687 PyModule_AddIntConstant(m, "IPPROTO_XTP", IPPROTO_XTP);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004688#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004689#ifdef IPPROTO_EON
4690 PyModule_AddIntConstant(m, "IPPROTO_EON", IPPROTO_EON);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004691#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004692#ifdef IPPROTO_PIM
4693 PyModule_AddIntConstant(m, "IPPROTO_PIM", IPPROTO_PIM);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004694#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004695#ifdef IPPROTO_IPCOMP
4696 PyModule_AddIntConstant(m, "IPPROTO_IPCOMP", IPPROTO_IPCOMP);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004697#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004698#ifdef IPPROTO_VRRP
4699 PyModule_AddIntConstant(m, "IPPROTO_VRRP", IPPROTO_VRRP);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004700#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004701#ifdef IPPROTO_BIP
4702 PyModule_AddIntConstant(m, "IPPROTO_BIP", IPPROTO_BIP);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004703#endif
4704/**/
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004705#ifdef IPPROTO_RAW
4706 PyModule_AddIntConstant(m, "IPPROTO_RAW", IPPROTO_RAW);
Guido van Rossum578de301998-05-28 20:18:18 +00004707#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004708 PyModule_AddIntConstant(m, "IPPROTO_RAW", 255);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004709#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004710#ifdef IPPROTO_MAX
4711 PyModule_AddIntConstant(m, "IPPROTO_MAX", IPPROTO_MAX);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004712#endif
4713
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004714 /* Some port configuration */
4715#ifdef IPPORT_RESERVED
4716 PyModule_AddIntConstant(m, "IPPORT_RESERVED", IPPORT_RESERVED);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004717#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004718 PyModule_AddIntConstant(m, "IPPORT_RESERVED", 1024);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004719#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004720#ifdef IPPORT_USERRESERVED
4721 PyModule_AddIntConstant(m, "IPPORT_USERRESERVED", IPPORT_USERRESERVED);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004722#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004723 PyModule_AddIntConstant(m, "IPPORT_USERRESERVED", 5000);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004724#endif
4725
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004726 /* Some reserved IP v.4 addresses */
4727#ifdef INADDR_ANY
4728 PyModule_AddIntConstant(m, "INADDR_ANY", INADDR_ANY);
Guido van Rossum5f05eb41995-02-17 15:11:07 +00004729#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004730 PyModule_AddIntConstant(m, "INADDR_ANY", 0x00000000);
Guido van Rossum5f05eb41995-02-17 15:11:07 +00004731#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004732#ifdef INADDR_BROADCAST
4733 PyModule_AddIntConstant(m, "INADDR_BROADCAST", INADDR_BROADCAST);
Guido van Rossum5f05eb41995-02-17 15:11:07 +00004734#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004735 PyModule_AddIntConstant(m, "INADDR_BROADCAST", 0xffffffff);
Guido van Rossum5f05eb41995-02-17 15:11:07 +00004736#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004737#ifdef INADDR_LOOPBACK
4738 PyModule_AddIntConstant(m, "INADDR_LOOPBACK", INADDR_LOOPBACK);
Guido van Rossum5f05eb41995-02-17 15:11:07 +00004739#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004740 PyModule_AddIntConstant(m, "INADDR_LOOPBACK", 0x7F000001);
Guido van Rossum5f05eb41995-02-17 15:11:07 +00004741#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004742#ifdef INADDR_UNSPEC_GROUP
4743 PyModule_AddIntConstant(m, "INADDR_UNSPEC_GROUP", INADDR_UNSPEC_GROUP);
Guido van Rossum5f05eb41995-02-17 15:11:07 +00004744#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004745 PyModule_AddIntConstant(m, "INADDR_UNSPEC_GROUP", 0xe0000000);
Guido van Rossum5f05eb41995-02-17 15:11:07 +00004746#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004747#ifdef INADDR_ALLHOSTS_GROUP
4748 PyModule_AddIntConstant(m, "INADDR_ALLHOSTS_GROUP",
4749 INADDR_ALLHOSTS_GROUP);
Guido van Rossum5f05eb41995-02-17 15:11:07 +00004750#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004751 PyModule_AddIntConstant(m, "INADDR_ALLHOSTS_GROUP", 0xe0000001);
Guido van Rossum5f05eb41995-02-17 15:11:07 +00004752#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004753#ifdef INADDR_MAX_LOCAL_GROUP
4754 PyModule_AddIntConstant(m, "INADDR_MAX_LOCAL_GROUP",
4755 INADDR_MAX_LOCAL_GROUP);
Guido van Rossum5f05eb41995-02-17 15:11:07 +00004756#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004757 PyModule_AddIntConstant(m, "INADDR_MAX_LOCAL_GROUP", 0xe00000ff);
Guido van Rossum5f05eb41995-02-17 15:11:07 +00004758#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004759#ifdef INADDR_NONE
4760 PyModule_AddIntConstant(m, "INADDR_NONE", INADDR_NONE);
Guido van Rossum5f05eb41995-02-17 15:11:07 +00004761#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004762 PyModule_AddIntConstant(m, "INADDR_NONE", 0xffffffff);
Guido van Rossum5f05eb41995-02-17 15:11:07 +00004763#endif
4764
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004765 /* IPv4 [gs]etsockopt options */
4766#ifdef IP_OPTIONS
4767 PyModule_AddIntConstant(m, "IP_OPTIONS", IP_OPTIONS);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004768#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004769#ifdef IP_HDRINCL
4770 PyModule_AddIntConstant(m, "IP_HDRINCL", IP_HDRINCL);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004771#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004772#ifdef IP_TOS
4773 PyModule_AddIntConstant(m, "IP_TOS", IP_TOS);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004774#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004775#ifdef IP_TTL
4776 PyModule_AddIntConstant(m, "IP_TTL", IP_TTL);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004777#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004778#ifdef IP_RECVOPTS
4779 PyModule_AddIntConstant(m, "IP_RECVOPTS", IP_RECVOPTS);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004780#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004781#ifdef IP_RECVRETOPTS
4782 PyModule_AddIntConstant(m, "IP_RECVRETOPTS", IP_RECVRETOPTS);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004783#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004784#ifdef IP_RECVDSTADDR
4785 PyModule_AddIntConstant(m, "IP_RECVDSTADDR", IP_RECVDSTADDR);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004786#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004787#ifdef IP_RETOPTS
4788 PyModule_AddIntConstant(m, "IP_RETOPTS", IP_RETOPTS);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004789#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004790#ifdef IP_MULTICAST_IF
4791 PyModule_AddIntConstant(m, "IP_MULTICAST_IF", IP_MULTICAST_IF);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004792#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004793#ifdef IP_MULTICAST_TTL
4794 PyModule_AddIntConstant(m, "IP_MULTICAST_TTL", IP_MULTICAST_TTL);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004795#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004796#ifdef IP_MULTICAST_LOOP
4797 PyModule_AddIntConstant(m, "IP_MULTICAST_LOOP", IP_MULTICAST_LOOP);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004798#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004799#ifdef IP_ADD_MEMBERSHIP
4800 PyModule_AddIntConstant(m, "IP_ADD_MEMBERSHIP", IP_ADD_MEMBERSHIP);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004801#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004802#ifdef IP_DROP_MEMBERSHIP
4803 PyModule_AddIntConstant(m, "IP_DROP_MEMBERSHIP", IP_DROP_MEMBERSHIP);
Guido van Rossum3fdf58b1995-02-07 15:39:52 +00004804#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004805#ifdef IP_DEFAULT_MULTICAST_TTL
4806 PyModule_AddIntConstant(m, "IP_DEFAULT_MULTICAST_TTL",
4807 IP_DEFAULT_MULTICAST_TTL);
Guido van Rossum09be4091999-08-09 14:40:40 +00004808#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004809#ifdef IP_DEFAULT_MULTICAST_LOOP
4810 PyModule_AddIntConstant(m, "IP_DEFAULT_MULTICAST_LOOP",
4811 IP_DEFAULT_MULTICAST_LOOP);
Guido van Rossum09be4091999-08-09 14:40:40 +00004812#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004813#ifdef IP_MAX_MEMBERSHIPS
4814 PyModule_AddIntConstant(m, "IP_MAX_MEMBERSHIPS", IP_MAX_MEMBERSHIPS);
Guido van Rossum09be4091999-08-09 14:40:40 +00004815#endif
4816
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004817 /* IPv6 [gs]etsockopt options, defined in RFC2553 */
4818#ifdef IPV6_JOIN_GROUP
4819 PyModule_AddIntConstant(m, "IPV6_JOIN_GROUP", IPV6_JOIN_GROUP);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004820#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004821#ifdef IPV6_LEAVE_GROUP
4822 PyModule_AddIntConstant(m, "IPV6_LEAVE_GROUP", IPV6_LEAVE_GROUP);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004823#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004824#ifdef IPV6_MULTICAST_HOPS
4825 PyModule_AddIntConstant(m, "IPV6_MULTICAST_HOPS", IPV6_MULTICAST_HOPS);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004826#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004827#ifdef IPV6_MULTICAST_IF
4828 PyModule_AddIntConstant(m, "IPV6_MULTICAST_IF", IPV6_MULTICAST_IF);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004829#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004830#ifdef IPV6_MULTICAST_LOOP
4831 PyModule_AddIntConstant(m, "IPV6_MULTICAST_LOOP", IPV6_MULTICAST_LOOP);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004832#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004833#ifdef IPV6_UNICAST_HOPS
4834 PyModule_AddIntConstant(m, "IPV6_UNICAST_HOPS", IPV6_UNICAST_HOPS);
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004835#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004836 /* Additional IPV6 socket options, defined in RFC 3493 */
Martin v. Löwisda91d022003-12-30 11:14:01 +00004837#ifdef IPV6_V6ONLY
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004838 PyModule_AddIntConstant(m, "IPV6_V6ONLY", IPV6_V6ONLY);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004839#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004840 /* Advanced IPV6 socket options, from RFC 3542 */
Martin v. Löwisda91d022003-12-30 11:14:01 +00004841#ifdef IPV6_CHECKSUM
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004842 PyModule_AddIntConstant(m, "IPV6_CHECKSUM", IPV6_CHECKSUM);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004843#endif
4844#ifdef IPV6_DONTFRAG
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004845 PyModule_AddIntConstant(m, "IPV6_DONTFRAG", IPV6_DONTFRAG);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004846#endif
4847#ifdef IPV6_DSTOPTS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004848 PyModule_AddIntConstant(m, "IPV6_DSTOPTS", IPV6_DSTOPTS);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004849#endif
4850#ifdef IPV6_HOPLIMIT
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004851 PyModule_AddIntConstant(m, "IPV6_HOPLIMIT", IPV6_HOPLIMIT);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004852#endif
4853#ifdef IPV6_HOPOPTS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004854 PyModule_AddIntConstant(m, "IPV6_HOPOPTS", IPV6_HOPOPTS);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004855#endif
4856#ifdef IPV6_NEXTHOP
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004857 PyModule_AddIntConstant(m, "IPV6_NEXTHOP", IPV6_NEXTHOP);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004858#endif
4859#ifdef IPV6_PATHMTU
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004860 PyModule_AddIntConstant(m, "IPV6_PATHMTU", IPV6_PATHMTU);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004861#endif
4862#ifdef IPV6_PKTINFO
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004863 PyModule_AddIntConstant(m, "IPV6_PKTINFO", IPV6_PKTINFO);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004864#endif
4865#ifdef IPV6_RECVDSTOPTS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004866 PyModule_AddIntConstant(m, "IPV6_RECVDSTOPTS", IPV6_RECVDSTOPTS);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004867#endif
4868#ifdef IPV6_RECVHOPLIMIT
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004869 PyModule_AddIntConstant(m, "IPV6_RECVHOPLIMIT", IPV6_RECVHOPLIMIT);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004870#endif
4871#ifdef IPV6_RECVHOPOPTS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004872 PyModule_AddIntConstant(m, "IPV6_RECVHOPOPTS", IPV6_RECVHOPOPTS);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004873#endif
4874#ifdef IPV6_RECVPKTINFO
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004875 PyModule_AddIntConstant(m, "IPV6_RECVPKTINFO", IPV6_RECVPKTINFO);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004876#endif
4877#ifdef IPV6_RECVRTHDR
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004878 PyModule_AddIntConstant(m, "IPV6_RECVRTHDR", IPV6_RECVRTHDR);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004879#endif
4880#ifdef IPV6_RECVTCLASS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004881 PyModule_AddIntConstant(m, "IPV6_RECVTCLASS", IPV6_RECVTCLASS);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004882#endif
4883#ifdef IPV6_RTHDR
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004884 PyModule_AddIntConstant(m, "IPV6_RTHDR", IPV6_RTHDR);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004885#endif
4886#ifdef IPV6_RTHDRDSTOPTS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004887 PyModule_AddIntConstant(m, "IPV6_RTHDRDSTOPTS", IPV6_RTHDRDSTOPTS);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004888#endif
4889#ifdef IPV6_RTHDR_TYPE_0
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004890 PyModule_AddIntConstant(m, "IPV6_RTHDR_TYPE_0", IPV6_RTHDR_TYPE_0);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004891#endif
4892#ifdef IPV6_RECVPATHMTU
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004893 PyModule_AddIntConstant(m, "IPV6_RECVPATHMTU", IPV6_RECVPATHMTU);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004894#endif
4895#ifdef IPV6_TCLASS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004896 PyModule_AddIntConstant(m, "IPV6_TCLASS", IPV6_TCLASS);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004897#endif
4898#ifdef IPV6_USE_MIN_MTU
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004899 PyModule_AddIntConstant(m, "IPV6_USE_MIN_MTU", IPV6_USE_MIN_MTU);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004900#endif
Martin v. Löwisbcf4b352001-08-04 22:37:23 +00004901
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004902 /* TCP options */
4903#ifdef TCP_NODELAY
4904 PyModule_AddIntConstant(m, "TCP_NODELAY", TCP_NODELAY);
Guido van Rossum09be4091999-08-09 14:40:40 +00004905#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004906#ifdef TCP_MAXSEG
4907 PyModule_AddIntConstant(m, "TCP_MAXSEG", TCP_MAXSEG);
Guido van Rossum09be4091999-08-09 14:40:40 +00004908#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004909#ifdef TCP_CORK
4910 PyModule_AddIntConstant(m, "TCP_CORK", TCP_CORK);
Martin v. Löwis3cde2cb2001-12-22 15:05:32 +00004911#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004912#ifdef TCP_KEEPIDLE
4913 PyModule_AddIntConstant(m, "TCP_KEEPIDLE", TCP_KEEPIDLE);
Martin v. Löwis3cde2cb2001-12-22 15:05:32 +00004914#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004915#ifdef TCP_KEEPINTVL
4916 PyModule_AddIntConstant(m, "TCP_KEEPINTVL", TCP_KEEPINTVL);
Martin v. Löwis3cde2cb2001-12-22 15:05:32 +00004917#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004918#ifdef TCP_KEEPCNT
4919 PyModule_AddIntConstant(m, "TCP_KEEPCNT", TCP_KEEPCNT);
Martin v. Löwis3cde2cb2001-12-22 15:05:32 +00004920#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004921#ifdef TCP_SYNCNT
4922 PyModule_AddIntConstant(m, "TCP_SYNCNT", TCP_SYNCNT);
Martin v. Löwis3cde2cb2001-12-22 15:05:32 +00004923#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004924#ifdef TCP_LINGER2
4925 PyModule_AddIntConstant(m, "TCP_LINGER2", TCP_LINGER2);
Martin v. Löwis3cde2cb2001-12-22 15:05:32 +00004926#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004927#ifdef TCP_DEFER_ACCEPT
4928 PyModule_AddIntConstant(m, "TCP_DEFER_ACCEPT", TCP_DEFER_ACCEPT);
Martin v. Löwis3cde2cb2001-12-22 15:05:32 +00004929#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004930#ifdef TCP_WINDOW_CLAMP
4931 PyModule_AddIntConstant(m, "TCP_WINDOW_CLAMP", TCP_WINDOW_CLAMP);
Martin v. Löwis3cde2cb2001-12-22 15:05:32 +00004932#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004933#ifdef TCP_INFO
4934 PyModule_AddIntConstant(m, "TCP_INFO", TCP_INFO);
Martin v. Löwis3cde2cb2001-12-22 15:05:32 +00004935#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004936#ifdef TCP_QUICKACK
4937 PyModule_AddIntConstant(m, "TCP_QUICKACK", TCP_QUICKACK);
Martin v. Löwis3cde2cb2001-12-22 15:05:32 +00004938#endif
4939
Guido van Rossum09be4091999-08-09 14:40:40 +00004940
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004941 /* IPX options */
4942#ifdef IPX_TYPE
4943 PyModule_AddIntConstant(m, "IPX_TYPE", IPX_TYPE);
Guido van Rossum09be4091999-08-09 14:40:40 +00004944#endif
Guido van Rossum4f199ea1998-04-09 20:56:35 +00004945
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004946 /* get{addr,name}info parameters */
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004947#ifdef EAI_ADDRFAMILY
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004948 PyModule_AddIntConstant(m, "EAI_ADDRFAMILY", EAI_ADDRFAMILY);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004949#endif
4950#ifdef EAI_AGAIN
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004951 PyModule_AddIntConstant(m, "EAI_AGAIN", EAI_AGAIN);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004952#endif
4953#ifdef EAI_BADFLAGS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004954 PyModule_AddIntConstant(m, "EAI_BADFLAGS", EAI_BADFLAGS);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004955#endif
4956#ifdef EAI_FAIL
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004957 PyModule_AddIntConstant(m, "EAI_FAIL", EAI_FAIL);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004958#endif
4959#ifdef EAI_FAMILY
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004960 PyModule_AddIntConstant(m, "EAI_FAMILY", EAI_FAMILY);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004961#endif
4962#ifdef EAI_MEMORY
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004963 PyModule_AddIntConstant(m, "EAI_MEMORY", EAI_MEMORY);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004964#endif
4965#ifdef EAI_NODATA
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004966 PyModule_AddIntConstant(m, "EAI_NODATA", EAI_NODATA);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004967#endif
4968#ifdef EAI_NONAME
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004969 PyModule_AddIntConstant(m, "EAI_NONAME", EAI_NONAME);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004970#endif
Martin v. Löwisda91d022003-12-30 11:14:01 +00004971#ifdef EAI_OVERFLOW
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004972 PyModule_AddIntConstant(m, "EAI_OVERFLOW", EAI_OVERFLOW);
Martin v. Löwisda91d022003-12-30 11:14:01 +00004973#endif
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004974#ifdef EAI_SERVICE
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004975 PyModule_AddIntConstant(m, "EAI_SERVICE", EAI_SERVICE);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004976#endif
4977#ifdef EAI_SOCKTYPE
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004978 PyModule_AddIntConstant(m, "EAI_SOCKTYPE", EAI_SOCKTYPE);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004979#endif
4980#ifdef EAI_SYSTEM
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004981 PyModule_AddIntConstant(m, "EAI_SYSTEM", EAI_SYSTEM);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004982#endif
4983#ifdef EAI_BADHINTS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004984 PyModule_AddIntConstant(m, "EAI_BADHINTS", EAI_BADHINTS);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004985#endif
4986#ifdef EAI_PROTOCOL
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004987 PyModule_AddIntConstant(m, "EAI_PROTOCOL", EAI_PROTOCOL);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004988#endif
4989#ifdef EAI_MAX
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004990 PyModule_AddIntConstant(m, "EAI_MAX", EAI_MAX);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004991#endif
4992#ifdef AI_PASSIVE
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004993 PyModule_AddIntConstant(m, "AI_PASSIVE", AI_PASSIVE);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004994#endif
4995#ifdef AI_CANONNAME
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004996 PyModule_AddIntConstant(m, "AI_CANONNAME", AI_CANONNAME);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00004997#endif
4998#ifdef AI_NUMERICHOST
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00004999 PyModule_AddIntConstant(m, "AI_NUMERICHOST", AI_NUMERICHOST);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00005000#endif
Martin v. Löwisda91d022003-12-30 11:14:01 +00005001#ifdef AI_NUMERICSERV
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005002 PyModule_AddIntConstant(m, "AI_NUMERICSERV", AI_NUMERICSERV);
Martin v. Löwisda91d022003-12-30 11:14:01 +00005003#endif
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00005004#ifdef AI_MASK
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005005 PyModule_AddIntConstant(m, "AI_MASK", AI_MASK);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00005006#endif
5007#ifdef AI_ALL
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005008 PyModule_AddIntConstant(m, "AI_ALL", AI_ALL);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00005009#endif
5010#ifdef AI_V4MAPPED_CFG
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005011 PyModule_AddIntConstant(m, "AI_V4MAPPED_CFG", AI_V4MAPPED_CFG);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00005012#endif
5013#ifdef AI_ADDRCONFIG
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005014 PyModule_AddIntConstant(m, "AI_ADDRCONFIG", AI_ADDRCONFIG);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00005015#endif
5016#ifdef AI_V4MAPPED
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005017 PyModule_AddIntConstant(m, "AI_V4MAPPED", AI_V4MAPPED);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00005018#endif
5019#ifdef AI_DEFAULT
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005020 PyModule_AddIntConstant(m, "AI_DEFAULT", AI_DEFAULT);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00005021#endif
5022#ifdef NI_MAXHOST
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005023 PyModule_AddIntConstant(m, "NI_MAXHOST", NI_MAXHOST);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00005024#endif
5025#ifdef NI_MAXSERV
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005026 PyModule_AddIntConstant(m, "NI_MAXSERV", NI_MAXSERV);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00005027#endif
5028#ifdef NI_NOFQDN
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005029 PyModule_AddIntConstant(m, "NI_NOFQDN", NI_NOFQDN);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00005030#endif
5031#ifdef NI_NUMERICHOST
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005032 PyModule_AddIntConstant(m, "NI_NUMERICHOST", NI_NUMERICHOST);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00005033#endif
5034#ifdef NI_NAMEREQD
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005035 PyModule_AddIntConstant(m, "NI_NAMEREQD", NI_NAMEREQD);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00005036#endif
5037#ifdef NI_NUMERICSERV
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005038 PyModule_AddIntConstant(m, "NI_NUMERICSERV", NI_NUMERICSERV);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00005039#endif
5040#ifdef NI_DGRAM
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005041 PyModule_AddIntConstant(m, "NI_DGRAM", NI_DGRAM);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00005042#endif
5043
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005044 /* shutdown() parameters */
Martin v. Löwis94681fc2003-11-27 19:40:22 +00005045#ifdef SHUT_RD
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005046 PyModule_AddIntConstant(m, "SHUT_RD", SHUT_RD);
Martin v. Löwis94681fc2003-11-27 19:40:22 +00005047#elif defined(SD_RECEIVE)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005048 PyModule_AddIntConstant(m, "SHUT_RD", SD_RECEIVE);
Martin v. Löwis94681fc2003-11-27 19:40:22 +00005049#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005050 PyModule_AddIntConstant(m, "SHUT_RD", 0);
Martin v. Löwis94681fc2003-11-27 19:40:22 +00005051#endif
5052#ifdef SHUT_WR
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005053 PyModule_AddIntConstant(m, "SHUT_WR", SHUT_WR);
Martin v. Löwis94681fc2003-11-27 19:40:22 +00005054#elif defined(SD_SEND)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005055 PyModule_AddIntConstant(m, "SHUT_WR", SD_SEND);
Martin v. Löwis94681fc2003-11-27 19:40:22 +00005056#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005057 PyModule_AddIntConstant(m, "SHUT_WR", 1);
Martin v. Löwis94681fc2003-11-27 19:40:22 +00005058#endif
5059#ifdef SHUT_RDWR
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005060 PyModule_AddIntConstant(m, "SHUT_RDWR", SHUT_RDWR);
Martin v. Löwis94681fc2003-11-27 19:40:22 +00005061#elif defined(SD_BOTH)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005062 PyModule_AddIntConstant(m, "SHUT_RDWR", SD_BOTH);
Martin v. Löwis94681fc2003-11-27 19:40:22 +00005063#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005064 PyModule_AddIntConstant(m, "SHUT_RDWR", 2);
Martin v. Löwis94681fc2003-11-27 19:40:22 +00005065#endif
5066
Christian Heimesfaf2f632008-01-06 16:59:19 +00005067#ifdef SIO_RCVALL
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005068 {
5069 PyObject *tmp;
5070 tmp = PyLong_FromUnsignedLong(SIO_RCVALL);
5071 if (tmp == NULL)
5072 return NULL;
5073 PyModule_AddObject(m, "SIO_RCVALL", tmp);
5074 }
5075 PyModule_AddIntConstant(m, "RCVALL_OFF", RCVALL_OFF);
5076 PyModule_AddIntConstant(m, "RCVALL_ON", RCVALL_ON);
5077 PyModule_AddIntConstant(m, "RCVALL_SOCKETLEVELONLY", RCVALL_SOCKETLEVELONLY);
Amaury Forgeot d'Arc762681b2008-06-12 23:03:41 +00005078#ifdef RCVALL_IPLEVEL
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005079 PyModule_AddIntConstant(m, "RCVALL_IPLEVEL", RCVALL_IPLEVEL);
Amaury Forgeot d'Arc762681b2008-06-12 23:03:41 +00005080#endif
5081#ifdef RCVALL_MAX
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005082 PyModule_AddIntConstant(m, "RCVALL_MAX", RCVALL_MAX);
Amaury Forgeot d'Arc762681b2008-06-12 23:03:41 +00005083#endif
Christian Heimesfaf2f632008-01-06 16:59:19 +00005084#endif /* _MSTCPIP_ */
5085
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005086 /* Initialize gethostbyname lock */
Just van Rossum1040d2c2003-05-09 07:53:18 +00005087#if defined(USE_GETHOSTBYNAME_LOCK) || defined(USE_GETADDRINFO_LOCK)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005088 netdb_lock = PyThread_allocate_lock();
Guido van Rossum4f199ea1998-04-09 20:56:35 +00005089#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005090 return m;
Guido van Rossum6574b3e1991-06-25 21:36:08 +00005091}
Martin v. Löwisb9ab1592001-06-24 21:18:26 +00005092
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00005093
Martin v. Löwisb9ab1592001-06-24 21:18:26 +00005094#ifndef HAVE_INET_PTON
Christian Heimes96e7b3d2007-11-20 06:51:17 +00005095#if !defined(NTDDI_VERSION) || (NTDDI_VERSION < NTDDI_LONGHORN)
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00005096
5097/* Simplistic emulation code for inet_pton that only works for IPv4 */
Guido van Rossum47dfa4a2003-04-25 05:48:32 +00005098/* These are not exposed because they do not set errno properly */
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00005099
Guido van Rossum3eede5a2002-06-07 02:08:35 +00005100int
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00005101inet_pton(int af, const char *src, void *dst)
Martin v. Löwisb9ab1592001-06-24 21:18:26 +00005102{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005103 if (af == AF_INET) {
Benjamin Petersonf91df042009-02-13 02:50:59 +00005104#if (SIZEOF_INT != 4)
5105#error "Not sure if in_addr_t exists and int is not 32-bits."
5106#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005107 unsigned int packed_addr;
5108 packed_addr = inet_addr(src);
5109 if (packed_addr == INADDR_NONE)
5110 return 0;
5111 memcpy(dst, &packed_addr, 4);
5112 return 1;
5113 }
5114 /* Should set errno to EAFNOSUPPORT */
5115 return -1;
Martin v. Löwisb9ab1592001-06-24 21:18:26 +00005116}
5117
Martin v. Löwisc925b1532001-07-21 09:42:15 +00005118const char *
5119inet_ntop(int af, const void *src, char *dst, socklen_t size)
Martin v. Löwisb9ab1592001-06-24 21:18:26 +00005120{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005121 if (af == AF_INET) {
5122 struct in_addr packed_addr;
5123 if (size < 16)
5124 /* Should set errno to ENOSPC. */
5125 return NULL;
5126 memcpy(&packed_addr, src, sizeof(packed_addr));
5127 return strncpy(dst, inet_ntoa(packed_addr), size);
5128 }
5129 /* Should set errno to EAFNOSUPPORT */
5130 return NULL;
Martin v. Löwisb9ab1592001-06-24 21:18:26 +00005131}
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00005132
Martin v. Löwisb9ab1592001-06-24 21:18:26 +00005133#endif
Christian Heimesb6150692007-11-15 23:37:07 +00005134#endif