Return-Path: X-Original-To: apmail-db-derby-dev-archive@www.apache.org Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AE0BA9B4E for ; Mon, 28 Nov 2011 17:24:01 +0000 (UTC) Received: (qmail 76188 invoked by uid 500); 28 Nov 2011 17:24:01 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 76158 invoked by uid 500); 28 Nov 2011 17:24:01 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 76151 invoked by uid 99); 28 Nov 2011 17:24:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Nov 2011 17:24:01 +0000 X-ASF-Spam-Status: No, hits=-2001.2 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Nov 2011 17:24:00 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 2BA89A4F3B for ; Mon, 28 Nov 2011 17:23:40 +0000 (UTC) Date: Mon, 28 Nov 2011 17:23:40 +0000 (UTC) From: "Dag H. Wanvik (Resolved) (JIRA)" To: derby-dev@db.apache.org Message-ID: <398678858.18485.1322501020180.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <1766579191.8002.1322095241183.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Resolved] (DERBY-5514) SecureServerTest (and others) don't play nice with EMMA: AccessControlException MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/DERBY-5514?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dag H. Wanvik resolved DERBY-5514. ---------------------------------- Resolution: Fixed Fix Version/s: 10.9.0.0 Issue & fix info: (was: Patch Available) > SecureServerTest (and others) don't play nice with EMMA: AccessControlException > ------------------------------------------------------------------------------- > > Key: DERBY-5514 > URL: https://issues.apache.org/jira/browse/DERBY-5514 > Project: Derby > Issue Type: Bug > Components: Test > Affects Versions: 10.9.0.0 > Reporter: Dag H. Wanvik > Fix For: 10.9.0.0 > > Attachments: d5514-emma-permissions-to-all.diff, derby-5514-1.diff, derby-5514-1.stat, derby-5514-2.diff, derby-5514-2.stat > > > When running SecureServerTest with jars instrumented with EMMA using the ant emma-all target, I see: > [junit] (net)derbynet.SecureServerTest.testServerStartup used 8475 ms junit.framework.TestListener: endTest(testServerStartup) > [junit] START-SPAWNED:SpawnedNetworkServer ERROR OUTPUT: > [junit] java.security.policy: error adding Entry: > [junit] java.net.MalformedURLException: no protocol: /export/home/dag/java/sb/sb1/tools/java/emma.jar > [junit] java.security.AccessControlException: access denied (java.io.FilePermission coverage.ec read) > [junit] at java.security.AccessControlContext.checkPermission(AccessControlContext.java:374) > [junit] at java.security.AccessController.checkPermission(AccessController.java:546) > [junit] at java.lang.SecurityManager.checkPermission(SecurityManager.java:532) > [junit] at java.lang.SecurityManager.checkRead(SecurityManager.java:871) > [junit] at java.io.File.exists(File.java:731) > [junit] at com.vladium.emma.data.DataFactory.persist(DataFactory.java:525) > [junit] at com.vladium.emma.data.DataFactory.persist(DataFactory.java:86) > [junit] at com.vladium.emma.rt.RTCoverageDataPersister.dumpCoverageData(RTCoverageDataPersister.java:54) > [junit] at com.vladium.emma.rt.RTExitHook.run(RTExitHook.java:32) > [junit] at java.lang.Thread.run(Thread.java:662) > [junit] Exception in thread "EMMA shutdown handler thread" java.lang.RuntimeException: EMMA failed to dump coverage data: java.security.AccessControlException: access denied (java.io.FilePermission coverage.ec read) > [junit] at com.vladium.emma.rt.RTCoverageDataPersister.dumpCoverageData(RTCoverageDataPersister.java:71) > [junit] at com.vladium.emma.rt.RTExitHook.run(RTExitHook.java:32) > [junit] at java.lang.Thread.run(Thread.java:662) > [junit] END-SPAWNED :SpawnedNetworkServer ERROR OUTPUT: > This is presumably because the test spawns a server which runs with the default server policy. > Another thing is that is seems dangerous to let the spawned process write to EMMA's "coverage.ec", since we don't know when the parent process will write to it. This behavior could be what's been causing our corrutions in the EMMA runs earlier. The missing permissions just highlight what's happening. > In this case the spawned process was started with this command line (I instrumented the code): > XXX server startup command = /usr/jdk/instances/jdk1.6.0/jre/bin/java -classpath //tools/java/emma.jar://jars/sane/derbyTesting.jar://jars/emma/lib/derbyclient.jar://jars/emma/lib/derbynet.jar://jars/emma/lib/derby.jar://jars/emma/lib/derbytools.jar://jars/emma/lib/derbyrun.jar://tools/java/junit.jar:/usr/share/lib/ant/ant-launcher.jar:/usr/share/lib/ant/ant.jar:/usr/share/lib/ant/ant-junit.jar org.apache.derby.drda.NetworkServerControl start -h localhost -p 1527 > Possible approaches: > run the spawned VMs with plain jars (downside: we won't get coverage for those) > run the spawned with a special default policy file when we run with EMMA ++ > run the spawned VM with -noSecurityManager if with EMMA jars -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira