9
0
Fork 0
This repository has been archived on 2022-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
osmo-auc/src
Harald Welte 7fc5dcc49f move README of old CSV based AUC to 'src' 2016-04-28 21:16:30 +02:00
..
Makefile add actual MAP component decoding and encoding (auc_map.c) 2012-09-15 21:53:10 +02:00
README move README of old CSV based AUC to 'src' 2016-04-28 21:16:30 +02:00
auc.h CSV: store file offset of SQN so we can update it efficiently later 2012-09-16 09:18:53 +02:00
auc_core.c dynamically allocate hash table buckets based on init() call 2012-09-14 22:09:42 +02:00
auc_main.c dynamically allocate hash table buckets based on init() call 2012-09-14 22:09:42 +02:00
auc_map.c add actual MAP component decoding and encoding (auc_map.c) 2012-09-15 21:53:10 +02:00
auc_rand.c initial import of a minimalistic AUC (authentication center) core 2012-09-14 11:11:42 +02:00
auc_rec_csv.c CSV: store file offset of SQN so we can update it efficiently later 2012-09-16 09:18:53 +02:00
gen_auc_txt.pl CSV: store file offset of SQN so we can update it efficiently later 2012-09-16 09:18:53 +02:00

README

osmo-auc - Core of an GSM/UMTS authentication Centre (AUC)

This program provides the core capability of an AUC, i.e. the
on-demand generation of authentication triplets / quintuples for
specific subscribers.

The approach taken here is very simple
 * use autentication routines of libosmocore/libosmogsm
 * load all subscriber key data into RAM
 * don't implement TCAP/MAP as external protocol
 * provide a simple API for generating triplets/quintuples for given IMSI

The idea is to grow this step by step into a more complete implementation:

 * add more storage backends than the CSV example, e.g. for various SQL
 * add code to actually write back the most recent subscriber SQN in case of UMTS
 * turn it into a multi-threaded implementation to scale on SMP
 * interface with Osmcoom SCCP/TCAP/MAP stack in Erlang