Commit Graph

90350 Commits

Author SHA1 Message Date
Martin Mathieson 2d6310f4f8 SMB2: make a function static 2024-01-18 10:22:36 +00:00
John Thacker 79c6e9db9d HTTP3: Huffman decoding
Add Huffman decoding from libngttp2 library (MIT licensed),
and use it in HTTP/3 to display the decoded QPACK bytes.
(HTTP/2 and HTTP/3 use the same Huffman encoding.) These
files are not part of the public libnghttp2 library but
normally internal.

Note that libnghttp3 does not supply a function to inflate
headers like nghttp2_hd_inflate_h2.

Related to #16761
2024-01-18 09:46:24 +00:00
Adedeji Adeloye c3c0fb7263 SMB2: dissect FSCTL, Query info, and Server notification
Add dissection for FSCTL_SET_INTEGRITY_INFORMATION_EX control code
Add dissection for SMB2 SERVER_TO_CLIENT notification
Update QueryInfo flags for FileFullEaInformation query code
Update file_info_levels list.
2024-01-18 06:27:35 +00:00
Gerald Combs 8d79ea2f0d Falco bridge: Improve our internal event detection 2024-01-17 18:50:33 -08:00
Yaniv Kaul 73ece5e8c8 epan/dissectors/packet-cql.c: fix few typos
Signed-off-by: Yaniv Kaul <yaniv.kaul@scylladb.com>
2024-01-17 16:37:37 +00:00
Joakim Karlsson 80a3890dab extcap: fix build with older libssh 2024-01-17 16:45:10 +01:00
Martin Mathieson 84cf907fcb WSMP: Set correct length of N and T headers 2024-01-17 13:49:53 +00:00
Joakim Karlsson 05e1338d61 GTPv2: correction of IE Monitoring Event Information
Correcting offset miss in !13077
Due to offset for octet 4 is skipped earlier, the remaining lenght becomes wrongly.
To correct the fault, offset for octet 4 is need to be added after IE has been decoded
2024-01-17 13:26:12 +00:00
Pascal Quantin 524621ca21 NRPPa: upgrade dissector to v17.6.0 2024-01-17 08:43:10 +00:00
David Perry bf909bf93e Add descriptions for heur dissector tables
Build on !13975 to add human-readable descriptions for all heuristic
dissector tables in Wireshark.

Chosen names are meant to give some info on when a heuristic dissector
lookup will be made. Terms like 'fallback' are used when the heuristic
is only consulted if other checks do not result in dissection, for
example.

People with more intimate knowledge of the protocols and dissectors
involved are encouraged to suggest or implement better descriptions.
2024-01-17 08:35:43 +00:00
Gerald Combs f20d45f1aa Qt: Always enable our "Follow" menu items
Disabling them breaks discoverability.
2024-01-17 08:34:47 +00:00
Gerald Combs 9703cf23a8 TLS: Update the follow tap name to match other dissectors 2024-01-17 08:33:55 +00:00
Timo Warns 7983d70203 GNSS: SBAS dissection improvements 2024-01-17 08:33:08 +00:00
John Thacker 75d79e5d7d rdpudp: Fix leak
The cloned tvbs stored for reassembly purposes need to be freed
when the file scoped trees holding them are freed.

Fix #19598
2024-01-16 23:41:24 +00:00
James Ring 85aeaf1f34 Adds a dissector for SANE (Scanner Access Now Easy). 2024-01-16 21:13:50 +00:00
Gerald Combs bcfa25bdfc Falco bridge: Add a quick CPU+PID cache
Try caching strings based on their CPU ID, PID, and field index. This
lets us use a constant 64-bit key before spending CPU time hashing
strings. This saves about 500ms when loading a test capture here.
2024-01-16 18:25:51 +00:00
Pascal Quantin d302ff5b42 F1AP: upgrade dissector to v17.7.0 2024-01-16 17:33:54 +01:00
David Perry 893a68e6d9 [#19585] Add description for heur dissector tables
Add a field to `struct heur_dissector_list` to hold a human-readable
description of the heuristic dissector list. The field is named
`ui_name` to parallel `struct dissector_table`.

Add `register_heur_dissector_list_with_description()` to register a new heuristic
dissector list with a description as well as a name. Change
`register_heur_dissector_list()` to be a thin wrapper which passes a
null description.

Add `heur_dissector_list_get_description()` to get the description from
a `heur_dissector_list_t` (which is an opaque type).

Modify the Qt user interface so that heuristic tables listed in *View →
Internals → Dissector Tables* show the description in the left column
and the short name in the right column, as is the case for other
dissector table types. For heuristic dissector lists which do not have a
description, repeat the short name in the left column to resemble how
the dialog was presented before this change.

Revise function name based on feedback
2024-01-16 15:53:55 +00:00
Pascal Quantin 7919c374d7 E1AP: upgrade dissector to v17.7.0 2024-01-16 16:19:16 +01:00
Pascal Quantin 1295d416ed XnAP: upgrade dissector to v17.7.0 2024-01-16 16:05:56 +01:00
Pascal Quantin e31f805c81 NGAP: upgrade dissector to v17.7.0 2024-01-16 15:49:20 +01:00
Pascal Quantin 28c7e0cce3 NR RRC: upgrade dissector to v17.7.0 2024-01-16 15:36:15 +01:00
Pascal Quantin feff9a8b80 LTE RRC: upgrade dissector to v17.7.0 2024-01-16 15:22:26 +01:00
Pascal Quantin 87dfdbb915 LPP: upgrade dissector to v17.7.0 2024-01-16 15:00:36 +01:00
Guy Harris e0811c1aa0 x75: don't register for WTAP_ENCAP_LAPB.
X.75 is not the same thing as LAPB, and we already *have* a LAPB
dissector that registers for WTAP_ENCAP_LAPB.  Two dissectors
registering for a value in the wtap_encap table means one of them will
lose, so it does not work; in this case, the LAPB dissector loses.

Fixes #19595.
2024-01-15 16:37:05 -08:00
Gerald Combs 760462e2dc Qt: Status bar updates
Only show the "Displayed: x (y%)" packet list info if we have a display
filter set, similar to the other statistics. This avoids showing the
same number twice followed by "100.0%".

QObject::tr() returns a QString, so there's no need to wrap it in
QString(). (We do this a *lot*, which is probably my fault.)

Clean up some QString::arg calls.

Use the modern signal + slot syntax.
2024-01-15 16:01:15 -08:00
John Thacker 5c8c379b69 extcap: Add ability to enable SHA-1 algorithms
libssh 0.10.0 removed SHA-1 based keys and algorithms from its
default configuration, though they are still supported. We
ship with 0.10.5 in Windows and macOS now, and many Linux
distributions are on 0.10.x as well.

Add the ability to re-enable SHA-1 RSA keys, MAC, and KEX algorithms
with a preference to ciscodump, sshdump, and wifidump.

This will be a little easier in 0.11.0, where it's possible to
just specify the algorithms you want to add to the default list,
instead of having to specify the entire list.

Fix #19510. Fix #19594
2024-01-15 06:40:08 -05:00
John Thacker b8f252dd99 Qt: Add support for date and time before file index in multi file mode
Add buttons to select the infix pattern in multiple file mode,
using the new option for having the date and time before the
file index number (which provides more natural sorting, and
keeps different groups of captures together) added for tshark
and the capture options in 8bc52f542b

Fix #12371
2024-01-15 09:44:55 +00:00
John Thacker b5c839815e Remove duplicative members from interface_t
interface_t contains an if_info_t as its member. It
doesn't need to copy the friendly name, vendor description,
and type from the if_info_t into separate members. The vast
majority of the time, we're already using the member from
the embedded if_info_t, but change a couple of cases.

The display name is a unique transformation of the name, friendly
name (OS name), and vendor description (hardware name) that depends
somewhat on the OS, so that needsto be seprate. The addresses and
links are also transformed from the if_info format. The name is
copied as well, but at least that's the primary key for the interface.
2024-01-15 09:23:34 +00:00
John Thacker eeb818f5e7 TLS: Display minimum supported version when version unknown in Client Hello
If the supported_versions extension is provided in the Client Hello,
display the mimimum supported version given in the extension in the
Protocol column if the session TLS version is unknown. Use the minimum
version because we don't know what the server will agree to, but it
must be at least this version.

This only affects when the Server Hello or other authoritative
messages haven't been seen, so in first-pass dissection (live
capture or one pass tshark) or a capture that doesn't contain
authoritative messages at all.

Fix #16114
2024-01-15 08:03:36 +00:00
John Thacker 91e75f3e46 NBSS: Handle short packets
If we have a packet that isn't long enough to fit an entire header,
but the first byte does look like a message type, and we can do
reassembly, ask for reassembly.

Fix #19593
2024-01-14 11:25:12 -05:00
Jaap Keuter f5615dd9f9 IPv4/v6: fix field offset calculation for GeoIP entries 2024-01-14 15:00:11 +00:00
Gerald Combs 7da3a871a3 [Automatic update for 2024-01-14]
Update manuf, services enterprise numbers, translations, and other items.
2024-01-14 09:25:08 +00:00
John Thacker c413d81967 rtmpt: Add a default chunksize preference
For RTMP connections where we get the handshake, continue to use
the initial value of 128 as done in the protocol; we should get
any Set Chunk Size messages.

For connections where we don't get the initial handshake, i.e.
the connection is already in progress when the capture is started,
allow setting a different default chunksize. Note that both too
large and too small values will cause problems, but the since the
initial bytes of chunks can have any value, it's very difficult
to do this heuristically.

Fix #12403 (by setting the preference to a large value, e.g. 60000,
everything is dissected correctly in that capture.)
2024-01-14 00:51:10 +00:00
Loris Degioanni f374ddf2fb Falco bridge: Add conversation filters
Add conversation filters for container, process, process, process and
descendant, thread and FD.
2024-01-13 15:04:47 -08:00
Gerald Combs 666443ebd1 Resources: Update the Logray Syscalls profile
Update the coloring rules and add display filter buttons and a column
layout.
2024-01-13 14:48:02 -08:00
Gerald Combs 06f80366d5 Falco bridge: Update our memory stats 2024-01-13 22:11:27 +00:00
Martin Mathieson 664b858d44 SOMEIP-SD: call val_to_str_const() 2024-01-12 12:59:26 +00:00
John Thacker 2c9b66d14a RTP: Use the same extended seqno / timestamp cycle for a new setup msg
Some systems repeatedly send out SDP setup information for the same
RTP conversation. We end up setting up multiple conversations
(it's not clear we need to, since most of the information we copy
to per-packet info for subsequent passes.)

When doing so, copy the per-SSRC number space information that
determines what cycle number we're on for extended sequence numbers
and timestamps (since those fields can and do wrap.)

This doesn't hurt at all if the setup information is for different
conversations, even ones using the same SSRC; it aligns the cycle
number but that's fine. It helps a lot in cases where the RTP
sequence number has already overflowed and then we get a duplicate
SETUP message; we need to stay on the same cycle.

Fix #19592
2024-01-12 21:56:30 -05:00
John Thacker 6e12e504b9 iface_lists: Do not reset capture options when refreshing interface list
When rescanning the interface list (e.g. when manually refreshing
or a new device is added or removed), do not destroy old devices
but instead reuse it and preserve the user-set options.

Do check the monitor mode and active dlt setting against the
retrieved values to make sure that they are still supported.

In particular this means that the capture filter is not reset.

For many of the options, the value when creating a new device is
taken from the prefs, and the prefs are updated when the Capture
Options Dialog is closed (monitor mode, promiscuous mode, link layer
type, snapshot length, buffer size), or when the Manage Interfaces
Dialog is closed (hidden, user description), which mostly worked,
unless a refresh occurred when those dialogs were open and changes
had not been saved to prefs.

Fix #16418
2024-01-13 02:28:46 +00:00
John Thacker d4bc9d4036 opcua: Parse more Server and Client Certificates
Even though these files are generated and warn not to change
them, the generator is not working currently, so patch them.
(See the disscussion in !14000)
2024-01-13 01:30:58 +00:00
Zackhardtoname 6c26a3c7dc Fix uintptr_t not found error 2024-01-12 23:42:33 +00:00
Gerald Combs eec059c598 Falco bridge: Use ws_strtoi
Fetch an integer value using ws_strtoi. This saves about 400ms when
loading a test capture here.
2024-01-12 14:19:42 -08:00
Gerald Combs 04bd21b700 pcapng: Sysidg events don't always have timestamps 2024-01-12 12:08:51 -08:00
Gerald Combs a0f5d63515 Release notes: Note that the Parlay dissector has been removed 2024-01-12 18:40:01 +00:00
Gerald Combs 520fb7848e GitLab CI: Install ruby-dev in the Documentation job 2024-01-12 09:55:03 -08:00
Anders Broman 490d0514d9 Parlay: Retire the dissector.
Removing the generated Parlay dissecor on the assumtion it is now
obsolete. Leaving the IDL files in the repo for a while longer.
https://en.m.wikipedia.org/wiki/Parlay_Group
https://en.m.wikipedia.org/wiki/Parlay_X
2024-01-12 16:39:53 +00:00
John Thacker 846fae3141 rtmpt: Mark depended upon frames
RTMPT doesn't use the native reassembly API, so store the frames that
are involved in reassembly of a packet and mark the depended upon
frames itself so that exporting selected packets doesn't omit them.
2024-01-12 09:33:27 -05:00
John Thacker 9152670fe5 opcua: Use fragment_add_seq_offset
This is the reassembly API call for fragments that start at a
different value. This is better than examining the entire
chain, and also would have a better chance of working with
out of order fragments (though TCP should handle that for us.)
2024-01-12 14:18:13 +00:00
Jaap Keuter 16fa05d719 Help: on macOS local pages are found in the DATA_DIR of the bundle 2024-01-12 13:35:03 +00:00