]> andersk Git - libfaim.git/blob - aim_im.c
Minor typo.
[libfaim.git] / aim_im.c
1 /*
2  *  aim_im.c
3  *
4  *  The routines for sending/receiving Instant Messages.
5  *
6  */
7
8 #include <faim/aim.h>
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  *
19  */
20 faim_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)
23 {   
24
25   int curbyte,i;
26   struct command_tx_struct *newpacket;
27   
28   if (strlen(msg) >= MAXMSGLEN)
29     return -1;
30
31   if (!(newpacket = aim_tx_new(AIM_FRAMETYPE_OSCAR, 0x0002, conn, strlen(msg)+256)))
32     return -1;
33
34   newpacket->lock = 1; /* lock struct */
35
36   curbyte  = 0;
37   curbyte += aim_putsnac(newpacket->data+curbyte, 
38                          0x0004, 0x0006, 0x0000, sess->snac_nextid);
39
40   /* 
41    * Generate a random message cookie 
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    *
48    */
49   for (i=0;i<8;i++)
50     curbyte += aimutil_put8(newpacket->data+curbyte, (u_char) rand());
51
52   /*
53    * Channel ID
54    */
55   curbyte += aimutil_put16(newpacket->data+curbyte,0x0001);
56
57   /* 
58    * Destination SN (prepended with byte length)
59    */
60   curbyte += aimutil_put8(newpacket->data+curbyte,strlen(destsn));
61   curbyte += aimutil_putstr(newpacket->data+curbyte, destsn, strlen(destsn));
62
63   /*
64    * metaTLV start.
65    */
66   curbyte += aimutil_put16(newpacket->data+curbyte, 0x0002);
67   curbyte += aimutil_put16(newpacket->data+curbyte, strlen(msg) + 0x10);
68
69   /*
70    * Flag data / ICBM Parameters?
71    */
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
82   curbyte += aimutil_put16(newpacket->data+curbyte, 0x0101);
83
84   /* 
85    * Message block length.
86    */
87   curbyte += aimutil_put16(newpacket->data+curbyte, strlen(msg) + 0x04);
88
89   /*
90    * Character set data? 
91    */
92   curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
93   curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
94
95   /*
96    * Message.  Not terminated.
97    */
98   curbyte += aimutil_putstr(newpacket->data+curbyte,msg, strlen(msg));
99
100   /*
101    * Set the Request Acknowledge flag.  
102    */
103   if (flags & AIM_IMFLAGS_ACK) {
104     curbyte += aimutil_put16(newpacket->data+curbyte,0x0003);
105     curbyte += aimutil_put16(newpacket->data+curbyte,0x0000);
106   }
107   
108   /*
109    * Set the Autoresponse flag.
110    */
111   if (flags & AIM_IMFLAGS_AWAY) {
112     curbyte += aimutil_put16(newpacket->data+curbyte,0x0004);
113     curbyte += aimutil_put16(newpacket->data+curbyte,0x0000);
114   }
115   
116   newpacket->commandlen = curbyte;
117   newpacket->lock = 0;
118
119   aim_tx_enqueue(sess, newpacket);
120
121 #ifdef USE_SNAC_FOR_IMS
122  {
123     struct aim_snac_t snac;
124
125     snac.id = sess->snac_nextid;
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
133     aim_newsnac(sess, &snac);
134   }
135
136  aim_cleansnacs(sess, 60); /* clean out all SNACs over 60sec old */
137 #endif
138
139   return (sess->snac_nextid++);
140 }
141
142 faim_internal int aim_parse_outgoing_im_middle(struct aim_session_t *sess,
143                                                struct command_rx_struct *command)
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
170   strncpy(sn, (char *) command->data+i+1, (int) *(command->data+i));
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
183     msgblock = (unsigned char *)aim_gettlv_str(tlvlist, 0x0002, 1);
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
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  */
225 faim_internal int aim_parse_incoming_im_middle(struct aim_session_t *sess,
226                                                struct command_rx_struct *command)
227 {
228   u_int i = 0,z;
229   rxcallback_t userfunc = NULL;
230   u_char cookie[8];
231   int channel;
232   struct aim_tlvlist_t *tlvlist;
233   struct aim_userinfo_s userinfo;
234   u_short wastebits;
235
236   memset(&userinfo, 0x00, sizeof(struct aim_userinfo_s));
237  
238   i = 10; /* Skip SNAC header */
239
240   /*
241    * Read ICBM Cookie.  And throw away.
242    */
243   for (z=0; z<8; z++,i++)
244     cookie[z] = command->data[i];
245   
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
252    * features of AIM2/3/3.5. 
253    *
254    * Channel 0x0002 is the Rendevous channel, which
255    * is where Chat Invitiations and various client-client
256    * connection negotiations come from.
257    * 
258    */
259   channel = aimutil_get16(command->data+i);
260   i += 2;
261   
262   /*
263    *
264    */
265   if ((channel != 0x01) && (channel != 0x02))
266     {
267       printf("faim: icbm: ICBM received on an unsupported channel.  Ignoring.\n (chan = %04x)", channel);
268       return 1;
269     }
270
271   /*
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    * 
286    */
287   i += aim_extractuserinfo(command->data+i, &userinfo);
288   
289   /*
290    * Read block of TLVs (not including the userinfo data).  All 
291    * further data is derived from what is parsed here.
292    */
293   tlvlist = aim_readtlvchain(command->data+i, command->commandlen-i);
294
295   /*
296    * From here on, its depends on what channel we're on.
297    */
298   if (channel == 1)
299     {
300      u_int j = 0, y = 0, z = 0;
301       char *msg = NULL;
302       u_int icbmflags = 0;
303       struct aim_tlv_t *msgblocktlv;
304       u_char *msgblock;
305       u_short flag1,flag2;
306            
307       /*
308        * Check Autoresponse status.  If it is an autoresponse,
309        * it will contain a type 0x0004 TLV, with zero length.
310        */
311       if (aim_gettlv(tlvlist, 0x0004, 1))
312         icbmflags |= AIM_IMFLAGS_AWAY;
313       
314       /*
315        * Check Ack Request status.
316        */
317       if (aim_gettlv(tlvlist, 0x0003, 1))
318         icbmflags |= AIM_IMFLAGS_ACK;
319       
320       /*
321        * Message block.
322        */
323       msgblocktlv = aim_gettlv(tlvlist, 0x0002, 1);
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       }
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);
395     }
396   else if (channel == 0x0002)
397     {   
398       struct aim_tlv_t *block1;
399       struct aim_tlvlist_t *list2;
400       unsigned short reqclass = 0;
401       unsigned short status = 0;
402       
403       /*
404        * There's another block of TLVs embedded in the type 5 here. 
405        */
406       block1 = aim_gettlv(tlvlist, 0x0005, 1);
407       if (!block1) {
408         printf("faim: no tlv 0x0005 in rendezvous transaction!\n");
409         aim_freetlvchain(&tlvlist);
410         return 1; /* major problem */
411       }
412
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");
425
426       /*
427        * The next 16bytes are a capability block so we can
428        * identify what type of rendezvous this is.
429        *
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        * 
437        */
438       reqclass = aim_getcap(block1->value+2+8, 0x10);
439       if (reqclass == 0x0000) {
440         printf("faim: rend: no ID block\n");
441         aim_freetlvchain(&tlvlist);
442         return 1;
443       }
444
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)))) {
454         struct aim_msgcookie_t *cook;
455         int type;
456         
457         type = aim_msgcookie_gettype(reqclass); /* XXX: fix this shitty code */
458
459         if ((cook = aim_uncachecookie(sess, cookie, type)) == NULL) {
460           printf("faim: non-data rendezvous thats not in cache!\n");
461           aim_freetlvchain(&list2);
462           aim_freetlvchain(&tlvlist);
463           return 1;
464         }
465
466         if (cook->type == AIM_CAPS_SENDFILE) {
467           struct aim_filetransfer_priv *ft;
468
469           if (cook->data) {
470             struct aim_tlv_t *errortlv;
471             int errorcode = -1;
472
473             ft = (struct aim_filetransfer_priv *)cook->data;
474
475             if ((errortlv = aim_gettlv(list2, 0x000b, 1))) {
476               errorcode = aimutil_get16(errortlv->value);
477             }
478             if (errorcode) {
479               printf("faim: transfer from %s (%s) for %s cancelled (error code %d)\n", ft->sn, ft->ip, ft->fh.name, errorcode);
480             } else if (status == 0x0002) { /* connection accepted */
481               printf("faim: transfer from %s (%s) for %s accepted\n", ft->sn, ft->ip, ft->fh.name);
482             }
483             free(cook->data);
484           } else {
485             printf("faim: not data attached to file transfer\n");
486           }
487         } else if (cook->type == AIM_CAPS_VOICE) {
488           printf("faim: voice request cancelled\n");
489         } else {
490           printf("faim: unknown cookie cache type %d\n", cook->type);
491         }
492
493         free(cook);
494         if (list2)
495           aim_freetlvchain(&list2);
496         aim_freetlvchain(&tlvlist);
497         return 1;
498       }
499
500       /*
501        * The rest of the handling depends on what type it is.
502        */
503       if (reqclass & AIM_CAPS_BUDDYICON) {
504
505         /*
506          * Call client.
507          */
508 #if 0
509         userfunc = aim_callhandler(command->conn, 0x0004, 0x0007);
510         if (userfunc || (i = 0))
511           i = userfunc(sess, 
512                        command, 
513                        channel, 
514                        reqclass,
515                        &userinfo,
516                        ip,
517                        cookie);
518 #endif
519
520       } else if (reqclass & AIM_CAPS_VOICE) {
521         struct aim_msgcookie_t *cachedcook;
522
523         printf("faim: rend: voice!\n");
524
525         if(!(cachedcook = (struct aim_msgcookie_t*)calloc(1, sizeof(struct aim_msgcookie_t))))
526           return 1;
527
528         memcpy(cachedcook->cookie, cookie, 8);
529         cachedcook->type = AIM_COOKIETYPE_OFTVOICE;
530         cachedcook->data = NULL;
531
532         if (aim_cachecookie(sess, cachedcook) != 0)
533           printf("faim: ERROR caching message cookie\n");
534
535         /* XXX: implement all this */
536
537         /*
538          * Call client.
539          */
540         userfunc = aim_callhandler(command->conn, 0x0004, 0x0007);
541         if (userfunc || (i = 0)) {
542           i = userfunc(sess, command, channel, reqclass, &userinfo);
543         }
544       } else if ((reqclass & AIM_CAPS_IMIMAGE) || (reqclass & AIM_CAPS_BUDDYICON)) {
545         char ip[30];
546         struct aim_directim_priv *priv;
547
548         memset(ip, 0, 30);
549         
550         if (aim_gettlv(list2, 0x0003, 1) && aim_gettlv(list2, 0x0005, 1)) {
551           struct aim_tlv_t *iptlv, *porttlv;
552           
553           iptlv = aim_gettlv(list2, 0x0003, 1);
554           porttlv = aim_gettlv(list2, 0x0005, 1);
555
556           snprintf(ip, 30, "%d.%d.%d.%d:%d", 
557                   aimutil_get8(iptlv->value+0),
558                   aimutil_get8(iptlv->value+1),
559                   aimutil_get8(iptlv->value+2),
560                   aimutil_get8(iptlv->value+3),
561                   4443 /*aimutil_get16(porttlv->value)*/);
562         }
563
564         printf("faim: rend: directIM request from %s (%s)\n",
565                userinfo.sn,
566                ip);
567
568        /* XXX: there are a couple of different request packets for
569         *          different things */
570         
571         priv = (struct aim_directim_priv *)calloc(1, sizeof(struct aim_directim_priv));
572         memcpy(priv->ip, ip, sizeof(priv->ip));
573         memcpy(priv->sn, userinfo.sn, sizeof(priv->sn));
574         memcpy(priv->cookie, cookie, sizeof(priv->cookie));
575
576         /*
577          * Call client.
578          */
579         userfunc = aim_callhandler(command->conn, 0x0004, 0x0007);
580         if (userfunc || (i = 0))
581           i = userfunc(sess, 
582                        command, 
583                        channel, 
584                        reqclass,
585                        &userinfo, priv);
586
587       } else if (reqclass & AIM_CAPS_CHAT) {
588         struct aim_tlv_t *miscinfo;
589         struct aim_chat_roominfo roominfo;
590         char *msg=NULL,*encoding=NULL,*lang=NULL;
591
592         miscinfo = aim_gettlv(list2, 0x2711, 1);
593         aim_chat_readroominfo(miscinfo->value, &roominfo);
594                   
595         if (aim_gettlv(list2, 0x000c, 1))
596           msg = aim_gettlv_str(list2, 0x000c, 1);
597           
598         if (aim_gettlv(list2, 0x000d, 1))
599           encoding = aim_gettlv_str(list2, 0x000d, 1);
600           
601         if (aim_gettlv(list2, 0x000e, 1))
602           lang = aim_gettlv_str(list2, 0x000e, 1);
603       
604         /*
605          * Call client.
606          */
607         userfunc = aim_callhandler(command->conn, 0x0004, 0x0007);
608         if (userfunc || (i = 0))
609           i = userfunc(sess, 
610                        command, 
611                        channel, 
612                        reqclass,
613                        &userinfo, 
614                        &roominfo, 
615                        msg, 
616                        encoding?encoding+1:NULL, 
617                        lang?lang+1:NULL);
618           free(roominfo.name);
619           free(msg);
620           free(encoding);
621           free(lang);
622       } else if (reqclass & AIM_CAPS_GETFILE) {
623         char ip[30];
624         struct aim_msgcookie_t *cachedcook;
625         struct aim_tlv_t *miscinfo;
626
627         if (!(cachedcook = calloc(1, sizeof(struct aim_msgcookie_t))))
628           return 0;
629
630         memset(ip, 0, 30);
631
632         if (!(miscinfo = aim_gettlv(list2, 0x2711, 1))) {
633           free(cachedcook);
634           return 0;
635         }
636
637         if (aim_gettlv(list2, 0x0003, 1) && aim_gettlv(list2, 0x0005, 1)) {
638           struct aim_tlv_t *iptlv, *porttlv;
639
640           if (!(iptlv = aim_gettlv(list2, 0x0003, 1)) || !(porttlv = aim_gettlv(list2, 0x0005, 1))) {
641             free(cachedcook);
642             return 0;
643           }
644
645           snprintf(ip, 30, "%d.%d.%d.%d:%d",
646                    aimutil_get8(iptlv->value+0),
647                    aimutil_get8(iptlv->value+1),
648                    aimutil_get8(iptlv->value+2),
649                    aimutil_get8(iptlv->value+3),
650                    aimutil_get16(porttlv->value));
651         }
652
653         printf("faim: rend: file get request from %s (%s)\n", userinfo.sn, ip);
654
655         /*
656          * Call client.
657          */
658         userfunc = aim_callhandler(command->conn, 0x0004, 0x0007);
659         if (userfunc || (i = 0))
660           i = userfunc(sess, 
661                        command, 
662                        channel, 
663                        reqclass,
664                        &userinfo,
665                        ip,
666                        cookie);
667
668       } else if (reqclass & AIM_CAPS_SENDFILE) {
669 #if 0
670        char ip[30];
671        char *desc = NULL;
672        struct aim_msgcookie_t *cachedcook;
673        struct aim_filetransfer_priv *ft;
674        struct aim_tlv_t *miscinfo;
675
676         memset(ip, 0, sizeof(ip));
677         
678         if (!(miscinfo = aim_gettlv(list2, 0x2711, 1)))
679           return 0;
680
681         if (aim_gettlv(list2, 0x0003, 1) && aim_gettlv(list2, 0x0003, 1)) {
682           struct aim_tlv_t *iptlv, *porttlv;
683           
684           iptlv = aim_gettlv(list2, 0x0003, 1);
685           porttlv = aim_gettlv(list2, 0x0005, 1);
686
687           snprintf(ip, sizeof(ip)-1, "%d.%d.%d.%d:%d", 
688                   aimutil_get8(iptlv->value+0),
689                   aimutil_get8(iptlv->value+1),
690                   aimutil_get8(iptlv->value+2),
691                   aimutil_get8(iptlv->value+3),
692                   aimutil_get16(porttlv->value));
693         }
694
695         if (aim_gettlv(list2, 0x000c, 1)) {
696           desc = aim_gettlv_str(list2, 0x000c, 1);
697         }
698
699         printf("faim: rend: file transfer request from %s for %s: %s (%s)\n",
700                userinfo.sn,
701                miscinfo->value+8,
702                desc, 
703                ip);
704         
705         memcpy(cachedcook->cookie, cookie, 8);
706         
707         ft = malloc(sizeof(struct aim_filetransfer_priv));
708         strncpy(ft->sn, userinfo.sn, sizeof(ft->sn));
709         strncpy(ft->ip, ip, sizeof(ft->ip));
710         strncpy(ft->fh.name, miscinfo->value+8, sizeof(ft->fh.name));
711         cachedcook->type = AIM_COOKIETYPE_OFTSEND;
712         cachedcook->data = ft;
713
714         if (aim_cachecookie(sess, cachedcook) != 0)
715           printf("faim: ERROR caching message cookie\n");
716         
717         
718         aim_accepttransfer(sess, command->conn, ft->sn, cookie, AIM_CAPS_SENDFILE);
719         
720         if (desc)
721           free(desc);
722 #endif  
723         /*
724          * Call client.
725          */
726         userfunc = aim_callhandler(command->conn, 0x0004, 0x0007);
727         if (userfunc || (i = 0))
728           i = userfunc(sess, 
729                        command, 
730                        channel, 
731                        reqclass,
732                        &userinfo);
733       } else {
734         printf("faim: rend: unknown rendezvous 0x%04x\n", reqclass);
735       }
736
737       aim_freetlvchain(&list2);
738     }
739
740   /*
741    * Free up the TLV chain.
742    */
743   aim_freetlvchain(&tlvlist);
744   
745
746   return i;
747 }
748
749 /*
750  * Possible codes:
751  *    AIM_TRANSFER_DENY_NOTSUPPORTED -- "client does not support"
752  *    AIM_TRANSFER_DENY_DECLINE -- "client has declined transfer"
753  *    AIM_TRANSFER_DENY_NOTACCEPTING -- "client is not accepting transfers"
754  * 
755  */
756 faim_export unsigned long aim_denytransfer(struct aim_session_t *sess,
757                                            struct aim_conn_t *conn, 
758                                            char *sender,
759                                            char *cookie, 
760                                            unsigned short code)
761 {
762   struct command_tx_struct *newpacket;
763   int curbyte, i;
764
765   if(!(newpacket = aim_tx_new(AIM_FRAMETYPE_OSCAR, 0x0002, conn, 10+8+2+1+strlen(sender)+6)))
766     return -1;
767
768   newpacket->lock = 1;
769
770   curbyte = aim_putsnac(newpacket->data, 0x0004, 0x000b, 0x0000, sess->snac_nextid);
771   for (i = 0; i < 8; i++)
772     curbyte += aimutil_put8(newpacket->data+curbyte, cookie[i]);
773   curbyte += aimutil_put16(newpacket->data+curbyte, 0x0002);
774   curbyte += aimutil_put8(newpacket->data+curbyte, strlen(sender));
775   curbyte += aimutil_putstr(newpacket->data+curbyte, sender, strlen(sender));
776   curbyte += aim_puttlv_16(newpacket->data+curbyte, 0x0003, code);
777
778   newpacket->lock = 0;
779   aim_tx_enqueue(sess, newpacket);
780
781   return (sess->snac_nextid++);
782 }
783
784 /*
785  * Not real sure what this does, nor does anyone I've talk to.
786  *
787  * Didn't use to send it.  But now I think it might be a good
788  * idea. 
789  *
790  */
791 faim_export unsigned long aim_seticbmparam(struct aim_session_t *sess,
792                                            struct aim_conn_t *conn)
793 {
794   struct command_tx_struct *newpacket;
795   int curbyte;
796
797   if(!(newpacket = aim_tx_new(AIM_FRAMETYPE_OSCAR, 0x0002, conn, 10+16)))
798     return -1;
799
800   newpacket->lock = 1;
801
802   curbyte = aim_putsnac(newpacket->data, 0x0004, 0x0002, 0x0000, sess->snac_nextid);
803   curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
804   curbyte += aimutil_put32(newpacket->data+curbyte, 0x00000003);
805   curbyte += aimutil_put8(newpacket->data+curbyte,  0x1f);
806   curbyte += aimutil_put8(newpacket->data+curbyte,  0x40);
807   curbyte += aimutil_put8(newpacket->data+curbyte,  0x03);
808   curbyte += aimutil_put8(newpacket->data+curbyte,  0xe7);
809   curbyte += aimutil_put8(newpacket->data+curbyte,  0x03);
810   curbyte += aimutil_put8(newpacket->data+curbyte,  0xe7);
811   curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
812   curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
813
814   newpacket->lock = 0;
815   aim_tx_enqueue(sess, newpacket);
816
817   return (sess->snac_nextid++);
818 }
819
820 faim_internal int aim_parse_msgerror_middle(struct aim_session_t *sess,
821                                             struct command_rx_struct *command)
822 {
823   u_long snacid = 0x000000000;
824   struct aim_snac_t *snac = NULL;
825   int ret = 0;
826   rxcallback_t userfunc = NULL;
827   char *dest;
828   unsigned short reason = 0;
829
830   /*
831    * Get SNAC from packet and look it up 
832    * the list of unrepliedto/outstanding
833    * SNACs.
834    *
835    * After its looked up, the SN that the
836    * message should've gone to will be 
837    * in the ->data element of the snac struct.
838    *
839    */
840   snacid = aimutil_get32(command->data+6);
841   snac = aim_remsnac(sess, snacid);
842
843   if (!snac) {
844     printf("faim: msgerr: got an ICBM-failed error on an unknown SNAC ID! (%08lx)\n", snacid);
845     dest = NULL;
846   } else
847     dest = snac->data;
848
849   reason = aimutil_get16(command->data+10);
850
851   /*
852    * Call client.
853    */
854   userfunc = aim_callhandler(command->conn, 0x0004, 0x0001);
855   if (userfunc)
856     ret =  userfunc(sess, command, dest, reason);
857   else
858     ret = 0;
859   
860   if (snac) {
861     free(snac->data);
862     free(snac);
863   }
864
865   return ret;
866 }
867
868
869 faim_internal int aim_parse_missedcall(struct aim_session_t *sess,
870                                        struct command_rx_struct *command)
871 {
872   int i, ret = 1;
873   rxcallback_t userfunc = NULL;
874   unsigned short channel, nummissed, reason;
875   struct aim_userinfo_s userinfo;
876  
877   i = 10; /* Skip SNAC header */
878
879
880   /*
881    * XXX: supposedly, this entire packet can repeat as many times
882    * as necessary. Should implement that.
883    */
884
885   /*
886    * Channel ID.
887    */
888   channel = aimutil_get16(command->data+i);
889   i += 2;
890   
891   /*
892    * Extract the standard user info block.
893    */
894   i += aim_extractuserinfo(command->data+i, &userinfo);
895   
896   nummissed = aimutil_get16(command->data+i);
897   i += 2;
898   
899   reason = aimutil_get16(command->data+i);
900   i += 2;
901
902   /*
903    * Call client.
904    */
905   userfunc = aim_callhandler(command->conn, 0x0004, 0x000a);
906   if (userfunc)
907     ret =  userfunc(sess, command, channel, &userinfo, nummissed, reason);
908   else
909     ret = 0;
910   
911   return ret;
912 }
This page took 0.235307 seconds and 5 git commands to generate.