blob: d0d7f3c6f907eb54d69d557bfbd316b422d7c1ef [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{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000354 HANDLE newhandle;
Guido van Rossum39eb8fa2007-11-16 01:24:05 +0000355
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000356 if (!DuplicateHandle(GetCurrentProcess(), (HANDLE)handle,
357 GetCurrentProcess(), &newhandle,
358 0, FALSE, DUPLICATE_SAME_ACCESS))
359 {
360 WSASetLastError(GetLastError());
361 return INVALID_SOCKET;
362 }
363 return (SOCKET)newhandle;
Guido van Rossum39eb8fa2007-11-16 01:24:05 +0000364}
Guido van Rossum2dd8ddd2000-04-21 20:33:00 +0000365#define SOCKETCLOSE closesocket
Guido van Rossum39eb8fa2007-11-16 01:24:05 +0000366#else
367/* On Unix we can use dup to duplicate the file descriptor of a socket*/
368#define dup_socket(fd) dup(fd)
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000369#endif
370
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000371#ifdef MS_WIN32
Guido van Rossum3eede5a2002-06-07 02:08:35 +0000372#define EAFNOSUPPORT WSAEAFNOSUPPORT
373#define snprintf _snprintf
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000374#endif
Fred Drakea04eaad2000-06-30 02:46:07 +0000375
Andrew MacIntyreba43e872002-03-03 03:03:52 +0000376#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Guido van Rossum2dd8ddd2000-04-21 20:33:00 +0000377#define SOCKETCLOSE soclose
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000378#define NO_DUP /* Sockets are Not Actual File Handles under OS/2 */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000379#endif
380
Guido van Rossum2dd8ddd2000-04-21 20:33:00 +0000381#ifndef SOCKETCLOSE
382#define SOCKETCLOSE close
383#endif
384
Jesse Noller32d68c22009-03-31 18:48:42 +0000385#if defined(HAVE_BLUETOOTH_H) || defined(HAVE_BLUETOOTH_BLUETOOTH_H) && !defined(__NetBSD__)
Hye-Shik Chang81268602004-02-02 06:05:24 +0000386#define USE_BLUETOOTH 1
387#if defined(__FreeBSD__)
388#define BTPROTO_L2CAP BLUETOOTH_PROTO_L2CAP
389#define BTPROTO_RFCOMM BLUETOOTH_PROTO_RFCOMM
Thomas Wouterscf297e42007-02-23 15:07:44 +0000390#define BTPROTO_HCI BLUETOOTH_PROTO_HCI
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000391#define SOL_HCI SOL_HCI_RAW
392#define HCI_FILTER SO_HCI_RAW_FILTER
Hye-Shik Chang81268602004-02-02 06:05:24 +0000393#define sockaddr_l2 sockaddr_l2cap
394#define sockaddr_rc sockaddr_rfcomm
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000395#define hci_dev hci_node
Hye-Shik Chang81268602004-02-02 06:05:24 +0000396#define _BT_L2_MEMB(sa, memb) ((sa)->l2cap_##memb)
397#define _BT_RC_MEMB(sa, memb) ((sa)->rfcomm_##memb)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000398#define _BT_HCI_MEMB(sa, memb) ((sa)->hci_##memb)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000399#elif defined(__NetBSD__)
400#define sockaddr_l2 sockaddr_bt
401#define sockaddr_rc sockaddr_bt
Thomas Wouterscf297e42007-02-23 15:07:44 +0000402#define sockaddr_hci sockaddr_bt
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000403#define sockaddr_sco sockaddr_bt
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000404#define _BT_L2_MEMB(sa, memb) ((sa)->bt_##memb)
405#define _BT_RC_MEMB(sa, memb) ((sa)->bt_##memb)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000406#define _BT_HCI_MEMB(sa, memb) ((sa)->bt_##memb)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000407#define _BT_SCO_MEMB(sa, memb) ((sa)->bt_##memb)
Hye-Shik Chang81268602004-02-02 06:05:24 +0000408#else
Hye-Shik Chang81268602004-02-02 06:05:24 +0000409#define _BT_L2_MEMB(sa, memb) ((sa)->l2_##memb)
410#define _BT_RC_MEMB(sa, memb) ((sa)->rc_##memb)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000411#define _BT_HCI_MEMB(sa, memb) ((sa)->hci_##memb)
Hye-Shik Chang81268602004-02-02 06:05:24 +0000412#define _BT_SCO_MEMB(sa, memb) ((sa)->sco_##memb)
413#endif
414#endif
415
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000416#ifdef __VMS
417/* TCP/IP Services for VMS uses a maximum send/recv buffer length */
418#define SEGMENT_SIZE (32 * 1024 -1)
419#endif
420
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000421#define SAS2SA(x) ((struct sockaddr *)(x))
Thomas Wouters89f507f2006-12-13 04:49:30 +0000422
Martin v. Löwise9416172003-05-03 10:12:45 +0000423/*
424 * Constants for getnameinfo()
425 */
426#if !defined(NI_MAXHOST)
427#define NI_MAXHOST 1025
428#endif
429#if !defined(NI_MAXSERV)
430#define NI_MAXSERV 32
431#endif
432
Guido van Rossum7d0a8262007-05-21 23:13:11 +0000433#ifndef INVALID_SOCKET /* MS defines this */
434#define INVALID_SOCKET (-1)
435#endif
436
Guido van Rossum384ca9c2001-10-27 22:20:47 +0000437/* XXX There's a problem here: *static* functions are not supposed to have
438 a Py prefix (or use CapitalizedWords). Later... */
439
Guido van Rossum30a685f1991-06-27 15:51:29 +0000440/* Global variable holding the exception type for errors detected
441 by this module (but not argument type or memory errors, etc.). */
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000442static PyObject *socket_error;
443static PyObject *socket_herror;
444static PyObject *socket_gaierror;
Raymond Hettingeref7343c2003-06-29 03:08:05 +0000445static PyObject *socket_timeout;
Guido van Rossum30a685f1991-06-27 15:51:29 +0000446
Tim Peters643a7fc2002-02-17 04:13:21 +0000447/* A forward reference to the socket type object.
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000448 The sock_type variable contains pointers to various functions,
449 some of which call new_sockobject(), which uses sock_type, so
Tim Peters643a7fc2002-02-17 04:13:21 +0000450 there has to be a circular reference. */
Jeremy Hylton938ace62002-07-17 16:30:39 +0000451static PyTypeObject sock_type;
Guido van Rossum48a680c2001-03-02 06:34:14 +0000452
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000453#if defined(HAVE_POLL_H)
454#include <poll.h>
455#elif defined(HAVE_SYS_POLL_H)
456#include <sys/poll.h>
457#endif
458
Martin v. Löwisf84d1b92006-02-11 09:27:05 +0000459#ifdef Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE
460/* Platform can select file descriptors beyond FD_SETSIZE */
461#define IS_SELECTABLE(s) 1
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000462#elif defined(HAVE_POLL)
463/* Instead of select(), we'll use poll() since poll() works on any fd. */
464#define IS_SELECTABLE(s) 1
465/* Can we call select() with this socket without a buffer overrun? */
Martin v. Löwisf84d1b92006-02-11 09:27:05 +0000466#else
467/* POSIX says selecting file descriptors beyond FD_SETSIZE
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000468 has undefined behaviour. If there's no timeout left, we don't have to
469 call select, so it's a safe, little white lie. */
470#define IS_SELECTABLE(s) ((s)->sock_fd < FD_SETSIZE || s->sock_timeout <= 0.0)
Martin v. Löwisf84d1b92006-02-11 09:27:05 +0000471#endif
Neal Norwitz082b2df2006-02-07 07:04:46 +0000472
473static PyObject*
474select_error(void)
475{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000476 PyErr_SetString(socket_error, "unable to select on socket");
477 return NULL;
Neal Norwitz082b2df2006-02-07 07:04:46 +0000478}
479
Guido van Rossum30a685f1991-06-27 15:51:29 +0000480/* Convenience function to raise an error according to errno
481 and return a NULL pointer from a function. */
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000482
Guido van Rossum73624e91994-10-10 17:59:00 +0000483static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000484set_error(void)
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000485{
Guido van Rossum8d665e61996-06-26 18:22:49 +0000486#ifdef MS_WINDOWS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000487 int err_no = WSAGetLastError();
488 /* PyErr_SetExcFromWindowsErr() invokes FormatMessage() which
489 recognizes the error codes used by both GetLastError() and
490 WSAGetLastError */
491 if (err_no)
492 return PyErr_SetExcFromWindowsErr(socket_error, err_no);
Guido van Rossum14ed0b21994-09-29 09:50:09 +0000493#endif
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000494
Andrew MacIntyreba43e872002-03-03 03:03:52 +0000495#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000496 if (sock_errno() != NO_ERROR) {
497 APIRET rc;
498 ULONG msglen;
499 char outbuf[100];
500 int myerrorcode = sock_errno();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000501
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000502 /* Retrieve socket-related error message from MPTN.MSG file */
503 rc = DosGetMessage(NULL, 0, outbuf, sizeof(outbuf),
504 myerrorcode - SOCBASEERR + 26,
505 "mptn.msg",
506 &msglen);
507 if (rc == NO_ERROR) {
508 PyObject *v;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000509
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000510 /* OS/2 doesn't guarantee a terminator */
511 outbuf[msglen] = '\0';
512 if (strlen(outbuf) > 0) {
513 /* If non-empty msg, trim CRLF */
514 char *lastc = &outbuf[ strlen(outbuf)-1 ];
515 while (lastc > outbuf &&
516 isspace(Py_CHARMASK(*lastc))) {
517 /* Trim trailing whitespace (CRLF) */
518 *lastc-- = '\0';
519 }
520 }
521 v = Py_BuildValue("(is)", myerrorcode, outbuf);
522 if (v != NULL) {
523 PyErr_SetObject(socket_error, v);
524 Py_DECREF(v);
525 }
526 return NULL;
527 }
528 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000529#endif
530
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000531 return PyErr_SetFromErrno(socket_error);
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000532}
533
Guido van Rossum30a685f1991-06-27 15:51:29 +0000534
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000535static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000536set_herror(int h_error)
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000537{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000538 PyObject *v;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000539
540#ifdef HAVE_HSTRERROR
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000541 v = Py_BuildValue("(is)", h_error, (char *)hstrerror(h_error));
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000542#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000543 v = Py_BuildValue("(is)", h_error, "host not found");
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000544#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000545 if (v != NULL) {
546 PyErr_SetObject(socket_herror, v);
547 Py_DECREF(v);
548 }
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000549
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000550 return NULL;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000551}
552
553
554static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000555set_gaierror(int error)
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000556{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000557 PyObject *v;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000558
Martin v. Löwis272cb402002-03-01 08:31:07 +0000559#ifdef EAI_SYSTEM
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000560 /* EAI_SYSTEM is not available on Windows XP. */
561 if (error == EAI_SYSTEM)
562 return set_error();
Martin v. Löwis272cb402002-03-01 08:31:07 +0000563#endif
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000564
Martin v. Löwisf95dd0a2001-08-15 17:14:33 +0000565#ifdef HAVE_GAI_STRERROR
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000566 v = Py_BuildValue("(is)", error, gai_strerror(error));
Martin v. Löwisf95dd0a2001-08-15 17:14:33 +0000567#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000568 v = Py_BuildValue("(is)", error, "getaddrinfo failed");
Martin v. Löwisf95dd0a2001-08-15 17:14:33 +0000569#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000570 if (v != NULL) {
571 PyErr_SetObject(socket_gaierror, v);
572 Py_DECREF(v);
573 }
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000574
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000575 return NULL;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000576}
577
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000578#ifdef __VMS
579/* Function to send in segments */
580static int
581sendsegmented(int sock_fd, char *buf, int len, int flags)
582{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000583 int n = 0;
584 int remaining = len;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000585
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000586 while (remaining > 0) {
587 unsigned int segment;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000588
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000589 segment = (remaining >= SEGMENT_SIZE ? SEGMENT_SIZE : remaining);
590 n = send(sock_fd, buf, segment, flags);
591 if (n < 0) {
592 return n;
593 }
594 remaining -= segment;
595 buf += segment;
596 } /* end while */
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000597
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000598 return len;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000599}
600#endif
601
Guido van Rossum3eede5a2002-06-07 02:08:35 +0000602/* Function to perform the setting of socket blocking mode
603 internally. block = (1 | 0). */
Guido van Rossum67f7a382002-06-06 21:08:16 +0000604static int
605internal_setblocking(PySocketSockObject *s, int block)
606{
Guido van Rossum67f7a382002-06-06 21:08:16 +0000607#ifndef MS_WINDOWS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000608 int delay_flag;
Guido van Rossum67f7a382002-06-06 21:08:16 +0000609#endif
Guido van Rossum67f7a382002-06-06 21:08:16 +0000610
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000611 Py_BEGIN_ALLOW_THREADS
Guido van Rossum67f7a382002-06-06 21:08:16 +0000612#ifndef MS_WINDOWS
613#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000614 block = !block;
615 ioctl(s->sock_fd, FIONBIO, (caddr_t)&block, sizeof(block));
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000616#elif defined(__VMS)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000617 block = !block;
618 ioctl(s->sock_fd, FIONBIO, (unsigned int *)&block);
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000619#else /* !PYOS_OS2 && !__VMS */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000620 delay_flag = fcntl(s->sock_fd, F_GETFL, 0);
621 if (block)
622 delay_flag &= (~O_NONBLOCK);
623 else
624 delay_flag |= O_NONBLOCK;
625 fcntl(s->sock_fd, F_SETFL, delay_flag);
Guido van Rossum67f7a382002-06-06 21:08:16 +0000626#endif /* !PYOS_OS2 */
627#else /* MS_WINDOWS */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000628 block = !block;
629 ioctlsocket(s->sock_fd, FIONBIO, (u_long*)&block);
Guido van Rossum67f7a382002-06-06 21:08:16 +0000630#endif /* MS_WINDOWS */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000631 Py_END_ALLOW_THREADS
Guido van Rossum67f7a382002-06-06 21:08:16 +0000632
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000633 /* Since these don't return anything */
634 return 1;
Guido van Rossum67f7a382002-06-06 21:08:16 +0000635}
636
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000637/* Do a select()/poll() on the socket, if necessary (sock_timeout > 0).
Guido van Rossum11ba0942002-06-13 15:07:44 +0000638 The argument writing indicates the direction.
Raymond Hettingeref7343c2003-06-29 03:08:05 +0000639 This does not raise an exception; we'll let our caller do that
640 after they've reacquired the interpreter lock.
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000641 Returns 1 on timeout, -1 on error, 0 otherwise. */
Raymond Hettingeref7343c2003-06-29 03:08:05 +0000642static int
Guido van Rossumb9e916a2002-06-07 01:42:47 +0000643internal_select(PySocketSockObject *s, int writing)
Guido van Rossum67f7a382002-06-06 21:08:16 +0000644{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000645 int n;
Guido van Rossum11ba0942002-06-13 15:07:44 +0000646
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000647 /* Nothing to do unless we're in timeout mode (not non-blocking) */
648 if (s->sock_timeout <= 0.0)
649 return 0;
Guido van Rossum67f7a382002-06-06 21:08:16 +0000650
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000651 /* Guard against closed socket */
652 if (s->sock_fd < 0)
653 return 0;
Guido van Rossumad654902002-07-19 12:44:59 +0000654
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000655 /* Prefer poll, if available, since you can poll() any fd
656 * which can't be done with select(). */
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000657#ifdef HAVE_POLL
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000658 {
659 struct pollfd pollfd;
660 int timeout;
Guido van Rossum67f7a382002-06-06 21:08:16 +0000661
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000662 pollfd.fd = s->sock_fd;
663 pollfd.events = writing ? POLLOUT : POLLIN;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000664
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000665 /* s->sock_timeout is in seconds, timeout in ms */
666 timeout = (int)(s->sock_timeout * 1000 + 0.5);
667 n = poll(&pollfd, 1, timeout);
668 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000669#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000670 {
671 /* Construct the arguments to select */
672 fd_set fds;
673 struct timeval tv;
674 tv.tv_sec = (int)s->sock_timeout;
675 tv.tv_usec = (int)((s->sock_timeout - tv.tv_sec) * 1e6);
676 FD_ZERO(&fds);
677 FD_SET(s->sock_fd, &fds);
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000678
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000679 /* See if the socket is ready */
680 if (writing)
681 n = select(s->sock_fd+1, NULL, &fds, NULL, &tv);
682 else
683 n = select(s->sock_fd+1, &fds, NULL, NULL, &tv);
684 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000685#endif
Guido van Rossum39eb8fa2007-11-16 01:24:05 +0000686
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000687 if (n < 0)
688 return -1;
689 if (n == 0)
690 return 1;
691 return 0;
Guido van Rossum67f7a382002-06-06 21:08:16 +0000692}
693
Guido van Rossum384ca9c2001-10-27 22:20:47 +0000694/* Initialize a new socket object. */
695
Tim Petersa12b4cf2002-07-18 22:38:44 +0000696static double defaulttimeout = -1.0; /* Default timeout for new sockets */
Guido van Rossum9d0c8ce2002-07-18 17:08:35 +0000697
Martin v. Löwis1a214512008-06-11 05:26:20 +0000698static void
Guido van Rossum384ca9c2001-10-27 22:20:47 +0000699init_sockobject(PySocketSockObject *s,
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000700 SOCKET_T fd, int family, int type, int proto)
Guido van Rossum384ca9c2001-10-27 22:20:47 +0000701{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000702 s->sock_fd = fd;
703 s->sock_family = family;
704 s->sock_type = type;
705 s->sock_proto = proto;
706 s->sock_timeout = defaulttimeout;
Guido van Rossum67f7a382002-06-06 21:08:16 +0000707
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000708 s->errorhandler = &set_error;
Guido van Rossum9d0c8ce2002-07-18 17:08:35 +0000709
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000710 if (defaulttimeout >= 0.0)
711 internal_setblocking(s, 0);
Guido van Rossum9d0c8ce2002-07-18 17:08:35 +0000712
Guido van Rossum384ca9c2001-10-27 22:20:47 +0000713}
714
715
Guido van Rossum30a685f1991-06-27 15:51:29 +0000716/* Create a new socket object.
717 This just creates the object and initializes it.
718 If the creation fails, return NULL and set an exception (implicit
719 in NEWOBJ()). */
720
Guido van Rossum73624e91994-10-10 17:59:00 +0000721static PySocketSockObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +0000722new_sockobject(SOCKET_T fd, int family, int type, int proto)
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000723{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000724 PySocketSockObject *s;
725 s = (PySocketSockObject *)
726 PyType_GenericNew(&sock_type, NULL, NULL);
727 if (s != NULL)
728 init_sockobject(s, fd, family, type, proto);
729 return s;
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000730}
731
Guido van Rossum30a685f1991-06-27 15:51:29 +0000732
Guido van Rossum48a680c2001-03-02 06:34:14 +0000733/* Lock to allow python interpreter to continue, but only allow one
Just van Rossum1040d2c2003-05-09 07:53:18 +0000734 thread to be in gethostbyname or getaddrinfo */
735#if defined(USE_GETHOSTBYNAME_LOCK) || defined(USE_GETADDRINFO_LOCK)
736PyThread_type_lock netdb_lock;
Guido van Rossum4f199ea1998-04-09 20:56:35 +0000737#endif
738
739
Guido van Rossum30a685f1991-06-27 15:51:29 +0000740/* Convert a string specifying a host name or one of a few symbolic
741 names to a numeric IP address. This usually calls gethostbyname()
742 to do the work; the names "" and "<broadcast>" are special.
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000743 Return the length (IPv4 should be 4 bytes), or negative if
Guido van Rossum30a685f1991-06-27 15:51:29 +0000744 an error occurred; then an exception is raised. */
745
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000746static int
Martin v. Löwisddc6f472002-07-28 16:10:31 +0000747setipaddr(char *name, struct sockaddr *addr_ret, size_t addr_ret_size, int af)
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000748{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000749 struct addrinfo hints, *res;
750 int error;
751 int d1, d2, d3, d4;
752 char ch;
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000753
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000754 memset((void *) addr_ret, '\0', sizeof(*addr_ret));
755 if (name[0] == '\0') {
756 int siz;
757 memset(&hints, 0, sizeof(hints));
758 hints.ai_family = af;
759 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
760 hints.ai_flags = AI_PASSIVE;
761 Py_BEGIN_ALLOW_THREADS
762 ACQUIRE_GETADDRINFO_LOCK
763 error = getaddrinfo(NULL, "0", &hints, &res);
764 Py_END_ALLOW_THREADS
765 /* We assume that those thread-unsafe getaddrinfo() versions
766 *are* safe regarding their return value, ie. that a
767 subsequent call to getaddrinfo() does not destroy the
768 outcome of the first call. */
769 RELEASE_GETADDRINFO_LOCK
770 if (error) {
771 set_gaierror(error);
772 return -1;
773 }
774 switch (res->ai_family) {
775 case AF_INET:
776 siz = 4;
777 break;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +0000778#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000779 case AF_INET6:
780 siz = 16;
781 break;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000782#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000783 default:
784 freeaddrinfo(res);
785 PyErr_SetString(socket_error,
786 "unsupported address family");
787 return -1;
788 }
789 if (res->ai_next) {
790 freeaddrinfo(res);
791 PyErr_SetString(socket_error,
792 "wildcard resolved to multiple address");
793 return -1;
794 }
795 if (res->ai_addrlen < addr_ret_size)
796 addr_ret_size = res->ai_addrlen;
797 memcpy(addr_ret, res->ai_addr, addr_ret_size);
798 freeaddrinfo(res);
799 return siz;
800 }
801 if (name[0] == '<' && strcmp(name, "<broadcast>") == 0) {
802 struct sockaddr_in *sin;
803 if (af != AF_INET && af != AF_UNSPEC) {
804 PyErr_SetString(socket_error,
805 "address family mismatched");
806 return -1;
807 }
808 sin = (struct sockaddr_in *)addr_ret;
809 memset((void *) sin, '\0', sizeof(*sin));
810 sin->sin_family = AF_INET;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000811#ifdef HAVE_SOCKADDR_SA_LEN
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000812 sin->sin_len = sizeof(*sin);
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000813#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000814 sin->sin_addr.s_addr = INADDR_BROADCAST;
815 return sizeof(sin->sin_addr);
816 }
817 if (sscanf(name, "%d.%d.%d.%d%c", &d1, &d2, &d3, &d4, &ch) == 4 &&
818 0 <= d1 && d1 <= 255 && 0 <= d2 && d2 <= 255 &&
819 0 <= d3 && d3 <= 255 && 0 <= d4 && d4 <= 255) {
820 struct sockaddr_in *sin;
821 sin = (struct sockaddr_in *)addr_ret;
822 sin->sin_addr.s_addr = htonl(
823 ((long) d1 << 24) | ((long) d2 << 16) |
824 ((long) d3 << 8) | ((long) d4 << 0));
825 sin->sin_family = AF_INET;
Anthony Baxter0e85f9d2003-05-02 15:40:46 +0000826#ifdef HAVE_SOCKADDR_SA_LEN
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000827 sin->sin_len = sizeof(*sin);
Anthony Baxter0e85f9d2003-05-02 15:40:46 +0000828#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000829 return 4;
830 }
831 memset(&hints, 0, sizeof(hints));
832 hints.ai_family = af;
833 Py_BEGIN_ALLOW_THREADS
834 ACQUIRE_GETADDRINFO_LOCK
835 error = getaddrinfo(name, NULL, &hints, &res);
Martin v. Löwis7c4b5fa2001-10-25 09:04:03 +0000836#if defined(__digital__) && defined(__unix__)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000837 if (error == EAI_NONAME && af == AF_UNSPEC) {
838 /* On Tru64 V5.1, numeric-to-addr conversion fails
839 if no address family is given. Assume IPv4 for now.*/
840 hints.ai_family = AF_INET;
841 error = getaddrinfo(name, NULL, &hints, &res);
842 }
Martin v. Löwis7c4b5fa2001-10-25 09:04:03 +0000843#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000844 Py_END_ALLOW_THREADS
845 RELEASE_GETADDRINFO_LOCK /* see comment in setipaddr() */
846 if (error) {
847 set_gaierror(error);
848 return -1;
849 }
850 if (res->ai_addrlen < addr_ret_size)
851 addr_ret_size = res->ai_addrlen;
852 memcpy((char *) addr_ret, res->ai_addr, addr_ret_size);
853 freeaddrinfo(res);
854 switch (addr_ret->sa_family) {
855 case AF_INET:
856 return 4;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +0000857#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000858 case AF_INET6:
859 return 16;
Guido van Rossum955becc1999-03-22 20:14:53 +0000860#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000861 default:
862 PyErr_SetString(socket_error, "unknown address family");
863 return -1;
864 }
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000865}
866
Guido van Rossum30a685f1991-06-27 15:51:29 +0000867
Guido van Rossum30a685f1991-06-27 15:51:29 +0000868/* Create a string object representing an IP address.
869 This is always a string of the form 'dd.dd.dd.dd' (with variable
870 size numbers). */
871
Guido van Rossum73624e91994-10-10 17:59:00 +0000872static PyObject *
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000873makeipaddr(struct sockaddr *addr, int addrlen)
Guido van Rossum30a685f1991-06-27 15:51:29 +0000874{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000875 char buf[NI_MAXHOST];
876 int error;
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000877
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000878 error = getnameinfo(addr, addrlen, buf, sizeof(buf), NULL, 0,
879 NI_NUMERICHOST);
880 if (error) {
881 set_gaierror(error);
882 return NULL;
883 }
884 return PyUnicode_FromString(buf);
Guido van Rossum30a685f1991-06-27 15:51:29 +0000885}
886
887
Martin v. Löwis558d9bf2004-06-03 09:24:42 +0000888#ifdef USE_BLUETOOTH
889/* Convert a string representation of a Bluetooth address into a numeric
890 address. Returns the length (6), or raises an exception and returns -1 if
891 an error occurred. */
892
893static int
894setbdaddr(char *name, bdaddr_t *bdaddr)
895{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000896 unsigned int b0, b1, b2, b3, b4, b5;
897 char ch;
898 int n;
Martin v. Löwis558d9bf2004-06-03 09:24:42 +0000899
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000900 n = sscanf(name, "%X:%X:%X:%X:%X:%X%c",
901 &b5, &b4, &b3, &b2, &b1, &b0, &ch);
902 if (n == 6 && (b0 | b1 | b2 | b3 | b4 | b5) < 256) {
903 bdaddr->b[0] = b0;
904 bdaddr->b[1] = b1;
905 bdaddr->b[2] = b2;
906 bdaddr->b[3] = b3;
907 bdaddr->b[4] = b4;
908 bdaddr->b[5] = b5;
909 return 6;
910 } else {
911 PyErr_SetString(socket_error, "bad bluetooth address");
912 return -1;
913 }
Martin v. Löwis558d9bf2004-06-03 09:24:42 +0000914}
915
916/* Create a string representation of the Bluetooth address. This is always a
917 string of the form 'XX:XX:XX:XX:XX:XX' where XX is a two digit hexadecimal
918 value (zero padded if necessary). */
919
920static PyObject *
921makebdaddr(bdaddr_t *bdaddr)
922{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000923 char buf[(6 * 2) + 5 + 1];
Martin v. Löwis558d9bf2004-06-03 09:24:42 +0000924
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000925 sprintf(buf, "%02X:%02X:%02X:%02X:%02X:%02X",
926 bdaddr->b[5], bdaddr->b[4], bdaddr->b[3],
927 bdaddr->b[2], bdaddr->b[1], bdaddr->b[0]);
928 return PyUnicode_FromString(buf);
Martin v. Löwis558d9bf2004-06-03 09:24:42 +0000929}
930#endif
931
932
Guido van Rossum30a685f1991-06-27 15:51:29 +0000933/* Create an object representing the given socket address,
934 suitable for passing it back to bind(), connect() etc.
935 The family field of the sockaddr structure is inspected
936 to determine what kind of address it really is. */
937
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000938/*ARGSUSED*/
Guido van Rossum73624e91994-10-10 17:59:00 +0000939static PyObject *
Martin v. Löwis558d9bf2004-06-03 09:24:42 +0000940makesockaddr(int sockfd, struct sockaddr *addr, int addrlen, int proto)
Guido van Rossum6574b3e1991-06-25 21:36:08 +0000941{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000942 if (addrlen == 0) {
943 /* No address -- may be recvfrom() from known socket */
944 Py_INCREF(Py_None);
945 return Py_None;
946 }
Guido van Rossum25bec8c1992-08-05 19:00:45 +0000947
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000948 switch (addr->sa_family) {
Guido van Rossum30a685f1991-06-27 15:51:29 +0000949
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000950 case AF_INET:
951 {
952 struct sockaddr_in *a;
953 PyObject *addrobj = makeipaddr(addr, sizeof(*a));
954 PyObject *ret = NULL;
955 if (addrobj) {
956 a = (struct sockaddr_in *)addr;
957 ret = Py_BuildValue("Oi", addrobj, ntohs(a->sin_port));
958 Py_DECREF(addrobj);
959 }
960 return ret;
961 }
Guido van Rossum30a685f1991-06-27 15:51:29 +0000962
Andrew MacIntyred12dfbb2004-04-04 07:13:49 +0000963#if defined(AF_UNIX)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000964 case AF_UNIX:
965 {
966 struct sockaddr_un *a = (struct sockaddr_un *) addr;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000967#ifdef linux
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000968 if (a->sun_path[0] == 0) { /* Linux abstract namespace */
969 addrlen -= offsetof(struct sockaddr_un, sun_path);
970 return PyBytes_FromStringAndSize(a->sun_path, addrlen);
971 }
972 else
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000973#endif /* linux */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000974 {
975 /* regular NULL-terminated string */
976 return PyUnicode_FromString(a->sun_path);
977 }
978 }
Martin v. Löwis2d8d4272001-07-21 18:05:31 +0000979#endif /* AF_UNIX */
980
Martin v. Löwis11017b12006-01-14 18:12:57 +0000981#if defined(AF_NETLINK)
982 case AF_NETLINK:
983 {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000984 struct sockaddr_nl *a = (struct sockaddr_nl *) addr;
985 return Py_BuildValue("II", a->nl_pid, a->nl_groups);
Martin v. Löwis11017b12006-01-14 18:12:57 +0000986 }
987#endif /* AF_NETLINK */
988
Martin v. Löwis44ddbde2001-12-02 10:15:37 +0000989#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000990 case AF_INET6:
991 {
992 struct sockaddr_in6 *a;
993 PyObject *addrobj = makeipaddr(addr, sizeof(*a));
994 PyObject *ret = NULL;
995 if (addrobj) {
996 a = (struct sockaddr_in6 *)addr;
997 ret = Py_BuildValue("Oiii",
998 addrobj,
999 ntohs(a->sin6_port),
1000 a->sin6_flowinfo,
1001 a->sin6_scope_id);
1002 Py_DECREF(addrobj);
1003 }
1004 return ret;
1005 }
Jeremy Hylton22308652001-02-02 03:23:09 +00001006#endif
Guido van Rossum30a685f1991-06-27 15:51:29 +00001007
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001008#ifdef USE_BLUETOOTH
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001009 case AF_BLUETOOTH:
1010 switch (proto) {
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001011
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001012 case BTPROTO_L2CAP:
1013 {
1014 struct sockaddr_l2 *a = (struct sockaddr_l2 *) addr;
1015 PyObject *addrobj = makebdaddr(&_BT_L2_MEMB(a, bdaddr));
1016 PyObject *ret = NULL;
1017 if (addrobj) {
1018 ret = Py_BuildValue("Oi",
1019 addrobj,
1020 _BT_L2_MEMB(a, psm));
1021 Py_DECREF(addrobj);
1022 }
1023 return ret;
1024 }
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001025
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001026 case BTPROTO_RFCOMM:
1027 {
1028 struct sockaddr_rc *a = (struct sockaddr_rc *) addr;
1029 PyObject *addrobj = makebdaddr(&_BT_RC_MEMB(a, bdaddr));
1030 PyObject *ret = NULL;
1031 if (addrobj) {
1032 ret = Py_BuildValue("Oi",
1033 addrobj,
1034 _BT_RC_MEMB(a, channel));
1035 Py_DECREF(addrobj);
1036 }
1037 return ret;
1038 }
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001039
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001040 case BTPROTO_HCI:
1041 {
1042 struct sockaddr_hci *a = (struct sockaddr_hci *) addr;
1043 PyObject *ret = NULL;
1044 ret = Py_BuildValue("i", _BT_HCI_MEMB(a, dev));
1045 return ret;
1046 }
Thomas Wouterscf297e42007-02-23 15:07:44 +00001047
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001048#if !defined(__FreeBSD__)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001049 case BTPROTO_SCO:
1050 {
1051 struct sockaddr_sco *a = (struct sockaddr_sco *) addr;
1052 return makebdaddr(&_BT_SCO_MEMB(a, bdaddr));
1053 }
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001054#endif
1055
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001056 default:
1057 PyErr_SetString(PyExc_ValueError,
1058 "Unknown Bluetooth protocol");
1059 return NULL;
1060 }
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001061#endif
1062
Martin v. Löwis1ba3fd52001-08-10 20:29:40 +00001063#ifdef HAVE_NETPACKET_PACKET_H
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001064 case AF_PACKET:
1065 {
1066 struct sockaddr_ll *a = (struct sockaddr_ll *)addr;
1067 char *ifname = "";
1068 struct ifreq ifr;
1069 /* need to look up interface name give index */
1070 if (a->sll_ifindex) {
1071 ifr.ifr_ifindex = a->sll_ifindex;
1072 if (ioctl(sockfd, SIOCGIFNAME, &ifr) == 0)
1073 ifname = ifr.ifr_name;
1074 }
1075 return Py_BuildValue("shbhy#",
1076 ifname,
1077 ntohs(a->sll_protocol),
1078 a->sll_pkttype,
1079 a->sll_hatype,
1080 a->sll_addr,
1081 a->sll_halen);
1082 }
Jeremy Hylton22308652001-02-02 03:23:09 +00001083#endif
Guido van Rossum48a680c2001-03-02 06:34:14 +00001084
Christian Heimes043d6f62008-01-07 17:19:16 +00001085#ifdef HAVE_LINUX_TIPC_H
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001086 case AF_TIPC:
1087 {
1088 struct sockaddr_tipc *a = (struct sockaddr_tipc *) addr;
1089 if (a->addrtype == TIPC_ADDR_NAMESEQ) {
1090 return Py_BuildValue("IIIII",
1091 a->addrtype,
1092 a->addr.nameseq.type,
1093 a->addr.nameseq.lower,
1094 a->addr.nameseq.upper,
1095 a->scope);
1096 } else if (a->addrtype == TIPC_ADDR_NAME) {
1097 return Py_BuildValue("IIIII",
1098 a->addrtype,
1099 a->addr.name.name.type,
1100 a->addr.name.name.instance,
1101 a->addr.name.name.instance,
1102 a->scope);
1103 } else if (a->addrtype == TIPC_ADDR_ID) {
1104 return Py_BuildValue("IIIII",
1105 a->addrtype,
1106 a->addr.id.node,
1107 a->addr.id.ref,
1108 0,
1109 a->scope);
1110 } else {
1111 PyErr_SetString(PyExc_ValueError,
1112 "Invalid address type");
1113 return NULL;
1114 }
1115 }
Christian Heimes043d6f62008-01-07 17:19:16 +00001116#endif
1117
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001118 /* More cases here... */
Guido van Rossum30a685f1991-06-27 15:51:29 +00001119
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001120 default:
1121 /* If we don't know the address family, don't raise an
1122 exception -- return it as an (int, bytes) tuple. */
1123 return Py_BuildValue("iy#",
1124 addr->sa_family,
1125 addr->sa_data,
1126 sizeof(addr->sa_data));
Guido van Rossum25bec8c1992-08-05 19:00:45 +00001127
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001128 }
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001129}
1130
Guido van Rossum30a685f1991-06-27 15:51:29 +00001131
1132/* Parse a socket address argument according to the socket object's
1133 address family. Return 1 if the address was in the proper format,
1134 0 of not. The address is returned through addr_ret, its length
1135 through len_ret. */
1136
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001137static int
Guido van Rossum48a680c2001-03-02 06:34:14 +00001138getsockaddrarg(PySocketSockObject *s, PyObject *args,
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001139 struct sockaddr *addr_ret, int *len_ret)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001140{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001141 switch (s->sock_family) {
Guido van Rossum30a685f1991-06-27 15:51:29 +00001142
Andrew MacIntyred12dfbb2004-04-04 07:13:49 +00001143#if defined(AF_UNIX)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001144 case AF_UNIX:
1145 {
1146 struct sockaddr_un* addr;
1147 char *path;
1148 int len;
1149 if (!PyArg_Parse(args, "s#", &path, &len))
1150 return 0;
Thomas Wouters89f507f2006-12-13 04:49:30 +00001151
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001152 addr = (struct sockaddr_un*)addr_ret;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001153#ifdef linux
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001154 if (len > 0 && path[0] == 0) {
1155 /* Linux abstract namespace extension */
1156 if (len > sizeof addr->sun_path) {
1157 PyErr_SetString(socket_error,
1158 "AF_UNIX path too long");
1159 return 0;
1160 }
1161 }
1162 else
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001163#endif /* linux */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001164 {
1165 /* regular NULL-terminated string */
1166 if (len >= sizeof addr->sun_path) {
1167 PyErr_SetString(socket_error,
1168 "AF_UNIX path too long");
1169 return 0;
1170 }
1171 addr->sun_path[len] = 0;
1172 }
1173 addr->sun_family = s->sock_family;
1174 memcpy(addr->sun_path, path, len);
Andrew MacIntyredaedf212004-04-11 12:03:57 +00001175#if defined(PYOS_OS2)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001176 *len_ret = sizeof(*addr);
Andrew MacIntyredaedf212004-04-11 12:03:57 +00001177#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001178 *len_ret = len + offsetof(struct sockaddr_un, sun_path);
Andrew MacIntyredaedf212004-04-11 12:03:57 +00001179#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001180 return 1;
1181 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00001182#endif /* AF_UNIX */
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001183
Martin v. Löwis11017b12006-01-14 18:12:57 +00001184#if defined(AF_NETLINK)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001185 case AF_NETLINK:
1186 {
1187 struct sockaddr_nl* addr;
1188 int pid, groups;
1189 addr = (struct sockaddr_nl *)addr_ret;
1190 if (!PyTuple_Check(args)) {
1191 PyErr_Format(
1192 PyExc_TypeError,
1193 "getsockaddrarg: "
1194 "AF_NETLINK address must be tuple, not %.500s",
1195 Py_TYPE(args)->tp_name);
1196 return 0;
1197 }
1198 if (!PyArg_ParseTuple(args, "II:getsockaddrarg", &pid, &groups))
1199 return 0;
1200 addr->nl_family = AF_NETLINK;
1201 addr->nl_pid = pid;
1202 addr->nl_groups = groups;
1203 *len_ret = sizeof(*addr);
1204 return 1;
1205 }
Martin v. Löwis11017b12006-01-14 18:12:57 +00001206#endif
1207
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001208 case AF_INET:
1209 {
1210 struct sockaddr_in* addr;
1211 char *host;
1212 int port, result;
1213 if (!PyTuple_Check(args)) {
1214 PyErr_Format(
1215 PyExc_TypeError,
1216 "getsockaddrarg: "
1217 "AF_INET address must be tuple, not %.500s",
1218 Py_TYPE(args)->tp_name);
1219 return 0;
1220 }
1221 if (!PyArg_ParseTuple(args, "eti:getsockaddrarg",
1222 "idna", &host, &port))
1223 return 0;
1224 addr=(struct sockaddr_in*)addr_ret;
1225 result = setipaddr(host, (struct sockaddr *)addr,
1226 sizeof(*addr), AF_INET);
1227 PyMem_Free(host);
1228 if (result < 0)
1229 return 0;
1230 if (port < 0 || port > 0xffff) {
1231 PyErr_SetString(
1232 PyExc_OverflowError,
1233 "getsockaddrarg: port must be 0-65535.");
1234 return 0;
1235 }
1236 addr->sin_family = AF_INET;
1237 addr->sin_port = htons((short)port);
1238 *len_ret = sizeof *addr;
1239 return 1;
1240 }
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001241
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001242#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001243 case AF_INET6:
1244 {
1245 struct sockaddr_in6* addr;
1246 char *host;
1247 int port, flowinfo, scope_id, result;
1248 flowinfo = scope_id = 0;
1249 if (!PyTuple_Check(args)) {
1250 PyErr_Format(
1251 PyExc_TypeError,
1252 "getsockaddrarg: "
1253 "AF_INET6 address must be tuple, not %.500s",
1254 Py_TYPE(args)->tp_name);
1255 return 0;
1256 }
1257 if (!PyArg_ParseTuple(args, "eti|ii",
1258 "idna", &host, &port, &flowinfo,
1259 &scope_id)) {
1260 return 0;
1261 }
1262 addr = (struct sockaddr_in6*)addr_ret;
1263 result = setipaddr(host, (struct sockaddr *)addr,
1264 sizeof(*addr), AF_INET6);
1265 PyMem_Free(host);
1266 if (result < 0)
1267 return 0;
1268 if (port < 0 || port > 0xffff) {
1269 PyErr_SetString(
1270 PyExc_OverflowError,
1271 "getsockaddrarg: port must be 0-65535.");
1272 return 0;
1273 }
1274 addr->sin6_family = s->sock_family;
1275 addr->sin6_port = htons((short)port);
1276 addr->sin6_flowinfo = flowinfo;
1277 addr->sin6_scope_id = scope_id;
1278 *len_ret = sizeof *addr;
1279 return 1;
1280 }
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00001281#endif
1282
Hye-Shik Chang81268602004-02-02 06:05:24 +00001283#ifdef USE_BLUETOOTH
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001284 case AF_BLUETOOTH:
1285 {
1286 switch (s->sock_proto) {
1287 case BTPROTO_L2CAP:
1288 {
1289 struct sockaddr_l2 *addr;
1290 char *straddr;
Martin v. Löwis12af0482004-01-31 12:34:17 +00001291
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001292 addr = (struct sockaddr_l2 *)addr_ret;
1293 memset(addr, 0, sizeof(struct sockaddr_l2));
1294 _BT_L2_MEMB(addr, family) = AF_BLUETOOTH;
1295 if (!PyArg_ParseTuple(args, "si", &straddr,
1296 &_BT_L2_MEMB(addr, psm))) {
1297 PyErr_SetString(socket_error, "getsockaddrarg: "
1298 "wrong format");
1299 return 0;
1300 }
1301 if (setbdaddr(straddr, &_BT_L2_MEMB(addr, bdaddr)) < 0)
1302 return 0;
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001303
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001304 *len_ret = sizeof *addr;
1305 return 1;
1306 }
1307 case BTPROTO_RFCOMM:
1308 {
1309 struct sockaddr_rc *addr;
1310 char *straddr;
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001311
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001312 addr = (struct sockaddr_rc *)addr_ret;
1313 _BT_RC_MEMB(addr, family) = AF_BLUETOOTH;
1314 if (!PyArg_ParseTuple(args, "si", &straddr,
1315 &_BT_RC_MEMB(addr, channel))) {
1316 PyErr_SetString(socket_error, "getsockaddrarg: "
1317 "wrong format");
1318 return 0;
1319 }
1320 if (setbdaddr(straddr, &_BT_RC_MEMB(addr, bdaddr)) < 0)
1321 return 0;
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001322
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001323 *len_ret = sizeof *addr;
1324 return 1;
1325 }
1326 case BTPROTO_HCI:
1327 {
1328 struct sockaddr_hci *addr = (struct sockaddr_hci *)addr_ret;
1329 _BT_HCI_MEMB(addr, family) = AF_BLUETOOTH;
1330 if (!PyArg_ParseTuple(args, "i", &_BT_HCI_MEMB(addr, dev))) {
1331 PyErr_SetString(socket_error, "getsockaddrarg: "
1332 "wrong format");
1333 return 0;
1334 }
1335 *len_ret = sizeof *addr;
1336 return 1;
1337 }
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001338#if !defined(__FreeBSD__)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001339 case BTPROTO_SCO:
1340 {
1341 struct sockaddr_sco *addr;
1342 char *straddr;
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001343
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001344 addr = (struct sockaddr_sco *)addr_ret;
1345 _BT_SCO_MEMB(addr, family) = AF_BLUETOOTH;
1346 if (!PyBytes_Check(args)) {
1347 PyErr_SetString(socket_error, "getsockaddrarg: "
1348 "wrong format");
1349 return 0;
1350 }
1351 straddr = PyBytes_AS_STRING(args);
1352 if (setbdaddr(straddr, &_BT_SCO_MEMB(addr, bdaddr)) < 0)
1353 return 0;
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001354
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001355 *len_ret = sizeof *addr;
1356 return 1;
1357 }
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001358#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001359 default:
1360 PyErr_SetString(socket_error, "getsockaddrarg: unknown Bluetooth protocol");
1361 return 0;
1362 }
1363 }
Martin v. Löwis12af0482004-01-31 12:34:17 +00001364#endif
1365
Martin v. Löwis1ba3fd52001-08-10 20:29:40 +00001366#ifdef HAVE_NETPACKET_PACKET_H
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001367 case AF_PACKET:
1368 {
1369 struct sockaddr_ll* addr;
1370 struct ifreq ifr;
1371 char *interfaceName;
1372 int protoNumber;
1373 int hatype = 0;
1374 int pkttype = 0;
1375 char *haddr = NULL;
1376 unsigned int halen = 0;
Guido van Rossum48a680c2001-03-02 06:34:14 +00001377
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001378 if (!PyTuple_Check(args)) {
1379 PyErr_Format(
1380 PyExc_TypeError,
1381 "getsockaddrarg: "
1382 "AF_PACKET address must be tuple, not %.500s",
1383 Py_TYPE(args)->tp_name);
1384 return 0;
1385 }
1386 if (!PyArg_ParseTuple(args, "si|iiy#", &interfaceName,
1387 &protoNumber, &pkttype, &hatype,
1388 &haddr, &halen))
1389 return 0;
1390 strncpy(ifr.ifr_name, interfaceName, sizeof(ifr.ifr_name));
1391 ifr.ifr_name[(sizeof(ifr.ifr_name))-1] = '\0';
1392 if (ioctl(s->sock_fd, SIOCGIFINDEX, &ifr) < 0) {
1393 s->errorhandler();
1394 return 0;
1395 }
1396 if (halen > 8) {
1397 PyErr_SetString(PyExc_ValueError,
1398 "Hardware address must be 8 bytes or less");
1399 return 0;
1400 }
1401 if (protoNumber < 0 || protoNumber > 0xffff) {
1402 PyErr_SetString(
1403 PyExc_OverflowError,
1404 "getsockaddrarg: protoNumber must be 0-65535.");
1405 return 0;
1406 }
1407 addr = (struct sockaddr_ll*)addr_ret;
1408 addr->sll_family = AF_PACKET;
1409 addr->sll_protocol = htons((short)protoNumber);
1410 addr->sll_ifindex = ifr.ifr_ifindex;
1411 addr->sll_pkttype = pkttype;
1412 addr->sll_hatype = hatype;
1413 if (halen != 0) {
1414 memcpy(&addr->sll_addr, haddr, halen);
1415 }
1416 addr->sll_halen = halen;
1417 *len_ret = sizeof *addr;
1418 return 1;
1419 }
Guido van Rossum48a680c2001-03-02 06:34:14 +00001420#endif
1421
Christian Heimes043d6f62008-01-07 17:19:16 +00001422#ifdef HAVE_LINUX_TIPC_H
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001423 case AF_TIPC:
1424 {
1425 unsigned int atype, v1, v2, v3;
1426 unsigned int scope = TIPC_CLUSTER_SCOPE;
1427 struct sockaddr_tipc *addr;
Christian Heimes043d6f62008-01-07 17:19:16 +00001428
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001429 if (!PyTuple_Check(args)) {
1430 PyErr_Format(
1431 PyExc_TypeError,
1432 "getsockaddrarg: "
1433 "AF_TIPC address must be tuple, not %.500s",
1434 Py_TYPE(args)->tp_name);
1435 return 0;
1436 }
Christian Heimes043d6f62008-01-07 17:19:16 +00001437
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001438 if (!PyArg_ParseTuple(args,
1439 "IIII|I;Invalid TIPC address format",
1440 &atype, &v1, &v2, &v3, &scope))
1441 return 0;
Christian Heimes043d6f62008-01-07 17:19:16 +00001442
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001443 addr = (struct sockaddr_tipc *) addr_ret;
1444 memset(addr, 0, sizeof(struct sockaddr_tipc));
Christian Heimes043d6f62008-01-07 17:19:16 +00001445
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001446 addr->family = AF_TIPC;
1447 addr->scope = scope;
1448 addr->addrtype = atype;
Christian Heimes043d6f62008-01-07 17:19:16 +00001449
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001450 if (atype == TIPC_ADDR_NAMESEQ) {
1451 addr->addr.nameseq.type = v1;
1452 addr->addr.nameseq.lower = v2;
1453 addr->addr.nameseq.upper = v3;
1454 } else if (atype == TIPC_ADDR_NAME) {
1455 addr->addr.name.name.type = v1;
1456 addr->addr.name.name.instance = v2;
1457 } else if (atype == TIPC_ADDR_ID) {
1458 addr->addr.id.node = v1;
1459 addr->addr.id.ref = v2;
1460 } else {
1461 /* Shouldn't happen */
1462 PyErr_SetString(PyExc_TypeError, "Invalid address type");
1463 return 0;
1464 }
Christian Heimes043d6f62008-01-07 17:19:16 +00001465
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001466 *len_ret = sizeof(*addr);
Christian Heimes043d6f62008-01-07 17:19:16 +00001467
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001468 return 1;
1469 }
Christian Heimes043d6f62008-01-07 17:19:16 +00001470#endif
1471
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001472 /* More cases here... */
Guido van Rossum30a685f1991-06-27 15:51:29 +00001473
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001474 default:
1475 PyErr_SetString(socket_error, "getsockaddrarg: bad family");
1476 return 0;
Guido van Rossum30a685f1991-06-27 15:51:29 +00001477
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001478 }
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001479}
1480
Guido van Rossum30a685f1991-06-27 15:51:29 +00001481
Guido van Rossum48a680c2001-03-02 06:34:14 +00001482/* Get the address length according to the socket object's address family.
Guido van Rossum710e1df1992-06-12 10:39:36 +00001483 Return 1 if the family is known, 0 otherwise. The length is returned
1484 through len_ret. */
1485
1486static int
Peter Schneider-Kamp618e25d2000-07-11 23:00:12 +00001487getsockaddrlen(PySocketSockObject *s, socklen_t *len_ret)
Guido van Rossum710e1df1992-06-12 10:39:36 +00001488{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001489 switch (s->sock_family) {
Guido van Rossum710e1df1992-06-12 10:39:36 +00001490
Andrew MacIntyred12dfbb2004-04-04 07:13:49 +00001491#if defined(AF_UNIX)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001492 case AF_UNIX:
1493 {
1494 *len_ret = sizeof (struct sockaddr_un);
1495 return 1;
1496 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00001497#endif /* AF_UNIX */
Martin v. Löwis11017b12006-01-14 18:12:57 +00001498#if defined(AF_NETLINK)
1499 case AF_NETLINK:
1500 {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001501 *len_ret = sizeof (struct sockaddr_nl);
1502 return 1;
Martin v. Löwis11017b12006-01-14 18:12:57 +00001503 }
1504#endif
Guido van Rossum710e1df1992-06-12 10:39:36 +00001505
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001506 case AF_INET:
1507 {
1508 *len_ret = sizeof (struct sockaddr_in);
1509 return 1;
1510 }
Guido van Rossum710e1df1992-06-12 10:39:36 +00001511
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001512#ifdef ENABLE_IPV6
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001513 case AF_INET6:
1514 {
1515 *len_ret = sizeof (struct sockaddr_in6);
1516 return 1;
1517 }
Martin v. Löwis2d8d4272001-07-21 18:05:31 +00001518#endif
1519
Hye-Shik Chang81268602004-02-02 06:05:24 +00001520#ifdef USE_BLUETOOTH
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001521 case AF_BLUETOOTH:
1522 {
1523 switch(s->sock_proto)
1524 {
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001525
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001526 case BTPROTO_L2CAP:
1527 *len_ret = sizeof (struct sockaddr_l2);
1528 return 1;
1529 case BTPROTO_RFCOMM:
1530 *len_ret = sizeof (struct sockaddr_rc);
1531 return 1;
1532 case BTPROTO_HCI:
1533 *len_ret = sizeof (struct sockaddr_hci);
1534 return 1;
Hye-Shik Chang81268602004-02-02 06:05:24 +00001535#if !defined(__FreeBSD__)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001536 case BTPROTO_SCO:
1537 *len_ret = sizeof (struct sockaddr_sco);
1538 return 1;
Hye-Shik Chang81268602004-02-02 06:05:24 +00001539#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001540 default:
1541 PyErr_SetString(socket_error, "getsockaddrlen: "
1542 "unknown BT protocol");
1543 return 0;
Martin v. Löwis558d9bf2004-06-03 09:24:42 +00001544
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001545 }
1546 }
Martin v. Löwis12af0482004-01-31 12:34:17 +00001547#endif
1548
Martin v. Löwis1ba3fd52001-08-10 20:29:40 +00001549#ifdef HAVE_NETPACKET_PACKET_H
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001550 case AF_PACKET:
1551 {
1552 *len_ret = sizeof (struct sockaddr_ll);
1553 return 1;
1554 }
Jeremy Hylton22308652001-02-02 03:23:09 +00001555#endif
Guido van Rossum48a680c2001-03-02 06:34:14 +00001556
Christian Heimes043d6f62008-01-07 17:19:16 +00001557#ifdef HAVE_LINUX_TIPC_H
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001558 case AF_TIPC:
1559 {
1560 *len_ret = sizeof (struct sockaddr_tipc);
1561 return 1;
1562 }
Christian Heimes043d6f62008-01-07 17:19:16 +00001563#endif
1564
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001565 /* More cases here... */
Guido van Rossum710e1df1992-06-12 10:39:36 +00001566
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001567 default:
1568 PyErr_SetString(socket_error, "getsockaddrlen: bad family");
1569 return 0;
Guido van Rossum710e1df1992-06-12 10:39:36 +00001570
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001571 }
Guido van Rossum710e1df1992-06-12 10:39:36 +00001572}
1573
1574
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00001575/* s._accept() -> (fd, address) */
Guido van Rossum30a685f1991-06-27 15:51:29 +00001576
Guido van Rossum73624e91994-10-10 17:59:00 +00001577static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001578sock_accept(PySocketSockObject *s)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001579{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001580 sock_addr_t addrbuf;
1581 SOCKET_T newfd = INVALID_SOCKET;
1582 socklen_t addrlen;
1583 PyObject *sock = NULL;
1584 PyObject *addr = NULL;
1585 PyObject *res = NULL;
1586 int timeout;
Barry Warsaw752300b1997-01-03 17:18:10 +00001587
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001588 if (!getsockaddrlen(s, &addrlen))
1589 return NULL;
1590 memset(&addrbuf, 0, addrlen);
Guido van Rossum67f7a382002-06-06 21:08:16 +00001591
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001592 if (!IS_SELECTABLE(s))
1593 return select_error();
Neal Norwitz082b2df2006-02-07 07:04:46 +00001594
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001595 Py_BEGIN_ALLOW_THREADS
1596 timeout = internal_select(s, 0);
1597 if (!timeout)
1598 newfd = accept(s->sock_fd, SAS2SA(&addrbuf), &addrlen);
1599 Py_END_ALLOW_THREADS
Guido van Rossum67f7a382002-06-06 21:08:16 +00001600
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001601 if (timeout == 1) {
1602 PyErr_SetString(socket_timeout, "timed out");
1603 return NULL;
1604 }
Raymond Hettingeref7343c2003-06-29 03:08:05 +00001605
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001606 if (newfd == INVALID_SOCKET)
1607 return s->errorhandler();
Barry Warsaw752300b1997-01-03 17:18:10 +00001608
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001609 sock = PyLong_FromSocket_t(newfd);
1610 if (sock == NULL) {
1611 SOCKETCLOSE(newfd);
1612 goto finally;
1613 }
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00001614
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001615 addr = makesockaddr(s->sock_fd, SAS2SA(&addrbuf),
1616 addrlen, s->sock_proto);
1617 if (addr == NULL)
1618 goto finally;
Barry Warsaw752300b1997-01-03 17:18:10 +00001619
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001620 res = PyTuple_Pack(2, sock, addr);
Barry Warsaw752300b1997-01-03 17:18:10 +00001621
Guido van Rossum67f7a382002-06-06 21:08:16 +00001622finally:
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001623 Py_XDECREF(sock);
1624 Py_XDECREF(addr);
1625 return res;
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001626}
1627
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001628PyDoc_STRVAR(accept_doc,
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00001629"_accept() -> (integer, address info)\n\
Guido van Rossum82a5c661998-07-07 20:45:43 +00001630\n\
Guido van Rossum39eb8fa2007-11-16 01:24:05 +00001631Wait for an incoming connection. Return a new socket file descriptor\n\
1632representing the connection, and the address of the client.\n\
1633For IP sockets, the address info is a pair (hostaddr, port).");
Guido van Rossum82a5c661998-07-07 20:45:43 +00001634
Guido van Rossum11ba0942002-06-13 15:07:44 +00001635/* s.setblocking(flag) method. Argument:
1636 False -- non-blocking mode; same as settimeout(0)
1637 True -- blocking mode; same as settimeout(None)
1638*/
Guido van Rossume4485b01994-09-07 14:32:49 +00001639
Guido van Rossum73624e91994-10-10 17:59:00 +00001640static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001641sock_setblocking(PySocketSockObject *s, PyObject *arg)
Guido van Rossume4485b01994-09-07 14:32:49 +00001642{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001643 int block;
Guido van Rossum67f7a382002-06-06 21:08:16 +00001644
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001645 block = PyLong_AsLong(arg);
1646 if (block == -1 && PyErr_Occurred())
1647 return NULL;
Guido van Rossum67f7a382002-06-06 21:08:16 +00001648
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001649 s->sock_timeout = block ? -1.0 : 0.0;
1650 internal_setblocking(s, block);
Guido van Rossume4485b01994-09-07 14:32:49 +00001651
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001652 Py_INCREF(Py_None);
1653 return Py_None;
Guido van Rossume4485b01994-09-07 14:32:49 +00001654}
Guido van Rossume4485b01994-09-07 14:32:49 +00001655
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001656PyDoc_STRVAR(setblocking_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00001657"setblocking(flag)\n\
1658\n\
1659Set the socket to blocking (flag is true) or non-blocking (false).\n\
Guido van Rossum11ba0942002-06-13 15:07:44 +00001660setblocking(True) is equivalent to settimeout(None);\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001661setblocking(False) is equivalent to settimeout(0.0).");
Guido van Rossum82a5c661998-07-07 20:45:43 +00001662
Guido van Rossum11ba0942002-06-13 15:07:44 +00001663/* s.settimeout(timeout) method. Argument:
1664 None -- no timeout, blocking mode; same as setblocking(True)
1665 0.0 -- non-blocking mode; same as setblocking(False)
1666 > 0 -- timeout mode; operations time out after timeout seconds
1667 < 0 -- illegal; raises an exception
1668*/
Guido van Rossum67f7a382002-06-06 21:08:16 +00001669static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001670sock_settimeout(PySocketSockObject *s, PyObject *arg)
Guido van Rossum67f7a382002-06-06 21:08:16 +00001671{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001672 double timeout;
Guido van Rossum67f7a382002-06-06 21:08:16 +00001673
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001674 if (arg == Py_None)
1675 timeout = -1.0;
1676 else {
1677 timeout = PyFloat_AsDouble(arg);
1678 if (timeout < 0.0) {
1679 if (!PyErr_Occurred())
1680 PyErr_SetString(PyExc_ValueError,
1681 "Timeout value out of range");
1682 return NULL;
1683 }
1684 }
Guido van Rossum67f7a382002-06-06 21:08:16 +00001685
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001686 s->sock_timeout = timeout;
1687 internal_setblocking(s, timeout < 0.0);
Guido van Rossum67f7a382002-06-06 21:08:16 +00001688
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001689 Py_INCREF(Py_None);
1690 return Py_None;
Guido van Rossum67f7a382002-06-06 21:08:16 +00001691}
1692
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001693PyDoc_STRVAR(settimeout_doc,
Guido van Rossum3eede5a2002-06-07 02:08:35 +00001694"settimeout(timeout)\n\
Guido van Rossum67f7a382002-06-06 21:08:16 +00001695\n\
Guido van Rossum11ba0942002-06-13 15:07:44 +00001696Set a timeout on socket operations. 'timeout' can be a float,\n\
1697giving in seconds, or None. Setting a timeout of None disables\n\
1698the timeout feature and is equivalent to setblocking(1).\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001699Setting a timeout of zero is the same as setblocking(0).");
Guido van Rossum67f7a382002-06-06 21:08:16 +00001700
Guido van Rossum3eede5a2002-06-07 02:08:35 +00001701/* s.gettimeout() method.
1702 Returns the timeout associated with a socket. */
Guido van Rossum67f7a382002-06-06 21:08:16 +00001703static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001704sock_gettimeout(PySocketSockObject *s)
Guido van Rossum67f7a382002-06-06 21:08:16 +00001705{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001706 if (s->sock_timeout < 0.0) {
1707 Py_INCREF(Py_None);
1708 return Py_None;
1709 }
1710 else
1711 return PyFloat_FromDouble(s->sock_timeout);
Guido van Rossum67f7a382002-06-06 21:08:16 +00001712}
1713
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001714PyDoc_STRVAR(gettimeout_doc,
Guido van Rossum22a97152002-08-08 20:37:08 +00001715"gettimeout() -> timeout\n\
Guido van Rossum67f7a382002-06-06 21:08:16 +00001716\n\
1717Returns the timeout in floating seconds associated with socket \n\
1718operations. A timeout of None indicates that timeouts on socket \n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001719operations are disabled.");
Guido van Rossume4485b01994-09-07 14:32:49 +00001720
Guido van Rossumaee08791992-09-08 09:05:33 +00001721/* s.setsockopt() method.
1722 With an integer third argument, sets an integer option.
1723 With a string third argument, sets an option from a buffer;
1724 use optional built-in module 'struct' to encode the string. */
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001725
Guido van Rossum73624e91994-10-10 17:59:00 +00001726static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001727sock_setsockopt(PySocketSockObject *s, PyObject *args)
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001728{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001729 int level;
1730 int optname;
1731 int res;
1732 char *buf;
1733 int buflen;
1734 int flag;
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001735
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001736 if (PyArg_ParseTuple(args, "iii:setsockopt",
1737 &level, &optname, &flag)) {
1738 buf = (char *) &flag;
1739 buflen = sizeof flag;
1740 }
1741 else {
1742 PyErr_Clear();
1743 if (!PyArg_ParseTuple(args, "iiy#:setsockopt",
1744 &level, &optname, &buf, &buflen))
1745 return NULL;
1746 }
1747 res = setsockopt(s->sock_fd, level, optname, (void *)buf, buflen);
1748 if (res < 0)
1749 return s->errorhandler();
1750 Py_INCREF(Py_None);
1751 return Py_None;
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001752}
1753
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001754PyDoc_STRVAR(setsockopt_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00001755"setsockopt(level, option, value)\n\
1756\n\
1757Set a socket option. See the Unix manual for level and option.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001758The value argument can either be an integer or a string.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00001759
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001760
Guido van Rossumaee08791992-09-08 09:05:33 +00001761/* s.getsockopt() method.
1762 With two arguments, retrieves an integer option.
1763 With a third integer argument, retrieves a string buffer of that size;
1764 use optional built-in module 'struct' to decode the string. */
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001765
Guido van Rossum73624e91994-10-10 17:59:00 +00001766static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001767sock_getsockopt(PySocketSockObject *s, PyObject *args)
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001768{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001769 int level;
1770 int optname;
1771 int res;
1772 PyObject *buf;
1773 socklen_t buflen = 0;
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001774
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001775 if (!PyArg_ParseTuple(args, "ii|i:getsockopt",
1776 &level, &optname, &buflen))
1777 return NULL;
Guido van Rossum48a680c2001-03-02 06:34:14 +00001778
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001779 if (buflen == 0) {
1780 int flag = 0;
1781 socklen_t flagsize = sizeof flag;
1782 res = getsockopt(s->sock_fd, level, optname,
1783 (void *)&flag, &flagsize);
1784 if (res < 0)
1785 return s->errorhandler();
1786 return PyLong_FromLong(flag);
1787 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001788#ifdef __VMS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001789 /* socklen_t is unsigned so no negative test is needed,
1790 test buflen == 0 is previously done */
1791 if (buflen > 1024) {
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001792#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001793 if (buflen <= 0 || buflen > 1024) {
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001794#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001795 PyErr_SetString(socket_error,
1796 "getsockopt buflen out of range");
1797 return NULL;
1798 }
1799 buf = PyBytes_FromStringAndSize((char *)NULL, buflen);
1800 if (buf == NULL)
1801 return NULL;
1802 res = getsockopt(s->sock_fd, level, optname,
1803 (void *)PyBytes_AS_STRING(buf), &buflen);
1804 if (res < 0) {
1805 Py_DECREF(buf);
1806 return s->errorhandler();
1807 }
1808 _PyBytes_Resize(&buf, buflen);
1809 return buf;
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001810}
1811
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001812PyDoc_STRVAR(getsockopt_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00001813"getsockopt(level, option[, buffersize]) -> value\n\
1814\n\
1815Get a socket option. See the Unix manual for level and option.\n\
1816If a nonzero buffersize argument is given, the return value is a\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001817string of that length; otherwise it is an integer.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00001818
Guido van Rossum0e69587d1992-06-05 15:11:30 +00001819
Fred Drake728819a2000-07-01 03:40:12 +00001820/* s.bind(sockaddr) method */
Guido van Rossum30a685f1991-06-27 15:51:29 +00001821
Guido van Rossum73624e91994-10-10 17:59:00 +00001822static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001823sock_bind(PySocketSockObject *s, PyObject *addro)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001824{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001825 sock_addr_t addrbuf;
1826 int addrlen;
1827 int res;
Jeremy Hyltonae0013d2001-10-11 16:36:35 +00001828
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001829 if (!getsockaddrarg(s, addro, SAS2SA(&addrbuf), &addrlen))
1830 return NULL;
1831 Py_BEGIN_ALLOW_THREADS
1832 res = bind(s->sock_fd, SAS2SA(&addrbuf), addrlen);
1833 Py_END_ALLOW_THREADS
1834 if (res < 0)
1835 return s->errorhandler();
1836 Py_INCREF(Py_None);
1837 return Py_None;
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001838}
1839
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001840PyDoc_STRVAR(bind_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00001841"bind(address)\n\
1842\n\
1843Bind the socket to a local address. For IP sockets, the address is a\n\
Jeremy Hylton22308652001-02-02 03:23:09 +00001844pair (host, port); the host must refer to the local host. For raw packet\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001845sockets the address is a tuple (ifname, proto [,pkttype [,hatype]])");
Guido van Rossum82a5c661998-07-07 20:45:43 +00001846
Guido van Rossum30a685f1991-06-27 15:51:29 +00001847
1848/* s.close() method.
1849 Set the file descriptor to -1 so operations tried subsequently
1850 will surely fail. */
1851
Guido van Rossum73624e91994-10-10 17:59:00 +00001852static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00001853sock_close(PySocketSockObject *s)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001854{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001855 SOCKET_T fd;
Jeremy Hyltonae0013d2001-10-11 16:36:35 +00001856
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001857 if ((fd = s->sock_fd) != -1) {
1858 s->sock_fd = -1;
1859 Py_BEGIN_ALLOW_THREADS
1860 (void) SOCKETCLOSE(fd);
1861 Py_END_ALLOW_THREADS
1862 }
1863 Py_INCREF(Py_None);
1864 return Py_None;
Guido van Rossum6574b3e1991-06-25 21:36:08 +00001865}
1866
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001867PyDoc_STRVAR(close_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00001868"close()\n\
1869\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001870Close the socket. It cannot be used after this call.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00001871
Guido van Rossum7b8bac12002-06-13 16:07:04 +00001872static int
Raymond Hettingeref7343c2003-06-29 03:08:05 +00001873internal_connect(PySocketSockObject *s, struct sockaddr *addr, int addrlen,
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001874 int *timeoutp)
Guido van Rossum7b8bac12002-06-13 16:07:04 +00001875{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001876 int res, timeout;
Guido van Rossum7b8bac12002-06-13 16:07:04 +00001877
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001878 timeout = 0;
1879 res = connect(s->sock_fd, addr, addrlen);
Guido van Rossum7b8bac12002-06-13 16:07:04 +00001880
1881#ifdef MS_WINDOWS
1882
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00001883 if (s->sock_timeout > 0.0) {
1884 if (res < 0 && WSAGetLastError() == WSAEWOULDBLOCK &&
1885 IS_SELECTABLE(s)) {
1886 /* This is a mess. Best solution: trust select */
1887 fd_set fds;
1888 fd_set fds_exc;
1889 struct timeval tv;
1890 tv.tv_sec = (int)s->sock_timeout;
1891 tv.tv_usec = (int)((s->sock_timeout - tv.tv_sec) * 1e6);
1892 FD_ZERO(&fds);
1893 FD_SET(s->sock_fd, &fds);
1894 FD_ZERO(&fds_exc);
1895 FD_SET(s->sock_fd, &fds_exc);
1896 res = select(s->sock_fd+1, NULL, &fds, &fds_exc, &tv);
1897 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 */
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002139static ssize_t
Thomas Wouters477c8d52006-05-27 19:21:47 +00002140sock_recv_guts(PySocketSockObject *s, char* cbuf, int len, int flags)
2141{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002142 ssize_t outlen = -1;
2143 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 Pitrou7f14f0d2010-05-09 16:14:21 +00002224 int recvlen, flags = 0;
2225 ssize_t outlen;
2226 PyObject *buf;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002227
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002228 if (!PyArg_ParseTuple(args, "i|i:recv", &recvlen, &flags))
2229 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 Pitrou7f14f0d2010-05-09 16:14:21 +00002275 int recvlen = 0, flags = 0;
2276 ssize_t readlen;
2277 Py_buffer pbuf;
2278 char *buf;
2279 int buflen;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002280
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002281 /* Get the buffer's memory */
2282 if (!PyArg_ParseTupleAndKeywords(args, kwds, "w*|ii:recv_into", kwlist,
2283 &pbuf, &recvlen, &flags))
2284 return NULL;
2285 buf = pbuf.buf;
2286 buflen = pbuf.len;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002287
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002288 if (recvlen < 0) {
2289 PyBuffer_Release(&pbuf);
2290 PyErr_SetString(PyExc_ValueError,
2291 "negative buffersize in recv_into");
2292 return NULL;
2293 }
2294 if (recvlen == 0) {
2295 /* If nbytes was not specified, use the buffer's length */
2296 recvlen = buflen;
2297 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002298
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002299 /* Check if the buffer is large enough */
2300 if (buflen < recvlen) {
2301 PyBuffer_Release(&pbuf);
2302 PyErr_SetString(PyExc_ValueError,
2303 "buffer too small for requested bytes");
2304 return NULL;
2305 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002306
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002307 /* Call the guts */
2308 readlen = sock_recv_guts(s, buf, recvlen, flags);
2309 if (readlen < 0) {
2310 /* Return an error. */
2311 PyBuffer_Release(&pbuf);
2312 return NULL;
2313 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002314
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002315 PyBuffer_Release(&pbuf);
2316 /* Return the number of bytes read. Note that we do not do anything
2317 special here in the case that readlen < recvlen. */
2318 return PyLong_FromSsize_t(readlen);
Thomas Wouters477c8d52006-05-27 19:21:47 +00002319}
2320
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002321PyDoc_STRVAR(recv_into_doc,
2322"recv_into(buffer, [nbytes[, flags]]) -> nbytes_read\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +00002323\n\
2324A version of recv() that stores its data into a buffer rather than creating \n\
2325a new string. Receive up to buffersize bytes from the socket. If buffersize \n\
2326is not specified (or 0), receive up to the size available in the given buffer.\n\
2327\n\
2328See recv() for documentation about the flags.");
2329
2330
2331/*
Christian Heimes99170a52007-12-19 02:07:34 +00002332 * This is the guts of the recvfrom() and recvfrom_into() methods, which reads
2333 * into a char buffer. If you have any inc/def ref to do to the objects that
2334 * contain the buffer, do it in the caller. This function returns the number
2335 * of bytes succesfully read. If there was an error, it returns -1. Note
2336 * that it is also possible that we return a number of bytes smaller than the
2337 * request bytes.
Thomas Wouters477c8d52006-05-27 19:21:47 +00002338 *
2339 * 'addr' is a return value for the address object. Note that you must decref
2340 * it yourself.
2341 */
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002342static ssize_t
Thomas Wouters477c8d52006-05-27 19:21:47 +00002343sock_recvfrom_guts(PySocketSockObject *s, char* cbuf, int len, int flags,
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002344 PyObject** addr)
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002345{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002346 sock_addr_t addrbuf;
2347 int timeout;
2348 ssize_t n = -1;
2349 socklen_t addrlen;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002350
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002351 *addr = NULL;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002352
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002353 if (!getsockaddrlen(s, &addrlen))
2354 return -1;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002355
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002356 if (!IS_SELECTABLE(s)) {
2357 select_error();
2358 return -1;
2359 }
Neal Norwitz082b2df2006-02-07 07:04:46 +00002360
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002361 Py_BEGIN_ALLOW_THREADS
2362 memset(&addrbuf, 0, addrlen);
2363 timeout = internal_select(s, 0);
2364 if (!timeout) {
Guido van Rossum8d665e61996-06-26 18:22:49 +00002365#ifndef MS_WINDOWS
Andrew MacIntyreba43e872002-03-03 03:03:52 +00002366#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002367 n = recvfrom(s->sock_fd, cbuf, len, flags,
2368 SAS2SA(&addrbuf), &addrlen);
Guido van Rossum32c575d1997-12-02 20:37:32 +00002369#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002370 n = recvfrom(s->sock_fd, cbuf, len, flags,
2371 (void *) &addrbuf, &addrlen);
Guido van Rossum32c575d1997-12-02 20:37:32 +00002372#endif
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002373#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002374 n = recvfrom(s->sock_fd, cbuf, len, flags,
2375 SAS2SA(&addrbuf), &addrlen);
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002376#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002377 }
2378 Py_END_ALLOW_THREADS
Guido van Rossum67f7a382002-06-06 21:08:16 +00002379
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002380 if (timeout == 1) {
2381 PyErr_SetString(socket_timeout, "timed out");
2382 return -1;
2383 }
2384 if (n < 0) {
2385 s->errorhandler();
2386 return -1;
2387 }
Guido van Rossum67f7a382002-06-06 21:08:16 +00002388
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002389 if (!(*addr = makesockaddr(s->sock_fd, SAS2SA(&addrbuf),
2390 addrlen, s->sock_proto)))
2391 return -1;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002392
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002393 return n;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002394}
2395
2396/* s.recvfrom(nbytes [,flags]) method */
2397
2398static PyObject *
2399sock_recvfrom(PySocketSockObject *s, PyObject *args)
2400{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002401 PyObject *buf = NULL;
2402 PyObject *addr = NULL;
2403 PyObject *ret = NULL;
2404 int recvlen, flags = 0;
2405 ssize_t outlen;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002406
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002407 if (!PyArg_ParseTuple(args, "i|i:recvfrom", &recvlen, &flags))
2408 return NULL;
Guido van Rossum48a680c2001-03-02 06:34:14 +00002409
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002410 if (recvlen < 0) {
2411 PyErr_SetString(PyExc_ValueError,
2412 "negative buffersize in recvfrom");
2413 return NULL;
2414 }
Guido van Rossumd8faa362007-04-27 19:54:29 +00002415
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002416 buf = PyBytes_FromStringAndSize((char *) 0, recvlen);
2417 if (buf == NULL)
2418 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002419
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002420 outlen = sock_recvfrom_guts(s, PyBytes_AS_STRING(buf),
2421 recvlen, flags, &addr);
2422 if (outlen < 0) {
2423 goto finally;
2424 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002425
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002426 if (outlen != recvlen) {
2427 /* We did not read as many bytes as we anticipated, resize the
2428 string if possible and be succesful. */
2429 if (_PyBytes_Resize(&buf, outlen) < 0)
2430 /* Oopsy, not so succesful after all. */
2431 goto finally;
2432 }
Barry Warsaw752300b1997-01-03 17:18:10 +00002433
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002434 ret = PyTuple_Pack(2, buf, addr);
Guido van Rossum67f7a382002-06-06 21:08:16 +00002435
2436finally:
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002437 Py_XDECREF(buf);
2438 Py_XDECREF(addr);
2439 return ret;
Guido van Rossum6574b3e1991-06-25 21:36:08 +00002440}
2441
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002442PyDoc_STRVAR(recvfrom_doc,
Guido van Rossum82a5c661998-07-07 20:45:43 +00002443"recvfrom(buffersize[, flags]) -> (data, address info)\n\
2444\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002445Like recv(buffersize, flags) but also return the sender's address info.");
Guido van Rossum82a5c661998-07-07 20:45:43 +00002446
Thomas Wouters477c8d52006-05-27 19:21:47 +00002447
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002448/* s.recvfrom_into(buffer[, nbytes [,flags]]) method */
Thomas Wouters477c8d52006-05-27 19:21:47 +00002449
2450static PyObject *
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002451sock_recvfrom_into(PySocketSockObject *s, PyObject *args, PyObject* kwds)
Thomas Wouters477c8d52006-05-27 19:21:47 +00002452{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002453 static char *kwlist[] = {"buffer", "nbytes", "flags", 0};
Thomas Wouters477c8d52006-05-27 19:21:47 +00002454
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002455 int recvlen = 0, flags = 0;
2456 ssize_t readlen;
2457 Py_buffer pbuf;
2458 char *buf;
2459 int buflen;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002460
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002461 PyObject *addr = NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002462
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002463 if (!PyArg_ParseTupleAndKeywords(args, kwds, "w*|ii:recvfrom_into",
2464 kwlist, &pbuf,
2465 &recvlen, &flags))
2466 return NULL;
2467 buf = pbuf.buf;
2468 buflen = pbuf.len;
2469 assert(buf != 0 && buflen > 0);
Thomas Wouters477c8d52006-05-27 19:21:47 +00002470
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002471 if (recvlen < 0) {
2472 PyBuffer_Release(&pbuf);
2473 PyErr_SetString(PyExc_ValueError,
2474 "negative buffersize in recvfrom_into");
2475 return NULL;
2476 }
2477 if (recvlen == 0) {
2478 /* If nbytes was not specified, use the buffer's length */
2479 recvlen = buflen;
2480 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002481
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002482 readlen = sock_recvfrom_guts(s, buf, recvlen, flags, &addr);
2483 if (readlen < 0) {
2484 PyBuffer_Release(&pbuf);
2485 /* Return an error */
2486 Py_XDECREF(addr);
2487 return NULL;
2488 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00002489
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002490 PyBuffer_Release(&pbuf);
2491 /* Return the number of bytes read and the address. Note that we do
2492 not do anything special here in the case that readlen < recvlen. */
2493 return Py_BuildValue("lN", readlen, addr);
Thomas Wouters477c8d52006-05-27 19:21:47 +00002494}
2495
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002496PyDoc_STRVAR(recvfrom_into_doc,
2497"recvfrom_into(buffer[, nbytes[, flags]]) -> (nbytes, address info)\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +00002498\n\
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00002499Like recv_into(buffer[, nbytes[, flags]]) but also return the sender's address info.");
Thomas Wouters477c8d52006-05-27 19:21:47 +00002500
2501
Guido van Rossumeb6b33a1993-05-25 09:38:27 +00002502/* s.send(data [,flags]) method */
Guido van Rossum30a685f1991-06-27 15:51:29 +00002503
Guido van Rossum73624e91994-10-10 17:59:00 +00002504static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002505sock_send(PySocketSockObject *s, PyObject *args)
Guido van Rossum30a685f1991-06-27 15:51:29 +00002506{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002507 char *buf;
2508 int len, n = -1, flags = 0, timeout;
2509 Py_buffer pbuf;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002510
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002511 if (!PyArg_ParseTuple(args, "y*|i:send", &pbuf, &flags))
2512 return NULL;
Guido van Rossum67f7a382002-06-06 21:08:16 +00002513
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002514 if (!IS_SELECTABLE(s)) {
2515 PyBuffer_Release(&pbuf);
2516 return select_error();
2517 }
2518 buf = pbuf.buf;
2519 len = pbuf.len;
Neal Norwitz082b2df2006-02-07 07:04:46 +00002520
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002521 Py_BEGIN_ALLOW_THREADS
2522 timeout = internal_select(s, 1);
2523 if (!timeout)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002524#ifdef __VMS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002525 n = sendsegmented(s->sock_fd, buf, len, flags);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002526#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002527 n = send(s->sock_fd, buf, len, flags);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002528#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002529 Py_END_ALLOW_THREADS
Guido van Rossum67f7a382002-06-06 21:08:16 +00002530
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002531 PyBuffer_Release(&pbuf);
Martin v. Löwis423be952008-08-13 15:53:07 +00002532
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002533 if (timeout == 1) {
2534 PyErr_SetString(socket_timeout, "timed out");
2535 return NULL;
2536 }
2537 if (n < 0)
2538 return s->errorhandler();
2539 return PyLong_FromLong((long)n);
Guido van Rossum30a685f1991-06-27 15:51:29 +00002540}
2541
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002542PyDoc_STRVAR(send_doc,
Guido van Rossum9f7a5392001-10-26 03:25:00 +00002543"send(data[, flags]) -> count\n\
Guido van Rossum82a5c661998-07-07 20:45:43 +00002544\n\
2545Send a data string to the socket. For the optional flags\n\
Guido van Rossum9f7a5392001-10-26 03:25:00 +00002546argument, see the Unix manual. Return the number of bytes\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002547sent; this may be less than len(data) if the network is busy.");
Guido van Rossum9f7a5392001-10-26 03:25:00 +00002548
2549
2550/* s.sendall(data [,flags]) method */
2551
2552static PyObject *
Guido van Rossumc4fcfa32002-06-07 03:19:37 +00002553sock_sendall(PySocketSockObject *s, PyObject *args)
Guido van Rossum9f7a5392001-10-26 03:25:00 +00002554{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00002555 char *buf;
2556 int len, n = -1, flags = 0, timeout;
2557 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();
2653 return PyLong_FromLong((long)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 }
3945 error = getnameinfo(res->ai_addr, res->ai_addrlen,
3946 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