Skip to main content

Socks

There is certainly some confusion with sockets, as my flatmate put it; sockets connect stuff together right?

Wikipedia puts it a little clearer with:
sockets are inter-process communication endpoints
That sounds pretty boring but I promise you can do some fairly interesting things with them. Sockets are a core part of the operating system, and a socket API is used to direct how the operating system should use sockets.

So the hello world of sockets would have to be an echo server. Let's create a basic Python3 socket server that will listen on IPv6 and repeat what it hears.

The Python Howto guide for sockets starts with this:
Sockets are used nearly everywhere, but are one of the most severely misunderstood technologies around.
On the server side, you follow these steps:
  1. Create a socket (possibly after querying the system for information)
  2. Bind the socket, which assigns the socket to an address
  3. Listen prepares it for incoming connections
  4. Accept an incoming connection from a client, giving you a new dedicated socket to communicate with that client.
Then the server can call send and recv on this new socket. Much like this:

#!/usr/bin/env python3
# Echo consumer_server program
import socket
import threading

host = "localhost"               # Symbolic name meaning all available interfaces
random_port = 50007              # Arbitrary non-privileged port

def echo(conn, addr):
    while True:
        data = conn.recv(1024)
        if not data: break
        print('Server heard "{}"'.format(data.decode()))
        conn.send(data)
    conn.close()

def consumer_server(address_family, socket_type, protocol, canonname, sa):
    try:
        s = socket.socket(address_family, socket_type, protocol)
    except OSError as msg:
        print(msg)
        print('could not open socket')
        return
    # Tell the OS it can reuse a socket if it wants
    s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
    try:
        s.bind(sa)
        # tells the OS that we want it to queue up to 5 connect requests
        s.listen(5)
    except OSError as msg:
        s.close()
        raise SystemExit('Socket binding/listening failed...')

    while True:
        try:
            conn, addr = s.accept()
            print('Connected by', addr)
            threading.Thread(target=echo, args=(conn, addr)).start()
        except KeyboardInterrupt:
            s.close()
            raise SystemExit()

address_info = socket.getaddrinfo(host, random_port, 
                         socket.AF_UNSPEC, socket.SOCK_STREAM, 
                         0, socket.AI_PASSIVE)[-1]
consumer_server(*address_info)
Hopefully this server program is easy enough to understand, it is based very closely on the socket example in the Python documentation. My small alterations cause the server to listen only on IPv6, and will spin off a new thread when a client connects, and the server keeps listening for more connections. Part two of "Hello World in Sockets" is the client which follows a sequence of:
  1. Creating a socket (also using system information from getaddrinfo)
  2. connecting to the socket
Then the client can send, sendall, and recv bytes over the socket. Simple!

# Echo client program
import socket

HOST = 'localhost'    # The remote host
PORT = 50007          # The same port as used by the server

af, socktype, proto, _, sa = socket.getaddrinfo(HOST, 
                                                PORT, 
                                                socket.AF_UNSPEC, 
                                                socket.SOCK_STREAM)[0]

try:
    s = socket.socket(af, socktype, proto)
    s.connect(sa)
except socket.error:
    s.close()
    raise SystemExit('Error: Could not open socket :-/')

def send_and_receive(outgoing_data):
    s.sendall(outgoing_data)
    incoming_data = s.recv(1024)
    print('Received', incoming_data.decode())

for data in [b'Hello, world', '汉语/漢語 Hànyǔ'.encode()]:
    send_and_receive(data)

s.close()

That's the simple low level stuff out of the way! I'd like to point out that Python does have a higher level socket api that could easily implement our echo server, have a look at the TCP Socket examples that use the socketserver module. Now the stuff I'm really interested in, using sockets with Bluetooth and CAN!

Popular posts from this blog

Python and Gmail with IMAP

Today I had to automatically access my Gmail inbox from Python. I needed the ability to get an unread email count, the subjects of those unread emails and then download them. I found a Gmail.py library on sourceforge, but it actually opened the normal gmail webpage and site scraped the info. I wanted something much faster, luckily gmail can now be accessed with both pop and imap. After a tiny amount of research I decided imap was the better albiet slightly more difficult protocol. Enabling imap in gmail is straight forward, it was under labs. The address for gmail's imap server is: imap.gmail.com:993 Python has a library module called imaplib , we will make heavy use of that to access our emails. I'm going to assume that we have already defined two globals - username and password. To connect and login to the gmail server and select the inbox we can do: import imaplib imap_server = imaplib . IMAP4_SSL ( "imap.gmail.com" , 993 ) imap_server . login ( use...

Bluetooth with Python 3.3

Since about version 3.3 Python supports Bluetooth sockets natively. To put this to the test I got hold of an iRacer from sparkfun . To send to New Zealand the cost was $60. The toy has an on-board Bluetooth radio that supports the RFCOMM transport protocol. The drive  protocol is dead easy, you send single byte instructions when a direction or speed change is required. The bytes are broken into two nibbles:  0xXY  where X is the direction and Y is the speed. For example the byte 0x16 means forwards at mid-speed. I was surprised to note the car continues carrying out the last given demand! I let pairing get dealt with by the operating system. The code to create a  Car object that is drivable over Bluetooth is very straight forward in pure Python: import socket import time class BluetoothCar : def __init__ ( self , mac_address = "00:12:05:09:98:36" ): self . socket = socket . socket ( socket . AF_BLUETO...

Homomorphic encryption using RSA

I recently had cause to briefly look into Homomorphic Encryption , the process of carrying out computations on encrypted data. This technique allows for privacy preserving computation. Fully homomorphic encryption (FHE) allows both addition and multiplication, but is (currently) impractically slow. Partially homomorphic encryption just has to meet one of these criteria and can be much more efficient. An unintended, but well-known, malleability in the common RSA algorithm means that the multiplication of ciphertexts is equal to the multiplication of the original messages. So unpadded RSA is a partially homomorphic encryption system. RSA is beautiful in how simple it is. See wikipedia to see how to generate the public ( e , m ) and private keys ( d , m ). Given a message x it is encrypted with the public keys it to get the ciphertext C ( x ) with: C ( x ) = x e mod m To decrypt a ciphertext C ( x ) one applies the private key: m = C ( x ) d mod m The homomorphic prop...