<JIRA ID: ODUHIGH-358 : UE CONTEXT SETUP REQ multiple bearer creation>
[o-du/l2.git] / src / cu_stub / cu_f1ap_msg_hdl.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 F1AP message handler related functionality */
20 #include <stdbool.h>
21 #include <string.h>
22 #include<ProtocolIE-Field.h>
23 #include "ProtocolExtensionField.h"
24 #include "F1AP-PDU.h"
25 #include "Cells-to-be-Activated-List.h"
26 #include "DL-CCCH-Message.h"
27 #include "SRB-ToAddModList.h"
28 #include "SRB-ToAddMod.h"
29 #include "RRCSetup-IEs.h"
30 #include "RRCSetup.h"
31 #include "DL-DCCH-Message.h"
32 #include "RRCReconfiguration-IEs.h"
33 #include "RRCReconfiguration.h"
34 #include "DRB-ToAddModList.h"
35 #include "DRB-ToAddMod.h"
36 #include "SDAP-Config.h"
37 #include "du_log.h"
38 #include "cu_stub.h"
39
40 #define ENCODE_FAIL -1
41 #define TRANS_ID 1
42 #define RRC_SIZE 1
43 #define SUL_BAND_COUNT 0
44 #define UL_SRBID        1
45 #define DL_SRBID        0
46 #define DU_ID           1
47 #define CU_ID           1
48 #define CRNTI           17017
49 #define CELL_INDEX      0
50 #define SRB0 0
51 #define SRB1 1
52 #define SRB2 2
53 #define DRB1 1
54 #define DRB2 6 //Pls Ignore this; to avoid the collision with DRBID=2 in UE COntext setup
55 #define QCI  9
56 #define MAX_DRB_SET 2
57
58 #define CU_UE_F1AP_ID 0
59 #define DU_UE_F1AP_ID 1
60 #define SP_CELL_ID     2
61 #define SERV_CELL_IDX 3
62 #define CU_TO_DU_RRC_INF 4
63
64 #define RRC_SETUP 1
65 #define REGISTRATION_ACCEPT 2
66 #define UE_CONTEXT_SETUP_REQ 3
67 #define UE_CONTEXT_SETUP_RSP 4
68 #define SECURITY_MODE_COMPLETE 5
69 #define RRC_RECONFIG 6
70 #define UE_CONTEXT_MOD_REQ 7
71
72
73 typedef struct f1apDb
74 {
75    uint8_t dlRrcMsgCount;
76    OCTET_STRING_t duToCuContainer;
77 }F1apMsgDb;
78   
79 typedef struct ueInfo
80 {
81   uint8_t ueId;
82   F1apMsgDb f1apMsgDb;
83 }UeCb;
84
85 UeCb ueCb[MAX_NUM_UE];
86
87 void F1APMsgHdlr(Buffer *mBuf);
88 uint8_t BuildAndSendUeContextModificationReq(uint8_t ueId);
89 uint8_t BuildAndSendUeContextReleaseCommand(uint8_t cuUeF1apId, uint8_t duUeF1apId);
90 uint8_t BuildAndSendF1ResetReq();
91 /**********************************************************************
92          End of file
93 **********************************************************************/