This repository has been archived by the owner on Nov 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 146
Add SafeReadBytes from VM #71
Merged
Merged
Changes from 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
ec3d576
removed ReadVarBytes from VM
igormcoelho aedcf10
using SafeReadBytes instead of ReadBytes
igormcoelho a369e79
Fix compilation error
erikzhang 3cab9ab
re-add `ReadVarBytes()`
erikzhang c899f15
Update `SafeReadBytes()`
erikzhang 6384e15
Update `ReadVarBytes()`
erikzhang 67df28c
Fix max value
shargon 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
This file contains 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
This file contains 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 |
---|---|---|
|
@@ -5,25 +5,11 @@ namespace Neo.VM | |
{ | ||
internal static class Helper | ||
{ | ||
public static byte[] ReadVarBytes(this BinaryReader reader, int max = 0X7fffffc7) | ||
public static byte[] SafeReadBytes(this BinaryReader reader, int max = 0x1000000) | ||
{ | ||
return reader.ReadBytes((int)reader.ReadVarInt((ulong)max)); | ||
} | ||
|
||
public static ulong ReadVarInt(this BinaryReader reader, ulong max = ulong.MaxValue) | ||
{ | ||
byte fb = reader.ReadByte(); | ||
ulong value; | ||
if (fb == 0xFD) | ||
value = reader.ReadUInt16(); | ||
else if (fb == 0xFE) | ||
value = reader.ReadUInt32(); | ||
else if (fb == 0xFF) | ||
value = reader.ReadUInt64(); | ||
else | ||
value = fb; | ||
if (value > max) throw new FormatException(); | ||
return value; | ||
if((max > 0x1000000) || (!reader.BaseStream.CanSeek) || (reader.BaseStream.Length - reader.BaseStream.Position) < max)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we want to throw an exception, then is not needed to check |
||
throw new FormatException; | ||
return reader.ReadBytes(max); | ||
} | ||
} | ||
} |
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.
You can't remove this logic