metze/wireshark/wip.git
23 years agoClarify which filter expressions on the command line are capture filters
Guy Harris [Wed, 10 Jan 2001 09:39:24 +0000 (09:39 -0000)]
Clarify which filter expressions on the command line are capture filters
and which are display filters.

svn path=/trunk/; revision=2857

23 years agoUpdate a comment.
Guy Harris [Wed, 10 Jan 2001 09:34:08 +0000 (09:34 -0000)]
Update a comment.

svn path=/trunk/; revision=2856

23 years agoM3UA (MTP3 User Adaptation layer) support, from Michael Tuexen.
Guy Harris [Wed, 10 Jan 2001 09:25:13 +0000 (09:25 -0000)]
M3UA (MTP3 User Adaptation layer) support, from Michael Tuexen.

svn path=/trunk/; revision=2855

23 years agoMake the stuff to handle SNAP frames (OUI, PID, payload) a routine of
Guy Harris [Wed, 10 Jan 2001 09:07:35 +0000 (09:07 -0000)]
Make the stuff to handle SNAP frames (OUI, PID, payload) a routine of
its own; it's used not only by LLC, but by Frame Relay with RFC 2427 and
ATM with RFC 2684.

Support for RFC 2427-encapsulation Frame Relay packets, from Paul
Ionescu.

Get rid of the CISCO_IP PPP protocol type - Cisco HDLC uses, in most
cases, Ethernet packet types, so use ETHERTYPE_IP instead (they're both
0x0800).

svn path=/trunk/; revision=2854

23 years agoChange e-mail list addresses from zing.org to ethereal.com.
Gilbert Ramirez [Wed, 10 Jan 2001 06:23:58 +0000 (06:23 -0000)]
Change e-mail list addresses from zing.org to ethereal.com.

svn path=/trunk/; revision=2853

23 years agoTvbuffify the SNA dissector.
Gilbert Ramirez [Wed, 10 Jan 2001 04:17:13 +0000 (04:17 -0000)]
Tvbuffify the SNA dissector.

svn path=/trunk/; revision=2852

23 years agoRegister the IPX dissector, make it static, and call it through a
Guy Harris [Tue, 9 Jan 2001 09:59:28 +0000 (09:59 -0000)]
Register the IPX dissector, make it static, and call it through a
handle.

Call the IP dissector through a handle in the Frame Relay dissector.

svn path=/trunk/; revision=2851

23 years agoAdd a new "ip_to_str_buf()" routine that takes a pointer to an IP
Guy Harris [Tue, 9 Jan 2001 09:57:06 +0000 (09:57 -0000)]
Add a new "ip_to_str_buf()" routine that takes a pointer to an IP
address and a pointer to a character buffer as arguments, and puts a
printable form of the IP address into the buffer.  Make "ip_to_str()"
use it.

Make "host_name_lookup()" use "ip_to_str_buf()", not "ip_to_str()", so
that it doesn't trash any strings that a dissector has gotten with
"ip_to_str()" (for example, the ARP dissector gets strings for the
source and target protocol addresses, and then may attempt to register
names for the source and target hardware addresses with
"add_ether_byip()"; if "host_name_lookup()" fails to find a host name
for the IP address, it shouldn't use "ip_to_str()" to generate an IP
address string to associate with the IP address, as if that's done twice
it'll run out of "ip_to_str()" buffers - there're only 3 of them - and
trash one of the IP address strings the ARP dissector got).

svn path=/trunk/; revision=2850

23 years agoAdd an additional "protocol index" argument to "{old_}dissector_add()",
Guy Harris [Tue, 9 Jan 2001 06:32:10 +0000 (06:32 -0000)]
Add an additional "protocol index" argument to "{old_}dissector_add()",
"{old_}heur_dissector_add()", "{old_}conv_dissector_add()", and
"register_dissector()", so that an entry in those tables has associated
with it the protocol index of the protocol the dissector handles (or -1,
if there is no protocol index for it).

This is for future use in a number of places.

(Arguably, "proto_register_protocol()" should take a dissector pointer
as an argument, but

1) it'd have to handle both regular and heuristic dissectors;

2) making it take either a "dissector_t" or a union of that and
   a "heur_dissector_t" introduces some painful header-file
   interdependencies

so I'm punting on that for now.  As with other Ethereal internal APIs,
these APIs are subject to change in the future, at least until Ethereal
1.0 comes out....)

svn path=/trunk/; revision=2849

23 years agoAdd tables of "conversation" dissectors, which are associated with
Guy Harris [Tue, 9 Jan 2001 05:53:21 +0000 (05:53 -0000)]
Add tables of "conversation" dissectors, which are associated with
particular protocols, and which keep track of all dissectors that could
be associated with conversations using those particular protocols - for
example, the RTP and RTCP dissectors could be assigned to UDP
conversations.

This is for future use with UI features allowing the dissector for a
given conversation to be set from the UI, to allow

1) conversations between two ports, both of which have
   dissectors associated with them, that have been given to the
   wrong dissector to be given to the right dissector;

2) conversations between two ports, neither of which have
   dissectors associated with them, to be given to a dissector
   (RTP and RTCP, for example, typically run on random ports,
   and if you don't have, in a capture, traffic that would say
   "OK, traffic between these two hosts and ports will be RTP
   traffic", you may have to tell Ethereal explicitly what
   protocol the conversation is).

svn path=/trunk/; revision=2848

23 years agoIf the target hardware address in an ARP packet is a broadcast address,
Guy Harris [Tue, 9 Jan 2001 01:02:34 +0000 (01:02 -0000)]
If the target hardware address in an ARP packet is a broadcast address,
don't give that address the host name corresponding to the target IP
address.

svn path=/trunk/; revision=2847

23 years agoDon't do the "select()" in the capture codepath on Win32; it's not
Guy Harris [Tue, 9 Jan 2001 00:53:26 +0000 (00:53 -0000)]
Don't do the "select()" in the capture codepath on Win32; it's not
necessary, and won't necessarily work.

svn path=/trunk/; revision=2846

23 years agoCode to handle Frame Relay Sniffer captures, from Jeff Foster.
Guy Harris [Mon, 8 Jan 2001 22:18:22 +0000 (22:18 -0000)]
Code to handle Frame Relay Sniffer captures, from Jeff Foster.

Code to register the Frame Relay dissector to handle Frame Relay
captures, from Paul Ionescu.

svn path=/trunk/; revision=2845

23 years agoClean up white space.
Guy Harris [Sun, 7 Jan 2001 22:35:21 +0000 (22:35 -0000)]
Clean up white space.

svn path=/trunk/; revision=2844

23 years agoFix the Frame Relay dissector to call subdissectors regardless of
Guy Harris [Sun, 7 Jan 2001 22:18:32 +0000 (22:18 -0000)]
Fix the Frame Relay dissector to call subdissectors regardless of
whether a full protocol tree dissection is being done or not.

svn path=/trunk/; revision=2843

23 years agoFrame Relay and Frame-Relay-over-GRE support, from Paul Ionescu.
Guy Harris [Sun, 7 Jan 2001 22:08:31 +0000 (22:08 -0000)]
Frame Relay and Frame-Relay-over-GRE support, from Paul Ionescu.

Fix the GRE dissector to call subdissectors regardless of whether a full
protocol tree dissection is being done or not.

svn path=/trunk/; revision=2842

23 years agoMake the three subfields of the "flags" field real bitfields, and let
Guy Harris [Sun, 7 Jan 2001 01:47:37 +0000 (01:47 -0000)]
Make the three subfields of the "flags" field real bitfields, and let
the protocol tree code do the work of constructing the display for them,
rather than doing it by hand.

svn path=/trunk/; revision=2841

23 years agoUpdate from Paul Ionescu to set the reported length of the tvbuff for
Guy Harris [Sun, 7 Jan 2001 00:23:03 +0000 (00:23 -0000)]
Update from Paul Ionescu to set the reported length of the tvbuff for
the DEC LanBridge STP packet, so that stuff after the end of the packet
gets properly reported as Ethernet trailer data.

svn path=/trunk/; revision=2840

23 years agoTvbuffify the NTP and time protocol dissectors.
Guy Harris [Sat, 6 Jan 2001 09:42:10 +0000 (09:42 -0000)]
Tvbuffify the NTP and time protocol dissectors.

svn path=/trunk/; revision=2839

23 years agoTvbuffify the Vines dissector, and add protocols for the Vines
Guy Harris [Sat, 6 Jan 2001 08:44:03 +0000 (08:44 -0000)]
Tvbuffify the Vines dissector, and add protocols for the Vines
Fragmentation and SPP protocols.

Call the Vines dissector from the UDP dissector via a dissector table.

svn path=/trunk/; revision=2838

23 years agoTvbuffify the "rwho" dissector.
Guy Harris [Sat, 6 Jan 2001 06:18:54 +0000 (06:18 -0000)]
Tvbuffify the "rwho" dissector.

svn path=/trunk/; revision=2837

23 years agoTvbuffify the VRRP dissector, and add code to check the checksum.
Guy Harris [Sat, 6 Jan 2001 05:43:13 +0000 (05:43 -0000)]
Tvbuffify the VRRP dissector, and add code to check the checksum.

svn path=/trunk/; revision=2836

23 years agoSet "pinfo->current_proto".
Guy Harris [Sat, 6 Jan 2001 05:11:32 +0000 (05:11 -0000)]
Set "pinfo->current_proto".

svn path=/trunk/; revision=2835

23 years agoTvbuffify the MPLS dissector.
Guy Harris [Sat, 6 Jan 2001 05:09:35 +0000 (05:09 -0000)]
Tvbuffify the MPLS dissector.

svn path=/trunk/; revision=2834

23 years agoTvbuffify the LPD dissector.
Guy Harris [Sat, 6 Jan 2001 00:02:41 +0000 (00:02 -0000)]
Tvbuffify the LPD dissector.

Use "tvb_format_text()" to display the printer and options in a request,
so that it doesn't have problems with non-printable characters - or if
we incorrectly decide that a packet is a request merely because it
happens to have what appears to be a valid request code as the first
byte.

svn path=/trunk/; revision=2833

23 years agoMap the old MGCP preference names to the new ones (including a special
Guy Harris [Fri, 5 Jan 2001 22:45:26 +0000 (22:45 -0000)]
Map the old MGCP preference names to the new ones (including a special
hack to handle the two copies of "mgcp.{tcp,udp}.port" as best we can).

svn path=/trunk/; revision=2832

23 years agoUse "%u", not "%d", to print unsigned quantities.
Guy Harris [Fri, 5 Jan 2001 20:46:44 +0000 (20:46 -0000)]
Use "%u", not "%d", to print unsigned quantities.

Show the flags in hex, not decimal.

Nobody calls the LanBridge BPDU dissector directly through a handle, so
there's no need to register it.

svn path=/trunk/; revision=2831

23 years agoIP Prefix field support in CDP, from Paul Ionescu.
Guy Harris [Fri, 5 Jan 2001 19:14:05 +0000 (19:14 -0000)]
IP Prefix field support in CDP, from Paul Ionescu.

svn path=/trunk/; revision=2830

23 years agoX.25-over-LLC support, from Paul Ionescu.
Guy Harris [Fri, 5 Jan 2001 19:07:38 +0000 (19:07 -0000)]
X.25-over-LLC support, from Paul Ionescu.

svn path=/trunk/; revision=2829

23 years agoDEC LANBridge Spanning Tree Protocol support, from Paul Ionescu.
Guy Harris [Fri, 5 Jan 2001 19:00:37 +0000 (19:00 -0000)]
DEC LANBridge Spanning Tree Protocol support, from Paul Ionescu.

Put "packet-lapbether.c" into "Makefile.nmake".

svn path=/trunk/; revision=2828

23 years agoClear the Info column before fetching anything from the packet, so that
Guy Harris [Fri, 5 Jan 2001 08:59:16 +0000 (08:59 -0000)]
Clear the Info column before fetching anything from the packet, so that
if we throw an exception, the stuff from the Token-Ring protocol isn't
still there.

svn path=/trunk/; revision=2827

23 years agoClear the Info column before fetching anything from the packet, so that
Guy Harris [Fri, 5 Jan 2001 08:43:30 +0000 (08:43 -0000)]
Clear the Info column before fetching anything from the packet, so that
if we throw an exception, the stuff from the protocol atop which LLC
runs isn't still there.

svn path=/trunk/; revision=2826

23 years agoSet "pinfo->current_proto" once we've decided it's an H1 packet.
Guy Harris [Fri, 5 Jan 2001 08:34:35 +0000 (08:34 -0000)]
Set "pinfo->current_proto" once we've decided it's an H1 packet.

Fix the indentation.

svn path=/trunk/; revision=2825

23 years agoDoesn't need #include "dfilter.h"
Gilbert Ramirez [Thu, 4 Jan 2001 04:56:20 +0000 (04:56 -0000)]
Doesn't need #include "dfilter.h"

svn path=/trunk/; revision=2824

23 years agoDoesn't need #include "dfilter.h"
Gilbert Ramirez [Thu, 4 Jan 2001 04:44:02 +0000 (04:44 -0000)]
Doesn't need #include "dfilter.h"

svn path=/trunk/; revision=2823

23 years agoMake the PPP-over-Ethernet discovery and session protocols registered
Guy Harris [Thu, 4 Jan 2001 04:15:30 +0000 (04:15 -0000)]
Make the PPP-over-Ethernet discovery and session protocols registered
protocols.

svn path=/trunk/; revision=2822

23 years agoDon't define "promisc_mode" if we weren't built with libpcap support.
Guy Harris [Thu, 4 Jan 2001 00:16:43 +0000 (00:16 -0000)]
Don't define "promisc_mode" if we weren't built with libpcap support.

svn path=/trunk/; revision=2821

23 years ago- replace x25 with x.25 in all protocol fields
Olivier Abad [Wed, 3 Jan 2001 23:30:50 +0000 (23:30 -0000)]
- replace x25 with x.25 in all protocol fields
- displays the GFI (the a/q/d bits and modulo are displayed in a subtree of
  the GFI)
- correctly dissect the first bit of the GFI : Address bit in call set-up
  and clearing packets, Qualifier bit in data packets.

svn path=/trunk/; revision=2820

23 years agoTvbuffify the BOOTP/DHCP dissector.
Guy Harris [Wed, 3 Jan 2001 22:49:06 +0000 (22:49 -0000)]
Tvbuffify the BOOTP/DHCP dissector.

svn path=/trunk/; revision=2819

23 years ago"hf_sna_rh_csi" is now an FT_UINT8 field, so add it with
Guy Harris [Wed, 3 Jan 2001 21:52:40 +0000 (21:52 -0000)]
"hf_sna_rh_csi" is now an FT_UINT8 field, so add it with
"proto_tree_add_uint()", not "proto_tree_add_boolean()".

svn path=/trunk/; revision=2818

23 years agoEnsure that all value_string arrays end in {0, NULL}. Dissectors got away
Gilbert Ramirez [Wed, 3 Jan 2001 16:41:08 +0000 (16:41 -0000)]
Ensure that all value_string arrays end in {0, NULL}. Dissectors got away
with not terminating their arrays because they knew the limits of the
value used to look up strings in the value_string array, but the
dfilter_expr_dlg does not know these limits and must rely on the terminating
{0, NULL} record.

Also, in SNA fixed a bug in which a field should have been defined as FT_UINT8
but was defined as FT_BOOLEAN.

In WTP, fixed a value string which had duplicate keys.

svn path=/trunk/; revision=2817

23 years agoHave the TR MAC and LLC dissectors register themselves, make them
Guy Harris [Wed, 3 Jan 2001 10:34:42 +0000 (10:34 -0000)]
Have the TR MAC and LLC dissectors register themselves, make them
static, and have other dissectors call them through handles.

svn path=/trunk/; revision=2816

23 years agoRegister the WSP dissector, make it static, and have the WTP dissector
Guy Harris [Wed, 3 Jan 2001 08:42:48 +0000 (08:42 -0000)]
Register the WSP dissector, make it static, and have the WTP dissector
call it through a handle.

svn path=/trunk/; revision=2815

23 years agoMake the Zebra dissector, and a routine it uses, static, as they're not
Guy Harris [Wed, 3 Jan 2001 08:26:40 +0000 (08:26 -0000)]
Make the Zebra dissector, and a routine it uses, static, as they're not
called directly from outside "packet-zebra.c".

svn path=/trunk/; revision=2814

23 years agoUpdate the README.developer file to reflect the recent changes to
Guy Harris [Wed, 3 Jan 2001 08:00:01 +0000 (08:00 -0000)]
Update the README.developer file to reflect the recent changes to
"proto_register_protocol()" and the addition of
"prefs_register_module()".

svn path=/trunk/; revision=2813

23 years agoAdd a new "prefs_register_protocol()" routine, which is like
Guy Harris [Wed, 3 Jan 2001 07:53:48 +0000 (07:53 -0000)]
Add a new "prefs_register_protocol()" routine, which is like
"prefs_register_module()" except that it takes a protocol index as
returned by "proto_register_protocol()" as its first argument, rather
than taking two character strings as arguments as its first two
arguments, and uses the protocol's abbreviation as the name to use for
preferences in the preferences file and the "-o" flag and uses the
protocol's short name as the name to use in the tabs in the
"Edit->Preferences" window.

svn path=/trunk/; revision=2812

23 years agoHave "proto_register_protocol()" build a list of data structures for
Guy Harris [Wed, 3 Jan 2001 07:37:29 +0000 (07:37 -0000)]
Have "proto_register_protocol()" build a list of data structures for
protocols, in addition to adding structures to the list of filterable
fields.  Give it an extra argument that specifies a "short name" for the
protocol, for use in such places as

pinfo->current_proto;

the dialog box for constructing filters;

the preferences tab for the protocol;

and so on (although we're not yet using it in all those places).

Make the preference name that appears in the preferences file and the
command line for the DIAMETER protocol "diameter", not "Diameter"; the
convention is that the name in question be all-lower-case.

Make some routines and variables that aren't exported static.

Update a comment in the ICP dissector to make it clear that the
dissector won't see fragments other than the first fragment of a
fragmented datagram.

svn path=/trunk/; revision=2811

23 years agoHave "proto_register_protocol()" build a list of data structures for
Guy Harris [Wed, 3 Jan 2001 06:56:03 +0000 (06:56 -0000)]
Have "proto_register_protocol()" build a list of data structures for
protocols, in addition to adding structures to the list of filterable
fields.  Give it an extra argument that specifies a "short name" for the
protocol, for use in such places as

pinfo->current_proto;

the dialog box for constructing filters;

the preferences tab for the protocol;

and so on (although we're not yet using it in all those places).

Make the preference name that appears in the preferences file and the
command line for the DIAMETER protocol "diameter", not "Diameter"; the
convention is that the name in question be all-lower-case.

Make some routines and variables that aren't exported static.

Update a comment in the ICP dissector to make it clear that the
dissector won't see fragments other than the first fragment of a
fragmented datagram.

svn path=/trunk/; revision=2810

23 years agoFix a damn stupid mistake that stopped us seeing all the bits in the flags on a NetSe...
Richard Sharpe [Wed, 3 Jan 2001 04:37:07 +0000 (04:37 -0000)]
Fix a damn stupid mistake that stopped us seeing all the bits in the flags on a NetServerEnum2 request.

svn path=/trunk/; revision=2809

23 years agoSupport for HTTP methods added by GENA (the uPnP protocol), and for the
Guy Harris [Wed, 3 Jan 2001 03:40:29 +0000 (03:40 -0000)]
Support for HTTP methods added by GENA (the uPnP protocol), and for the
HTTP-based SSDP protocol, from David Hampton.

svn path=/trunk/; revision=2808

23 years agoBase the decision of whether selecting an entry in the value list sets
Guy Harris [Tue, 2 Jan 2001 19:54:50 +0000 (19:54 -0000)]
Base the decision of whether selecting an entry in the value list sets
the value entry on the type of the field, not on whether the value entry
is visible; the value entry is hidden, in "field_select_row_cb()", after
"build_boolean_values()" is called, and building the list in
"build_boolean_values()" will cause an entry in that list to be
selected, and "value_list_sel_cb()" will be called as a result, so it
can't correctly base its decision on whether to set the value entry on
whether the entry is visible, as it's not yet been made invisible.

Fix a comment.

svn path=/trunk/; revision=2807

23 years agoDon't show "Text" as one of the available fields.
Guy Harris [Tue, 2 Jan 2001 19:38:20 +0000 (19:38 -0000)]
Don't show "Text" as one of the available fields.

svn path=/trunk/; revision=2806

23 years agoAdd a dialog box for constructing expressions that test a field in the
Guy Harris [Tue, 2 Jan 2001 01:32:21 +0000 (01:32 -0000)]
Add a dialog box for constructing expressions that test a field in the
display tree, based on Jeff Foster's dialog box for selecting fields.

Make the dialog box for browsing filters into a dialog box for
constructing filters; make the "Apply" button and the "OK" button apply
the filter in the text entry box in the dialog, not the currently
selected filter (selecting a filter puts it in that text entry box, but
the user may edit it afterwards, or may use the aforementioned dialog
box to construct a filter not in the list).

Get rid of extra declarations of "m_r_font" and "m_b_font" in
"proto_draw.c"; they're declared in "gtk/gtkglobals.h", which it includes.

svn path=/trunk/; revision=2805

23 years agoA small fix to ensure that all servers/workgroups show up ... Last one
Richard Sharpe [Mon, 1 Jan 2001 01:44:46 +0000 (01:44 -0000)]
A small fix to ensure that all servers/workgroups show up ... Last one
was not being picked up ...

Will have to add proper state keeping code soon ...

svn path=/trunk/; revision=2804

23 years agounderstand TCP MD5 signature. Greg Hankins <gregh@twoguys.org>
Jun-ichiro itojun Hagino [Sat, 30 Dec 2000 05:23:56 +0000 (05:23 -0000)]
understand TCP MD5 signature.  Greg Hankins <gregh@twoguys.org>

svn path=/trunk/; revision=2803

23 years agoTvbuffify the MAPI dissector.
Guy Harris [Fri, 29 Dec 2000 05:15:37 +0000 (05:15 -0000)]
Tvbuffify the MAPI dissector.

svn path=/trunk/; revision=2802

23 years agoFix up some calls in which I didn't replace "NullTVB" with "tvb".
Guy Harris [Fri, 29 Dec 2000 04:41:30 +0000 (04:41 -0000)]
Fix up some calls in which I didn't replace "NullTVB" with "tvb".

svn path=/trunk/; revision=2801

23 years agoIf we get an exception when dissecting a packet, append "[Short Frame]"
Guy Harris [Fri, 29 Dec 2000 04:16:57 +0000 (04:16 -0000)]
If we get an exception when dissecting a packet, append "[Short Frame]"
or "[Malformed Frame]" to the Info column.

Make some dissectors set the Protocol column and clear the Info column
before fetching anything from the tvbuff they were handed, so that if
the frame is short or malformed, it'll be marked as being the right
top-level protocol, and the Info column won't have cruft left over from
the previous protocol.

svn path=/trunk/; revision=2800

23 years ago"dissect_lapb()" is static to "packet-lapb.c", so it can't be directly
Guy Harris [Fri, 29 Dec 2000 02:27:21 +0000 (02:27 -0000)]
"dissect_lapb()" is static to "packet-lapb.c", so it can't be directly
called by "dissect_lapbether()".  "packet-lapbether.c" included
"packet-lapb.h", to get "dissect_lapb()" declared, but that header file
doesn't exist.

Dissectors should call other dissectors indirectly, so have the LAPB
dissector register itself and have the LAPB-over-Ethernet dissector get
that handle and call the LAPB dissector through that handle, rather than
making the LAPB dissector non-static and adding a "packet-lapb.h" header
to declare it.

Remove some unnecessary includes from "packet-lapbether.c".

svn path=/trunk/; revision=2799

23 years agoTvbuffify the IMAP dissector.
Guy Harris [Fri, 29 Dec 2000 02:19:14 +0000 (02:19 -0000)]
Tvbuffify the IMAP dissector.

svn path=/trunk/; revision=2798

23 years agoModify X.25 dissector to accept a search string of x.25 and ex.25, not x25 and ex25.
Richard Sharpe [Fri, 29 Dec 2000 01:27:35 +0000 (01:27 -0000)]
Modify X.25 dissector to accept a search string of x.25 and ex.25, not x25 and ex25.

svn path=/trunk/; revision=2797

23 years agoAdded a LAPBETHER dissector as per Guy's wishes ... :-)
Richard Sharpe [Fri, 29 Dec 2000 01:06:24 +0000 (01:06 -0000)]
Added a LAPBETHER dissector as per Guy's wishes ... :-)

Damn, took more than half an hour :-(

svn path=/trunk/; revision=2796

23 years agoWhen creating a subset tvbuff with lengths that don't run to the end of
Guy Harris [Fri, 29 Dec 2000 00:51:52 +0000 (00:51 -0000)]
When creating a subset tvbuff with lengths that don't run to the end of
the parent tvbuff, we have to set "pinfo->len" and "pinfo->captured_len"
unless we know for certain that *no* old-style dissectors will be called
later, because old-style dissectors get their length information from
"pi.len" and "pi.captured_len".

svn path=/trunk/; revision=2795

23 years agoTvbuffify the PPTP dissector.
Guy Harris [Fri, 29 Dec 2000 00:35:51 +0000 (00:35 -0000)]
Tvbuffify the PPTP dissector.

svn path=/trunk/; revision=2794

23 years agoUpdates from Ed Warnicke.
Guy Harris [Thu, 28 Dec 2000 10:10:17 +0000 (10:10 -0000)]
Updates from Ed Warnicke.

svn path=/trunk/; revision=2793

23 years agoTvbuffify the CDP, CGMP, ISL, and VTP dissectors.
Guy Harris [Thu, 28 Dec 2000 09:49:09 +0000 (09:49 -0000)]
Tvbuffify the CDP, CGMP, ISL, and VTP dissectors.

Add a new subdissector table in the LLC dissector for protocol IDs with
a Cisco OUI, and register the CDP, CGMP, and VTMP dissectors in that
table, rather than calling them via a switch statement.

Register the ISL dissector by name, and have the Ethernet dissector call
it via a handle.

Fix the handling of the checksum field in the CDP dissector.

The strings in CDP are counted, not null-terminated; treat them as such.

Fix the handling of the encapsulated frame CRC, and the encapsulated
frame, in the ISL dissector, at least for Ethernet frames; it may not be
correct for encapsulated Token Ring frames.

svn path=/trunk/; revision=2792

23 years ago>This patch adds a missing capabilities NOTIFICATION message, and support for
Jun-ichiro itojun Hagino [Thu, 28 Dec 2000 05:13:14 +0000 (05:13 -0000)]
>This patch adds a missing capabilities NOTIFICATION message, and support for
>RFC2385 (Protection of BGP Sessions via the TCP MD5 Signature Option).
From: Greg Hankins <gregh@twoguys.org>

svn path=/trunk/; revision=2791

23 years agoIt turns out that the read timeout in Solaris's "bufmod" STREAMS module
Guy Harris [Thu, 28 Dec 2000 01:44:19 +0000 (01:44 -0000)]
It turns out that the read timeout in Solaris's "bufmod" STREAMS module
doesn't work like the read timeout in BPF - the timer doesn't start
until at least one packet has arrived.

I think that's the way read timeouts should work on *all* packet capture
mechanisms, but it does mean that Solaris will, on a quiet net, exhibit
the same symptoms that Linux used to exhibit before we put in a
"select()" call to wait until either packets arrive or a timer expires -
the "pcap_dispatch()" call blocks until a packet arrives, so the display
doesn't get updated and Ethereal doesn't respond to user input until a
packet arrives.

Furthermore, Linux isn't the only OS that lacks any read timeout
on its packet capture mechanism; the others will also have that problem.

We therefore do the "select()" on *all* platforms other than the BSDs
(where the timer starts when the read is done, and can be used for
polling); I don't know whether it's necessary on Digital UNIX, but I
suspect it's necessary on SunOS 4.x (as the 5.x "bufmod" is probably
derived from the 4.x one, and the 5.x one, as per the above, starts the
timer when a packet arrives), and it may even be necessary on 3.x, those
(BSD, SunOS including 5.x, and Digital UNIX) apparently being the only
UNIXes that appear to have such a read timeout.

svn path=/trunk/; revision=2790

23 years agoAlways put the packet type in the Info column.
Guy Harris [Thu, 28 Dec 2000 00:44:49 +0000 (00:44 -0000)]
Always put the packet type in the Info column.

svn path=/trunk/; revision=2789

23 years agoIf the capture child process exits unexpectedly, give more information
Guy Harris [Wed, 27 Dec 2000 22:35:48 +0000 (22:35 -0000)]
If the capture child process exits unexpectedly, give more information
on it, such as the exit status if it exited "normally" but unexpectedly.

On UNIX systems, #define the various POSIX <sys/wait.h> macros (and the
non-POSIX WCOREDUMP()" macro) if they're not defined by <sys/wait.h> (or
if we don't have <sys/wait.h>), and use them to dissect the exit status.

svn path=/trunk/; revision=2788

23 years agoTvbuffify the RIP and OSPF dissectors.
Guy Harris [Wed, 27 Dec 2000 12:48:27 +0000 (12:48 -0000)]
Tvbuffify the RIP and OSPF dissectors.

Change them to use facilities in Ethereal that were probably not present
when they were originally written, e.g. routines to fetch 24-bit
integers and to dump a bunch of raw bytes in hex.

Redo them to extract data from the packet as they dissect it, rather
than extracting an entire data structure at once; that way, it may be
able to dissect a structure not all of which is in the packet.

Dissect a bit more of the type-of-service metrics etc. in OSPF packets.

Make "tvb_length_remaining()" return a "gint", not a "guint"; it returns
-1 if the offset is past the end of the tvbuff.

Add a "tvb_reported_length_remaining()" routine, similar to
"tvb_length_remaining()".  Use it instead of just subtracting an offset
from "tvb_reported_length()".

svn path=/trunk/; revision=2787

23 years agoGet rid of extra blanks in strings.
Guy Harris [Wed, 27 Dec 2000 12:38:08 +0000 (12:38 -0000)]
Get rid of extra blanks in strings.

"tvb_length_remaining()" will return -1 if the offset argument is past
the end of the tvbuff; check for values > 0, not values != 0, when
checking to see if there's extra garbage at the end of the packet.

svn path=/trunk/; revision=2786

23 years agoadded KRB-ERROR response dissection
Nathan Neulinger [Tue, 26 Dec 2000 16:44:43 +0000 (16:44 -0000)]
added KRB-ERROR response dissection

svn path=/trunk/; revision=2785

23 years agoadd tethereal_static
Nathan Neulinger [Tue, 26 Dec 2000 16:44:16 +0000 (16:44 -0000)]
add tethereal_static

svn path=/trunk/; revision=2784

23 years agoAdd a new "tvb_strsize()" routine, which finds the size of a
Guy Harris [Mon, 25 Dec 2000 23:48:16 +0000 (23:48 -0000)]
Add a new "tvb_strsize()" routine, which finds the size of a
NUL-terminated string, starting at a given offset.  The size includes
the terminating NUL.  If it doesn't find the terminating NUL, it throws
the appropriate exception, as either there's no terminating NUL in the
packet or there is but it's past the end of the captured data in the
packet.

Use that routine in the TFTP dissector.  As it throws an exception if
the string isn't NUL-terminated, we can just use "%s" to print option
strings; we don't need to use "%.*s" with a string length.

svn path=/trunk/; revision=2783

23 years agoPreferences shouldn't supposed to have blanks in their names - it can
Guy Harris [Mon, 25 Dec 2000 09:37:35 +0000 (09:37 -0000)]
Preferences shouldn't supposed to have blanks in their names - it can
make it a bit of a pain to set their values on the command line (you
have to quote the name).  Use underscores instead.

Give the gateway and callagent port preferences different names.

Fix up the text descriptions and labels for those preferences.

svn path=/trunk/; revision=2782

23 years agoIf a PrincipalName has at least one name-string, put the first of the
Guy Harris [Mon, 25 Dec 2000 06:59:33 +0000 (06:59 -0000)]
If a PrincipalName has at least one name-string, put the first of the
name strings into the top-level tree item for the PrincipalName, along
the lines of what was done earlier.

svn path=/trunk/; revision=2781

23 years agobgp route refresh/MP capability option.
Jun-ichiro itojun Hagino [Mon, 25 Dec 2000 05:28:40 +0000 (05:28 -0000)]
bgp route refresh/MP capability option.
Greg Hankins <gregh@twoguys.org>

svn path=/trunk/; revision=2780

23 years agoAdded kerberos name types and lookup in PrincName dissect
Nathan Neulinger [Sun, 24 Dec 2000 22:00:55 +0000 (22:00 -0000)]
Added kerberos name types and lookup in PrincName dissect
Cipher: to CipherText:
ETYPE to ENCTYPE to agree with krb5 headers
Added additional preauth types

svn path=/trunk/; revision=2779

23 years agoAdd a "tftp_strnlen()" routine that
Guy Harris [Sun, 24 Dec 2000 20:33:04 +0000 (20:33 -0000)]
Add a "tftp_strnlen()" routine that

1) checks to make sure that the terminating '\0' is found in the
   string, and throws a BoundsError exception if it isn't (TFTP
   packets should fit in a single frame, so if the '\0' isn't
   found, that's an error);

2) adds 1 to the length to include the trailing '\0';

and use it to find all string lengths, so that we properly handle short
or malformed frames.

svn path=/trunk/; revision=2778

23 years agoRename "asn1_octet_string_value_decode()" to
Guy Harris [Sun, 24 Dec 2000 09:10:12 +0000 (09:10 -0000)]
Rename "asn1_octet_string_value_decode()" to
"asn1_string_value_decode()", as it can be used for various character
string types as well.

Turn "asn1_octet_string_decode()" into "asn1_string_decode()", which
takes an additional argument giving the tag expected for the string in
question, and make "asn1_octet_string_decode()" a wrapper around it.

Clean up the ASN.1 dissection in the Kerberos dissector, making more use
of the code in "asn1.c", wrapping more operations up in macros, and
doing some more type checking.

Use "REP" rather than "RESP" in names and strings; "REP" is what the
Kerberos spec uses.

Make the routines in the Kerberos dissector not used outside that
dissector static.

Fix some problems with the dissection of strings in the Kerberos
dissector (it was extracting the data from the wrong place in the
packet).

In Kerberos V5, the "kvno" item in the EncryptedData type is optional;
treat it as such.

Treat integers as unsigned in the Kerberos dissector.

svn path=/trunk/; revision=2777

23 years agoReport the holding time of a CLNP packet, in seconds, as seconds plus
Guy Harris [Sat, 23 Dec 2000 23:06:50 +0000 (23:06 -0000)]
Report the holding time of a CLNP packet, in seconds, as seconds plus
fractions of a second (the resolution is 1/2 second).

In the bitfield breakdown of the flags/type field of a CLNP PDU, report
the PDU type as a name rather than as an abbreviation.

svn path=/trunk/; revision=2776

23 years agoShow the type/flags byte of a CLNP PDU with a subtree dissecting the
Guy Harris [Sat, 23 Dec 2000 21:40:22 +0000 (21:40 -0000)]
Show the type/flags byte of a CLNP PDU with a subtree dissecting the
bits.

svn path=/trunk/; revision=2775

23 years agoOn Linux, try to open the "any" device and, if we can open it, add it to
Guy Harris [Sat, 23 Dec 2000 19:50:36 +0000 (19:50 -0000)]
On Linux, try to open the "any" device and, if we can open it, add it to
the end of the list of interfaces on which you can capture.

svn path=/trunk/; revision=2774

23 years agoDissect the payload of a CLNP ER packet as a CLNP packet, so you know
Guy Harris [Sat, 23 Dec 2000 19:34:46 +0000 (19:34 -0000)]
Dissect the payload of a CLNP ER packet as a CLNP packet, so you know
what the offending packet was.

svn path=/trunk/; revision=2773

23 years agoAdd support for the DLT_LINUX_SLL capture type in the current CVS
Guy Harris [Sat, 23 Dec 2000 08:06:16 +0000 (08:06 -0000)]
Add support for the DLT_LINUX_SLL capture type in the current CVS
version of libpcap; that's used on Linux for captures on the "any"
device (which captures from all interfaces simultaneously) and for
captures on devices whose link-layer type libpcap doesn't (yet) support
natively.

The spanning tree code, when checking for GV{M,R,...}P packets, must
first check whether the link-layer destination address is, in fact, an
Ethernet-style address; on Linux cooked captures, there *is* no
destination address, so it's of type AT_NONE, not AT_ETHER.

svn path=/trunk/; revision=2772

23 years agofix '#endif FRED' to '#endif /* FRED */'
Nathan Neulinger [Fri, 22 Dec 2000 22:26:19 +0000 (22:26 -0000)]
fix '#endif FRED' to '#endif /* FRED */'

svn path=/trunk/; revision=2771

23 years agoadded a couple of msg types - in particular - ERROR response
Nathan Neulinger [Fri, 22 Dec 2000 21:43:53 +0000 (21:43 -0000)]
added a couple of msg types - in particular - ERROR response

svn path=/trunk/; revision=2770

23 years agoadded tethereal_static target
Nathan Neulinger [Fri, 22 Dec 2000 15:55:36 +0000 (15:55 -0000)]
added tethereal_static target

svn path=/trunk/; revision=2769

23 years agoEnable FT_BYTES dfiltering, from Ed Warnicke.
Gilbert Ramirez [Fri, 22 Dec 2000 12:05:38 +0000 (12:05 -0000)]
Enable FT_BYTES dfiltering, from Ed Warnicke.

svn path=/trunk/; revision=2768

23 years agoBug fixes from Ed Warnicke.
Gilbert Ramirez [Wed, 20 Dec 2000 05:45:27 +0000 (05:45 -0000)]
Bug fixes from Ed Warnicke.

svn path=/trunk/; revision=2767

23 years agoCall CHECK_DISPLAY_AS_DATA() for proto_ftp_data as well.
Gilbert Ramirez [Tue, 19 Dec 2000 02:57:49 +0000 (02:57 -0000)]
Call CHECK_DISPLAY_AS_DATA() for proto_ftp_data as well.

svn path=/trunk/; revision=2766

23 years agoX.25 over TCP support, from Paul Ionescu.
Guy Harris [Sun, 17 Dec 2000 07:38:14 +0000 (07:38 -0000)]
X.25 over TCP support, from Paul Ionescu.

Also, update his e-mail address.

svn path=/trunk/; revision=2765

23 years agoPatches to prevent problems under Windows when time formats are negative.
Richard Sharpe [Sun, 17 Dec 2000 03:48:44 +0000 (03:48 -0000)]
Patches to prevent problems under Windows when time formats are negative.

Make sure that if _gtime is null, a bad format message returned.

Also noticed that I am going to have to do something about Unicode strings soon and the SMBopenX dissect is slightly wrong ... Oh well, it is the Xmas break soon :-) No rest for the Wicca'd (please don't interpret that as a statement of my religious affiliation, it is just a cute saying :-)

svn path=/trunk/; revision=2764

23 years agoMatch Selected works better with FT_STRING variables.
Gilbert Ramirez [Fri, 15 Dec 2000 13:53:11 +0000 (13:53 -0000)]
Match Selected works better with FT_STRING variables.
From Ed Warnicke <hagbard@physics.rutgers.edu>

svn path=/trunk/; revision=2763

23 years agoAdd the relative time to the frame tree, at the request of Manfred Young.
Gerald Combs [Fri, 15 Dec 2000 03:30:21 +0000 (03:30 -0000)]
Add the relative time to the frame tree, at the request of Manfred Young.

svn path=/trunk/; revision=2762

23 years agoCheck the checksum on GRE packets, if possible and if the Checksum
Guy Harris [Fri, 15 Dec 2000 00:03:09 +0000 (00:03 -0000)]
Check the checksum on GRE packets, if possible and if the Checksum
Present flag is set.

svn path=/trunk/; revision=2761

23 years agoCheck the checksum on OSPF packets, if possible.
Guy Harris [Thu, 14 Dec 2000 22:23:15 +0000 (22:23 -0000)]
Check the checksum on OSPF packets, if possible.

svn path=/trunk/; revision=2760

23 years agoCheck the checksum on ICMPv6 packets, if possible.
Guy Harris [Thu, 14 Dec 2000 21:45:12 +0000 (21:45 -0000)]
Check the checksum on ICMPv6 packets, if possible.

svn path=/trunk/; revision=2759

23 years agoFix a typo in a comment.
Guy Harris [Thu, 14 Dec 2000 21:44:01 +0000 (21:44 -0000)]
Fix a typo in a comment.

svn path=/trunk/; revision=2758