]> andersk Git - libfaim.git/blame - src/chat.c
- Wed Mar 28 21:20:08 PST 2001
[libfaim.git] / src / chat.c
CommitLineData
9de3ca7e 1/*
2 * aim_chat.c
3 *
aa6efcfd 4 * Routines for the Chat service.
9de3ca7e 5 *
6 */
7
37ee990e 8#define FAIM_INTERNAL
dd60ff8b 9#include <aim.h>
9de3ca7e 10
78b3fb13 11faim_export char *aim_chat_getname(struct aim_conn_t *conn)
0c20631f 12{
13 if (!conn)
14 return NULL;
15 if (conn->type != AIM_CONN_TYPE_CHAT)
16 return NULL;
17
18 return (char *)conn->priv; /* yuck ! */
19}
20
78b3fb13 21faim_export struct aim_conn_t *aim_chat_getconn(struct aim_session_t *sess, char *name)
0c20631f 22{
040457cc 23 struct aim_conn_t *cur;
24
25 faim_mutex_lock(&sess->connlistlock);
26 for (cur = sess->connlist; cur; cur = cur->next) {
27 if (cur->type != AIM_CONN_TYPE_CHAT)
28 continue;
9d2a3582 29 if (!cur->priv) {
646c6b52 30 faimdprintf(sess, 0, "faim: chat: chat connection with no name! (fd = %d)\n", cur->fd);
9d2a3582 31 continue;
32 }
040457cc 33 if (strcmp((char *)cur->priv, name) == 0)
34 break;
35 }
36 faim_mutex_unlock(&sess->connlistlock);
0c20631f 37
040457cc 38 return cur;
0c20631f 39}
40
78b3fb13 41faim_export int aim_chat_attachname(struct aim_conn_t *conn, char *roomname)
0c20631f 42{
43 if (!conn || !roomname)
44 return -1;
45
9d2a3582 46 if (conn->priv)
47 free(conn->priv);
48
49 conn->priv = strdup(roomname);
0c20631f 50
51 return 0;
52}
53
a2244dd9 54/*
55 * Send a Chat Message.
56 *
57 * Possible flags:
58 * AIM_CHATFLAGS_NOREFLECT -- Unset the flag that requests messages
59 * should be sent to their sender.
60 * AIM_CHATFLAGS_AWAY -- Mark the message as an autoresponse
61 * (Note that WinAIM does not honor this,
62 * and displays the message as normal.)
63 *
64 * XXX convert this to use tlvchains
65 */
78b3fb13 66faim_export unsigned long aim_chat_send_im(struct aim_session_t *sess,
67 struct aim_conn_t *conn,
a2244dd9 68 unsigned short flags,
69 const char *msg,
70 int msglen)
0c20631f 71{
72
73 int curbyte,i;
5b79dc93 74 struct command_tx_struct *newpacket;
37ee990e 75 struct aim_msgcookie_t *cookie;
0c20631f 76
a2244dd9 77 if (!sess || !conn || !msg || (msglen <= 0))
0c20631f 78 return 0;
79
646c6b52 80 if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 1152)))
5b79dc93 81 return -1;
0c20631f 82
5b79dc93 83 newpacket->lock = 1; /* lock struct */
0c20631f 84
85 curbyte = 0;
5b79dc93 86 curbyte += aim_putsnac(newpacket->data+curbyte,
0c20631f 87 0x000e, 0x0005, 0x0000, sess->snac_nextid);
88
89 /*
90 * Generate a random message cookie
0c20631f 91 */
92 for (i=0;i<8;i++)
5ac21963 93 curbyte += aimutil_put8(newpacket->data+curbyte, (u_char) rand());
0c20631f 94
37ee990e 95 cookie = aim_mkcookie(newpacket->data+curbyte-8, AIM_COOKIETYPE_CHAT, NULL);
96 cookie->data = strdup(conn->priv); /* chat hack dependent */
97
98 aim_cachecookie(sess, cookie);
7392c79f 99
0c20631f 100 /*
9d83220c 101 * Channel ID.
0c20631f 102 */
5b79dc93 103 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0003);
0c20631f 104
105 /*
a2244dd9 106 * Type 1: Flag meaning this message is destined to the room.
0c20631f 107 */
5b79dc93 108 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0001);
109 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
0c20631f 110
111 /*
a2244dd9 112 * Type 6: Reflect
0c20631f 113 */
a2244dd9 114 if (!(flags & AIM_CHATFLAGS_NOREFLECT)) {
115 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0006);
116 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
117 }
118
119 /*
120 * Type 7: Autoresponse
121 */
122 if (flags & AIM_CHATFLAGS_AWAY) {
123 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0007);
124 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
125 }
0c20631f 126
127 /*
128 * Type 5: Message block. Contains more TLVs.
129 *
130 * This could include other information... We just
131 * put in a message TLV however.
132 *
133 */
5b79dc93 134 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0005);
135 curbyte += aimutil_put16(newpacket->data+curbyte, strlen(msg)+4);
0c20631f 136
137 /*
138 * SubTLV: Type 1: Message
139 */
5b79dc93 140 curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x0001, strlen(msg), msg);
0c20631f 141
5b79dc93 142 newpacket->commandlen = curbyte;
0c20631f 143
5b79dc93 144 newpacket->lock = 0;
145 aim_tx_enqueue(sess, newpacket);
0c20631f 146
147 return (sess->snac_nextid++);
148}
149
9de3ca7e 150/*
0c20631f 151 * Join a room of name roomname. This is the first
152 * step to joining an already created room. It's
153 * basically a Service Request for family 0x000e,
154 * with a little added on to specify the exchange
155 * and room name.
9de3ca7e 156 *
157 */
78b3fb13 158faim_export unsigned long aim_chat_join(struct aim_session_t *sess,
159 struct aim_conn_t *conn,
160 u_short exchange,
161 const char *roomname)
9de3ca7e 162{
5b79dc93 163 struct command_tx_struct *newpacket;
0c20631f 164 int i;
165
166 if (!sess || !conn || !roomname)
167 return 0;
9de3ca7e 168
646c6b52 169 if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 10+9+strlen(roomname)+2)))
5b79dc93 170 return -1;
a25832e6 171
5b79dc93 172 newpacket->lock = 1;
9de3ca7e 173
5b79dc93 174 i = aim_putsnac(newpacket->data, 0x0001, 0x0004, 0x0000, sess->snac_nextid);
9de3ca7e 175
5b79dc93 176 i+= aimutil_put16(newpacket->data+i, 0x000e);
0c20631f 177
178 /*
179 * this is techinally a TLV, but we can't use normal functions
180 * because we need the extraneous nulls and other weird things.
181 */
5b79dc93 182 i+= aimutil_put16(newpacket->data+i, 0x0001);
183 i+= aimutil_put16(newpacket->data+i, 2+1+strlen(roomname)+2);
184 i+= aimutil_put16(newpacket->data+i, exchange);
185 i+= aimutil_put8(newpacket->data+i, strlen(roomname));
9f20a4e3 186 i+= aimutil_putstr(newpacket->data+i, roomname, strlen(roomname));
187 i+= aimutil_put16(newpacket->data+i, 0x0000); /* instance? */
9de3ca7e 188
0c20631f 189 /*
190 * Chat hack.
191 *
192 * XXX: A problem occurs here if we request a channel
193 * join but it fails....pendingjoin will be nonnull
194 * even though the channel is never going to get a
195 * redirect!
196 *
197 */
9f20a4e3 198 sess->pendingjoin = strdup(roomname);
199 sess->pendingjoinexchange = exchange;
0c20631f 200
5b79dc93 201 newpacket->lock = 0;
202 aim_tx_enqueue(sess, newpacket);
9de3ca7e 203
1ea867e3 204 aim_cachesnac(sess, 0x0001, 0x0004, 0x0000, roomname, strlen(roomname)+1);
9de3ca7e 205
1ea867e3 206 return sess->snac_nextid;
0c20631f 207}
208
78b3fb13 209faim_internal int aim_chat_readroominfo(u_char *buf, struct aim_chat_roominfo *outinfo)
0c20631f 210{
211 int namelen = 0;
212 int i = 0;
213
214 if (!buf || !outinfo)
215 return 0;
216
217 outinfo->exchange = aimutil_get16(buf+i);
218 i += 2;
219
220 namelen = aimutil_get8(buf+i);
221 i += 1;
222
223 outinfo->name = (char *)malloc(namelen+1);
224 memcpy(outinfo->name, buf+i, namelen);
225 outinfo->name[namelen] = '\0';
226 i += namelen;
227
228 outinfo->instance = aimutil_get16(buf+i);
229 i += 2;
230
231 return i;
78b3fb13 232}
0c20631f 233
00ef5271 234faim_export unsigned long aim_chat_clientready(struct aim_session_t *sess,
235 struct aim_conn_t *conn)
236{
237 struct command_tx_struct *newpacket;
238 int i;
239
240 if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 0x20)))
241 return -1;
242
243 newpacket->lock = 1;
244
245 i = aim_putsnac(newpacket->data, 0x0001, 0x0002, 0x0000, sess->snac_nextid);
246
247 i+= aimutil_put16(newpacket->data+i, 0x000e);
248 i+= aimutil_put16(newpacket->data+i, 0x0001);
249
250 i+= aimutil_put16(newpacket->data+i, 0x0004);
251 i+= aimutil_put16(newpacket->data+i, 0x0001);
252
253 i+= aimutil_put16(newpacket->data+i, 0x0001);
254 i+= aimutil_put16(newpacket->data+i, 0x0003);
255
256 i+= aimutil_put16(newpacket->data+i, 0x0004);
257 i+= aimutil_put16(newpacket->data+i, 0x0686);
258
259 newpacket->lock = 0;
260 aim_tx_enqueue(sess, newpacket);
261
262 return (sess->snac_nextid++);
263}
264
265faim_export int aim_chat_leaveroom(struct aim_session_t *sess, char *name)
266{
267 struct aim_conn_t *conn;
268
269 if ((conn = aim_chat_getconn(sess, name)))
270 aim_conn_close(conn);
271
272 if (!conn)
273 return -1;
274 return 0;
275}
276
277/*
278 * conn must be a BOS connection!
279 */
280faim_export unsigned long aim_chat_invite(struct aim_session_t *sess,
281 struct aim_conn_t *conn,
282 char *sn,
283 char *msg,
284 u_short exchange,
285 char *roomname,
286 u_short instance)
287{
288 struct command_tx_struct *newpacket;
289 int i,curbyte=0;
290 struct aim_msgcookie_t *cookie;
291 struct aim_invite_priv *priv;
292
293 if (!sess || !conn || !sn || !msg || !roomname)
294 return -1;
295
296 if (conn->type != AIM_CONN_TYPE_BOS)
297 return -1;
298
299 if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 1152+strlen(sn)+strlen(roomname)+strlen(msg))))
300 return -1;
301
302 newpacket->lock = 1;
303
304 curbyte = aim_putsnac(newpacket->data, 0x0004, 0x0006, 0x0000, sess->snac_nextid);
305
306 /*
307 * Cookie
308 */
309 for (i=0;i<8;i++)
310 curbyte += aimutil_put8(newpacket->data+curbyte, (u_char)rand());
311
312 /* XXX this should get uncached by the unwritten 'invite accept' handler */
313 if(!(priv = calloc(sizeof(struct aim_invite_priv), 1)))
314 return -1;
315 priv->sn = strdup(sn);
316 priv->roomname = strdup(roomname);
317 priv->exchange = exchange;
318 priv->instance = instance;
319
320 if(!(cookie = aim_mkcookie(newpacket->data+curbyte-8, AIM_COOKIETYPE_INVITE, priv)))
321 return -1;
322 aim_cachecookie(sess, cookie);
323
324 /*
325 * Channel (2)
326 */
327 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0002);
328
329 /*
330 * Dest sn
331 */
332 curbyte += aimutil_put8(newpacket->data+curbyte, strlen(sn));
333 curbyte += aimutil_putstr(newpacket->data+curbyte, sn, strlen(sn));
334
335 /*
336 * TLV t(0005)
337 */
338 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0005);
339 curbyte += aimutil_put16(newpacket->data+curbyte, 0x28+strlen(msg)+0x04+0x03+strlen(roomname)+0x02);
340
341 /*
342 * Unknown info
343 */
344 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
345 curbyte += aimutil_put16(newpacket->data+curbyte, 0x3131);
346 curbyte += aimutil_put16(newpacket->data+curbyte, 0x3538);
347 curbyte += aimutil_put16(newpacket->data+curbyte, 0x3446);
348 curbyte += aimutil_put16(newpacket->data+curbyte, 0x4100);
349 curbyte += aimutil_put16(newpacket->data+curbyte, 0x748f);
350 curbyte += aimutil_put16(newpacket->data+curbyte, 0x2420);
351 curbyte += aimutil_put16(newpacket->data+curbyte, 0x6287);
352 curbyte += aimutil_put16(newpacket->data+curbyte, 0x11d1);
353 curbyte += aimutil_put16(newpacket->data+curbyte, 0x8222);
354 curbyte += aimutil_put16(newpacket->data+curbyte, 0x4445);
355 curbyte += aimutil_put16(newpacket->data+curbyte, 0x5354);
356 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
357
358 /*
359 * TLV t(000a) -- Unknown
360 */
361 curbyte += aimutil_put16(newpacket->data+curbyte, 0x000a);
362 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0002);
363 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0001);
364
365 /*
366 * TLV t(000f) -- Unknown
367 */
368 curbyte += aimutil_put16(newpacket->data+curbyte, 0x000f);
369 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
370
371 /*
372 * TLV t(000c) -- Invitation message
373 */
374 curbyte += aim_puttlv_str(newpacket->data+curbyte, 0x000c, strlen(msg), msg);
375
376 /*
377 * TLV t(2711) -- Container for room information
378 */
379 curbyte += aimutil_put16(newpacket->data+curbyte, 0x2711);
380 curbyte += aimutil_put16(newpacket->data+curbyte, 3+strlen(roomname)+2);
381 curbyte += aimutil_put16(newpacket->data+curbyte, exchange);
382 curbyte += aimutil_put8(newpacket->data+curbyte, strlen(roomname));
383 curbyte += aimutil_putstr(newpacket->data+curbyte, roomname, strlen(roomname));
384 curbyte += aimutil_put16(newpacket->data+curbyte, instance);
385
386 newpacket->commandlen = curbyte;
387 newpacket->lock = 0;
388 aim_tx_enqueue(sess, newpacket);
389
390 return (sess->snac_nextid++);
391}
0c20631f 392
393/*
394 * General room information. Lots of stuff.
395 *
396 * Values I know are in here but I havent attached
397 * them to any of the 'Unknown's:
398 * - Language (English)
399 *
aa6efcfd 400 * SNAC 000e/0002
0c20631f 401 */
00ef5271 402static int infoupdate(struct aim_session_t *sess, aim_module_t *mod, struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned char *data, int datalen)
0c20631f 403{
f1a5efe0 404 struct aim_userinfo_s *userinfo = NULL;
0c20631f 405 rxcallback_t userfunc=NULL;
00ef5271 406 int ret = 0, i = 0;
0c20631f 407 int usercount = 0;
00ef5271 408 unsigned char detaillevel = 0;
f1a5efe0 409 char *roomname = NULL;
0c20631f 410 struct aim_chat_roominfo roominfo;
00ef5271 411 unsigned short tlvcount = 0;
0c20631f 412 struct aim_tlvlist_t *tlvlist;
f1a5efe0 413 char *roomdesc = NULL;
aa6efcfd 414 unsigned short unknown_c9 = 0;
415 unsigned long creationtime = 0;
416 unsigned short maxmsglen = 0;
417 unsigned short unknown_d2 = 0, unknown_d5 = 0;
0c20631f 418
00ef5271 419 i += aim_chat_readroominfo(data+i, &roominfo);
0c20631f 420
00ef5271 421 detaillevel = aimutil_get8(data+i);
0c20631f 422 i++;
aa6efcfd 423
424 if (detaillevel != 0x02) {
425 if (detaillevel == 0x01)
646c6b52 426 faimdprintf(sess, 0, "faim: chat_roomupdateinfo: detail level 1 not supported\n");
aa6efcfd 427 else
646c6b52 428 faimdprintf(sess, 0, "faim: chat_roomupdateinfo: unknown detail level %d\n", detaillevel);
aa6efcfd 429 return 1;
430 }
0c20631f 431
00ef5271 432 tlvcount = aimutil_get16(data+i);
0c20631f 433 i += 2;
434
435 /*
436 * Everything else are TLVs.
437 */
00ef5271 438 tlvlist = aim_readtlvchain(data+i, datalen-i);
0c20631f 439
440 /*
441 * TLV type 0x006a is the room name in Human Readable Form.
442 */
443 if (aim_gettlv(tlvlist, 0x006a, 1))
00ef5271 444 roomname = aim_gettlv_str(tlvlist, 0x006a, 1);
0c20631f 445
446 /*
447 * Type 0x006f: Number of occupants.
448 */
1ea867e3 449 if (aim_gettlv(tlvlist, 0x006f, 1))
450 usercount = aim_gettlv16(tlvlist, 0x006f, 1);
0c20631f 451
452 /*
453 * Type 0x0073: Occupant list.
454 */
aa6efcfd 455 if (aim_gettlv(tlvlist, 0x0073, 1)) {
456 int curoccupant = 0;
457 struct aim_tlv_t *tmptlv;
458
459 tmptlv = aim_gettlv(tlvlist, 0x0073, 1);
0c20631f 460
aa6efcfd 461 /* Allocate enough userinfo structs for all occupants */
462 userinfo = calloc(usercount, sizeof(struct aim_userinfo_s));
463
464 i = 0;
465 while (curoccupant < usercount)
646c6b52 466 i += aim_extractuserinfo(sess, tmptlv->value+i, &userinfo[curoccupant++]);
aa6efcfd 467 }
0c20631f 468
469 /*
aa6efcfd 470 * Type 0x00c9: Unknown. (2 bytes)
0c20631f 471 */
1ea867e3 472 if (aim_gettlv(tlvlist, 0x00c9, 1))
473 unknown_c9 = aim_gettlv16(tlvlist, 0x00c9, 1);
0c20631f 474
475 /*
aa6efcfd 476 * Type 0x00ca: Creation time (4 bytes)
0c20631f 477 */
1ea867e3 478 if (aim_gettlv(tlvlist, 0x00ca, 1))
479 creationtime = aim_gettlv32(tlvlist, 0x00ca, 1);
0c20631f 480
481 /*
482 * Type 0x00d1: Maximum Message Length
483 */
1ea867e3 484 if (aim_gettlv(tlvlist, 0x00d1, 1))
485 maxmsglen = aim_gettlv16(tlvlist, 0x00d1, 1);
0c20631f 486
487 /*
aa6efcfd 488 * Type 0x00d2: Unknown. (2 bytes)
0c20631f 489 */
1ea867e3 490 if (aim_gettlv(tlvlist, 0x00d2, 1))
491 unknown_d2 = aim_gettlv16(tlvlist, 0x00d2, 1);
0c20631f 492
493 /*
494 * Type 0x00d3: Room Description
495 */
496 if (aim_gettlv(tlvlist, 0x00d3, 1))
497 roomdesc = aim_gettlv_str(tlvlist, 0x00d3, 1);
498
499 /*
aa6efcfd 500 * Type 0x00d5: Unknown. (1 byte)
0c20631f 501 */
1ea867e3 502 if (aim_gettlv(tlvlist, 0x00d5, 1))
503 unknown_d5 = aim_gettlv8(tlvlist, 0x00d5, 1);
0c20631f 504
505
00ef5271 506 if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype))) {
aa6efcfd 507 ret = userfunc(sess,
00ef5271 508 rx,
aa6efcfd 509 &roominfo,
510 roomname,
511 usercount,
512 userinfo,
513 roomdesc,
514 unknown_c9,
515 creationtime,
516 maxmsglen,
517 unknown_d2,
518 unknown_d5);
00ef5271 519 }
520
0c20631f 521 free(roominfo.name);
522 free(userinfo);
523 free(roomname);
524 free(roomdesc);
525 aim_freetlvchain(&tlvlist);
526
527 return ret;
528}
529
00ef5271 530static int userlistchange(struct aim_session_t *sess, aim_module_t *mod, struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned char *data, int datalen)
0c20631f 531{
532 struct aim_userinfo_s *userinfo = NULL;
00ef5271 533 rxcallback_t userfunc;
534 int i = 0, curcount = 0, ret = 0;
0c20631f 535
00ef5271 536 while (i < datalen) {
aa6efcfd 537 curcount++;
538 userinfo = realloc(userinfo, curcount * sizeof(struct aim_userinfo_s));
00ef5271 539 i += aim_extractuserinfo(sess, data+i, &userinfo[curcount-1]);
aa6efcfd 540 }
0c20631f 541
00ef5271 542 if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
543 ret = userfunc(sess, rx, curcount, userinfo);
0c20631f 544
545 free(userinfo);
546
547 return ret;
00ef5271 548}
0c20631f 549
550/*
551 * We could probably include this in the normal ICBM parsing
552 * code as channel 0x0003, however, since only the start
553 * would be the same, we might as well do it here.
9d83220c 554 *
555 * General outline of this SNAC:
556 * snac
557 * cookie
558 * channel id
559 * tlvlist
560 * unknown
561 * source user info
562 * name
563 * evility
564 * userinfo tlvs
565 * online time
566 * etc
567 * message metatlv
568 * message tlv
569 * message string
570 * possibly others
571 *
0c20631f 572 */
00ef5271 573static int incomingmsg(struct aim_session_t *sess, aim_module_t *mod, struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned char *data, int datalen)
0c20631f 574{
575 struct aim_userinfo_s userinfo;
576 rxcallback_t userfunc=NULL;
00ef5271 577 int ret = 0, i = 0;
fd0b7da6 578 unsigned char cookie[8];
0c20631f 579 int channel;
580 struct aim_tlvlist_t *outerlist;
581 char *msg = NULL;
fd0b7da6 582 struct aim_msgcookie_t *ck;
0c20631f 583
584 memset(&userinfo, 0x00, sizeof(struct aim_userinfo_s));
585
0c20631f 586 /*
7392c79f 587 * ICBM Cookie. Cache it.
0c20631f 588 */
00ef5271 589 memcpy(cookie, data, 8);
590 i += 8;
0c20631f 591
fd0b7da6 592 if ((ck = aim_uncachecookie(sess, cookie, AIM_COOKIETYPE_CHAT))) {
593 if (ck->data)
594 free(ck->data);
595 free(ck);
596 }
7392c79f 597
0c20631f 598 /*
599 * Channel ID
600 *
601 * Channels 1 and 2 are implemented in the normal ICBM
602 * parser.
603 *
604 * We only do channel 3 here.
605 *
606 */
00ef5271 607 channel = aimutil_get16(data+i);
0c20631f 608 i += 2;
609
aa6efcfd 610 if (channel != 0x0003) {
646c6b52 611 faimdprintf(sess, 0, "faim: chat_incoming: unknown channel! (0x%04x)\n", channel);
00ef5271 612 return 0;
aa6efcfd 613 }
0c20631f 614
615 /*
616 * Start parsing TLVs right away.
617 */
00ef5271 618 outerlist = aim_readtlvchain(data+8+2, datalen-8-2);
0c20631f 619
620 /*
621 * Type 0x0003: Source User Information
622 */
aa6efcfd 623 if (aim_gettlv(outerlist, 0x0003, 1)) {
624 struct aim_tlv_t *userinfotlv;
625
626 userinfotlv = aim_gettlv(outerlist, 0x0003, 1);
646c6b52 627 aim_extractuserinfo(sess, userinfotlv->value, &userinfo);
aa6efcfd 628 }
0c20631f 629
630 /*
631 * Type 0x0001: Unknown.
632 */
633 if (aim_gettlv(outerlist, 0x0001, 1))
634 ;
635
636 /*
637 * Type 0x0005: Message Block. Conains more TLVs.
638 */
00ef5271 639 if (aim_gettlv(outerlist, 0x0005, 1)) {
640 struct aim_tlvlist_t *innerlist;
641 struct aim_tlv_t *msgblock;
0c20631f 642
00ef5271 643 msgblock = aim_gettlv(outerlist, 0x0005, 1);
644 innerlist = aim_readtlvchain(msgblock->value, msgblock->length);
0c20631f 645
00ef5271 646 /*
647 * Type 0x0001: Message.
648 */
649 if (aim_gettlv(innerlist, 0x0001, 1))
650 msg = aim_gettlv_str(innerlist, 0x0001, 1);
0c20631f 651
00ef5271 652 aim_freetlvchain(&innerlist);
653 }
654
655 if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
656 ret = userfunc(sess, rx, &userinfo, msg);
0c20631f 657
0c20631f 658 free(msg);
659 aim_freetlvchain(&outerlist);
660
661 return ret;
0c20631f 662}
663
00ef5271 664static int snachandler(struct aim_session_t *sess, aim_module_t *mod, struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned char *data, int datalen)
0c20631f 665{
0c20631f 666
00ef5271 667 if (snac->subtype == 0x0002)
668 return infoupdate(sess, mod, rx, snac, data, datalen);
669 else if ((snac->subtype == 0x0003) || (snac->subtype == 0x0004))
670 return userlistchange(sess, mod, rx, snac, data, datalen);
671 else if (snac->subtype == 0x0006)
672 return incomingmsg(sess, mod, rx, snac, data, datalen);
040457cc 673
040457cc 674 return 0;
0c20631f 675}
676
00ef5271 677faim_internal int chat_modfirst(struct aim_session_t *sess, aim_module_t *mod)
0c20631f 678{
0c20631f 679
00ef5271 680 mod->family = 0x000e;
681 mod->version = 0x0000;
682 mod->flags = 0;
683 strncpy(mod->name, "chat", sizeof(mod->name));
684 mod->snachandler = snachandler;
0c20631f 685
00ef5271 686 return 0;
9de3ca7e 687}
This page took 0.423971 seconds and 5 git commands to generate.