open5gs/test/nas_sm_test.c

164 lines
5.5 KiB
C
Raw Normal View History

2017-03-05 07:49:57 +00:00
#include "core_debug.h"
#include "core_pkbuf.h"
2017-03-08 10:10:01 +00:00
#include "core_lib.h"
2017-03-05 07:49:57 +00:00
2017-04-06 10:20:33 +00:00
#include "mme_context.h"
2017-03-05 07:49:57 +00:00
#include "s1ap_message.h"
#include "testutil.h"
#include "tests1ap.h"
static void nas_sm_test1(abts_case *tc, void *data)
{
status_t rv;
net_sock_t *sock;
pkbuf_t *sendbuf;
pkbuf_t *recvbuf;
2017-03-06 00:07:59 +00:00
s1ap_message_t message;
2017-03-05 07:49:57 +00:00
int rc;
int i;
2017-03-24 12:19:24 +00:00
c_uint8_t tmp[MAX_SDU_LEN];
2017-03-08 10:10:01 +00:00
char *_authentication_request =
"000b403b00000300 000005c00100009d 000800020001001a 0025240752002008"
"0c3818183b522614 162c07601d0d10f1 1b89a2a8de8000ad 0ccf7f55e8b20d";
char *_security_mode_command =
"000b402700000300 000005c00100009d 000800020001001a 00111037f933b5d5"
"00075d010005e060 c04070";
2017-04-11 05:26:54 +00:00
char *_esm_information_request =
"000b402000000300 000005c00100009d 000800020001001a 000a092779012320"
"010221d9";
2017-04-13 14:14:59 +00:00
char *_initial_context_setup_request = "00090080"
"e400000600000005 c00100009d000800 0200010042000a18 0640000060064000"
"0000180080920000 3400808c45400920 0000000000000000 0f807f0000010000"
"00017527daddd870 0207420249064000 f1105ba0004c5221 c10509ffffffff09"
"08696e7465726e65 7405012d2d2d715e 0600000000040427 2980c22304030000"
"0480211002000010 8106080808088306 04040404000d0408 080808000d040404"
"0404500bf600f110 000201040001fb53 12172c5949640125 006b00051c000c00"
"00004900203311c6 03c6a6d67f695e5a c02bb75b381b693c 3893a6d932fd9182"
"3544e3e79b";
2017-04-13 04:54:39 +00:00
2017-03-05 07:49:57 +00:00
/* eNB connects to MME */
sock = tests1ap_enb_connect();
ABTS_PTR_NOTNULL(tc, sock);
2017-04-09 15:27:19 +00:00
d_log_set_level(D_MSG_TO_STDOUT, D_LOG_LEVEL_FULL);
2017-03-05 07:49:57 +00:00
/* Send S1-Setup Reqeust */
rv = tests1ap_build_setup_req(&sendbuf, 0x54f64);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
rv = tests1ap_enb_send(sock, sendbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
/* Receive S1-Setup Response */
2017-03-24 12:19:24 +00:00
recvbuf = pkbuf_alloc(0, MAX_SDU_LEN);
2017-03-05 07:49:57 +00:00
rc = tests1ap_enb_read(sock, recvbuf);
ABTS_INT_NEQUAL(tc, 0, rc);
rv = s1ap_decode_pdu(&message, recvbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
s1ap_free_pdu(&message);
pkbuf_free(recvbuf);
/* Send Initial-UE Message */
2017-04-06 08:23:18 +00:00
mme_self()->mme_ue_s1ap_id = 16777372;
2017-03-05 07:49:57 +00:00
rv = tests1ap_build_initial_ue_msg(&sendbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
rv = tests1ap_enb_send(sock, sendbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
2017-04-13 14:14:59 +00:00
/* Receive Authentication Request */
2017-03-24 12:19:24 +00:00
recvbuf = pkbuf_alloc(0, MAX_SDU_LEN);
2017-03-05 07:49:57 +00:00
rc = tests1ap_enb_read(sock, recvbuf);
ABTS_INT_NEQUAL(tc, 0, rc);
2017-03-08 10:10:01 +00:00
recvbuf->len = 63;
ABTS_TRUE(tc, memcmp(recvbuf->payload,
2017-03-25 01:45:49 +00:00
CORE_HEX(_authentication_request, strlen(_authentication_request), tmp),
2017-03-08 10:10:01 +00:00
recvbuf->len) == 0);
2017-03-05 07:49:57 +00:00
pkbuf_free(recvbuf);
2017-03-06 12:45:41 +00:00
2017-04-13 14:14:59 +00:00
/* Send Authentication Response */
2017-03-06 12:45:41 +00:00
rv = tests1ap_build_authentication_response(&sendbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
rv = tests1ap_enb_send(sock, sendbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
2017-03-05 07:49:57 +00:00
2017-04-13 14:14:59 +00:00
/* Receive Security mode Command */
2017-03-24 12:19:24 +00:00
recvbuf = pkbuf_alloc(0, MAX_SDU_LEN);
2017-03-07 05:47:17 +00:00
rc = tests1ap_enb_read(sock, recvbuf);
2017-03-08 10:10:01 +00:00
recvbuf->len = 43;
2017-03-08 12:39:49 +00:00
ABTS_TRUE(tc, memcmp(recvbuf->payload,
2017-03-25 01:45:49 +00:00
CORE_HEX(_security_mode_command, strlen(_security_mode_command), tmp),
2017-03-08 12:39:49 +00:00
recvbuf->len) == 0);
2017-03-07 05:47:17 +00:00
ABTS_INT_NEQUAL(tc, 0, rc);
pkbuf_free(recvbuf);
2017-04-13 14:14:59 +00:00
/* Send Security mode Complete */
2017-03-07 05:47:17 +00:00
rv = tests1ap_build_security_mode_complete(&sendbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
rv = tests1ap_enb_send(sock, sendbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
2017-04-11 05:26:54 +00:00
/* Receive ESM Information Request */
recvbuf = pkbuf_alloc(0, MAX_SDU_LEN);
rc = tests1ap_enb_read(sock, recvbuf);
recvbuf->len = 36;
ABTS_TRUE(tc, memcmp(recvbuf->payload,
CORE_HEX(_esm_information_request, strlen(_security_mode_command), tmp),
recvbuf->len) == 0);
pkbuf_free(recvbuf);
/* Send ESM Information Response */
rv = tests1ap_build_esm_information_response(&sendbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
rv = tests1ap_enb_send(sock, sendbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
2017-04-13 14:14:59 +00:00
/* Receive Initial Context Setup Request +
* Attach Accept +
* Activate Default Bearer Context Request */
recvbuf = pkbuf_alloc(0, MAX_SDU_LEN);
rc = tests1ap_enb_read(sock, recvbuf);
recvbuf->len = 233;
ABTS_TRUE(tc, memcmp(recvbuf->payload,
CORE_HEX(_initial_context_setup_request,
strlen(_initial_context_setup_request), tmp),
recvbuf->len) == 0);
pkbuf_free(recvbuf);
/* Send UE Capability Info Indication */
rv = tests1ap_build_ue_capability_info_indication(&sendbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
rv = tests1ap_enb_send(sock, sendbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
/* Send Initial Context Setup Response */
rv = tests1ap_build_initial_context_setup_response(&sendbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
rv = tests1ap_enb_send(sock, sendbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
/* Send Attach Complete */
rv = tests1ap_build_attach_complete(&sendbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
rv = tests1ap_enb_send(sock, sendbuf);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
core_sleep(time_from_msec(1000));
2017-04-11 05:26:54 +00:00
2017-03-10 06:40:45 +00:00
d_log_set_level(D_MSG_TO_STDOUT, D_LOG_LEVEL_ERROR);
2017-03-05 07:49:57 +00:00
/* eNB disonncect from MME */
rv = tests1ap_enb_close(sock);
ABTS_INT_EQUAL(tc, CORE_OK, rv);
core_sleep(time_from_msec(300));
2017-03-10 06:40:45 +00:00
d_log_set_level(D_MSG_TO_STDOUT, D_LOG_LEVEL_FULL);
2017-03-05 07:49:57 +00:00
}
abts_suite *test_nas_sm(abts_suite *suite)
{
suite = ADD_SUITE(suite)
abts_run_test(suite, nas_sm_test1, NULL);
return suite;
}