You need to sign in or sign up before continuing.
libsocket.tex 18.6 KB
Newer Older
Fred Drake's avatar
Fred Drake committed
1
\section{\module{socket} ---
Fred Drake's avatar
Fred Drake committed
2
         Low-level networking interface}
3

Fred Drake's avatar
Fred Drake committed
4
\declaremodule{builtin}{socket}
5 6
\modulesynopsis{Low-level networking interface.}

Fred Drake's avatar
Fred Drake committed
7

8
This module provides access to the BSD \emph{socket} interface.
9 10
It is available on all modern \UNIX{} systems, Windows, MacOS, BeOS,
OS/2, and probably additional platforms.
11 12

For an introduction to socket programming (in C), see the following
13 14 15 16
papers: \citetitle{An Introductory 4.3BSD Interprocess Communication
Tutorial}, by Stuart Sechrest and \citetitle{An Advanced 4.3BSD
Interprocess Communication Tutorial}, by Samuel J.  Leffler et al,
both in the \citetitle{\UNIX{} Programmer's Manual, Supplementary Documents 1}
17 18 19 20 21
(sections PS1:7 and PS1:8).  The platform-specific reference material
for the various socket-related system calls are also a valuable source
of information on the details of socket semantics.  For \UNIX, refer
to the manual pages; for Windows, see the WinSock (or Winsock 2)
specification.
22 23 24

The Python interface is a straightforward transliteration of the
\UNIX{} system call and library interface for sockets to Python's
Fred Drake's avatar
Fred Drake committed
25
object-oriented style: the \function{socket()} function returns a
Fred Drake's avatar
Fred Drake committed
26 27 28 29 30 31
\dfn{socket object}\obindex{socket} whose methods implement the
various socket system calls.  Parameter types are somewhat
higher-level than in the C interface: as with \method{read()} and
\method{write()} operations on Python files, buffer allocation on
receive operations is automatic, and buffer length is implicit on send
operations.
32 33

Socket addresses are represented as a single string for the
Fred Drake's avatar
Fred Drake committed
34 35 36
\constant{AF_UNIX} address family and as a pair
\code{(\var{host}, \var{port})} for the \constant{AF_INET} address
family, where \var{host} is a string representing
37 38 39 40 41 42 43
either a hostname in Internet domain notation like
\code{'daring.cwi.nl'} or an IP address like \code{'100.50.200.5'},
and \var{port} is an integral port number.  Other address families are
currently not supported.  The address format required by a particular
socket object is automatically selected based on the address family
specified when the socket object was created.

44
For IP addresses, two special forms are accepted instead of a host
Fred Drake's avatar
Fred Drake committed
45
address: the empty string represents \constant{INADDR_ANY}, and the string
Fred Drake's avatar
Fred Drake committed
46
\code{'<broadcast>'} represents \constant{INADDR_BROADCAST}.
47

48 49
All errors raise exceptions.  The normal exceptions for invalid
argument types and out-of-memory conditions can be raised; errors
Fred Drake's avatar
Fred Drake committed
50 51
related to socket or address semantics raise the error
\exception{socket.error}.
52

Fred Drake's avatar
Fred Drake committed
53 54
Non-blocking mode is supported through the
\method{setblocking()} method.
55

Fred Drake's avatar
Fred Drake committed
56 57
The module \module{socket} exports the following constants and functions:

58 59 60 61 62 63

\begin{excdesc}{error}
This exception is raised for socket- or address-related errors.
The accompanying value is either a string telling what went wrong or a
pair \code{(\var{errno}, \var{string})}
representing an error returned by a system
Fred Drake's avatar
Fred Drake committed
64 65
call, similar to the value accompanying \exception{os.error}.
See the module \refmodule{errno}\refbimodindex{errno}, which contains
66
names for the error codes defined by the underlying operating system.
67 68 69 70 71
\end{excdesc}

\begin{datadesc}{AF_UNIX}
\dataline{AF_INET}
These constants represent the address (and protocol) families,
Fred Drake's avatar
Fred Drake committed
72 73 74
used for the first argument to \function{socket()}.  If the
\constant{AF_UNIX} constant is not defined then this protocol is
unsupported.
75 76 77 78
\end{datadesc}

\begin{datadesc}{SOCK_STREAM}
\dataline{SOCK_DGRAM}
79 80 81
\dataline{SOCK_RAW}
\dataline{SOCK_RDM}
\dataline{SOCK_SEQPACKET}
82
These constants represent the socket types,
Fred Drake's avatar
Fred Drake committed
83 84 85
used for the second argument to \function{socket()}.
(Only \constant{SOCK_STREAM} and
\constant{SOCK_DGRAM} appear to be generally useful.)
86 87
\end{datadesc}

Guido van Rossum's avatar
Guido van Rossum committed
88 89 90 91 92 93 94 95
\begin{datadesc}{SO_*}
\dataline{SOMAXCONN}
\dataline{MSG_*}
\dataline{SOL_*}
\dataline{IPPROTO_*}
\dataline{IPPORT_*}
\dataline{INADDR_*}
\dataline{IP_*}
96
Many constants of these forms, documented in the \UNIX{} documentation on
Guido van Rossum's avatar
Guido van Rossum committed
97
sockets and/or the IP protocol, are also defined in the socket module.
Fred Drake's avatar
Fred Drake committed
98 99
They are generally used in arguments to the \method{setsockopt()} and
\method{getsockopt()} methods of socket objects.  In most cases, only
100
those symbols that are defined in the \UNIX{} header files are defined;
Guido van Rossum's avatar
Guido van Rossum committed
101 102 103
for a few symbols, default values are provided.
\end{datadesc}

104 105 106
\begin{funcdesc}{gethostbyname}{hostname}
Translate a host name to IP address format.  The IP address is
returned as a string, e.g.,  \code{'100.50.200.5'}.  If the host name
107
is an IP address itself it is returned unchanged.  See
Fred Drake's avatar
Fred Drake committed
108
\function{gethostbyname_ex()} for a more complete interface.
109 110 111 112 113 114 115 116 117 118
\end{funcdesc}

\begin{funcdesc}{gethostbyname_ex}{hostname}
Translate a host name to IP address format, extended interface.
Return a triple \code{(hostname, aliaslist, ipaddrlist)} where
\code{hostname} is the primary host name responding to the given
\var{ip_address}, \code{aliaslist} is a (possibly empty) list of
alternative host names for the same address, and \code{ipaddrlist} is
a list of IP addresses for the same interface on the same
host (often but not always a single address).
119 120
\end{funcdesc}

121
\begin{funcdesc}{gethostname}{}
122 123
Return a string containing the hostname of the machine where 
the Python interpreter is currently executing.  If you want to know the
Fred Drake's avatar
Fred Drake committed
124 125 126
current machine's IP address, use \code{gethostbyname(gethostname())}.
Note: \function{gethostname()} doesn't always return the fully qualified
domain name; use \code{gethostbyaddr(gethostname())}
127
(see below).
128 129 130
\end{funcdesc}

\begin{funcdesc}{gethostbyaddr}{ip_address}
Fred Drake's avatar
Fred Drake committed
131 132 133 134 135 136
Return a triple \code{(\var{hostname}, \var{aliaslist},
\var{ipaddrlist})} where \var{hostname} is the primary host name
responding to the given \var{ip_address}, \var{aliaslist} is a
(possibly empty) list of alternative host names for the same address,
and \var{ipaddrlist} is a list of IP addresses for the same interface
on the same host (most likely containing only a single address).
137 138
To find the fully qualified domain name, check \var{hostname} and the
items of \var{aliaslist} for an entry containing at least one period.
139 140
\end{funcdesc}

141
\begin{funcdesc}{getprotobyname}{protocolname}
Fred Drake's avatar
Fred Drake committed
142
Translate an Internet protocol name (e.g.\ \code{'icmp'}) to a constant
143
suitable for passing as the (optional) third argument to the
Fred Drake's avatar
Fred Drake committed
144 145 146
\function{socket()} function.  This is usually only needed for sockets
opened in ``raw'' mode (\constant{SOCK_RAW}); for the normal socket
modes, the correct protocol is chosen automatically if the protocol is
147 148 149
omitted or zero.
\end{funcdesc}

Fred Drake's avatar
Fred Drake committed
150
\begin{funcdesc}{getservbyname}{servicename, protocolname}
151 152 153 154 155
Translate an Internet service name and protocol name to a port number
for that service.  The protocol name should be \code{'tcp'} or
\code{'udp'}.
\end{funcdesc}

Fred Drake's avatar
Fred Drake committed
156
\begin{funcdesc}{socket}{family, type\optional{, proto}}
157
Create a new socket using the given address family, socket type and
Fred Drake's avatar
Fred Drake committed
158 159 160
protocol number.  The address family should be \constant{AF_INET} or
\constant{AF_UNIX}.  The socket type should be \constant{SOCK_STREAM},
\constant{SOCK_DGRAM} or perhaps one of the other \samp{SOCK_} constants.
161 162 163
The protocol number is usually zero and may be omitted in that case.
\end{funcdesc}

Fred Drake's avatar
Fred Drake committed
164
\begin{funcdesc}{fromfd}{fd, family, type\optional{, proto}}
165
Build a socket object from an existing file descriptor (an integer as
Fred Drake's avatar
Fred Drake committed
166
returned by a file object's \method{fileno()} method).  Address family,
Fred Drake's avatar
Fred Drake committed
167
socket type and protocol number are as for the \function{socket()} function
168 169 170 171
above.  The file descriptor should refer to a socket, but this is not
checked --- subsequent operations on the object may fail if the file
descriptor is invalid.  This function is rarely needed, but can be
used to get or set socket options on a socket passed to a program as
172
standard input or output (e.g.\ a server started by the \UNIX{} inet
173 174 175
daemon).
\end{funcdesc}

Guido van Rossum's avatar
Guido van Rossum committed
176
\begin{funcdesc}{ntohl}{x}
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
Convert 32-bit integers from network to host byte order.  On machines
where the host byte order is the same as network byte order, this is a
no-op; otherwise, it performs a 4-byte swap operation.
\end{funcdesc}

\begin{funcdesc}{ntohs}{x}
Convert 16-bit integers from network to host byte order.  On machines
where the host byte order is the same as network byte order, this is a
no-op; otherwise, it performs a 2-byte swap operation.
\end{funcdesc}

\begin{funcdesc}{htonl}{x}
Convert 32-bit integers from host to network byte order.  On machines
where the host byte order is the same as network byte order, this is a
no-op; otherwise, it performs a 4-byte swap operation.
\end{funcdesc}

\begin{funcdesc}{htons}{x}
Convert 16-bit integers from host to network byte order.  On machines
where the host byte order is the same as network byte order, this is a
no-op; otherwise, it performs a 2-byte swap operation.
Guido van Rossum's avatar
Guido van Rossum committed
198 199
\end{funcdesc}

200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
\begin{funcdesc}{inet_aton}{ip_string}
Convert an IP address from dotted-quad string format
(e.g.\ '123.45.67.89') to 32-bit packed binary format, as a string four
characters in length.

Useful when conversing with a program that uses the standard C library
and needs objects of type \ctype{struct in_addr}, which is the C type
for the 32-bit packed binary this function returns.

If the IP address string passed to this function is invalid,
\exception{socket.error} will be raised. Note that exactly what is
valid depends on the underlying C implementation of
\cfunction{inet_aton()}.
\end{funcdesc}

\begin{funcdesc}{inet_ntoa}{packed_ip}
Convert a 32-bit packed IP address (a string four characters in
length) to its standard dotted-quad string representation
(e.g. '123.45.67.89').

Useful when conversing with a program that uses the standard C library
and needs objects of type \ctype{struct in_addr}, which is the C type
for the 32-bit packed binary this function takes as an argument.

If the string passed to this function is not exactly 4 bytes in
length, \exception{socket.error} will be raised.
\end{funcdesc}

Fred Drake's avatar
Fred Drake committed
228
\begin{datadesc}{SocketType}
229
This is a Python type object that represents the socket object type.
Fred Drake's avatar
Fred Drake committed
230
It is the same as \code{type(socket(...))}.
231 232
\end{datadesc}

233
\subsection{Socket Objects \label{socket-objects}}
234 235

Socket objects have the following methods.  Except for
Fred Drake's avatar
Fred Drake committed
236 237
\method{makefile()} these correspond to \UNIX{} system calls
applicable to sockets.
238

Fred Drake's avatar
Fred Drake committed
239
\begin{methoddesc}[socket]{accept}{}
240 241 242 243 244 245
Accept a connection.
The socket must be bound to an address and listening for connections.
The return value is a pair \code{(\var{conn}, \var{address})}
where \var{conn} is a \emph{new} socket object usable to send and
receive data on the connection, and \var{address} is the address bound
to the socket on the other end of the connection.
Fred Drake's avatar
Fred Drake committed
246
\end{methoddesc}
247

Fred Drake's avatar
Fred Drake committed
248
\begin{methoddesc}[socket]{bind}{address}
249
Bind the socket to \var{address}.  The socket must not already be bound.
250 251 252 253 254
(The format of \var{address} depends on the address family --- see
above.)  \strong{Note:}  This method has historically accepted a pair
of parameters for \constant{AF_INET} addresses instead of only a
tuple.  This was never intentional and will no longer be available in
Python 1.7.
Fred Drake's avatar
Fred Drake committed
255
\end{methoddesc}
256

Fred Drake's avatar
Fred Drake committed
257
\begin{methoddesc}[socket]{close}{}
258 259 260
Close the socket.  All future operations on the socket object will fail.
The remote end will receive no more data (after queued data is flushed).
Sockets are automatically closed when they are garbage-collected.
Fred Drake's avatar
Fred Drake committed
261
\end{methoddesc}
262

Fred Drake's avatar
Fred Drake committed
263
\begin{methoddesc}[socket]{connect}{address}
264
Connect to a remote socket at \var{address}.
Fred Drake's avatar
Fred Drake committed
265
(The format of \var{address} depends on the address family --- see
266 267 268 269
above.)  \strong{Note:}  This method has historically accepted a pair
of parameters for \constant{AF_INET} addresses instead of only a
tuple.  This was never intentional and will no longer be available in
Python 1.7.
Fred Drake's avatar
Fred Drake committed
270
\end{methoddesc}
271

Fred Drake's avatar
Fred Drake committed
272
\begin{methoddesc}[socket]{connect_ex}{address}
273
Like \code{connect(\var{address})}, but return an error indicator
274 275 276
instead of raising an exception for errors returned by the C-level
\cfunction{connect()} call (other problems, such as ``host not found,''
can still raise exceptions).  The error indicator is \code{0} if the
Fred Drake's avatar
Fred Drake committed
277
operation succeeded, otherwise the value of the \cdata{errno}
Fred Drake's avatar
Fred Drake committed
278
variable.  This is useful, e.g., for asynchronous connects.
279 280 281 282
\strong{Note:}  This method has historically accepted a pair of
parameters for \constant{AF_INET} addresses instead of only a tuple.
This was never intentional and will no longer be available in Python
1.7.
Fred Drake's avatar
Fred Drake committed
283
\end{methoddesc}
284

Fred Drake's avatar
Fred Drake committed
285
\begin{methoddesc}[socket]{fileno}{}
286
Return the socket's file descriptor (a small integer).  This is useful
Fred Drake's avatar
Fred Drake committed
287
with \function{select.select()}.
Fred Drake's avatar
Fred Drake committed
288
\end{methoddesc}
289

Fred Drake's avatar
Fred Drake committed
290
\begin{methoddesc}[socket]{getpeername}{}
291 292
Return the remote address to which the socket is connected.  This is
useful to find out the port number of a remote IP socket, for instance.
293
(The format of the address returned depends on the address family ---
294
see above.)  On some systems this function is not supported.
Fred Drake's avatar
Fred Drake committed
295
\end{methoddesc}
296

Fred Drake's avatar
Fred Drake committed
297
\begin{methoddesc}[socket]{getsockname}{}
298 299
Return the socket's own address.  This is useful to find out the port
number of an IP socket, for instance.
300
(The format of the address returned depends on the address family ---
301
see above.)
Fred Drake's avatar
Fred Drake committed
302
\end{methoddesc}
303

Fred Drake's avatar
Fred Drake committed
304
\begin{methoddesc}[socket]{getsockopt}{level, optname\optional{, buflen}}
305
Return the value of the given socket option (see the \UNIX{} man page
Fred Drake's avatar
Fred Drake committed
306 307
\manpage{getsockopt}{2}).  The needed symbolic constants
(\constant{SO_*} etc.) are defined in this module.  If \var{buflen}
308
is absent, an integer option is assumed and its integer value
309 310
is returned by the function.  If \var{buflen} is present, it specifies
the maximum length of the buffer used to receive the option in, and
311
this buffer is returned as a string.  It is up to the caller to decode
312
the contents of the buffer (see the optional built-in module
Fred Drake's avatar
Fred Drake committed
313
\refmodule{struct} for a way to decode C structures encoded as strings).
Fred Drake's avatar
Fred Drake committed
314
\end{methoddesc}
315

Fred Drake's avatar
Fred Drake committed
316
\begin{methoddesc}[socket]{listen}{backlog}
317 318 319
Listen for connections made to the socket.  The \var{backlog} argument
specifies the maximum number of queued connections and should be at
least 1; the maximum value is system-dependent (usually 5).
Fred Drake's avatar
Fred Drake committed
320
\end{methoddesc}
321

Fred Drake's avatar
Fred Drake committed
322
\begin{methoddesc}[socket]{makefile}{\optional{mode\optional{, bufsize}}}
323
Return a \dfn{file object} associated with the socket.  (File objects
324
are described in \ref{bltin-file-objects}, ``File Objects.'')
Fred Drake's avatar
Fred Drake committed
325 326
The file object references a \cfunction{dup()}ped version of the
socket file descriptor, so the file object and socket object may be
327 328
closed or garbage-collected independently.
\index{I/O control!buffering}The optional \var{mode}
Fred Drake's avatar
Fred Drake committed
329 330
and \var{bufsize} arguments are interpreted the same way as by the
built-in \function{open()} function.
Fred Drake's avatar
Fred Drake committed
331
\end{methoddesc}
332

Fred Drake's avatar
Fred Drake committed
333
\begin{methoddesc}[socket]{recv}{bufsize\optional{, flags}}
334 335 336
Receive data from the socket.  The return value is a string representing
the data received.  The maximum amount of data to be received
at once is specified by \var{bufsize}.  See the \UNIX{} manual page
Fred Drake's avatar
Fred Drake committed
337 338
\manpage{recv}{2} for the meaning of the optional argument
\var{flags}; it defaults to zero.
Fred Drake's avatar
Fred Drake committed
339
\end{methoddesc}
340

Fred Drake's avatar
Fred Drake committed
341
\begin{methoddesc}[socket]{recvfrom}{bufsize\optional{, flags}}
342 343 344
Receive data from the socket.  The return value is a pair
\code{(\var{string}, \var{address})} where \var{string} is a string
representing the data received and \var{address} is the address of the
345
socket sending the data.  The optional \var{flags} argument has the
Fred Drake's avatar
Fred Drake committed
346
same meaning as for \method{recv()} above.
347
(The format of \var{address} depends on the address family --- see above.)
Fred Drake's avatar
Fred Drake committed
348
\end{methoddesc}
349

Fred Drake's avatar
Fred Drake committed
350
\begin{methoddesc}[socket]{send}{string\optional{, flags}}
351
Send data to the socket.  The socket must be connected to a remote
352
socket.  The optional \var{flags} argument has the same meaning as for
Fred Drake's avatar
Fred Drake committed
353
\method{recv()} above.  Returns the number of bytes sent.
Fred Drake's avatar
Fred Drake committed
354
\end{methoddesc}
355

Fred Drake's avatar
Fred Drake committed
356
\begin{methoddesc}[socket]{sendto}{string\optional{, flags}, address}
357 358
Send data to the socket.  The socket should not be connected to a
remote socket, since the destination socket is specified by
Fred Drake's avatar
Fred Drake committed
359 360
\var{address}.  The optional \var{flags} argument has the same
meaning as for \method{recv()} above.  Return the number of bytes sent.
361
(The format of \var{address} depends on the address family --- see above.)
Fred Drake's avatar
Fred Drake committed
362
\end{methoddesc}
363

Fred Drake's avatar
Fred Drake committed
364
\begin{methoddesc}[socket]{setblocking}{flag}
365 366 367
Set blocking or non-blocking mode of the socket: if \var{flag} is 0,
the socket is set to non-blocking, else to blocking mode.  Initially
all sockets are in blocking mode.  In non-blocking mode, if a
Fred Drake's avatar
Fred Drake committed
368 369 370 371
\method{recv()} call doesn't find any data, or if a
\method{send()} call can't immediately dispose of the data, a
\exception{error} exception is raised; in blocking mode, the calls
block until they can proceed.
Fred Drake's avatar
Fred Drake committed
372
\end{methoddesc}
373

Fred Drake's avatar
Fred Drake committed
374
\begin{methoddesc}[socket]{setsockopt}{level, optname, value}
375
Set the value of the given socket option (see the \UNIX{} man page
Fred Drake's avatar
Fred Drake committed
376 377
\manpage{setsockopt}{2}).  The needed symbolic constants are defined in
the \module{socket} module (\code{SO_*} etc.).  The value can be an
378 379 380
integer or a string representing a buffer.  In the latter case it is
up to the caller to ensure that the string contains the proper bits
(see the optional built-in module
Fred Drake's avatar
Fred Drake committed
381 382
\refmodule{struct}\refbimodindex{struct} for a way to encode C
structures as strings). 
Fred Drake's avatar
Fred Drake committed
383
\end{methoddesc}
384

Fred Drake's avatar
Fred Drake committed
385
\begin{methoddesc}[socket]{shutdown}{how}
Fred Drake's avatar
Fred Drake committed
386 387 388 389
Shut down one or both halves of the connection.  If \var{how} is
\code{0}, further receives are disallowed.  If \var{how} is \code{1},
further sends are disallowed.  If \var{how} is \code{2}, further sends
and receives are disallowed.
Fred Drake's avatar
Fred Drake committed
390
\end{methoddesc}
391

Fred Drake's avatar
Fred Drake committed
392 393 394
Note that there are no methods \method{read()} or \method{write()};
use \method{recv()} and \method{send()} without \var{flags} argument
instead.
395 396 397 398

\subsection{Example}
\nodename{Socket Example}

399
Here are two minimal example programs using the TCP/IP protocol:\ a
400 401
server that echoes all data that it receives back (servicing only one
client), and a client using it.  Note that a server must perform the
Fred Drake's avatar
Fred Drake committed
402 403 404 405 406
sequence \function{socket()}, \method{bind()}, \method{listen()},
\method{accept()} (possibly repeating the \method{accept()} to service
more than one client), while a client only needs the sequence
\function{socket()}, \method{connect()}.  Also note that the server
does not \method{send()}/\method{recv()} on the 
407
socket it is listening on but on the new socket returned by
Fred Drake's avatar
Fred Drake committed
408
\method{accept()}.
409

410
\begin{verbatim}
411 412 413 414 415
# Echo server program
from socket import *
HOST = ''                 # Symbolic name meaning the local host
PORT = 50007              # Arbitrary non-privileged server
s = socket(AF_INET, SOCK_STREAM)
416
s.bind((HOST, PORT))
417
s.listen(1)
418 419 420 421 422 423 424
conn, addr = s.accept()
print 'Connected by', addr
while 1:
    data = conn.recv(1024)
    if not data: break
    conn.send(data)
conn.close()
425
\end{verbatim}
Fred Drake's avatar
Fred Drake committed
426

427
\begin{verbatim}
428 429 430 431 432
# Echo client program
from socket import *
HOST = 'daring.cwi.nl'    # The remote host
PORT = 50007              # The same port as used by the server
s = socket(AF_INET, SOCK_STREAM)
433
s.connect((HOST, PORT))
434 435 436 437
s.send('Hello, world')
data = s.recv(1024)
s.close()
print 'Received', `data`
438
\end{verbatim}
Fred Drake's avatar
Fred Drake committed
439

Guido van Rossum's avatar
Guido van Rossum committed
440
\begin{seealso}
441
  \seemodule{SocketServer}{classes that simplify writing network servers}
Guido van Rossum's avatar
Guido van Rossum committed
442
\end{seealso}