/* * Copyright 2019 AT&T Intellectual Property * Copyright 2019 Nokia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* * This source code is part of the near-RT RIC (RAN Intelligent Controller) * platform project (RICP). */ // // Created by adi on 6/11/19. // #include #include "asn1cFiles/E2AP-PDU.h" #include "asn1cFiles/InitiatingMessage.h" #include #include #include #include #include #include #include #include #include "logInit.h" // test X2SetUP request and response using namespace std; #define MAXEVENTS 64 int main(const int argc, char **argv) { mdclog_severity_t loglevel = MDCLOG_INFO; auto buff = new string("SETUP TEST"); init_log((char *)buff->c_str()); mdclog_level_set(loglevel); if (argc < 9){ mdclog_mdc_add("app", argv[0]); mdclog_write(MDCLOG_ERR, "Usage host port ran rmr [logLevel = MDCLOG_INFO) { mdclog_write(MDCLOG_INFO, "We are after RMR INIT wait for RMR_Ready"); } int rmrReady = 0; int count = 0; while (!rmrReady) { if ((rmrReady = rmr_ready(rmrCtx)) == 0) { sleep(1); } count++; if (count % 60 == 0) { mdclog_write(MDCLOG_INFO, "waiting to RMR ready state for %d seconds", count); } if (count > 180) { mdclog_write(MDCLOG_ERR, "RMR not ready tried for 3 minutes "); return(-2); } } if (mdclog_level_get() >= MDCLOG_INFO) { mdclog_write(MDCLOG_INFO, "RMR running"); } E2AP_PDU_t pdu {}; auto &initiatingMsg = pdu.select_initiatingMessage(); initiatingMsg.ref_procedureCode().select_id_x2Setup(); initiatingMsg.ref_criticality().select_id_x2Setup(); auto &x2setup = initiatingMsg.ref_value().select_id_x2Setup(); auto &ies = x2setup.ref_protocolIEs(); X2SetupRequest::protocolIEs_t::value_type val {}; val.ref_id().select_id_GlobalENB_ID(); val.ref_criticality().select_id_GlobalENB_ID(); uint8_t v1[] = {0x02, 0xf8, 0x29}; val.ref_value().select_id_GlobalENB_ID().ref_pLMN_Identity().set(3, v1); uint32_t eNBId = 5; val.ref_value().select_id_GlobalENB_ID().ref_eNB_ID().select_macro_eNB_ID().set_buffer(20,reinterpret_cast(&eNBId)); ies.push_back(val); X2SetupRequest::protocolIEs_t::value_type sc {}; ies.push_back(sc); sc.ref_id().select_id_ServedCells(); sc.ref_criticality().select_id_ServedCells(); ServedCells::value_type sce; sc.ref_value().select_id_ServedCells().push_back(sce); sce.ref_servedCellInfo().ref_pCI().set(0x1F7); uint8_t v3[] = {0x1, 0x2}; sce.ref_servedCellInfo().ref_tAC().set(2,v3); sce.ref_servedCellInfo().ref_cellId().ref_pLMN_Identity().set(3, v1); uint8_t v4[] = {0x00, 0x07, 0xab, ((unsigned)0x50) >> (unsigned)4}; sce.ref_servedCellInfo().ref_cellId().ref_eUTRANcellIdentifier().set_buffer(28, v4); BroadcastPLMNs_Item::value_type bpe; sce.ref_servedCellInfo().ref_broadcastPLMNs().push_back(bpe); bpe.set(3, v1); sce.ref_servedCellInfo().ref_eUTRA_Mode_Info().select_fDD().ref_uL_EARFCN().set(0x1); sce.ref_servedCellInfo().ref_eUTRA_Mode_Info().select_fDD().ref_dL_EARFCN().set(0x1); sce.ref_servedCellInfo().ref_eUTRA_Mode_Info().select_fDD().ref_uL_Transmission_Bandwidth().set(Transmission_Bandwidth::bw50); sce.ref_servedCellInfo().ref_eUTRA_Mode_Info().select_fDD().ref_dL_Transmission_Bandwidth().set(Transmission_Bandwidth::bw50); unsigned char s_buffer[4096]; asn::per::EncoderCtx ctx{s_buffer, sizeof(s_buffer)}; std::cout << asn::get_printed(pdu) << std::endl; if (!asn::per::pack(pdu, ctx)) { std::cout << ctx.refErrorCtx().toString() << std::endl; return -3; } size_t packed_buf_size; packed_buf_size = static_cast(ctx.refBuffer().getBytesUsed()); // build message char data[4096] {}; //auto delimiter = (const char) '|'; sprintf(data, "%s|%s|%s|%d|%s/0", host, port, ranName, (int)packed_buf_size, ctx.refBuffer().getBytes(packed_buf_size)); rmr_mbuf_t *msg = rmr_alloc_msg(rmrCtx, int(strlen(data))); rmr_bytes2meid(msg, (unsigned char const*)ranName, strlen(ranName)); rmr_bytes2payload(msg, (unsigned char const*)data, strlen(data)); rmr_bytes2xact(msg, (unsigned char const*)ranName, strlen(ranName)); msg->mtype = RIC_X2_SETUP_REQ; msg->state = 0; msg = rmr_send_msg(rmrCtx, msg); if (msg->state != 0) { mdclog_write(MDCLOG_ERR, "Message state %d while sending RIC_X2_SETUP to %s", msg->state, ranName); rmr_free_msg(msg); rmr_close(rmrCtx); return -4; } rmr_free_msg(msg); unsigned char allocBuffer[64*1024] {0}; auto *events = (struct epoll_event *)calloc(MAXEVENTS, sizeof(event)); while (true) { auto numOfEvents = epoll_wait(epoll_fd, events, MAXEVENTS, -1); if (numOfEvents < 0) { mdclog_write(MDCLOG_ERR, "Epoll wait failed, errno = %s", strerror(errno)); rmr_close(rmrCtx); return -4; } for (auto i = 0; i < numOfEvents; i++) { if ((events[i].events & EPOLLERR) || (events[i].events & EPOLLHUP) || (!(events[i].events & EPOLLIN))) { mdclog_write(MDCLOG_ERR, "epoll error"); } else if (rmrListenFd == events[i].data.fd) { msg = rmr_alloc_msg(rmrCtx, 4096); if (msg == nullptr) { mdclog_write(MDCLOG_ERR, "RMR Allocation message, %s", strerror(errno)); rmr_close(rmrCtx); return -5; } msg = rmr_rcv_msg(rmrCtx, msg); if (msg == nullptr) { mdclog_write(MDCLOG_ERR, "RMR Receving message, %s", strerror(errno)); rmr_close(rmrCtx); return -6; } memset(allocBuffer, 0, 64*1024); switch (msg->mtype) { case RIC_X2_SETUP_RESP: { mdclog_write(MDCLOG_INFO, "successful, RMR receiveing RIC_X2_SETUP_RESP"); asn::per::DecoderCtx dCtx{msg->payload, (size_t) msg->len, allocBuffer, sizeof(allocBuffer)}; E2AP_PDU opdu; if (!asn::per::unpack(opdu, dCtx)) { mdclog_write(MDCLOG_ERR, "Failed to unpack ASN message, %s", dCtx.refErrorCtx().toString()); rmr_free_msg(msg); rmr_close(rmrCtx); return -7; } break; } case RIC_X2_SETUP_FAILURE: { mdclog_write(MDCLOG_INFO, "successful, RMR receiveing RIC_X2_SETUP_FAILURE"); asn::per::DecoderCtx dCtx{msg->payload, (size_t) msg->len, allocBuffer, sizeof(allocBuffer)}; E2AP_PDU opdu; if (!asn::per::unpack(opdu, dCtx)) { mdclog_write(MDCLOG_ERR, "Failed to unpack ASN message, %s", dCtx.refErrorCtx().toString()); rmr_free_msg(msg); rmr_close(rmrCtx); return -7; } break; } default: { mdclog_write(MDCLOG_INFO, "RMR receiveing message type %d", msg->mtype); asn::per::DecoderCtx dCtx{msg->payload, (size_t) msg->len, allocBuffer, sizeof(allocBuffer)}; E2AP_PDU opdu; if (!asn::per::unpack(opdu, dCtx)) { mdclog_write(MDCLOG_ERR, "Failed to unpack ASN message, %s", dCtx.refErrorCtx().toString()); rmr_close(rmrCtx); return -7; } switch (opdu.get_index()) { case 1: { //initiating message mdclog_write(MDCLOG_INFO, "ASN initiating message type %ld", opdu.get_initiatingMessage()->ref_procedureCode().ref_value().get()); break; } case 2: { //successful message mdclog_write(MDCLOG_INFO, "ASN initiating message type %ld", opdu.get_successfulOutcome()->ref_procedureCode().ref_value().get()); break; } case 3: { //unsuccessesful message mdclog_write(MDCLOG_INFO, "ASN initiating message type %ld", opdu.get_unsuccessfulOutcome()->ref_procedureCode().ref_value().get()); break; } } mdclog_write(MDCLOG_INFO, "RMR receiveing message from E2 terminator, %d", msg->mtype); break; } } } } } }