changeset 736:3dd0ae4efe78

Fixed possible deadlock for applet->js->applet call with testcase
author Jiri Vanek <jvanek@redhat.com>
date Mon, 20 May 2013 15:13:32 +0200
parents 64f7c169eb3e
children 9e1f7dc48c20
files ChangeLog plugin/icedteanp/java/sun/applet/PluginAppletViewer.java tests/reproducers/simple/AppletJsAppletDeadlock/resources/AppletJsAppletDeadlock.html tests/reproducers/simple/AppletJsAppletDeadlock/srcs/AppletJsAppletDeadlock.java tests/reproducers/simple/AppletJsAppletDeadlock/testcases/AppletJsAppletDeadlockTest.java
diffstat 5 files changed, 278 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri May 17 12:34:41 2013 -0400
+++ b/ChangeLog	Mon May 20 15:13:32 2013 +0200
@@ -1,3 +1,19 @@
+2013-05-20  Jiri Vanek  <jvanek@redhat.com>
+
+	Fixed possible deadlock for applet->js->applet call
+	* plugin/icedteanp/java/sun/applet/PluginAppletViewer.java:
+	(REQUEST_TIMEOUT) new constant, 60s, to define timeout of  applet->js call
+	(waitForRequestCompletion) new method waiting to request to be done with 
+	timeout of REQUEST_TIMEOUT.
+	(javascriptToString) using the waitForRequestCompletion instead of plain
+	wait()
+	* tests/reproducers/simple/AppletJsAppletDeadlock/resources/AppletJsAppletDeadlock.html
+	and
+	* tests/reproducers/simple/AppletJsAppletDeadlock/srcs/AppletJsAppletDeadlock.java
+	reproducer
+	* tests/reproducers/simple/AppletJsAppletDeadlock/testcases/AppletJsAppletDeadlockTest.java
+	testcase
+
 2013-05-17  Adam Domurad  <adomurad@redhat.com>
 
 	Fix PR854: Resizing an applet several times causes 100% CPU load
--- a/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java	Fri May 17 12:34:41 2013 -0400
+++ b/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java	Mon May 20 15:13:32 2013 +0200
@@ -181,7 +181,23 @@
 
 
     private SplashPanel splashPanel;
- 
+    
+    private static long REQUEST_TIMEOUT=60000;//60s
+
+    private static void waitForRequestCompletion(PluginCallRequest request) {
+        try {
+            if (!request.isDone()) {
+                request.wait(REQUEST_TIMEOUT);
+            }
+            if (!request.isDone()) {
+                // Do not wait indefinitely to avoid the potential of deadlock
+                throw new RuntimeException("Possible deadlock, releasing");
+            }
+        } catch (InterruptedException ex) {
+            throw new RuntimeException("Interrupted waiting for call request.", ex);
+        }
+    }
+
     /**
      * Null constructor to allow instantiation via newInstance()
      */
@@ -1290,18 +1306,13 @@
 
         streamhandler.postCallRequest(request);
         streamhandler.write(request.getMessage());
-        try {
-            PluginDebug.debug("wait ToString request 1");
-            synchronized (request) {
-                PluginDebug.debug("wait ToString request 2");
-                while (request.isDone() == false)
-                    request.wait();
-                PluginDebug.debug("wait ToString request 3");
-            }
-        } catch (InterruptedException e) {
-            throw new RuntimeException("Interrupted waiting for call request.",
-                                        e);
+        PluginDebug.debug("wait ToString request 1");
+        synchronized (request) {
+            PluginDebug.debug("wait ToString request 2");
+            waitForRequestCompletion(request);
+            PluginDebug.debug("wait ToString request 3");
         }
+
         PluginDebug.debug(" ToString DONE");
         return (String) request.getObject();
     }
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/simple/AppletJsAppletDeadlock/resources/AppletJsAppletDeadlock.html	Mon May 20 15:13:32 2013 +0200
@@ -0,0 +1,55 @@
+<!--
+
+This file is part of IcedTea.
+
+IcedTea 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, or (at your option)
+any later version.
+
+IcedTea 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 IcedTea; see the file COPYING.  If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library.  Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module.  An independent module is a module which is not derived from
+or based on this library.  If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so.  If you do not wish to do so, delete this
+exception statement from your version.
+
+-->
+<html><script>
+    function callApplet_real() {
+        document.getElementById('theApplet').jsCallback(document.location);
+    }
+
+    function callApplet_wrap() {
+        setTimeout(callApplet_real, 1000);
+    }
+
+    function callApplet() {
+        callApplet_real();
+        //callApplet_wrap();
+    }
+    </script><body>
+        <p><applet id="theApplet" type="application/x-java-applet"
+               codebase="." archive="AppletJsAppletDeadlock.jar" code="AppletJsAppletDeadlock.class" width="800" height="250">
+    </applet></p>
+</body></html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/simple/AppletJsAppletDeadlock/srcs/AppletJsAppletDeadlock.java	Mon May 20 15:13:32 2013 +0200
@@ -0,0 +1,89 @@
+/*
+ Copyright (C) 2012 Red Hat, Inc.
+
+ This file is part of IcedTea.
+
+ IcedTea 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, version 2.
+
+ IcedTea 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 IcedTea; see the file COPYING.  If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ 02110-1301 USA.
+
+ Linking this library statically or dynamically with other modules is
+ making a combined work based on this library.  Thus, the terms and
+ conditions of the GNU General Public License cover the whole
+ combination.
+
+ As a special exception, the copyright holders of this library give you
+ permission to link this library with independent modules to produce an
+ executable, regardless of the license terms of these independent
+ modules, and to copy and distribute the resulting executable under
+ terms of your choice, provided that you also meet, for each linked
+ independent module, the terms and conditions of the license of that
+ module.  An independent module is a module which is not derived from
+ or based on this library.  If you modify this library, you may extend
+ this exception to your version of the library, but you are not
+ obligated to do so.  If you do not wish to do so, delete this
+ exception statement from your version.
+ */
+
+import java.awt.TextArea;
+import java.io.BufferedReader;
+import java.io.InputStreamReader;
+import java.net.URL;
+import java.net.URLConnection;
+import netscape.javascript.JSObject;
+
+public class AppletJsAppletDeadlock extends java.applet.Applet {
+
+    private TextArea outputText = null;
+
+    public void printOutput(String msg) {
+        System.out.println(msg);
+        outputText.setText(outputText.getText() + msg + "\n");
+    }
+
+    public void jsCallback(String location) {
+        printOutput("Callback function called");
+
+        // try requesting the page
+        try {
+            URL url = new URL(location);
+            URLConnection con = url.openConnection();
+            BufferedReader br = new BufferedReader(new InputStreamReader(
+                    con.getInputStream()));
+
+            String line;
+            while ((line = br.readLine()) != null) {
+                System.err.println(line);
+            }
+
+            printOutput("Succesfully connected to " + location);
+        } catch (Exception e) {
+            printOutput("Failed to connect to '" + location + "': " + e.getMessage());
+        }
+
+    }
+
+    @Override
+    public void start() {
+//    public void init() {
+        outputText = new TextArea("", 12, 95);
+        this.add(outputText);
+
+        printOutput("AppletJsAppletDeadlock started");
+
+        JSObject win = JSObject.getWindow(this);
+        win.eval("callApplet();");
+
+        printOutput("JS call finished");
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/simple/AppletJsAppletDeadlock/testcases/AppletJsAppletDeadlockTest.java	Mon May 20 15:13:32 2013 +0200
@@ -0,0 +1,95 @@
+/* 
+ Copyright (C) 2012 Red Hat, Inc.
+
+ This file is part of IcedTea.
+
+ IcedTea 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, version 2.
+
+ IcedTea 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 IcedTea; see the file COPYING.  If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ 02110-1301 USA.
+
+ Linking this library statically or dynamically with other modules is
+ making a combined work based on this library.  Thus, the terms and
+ conditions of the GNU General Public License cover the whole
+ combination.
+
+ As a special exception, the copyright holders of this library give you
+ permission to link this library with independent modules to produce an
+ executable, regardless of the license terms of these independent
+ modules, and to copy and distribute the resulting executable under
+ terms of your choice, provided that you also meet, for each linked
+ independent module, the terms and conditions of the license of that
+ module.  An independent module is a module which is not derived from
+ or based on this library.  If you modify this library, you may extend
+ this exception to your version of the library, but you are not
+ obligated to do so.  If you do not wish to do so, delete this
+ exception statement from your version.
+ */
+
+import net.sourceforge.jnlp.ProcessResult;
+import net.sourceforge.jnlp.ServerAccess;
+import net.sourceforge.jnlp.annotations.KnownToFail;
+import net.sourceforge.jnlp.annotations.NeedsDisplay;
+import net.sourceforge.jnlp.annotations.TestInBrowsers;
+import net.sourceforge.jnlp.browsertesting.BrowserTest;
+import net.sourceforge.jnlp.browsertesting.Browsers;
+import net.sourceforge.jnlp.closinglisteners.RulesFolowingClosingListener;
+import org.junit.AfterClass;
+import org.junit.Assert;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+public class AppletJsAppletDeadlockTest extends BrowserTest {
+
+    private static final String called = "Callback function called";
+    private static final String started = "AppletJsAppletDeadlock started";
+    private static final String finished = "JS call finished";
+    private static final RulesFolowingClosingListener.ContainsRule calledRule = new RulesFolowingClosingListener.ContainsRule(called);
+    private static final RulesFolowingClosingListener.ContainsRule startedRule = new RulesFolowingClosingListener.ContainsRule(started);
+    private static final RulesFolowingClosingListener.ContainsRule finishedRule = new RulesFolowingClosingListener.ContainsRule(finished);
+    private static final long defaultTimeout = ServerAccess.PROCESS_TIMEOUT;
+
+    @BeforeClass
+    public static void setTimeout() {
+        //the timeout is js call is 60s 
+        //see sun.applet.PluginAppletViewer.REQUEST_TIMEOUT
+        //so wee need to have little longer timooute here
+        ServerAccess.PROCESS_TIMEOUT = 120000;//120 s 
+    }
+
+    @AfterClass
+    public static void resetTimeout() {
+        ServerAccess.PROCESS_TIMEOUT = defaultTimeout;
+    }
+
+    @Test
+    @NeedsDisplay
+    @TestInBrowsers(testIn = Browsers.one)
+    public void callAppletJsAppletNotDeadlock() throws Exception {
+        ProcessResult processResult = server.executeBrowser("AppletJsAppletDeadlock.html", new RulesFolowingClosingListener(finishedRule), null);
+        Assert.assertTrue(startedRule.toPassingString(), startedRule.evaluate(processResult.stdout));
+        Assert.assertTrue(finishedRule.toPassingString(), finishedRule.evaluate(processResult.stdout));
+        //this is representing another error, not sure now it is worthy to be fixed
+        //Assert.assertTrue(calledRule.toPassingString(), calledRule.evaluate(processResult.stdout));
+    }
+
+    @Test
+    @NeedsDisplay
+    @TestInBrowsers(testIn = Browsers.one)
+    @KnownToFail
+    public void callAppletJsAppletSuccessfullyEvaluated() throws Exception {
+        ProcessResult processResult = server.executeBrowser("AppletJsAppletDeadlock.html", new RulesFolowingClosingListener(finishedRule), null);
+        Assert.assertTrue(startedRule.toPassingString(), startedRule.evaluate(processResult.stdout));
+        Assert.assertTrue(finishedRule.toPassingString(), finishedRule.evaluate(processResult.stdout));
+        Assert.assertTrue(calledRule.toPassingString(), calledRule.evaluate(processResult.stdout));
+    }
+}