Support for 802.11+Prism II monitor-mode link-layer headers, from
[obnox/wireshark/wip.git] / packet-ip.c
1 /* packet-ip.c
2  * Routines for IP and miscellaneous IP protocol packet disassembly
3  *
4  * $Id: packet-ip.c,v 1.148 2001/11/26 04:52:50 hagbard Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
8  * Copyright 1998 Gerald Combs
9  * 
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  * 
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #ifdef HAVE_SYS_TYPES_H
30 # include <sys/types.h>
31 #endif
32
33 #ifdef HAVE_NETINET_IN_H
34 # include <netinet/in.h>
35 #endif
36
37 #include <stdio.h>
38 #include <string.h>
39 #include <glib.h>
40
41 #ifdef NEED_SNPRINTF_H
42 # include "snprintf.h"
43 #endif
44
45 #include "packet.h"
46 #include "resolv.h"
47 #include "ipproto.h"
48 #include "prefs.h"
49 #include "reassemble.h"
50 #include "etypes.h"
51 #include "greproto.h"
52 #include "ppptypes.h"
53 #include "llcsaps.h"
54 #include "aftypes.h"
55 #include "packet-ip.h"
56 #include "packet-ipsec.h"
57 #include "in_cksum.h"
58 #include "nlpid.h"
59
60 static void dissect_icmp(tvbuff_t *, packet_info *, proto_tree *);
61
62 /* Decode the old IPv4 TOS field as the DiffServ DS Field */
63 static gboolean g_ip_dscp_actif = TRUE;
64
65 /* Defragment fragmented IP datagrams */
66 static gboolean ip_defragment = FALSE;
67
68 /* Place IP summary in proto tree */
69 static gboolean ip_summary_in_tree = TRUE;
70
71 static int proto_ip = -1;
72 static int hf_ip_version = -1;
73 static int hf_ip_hdr_len = -1;
74 static int hf_ip_dsfield = -1;
75 static int hf_ip_dsfield_dscp = -1;
76 static int hf_ip_dsfield_ect = -1;
77 static int hf_ip_dsfield_ce = -1;
78 static int hf_ip_tos = -1;
79 static int hf_ip_tos_precedence = -1;
80 static int hf_ip_tos_delay = -1;
81 static int hf_ip_tos_throughput = -1;
82 static int hf_ip_tos_reliability = -1;
83 static int hf_ip_tos_cost = -1;
84 static int hf_ip_len = -1;
85 static int hf_ip_id = -1;
86 static int hf_ip_dst = -1;
87 static int hf_ip_src = -1;
88 static int hf_ip_addr = -1;
89 static int hf_ip_flags = -1;
90 static int hf_ip_flags_df = -1;
91 static int hf_ip_flags_mf = -1;
92 static int hf_ip_frag_offset = -1;
93 static int hf_ip_ttl = -1;
94 static int hf_ip_proto = -1;
95 static int hf_ip_checksum = -1;
96 static int hf_ip_checksum_bad = -1;
97 static int hf_ip_fragments = -1;
98 static int hf_ip_fragment = -1;
99 static int hf_ip_fragment_overlap = -1;
100 static int hf_ip_fragment_overlap_conflict = -1;
101 static int hf_ip_fragment_multiple_tails = -1;
102 static int hf_ip_fragment_too_long_fragment = -1;
103 static int hf_ip_fragment_error = -1;
104
105 static gint ett_ip = -1;
106 static gint ett_ip_dsfield = -1;
107 static gint ett_ip_tos = -1;
108 static gint ett_ip_off = -1;
109 static gint ett_ip_options = -1;
110 static gint ett_ip_option_sec = -1;
111 static gint ett_ip_option_route = -1;
112 static gint ett_ip_option_timestamp = -1;
113 static gint ett_ip_fragments = -1;
114 static gint ett_ip_fragment  = -1;
115
116 /* Used by IPv6 as well, so not static */
117 dissector_table_t ip_dissector_table;
118
119 static dissector_handle_t ip_handle;
120 static dissector_handle_t data_handle;
121
122 static int proto_icmp = -1;
123 static int hf_icmp_type = -1;
124 static int hf_icmp_code = -1;
125 static int hf_icmp_checksum = -1;
126 static int hf_icmp_checksum_bad = -1;
127
128 /* Mobile ip */
129 static int hf_icmp_mip_type = -1;
130 static int hf_icmp_mip_length = -1;
131 static int hf_icmp_mip_prefix_length = -1;
132 static int hf_icmp_mip_seq = -1;
133 static int hf_icmp_mip_life = -1;
134 static int hf_icmp_mip_flags = -1;
135 static int hf_icmp_mip_r = -1;
136 static int hf_icmp_mip_b = -1;
137 static int hf_icmp_mip_h = -1;
138 static int hf_icmp_mip_f = -1;
139 static int hf_icmp_mip_m = -1;
140 static int hf_icmp_mip_g = -1;
141 static int hf_icmp_mip_v = -1;
142 static int hf_icmp_mip_res = -1;
143 static int hf_icmp_mip_reserved = -1;
144 static int hf_icmp_mip_coa = -1;
145 static int hf_icmp_mip_challenge = -1;
146
147 static gint ett_icmp = -1;
148 static gint ett_icmp_mip = -1;
149 static gint ett_icmp_mip_flags = -1;
150
151 /* ICMP definitions */
152
153 #define ICMP_ECHOREPLY     0
154 #define ICMP_UNREACH       3
155 #define ICMP_SOURCEQUENCH  4
156 #define ICMP_REDIRECT      5
157 #define ICMP_ECHO          8
158 #define ICMP_RTRADVERT     9
159 #define ICMP_RTRSOLICIT   10
160 #define ICMP_TIMXCEED     11
161 #define ICMP_PARAMPROB    12
162 #define ICMP_TSTAMP       13
163 #define ICMP_TSTAMPREPLY  14
164 #define ICMP_IREQ         15
165 #define ICMP_IREQREPLY    16
166 #define ICMP_MASKREQ      17
167 #define ICMP_MASKREPLY    18
168
169 /* ICMP UNREACHABLE */
170
171 #define ICMP_NET_UNREACH        0       /* Network Unreachable */
172 #define ICMP_HOST_UNREACH       1       /* Host Unreachable */
173 #define ICMP_PROT_UNREACH       2       /* Protocol Unreachable */
174 #define ICMP_PORT_UNREACH       3       /* Port Unreachable */
175 #define ICMP_FRAG_NEEDED        4       /* Fragmentation Needed/DF set */
176 #define ICMP_SR_FAILED          5       /* Source Route failed */
177 #define ICMP_NET_UNKNOWN        6
178 #define ICMP_HOST_UNKNOWN       7
179 #define ICMP_HOST_ISOLATED      8
180 #define ICMP_NET_ANO            9
181 #define ICMP_HOST_ANO           10
182 #define ICMP_NET_UNR_TOS        11
183 #define ICMP_HOST_UNR_TOS       12
184 #define ICMP_PKT_FILTERED       13      /* Packet filtered */
185 #define ICMP_PREC_VIOLATION     14      /* Precedence violation */
186 #define ICMP_PREC_CUTOFF        15      /* Precedence cut off */
187
188
189 /* IP structs and definitions */
190
191 typedef struct _e_ip 
192    {
193    guint8  ip_v_hl; /* combines ip_v and ip_hl */
194    guint8  ip_tos;
195    guint16 ip_len;
196    guint16 ip_id;
197    guint16 ip_off;
198    guint8  ip_ttl;
199    guint8  ip_p;
200    guint16 ip_sum;
201    guint32 ip_src;
202    guint32 ip_dst;
203    } e_ip;
204
205 /* Offsets of fields within an IP header. */
206 #define IPH_V_HL        0
207 #define IPH_TOS         1
208 #define IPH_LEN         2
209 #define IPH_ID          4
210 #define IPH_TTL         6
211 #define IPH_OFF         8
212 #define IPH_P           9
213 #define IPH_SUM         10
214 #define IPH_SRC         12
215 #define IPH_DST         16
216
217 /* Minimum IP header length. */
218 #define IPH_MIN_LEN     20
219
220 /* IP flags. */
221 #define IP_CE           0x8000          /* Flag: "Congestion"           */
222 #define IP_DF           0x4000          /* Flag: "Don't Fragment"       */
223 #define IP_MF           0x2000          /* Flag: "More Fragments"       */
224 #define IP_OFFSET       0x1FFF          /* "Fragment Offset" part       */
225
226 /* Differentiated Services Field. See RFCs 2474, 2597 and 2598. */
227 #define IPDSFIELD_DSCP_MASK     0xFC
228 #define IPDSFIELD_ECN_MASK     0x03
229 #define IPDSFIELD_DSCP_SHIFT    2
230 #define IPDSFIELD_DSCP(dsfield) (((dsfield)&IPDSFIELD_DSCP_MASK)>>IPDSFIELD_DSCP_SHIFT)
231 #define IPDSFIELD_ECN(dsfield)  ((dsfield)&IPDSFIELD_ECN_MASK)
232 #define IPDSFIELD_DSCP_DEFAULT  0x00
233 #define IPDSFIELD_DSCP_CS1      0x08
234 #define IPDSFIELD_DSCP_CS2      0x10
235 #define IPDSFIELD_DSCP_CS3      0x18
236 #define IPDSFIELD_DSCP_CS4      0x20
237 #define IPDSFIELD_DSCP_CS5      0x28
238 #define IPDSFIELD_DSCP_CS6      0x30
239 #define IPDSFIELD_DSCP_CS7      0x38
240 #define IPDSFIELD_DSCP_AF11     0x0A
241 #define IPDSFIELD_DSCP_AF12     0x0C
242 #define IPDSFIELD_DSCP_AF13     0x0E
243 #define IPDSFIELD_DSCP_AF21     0x12
244 #define IPDSFIELD_DSCP_AF22     0x14
245 #define IPDSFIELD_DSCP_AF23     0x16
246 #define IPDSFIELD_DSCP_AF31     0x1A
247 #define IPDSFIELD_DSCP_AF32     0x1C
248 #define IPDSFIELD_DSCP_AF33     0x1E
249 #define IPDSFIELD_DSCP_AF41     0x22
250 #define IPDSFIELD_DSCP_AF42     0x24
251 #define IPDSFIELD_DSCP_AF43     0x26
252 #define IPDSFIELD_DSCP_EF       0x2E
253 #define IPDSFIELD_ECT_MASK      0x02
254 #define IPDSFIELD_CE_MASK       0x01
255
256 /* IP TOS, superseded by the DS Field, RFC 2474. */
257 #define IPTOS_TOS_MASK    0x1E
258 #define IPTOS_TOS(tos)    ((tos) & IPTOS_TOS_MASK)
259 #define IPTOS_NONE        0x00
260 #define IPTOS_LOWCOST     0x02
261 #define IPTOS_RELIABILITY 0x04
262 #define IPTOS_THROUGHPUT  0x08
263 #define IPTOS_LOWDELAY    0x10
264 #define IPTOS_SECURITY    0x1E
265
266 #define IPTOS_PREC_MASK         0xE0
267 #define IPTOS_PREC_SHIFT        5
268 #define IPTOS_PREC(tos)         (((tos)&IPTOS_PREC_MASK)>>IPTOS_PREC_SHIFT)
269 #define IPTOS_PREC_NETCONTROL           7
270 #define IPTOS_PREC_INTERNETCONTROL      6
271 #define IPTOS_PREC_CRITIC_ECP           5
272 #define IPTOS_PREC_FLASHOVERRIDE        4
273 #define IPTOS_PREC_FLASH                3
274 #define IPTOS_PREC_IMMEDIATE            2
275 #define IPTOS_PREC_PRIORITY             1
276 #define IPTOS_PREC_ROUTINE              0
277
278 /* IP options */
279 #define IPOPT_COPY              0x80
280
281 #define IPOPT_CONTROL           0x00
282 #define IPOPT_RESERVED1         0x20
283 #define IPOPT_MEASUREMENT       0x40
284 #define IPOPT_RESERVED2         0x60
285
286 #define IPOPT_END       (0 |IPOPT_CONTROL)
287 #define IPOPT_NOOP      (1 |IPOPT_CONTROL)
288 #define IPOPT_SEC       (2 |IPOPT_CONTROL|IPOPT_COPY)
289 #define IPOPT_LSRR      (3 |IPOPT_CONTROL|IPOPT_COPY)
290 #define IPOPT_TIMESTAMP (4 |IPOPT_MEASUREMENT)
291 #define IPOPT_RR        (7 |IPOPT_CONTROL)
292 #define IPOPT_SID       (8 |IPOPT_CONTROL|IPOPT_COPY)
293 #define IPOPT_SSRR      (9 |IPOPT_CONTROL|IPOPT_COPY)
294 #define IPOPT_RA        (20|IPOPT_CONTROL|IPOPT_COPY)
295
296 /* IP option lengths */
297 #define IPOLEN_SEC      11
298 #define IPOLEN_LSRR_MIN 3
299 #define IPOLEN_TIMESTAMP_MIN 5
300 #define IPOLEN_RR_MIN   3
301 #define IPOLEN_SID      4
302 #define IPOLEN_SSRR_MIN 3
303 #define IPOLEN_RA       4
304
305 #define IPSEC_UNCLASSIFIED      0x0000
306 #define IPSEC_CONFIDENTIAL      0xF135
307 #define IPSEC_EFTO              0x789A
308 #define IPSEC_MMMM              0xBC4D
309 #define IPSEC_RESTRICTED        0xAF13
310 #define IPSEC_SECRET            0xD788
311 #define IPSEC_TOPSECRET         0x6BC5
312 #define IPSEC_RESERVED1         0x35E2
313 #define IPSEC_RESERVED2         0x9AF1
314 #define IPSEC_RESERVED3         0x4D78
315 #define IPSEC_RESERVED4         0x24BD
316 #define IPSEC_RESERVED5         0x135E
317 #define IPSEC_RESERVED6         0x89AF
318 #define IPSEC_RESERVED7         0xC4D6
319 #define IPSEC_RESERVED8         0xE26B
320
321 #define IPOPT_TS_TSONLY         0               /* timestamps only */
322 #define IPOPT_TS_TSANDADDR      1               /* timestamps and addresses */
323 #define IPOPT_TS_PRESPEC        3               /* specified modules only */
324
325 /*
326  * defragmentation of IPv4
327  */
328 static GHashTable *ip_fragment_table = NULL;
329
330 static void
331 ip_defragment_init(void)
332 {
333   fragment_table_init(&ip_fragment_table);
334 }
335
336 void
337 capture_ip(const u_char *pd, int offset, int len, packet_counts *ld) {
338   if (!BYTES_ARE_IN_FRAME(offset, len, IPH_MIN_LEN)) {
339     ld->other++;
340     return;
341   }
342   switch (pd[offset + 9]) {
343     case IP_PROTO_SCTP:
344       ld->sctp++;
345       break;
346     case IP_PROTO_TCP:
347       ld->tcp++;
348       break;
349     case IP_PROTO_UDP:
350       ld->udp++;
351       break;
352     case IP_PROTO_ICMP:
353       ld->icmp++;
354       break;
355     case IP_PROTO_OSPF:
356       ld->ospf++;
357       break;
358     case IP_PROTO_GRE:
359       ld->gre++;
360       break;
361     case IP_PROTO_VINES:
362       ld->vines++;
363       break;
364     default:
365       ld->other++;
366   }
367 }
368
369 static void
370 dissect_ipopt_security(const ip_tcp_opt *optp, tvbuff_t *tvb, int offset,
371                         guint optlen, frame_data *fd, proto_tree *opt_tree)
372 {
373   proto_tree *field_tree = NULL;
374   proto_item *tf;
375   guint      val;
376   static const value_string secl_vals[] = {
377     {IPSEC_UNCLASSIFIED, "Unclassified"},
378     {IPSEC_CONFIDENTIAL, "Confidential"},
379     {IPSEC_EFTO,         "EFTO"        },
380     {IPSEC_MMMM,         "MMMM"        },
381     {IPSEC_RESTRICTED,   "Restricted"  },
382     {IPSEC_SECRET,       "Secret"      },
383     {IPSEC_TOPSECRET,    "Top secret"  },
384     {IPSEC_RESERVED1,    "Reserved"    },
385     {IPSEC_RESERVED2,    "Reserved"    },
386     {IPSEC_RESERVED3,    "Reserved"    },
387     {IPSEC_RESERVED4,    "Reserved"    },
388     {IPSEC_RESERVED5,    "Reserved"    },
389     {IPSEC_RESERVED6,    "Reserved"    },
390     {IPSEC_RESERVED7,    "Reserved"    },
391     {IPSEC_RESERVED8,    "Reserved"    },
392     {0,                  NULL          } };
393
394   tf = proto_tree_add_text(opt_tree, tvb, offset,      optlen, "%s:", optp->name);
395   field_tree = proto_item_add_subtree(tf, *optp->subtree_index);
396   offset += 2;
397
398   val = tvb_get_ntohs(tvb, offset);
399   proto_tree_add_text(field_tree, tvb, offset,       2,
400               "Security: %s", val_to_str(val, secl_vals, "Unknown (0x%x)"));
401   offset += 2;
402
403   val = tvb_get_ntohs(tvb, offset);
404   proto_tree_add_text(field_tree, tvb, offset,         2,
405               "Compartments: %u", val);
406   offset += 2;
407
408   proto_tree_add_text(field_tree, tvb, offset,         2,
409               "Handling restrictions: %c%c",
410               tvb_get_guint8(tvb, offset),
411               tvb_get_guint8(tvb, offset + 1));
412   offset += 2;
413
414   proto_tree_add_text(field_tree, tvb, offset,         3,
415               "Transmission control code: %c%c%c",
416               tvb_get_guint8(tvb, offset),
417               tvb_get_guint8(tvb, offset + 1),
418               tvb_get_guint8(tvb, offset + 2));
419 }
420
421 static void
422 dissect_ipopt_route(const ip_tcp_opt *optp, tvbuff_t *tvb, int offset,
423                         guint optlen, frame_data *fd, proto_tree *opt_tree)
424 {
425   proto_tree *field_tree = NULL;
426   proto_item *tf;
427   int ptr;
428   int optoffset = 0;
429   struct in_addr addr;
430
431   tf = proto_tree_add_text(opt_tree, tvb, offset,      optlen, "%s (%u bytes)",
432                                 optp->name, optlen);
433   field_tree = proto_item_add_subtree(tf, *optp->subtree_index);
434
435   optoffset += 2;       /* skip past type and length */
436   optlen -= 2;          /* subtract size of type and length */
437
438   ptr = tvb_get_guint8(tvb, offset + optoffset);
439   proto_tree_add_text(field_tree, tvb, offset + optoffset, 1,
440               "Pointer: %d%s", ptr,
441               ((ptr < 4) ? " (points before first address)" :
442                ((ptr & 3) ? " (points to middle of address)" : "")));
443   optoffset++;
444   optlen--;
445   ptr--;        /* ptr is 1-origin */
446
447   while (optlen > 0) {
448     if (optlen < 4) {
449       proto_tree_add_text(field_tree, tvb, offset,      optlen,
450         "(suboption would go past end of option)");
451       break;
452     }
453
454     /* Avoids alignment problems on many architectures. */
455     tvb_memcpy(tvb, (guint8 *)&addr, offset + optoffset, sizeof(addr));
456
457     proto_tree_add_text(field_tree, tvb, offset + optoffset, 4,
458               "%s%s",
459               ((addr.s_addr == 0) ? "-" : (char *)get_hostname(addr.s_addr)),
460               ((optoffset == ptr) ? " <- (current)" : ""));
461     optoffset += 4;
462     optlen -= 4;
463   }
464 }
465
466 static void
467 dissect_ipopt_sid(const ip_tcp_opt *optp, tvbuff_t *tvb, int offset,
468                         guint optlen, frame_data *fd, proto_tree *opt_tree)
469 {
470   proto_tree_add_text(opt_tree, tvb, offset,      optlen,
471     "%s: %u", optp->name, tvb_get_ntohs(tvb, offset + 2));
472   return;
473 }
474
475 static void
476 dissect_ipopt_timestamp(const ip_tcp_opt *optp, tvbuff_t *tvb,
477     int offset, guint optlen, frame_data *fd, proto_tree *opt_tree)
478 {
479   proto_tree *field_tree = NULL;
480   proto_item *tf;
481   int        ptr;
482   int        optoffset = 0;
483   int        flg;
484   static const value_string flag_vals[] = {
485     {IPOPT_TS_TSONLY,    "Time stamps only"                      },
486     {IPOPT_TS_TSANDADDR, "Time stamp and address"                },
487     {IPOPT_TS_PRESPEC,   "Time stamps for prespecified addresses"},
488     {0,                  NULL                                    } };
489   struct in_addr addr;
490   guint ts;
491
492   tf = proto_tree_add_text(opt_tree, tvb, offset,      optlen, "%s:", optp->name);
493   field_tree = proto_item_add_subtree(tf, *optp->subtree_index);
494
495   optoffset += 2;       /* skip past type and length */
496   optlen -= 2;          /* subtract size of type and length */
497
498   ptr = tvb_get_guint8(tvb, offset + optoffset);
499   proto_tree_add_text(field_tree, tvb, offset + optoffset, 1,
500               "Pointer: %d%s", ptr,
501               ((ptr < 5) ? " (points before first address)" :
502                (((ptr - 1) & 3) ? " (points to middle of address)" : "")));
503   optoffset++;
504   optlen--;
505   ptr--;        /* ptr is 1-origin */
506
507   flg = tvb_get_guint8(tvb, offset + optoffset);
508   proto_tree_add_text(field_tree, tvb, offset + optoffset,   1,
509         "Overflow: %u", flg >> 4);
510   flg &= 0xF;
511   proto_tree_add_text(field_tree, tvb, offset + optoffset, 1,
512         "Flag: %s", val_to_str(flg, flag_vals, "Unknown (0x%x)"));
513   optoffset++;
514   optlen--;
515
516   while (optlen > 0) {
517     if (flg == IPOPT_TS_TSANDADDR) {
518       if (optlen < 8) {
519         proto_tree_add_text(field_tree, tvb, offset + optoffset, optlen,
520           "(suboption would go past end of option)");
521         break;
522       }
523       tvb_memcpy(tvb, (char *)&addr, offset + optoffset, sizeof(addr));
524       ts = tvb_get_ntohl(tvb, offset + optoffset + 4);
525       optlen -= 8;
526       proto_tree_add_text(field_tree, tvb, offset + optoffset,      8,
527           "Address = %s, time stamp = %u",
528           ((addr.s_addr == 0) ? "-" :  (char *)get_hostname(addr.s_addr)),
529           ts);
530       optoffset += 8;
531     } else {
532       if (optlen < 4) {
533         proto_tree_add_text(field_tree, tvb, offset + optoffset, optlen,
534           "(suboption would go past end of option)");
535         break;
536       }
537       ts = tvb_get_ntohl(tvb, offset + optoffset);
538       optlen -= 4;
539       proto_tree_add_text(field_tree, tvb, offset + optoffset, 4,
540           "Time stamp = %u", ts);
541       optoffset += 4;
542     }
543   }
544 }
545
546 static void
547 dissect_ipopt_ra(const ip_tcp_opt *optp, tvbuff_t *tvb, int offset,
548                 guint optlen, frame_data *fd, proto_tree *opt_tree)
549 {
550   /* Router-Alert, as defined by RFC2113 */
551   int opt = tvb_get_ntohs(tvb, offset + 2);
552   static const value_string ra_opts[] = { 
553         {0, "Every router examines packet"},
554         {0, NULL}
555   };
556   
557   proto_tree_add_text(opt_tree, tvb, offset,      optlen,
558     "%s: %s", optp->name, val_to_str(opt, ra_opts, "Unknown (%d)"));
559   return;
560 }
561
562 static const ip_tcp_opt ipopts[] = {
563   {
564     IPOPT_END,
565     "EOL",
566     NULL,
567     NO_LENGTH,
568     0,
569     NULL,
570   },
571   {
572     IPOPT_NOOP,
573     "NOP",
574     NULL,
575     NO_LENGTH,
576     0,
577     NULL,
578   },
579   {
580     IPOPT_SEC,
581     "Security",
582     &ett_ip_option_sec,
583     FIXED_LENGTH,
584     IPOLEN_SEC,
585     dissect_ipopt_security
586   },
587   {
588     IPOPT_SSRR,
589     "Strict source route",
590     &ett_ip_option_route,
591     VARIABLE_LENGTH,
592     IPOLEN_SSRR_MIN,
593     dissect_ipopt_route
594   },
595   {
596     IPOPT_LSRR,
597     "Loose source route",
598     &ett_ip_option_route,
599     VARIABLE_LENGTH,
600     IPOLEN_LSRR_MIN,
601     dissect_ipopt_route
602   },
603   {
604     IPOPT_RR,
605     "Record route",
606     &ett_ip_option_route,
607     VARIABLE_LENGTH,
608     IPOLEN_RR_MIN,
609     dissect_ipopt_route
610   },
611   {
612     IPOPT_SID,
613     "Stream identifier",
614     NULL,
615     FIXED_LENGTH,
616     IPOLEN_SID,
617     dissect_ipopt_sid
618   },
619   {
620     IPOPT_TIMESTAMP,
621     "Time stamp",
622     &ett_ip_option_timestamp,
623     VARIABLE_LENGTH,
624     IPOLEN_TIMESTAMP_MIN,
625     dissect_ipopt_timestamp
626   },
627   {
628     IPOPT_RA,
629     "Router Alert",
630     NULL,
631     FIXED_LENGTH,
632     IPOLEN_RA,
633     dissect_ipopt_ra
634   },
635 };
636
637 #define N_IP_OPTS       (sizeof ipopts / sizeof ipopts[0])
638
639 /* Dissect the IP or TCP options in a packet. */
640 void
641 dissect_ip_tcp_options(tvbuff_t *tvb, int offset, guint length,
642                         const ip_tcp_opt *opttab, int nopts, int eol,
643                         frame_data *fd, proto_tree *opt_tree)
644 {
645   u_char            opt;
646   const ip_tcp_opt *optp;
647   opt_len_type      len_type;
648   unsigned int      optlen;
649   char             *name;
650   char              name_str[7+1+1+2+2+1+1];    /* "Unknown (0x%02x)" */
651   void            (*dissect)(const struct ip_tcp_opt *, tvbuff_t *,
652                                 int, guint, frame_data *, proto_tree *);
653   guint             len;
654
655   while (length > 0) {
656     opt = tvb_get_guint8(tvb, offset);
657     for (optp = &opttab[0]; optp < &opttab[nopts]; optp++) {
658       if (optp->optcode == opt)
659         break;
660     }
661     if (optp == &opttab[nopts]) {
662       /* We assume that the only NO_LENGTH options are EOL and NOP options,
663          so that we can treat unknown options as VARIABLE_LENGTH with a
664          minimum of 2, and at least be able to move on to the next option
665          by using the length in the option. */
666       optp = NULL;      /* indicate that we don't know this option */
667       len_type = VARIABLE_LENGTH;
668       optlen = 2;
669       snprintf(name_str, sizeof name_str, "Unknown (0x%02x)", opt);
670       name = name_str;
671       dissect = NULL;
672     } else {
673       len_type = optp->len_type;
674       optlen = optp->optlen;
675       name = optp->name;
676       dissect = optp->dissect;
677     }
678     --length;      /* account for type byte */
679     if (len_type != NO_LENGTH) {
680       /* Option has a length. Is it in the packet? */
681       if (length == 0) {
682         /* Bogus - packet must at least include option code byte and
683            length byte! */
684         proto_tree_add_text(opt_tree, tvb, offset,      1,
685               "%s (length byte past end of options)", name);
686         return;
687       }
688       len = tvb_get_guint8(tvb, offset + 1);  /* total including type, len */
689       --length;    /* account for length byte */
690       if (len < 2) {
691         /* Bogus - option length is too short to include option code and
692            option length. */
693         proto_tree_add_text(opt_tree, tvb, offset,      2,
694               "%s (with too-short option length = %u byte%s)", name,
695               len, plurality(len, "", "s"));
696         return;
697       } else if (len - 2 > length) {
698         /* Bogus - option goes past the end of the header. */
699         proto_tree_add_text(opt_tree, tvb, offset,      length,
700               "%s (option length = %u byte%s says option goes past end of options)",
701               name, len, plurality(len, "", "s"));
702         return;
703       } else if (len_type == FIXED_LENGTH && len != optlen) {
704         /* Bogus - option length isn't what it's supposed to be for this
705            option. */
706         proto_tree_add_text(opt_tree, tvb, offset,      len,
707               "%s (with option length = %u byte%s; should be %u)", name,
708               len, plurality(len, "", "s"), optlen);
709         return;
710       } else if (len_type == VARIABLE_LENGTH && len < optlen) {
711         /* Bogus - option length is less than what it's supposed to be for
712            this option. */
713         proto_tree_add_text(opt_tree, tvb, offset,      len,
714               "%s (with option length = %u byte%s; should be >= %u)", name,
715               len, plurality(len, "", "s"), optlen);
716         return;
717       } else {
718         if (optp == NULL) {
719           proto_tree_add_text(opt_tree, tvb, offset,    len, "%s (%u byte%s)",
720                                 name, len, plurality(len, "", "s"));
721         } else {
722           if (dissect != NULL) {
723             /* Option has a dissector. */
724             (*dissect)(optp, tvb, offset,          len, fd, opt_tree);
725           } else {
726             /* Option has no data, hence no dissector. */
727             proto_tree_add_text(opt_tree, tvb, offset,  len, "%s", name);
728           }
729         }
730         len -= 2;       /* subtract size of type and length */
731         offset += 2 + len;
732       }
733       length -= len;
734     } else {
735       proto_tree_add_text(opt_tree, tvb, offset,      1, "%s", name);
736       offset += 1;
737     }
738     if (opt == eol)
739       break;
740   }
741 }
742
743 static const value_string dscp_vals[] = {
744                   { IPDSFIELD_DSCP_DEFAULT, "Default"               },
745                   { IPDSFIELD_DSCP_CS1,     "Class Selector 1"      },
746                   { IPDSFIELD_DSCP_CS2,     "Class Selector 2"      },
747                   { IPDSFIELD_DSCP_CS3,     "Class Selector 3"      },
748                   { IPDSFIELD_DSCP_CS4,     "Class Selector 4"      },
749                   { IPDSFIELD_DSCP_CS5,     "Class Selector 5"      },
750                   { IPDSFIELD_DSCP_CS6,     "Class Selector 6"      },
751                   { IPDSFIELD_DSCP_CS7,     "Class Selector 7"      },
752                   { IPDSFIELD_DSCP_AF11,    "Assured Forwarding 11" },
753                   { IPDSFIELD_DSCP_AF12,    "Assured Forwarding 12" },
754                   { IPDSFIELD_DSCP_AF13,    "Assured Forwarding 13" },
755                   { IPDSFIELD_DSCP_AF21,    "Assured Forwarding 21" },
756                   { IPDSFIELD_DSCP_AF22,    "Assured Forwarding 22" },
757                   { IPDSFIELD_DSCP_AF23,    "Assured Forwarding 23" },
758                   { IPDSFIELD_DSCP_AF31,    "Assured Forwarding 31" },
759                   { IPDSFIELD_DSCP_AF32,    "Assured Forwarding 32" },
760                   { IPDSFIELD_DSCP_AF33,    "Assured Forwarding 33" },
761                   { IPDSFIELD_DSCP_AF41,    "Assured Forwarding 41" },
762                   { IPDSFIELD_DSCP_AF42,    "Assured Forwarding 42" },
763                   { IPDSFIELD_DSCP_AF43,    "Assured Forwarding 43" },
764                   { IPDSFIELD_DSCP_EF,      "Expedited Forwarding"  },
765                   { 0,                      NULL                    } };
766
767 static const value_string precedence_vals[] = {
768                   { IPTOS_PREC_ROUTINE,         "routine"              },
769                   { IPTOS_PREC_PRIORITY,        "priority"             },
770                   { IPTOS_PREC_IMMEDIATE,       "immediate"            },
771                   { IPTOS_PREC_FLASH,           "flash"                },
772                   { IPTOS_PREC_FLASHOVERRIDE,   "flash override"       },
773                   { IPTOS_PREC_CRITIC_ECP,      "CRITIC/ECP"           },
774                   { IPTOS_PREC_INTERNETCONTROL, "internetwork control" },
775                   { IPTOS_PREC_NETCONTROL,      "network control"      },
776                   { 0,                          NULL                   } };
777
778 static const value_string iptos_vals[] = {
779         { IPTOS_NONE,           "None" },
780         { IPTOS_LOWCOST,        "Minimize cost" },
781         { IPTOS_RELIABILITY,    "Maximize reliability" },
782         { IPTOS_THROUGHPUT,     "Maximize throughput" },
783         { IPTOS_LOWDELAY,       "Minimize delay" },
784         { IPTOS_SECURITY,       "Maximize security" },
785         { 0,                    NULL }
786 };
787
788 static const true_false_string tos_set_low = {
789   "Low",
790   "Normal"
791 };
792
793 static const true_false_string tos_set_high = {
794   "High",
795   "Normal"
796 };
797
798 static const true_false_string flags_set_truth = {
799   "Set",
800   "Not set"
801 };
802
803 static guint16 ip_checksum(const guint8 *ptr, int len)
804 {
805         vec_t cksum_vec[1];
806
807         cksum_vec[0].ptr = ptr;
808         cksum_vec[0].len = len;
809         return in_cksum(&cksum_vec[0], 1);
810 }
811
812 static void
813 dissect_ip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
814 {
815   e_ip       iph;
816   proto_tree *ip_tree = NULL, *field_tree;
817   proto_item *ti, *tf;
818   int        offset = 0;
819   guint      hlen, optlen, len;
820   guint16    flags;
821   guint8     nxt;
822   guint16    ipsum;
823   fragment_data *ipfd_head;
824   tvbuff_t   *next_tvb;
825   gboolean update_col_info = TRUE;
826
827   if (check_col(pinfo->fd, COL_PROTOCOL))
828     col_set_str(pinfo->fd, COL_PROTOCOL, "IP");
829   if (check_col(pinfo->fd, COL_INFO))
830     col_clear(pinfo->fd, COL_INFO);
831
832   /* Avoids alignment problems on many architectures. */
833   tvb_memcpy(tvb, (guint8 *)&iph, offset, sizeof(e_ip));
834   iph.ip_len = ntohs(iph.ip_len);
835   iph.ip_id  = ntohs(iph.ip_id);
836   iph.ip_off = ntohs(iph.ip_off);
837   iph.ip_sum = ntohs(iph.ip_sum);
838
839   /* Length of IP datagram.
840      XXX - what if this is greater than the reported length of the
841      tvbuff?  This could happen, for example, in an IP datagram
842      inside an ICMP datagram; we need to somehow let the
843      dissector we call know that, as it might want to avoid
844      doing its checksumming. */
845   len = iph.ip_len;
846
847   /* Adjust the length of this tvbuff to include only the IP datagram. */
848   set_actual_length(tvb, pinfo, len);
849
850   hlen = lo_nibble(iph.ip_v_hl) * 4;    /* IP header length, in bytes */
851  
852   if (tree) {
853     if (ip_summary_in_tree && hlen >= IPH_MIN_LEN) {
854       ti = proto_tree_add_protocol_format(tree, proto_ip, tvb, offset, hlen,
855                 "Internet Protocol, Src Addr: %s (%s), Dst Addr: %s (%s)",
856                 get_hostname(iph.ip_src), ip_to_str((guint8 *) &iph.ip_src),
857                 get_hostname(iph.ip_dst), ip_to_str((guint8 *) &iph.ip_dst));
858     } else {
859       ti = proto_tree_add_item(tree, proto_ip, tvb, offset, hlen, FALSE);
860     }
861     ip_tree = proto_item_add_subtree(ti, ett_ip);
862   }
863
864   if (hlen < IPH_MIN_LEN) {
865     if (check_col(pinfo->fd, COL_INFO))
866       col_add_fstr(pinfo->fd, COL_INFO, "Bogus IP header length (%u, must be at least %u)",
867        hlen, IPH_MIN_LEN);
868     if (tree) {
869       proto_tree_add_uint_format(ip_tree, hf_ip_hdr_len, tvb, offset, 1, hlen,
870        "Header length: %u bytes (bogus, must be at least %u)", hlen,
871        IPH_MIN_LEN);
872     }
873     return;
874   }
875
876   /*
877    * Compute the checksum of the IP header.
878    */
879   ipsum = ip_checksum(tvb_get_ptr(tvb, offset, hlen), hlen);
880
881   if (tree) {
882     proto_tree_add_uint(ip_tree, hf_ip_version, tvb, offset, 1, hi_nibble(iph.ip_v_hl));
883     proto_tree_add_uint_format(ip_tree, hf_ip_hdr_len, tvb, offset, 1, hlen,
884         "Header length: %u bytes", hlen);
885
886     if (g_ip_dscp_actif) {
887       tf = proto_tree_add_uint_format(ip_tree, hf_ip_dsfield, tvb, offset + 1, 1, iph.ip_tos,
888            "Differentiated Services Field: 0x%02x (DSCP 0x%02x: %s; ECN: 0x%02x)", iph.ip_tos,
889            IPDSFIELD_DSCP(iph.ip_tos), val_to_str(IPDSFIELD_DSCP(iph.ip_tos), dscp_vals,
890            "Unknown DSCP"),IPDSFIELD_ECN(iph.ip_tos));
891
892       field_tree = proto_item_add_subtree(tf, ett_ip_dsfield);
893       proto_tree_add_uint(field_tree, hf_ip_dsfield_dscp, tvb, offset + 1, 1, iph.ip_tos);
894       proto_tree_add_uint(field_tree, hf_ip_dsfield_ect, tvb, offset + 1, 1, iph.ip_tos);
895       proto_tree_add_uint(field_tree, hf_ip_dsfield_ce, tvb, offset + 1, 1, iph.ip_tos);
896     } else {
897       tf = proto_tree_add_uint_format(ip_tree, hf_ip_tos, tvb, offset + 1, 1, iph.ip_tos,
898           "Type of service: 0x%02x (%s)", iph.ip_tos,
899           val_to_str( IPTOS_TOS(iph.ip_tos), iptos_vals, "Unknown") );
900
901       field_tree = proto_item_add_subtree(tf, ett_ip_tos);
902       proto_tree_add_uint(field_tree, hf_ip_tos_precedence, tvb, offset + 1, 1, iph.ip_tos);
903       proto_tree_add_boolean(field_tree, hf_ip_tos_delay, tvb, offset + 1, 1, iph.ip_tos);
904       proto_tree_add_boolean(field_tree, hf_ip_tos_throughput, tvb, offset + 1, 1, iph.ip_tos);
905       proto_tree_add_boolean(field_tree, hf_ip_tos_reliability, tvb, offset + 1, 1, iph.ip_tos);
906       proto_tree_add_boolean(field_tree, hf_ip_tos_cost, tvb, offset + 1, 1, iph.ip_tos);
907     }
908     proto_tree_add_uint(ip_tree, hf_ip_len, tvb, offset +  2, 2, iph.ip_len);
909     proto_tree_add_uint(ip_tree, hf_ip_id, tvb, offset +  4, 2, iph.ip_id);
910
911     flags = (iph.ip_off & (IP_DF|IP_MF)) >> 12;
912     tf = proto_tree_add_uint(ip_tree, hf_ip_flags, tvb, offset +  6, 1, flags);
913     field_tree = proto_item_add_subtree(tf, ett_ip_off);
914     proto_tree_add_boolean(field_tree, hf_ip_flags_df, tvb, offset + 6, 1, flags),
915     proto_tree_add_boolean(field_tree, hf_ip_flags_mf, tvb, offset + 6, 1, flags),
916
917     proto_tree_add_uint(ip_tree, hf_ip_frag_offset, tvb, offset +  6, 2,
918       (iph.ip_off & IP_OFFSET)*8);
919
920     proto_tree_add_uint(ip_tree, hf_ip_ttl, tvb, offset +  8, 1, iph.ip_ttl);
921     proto_tree_add_uint_format(ip_tree, hf_ip_proto, tvb, offset +  9, 1, iph.ip_p,
922         "Protocol: %s (0x%02x)", ipprotostr(iph.ip_p), iph.ip_p);
923
924     if (ipsum == 0) {
925         proto_tree_add_uint_format(ip_tree, hf_ip_checksum, tvb, offset + 10, 2, iph.ip_sum,
926               "Header checksum: 0x%04x (correct)", iph.ip_sum);
927     }
928     else {
929         proto_tree_add_item_hidden(ip_tree, hf_ip_checksum_bad, tvb, offset + 10, 2, TRUE);
930         proto_tree_add_uint_format(ip_tree, hf_ip_checksum, tvb, offset + 10, 2, iph.ip_sum,
931           "Header checksum: 0x%04x (incorrect, should be 0x%04x)", iph.ip_sum,
932           in_cksum_shouldbe(iph.ip_sum, ipsum));
933     }
934
935     proto_tree_add_ipv4(ip_tree, hf_ip_src, tvb, offset + 12, 4, iph.ip_src);
936     proto_tree_add_ipv4(ip_tree, hf_ip_dst, tvb, offset + 16, 4, iph.ip_dst);
937     proto_tree_add_ipv4_hidden(ip_tree, hf_ip_addr, tvb, offset + 12, 4, iph.ip_src);
938     proto_tree_add_ipv4_hidden(ip_tree, hf_ip_addr, tvb, offset + 16, 4, iph.ip_dst);
939
940     /* Decode IP options, if any. */
941     if (hlen > sizeof (e_ip)) {
942       /* There's more than just the fixed-length header.  Decode the
943          options. */
944       optlen = hlen - sizeof (e_ip);    /* length of options, in bytes */
945       tf = proto_tree_add_text(ip_tree, tvb, offset +  20, optlen,
946         "Options: (%u bytes)", optlen);
947       field_tree = proto_item_add_subtree(tf, ett_ip_options);
948       dissect_ip_tcp_options(tvb, offset + 20, optlen,
949          ipopts, N_IP_OPTS, IPOPT_END, pinfo->fd, field_tree);
950     }
951   }
952
953   pinfo->ipproto = iph.ip_p;
954
955   pinfo->iplen = iph.ip_len;
956
957   pinfo->iphdrlen = lo_nibble(iph.ip_v_hl);
958
959   SET_ADDRESS(&pinfo->net_src, AT_IPv4, 4, tvb_get_ptr(tvb, offset + IPH_SRC, 4));
960   SET_ADDRESS(&pinfo->src, AT_IPv4, 4, tvb_get_ptr(tvb, offset + IPH_SRC, 4));
961   SET_ADDRESS(&pinfo->net_dst, AT_IPv4, 4, tvb_get_ptr(tvb, offset + IPH_DST, 4));
962   SET_ADDRESS(&pinfo->dst, AT_IPv4, 4, tvb_get_ptr(tvb, offset + IPH_DST, 4));
963
964   /* Skip over header + options */
965   offset += hlen;
966   nxt = iph.ip_p;       /* XXX - what if this isn't the same for all fragments? */
967
968   /* If ip_defragment is on and this is a fragment, then just add the fragment
969    * to the hashtable.
970    */
971   if (ip_defragment && (iph.ip_off & (IP_MF|IP_OFFSET))) {
972     /* We're reassembling, and this is part of a fragmented datagram.
973        Add the fragment to the hash table if the checksum is ok
974        and the frame isn't truncated. */
975     if ((ipsum==0) && (tvb_reported_length(tvb) <= tvb_length(tvb))) {
976       ipfd_head = fragment_add(tvb, offset, pinfo, iph.ip_id,
977                                ip_fragment_table,
978                                (iph.ip_off & IP_OFFSET)*8,
979                                pinfo->iplen - (pinfo->iphdrlen*4),
980                                iph.ip_off & IP_MF);
981     } else {
982       ipfd_head=NULL;
983     }
984
985     if (ipfd_head != NULL) {
986       fragment_data *ipfd;
987       proto_tree *ft=NULL;
988       proto_item *fi=NULL;
989
990       /* OK, we have the complete reassembled payload. */
991       /* show all fragments */
992       fi = proto_tree_add_item(ip_tree, hf_ip_fragments, 
993                 tvb, 0, 0, FALSE);
994       ft = proto_item_add_subtree(fi, ett_ip_fragments);
995       for (ipfd=ipfd_head->next; ipfd; ipfd=ipfd->next){
996         if (ipfd->flags & (FD_OVERLAP|FD_OVERLAPCONFLICT
997                           |FD_MULTIPLETAILS|FD_TOOLONGFRAGMENT) ) {
998           /* this fragment has some flags set, create a subtree 
999            * for it and display the flags.
1000            */
1001           proto_tree *fet=NULL;
1002           proto_item *fei=NULL;
1003           int hf;
1004
1005           if (ipfd->flags & (FD_OVERLAPCONFLICT
1006                       |FD_MULTIPLETAILS|FD_TOOLONGFRAGMENT) ) {
1007             hf = hf_ip_fragment_error;
1008           } else {
1009             hf = hf_ip_fragment;
1010           }
1011           fei = proto_tree_add_none_format(ft, hf, 
1012                    tvb, 0, 0,
1013                    "Frame:%d payload:%d-%d",
1014                    ipfd->frame,
1015                    ipfd->offset,
1016                    ipfd->offset+ipfd->len-1
1017           );
1018           fet = proto_item_add_subtree(fei, ett_ip_fragment);
1019           if (ipfd->flags&FD_OVERLAP) {
1020             proto_tree_add_boolean(fet, 
1021                  hf_ip_fragment_overlap, tvb, 0, 0, 
1022                  TRUE);
1023           }
1024           if (ipfd->flags&FD_OVERLAPCONFLICT) {
1025             proto_tree_add_boolean(fet, 
1026                  hf_ip_fragment_overlap_conflict, tvb, 0, 0, 
1027                  TRUE);
1028           }
1029           if (ipfd->flags&FD_MULTIPLETAILS) {
1030             proto_tree_add_boolean(fet, 
1031                  hf_ip_fragment_multiple_tails, tvb, 0, 0, 
1032                  TRUE);
1033           }
1034           if (ipfd->flags&FD_TOOLONGFRAGMENT) {
1035             proto_tree_add_boolean(fet, 
1036                  hf_ip_fragment_too_long_fragment, tvb, 0, 0, 
1037                  TRUE);
1038           }
1039         } else {
1040           /* nothing of interest for this fragment */
1041           proto_tree_add_none_format(ft, hf_ip_fragment, 
1042                    tvb, 0, 0,
1043                    "Frame:%d payload:%d-%d",
1044                    ipfd->frame,
1045                    ipfd->offset,
1046                    ipfd->offset+ipfd->len-1
1047           );
1048         }
1049       }
1050       if (ipfd_head->flags & (FD_OVERLAPCONFLICT
1051                         |FD_MULTIPLETAILS|FD_TOOLONGFRAGMENT) ) {
1052         if (check_col(pinfo->fd, COL_INFO)) {
1053           col_set_str(pinfo->fd, COL_INFO, "[Illegal fragments]");
1054           update_col_info = FALSE;
1055         }
1056       }
1057
1058       /* Allocate a new tvbuff, referring to the reassembled payload. */
1059       next_tvb = tvb_new_real_data(ipfd_head->data, ipfd_head->datalen,
1060         ipfd_head->datalen, "Reassembled");
1061
1062       /* Add the tvbuff to the list of tvbuffs to which the tvbuff we
1063          were handed refers, so it'll get cleaned up when that tvbuff
1064          is cleaned up. */
1065       tvb_set_child_real_data_tvbuff(tvb, next_tvb);
1066
1067       /* Add the defragmented data to the data source list. */
1068       pinfo->fd->data_src = g_slist_append(pinfo->fd->data_src, next_tvb);
1069
1070       /* It's not fragmented. */
1071       pinfo->fragmented = FALSE;
1072     } else {
1073       /* We don't have the complete reassembled payload. */
1074       next_tvb = NULL;
1075     }
1076   } else {
1077     /* If this is the first fragment, dissect its contents, otherwise
1078        just show it as a fragment.
1079
1080        XXX - if we eventually don't save the reassembled contents of all
1081        fragmented datagrams, we may want to always reassemble. */
1082     if (iph.ip_off & IP_OFFSET) {
1083       /* Not the first fragment - don't dissect it. */
1084       next_tvb = NULL;
1085     } else {
1086       /* First fragment, or not fragmented.  Dissect what we have here. */
1087
1088       /* Get a tvbuff for the payload. */
1089       next_tvb = tvb_new_subset(tvb, offset, -1, -1);
1090
1091       /*
1092        * If this is the first fragment, but not the only fragment,
1093        * tell the next protocol that.
1094        */
1095       if (iph.ip_off & IP_MF)
1096         pinfo->fragmented = TRUE;
1097       else
1098         pinfo->fragmented = FALSE;
1099     }
1100   }
1101
1102   if (next_tvb == NULL) {
1103     /* Just show this as a fragment. */
1104     if (check_col(pinfo->fd, COL_INFO))
1105       col_add_fstr(pinfo->fd, COL_INFO, "Fragmented IP protocol (proto=%s 0x%02x, off=%u)",
1106         ipprotostr(iph.ip_p), iph.ip_p, (iph.ip_off & IP_OFFSET) * 8);
1107     call_dissector(data_handle,tvb_new_subset(tvb, offset,-1,tvb_reported_length_remaining(tvb,offset)), pinfo, tree);
1108     return;
1109   }
1110
1111   /* Hand off to the next protocol.
1112
1113      XXX - setting the columns only after trying various dissectors means
1114      that if one of those dissectors throws an exception, the frame won't
1115      even be labelled as an IP frame; ideally, if a frame being dissected
1116      throws an exception, it'll be labelled as a mangled frame of the
1117      type in question. */
1118   if (!dissector_try_port(ip_dissector_table, nxt, next_tvb, pinfo, tree)) {
1119     /* Unknown protocol */
1120     if (update_col_info) {
1121       if (check_col(pinfo->fd, COL_INFO))
1122         col_add_fstr(pinfo->fd, COL_INFO, "%s (0x%02x)", ipprotostr(iph.ip_p), iph.ip_p);
1123     }
1124     call_dissector(data_handle,next_tvb, pinfo, tree);
1125   }
1126 }
1127
1128 #define ICMP_MIP_EXTENSION_PAD  0
1129 #define ICMP_MIP_MOB_AGENT_ADV  16
1130 #define ICMP_MIP_PREFIX_LENGTHS 19
1131 #define ICMP_MIP_CHALLENGE      24
1132
1133 static value_string mip_extensions[] = {
1134   { ICMP_MIP_EXTENSION_PAD, "One byte padding extension"},  /* RFC 2002 */
1135   { ICMP_MIP_MOB_AGENT_ADV, "Mobility Agent Advertisement Extension"},
1136                                                             /* RFC 2002 */
1137   { ICMP_MIP_PREFIX_LENGTHS, "Prefix Lengths Extension"},   /* RFC 2002 */
1138   { ICMP_MIP_CHALLENGE, "Challenge Extension"},             /* RFC 3012 */
1139   { 0, NULL}
1140 };
1141
1142 /*
1143  * Dissect the mobile ip advertisement extensions.
1144  */
1145 static void
1146 dissect_mip_extensions(tvbuff_t *tvb, size_t offset, packet_info *pinfo,
1147                                            proto_tree *tree)
1148 {
1149   guint8       type;
1150   guint8       length;
1151   guint8       flags;
1152   proto_item   *ti;
1153   proto_tree   *mip_tree=NULL;
1154   proto_tree   *flags_tree=NULL;
1155   gint         numCOAs;
1156   gint         i;
1157
1158   /* Not much to do if we're not parsing everything */
1159   if (!tree) return;
1160   
1161   while ((tvb_length(tvb) - offset) > 0) {
1162
1163         type = tvb_get_guint8(tvb, offset + 0);
1164         if (type)
1165           length = tvb_get_guint8(tvb, offset + 1);
1166         else
1167           length=0;
1168
1169         ti = proto_tree_add_text(tree, tvb, offset,
1170                                                          type?(length + 2):1,
1171                                                          "Ext: %s",
1172                                                          val_to_str(type, mip_extensions,
1173                                                                                 "Unknown ext %d"));
1174         mip_tree = proto_item_add_subtree(ti, ett_icmp_mip);
1175   
1176
1177         switch (type) {
1178         case ICMP_MIP_EXTENSION_PAD:
1179           /* One byte padding extension */
1180           /* Add our fields */
1181           /* type */
1182           proto_tree_add_item(mip_tree, hf_icmp_mip_type, tvb, offset, 
1183                                                   1, FALSE);
1184           offset++;
1185           break;
1186         case ICMP_MIP_MOB_AGENT_ADV:
1187           /* Mobility Agent Advertisement Extension (RFC 2002)*/
1188           /* Add our fields */
1189           /* type */
1190           proto_tree_add_item(mip_tree, hf_icmp_mip_type, tvb, offset, 
1191                                                   1, FALSE);
1192           offset++;
1193           /* length */
1194           proto_tree_add_item(mip_tree, hf_icmp_mip_length, tvb, offset, 
1195                                                   1, FALSE);
1196           offset++;
1197           /* sequence number */
1198           proto_tree_add_item(mip_tree, hf_icmp_mip_seq, tvb, offset, 
1199                                                   2, FALSE);
1200           offset+=2;
1201           /* Registration Lifetime */
1202           proto_tree_add_item(mip_tree, hf_icmp_mip_life, tvb, offset, 
1203                                                   2, FALSE);
1204           offset+=2;
1205           /* flags */
1206           flags = tvb_get_guint8(tvb, offset);
1207           ti = proto_tree_add_item(mip_tree, hf_icmp_mip_flags, tvb, offset,
1208                                                            1, FALSE);
1209           flags_tree = proto_item_add_subtree(ti, ett_icmp_mip_flags);
1210           proto_tree_add_boolean(flags_tree, hf_icmp_mip_r, tvb, offset, 1, flags);
1211           proto_tree_add_boolean(flags_tree, hf_icmp_mip_b, tvb, offset, 1, flags);
1212           proto_tree_add_boolean(flags_tree, hf_icmp_mip_h, tvb, offset, 1, flags);
1213           proto_tree_add_boolean(flags_tree, hf_icmp_mip_f, tvb, offset, 1, flags);
1214           proto_tree_add_boolean(flags_tree, hf_icmp_mip_m, tvb, offset, 1, flags);
1215           proto_tree_add_boolean(flags_tree, hf_icmp_mip_g, tvb, offset, 1, flags);
1216           proto_tree_add_boolean(flags_tree, hf_icmp_mip_v, tvb, offset, 1, flags);
1217           proto_tree_add_boolean(flags_tree, hf_icmp_mip_res, tvb, offset, 1, flags);
1218           offset++;
1219           
1220           /* Reserved */
1221           proto_tree_add_item(mip_tree, hf_icmp_mip_reserved, tvb, offset, 
1222                                                   1, FALSE);
1223           offset++;
1224           
1225           /* COAs */
1226           numCOAs = (length - 6) / 4;
1227           for (i=0; i<numCOAs; i++) {
1228                 proto_tree_add_item(mip_tree, hf_icmp_mip_coa, tvb, offset, 
1229                                                         4, FALSE);
1230                 offset+=4;
1231           }
1232           break;
1233         case ICMP_MIP_PREFIX_LENGTHS:
1234           /* Prefix-Lengths Extension  (RFC 2002)*/
1235           /* Add our fields */
1236           /* type */
1237           proto_tree_add_item(mip_tree, hf_icmp_mip_type, tvb, offset, 
1238                                                   1, FALSE);
1239           offset++;
1240           /* length */
1241           proto_tree_add_item(mip_tree, hf_icmp_mip_length, tvb, offset, 
1242                                                   1, FALSE);
1243           offset++;
1244
1245           /* prefix lengths */
1246           for(i=0; i<length; i++) {
1247                 proto_tree_add_item(mip_tree, hf_icmp_mip_prefix_length, tvb, offset,
1248                                                         1, FALSE);
1249                 offset++;
1250           }
1251           break;
1252         case ICMP_MIP_CHALLENGE:
1253           /* Challenge Extension  (RFC 3012)*/
1254           /* type */
1255           proto_tree_add_item(mip_tree, hf_icmp_mip_type, tvb, offset, 
1256                                                   1, FALSE);
1257           offset++;
1258           /* length */
1259           proto_tree_add_item(mip_tree, hf_icmp_mip_length, tvb, offset, 
1260                                                   1, FALSE);
1261           offset++;
1262           /* challenge */
1263           proto_tree_add_item(mip_tree, hf_icmp_mip_challenge, tvb, offset, 
1264                                                   length, FALSE);
1265           offset+=length;
1266           
1267           break;
1268         default:
1269           g_warning("Unknown type(%d)!  I hope the length is right (%d)",
1270                                 type, length);
1271           offset += length;
1272           break;
1273         } /* switch type */
1274   } /* end while */
1275   
1276 } /* dissect_mip_extensions */
1277
1278 static const gchar *unreach_str[] = {"Network unreachable",
1279                                      "Host unreachable",
1280                                      "Protocol unreachable",
1281                                      "Port unreachable",
1282                                      "Fragmentation needed",
1283                                      "Source route failed",
1284                                      "Destination network unknown",
1285                                      "Destination host unknown",
1286                                      "Source host isolated",
1287                                      "Network administratively prohibited",
1288                                      "Host administratively prohibited",
1289                                      "Network unreachable for TOS",
1290                                      "Host unreachable for TOS",
1291                                      "Communication administratively filtered",
1292                                      "Host precedence violation",
1293                                      "Precedence cutoff in effect"};
1294                                      
1295 #define N_UNREACH       (sizeof unreach_str / sizeof unreach_str[0])
1296
1297 static const gchar *redir_str[] = {"Redirect for network",
1298                                    "Redirect for host",
1299                                    "Redirect for TOS and network",
1300                                    "Redirect for TOS and host"};
1301
1302 #define N_REDIRECT      (sizeof redir_str / sizeof redir_str[0])
1303
1304 static const gchar *ttl_str[] = {"TTL equals 0 during transit",
1305                                  "TTL equals 0 during reassembly"};
1306                                  
1307 #define N_TIMXCEED      (sizeof ttl_str / sizeof ttl_str[0])
1308
1309 static const gchar *par_str[] = {"IP header bad", "Required option missing"};
1310
1311 #define N_PARAMPROB     (sizeof par_str / sizeof par_str[0])
1312
1313 /*
1314  * RFC 792 for basic ICMP.
1315  * RFC 1191 for ICMP_FRAG_NEEDED (with MTU of next hop).
1316  * RFC 1256 for router discovery messages.
1317  * RFC 2002 and 3012 for Mobile IP stuff.
1318  */
1319 static void
1320 dissect_icmp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
1321 {
1322   proto_tree *icmp_tree;
1323   proto_item *ti;
1324   guint8     icmp_type;
1325   guint8     icmp_code;
1326   guint      length, reported_length;
1327   guint16    cksum, computed_cksum;
1328   gchar      type_str[64], code_str[64] = "";
1329   guint8     num_addrs = 0;
1330   guint8     addr_entry_size = 0;
1331   int        i;
1332   address    save_dl_src;
1333   address    save_dl_dst;
1334   address    save_net_src;
1335   address    save_net_dst;
1336   address    save_src;
1337   address    save_dst;
1338   gboolean   save_in_error_pkt;
1339   tvbuff_t   *next_tvb;
1340
1341   if (check_col(pinfo->fd, COL_PROTOCOL))
1342     col_set_str(pinfo->fd, COL_PROTOCOL, "ICMP");
1343   if (check_col(pinfo->fd, COL_INFO))
1344     col_clear(pinfo->fd, COL_INFO);
1345
1346   /* To do: check for runts, errs, etc. */
1347   icmp_type = tvb_get_guint8(tvb, 0);
1348   icmp_code = tvb_get_guint8(tvb, 1);
1349   cksum = tvb_get_ntohs(tvb, 2);
1350
1351   switch (icmp_type) {
1352     case ICMP_ECHOREPLY:
1353       strcpy(type_str, "Echo (ping) reply");
1354       break;
1355     case ICMP_UNREACH:
1356       strcpy(type_str, "Destination unreachable");
1357       if (icmp_code < N_UNREACH) {
1358         sprintf(code_str, "(%s)", unreach_str[icmp_code]);
1359       } else {
1360         strcpy(code_str, "(Unknown - error?)");
1361       }
1362       break;
1363     case ICMP_SOURCEQUENCH:
1364       strcpy(type_str, "Source quench (flow control)");
1365       break;
1366     case ICMP_REDIRECT:
1367       strcpy(type_str, "Redirect");
1368       if (icmp_code < N_REDIRECT) {
1369         sprintf(code_str, "(%s)", redir_str[icmp_code]);
1370       } else {
1371         strcpy(code_str, "(Unknown - error?)");
1372       }
1373       break;
1374     case ICMP_ECHO:
1375       strcpy(type_str, "Echo (ping) request");
1376       break;
1377     case ICMP_RTRADVERT:
1378       switch (icmp_code) {
1379       case 16: /* Mobile-Ip */
1380         strcpy(type_str, "Mobile IP Advertisement");
1381         break;
1382       default:
1383         strcpy(type_str, "Router advertisement");
1384         break;
1385       } /* switch icmp_code */
1386       break;
1387     case ICMP_RTRSOLICIT:
1388       strcpy(type_str, "Router solicitation");
1389       break;
1390     case ICMP_TIMXCEED:
1391       strcpy(type_str, "Time-to-live exceeded");
1392       if (icmp_code < N_TIMXCEED) {
1393         sprintf(code_str, "(%s)", ttl_str[icmp_code]);
1394       } else {
1395         strcpy(code_str, "(Unknown - error?)");
1396       }
1397       break;
1398     case ICMP_PARAMPROB:
1399       strcpy(type_str, "Parameter problem");
1400       if (icmp_code < N_PARAMPROB) {
1401         sprintf(code_str, "(%s)", par_str[icmp_code]);
1402       } else {
1403         strcpy(code_str, "(Unknown - error?)");
1404       }
1405       break;
1406     case ICMP_TSTAMP:
1407       strcpy(type_str, "Timestamp request");
1408       break;
1409     case ICMP_TSTAMPREPLY:
1410       strcpy(type_str, "Timestamp reply");
1411       break;
1412     case ICMP_IREQ:
1413       strcpy(type_str, "Information request");
1414       break;
1415     case ICMP_IREQREPLY:
1416       strcpy(type_str, "Information reply");
1417       break;
1418     case ICMP_MASKREQ:
1419       strcpy(type_str, "Address mask request");
1420       break;
1421     case ICMP_MASKREPLY:
1422       strcpy(type_str, "Address mask reply");
1423       break;
1424     default:
1425       strcpy(type_str, "Unknown ICMP (obsolete or malformed?)");
1426       break;
1427   }
1428
1429   if (check_col(pinfo->fd, COL_INFO))
1430     col_add_str(pinfo->fd, COL_INFO, type_str);
1431
1432   if (tree) {
1433     length = tvb_length(tvb);
1434     reported_length = tvb_reported_length(tvb);
1435     ti = proto_tree_add_item(tree, proto_icmp, tvb, 0, length, FALSE);
1436     icmp_tree = proto_item_add_subtree(ti, ett_icmp);
1437     proto_tree_add_uint_format(icmp_tree, hf_icmp_type, tvb, 0, 1, 
1438                                icmp_type,
1439                                "Type: %u (%s)",
1440                                icmp_type, type_str);
1441     proto_tree_add_uint_format(icmp_tree, hf_icmp_code, tvb, 1, 1, 
1442                                icmp_code,
1443                                "Code: %u %s",
1444                                icmp_code, code_str);
1445
1446     if (!pinfo->fragmented && length >= reported_length) {
1447       /* The packet isn't part of a fragmented datagram and isn't
1448          truncated, so we can checksum it. */
1449
1450       computed_cksum = ip_checksum(tvb_get_ptr(tvb, 0, reported_length),
1451                                      reported_length);
1452       if (computed_cksum == 0) {
1453         proto_tree_add_uint_format(icmp_tree, hf_icmp_checksum, tvb, 2, 2,
1454                           cksum,
1455                           "Checksum: 0x%04x (correct)", cksum);
1456       } else {
1457         proto_tree_add_item_hidden(icmp_tree, hf_icmp_checksum_bad,
1458                           tvb, 2, 2, TRUE);
1459         proto_tree_add_uint_format(icmp_tree, hf_icmp_checksum, tvb, 2, 2,
1460                   cksum,
1461                   "Checksum: 0x%04x (incorrect, should be 0x%04x)",
1462                   cksum, in_cksum_shouldbe(cksum, computed_cksum));
1463       }
1464     } else {
1465       proto_tree_add_uint(icmp_tree, hf_icmp_checksum, tvb, 2, 2, cksum);
1466     }
1467
1468     /* Decode the second 4 bytes of the packet. */
1469     switch (icmp_type) {
1470       case ICMP_ECHOREPLY:
1471       case ICMP_ECHO:
1472       case ICMP_TSTAMP:
1473       case ICMP_TSTAMPREPLY:
1474       case ICMP_IREQ:
1475       case ICMP_IREQREPLY:
1476       case ICMP_MASKREQ:
1477       case ICMP_MASKREPLY:
1478         proto_tree_add_text(icmp_tree, tvb, 4, 2, "Identifier: 0x%04x",
1479           tvb_get_ntohs(tvb, 4));
1480         proto_tree_add_text(icmp_tree, tvb, 6, 2, "Sequence number: %02x:%02x",
1481           tvb_get_guint8(tvb, 6), tvb_get_guint8(tvb, 7));
1482         break;
1483
1484       case ICMP_UNREACH:
1485         switch (icmp_code) {
1486           case ICMP_FRAG_NEEDED:
1487             proto_tree_add_text(icmp_tree, tvb, 6, 2, "MTU of next hop: %u",
1488                   tvb_get_ntohs(tvb, 6));
1489             break;
1490         }
1491         break;
1492
1493       case ICMP_RTRADVERT:
1494         num_addrs = tvb_get_guint8(tvb, 4);
1495         proto_tree_add_text(icmp_tree, tvb, 4, 1, "Number of addresses: %u",
1496           num_addrs);
1497         addr_entry_size = tvb_get_guint8(tvb, 5);
1498         proto_tree_add_text(icmp_tree, tvb, 5, 1, "Address entry size: %u",
1499           addr_entry_size);
1500         proto_tree_add_text(icmp_tree, tvb, 6, 2, "Lifetime: %s",
1501           time_secs_to_str(tvb_get_ntohs(tvb, 6)));
1502         break;
1503
1504       case ICMP_PARAMPROB:
1505         proto_tree_add_text(icmp_tree, tvb, 4, 1, "Pointer: %u",
1506           tvb_get_guint8(tvb, 4));
1507         break;
1508
1509       case ICMP_REDIRECT:
1510         proto_tree_add_text(icmp_tree, tvb, 4, 4, "Gateway address: %s",
1511           ip_to_str(tvb_get_ptr(tvb, 4, 4)));
1512         break;
1513     }
1514
1515     /* Decode the additional information in the packet.  */
1516     switch (icmp_type) {
1517       case ICMP_UNREACH:
1518       case ICMP_TIMXCEED:
1519       case ICMP_PARAMPROB:
1520       case ICMP_SOURCEQUENCH:
1521       case ICMP_REDIRECT:
1522         /* Decode the IP header and first 64 bits of data from the
1523            original datagram.
1524
1525            Set the columns non-writable, so that the packet list
1526            shows this as an ICMP packet, not as the type of packet
1527            for which the ICMP packet was generated. */
1528         col_set_writable(pinfo->fd, FALSE);
1529
1530         /* Also, save the current values of the addresses, and restore
1531            them when we're finished dissecting the contained packet, so
1532            that the address columns in the summary don't reflect the
1533            contained packet, but reflect this packet instead. */
1534         save_dl_src = pinfo->dl_src;
1535         save_dl_dst = pinfo->dl_dst;
1536         save_net_src = pinfo->net_src;
1537         save_net_dst = pinfo->net_dst;
1538         save_src = pinfo->src;
1539         save_dst = pinfo->dst;
1540
1541         /* Save the current value of the "we're inside an error packet"
1542            flag, and set that flag; subdissectors may treat packets
1543            that are the payload of error packets differently from
1544            "real" packets. */
1545         save_in_error_pkt = pinfo->in_error_pkt;
1546         pinfo->in_error_pkt = TRUE;
1547
1548         /* Dissect the contained packet.
1549            Catch ReportedBoundsError, and do nothing if we see it,
1550            because it's not an error if the contained packet is short;
1551            there's no guarantee that all of it was included.
1552
1553            XXX - should catch BoundsError, and re-throw it after cleaning
1554            up. */
1555         next_tvb = tvb_new_subset(tvb, 8, -1, -1);
1556         TRY {
1557           call_dissector(ip_handle, next_tvb, pinfo, icmp_tree);
1558         }
1559         CATCH(ReportedBoundsError) {
1560           ; /* do nothing */
1561         }
1562         ENDTRY;
1563
1564         /* Restore the "we're inside an error packet" flag. */
1565         pinfo->in_error_pkt = save_in_error_pkt;
1566
1567         /* Restore the addresses. */
1568         pinfo->dl_src = save_dl_src;
1569         pinfo->dl_dst = save_dl_dst;
1570         pinfo->net_src = save_net_src;
1571         pinfo->net_dst = save_net_dst;
1572         pinfo->src = save_src;
1573         pinfo->dst = save_dst;
1574         break;
1575
1576       case ICMP_ECHOREPLY:
1577       case ICMP_ECHO:
1578         call_dissector(data_handle,tvb_new_subset(tvb, 8,-1,tvb_reported_length_remaining(tvb,8)), pinfo, icmp_tree);
1579         break;
1580
1581       case ICMP_RTRADVERT:
1582         if (addr_entry_size == 2) {
1583           for (i = 0; i < num_addrs; i++) {
1584             proto_tree_add_text(icmp_tree, tvb, 8 + (i*8), 4,
1585               "Router address: %s",
1586               ip_to_str(tvb_get_ptr(tvb, 8 + (i*8), 4)));
1587             proto_tree_add_text(icmp_tree, tvb, 12 + (i*8), 4,
1588               "Preference level: %d", tvb_get_ntohl(tvb, 12 + (i*8)));
1589           }
1590           if (icmp_code == 16) {
1591                 /* Mobile-Ip */
1592                 dissect_mip_extensions(tvb,8 + i*8, pinfo, icmp_tree);
1593           }
1594         } else
1595           call_dissector(data_handle,tvb_new_subset(tvb, 8,-1,tvb_reported_length_remaining(tvb,8)), pinfo, icmp_tree);
1596         break;
1597
1598       case ICMP_TSTAMP:
1599       case ICMP_TSTAMPREPLY:
1600         proto_tree_add_text(icmp_tree, tvb, 8, 4, "Originate timestamp: %u",
1601           tvb_get_ntohl(tvb, 8));
1602         proto_tree_add_text(icmp_tree, tvb, 12, 4, "Receive timestamp: %u",
1603           tvb_get_ntohl(tvb, 12));
1604         proto_tree_add_text(icmp_tree, tvb, 16, 4, "Transmit timestamp: %u",
1605           tvb_get_ntohl(tvb, 16));
1606         break;
1607
1608     case ICMP_MASKREQ:
1609     case ICMP_MASKREPLY:
1610         proto_tree_add_text(icmp_tree, tvb, 8, 4, "Address mask: %s (0x%08x)",
1611           ip_to_str(tvb_get_ptr(tvb, 8, 4)), tvb_get_ntohl(tvb, 8));
1612         break;
1613     }
1614   }
1615 }
1616
1617 void
1618 proto_register_ip(void)
1619 {
1620         static hf_register_info hf[] = {
1621
1622                 { &hf_ip_version,
1623                 { "Version",            "ip.version", FT_UINT8, BASE_DEC, NULL, 0x0,
1624                         "", HFILL }},
1625
1626                 { &hf_ip_hdr_len,
1627                 { "Header Length",      "ip.hdr_len", FT_UINT8, BASE_DEC, NULL, 0x0,
1628                         "", HFILL }},
1629
1630                 { &hf_ip_dsfield,
1631                 { "Differentiated Services field",      "ip.dsfield", FT_UINT8, BASE_DEC, NULL, 0x0,
1632                         "", HFILL }},
1633
1634                 { &hf_ip_dsfield_dscp,
1635                 { "Differentiated Services Codepoint",  "ip.dsfield.dscp", FT_UINT8, BASE_HEX,
1636                         VALS(dscp_vals), IPDSFIELD_DSCP_MASK,
1637                         "", HFILL }},
1638
1639                 { &hf_ip_dsfield_ect,
1640                 { "ECN-Capable Transport (ECT)",        "ip.dsfield.ect", FT_UINT8, BASE_DEC, NULL,
1641                         IPDSFIELD_ECT_MASK,
1642                         "", HFILL }},
1643
1644                 { &hf_ip_dsfield_ce,
1645                 { "ECN-CE",     "ip.dsfield.ce", FT_UINT8, BASE_DEC, NULL,
1646                         IPDSFIELD_CE_MASK,
1647                         "", HFILL }},
1648
1649                 { &hf_ip_tos,
1650                 { "Type of Service",    "ip.tos", FT_UINT8, BASE_DEC, NULL, 0x0,
1651                         "", HFILL }},
1652
1653                 { &hf_ip_tos_precedence,
1654                 { "Precedence",         "ip.tos.precedence", FT_UINT8, BASE_DEC, VALS(precedence_vals),
1655                         IPTOS_PREC_MASK,
1656                         "", HFILL }},
1657
1658                 { &hf_ip_tos_delay,
1659                 { "Delay",              "ip.tos.delay", FT_BOOLEAN, 8, TFS(&tos_set_low),
1660                         IPTOS_LOWDELAY,
1661                         "", HFILL }},
1662
1663                 { &hf_ip_tos_throughput,
1664                 { "Throughput",         "ip.tos.throughput", FT_BOOLEAN, 8, TFS(&tos_set_high),
1665                         IPTOS_THROUGHPUT,
1666                         "", HFILL }},
1667
1668                 { &hf_ip_tos_reliability,
1669                 { "Reliability",        "ip.tos.reliability", FT_BOOLEAN, 8, TFS(&tos_set_high),
1670                         IPTOS_RELIABILITY,
1671                         "", HFILL }},
1672
1673                 { &hf_ip_tos_cost,
1674                 { "Cost",               "ip.tos.cost", FT_BOOLEAN, 8, TFS(&tos_set_low),
1675                         IPTOS_LOWCOST,
1676                         "", HFILL }},
1677
1678                 { &hf_ip_len,
1679                 { "Total Length",       "ip.len", FT_UINT16, BASE_DEC, NULL, 0x0,
1680                         "", HFILL }},
1681
1682                 { &hf_ip_id,
1683                 { "Identification",     "ip.id", FT_UINT16, BASE_HEX, NULL, 0x0,
1684                         "", HFILL }},
1685
1686                 { &hf_ip_dst,
1687                 { "Destination",        "ip.dst", FT_IPv4, BASE_NONE, NULL, 0x0,
1688                         "", HFILL }},
1689
1690                 { &hf_ip_src,
1691                 { "Source",             "ip.src", FT_IPv4, BASE_NONE, NULL, 0x0,
1692                         "", HFILL }},
1693
1694                 { &hf_ip_addr,
1695                 { "Source or Destination Address", "ip.addr", FT_IPv4, BASE_NONE, NULL, 0x0,
1696                         "", HFILL }},
1697
1698                 { &hf_ip_flags,
1699                 { "Flags",              "ip.flags", FT_UINT8, BASE_HEX, NULL, 0x0,
1700                         "", HFILL }},
1701
1702                 { &hf_ip_flags_df,
1703                 { "Don't fragment",     "ip.flags.df", FT_BOOLEAN, 4, TFS(&flags_set_truth), IP_DF>>12,
1704                         "", HFILL }},
1705
1706                 { &hf_ip_flags_mf,
1707                 { "More fragments",     "ip.flags.mf", FT_BOOLEAN, 4, TFS(&flags_set_truth), IP_MF>>12,
1708                         "", HFILL }},
1709
1710                 { &hf_ip_frag_offset,
1711                 { "Fragment offset",    "ip.frag_offset", FT_UINT16, BASE_DEC, NULL, 0x0,
1712                         "", HFILL }},
1713
1714                 { &hf_ip_ttl,
1715                 { "Time to live",       "ip.ttl", FT_UINT8, BASE_DEC, NULL, 0x0,
1716                         "", HFILL }},
1717
1718                 { &hf_ip_proto,
1719                 { "Protocol",           "ip.proto", FT_UINT8, BASE_HEX, NULL, 0x0,
1720                         "", HFILL }},
1721
1722                 { &hf_ip_checksum,
1723                 { "Header checksum",    "ip.checksum", FT_UINT16, BASE_HEX, NULL, 0x0,
1724                         "", HFILL }},
1725
1726                 { &hf_ip_checksum_bad,
1727                 { "Bad Header checksum",        "ip.checksum_bad", FT_BOOLEAN, BASE_NONE, NULL, 0x0,
1728                         "", HFILL }},
1729
1730                 { &hf_ip_fragment_overlap,
1731                 { "Fragment overlap",   "ip.fragment.overlap", FT_BOOLEAN, BASE_NONE, NULL, 0x0,
1732                         "Fragment overlaps with other fragments", HFILL }},
1733
1734                 { &hf_ip_fragment_overlap_conflict,
1735                 { "Conflicting data in fragment overlap",       "ip.fragment.overlap.conflict", FT_BOOLEAN, BASE_NONE, NULL, 0x0,
1736                         "Overlapping fragments contained conflicting data", HFILL }},
1737
1738                 { &hf_ip_fragment_multiple_tails,
1739                 { "Multiple tail fragments found",      "ip.fragment.multipletails", FT_BOOLEAN, BASE_NONE, NULL, 0x0,
1740                         "Several tails were found when defragmenting the packet", HFILL }},
1741
1742                 { &hf_ip_fragment_too_long_fragment,
1743                 { "Fragment too long",  "ip.fragment.toolongfragment", FT_BOOLEAN, BASE_NONE, NULL, 0x0,
1744                         "Fragment contained data past end of packet", HFILL }},
1745
1746                 { &hf_ip_fragment_error,
1747                 { "Defragmentation error", "ip.fragment.error", FT_NONE, BASE_NONE, NULL, 0x0,
1748                         "Defragmentation error due to illegal fragments", HFILL }},
1749
1750                 { &hf_ip_fragment,
1751                 { "IP Fragment", "ip.fragment", FT_NONE, BASE_NONE, NULL, 0x0,
1752                         "IP Fragment", HFILL }},
1753
1754                 { &hf_ip_fragments,
1755                 { "IP Fragments", "ip.fragments", FT_NONE, BASE_NONE, NULL, 0x0,
1756                         "IP Fragments", HFILL }},
1757         };
1758         static gint *ett[] = {
1759                 &ett_ip,
1760                 &ett_ip_dsfield,
1761                 &ett_ip_tos,
1762                 &ett_ip_off,
1763                 &ett_ip_options,
1764                 &ett_ip_option_sec,
1765                 &ett_ip_option_route,
1766                 &ett_ip_option_timestamp,
1767                 &ett_ip_fragments,
1768                 &ett_ip_fragment,
1769         };
1770         module_t *ip_module;
1771
1772         proto_ip = proto_register_protocol("Internet Protocol", "IP", "ip");
1773         proto_register_field_array(proto_ip, hf, array_length(hf));
1774         proto_register_subtree_array(ett, array_length(ett));
1775
1776         /* subdissector code */
1777         ip_dissector_table = register_dissector_table("ip.proto");
1778
1779         /* Register configuration options */
1780         ip_module = prefs_register_protocol(proto_ip, NULL);
1781         prefs_register_bool_preference(ip_module, "decode_tos_as_diffserv",
1782             "Decode IPv4 TOS field as DiffServ field",
1783             "Whether the IPv4 type-of-service field should be decoded as a Differentiated Services field",
1784             &g_ip_dscp_actif);
1785         prefs_register_bool_preference(ip_module, "defragment",
1786                 "Reassemble fragmented IP datagrams",
1787                 "Whether fragmented IP datagrams should be reassembled",
1788                 &ip_defragment);
1789         prefs_register_bool_preference(ip_module, "ip_summary_in_tree",
1790             "Show IP summary in protocol tree",
1791             "Whether the IP summary line should be shown in the protocol tree",
1792             &ip_summary_in_tree);
1793
1794         register_dissector("ip", dissect_ip, proto_ip);
1795         register_init_routine(ip_defragment_init);
1796 }
1797
1798 void
1799 proto_reg_handoff_ip(void)
1800 {
1801         data_handle = find_dissector("data");
1802         dissector_add("ethertype", ETHERTYPE_IP, dissect_ip, proto_ip);
1803         dissector_add("ppp.protocol", PPP_IP, dissect_ip, proto_ip);
1804         dissector_add("ppp.protocol", ETHERTYPE_IP, dissect_ip, proto_ip);
1805         dissector_add("gre.proto", ETHERTYPE_IP, dissect_ip, proto_ip);
1806         dissector_add("gre.proto", GRE_WCCP, dissect_ip, proto_ip);
1807         dissector_add("llc.dsap", SAP_IP, dissect_ip, proto_ip);
1808         dissector_add("ip.proto", IP_PROTO_IPIP, dissect_ip, proto_ip);
1809         dissector_add("null.type", BSD_AF_INET, dissect_ip, proto_ip);
1810         dissector_add("chdlctype", ETHERTYPE_IP, dissect_ip, proto_ip);
1811         dissector_add("fr.ietf", NLPID_IP, dissect_ip, proto_ip);
1812 }
1813
1814 void
1815 proto_register_icmp(void)
1816 {
1817   static hf_register_info hf[] = {
1818     
1819     { &hf_icmp_type,
1820       { "Type",         "icmp.type",            FT_UINT8, BASE_DEC,     NULL, 0x0,
1821         "", HFILL }},
1822
1823     { &hf_icmp_code,
1824       { "Code",         "icmp.code",            FT_UINT8, BASE_HEX,     NULL, 0x0,
1825         "", HFILL }},    
1826
1827     { &hf_icmp_checksum,
1828       { "Checksum",     "icmp.checksum",        FT_UINT16, BASE_HEX,    NULL, 0x0,
1829         "", HFILL }},
1830
1831     { &hf_icmp_checksum_bad,
1832       { "Bad Checksum", "icmp.checksum_bad",    FT_BOOLEAN, BASE_NONE,  NULL, 0x0,
1833         "", HFILL }},
1834
1835     { &hf_icmp_mip_type,
1836       { "Extension Type", "icmp.mip.type",      FT_UINT8, BASE_DEC,
1837         VALS(mip_extensions), 0x0,"", HFILL}},
1838
1839     { &hf_icmp_mip_length,
1840       { "Length", "icmp.mip.length",            FT_UINT8, BASE_DEC, NULL, 0x0,
1841         "", HFILL}},
1842
1843     { &hf_icmp_mip_prefix_length,
1844       { "Prefix Length", "icmp.mip.prefixlength",  FT_UINT8, BASE_DEC, NULL, 0x0,
1845         "", HFILL}},
1846
1847     { &hf_icmp_mip_seq,
1848       { "Sequence Number", "icmp.mip.seq",      FT_UINT16, BASE_DEC, NULL, 0x0,
1849         "", HFILL}},
1850
1851     { &hf_icmp_mip_life,
1852       { "Registration Lifetime", "icmp.mip.life",  FT_UINT16, BASE_DEC, NULL, 0x0,
1853         "", HFILL}},
1854
1855     { &hf_icmp_mip_flags,
1856       { "Flags", "icmp.mip.flags",            FT_UINT8, BASE_HEX, NULL, 0x0,
1857         "", HFILL}},
1858
1859     { &hf_icmp_mip_r,
1860       { "Registration Required", "icmp.mip.r", FT_BOOLEAN, 8, NULL, 128,
1861         "Registration with this FA is required", HFILL }},
1862
1863     { &hf_icmp_mip_b,
1864       { "Busy", "icmp.mip.b", FT_BOOLEAN, 8, NULL, 64,
1865         "This FA will not accept requests at this time", HFILL }},
1866
1867     { &hf_icmp_mip_h,
1868       { "Home Agent", "icmp.mip.h", FT_BOOLEAN, 8, NULL, 32,
1869         "Home Agent Services Offered", HFILL }},
1870
1871     { &hf_icmp_mip_f,
1872       { "Foreign Agent", "icmp.mip.f", FT_BOOLEAN, 8, NULL, 16,
1873         "Foreign Agent Services Offered", HFILL }},
1874
1875     { &hf_icmp_mip_m,
1876       { "Minimal Encapsulation", "icmp.mip.m", FT_BOOLEAN, 8, NULL, 8,
1877         "Minimal encapsulation tunneled datagram support", HFILL }},
1878
1879     { &hf_icmp_mip_g,
1880       { "GRE", "icmp.mip.g", FT_BOOLEAN, 8, NULL, 4,
1881         "GRE encapsulated tunneled datagram support", HFILL }},
1882
1883     { &hf_icmp_mip_v,
1884       { "VJ Comp", "icmp.mip.v", FT_BOOLEAN, 8, NULL, 2,
1885         "Van Jacobson Header Compression Support", HFILL }},
1886
1887     { &hf_icmp_mip_res,
1888       { "Reserved", "icmp.mip.res", FT_BOOLEAN, 8, NULL, 1,
1889         "Reserved", HFILL }},
1890
1891     { &hf_icmp_mip_reserved,
1892       { "Reserved", "icmp.mip.reserved",     FT_UINT8, BASE_HEX, NULL, 0x0,
1893         "", HFILL}},
1894
1895     { &hf_icmp_mip_coa,
1896       { "Care-Of-Address", "icmp.mip.coa",    FT_IPv4, BASE_NONE, NULL, 0x0,
1897         "", HFILL}},
1898
1899     { &hf_icmp_mip_challenge,
1900       { "Challenge", "icmp.mip.challenge",    FT_BYTES, BASE_NONE, NULL, 0x0,
1901         "", HFILL}},
1902   };
1903   static gint *ett[] = {
1904     &ett_icmp,
1905         &ett_icmp_mip,
1906         &ett_icmp_mip_flags
1907   };
1908   
1909   proto_icmp = proto_register_protocol("Internet Control Message Protocol", 
1910                                        "ICMP", "icmp");
1911   proto_register_field_array(proto_icmp, hf, array_length(hf));
1912   proto_register_subtree_array(ett, array_length(ett));
1913 }
1914
1915 void
1916 proto_reg_handoff_icmp(void)
1917 {
1918   /*
1919    * Get handle for the IP dissector.
1920    */
1921   ip_handle = find_dissector("ip");
1922
1923   dissector_add("ip.proto", IP_PROTO_ICMP, dissect_icmp, proto_icmp);
1924 }