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

[lworld] Primitive classes can't be retransformed

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • repo-valhalla
    • repo-valhalla
    • hotspot
    • x86
    • generic

      In Valhalla, it appears that the bytecodes of primitive classes are garbled before being retransformed by sun.instrument.InstrumentationImpl.

      See the test RedefinePrimitive which is modeled after the RedefineRecord test. Explanation is as follow:

      0) The test will first run RedefinePrimitive to create an redefineagent.jar
      1) The test will then run RedefinePrimitive again, starting itself inside a new process, using this redefineagent.jar file an an -javaagent.
      2) This will launch RedefinePrimitive.premain which will set up a transformer (LoggingTransformer) and add it to the Instrumentation.
      3) Then RedefinePrimitive$PrimitiveTester is explicitly loaded, triggering the LoggingTransformer before loading. The class is loaded as expected, which I've verified in classFileParser.cpp.
      4) Then the loaded class is passed to Instrumentation.retransformClasses(...), and passed yet through the LoggingTransformer. This time, the bytecode is garbled slightly (see below).
      5) When these bytes are checked by classFileParser.cpp, the problems are found in ClassFileParser::parse_methods, explicitly when checking the constructor, yielding a ClassFormatError: "Method <init> in class RedefinePrimitive$PrimitiveTester (not an inline class) has illegal modifiers: 0x8"

      I've attached the difference in 'javap' outputs of RedefinePrimitive$PrimitiveTester (original is 'load.txt', the one seen when redefining is 'redefine.txt'):
       - the 0x10 access flag for the class is missing (which is why ClassFileParser claims it's not an inline class)
       - The field indexes of the three "withfield" instructions are modified to something wrong.
      Other changes, seen when testing a primitive record:
      - The order of the methods were changed
      - The parameter names attribute in the constructor were stripped.

      I've debugged so far as the JvmtiClassFileReconstituter, this could be it.

        1. RedefinePrimitive.java
          5 kB
        2. redefine.txt
          3 kB
        3. load.txt
          3 kB

            amenkov Alex Menkov
            jespersm Jesper Møller
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: