Skip to content

Latest commit

 

History

History
156 lines (96 loc) · 8.75 KB

udp.rst

File metadata and controls

156 lines (96 loc) · 8.75 KB
LastChangedDate

$LastChangedDate$

LastChangedRevision

$LastChangedRevision$

LastChangedBy

$LastChangedBy$

UDP Networking

Overview

Unlike TCP, UDP has no notion of connections. A UDP socket can receive datagrams from any server on the network and send datagrams to any host on the network. In addition, datagrams may arrive in any order, never arrive at all, or be duplicated in transit.

Since there are no connections, we only use a single object, a protocol, for each UDP socket. We then use the reactor to connect this protocol to a UDP transport, using the twisted.internet.interfaces.IReactorUDP <twisted.internet.interfaces.IReactorUDP> reactor API.

DatagramProtocol

The class where you actually implement the protocol parsing and handling will usually be descended from twisted.internet.protocol.DatagramProtocol <twisted.internet.protocol.DatagramProtocol> or from one of its convenience children. The DatagramProtocol class receives datagrams and can send them out over the network. Received datagrams include the address they were sent from. When sending datagrams the destination address must be specified.

Here is a simple example:

basic_example.py <listings/udp/basic_example.py>

listings/udp/basic_example.py

As you can see, the protocol is registered with the reactor. This means it may be persisted if it's added to an application, and thus it has twisted.internet.protocol.AbstractDatagramProtocol.startProtocol <startProtocol> and twisted.internet.protocol.AbstractDatagramProtocol.stopProtocol <stopProtocol> methods that will get called when the protocol is connected and disconnected from a UDP socket.

The protocol's transport attribute will implement the twisted.internet.interfaces.IUDPTransport <twisted.internet.interfaces.IUDPTransport> interface. Notice that addr argument to self.transport.write should be a tuple with IP address and port number. First element of tuple must be ip address and not a hostname. If you only have the hostname use reactor.resolve() to resolve the address (see twisted.internet.interfaces.IReactorCore.resolve <twisted.internet.interfaces.IReactorCore.resolve>).

Other thing to keep in mind is that data written to transport must be bytes. Trying to write string may work ok in Python 2, but will fail if you are using Python 3.

To confirm that socket is indeed listening you can try following command line one-liner.

> echo "Hello World!" | nc -4u -w1 localhost 9999

If everything is ok your "server" logs should print:

received b'Hello World!\n' from ('127.0.0.1', 32844) # where 32844 is some random port number

Adopting Datagram Ports

By default reactor.listenUDP() call will create appropriate socket for you, but it is also possible to add an existing SOCK_DGRAM file descriptor of some socket to the reactor using the twisted.internet.interfaces.IReactorSocket.adoptDatagramPort <adoptDatagramPort> API.

Here is a simple example:

adopt_datagram_port.py <listings/udp/adopt_datagram_port.py>

listings/udp/adopt_datagram_port.py

Note

- You must ensure that the socket is non-blocking before passing its file descriptor to twisted.internet.interfaces.IReactorSocket. adoptDatagramPort <adoptDatagramPort>. - twisted.internet.interfaces.IReactorSocket. adoptDatagramPort <adoptDatagramPort> cannot (currently) detect the family of the adopted socket so you must ensure that you pass the correct socket family argument. - The reactor will not shutdown the socket. It is the responsibility of the process that created the socket to shutdown and clean up the socket when it is no longer needed.

Connected UDP

A connected UDP socket is slightly different from a standard one as it can only send and receive datagrams to/from a single address. However this does not in any way imply a connection as datagrams may still arrive in any order and the port on the other side may have no one listening. The benefit of the connected UDP socket is that it may provide notification of undelivered packages. This depends on many factors (almost all of which are out of the control of the application) but still presents certain benefits which occasionally make it useful.

Unlike a regular UDP protocol, we do not need to specify where to send datagrams and are not told where they came from since they can only come from the address to which the socket is 'connected'.

connected_udp.py <listings/udp/connected_udp.py>

listings/udp/connected_udp.py

Note that connect(), like write() will only accept IP addresses, not unresolved hostnames. To obtain the IP of a hostname use reactor.resolve(), e.g:

getting_ip.py <listings/udp/getting_ip.py>

listings/udp/getting_ip.py

Connecting to a new address after a previous connection or making a connected port unconnected are not currently supported, but likely will be in the future.

Multicast UDP

Multicast allows a process to contact multiple hosts with a single packet, without knowing the specific IP address of any of the hosts. This is in contrast to normal, or unicast, UDP, where each datagram has a single IP as its destination. Multicast datagrams are sent to special multicast group addresses (in the IPv4 range 224.0.0.0 to 239.255.255.255), along with a corresponding port. In order to receive multicast datagrams, you must join that specific group address. However, any UDP socket can send to multicast addresses. Here is a simple server example:

MulticastServer.py <listings/udp/MulticastServer.py>

listings/udp/MulticastServer.py

As with UDP, with multicast there is no server/client differentiation at the protocol level. Our server example is very simple and closely resembles a normal twisted.internet.interfaces.IReactorUDP.listenUDP <listenUDP> protocol implementation. The main difference is that instead of listenUDP, twisted.internet.interfaces.IReactorMulticast.listenMulticast <listenMulticast> is called with the port number. The server calls twisted.internet.interfaces.IMulticastTransport.joinGroup <joinGroup> to join a multicast group. A DatagramProtocol that is listening with multicast and has joined a group can receive multicast datagrams, but also unicast datagrams sent directly to its address. The server in the example above sends such a unicast message in reply to the multicast message it receives from the client.

Client code may look like this:

MulticastClient.py <listings/udp/MulticastClient.py>

listings/udp/MulticastClient.py

Note that a multicast socket will have a default TTL (time to live) of 1. That is, datagrams won't traverse more than one router hop, unless a higher TTL is set with twisted.internet.interfaces.IMulticastTransport.setTTL <setTTL>. Other functionality provided by the multicast transport includes twisted.internet.interfaces.IMulticastTransport.setOutgoingInterface <setOutgoingInterface> and twisted.internet.interfaces.IMulticastTransport.setLoopbackMode <setLoopbackMode> -- see twisted.internet.interfaces.IMulticastTransport <IMulticastTransport> for more information.

To test your multicast setup you need to start server in one terminal and couple of clients in other terminals. If all goes ok you should see "Ping" messages sent by each client in logs of all other connected clients.

Broadcast UDP

Broadcast allows a different way of contacting several unknown hosts. Broadcasting via UDP sends a packet out to all hosts on the local network by sending to a magic broadcast address ("<broadcast>"). This broadcast is filtered by routers by default, and there are no "groups" like multicast, only different ports.

Broadcast is enabled by passing True to twisted.internet.interfaces.IUDPTransport.setBroadcastAllowed <setBroadcastAllowed> on the port. Checking the broadcast status can be done with twisted.internet.interfaces.IUDPTransport.getBroadcastAllowed <getBroadcastAllowed> on the port.

For a complete example of this feature, see udpbroadcast.py <../examples/udpbroadcast.py>.

IPv6

UDP sockets can also bind to IPv6 addresses to support sending and receiving datagrams over IPv6. By passing an IPv6 address to twisted.internet.interfaces.IReactorUDP.listenUDP <listenUDP>'s interface argument, the reactor will start an IPv6 socket that can be used to send and receive UDP datagrams.

ipv6_listen.py <listings/udp/ipv6_listen.py>

listings/udp/ipv6_listen.py