aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet.c
AgeCommit message (Collapse)AuthorFilesLines
2007-09-19call_dissector() provides generic 'data' handler for unrecognized data ↵Mike Duigou1-1/+1
types. call_dissector_only() fails gracefully for unrecognized types. The handler for generic 'data' should avoid the variant that potentially could result in recursively calling itself. svn path=/trunk/; revision=22907
2007-08-08don't use NULL to initialise an integerUlf Lamping1-2/+2
svn path=/trunk/; revision=22474
2007-08-08add pinfo fields clnp_srcref and clnp_dstref to the clnp dissector, similar ↵Ulf Lamping1-0/+2
to the srcport / destport already existing. As simply using srcport / destport for this will confuse mixed protocol usage (like RFC1006 ISOonTCP), I've added explicit clnp fields. This way, protocols on top of COTP / CLNP have at least a chance to do reassembling correct. svn path=/trunk/; revision=22473
2007-08-07from: Mike DuigouLuis Ontanon1-0/+31
Adds a heur_dissector_delete() function to allow heuristic dissectors to be dynamically disabled based upon, for example, preference settings. http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1697 svn path=/trunk/; revision=22463
2007-08-03- add PDInterfaceFSUDataAdjust blockUlf Lamping1-0/+1
- start to implement an AR conversation handler svn path=/trunk/; revision=22444
2007-05-29From David Howells :Sebastien Tandel1-1/+1
Fix compilation failures when building wireshark-0.99.6-SVN-21916 on an x86_64-unknown-linux-gnu target with gcc version 4.1.2 20070403 (Red Hat 4.1.2-8). The failures fall into two categories: (1) Casts between pointers and 32-bit integers without an intermediary cast via 'long' or 'unsigned long'. This results in a compiler warning complaining about casts between a pointer and an integer of a different size. (2) Passing values to "%lld" or similar printf-style format options that the compiler thinks are a different size. Such values need to be cast to 'long long' or 'unsigned long long'. svn path=/trunk/; revision=21975
2007-04-23Dissector table names should be pointed to by const pointers.Guy Harris1-2/+3
svn path=/trunk/; revision=21533
2007-04-23Add some GCC warnings to the standard set, and add some others to theGuy Harris1-3/+3
--enable-extra-gcc-checks set. If we turn on -pedantic, try turning on -Wno-long-long as well, so that it's not *so* pedantic that it rejects the 64-bit integral data types that we explicitly require. Constify a bunch of stuff, and make some other changes, to get rid of warnings. Clean up some indentation. svn path=/trunk/; revision=21526
2007-04-03epan/dissectors/Makefile is now building four libraries :Sebastien Tandel1-2/+3
- asn dissectors : libasndissectors.la - pidl dissectors : libpidldissectors.la - normal dissectors : libdissectors.la *and* libcleandissectors.la. I separated it in two libraries temporarily. The source files used to build libcleandissectors.la do not generate warning anymore and the -Werror is used to compile them. If we patch a dissector and it doesn't generate warning anymore, we have to move the filename dissector from DISSECTOR_SRC to CLEAN_DISSECTOR_SRC in epan/dissectors/Makefile.common. If you want to define specific cflags for one library type, let's say pidl, you may define libpidldissectors_la_CFLAGS. svn path=/trunk/; revision=21324
2007-03-21packet_info.c and packet.cLuis Ontanon1-3/+4
add sccp_info to struct _packet_info (Sorry but the way private_data works and the fact that TCAP uses it and BSSAP/RANAP can be tunnelled on GSMMAP over TCAP makes it impossible to avoid) SCCP - Have SCCP to have a TAP, - Fix associations so that every message belongs to the association. - Export message type values so that they can be used by a tap listener RANAP - Have RANAP information attached to the sccp_info BSSAP + GSM_A - Have DTAP, BSSMAP and BSSAP info attached to the sccp_info svn path=/trunk/; revision=21076
2007-02-21add a field in pinfo where dcerpc/pidl can store the name of the current ↵Ronnie Sahlberg1-0/+1
dcerpc procedure use this field in the policy handle helper to indicate not only which frames the handle was opened/close in but also the name of the function that opened it. eventually, when other pidl support infrastructure is developed it would be nice if this could be expanded to also contain the name of the object/handle opened. svn path=/trunk/; revision=20895
2007-01-15instead of simply doing an assert when running out of memory in emem, throw ↵Ulf Lamping1-0/+6
a new OutOfMemoryError Exception, so file.c can show at least a better explanation to the user before Wireshark terminates XXX - to prevent a busy wait, I need a portable way to wait for a short time period, like Sleep() for Windows svn path=/trunk/; revision=20437
2007-01-10Extending true_false_string supportJaap Keuter1-6/+1
- Separate tfs.[ch] - Add larger sample collection - Properly export DATA svn path=/trunk/; revision=20373
2006-10-22add a tcp_tree field to packet_info so that we can access the tree from ↵Ronnie Sahlberg1-0/+1
tcp_dissect_pdus() (and others if need be) in tcp_dissect_pdus() add a field ( tcp.pdu.size ) to the tree that displays the pdu size. svn path=/trunk/; revision=19655
2006-10-17we need a new pinfo member field so that we can pass data from the core usb ↵Ronnie Sahlberg1-0/+1
dissector to future class dissectors svn path=/trunk/; revision=19576
2006-08-31move value_strings from expert_dialogs into expert.c to remove duplicatesUlf Lamping1-1/+5
keep the highest severity level of the current file (experimental) svn path=/trunk/; revision=19104
2006-08-10Neil Piercy:Jörg Mayer1-0/+1
I've just had a bug in one of our private dissectors which meant that the handle passed to call_dissector was null. This seemed to give varying behavior - on some Windows installations it hit wireshark's in-built exception handling, and displayed that the dissector had an error (correct), but on some installations it just crashed wireshark (not helpful). I _think_ the difference was whether MSVC was installed or not, but on a sample of only 3 machines. Should call_dissector include explicit null handle checks, and if so, should it:- a) g_assert - the simple patch attached b) fallback to doing a data decode (as disabled protocols do) c) try to invoke the wireshark exception handling for the packet Or is the correct answer none of the above - the exception handler should already cope ? svn path=/trunk/; revision=18869
2006-06-29add various enhancements to the CBA-ACCO dissector, including an added ↵Ulf Lamping1-0/+1
profinet_type field to the packet_info struct svn path=/trunk/; revision=18615
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-03-16fix some typos in a commentUlf Lamping1-2/+2
svn path=/trunk/; revision=17653
2006-03-07Initialize a return value. Found by Coverity.Gerald Combs1-4/+4
Fix up whitespace. svn path=/trunk/; revision=17499
2006-03-07Fix a possible NULL pointer dereference discovered by coverity.Lars Roland1-10/+10
I'm not sure, if it is possible to get a NULL pointer here, but it is safer to fix it. svn path=/trunk/; revision=17494
2006-01-24fix a typoLuis Ontanon1-1/+1
svn path=/trunk/; revision=17090
2006-01-24Add register_postdissector() to the API.Luis Ontanon1-0/+20
Dissectors registered with register_postdissector() will be called after all other dissectors have been called. Use it to register mate. svn path=/trunk/; revision=17089
2005-10-03From Jeff Snyder:Anders Broman1-0/+4
04-stream.diff A simplified packet reassembly API built on top of fragment_add_seq_next for reassembling fragments that are delivered in-order, where fragments are identified by a framenum and an offset into that frame. Streams are attached to a conversation or a circuit and are unidirectional. svn path=/trunk/; revision=16082
2005-09-11Replace tvb_memcpy() calls that extract IPv4 addresses into a guint32,Guy Harris1-1/+0
and that extract IPv6 addresses into a "struct e_in6_addr", with tvb_get_ipv4() and tvb_get_ipv6() calls - except for some that we remove, by using proto_tree_add_item(), rather than replacing. Have epan/tvbuff.h include epan/ipv6-utils.h, to define "struct e_in6_addr" (not necessary to declare the tvbuff routines, but including it there means "struct e_in6_addr" is guaranteed to be defined before those declarations, so we don't get compiler complaints if we define it *after* those declarations). svn path=/trunk/; revision=15758
2005-08-16For "-G decodes", print the selector values as unsigned ints.Gerald Combs1-1/+1
svn path=/trunk/; revision=15377
2005-08-14Data sources have a lifetime spanning a single packet Ronnie Sahlberg1-18/+2
so instead for g-alloc and g_free data just use ep_alloc() that is automatically freed instead. this also gets rid of one more GMemChunk svn path=/trunk/; revision=15346
2005-08-12Add beginning of seasonal allocation in addition to the existing ephemeral ↵Ronnie Sahlberg1-0/+4
ones. svn path=/trunk/; revision=15301
2005-08-05More char -> const char warning fixes.Jörg Mayer1-1/+1
Removed (very few) casts that only change the warning message but don't remove it (with gcc-4). svn path=/trunk/; revision=15227
2005-08-02Fix more "no previous declaration" warningsJörg Mayer1-1/+1
svn path=/trunk/; revision=15171
2005-07-24Constify to remove a bunch of warnings. Add some casts to squelchGuy Harris1-4/+4
(presumably-)harmless-but-otherwise-unremovable const-to-nonconst warnings. In the TACACS dissector, clean up the variables used in option parsing to avoid some const-to-nonconst warnings. Clean up some white space. svn path=/trunk/; revision=15043
2005-07-23More 'char*' -> 'const char*' changes to fix warnings.Jörg Mayer1-4/+4
svn path=/trunk/; revision=15015
2005-05-11Some applications do very naughty things like reusing a port for a different ↵Ronnie Sahlberg1-3/+28
protocol during different stages of an application cycle. This is very naughty and will cause problems when we have assigned a dissector to a dynamic port using conversation_set_dissector(). To make ethereal handle this case I have changed the try_conversation_dissector() to allow it to fail and return 0, meaning yes there is indeed a protocol registered for this conversation but that protocol rejected this packet. (which only happens for "new" style dissectors, "old" style dissectors will never reject a packet that way) When this happens the decode_udp_port() helper will still allow other dissectors to be tried, in the hope that the conversation is now used for some other protocol and thus someone else might be able to decode the packet. Update SNMP and TFTP dissectors to check that even if there already is a conversation but that conversation does NOT have snmp/tftp registered as the dissector for it, then create a new conversation anyway and attach the proper dissector. Since ethereal keeps track of which frame number a conversation started in, this actually works really well. svn path=/trunk/; revision=14345
2005-05-02- Add support for libpcap files for MTP2 with a per packet headerMichael Tüxen1-16/+17
indicating the direction, narrowband/broadband, and interface number. - Add support to display the direction and interface number. - Add support to packet-mtp2.c to use the broadband/narrowband indication. svn path=/trunk/; revision=14265
2005-03-23Add a "cleanup_dissection()" routine, intended to free up dataGuy Harris1-0/+14
structures allocated by a dissection. Currently, it's the same as "init_dissection()", but they should be split with "init_dissection()" allocating the initial data structures and "cleanup_dissection()" freeing them and *not* reallocating the initial data structures. Use "cleanup_dissection()" in "cf_close()" to make it easier to find leaks. svn path=/trunk/; revision=13881
2005-03-11Add a "-G decodes" option to ethereal and tethereal which shows theGerald Combs1-0/+55
filter/selector/protocol associations for each dissector. This will be used to improve our automated tests, but someone with time on their hands could probably use it to generate a protocol poster using Graphviz. svn path=/trunk/; revision=13721
2005-03-08gssapi decryption nees a few new fields to pass the blobs from application ↵Ronnie Sahlberg1-0/+4
layer dissector all the way down to spnego or friends and back. svn path=/trunk/; revision=13658
2005-02-09Move the following files from /trunk to /trunk/epan:Lars Roland1-1/+1
asn1.[ch] follow.[ch] ptvcursor.[ch] reassemble.[ch] xmlstub.[ch] fix #include statements accordingly. svn path=/trunk/; revision=13366
2005-01-20Squelch a compiler warning.Guy Harris1-1/+1
svn path=/trunk/; revision=13136
2005-01-20From Julien Leproust: add heuristic dissectors' protocol names to theGuy Harris1-1/+45
layers string. Remove protocol names from the layer names string if the dissector rejects the frame. svn path=/trunk/; revision=13135
2005-01-19Add a field called "frame.protocols" which shows the protocols presentGerald Combs1-2/+13
in the frame. The filter "frame.protocols contains ip:icmp:ip" could be used to find any ICMP packets containing IP headers. Clean up whitespace. svn path=/trunk/; revision=13118
2005-01-01Get rid of some warnings about variables whose values might be lost in aGuy Harris1-1/+2
longjmp, by properly qualifying those variables as volatile. svn path=/trunk/; revision=12914
2004-10-31Make sure we don't return a random value in an unset variable if anGuy Harris1-1/+11
exception is thrown while dissecting an "error packet". svn path=/trunk/; revision=12457
2004-09-04From Eric Wedel: backend things for "Decode As" of DCE-RPC interfacesUlf Lamping1-0/+2
svn path=/trunk/; revision=11894
2004-08-06From Albert Chin: rename resolv.{ch} to addr_resolv.{ch}, so that anGuy Harris1-1/+1
include of <resolv.h> in any system header file gets the system <resolv.h> (needed for builds on Tru64 with GTK+ 1.2[.x]). svn path=/trunk/; revision=11615
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2004-04-23added a byte count output to the packet details notebook tabsUlf Lamping1-2/+2
(only visible if desegmenting activated) svn path=/trunk/; revision=10675
2004-02-28Not all dissector handles have protocols associated with them; check forGuy Harris1-3/+23
that before handing a null protocol handle to another routine. svn path=/trunk/; revision=10258
2004-02-24with the cahnges to when to call the heuristic dissectorRonnie Sahlberg1-3/+1
(and the fact that nbss does not register its conversation) this caused WANT_PDU_TRACKING to be decremented multiple times between the dissectors and thus ethereal could no longer reliably spot SMB PDUs that started in the middle of a tcp segment (unless we do reassembly which we dont do unless we have to since it eats soo many resources) FIX so that ethereal once again can spot SMB (and other) protocol PDUs that start in the middle of a segment. svn path=/trunk/; revision=10219