RFR: 8155023: jdk.vm.ci needs to securely export services

Doug Simon doug.simon at oracle.com
Thu May 5 15:45:53 UTC 2016


> On 05 May 2016, at 16:55, Alan Bateman <Alan.Bateman at oracle.com> wrote:
> 
> On 03/05/2016 14:34, Doug Simon wrote:
>> https://bugs.openjdk.java.net/browse/JDK-8155023
>> http://cr.openjdk.java.net/~dnsimon/8155023/
>> 
> I skimmed through this.
> 
> The module-info.java looks okay. The permission check idiom in JVMCICompilerFactory (and EventProvider) look fine.
> 
> I'm not sure about using RuntimePermission("jvmci"). One reason is that RuntimePermission specifies in its javadoc all the possible targets. It might be better to just introduce a new basic permission for this.

Ok, I was not aware that the set of RuntimePermissions is effectively closed. I’ve created JVMCIPermission and updated the webrev.

> 
> One thing about Services.load is that it uses ServiceLoader.load and hence the TCCL. I don't know if this is what you here, I suspect you want the system class loader.

Is that because I should expect only trusted code to use this call? That is, only code available via the system class loader? I’ll admit that when to use TCCL versus the system class loader is not clear to me.

> In passing, the @return for getTrivialPrefixes() suggests an empty array can be returned and so I assume the default should be to return an empty array rather than null.

I’ve correct the javadoc to allow using null to disable the prefix mechanism for forcing compilations to be performed by C1.

Thanks for the review!

-Doug


More information about the hotspot-compiler-dev mailing list