b3a2e5800f9b51b03946132495b83708d549ed3a
[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
51 #include "du_log.h"
52 #define MAX_IPV6_LEN 16
53 #define CU_DU_NAME_LEN_MAX 30      /* Max length of CU/DU name string */
54
55 #define CU_APP_MEM_REG 1
56 #define CU_POOL 1
57
58 /* allocate and zero out a static buffer */
59 #define CU_ALLOC(_datPtr, _size)                                \
60 {                                                               \
61    S16 _ret;                                                    \
62    _ret = SGetSBuf(CU_APP_MEM_REG, CU_POOL,                  \
63                      (Data **)&_datPtr, _size);                  \
64    if(_ret == ROK)                                              \
65       cmMemset((U8*)_datPtr, 0, _size);                         \
66    else                                                         \
67       _datPtr = NULLP;                                          \
68 }
69  
70 /* free a static buffer */
71 #define CU_FREE(_datPtr, _size)                                 \
72    SPutSBuf(CU_APP_MEM_REG, CU_POOL,                         \
73          (Data *)_datPtr, _size);
74
75
76 typedef struct ipAddr
77 {
78  Bool ipV4Pres;
79  U32  ipV4Addr;
80  Bool ipV6Pres;
81  U8   ipV6Addr[MAX_IPV6_LEN];
82 }SctpIpAddr;
83
84 typedef struct RrcVersion
85 {
86   U8    rrcVer;     /* Latest RRC Version */
87   U32   extRrcVer;  /* Latest RRC version extended */
88 }RrcVersion;
89
90 typedef struct egtpParams
91 {
92    SctpIpAddr  localIp;
93    U16         localPort;
94    SctpIpAddr  destIp;
95    U16         destPort;
96    U32       minTunnelId;
97    U32       maxTunnelId;
98 }EgtpParams;
99
100 typedef struct sctpParams
101 {
102    SctpIpAddr  duIpAddr;
103    U16         duPort;
104    SctpIpAddr  cuIpAddr;
105    U16         cuPort;
106 }SctpParams;
107
108 typedef struct fPLMN
109 {
110    U8 mcc[3];
111    U8 mnc[3];
112 }Plmn;
113
114
115 typedef struct cuCfgParams
116 {
117    U32              cuId;
118    char             cuName[CU_DU_NAME_LEN_MAX];
119    SctpParams       sctpParams;
120    Plmn            plmn;
121    EgtpParams       egtpParams;
122    RrcVersion       rrcVersion;
123 }CuCfgParams;
124 CuCfgParams cuCfgParams; //global variable to hold all configs
125
126 void readCuCfg();
127 void cuAppInmsgHdlr(Buffer *mBuf);
128 void sctpNtfyInd(CmInetSctpNotification *ntfy);
129
130 #endif
131
132 /**********************************************************************
133          End of file
134 **********************************************************************/