]> andersk Git - libfaim.git/blame - aim_im.c
- Thu Sep 21 00:24:36 UTC 2000
[libfaim.git] / aim_im.c
CommitLineData
9de3ca7e 1/*
2 * aim_im.c
3 *
4 * The routines for sending/receiving Instant Messages.
5 *
6 */
7
a25832e6 8#include <faim/aim.h>
9de3ca7e 9
10/*
11 * Send an ICBM (instant message).
12 *
13 *
14 * Possible flags:
15 * AIM_IMFLAGS_AWAY -- Marks the message as an autoresponse
16 * AIM_IMFLAGS_ACK -- Requests that the server send an ack
17 * when the message is received (of type 0x0004/0x000c)
18 *
9de3ca7e 19 */
78b3fb13 20faim_export unsigned long aim_send_im(struct aim_session_t *sess,
21 struct aim_conn_t *conn,
22 char *destsn, u_int flags, char *msg)
9de3ca7e 23{
24
49c8a2fa 25 int curbyte,i;
5b79dc93 26 struct command_tx_struct *newpacket;
9de3ca7e 27
91931247 28 if (strlen(msg) >= MAXMSGLEN)
29 return -1;
30
b69540e3 31 if (!(newpacket = aim_tx_new(AIM_FRAMETYPE_OSCAR, 0x0002, conn, strlen(msg)+256)))
5b79dc93 32 return -1;
9de3ca7e 33
5b79dc93 34 newpacket->lock = 1; /* lock struct */
9de3ca7e 35
36 curbyte = 0;
5b79dc93 37 curbyte += aim_putsnac(newpacket->data+curbyte,
a25832e6 38 0x0004, 0x0006, 0x0000, sess->snac_nextid);
9de3ca7e 39
49c8a2fa 40 /*
41 * Generate a random message cookie
a25832e6 42 *
43 * We could cache these like we do SNAC IDs. (In fact, it
44 * might be a good idea.) In the message error functions,
45 * the 8byte message cookie is returned as well as the
46 * SNAC ID.
47 *
49c8a2fa 48 */
49 for (i=0;i<8;i++)
5ac21963 50 curbyte += aimutil_put8(newpacket->data+curbyte, (u_char) rand());
9de3ca7e 51
49c8a2fa 52 /*
53 * Channel ID
54 */
5b79dc93 55 curbyte += aimutil_put16(newpacket->data+curbyte,0x0001);
9de3ca7e 56
49c8a2fa 57 /*
58 * Destination SN (prepended with byte length)
59 */
5b79dc93 60 curbyte += aimutil_put8(newpacket->data+curbyte,strlen(destsn));
61 curbyte += aimutil_putstr(newpacket->data+curbyte, destsn, strlen(destsn));
9de3ca7e 62
49c8a2fa 63 /*
64 * metaTLV start.
65 */
5b79dc93 66 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0002);
e5012450 67 curbyte += aimutil_put16(newpacket->data+curbyte, strlen(msg) + 0x10);
9de3ca7e 68
49c8a2fa 69 /*
e5012450 70 * Flag data / ICBM Parameters?
49c8a2fa 71 */
e5012450 72 curbyte += aimutil_put8(newpacket->data+curbyte, 0x05);
73 curbyte += aimutil_put8(newpacket->data+curbyte, 0x01);
74
75 /* number of bytes to follow */
76 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0004);
77 curbyte += aimutil_put8(newpacket->data+curbyte, 0x01);
78 curbyte += aimutil_put8(newpacket->data+curbyte, 0x01);
79 curbyte += aimutil_put8(newpacket->data+curbyte, 0x01);
80 curbyte += aimutil_put8(newpacket->data+curbyte, 0x02);
81
5b79dc93 82 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0101);
9de3ca7e 83
49c8a2fa 84 /*
85 * Message block length.
86 */
5b79dc93 87 curbyte += aimutil_put16(newpacket->data+curbyte, strlen(msg) + 0x04);
9de3ca7e 88
49c8a2fa 89 /*
90 * Character set data?
91 */
5b79dc93 92 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
93 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
9de3ca7e 94
49c8a2fa 95 /*
96 * Message. Not terminated.
97 */
5b79dc93 98 curbyte += aimutil_putstr(newpacket->data+curbyte,msg, strlen(msg));
9de3ca7e 99
49c8a2fa 100 /*
101 * Set the Request Acknowledge flag.
102 */
5b79dc93 103 if (flags & AIM_IMFLAGS_ACK) {
104 curbyte += aimutil_put16(newpacket->data+curbyte,0x0003);
105 curbyte += aimutil_put16(newpacket->data+curbyte,0x0000);
106 }
49c8a2fa 107
108 /*
109 * Set the Autoresponse flag.
110 */
5b79dc93 111 if (flags & AIM_IMFLAGS_AWAY) {
112 curbyte += aimutil_put16(newpacket->data+curbyte,0x0004);
113 curbyte += aimutil_put16(newpacket->data+curbyte,0x0000);
114 }
49c8a2fa 115
5b79dc93 116 newpacket->commandlen = curbyte;
117 newpacket->lock = 0;
9de3ca7e 118
5b79dc93 119 aim_tx_enqueue(sess, newpacket);
49c8a2fa 120
9de3ca7e 121#ifdef USE_SNAC_FOR_IMS
122 {
123 struct aim_snac_t snac;
124
a25832e6 125 snac.id = sess->snac_nextid;
9de3ca7e 126 snac.family = 0x0004;
127 snac.type = 0x0006;
128 snac.flags = 0x0000;
129
130 snac.data = malloc(strlen(destsn)+1);
131 memcpy(snac.data, destsn, strlen(destsn)+1);
132
a25832e6 133 aim_newsnac(sess, &snac);
9de3ca7e 134 }
135
a25832e6 136 aim_cleansnacs(sess, 60); /* clean out all SNACs over 60sec old */
9de3ca7e 137#endif
138
a25832e6 139 return (sess->snac_nextid++);
9de3ca7e 140}
141
78b3fb13 142faim_internal int aim_parse_outgoing_im_middle(struct aim_session_t *sess,
143 struct command_rx_struct *command)
e5012450 144{
145 unsigned int i = 0, z;
146 rxcallback_t userfunc = NULL;
147 unsigned char cookie[8];
148 int channel;
149 struct aim_tlvlist_t *tlvlist;
150 char sn[MAXSNLEN];
151 unsigned short icbmflags = 0;
152 unsigned char flag1 = 0, flag2 = 0;
153 unsigned char *msgblock = NULL, *msg = NULL;
154
155 i = 10;
156
157 /* ICBM Cookie. */
158 for (z=0; z<8; z++,i++)
159 cookie[z] = command->data[i];
160
161 /* Channel ID */
162 channel = aimutil_get16(command->data+i);
163 i += 2;
164
165 if (channel != 0x01) {
166 printf("faim: icbm: ICBM recieved on unsupported channel. Ignoring. (chan = %04x)\n", channel);
167 return 1;
168 }
169
78b3fb13 170 strncpy(sn, (char *) command->data+i+1, (int) *(command->data+i));
e5012450 171 i += 1 + (int) *(command->data+i);
172
173 tlvlist = aim_readtlvchain(command->data+i, command->commandlen-i);
174
175 if (aim_gettlv(tlvlist, 0x0003, 1))
176 icbmflags |= AIM_IMFLAGS_ACK;
177 if (aim_gettlv(tlvlist, 0x0004, 1))
178 icbmflags |= AIM_IMFLAGS_AWAY;
179
180 if (aim_gettlv(tlvlist, 0x0002, 1)) {
181 int j = 0;
182
78b3fb13 183 msgblock = (unsigned char *)aim_gettlv_str(tlvlist, 0x0002, 1);
e5012450 184
185 /* no, this really is correct. I'm not high or anything either. */
186 j += 2;
187 j += 2 + aimutil_get16(msgblock+j);
188 j += 2;
189
190 j += 2; /* final block length */
191
192 flag1 = aimutil_get16(msgblock);
193 j += 2;
194 flag2 = aimutil_get16(msgblock);
195 j += 2;
196
197 msg = msgblock+j;
198 }
199
200 if ((userfunc = aim_callhandler(command->conn, 0x0004, 0x0006)) || (i = 0))
201 i = userfunc(sess, command, channel, sn, msg, icbmflags, flag1, flag2);
202
203 if (msgblock)
204 free(msgblock);
205 aim_freetlvchain(&tlvlist);
206
207 return 0;
208}
209
49c8a2fa 210/*
211 * It can easily be said that parsing ICBMs is THE single
212 * most difficult thing to do in the in AIM protocol. In
213 * fact, I think I just did say that.
214 *
215 * Below is the best damned solution I've come up with
216 * over the past sixteen months of battling with it. This
217 * can parse both away and normal messages from every client
218 * I have access to. Its not fast, its not clean. But it works.
219 *
220 * We should also support at least minimal parsing of
221 * Channel 2, so that we can at least know the name of the
222 * room we're invited to, but obviously can't attend...
223 *
224 */
78b3fb13 225faim_internal int aim_parse_incoming_im_middle(struct aim_session_t *sess,
226 struct command_rx_struct *command)
9de3ca7e 227{
26af6789 228 u_int i = 0,z;
9de3ca7e 229 rxcallback_t userfunc = NULL;
49c8a2fa 230 u_char cookie[8];
231 int channel;
232 struct aim_tlvlist_t *tlvlist;
26af6789 233 struct aim_userinfo_s userinfo;
49c8a2fa 234 u_short wastebits;
49c8a2fa 235
95d7332a 236 memset(&userinfo, 0x00, sizeof(struct aim_userinfo_s));
237
49c8a2fa 238 i = 10; /* Skip SNAC header */
239
9de3ca7e 240 /*
49c8a2fa 241 * Read ICBM Cookie. And throw away.
9de3ca7e 242 */
49c8a2fa 243 for (z=0; z<8; z++,i++)
244 cookie[z] = command->data[i];
9de3ca7e 245
49c8a2fa 246 /*
247 * Channel ID.
248 *
249 * Channel 0x0001 is the message channel. There are
250 * other channels for things called "rendevous"
251 * which represent chat and some of the other new
26af6789 252 * features of AIM2/3/3.5.
253 *
254 * Channel 0x0002 is the Rendevous channel, which
50443ea0 255 * is where Chat Invitiations and various client-client
256 * connection negotiations come from.
26af6789 257 *
49c8a2fa 258 */
259 channel = aimutil_get16(command->data+i);
9de3ca7e 260 i += 2;
26af6789 261
262 /*
263 *
264 */
265 if ((channel != 0x01) && (channel != 0x02))
9de3ca7e 266 {
49c8a2fa 267 printf("faim: icbm: ICBM received on an unsupported channel. Ignoring.\n (chan = %04x)", channel);
268 return 1;
9de3ca7e 269 }
270
49c8a2fa 271 /*
68ac63c2 272 * Extract the standard user info block.
273 *
274 * Note that although this contains TLVs that appear contiguous
275 * with the TLVs read below, they are two different pieces. The
276 * userinfo block contains the number of TLVs that contain user
277 * information, the rest are not even though there is no seperation.
278 * aim_extractuserinfo() returns the number of bytes used by the
279 * userinfo tlvs, so you can start reading the rest of them right
280 * afterward.
281 *
282 * That also means that TLV types can be duplicated between the
283 * userinfo block and the rest of the message, however there should
284 * never be two TLVs of the same type in one block.
285 *
26af6789 286 */
68ac63c2 287 i += aim_extractuserinfo(command->data+i, &userinfo);
26af6789 288
49c8a2fa 289 /*
68ac63c2 290 * Read block of TLVs (not including the userinfo data). All
291 * further data is derived from what is parsed here.
49c8a2fa 292 */
293 tlvlist = aim_readtlvchain(command->data+i, command->commandlen-i);
9de3ca7e 294
49c8a2fa 295 /*
26af6789 296 * From here on, its depends on what channel we're on.
49c8a2fa 297 */
26af6789 298 if (channel == 1)
49c8a2fa 299 {
26af6789 300 u_int j = 0, y = 0, z = 0;
301 char *msg = NULL;
302 u_int icbmflags = 0;
7392c79f 303 struct aim_tlv_t *msgblocktlv;
26af6789 304 u_char *msgblock;
305 u_short flag1,flag2;
95d7332a 306
26af6789 307 /*
308 * Check Autoresponse status. If it is an autoresponse,
68ac63c2 309 * it will contain a type 0x0004 TLV, with zero length.
26af6789 310 */
68ac63c2 311 if (aim_gettlv(tlvlist, 0x0004, 1))
26af6789 312 icbmflags |= AIM_IMFLAGS_AWAY;
313
314 /*
315 * Check Ack Request status.
316 */
68ac63c2 317 if (aim_gettlv(tlvlist, 0x0003, 1))
26af6789 318 icbmflags |= AIM_IMFLAGS_ACK;
319
26af6789 320 /*
321 * Message block.
26af6789 322 */
323 msgblocktlv = aim_gettlv(tlvlist, 0x0002, 1);
68ac63c2 324 if (!msgblocktlv || !msgblocktlv->value) {
325 printf("faim: icbm: major error! no message block TLV found!\n");
326 aim_freetlvchain(&tlvlist);
327 return 1;
328 }
26af6789 329
330 /*
331 * Extracting the message from the unknown cruft.
332 *
333 * This is a bit messy, and I'm not really qualified,
334 * even as the author, to comment on it. At least
335 * its not as bad as a while loop shooting into infinity.
336 *
337 * "Do you believe in magic?"
338 *
339 */
340 msgblock = msgblocktlv->value;
341 j = 0;
342
343 wastebits = aimutil_get8(msgblock+j++);
344 wastebits = aimutil_get8(msgblock+j++);
345
346 y = aimutil_get16(msgblock+j);
347 j += 2;
348 for (z = 0; z < y; z++)
349 wastebits = aimutil_get8(msgblock+j++);
350 wastebits = aimutil_get8(msgblock+j++);
351 wastebits = aimutil_get8(msgblock+j++);
352
353 /*
354 * Message string length, including flag words.
355 */
356 i = aimutil_get16(msgblock+j);
357 j += 2;
358
359 /*
360 * Flag words.
361 *
362 * Its rumored that these can kick in some funky
363 * 16bit-wide char stuff that used to really kill
364 * libfaim. Hopefully the latter is no longer true.
365 *
366 * Though someone should investiagte the former.
367 *
368 */
369 flag1 = aimutil_get16(msgblock+j);
370 j += 2;
371 flag2 = aimutil_get16(msgblock+j);
372 j += 2;
373
374 if (flag1 || flag2)
375 printf("faim: icbm: **warning: encoding flags are being used! {%04x, %04x}\n", flag1, flag2);
376
377 /*
378 * Message string.
379 */
380 i -= 4;
381 msg = (char *)malloc(i+1);
382 memcpy(msg, msgblock+j, i);
383 msg[i] = '\0';
384
385 /*
386 * Call client.
387 */
388 userfunc = aim_callhandler(command->conn, 0x0004, 0x0007);
389 if (userfunc)
390 i = userfunc(sess, command, channel, &userinfo, msg, icbmflags, flag1, flag2);
391 else
392 i = 0;
393
394 free(msg);
49c8a2fa 395 }
26af6789 396 else if (channel == 0x0002)
0c20631f 397 {
26af6789 398 struct aim_tlv_t *block1;
399 struct aim_tlvlist_t *list2;
040457cc 400 unsigned short reqclass = 0;
b69540e3 401 unsigned short status = 0;
26af6789 402
26af6789 403 /*
404 * There's another block of TLVs embedded in the type 5 here.
405 */
406 block1 = aim_gettlv(tlvlist, 0x0005, 1);
040457cc 407 if (!block1) {
408 printf("faim: no tlv 0x0005 in rendezvous transaction!\n");
409 aim_freetlvchain(&tlvlist);
26af6789 410 return 1; /* major problem */
040457cc 411 }
26af6789 412
b69540e3 413 /*
414 * First two bytes represent the status of the connection.
415 *
416 * 0 is a request, 2 is an accept
417 */
418 status = aimutil_get16(block1->value+0);
419
420 /*
421 * Next comes the cookie. Should match the ICBM cookie.
422 */
423 if (memcmp(block1->value+2, cookie, 8) != 0)
424 printf("faim: rend: warning cookies don't match!\n");
26af6789 425
0c20631f 426 /*
b69540e3 427 * The next 16bytes are a capability block so we can
428 * identify what type of rendezvous this is.
0c20631f 429 *
b69540e3 430 * Thanks to Eric Warmenhoven <warmenhoven@linux.com> (of GAIM)
431 * for pointing some of this out to me. In fact, a lot of
432 * the client-to-client info comes from the work of the GAIM
433 * developers. Thanks!
434 *
435 * Read off one capability string and we should have it ID'd.
436 *
0c20631f 437 */
b69540e3 438 reqclass = aim_getcap(block1->value+2+8, 0x10);
439 if (reqclass == 0x0000) {
440 printf("faim: rend: no ID block\n");
040457cc 441 aim_freetlvchain(&tlvlist);
442 return 1;
443 }
444
b69540e3 445 /*
446 * What follows may be TLVs or nothing, depending on the
447 * purpose of the message.
448 *
449 * Ack packets for instance have nothing more to them.
450 */
451 list2 = aim_readtlvchain(block1->value+2+8+16, block1->length-2-8-16);
452
453 if (!list2 || ((reqclass != AIM_CAPS_IMIMAGE) && !(aim_gettlv(list2, 0x2711, 1)))) {
040457cc 454 struct aim_msgcookie_t *cook;
7392c79f 455 int type;
456
457 type = aim_msgcookie_gettype(reqclass); /* XXX: fix this shitty code */
040457cc 458
7392c79f 459 if ((cook = aim_uncachecookie(sess, cookie, type)) == NULL) {
b69540e3 460 printf("faim: non-data rendezvous thats not in cache!\n");
040457cc 461 aim_freetlvchain(&list2);
0c20631f 462 aim_freetlvchain(&tlvlist);
463 return 1;
26af6789 464 }
465
b69540e3 466 if (cook->type == AIM_CAPS_SENDFILE) {
7392c79f 467 struct aim_filetransfer_priv *ft;
26af6789 468
040457cc 469 if (cook->data) {
470 struct aim_tlv_t *errortlv;
471 int errorcode = -1;
472
7392c79f 473 ft = (struct aim_filetransfer_priv *)cook->data;
040457cc 474
475 if ((errortlv = aim_gettlv(list2, 0x000b, 1))) {
476 errorcode = aimutil_get16(errortlv->value);
0c20631f 477 }
b69540e3 478 if (errorcode) {
7392c79f 479 printf("faim: transfer from %s (%s) for %s cancelled (error code %d)\n", ft->sn, ft->ip, ft->fh.name, errorcode);
b69540e3 480 } else if (status == 0x0002) { /* connection accepted */
7392c79f 481 printf("faim: transfer from %s (%s) for %s accepted\n", ft->sn, ft->ip, ft->fh.name);
b69540e3 482 }
040457cc 483 free(cook->data);
484 } else {
485 printf("faim: not data attached to file transfer\n");
486 }
b69540e3 487 } else if (cook->type == AIM_CAPS_VOICE) {
488 printf("faim: voice request cancelled\n");
040457cc 489 } else {
490 printf("faim: unknown cookie cache type %d\n", cook->type);
491 }
492
493 free(cook);
b69540e3 494 if (list2)
495 aim_freetlvchain(&list2);
496 aim_freetlvchain(&tlvlist);
040457cc 497 return 1;
498 }
499
040457cc 500 /*
b69540e3 501 * The rest of the handling depends on what type it is.
040457cc 502 */
b69540e3 503 if (reqclass & AIM_CAPS_BUDDYICON) {
f21cc652 504
505 /*
506 * Call client.
507 */
508 userfunc = aim_callhandler(command->conn, 0x0004, 0x0007);
509 if (userfunc || (i = 0))
510 i = userfunc(sess,
511 command,
512 channel,
513 reqclass,
514 &userinfo);
515
b69540e3 516 } else if (reqclass & AIM_CAPS_VOICE) {
7392c79f 517 struct aim_msgcookie_t *cachedcook;
b69540e3 518
519 printf("faim: rend: voice!\n");
520
7392c79f 521 if(!(cachedcook = (struct aim_msgcookie_t*)calloc(1, sizeof(struct aim_msgcookie_t))))
522 return 1;
523
524 memcpy(cachedcook->cookie, cookie, 8);
525 cachedcook->type = AIM_COOKIETYPE_OFTVOICE;
526 cachedcook->data = NULL;
527
528 if (aim_cachecookie(sess, cachedcook) != 0)
b69540e3 529 printf("faim: ERROR caching message cookie\n");
040457cc 530
531 /* XXX: implement all this */
532
533 /*
534 * Call client.
535 */
536 userfunc = aim_callhandler(command->conn, 0x0004, 0x0007);
537 if (userfunc || (i = 0)) {
7392c79f 538 i = userfunc(sess, command, channel, reqclass, &userinfo);
040457cc 539 }
7392c79f 540 } else if ((reqclass & AIM_CAPS_IMIMAGE) || (reqclass & AIM_CAPS_BUDDYICON)) {
040457cc 541 char ip[30];
7392c79f 542 struct aim_directim_priv *priv;
040457cc 543
544 memset(ip, 0, sizeof(ip));
545
7392c79f 546 if (aim_gettlv(list2, 0x0003, 1) && aim_gettlv(list2, 0x0005, 1)) {
040457cc 547 struct aim_tlv_t *iptlv, *porttlv;
0c20631f 548
040457cc 549 iptlv = aim_gettlv(list2, 0x0003, 1);
550 porttlv = aim_gettlv(list2, 0x0005, 1);
551
552 snprintf(ip, sizeof(ip)-1, "%d.%d.%d.%d:%d",
553 aimutil_get8(iptlv->value+0),
554 aimutil_get8(iptlv->value+1),
555 aimutil_get8(iptlv->value+2),
556 aimutil_get8(iptlv->value+3),
b69540e3 557 4443 /*aimutil_get16(porttlv->value)*/);
040457cc 558 }
559
b69540e3 560 printf("faim: rend: directIM request from %s (%s)\n",
040457cc 561 userinfo.sn,
040457cc 562 ip);
b69540e3 563
7392c79f 564 /* XXX: there are a couple of different request packets for
565 * different things */
040457cc 566
7392c79f 567 priv = (struct aim_directim_priv *)calloc(1, sizeof(struct aim_directim_priv));
568 memcpy(priv->ip, ip, sizeof(priv->ip));
569 memcpy(priv->sn, userinfo.sn, sizeof(priv->sn));
570 memcpy(priv->cookie, cookie, sizeof(priv->cookie));
040457cc 571
f21cc652 572 /*
573 * Call client.
574 */
575 userfunc = aim_callhandler(command->conn, 0x0004, 0x0007);
576 if (userfunc || (i = 0))
577 i = userfunc(sess,
578 command,
579 channel,
580 reqclass,
7392c79f 581 &userinfo, priv);
b69540e3 582
583 } else if (reqclass & AIM_CAPS_CHAT) {
584 struct aim_tlv_t *miscinfo;
040457cc 585 struct aim_chat_roominfo roominfo;
586 char *msg=NULL,*encoding=NULL,*lang=NULL;
587
b69540e3 588 miscinfo = aim_gettlv(list2, 0x2711, 1);
040457cc 589 aim_chat_readroominfo(miscinfo->value, &roominfo);
590
591 if (aim_gettlv(list2, 0x000c, 1))
592 msg = aim_gettlv_str(list2, 0x000c, 1);
0c20631f 593
040457cc 594 if (aim_gettlv(list2, 0x000d, 1))
595 encoding = aim_gettlv_str(list2, 0x000d, 1);
0c20631f 596
040457cc 597 if (aim_gettlv(list2, 0x000e, 1))
598 lang = aim_gettlv_str(list2, 0x000e, 1);
26af6789 599
040457cc 600 /*
601 * Call client.
602 */
603 userfunc = aim_callhandler(command->conn, 0x0004, 0x0007);
604 if (userfunc || (i = 0))
605 i = userfunc(sess,
606 command,
607 channel,
f21cc652 608 reqclass,
040457cc 609 &userinfo,
610 &roominfo,
611 msg,
612 encoding?encoding+1:NULL,
613 lang?lang+1:NULL);
0c20631f 614 free(roominfo.name);
615 free(msg);
616 free(encoding);
617 free(lang);
b69540e3 618 } else if (reqclass & AIM_CAPS_GETFILE) {
7392c79f 619 char ip[30];
7392c79f 620 struct aim_msgcookie_t *cachedcook;
7392c79f 621 struct aim_tlv_t *miscinfo;
7392c79f 622
623 if (!(cachedcook = calloc(1, sizeof(struct aim_msgcookie_t))))
624 return 0;
625
626 memset(ip, 0, sizeof(ip));
f21cc652 627
7392c79f 628 if (!(miscinfo = aim_gettlv(list2, 0x2711, 1))) {
629 free(cachedcook);
630 return 0;
631 }
632
633 if (aim_gettlv(list2, 0x0003, 1) && aim_gettlv(list2, 0x0005, 1)) {
634 struct aim_tlv_t *iptlv, *porttlv;
635
636 if (!(iptlv = aim_gettlv(list2, 0x0003, 1)) || !(porttlv = aim_gettlv(list2, 0x0005, 1))) {
637 free(cachedcook);
638 return 0;
639 }
640
641 snprintf(ip, sizeof(ip)-1, "%d.%d.%d.%d:%d",
642 aimutil_get8(iptlv->value+0),
643 aimutil_get8(iptlv->value+1),
644 aimutil_get8(iptlv->value+2),
645 aimutil_get8(iptlv->value+3),
646 aimutil_get16(porttlv->value));
647 }
648
649 printf("faim: rend: file get request from %s (%s)\n", userinfo.sn, ip);
650
651#if 0 /* XXX finish this */
652 newconn = aim_newconn(sess, AIM_CONN_TYPE_RENDEZVOUS, ip);
653 if (!newconn || (newconn->fd == -1)) {
654 printf("could not connect to %s\n", ip);
655 perror("aim_newconn");
656 aim_conn_kill(sess, &newconn);
657 } else {
658 struct aim_filetransfer_priv *priv;
659 priv = (struct aim_filetransfer_priv *)calloc(1, sizeof(struct aim_filetransfer_priv));
660 memcpy(priv->cookie, cookie, 8);
661 strncpy(priv->sn, userinfo.sn, MAXSNLEN);
662 newconn->priv = priv;
663 printf("faim: connected to peer (fd = %d)\n", newconn->fd);
664 }
665
666 memcpy(cachedcook->cookie, cookie, 8);
667
668 ft = malloc(sizeof(struct aim_filetransfer_priv));
669 ft->state = 1;
670 strncpy(ft->sn, userinfo.sn, sizeof(ft->sn));
671 strncpy(ft->ip, ip, sizeof(ft->ip));
672#if 0
673 strncpy(ft->fh.name, miscinfo->value+8, sizeof(ft->fh.name));
674#endif
675 cachedcook->type = AIM_COOKIETYPE_OFTGET;
676 cachedcook->data = ft;
677
678 if (aim_cachecookie(sess, cachedcook) != 0)
679 printf("faim: ERROR caching message cookie\n");
680
681 aim_accepttransfer(sess, command->conn, newconn, ft->sn, cookie, AIM_CAPS_GETFILE);
682
683 free(desc);
684#endif
f21cc652 685 /*
686 * Call client.
687 */
688 userfunc = aim_callhandler(command->conn, 0x0004, 0x0007);
689 if (userfunc || (i = 0))
690 i = userfunc(sess,
691 command,
692 channel,
693 reqclass,
694 &userinfo);
695
b69540e3 696 } else if (reqclass & AIM_CAPS_SENDFILE) {
f21cc652 697#if 0
7392c79f 698 char ip[30];
699 char *desc = NULL;
700 struct aim_msgcookie_t *cachedcook;
701 struct aim_filetransfer_priv *ft;
702 struct aim_tlv_t *miscinfo;
b69540e3 703
704 memset(ip, 0, sizeof(ip));
705
7392c79f 706 if (!(miscinfo = aim_gettlv(list2, 0x2711, 1)))
707 return 0;
b69540e3 708
709 if (aim_gettlv(list2, 0x0003, 1) && aim_gettlv(list2, 0x0003, 1)) {
710 struct aim_tlv_t *iptlv, *porttlv;
711
712 iptlv = aim_gettlv(list2, 0x0003, 1);
713 porttlv = aim_gettlv(list2, 0x0005, 1);
714
715 snprintf(ip, sizeof(ip)-1, "%d.%d.%d.%d:%d",
716 aimutil_get8(iptlv->value+0),
717 aimutil_get8(iptlv->value+1),
718 aimutil_get8(iptlv->value+2),
719 aimutil_get8(iptlv->value+3),
720 aimutil_get16(porttlv->value));
721 }
722
723 if (aim_gettlv(list2, 0x000c, 1)) {
724 desc = aim_gettlv_str(list2, 0x000c, 1);
725 }
726
727 printf("faim: rend: file transfer request from %s for %s: %s (%s)\n",
728 userinfo.sn,
729 miscinfo->value+8,
730 desc,
731 ip);
732
7392c79f 733 memcpy(cachedcook->cookie, cookie, 8);
b69540e3 734
7392c79f 735 ft = malloc(sizeof(struct aim_filetransfer_priv));
736 strncpy(ft->sn, userinfo.sn, sizeof(ft->sn));
b69540e3 737 strncpy(ft->ip, ip, sizeof(ft->ip));
7392c79f 738 strncpy(ft->fh.name, miscinfo->value+8, sizeof(ft->fh.name));
739 cachedcook->type = AIM_COOKIETYPE_OFTSEND;
740 cachedcook->data = ft;
b69540e3 741
7392c79f 742 if (aim_cachecookie(sess, cachedcook) != 0)
b69540e3 743 printf("faim: ERROR caching message cookie\n");
744
745
7392c79f 746 aim_accepttransfer(sess, command->conn, ft->sn, cookie, AIM_CAPS_SENDFILE);
747
748 if (desc)
749 free(desc);
f21cc652 750#endif
7392c79f 751 /*
752 * Call client.
753 */
754 userfunc = aim_callhandler(command->conn, 0x0004, 0x0007);
755 if (userfunc || (i = 0))
756 i = userfunc(sess,
757 command,
758 channel,
759 reqclass,
760 &userinfo);
b69540e3 761 } else {
762 printf("faim: rend: unknown rendezvous 0x%04x\n", reqclass);
040457cc 763 }
040457cc 764
26af6789 765 aim_freetlvchain(&list2);
766 }
9de3ca7e 767
49c8a2fa 768 /*
769 * Free up the TLV chain.
770 */
771 aim_freetlvchain(&tlvlist);
26af6789 772
49c8a2fa 773
26af6789 774 return i;
49c8a2fa 775}
776
040457cc 777/*
778 * Possible codes:
779 * AIM_TRANSFER_DENY_NOTSUPPORTED -- "client does not support"
780 * AIM_TRANSFER_DENY_DECLINE -- "client has declined transfer"
781 * AIM_TRANSFER_DENY_NOTACCEPTING -- "client is not accepting transfers"
782 *
783 */
78b3fb13 784faim_export unsigned long aim_denytransfer(struct aim_session_t *sess,
785 struct aim_conn_t *conn,
786 char *sender,
787 char *cookie,
788 unsigned short code)
040457cc 789{
790 struct command_tx_struct *newpacket;
791 int curbyte, i;
792
b69540e3 793 if(!(newpacket = aim_tx_new(AIM_FRAMETYPE_OSCAR, 0x0002, conn, 10+8+2+1+strlen(sender)+6)))
040457cc 794 return -1;
795
796 newpacket->lock = 1;
797
798 curbyte = aim_putsnac(newpacket->data, 0x0004, 0x000b, 0x0000, sess->snac_nextid);
799 for (i = 0; i < 8; i++)
800 curbyte += aimutil_put8(newpacket->data+curbyte, cookie[i]);
801 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0002);
802 curbyte += aimutil_put8(newpacket->data+curbyte, strlen(sender));
803 curbyte += aimutil_putstr(newpacket->data+curbyte, sender, strlen(sender));
804 curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0003, code);
805
806 newpacket->lock = 0;
807 aim_tx_enqueue(sess, newpacket);
808
809 return (sess->snac_nextid++);
810}
811
49c8a2fa 812/*
813 * Not real sure what this does, nor does anyone I've talk to.
814 *
815 * Didn't use to send it. But now I think it might be a good
816 * idea.
817 *
818 */
78b3fb13 819faim_export unsigned long aim_seticbmparam(struct aim_session_t *sess,
820 struct aim_conn_t *conn)
49c8a2fa 821{
5b79dc93 822 struct command_tx_struct *newpacket;
49c8a2fa 823 int curbyte;
824
b69540e3 825 if(!(newpacket = aim_tx_new(AIM_FRAMETYPE_OSCAR, 0x0002, conn, 10+16)))
5b79dc93 826 return -1;
827
828 newpacket->lock = 1;
829
830 curbyte = aim_putsnac(newpacket->data, 0x0004, 0x0002, 0x0000, sess->snac_nextid);
831 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
832 curbyte += aimutil_put32(newpacket->data+curbyte, 0x00000003);
833 curbyte += aimutil_put8(newpacket->data+curbyte, 0x1f);
834 curbyte += aimutil_put8(newpacket->data+curbyte, 0x40);
835 curbyte += aimutil_put8(newpacket->data+curbyte, 0x03);
836 curbyte += aimutil_put8(newpacket->data+curbyte, 0xe7);
837 curbyte += aimutil_put8(newpacket->data+curbyte, 0x03);
838 curbyte += aimutil_put8(newpacket->data+curbyte, 0xe7);
839 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
840 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
841
842 newpacket->lock = 0;
843 aim_tx_enqueue(sess, newpacket);
a25832e6 844
845 return (sess->snac_nextid++);
846}
847
78b3fb13 848faim_internal int aim_parse_msgerror_middle(struct aim_session_t *sess,
849 struct command_rx_struct *command)
a25832e6 850{
851 u_long snacid = 0x000000000;
852 struct aim_snac_t *snac = NULL;
853 int ret = 0;
854 rxcallback_t userfunc = NULL;
96f8b1ed 855 char *dest;
856 unsigned short reason = 0;
a25832e6 857
858 /*
859 * Get SNAC from packet and look it up
860 * the list of unrepliedto/outstanding
861 * SNACs.
862 *
863 * After its looked up, the SN that the
864 * message should've gone to will be
865 * in the ->data element of the snac struct.
866 *
867 */
868 snacid = aimutil_get32(command->data+6);
869 snac = aim_remsnac(sess, snacid);
870
46b6130d 871 if (!snac) {
872 printf("faim: msgerr: got an ICBM-failed error on an unknown SNAC ID! (%08lx)\n", snacid);
96f8b1ed 873 dest = NULL;
874 } else
875 dest = snac->data;
876
877 reason = aimutil_get16(command->data+10);
a25832e6 878
879 /*
880 * Call client.
881 */
882 userfunc = aim_callhandler(command->conn, 0x0004, 0x0001);
883 if (userfunc)
96f8b1ed 884 ret = userfunc(sess, command, dest, reason);
a25832e6 885 else
886 ret = 0;
887
46b6130d 888 if (snac) {
889 free(snac->data);
890 free(snac);
891 }
49c8a2fa 892
a25832e6 893 return ret;
9de3ca7e 894}
e6b05d80 895
896
78b3fb13 897faim_internal int aim_parse_missedcall(struct aim_session_t *sess,
898 struct command_rx_struct *command)
96f8b1ed 899{
900 int i, ret = 1;
901 rxcallback_t userfunc = NULL;
902 unsigned short channel, nummissed, reason;
903 struct aim_userinfo_s userinfo;
904
905 i = 10; /* Skip SNAC header */
906
907
908 /*
909 * XXX: supposedly, this entire packet can repeat as many times
910 * as necessary. Should implement that.
911 */
912
913 /*
914 * Channel ID.
915 */
916 channel = aimutil_get16(command->data+i);
917 i += 2;
918
919 /*
920 * Extract the standard user info block.
921 */
922 i += aim_extractuserinfo(command->data+i, &userinfo);
923
924 nummissed = aimutil_get16(command->data+i);
925 i += 2;
926
927 reason = aimutil_get16(command->data+i);
928 i += 2;
929
930 /*
931 * Call client.
932 */
933 userfunc = aim_callhandler(command->conn, 0x0004, 0x000a);
934 if (userfunc)
935 ret = userfunc(sess, command, channel, &userinfo, nummissed, reason);
936 else
937 ret = 0;
938
939 return ret;
940}
This page took 0.204636 seconds and 5 git commands to generate.