Support for service update E2 Message
[sim/e2-interface.git] / e2sim / src / base / e2sim.cpp
1 /*****************************************************************************
2 #                                                                            *
3 # Copyright 2020 AT&T Intellectual Property                                  *
4 # Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved.      *
5 #                                                                            *
6 # Licensed under the Apache License, Version 2.0 (the "License");            *
7 # you may not use this file except in compliance with the License.           *
8 # You may obtain a copy of the License at                                    *
9 #                                                                            *
10 #      http://www.apache.org/licenses/LICENSE-2.0                            *
11 #                                                                            *
12 # Unless required by applicable law or agreed to in writing, software        *
13 # distributed under the License is distributed on an "AS IS" BASIS,          *
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   *
15 # See the License for the specific language governing permissions and        *
16 # limitations under the License.                                             *
17 #                                                                            *
18 ******************************************************************************/
19
20 #include <stdio.h>
21 #include <unistd.h>
22 #include <string>
23 #include <iostream>
24 #include <fstream>
25 #include <vector>
26
27 #include "e2sim.hpp"
28 #include "e2sim_defs.h"
29 #include "e2sim_sctp.hpp"
30 #include "e2ap_message_handler.hpp"
31 #include "encode_e2apv1.hpp"
32
33 using namespace std;
34
35 int client_fd = 0;
36
37 std::unordered_map<long, OCTET_STRING_t*> E2Sim::getRegistered_ran_functions() {
38   return ran_functions_registered;
39 }
40
41 void E2Sim::register_subscription_callback(long func_id, SubscriptionCallback cb) {
42   fprintf(stderr,"%%%%about to register callback for subscription for func_id %d\n", func_id);
43   subscription_callbacks[func_id] = cb;
44   
45 }
46
47 SubscriptionCallback E2Sim::get_subscription_callback(long func_id) {
48   fprintf(stderr, "%%%%we are getting the subscription callback for func id %d\n", func_id);
49   SubscriptionCallback cb;
50
51   try {
52     cb = subscription_callbacks.at(func_id);
53   } catch(const std::out_of_range& e) {
54     throw std::out_of_range("Function ID is not registered");
55   }
56   return cb;
57
58 }
59
60 void E2Sim::register_e2sm(long func_id, OCTET_STRING_t *ostr) {
61
62   //Error conditions:
63   //If we already have an entry for func_id
64   
65   printf("%%%%about to register e2sm func desc for %d\n", func_id);
66
67   ran_functions_registered[func_id] = ostr;
68
69 }
70
71
72 void E2Sim::encode_and_send_sctp_data(E2AP_PDU_t* pdu)
73 {
74   uint8_t       *buf;
75   sctp_buffer_t data;
76
77   data.len = e2ap_asn1c_encode_pdu(pdu, &buf);
78   memcpy(data.buffer, buf, min(data.len, MAX_SCTP_BUFFER));
79
80   sctp_send_data(client_fd, data);
81 }
82
83
84 void E2Sim::wait_for_sctp_data()
85 {
86   sctp_buffer_t recv_buf;
87   if(sctp_receive_data(client_fd, recv_buf) > 0)
88   {
89     LOG_I("[SCTP] Received new data of size %d", recv_buf.len);
90     e2ap_handle_sctp_data(client_fd, recv_buf, false, this);
91   }
92 }
93
94
95
96 void E2Sim::generate_e2apv1_subscription_response_success(E2AP_PDU *e2ap_pdu, long reqActionIdsAccepted[], long reqActionIdsRejected[], int accept_size, int reject_size, long reqRequestorId, long reqInstanceId) {
97   encoding::generate_e2apv1_subscription_response_success(e2ap_pdu, reqActionIdsAccepted, reqActionIdsRejected, accept_size, reject_size, reqRequestorId, reqInstanceId);
98 }
99
100 void E2Sim::generate_e2apv1_indication_request_parameterized(E2AP_PDU *e2ap_pdu, long requestorId, long instanceId, long ranFunctionId, long actionId, long seqNum, uint8_t *ind_header_buf, int header_length, uint8_t *ind_message_buf, int message_length) {
101   encoding::generate_e2apv1_indication_request_parameterized(e2ap_pdu, requestorId, instanceId, ranFunctionId, actionId, seqNum, ind_header_buf, header_length, ind_message_buf, message_length);
102
103 }
104
105 int E2Sim::run_loop(int argc, char* argv[]){
106
107   printf("Start E2 Agent (E2 Simulator\n");
108
109   ifstream simfile;
110   string line;
111
112   simfile.open("simulation.txt", ios::in);
113
114   if (simfile.is_open()) {
115
116     while (getline(simfile, line)) {
117       cout << line << "\n";
118     }
119
120     simfile.close();
121
122   }
123
124   bool xmlenc = false;
125
126   options_t ops = read_input_options(argc, argv);
127
128   printf("After reading input options\n");
129
130   //E2 Agent will automatically restart upon sctp disconnection
131   //  int server_fd = sctp_start_server(ops.server_ip, ops.server_port);
132
133   client_fd = sctp_start_client(ops.server_ip, ops.server_port);
134   E2AP_PDU_t* pdu_setup = (E2AP_PDU_t*)calloc(1,sizeof(E2AP_PDU));
135
136   printf("After starting client\n");
137   printf("client_fd value is %d\n", client_fd);
138   
139   std::vector<encoding::ran_func_info> all_funcs;
140
141   //Loop through RAN function definitions that are registered
142
143   for (std::pair<long, OCTET_STRING_t*> elem : ran_functions_registered) {
144     printf("looping through ran func\n");
145     encoding::ran_func_info next_func;
146
147     next_func.ranFunctionId = elem.first;
148     next_func.ranFunctionDesc = elem.second;
149     next_func.ranFunctionRev = (long)2;
150     all_funcs.push_back(next_func);
151   }
152     
153   printf("about to call setup request encode\n");
154   
155   generate_e2apv1_setup_request_parameterized(pdu_setup, all_funcs);
156
157   printf("After generating e2setup req\n");
158
159   xer_fprint(stderr, &asn_DEF_E2AP_PDU, pdu_setup);
160
161   printf("After XER Encoding\n");
162
163   auto buffer_size = MAX_SCTP_BUFFER;
164   unsigned char buffer[MAX_SCTP_BUFFER];
165   
166   sctp_buffer_t data;
167
168   char *error_buf = (char*)calloc(300, sizeof(char));
169   size_t errlen;
170
171   asn_check_constraints(&asn_DEF_E2AP_PDU, pdu_setup, error_buf, &errlen);
172   printf("error length %d\n", errlen);
173   printf("error buf %s\n", error_buf);
174
175   auto er = asn_encode_to_buffer(nullptr, ATS_ALIGNED_BASIC_PER, &asn_DEF_E2AP_PDU, pdu_setup, buffer, buffer_size);
176
177   data.len = er.encoded;
178
179   fprintf(stderr, "er encded is %d\n", er.encoded);
180
181   memcpy(data.buffer, buffer, er.encoded);
182
183   if(sctp_send_data(client_fd, data) > 0) {
184     LOG_I("[SCTP] Sent E2-SETUP-REQUEST");
185   } else {
186     LOG_E("[SCTP] Unable to send E2-SETUP-REQUEST to peer");
187   }
188
189   sctp_buffer_t recv_buf;
190
191   LOG_I("[SCTP] Waiting for SCTP data");
192
193   while(1) //constantly looking for data on SCTP interface
194   {
195     if(sctp_receive_data(client_fd, recv_buf) <= 0)
196       break;
197
198     LOG_I("[SCTP] Received new data of size %d", recv_buf.len);
199
200     e2ap_handle_sctp_data(client_fd, recv_buf, xmlenc, this);
201     if (xmlenc) xmlenc = false;
202   }
203
204   return 0;
205 }