Skip to content
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

[release/6.0] Adding null check to avoid abort when invalid IL is encountered #57731

Merged
merged 3 commits into from
Aug 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ private static SystemVClassificationType TypeDef2SystemVClassification(TypeDesc
case TypeFlags.GenericParameter:
case TypeFlags.SignatureTypeVariable:
case TypeFlags.SignatureMethodVariable:
Debug.Assert(false, $"Type {typeDesc} with unexpected category {typeDesc.Category}");
Debug.Fail($"Type {typeDesc} with unexpected category {typeDesc.Category}");
return SystemVClassificationTypeUnknown;
default:
return SystemVClassificationTypeUnknown;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,4 +165,7 @@
<data name="net_WebSockets_Argument_MessageFlagsHasDifferentCompressionOptions" xml:space="preserve">
<value>The compression options for a continuation cannot be different than the options used to send the first fragment of the message.</value>
</data>
</root>
<data name="net_Websockets_InvalidPayloadLength" xml:space="preserve">
<value>The WebSocket received a frame with an invalid payload length.</value>
</data>
</root>
Original file line number Diff line number Diff line change
Expand Up @@ -1116,6 +1116,14 @@ private async ValueTask CloseWithReceiveErrorAndThrowAsync(
return SR.net_Websockets_ReservedBitsSet;
}

if (header.PayloadLength < 0)
{
// as per RFC, if payload length is a 64-bit integer, the most significant bit MUST be 0
// frame-payload-length-63 = %x0000000000000000-7FFFFFFFFFFFFFFF; 64 bits in length
resultHeader = default;
return SR.net_Websockets_InvalidPayloadLength;
}

if (header.Compressed && _inflater is null)
{
resultHeader = default;
Expand Down
31 changes: 31 additions & 0 deletions src/libraries/System.Net.WebSockets/tests/WebSocketCreateTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,37 @@ public async Task ReceiveAsync_InvalidFrameHeader_AbortsAndThrowsException(byte
}
}

[Theory]
[InlineData(new byte[] { 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }, false)] // max allowed value
[InlineData(new byte[] { 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, true)]
public async Task ReceiveAsync_InvalidPayloadLength_AbortsAndThrowsException(byte[] lenBytes, bool shouldFail)
{
var frame = new byte[11];
frame[0] = 0b1_000_0010; // FIN, RSV, OPCODE
frame[1] = 0b0_1111111; // MASK, PAYLOAD_LEN
Assert.Equal(8, lenBytes.Length);
Array.Copy(lenBytes, 0, frame, 2, lenBytes.Length); // EXTENDED_PAYLOAD_LEN
frame[10] = (byte)'a';

using var stream = new MemoryStream(frame, writable: true);
using WebSocket websocket = CreateFromStream(stream, false, null, Timeout.InfiniteTimeSpan);

var buffer = new byte[1];
Task<WebSocketReceiveResult> t = websocket.ReceiveAsync(new ArraySegment<byte>(buffer), CancellationToken.None);
if (shouldFail)
{
var exc = await Assert.ThrowsAsync<WebSocketException>(() => t);
Assert.Equal(WebSocketState.Aborted, websocket.State);
}
else
{
WebSocketReceiveResult result = await t;
Assert.False(result.EndOfMessage);
Assert.Equal(1, result.Count);
Assert.Equal('a', (char)buffer[0]);
}
}

[Fact]
[SkipOnPlatform(TestPlatforms.Browser, "System.Net.Sockets is not supported on this platform.")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/34690", TestPlatforms.Windows, TargetFrameworkMonikers.Netcoreapp, TestRuntimes.Mono)]
Expand Down
2 changes: 1 addition & 1 deletion src/mono/mono/mini/method-to-ir.c
Original file line number Diff line number Diff line change
Expand Up @@ -7314,7 +7314,7 @@ mono_method_to_ir (MonoCompile *cfg, MonoMethod *method, MonoBasicBlock *start_b

sp -= n;

if (virtual_ && cmethod && sp [0]->opcode == OP_TYPED_OBJREF) {
if (virtual_ && cmethod && sp [0] && sp [0]->opcode == OP_TYPED_OBJREF) {
ERROR_DECL (error);

MonoMethod *new_cmethod = mono_class_get_virtual_method (sp [0]->klass, cmethod, error);
Expand Down