5ed582f86c03a90cb0781e853671b0f6f923068a
[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.115 2000/12/29 04:16:57 guy Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@zing.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * 
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  * 
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #ifdef HAVE_SYS_TYPES_H
31 # include <sys/types.h>
32 #endif
33
34 #ifdef HAVE_NETINET_IN_H
35 # include <netinet/in.h>
36 #endif
37
38 #include <stdio.h>
39 #include <string.h>
40 #include <glib.h>
41
42 #ifdef NEED_SNPRINTF_H
43 # include "snprintf.h"
44 #endif
45
46 #include "packet.h"
47 #include "resolv.h"
48 #include "prefs.h"
49 #include "etypes.h"
50 #include "ppptypes.h"
51 #include "llcsaps.h"
52 #include "aftypes.h"
53 #include "packet-ip.h"
54 #include "packet-ipsec.h"
55 #include "in_cksum.h"
56
57 static void dissect_icmp(tvbuff_t *, packet_info *, proto_tree *);
58 static void dissect_igmp(tvbuff_t *, packet_info *, proto_tree *);
59
60 /* Decode the old IPv4 TOS field as the DiffServ DS Field */
61 gboolean g_ip_dscp_actif = TRUE;
62
63 static int proto_ip = -1;
64 static int hf_ip_version = -1;
65 static int hf_ip_hdr_len = -1;
66 static int hf_ip_dsfield = -1;
67 static int hf_ip_dsfield_dscp = -1;
68 static int hf_ip_dsfield_ect = -1;
69 static int hf_ip_dsfield_ce = -1;
70 static int hf_ip_tos = -1;
71 static int hf_ip_tos_precedence = -1;
72 static int hf_ip_tos_delay = -1;
73 static int hf_ip_tos_throughput = -1;
74 static int hf_ip_tos_reliability = -1;
75 static int hf_ip_tos_cost = -1;
76 static int hf_ip_len = -1;
77 static int hf_ip_id = -1;
78 static int hf_ip_dst = -1;
79 static int hf_ip_src = -1;
80 static int hf_ip_addr = -1;
81 static int hf_ip_flags = -1;
82 static int hf_ip_flags_df = -1;
83 static int hf_ip_flags_mf = -1;
84 static int hf_ip_frag_offset = -1;
85 static int hf_ip_ttl = -1;
86 static int hf_ip_proto = -1;
87 static int hf_ip_checksum = -1;
88
89 static gint ett_ip = -1;
90 static gint ett_ip_dsfield = -1;
91 static gint ett_ip_tos = -1;
92 static gint ett_ip_off = -1;
93 static gint ett_ip_options = -1;
94 static gint ett_ip_option_sec = -1;
95 static gint ett_ip_option_route = -1;
96 static gint ett_ip_option_timestamp = -1;
97
98 /* Used by IPv6 as well, so not static */
99 dissector_table_t ip_dissector_table;
100
101 static int proto_igmp = -1;
102 static int hf_igmp_version = -1;
103 static int hf_igmp_type = -1;
104 static int hf_igmp_unused = -1;
105 static int hf_igmp_checksum = -1;
106 static int hf_igmp_group = -1;
107
108 static gint ett_igmp = -1;
109
110 static int proto_icmp = -1;
111 static int hf_icmp_type = -1;
112 static int hf_icmp_code = -1;
113 static int hf_icmp_checksum = -1;
114
115 static gint ett_icmp = -1;
116
117 /* ICMP definitions */
118
119 #define ICMP_ECHOREPLY     0
120 #define ICMP_UNREACH       3
121 #define ICMP_SOURCEQUENCH  4
122 #define ICMP_REDIRECT      5
123 #define ICMP_ECHO          8
124 #define ICMP_RTRADVERT     9
125 #define ICMP_RTRSOLICIT   10
126 #define ICMP_TIMXCEED     11
127 #define ICMP_PARAMPROB    12
128 #define ICMP_TSTAMP       13
129 #define ICMP_TSTAMPREPLY  14
130 #define ICMP_IREQ         15
131 #define ICMP_IREQREPLY    16
132 #define ICMP_MASKREQ      17
133 #define ICMP_MASKREPLY    18
134
135 /* ICMP UNREACHABLE */
136
137 #define ICMP_NET_UNREACH        0       /* Network Unreachable */
138 #define ICMP_HOST_UNREACH       1       /* Host Unreachable */
139 #define ICMP_PROT_UNREACH       2       /* Protocol Unreachable */
140 #define ICMP_PORT_UNREACH       3       /* Port Unreachable */
141 #define ICMP_FRAG_NEEDED        4       /* Fragmentation Needed/DF set */
142 #define ICMP_SR_FAILED          5       /* Source Route failed */
143 #define ICMP_NET_UNKNOWN        6
144 #define ICMP_HOST_UNKNOWN       7
145 #define ICMP_HOST_ISOLATED      8
146 #define ICMP_NET_ANO            9
147 #define ICMP_HOST_ANO           10
148 #define ICMP_NET_UNR_TOS        11
149 #define ICMP_HOST_UNR_TOS       12
150 #define ICMP_PKT_FILTERED       13      /* Packet filtered */
151 #define ICMP_PREC_VIOLATION     14      /* Precedence violation */
152 #define ICMP_PREC_CUTOFF        15      /* Precedence cut off */
153
154
155 /* IGMP structs and definitions */
156 typedef struct _e_igmp {
157   guint8  igmp_v_t; /* combines igmp_v and igmp_t */
158   guint8  igmp_unused;
159   guint16 igmp_cksum;
160   guint32 igmp_gaddr;
161 } e_igmp;
162
163 #define IGMP_M_QRY     0x01
164 #define IGMP_V1_M_RPT  0x02
165 #define IGMP_V2_LV_GRP 0x07
166 #define IGMP_DVMRP     0x03
167 #define IGMP_PIM       0x04
168 #define IGMP_V2_M_RPT  0x06
169 #define IGMP_MTRC_RESP 0x1e
170 #define IGMP_MTRC      0x1f
171
172 /* IP structs and definitions */
173
174 typedef struct _e_ip 
175    {
176    guint8  ip_v_hl; /* combines ip_v and ip_hl */
177    guint8  ip_tos;
178    guint16 ip_len;
179    guint16 ip_id;
180    guint16 ip_off;
181    guint8  ip_ttl;
182    guint8  ip_p;
183    guint16 ip_sum;
184    guint32 ip_src;
185    guint32 ip_dst;
186    } e_ip;
187
188 /* Offsets of fields within an IP header. */
189 #define IPH_V_HL        0
190 #define IPH_TOS         1
191 #define IPH_LEN         2
192 #define IPH_ID          4
193 #define IPH_TTL         6
194 #define IPH_OFF         8
195 #define IPH_P           9
196 #define IPH_SUM         10
197 #define IPH_SRC         12
198 #define IPH_DST         16
199
200 /* Minimum IP header length. */
201 #define IPH_MIN_LEN     20
202
203 /* IP flags. */
204 #define IP_CE           0x8000          /* Flag: "Congestion"           */
205 #define IP_DF           0x4000          /* Flag: "Don't Fragment"       */
206 #define IP_MF           0x2000          /* Flag: "More Fragments"       */
207 #define IP_OFFSET       0x1FFF          /* "Fragment Offset" part       */
208
209 /* Differentiated Services Field. See RFCs 2474, 2597 and 2598. */
210 #define IPDSFIELD_DSCP_MASK     0xFC
211 #define IPDSFIELD_ECN_MASK     0x03
212 #define IPDSFIELD_DSCP_SHIFT    2
213 #define IPDSFIELD_DSCP(dsfield) (((dsfield)&IPDSFIELD_DSCP_MASK)>>IPDSFIELD_DSCP_SHIFT)
214 #define IPDSFIELD_ECN(dsfield)  ((dsfield)&IPDSFIELD_ECN_MASK)
215 #define IPDSFIELD_DSCP_DEFAULT  0x00
216 #define IPDSFIELD_DSCP_CS1      0x08
217 #define IPDSFIELD_DSCP_CS2      0x10
218 #define IPDSFIELD_DSCP_CS3      0x18
219 #define IPDSFIELD_DSCP_CS4      0x20
220 #define IPDSFIELD_DSCP_CS5      0x28
221 #define IPDSFIELD_DSCP_CS6      0x30
222 #define IPDSFIELD_DSCP_CS7      0x38
223 #define IPDSFIELD_DSCP_AF11     0x0A
224 #define IPDSFIELD_DSCP_AF12     0x0C
225 #define IPDSFIELD_DSCP_AF13     0x0E
226 #define IPDSFIELD_DSCP_AF21     0x12
227 #define IPDSFIELD_DSCP_AF22     0x14
228 #define IPDSFIELD_DSCP_AF23     0x16
229 #define IPDSFIELD_DSCP_AF31     0x1A
230 #define IPDSFIELD_DSCP_AF32     0x1C
231 #define IPDSFIELD_DSCP_AF33     0x1E
232 #define IPDSFIELD_DSCP_AF41     0x22
233 #define IPDSFIELD_DSCP_AF42     0x24
234 #define IPDSFIELD_DSCP_AF43     0x26
235 #define IPDSFIELD_DSCP_EF       0x2E
236 #define IPDSFIELD_ECT_MASK      0x02
237 #define IPDSFIELD_CE_MASK       0x01
238
239 /* IP TOS, superseded by the DS Field, RFC 2474. */
240 #define IPTOS_TOS_MASK    0x1E
241 #define IPTOS_TOS(tos)    ((tos) & IPTOS_TOS_MASK)
242 #define IPTOS_NONE        0x00
243 #define IPTOS_LOWCOST     0x02
244 #define IPTOS_RELIABILITY 0x04
245 #define IPTOS_THROUGHPUT  0x08
246 #define IPTOS_LOWDELAY    0x10
247 #define IPTOS_SECURITY    0x1E
248
249 #define IPTOS_PREC_MASK         0xE0
250 #define IPTOS_PREC_SHIFT        5
251 #define IPTOS_PREC(tos)         (((tos)&IPTOS_PREC_MASK)>>IPTOS_PREC_SHIFT)
252 #define IPTOS_PREC_NETCONTROL           7
253 #define IPTOS_PREC_INTERNETCONTROL      6
254 #define IPTOS_PREC_CRITIC_ECP           5
255 #define IPTOS_PREC_FLASHOVERRIDE        4
256 #define IPTOS_PREC_FLASH                3
257 #define IPTOS_PREC_IMMEDIATE            2
258 #define IPTOS_PREC_PRIORITY             1
259 #define IPTOS_PREC_ROUTINE              0
260
261 /* IP options */
262 #define IPOPT_COPY              0x80
263
264 #define IPOPT_CONTROL           0x00
265 #define IPOPT_RESERVED1         0x20
266 #define IPOPT_MEASUREMENT       0x40
267 #define IPOPT_RESERVED2         0x60
268
269 #define IPOPT_END       (0 |IPOPT_CONTROL)
270 #define IPOPT_NOOP      (1 |IPOPT_CONTROL)
271 #define IPOPT_SEC       (2 |IPOPT_CONTROL|IPOPT_COPY)
272 #define IPOPT_LSRR      (3 |IPOPT_CONTROL|IPOPT_COPY)
273 #define IPOPT_TIMESTAMP (4 |IPOPT_MEASUREMENT)
274 #define IPOPT_RR        (7 |IPOPT_CONTROL)
275 #define IPOPT_SID       (8 |IPOPT_CONTROL|IPOPT_COPY)
276 #define IPOPT_SSRR      (9 |IPOPT_CONTROL|IPOPT_COPY)
277 #define IPOPT_RA        (20|IPOPT_CONTROL|IPOPT_COPY)
278
279 /* IP option lengths */
280 #define IPOLEN_SEC      11
281 #define IPOLEN_LSRR_MIN 3
282 #define IPOLEN_TIMESTAMP_MIN 5
283 #define IPOLEN_RR_MIN   3
284 #define IPOLEN_SID      4
285 #define IPOLEN_SSRR_MIN 3
286 #define IPOLEN_RA       4
287
288 #define IPSEC_UNCLASSIFIED      0x0000
289 #define IPSEC_CONFIDENTIAL      0xF135
290 #define IPSEC_EFTO              0x789A
291 #define IPSEC_MMMM              0xBC4D
292 #define IPSEC_RESTRICTED        0xAF13
293 #define IPSEC_SECRET            0xD788
294 #define IPSEC_TOPSECRET         0x6BC5
295 #define IPSEC_RESERVED1         0x35E2
296 #define IPSEC_RESERVED2         0x9AF1
297 #define IPSEC_RESERVED3         0x4D78
298 #define IPSEC_RESERVED4         0x24BD
299 #define IPSEC_RESERVED5         0x135E
300 #define IPSEC_RESERVED6         0x89AF
301 #define IPSEC_RESERVED7         0xC4D6
302 #define IPSEC_RESERVED8         0xE26B
303
304 #define IPOPT_TS_TSONLY         0               /* timestamps only */
305 #define IPOPT_TS_TSANDADDR      1               /* timestamps and addresses */
306 #define IPOPT_TS_PRESPEC        3               /* specified modules only */
307
308
309 void
310 capture_ip(const u_char *pd, int offset, packet_counts *ld) {
311   if (!BYTES_ARE_IN_FRAME(offset, IPH_MIN_LEN)) {
312     ld->other++;
313     return;
314   }
315   switch (pd[offset + 9]) {
316     case IP_PROTO_SCTP:
317       ld->sctp++;
318       break;
319     case IP_PROTO_TCP:
320       ld->tcp++;
321       break;
322     case IP_PROTO_UDP:
323       ld->udp++;
324       break;
325     case IP_PROTO_ICMP:
326       ld->icmp++;
327       break;
328     case IP_PROTO_OSPF:
329       ld->ospf++;
330       break;
331     case IP_PROTO_GRE:
332       ld->gre++;
333       break;
334     case IP_PROTO_VINES:
335       ld->vines++;
336       break;
337     default:
338       ld->other++;
339   }
340 }
341
342 static void
343 dissect_ipopt_security(const ip_tcp_opt *optp, tvbuff_t *tvb, int offset,
344                         guint optlen, frame_data *fd, proto_tree *opt_tree)
345 {
346   proto_tree *field_tree = NULL;
347   proto_item *tf;
348   guint      val;
349   static const value_string secl_vals[] = {
350     {IPSEC_UNCLASSIFIED, "Unclassified"},
351     {IPSEC_CONFIDENTIAL, "Confidential"},
352     {IPSEC_EFTO,         "EFTO"        },
353     {IPSEC_MMMM,         "MMMM"        },
354     {IPSEC_RESTRICTED,   "Restricted"  },
355     {IPSEC_SECRET,       "Secret"      },
356     {IPSEC_TOPSECRET,    "Top secret"  },
357     {IPSEC_RESERVED1,    "Reserved"    },
358     {IPSEC_RESERVED2,    "Reserved"    },
359     {IPSEC_RESERVED3,    "Reserved"    },
360     {IPSEC_RESERVED4,    "Reserved"    },
361     {IPSEC_RESERVED5,    "Reserved"    },
362     {IPSEC_RESERVED6,    "Reserved"    },
363     {IPSEC_RESERVED7,    "Reserved"    },
364     {IPSEC_RESERVED8,    "Reserved"    },
365     {0,                  NULL          } };
366
367   tf = proto_tree_add_text(opt_tree, tvb, offset,      optlen, "%s:", optp->name);
368   field_tree = proto_item_add_subtree(tf, *optp->subtree_index);
369   offset += 2;
370
371   val = tvb_get_ntohs(tvb, offset);
372   proto_tree_add_text(field_tree, tvb, offset,       2,
373               "Security: %s", val_to_str(val, secl_vals, "Unknown (0x%x)"));
374   offset += 2;
375
376   val = tvb_get_ntohs(tvb, offset);
377   proto_tree_add_text(field_tree, tvb, offset,         2,
378               "Compartments: %u", val);
379   offset += 2;
380
381   proto_tree_add_text(field_tree, tvb, offset,         2,
382               "Handling restrictions: %c%c",
383               tvb_get_guint8(tvb, offset),
384               tvb_get_guint8(tvb, offset + 1));
385   offset += 2;
386
387   proto_tree_add_text(field_tree, tvb, offset,         3,
388               "Transmission control code: %c%c%c",
389               tvb_get_guint8(tvb, offset),
390               tvb_get_guint8(tvb, offset + 1),
391               tvb_get_guint8(tvb, offset + 2));
392 }
393
394 static void
395 dissect_ipopt_route(const ip_tcp_opt *optp, tvbuff_t *tvb, int offset,
396                         guint optlen, frame_data *fd, proto_tree *opt_tree)
397 {
398   proto_tree *field_tree = NULL;
399   proto_item *tf;
400   int ptr;
401   int optoffset = 0;
402   struct in_addr addr;
403
404   tf = proto_tree_add_text(opt_tree, tvb, offset,      optlen, "%s (%u bytes)",
405                                 optp->name, optlen);
406   field_tree = proto_item_add_subtree(tf, *optp->subtree_index);
407
408   optoffset += 2;       /* skip past type and length */
409   optlen -= 2;          /* subtract size of type and length */
410
411   ptr = tvb_get_guint8(tvb, offset + optoffset);
412   proto_tree_add_text(field_tree, tvb, offset + optoffset, 1,
413               "Pointer: %d%s", ptr,
414               ((ptr < 4) ? " (points before first address)" :
415                ((ptr & 3) ? " (points to middle of address)" : "")));
416   optoffset++;
417   optlen--;
418   ptr--;        /* ptr is 1-origin */
419
420   while (optlen > 0) {
421     if (optlen < 4) {
422       proto_tree_add_text(field_tree, tvb, offset,      optlen,
423         "(suboption would go past end of option)");
424       break;
425     }
426
427     /* Avoids alignment problems on many architectures. */
428     tvb_memcpy(tvb, (guint8 *)&addr, offset + optoffset, sizeof(addr));
429
430     proto_tree_add_text(field_tree, tvb, offset + optoffset, 4,
431               "%s%s",
432               ((addr.s_addr == 0) ? "-" : (char *)get_hostname(addr.s_addr)),
433               ((optoffset == ptr) ? " <- (current)" : ""));
434     optoffset += 4;
435     optlen -= 4;
436   }
437 }
438
439 static void
440 dissect_ipopt_sid(const ip_tcp_opt *optp, tvbuff_t *tvb, int offset,
441                         guint optlen, frame_data *fd, proto_tree *opt_tree)
442 {
443   proto_tree_add_text(opt_tree, tvb, offset,      optlen,
444     "%s: %u", optp->name, tvb_get_ntohs(tvb, offset + 2));
445   return;
446 }
447
448 static void
449 dissect_ipopt_timestamp(const ip_tcp_opt *optp, tvbuff_t *tvb,
450     int offset, guint optlen, frame_data *fd, proto_tree *opt_tree)
451 {
452   proto_tree *field_tree = NULL;
453   proto_item *tf;
454   int        ptr;
455   int        optoffset = 0;
456   int        flg;
457   static const value_string flag_vals[] = {
458     {IPOPT_TS_TSONLY,    "Time stamps only"                      },
459     {IPOPT_TS_TSANDADDR, "Time stamp and address"                },
460     {IPOPT_TS_PRESPEC,   "Time stamps for prespecified addresses"},
461     {0,                  NULL                                    } };
462   struct in_addr addr;
463   guint ts;
464
465   tf = proto_tree_add_text(opt_tree, tvb, offset,      optlen, "%s:", optp->name);
466   field_tree = proto_item_add_subtree(tf, *optp->subtree_index);
467
468   optoffset += 2;       /* skip past type and length */
469   optlen -= 2;          /* subtract size of type and length */
470
471   ptr = tvb_get_guint8(tvb, offset + optoffset);
472   proto_tree_add_text(field_tree, tvb, offset + optoffset, 1,
473               "Pointer: %d%s", ptr,
474               ((ptr < 5) ? " (points before first address)" :
475                (((ptr - 1) & 3) ? " (points to middle of address)" : "")));
476   optoffset++;
477   optlen--;
478   ptr--;        /* ptr is 1-origin */
479
480   flg = tvb_get_guint8(tvb, offset + optoffset);
481   proto_tree_add_text(field_tree, tvb, offset + optoffset,   1,
482         "Overflow: %u", flg >> 4);
483   flg &= 0xF;
484   proto_tree_add_text(field_tree, tvb, offset + optoffset, 1,
485         "Flag: %s", val_to_str(flg, flag_vals, "Unknown (0x%x)"));
486   optoffset++;
487   optlen--;
488
489   while (optlen > 0) {
490     if (flg == IPOPT_TS_TSANDADDR) {
491       if (optlen < 8) {
492         proto_tree_add_text(field_tree, tvb, offset + optoffset, optlen,
493           "(suboption would go past end of option)");
494         break;
495       }
496       tvb_memcpy(tvb, (char *)&addr, offset + optoffset, sizeof(addr));
497       ts = tvb_get_ntohl(tvb, offset + optoffset + 4);
498       optlen -= 8;
499       proto_tree_add_text(field_tree, tvb, offset + optoffset,      8,
500           "Address = %s, time stamp = %u",
501           ((addr.s_addr == 0) ? "-" :  (char *)get_hostname(addr.s_addr)),
502           ts);
503       optoffset += 8;
504     } else {
505       if (optlen < 4) {
506         proto_tree_add_text(field_tree, tvb, offset + optoffset, optlen,
507           "(suboption would go past end of option)");
508         break;
509       }
510       ts = tvb_get_ntohl(tvb, offset + optoffset);
511       optlen -= 4;
512       proto_tree_add_text(field_tree, tvb, offset + optoffset, 4,
513           "Time stamp = %u", ts);
514       optoffset += 4;
515     }
516   }
517 }
518
519 static void
520 dissect_ipopt_ra(const ip_tcp_opt *optp, tvbuff_t *tvb, int offset,
521                 guint optlen, frame_data *fd, proto_tree *opt_tree)
522 {
523   /* Router-Alert, as defined by RFC2113 */
524   int opt = tvb_get_ntohs(tvb, offset + 2);
525   static const value_string ra_opts[] = { 
526         {0, "Every router examines packet"} };
527   
528   proto_tree_add_text(opt_tree, tvb, offset,      optlen,
529     "%s: %s", optp->name, val_to_str(opt, ra_opts, "Unknown (%d)"));
530   return;
531 }
532
533 static const ip_tcp_opt ipopts[] = {
534   {
535     IPOPT_END,
536     "EOL",
537     NULL,
538     NO_LENGTH,
539     0,
540     NULL,
541   },
542   {
543     IPOPT_NOOP,
544     "NOP",
545     NULL,
546     NO_LENGTH,
547     0,
548     NULL,
549   },
550   {
551     IPOPT_SEC,
552     "Security",
553     &ett_ip_option_sec,
554     FIXED_LENGTH,
555     IPOLEN_SEC,
556     dissect_ipopt_security
557   },
558   {
559     IPOPT_SSRR,
560     "Strict source route",
561     &ett_ip_option_route,
562     VARIABLE_LENGTH,
563     IPOLEN_SSRR_MIN,
564     dissect_ipopt_route
565   },
566   {
567     IPOPT_LSRR,
568     "Loose source route",
569     &ett_ip_option_route,
570     VARIABLE_LENGTH,
571     IPOLEN_LSRR_MIN,
572     dissect_ipopt_route
573   },
574   {
575     IPOPT_RR,
576     "Record route",
577     &ett_ip_option_route,
578     VARIABLE_LENGTH,
579     IPOLEN_RR_MIN,
580     dissect_ipopt_route
581   },
582   {
583     IPOPT_SID,
584     "Stream identifier",
585     NULL,
586     FIXED_LENGTH,
587     IPOLEN_SID,
588     dissect_ipopt_sid
589   },
590   {
591     IPOPT_TIMESTAMP,
592     "Time stamp",
593     &ett_ip_option_timestamp,
594     VARIABLE_LENGTH,
595     IPOLEN_TIMESTAMP_MIN,
596     dissect_ipopt_timestamp
597   },
598   {
599     IPOPT_RA,
600     "Router Alert",
601     NULL,
602     FIXED_LENGTH,
603     IPOLEN_RA,
604     dissect_ipopt_ra
605   },
606 };
607
608 #define N_IP_OPTS       (sizeof ipopts / sizeof ipopts[0])
609
610 /* Dissect the IP or TCP options in a packet. */
611 void
612 dissect_ip_tcp_options(tvbuff_t *tvb, int offset, guint length,
613                         const ip_tcp_opt *opttab, int nopts, int eol,
614                         frame_data *fd, proto_tree *opt_tree)
615 {
616   u_char            opt;
617   const ip_tcp_opt *optp;
618   opt_len_type      len_type;
619   int               optlen;
620   char             *name;
621   char              name_str[7+1+1+2+2+1+1];    /* "Unknown (0x%02x)" */
622   void            (*dissect)(const struct ip_tcp_opt *, tvbuff_t *,
623                                 int, guint, frame_data *, proto_tree *);
624   guint             len;
625
626   while (length > 0) {
627     opt = tvb_get_guint8(tvb, offset);
628     for (optp = &opttab[0]; optp < &opttab[nopts]; optp++) {
629       if (optp->optcode == opt)
630         break;
631     }
632     if (optp == &opttab[nopts]) {
633       /* We assume that the only NO_LENGTH options are EOL and NOP options,
634          so that we can treat unknown options as VARIABLE_LENGTH with a
635          minimum of 2, and at least be able to move on to the next option
636          by using the length in the option. */
637       optp = NULL;      /* indicate that we don't know this option */
638       len_type = VARIABLE_LENGTH;
639       optlen = 2;
640       snprintf(name_str, sizeof name_str, "Unknown (0x%02x)", opt);
641       name = name_str;
642       dissect = NULL;
643     } else {
644       len_type = optp->len_type;
645       optlen = optp->optlen;
646       name = optp->name;
647       dissect = optp->dissect;
648     }
649     --length;      /* account for type byte */
650     if (len_type != NO_LENGTH) {
651       /* Option has a length. Is it in the packet? */
652       if (length == 0) {
653         /* Bogus - packet must at least include option code byte and
654            length byte! */
655         proto_tree_add_text(opt_tree, tvb, offset,      1,
656               "%s (length byte past end of options)", name);
657         return;
658       }
659       len = tvb_get_guint8(tvb, offset + 1);  /* total including type, len */
660       --length;    /* account for length byte */
661       if (len < 2) {
662         /* Bogus - option length is too short to include option code and
663            option length. */
664         proto_tree_add_text(opt_tree, tvb, offset,      2,
665               "%s (with too-short option length = %u byte%s)", name,
666               len, plurality(len, "", "s"));
667         return;
668       } else if (len - 2 > length) {
669         /* Bogus - option goes past the end of the header. */
670         proto_tree_add_text(opt_tree, tvb, offset,      length,
671               "%s (option length = %u byte%s says option goes past end of options)",
672               name, len, plurality(len, "", "s"));
673         return;
674       } else if (len_type == FIXED_LENGTH && len != optlen) {
675         /* Bogus - option length isn't what it's supposed to be for this
676            option. */
677         proto_tree_add_text(opt_tree, tvb, offset,      len,
678               "%s (with option length = %u byte%s; should be %u)", name,
679               len, plurality(len, "", "s"), optlen);
680         return;
681       } else if (len_type == VARIABLE_LENGTH && len < optlen) {
682         /* Bogus - option length is less than what it's supposed to be for
683            this option. */
684         proto_tree_add_text(opt_tree, tvb, offset,      len,
685               "%s (with option length = %u byte%s; should be >= %u)", name,
686               len, plurality(len, "", "s"), optlen);
687         return;
688       } else {
689         if (optp == NULL) {
690           proto_tree_add_text(opt_tree, tvb, offset,    len, "%s (%u byte%s)",
691                                 name, len, plurality(len, "", "s"));
692         } else {
693           if (dissect != NULL) {
694             /* Option has a dissector. */
695             (*dissect)(optp, tvb, offset,          len, fd, opt_tree);
696           } else {
697             /* Option has no data, hence no dissector. */
698             proto_tree_add_text(opt_tree, tvb, offset,  len, "%s", name);
699           }
700         }
701         len -= 2;       /* subtract size of type and length */
702         offset += 2 + len;
703       }
704       length -= len;
705     } else {
706       proto_tree_add_text(opt_tree, tvb, offset,      1, "%s", name);
707       offset += 1;
708     }
709     if (opt == eol)
710       break;
711   }
712 }
713
714 static const value_string dscp_vals[] = {
715                   { IPDSFIELD_DSCP_DEFAULT, "Default"               },
716                   { IPDSFIELD_DSCP_CS1,     "Class Selector 1"      },
717                   { IPDSFIELD_DSCP_CS2,     "Class Selector 2"      },
718                   { IPDSFIELD_DSCP_CS3,     "Class Selector 3"      },
719                   { IPDSFIELD_DSCP_CS4,     "Class Selector 4"      },
720                   { IPDSFIELD_DSCP_CS5,     "Class Selector 5"      },
721                   { IPDSFIELD_DSCP_CS6,     "Class Selector 6"      },
722                   { IPDSFIELD_DSCP_CS7,     "Class Selector 7"      },
723                   { IPDSFIELD_DSCP_AF11,    "Assured Forwarding 11" },
724                   { IPDSFIELD_DSCP_AF12,    "Assured Forwarding 12" },
725                   { IPDSFIELD_DSCP_AF13,    "Assured Forwarding 13" },
726                   { IPDSFIELD_DSCP_AF21,    "Assured Forwarding 21" },
727                   { IPDSFIELD_DSCP_AF22,    "Assured Forwarding 22" },
728                   { IPDSFIELD_DSCP_AF23,    "Assured Forwarding 23" },
729                   { IPDSFIELD_DSCP_AF31,    "Assured Forwarding 31" },
730                   { IPDSFIELD_DSCP_AF32,    "Assured Forwarding 32" },
731                   { IPDSFIELD_DSCP_AF33,    "Assured Forwarding 33" },
732                   { IPDSFIELD_DSCP_AF41,    "Assured Forwarding 41" },
733                   { IPDSFIELD_DSCP_AF42,    "Assured Forwarding 42" },
734                   { IPDSFIELD_DSCP_AF43,    "Assured Forwarding 43" },
735                   { IPDSFIELD_DSCP_EF,      "Expedited Forwarding"  },
736                   { 0,                      NULL                    } };
737
738 static const value_string precedence_vals[] = {
739                   { IPTOS_PREC_ROUTINE,         "routine"              },
740                   { IPTOS_PREC_PRIORITY,        "priority"             },
741                   { IPTOS_PREC_IMMEDIATE,       "immediate"            },
742                   { IPTOS_PREC_FLASH,           "flash"                },
743                   { IPTOS_PREC_FLASHOVERRIDE,   "flash override"       },
744                   { IPTOS_PREC_CRITIC_ECP,      "CRITIC/ECP"           },
745                   { IPTOS_PREC_INTERNETCONTROL, "internetwork control" },
746                   { IPTOS_PREC_NETCONTROL,      "network control"      },
747                   { 0,                          NULL                   } };
748
749 static const value_string iptos_vals[] = {
750         { IPTOS_NONE,           "None" },
751         { IPTOS_LOWCOST,        "Minimize cost" },
752         { IPTOS_RELIABILITY,    "Maximize reliability" },
753         { IPTOS_THROUGHPUT,     "Maximize throughput" },
754         { IPTOS_LOWDELAY,       "Minimize delay" },
755         { IPTOS_SECURITY,       "Maximize security" },
756         { 0,                    NULL }
757 };
758
759 static const true_false_string tos_set_low = {
760   "Low",
761   "Normal"
762 };
763
764 static const true_false_string tos_set_high = {
765   "High",
766   "Normal"
767 };
768
769 static const true_false_string flags_set_truth = {
770   "Set",
771   "Not set"
772 };
773
774 static guint16 ip_checksum(const guint8 *ptr, int len)
775 {
776         vec_t cksum_vec[1];
777
778         cksum_vec[0].ptr = ptr;
779         cksum_vec[0].len = len;
780         return in_cksum(&cksum_vec[0], 1);
781 }
782
783 void
784 dissect_ip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
785 {
786   e_ip       iph;
787   proto_tree *ip_tree, *field_tree;
788   proto_item *ti, *tf;
789   int        offset = 0;
790   guint      hlen, optlen, len, payload_len, reported_payload_len, padding;
791   guint16    flags;
792   guint8     nxt;
793   guint16    ipsum;
794   tvbuff_t   *next_tvb;
795
796   CHECK_DISPLAY_AS_DATA(proto_ip, tvb, pinfo, tree);
797
798   pinfo->current_proto = "IP";
799
800   if (check_col(pinfo->fd, COL_PROTOCOL))
801     col_set_str(pinfo->fd, COL_PROTOCOL, "IP");
802   if (check_col(pinfo->fd, COL_INFO))
803     col_clear(pinfo->fd, COL_INFO);
804
805   /* Avoids alignment problems on many architectures. */
806   tvb_memcpy(tvb, (guint8 *)&iph, offset, sizeof(e_ip));
807   iph.ip_len = ntohs(iph.ip_len);
808   iph.ip_id  = ntohs(iph.ip_id);
809   iph.ip_off = ntohs(iph.ip_off);
810   iph.ip_sum = ntohs(iph.ip_sum);
811
812   /* Length of payload handed to us. */
813   reported_payload_len = tvb_reported_length(tvb);
814   payload_len = tvb_length(tvb);
815
816   /* Length of IP datagram. */
817   len = iph.ip_len;
818
819   if (len < reported_payload_len) {
820     /* Adjust the length of this tvbuff to include only the IP datagram.
821        Our caller may use that to determine how much of its packet
822        was padding. */
823     tvb_set_reported_length(tvb, len);
824
825     /* Shrink the total payload by the amount of padding. */
826     padding = reported_payload_len - len;
827     if (pinfo->len >= padding)
828       pinfo->len -= padding;
829
830     /* Shrink the captured payload by the amount of padding in the
831        captured payload (which may be less than the amount of padding,
832        as the padding may not have been captured). */
833     if (len < payload_len) {
834       padding = payload_len - len;
835       if (pinfo->captured_len >= padding)
836         pinfo->captured_len -= padding;
837     }
838   }
839
840   /* XXX - check to make sure this is at least IPH_MIN_LEN. */
841   hlen = lo_nibble(iph.ip_v_hl) * 4;    /* IP header length, in bytes */
842   
843   if (tree) {
844     ti = proto_tree_add_item(tree, proto_ip, tvb, offset, hlen, FALSE);
845     ip_tree = proto_item_add_subtree(ti, ett_ip);
846
847     proto_tree_add_uint(ip_tree, hf_ip_version, tvb, offset, 1, hi_nibble(iph.ip_v_hl));
848     proto_tree_add_uint_format(ip_tree, hf_ip_hdr_len, tvb, offset, 1, hlen,
849         "Header length: %u bytes", hlen);
850
851     if (g_ip_dscp_actif) {
852       tf = proto_tree_add_uint_format(ip_tree, hf_ip_dsfield, tvb, offset + 1, 1, iph.ip_tos,
853            "Differentiated Services Field: 0x%02x (DSCP 0x%02x: %s; ECN: 0x%02x)", iph.ip_tos,
854            IPDSFIELD_DSCP(iph.ip_tos), val_to_str(IPDSFIELD_DSCP(iph.ip_tos), dscp_vals,
855            "Unknown DSCP"),IPDSFIELD_ECN(iph.ip_tos));
856
857       field_tree = proto_item_add_subtree(tf, ett_ip_dsfield);
858       proto_tree_add_uint(field_tree, hf_ip_dsfield_dscp, tvb, offset + 1, 1, iph.ip_tos);
859       proto_tree_add_uint(field_tree, hf_ip_dsfield_ect, tvb, offset + 1, 1, iph.ip_tos);
860       proto_tree_add_uint(field_tree, hf_ip_dsfield_ce, tvb, offset + 1, 1, iph.ip_tos);
861     } else {
862       tf = proto_tree_add_uint_format(ip_tree, hf_ip_tos, tvb, offset + 1, 1, iph.ip_tos,
863           "Type of service: 0x%02x (%s)", iph.ip_tos,
864           val_to_str( IPTOS_TOS(iph.ip_tos), iptos_vals, "Unknown") );
865
866       field_tree = proto_item_add_subtree(tf, ett_ip_tos);
867       proto_tree_add_uint(field_tree, hf_ip_tos_precedence, tvb, offset + 1, 1, iph.ip_tos);
868       proto_tree_add_boolean(field_tree, hf_ip_tos_delay, tvb, offset + 1, 1, iph.ip_tos);
869       proto_tree_add_boolean(field_tree, hf_ip_tos_throughput, tvb, offset + 1, 1, iph.ip_tos);
870       proto_tree_add_boolean(field_tree, hf_ip_tos_reliability, tvb, offset + 1, 1, iph.ip_tos);
871       proto_tree_add_boolean(field_tree, hf_ip_tos_cost, tvb, offset + 1, 1, iph.ip_tos);
872     }
873     proto_tree_add_uint(ip_tree, hf_ip_len, tvb, offset +  2, 2, iph.ip_len);
874     proto_tree_add_uint(ip_tree, hf_ip_id, tvb, offset +  4, 2, iph.ip_id);
875
876     flags = (iph.ip_off & (IP_DF|IP_MF)) >> 12;
877     tf = proto_tree_add_uint(ip_tree, hf_ip_flags, tvb, offset +  6, 1, flags);
878     field_tree = proto_item_add_subtree(tf, ett_ip_off);
879     proto_tree_add_boolean(field_tree, hf_ip_flags_df, tvb, offset + 6, 1, flags),
880     proto_tree_add_boolean(field_tree, hf_ip_flags_mf, tvb, offset + 6, 1, flags),
881
882     proto_tree_add_uint(ip_tree, hf_ip_frag_offset, tvb, offset +  6, 2,
883       (iph.ip_off & IP_OFFSET)*8);
884     proto_tree_add_uint(ip_tree, hf_ip_ttl, tvb, offset +  8, 1, iph.ip_ttl);
885     proto_tree_add_uint_format(ip_tree, hf_ip_proto, tvb, offset +  9, 1, iph.ip_p,
886         "Protocol: %s (0x%02x)", ipprotostr(iph.ip_p), iph.ip_p);
887
888     ipsum = ip_checksum(tvb_get_ptr(tvb, offset, hlen), hlen);
889     if (ipsum == 0) {
890         proto_tree_add_uint_format(ip_tree, hf_ip_checksum, tvb, offset + 10, 2, iph.ip_sum,
891             "Header checksum: 0x%04x (correct)", iph.ip_sum);
892     }
893     else {
894         proto_tree_add_uint_format(ip_tree, hf_ip_checksum, tvb, offset + 10, 2, iph.ip_sum,
895             "Header checksum: 0x%04x (incorrect, should be 0x%04x)", iph.ip_sum,
896             in_cksum_shouldbe(iph.ip_sum, ipsum));
897     }
898
899     proto_tree_add_ipv4(ip_tree, hf_ip_src, tvb, offset + 12, 4, iph.ip_src);
900     proto_tree_add_ipv4(ip_tree, hf_ip_dst, tvb, offset + 16, 4, iph.ip_dst);
901     proto_tree_add_ipv4_hidden(ip_tree, hf_ip_addr, tvb, offset + 12, 4, iph.ip_src);
902     proto_tree_add_ipv4_hidden(ip_tree, hf_ip_addr, tvb, offset + 16, 4, iph.ip_dst);
903
904     /* Decode IP options, if any. */
905     if (hlen > sizeof (e_ip)) {
906       /* There's more than just the fixed-length header.  Decode the
907          options. */
908       optlen = hlen - sizeof (e_ip);    /* length of options, in bytes */
909       tf = proto_tree_add_text(ip_tree, tvb, offset +  20, optlen,
910         "Options: (%u bytes)", optlen);
911       field_tree = proto_item_add_subtree(tf, ett_ip_options);
912       dissect_ip_tcp_options(tvb, offset + 20, optlen,
913          ipopts, N_IP_OPTS, IPOPT_END, pinfo->fd, field_tree);
914     }
915   }
916
917   pinfo->ipproto = iph.ip_p;
918   pinfo->iplen = iph.ip_len;
919   pinfo->iphdrlen = lo_nibble(iph.ip_v_hl);
920   SET_ADDRESS(&pinfo->net_src, AT_IPv4, 4, tvb_get_ptr(tvb, offset + IPH_SRC, 4));
921   SET_ADDRESS(&pinfo->src, AT_IPv4, 4, tvb_get_ptr(tvb, offset + IPH_SRC, 4));
922   SET_ADDRESS(&pinfo->net_dst, AT_IPv4, 4, tvb_get_ptr(tvb, offset + IPH_DST, 4));
923   SET_ADDRESS(&pinfo->dst, AT_IPv4, 4, tvb_get_ptr(tvb, offset + IPH_DST, 4));
924
925   /* Skip over header + options */
926   offset += hlen;
927   nxt = iph.ip_p;
928   if (iph.ip_off & IP_OFFSET) {
929     /* fragmented */
930     if (check_col(pinfo->fd, COL_INFO))
931       col_add_fstr(pinfo->fd, COL_INFO, "Fragmented IP protocol (proto=%s 0x%02x, off=%u)",
932         ipprotostr(iph.ip_p), iph.ip_p, (iph.ip_off & IP_OFFSET) * 8);
933     dissect_data(tvb, offset, pinfo, tree);
934     return;
935   }
936
937   /*
938    * If this is the first fragment, but not the only fragment,
939    * tell the next protocol that.
940    */
941   if (iph.ip_off & IP_MF)
942     pinfo->fragmented = TRUE;
943   else
944     pinfo->fragmented = FALSE;
945
946   /* Hand off to the next protocol.
947
948      XXX - setting the columns only after trying various dissectors means
949      that if one of those dissectors throws an exception, the frame won't
950      even be labelled as an IP frame; ideally, if a frame being dissected
951      throws an exception, it'll be labelled as a mangled frame of the
952      type in question. */
953   next_tvb = tvb_new_subset(tvb, offset, -1, -1);
954   if (!dissector_try_port(ip_dissector_table, nxt, next_tvb, pinfo, tree)) {
955     /* Unknown protocol */
956     if (check_col(pinfo->fd, COL_INFO))
957       col_add_fstr(pinfo->fd, COL_INFO, "%s (0x%02x)", ipprotostr(iph.ip_p), iph.ip_p);
958     dissect_data(next_tvb, 0, pinfo, tree);
959   }
960 }
961
962
963 static const gchar *unreach_str[] = {"Network unreachable",
964                                      "Host unreachable",
965                                      "Protocol unreachable",
966                                      "Port unreachable",
967                                      "Fragmentation needed",
968                                      "Source route failed",
969                                      "Destination network unknown",
970                                      "Destination host unknown",
971                                      "Source host isolated",
972                                      "Network administratively prohibited",
973                                      "Host administratively prohibited",
974                                      "Network unreachable for TOS",
975                                      "Host unreachable for TOS",
976                                      "Communication administratively filtered",
977                                      "Host precedence violation",
978                                      "Precedence cutoff in effect"};
979                                      
980 #define N_UNREACH       (sizeof unreach_str / sizeof unreach_str[0])
981
982 static const gchar *redir_str[] = {"Redirect for network",
983                                    "Redirect for host",
984                                    "Redirect for TOS and network",
985                                    "Redirect for TOS and host"};
986
987 #define N_REDIRECT      (sizeof redir_str / sizeof redir_str[0])
988
989 static const gchar *ttl_str[] = {"TTL equals 0 during transit",
990                                  "TTL equals 0 during reassembly"};
991                                  
992 #define N_TIMXCEED      (sizeof ttl_str / sizeof ttl_str[0])
993
994 static const gchar *par_str[] = {"IP header bad", "Required option missing"};
995
996 #define N_PARAMPROB     (sizeof par_str / sizeof par_str[0])
997
998 static void
999 dissect_icmp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
1000 {
1001   proto_tree *icmp_tree;
1002   proto_item *ti;
1003   guint8     icmp_type;
1004   guint8     icmp_code;
1005   guint      length, reported_length;
1006   guint16    cksum, computed_cksum;
1007   gchar      type_str[64], code_str[64] = "";
1008   guint8     num_addrs = 0;
1009   guint8     addr_entry_size = 0;
1010   int        i;
1011
1012   CHECK_DISPLAY_AS_DATA(proto_icmp, tvb, pinfo, tree);
1013
1014   pinfo->current_proto = "ICMP";
1015
1016   if (check_col(pinfo->fd, COL_PROTOCOL))
1017     col_set_str(pinfo->fd, COL_PROTOCOL, "ICMP");
1018   if (check_col(pinfo->fd, COL_INFO))
1019     col_clear(pinfo->fd, COL_INFO);
1020
1021   /* To do: check for runts, errs, etc. */
1022   icmp_type = tvb_get_guint8(tvb, 0);
1023   icmp_code = tvb_get_guint8(tvb, 1);
1024   cksum = tvb_get_ntohs(tvb, 2);
1025
1026   switch (icmp_type) {
1027     case ICMP_ECHOREPLY:
1028       strcpy(type_str, "Echo (ping) reply");
1029       break;
1030     case ICMP_UNREACH:
1031       strcpy(type_str, "Destination unreachable");
1032       if (icmp_code < N_UNREACH) {
1033         sprintf(code_str, "(%s)", unreach_str[icmp_code]);
1034       } else {
1035         strcpy(code_str, "(Unknown - error?)");
1036       }
1037       break;
1038     case ICMP_SOURCEQUENCH:
1039       strcpy(type_str, "Source quench (flow control)");
1040       break;
1041     case ICMP_REDIRECT:
1042       strcpy(type_str, "Redirect");
1043       if (icmp_code < N_REDIRECT) {
1044         sprintf(code_str, "(%s)", redir_str[icmp_code]);
1045       } else {
1046         strcpy(code_str, "(Unknown - error?)");
1047       }
1048       break;
1049     case ICMP_ECHO:
1050       strcpy(type_str, "Echo (ping) request");
1051       break;
1052     case ICMP_RTRADVERT:
1053       strcpy(type_str, "Router advertisement");
1054       break;
1055     case ICMP_RTRSOLICIT:
1056       strcpy(type_str, "Router solicitation");
1057       break;
1058     case ICMP_TIMXCEED:
1059       strcpy(type_str, "Time-to-live exceeded");
1060       if (icmp_code < N_TIMXCEED) {
1061         sprintf(code_str, "(%s)", ttl_str[icmp_code]);
1062       } else {
1063         strcpy(code_str, "(Unknown - error?)");
1064       }
1065       break;
1066     case ICMP_PARAMPROB:
1067       strcpy(type_str, "Parameter problem");
1068       if (icmp_code < N_PARAMPROB) {
1069         sprintf(code_str, "(%s)", par_str[icmp_code]);
1070       } else {
1071         strcpy(code_str, "(Unknown - error?)");
1072       }
1073       break;
1074     case ICMP_TSTAMP:
1075       strcpy(type_str, "Timestamp request");
1076       break;
1077     case ICMP_TSTAMPREPLY:
1078       strcpy(type_str, "Timestamp reply");
1079       break;
1080     case ICMP_IREQ:
1081       strcpy(type_str, "Information request");
1082       break;
1083     case ICMP_IREQREPLY:
1084       strcpy(type_str, "Information reply");
1085       break;
1086     case ICMP_MASKREQ:
1087       strcpy(type_str, "Address mask request");
1088       break;
1089     case ICMP_MASKREPLY:
1090       strcpy(type_str, "Address mask reply");
1091       break;
1092     default:
1093       strcpy(type_str, "Unknown ICMP (obsolete or malformed?)");
1094   }
1095
1096   if (check_col(pinfo->fd, COL_INFO))
1097     col_add_str(pinfo->fd, COL_INFO, type_str);
1098
1099   if (tree) {
1100     length = tvb_length(tvb);
1101     reported_length = tvb_reported_length(tvb);
1102     ti = proto_tree_add_item(tree, proto_icmp, tvb, 0, length, FALSE);
1103     icmp_tree = proto_item_add_subtree(ti, ett_icmp);
1104     proto_tree_add_uint_format(icmp_tree, hf_icmp_type, tvb, 0, 1, 
1105                                icmp_type,
1106                                "Type: %u (%s)",
1107                                icmp_type, type_str);
1108     proto_tree_add_uint_format(icmp_tree, hf_icmp_code, tvb, 1, 1, 
1109                                icmp_code,
1110                                "Code: %u %s",
1111                                icmp_code, code_str);
1112
1113     if (!pinfo->fragmented && length >= reported_length) {
1114       /* The packet isn't part of a fragmented datagram and isn't
1115          truncated, so we can checksum it. */
1116
1117       computed_cksum = ip_checksum(tvb_get_ptr(tvb, 0, reported_length),
1118                                    reported_length);
1119       if (computed_cksum == 0) {
1120         proto_tree_add_uint_format(icmp_tree, hf_icmp_checksum, tvb, 2, 2,
1121                         cksum,
1122                         "Checksum: 0x%04x (correct)", cksum);
1123       } else {
1124         proto_tree_add_uint_format(icmp_tree, hf_icmp_checksum, tvb, 2, 2,
1125                         cksum,
1126                         "Checksum: 0x%04x (incorrect, should be 0x%04x)",
1127                         cksum, in_cksum_shouldbe(cksum, computed_cksum));
1128       }
1129     } else {
1130       proto_tree_add_uint(icmp_tree, hf_icmp_checksum, tvb, 2, 2, cksum);
1131     }
1132
1133     /* Decode the second 4 bytes of the packet. */
1134     switch (icmp_type) {
1135       case ICMP_ECHOREPLY:
1136       case ICMP_ECHO:
1137       case ICMP_TSTAMP:
1138       case ICMP_TSTAMPREPLY:
1139       case ICMP_IREQ:
1140       case ICMP_IREQREPLY:
1141       case ICMP_MASKREQ:
1142       case ICMP_MASKREPLY:
1143         proto_tree_add_text(icmp_tree, tvb, 4, 2, "Identifier: 0x%04x",
1144           tvb_get_ntohs(tvb, 4));
1145         proto_tree_add_text(icmp_tree, tvb, 6, 2, "Sequence number: %02x:%02x",
1146           tvb_get_guint8(tvb, 6), tvb_get_guint8(tvb, 7));
1147         break;
1148
1149        case ICMP_UNREACH:
1150          switch (icmp_code) {
1151            case ICMP_FRAG_NEEDED:
1152                  proto_tree_add_text(icmp_tree, tvb, 6, 2, "MTU of next hop: %u",
1153                    tvb_get_ntohs(tvb, 6));
1154                  break;
1155            }
1156          break;
1157
1158       case ICMP_RTRADVERT:
1159         num_addrs = tvb_get_guint8(tvb, 4);
1160         proto_tree_add_text(icmp_tree, tvb, 4, 1, "Number of addresses: %u",
1161           num_addrs);
1162         addr_entry_size = tvb_get_guint8(tvb, 5);
1163         proto_tree_add_text(icmp_tree, tvb, 5, 1, "Address entry size: %u",
1164           addr_entry_size);
1165         proto_tree_add_text(icmp_tree, tvb, 6, 2, "Lifetime: %s",
1166           time_secs_to_str(tvb_get_ntohs(tvb, 6)));
1167         break;
1168
1169       case ICMP_PARAMPROB:
1170         proto_tree_add_text(icmp_tree, tvb, 4, 1, "Pointer: %u",
1171           tvb_get_guint8(tvb, 4));
1172         break;
1173
1174       case ICMP_REDIRECT:
1175         proto_tree_add_text(icmp_tree, tvb, 4, 4, "Gateway address: %s",
1176           ip_to_str(tvb_get_ptr(tvb, 4, 4)));
1177         break;
1178     }
1179
1180     /* Decode the additional information in the packet.  */
1181     switch (icmp_type) {
1182       case ICMP_UNREACH:
1183       case ICMP_TIMXCEED:
1184       case ICMP_PARAMPROB:
1185       case ICMP_SOURCEQUENCH:
1186       case ICMP_REDIRECT:
1187         /* Decode the IP header and first 64 bits of data from the
1188            original datagram.
1189
1190            XXX - for now, just display it as data; not all dissection
1191            routines can handle a short packet without exploding. */
1192         dissect_data(tvb, 8, pinfo, icmp_tree);
1193         break;
1194
1195       case ICMP_ECHOREPLY:
1196       case ICMP_ECHO:
1197         dissect_data(tvb, 8, pinfo, icmp_tree);
1198         break;
1199
1200       case ICMP_RTRADVERT:
1201         if (addr_entry_size == 2) {
1202           for (i = 0; i < num_addrs; i++) {
1203             proto_tree_add_text(icmp_tree, tvb, 8 + (i*8), 4,
1204               "Router address: %s",
1205               ip_to_str(tvb_get_ptr(tvb, 8 + (i*8), 4)));
1206             proto_tree_add_text(icmp_tree, tvb, 12 + (i*8), 4,
1207               "Preference level: %u", tvb_get_ntohl(tvb, 12 + (i*8)));
1208           }
1209         } else
1210           dissect_data(tvb, 8, pinfo, icmp_tree);
1211         break;
1212
1213       case ICMP_TSTAMP:
1214       case ICMP_TSTAMPREPLY:
1215         proto_tree_add_text(icmp_tree, tvb, 8, 4, "Originate timestamp: %u",
1216           tvb_get_ntohl(tvb, 8));
1217         proto_tree_add_text(icmp_tree, tvb, 12, 4, "Receive timestamp: %u",
1218           tvb_get_ntohl(tvb, 12));
1219         proto_tree_add_text(icmp_tree, tvb, 16, 4, "Transmit timestamp: %u",
1220           tvb_get_ntohl(tvb, 16));
1221         break;
1222
1223     case ICMP_MASKREQ:
1224     case ICMP_MASKREPLY:
1225         proto_tree_add_text(icmp_tree, tvb, 8, 4, "Address mask: %s (0x%08x)",
1226           ip_to_str(tvb_get_ptr(tvb, 8, 4)), tvb_get_ntohl(tvb, 8));
1227         break;
1228     }
1229   }
1230 }
1231
1232 static void
1233 dissect_igmp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
1234 {
1235   e_igmp     ih;
1236   proto_tree *igmp_tree;
1237   proto_item *ti;
1238   gchar      *type_str;
1239
1240   CHECK_DISPLAY_AS_DATA(proto_igmp, tvb, pinfo, tree);
1241
1242   pinfo->current_proto = "IGMP";
1243
1244   if (check_col(pinfo->fd, COL_PROTOCOL))
1245     col_set_str(pinfo->fd, COL_PROTOCOL, "IGMP");
1246   if (check_col(pinfo->fd, COL_INFO))
1247     col_clear(pinfo->fd, COL_INFO);
1248
1249   /* Avoids alignment problems on many architectures. */
1250   memcpy(&ih, tvb_get_ptr(tvb, 0, sizeof(e_igmp)), sizeof(e_igmp));
1251   
1252   switch (lo_nibble(ih.igmp_v_t)) {
1253     case IGMP_M_QRY:
1254       type_str = "Router query";
1255       break;
1256     case IGMP_V1_M_RPT:
1257       type_str = "Host response (v1)";
1258       break;
1259     case IGMP_V2_LV_GRP:
1260       type_str = "Leave group (v2)";
1261       break;
1262     case IGMP_DVMRP:
1263       type_str = "DVMRP";
1264       break;
1265     case IGMP_PIM:
1266       type_str = "PIM";
1267       break;
1268     case IGMP_V2_M_RPT:
1269       type_str = "Host response (v2)";
1270       break;
1271     case IGMP_MTRC_RESP:
1272       type_str = "Traceroute response";
1273       break;
1274     case IGMP_MTRC:
1275       type_str = "Traceroute message";
1276       break;
1277     default:
1278       type_str = "Unknown IGMP";
1279   }
1280
1281   if (check_col(pinfo->fd, COL_INFO))
1282     col_add_str(pinfo->fd, COL_INFO, type_str);
1283   if (tree) {
1284     ti = proto_tree_add_item(tree, proto_igmp, tvb, 0, 8, FALSE);
1285     igmp_tree = proto_item_add_subtree(ti, ett_igmp);
1286     proto_tree_add_uint(igmp_tree, hf_igmp_version, tvb, 0,     1, 
1287                         hi_nibble(ih.igmp_v_t));
1288     proto_tree_add_uint_format(igmp_tree, hf_igmp_type, tvb,  0    , 1, 
1289                                lo_nibble(ih.igmp_v_t),
1290                                "Type: %u (%s)",
1291                                lo_nibble(ih.igmp_v_t), type_str);
1292     proto_tree_add_item(igmp_tree, hf_igmp_unused, tvb,  1, 1, FALSE);
1293     proto_tree_add_item(igmp_tree, hf_igmp_checksum, tvb,  2, 2, FALSE);
1294     proto_tree_add_ipv4(igmp_tree, hf_igmp_group, tvb,  4, 4, ih.igmp_gaddr);
1295   }
1296 }
1297
1298 void
1299 proto_register_igmp(void)
1300 {
1301         static hf_register_info hf[] = {
1302
1303                 { &hf_igmp_version,
1304                 { "Version",            "igmp.version", FT_UINT8, BASE_DEC, NULL, 0x0,
1305                         "" }},
1306
1307                 { &hf_igmp_type,
1308                 { "Type",               "igmp.type", FT_UINT8, BASE_DEC, NULL, 0x0,
1309                         "" }},
1310
1311                 { &hf_igmp_unused,
1312                 { "Unused",             "igmp.unused", FT_UINT8, BASE_HEX, NULL, 0x0,
1313                         "" }},
1314
1315                 { &hf_igmp_checksum,
1316                 { "Checksum",           "igmp.checksum", FT_UINT16, BASE_HEX, NULL, 0x0,
1317                         "" }},
1318
1319                 { &hf_igmp_group,
1320                 { "Group address",      "igmp.group", FT_IPv4, BASE_NONE, NULL, 0x0,
1321                         "" }},
1322         };
1323         static gint *ett[] = {
1324                 &ett_igmp,
1325         };
1326
1327         proto_igmp = proto_register_protocol ("Internet Group Management Protocol", "igmp");
1328         proto_register_field_array(proto_igmp, hf, array_length(hf));
1329         proto_register_subtree_array(ett, array_length(ett));
1330 }
1331
1332 void
1333 proto_reg_handoff_igmp(void)
1334 {
1335         dissector_add("ip.proto", IP_PROTO_IGMP, dissect_igmp);
1336 }
1337
1338 void
1339 proto_register_ip(void)
1340 {
1341         static hf_register_info hf[] = {
1342
1343                 { &hf_ip_version,
1344                 { "Version",            "ip.version", FT_UINT8, BASE_DEC, NULL, 0x0,
1345                         "" }},
1346
1347                 { &hf_ip_hdr_len,
1348                 { "Header Length",      "ip.hdr_len", FT_UINT8, BASE_DEC, NULL, 0x0,
1349                         "" }},
1350
1351                 { &hf_ip_dsfield,
1352                 { "Differentiated Services field",      "ip.dsfield", FT_UINT8, BASE_DEC, NULL, 0x0,
1353                         "" }},
1354
1355                 { &hf_ip_dsfield_dscp,
1356                 { "Differentiated Services Codepoint",  "ip.dsfield.dscp", FT_UINT8, BASE_HEX,
1357                         VALS(dscp_vals), IPDSFIELD_DSCP_MASK,
1358                         "" }},
1359
1360                 { &hf_ip_dsfield_ect,
1361                 { "ECN-Capable Transport (ECT)",        "ip.dsfield.ect", FT_UINT8, BASE_DEC, NULL,
1362                         IPDSFIELD_ECT_MASK,
1363                         "" }},
1364
1365                 { &hf_ip_dsfield_ce,
1366                 { "ECN-CE",     "ip.dsfield.ce", FT_UINT8, BASE_DEC, NULL,
1367                         IPDSFIELD_CE_MASK,
1368                         "" }},
1369
1370                 { &hf_ip_tos,
1371                 { "Type of Service",    "ip.tos", FT_UINT8, BASE_DEC, NULL, 0x0,
1372                         "" }},
1373
1374                 { &hf_ip_tos_precedence,
1375                 { "Precedence",         "ip.tos.precedence", FT_UINT8, BASE_DEC, VALS(precedence_vals),
1376                         IPTOS_PREC_MASK,
1377                         "" }},
1378
1379                 { &hf_ip_tos_delay,
1380                 { "Delay",              "ip.tos.delay", FT_BOOLEAN, 8, TFS(&tos_set_low),
1381                         IPTOS_LOWDELAY,
1382                         "" }},
1383
1384                 { &hf_ip_tos_throughput,
1385                 { "Throughput",         "ip.tos.throughput", FT_BOOLEAN, 8, TFS(&tos_set_high),
1386                         IPTOS_THROUGHPUT,
1387                         "" }},
1388
1389                 { &hf_ip_tos_reliability,
1390                 { "Reliability",        "ip.tos.reliability", FT_BOOLEAN, 8, TFS(&tos_set_high),
1391                         IPTOS_RELIABILITY,
1392                         "" }},
1393
1394                 { &hf_ip_tos_cost,
1395                 { "Cost",               "ip.tos.cost", FT_BOOLEAN, 8, TFS(&tos_set_low),
1396                         IPTOS_LOWCOST,
1397                         "" }},
1398
1399                 { &hf_ip_len,
1400                 { "Total Length",       "ip.len", FT_UINT16, BASE_DEC, NULL, 0x0,
1401                         "" }},
1402
1403                 { &hf_ip_id,
1404                 { "Identification",     "ip.id", FT_UINT16, BASE_HEX, NULL, 0x0,
1405                         "" }},
1406
1407                 { &hf_ip_dst,
1408                 { "Destination",        "ip.dst", FT_IPv4, BASE_NONE, NULL, 0x0,
1409                         "" }},
1410
1411                 { &hf_ip_src,
1412                 { "Source",             "ip.src", FT_IPv4, BASE_NONE, NULL, 0x0,
1413                         "" }},
1414
1415                 { &hf_ip_addr,
1416                 { "Source or Destination Address", "ip.addr", FT_IPv4, BASE_NONE, NULL, 0x0,
1417                         "" }},
1418
1419                 { &hf_ip_flags,
1420                 { "Flags",              "ip.flags", FT_UINT8, BASE_HEX, NULL, 0x0,
1421                         "" }},
1422
1423                 { &hf_ip_flags_df,
1424                 { "Don't fragment",     "ip.flags.df", FT_BOOLEAN, 4, TFS(&flags_set_truth), IP_DF>>12,
1425                         "" }},
1426
1427                 { &hf_ip_flags_mf,
1428                 { "More fragments",     "ip.flags.mf", FT_BOOLEAN, 4, TFS(&flags_set_truth), IP_MF>>12,
1429                         "" }},
1430
1431                 { &hf_ip_frag_offset,
1432                 { "Fragment offset",    "ip.frag_offset", FT_UINT16, BASE_DEC, NULL, 0x0,
1433                         "" }},
1434
1435                 { &hf_ip_ttl,
1436                 { "Time to live",       "ip.ttl", FT_UINT8, BASE_DEC, NULL, 0x0,
1437                         "" }},
1438
1439                 { &hf_ip_proto,
1440                 { "Protocol",           "ip.proto", FT_UINT8, BASE_HEX, NULL, 0x0,
1441                         "" }},
1442
1443                 { &hf_ip_checksum,
1444                 { "Header checksum",    "ip.checksum", FT_UINT16, BASE_HEX, NULL, 0x0,
1445                         "" }},
1446         };
1447         static gint *ett[] = {
1448                 &ett_ip,
1449                 &ett_ip_dsfield,
1450                 &ett_ip_tos,
1451                 &ett_ip_off,
1452                 &ett_ip_options,
1453                 &ett_ip_option_sec,
1454                 &ett_ip_option_route,
1455                 &ett_ip_option_timestamp,
1456         };
1457         module_t *ip_module;
1458
1459         proto_ip = proto_register_protocol ("Internet Protocol", "ip");
1460         proto_register_field_array(proto_ip, hf, array_length(hf));
1461         proto_register_subtree_array(ett, array_length(ett));
1462
1463         /* subdissector code */
1464         ip_dissector_table = register_dissector_table("ip.proto");
1465
1466         /* Register a configuration option for decoding TOS as DSCP */
1467         ip_module = prefs_register_module("ip", "IP", NULL);
1468         prefs_register_bool_preference(ip_module, "decode_tos_as_diffserv",
1469             "Decode IPv4 TOS field as DiffServ field",
1470 "Whether the IPv4 type-of-service field should be decoded as a Differentiated Services field",
1471             &g_ip_dscp_actif);
1472
1473         register_dissector("ip", dissect_ip);
1474 }
1475
1476 void
1477 proto_reg_handoff_ip(void)
1478 {
1479         dissector_add("ethertype", ETHERTYPE_IP, dissect_ip);
1480         dissector_add("ppp.protocol", PPP_IP, dissect_ip);
1481         dissector_add("ppp.protocol", CISCO_IP, dissect_ip);
1482         dissector_add("llc.dsap", SAP_IP, dissect_ip);
1483         dissector_add("ip.proto", IP_PROTO_IPV4, dissect_ip);
1484         dissector_add("ip.proto", IP_PROTO_IPIP, dissect_ip);
1485         dissector_add("null.type", BSD_AF_INET, dissect_ip);
1486 }
1487
1488 void
1489 proto_register_icmp(void)
1490 {
1491   static hf_register_info hf[] = {
1492     
1493     { &hf_icmp_type,
1494       { "Type",         "icmp.type",            FT_UINT8, BASE_DEC,     NULL, 0x0,
1495         "" }},
1496
1497     { &hf_icmp_code,
1498       { "Code",         "icmp.code",            FT_UINT8, BASE_HEX,     NULL, 0x0,
1499         "" }},    
1500
1501     { &hf_icmp_checksum,
1502       { "Checksum",     "icmp.checksum",        FT_UINT16, BASE_HEX,    NULL, 0x0,
1503         "" }},
1504   };
1505   static gint *ett[] = {
1506     &ett_icmp,
1507   };
1508   
1509   proto_icmp = proto_register_protocol ("Internet Control Message Protocol", 
1510                                         "icmp");
1511   proto_register_field_array(proto_icmp, hf, array_length(hf));
1512   proto_register_subtree_array(ett, array_length(ett));
1513 }
1514
1515 void
1516 proto_reg_handoff_icmp(void)
1517 {
1518   dissector_add("ip.proto", IP_PROTO_ICMP, dissect_icmp);
1519 }