diff options
Diffstat (limited to 'epan/dissectors/packet-cipsafety.h')
-rw-r--r-- | epan/dissectors/packet-cipsafety.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/epan/dissectors/packet-cipsafety.h b/epan/dissectors/packet-cipsafety.h new file mode 100644 index 00000000..82adf6f5 --- /dev/null +++ b/epan/dissectors/packet-cipsafety.h @@ -0,0 +1,61 @@ +/* packet-cipsafety.h + * Routines for CIP (Common Industrial Protocol) Safety dissection + * CIP Safety Home: www.odva.org + * + * Copyright 2011 + * Michael Mann <mmann@pyramidsolutions.com> + * + * Wireshark - Network traffic analyzer + * By Gerald Combs <gerald@wireshark.org> + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ +#ifndef PACKET_CIPSAFETY_H +#define PACKET_CIPSAFETY_H + +#include "packet-enip.h" + +/* Classes that have class-specfic dissectors */ +#define CI_CLS_SAFETY_SUPERVISOR 0x39 /* Safety Supervisor */ +#define CI_CLS_SAFETY_VALIDATOR 0x3A /* Safety Validator */ + +/* Class specific services */ +/* Safety Supervisor */ +#define SC_SSUPER_RECOVER 0x4C +#define SC_SSUPER_PERFORM_DIAGNOSTICS 0x4E +#define SC_SSUPER_CONFIGURE_REQUEST 0x4F +#define SC_SSUPER_VALIDATE_CONFIGURATION 0x50 +#define SC_SSUPER_SET_PASSWORD 0x51 +#define SC_SSUPER_CONFIGURATION_LOCK 0x52 +#define SC_SSUPER_MODE_CHANGE 0x53 +#define SC_SSUPER_SAFETY_RESET 0x54 +#define SC_SSUPER_RESET_PASSWORD 0x55 +#define SC_SSUPER_PROPOSE_TUNID 0x56 +#define SC_SSUPER_APPLY_TUNID 0x57 +#define SC_SSUPER_PROPOSE_TUNID_LIST 0x58 +#define SC_SSUPER_APPLY_TUNID_LIST 0x59 + +typedef struct cip_safety_info { + enum enip_connid_type conn_type; + cip_conn_info_t* eip_conn_info; + gboolean compute_crc; +} cip_safety_info_t; + + +/* +** Exported functions +*/ +extern void dissect_unid(tvbuff_t *tvb, packet_info *pinfo, int offset, proto_item *pi, const char* snn_name, int hf_snn_timestamp, + int hf_snn_date, int hf_snn_time, int hf_macid, gint ett, gint ett_snn); +extern void dissect_cipsafety_snn(proto_tree *tree, tvbuff_t *tvb, packet_info *pinfo, int offset, int hf_real_datetime, int hf_date, int hf_time); +extern void cip_safety_128us_fmt(gchar *s, guint32 value); + +/* +** Exported variables +*/ +extern const value_string cipsafety_snn_date_vals[8]; +extern attribute_info_t cip_safety_attribute_vals[51]; +extern const range_string safety_max_consumer_numbers[]; + +#endif /* PACKET_CIPSAFETY_H */ |