X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fcu_stub%2Fcu_stub_sctp.c;h=0a03f0d545779e68e63d3ed66d3f7ce827c7192d;hb=05d098e6b94f629a932caaff404f2b703b123852;hp=f4452acece3b703b3c7d599926be2e9d9f547b87;hpb=3235ecfc7414aa0b72d0ad50db63ae8b5626045b;p=o-du%2Fl2.git diff --git a/src/cu_stub/cu_stub_sctp.c b/src/cu_stub/cu_stub_sctp.c index f4452acec..0a03f0d54 100644 --- a/src/cu_stub/cu_stub_sctp.c +++ b/src/cu_stub/cu_stub_sctp.c @@ -18,10 +18,18 @@ /* This file contains all SCTP related functionality */ -#include +#include "common_def.h" +#include "OCTET_STRING.h" #include "cu_f1ap_msg_hdl.h" #include "cu_stub_sctp.h" #include "cu_stub_egtp.h" +#include "cu_stub.h" +#include "cm_inet.h" +#include "cm_tpt.h" + +#include "cm_inet.x" +#include "cm_tpt.x" + /************************************************************************** * @brief Task Initiation callback function. @@ -43,15 +51,12 @@ * @return ROK - success * RFAILED - failure ***************************************************************************/ -S16 sctpActvInit() +uint8_t sctpActvInit() { - DU_LOG("\n\nSCTP : Initializing"); - connUp = FALSE; - assocId = 0; - nonblocking = FALSE; - sctpCfg = &(cuCfgParams.sctpParams); + DU_LOG("\n\nDEBUG --> SCTP : Initializing"); + memset(&sctpCb, 0, sizeof(SctpGlobalCb)); + sctpCb.sctpCfg = cuCb.cuCfgParams.sctpParams; return ROK; - } /************************************************************************** @@ -73,131 +78,251 @@ S16 sctpActvInit() * RFAILED - failure * ***************************************************************************/ -S16 sctpActvTsk(Pst *pst, Buffer *mBuf) +uint8_t sctpActvTsk(Pst *pst, Buffer *mBuf) { //TODO: TBD return ROK; } +/************************************************************************** + * @brief Function to configure the Sctp Params during config Request + * + * @details + * + * Function : duSctpCfgReq + * + * Functionality: + * This function configures SCTP Params during the config Request + * + * @return ROK - success + * RFAILED - failure + * + ***************************************************************************/ + +uint8_t sctpCfgReq() +{ + int destIdx = 0, assocIdx = 0; + + fillAddrLst(&sctpCb.localAddrLst, &sctpCb.sctpCfg.localIpAddr); + memset(&sctpCb.f1LstnSockFd, -1, sizeof(CmInetFd)); + + for(destIdx=0; destIdx < sctpCb.sctpCfg.f1SctpInfo.numDestNode; destIdx++) + { + sctpCb.assocCb[assocIdx].intf = F1_INTERFACE; + sctpCb.assocCb[assocIdx].destPort = sctpCb.sctpCfg.f1SctpInfo.destCb[destIdx].destPort; + sctpCb.assocCb[assocIdx].bReadFdSet = ROK; + memset(&sctpCb.assocCb[assocIdx].sockFd, -1, sizeof(CmInetFd)); + fillDestNetAddr(&sctpCb.assocCb[assocIdx].destIpNetAddr, &sctpCb.sctpCfg.f1SctpInfo.destCb[destIdx].destIpAddr); + assocIdx++; + } + + sctpCb.localXnNodeType = sctpCb.sctpCfg.xnSctpInfo.localNodeType; + for(destIdx=0; destIdx < sctpCb.sctpCfg.xnSctpInfo.numDestNode; destIdx++) + { + sctpCb.assocCb[assocIdx].intf = XN_INTERFACE; + sctpCb.assocCb[assocIdx].destPort = sctpCb.sctpCfg.xnSctpInfo.destCb[destIdx].destPort; + sctpCb.assocCb[assocIdx].bReadFdSet = ROK; + memset(&sctpCb.assocCb[assocIdx].sockFd, -1, sizeof(CmInetFd)); + fillDestNetAddr(&sctpCb.assocCb[assocIdx].destIpNetAddr, &sctpCb.sctpCfg.xnSctpInfo.destCb[destIdx].destIpAddr); + assocIdx++; + } + sctpCb.numAssoc = assocIdx; + return ROK; +} + + /******************************************************************* * - * @brief Opens a non-blocking socket and binds to local address + * @brief Fills the address List of the source Ip Address * * @details * - * Function : openSctpEndp + * Function : fillAddrLst * * Functionality: - * Opens a non-blocking socket and binds to local address + * Fills the address List of source Ip Address * - * @params[in] + * @params[in] CmInetNetAddrLst *addrLstPtr, Address List pointer + * @params[in] F1IpAddr *srcIpAddr, src Ip Adrress to be filled in the Address List * @return ROK - success * RFAILED - failure * - * ****************************************************************/ -S16 openSctpEndp() -{ - U8 ret; - U8 numRetry = 0; - - /* Opening a non-blocking SCTP socket */ - socket_type = CM_INET_STREAM; - - do{ - ret = cmInetSocket(socket_type, &lstnSockFd, IPPROTO_SCTP); - if (ret != ROK) - { - numRetry++; - if(numRetry >= MAX_RETRY) - { - DU_LOG("\nSCTP : All attempts to open socket failed."); - /* Send indication to du_app */ - RETVALUE(RFAILED); - } - else - { - DU_LOG("\nSCTP : Retrying socket opening"); - } - } - else - { - DU_LOG("\nSCTP : Socket[%d] open",lstnSockFd.fd); - break; - } - }while(numRetry < MAX_RETRY); + ******************************************************************/ - RETVALUE(ROK); -} /* End of openSctpEndp */ +uint8_t fillAddrLst(CmInetNetAddrLst *addrLstPtr, SctpIpAddr *ipAddr) +{ + addrLstPtr->addrs[addrLstPtr->count].type = CM_INET_IPV4ADDR_TYPE; + addrLstPtr->addrs[addrLstPtr->count].u.ipv4NetAddr = CM_INET_NTOH_UINT32(ipAddr->ipV4Addr); + addrLstPtr->count++; + return ROK; +} +/****************************************************************************** + * + * @brief Fills the address List of the source Ip Address + * + * @details + * + * Function : fillDestNetAddr + * + * Functionality: + * Fills the address List of destinatoion Ip Address + * + * @params[in] CmInetNetAddr *destAddrPtr, Address List pointer + * @params[in] F1IpAddr *dstIpAddr, destIp Address to be filled in the Address List + * @return ROK - success + * RFAILED - failure + * + *******************************************************************************/ +uint8_t fillDestNetAddr(CmInetNetAddr *destAddrPtr, SctpIpAddr *dstIpPtr) +{ + /* Filling destination address */ + destAddrPtr->type = CM_INET_IPV4ADDR_TYPE; + destAddrPtr->u.ipv4NetAddr = CM_INET_NTOH_UINT32(dstIpPtr->ipV4Addr); + return ROK; +} -/******************************************************************* +/****************************************************************************** * - * @brief Bind socket to local Ip address and port + * @brief Eastablishes the Assoc Req for the received interface type * * @details * - * Function : bindSctpEndp + * Function : sctpStartReq * * Functionality: - * -Bind socket to local Ip address and port + * Eastablishes the Assoc Req for the received interface type * - * @params[in] + * @params[in] DuSctpDestCb *paramPtr * @return ROK - success * RFAILED - failure * - * ****************************************************************/ -S16 bindSctpEndp() + *******************************************************************************/ + +uint8_t sctpStartReq() { + uint8_t assocIdx; + uint8_t ret = ROK; + CmInetFd sockFd; - U8 ret; - U8 numRetry = 0; + socket_type = CM_INET_STREAM; - /* Binding the socket with local address */ - localAddrLst.count = 1; - if(sctpCfg->cuIpAddr.ipV4Pres) - { - localAddrLst.addrs[0].type = CM_INET_IPV4ADDR_TYPE; - localAddrLst.addrs[0].u.ipv4NetAddr = CM_INET_NTOH_U32(sctpCfg->cuIpAddr.ipV4Addr); - } - else if(sctpCfg->cuIpAddr.ipV6Pres) - { - localAddrLst.addrs[0].type = CM_INET_IPV6ADDR_TYPE; - // CM_INET_COPY_IPV6ADDR(&(localAddrLst.addrs[0].u.ipv6NetAddr),&(sctpCfg->cuIpAddr.ipV6Addr); - } - else + /* Establish SCTP association at XN interface */ + if(sctpCb.sctpCfg.xnSctpInfo.numDestNode) { - localAddrLst.addrs[0].type = CM_INET_IPV4ADDR_TYPE; - localAddrLst.addrs[0].u.ipv4NetAddr = 0; - } - - do{ - ret = cmInetSctpBindx(&lstnSockFd, &localAddrLst, sctpCfg->cuPort); - if (ret != ROK) + if(sctpCb.localXnNodeType == SERVER) { - numRetry++; - if(numRetry >= MAX_RETRY) - { - DU_LOG("\nSCTP : All attempts to bind socket failed."); - cmInetClose(&lstnSockFd); - /* Send indication to du_app */ - RETVALUE(RFAILED); - } + if((ret = cmInetSocket(socket_type, &sctpCb.xnLstnSockFd, IPPROTO_SCTP) != ROK)) + { + DU_LOG("\nERROR --> SCTP : Socket[%d] coudnt open for listening", sctpCb.f1LstnSockFd.fd); + } + else if((ret = cmInetSctpBindx(&sctpCb.xnLstnSockFd, &sctpCb.localAddrLst, sctpCb.sctpCfg.xnSctpInfo.port)) != ROK) + { + DU_LOG("\nERROR --> SCTP: Binding failed at CU"); + } + else if(ret = cmInetListen(&sctpCb.xnLstnSockFd, 1) != ROK) + { + DU_LOG("\nERROR --> SCTP : Listening on socket failed"); + cmInetClose(&sctpCb.xnLstnSockFd); + return RFAILED; + } else + { + for(assocIdx=0; assocIdx < sctpCb.numAssoc; assocIdx++) + { + if(sctpCb.assocCb[assocIdx].intf == XN_INTERFACE) + { + if((ret = sctpAccept(&sctpCb.xnLstnSockFd, &sctpCb.assocCb[assocIdx])) != ROK) + { + DU_LOG("\nERROR --> SCTP: Unable to accept the connection at CU"); + } + } + } + } + } + else if(sctpCb.localXnNodeType == CLIENT) + { + for(assocIdx=0; assocIdx < sctpCb.numAssoc; assocIdx++) { - DU_LOG("\nSCTP : Retrying socket binding"); + if(sctpCb.assocCb[assocIdx].intf == XN_INTERFACE) + { + if((ret = cmInetSocket(socket_type, &sctpCb.assocCb[assocIdx].sockFd, IPPROTO_SCTP)) != ROK) + { + DU_LOG("\nERROR --> SCTP : Failed while opening a socket in ODU"); + } + else if((ret = cmInetSctpBindx(&sctpCb.assocCb[assocIdx].sockFd, &sctpCb.localAddrLst, sctpCb.sctpCfg.xnSctpInfo.port)) != ROK) + { + DU_LOG("\nERROR --> SCTP: Failed during Binding in ODU"); + } + else if((ret = sctpSetSockOpts(&sctpCb.assocCb[assocIdx].sockFd)) != ROK) + { + DU_LOG("\nERROR --> SCTP : Failed to set Socket Opt in ODU"); + } + else + { + if(ret != ROK) + { + DU_LOG("\nERROR --> SCTP : Failed while establishing Req at DU"); + ret = RFAILED; + } + else + { + ret = cmInetSctpConnectx(&sctpCb.assocCb[assocIdx].sockFd, &sctpCb.assocCb[assocIdx].destIpNetAddr, \ + &sctpCb.assocCb[assocIdx].destAddrLst, sctpCb.assocCb[assocIdx].destPort); + /* 115 error_code indicates that Operation is in progress and hence ignored if SctpConnect failed due to this */ + if(ret == 18) + { + ret = ROK; + } + } + } + } } } + } + + /* Establish SCTP association at F1 interface */ + if(sctpCb.sctpCfg.f1SctpInfo.numDestNode) + { + if((ret = cmInetSocket(socket_type, &sctpCb.f1LstnSockFd, IPPROTO_SCTP) != ROK)) + { + DU_LOG("\nERROR --> SCTP : Socket[%d] coudnt open for listening", sctpCb.f1LstnSockFd.fd); + } + else if((ret = cmInetSctpBindx(&sctpCb.f1LstnSockFd, &sctpCb.localAddrLst, sctpCb.sctpCfg.f1SctpInfo.port)) != ROK) + { + DU_LOG("\nERROR --> SCTP: Binding failed at CU"); + } + else if(ret = cmInetListen(&sctpCb.f1LstnSockFd, 1) != ROK) + { + DU_LOG("\nERROR --> SCTP : Listening on socket failed"); + cmInetClose(&sctpCb.f1LstnSockFd); + return RFAILED; + } else { - DU_LOG("\nSCTP : Socket bind successful"); - break; + for(assocIdx=0; assocIdx < sctpCb.numAssoc; assocIdx++) + { + if(sctpCb.assocCb[assocIdx].intf == F1_INTERFACE) + { + if((ret = sctpAccept(&sctpCb.f1LstnSockFd, &sctpCb.assocCb[assocIdx])) != ROK) + { + DU_LOG("\nERROR --> SCTP: Unable to accept the connection at CU"); + } + } + } } - }while(numRetry < MAX_RETRY); - - RETVALUE(ROK); + } -} /* End of bindSctpEndp() */ + if(ret == ROK) + { + if(sctpSockPoll() != ROK) + { + DU_LOG("\nERROR --> SCTP: Polling failed to start at CU"); + } + } + return (ret); +} /******************************************************************* * @@ -215,8 +340,9 @@ S16 bindSctpEndp() * RFAILED - failure * * ****************************************************************/ -S16 sctpSetSockOpts() +uint8_t sctpSetSockOpts(CmInetFd *sock_Fd) { + S16 ret = ROK; CmSctpEvent sctpEvent; sctpEvent.dataIoEvent = TRUE; @@ -228,8 +354,12 @@ S16 sctpSetSockOpts() sctpEvent.partialDeliveryEvent = TRUE; sctpEvent.adaptationLayerEvent = TRUE; - cmInetSetOpt(&sockFd, CM_SOCKOPT_LEVEL_SCTP, CM_SOCKOPT_OPT_SCTP_EVENTS, &sctpEvent); - RETVALUE(ROK); + if((ret = cmInetSetOpt(sock_Fd, CM_SOCKOPT_LEVEL_SCTP, CM_SOCKOPT_OPT_SCTP_EVENTS, &sctpEvent)) != ROK) + { + ret = RFAILED; + } + + return (ret); } /******************************************************************* @@ -249,44 +379,35 @@ S16 sctpSetSockOpts() * RFAILED - failure * * ****************************************************************/ -S16 sctpAccept() +uint8_t sctpAccept(CmInetFd *lstnSockFd, CuSctpAssocCb *assocCb) { - U8 ret; - CmInetAddr peerAddr; - - ret = cmInetListen(&lstnSockFd, 1);; - if (ret != ROK) - { - DU_LOG("\nSCTP : Listening on socket failed"); - cmInetClose(&lstnSockFd); - RETVALUE(RFAILED); - } - - DU_LOG("\nSCTP : Connecting"); + uint8_t ret; + + DU_LOG("\nINFO --> SCTP : Connecting"); - while(!connUp) + while(!assocCb->connUp) { - ret = cmInetAccept(&lstnSockFd, &peerAddr, &sockFd); + ret = cmInetAccept(lstnSockFd, &assocCb->peerAddr, &assocCb->sockFd); if (ret == ROKDNA) { continue; } else if(ret != ROK) { - DU_LOG("\nSCTP : Failed to accept connection"); - RETVALUE(RFAILED); + DU_LOG("\nERROR --> SCTP : Failed to accept connection"); + return RFAILED; } else { - connUp = TRUE; - sctpSetSockOpts(); + assocCb->connUp = TRUE; + sctpSetSockOpts(&assocCb->sockFd); break; } } - DU_LOG("\nSCTP : Connection established"); + DU_LOG("\nINFO --> SCTP : Connection established"); - RETVALUE(ROK); -}/* End of sctpAccept() */ + return ROK; +} /******************************************************************* * @@ -305,66 +426,67 @@ S16 sctpAccept() * RFAILED - failure * * ****************************************************************/ -S16 sctpNtfyHdlr(CmInetSctpNotification *ntfy) +uint8_t sctpNtfyHdlr(CuSctpAssocCb *assocCb, CmInetSctpNotification *ntfy) { switch(ntfy->header.nType) { case CM_INET_SCTP_ASSOC_CHANGE : - DU_LOG("\nSCTP : Assoc change notification received"); + DU_LOG("\nINFO --> SCTP : Assoc change notification received"); switch(ntfy->u.assocChange.state) { case CM_INET_SCTP_COMM_UP: - DU_LOG("Event : COMMUNICATION UP"); - connUp = TRUE; + DU_LOG("DEBUG --> Event : COMMUNICATION UP"); + assocCb->connUp = TRUE; break; case CM_INET_SCTP_COMM_LOST: - DU_LOG("Event : COMMUNICATION LOST"); - connUp = FALSE; + DU_LOG("DEBUG --> Event : COMMUNICATION LOST"); + assocCb->connUp = FALSE; break; case CM_INET_SCTP_RESTART: - DU_LOG("Event : SCTP RESTART"); - connUp = FALSE; + DU_LOG("DEBUG --> Event : SCTP RESTART"); + assocCb->connUp = FALSE; break; case CM_INET_SCTP_SHUTDOWN_COMP: /* association gracefully shutdown */ - DU_LOG("Event : SHUTDOWN COMPLETE"); - connUp = FALSE; + DU_LOG("DEBUG --> Event : SHUTDOWN COMPLETE"); + assocCb->connUp = FALSE; break; case CM_INET_SCTP_CANT_STR_ASSOC: - DU_LOG("Event : CANT START ASSOC"); - connUp = FALSE; + DU_LOG("DEBUG --> Event : CANT START ASSOC"); + assocCb->connUp = FALSE; break; default: - DU_LOG("\nInvalid event"); + DU_LOG("\nERROR --> Invalid event"); break; } break; case CM_INET_SCTP_PEER_ADDR_CHANGE : - DU_LOG("\nSCTP : Peer Address Change notificarion received"); + DU_LOG("\nINFO --> SCTP : Peer Address Change notificarion received"); /* Need to add handler */ break; case CM_INET_SCTP_REMOTE_ERROR : - DU_LOG("\nSCTP : Remote Error notification received"); + DU_LOG("\nINFO --> SCTP : Remote Error notification received"); break; case CM_INET_SCTP_SEND_FAILED : - DU_LOG("\nSCTP : Send Failed notification received\n"); + DU_LOG("\nINFO --> SCTP : Send Failed notification received\n"); break; case CM_INET_SCTP_SHUTDOWN_EVENT : /* peer socket gracefully closed */ - DU_LOG("\nSCTP : Shutdown Event notification received\n"); - connUp = FALSE; + DU_LOG("\nINFO --> SCTP : Shutdown Event notification received\n"); + assocCb->connUp = FALSE; + exit(0); break; case CM_INET_SCTP_ADAPTATION_INDICATION : - DU_LOG("\nSCTP : Adaptation Indication received\n"); + DU_LOG("\nINFO --> SCTP : Adaptation Indication received\n"); break; case CM_INET_SCTP_PARTIAL_DELIVERY_EVENT: - DU_LOG("\nSCTP : Partial Delivery Event received\n"); + DU_LOG("\nINFO --> SCTP : Partial Delivery Event received\n"); break; default: - DU_LOG("\nSCTP : Invalid notification type\n"); + DU_LOG("\nERROR --> SCTP : Invalid notification type\n"); break; } sctpNtfyInd(ntfy); - RETVALUE(ROK); + return ROK; }/* End of sctpNtfyHdlr */ /******************************************************************* @@ -383,184 +505,201 @@ S16 sctpNtfyHdlr(CmInetSctpNotification *ntfy) * RFAILED - failure * * ****************************************************************/ -S16 sctpSockPoll() +uint8_t sctpSockPoll() { - U8 ret; - S16 numFds; - CmInetFdSet readFd; - U16 port; - U32 timeout; /* timeout for cmInetSelect() */ - U32 *timeoutPtr; /* pointer to timeout */ - U32 flag; - Buffer *mBuf; + uint8_t assocIdx = 0, destIdx = 0; + uint16_t ret = ROK; + uint32_t timeout; + uint32_t *timeoutPtr; Buffer *egtpBuf; - MsgLen bufLen; MsgLen egtpBufLen; - CmInetAddr egtpFromAddr; /* Egtp data sender address */ - CmInetMemInfo memInfo; /* buffer allocation info */ - CmInetNetAddr addr; - CmInetSctpSndRcvInfo info; - CmInetSctpNotification ntfy; + CmInetMemInfo memInfo; + sctpSockPollParams pollParams; + uint64_t numMsgRcvd = 0; + CmInetAddr fromAddr; - if (sockFd.blocking) - { - /* blocking */ - timeoutPtr = NULLP; - } - else - { - /* non-blocking */ - timeout = 0; - timeoutPtr = &timeout; - } + memset(&pollParams, 0, sizeof(sctpSockPollParams)); + + + /* All sockets are non-blocking */ + timeout = 0; + timeoutPtr = &timeout; memInfo.region = CU_APP_MEM_REG; memInfo.pool = CU_POOL; - egtpFromAddr.port = egtpCb.dstCb.dstPort; - egtpFromAddr.address = egtpCb.dstCb.dstIp; - - CM_INET_FD_ZERO(&readFd); + CM_INET_FD_ZERO(&pollParams.readFd); while(1) { /* Receiving SCTP data */ - CM_INET_FD_SET(&sockFd, &readFd); - ret = cmInetSelect(&readFd, NULLP, timeoutPtr, &numFds); - if (CM_INET_FD_ISSET(&sockFd, &readFd)) + for(assocIdx = 0; assocIdx < sctpCb.numAssoc; assocIdx++) { - CM_INET_FD_CLR(&sockFd, &readFd); - ret = cmInetSctpRecvMsg(&sockFd, &addr, &port, &memInfo, &mBuf, &bufLen, &info, &flag, &ntfy); - if (ret != ROK) + if((ret = processPolling(&pollParams, &sctpCb.assocCb[assocIdx], timeoutPtr, &memInfo)) != ROK) { - DU_LOG("\nSCTP : Failed to receive sctp msg\n"); - } - else - { - if ((flag & CM_INET_SCTP_MSG_NOTIFICATION) != 0) - { - ret = sctpNtfyHdlr(&ntfy); - if(ret != ROK) - { - DU_LOG("\nSCTP : Failed to process sctp notify msg\n"); - } - } - else if(connUp) /* If data received */ - { - F1APMsgHdlr(mBuf); - SPutMsg(mBuf); - } - else - { - SPutMsg(mBuf); - } + DU_LOG("\nERROR --> SCTP : Failed to RecvMsg for F1 at CU\n"); } } /* Receiving EGTP data */ egtpBufLen = -1; - ret = cmInetRecvMsg(&(egtpCb.recvTptSrvr.sockFd), &egtpFromAddr, &memInfo, &egtpBuf, &egtpBufLen, CM_INET_NO_FLAG); + ret = cmInetRecvMsg(&(egtpCb.sockFd), &fromAddr, &memInfo, &egtpBuf, &egtpBufLen, CM_INET_NO_FLAG); if(ret == ROK && egtpBuf != NULLP) { - DU_LOG("\nEGTP : Received message \n"); - SPrntMsg(egtpBuf, 0 ,0); - cuEgtpHdlRecvMsg(egtpBuf); + for(destIdx = 0; destIdx < egtpCb.numDu; destIdx++) + { + if((fromAddr.port == egtpCb.dstCb[destIdx].dstAddr.port) && (fromAddr.address == egtpCb.dstCb[destIdx].dstAddr.address)) + { + DU_LOG("\nINFO --> EGTP : Received UL Message [%ld] from DU Id [%d]\n", numMsgRcvd+1, egtpCb.dstCb[destIdx].duId); + numMsgRcvd++; + //ODU_PRINT_MSG(egtpBuf, 0 ,0); + cuEgtpHdlRecvMsg(egtpBuf); + break; + } + } } }; + return (ret); +}/* End of sctpSockPoll() */ + +/******************************************************************* + * + * @brief checks for valid readFd and process the InetSctpRecvMsg + * during polling + * + * @details + * + * Function : processPolling + * + * Functionality: + * checks for valid readFd and process the InetSctpRecvMsg + * during polling + * + * @params[in] Params required for polling + * @params[in] SockFd for file descriptor + * @params[in] timeoutPtr indicates the timeout value + * @params[in] MemInfo indicates memory region + * + * @return ROK - success + * RFAILED - failure + * + * ****************************************************************/ - RETVALUE(ROK); +uint8_t processPolling(sctpSockPollParams *pollParams, CuSctpAssocCb *assocCb, uint32_t *timeoutPtr, CmInetMemInfo *memInfo) +{ + uint16_t ret = ROK; + CM_INET_FD_SET(&assocCb->sockFd, &pollParams->readFd); + ret = cmInetSelect(&pollParams->readFd, NULLP, timeoutPtr, &pollParams->numFd); + if(CM_INET_FD_ISSET(&assocCb->sockFd, &pollParams->readFd)) + { + CM_INET_FD_CLR(&assocCb->sockFd, &pollParams->readFd); + ret = cmInetSctpRecvMsg(&assocCb->sockFd, &pollParams->addr, &pollParams->port, memInfo, &pollParams->mBuf, \ + &pollParams->bufLen, &pollParams->info, &pollParams->flag, &pollParams->ntfy); + if(assocCb->connUp & (ret != ROK)) + { + assocCb->bReadFdSet = RFAILED; + } + else + { + if(((pollParams->flag & CM_INET_SCTP_MSG_NOTIFICATION) != 0) && (ret == ROK)) + { + ret = sctpNtfyHdlr(assocCb, &pollParams->ntfy); + if(ret != ROK) + { + DU_LOG("\nERROR --> SCTP : Failed to process sctp notify msg\n"); + } + } + else if(assocCb->connUp && assocCb->intf == F1_INTERFACE) + { + F1APMsgHdlr(&assocCb->destId, pollParams->mBuf); + ODU_PUT_MSG_BUF(pollParams->mBuf); + } + else if(assocCb->connUp && assocCb->intf == XN_INTERFACE) + { + DU_LOG("\nDEBUG --> SCTP : Received message at XN interface"); + ODU_PRINT_MSG(pollParams->mBuf, 0,0); + XNAPMsgHdlr(&assocCb->destId, pollParams->mBuf); + ODU_PUT_MSG_BUF(pollParams->mBuf); + } + else + { + ODU_PUT_MSG_BUF(pollParams->mBuf); + } + } + } + return ROK; }/* End of sctpSockPoll() */ /******************************************************************* * - * @brief Send message on SCTP socket + * @brief Send message on an SCTP Association * * @details * - * Function : sctpSend + * Function : sendOnSctpAssoc * * Functionality: - * Send message on SCTP socket + * Send message on SCTP association * * @params[in] * @return ROK - success * RFAILED - failure * * ****************************************************************/ -S16 sctpSend(Buffer *mBuf) +uint8_t sendOnSctpAssoc(CuSctpAssocCb *assocCb, Buffer *mBuf) { - U8 ret; - MsgLen len; /* number of actually sent octets */ - CmInetNetAddr peerAddr; /* destination port address */ - CmInetNetAddr *dstAddr; - CmInetMemInfo memInfo; + uint8_t ret = ROK; + MsgLen len = 0; /* number of actually sent octets */ + CmInetMemInfo memInfo; - memInfo.region = CU_APP_MEM_REG; + memset(&memInfo , 0, sizeof(CmInetMemInfo)); + memInfo.region = CU_APP_MEM_REG; memInfo.pool = CU_POOL; + ret = cmInetSctpSendMsg(&assocCb->sockFd, &assocCb->destIpNetAddr, assocCb->destPort, &memInfo, mBuf, &len, 0, \ + FALSE, 0, 0/*SCT_PROTID_NONE*/, RWOULDBLOCK); - if(sctpCfg->duIpAddr.ipV4Pres) - { - peerAddr.type = CM_INET_IPV4ADDR_TYPE; - peerAddr.u.ipv4NetAddr = CM_INET_NTOH_U32(sctpCfg->duIpAddr.ipV4Addr); - dstAddr = &peerAddr; - } - else if(sctpCfg->duIpAddr.ipV6Pres) - { - peerAddr.type = CM_INET_IPV6ADDR_TYPE; - //CM_INET_COPY_IPV6ADDR(&(primDstAddr.u.ipv6NetAddr),&(sctpCfg->duIpAddr.ipV6Addr); - dstAddr = &peerAddr; - } - else - { - dstAddr = NULLP; - } - - ret = cmInetSctpSendMsg(&sockFd, dstAddr, sctpCfg->duPort, &memInfo, mBuf, &len, 0, FALSE, 0, 0/*SCT_PROTID_NONE*/, RWOULDBLOCK); if(ret != ROK && ret != RWOULDBLOCK) { - DU_LOG("\nSCTP : Send message failed"); - RETVALUE(RFAILED); + DU_LOG("\nERROR --> SCTP : Send message failed"); + return RFAILED; } - - RETVALUE(ROK); -} /* End of sctpSend */ + return ROK; +} /******************************************************************* * - * @brief Start SCTP at CU + * @brief Send message on SCTP socket * * @details * - * Function : sctpStartReq + * Function : sctpSend * * Functionality: - * Start SCTP at CU + * Send message on SCTP socket * - * @params[in] + * @params[in] * @return ROK - success * RFAILED - failure * * ****************************************************************/ -void sctpStartReq() +uint8_t sctpSend(InterfaceType intf, uint32_t destId, Buffer *mBuf) { - if(openSctpEndp() != ROK) - { - DU_LOG("\nSCTP : Failed while opening socket"); - } - else if(bindSctpEndp() != ROK) - { - DU_LOG("\nSCTP : Failed while binding socket"); - } - else if(sctpAccept() != ROK) - { - DU_LOG("\nSCTP : Failed while accepting connection"); - } - else if(sctpSockPoll() != ROK) + uint8_t assocIdx = 0; + + for(assocIdx=0; assocIdx < sctpCb.numAssoc; assocIdx++) { - DU_LOG("\nSCTP : Failed while polling"); + if((sctpCb.assocCb[assocIdx].intf == intf) && (sctpCb.assocCb[assocIdx].destId == destId)) + { + if(sendOnSctpAssoc(&sctpCb.assocCb[assocIdx], mBuf) == ROK) + return ROK; + else + break; + } } -} /* End of sctpAssocReq */ + DU_LOG("\nERROR --> SCTP : Dest ID [%d] at Interface [%d] not found in SCTP DestCb list. Failed to send message", destId, intf); + return RFAILED; +} /* End of sctpSend */ /********************************************************************** End of file