-
Notifications
You must be signed in to change notification settings - Fork 326
Add TraceContextSerializationBinder to constrain deserialization #1346
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
173 changes: 173 additions & 0 deletions
173
Test/DurableTask.Core.Tests/TraceContextSerializationBinderTests.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,173 @@ | ||
| // ---------------------------------------------------------------------------------- | ||
| // Copyright Microsoft Corporation | ||
| // Licensed under the Apache License, Version 2.0 (the "License"); | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
| // ---------------------------------------------------------------------------------- | ||
|
|
||
| namespace DurableTask.Core.Tests | ||
| { | ||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.IO; | ||
| using DurableTask.Core.Serializing; | ||
| using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
| using Newtonsoft.Json; | ||
|
|
||
| [TestClass] | ||
| public class TraceContextSerializationBinderTests | ||
| { | ||
| [TestMethod] | ||
| public void RejectsNonTraceContextRootType() | ||
| { | ||
| // Root $type resolves to System.String, which is not a TraceContextBase subclass. | ||
| // Restore's pre-binder check rejects with a generic Exception. | ||
| string json = "{\"$type\":\"System.String\",\"Value\":\"evil\"}"; | ||
| Assert.ThrowsException<Exception>(() => TraceContextBase.Restore(json)); | ||
| } | ||
|
|
||
| [TestMethod] | ||
| public void RejectsNonAllowlistedNestedType() | ||
| { | ||
| // Root is a legitimate W3CTraceContext, but a nested $type points outside the allowlist. | ||
| string json = "{\"$type\":\"DurableTask.Core.W3CTraceContext, DurableTask.Core\"," | ||
| + "\"OrchestrationTraceContexts\":[{\"$type\":\"System.String\",\"Value\":\"evil\"}]}"; | ||
| Assert.ThrowsException<JsonSerializationException>( | ||
| () => TraceContextBase.Restore(json)); | ||
| } | ||
|
|
||
| [TestMethod] | ||
| public void AllowsLegitimateW3CTraceContextRoundTrip() | ||
| { | ||
| string json = "{\"$id\":\"1\",\"$type\":\"DurableTask.Core.W3CTraceContext, DurableTask.Core\"," | ||
| + "\"TraceParent\":\"00-a422532de19d3e4f8f67af06f8f880c7-81354b086ec6fb41-02\"," | ||
| + "\"TraceState\":null,\"ParentSpanId\":\"b69bc0f95af84240\"," | ||
| + "\"StartTime\":\"2019-05-03T23:43:27.6728211+00:00\"," | ||
| + "\"OrchestrationTraceContexts\":[{\"$id\":\"2\",\"$type\":\"DurableTask.Core.W3CTraceContext, DurableTask.Core\"," | ||
| + "\"TraceParent\":\"00-a422532de19d3e4f8f67af06f8f880c7-f86a8711d7226d42-02\"," | ||
| + "\"TraceState\":null,\"ParentSpanId\":\"2ec2a64f22dbb143\"," | ||
| + "\"StartTime\":\"2019-05-03T23:43:12.7553182+00:00\"," | ||
| + "\"OrchestrationTraceContexts\":[{\"$ref\":\"2\"}]}]}"; | ||
|
|
||
| TraceContextBase context = TraceContextBase.Restore(json); | ||
|
|
||
| Assert.IsInstanceOfType(context, typeof(W3CTraceContext)); | ||
| Assert.AreEqual(DateTimeOffset.Parse("2019-05-03T23:43:27.6728211+00:00"), context.StartTime); | ||
| } | ||
|
|
||
| [TestMethod] | ||
| public void AllowsActualSerializeDeserializeRoundTrip() | ||
| { | ||
| // End-to-end check: SerializableTraceContext produces a payload that Restore | ||
| // accepts. This guards against a binder allowlist that is too tight to round-trip | ||
| // a legitimately serialized TraceContext. | ||
| var original = new W3CTraceContext | ||
| { | ||
| TraceParent = "00-a422532de19d3e4f8f67af06f8f880c7-81354b086ec6fb41-02", | ||
| ParentSpanId = "b69bc0f95af84240", | ||
| StartTime = DateTimeOffset.Parse("2019-05-03T23:43:27.6728211+00:00"), | ||
| OperationName = "TestOp", | ||
| TelemetryType = TelemetryType.Request, | ||
| }; | ||
|
|
||
| string json = original.SerializableTraceContext; | ||
| TraceContextBase restored = TraceContextBase.Restore(json); | ||
|
|
||
| Assert.IsInstanceOfType(restored, typeof(W3CTraceContext)); | ||
| Assert.AreEqual(original.StartTime, restored.StartTime); | ||
| Assert.AreEqual(original.OperationName, restored.OperationName); | ||
| } | ||
|
|
||
| [TestMethod] | ||
| public void RejectsNullAssemblyName() | ||
| { | ||
| // Json.NET can invoke BindToType with a null assemblyName when an incoming $type | ||
| // token omits the assembly portion. The binder must fail deterministically with a | ||
| // JsonSerializationException rather than letting a NullReferenceException leak out | ||
| // of PackageUpgradeSerializationBinder. | ||
| var binder = new TraceContextSerializationBinder(); | ||
| Assert.ThrowsException<JsonSerializationException>( | ||
| () => binder.BindToType(assemblyName: null, typeName: "DurableTask.Core.W3CTraceContext")); | ||
| } | ||
|
|
||
| [TestMethod] | ||
| public void RejectsNonAllowlistedAssembly() | ||
| { | ||
| // Even a type *named* like a TraceContext must be rejected if it claims to live in | ||
| // a non-allowlisted assembly. The pre-filter rejects without loading the assembly. | ||
| var binder = new TraceContextSerializationBinder(); | ||
| Assert.ThrowsException<JsonSerializationException>( | ||
| () => binder.BindToType( | ||
| assemblyName: "Some.Evil.Assembly", | ||
| typeName: "DurableTask.Core.W3CTraceContext")); | ||
| } | ||
|
|
||
| [TestMethod] | ||
| public void RejectsBclGadgetTypeInAllowlistedAssembly() | ||
| { | ||
| // System.IO.FileInfo is a classic gadget-chain probe. It lives in the BCL (which | ||
| // is on the assembly-name allowlist so that Stack<TraceContextBase> can be bound), | ||
| // so this test specifically exercises the post-resolution IsAllowed filter rather | ||
| // than the assembly-name pre-filter. The BCL assembly name differs between TFMs | ||
| // (System.Private.CoreLib on .NET, mscorlib on .NET Framework), so build the | ||
| // assembly name from the runtime type to avoid hard-coding it. | ||
| string bclAssemblyName = typeof(FileInfo).Assembly.GetName().Name; | ||
| var binder = new TraceContextSerializationBinder(); | ||
| Assert.ThrowsException<JsonSerializationException>( | ||
| () => binder.BindToType(assemblyName: bclAssemblyName, typeName: "System.IO.FileInfo")); | ||
| } | ||
|
|
||
| [TestMethod] | ||
| public void AllowsAllConcreteTraceContextTypes() | ||
| { | ||
| // Sanity check that every concrete TraceContextBase subclass declared in | ||
| // DurableTask.Core is accepted by the binder. | ||
| var binder = new TraceContextSerializationBinder(); | ||
| string assemblyName = typeof(TraceContextBase).Assembly.GetName().Name; | ||
| foreach (Type concreteType in new[] | ||
| { | ||
| typeof(W3CTraceContext), | ||
| typeof(HttpCorrelationProtocolTraceContext), | ||
| typeof(NullObjectTraceContext), | ||
| }) | ||
| { | ||
| Type bound = binder.BindToType(assemblyName, concreteType.FullName); | ||
| Assert.AreEqual(concreteType, bound); | ||
| } | ||
| } | ||
|
|
||
| [TestMethod] | ||
| public void AllowsStackOfTraceContextBase() | ||
| { | ||
| // The Stack<TraceContextBase> generic closed type is on the allowlist so that the | ||
| // OrchestrationTraceContexts member can be bound. Confirm that direct lookup works. | ||
| var binder = new TraceContextSerializationBinder(); | ||
| Type stackType = typeof(Stack<TraceContextBase>); | ||
| string typeName = stackType.FullName; | ||
| string assemblyName = stackType.Assembly.GetName().Name; | ||
| Type bound = binder.BindToType(assemblyName, typeName); | ||
| Assert.AreEqual(stackType, bound); | ||
| } | ||
|
|
||
| [TestMethod] | ||
| public void AllowsLegacyDurableTaskAssemblyNameRewrite() | ||
| { | ||
| // Pre-v2 DTFx payloads were written with assembly name 'DurableTask' (or | ||
| // 'DurableTaskFx') and a 'DurableTask.<X>' type name. PackageUpgradeSerializationBinder | ||
| // (the base class) rewrites these to 'DurableTask.Core.<X>' for upgrade compatibility. | ||
| // This test guards that path: TraceContextSerializationBinder must keep the legacy | ||
| // assembly name on its allowlist and must accept the rewritten type after resolution. | ||
| var binder = new TraceContextSerializationBinder(); | ||
| Type bound = binder.BindToType( | ||
| assemblyName: "DurableTask", | ||
| typeName: "DurableTask.W3CTraceContext"); | ||
| Assert.AreEqual(typeof(W3CTraceContext), bound); | ||
| } | ||
| } | ||
| } | ||
119 changes: 119 additions & 0 deletions
119
src/DurableTask.Core/Serializing/TraceContextSerializationBinder.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,119 @@ | ||
| // ---------------------------------------------------------------------------------- | ||
| // Copyright Microsoft Corporation | ||
| // Licensed under the Apache License, Version 2.0 (the "License"); | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
| // ---------------------------------------------------------------------------------- | ||
|
|
||
| namespace DurableTask.Core.Serializing | ||
| { | ||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.Reflection; | ||
| using Newtonsoft.Json; | ||
|
|
||
| /// <summary> | ||
| /// Strict <see cref="Newtonsoft.Json.Serialization.ISerializationBinder"/> used by | ||
| /// <see cref="TraceContextBase"/> when (de)serializing trace-context payloads that flow with | ||
| /// orchestration messages. Only <see cref="TraceContextBase"/> and its subclasses (plus | ||
| /// <see cref="Stack{TraceContextBase}"/> for the <c>OrchestrationTraceContexts</c> member) | ||
| /// are accepted; any other <c>$type</c> token is rejected with a | ||
| /// <see cref="JsonSerializationException"/>. | ||
| /// </summary> | ||
| /// <remarks> | ||
| /// Restricting the resolvable type set defends against unsafe-deserialization gadget chains | ||
| /// if a malicious <c>$type</c> were ever injected into a trace-context payload by an attacker | ||
| /// with the ability to write into the orchestration message stream. | ||
| /// </remarks> | ||
| internal sealed class TraceContextSerializationBinder : PackageUpgradeSerializationBinder | ||
| { | ||
| static readonly Type TraceContextBaseType = typeof(TraceContextBase); | ||
| static readonly Type StackOfTraceContextBaseType = typeof(Stack<TraceContextBase>); | ||
| static readonly Assembly DurableTaskCoreAssembly = typeof(TraceContextBase).Assembly; | ||
|
|
||
| // Allowlist of simple assembly names whose types may even be resolved by this binder. | ||
| // This is a defense-in-depth pre-filter applied *before* delegating to the base binder so | ||
| // that the .NET runtime never has to load (and execute the module initializer of) an | ||
| // assembly that is not on the allowlist as a side effect of probing a malicious $type. | ||
| // The set spans: | ||
| // * DurableTask.Core (the source of TraceContextBase and friends). | ||
| // * The BCL host of Stack<TraceContextBase> for the OrchestrationTraceContexts member. | ||
| // * The legacy pre-v2 DTFx assembly names rewritten by PackageUpgradeSerializationBinder. | ||
| static readonly HashSet<string> AllowedAssemblySimpleNames = new HashSet<string>(StringComparer.Ordinal) | ||
| { | ||
| DurableTaskCoreAssembly.GetName().Name, // DurableTask.Core | ||
| StackOfTraceContextBaseType.Assembly.GetName().Name, // System.Collections / mscorlib / System.Private.CoreLib | ||
| "DurableTask", // pre-v2 DTFx assembly (legacy upgrade path) | ||
| "DurableTaskFx", // pre-v2 DTFx vNext assembly (legacy upgrade path) | ||
| }; | ||
|
|
||
| /// <inheritdoc /> | ||
| public override Type BindToType(string assemblyName, string typeName) | ||
| { | ||
| // Stage 1: reject by assembly name string before invoking the base binder so that | ||
| // unknown assemblies are never loaded just to be rejected afterwards. Also rejects | ||
| // null/empty assembly names deterministically: Json.NET can invoke BindToType with a | ||
| // null assemblyName when an incoming $type token omits the assembly portion, and the | ||
| // base PackageUpgradeSerializationBinder would NRE in that case. | ||
| string simpleAssemblyName = ExtractSimpleAssemblyName(assemblyName); | ||
| if (simpleAssemblyName == null || !AllowedAssemblySimpleNames.Contains(simpleAssemblyName)) | ||
| { | ||
| throw new JsonSerializationException( | ||
| $"Type '{typeName}' from assembly '{assemblyName}' is not permitted by the trace-context serialization binder."); | ||
| } | ||
|
|
||
| // Stage 2: delegate to PackageUpgradeSerializationBinder for the legacy | ||
| // DurableTask.* -> DurableTask.Core.* rewrite and standard type resolution. | ||
| Type resolved = base.BindToType(assemblyName, typeName); | ||
|
|
||
| // Stage 3: filter the resolved type. Even though Stage 1 narrowed the assembly set, | ||
| // the BCL is in scope (so that Stack<TraceContextBase> can round-trip), so we still | ||
| // need this post-resolution check to reject other BCL types that an attacker might | ||
| // try to use as a deserialization gadget. | ||
| if (resolved == null || !IsAllowed(resolved)) | ||
| { | ||
| throw new JsonSerializationException( | ||
| $"Type '{typeName}' from assembly '{assemblyName}' is not permitted by the trace-context serialization binder."); | ||
| } | ||
|
|
||
| return resolved; | ||
| } | ||
|
|
||
| static bool IsAllowed(Type type) | ||
| { | ||
| // TraceContextBase itself or any subclass (W3CTraceContext, HttpCorrelationProtocolTraceContext, | ||
| // NullObjectTraceContext, plus any future subclass added in DurableTask.Core). | ||
| if (TraceContextBaseType.IsAssignableFrom(type)) | ||
| { | ||
| return true; | ||
| } | ||
|
|
||
| // Stack<TraceContextBase> may be requested when the static type of the | ||
| // OrchestrationTraceContexts property is bound. The generic argument's identity is | ||
| // already constrained by the type system, so allowing this exact closed generic | ||
| // type does not widen the gadget surface beyond TraceContextBase itself. | ||
| if (type == StackOfTraceContextBaseType) | ||
| { | ||
| return true; | ||
| } | ||
|
|
||
| return false; | ||
| } | ||
|
|
||
| static string ExtractSimpleAssemblyName(string assemblyName) | ||
| { | ||
| if (string.IsNullOrWhiteSpace(assemblyName)) | ||
| { | ||
| return null; | ||
| } | ||
| int comma = assemblyName.IndexOf(','); | ||
| return comma < 0 ? assemblyName : assemblyName.Substring(0, comma); | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test file is added under the legacy
Test/folder, but the solution and active test project are undertest/DurableTask.Core.Tests(lowercase) and do not include sources fromTest/. As a result, these tests won't be compiled/executed in CI. Move this file intotest/DurableTask.Core.Tests/(or update the referenced test csproj to include it) so the new binder behavior is actually covered by the test suite.