#!/usr/bin/python # # Copyright 2013 Jeff Rebeiro (jeff@rebeiro.net) All rights reserved # Simple SSDP implementation for PC Autobackup __author__ = 'jeff@rebeiro.net (Jeff Rebeiro)' import ConfigParser import re from twisted.internet import reactor from twisted.internet.protocol import DatagramProtocol import common pattern = r'^M-SEARCH.*HOST: (.*):(\d+).*urn:schemas-upnp-org:device:(\w+):1.*' MSEARCH = re.compile(pattern, re.DOTALL) SSDP_RESPONSE = ('HTTP/1.1 200 OK\r\n' 'CACHE-CONTROL: max-age = 1800\r\n' 'EXT:\r\n' 'LOCATION: http://%s:52235/DMS/SamsungDmsDesc.xml\r\n' 'SERVER: MS-Windows/XP UPnP/1.0 PROTOTYPE/1.0\r\n' 'ST: urn:schemas-upnp-org:device:MediaServer:1\r\n' 'USN: %s::urn:schemas-upnp-org:device:MediaServer:1\r\n') class SSDPServer(DatagramProtocol): def __init__(self, debug=False): self.config = common.LoadOrCreateConfig() self.debug = debug def startProtocol(self): self.transport.setTTL(5) self.transport.joinGroup('239.255.255.250') def datagramReceived(self, datagram, address): m = MSEARCH.match(datagram) if m: # TODO(jrebeiro): Verify that MediaServer is the only discovery request # PCAutoBackup responds to. if self.debug: print 'Received M-SEARCH for %s from %r' % (m.group(3), address) if m.group(3) == 'MediaServer': self.SendSSDPResponse(address) def SendSSDPResponse(self, address): """Send a response to an SSDP MediaServer discovery request. Args: address: A tuple of destination IP and Port as strings """ response = SSDP_RESPONSE % (self.config.get('AUTOBACKUP', 'default_interface'), self.config.get('AUTOBACKUP', 'uuid')) self.transport.write(response, address) if self.debug: print "Response:" print response def StartSSDPServer(debug=False): reactor.listenMulticast(1900, SSDPServer(debug=debug)) reactor.run() def main(): StartSSDPServer(debug=True) if __name__ == "__main__": main()