E2AP changes Part2
[o-du/l2.git] / src / cu_stub / cu_stub.h
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 #ifndef __CU_MGR_MAIN_H__
20 #define __CU_MGR_MAIN_H__
21
22
23 #include "stdio.h"
24 #include "stdlib.h"
25 #include "string.h"
26 #include "stdbool.h"
27 #include "ctype.h"
28 #include "envopt.h"        /* Environment options */
29 #include "envdep.h"        /* Environment dependent */
30 #include "envind.h"        /* Environment independent */
31
32 #include "gen.h"           /* General */
33 #include "ssi.h"           /* System services */
34 #include "ss_queue.h"
35 #include "ss_task.h"
36 #include "ss_msg.h"
37 #include "cm_inet.h"
38 #include "cm_llist.h"      /* Common link list  defines  */
39 #include "cm_hash.h"       /* Common hashlist  defines */
40
41 #include "gen.x"           /* General */
42 #include "ssi.x"   /* System services */
43 #include "ss_queue.x"
44 #include "ss_task.x"
45 #include "ss_msg.x"
46 #include "cm_lib.x"
47 #include "cm_inet.x"
48 #include "cm_llist.x"      /* Common link list  defines  */
49 #include "cm_hash.x"       /* Common hashlist  defines */
50 #include "odu_common_codec.h"
51
52 #include "du_log.h"
53 #define MAX_IPV6_LEN 16
54 #define CU_DU_NAME_LEN_MAX 30      /* Max length of CU/DU name string */
55
56 #define CU_APP_MEM_REG 1
57 #define CU_POOL 1
58 #define MAX_DU_PORT 2
59 #define DU_PORT 38472
60
61 /* allocate and zero out a static buffer */
62 #define CU_ALLOC(_datPtr, _size)                                \
63 {                                                               \
64    S16 _ret;                                                    \
65    _ret = SGetSBuf(CU_APP_MEM_REG, CU_POOL,                  \
66                      (Data **)&_datPtr, _size);                  \
67    if(_ret == ROK)                                              \
68       cmMemset((U8*)_datPtr, 0, _size);                         \
69    else                                                         \
70       _datPtr = NULLP;                                          \
71 }
72  
73 /* free a static buffer */
74 #define CU_FREE(_datPtr, _size)                                 \
75    SPutSBuf(CU_APP_MEM_REG, CU_POOL,                         \
76          (Data *)_datPtr, _size);
77
78
79 typedef struct ipAddr
80 {
81  Bool ipV4Pres;
82  U32  ipV4Addr;
83  Bool ipV6Pres;
84  U8   ipV6Addr[MAX_IPV6_LEN];
85 }SctpIpAddr;
86
87 typedef struct RrcVersion
88 {
89   U8    rrcVer;     /* Latest RRC Version */
90   U32   extRrcVer;  /* Latest RRC version extended */
91 }RrcVersion;
92
93 typedef struct egtpParams
94 {
95    SctpIpAddr  localIp;
96    U16         localPort;
97    SctpIpAddr  destIp;
98    U16         destPort;
99    U32       minTunnelId;
100    U32       maxTunnelId;
101 }EgtpParams;
102
103 typedef struct CuSctpParams
104 {
105    SctpIpAddr  duIpAddr;
106    U16         duPort;
107    SctpIpAddr  cuIpAddr;
108    U16         cuPort;
109 }CuSctpParams;
110
111 typedef struct cuCfgParams
112 {
113    U32              cuId;
114    char             cuName[CU_DU_NAME_LEN_MAX];
115    CuSctpParams     sctpParams;
116    Plmn             plmn;
117    EgtpParams       egtpParams;
118    RrcVersion       rrcVersion;
119 }CuCfgParams;
120 CuCfgParams cuCfgParams; //global variable to hold all configs
121
122 void readCuCfg();
123 void cuAppInmsgHdlr(Buffer *mBuf);
124 void sctpNtfyInd(CmInetSctpNotification *ntfy);
125
126 #endif
127
128 /**********************************************************************
129          End of file
130 **********************************************************************/