[Issue-ID : ODUHIGH-486] SCTP Port fix at F1 and E2 interface
[o-du/l2.git] / src / ric_stub / ric_stub_sctp.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 /* This file contains all SCTP related functionality */
20
21 #ifndef __RIC_SCTP_H__
22 #define __RIC_SCTP_H__
23
24 #define MAX_RETRY 5
25 #define MAX_IPV6_LEN 16
26 #define MAX_DU_SUPPORTED 2
27 #define MAX_ASSOC_SUPPORTED MAX_DU_SUPPORTED
28
29 /* Global variable declaration */
30 uint8_t   socket_type;      /* Socket type */
31   
32 typedef struct
33 {
34    uint16_t           numFd;
35    uint16_t           port;   
36    uint32_t           flag;
37    Buffer            *mBuf;
38    MsgLen             bufLen; 
39    CmInetNetAddr      addr;
40    CmInetFdSet        readFd;
41    CmInetSctpSndRcvInfo   info;
42    CmInetSctpNotification ntfy;
43 }sctpSockPollParams;
44
45 typedef struct
46 {
47    uint32_t              duId;
48    uint16_t              destPort;         /* DU PORTS */
49    bool                  bReadFdSet;
50    CmInetFd              sockFd;           /* Socket file descriptor */
51    CmInetAddr            peerAddr;
52    CmInetNetAddrLst      destAddrLst;      /* DU Ip address */
53    CmInetNetAddr         destIpNetAddr;    /* DU Ip address */ 
54    Bool                  connUp;
55 }RicSctpAssocCb;
56
57 typedef struct ipAddr
58 {
59  bool ipV4Pres;
60  uint32_t  ipV4Addr;
61  bool ipV6Pres;
62  uint8_t   ipV6Addr[MAX_IPV6_LEN];
63 }SctpIpAddr;
64
65 typedef struct sctpDestInfo
66 {
67    SctpIpAddr  destIpAddr;
68    uint16_t    destPort;
69 }SctpDestInfo;
70
71 typedef struct ricSctpParams
72 {
73    SctpIpAddr     localIpAddr;
74    uint16_t       e2SctpPort;
75    uint8_t        numDestNode;
76    SctpDestInfo   destCb[MAX_DU_SUPPORTED];
77 }RicSctpParams;
78
79 typedef struct sctpGlobalCb
80 {
81    RicSctpParams    sctpCfg;
82    CmInetNetAddrLst localAddrLst;
83    CmInetFd         e2LstnSockFd;       /* Listening Socket file descriptor for E2 association */
84    uint8_t          numAssoc;
85    RicSctpAssocCb   assocCb[MAX_ASSOC_SUPPORTED]; 
86 }SctpGlobalCb;
87
88 SctpGlobalCb sctpCb;
89
90 uint8_t sctpActvInit();
91 uint8_t sctpSend(uint32_t duId, Buffer *mBuf);
92 uint8_t sctpCfgReq();
93 uint8_t sctpStartReq();
94 uint8_t sctpSetSockOpts(CmInetFd *sock_Fd);
95 uint8_t sctpAccept(RicSctpAssocCb *assocCb);
96 uint8_t sctpSockPoll();
97 uint8_t processPolling(sctpSockPollParams *pollParams, RicSctpAssocCb *destCb, uint32_t *timeoutPtr, CmInetMemInfo *memInfo);
98 uint8_t fillAddrLst(CmInetNetAddrLst *addrLstPtr, SctpIpAddr *ipAddr);
99 uint8_t fillDestNetAddr(CmInetNetAddr *destAddrPtr, SctpIpAddr *dstIpPtr);
100
101 #endif
102
103 /**********************************************************************
104          End of file
105  **********************************************************************/