mirror of
https://github.com/corda/corda.git
synced 2024-12-21 05:53:23 +00:00
Set the "no deserialisation" property in the Capsule and Driver. (#603)
This commit is contained in:
parent
93311308a6
commit
9f3fae1914
@ -34,6 +34,7 @@ task buildCordaJAR(type: FatCapsule) {
|
||||
appClassPath = ["jolokia-agent-war-${project.rootProject.ext.jolokia_version}.war"]
|
||||
javaAgents = ["quasar-core-${quasar_version}-jdk8.jar"]
|
||||
systemProperties['visualvm.display.name'] = 'Corda'
|
||||
systemProperties['jdk.serialFilter'] = 'maxbytes=0'
|
||||
minJavaVersion = '1.8.0'
|
||||
minUpdateVersion['1.8'] = java8_minUpdateVersion
|
||||
caplets = ['CordaCaplet']
|
||||
|
@ -181,9 +181,9 @@ Corda will now exit...""")
|
||||
}
|
||||
|
||||
private fun disableJavaDeserialization() {
|
||||
// ObjectInputFilter and friends are in java.io in Java 9 but sun.misc in backports, so we use the system property interface for portability:
|
||||
System.setProperty("jdk.serialFilter", "maxbytes=0")
|
||||
// Attempt a deserialization so that ObjectInputFilter (permanently) inits itself:
|
||||
// ObjectInputFilter and friends are in java.io in Java 9 but sun.misc in backports, so we are using the system property interface for portability.
|
||||
// This property has been set in the Capsule. Anywhere else may be too late.
|
||||
// Attempt at deserialization so that ObjectInputFilter (permanently) inits itself:
|
||||
val data = ByteArrayOutputStream().apply { ObjectOutputStream(this).use { it.writeObject(object : Serializable {}) } }.toByteArray()
|
||||
try {
|
||||
withLevel("java.io.serialization", "WARN") {
|
||||
@ -191,7 +191,7 @@ private fun disableJavaDeserialization() {
|
||||
}
|
||||
javaIsTooOld()
|
||||
} catch (e: InvalidClassException) {
|
||||
// Good, our system property is honoured (assuming ObjectInputFilter wasn't inited earlier).
|
||||
// Good, our system property is honoured.
|
||||
}
|
||||
}
|
||||
|
||||
@ -258,4 +258,4 @@ private fun drawBanner(versionInfo: VersionInfo) {
|
||||
newline().
|
||||
reset())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -573,10 +573,11 @@ class DriverDSL(
|
||||
// Write node.conf
|
||||
writeConfig(nodeConf.baseDirectory, "node.conf", config)
|
||||
|
||||
val systemProperties = mapOf(
|
||||
val systemProperties = overriddenSystemProperties + mapOf(
|
||||
"name" to nodeConf.myLegalName,
|
||||
"visualvm.display.name" to "corda-${nodeConf.myLegalName}"
|
||||
) + overriddenSystemProperties
|
||||
"visualvm.display.name" to "corda-${nodeConf.myLegalName}",
|
||||
"jdk.serialFilter" to "maxbytes=0" // disable deserialisation
|
||||
)
|
||||
val extraJvmArguments = systemProperties.map { "-D${it.key}=${it.value}" } +
|
||||
"-javaagent:$quasarJarPath"
|
||||
val loggingLevel = if (debugPort == null) "INFO" else "DEBUG"
|
||||
|
Loading…
Reference in New Issue
Block a user