[JIRA ID:ODUHIGH-236] Security Authentication in UL
[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
39 #define ENCODE_FAIL -1
40 #define TRANS_ID 1
41 #define RRC_SIZE 1
42 #define SUL_BAND_COUNT 0
43 #define UL_SRBID        1
44 #define DL_SRBID        0
45 #define DU_ID           1
46 #define CU_ID           1
47 #define CRNTI           17017
48 #define CELL_INDEX      0
49 #define SRB1 1
50 #define SRB2 2
51 #define DRB1 1
52
53 #define CU_UE_F1AP_ID 0
54 #define DU_UE_F1AP_ID 1
55 #define SP_CELL_ID     2
56 #define SERV_CELL_IDX 3
57 #define CU_TO_DU_RRC_INF 4
58
59 #define RRC_SETUP 1
60 #define RRC_SECURITY_MODE_COMMAND 2
61 #define RRC_RECONFIG 3
62 typedef struct f1apDb
63 {
64    uint8_t dlRrcMsgCount;
65    OCTET_STRING_t duToCuContainer;
66 }F1apMsgDb;
67   
68 F1apMsgDb f1apMsgDb;
69 void F1APMsgHdlr(Buffer *mBuf);
70
71 /**********************************************************************
72          End of file
73 **********************************************************************/