E2AP code changes
[o-du/l2.git] / src / ric_stub / ric_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 RIC_DU_NAME_LEN_MAX 30      /* Max length of RIC/DU name string */
54
55 #define RIC_APP_MEM_REG 1
56 #define RIC_POOL 1
57
58 /* allocate and zero out a static buffer */
59 #define RIC_ALLOC(_datPtr, _size)                                \
60 {                                                               \
61    S16 _ret;                                                    \
62    _ret = SGetSBuf(RIC_APP_MEM_REG, RIC_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 RIC_FREE(_datPtr, _size)                                 \
72    SPutSBuf(RIC_APP_MEM_REG, RIC_POOL,                         \
73          (Data *)_datPtr, _size);
74
75 typedef struct ipAddr
76 {
77  Bool ipV4Pres;
78  U32  ipV4Addr;
79  Bool ipV6Pres;
80  U8   ipV6Addr[MAX_IPV6_LEN];
81 }SctpIpAddr;
82
83 typedef struct RrcVersion
84 {
85   U8    rrcVer;     /* Latest RRC Version */
86   U32   extRrcVer;  /* Latest RRC version extended */
87 }RrcVersion;
88
89 typedef struct sctpParamsRic
90 {
91    SctpIpAddr  duIpAddr;
92    U16         duPort;
93    SctpIpAddr  ricIpAddr;
94    U16         ricPort;
95 }SctpParamsRic;
96
97 typedef struct fPLMN
98 {
99    U8 mcc[3];
100    U8 mnc[3];
101 }Plmn;
102
103
104 typedef struct cuCfgParams
105 {
106    U32             cuId;
107    char            cuName[RIC_DU_NAME_LEN_MAX];
108    SctpParamsRic   sctpParams;
109    Plmn            plmn;
110    RrcVersion      rrcVersion;
111 }CuCfgParams;
112 CuCfgParams cuCfgParams; //global variable to hold all configs
113
114 void readRicCfg();
115 void cuAppInmsgHdlr(Buffer *mBuf);
116 void sctpNtfyInd(CmInetSctpNotification *ntfy);
117
118 #endif
119
120 /**********************************************************************
121          End of file
122 **********************************************************************/