Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8344626

Add system property for patched runtime

XMLWordPrintable

    • Icon: CSR CSR
    • Resolution: Withdrawn
    • Icon: P4 P4
    • 24
    • hotspot
    • None
    • behavioral
    • minimal
    • Hide
      Since this is only adding a new system property the compatibility risk should be low. The only possible impact would be if users have a name clash, which seems unlikely. The new property would show up with `-XshowSettings:properties` on a launch with `--patch-module` present as well.
      Show
      Since this is only adding a new system property the compatibility risk should be low. The only possible impact would be if users have a name clash, which seems unlikely. The new property would show up with `-XshowSettings:properties` on a launch with `--patch-module` present as well.
    • System or security property
    • JDK

      Summary

      Add a new system property jdk.patched when the runtime has been patched with --patch-module.

      Problem

      With JEP 493 the possibility of linking a custom runtime from the current run-time image has been introduced. This is problematic when the runtime itself has been patched with --patch-module as non-standard classes might populate to the resulting linked runtime. It is therefore desired to detect patched runtimes before a link from the run-time image is being performed in order to abort the link.

      It's also useful to be able to detect a patched runtime by means of a JDK specific system property for serviceability purposes.

      Solution

      Add a read-only, JDK specific, boolean property, jdk.patched, which is set to true if one or more of --patch-module switches have been used on the java launcher.

      An alternative solution for the jlink specific use-case has been considered: Use the internal saved properties, jdk.module.patch.<N>. This has the drawback of needing to export the internal VM class to the jdk.jlink module. Using a public, JDK-specific, system property has the advantage of it being available to serviceability tools and not needing to expose saved properties from the JVM.

      Specification

      When the --patch-module parsing is successful in arguments.cpp of HotSpot, set the externally visible system property to true. Do it only in that case, similar to how jdk.module.path are only set if the --module-path option have been set.

      PR with this change is here: https://github.com/openjdk/jdk/pull/22277

            sgehwolf Severin Gehwolf
            sgehwolf Severin Gehwolf
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: