Renaming GET_UE_IDX to GET_UE_ID in RLC and its interfaces [Issue-ID: ODUHIGH-401]
[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 2
55 #define DRB3 3
56 #define QCI  9
57 #define MAX_DRB_SET_UE_CONTEXT_SETUP_REQ 2  /*Number of DRBs to be added using UE CONTEXT SETUP procedure*/
58 #define MAX_DRB_SET_UE_CONTEXT_MOD_REQ 1     /*Number of DRBs to be added/setup via UE CONTEXT MODIFICATION procedure*/
59 #define MAX_DRB_MODIFIED_UE_MOD_REQ 1        /*Currently CU trigger Modification of 2DRBs*/
60 #define DRB_ID_TO_ADD_MOD MAX_DRB_SET_UE_CONTEXT_SETUP_REQ+1 /*The DRB ID: which will be added using Modification Procedure*/
61
62 /*Total num of DRBs added using UE COntext Setup and Modification procedures*/
63 #define MAX_NUM_DRB_ADDED_PER_UE (MAX_DRB_SET_UE_CONTEXT_SETUP_REQ + MAX_DRB_SET_UE_CONTEXT_MOD_REQ)
64
65 #define CU_UE_F1AP_ID 0
66 #define DU_UE_F1AP_ID 1
67 #define SP_CELL_ID     2
68 #define SERV_CELL_IDX 3
69 #define CU_TO_DU_RRC_INF 4
70
71 #define RRC_SETUP 1
72 #define REGISTRATION_ACCEPT 2
73 #define UE_CONTEXT_SETUP_REQ 3
74 #define UE_CONTEXT_SETUP_RSP 4
75 #define SECURITY_MODE_COMPLETE 5
76 #define RRC_RECONFIG 6
77 #define UE_CONTEXT_MOD_REQ 7
78 #define NUM_QOS_EXT 1
79
80
81 typedef struct f1apDb
82 {
83    uint8_t dlRrcMsgCount;
84    OCTET_STRING_t duToCuContainer;
85 }F1apMsgDb;
86   
87 typedef struct ueInfo
88 {
89   uint8_t ueId;
90   F1apMsgDb f1apMsgDb;
91 }UeCb;
92
93 UeCb ueCb[MAX_NUM_UE];
94
95 void F1APMsgHdlr(Buffer *mBuf);
96 uint8_t BuildAndSendUeContextModificationReq(uint8_t ueId);
97 uint8_t BuildAndSendUeContextReleaseCommand(uint8_t cuUeF1apId, uint8_t duUeF1apId);
98 uint8_t BuildAndSendF1ResetReq();
99 /**********************************************************************
100          End of file
101 **********************************************************************/