11b7a4e755939afb3c7394dc76aeba49da52de25
[o-du/l2.git] / src / cu_stub / cu_stub.c
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2017-2019] [Radisys]                                        #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17 *******************************************************************************/
18
19 /* This functions contains main() for cu_app */
20 #include "common_def.h"
21 #include "cu_stub_sctp.h"
22 #include "cu_stub_egtp.h"
23 #include "OCTET_STRING.h"
24 #include "cu_f1ap_msg_hdl.h"
25 #include "cu_stub.h"
26
27 #ifdef O1_ENABLE
28 #include "CmInterface.h"
29 #endif
30
31
32 #ifdef O1_ENABLE
33 extern StartupConfig g_cfg;
34 #endif
35
36 /*******************************************************************
37  *
38  * @brief Fetches pointer to DU Database
39  *
40  * @details
41  *
42  *    Function : getDuDb
43  *
44  *    Functionality:
45  *      Searches and returns pointer to DU structure based on DU Id
46  *
47  * @params[in] DU Id
48  * @return Pointer to DU Db
49  *
50  ******************************************************************/
51 DuDb* getDuDb(uint32_t duId)
52 {
53    uint8_t duIdx;
54    for(duIdx=0; duIdx < cuCb.numDu; duIdx++)
55    {
56       if(cuCb.duInfo[duIdx].duId == duId)
57          return (&cuCb.duInfo[duIdx]);
58    }
59    return NULLP;
60 }
61
62 /*******************************************************************
63  *
64  * @brief Fetches pointer to Cell Cb
65  *
66  * @details
67  *
68  *    Function : getCellCb
69  *
70  *    Functionality:
71  *       Searches for a cell within a DU based on NR cell Id
72  *       Returns pointer to this cell Cb structure
73  *
74  * @params[in] Pointer to DU Db
75  *             NR Cell ID
76  * @return Pointer to cell Cb
77  *
78  ******************************************************************/
79 CuCellCb* getCellCb(DuDb *duDb, uint32_t cellId)
80 {
81    uint8_t cellIdx;
82    for(cellIdx=0; cellIdx < duDb->numCells; cellIdx++)
83    {
84       if(duDb->cellCb[cellIdx].nrCellId == cellId)
85          return &(duDb->cellCb[cellIdx]);
86    }
87    return NULLP;
88 }
89
90 /*******************************************************************
91  *
92  * @brief Handles SCTP notification 
93  *
94  * @details
95  *
96  *    Function : sctpNtfyInd
97  *
98  *    Functionality:
99  *         Handles SCTP notification
100  *
101  * @params[in] sctp notification
102  * @return void
103  *
104  ******************************************************************/
105 void sctpNtfyInd(CmInetSctpNotification *ntfy)
106 {
107 //TODO
108 }
109
110 void init_log()
111 {
112     openlog("CU_STUB",LOG_CONS | LOG_PID | LOG_NDELAY, LOG_LOCAL1);
113 }
114 /*******************************************************************
115  *
116  * @brief Main function of CU APP
117  *
118  * @details
119  *
120  *    Function : main
121  *
122  *    Functionality:
123  *         - Reads CU related configurations
124  *         - Initialize SCTP Parameters
125  *         - Start SCTP receiver thread
126  *
127  * @params[in] 
128  * @return ROK     - success
129  *         RFAILED - failure
130  *
131  * ****************************************************************/
132
133 uint8_t tst()
134 {
135    int retVal=0;
136    pthread_t conThrdId;
137    pthread_attr_t attr;
138
139    init_log();   
140    DU_LOG("\nINFO   -->  CU_STUB : Starting CU_STUB\n");
141
142    /* Start thread to receive console input */
143    pthread_attr_init(&attr);
144    pthread_attr_setstacksize(&attr, (size_t)NULLD);
145    pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM);
146    pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
147    retVal = pthread_create(&conThrdId, &attr, cuConsoleHandler, NULLP);
148    if(retVal != 0)
149    {
150       DU_LOG("\nERROR  -->  CU_STUB :  Thread creation failed. Cause %d", retVal);
151    }
152    pthread_attr_destroy(&attr);
153
154    /* Read CU configurations */
155    readCuCfg();
156
157    /* Start CU-EGTP */
158    egtpActvInit();
159    egtpInitReq();
160
161    /* Initializing SCTP global parameters */
162    sctpActvInit();
163  
164    /* Start CU-SCTP to listen on incoming connection */
165    sctpCfgReq();
166    sctpStartReq();
167
168    return ROK;
169 }
170
171 /*******************************************************************
172  *
173  * @brief Read CU related configuration
174  *
175  * @details
176  *
177  *    Function : readCuCfg
178  *
179  *    Functionality:
180  *            - RRead CU related configuration
181  *
182  * @params[in] 
183  * @return ROK     - success
184  *         RFAILED - failure
185  *
186  * ****************************************************************/
187
188 void readCuCfg()
189 {
190    uint8_t  *numDu;
191    uint32_t ipv4_du, ipv4_cu;
192
193    DU_LOG("\nDEBUG  -->  CU_STUB : Reading CU configurations");
194
195    cuCb.cuCfgParams.cuId = CU_ID;
196    strcpy(cuCb.cuCfgParams.cuName, CU_NAME);
197
198 #ifdef O1_ENABLE
199    if( getStartupConfigForStub(&g_cfg) != ROK )
200    {
201       DU_LOG("\nError  -->  CU_STUB : Could not fetch startup "\
202              "configurations from Netconf interface\n");
203       exit(1);
204    }
205    
206    cmInetAddr((S8*)g_cfg.DU_IPV4_Addr, &ipv4_du);
207    cmInetAddr((S8*)g_cfg.CU_IPV4_Addr, &ipv4_cu);
208
209    cuCb.cuCfgParams.sctpParams.duPort = g_cfg.DU_Port;
210    cuCb.cuCfgParams.sctpParams.cuPort = g_cfg.CU_Port;
211 #else
212    cuCb.cuCfgParams.sctpParams.numDu = 0;
213    numDu = &cuCb.cuCfgParams.sctpParams.numDu;
214    while(*numDu < MAX_DU_SUPPORTED)
215    {
216       /* DU IP Address and Port*/
217       memset(&ipv4_du, 0, sizeof(uint32_t));
218       cmInetAddr((S8*)DU_IP_V4_ADDR[*numDu], &ipv4_du);
219       cuCb.cuCfgParams.sctpParams.sctpAssoc[*numDu].duIpAddr.ipV4Addr = ipv4_du;
220       cuCb.cuCfgParams.sctpParams.sctpAssoc[*numDu].duIpAddr.ipV6Pres = false;
221       cuCb.cuCfgParams.sctpParams.sctpAssoc[*numDu].duPort = DU_SCTP_PORT[*numDu];
222
223       /* CU IP Address and Port*/
224       memset(&ipv4_du, 0, sizeof(uint32_t));
225       cmInetAddr((S8*)CU_IP_V4_ADDR, &ipv4_cu);
226       cuCb.cuCfgParams.sctpParams.sctpAssoc[*numDu].cuIpAddr.ipV4Addr = ipv4_cu;
227       cuCb.cuCfgParams.sctpParams.sctpAssoc[*numDu].cuIpAddr.ipV6Pres = false;
228       cuCb.cuCfgParams.sctpParams.sctpAssoc[*numDu].cuPort = CU_SCTP_PORT_TO_DU[*numDu];
229       (*numDu)++;
230    }
231
232 #endif
233
234    /*PLMN*/
235    cuCb.cuCfgParams.plmn.mcc[0] = PLMN_MCC0;
236    cuCb.cuCfgParams.plmn.mcc[1] = PLMN_MCC1;
237    cuCb.cuCfgParams.plmn.mcc[2] = PLMN_MCC2;
238    cuCb.cuCfgParams.plmn.mnc[0] = PLMN_MNC0;
239    cuCb.cuCfgParams.plmn.mnc[1] = PLMN_MNC1;
240    cuCb.cuCfgParams.plmn.mnc[2] = PLMN_MNC2;
241
242    /*RRC Version*/
243    cuCb.cuCfgParams.rrcVersion.rrcVer = RRC_VER;
244    cuCb.cuCfgParams.rrcVersion.extRrcVer = EXT_RRC_VER;
245
246
247    /* EGTP Parameters */
248    cuCb.cuCfgParams.egtpParams.localIp.ipV4Pres = TRUE;
249    cuCb.cuCfgParams.egtpParams.localIp.ipV4Addr = ipv4_cu;
250    cuCb.cuCfgParams.egtpParams.localPort = CU_EGTP_PORT;
251    cuCb.cuCfgParams.egtpParams.destIp.ipV4Pres = TRUE;
252    cuCb.cuCfgParams.egtpParams.destIp.ipV4Addr = ipv4_du;
253    cuCb.cuCfgParams.egtpParams.destPort = DU_EGTP_PORT;
254    cuCb.cuCfgParams.egtpParams.minTunnelId = MIN_TEID;
255    cuCb.cuCfgParams.egtpParams.currTunnelId = cuCb.cuCfgParams.egtpParams.minTunnelId;
256    cuCb.cuCfgParams.egtpParams.maxTunnelId = MAX_TEID;
257
258 } /* End of readCuCfg */
259
260 /*******************************************************************
261  *
262  * @brief Handles Console input
263  *
264  * @details
265  *
266  *    Function : cuConsoleHandler
267  *
268  *    Functionality: Handles Console input
269  *
270  * @params[in] 
271  * @return ROK     - success
272  *         RFAILED - failure
273  *
274  * ****************************************************************/
275 void *cuConsoleHandler(void *args)
276 {
277    char ch;
278    uint8_t teId = 0;
279    uint8_t ret = ROK;
280    uint8_t cnt = 0;
281
282    /* This variable is taken for sending specific number of downlink data packet. 
283     * Presently the code is supporting total 4500 data packets trasfer for 3 UEs only with sleep(1).
284     * If you wants to pump data for 3 UE change the following macro values
285     * NUM_TUNNEL_TO_PUMP_DATA = 9, NUM_DL_PACKETS = 1.
286     * totalDataPacket = totalNumOfTestFlow * NUM_TUNNEL_TO_PUMP_DATA * NUM_DL_PACKETS 
287     * totalDataPacket = [500*9*1] */
288    int32_t totalNumOfTestFlow = 500; 
289
290    while(true) 
291    {
292       /* Send DL user data to CU when user enters 'd' on console */
293       if((ch = getchar()) == 'd')
294       {
295
296       /* Change #if 0 to #if 1 to take input from user */
297 #if 0
298          DU_LOG("\n EGTP --> : Enter TEID id(1..10) where DL Data to be sent\n");
299          scanf("%d",&teId);
300          
301          if(teId > MAX_TEID || teId < MIN_TEID)
302          {
303             DU_LOG("\nERROR  -->  EGTP : TEID(%x) OUT Of Range",teId);
304             printf("\n");
305             continue;
306          }
307          /* Start Pumping data from CU to DU */
308          DU_LOG("\nDEBUG  -->  EGTP: Sending DL User Data(teId:%d)\n",teId);
309
310          cnt =0;
311          while(cnt < NUM_DL_PACKETS)
312          {
313             ret =  cuEgtpDatReq(teId);
314             if(ret != ROK)
315             {
316                DU_LOG("\nERROR --> EGTP: Issue with teid=%d\n",teId);
317                break;
318             }
319             cnt++;
320          }
321 #else
322          while(totalNumOfTestFlow)
323          {
324             for(teId = 1; teId <= NUM_TUNNEL_TO_PUMP_DATA; teId++)
325             {
326                DU_LOG("\nDEBUG  -->  EGTP: Sending DL User Data(teId:%d)\n",teId);
327                cnt =0;
328                while(cnt < NUM_DL_PACKETS)
329                {
330                   ret =  cuEgtpDatReq(teId);      
331                   if(ret != ROK)
332                   {
333                      DU_LOG("\nERROR --> EGTP: Issue with teid=%d\n",teId);
334                      break;
335                   }
336                   /* TODO : sleep(1) will be removed later once we will be able to
337                    * support the continuous data pack transfer */
338                   sleep(1);
339                   cnt++;
340                }
341             }
342             totalNumOfTestFlow--;
343          }
344 #endif
345          continue;
346       } 
347    }
348 }
349 /**********************************************************************
350          End of file
351 **********************************************************************/