private Element processPacket(Tag currentTag, int packetType)
     throws XmlPullParserException, IOException {
   Element element;
   switch (packetType) {
     case PACKET_IQ:
       element = new IqPacket();
       break;
     case PACKET_MESSAGE:
       element = new MessagePacket();
       break;
     case PACKET_PRESENCE:
       element = new PresencePacket();
       break;
     default:
       return null;
   }
   element.setAttributes(currentTag.getAttributes());
   Tag nextTag = tagReader.readTag();
   while (!nextTag.isEnd(element.getName())) {
     if (!nextTag.isNo()) {
       Element child = tagReader.readElement(nextTag);
       if ((packetType == PACKET_IQ) && ("jingle".equals(child.getName()))) {
         element = new JinglePacket();
         element.setAttributes(currentTag.getAttributes());
       }
       element.addChild(child);
     }
     nextTag = tagReader.readTag();
   }
   ++stanzasReceived;
   lastPaketReceived = SystemClock.elapsedRealtime();
   return element;
 }
  private void switchOverToZLib(Tag currentTag)
      throws XmlPullParserException, IOException, NoSuchAlgorithmException {
    tagReader.readTag(); // read tag close

    tagWriter.setOutputStream(new ZLibOutputStream(tagWriter.getOutputStream()));
    tagReader.setInputStream(new ZLibInputStream(tagReader.getInputStream()));

    sendStartStream();
    Log.d(LOGTAG, account.getJid() + ": compression enabled");
    processStream(tagReader.readTag());
  }
 private void processStreamFeatures(Tag currentTag) throws XmlPullParserException, IOException {
   this.streamFeatures = tagReader.readElement(currentTag);
   if (this.streamFeatures.hasChild("starttls") && account.isOptionSet(Account.OPTION_USETLS)) {
     sendStartTLS();
   } else if (compressionAvailable()) {
     sendCompressionZlib();
   } else if (this.streamFeatures.hasChild("register")
       && (account.isOptionSet(Account.OPTION_REGISTER))) {
     sendRegistryRequest();
   } else if (!this.streamFeatures.hasChild("register")
       && (account.isOptionSet(Account.OPTION_REGISTER))) {
     changeStatus(Account.STATUS_REGISTRATION_NOT_SUPPORTED);
     disconnect(true);
   } else if (this.streamFeatures.hasChild("mechanisms") && shouldAuthenticate) {
     List<String> mechanisms = extractMechanisms(streamFeatures.findChild("mechanisms"));
     if (mechanisms.contains("PLAIN")) {
       sendSaslAuthPlain();
     } else if (mechanisms.contains("DIGEST-MD5")) {
       sendSaslAuthDigestMd5();
     }
   } else if (this.streamFeatures.hasChild("sm", "urn:xmpp:sm:" + smVersion) && streamId != null) {
     ResumePacket resume = new ResumePacket(this.streamId, stanzasReceived, smVersion);
     this.tagWriter.writeStanzaAsync(resume);
   } else if (this.streamFeatures.hasChild("bind") && shouldBind) {
     sendBindRequest();
     if (this.streamFeatures.hasChild("session")) {
       Log.d(LOGTAG, account.getJid() + ": sending deprecated session");
       IqPacket startSession = new IqPacket(IqPacket.TYPE_SET);
       startSession.addChild("session", "urn:ietf:params:xml:ns:xmpp-session"); // setContent("")
       this.sendIqPacket(startSession, null);
     }
   }
 }
  private void switchOverToTls(Tag currentTag) throws XmlPullParserException, IOException {
    Tag nextTag = tagReader.readTag(); // should be proceed end tag
    try {
      SSLContext sc = SSLContext.getInstance("TLS");
      TrustManagerFactory tmf =
          TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
      // Initialise the TMF as you normally would, for example:
      // tmf.in
      try {
        tmf.init((KeyStore) null);
      } catch (KeyStoreException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
      }

      TrustManager[] trustManagers = tmf.getTrustManagers();
      final X509TrustManager origTrustmanager = (X509TrustManager) trustManagers[0];

      TrustManager[] wrappedTrustManagers =
          new TrustManager[] {
            new X509TrustManager() {

              @Override
              public void checkClientTrusted(X509Certificate[] chain, String authType)
                  throws CertificateException {
                origTrustmanager.checkClientTrusted(chain, authType);
              }

              @Override
              public void checkServerTrusted(X509Certificate[] chain, String authType)
                  throws CertificateException {
                try {
                  origTrustmanager.checkServerTrusted(chain, authType);
                } catch (CertificateException e) {
                  if (e.getCause() instanceof CertPathValidatorException) {
                    String sha;
                    try {
                      MessageDigest sha1 = MessageDigest.getInstance("SHA1");
                      sha1.update(chain[0].getEncoded());
                      sha = CryptoHelper.bytesToHex(sha1.digest());
                      if (!sha.equals(account.getSSLFingerprint())) {
                        changeStatus(Account.STATUS_TLS_ERROR);
                        if (tlsListener != null) {
                          tlsListener.onTLSExceptionReceived(sha, account);
                        }
                        throw new CertificateException();
                      }
                    } catch (NoSuchAlgorithmException e1) {
                      // TODO Auto-generated catch block
                      e1.printStackTrace();
                    }
                  } else {
                    throw new CertificateException();
                  }
                }
              }

              @Override
              public X509Certificate[] getAcceptedIssuers() {
                return origTrustmanager.getAcceptedIssuers();
              }
            }
          };
      sc.init(null, wrappedTrustManagers, null);
      SSLSocketFactory factory = sc.getSocketFactory();
      SSLSocket sslSocket =
          (SSLSocket)
              factory.createSocket(
                  socket, socket.getInetAddress().getHostAddress(), socket.getPort(), true);
      tagReader.setInputStream(sslSocket.getInputStream());
      tagWriter.setOutputStream(sslSocket.getOutputStream());
      sendStartStream();
      Log.d(LOGTAG, account.getJid() + ": TLS connection established");
      processStream(tagReader.readTag());
      sslSocket.close();
    } catch (NoSuchAlgorithmException e1) {
      // TODO Auto-generated catch block
      e1.printStackTrace();
    } catch (KeyManagementException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
  }
 private void processStream(Tag currentTag)
     throws XmlPullParserException, IOException, NoSuchAlgorithmException {
   Tag nextTag = tagReader.readTag();
   while ((nextTag != null) && (!nextTag.isEnd("stream"))) {
     if (nextTag.isStart("error")) {
       processStreamError(nextTag);
     } else if (nextTag.isStart("features")) {
       processStreamFeatures(nextTag);
       if ((streamFeatures.getChildren().size() == 1)
           && (streamFeatures.hasChild("starttls"))
           && (!account.isOptionSet(Account.OPTION_USETLS))) {
         changeStatus(Account.STATUS_SERVER_REQUIRES_TLS);
       }
     } else if (nextTag.isStart("proceed")) {
       switchOverToTls(nextTag);
     } else if (nextTag.isStart("compressed")) {
       switchOverToZLib(nextTag);
     } else if (nextTag.isStart("success")) {
       Log.d(LOGTAG, account.getJid() + ": logged in");
       tagReader.readTag();
       tagReader.reset();
       sendStartStream();
       processStream(tagReader.readTag());
       break;
     } else if (nextTag.isStart("failure")) {
       Element failure = tagReader.readElement(nextTag);
       changeStatus(Account.STATUS_UNAUTHORIZED);
     } else if (nextTag.isStart("challenge")) {
       String challange = tagReader.readElement(nextTag).getContent();
       Element response = new Element("response");
       response.setAttribute("xmlns", "urn:ietf:params:xml:ns:xmpp-sasl");
       response.setContent(CryptoHelper.saslDigestMd5(account, challange));
       tagWriter.writeElement(response);
     } else if (nextTag.isStart("enabled")) {
       this.stanzasSent = 0;
       Element enabled = tagReader.readElement(nextTag);
       if ("true".equals(enabled.getAttribute("resume"))) {
         this.streamId = enabled.getAttribute("id");
         Log.d(
             LOGTAG,
             account.getJid() + ": stream managment(" + smVersion + ") enabled (resumable)");
       } else {
         Log.d(LOGTAG, account.getJid() + ": stream managment(" + smVersion + ") enabled");
       }
       this.lastSessionStarted = SystemClock.elapsedRealtime();
       this.stanzasReceived = 0;
       RequestPacket r = new RequestPacket(smVersion);
       tagWriter.writeStanzaAsync(r);
     } else if (nextTag.isStart("resumed")) {
       tagReader.readElement(nextTag);
       sendPing();
       changeStatus(Account.STATUS_ONLINE);
       Log.d(LOGTAG, account.getJid() + ": session resumed");
     } else if (nextTag.isStart("r")) {
       tagReader.readElement(nextTag);
       AckPacket ack = new AckPacket(this.stanzasReceived, smVersion);
       // Log.d(LOGTAG,ack.toString());
       tagWriter.writeStanzaAsync(ack);
     } else if (nextTag.isStart("a")) {
       Element ack = tagReader.readElement(nextTag);
       lastPaketReceived = SystemClock.elapsedRealtime();
       int serverSequence = Integer.parseInt(ack.getAttribute("h"));
       if (serverSequence > this.stanzasSent) {
         this.stanzasSent = serverSequence;
       }
       // Log.d(LOGTAG,"server ack"+ack.toString()+" ("+this.stanzasSent+")");
     } else if (nextTag.isStart("failed")) {
       tagReader.readElement(nextTag);
       Log.d(LOGTAG, account.getJid() + ": resumption failed");
       streamId = null;
       if (account.getStatus() != Account.STATUS_ONLINE) {
         sendBindRequest();
       }
     } else if (nextTag.isStart("iq")) {
       processIq(nextTag);
     } else if (nextTag.isStart("message")) {
       processMessage(nextTag);
     } else if (nextTag.isStart("presence")) {
       processPresence(nextTag);
     } else {
       Log.d(
           LOGTAG,
           "found unexpected tag: " + nextTag.getName() + " as child of " + currentTag.getName());
     }
     nextTag = tagReader.readTag();
   }
   if (account.getStatus() == Account.STATUS_ONLINE) {
     account.setStatus(Account.STATUS_OFFLINE);
     if (statusListener != null) {
       statusListener.onStatusChanged(account);
     }
   }
 }
 protected void connect() {
   Log.d(LOGTAG, account.getJid() + ": connecting");
   lastConnect = SystemClock.elapsedRealtime();
   try {
     shouldAuthenticate = shouldBind = !account.isOptionSet(Account.OPTION_REGISTER);
     tagReader = new XmlReader(wakeLock);
     tagWriter = new TagWriter();
     packetCallbacks.clear();
     this.changeStatus(Account.STATUS_CONNECTING);
     Bundle namePort = DNSHelper.getSRVRecord(account.getServer());
     if ("timeout".equals(namePort.getString("error"))) {
       Log.d(LOGTAG, account.getJid() + ": dns timeout");
       this.changeStatus(Account.STATUS_OFFLINE);
       return;
     }
     String srvRecordServer = namePort.getString("name");
     String srvIpServer = namePort.getString("ipv4");
     int srvRecordPort = namePort.getInt("port");
     if (srvRecordServer != null) {
       if (srvIpServer != null) {
         Log.d(
             LOGTAG,
             account.getJid()
                 + ": using values from dns "
                 + srvRecordServer
                 + "["
                 + srvIpServer
                 + "]:"
                 + srvRecordPort);
         socket = new Socket(srvIpServer, srvRecordPort);
       } else {
         Log.d(
             LOGTAG,
             account.getJid()
                 + ": using values from dns "
                 + srvRecordServer
                 + ":"
                 + srvRecordPort);
         socket = new Socket(srvRecordServer, srvRecordPort);
       }
     } else {
       socket = new Socket(account.getServer(), 5222);
     }
     OutputStream out = socket.getOutputStream();
     tagWriter.setOutputStream(out);
     InputStream in = socket.getInputStream();
     tagReader.setInputStream(in);
     tagWriter.beginDocument();
     sendStartStream();
     Tag nextTag;
     while ((nextTag = tagReader.readTag()) != null) {
       if (nextTag.isStart("stream")) {
         processStream(nextTag);
         break;
       } else {
         Log.d(LOGTAG, "found unexpected tag: " + nextTag.getName());
         return;
       }
     }
     if (socket.isConnected()) {
       socket.close();
     }
   } catch (UnknownHostException e) {
     this.changeStatus(Account.STATUS_SERVER_NOT_FOUND);
     if (wakeLock.isHeld()) {
       wakeLock.release();
     }
     return;
   } catch (IOException e) {
     if (account.getStatus() != Account.STATUS_TLS_ERROR) {
       this.changeStatus(Account.STATUS_OFFLINE);
     }
     if (wakeLock.isHeld()) {
       wakeLock.release();
     }
     return;
   } catch (NoSuchAlgorithmException e) {
     this.changeStatus(Account.STATUS_OFFLINE);
     Log.d(LOGTAG, "compression exception " + e.getMessage());
     if (wakeLock.isHeld()) {
       wakeLock.release();
     }
     return;
   } catch (XmlPullParserException e) {
     this.changeStatus(Account.STATUS_OFFLINE);
     Log.d(LOGTAG, "xml exception " + e.getMessage());
     if (wakeLock.isHeld()) {
       wakeLock.release();
     }
     return;
   }
 }