Fred Drake | a6070f0 | 2000-08-16 14:14:32 +0000 | [diff] [blame] | 1 | # Wrapper module for _socket, providing some additional facilities |
| 2 | # implemented in Python. |
| 3 | |
| 4 | """\ |
| 5 | This module provides socket operations and some related functions. |
| 6 | On Unix, it supports IP (Internet Protocol) and Unix domain sockets. |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 7 | On other systems, it only supports IP. Functions specific for a |
Martin v. Löwis | af484d5 | 2000-09-30 11:34:30 +0000 | [diff] [blame] | 8 | socket are available as methods of the socket object. |
Fred Drake | a6070f0 | 2000-08-16 14:14:32 +0000 | [diff] [blame] | 9 | |
| 10 | Functions: |
| 11 | |
| 12 | socket() -- create a new socket object |
Dave Cole | 331708b | 2004-08-09 04:51:41 +0000 | [diff] [blame] | 13 | socketpair() -- create a pair of new socket objects [*] |
Fred Drake | a6070f0 | 2000-08-16 14:14:32 +0000 | [diff] [blame] | 14 | fromfd() -- create a socket object from an open file descriptor [*] |
| 15 | gethostname() -- return the current hostname |
| 16 | gethostbyname() -- map a hostname to its IP number |
| 17 | gethostbyaddr() -- map an IP number or hostname to DNS info |
| 18 | getservbyname() -- map a service name and a protocol name to a port number |
| 19 | getprotobyname() -- mape a protocol name (e.g. 'tcp') to a number |
| 20 | ntohs(), ntohl() -- convert 16, 32 bit int from network to host byte order |
| 21 | htons(), htonl() -- convert 16, 32 bit int from host to network byte order |
| 22 | inet_aton() -- convert IP addr string (123.45.67.89) to 32-bit packed format |
| 23 | inet_ntoa() -- convert 32-bit packed format IP to string (123.45.67.89) |
Guido van Rossum | 9d0c8ce | 2002-07-18 17:08:35 +0000 | [diff] [blame] | 24 | socket.getdefaulttimeout() -- get the default timeout value |
| 25 | socket.setdefaulttimeout() -- set the default timeout value |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 26 | create_connection() -- connects to an address, with an optional timeout |
Fred Drake | a6070f0 | 2000-08-16 14:14:32 +0000 | [diff] [blame] | 27 | |
| 28 | [*] not available on all platforms! |
| 29 | |
| 30 | Special objects: |
| 31 | |
| 32 | SocketType -- type object for socket objects |
| 33 | error -- exception raised for I/O errors |
Guido van Rossum | 47dfa4a | 2003-04-25 05:48:32 +0000 | [diff] [blame] | 34 | has_ipv6 -- boolean value indicating if IPv6 is supported |
Fred Drake | a6070f0 | 2000-08-16 14:14:32 +0000 | [diff] [blame] | 35 | |
| 36 | Integer constants: |
| 37 | |
| 38 | AF_INET, AF_UNIX -- socket domains (first argument to socket() call) |
| 39 | SOCK_STREAM, SOCK_DGRAM, SOCK_RAW -- socket types (second argument) |
| 40 | |
| 41 | Many other constants may be defined; these may be used in calls to |
| 42 | the setsockopt() and getsockopt() methods. |
| 43 | """ |
| 44 | |
Tim Peters | 18e6778 | 2002-02-17 04:25:24 +0000 | [diff] [blame] | 45 | import _socket |
Fred Drake | a6070f0 | 2000-08-16 14:14:32 +0000 | [diff] [blame] | 46 | from _socket import * |
Tim Peters | 18e6778 | 2002-02-17 04:25:24 +0000 | [diff] [blame] | 47 | |
Guido van Rossum | 7d0a826 | 2007-05-21 23:13:11 +0000 | [diff] [blame] | 48 | import os, sys, io |
Fred Drake | a6070f0 | 2000-08-16 14:14:32 +0000 | [diff] [blame] | 49 | |
Fred Drake | 70d566b | 2003-04-29 19:50:25 +0000 | [diff] [blame] | 50 | try: |
| 51 | from errno import EBADF |
| 52 | except ImportError: |
| 53 | EBADF = 9 |
| 54 | |
Skip Montanaro | 0de6580 | 2001-02-15 22:15:14 +0000 | [diff] [blame] | 55 | __all__ = ["getfqdn"] |
Skip Montanaro | 0de6580 | 2001-02-15 22:15:14 +0000 | [diff] [blame] | 56 | __all__.extend(os._get_exports_list(_socket)) |
Thomas Wouters | 47b49bf | 2007-08-30 22:15:33 +0000 | [diff] [blame] | 57 | |
| 58 | |
| 59 | _realsocket = socket |
Skip Montanaro | 0de6580 | 2001-02-15 22:15:14 +0000 | [diff] [blame] | 60 | |
Fred Drake | a6070f0 | 2000-08-16 14:14:32 +0000 | [diff] [blame] | 61 | # WSA error codes |
| 62 | if sys.platform.lower().startswith("win"): |
| 63 | errorTab = {} |
| 64 | errorTab[10004] = "The operation was interrupted." |
| 65 | errorTab[10009] = "A bad file handle was passed." |
| 66 | errorTab[10013] = "Permission denied." |
| 67 | errorTab[10014] = "A fault occurred on the network??" # WSAEFAULT |
| 68 | errorTab[10022] = "An invalid operation was attempted." |
| 69 | errorTab[10035] = "The socket operation would block" |
| 70 | errorTab[10036] = "A blocking operation is already in progress." |
| 71 | errorTab[10048] = "The network address is in use." |
| 72 | errorTab[10054] = "The connection has been reset." |
| 73 | errorTab[10058] = "The network has been shut down." |
| 74 | errorTab[10060] = "The operation timed out." |
| 75 | errorTab[10061] = "Connection refused." |
| 76 | errorTab[10063] = "The name is too long." |
| 77 | errorTab[10064] = "The host is down." |
| 78 | errorTab[10065] = "The host is unreachable." |
Skip Montanaro | 64de1a4 | 2001-03-18 19:53:21 +0000 | [diff] [blame] | 79 | __all__.append("errorTab") |
Guido van Rossum | de7cade | 2002-08-08 15:25:28 +0000 | [diff] [blame] | 80 | |
Fred Drake | a6070f0 | 2000-08-16 14:14:32 +0000 | [diff] [blame] | 81 | |
Guido van Rossum | 93adc5d | 2007-07-17 20:41:19 +0000 | [diff] [blame] | 82 | # True if os.dup() can duplicate socket descriptors. |
| 83 | # (On Windows at least, os.dup only works on files) |
Jeremy Hylton | 5accbdb | 2007-08-03 20:40:09 +0000 | [diff] [blame] | 84 | _can_dup_socket = hasattr(_socket.socket, "dup") |
Guido van Rossum | 93adc5d | 2007-07-17 20:41:19 +0000 | [diff] [blame] | 85 | |
| 86 | if _can_dup_socket: |
Guido van Rossum | 7d0a826 | 2007-05-21 23:13:11 +0000 | [diff] [blame] | 87 | def fromfd(fd, family=AF_INET, type=SOCK_STREAM, proto=0): |
| 88 | nfd = os.dup(fd) |
| 89 | return socket(family, type, proto, fileno=nfd) |
| 90 | |
Guido van Rossum | 7d0a826 | 2007-05-21 23:13:11 +0000 | [diff] [blame] | 91 | class socket(_socket.socket): |
| 92 | |
| 93 | """A subclass of _socket.socket adding the makefile() method.""" |
| 94 | |
Guido van Rossum | 86bc33c | 2007-11-14 22:32:02 +0000 | [diff] [blame^] | 95 | __slots__ = ["__weakref__", "_io_refs", "_closed"] |
Guido van Rossum | 93adc5d | 2007-07-17 20:41:19 +0000 | [diff] [blame] | 96 | if not _can_dup_socket: |
Guido van Rossum | 7d0a826 | 2007-05-21 23:13:11 +0000 | [diff] [blame] | 97 | __slots__.append("_base") |
| 98 | |
Jeremy Hylton | 5accbdb | 2007-08-03 20:40:09 +0000 | [diff] [blame] | 99 | def __init__(self, family=AF_INET, type=SOCK_STREAM, proto=0, fileno=None): |
| 100 | if fileno is None: |
| 101 | _socket.socket.__init__(self, family, type, proto) |
| 102 | else: |
| 103 | _socket.socket.__init__(self, family, type, proto, fileno) |
Guido van Rossum | 86bc33c | 2007-11-14 22:32:02 +0000 | [diff] [blame^] | 104 | self._io_refs = 0 |
| 105 | self._closed = False |
Jeremy Hylton | 5accbdb | 2007-08-03 20:40:09 +0000 | [diff] [blame] | 106 | |
Guido van Rossum | 7d0a826 | 2007-05-21 23:13:11 +0000 | [diff] [blame] | 107 | def __repr__(self): |
| 108 | """Wrap __repr__() to reveal the real class name.""" |
| 109 | s = _socket.socket.__repr__(self) |
| 110 | if s.startswith("<socket object"): |
Guido van Rossum | 86bc33c | 2007-11-14 22:32:02 +0000 | [diff] [blame^] | 111 | s = "<%s.%s%s%s" % (self.__class__.__module__, |
| 112 | self.__class__.__name__, |
| 113 | (self._closed and " [closed] ") or "", |
| 114 | s[7:]) |
Guido van Rossum | 7d0a826 | 2007-05-21 23:13:11 +0000 | [diff] [blame] | 115 | return s |
| 116 | |
| 117 | def accept(self): |
| 118 | """Wrap accept() to give the connection the right type.""" |
| 119 | conn, addr = _socket.socket.accept(self) |
| 120 | fd = conn.fileno() |
| 121 | nfd = fd |
Guido van Rossum | 93adc5d | 2007-07-17 20:41:19 +0000 | [diff] [blame] | 122 | if _can_dup_socket: |
Guido van Rossum | 7d0a826 | 2007-05-21 23:13:11 +0000 | [diff] [blame] | 123 | nfd = os.dup(fd) |
| 124 | wrapper = socket(self.family, self.type, self.proto, fileno=nfd) |
| 125 | if fd == nfd: |
| 126 | wrapper._base = conn # Keep the base alive |
| 127 | else: |
| 128 | conn.close() |
| 129 | return wrapper, addr |
| 130 | |
Guido van Rossum | 7d0a826 | 2007-05-21 23:13:11 +0000 | [diff] [blame] | 131 | def makefile(self, mode="r", buffering=None, *, |
| 132 | encoding=None, newline=None): |
| 133 | """Return an I/O stream connected to the socket. |
| 134 | |
| 135 | The arguments are as for io.open() after the filename, |
| 136 | except the only mode characters supported are 'r', 'w' and 'b'. |
| 137 | The semantics are similar too. (XXX refactor to share code?) |
| 138 | """ |
| 139 | for c in mode: |
| 140 | if c not in {"r", "w", "b"}: |
| 141 | raise ValueError("invalid mode %r (only r, w, b allowed)") |
| 142 | writing = "w" in mode |
| 143 | reading = "r" in mode or not writing |
| 144 | assert reading or writing |
| 145 | binary = "b" in mode |
| 146 | rawmode = "" |
| 147 | if reading: |
| 148 | rawmode += "r" |
| 149 | if writing: |
| 150 | rawmode += "w" |
Guido van Rossum | 86bc33c | 2007-11-14 22:32:02 +0000 | [diff] [blame^] | 151 | raw = SocketIO(self, rawmode) |
| 152 | self._io_refs += 1 |
Guido van Rossum | 7d0a826 | 2007-05-21 23:13:11 +0000 | [diff] [blame] | 153 | if buffering is None: |
| 154 | buffering = -1 |
| 155 | if buffering < 0: |
| 156 | buffering = io.DEFAULT_BUFFER_SIZE |
| 157 | if buffering == 0: |
| 158 | if not binary: |
| 159 | raise ValueError("unbuffered streams must be binary") |
| 160 | raw.name = self.fileno() |
| 161 | raw.mode = mode |
| 162 | return raw |
| 163 | if reading and writing: |
| 164 | buffer = io.BufferedRWPair(raw, raw, buffering) |
| 165 | elif reading: |
| 166 | buffer = io.BufferedReader(raw, buffering) |
| 167 | else: |
| 168 | assert writing |
| 169 | buffer = io.BufferedWriter(raw, buffering) |
| 170 | if binary: |
| 171 | buffer.name = self.fileno() |
| 172 | buffer.mode = mode |
| 173 | return buffer |
| 174 | text = io.TextIOWrapper(buffer, encoding, newline) |
| 175 | text.name = self.fileno() |
Guido van Rossum | 93adc5d | 2007-07-17 20:41:19 +0000 | [diff] [blame] | 176 | text.mode = mode |
Guido van Rossum | 7d0a826 | 2007-05-21 23:13:11 +0000 | [diff] [blame] | 177 | return text |
| 178 | |
Guido van Rossum | 86bc33c | 2007-11-14 22:32:02 +0000 | [diff] [blame^] | 179 | def _decref_socketios(self): |
| 180 | if self._io_refs > 0: |
| 181 | self._io_refs -= 1 |
| 182 | if self._closed: |
| 183 | self.close() |
| 184 | |
Jeremy Hylton | 5accbdb | 2007-08-03 20:40:09 +0000 | [diff] [blame] | 185 | def close(self): |
Guido van Rossum | 86bc33c | 2007-11-14 22:32:02 +0000 | [diff] [blame^] | 186 | self._closed = True |
| 187 | if self._io_refs < 1: |
Jeremy Hylton | 5accbdb | 2007-08-03 20:40:09 +0000 | [diff] [blame] | 188 | self._real_close() |
Jeremy Hylton | 5accbdb | 2007-08-03 20:40:09 +0000 | [diff] [blame] | 189 | |
| 190 | # _real_close calls close on the _socket.socket base class. |
| 191 | |
| 192 | if not _can_dup_socket: |
| 193 | def _real_close(self): |
| 194 | _socket.socket.close(self) |
| 195 | base = getattr(self, "_base", None) |
| 196 | if base is not None: |
| 197 | self._base = None |
| 198 | base.close() |
| 199 | else: |
| 200 | def _real_close(self): |
| 201 | _socket.socket.close(self) |
| 202 | |
| 203 | |
| 204 | class SocketIO(io.RawIOBase): |
| 205 | |
| 206 | """Raw I/O implementation for stream sockets. |
| 207 | |
| 208 | This class supports the makefile() method on sockets. It provides |
| 209 | the raw I/O interface on top of a socket object. |
| 210 | """ |
| 211 | |
| 212 | # XXX More docs |
| 213 | |
Guido van Rossum | 86bc33c | 2007-11-14 22:32:02 +0000 | [diff] [blame^] | 214 | def __init__(self, sock, mode): |
Guido van Rossum | 5abbf75 | 2007-08-27 17:39:33 +0000 | [diff] [blame] | 215 | if mode not in ("r", "w", "rw"): |
| 216 | raise ValueError("invalid mode: %r" % mode) |
Jeremy Hylton | 5accbdb | 2007-08-03 20:40:09 +0000 | [diff] [blame] | 217 | io.RawIOBase.__init__(self) |
| 218 | self._sock = sock |
| 219 | self._mode = mode |
Guido van Rossum | 5abbf75 | 2007-08-27 17:39:33 +0000 | [diff] [blame] | 220 | self._reading = "r" in mode |
| 221 | self._writing = "w" in mode |
Jeremy Hylton | 5accbdb | 2007-08-03 20:40:09 +0000 | [diff] [blame] | 222 | |
| 223 | def readinto(self, b): |
Guido van Rossum | 5abbf75 | 2007-08-27 17:39:33 +0000 | [diff] [blame] | 224 | self._checkClosed() |
| 225 | self._checkReadable() |
Jeremy Hylton | 5accbdb | 2007-08-03 20:40:09 +0000 | [diff] [blame] | 226 | return self._sock.recv_into(b) |
| 227 | |
| 228 | def write(self, b): |
Guido van Rossum | 5abbf75 | 2007-08-27 17:39:33 +0000 | [diff] [blame] | 229 | self._checkClosed() |
| 230 | self._checkWritable() |
Jeremy Hylton | 5accbdb | 2007-08-03 20:40:09 +0000 | [diff] [blame] | 231 | return self._sock.send(b) |
| 232 | |
| 233 | def readable(self): |
Guido van Rossum | 5abbf75 | 2007-08-27 17:39:33 +0000 | [diff] [blame] | 234 | return self._reading and not self.closed |
Jeremy Hylton | 5accbdb | 2007-08-03 20:40:09 +0000 | [diff] [blame] | 235 | |
| 236 | def writable(self): |
Guido van Rossum | 5abbf75 | 2007-08-27 17:39:33 +0000 | [diff] [blame] | 237 | return self._writing and not self.closed |
Jeremy Hylton | 5accbdb | 2007-08-03 20:40:09 +0000 | [diff] [blame] | 238 | |
| 239 | def fileno(self): |
| 240 | return self._sock.fileno() |
| 241 | |
| 242 | def close(self): |
| 243 | if self.closed: |
| 244 | return |
Jeremy Hylton | 5accbdb | 2007-08-03 20:40:09 +0000 | [diff] [blame] | 245 | io.RawIOBase.close(self) |
| 246 | |
Guido van Rossum | 86bc33c | 2007-11-14 22:32:02 +0000 | [diff] [blame^] | 247 | def __del__(self): |
| 248 | self._sock._decref_socketios() |
| 249 | |
Fred Drake | a6070f0 | 2000-08-16 14:14:32 +0000 | [diff] [blame] | 250 | |
| 251 | def getfqdn(name=''): |
| 252 | """Get fully qualified domain name from name. |
| 253 | |
| 254 | An empty argument is interpreted as meaning the local host. |
| 255 | |
| 256 | First the hostname returned by gethostbyaddr() is checked, then |
| 257 | possibly existing aliases. In case no FQDN is available, hostname |
Brett Cannon | 01668a1 | 2005-03-11 00:04:17 +0000 | [diff] [blame] | 258 | from gethostname() is returned. |
Fred Drake | a6070f0 | 2000-08-16 14:14:32 +0000 | [diff] [blame] | 259 | """ |
| 260 | name = name.strip() |
Peter Schneider-Kamp | 2d2785a | 2000-08-16 20:30:21 +0000 | [diff] [blame] | 261 | if not name or name == '0.0.0.0': |
Fred Drake | a6070f0 | 2000-08-16 14:14:32 +0000 | [diff] [blame] | 262 | name = gethostname() |
| 263 | try: |
| 264 | hostname, aliases, ipaddrs = gethostbyaddr(name) |
| 265 | except error: |
| 266 | pass |
| 267 | else: |
| 268 | aliases.insert(0, hostname) |
| 269 | for name in aliases: |
| 270 | if '.' in name: |
| 271 | break |
| 272 | else: |
| 273 | name = hostname |
| 274 | return name |
| 275 | |
| 276 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 277 | def create_connection(address, timeout=None): |
| 278 | """Connect to address (host, port) with an optional timeout. |
| 279 | |
| 280 | Provides access to socketobject timeout for higher-level |
| 281 | protocols. Passing a timeout will set the timeout on the |
| 282 | socket instance (if not present, or passed as None, the |
| 283 | default global timeout setting will be used). |
| 284 | """ |
| 285 | |
| 286 | msg = "getaddrinfo returns an empty list" |
| 287 | host, port = address |
| 288 | for res in getaddrinfo(host, port, 0, SOCK_STREAM): |
| 289 | af, socktype, proto, canonname, sa = res |
| 290 | sock = None |
| 291 | try: |
| 292 | sock = socket(af, socktype, proto) |
| 293 | if timeout is not None: |
| 294 | sock.settimeout(timeout) |
| 295 | sock.connect(sa) |
| 296 | return sock |
| 297 | |
| 298 | except error as err: |
| 299 | msg = err |
| 300 | if sock is not None: |
| 301 | sock.close() |
| 302 | |
| 303 | raise error(msg) |