mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-hlr.git
synced 2025-11-02 13:13:29 +00:00
Each VLR requesting auth tuples should use a distinct IND pool for 3G auth. So far we tied the IND to the GSUP peer connection; MSC and SGSN were always distinct GSUP peers, they ended up using distinct INDs. However, we have implemented a GSUP proxy, so that, in a distributed setup, a remotely roaming subscriber has only one direct GSUP peer proxying for both remote MSC and SGSN. That means as soon as a subscriber roams to a different site, we would use the GSUP proxy name to determine the IND instead of the separate MSC and SGSN. The site's MSC and SGSN appear as the same client, get the same IND bucket, waste SQNs rapidly and cause auth tuple generation load. So instead of using the local client as IND, persistently keep a list of VLR names and assign a different IND to each. Use the gsup_req->source_name as indicator, which reflects the actual remote VLR's name (remote MSC or SGSN). Persist the site <-> IND assignments in the database. Add an IND test to db_test.c There was an earlier patch version that separated the IND pools by cn_domain, but it turned out to add complex semantics, while only solving one aspect of the "adjacent VLR" problem. We need a solution not only for CS vs PS, but also for 2,3G vs 4G, and for sites that are physically adjacent to each other. This patch version does not offer any automatic solution for that -- as soon as more than 2^IND_bitlen (usually 32) VLRs show up, it is the responsibility of the admin to ensure the 'ind' table in the hlr.db does not have unfortunate IND assignments. So far no VTY commands exist for that, they may be added in the future. Related: OS#4319 Change-Id: I6f0a6bbef3a27507605c3b4a0e1a89bdfd468374
184 lines
5.4 KiB
Plaintext
184 lines
5.4 KiB
Plaintext
Creating db in schema version 0
|
|
|
|
Version 0 db:
|
|
|
|
Table: auc_2g
|
|
name|type|notnull|dflt_value|pk
|
|
algo_id_2g|INTEGER|1||0
|
|
ki|VARCHAR(32)|1||0
|
|
subscriber_id|INTEGER|0||1
|
|
|
|
Table auc_2g contents:
|
|
algo_id_2g|ki|subscriber_id
|
|
1|BeefedCafeFaceAcedAddedDecadeFee|1
|
|
2|33333333333333333333333333333333|4
|
|
4|55555555555555555555555555555555|6
|
|
|
|
Table: auc_3g
|
|
name|type|notnull|dflt_value|pk
|
|
algo_id_3g|INTEGER|1||0
|
|
ind_bitlen|INTEGER|1|5|0
|
|
k|VARCHAR(32)|1||0
|
|
op|VARCHAR(32)|0||0
|
|
opc|VARCHAR(32)|0||0
|
|
sqn|INTEGER|1|0|0
|
|
subscriber_id|INTEGER|0||1
|
|
|
|
Table auc_3g contents:
|
|
algo_id_3g|ind_bitlen|k|op|opc|sqn|subscriber_id
|
|
5|5|C01ffedC1cadaeAc1d1f1edAcac1aB0a||CededEffacedAceFacedBadFadedBeef|0|1
|
|
5|5|44444444444444444444444444444444|44444444444444444444444444444444||0|5
|
|
5|5|55555555555555555555555555555555||55555555555555555555555555555555|0|6
|
|
|
|
Table: subscriber
|
|
name|type|notnull|dflt_value|pk
|
|
ggsn_number|VARCHAR(15)|0||0
|
|
gmlc_number|VARCHAR(15)|0||0
|
|
hlr_number|VARCHAR(15)|0||0
|
|
id|INTEGER|0||1
|
|
imeisv|VARCHAR|0||0
|
|
imsi|VARCHAR(15)|1||0
|
|
lmsi|INTEGER|0||0
|
|
ms_purged_cs|BOOLEAN|1|0|0
|
|
ms_purged_ps|BOOLEAN|1|0|0
|
|
msisdn|VARCHAR(15)|0||0
|
|
nam_cs|BOOLEAN|1|1|0
|
|
nam_ps|BOOLEAN|1|1|0
|
|
periodic_lu_tmr|INTEGER|0||0
|
|
periodic_rau_tau_tmr|INTEGER|0||0
|
|
sgsn_address|VARCHAR|0||0
|
|
sgsn_number|VARCHAR(15)|0||0
|
|
smsc_number|VARCHAR(15)|0||0
|
|
vlr_number|VARCHAR(15)|0||0
|
|
|
|
Table subscriber contents:
|
|
ggsn_number|gmlc_number|hlr_number|id|imeisv|imsi|lmsi|ms_purged_cs|ms_purged_ps|msisdn|nam_cs|nam_ps|periodic_lu_tmr|periodic_rau_tau_tmr|sgsn_address|sgsn_number|smsc_number|vlr_number
|
|
|||1||123456789012345||0|0|098765432109876|1|1||||||MSC-1
|
|
|||2||111111111||1|0||1|1||||||
|
|
|||3||222222222||0|1|22222|1|1||||||
|
|
|||4||333333||0|0|3|0|1||||||
|
|
|||5||444444444444444||0|0|4444|1|0||||||
|
|
|||6||5555555||0|0|55555555555555|0|0||||||
|
|
|
|
Table: subscriber_apn
|
|
name|type|notnull|dflt_value|pk
|
|
apn|VARCHAR(256)|1||0
|
|
subscriber_id|INTEGER|0||0
|
|
|
|
Table subscriber_apn contents:
|
|
|
|
Table: subscriber_multi_msisdn
|
|
name|type|notnull|dflt_value|pk
|
|
msisdn|VARCHAR(15)|1||0
|
|
subscriber_id|INTEGER|0||0
|
|
|
|
Table subscriber_multi_msisdn contents:
|
|
|
|
Launching osmo-hlr to upgrade db:
|
|
osmo-hlr --database $db --db-upgrade --db-check --config-file $srcdir/osmo-hlr.cfg
|
|
rc = 0
|
|
DMAIN hlr starting
|
|
DDB using database: <PATH>test.db
|
|
DDB Database <PATH>test.db' has HLR DB schema version 0
|
|
DDB Database <PATH>test.db' has been upgraded to HLR DB schema version 1
|
|
DDB Database <PATH>test.db' has been upgraded to HLR DB schema version 2
|
|
DDB Database <PATH>test.db' has been upgraded to HLR DB schema version 3
|
|
DDB Database <PATH>test.db' has been upgraded to HLR DB schema version 4
|
|
DDB Database <PATH>test.db' has been upgraded to HLR DB schema version 5
|
|
DDB Database <PATH>test.db' has been upgraded to HLR DB schema version 6
|
|
DMAIN Cmdline option --db-check: Database was opened successfully, quitting.
|
|
|
|
Resulting db:
|
|
|
|
Table: auc_2g
|
|
name|type|notnull|dflt_value|pk
|
|
algo_id_2g|INTEGER|1||0
|
|
ki|VARCHAR(32)|1||0
|
|
subscriber_id|INTEGER|0||1
|
|
|
|
Table auc_2g contents:
|
|
algo_id_2g|ki|subscriber_id
|
|
1|BeefedCafeFaceAcedAddedDecadeFee|1
|
|
2|33333333333333333333333333333333|4
|
|
4|55555555555555555555555555555555|6
|
|
|
|
Table: auc_3g
|
|
name|type|notnull|dflt_value|pk
|
|
algo_id_3g|INTEGER|1||0
|
|
ind_bitlen|INTEGER|1|5|0
|
|
k|VARCHAR(32)|1||0
|
|
op|VARCHAR(32)|0||0
|
|
opc|VARCHAR(32)|0||0
|
|
sqn|INTEGER|1|0|0
|
|
subscriber_id|INTEGER|0||1
|
|
|
|
Table auc_3g contents:
|
|
algo_id_3g|ind_bitlen|k|op|opc|sqn|subscriber_id
|
|
5|5|C01ffedC1cadaeAc1d1f1edAcac1aB0a||CededEffacedAceFacedBadFadedBeef|0|1
|
|
5|5|44444444444444444444444444444444|44444444444444444444444444444444||0|5
|
|
5|5|55555555555555555555555555555555||55555555555555555555555555555555|0|6
|
|
|
|
Table: ind
|
|
name|type|notnull|dflt_value|pk
|
|
ind|INTEGER|0||1
|
|
vlr|TEXT|1||0
|
|
|
|
Table ind contents:
|
|
|
|
Table: subscriber
|
|
name|type|notnull|dflt_value|pk
|
|
ggsn_number|VARCHAR(15)|0||0
|
|
gmlc_number|VARCHAR(15)|0||0
|
|
id|INTEGER|0||1
|
|
imei|VARCHAR(14)|0||0
|
|
imeisv|VARCHAR|0||0
|
|
imsi|VARCHAR(15)|1||0
|
|
last_lu_seen|TIMESTAMP|0|NULL|0
|
|
last_lu_seen_ps|TIMESTAMP|0|NULL|0
|
|
lmsi|INTEGER|0||0
|
|
ms_purged_cs|BOOLEAN|1|0|0
|
|
ms_purged_ps|BOOLEAN|1|0|0
|
|
msc_number|VARCHAR(15)|0||0
|
|
msisdn|VARCHAR(15)|0||0
|
|
nam_cs|BOOLEAN|1|1|0
|
|
nam_ps|BOOLEAN|1|1|0
|
|
periodic_lu_tmr|INTEGER|0||0
|
|
periodic_rau_tau_tmr|INTEGER|0||0
|
|
sgsn_address|VARCHAR|0||0
|
|
sgsn_number|VARCHAR(15)|0||0
|
|
sgsn_via_proxy|VARCHAR|0||0
|
|
smsc_number|VARCHAR(15)|0||0
|
|
vlr_number|VARCHAR(15)|0||0
|
|
vlr_via_proxy|VARCHAR|0||0
|
|
|
|
Table subscriber contents:
|
|
ggsn_number|gmlc_number|id|imei|imeisv|imsi|last_lu_seen|last_lu_seen_ps|lmsi|ms_purged_cs|ms_purged_ps|msc_number|msisdn|nam_cs|nam_ps|periodic_lu_tmr|periodic_rau_tau_tmr|sgsn_address|sgsn_number|sgsn_via_proxy|smsc_number|vlr_number|vlr_via_proxy
|
|
||1|||123456789012345||||0|0||098765432109876|1|1|||||||MSC-1|
|
|
||2|||111111111||||1|0|||1|1||||||||
|
|
||3|||222222222||||0|1||22222|1|1||||||||
|
|
||4|||333333||||0|0||3|0|1||||||||
|
|
||5|||444444444444444||||0|0||4444|1|0||||||||
|
|
||6|||5555555||||0|0||55555555555555|0|0||||||||
|
|
|
|
Table: subscriber_apn
|
|
name|type|notnull|dflt_value|pk
|
|
apn|VARCHAR(256)|1||0
|
|
subscriber_id|INTEGER|0||0
|
|
|
|
Table subscriber_apn contents:
|
|
|
|
Table: subscriber_multi_msisdn
|
|
name|type|notnull|dflt_value|pk
|
|
msisdn|VARCHAR(15)|1||0
|
|
subscriber_id|INTEGER|0||0
|
|
|
|
Table subscriber_multi_msisdn contents:
|
|
|
|
Verify that osmo-hlr can open it:
|
|
osmo-hlr --database $db --db-check --config-file $srcdir/osmo-hlr.cfg
|
|
rc = 0
|
|
DMAIN hlr starting
|
|
DDB using database: <PATH>test.db
|
|
DDB Database <PATH>test.db' has HLR DB schema version 6
|
|
DMAIN Cmdline option --db-check: Database was opened successfully, quitting.
|