Revision: 4199
          http://tigervnc.svn.sourceforge.net/tigervnc/?rev=4199&view=rev
Author:   atkac
Date:     2010-11-18 14:00:12 +0000 (Thu, 18 Nov 2010)

Log Message:
-----------
[Development] java: Implement TLS security type. (Martin Koegler)

Modified Paths:
--------------
    trunk/java/src/com/tigervnc/vncviewer/Makefile
    trunk/java/src/com/tigervnc/vncviewer/RfbProto.java
    trunk/java/src/com/tigervnc/vncviewer/VncViewer.java

Added Paths:
-----------
    trunk/java/src/com/tigervnc/vncviewer/TLSTunnel.java
    trunk/java/src/com/tigervnc/vncviewer/TLSTunnelBase.java

Modified: trunk/java/src/com/tigervnc/vncviewer/Makefile
===================================================================
--- trunk/java/src/com/tigervnc/vncviewer/Makefile      2010-11-18 13:33:57 UTC 
(rev 4198)
+++ trunk/java/src/com/tigervnc/vncviewer/Makefile      2010-11-18 14:00:12 UTC 
(rev 4199)
@@ -19,7 +19,7 @@
          SocketFactory.class HTTPConnectSocketFactory.class \
          HTTPConnectSocket.class ReloginPanel.class \
          InStream.class MemInStream.class ZlibInStream.class \
-         Dialog.class MessageBox.class
+         TLSTunnelBase.class TLSTunnel.class Dialog.class MessageBox.class
 
 SOURCES = VncViewer.java RfbProto.java AuthPanel.java VncCanvas.java \
          VncCanvas2.java \
@@ -29,7 +29,7 @@
          SocketFactory.java HTTPConnectSocketFactory.java \
          HTTPConnectSocket.java ReloginPanel.java \
          InStream.java MemInStream.java ZlibInStream.java \
-         Dialog.java MessageBox.java
+         TLSTunnelBase.java TLSTunnel.java Dialog.java MessageBox.java
 
 all: $(CLASSES) $(ARCHIVE)
 

Modified: trunk/java/src/com/tigervnc/vncviewer/RfbProto.java
===================================================================
--- trunk/java/src/com/tigervnc/vncviewer/RfbProto.java 2010-11-18 13:33:57 UTC 
(rev 4198)
+++ trunk/java/src/com/tigervnc/vncviewer/RfbProto.java 2010-11-18 14:00:12 UTC 
(rev 4199)
@@ -431,6 +431,9 @@
                case SecTypeNone:
                case SecTypeVncAuth:
                case SecTypePlain:
+               case SecTypeTLSNone:
+               case SecTypeTLSVnc:
+               case SecTypeTLSPlain:
                    writeInt(secTypes[i]);
                    return secTypes[i];
                }
@@ -476,6 +479,11 @@
     readSecurityResult("VNC authentication");
   }
 
+    void authenticateTLS() throws Exception {
+       TLSTunnel tunnel = new TLSTunnel(sock);
+       tunnel.setup (this);
+    }
+
     void authenticatePlain(String User, String Password) throws Exception {
       byte[] user=User.getBytes();
       byte[] password=Password.getBytes();
@@ -1545,4 +1553,9 @@
     numBytesRead += 4;
     return r;
   }
+
+  public void setStreams(InputStream is_, OutputStream os_) {
+    is = new DataInputStream(is_);
+    os = os_;
+  }
 }

Added: trunk/java/src/com/tigervnc/vncviewer/TLSTunnel.java
===================================================================
--- trunk/java/src/com/tigervnc/vncviewer/TLSTunnel.java                        
        (rev 0)
+++ trunk/java/src/com/tigervnc/vncviewer/TLSTunnel.java        2010-11-18 
14:00:12 UTC (rev 4199)
@@ -0,0 +1,51 @@
+/*
+ * Copyright (C) 2003 Sun Microsystems, Inc.
+ * Copyright (C) 2003-2010 Martin Koegler
+ * Copyright (C) 2006 OCCAM Financial Technology
+ *
+ * This is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this software; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
+ * USA.
+ */
+
+package com.tigervnc.vncviewer;
+
+import java.util.*;
+import java.net.*;
+import javax.net.ssl.*;
+
+public class TLSTunnel extends TLSTunnelBase
+{
+
+  public TLSTunnel (Socket sock_)
+  {
+    super (sock_);
+  }
+
+
+  protected void setParam (SSLSocket sock)
+  {
+    String[]supported;
+    ArrayList enabled = new ArrayList ();
+
+    supported = sock.getSupportedCipherSuites ();
+
+    for (int i = 0; i < supported.length; i++)
+      if (supported[i].matches (".*DH_anon.*"))
+       enabled.add (supported[i]);
+
+    sock.setEnabledCipherSuites ((String[])enabled.toArray (new String[0]));
+  }
+
+}

Added: trunk/java/src/com/tigervnc/vncviewer/TLSTunnelBase.java
===================================================================
--- trunk/java/src/com/tigervnc/vncviewer/TLSTunnelBase.java                    
        (rev 0)
+++ trunk/java/src/com/tigervnc/vncviewer/TLSTunnelBase.java    2010-11-18 
14:00:12 UTC (rev 4199)
@@ -0,0 +1,86 @@
+/*
+ * Copyright (C) 2003 Sun Microsystems, Inc.
+ * Copyright (C) 2003-2010 Martin Koegler
+ *
+ * This is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this software; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
+ * USA.
+ */
+
+package com.tigervnc.vncviewer;
+
+import java.util.ArrayList;
+import java.net.*;
+import javax.net.ssl.*;
+
+public abstract class TLSTunnelBase
+{
+
+  public TLSTunnelBase (Socket sock_)
+  {
+    sock = sock_;
+  }
+
+  protected void initContext (SSLContext sc) throws java.security.
+    GeneralSecurityException
+  {
+    sc.init (null, null, null);
+  }
+
+  public void setup (RfbProto cc) throws Exception
+  {
+    if (cc.readU8 () == 0)
+       throw new Exception("Setup on the server failed");
+    try
+    {
+      SSLSocketFactory sslfactory;
+      SSLSocket sslsock;
+      SSLContext sc = SSLContext.getInstance ("TLS");
+      System.out.println("Generating TLS context");
+      initContext (sc);
+      System.out.println("Doing TLS handshake");
+      sslfactory = sc.getSocketFactory ();
+      sslsock = (SSLSocket) sslfactory.createSocket (sock,
+                                                    sock.getInetAddress ().
+                                                    getHostName (),
+                                                    sock.getPort (), true);
+
+      setParam (sslsock);
+
+      /* Not neccessary - just ensures that we know what cipher
+       * suite we are using for the output of toString()
+       */
+      sslsock.startHandshake ();
+
+      System.out.println("TLS done");
+
+      cc.setStreams (sslsock.getInputStream (),
+                    sslsock.getOutputStream ());
+    }
+    catch (java.io.IOException e)
+    {
+      throw new Exception("TLS handshake failed " + e.toString ());
+    }
+    catch (java.security.GeneralSecurityException e)
+    {
+      throw new Exception("TLS handshake failed " + e.toString ());
+    }
+  }
+
+
+  protected abstract void setParam (SSLSocket sock);
+
+  Socket sock;
+
+}

Modified: trunk/java/src/com/tigervnc/vncviewer/VncViewer.java
===================================================================
--- trunk/java/src/com/tigervnc/vncviewer/VncViewer.java        2010-11-18 
13:33:57 UTC (rev 4198)
+++ trunk/java/src/com/tigervnc/vncviewer/VncViewer.java        2010-11-18 
14:00:12 UTC (rev 4199)
@@ -392,6 +392,21 @@
                rfb.authenticatePlain(user,pw);
            }
            break;
+       case RfbProto.SecTypeTLSNone:
+           showConnectionStatus("TLSNone");
+           rfb.authenticateTLS();
+           rfb.authenticateNone();
+           break;
+       case RfbProto.SecTypeTLSVnc:
+           showConnectionStatus("TLSVnc");
+           rfb.authenticateTLS();
+           doAuthentification(RfbProto.SecTypeVncAuth);
+           break;
+       case RfbProto.SecTypeTLSPlain:
+           showConnectionStatus("TLSPlain");
+           rfb.authenticateTLS();
+           doAuthentification(RfbProto.SecTypePlain);
+           break;
        default:
            throw new Exception("Unknown authentication scheme " + secType);
        }


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today
http://p.sf.net/sfu/msIE9-sfdev2dev
_______________________________________________
Tigervnc-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tigervnc-commits

Reply via email to