-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathMaliciousJvmSerializationTest.kt
207 lines (189 loc) · 11 KB
/
MaliciousJvmSerializationTest.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*
* Copyright 2019-2025 JetBrains s.r.o. and contributors.
* Use of this source code is governed by the Apache 2.0 License that can be found in the LICENSE.txt file.
*/
package kotlinx.datetime
import kotlinx.datetime.MaliciousJvmSerializationTest.TestCase.Streams
import java.io.ByteArrayInputStream
import java.io.ObjectInputStream
import java.io.Serializable
import java.lang.reflect.Modifier
import kotlin.reflect.KClass
import kotlin.test.Test
import kotlin.test.assertEquals
import kotlin.test.assertFailsWith
import kotlin.test.fail
class MaliciousJvmSerializationTest {
/**
* This data was generated by running the following Java code (`X` was replaced with [clazz]`.simpleName`, `Y` with
* [delegate]`::class.qualifiedName` and `z` with [delegateFieldName]):
* ```java
* package kotlinx.datetime;
*
* import java.io.*;
* import java.util.*;
*
* public class X implements Serializable {
* private final Y z = ...;
*
* @Serial
* private static final long serialVersionUID = ...;
*
* public static void main(String[] args) throws IOException {
* var bos = new ByteArrayOutputStream();
* try (var oos = new ObjectOutputStream(bos)) {
* oos.writeObject(new X());
* }
* System.out.println(HexFormat.of().formatHex(bos.toByteArray()));
* }
* }
* ```
*/
private class TestCase(
val clazz: KClass<out Serializable>,
val serialVersionUID: Long,
val delegateFieldName: String,
val delegate: Serializable,
/** serialVersionUID had the correct value ([serialVersionUID]) in the Java code. */
val withCorrectSVUID: Streams,
/** serialVersionUID had an incorrect value (42) in the Java code. */
val withSVUID42: Streams,
) {
class Streams(
/** `z` was set to `null` in the Java code. */
val delegateNull: String,
/** `z` was set to [delegate] in the Java code. */
val delegateValid: String,
)
}
@Suppress("RemoveRedundantQualifierName")
private val testCases = listOf(
TestCase(
kotlinx.datetime.LocalDate::class,
serialVersionUID = 7026816023079564263L,
delegateFieldName = "value",
delegate = java.time.LocalDate.of(2025, 4, 26),
withCorrectSVUID = Streams(
delegateValid = "aced00057372001a6b6f746c696e782e6461746574696d652e4c6f63616c44617465618443f17dae33e70200014c000576616c75657400154c6a6176612f74696d652f4c6f63616c446174653b78707372000d6a6176612e74696d652e536572955d84ba1b2248b20c00007870770703000007e9041a78",
delegateNull = "aced00057372001a6b6f746c696e782e6461746574696d652e4c6f63616c44617465618443f17dae33e70200014c000576616c75657400154c6a6176612f74696d652f4c6f63616c446174653b787070",
),
withSVUID42 = Streams(
delegateValid = "aced00057372001a6b6f746c696e782e6461746574696d652e4c6f63616c44617465000000000000002a0200014c000576616c75657400154c6a6176612f74696d652f4c6f63616c446174653b78707372000d6a6176612e74696d652e536572955d84ba1b2248b20c00007870770703000007e9041a78",
delegateNull = "aced00057372001a6b6f746c696e782e6461746574696d652e4c6f63616c44617465000000000000002a0200014c000576616c75657400154c6a6176612f74696d652f4c6f63616c446174653b787070",
),
),
TestCase(
kotlinx.datetime.LocalDateTime::class,
serialVersionUID = -4261744960416354711L,
delegateFieldName = "value",
delegate = java.time.LocalDateTime.of(2025, 4, 26, 11, 18),
withCorrectSVUID = Streams(
delegateValid = "aced00057372001e6b6f746c696e782e6461746574696d652e4c6f63616c4461746554696d65c4db3d89c7126e690200014c000576616c75657400194c6a6176612f74696d652f4c6f63616c4461746554696d653b78707372000d6a6176612e74696d652e536572955d84ba1b2248b20c00007870770905000007e9041a0bed78",
delegateNull = "aced00057372001e6b6f746c696e782e6461746574696d652e4c6f63616c4461746554696d65c4db3d89c7126e690200014c000576616c75657400194c6a6176612f74696d652f4c6f63616c4461746554696d653b787070",
),
withSVUID42 = Streams(
delegateValid = "aced00057372001e6b6f746c696e782e6461746574696d652e4c6f63616c4461746554696d65000000000000002a0200014c000576616c75657400194c6a6176612f74696d652f4c6f63616c4461746554696d653b78707372000d6a6176612e74696d652e536572955d84ba1b2248b20c00007870770905000007e9041a0bed78",
delegateNull = "aced00057372001e6b6f746c696e782e6461746574696d652e4c6f63616c4461746554696d65000000000000002a0200014c000576616c75657400194c6a6176612f74696d652f4c6f63616c4461746554696d653b787070",
),
),
TestCase(
kotlinx.datetime.LocalTime::class,
serialVersionUID = -352249606036216323L,
delegateFieldName = "value",
delegate = java.time.LocalTime.of(11, 18),
withCorrectSVUID = Streams(
delegateValid = "aced00057372001a6b6f746c696e782e6461746574696d652e4c6f63616c54696d65fb1c8ed97ff0a5fd0200014c000576616c75657400154c6a6176612f74696d652f4c6f63616c54696d653b78707372000d6a6176612e74696d652e536572955d84ba1b2248b20c000078707703040bed78",
delegateNull = "aced00057372001a6b6f746c696e782e6461746574696d652e4c6f63616c54696d65fb1c8ed97ff0a5fd0200014c000576616c75657400154c6a6176612f74696d652f4c6f63616c54696d653b787070",
),
withSVUID42 = Streams(
delegateValid = "aced00057372001a6b6f746c696e782e6461746574696d652e4c6f63616c54696d65000000000000002a0200014c000576616c75657400154c6a6176612f74696d652f4c6f63616c54696d653b78707372000d6a6176612e74696d652e536572955d84ba1b2248b20c000078707703040bed78",
delegateNull = "aced00057372001a6b6f746c696e782e6461746574696d652e4c6f63616c54696d65000000000000002a0200014c000576616c75657400154c6a6176612f74696d652f4c6f63616c54696d653b787070",
),
),
TestCase(
kotlinx.datetime.UtcOffset::class,
serialVersionUID = -6636773355667981618L,
delegateFieldName = "zoneOffset",
delegate = java.time.ZoneOffset.UTC,
withCorrectSVUID = Streams(
delegateValid = "aced00057372001a6b6f746c696e782e6461746574696d652e5574634f6666736574a3e571cbd0a1face0200014c000a7a6f6e654f66667365747400164c6a6176612f74696d652f5a6f6e654f66667365743b78707372000d6a6176612e74696d652e536572955d84ba1b2248b20c000078707702080078",
delegateNull = "aced00057372001a6b6f746c696e782e6461746574696d652e5574634f6666736574a3e571cbd0a1face0200014c000a7a6f6e654f66667365747400164c6a6176612f74696d652f5a6f6e654f66667365743b787070",
),
withSVUID42 = Streams(
delegateValid = "aced00057372001a6b6f746c696e782e6461746574696d652e5574634f6666736574000000000000002a0200014c000a7a6f6e654f66667365747400164c6a6176612f74696d652f5a6f6e654f66667365743b78707372000d6a6176612e74696d652e536572955d84ba1b2248b20c000078707702080078",
delegateNull = "aced00057372001a6b6f746c696e782e6461746574696d652e5574634f6666736574000000000000002a0200014c000a7a6f6e654f66667365747400164c6a6176612f74696d652f5a6f6e654f66667365743b787070",
),
),
)
@OptIn(ExperimentalStdlibApi::class)
private fun deserialize(stream: String): Any? {
val bis = ByteArrayInputStream(stream.hexToByteArray())
return ObjectInputStream(bis).use { ois ->
ois.readObject()
}
}
@Test
fun deserializeMaliciousStreams() {
for (testCase in testCases) {
testCase.ensureAssumptionsHold()
val className = testCase.clazz.qualifiedName!!
testStreamsWithCorrectSVUID(className, testCase.withCorrectSVUID)
testStreamsWithSVUID42(testCase.serialVersionUID, className, testCase.withSVUID42)
}
}
private fun TestCase.ensureAssumptionsHold() {
val className = clazz.qualifiedName!!
val actualSerialVersionUID = clazz.java
.getDeclaredField("serialVersionUID")
.apply { isAccessible = true }
.get(null) as Long
if (actualSerialVersionUID == 42L) {
fail("This test assumes that the tested classes don't have a serialVersionUID of 42 but $className does.")
}
if (actualSerialVersionUID != serialVersionUID) {
fail(
"This test assumes that the serialVersionUID of $className is $serialVersionUID but it was " +
"$actualSerialVersionUID."
)
}
val field = clazz.java.declaredFields.singleOrNull { !Modifier.isStatic(it.modifiers) }
if (field == null || field.name != delegateFieldName || field.type != delegate.javaClass) {
fail(
"This test assumes that $className has a single instance field named $delegateFieldName of type " +
"${delegate::class.qualifiedName}. The test case for $className should be updated with new " +
"malicious serial streams that represent the changes to $className."
)
}
}
private fun testStreamsWithCorrectSVUID(className: String, streams: Streams) {
val testFailureMessage = "Deserialization of a serial stream that tries to bypass kotlinx.datetime.Ser and " +
"has the correct serialVersionUID for $className should fail"
val expectedIOEMessage = "$className must be deserialized via kotlinx.datetime.Ser"
// this would actually create a valid instance, but serialization should always go through the proxy
val ioe1 = assertFailsWith<java.io.InvalidObjectException>(testFailureMessage) {
deserialize(streams.delegateValid)
}
assertEquals(expectedIOEMessage, ioe1.message)
// this would create an instance that has null in a non-nullable field (e.g., the field
// kotlinx.datetime.LocalDate.value)
// see https://github.com/Kotlin/kotlinx-datetime/pull/373#discussion_r2008922681
val ioe2 = assertFailsWith<java.io.InvalidObjectException>(testFailureMessage) {
deserialize(streams.delegateNull)
}
assertEquals(expectedIOEMessage, ioe2.message)
}
private fun testStreamsWithSVUID42(serialVersionUID: Long, className: String, streams: Streams) {
val testFailureMessage = "Deserialization of a serial stream that tries to bypass kotlinx.datetime.Ser but " +
"has a wrong serialVersionUID for $className should fail"
val expectedICEMessage = "$className; local class incompatible: stream classdesc serialVersionUID = 42, " +
"local class serialVersionUID = $serialVersionUID"
val ice1 = assertFailsWith<java.io.InvalidClassException>(testFailureMessage) {
deserialize(streams.delegateValid)
}
assertEquals(expectedICEMessage, ice1.message)
val ice2 = assertFailsWith<java.io.InvalidClassException>(testFailureMessage) {
deserialize(streams.delegateNull)
}
assertEquals(expectedICEMessage, ice2.message)
}
}