/* Osmocom MSC+VLR end-to-end tests */ /* (C) 2017 by sysmocom s.f.m.c. GmbH * * All Rights Reserved * * Author: Neels Hofmeyr * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ #include "msc_vlr_tests.h" void test_ms_timeout_lu_auth_resp() { comment_start(); net->authentication_required = true; fake_time_start(); btw("Location Update request causes a GSUP Send Auth Info request to HLR"); lu_result_sent = RES_NONE; gsup_expect_tx("08010809710000004026f0"); ms_sends_msg("050802008168000130089910070000006402"); OSMO_ASSERT(gsup_tx_confirmed); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("from HLR, rx _SEND_AUTH_INFO_RESULT; VLR sends Auth Req to MS"); auth_request_sent = false; auth_request_expect_rand = "585df1ae287f6e273dce07090d61320b"; auth_request_expect_autn = NULL; /* Based on a Ki of 000102030405060708090a0b0c0d0e0f */ gsup_rx("0a" /* imsi */ "0108" "09710000004026f0" /* auth vectors... */ /* TL TL rand */ "0322" "2010" "585df1ae287f6e273dce07090d61320b" /* TL sres TL kc */ "2104" "2d8b2c3e" "2208" "61855fb81fc2a800" ,NULL); VERBOSE_ASSERT(auth_request_sent, == true, "%d"); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); BTW("MS fails to send an Authentication Response"); btw("At first, we're still waiting"); fake_time_passes(0, 423); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); fake_time_passes(1, 235); btw("SUBSCR_CONN_TIMEOUT has passed, conn is gone."); EXPECT_CONN_COUNT(0); VERBOSE_ASSERT(lu_result_sent, == RES_REJECT, "%d"); comment_end(); } void test_ms_timeout_cm_auth_resp() { comment_start(); net->authentication_required = true; fake_time_start(); btw("Location Update request causes a GSUP Send Auth Info request to HLR"); lu_result_sent = RES_NONE; gsup_expect_tx("08010809710000004026f0"); ms_sends_msg("050802008168000130089910070000006402"); OSMO_ASSERT(gsup_tx_confirmed); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("from HLR, rx _SEND_AUTH_INFO_RESULT; VLR sends Auth Req to MS"); auth_request_sent = false; auth_request_expect_rand = "585df1ae287f6e273dce07090d61320b"; auth_request_expect_autn = NULL; /* Based on a Ki of 000102030405060708090a0b0c0d0e0f */ gsup_rx("0a" /* imsi */ "0108" "09710000004026f0" /* 5 auth vectors... */ /* TL TL rand */ "0322" "2010" "585df1ae287f6e273dce07090d61320b" /* TL sres TL kc */ "2104" "2d8b2c3e" "2208" "61855fb81fc2a800" "0322" "2010" "12aca96fb4ffdea5c985cbafa9b6e18b" "2104" "20bde240" "2208" "07fa7502e07e1c00" "0322" "2010" "e7c03ba7cf0e2fde82b2dc4d63077d42" "2104" "a29514ae" "2208" "e2b234f807886400" "0322" "2010" "fa8f20b781b5881329d4fea26b1a3c51" "2104" "5afc8d72" "2208" "2392f14f709ae000" "0322" "2010" "0fd4cc8dbe8715d1f439e304edfd68dc" "2104" "bc8d1c5b" "2208" "da7cdd6bfe2d7000", NULL); VERBOSE_ASSERT(auth_request_sent, == true, "%d"); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("MS sends Authen Response, VLR accepts and sends GSUP LU Req to HLR"); gsup_expect_tx("04010809710000004026f0"); ms_sends_msg("05542d8b2c3e"); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("HLR sends _INSERT_DATA_REQUEST, VLR responds with _INSERT_DATA_RESULT"); gsup_rx("10010809710000004026f00804036470f1", "12010809710000004026f0"); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("HLR also sends GSUP _UPDATE_LOCATION_RESULT"); gsup_rx("06010809710000004026f0", NULL); btw("LU was successful, and the conn has already been closed"); VERBOSE_ASSERT(lu_result_sent, == RES_ACCEPT, "%d"); EXPECT_CONN_COUNT(0); BTW("after a while, a new conn sends a CM Service Request. VLR responds with Auth Req, 2nd auth vector"); auth_request_sent = false; auth_request_expect_rand = "12aca96fb4ffdea5c985cbafa9b6e18b"; cm_service_result_sent = RES_NONE; ms_sends_msg("05247803305886089910070000006402"); OSMO_ASSERT(g_conn); OSMO_ASSERT(g_conn->conn_fsm); OSMO_ASSERT(g_conn->vsub); VERBOSE_ASSERT(cm_service_result_sent, == RES_NONE, "%d"); VERBOSE_ASSERT(auth_request_sent, == true, "%d"); BTW("MS fails to send an Authentication Response"); btw("At first, we're still waiting"); fake_time_passes(0, 423); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(cm_service_result_sent, == RES_NONE, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(cm_service_result_sent, == RES_NONE, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(cm_service_result_sent, == RES_NONE, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(cm_service_result_sent, == RES_NONE, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(cm_service_result_sent, == RES_NONE, "%d"); fake_time_passes(1, 235); btw("SUBSCR_CONN_TIMEOUT has passed, conn is gone."); EXPECT_CONN_COUNT(0); VERBOSE_ASSERT(cm_service_result_sent, == RES_REJECT, "%d"); clear_vlr(); comment_end(); } void test_ms_timeout_cm_after_accepted() { comment_start(); fake_time_start(); btw("Location Update request causes a GSUP LU request to HLR"); lu_result_sent = RES_NONE; gsup_expect_tx("04010809710000004026f0"); ms_sends_msg("050802008168000130089910070000006402"); OSMO_ASSERT(gsup_tx_confirmed); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("HLR sends _INSERT_DATA_REQUEST, VLR responds with _INSERT_DATA_RESULT"); gsup_rx("10010809710000004026f00804036470f1", "12010809710000004026f0"); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("having received subscriber data does not mean acceptance"); EXPECT_ACCEPTED(false); thwart_rx_non_initial_requests(); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("HLR also sends GSUP _UPDATE_LOCATION_RESULT"); gsup_rx("06010809710000004026f0", NULL); btw("LU was successful, and the conn has already been closed"); VERBOSE_ASSERT(lu_result_sent, == RES_ACCEPT, "%d"); EXPECT_CONN_COUNT(0); BTW("after a while, a new conn sends a CM Service Request"); cm_service_result_sent = RES_NONE; ms_sends_msg("05247803305886089910070000006402"); OSMO_ASSERT(g_conn); OSMO_ASSERT(g_conn->conn_fsm); OSMO_ASSERT(g_conn->vsub); VERBOSE_ASSERT(cm_service_result_sent, == RES_ACCEPT, "%d"); EXPECT_ACCEPTED(true); BTW("waiting for actual CM Service Request 'content', but now the MS fails to send anything"); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); btw("At first, we're still waiting"); fake_time_passes(0, 423); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); btw("SUBSCR_CONN_TIMEOUT has passed, conn is gone."); VERBOSE_ASSERT(conn_exists(g_conn), == false, "%d"); EXPECT_CONN_COUNT(0); clear_vlr(); comment_end(); } void test_ms_timeout_cm_after_auth() { comment_start(); net->authentication_required = true; fake_time_start(); btw("Location Update request causes a GSUP Send Auth Info request to HLR"); lu_result_sent = RES_NONE; gsup_expect_tx("08010809710000004026f0"); ms_sends_msg("050802008168000130089910070000006402"); OSMO_ASSERT(gsup_tx_confirmed); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("from HLR, rx _SEND_AUTH_INFO_RESULT; VLR sends Auth Req to MS"); auth_request_sent = false; auth_request_expect_rand = "585df1ae287f6e273dce07090d61320b"; auth_request_expect_autn = NULL; /* Based on a Ki of 000102030405060708090a0b0c0d0e0f */ gsup_rx("0a" /* imsi */ "0108" "09710000004026f0" /* 5 auth vectors... */ /* TL TL rand */ "0322" "2010" "585df1ae287f6e273dce07090d61320b" /* TL sres TL kc */ "2104" "2d8b2c3e" "2208" "61855fb81fc2a800" "0322" "2010" "12aca96fb4ffdea5c985cbafa9b6e18b" "2104" "20bde240" "2208" "07fa7502e07e1c00" "0322" "2010" "e7c03ba7cf0e2fde82b2dc4d63077d42" "2104" "a29514ae" "2208" "e2b234f807886400" "0322" "2010" "fa8f20b781b5881329d4fea26b1a3c51" "2104" "5afc8d72" "2208" "2392f14f709ae000" "0322" "2010" "0fd4cc8dbe8715d1f439e304edfd68dc" "2104" "bc8d1c5b" "2208" "da7cdd6bfe2d7000", NULL); VERBOSE_ASSERT(auth_request_sent, == true, "%d"); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("MS sends Authen Response, VLR accepts and sends GSUP LU Req to HLR"); gsup_expect_tx("04010809710000004026f0"); ms_sends_msg("05542d8b2c3e"); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("HLR sends _INSERT_DATA_REQUEST, VLR responds with _INSERT_DATA_RESULT"); gsup_rx("10010809710000004026f00804036470f1", "12010809710000004026f0"); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("HLR also sends GSUP _UPDATE_LOCATION_RESULT"); gsup_rx("06010809710000004026f0", NULL); btw("LU was successful, and the conn has already been closed"); VERBOSE_ASSERT(lu_result_sent, == RES_ACCEPT, "%d"); EXPECT_CONN_COUNT(0); BTW("after a while, a new conn sends a CM Service Request. VLR responds with Auth Req, 2nd auth vector"); auth_request_sent = false; auth_request_expect_rand = "12aca96fb4ffdea5c985cbafa9b6e18b"; cm_service_result_sent = RES_NONE; ms_sends_msg("05247803305886089910070000006402"); OSMO_ASSERT(g_conn); OSMO_ASSERT(g_conn->conn_fsm); OSMO_ASSERT(g_conn->vsub); VERBOSE_ASSERT(cm_service_result_sent, == RES_NONE, "%d"); VERBOSE_ASSERT(auth_request_sent, == true, "%d"); btw("needs auth, not yet accepted"); EXPECT_ACCEPTED(false); thwart_rx_non_initial_requests(); btw("MS sends Authen Response, VLR accepts with a CM Service Accept"); gsup_expect_tx(NULL); ms_sends_msg("0554" "20bde240" /* 2nd vector's sres, s.a. */); VERBOSE_ASSERT(cm_service_result_sent, == RES_ACCEPT, "%d"); BTW("CM Service Request has authenticated, but now the MS fails to send anything"); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); btw("At first, we're still waiting"); fake_time_passes(0, 423); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); btw("SUBSCR_CONN_TIMEOUT has passed, conn is gone."); VERBOSE_ASSERT(conn_exists(g_conn), == false, "%d"); EXPECT_CONN_COUNT(0); clear_vlr(); comment_end(); } void test_ms_timeout_paging_after_accepted() { struct vlr_subscr *vsub; const char *imsi = "901700000004620"; comment_start(); fake_time_start(); btw("Location Update request causes a GSUP LU request to HLR"); lu_result_sent = RES_NONE; gsup_expect_tx("04010809710000004026f0"); ms_sends_msg("050802008168000130089910070000006402"); OSMO_ASSERT(gsup_tx_confirmed); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("HLR sends _INSERT_DATA_REQUEST, VLR responds with _INSERT_DATA_RESULT"); gsup_rx("10010809710000004026f00804036470f1", "12010809710000004026f0"); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("having received subscriber data does not mean acceptance"); EXPECT_ACCEPTED(false); thwart_rx_non_initial_requests(); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("HLR also sends GSUP _UPDATE_LOCATION_RESULT"); gsup_rx("06010809710000004026f0", NULL); btw("LU was successful, and the conn has already been closed"); VERBOSE_ASSERT(lu_result_sent, == RES_ACCEPT, "%d"); EXPECT_CONN_COUNT(0); BTW("an SMS is sent, MS is paged"); paging_expect_imsi(imsi); paging_sent = false; vsub = vlr_subscr_find_by_imsi(net->vlr, imsi); OSMO_ASSERT(vsub); VERBOSE_ASSERT(llist_count(&vsub->cs.requests), == 0, "%d"); send_sms(vsub, vsub, "Privacy in residential applications is a desirable" " marketing option."); VERBOSE_ASSERT(llist_count(&vsub->cs.requests), == 1, "%d"); vlr_subscr_put(vsub); vsub = NULL; VERBOSE_ASSERT(paging_sent, == true, "%d"); VERBOSE_ASSERT(paging_stopped, == false, "%d"); btw("the subscriber and its pending request should remain"); vsub = vlr_subscr_find_by_imsi(net->vlr, imsi); OSMO_ASSERT(vsub); VERBOSE_ASSERT(llist_count(&vsub->cs.requests), == 1, "%d"); vlr_subscr_put(vsub); btw("MS replies with Paging Response, we deliver the SMS"); dtap_expect_tx("09" /* SMS messages */ "01" /* CP-DATA */ "58" /* length */ "01" /* Network to MS */ "00" /* reference */ /* originator (gsm411_send_sms() hardcodes this weird nr) */ "0791" "447758100650" /* 447785016005 */ "00" /* dest */ /* SMS TPDU */ "4c" /* len */ "00" /* SMS deliver */ "05806470f1" /* originating address 46071 */ "00" /* TP-PID */ "00" /* GSM default alphabet */ "071010" /* Y-M-D (from wrapped gsm340_gen_scts())*/ "000000" /* H-M-S */ "00" /* GMT+0 */ "44" /* data length */ "5079da1e1ee7416937485e9ea7c965373d1d6683c270383b3d0e" "d3d36ff71c949e83c22072799e9687c5ec32a81d96afcbf4b4fb" "0c7ac3e9e9b7db05"); ms_sends_msg("06270703305882089910070000006402"); VERBOSE_ASSERT(dtap_tx_confirmed, == true, "%d"); VERBOSE_ASSERT(paging_stopped, == true, "%d"); BTW("conn is still open to wait for SMS ack dance, but now the MS fails to send anything"); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); btw("At first, we're still waiting"); fake_time_passes(0, 423); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); btw("SUBSCR_CONN_TIMEOUT has passed, conn is gone, SMS trans was cleaned away."); VERBOSE_ASSERT(conn_exists(g_conn), == false, "%d"); EXPECT_CONN_COUNT(0); clear_vlr(); comment_end(); } void test_ms_timeout_paging_after_auth() { struct vlr_subscr *vsub; const char *imsi = "901700000004620"; comment_start(); net->authentication_required = true; fake_time_start(); btw("Location Update request causes a GSUP Send Auth Info request to HLR"); lu_result_sent = RES_NONE; gsup_expect_tx("08010809710000004026f0"); ms_sends_msg("050802008168000130089910070000006402"); OSMO_ASSERT(gsup_tx_confirmed); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("from HLR, rx _SEND_AUTH_INFO_RESULT; VLR sends Auth Req to MS"); auth_request_sent = false; auth_request_expect_rand = "585df1ae287f6e273dce07090d61320b"; auth_request_expect_autn = NULL; /* Based on a Ki of 000102030405060708090a0b0c0d0e0f */ gsup_rx("0a" /* imsi */ "0108" "09710000004026f0" /* 5 auth vectors... */ /* TL TL rand */ "0322" "2010" "585df1ae287f6e273dce07090d61320b" /* TL sres TL kc */ "2104" "2d8b2c3e" "2208" "61855fb81fc2a800" "0322" "2010" "12aca96fb4ffdea5c985cbafa9b6e18b" "2104" "20bde240" "2208" "07fa7502e07e1c00" "0322" "2010" "e7c03ba7cf0e2fde82b2dc4d63077d42" "2104" "a29514ae" "2208" "e2b234f807886400" "0322" "2010" "fa8f20b781b5881329d4fea26b1a3c51" "2104" "5afc8d72" "2208" "2392f14f709ae000" "0322" "2010" "0fd4cc8dbe8715d1f439e304edfd68dc" "2104" "bc8d1c5b" "2208" "da7cdd6bfe2d7000", NULL); VERBOSE_ASSERT(auth_request_sent, == true, "%d"); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("If the HLR were to send a GSUP _UPDATE_LOCATION_RESULT we'd still reject"); gsup_rx("06010809710000004026f0", NULL); EXPECT_ACCEPTED(false); thwart_rx_non_initial_requests(); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("MS sends Authen Response, VLR accepts and sends GSUP LU Req to HLR"); gsup_expect_tx("04010809710000004026f0"); ms_sends_msg("05542d8b2c3e"); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("HLR sends _INSERT_DATA_REQUEST, VLR responds with _INSERT_DATA_RESULT"); gsup_rx("10010809710000004026f00804036470f1", "12010809710000004026f0"); VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d"); btw("HLR also sends GSUP _UPDATE_LOCATION_RESULT"); gsup_rx("06010809710000004026f0", NULL); btw("LU was successful, and the conn has already been closed"); VERBOSE_ASSERT(lu_result_sent, == RES_ACCEPT, "%d"); EXPECT_CONN_COUNT(0); BTW("an SMS is sent, MS is paged"); paging_expect_imsi(imsi); paging_sent = false; vsub = vlr_subscr_find_by_imsi(net->vlr, imsi); OSMO_ASSERT(vsub); VERBOSE_ASSERT(llist_count(&vsub->cs.requests), == 0, "%d"); send_sms(vsub, vsub, "Privacy in residential applications is a desirable" " marketing option."); VERBOSE_ASSERT(llist_count(&vsub->cs.requests), == 1, "%d"); vlr_subscr_put(vsub); vsub = NULL; VERBOSE_ASSERT(paging_sent, == true, "%d"); VERBOSE_ASSERT(paging_stopped, == false, "%d"); btw("the subscriber and its pending request should remain"); vsub = vlr_subscr_find_by_imsi(net->vlr, imsi); OSMO_ASSERT(vsub); VERBOSE_ASSERT(llist_count(&vsub->cs.requests), == 1, "%d"); vlr_subscr_put(vsub); btw("MS replies with Paging Response, and VLR sends Auth Request with third key"); auth_request_sent = false; auth_request_expect_rand = "12aca96fb4ffdea5c985cbafa9b6e18b"; ms_sends_msg("06270703305882089910070000006402"); VERBOSE_ASSERT(auth_request_sent, == true, "%d"); btw("needs auth, not yet accepted"); EXPECT_ACCEPTED(false); thwart_rx_non_initial_requests(); btw("MS sends Authen Response, VLR accepts and sends pending SMS"); dtap_expect_tx("09" /* SMS messages */ "01" /* CP-DATA */ "58" /* length */ "01" /* Network to MS */ "00" /* reference */ /* originator (gsm411_send_sms() hardcodes this weird nr) */ "0791" "447758100650" /* 447785016005 */ "00" /* dest */ /* SMS TPDU */ "4c" /* len */ "00" /* SMS deliver */ "05806470f1" /* originating address 46071 */ "00" /* TP-PID */ "00" /* GSM default alphabet */ "071010" /* Y-M-D (from wrapped gsm340_gen_scts())*/ "000000" /* H-M-S */ "00" /* GMT+0 */ "44" /* data length */ "5079da1e1ee7416937485e9ea7c965373d1d6683c270383b3d0e" "d3d36ff71c949e83c22072799e9687c5ec32a81d96afcbf4b4fb" "0c7ac3e9e9b7db05"); ms_sends_msg("0554" "20bde240" /* 2nd vector's sres, s.a. */); VERBOSE_ASSERT(dtap_tx_confirmed, == true, "%d"); VERBOSE_ASSERT(paging_stopped, == true, "%d"); btw("SMS was delivered, no requests pending for subscr"); vsub = vlr_subscr_find_by_imsi(net->vlr, imsi); OSMO_ASSERT(vsub); VERBOSE_ASSERT(llist_count(&vsub->cs.requests), == 0, "%d"); vlr_subscr_put(vsub); BTW("conn is still open to wait for SMS ack dance, but now the MS fails to send anything"); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); btw("At first, we're still waiting"); fake_time_passes(0, 423); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); EXPECT_CONN_COUNT(1); VERBOSE_ASSERT(conn_exists(g_conn), == true, "%d"); VERBOSE_ASSERT(g_conn->conn_fsm->state, == SUBSCR_CONN_S_ACCEPTED, "%d"); fake_time_passes(1, 235); btw("SUBSCR_CONN_TIMEOUT has passed, conn is gone, SMS trans was cleaned away."); VERBOSE_ASSERT(conn_exists(g_conn), == false, "%d"); EXPECT_CONN_COUNT(0); clear_vlr(); comment_end(); } msc_vlr_test_func_t msc_vlr_tests[] = { test_ms_timeout_lu_auth_resp, test_ms_timeout_cm_auth_resp, test_ms_timeout_cm_after_accepted, test_ms_timeout_cm_after_auth, test_ms_timeout_paging_after_accepted, test_ms_timeout_paging_after_auth, NULL };