a8e53b34f127a73b0de0e2d21f29491455ddeed8
[obnox/wireshark/wip.git] / epan / dissectors / packet-aim-chat.c
1 /* packet-aim-chat.c
2  * Routines for AIM Instant Messenger (OSCAR) dissection, SNAC Chat
3  * Copyright 2004, Jelmer Vernooij <jelmer@samba.org>
4  * Copyright 2000, Ralf Hoelzer <ralf@well.com>
5  *
6  * $Id$
7  *
8  * Ethereal - Network traffic analyzer
9  * By Gerald Combs <gerald@ethereal.com>
10  * Copyright 1998 Gerald Combs
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25  */
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <ctype.h>
35
36 #include <glib.h>
37
38 #include <epan/packet.h>
39 #include <epan/strutil.h>
40
41 #include "packet-tcp.h"
42 #include "packet-aim.h"
43
44 /* SNAC families */
45 #define FAMILY_CHAT       0x000E
46
47 #define AIM_CHAT_TLV_BROWSABLE_TREE             0x001
48 #define AIM_CHAT_TLV_CLASS_EXCLUSIVE            0x002
49 #define AIM_CHAT_TLV_MAX_CONCURRENT_ROOMS       0x003
50 #define AIM_CHAT_TLV_MAX_ROOM_NAME_LEN          0x004
51 #define AIM_CHAT_TLV_ROOT_ROOMS                         0x005
52 #define AIM_CHAT_TLV_SEARCH_TAGS                        0x006
53 #define AIM_CHAT_TLV_CHILD_ROOMS                        0x065
54 #define AIM_CHAT_TLV_CONTAINS_USER_CLASS        0x066
55 #define AIM_CHAT_TLV_CONTAINS_USER_ARRAY        0x067
56
57 static const aim_tlv chat_tlvs[] = {
58         { AIM_CHAT_TLV_BROWSABLE_TREE, "Browsable tree", dissect_aim_tlv_value_bytes },
59         { AIM_CHAT_TLV_CLASS_EXCLUSIVE, "Exclusively for class", dissect_aim_tlv_value_userclass },
60         { AIM_CHAT_TLV_MAX_CONCURRENT_ROOMS, "Max. number of concurrent rooms", dissect_aim_tlv_value_uint8 },
61         { AIM_CHAT_TLV_MAX_ROOM_NAME_LEN, "Max. length of room name", dissect_aim_tlv_value_uint8 },
62         { AIM_CHAT_TLV_ROOT_ROOMS, "Root Rooms", dissect_aim_tlv_value_bytes },
63         { AIM_CHAT_TLV_SEARCH_TAGS, "Search Tags", dissect_aim_tlv_value_bytes },
64         { AIM_CHAT_TLV_CHILD_ROOMS, "Child Rooms", dissect_aim_tlv_value_bytes },
65         { AIM_CHAT_TLV_CONTAINS_USER_CLASS, "Contains User Class", dissect_aim_tlv_value_bytes },
66         { AIM_CHAT_TLV_CONTAINS_USER_ARRAY, "Contains User Array", dissect_aim_tlv_value_bytes },
67         { 0, NULL, NULL }
68 };
69
70 /* Initialize the protocol and registered fields */
71 static int proto_aim_chat = -1;
72
73 /* Initialize the subtree pointers */
74 static gint ett_aim_chat          = -1;
75
76 static int dissect_aim_chat_userinfo_list(tvbuff_t *tvb, packet_info *pinfo, proto_tree *chat_tree)
77 {
78         int offset = 0;
79         while(tvb_length_remaining(tvb, offset) > 0) {
80                 offset = dissect_aim_userinfo(tvb, pinfo, offset, chat_tree);
81         }
82         return offset;
83 }
84
85 static int dissect_aim_chat_outgoing_msg(tvbuff_t *tvb, packet_info *pinfo, proto_tree *chat_tree)
86 {
87         char buddyname[MAX_BUDDYNAME_LENGTH+1];
88         guchar msg[1000];
89         int buddyname_length = aim_get_buddyname( buddyname, tvb, 30, 31 );
90
91         /* channel message from client */
92         aim_get_message( msg, tvb, 40 + buddyname_length, tvb_length(tvb) 
93                                          - 40 - buddyname_length );
94
95         if (check_col(pinfo->cinfo, COL_INFO)) 
96                 col_append_fstr(pinfo->cinfo, COL_INFO, " -> %s", msg);
97         
98         return tvb_length(tvb);
99 }
100
101
102 static int dissect_aim_chat_incoming_msg(tvbuff_t *tvb, packet_info *pinfo, proto_tree *chat_tree)
103 {
104         char buddyname[MAX_BUDDYNAME_LENGTH+1];
105         guchar msg[1000];
106         /* channel message to client */
107         int buddyname_length = aim_get_buddyname( buddyname, tvb, 30, 31 );
108         
109         aim_get_message( msg, tvb, 36 + buddyname_length, tvb_length(tvb) 
110                                          - 36 - buddyname_length );
111
112         if (check_col(pinfo->cinfo, COL_INFO)) {
113                 col_append_fstr(pinfo->cinfo, COL_INFO, "from: %s", buddyname);
114                 col_append_fstr(pinfo->cinfo, COL_INFO, " -> %s", msg);
115         }
116
117         if(chat_tree) {
118                 proto_tree_add_text(chat_tree, tvb, 31, buddyname_length, 
119                                                         "Screen Name: %s",
120                                                         format_text(buddyname, buddyname_length));
121         }
122         return tvb_length(tvb);
123 }
124
125 static const aim_subtype aim_fnac_family_chat[] = {
126   { 0x0001, "Error", dissect_aim_snac_error },
127   { 0x0002, "Room Info Update", NULL },
128   { 0x0003, "User Join", dissect_aim_chat_userinfo_list },
129   { 0x0004, "User Leave", dissect_aim_chat_userinfo_list },
130   { 0x0005, "Outgoing Message", dissect_aim_chat_outgoing_msg },
131   { 0x0006, "Incoming Message", dissect_aim_chat_incoming_msg },
132   { 0x0007, "Evil Request", NULL },
133   { 0x0008, "Evil Reply", NULL },
134   { 0, NULL, NULL }
135 };
136
137 /* Register the protocol with Ethereal */
138 void
139 proto_register_aim_chat(void)
140 {
141
142 /* Setup list of header fields */
143 /*FIXME
144   static hf_register_info hf[] = {
145   };*/
146
147 /* Setup protocol subtree array */
148   static gint *ett[] = {
149     &ett_aim_chat,
150   };
151
152 /* Register the protocol name and description */
153   proto_aim_chat = proto_register_protocol("AIM Chat Service", "AIM Chat", "aim_chat");
154
155 /* Required function calls to register the header fields and subtrees used */
156 /*FIXME
157   proto_register_field_array(proto_aim_chat, hf, array_length(hf));*/
158   proto_register_subtree_array(ett, array_length(ett));
159 }
160
161 void
162 proto_reg_handoff_aim_chat(void)
163 {
164   aim_init_family(proto_aim_chat, ett_aim_chat, FAMILY_CHAT, aim_fnac_family_chat);
165 }