wireshark/extcap
Guy Harris e5951765d8 Dissector names are not protocol names.
A given protocol's packet format may depend, for example, on which
lower-level protocol is transporting the protocol in question.  For
example, protocols that run atop both byte-stream protocols such as TCP
and TLS, and packet-oriented protocols such as UDP or DTLS, might begin
the packet with a length when running atop a byte-stream protocol, to
indicate where this packet ends and the next packet begins in the byte
stream, but not do so when running atop a packet-oriented protocol.

Dissectors can handle this in various ways:

For example, the dissector could attempt to determine the protocol over
which the packet was transported.

Unfortunately, many of those mechanisms do so by fetching data from the
packet_info structure, and many items in that structure act as global
variables, so that, for example, if there are two two PDUs for protocol
A inside a TCP segment, and the first protocol for PDU A contains a PDU
for protocol B, and protocol B's dissector, or a dissector it calls,
modifies the information in the packet_info structure so that it no
longer indicates that the parent protocol is TCP, the second PDU for
protocol A might not be correctly dissected.

Another such mechanism is to query the previous element in the layers
structure of the packet_info structure, which is a list of protocol IDs.

Unfortunately, that is not a list of earlier protocols in the protocol
stack, it's a list of earlier protocols in the dissection, which means
that, in the above example, when the second PDU for protocol A is
dissected, the list is {...,TCP,A,B,...,A}, which means that the
previous element in the list is not TCP, so, again, the second PDU for
protocol A will not be correctly dissected.

An alternative is to have multiple dissectors for the same protocol,
with the part of the protocol that's independent of the protocol
transporting the PDU being dissected by common code.  Protocol B might
have an "over a byte-stream transport" dissector and an "over a packet
transport" dissector, with the first dissector being registered for use
over TCP and TLS and the other dissector being registered for use over
packet protocols.  This mechanism, unlike the other mechanisms, is not
dependent on information in the packet_info structure that might be
affected by dissectors other than the one for the protocol that
transports protocol B.

Furthermore, in a LINKTYPE_WIRESHARK_UPPER_PDU pcap or pcapng packet for
protocol B, there might not be any information to indicate the protocol
that transports protocol B, so there would have to be separate
dissectors for protocol B, with separate names, so that a tag giving the
protocol name would differ for B-over-byte-stream and B-over-packets.

So:

We rename EXP_PDU_TAG_PROTO_NAME and EXP_PDU_TAG_HEUR_PROTO_NAME to
EXP_PDU_TAG_DISSECTOR_NAME and EXP_PDU_TAG_HEUR_DISSECTOR_NAME, to
emphasize that they are *not* protocol names, they are dissector names
(which has always been the case - if there's a protocol with that name,
but no dissector with that name, Wireshark will not be able to handle
the packet, as it will try to look up a dissector given that name and
fail).

We fix that exported PDU dissector to refer to those tags as dissector
names, not protocol names.

We update documentation to refer to them as DISSECTOR_NAME tags, not
PROTO_NAME tags.  (If there is any documentation for this outside the
Wireshark source, it should be updated as well.)

We add comments for calls to dissector_handle_get_dissector_name() where
the dissector name is shown to the user, to indicate that it might be
that the protocol name should be used.

We update the TLS and DTLS dissectors to show the encapsulated protocol
as the string returned by dissector_handle_get_long_name(); as the
default is "Application Data", it appeaers that a descriptive name,
rather than a short API name, should be used.  (We continue to use the
dissector name in debugging messages, to indicate which dissector was
called.)
2022-09-10 22:37:11 -07:00
..
.editorconfig extcap: new interface, wifidump, to capture Wi-Fi frames using a remote SSH host 2022-03-09 08:01:39 +00:00
CMakeLists.txt extcap: Add falcodump. 2022-08-29 15:35:19 -07:00
androiddump.c Dissector names are not protocol names. 2022-09-10 22:37:11 -07:00
ciscodump.c extcap: Signal processing unified for C based extcaps 2022-08-29 19:46:59 +00:00
dpauxmon.c extcap: Signal processing unified for C based extcaps 2022-08-29 19:46:59 +00:00
dpauxmon_user.h extcap: Add header files to Doxygen 2021-11-30 08:29:39 +00:00
etl.c ETW: Extract IP packets from Windows event trace 2022-05-05 13:35:47 +00:00
etl.h extcap: Add header files to Doxygen 2021-11-30 08:29:39 +00:00
etw_message.c Define more log domains for extcaps 2021-12-05 00:28:26 +00:00
etw_message.h extcap: Add header files to Doxygen 2021-11-30 08:29:39 +00:00
etw_ndiscap.c ETW: Extract IP packets from Windows event trace 2022-05-05 13:35:47 +00:00
etwdump.c wsutil: Add configuration namespaces. 2022-04-04 09:39:27 -07:00
extcap-base.c extcap: Signal processing unified for C based extcaps 2022-08-29 19:46:59 +00:00
extcap-base.h extcap: Add falcodump. 2022-08-29 15:35:19 -07:00
falcodump.cpp extcap: Add falcodump. 2022-08-29 15:35:19 -07:00
randpktdump.c wsutil: Add configuration namespaces. 2022-04-04 09:39:27 -07:00
sdjournal.c wsutil: Add configuration namespaces. 2022-04-04 09:39:27 -07:00
ssh-base.c Replace g_strdup_printf() with ws_strdup_printf() 2021-12-19 21:21:58 +00:00
ssh-base.h extcap: Add header files to Doxygen 2021-11-30 08:29:39 +00:00
sshdump.c sshdump: may be used uninitialized in this function [-Wmaybe-uninitialized] 2022-08-12 18:25:56 +00:00
udpdump.c Dissector names are not protocol names. 2022-09-10 22:37:11 -07:00
wifidump.c wsutil: Add configuration namespaces. 2022-04-04 09:39:27 -07:00