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