DCERPC problem reported by JBM and identified by Todd Sabin
[obnox/wireshark/wip.git] / packet-aim-icq.c
1 /* packet-aim-icq.c
2  * Routines for AIM Instant Messenger (OSCAR) dissection, SNAC ICQ
3  * Copyright 2004, Jelmer Vernooij <jelmer@samba.org>
4  *
5  * $Id: packet-aim-icq.c,v 1.5 2004/04/26 18:21:09 obiot Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@ethereal.com>
9  * Copyright 1998 Gerald Combs
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 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <ctype.h>
34
35 #include <glib.h>
36
37 #include <epan/packet.h>
38 #include <epan/strutil.h>
39
40 #include "packet-aim.h"
41
42 #define FAMILY_ICQ        0x0015
43
44 /* Family ICQ */
45 #define FAMILY_ICQ_ERROR              0x0001
46 #define FAMILY_ICQ_LOGINREQUEST       0x0002
47 #define FAMILY_ICQ_LOGINRESPONSE      0x0003
48 #define FAMILY_ICQ_AUTHREQUEST        0x0006
49 #define FAMILY_ICQ_AUTHRESPONSE       0x0007
50
51 static const value_string aim_fnac_family_icq[] = {
52   { FAMILY_ICQ_ERROR, "Error" },
53   { FAMILY_ICQ_LOGINREQUEST, "Login Request" },
54   { FAMILY_ICQ_LOGINRESPONSE, "Login Response" },
55   { FAMILY_ICQ_AUTHREQUEST, "Auth Request" },
56   { FAMILY_ICQ_AUTHRESPONSE, "Auth Response" },
57   { 0, NULL }
58 };
59
60 int dissect_aim_tlv_value_icq(proto_item *ti, guint16, tvbuff_t *);
61
62 #define TLV_ICQ_META_DATA                         0x0001
63
64 static const aim_tlv icq_tlv[] = {
65    { TLV_ICQ_META_DATA, "Encapsulated ICQ Meta Data", dissect_aim_tlv_value_icq },
66    { 0, "Unknown", NULL },
67 };
68
69 /* Initialize the protocol and registered fields */
70 static int proto_aim_icq = -1;
71
72 /* Initialize the subtree pointers */
73 static gint ett_aim_icq      = -1;
74
75 int dissect_aim_tlv_value_icq(proto_item *ti _U_, guint16 subtype _U_, tvbuff_t *tvb _U_)
76 {
77         /* FIXME */
78         return 0;
79 }
80
81 static int dissect_aim_icq(tvbuff_t *tvb, packet_info *pinfo, 
82                                     proto_tree *tree)
83 {
84    struct aiminfo *aiminfo = pinfo->private_data;
85    int offset = 0;
86    switch(aiminfo->subtype) {
87    case FAMILY_ICQ_ERROR:
88            return dissect_aim_snac_error(tvb, pinfo, offset, tree);
89    case FAMILY_ICQ_LOGINREQUEST:
90            return dissect_aim_tlv(tvb, pinfo, offset, tree, icq_tlv);
91    case FAMILY_ICQ_LOGINRESPONSE:
92    case FAMILY_ICQ_AUTHREQUEST:
93         case FAMILY_ICQ_AUTHRESPONSE:
94            /* FIXME */
95         default:
96            return 0;
97    }
98 }
99
100 /* Register the protocol with Ethereal */
101 void
102 proto_register_aim_icq(void)
103 {
104
105 /* Setup list of header fields */
106 /*  static hf_register_info hf[] = {
107   };*/
108
109 /* Setup protocol subtree array */
110   static gint *ett[] = {
111     &ett_aim_icq,
112   };
113
114 /* Register the protocol name and description */
115   proto_aim_icq = proto_register_protocol("AIM ICQ", "AIM ICQ", "aim_icq");
116
117 /* Required function calls to register the header fields and subtrees used */
118   /*proto_register_field_array(proto_aim_icq, hf, array_length(hf));*/
119   proto_register_subtree_array(ett, array_length(ett));
120 }
121
122 void
123 proto_reg_handoff_aim_icq(void)
124 {
125   dissector_handle_t aim_handle;
126
127   aim_handle = new_create_dissector_handle(dissect_aim_icq, proto_aim_icq);
128   dissector_add("aim.family", FAMILY_ICQ, aim_handle);
129   aim_init_family(FAMILY_ICQ, "ICQ", aim_fnac_family_icq);
130 }