]> andersk Git - libfaim.git/blobdiff - src/im.c
- Sat Mar 24 03:16:32 UTC 2001
[libfaim.git] / src / im.c
index 58ce8c7e3860499ce514e039ebb9c3b839a6ecfa..ed4bbc9b89b3af6b838b3479a593a9b3769959fd 100644 (file)
--- a/src/im.c
+++ b/src/im.c
@@ -185,11 +185,10 @@ faim_export unsigned long aim_send_im(struct aim_session_t *sess,
   return sess->snac_nextid;
 }
 
-faim_internal int aim_parse_outgoing_im_middle(struct aim_session_t *sess,
-                                              struct command_rx_struct *command)
+static int outgoingim(struct aim_session_t *sess, aim_module_t *mod, struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned char *data, int datalen)
 {
-  unsigned int i = 0, z;
-  rxcallback_t userfunc = NULL;
+  unsigned int i, ret = 0;
+  rxcallback_t userfunc;
   unsigned char cookie[8];
   int channel;
   struct aim_tlvlist_t *tlvlist;
@@ -198,14 +197,12 @@ faim_internal int aim_parse_outgoing_im_middle(struct aim_session_t *sess,
   unsigned char flag1 = 0, flag2 = 0;
   unsigned char *msgblock = NULL, *msg = NULL;
 
-  i = 10;
-  
   /* ICBM Cookie. */
-  for (z=0; z<8; z++,i++)
-    cookie[z] = command->data[i];
+  for (i = 0; i < 8; i++)
+    cookie[i] = aimutil_get8(data+i);
 
   /* Channel ID */
-  channel = aimutil_get16(command->data+i);
+  channel = aimutil_get16(data+i);
   i += 2;
 
   if (channel != 0x01) {
@@ -213,10 +210,10 @@ faim_internal int aim_parse_outgoing_im_middle(struct aim_session_t *sess,
     return 1;
   }
 
-  strncpy(sn, (char *) command->data+i+1, (int) *(command->data+i));
-  i += 1 + (int) *(command->data+i);
+  strncpy(sn, (char *) data+i+1, (int) *(data+i));
+  i += 1 + (int) *(data+i);
 
-  tlvlist = aim_readtlvchain(command->data+i, command->commandlen-i);
+  tlvlist = aim_readtlvchain(data+i, datalen-i);
 
   if (aim_gettlv(tlvlist, 0x0003, 1))
     icbmflags |= AIM_IMFLAGS_ACK;
@@ -243,14 +240,406 @@ faim_internal int aim_parse_outgoing_im_middle(struct aim_session_t *sess,
     msg = msgblock+j;
   }
 
-  if ((userfunc = aim_callhandler(sess, command->conn, 0x0004, 0x0006)) || (i = 0))
-    i = userfunc(sess, command, channel, sn, msg, icbmflags, flag1, flag2);
+  if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
+    ret = userfunc(sess, rx, channel, sn, msg, icbmflags, flag1, flag2);
   
   if (msgblock)
     free(msgblock);
   aim_freetlvchain(&tlvlist);
 
-  return 0;
+  return ret;
+}
+
+static int incomingim_ch1(struct aim_session_t *sess, aim_module_t *mod,  struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned short channel, struct aim_userinfo_s *userinfo, struct aim_tlvlist_t *tlvlist, unsigned char *cookie)
+{
+  rxcallback_t userfunc;
+  int i, j = 0, y = 0, z = 0, ret = 0;
+  char *msg = NULL;
+  unsigned long icbmflags = 0;
+  struct aim_tlv_t *msgblocktlv;
+  unsigned char *msgblock;
+  unsigned short flag1, flag2;
+  int finlen = 0;
+  unsigned char fingerprint[10];
+  unsigned short wastebits;
+           
+  /*
+   * Check Autoresponse status.  If it is an autoresponse,
+   * it will contain a type 0x0004 TLV, with zero length.
+   */
+  if (aim_gettlv(tlvlist, 0x0004, 1))
+    icbmflags |= AIM_IMFLAGS_AWAY;
+      
+  /*
+   * Check Ack Request status.
+   */
+  if (aim_gettlv(tlvlist, 0x0003, 1))
+    icbmflags |= AIM_IMFLAGS_ACK;
+      
+  /*
+   * Message block.
+   */
+  msgblocktlv = aim_gettlv(tlvlist, 0x0002, 1);
+  if (!msgblocktlv || !(msgblock = msgblocktlv->value)) {
+    faimdprintf(sess, 0, "icbm: major error! no message block TLV found!\n");
+    return 0;
+  }
+      
+  /*
+   * Extracting the message from the unknown cruft.
+   * 
+   * This is a bit messy, and I'm not really qualified,
+   * even as the author, to comment on it.  At least
+   * its not as bad as a while loop shooting into infinity.
+   *
+   * "Do you believe in magic?"
+   *
+   */
+
+  wastebits = aimutil_get8(msgblock+j++);
+  wastebits = aimutil_get8(msgblock+j++);
+      
+  y = aimutil_get16(msgblock+j);
+  j += 2;
+  for (z = 0; z < y; z++)
+    wastebits = aimutil_get8(msgblock+j++);
+  wastebits = aimutil_get8(msgblock+j++);
+  wastebits = aimutil_get8(msgblock+j++);
+
+  finlen = j;
+  if (finlen > sizeof(fingerprint))
+    finlen = sizeof(fingerprint);
+  memcpy(fingerprint, msgblocktlv->value, finlen);
+
+  /* 
+   * Message string length, including flag words.
+   */
+  i = aimutil_get16(msgblock+j);
+  j += 2;
+
+  /*
+   * Flag words.
+   *
+   * Its rumored that these can kick in some funky
+   * 16bit-wide char stuff that used to really kill
+   * libfaim.  Hopefully the latter is no longer true.
+   *
+   * Though someone should investiagte the former.
+   *
+   */
+  flag1 = aimutil_get16(msgblock+j);
+  j += 2;
+  flag2 = aimutil_get16(msgblock+j);
+  j += 2;
+      
+  if (flag1 || flag2)
+    faimdprintf(sess, 0, "icbm: **warning: encoding flags are being used! {%04x, %04x}\n", flag1, flag2);
+
+  /* 
+   * Message string. 
+   */
+  i -= 4;
+  msg = (char *)malloc(i+1);
+  memcpy(msg, msgblock+j, i);
+  msg[i] = '\0';
+
+  if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
+    ret = userfunc(sess, rx, channel, userinfo, msg, icbmflags, flag1, flag2, finlen, fingerprint);
+
+  free(msg);
+
+  return ret;
+}
+
+static int incomingim_ch2(struct aim_session_t *sess, aim_module_t *mod,  struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned short channel, struct aim_userinfo_s *userinfo, struct aim_tlvlist_t *tlvlist, unsigned char *cookie)
+{
+  rxcallback_t userfunc;
+  struct aim_tlv_t *block1;
+  struct aim_tlvlist_t *list2;
+  unsigned short reqclass = 0;
+  unsigned short status = 0;
+  int ret = 0;
+      
+  /*
+   * There's another block of TLVs embedded in the type 5 here. 
+   */
+  block1 = aim_gettlv(tlvlist, 0x0005, 1);
+  if (!block1 || !block1->value) {
+    faimdprintf(sess, 0, "no tlv 0x0005 in rendezvous transaction!\n");
+    return 0;
+  }
+
+  /*
+   * First two bytes represent the status of the connection.
+   *
+   * 0 is a request, 2 is an accept
+   */ 
+  status = aimutil_get16(block1->value+0);
+      
+  /*
+   * Next comes the cookie.  Should match the ICBM cookie.
+   */
+  if (memcmp(block1->value+2, cookie, 8) != 0) 
+    faimdprintf(sess, 0, "rend: warning cookies don't match!\n");
+
+  /*
+   * The next 16bytes are a capability block so we can
+   * identify what type of rendezvous this is.
+   *
+   * Thanks to Eric Warmenhoven <warmenhoven@linux.com> (of GAIM)
+   * for pointing some of this out to me.  In fact, a lot of 
+   * the client-to-client info comes from the work of the GAIM 
+   * developers. Thanks!
+   *
+   * Read off one capability string and we should have it ID'd.
+   * 
+   */
+  reqclass = aim_getcap(sess, block1->value+2+8, 0x10);
+  if (reqclass == 0x0000) {
+    faimdprintf(sess, 0, "rend: no ID block\n");
+    return 0;
+  }
+
+  /* 
+   * What follows may be TLVs or nothing, depending on the
+   * purpose of the message.
+   *
+   * Ack packets for instance have nothing more to them.
+   */
+  list2 = aim_readtlvchain(block1->value+2+8+16, block1->length-2-8-16);
+      
+  if (!list2 || ((reqclass != AIM_CAPS_IMIMAGE) && !(aim_gettlv(list2, 0x2711, 1)))) {
+    struct aim_msgcookie_t *cook;
+    int type;
+       
+    type = aim_msgcookie_gettype(reqclass); /* XXX: fix this shitty code */
+
+    if ((cook = aim_checkcookie(sess, cookie, type)) == NULL) {
+      faimdprintf(sess, 0, "non-data rendezvous thats not in cache %d/%s!\n", type, cookie);
+      aim_freetlvchain(&list2);
+      return 0;
+    }
+
+    if (cook->type == AIM_COOKIETYPE_OFTGET) {
+      struct aim_filetransfer_priv *ft;
+
+      if (cook->data) {
+       int errorcode = -1; /* XXX shouldnt this be 0? */
+
+       ft = (struct aim_filetransfer_priv *)cook->data;
+
+       if(status != 0x0002) {
+         if (aim_gettlv(list2, 0x000b, 1))
+           errorcode = aim_gettlv16(list2, 0x000b, 1);
+
+         /* XXX this should make it up to the client, you know.. */
+         if (errorcode)
+           faimdprintf(sess, 0, "transfer from %s (%s) for %s cancelled (error code %d)\n", ft->sn, ft->ip, ft->fh.name, errorcode);
+       }
+      } else {
+       faimdprintf(sess, 0, "no data attached to file transfer\n");
+      }
+    } else if (cook->type == AIM_CAPS_VOICE) {
+      faimdprintf(sess, 0, "voice request cancelled\n");
+    } else {
+      faimdprintf(sess, 0, "unknown cookie cache type %d\n", cook->type);
+    }
+       
+    aim_freetlvchain(&list2);
+
+    return 1;
+  }
+
+  /*
+   * The rest of the handling depends on what type it is.
+   */
+  if (reqclass & AIM_CAPS_BUDDYICON) {
+
+    /* XXX implement this (its in ActiveBuddy...) */
+    if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
+      ret = userfunc(sess, rx, channel, reqclass, userinfo);
+
+  } else if (reqclass & AIM_CAPS_VOICE) {
+    struct aim_msgcookie_t *cachedcook;
+
+    faimdprintf(sess, 0, "rend: voice!\n");
+
+    if(!(cachedcook = (struct aim_msgcookie_t*)calloc(1, sizeof(struct aim_msgcookie_t)))) {
+      aim_freetlvchain(&list2);
+      return 0;
+    }
+
+    memcpy(cachedcook->cookie, cookie, 8);
+    cachedcook->type = AIM_COOKIETYPE_OFTVOICE;
+    cachedcook->data = NULL;
+
+    if (aim_cachecookie(sess, cachedcook) == -1)
+      faimdprintf(sess, 0, "ERROR caching message cookie\n");
+
+    /* XXX: implement all this */
+
+    if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype))) 
+      ret = userfunc(sess, rx, channel, reqclass, &userinfo);
+
+  } else if ((reqclass & AIM_CAPS_IMIMAGE) || 
+            (reqclass & AIM_CAPS_BUDDYICON)) {
+    char ip[30];
+    struct aim_directim_priv *priv;
+
+    memset(ip, 0, sizeof(ip));
+       
+    if (aim_gettlv(list2, 0x0003, 1) && aim_gettlv(list2, 0x0005, 1)) {
+      struct aim_tlv_t *iptlv, *porttlv;
+         
+      iptlv = aim_gettlv(list2, 0x0003, 1);
+      porttlv = aim_gettlv(list2, 0x0005, 1);
+
+      snprintf(ip, 30, "%d.%d.%d.%d:%d", 
+              aimutil_get8(iptlv->value+0),
+              aimutil_get8(iptlv->value+1),
+              aimutil_get8(iptlv->value+2),
+              aimutil_get8(iptlv->value+3),
+              4443 /*aimutil_get16(porttlv->value)*/);
+    }
+
+    faimdprintf(sess, 0, "rend: directIM request from %s (%s)\n",
+               userinfo->sn, ip);
+
+    /* 
+     * XXX: there are a couple of different request packets for
+     *          different things 
+     */
+
+    priv = (struct aim_directim_priv *)calloc(1, sizeof(struct aim_directim_priv));
+    memcpy(priv->ip, ip, sizeof(priv->ip));
+    memcpy(priv->sn, userinfo->sn, sizeof(priv->sn));
+    memcpy(priv->cookie, cookie, sizeof(priv->cookie));
+
+    if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
+      ret = userfunc(sess, rx, channel, reqclass, userinfo, priv);
+
+  } else if (reqclass & AIM_CAPS_CHAT) {
+    struct aim_tlv_t *miscinfo;
+    struct aim_chat_roominfo roominfo;
+    char *msg=NULL,*encoding=NULL,*lang=NULL;
+
+    miscinfo = aim_gettlv(list2, 0x2711, 1);
+    aim_chat_readroominfo(miscinfo->value, &roominfo);
+                 
+    if (aim_gettlv(list2, 0x000c, 1))
+      msg = aim_gettlv_str(list2, 0x000c, 1);
+         
+    if (aim_gettlv(list2, 0x000d, 1))
+      encoding = aim_gettlv_str(list2, 0x000d, 1);
+         
+    if (aim_gettlv(list2, 0x000e, 1))
+      lang = aim_gettlv_str(list2, 0x000e, 1);
+      
+    if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
+      ret = userfunc(sess, rx, channel, reqclass, userinfo, &roominfo, msg, encoding?encoding+1:NULL, lang?lang+1:NULL);
+
+    free(roominfo.name);
+    free(msg);
+    free(encoding);
+    free(lang);
+
+  } else if (reqclass & AIM_CAPS_GETFILE) {
+    char ip[30];
+    struct aim_msgcookie_t *cachedcook;
+    struct aim_tlv_t *miscinfo;
+    struct aim_tlv_t *iptlv, *porttlv;
+
+    memset(ip, 0, 30);
+
+    if (!(cachedcook = calloc(1, sizeof(struct aim_msgcookie_t)))) {
+      aim_freetlvchain(&list2);
+      return 0;
+    }
+
+    if (!(miscinfo = aim_gettlv(list2, 0x2711, 1)) || 
+       !(iptlv = aim_gettlv(list2, 0x0003, 1)) || 
+       !(porttlv = aim_gettlv(list2, 0x0005, 1))) {
+      faimdprintf(sess, 0, "rend: badly damaged file get request from %s...\n", userinfo->sn);
+      aim_cookie_free(sess, cachedcook);
+      aim_freetlvchain(&list2);
+      return 0;
+    }
+
+    snprintf(ip, 30, "%d.%d.%d.%d:%d",
+            aimutil_get8(iptlv->value+0),
+            aimutil_get8(iptlv->value+1),
+            aimutil_get8(iptlv->value+2),
+            aimutil_get8(iptlv->value+3),
+            aimutil_get16(porttlv->value));
+
+    faimdprintf(sess, 0, "rend: file get request from %s (%s)\n", userinfo->sn, ip);
+    if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
+      ret = userfunc(sess, rx, channel, reqclass, userinfo, ip, cookie);
+
+  } else if (reqclass & AIM_CAPS_SENDFILE) {
+#if 0
+    char ip[30];
+    struct aim_msgcookie_t *cachedcook;
+    struct aim_tlv_t *miscinfo;
+    struct aim_tlv_t *iptlv, *porttlv;
+
+    memset(ip, 0, 30);
+
+    if (!(cachedcook = calloc(1, sizeof(struct aim_msgcookie_t)))) {
+      aim_freetlvchain(&list2);
+      return 0;
+    }
+
+    if (!(miscinfo = aim_gettlv(list2, 0x2711, 1)) || 
+       !(iptlv = aim_gettlv(list2, 0x0003, 1)) || 
+       !(porttlv = aim_gettlv(list2, 0x0005, 1))) {
+      faimdprintf(sess, 0, "rend: badly damaged file get request from %s...\n", userinfo->sn);
+      aim_cookie_free(sess, cachedcook);
+      aim_freetlvchain(&list2);
+      return 0;
+    }
+
+    snprintf(ip, 30, "%d.%d.%d.%d:%d",
+            aimutil_get8(iptlv->value+0),
+            aimutil_get8(iptlv->value+1),
+            aimutil_get8(iptlv->value+2),
+            aimutil_get8(iptlv->value+3),
+            aimutil_get16(porttlv->value));
+
+    if (aim_gettlv(list2, 0x000c, 1))
+      desc = aim_gettlv_str(list2, 0x000c, 1);
+
+    faimdprintf(sess, 0, "rend: file transfer request from %s for %s: %s (%s)\n",
+               userinfo->sn, miscinfo->value+8,
+               desc, ip);
+       
+    memcpy(cachedcook->cookie, cookie, 8);
+       
+    ft = malloc(sizeof(struct aim_filetransfer_priv));
+    strncpy(ft->sn, userinfo.sn, sizeof(ft->sn));
+    strncpy(ft->ip, ip, sizeof(ft->ip));
+    strncpy(ft->fh.name, miscinfo->value+8, sizeof(ft->fh.name));
+    cachedcook->type = AIM_COOKIETYPE_OFTSEND;
+    cachedcook->data = ft;
+
+    if (aim_cachecookie(sess, cachedcook) == -1)
+      faimdprintf(sess, 0, "ERROR caching message cookie\n");
+
+    aim_accepttransfer(sess, rx->conn, ft->sn, cookie, AIM_CAPS_SENDFILE);
+       
+    if (desc)
+      free(desc);
+
+    if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
+      ret = userfunc(sess, rx, channel, reqclass, userinfo);
+
+#endif 
+  } else
+    faimdprintf(sess, 0, "rend: unknown rendezvous 0x%04x\n", reqclass);
+
+  aim_freetlvchain(&list2);
+
+  return ret;
 }
 
 /*
@@ -263,30 +652,22 @@ faim_internal int aim_parse_outgoing_im_middle(struct aim_session_t *sess,
  * can parse both away and normal messages from every client
  * I have access to.  Its not fast, its not clean.  But it works.
  *
- * We should also support at least minimal parsing of 
- * Channel 2, so that we can at least know the name of the
- * room we're invited to, but obviously can't attend...
- *
  */
-faim_internal int aim_parse_incoming_im_middle(struct aim_session_t *sess,
-                                              struct command_rx_struct *command)
+static int incomingim(struct aim_session_t *sess, aim_module_t *mod, struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned char *data, int datalen)
 {
-  u_int i = 0,z;
-  rxcallback_t userfunc = NULL;
-  u_char cookie[8];
+  int i, ret = 0;
+  unsigned char cookie[8];
   int channel;
   struct aim_tlvlist_t *tlvlist;
   struct aim_userinfo_s userinfo;
 
   memset(&userinfo, 0x00, sizeof(struct aim_userinfo_s));
  
-  i = 10; /* Skip SNAC header */
-
   /*
    * Read ICBM Cookie.  And throw away.
    */
-  for (z=0; z<8; z++,i++)
-    cookie[z] = command->data[i];
+  for (i = 0; i < 8; i++)
+    cookie[i] = aimutil_get8(data+i);
   
   /*
    * Channel ID.
@@ -301,7 +682,7 @@ faim_internal int aim_parse_incoming_im_middle(struct aim_session_t *sess,
    * connection negotiations come from.
    * 
    */
-  channel = aimutil_get16(command->data+i);
+  channel = aimutil_get16(data+i);
   i += 2;
   
   /*
@@ -328,468 +709,28 @@ faim_internal int aim_parse_incoming_im_middle(struct aim_session_t *sess,
    * never be two TLVs of the same type in one block.
    * 
    */
-  i += aim_extractuserinfo(sess, command->data+i, &userinfo);
+  i += aim_extractuserinfo(sess, data+i, &userinfo);
   
   /*
    * Read block of TLVs (not including the userinfo data).  All 
    * further data is derived from what is parsed here.
    */
-  tlvlist = aim_readtlvchain(command->data+i, command->commandlen-i);
+  tlvlist = aim_readtlvchain(data+i, datalen-i);
 
   /*
    * From here on, its depends on what channel we're on.
    */
   if (channel == 1)
-    {
-     u_int j = 0, y = 0, z = 0;
-      char *msg = NULL;
-      u_int icbmflags = 0;
-      struct aim_tlv_t *msgblocktlv;
-      u_char *msgblock;
-      u_short flag1,flag2;
-      int finlen = 0;
-      unsigned char fingerprint[10];
-      u_short wastebits;
-           
-      /*
-       * Check Autoresponse status.  If it is an autoresponse,
-       * it will contain a type 0x0004 TLV, with zero length.
-       */
-      if (aim_gettlv(tlvlist, 0x0004, 1))
-       icbmflags |= AIM_IMFLAGS_AWAY;
-      
-      /*
-       * Check Ack Request status.
-       */
-      if (aim_gettlv(tlvlist, 0x0003, 1))
-       icbmflags |= AIM_IMFLAGS_ACK;
-      
-      /*
-       * Message block.
-       */
-      msgblocktlv = aim_gettlv(tlvlist, 0x0002, 1);
-      if (!msgblocktlv || !msgblocktlv->value) {
-       faimdprintf(sess, 0, "icbm: major error! no message block TLV found!\n");
-       aim_freetlvchain(&tlvlist);
-       return 1;
-      }
-      
-      /*
-       * Extracting the message from the unknown cruft.
-       * 
-       * This is a bit messy, and I'm not really qualified,
-       * even as the author, to comment on it.  At least
-       * its not as bad as a while loop shooting into infinity.
-       *
-       * "Do you believe in magic?"
-       *
-       */
-      msgblock = msgblocktlv->value;
-      j = 0;
-      
-      wastebits = aimutil_get8(msgblock+j++);
-      wastebits = aimutil_get8(msgblock+j++);
-      
-      y = aimutil_get16(msgblock+j);
-      j += 2;
-      for (z = 0; z < y; z++)
-       wastebits = aimutil_get8(msgblock+j++);
-      wastebits = aimutil_get8(msgblock+j++);
-      wastebits = aimutil_get8(msgblock+j++);
-
-      finlen = j;
-      if (finlen > sizeof(fingerprint))
-       finlen = sizeof(fingerprint);
-      memcpy(fingerprint, msgblocktlv->value, finlen);
-
-      /* 
-       * Message string length, including flag words.
-       */
-      i = aimutil_get16(msgblock+j);
-      j += 2;
-      
-      /*
-       * Flag words.
-       *
-       * Its rumored that these can kick in some funky
-       * 16bit-wide char stuff that used to really kill
-       * libfaim.  Hopefully the latter is no longer true.
-       *
-       * Though someone should investiagte the former.
-       *
-       */
-      flag1 = aimutil_get16(msgblock+j);
-      j += 2;
-      flag2 = aimutil_get16(msgblock+j);
-      j += 2;
-      
-      if (flag1 || flag2)
-       faimdprintf(sess, 0, "icbm: **warning: encoding flags are being used! {%04x, %04x}\n", flag1, flag2);
-      
-      /* 
-       * Message string. 
-       */
-      i -= 4;
-      msg = (char *)malloc(i+1);
-      memcpy(msg, msgblock+j, i);
-      msg[i] = '\0';
-      
-      /*
-       * Call client.
-       */
-      userfunc = aim_callhandler(sess, command->conn, 0x0004, 0x0007);
-      if (userfunc)
-       i = userfunc(sess, command, channel, &userinfo, msg, icbmflags, flag1, flag2, finlen, fingerprint);
-      else 
-       i = 0;
-      
-      free(msg);
-    }
+    ret = incomingim_ch1(sess, mod, rx, snac, channel, &userinfo, tlvlist, cookie);
   else if (channel == 0x0002)
-    {  
-      struct aim_tlv_t *block1;
-      struct aim_tlvlist_t *list2;
-      unsigned short reqclass = 0;
-      unsigned short status = 0;
-      
-      /*
-       * There's another block of TLVs embedded in the type 5 here. 
-       */
-      block1 = aim_gettlv(tlvlist, 0x0005, 1);
-      if (!block1) {
-       faimdprintf(sess, 0, "no tlv 0x0005 in rendezvous transaction!\n");
-       aim_freetlvchain(&tlvlist);
-       return 1; /* major problem */
-      }
-
-      /*
-       * First two bytes represent the status of the connection.
-       *
-       * 0 is a request, 2 is an accept
-       */ 
-      status = aimutil_get16(block1->value+0);
-      
-      /*
-       * Next comes the cookie.  Should match the ICBM cookie.
-       */
-      if (memcmp(block1->value+2, cookie, 8) != 0) 
-       faimdprintf(sess, 0, "rend: warning cookies don't match!\n");
-
-      /*
-       * The next 16bytes are a capability block so we can
-       * identify what type of rendezvous this is.
-       *
-       * Thanks to Eric Warmenhoven <warmenhoven@linux.com> (of GAIM)
-       * for pointing some of this out to me.  In fact, a lot of 
-       * the client-to-client info comes from the work of the GAIM 
-       * developers. Thanks!
-       *
-       * Read off one capability string and we should have it ID'd.
-       * 
-       */
-      reqclass = aim_getcap(sess, block1->value+2+8, 0x10);
-      if (reqclass == 0x0000) {
-       faimdprintf(sess, 0, "rend: no ID block\n");
-       aim_freetlvchain(&tlvlist);
-       return 1;
-      }
-
-      /* 
-       * What follows may be TLVs or nothing, depending on the
-       * purpose of the message.
-       *
-       * Ack packets for instance have nothing more to them.
-       */
-      list2 = aim_readtlvchain(block1->value+2+8+16, block1->length-2-8-16);
-      
-      if (!list2 || ((reqclass != AIM_CAPS_IMIMAGE) && !(aim_gettlv(list2, 0x2711, 1)))) {
-       struct aim_msgcookie_t *cook;
-       int type;
-       
-       type = aim_msgcookie_gettype(reqclass); /* XXX: fix this shitty code */
-
-       if ((cook = aim_checkcookie(sess, cookie, type)) == NULL) {
-         faimdprintf(sess, 0, "non-data rendezvous thats not in cache %d/%s!\n", type, cookie);
-         aim_freetlvchain(&list2);
-         aim_freetlvchain(&tlvlist);
-         return 1;
-       }
-
-       if (cook->type == AIM_COOKIETYPE_OFTGET) {
-         struct aim_filetransfer_priv *ft;
-
-         if (cook->data) {
-           int errorcode = -1; /* XXX shouldnt this be 0? */
-
-           ft = (struct aim_filetransfer_priv *)cook->data;
-
-           if(status != 0x0002) {
-             if (aim_gettlv(list2, 0x000b, 1))
-               errorcode = aim_gettlv16(list2, 0x000b, 1);
-             
-             if (errorcode)
-               faimdprintf(sess, 0, "transfer from %s (%s) for %s cancelled (error code %d)\n", ft->sn, ft->ip, ft->fh.name, errorcode);
-           }
-         } else {
-           faimdprintf(sess, 0, "no data attached to file transfer\n");
-         }
-       } else if (cook->type == AIM_CAPS_VOICE) {
-         faimdprintf(sess, 0, "voice request cancelled\n");
-       } else {
-         faimdprintf(sess, 0, "unknown cookie cache type %d\n", cook->type);
-       }
-       
-       if (list2)
-         aim_freetlvchain(&list2);
-       aim_freetlvchain(&tlvlist);
-       return 1;
-      }
-
-      /*
-       * The rest of the handling depends on what type it is.
-       */
-      if (reqclass & AIM_CAPS_BUDDYICON) {
-
-       /*
-        * Call client.
-        */
-#if 0
-       userfunc = aim_callhandler(sess, command->conn, 0x0004, 0x0007);
-       if (userfunc || (i = 0))
-         i = userfunc(sess, 
-                      command, 
-                      channel, 
-                      reqclass,
-                      &userinfo,
-                      ip,
-                      cookie);
-#endif
-
-      } else if (reqclass & AIM_CAPS_VOICE) {
-       struct aim_msgcookie_t *cachedcook;
-
-       faimdprintf(sess, 0, "rend: voice!\n");
-
-       if(!(cachedcook = (struct aim_msgcookie_t*)calloc(1, sizeof(struct aim_msgcookie_t))))
-         return 1;
-
-       memcpy(cachedcook->cookie, cookie, 8);
-       cachedcook->type = AIM_COOKIETYPE_OFTVOICE;
-       cachedcook->data = NULL;
-
-       if (aim_cachecookie(sess, cachedcook) == -1)
-         faimdprintf(sess, 0, "ERROR caching message cookie\n");
-
-       /* XXX: implement all this */
-
-       /*
-        * Call client.
-        */
-       userfunc = aim_callhandler(sess, command->conn, 0x0004, 0x0007);
-       if (userfunc || (i = 0)) {
-         i = userfunc(sess, command, channel, reqclass, &userinfo);
-       }
-      } else if ((reqclass & AIM_CAPS_IMIMAGE) || (reqclass & AIM_CAPS_BUDDYICON)) {
-       char ip[30];
-       struct aim_directim_priv *priv;
-
-       memset(ip, 0, 30);
-       
-       if (aim_gettlv(list2, 0x0003, 1) && aim_gettlv(list2, 0x0005, 1)) {
-         struct aim_tlv_t *iptlv, *porttlv;
-         
-         iptlv = aim_gettlv(list2, 0x0003, 1);
-         porttlv = aim_gettlv(list2, 0x0005, 1);
-
-         snprintf(ip, 30, "%d.%d.%d.%d:%d", 
-                 aimutil_get8(iptlv->value+0),
-                 aimutil_get8(iptlv->value+1),
-                 aimutil_get8(iptlv->value+2),
-                 aimutil_get8(iptlv->value+3),
-                 4443 /*aimutil_get16(porttlv->value)*/);
-       }
-
-       faimdprintf(sess, 0, "rend: directIM request from %s (%s)\n",
-                   userinfo.sn, ip);
-
-       /* XXX: there are a couple of different request packets for
-       *          different things */
-       
-       priv = (struct aim_directim_priv *)calloc(1, sizeof(struct aim_directim_priv));
-       memcpy(priv->ip, ip, sizeof(priv->ip));
-       memcpy(priv->sn, userinfo.sn, sizeof(priv->sn));
-       memcpy(priv->cookie, cookie, sizeof(priv->cookie));
-
-       /*
-        * Call client.
-        */
-       userfunc = aim_callhandler(sess, command->conn, 0x0004, 0x0007);
-       if (userfunc || (i = 0))
-         i = userfunc(sess, 
-                      command, 
-                      channel, 
-                      reqclass,
-                      &userinfo, priv);
-
-      } else if (reqclass & AIM_CAPS_CHAT) {
-       struct aim_tlv_t *miscinfo;
-       struct aim_chat_roominfo roominfo;
-       char *msg=NULL,*encoding=NULL,*lang=NULL;
-
-       miscinfo = aim_gettlv(list2, 0x2711, 1);
-       aim_chat_readroominfo(miscinfo->value, &roominfo);
-                 
-       if (aim_gettlv(list2, 0x000c, 1))
-         msg = aim_gettlv_str(list2, 0x000c, 1);
-         
-       if (aim_gettlv(list2, 0x000d, 1))
-         encoding = aim_gettlv_str(list2, 0x000d, 1);
-         
-       if (aim_gettlv(list2, 0x000e, 1))
-         lang = aim_gettlv_str(list2, 0x000e, 1);
-      
-       /*
-        * Call client.
-        */
-       userfunc = aim_callhandler(sess, command->conn, 0x0004, 0x0007);
-       if (userfunc || (i = 0))
-         i = userfunc(sess, 
-                      command, 
-                      channel, 
-                      reqclass,
-                      &userinfo, 
-                      &roominfo, 
-                      msg, 
-                      encoding?encoding+1:NULL, 
-                      lang?lang+1:NULL);
-         free(roominfo.name);
-         free(msg);
-         free(encoding);
-         free(lang);
-      } else if (reqclass & AIM_CAPS_GETFILE) {
-       char ip[30];
-       struct aim_msgcookie_t *cachedcook;
-       struct aim_tlv_t *miscinfo;
-
-       if (!(cachedcook = calloc(1, sizeof(struct aim_msgcookie_t))))
-         return 0;
-
-       memset(ip, 0, 30);
-
-       if (!(miscinfo = aim_gettlv(list2, 0x2711, 1))) {
-         aim_cookie_free(sess, cachedcook);
-         return 0;
-       }
-
-       if (aim_gettlv(list2, 0x0003, 1) && aim_gettlv(list2, 0x0005, 1)) {
-         struct aim_tlv_t *iptlv, *porttlv;
-
-         if (!(iptlv = aim_gettlv(list2, 0x0003, 1)) || !(porttlv = aim_gettlv(list2, 0x0005, 1))) {
-           aim_cookie_free(sess, cachedcook);
-           return 0;
-         }
-
-         snprintf(ip, 30, "%d.%d.%d.%d:%d",
-                  aimutil_get8(iptlv->value+0),
-                  aimutil_get8(iptlv->value+1),
-                  aimutil_get8(iptlv->value+2),
-                  aimutil_get8(iptlv->value+3),
-                  aimutil_get16(porttlv->value));
-       }
-
-       faimdprintf(sess, 0, "rend: file get request from %s (%s)\n", userinfo.sn, ip);
-
-       /*
-        * Call client.
-        */
-       userfunc = aim_callhandler(sess, command->conn, 0x0004, 0x0007);
-       if (userfunc || (i = 0))
-         i = userfunc(sess, 
-                      command, 
-                      channel, 
-                      reqclass,
-                      &userinfo,
-                      ip,
-                      cookie);
-
-      } else if (reqclass & AIM_CAPS_SENDFILE) {
-#if 0
-       char ip[30];
-       char *desc = NULL;
-       struct aim_msgcookie_t *cachedcook;
-       struct aim_filetransfer_priv *ft;
-       struct aim_tlv_t *miscinfo;
-
-       memset(ip, 0, sizeof(ip));
-       
-       if (!(miscinfo = aim_gettlv(list2, 0x2711, 1)))
-         return 0;
-
-       if (aim_gettlv(list2, 0x0003, 1) && aim_gettlv(list2, 0x0003, 1)) {
-         struct aim_tlv_t *iptlv, *porttlv;
-         
-         iptlv = aim_gettlv(list2, 0x0003, 1);
-         porttlv = aim_gettlv(list2, 0x0005, 1);
-
-         snprintf(ip, sizeof(ip)-1, "%d.%d.%d.%d:%d", 
-                 aimutil_get8(iptlv->value+0),
-                 aimutil_get8(iptlv->value+1),
-                 aimutil_get8(iptlv->value+2),
-                 aimutil_get8(iptlv->value+3),
-                 aimutil_get16(porttlv->value));
-       }
-
-       if (aim_gettlv(list2, 0x000c, 1)) {
-         desc = aim_gettlv_str(list2, 0x000c, 1);
-       }
-
-       faimdprintf(sess, 0, "rend: file transfer request from %s for %s: %s (%s)\n",
-                   userinfo.sn,
-                   miscinfo->value+8,
-                   desc, 
-                   ip);
-       
-       memcpy(cachedcook->cookie, cookie, 8);
-       
-       ft = malloc(sizeof(struct aim_filetransfer_priv));
-       strncpy(ft->sn, userinfo.sn, sizeof(ft->sn));
-       strncpy(ft->ip, ip, sizeof(ft->ip));
-       strncpy(ft->fh.name, miscinfo->value+8, sizeof(ft->fh.name));
-       cachedcook->type = AIM_COOKIETYPE_OFTSEND;
-       cachedcook->data = ft;
-
-       if (aim_cachecookie(sess, cachedcook) == -1)
-         faimdprintf(sess, 0, "ERROR caching message cookie\n");
-       
-       
-       aim_accepttransfer(sess, command->conn, ft->sn, cookie, AIM_CAPS_SENDFILE);
-       
-       if (desc)
-         free(desc);
-#endif 
-       /*
-        * Call client.
-        */
-       userfunc = aim_callhandler(sess, command->conn, 0x0004, 0x0007);
-       if (userfunc || (i = 0))
-         i = userfunc(sess, 
-                      command, 
-                      channel, 
-                      reqclass,
-                      &userinfo);
-      } else
-       faimdprintf(sess, 0, "rend: unknown rendezvous 0x%04x\n", reqclass);
-
-      aim_freetlvchain(&list2);
-    }
+    ret = incomingim_ch2(sess, mod, rx, snac, channel, &userinfo, tlvlist, cookie);
 
   /*
    * Free up the TLV chain.
    */
   aim_freetlvchain(&tlvlist);
-  
 
-  return i;
+  return ret;
 }
 
 /*
@@ -848,14 +789,10 @@ faim_export unsigned long aim_seticbmparam(struct aim_session_t *sess,
   curbyte = aim_putsnac(newpacket->data, 0x0004, 0x0002, 0x0000, sess->snac_nextid);
   curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
   curbyte += aimutil_put32(newpacket->data+curbyte, 0x00000003);
-  curbyte += aimutil_put8(newpacket->data+curbyte,  0x1f);
-  curbyte += aimutil_put8(newpacket->data+curbyte,  0x40);
-  curbyte += aimutil_put8(newpacket->data+curbyte,  0x03);
-  curbyte += aimutil_put8(newpacket->data+curbyte,  0xe7);
-  curbyte += aimutil_put8(newpacket->data+curbyte,  0x03);
-  curbyte += aimutil_put8(newpacket->data+curbyte,  0xe7);
-  curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
-  curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
+  curbyte += aimutil_put16(newpacket->data+curbyte,  0x1f40);
+  curbyte += aimutil_put16(newpacket->data+curbyte,  0x03e7);
+  curbyte += aimutil_put16(newpacket->data+curbyte,  0x03e7);
+  curbyte += aimutil_put32(newpacket->data+curbyte, 0x00000000);
 
   newpacket->lock = 0;
   aim_tx_enqueue(sess, newpacket);
@@ -863,66 +800,44 @@ faim_export unsigned long aim_seticbmparam(struct aim_session_t *sess,
   return (sess->snac_nextid++);
 }
 
-faim_internal int aim_parse_msgerror_middle(struct aim_session_t *sess,
-                                           struct command_rx_struct *command)
+static int paraminfo(struct aim_session_t *sess, aim_module_t *mod, struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned char *data, int datalen)
 {
-  u_long snacid = 0x000000000;
-  struct aim_snac_t *snac = NULL;
-  int ret = 0;
-  rxcallback_t userfunc = NULL;
-  char *dest;
-  unsigned short reason = 0;
+  unsigned long defflags, minmsginterval;
+  unsigned short maxicbmlen, maxsenderwarn, maxrecverwarn, maxchannel;
+  rxcallback_t userfunc;
+  int i = 0;
 
-  /*
-   * Get SNAC from packet and look it up 
-   * the list of unrepliedto/outstanding
-   * SNACs.
-   *
-   * After its looked up, the SN that the
-   * message should've gone to will be 
-   * in the ->data element of the snac struct.
-   *
-   */
-  snacid = aimutil_get32(command->data+6);
-  snac = aim_remsnac(sess, snacid);
+  maxchannel = aimutil_get16(data+i);
+  i += 2;
 
-  if (!snac) {
-    faimdprintf(sess, 0, "msgerr: got an ICBM-failed error on an unknown SNAC ID! (%08lx)\n", snacid);
-    dest = NULL;
-  } else
-    dest = snac->data;
+  defflags = aimutil_get32(data+i);
+  i += 4;
 
-  reason = aimutil_get16(command->data+10);
+  maxicbmlen = aimutil_get16(data+i);
+  i += 2;
 
-  /*
-   * Call client.
-   */
-  userfunc = aim_callhandler(sess, command->conn, 0x0004, 0x0001);
-  if (userfunc)
-    ret =  userfunc(sess, command, dest, reason);
-  else
-    ret = 0;
-  
-  if (snac) {
-    free(snac->data);
-    free(snac);
-  }
+  maxsenderwarn = aimutil_get16(data+i);
+  i += 2;
 
-  return ret;
-}
+  maxrecverwarn = aimutil_get16(data+i);
+  i += 2;
 
+  minmsginterval = aimutil_get32(data+i);
+  i += 4;
 
-faim_internal int aim_parse_missedcall(struct aim_session_t *sess,
-                                      struct command_rx_struct *command)
+  if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
+    return userfunc(sess, rx, maxchannel, defflags, maxicbmlen, maxsenderwarn, maxrecverwarn, minmsginterval);
+
+  return 0;
+}
+
+static int missedcall(struct aim_session_t *sess, aim_module_t *mod, struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned char *data, int datalen)
 {
-  int i, ret = 1;
-  rxcallback_t userfunc = NULL;
+  int i = 0;
+  rxcallback_t userfunc;
   unsigned short channel, nummissed, reason;
   struct aim_userinfo_s userinfo;
  
-  i = 10; /* Skip SNAC header */
-
-
   /*
    * XXX: supposedly, this entire packet can repeat as many times
    * as necessary. Should implement that.
@@ -931,28 +846,78 @@ faim_internal int aim_parse_missedcall(struct aim_session_t *sess,
   /*
    * Channel ID.
    */
-  channel = aimutil_get16(command->data+i);
+  channel = aimutil_get16(data+i);
   i += 2;
   
   /*
    * Extract the standard user info block.
    */
-  i += aim_extractuserinfo(sess, command->data+i, &userinfo);
+  i += aim_extractuserinfo(sess, data+i, &userinfo);
   
-  nummissed = aimutil_get16(command->data+i);
+  nummissed = aimutil_get16(data+i);
   i += 2;
   
-  reason = aimutil_get16(command->data+i);
+  reason = aimutil_get16(data+i);
   i += 2;
 
-  /*
-   * Call client.
-   */
-  userfunc = aim_callhandler(sess, command->conn, 0x0004, 0x000a);
-  if (userfunc)
-    ret =  userfunc(sess, command, channel, &userinfo, nummissed, reason);
-  else
-    ret = 0;
+  if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
+    return userfunc(sess, rx, channel, &userinfo, nummissed, reason);
   
-  return ret;
+  return 0;
+}
+
+static int msgack(struct aim_session_t *sess, aim_module_t *mod, struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned char *data, int datalen)
+{
+  rxcallback_t userfunc;
+  char sn[MAXSNLEN];
+  unsigned char ck[8];
+  unsigned short type;
+  int i = 0;
+  unsigned char snlen;
+
+  memcpy(ck, data, 8);
+  i += 8;
+
+  type = aimutil_get16(data+i);
+  i += 2;
+
+  snlen = aimutil_get8(data+i);
+  i++;
+
+  memset(sn, 0, sizeof(sn));
+  strncpy(sn, (char *)data+i, snlen);
+
+  if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
+    return userfunc(sess, rx, type, sn);
+
+  return 0;
+}
+
+static 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)
+{
+
+  if (snac->subtype == 0x0005)
+    return paraminfo(sess, mod, rx, snac, data, datalen);
+  else if (snac->subtype == 0x0006)
+    return outgoingim(sess, mod, rx, snac, data, datalen);
+  else if (snac->subtype == 0x0007)
+    return incomingim(sess, mod, rx, snac, data, datalen);
+  else if (snac->subtype == 0x000a)
+    return missedcall(sess, mod, rx, snac, data, datalen);
+  else if (snac->subtype == 0x000c)
+    return msgack(sess, mod, rx, snac, data, datalen);
+
+  return 0;
+}
+
+faim_internal int msg_modfirst(struct aim_session_t *sess, aim_module_t *mod)
+{
+
+  mod->family = 0x0004;
+  mod->version = 0x0000;
+  mod->flags = 0;
+  strncpy(mod->name, "messaging", sizeof(mod->name));
+  mod->snachandler = snachandler;
+
+  return 0;
 }
This page took 0.434313 seconds and 4 git commands to generate.