E2AP code changes
[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
21 #include "cu_stub.h"
22 #include "cu_stub_sctp.h"
23 #include "cu_stub_egtp.h"
24
25 #define CU_ID 1
26 #define CU_NAME "ORAN_OAM_CU"
27 #define DU_IP_V4_ADDR "10.0.2.20"
28 #define CU_IP_V4_ADDR "10.0.2.25"
29 #define DU_IP_V6_ADDR "0000:0000:0000:0000:0000:0000:0000:0001"
30 #define CU_IP_V6_ADDR "0000:0000:0000:0000:0000:0000:0000:0011"
31 #define DU_PORT 38472
32 #define CU_PORT 38472 
33 #define DU_EGTP_PORT 39001
34 #define CU_EGTP_PORT 39002
35 #define RRC_VER 0
36 #define EXT_RRC_VER 5
37 #define PLMN_MCC0 3
38 #define PLMN_MCC1 1
39 #define PLMN_MCC2 1
40 #define PLMN_MNC0 4
41 #define PLMN_MNC1 8
42 #define PLMN_MNC2 0
43
44 /*******************************************************************
45  *
46  * @brief Handles SCTP notification 
47  *
48  * @details
49  *
50  *    Function : sctpNtfyInd
51  *
52  *    Functionality:
53  *         Handles SCTP notification
54  *
55  * @params[in] sctp notification
56  * @return void
57  *
58  ******************************************************************/
59 void sctpNtfyInd(CmInetSctpNotification *ntfy)
60 {
61 //TODO
62 }
63
64 void init_log()
65 {
66         openlog("CU_STUB",LOG_CONS | LOG_PID | LOG_NDELAY, LOG_LOCAL1);
67 }
68 /*******************************************************************
69  *
70  * @brief Main function of CU APP
71  *
72  * @details
73  *
74  *    Function : main
75  *
76  *    Functionality:
77  *         - Reads CU related configurations
78  *         - Initialize SCTP Parameters
79  *         - Start SCTP receiver thread
80  *
81  * @params[in] 
82  * @return ROK     - success
83  *         RFAILED - failure
84  *
85  * ****************************************************************/
86
87 S16 tst()
88 {
89    init_log();   
90    DU_LOG("\nStarting CU_STUB");
91    /* Read CU configurations */
92    readCuCfg();
93
94    /* Start CU-EGTP */
95    egtpActvInit();
96    egtpInitReq();
97
98    /* Initializing SCTP global parameters */
99    sctpActvInit();
100  
101    /* Start CU-SCTP to listen on incoming connection */
102    sctpCfgReq();
103    sctpStartReq();
104
105    RETVALUE(ROK);
106 }
107
108 /*******************************************************************
109  *
110  * @brief Read CU related configuration
111  *
112  * @details
113  *
114  *    Function : readCuCfg
115  *
116  *    Functionality:
117  *            - RRead CU related configuration
118  *
119  * @params[in] 
120  * @return ROK     - success
121  *         RFAILED - failure
122  *
123  * ****************************************************************/
124
125 void readCuCfg()
126 {
127    U32 ipv4_du, ipv4_cu;
128
129    DU_LOG("\nReading CU configurations");
130
131    cmInetAddr((S8*)DU_IP_V4_ADDR, &ipv4_du);
132    cmInetAddr((S8*)CU_IP_V4_ADDR, &ipv4_cu);
133    //U32 ipv6_int = inet_addr(DU_IP_V6_ADDR);
134  
135    cuCfgParams.cuId = CU_ID;
136    strcpy(cuCfgParams.cuName, CU_NAME);
137  
138    /* DU IP Address and Port*/
139    cuCfgParams.sctpParams.duIpAddr.ipV4Addr = ipv4_du;
140    cuCfgParams.sctpParams.duIpAddr.ipV6Pres = false;
141    cuCfgParams.sctpParams.duPort = DU_PORT;
142
143    /* CU IP Address and Port*/
144    cuCfgParams.sctpParams.cuIpAddr.ipV4Addr = ipv4_cu;
145    cuCfgParams.sctpParams.cuIpAddr.ipV6Pres = false;
146    cuCfgParams.sctpParams.cuPort = CU_PORT;
147
148    /*PLMN*/
149    cuCfgParams.plmn.mcc[0] = PLMN_MCC0;
150    cuCfgParams.plmn.mcc[1] = PLMN_MCC1;
151    cuCfgParams.plmn.mcc[2] = PLMN_MCC2;
152    cuCfgParams.plmn.mnc[0] = PLMN_MNC0;
153    cuCfgParams.plmn.mnc[1] = PLMN_MNC1;
154    cuCfgParams.plmn.mnc[2] = PLMN_MNC2;
155
156    /*RRC Version*/
157    cuCfgParams.rrcVersion.rrcVer = RRC_VER;
158    cuCfgParams.rrcVersion.extRrcVer = EXT_RRC_VER;
159
160
161    /* EGTP Parameters */
162    cuCfgParams.egtpParams.localIp.ipV4Pres = TRUE;
163    cuCfgParams.egtpParams.localIp.ipV4Addr = ipv4_cu;
164    cuCfgParams.egtpParams.localPort = CU_EGTP_PORT;
165    cuCfgParams.egtpParams.destIp.ipV4Pres = TRUE;
166    cuCfgParams.egtpParams.destIp.ipV4Addr = ipv4_du;
167    cuCfgParams.egtpParams.destPort = DU_EGTP_PORT;
168    cuCfgParams.egtpParams.minTunnelId = 0;
169    cuCfgParams.egtpParams.maxTunnelId = 10;
170
171 } /* End of readCuCfg */
172 /**********************************************************************
173          End of file
174 **********************************************************************/