mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
124 lines
3.5 KiB
C
124 lines
3.5 KiB
C
/*
|
|
* SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
*/
|
|
|
|
/*____________________________OPT/opt.h___________________________
|
|
Authors: Navid NIKAIEN
|
|
Company: EURECOM
|
|
Emails:
|
|
*This file include all defined structures & function headers of this module
|
|
This header file must be included */
|
|
/**
|
|
* Include bloc
|
|
* */
|
|
|
|
#ifndef OPT_H_
|
|
#define OPT_H_
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
#include <netdb.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
#include <time.h>
|
|
#include "common/utils/LOG/log.h"
|
|
#include "PHY/defs_RU.h"
|
|
|
|
#define PACKET_MAC_LTE_DEFAULT_UDP_PORT (9999)
|
|
|
|
typedef uint8_t guint8;
|
|
typedef uint16_t guint16;
|
|
typedef uint32_t guint32;
|
|
typedef guint8 gboolean;
|
|
|
|
#include <openair2/UTIL/OPT/wireshark_headers.h>
|
|
|
|
#include "mac_pcap.h"
|
|
|
|
/* OPT parameters definitions */
|
|
#define OPT_CONFIGPREFIX "opt"
|
|
|
|
#define CONFIG_HLP_TYPEMON "Type of L2 monitoring messages: none,pcap,wireshark \n"
|
|
#define CONFIG_HLP_L2MONIP "ip address for wireshark messages \n"
|
|
#define CONFIG_HLP_L2MONPATH "file path for pcap messages on localhost \n"
|
|
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
|
|
/* command line parameters for LOG utility */
|
|
/* optname helpstr paramflags XXXptr defXXXval type numelt */
|
|
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
|
|
// clang-format off
|
|
#define OPT_PARAMS_DESC { \
|
|
{"type" , CONFIG_HLP_TYPEMON, 0, .strptr=&in_type, .defstrval="none", TYPE_STRING, 0}, \
|
|
{"ip" , CONFIG_HLP_L2MONIP, 0, .strptr=&in_ip, .defstrval="127.0.0.1", TYPE_STRING, 0}, \
|
|
{"path" , CONFIG_HLP_L2MONPATH, 0, .strptr=&in_path, .defstrval="/tmp/oai_opt.pcap", TYPE_STRING, 0}, \
|
|
}
|
|
// clang-format on
|
|
|
|
#define OPTTYPE_IDX 0
|
|
/* check function for opt parameters */
|
|
#define OPTTYPE_OKSTRINGS {"none","pcap","wireshark"}
|
|
#define OPTTYPE_VALUES {OPT_NONE,OPT_PCAP,OPT_WIRESHARK}
|
|
// clang-format off
|
|
#define OPTPARAMS_CHECK_DESC { \
|
|
{ .s3a= { config_checkstr_assign_integer, OPTTYPE_OKSTRINGS,OPTTYPE_VALUES ,3}} ,\
|
|
{ .s5= {NULL }} , \
|
|
{ .s5= {NULL }} , \
|
|
}
|
|
// clang-format on
|
|
|
|
typedef enum trace_mode_e {
|
|
OPT_WIRESHARK,
|
|
OPT_PCAP,
|
|
OPT_TSHARK,
|
|
OPT_NONE
|
|
} trace_mode_t;
|
|
|
|
typedef enum radio_type_e {
|
|
RADIO_TYPE_FDD = 1,
|
|
RADIO_TYPE_TDD = 2,
|
|
RADIO_TYPE_MAX
|
|
} radio_type_t;
|
|
|
|
|
|
/**
|
|
* function def
|
|
*/
|
|
|
|
extern int opt_enabled;
|
|
typedef struct {
|
|
bool nr;
|
|
int type;
|
|
int direction;
|
|
uint8_t *pdu_buffer;
|
|
unsigned int pdu_buffer_size;
|
|
int ueid;
|
|
int rntiType;
|
|
int rnti;
|
|
uint16_t sysFrame;
|
|
uint8_t subframe;
|
|
uint8_t harq_pid;
|
|
int oob_event;
|
|
int oob_event_value;
|
|
int crcStatus;
|
|
uint8_t isPredefinedData;
|
|
uint8_t retx;
|
|
} ws_trace_t;
|
|
#define trace_pdu(x) \
|
|
do { \
|
|
if (opt_enabled) \
|
|
trace_pdu_implementation(x); \
|
|
} while (0)
|
|
void trace_pdu_implementation(ws_trace_t *t);
|
|
|
|
int init_opt(void);
|
|
|
|
void terminate_opt(void);
|
|
|
|
//double *timing_analyzer(int index, int direction );
|
|
|
|
#endif /* OPT_H_ */
|