diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:26 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:26 +0000 |
commit | c4e8a3222648fcf22ca207f1815ebbf7cd144eeb (patch) | |
tree | 93d5c6aa93d9987680dd1adad5685e2ad698f223 /epan/dissectors/packet-ecpri.c | |
parent | Adding upstream version 4.2.6. (diff) | |
download | wireshark-upstream.tar.xz wireshark-upstream.zip |
Adding upstream version 4.4.0.upstream/4.4.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/packet-ecpri.c')
-rw-r--r-- | epan/dissectors/packet-ecpri.c | 178 |
1 files changed, 92 insertions, 86 deletions
diff --git a/epan/dissectors/packet-ecpri.c b/epan/dissectors/packet-ecpri.c index a64ec7f0..9adb84f1 100644 --- a/epan/dissectors/packet-ecpri.c +++ b/epan/dissectors/packet-ecpri.c @@ -11,6 +11,9 @@ * ------------------------------------------------------------------------------------------------ * eCPRI Transport Network V1.2 -- Specifications * http://www.cpri.info/downloads/Requirements_for_the_eCPRI_Transport_Network_V1_2_2018_06_25.pdf + * + * May carry ORAN FH-CUS (packet-oran.c) - Message Types, 0, 2, 5 + * See https://specifications.o-ran.org/specifications, WG4, Fronthaul Interfaces Workgroup * ------------------------------------------------------------------------------------------------ */ @@ -19,6 +22,8 @@ #include <epan/prefs.h> #include <epan/expert.h> #include <epan/etypes.h> +#include <epan/tfs.h> +#include <epan/unit_strings.h> /**************************************************************************************************/ /* Definition for eCPRI lengths */ @@ -78,71 +83,71 @@ void proto_reg_handoff_ecpri(void); /**************************************************************************************************/ /* Initialize the subtree pointers */ /**************************************************************************************************/ -static gint ett_ecpri = -1; -static gint ett_ecpri_header = -1; -static gint ett_ecpri_payload = -1; -static gint ett_ecpri_timestamp = -1; -static gint ett_ecpri_element = -1; +static int ett_ecpri; +static int ett_ecpri_header; +static int ett_ecpri_payload; +static int ett_ecpri_timestamp; +static int ett_ecpri_element; /**************************************************************************************************/ /* Initialize the protocol and registered fields */ /**************************************************************************************************/ -static int proto_ecpri = -1; +static int proto_ecpri; /* Fields for Common Header */ -static int hf_header = -1; -static int hf_proto_rev = -1; -static int hf_reserved = -1; -static int hf_c_bit = -1; -static int hf_msg_type = -1; -static int hf_payload_size = -1; +static int hf_header; +static int hf_proto_rev; +static int hf_reserved; +static int hf_c_bit; +static int hf_msg_type; +static int hf_payload_size; /* Fields for Payload */ -static int hf_payload = -1; +static int hf_payload; /* Fields for Payload of Message Type 0 and 1 */ -static int hf_pc_id = -1; +static int hf_pc_id; /* Fields for Payload of Message Type 0, 1 and 2 */ -static int hf_seq_id = -1; +static int hf_seq_id; /* Fields for Payload of Message Type 2 */ -static int hf_rtc_id = -1; +static int hf_rtc_id; /* Fields for Payload of Message Type 3 */ -static int hf_pc_id2 = -1; -static int hf_seq_id2 = -1; +static int hf_pc_id2; +static int hf_seq_id2; /* Fields for Payload of Message Type 4 */ -static int hf_rma_id = -1; -static int hf_read_write = -1; -static int hf_request_response = -1; -static int hf_element_id = -1; -static int hf_address = -1; -static int hf_data_length = -1; +static int hf_rma_id; +static int hf_read_write; +static int hf_request_response; +static int hf_element_id; +static int hf_address; +static int hf_data_length; /* Fields for Payload of Message Type 5 */ -static int hf_measurement_id = -1; -static int hf_action_type = -1; -static int hf_timestamp = -1; -static int hf_timestamp_sec = -1; -static int hf_timestamp_nanosec = -1; -static int hf_compensation_value = -1; +static int hf_measurement_id; +static int hf_action_type; +static int hf_timestamp; +static int hf_timestamp_sec; +static int hf_timestamp_nanosec; +static int hf_compensation_value; /* Fields for Payload of Message Type 6 */ -static int hf_reset_id = -1; -static int hf_reset_code = -1; +static int hf_reset_id; +static int hf_reset_code; /* Fields for Payload of Message Type 7 */ -static int hf_event_id = -1; -static int hf_event_type = -1; -static int hf_sequence_num = -1; -static int hf_number_faults_notif = -1; -static int hf_element = -1; -static int hf_element_id2 = -1; -static int hf_raise_cease = -1; -static int hf_fault_notif = -1; -static int hf_add_info = -1; +static int hf_event_id; +static int hf_event_type; +static int hf_sequence_num; +static int hf_number_faults_notif; +static int hf_element; +static int hf_element_id2; +static int hf_raise_cease; +static int hf_fault_notif; +static int hf_add_info; /* Fields for Payload - rest of data */ -static int hf_data = -1; +static int hf_data; /* Overall length of eCPRI frame */ -static int hf_ecpri_length = -1; +static int hf_ecpri_length; /**************************************************************************************************/ /* Preference to use the eCPRI Specification 1.2 encoding */ /**************************************************************************************************/ -static gboolean pref_message_type_decoding = TRUE; +static bool pref_message_type_decoding = true; /**************************************************************************************************/ /* eCPRI Handle */ @@ -152,15 +157,15 @@ static dissector_handle_t ecpri_handle; /**************************************************************************************************/ /* Initialize expert info fields */ /**************************************************************************************************/ -static expert_field ei_ecpri_frame_length = EI_INIT; -static expert_field ei_payload_size = EI_INIT; -static expert_field ei_comp_val = EI_INIT; -static expert_field ei_time_stamp = EI_INIT; -static expert_field ei_data_length = EI_INIT; -static expert_field ei_c_bit = EI_INIT; -static expert_field ei_fault_notif = EI_INIT; -static expert_field ei_number_faults = EI_INIT; -static expert_field ei_ecpri_not_dis_yet = EI_INIT; +static expert_field ei_ecpri_frame_length; +static expert_field ei_payload_size; +static expert_field ei_comp_val; +static expert_field ei_time_stamp; +static expert_field ei_data_length; +static expert_field ei_c_bit; +static expert_field ei_fault_notif; +static expert_field ei_number_faults; +static expert_field ei_ecpri_not_dis_yet; /**************************************************************************************************/ /* Field Encoding of Message Types */ @@ -330,7 +335,7 @@ static const true_false_string tfs_c_bit = "This eCPRI message is last one inside eCPRI PDU" }; -static dissector_handle_t oran_handle; +static dissector_handle_t oran_fh_handle; /**************************************************************************************************/ /* Implementation of the functions */ @@ -365,19 +370,19 @@ static int dissect_ecpri(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, vo proto_item *ti_fault_notif; int offset; - guint32 msg_type; - guint32 event_type; - guint32 concatenation; - guint32 num_faults_notif; - guint32 action_type; - guint32 fault_notif; - guint16 payload_size; - guint32 data_length; - guint16 reported_length; - guint16 remaining_length; - guint32 time_stamp_ns; - guint64 time_stamp_s; - guint64 comp_val; + uint32_t msg_type; + uint32_t event_type; + uint32_t concatenation; + uint32_t num_faults_notif; + uint32_t action_type; + uint32_t fault_notif; + uint16_t payload_size; + uint32_t data_length; + uint16_t reported_length; + uint16_t remaining_length; + uint32_t time_stamp_ns; + uint64_t time_stamp_s; + uint64_t comp_val; reported_length = tvb_reported_length(tvb); @@ -390,13 +395,14 @@ static int dissect_ecpri(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, vo col_clear(pinfo->cinfo, COL_INFO); offset = 0; - concatenation = tvb_get_guint8(tvb, offset) & 0x01; + concatenation = tvb_get_uint8(tvb, offset) & 0x01; if (concatenation != 0x00) { - col_append_fstr(pinfo->cinfo, COL_INFO, "Concatenation"); + col_append_str(pinfo->cinfo, COL_INFO, "Concatenation"); } /* do-while loop for concatenation check */ + bool concatenation_bit; do { /* 4-byte boundary check for concatenation */ @@ -429,7 +435,7 @@ static int dissect_ecpri(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, vo /* Reserved */ proto_tree_add_item(header_tree, hf_reserved, tvb, offset, 1, ENC_NA); /* C(oncatenated */ - ti_c_bit = proto_tree_add_item_ret_boolean(header_tree, hf_c_bit, tvb, offset, 1, ENC_NA, &concatenation); + ti_c_bit = proto_tree_add_item_ret_boolean(header_tree, hf_c_bit, tvb, offset, 1, ENC_NA, &concatenation_bit); offset += 1; /* eCPRI Message Type */ @@ -462,20 +468,20 @@ static int dissect_ecpri(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, vo /* Call the FH CUS dissector if preference set */ if (pref_message_type_decoding) { - tvbuff_t *fh_tvb = tvb_new_subset_length(tvb, offset, payload_size); /***********************************************************************************************/ - /* See whether O-RAN fronthaul sub-dissector that handles this, otherwise decode vanilla eCPRI */ + /* See whether O-RAN fronthaul sub-dissector handles this, otherwise decode as vanilla eCPRI */ /* N.B. FH CUS dissector only handles: */ /* - message type 0 (IQ DATA) */ /* - message type 2 (RT CTRL DATA) */ /***********************************************************************************************/ - if (call_dissector_only(oran_handle, fh_tvb, pinfo, tree, &msg_type)) + if (call_dissector_only(oran_fh_handle, fh_tvb, pinfo, tree, &msg_type)) { /* Assume that it has claimed the entire tvb */ offset = tvb_reported_length(tvb); } else { + /* ORAN FH-CUS dissector didn't handle it */ switch (msg_type) { case ECPRI_MT_IQ_DATA: @@ -571,12 +577,12 @@ static int dissect_ecpri(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, vo remaining_length -= ECPRI_MSG_TYPE_4_PAYLOAD_MIN_LENGTH; if (remaining_length >= payload_size - ECPRI_MSG_TYPE_4_PAYLOAD_MIN_LENGTH) { - if (data_length == (guint32)(payload_size - ECPRI_MSG_TYPE_4_PAYLOAD_MIN_LENGTH)) + if (data_length == (uint32_t)(payload_size - ECPRI_MSG_TYPE_4_PAYLOAD_MIN_LENGTH)) { proto_tree_add_item(payload_tree, hf_data, tvb, offset, payload_size - ECPRI_MSG_TYPE_4_PAYLOAD_MIN_LENGTH, ENC_NA); offset += payload_size - ECPRI_MSG_TYPE_4_PAYLOAD_MIN_LENGTH; } - else if (data_length < (guint32)(payload_size - ECPRI_MSG_TYPE_4_PAYLOAD_MIN_LENGTH)) + else if (data_length < (uint32_t)(payload_size - ECPRI_MSG_TYPE_4_PAYLOAD_MIN_LENGTH)) { expert_add_info_format(pinfo, ti_data_length, &ei_data_length, "Data Length %d is too small, should be %d", data_length, payload_size - ECPRI_MSG_TYPE_4_PAYLOAD_MIN_LENGTH); } @@ -689,7 +695,7 @@ static int dissect_ecpri(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, vo if (payload_size == ECPRI_MSG_TYPE_7_PAYLOAD_MIN_LENGTH + num_faults_notif * ECPRI_MSG_TYPE_7_ELEMENT_SIZE) { /* Dissect elements in loop */ - for (guint32 i = 0; i < num_faults_notif; i++) + for (uint32_t i = 0; i < num_faults_notif; i++) { element_item = proto_tree_add_item(payload_tree, hf_element, tvb, offset, ECPRI_MSG_TYPE_7_ELEMENT_SIZE, ENC_NA); proto_item_prepend_text(element_item, "#%d: ", i + 1); @@ -783,8 +789,8 @@ static int dissect_ecpri(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, vo offset += payload_size; } } - } while (concatenation != 0 && reported_length - offset >= ECPRI_HEADER_LENGTH); - if (concatenation != 0) { + } while (concatenation_bit != 0 && reported_length - offset >= ECPRI_HEADER_LENGTH); + if (concatenation_bit != false) { expert_add_info_format(pinfo, ti_c_bit, &ei_c_bit, "Concatenation Bit is 1, should be 0"); } @@ -834,8 +840,8 @@ void proto_register_ecpri(void) { &hf_measurement_id, { "Measurement ID", "ecpri.measurementid", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL } }, { &hf_action_type, { "Action Type", "ecpri.actiontype", FT_UINT8, BASE_HEX|BASE_RANGE_STRING, RVALS(action_type_coding), 0x0, NULL, HFILL } }, { &hf_timestamp, { "Time Stamp", "ecpri.timestamp", FT_BYTES, SEP_COLON, NULL, 0x0, NULL, HFILL } }, - { &hf_timestamp_sec, { "Seconds", "ecpri.sec", FT_UINT48, BASE_DEC|BASE_UNIT_STRING, &units_seconds, 0x0, NULL, HFILL } }, - { &hf_timestamp_nanosec, { "Nanoseconds", "ecpri.nanosec", FT_UINT32, BASE_DEC|BASE_UNIT_STRING, &units_nanoseconds, 0x0, NULL, HFILL } }, + { &hf_timestamp_sec, { "Seconds", "ecpri.sec", FT_UINT48, BASE_DEC|BASE_UNIT_STRING, UNS(&units_seconds), 0x0, NULL, HFILL } }, + { &hf_timestamp_nanosec, { "Nanoseconds", "ecpri.nanosec", FT_UINT32, BASE_DEC|BASE_UNIT_STRING, UNS(&units_nanoseconds), 0x0, NULL, HFILL } }, { &hf_compensation_value, { "Compensation Value", "ecpri.compval", FT_UINT64, BASE_DEC, NULL, 0x0, NULL, HFILL } }, /* Message Type 6: Remote Reset */ { &hf_reset_id, { "Reset ID", "ecpri.resetid", FT_UINT16, BASE_HEX, NULL, 0x00, NULL, HFILL } }, @@ -857,7 +863,7 @@ void proto_register_ecpri(void) }; /* Setup protocol subtree array */ - static gint *ett[] = { + static int *ett[] = { &ett_ecpri, &ett_ecpri_header, &ett_ecpri_payload, @@ -878,7 +884,7 @@ void proto_register_ecpri(void) }; expert_module_t* expert_ecpri; - module_t* module_message_decoding; + module_t* ecpri_module; /* Register the protocol name and description */ proto_ecpri = proto_register_protocol("evolved Common Public Radio Interface", /* Protoname */ @@ -894,11 +900,11 @@ void proto_register_ecpri(void) expert_ecpri = expert_register_protocol(proto_ecpri); expert_register_field_array(expert_ecpri, ei, array_length(ei)); /* Register Preference */ - module_message_decoding = prefs_register_protocol( proto_ecpri, NULL); + ecpri_module = prefs_register_protocol(proto_ecpri, NULL); /* If not set, it shows which message type was used, but no decoding of payload */ - prefs_register_bool_preference(module_message_decoding, + prefs_register_bool_preference(ecpri_module, "ecpripref.msg.decoding", - "Decode Message Type", + "Decode Message Types", "Decode the Message Types according to eCPRI Specification V1.2", &pref_message_type_decoding); } @@ -908,7 +914,7 @@ void proto_reg_handoff_ecpri(void) dissector_add_uint("ethertype", ETHERTYPE_ECPRI, ecpri_handle); /* Ethertypes 0xAEFE */ dissector_add_uint_range_with_preference("udp.port", "", ecpri_handle); /* UDP Port Preference */ - oran_handle = find_dissector("oran_fh_cus"); + oran_fh_handle = find_dissector("oran_fh_cus"); } /* |