/pyhss

Python HSS / Diameter Server

Primary LanguagePython

PyHSS

Python Home Subscriber Server implementing Diameter / 3GPP S6a Interfaces. Shelly the PyHSS Snake

Introduction

PyHSS is a simple Home Subscriber Server (HSS) used by LTE (4G) Evolved Packet Core (EPC) networks, written in Python. 3GPP network elements like the MME and PCRF communicate with the HSS via the DIAMETER protocol, with some extensions defined by 3GPP.

The underlying library - diameter.py can be easily worked with to impliment other Diameter based interfaces.

Usage

Basic configuration is set in the config.yaml file,

You will need to set the IP address to bind to, the Diameter hostname, realm & your PLMN.

Then you will need to select a database backend to use, such as MongoDB, MSSQL or MySQL.

Once the configuration is done you can run the HSS by running hss.py for a TCP server or hss_sctp.py for an SCTP server. (Both can be run simultaneously)

Implemented Responses

  • Capabilities Exchange Answer (CEA)
  • Device Watchdog Answer (DWA)
  • Disconnect Peer Answer (DPA)
  • S6a Authentication Information Answer (AIA)
  • S6a Update Location Answer (ULA)
  • S6a Purge UE Answer (PUA)
  • S6a Notify Answer (NOA)
  • Cx Location Information Answer (LIA)
  • Cx User Authentication Answer (UAA)
  • Cx Server Assignment Answer (SAA)
  • Cx Multimedia Authentication Answer (MAA)
  • Cx Registration Termination Answer (RTA)
  • S13 - ME-Identity-Check Request

Structure

The file hss.py runs a simple threaded Sockets based listener to take Diameter requests and send back Diameter responses.

Most of the heavy lifting in this is managed by the Diameter class, in diameter.py. This:

  • Decode incoming packets (Requests)(Returns AVPs as an array, called avp, and a Dict containing the packet variables (called packet_vars)
  • Generates responses (Answer messages) to Requests (when provided with the AVP and packet_vars of the original Request)
  • Generates Requests to send to other peers

Subscriber Information Storage

Subscriber data (IMSI, APN Profiles & Crypto values for each subscriber) can be stored in a variety of different databases, such as MongoDB, MSSQL and MySQL, and can easily be extended to support other database backends and integrate with existing databases.

Further information on setup is in database.py file which provides a standard data to provide the data to the HSS / Diameter applications in.

Extending

To implement a new response is simply a matter of adding the packet_vars['command_code'] and packet_vars['ApplicationId'] to the if/elif loop in hss.py. You can then access each of it's AVPs from the avp array, and the packet variables from the dictionary called packet_vars. To add a new response you'd edit diameter.py and add a new function called Answer_YOURCOMMANDCODE, and build the AVPs and packet variables as required.

Dependancies

The Cryptographic stuff used to generate EUTRAN Authentication Vectors relies on the Python3 Crypto Module, which can be installed with

pip3 install crypto
pip3 install pyyaml

MongoDB backend relies on a MongoDB server to store the data on, and the Python libraries for pyyaml, mongo installed as:

pip3 install pyyaml mongo

The EUTRAN Authentication Vector generator is based on the one used in Facebook Magma, which in turn is based off OAI-CN.

About

This software was written to address the limted options of free or lightweight HSS platforms out there, particularly those implimenting IMS HSS functionality.

Any contributions are welcome, just submit a PR or contact me.

You can contact me at nick (at) nickvsnetworking.com or via my blog at nickvsnetworking.com