-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
8320971: Use BufferedInputStream.buf directly when param of implTransferTo() is trusted #16879
Closed
+114
−3
Closed
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
6993265
8320971: Use BufferedInputStream.buf directly when param of implTrans…
stsypanov d5ab8bf
8320971: Use BufferedInputStream.class.getPackageName()
stsypanov 7779aac
8320971: Trust any OutputStream from java.*
stsypanov a77208e
8320971: Add test
stsypanov b68eeba
Merge branch 'master' into 8320971
stsypanov 69fb33f
8320971: Use same approach as BAOS
stsypanov 9bf4e22
8320971: Rewrite comment
stsypanov 6abc46d
8320971: Rearrange code
stsypanov f5cf134
8320971: Extract utility class
stsypanov 8015687
8320971: Rename method
stsypanov 2df52c7
Merge branch 'master' into 8320971
stsypanov 3576a17
8320971: Move IOStreams to com.sun.io
stsypanov 50e4e4e
8320971: Fix build
stsypanov a3ba43f
8320971: Whitespaces
stsypanov c6696e2
8320971: Fix JavaDoc
stsypanov 42147ce
8320971: Add more tests
stsypanov 8626e92
8320971: Revert irrelevant changes
stsypanov cbe7ac2
Merge branch 'master' into 8320971
stsypanov a5e05e8
8320971: Adjust JavaDoc
stsypanov 84686bc
8322292: Remove TransferToTrusted.checkedOutputStream()
stsypanov 261b473
8320971: Inline tests
stsypanov ee03599
Merge branch 'master' into 8320971
stsypanov 41a7f1a
8320971: Fix test
stsypanov e769dfb
8320971: Fix JavaDoc
stsypanov 8d15e74
Update TransferToTrusted.java
stsypanov 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
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
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 is a strange construction. Any subclass could simply implement this as
return true;
. Where is the guard against this, and why not doing it that way?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.
Technically speaking,
OutputStream
is anabstract class
, so this declaration ofboolean trusted()
is a package-protected method that will be visible and overridable only within JDK itself.However, I agree it looks suspicious.
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.
The comment on this method doesn't look right. The issue for BAIS is that its lifetime may be different to the byte[] that it wraps, think about use after the BAIS has been discarded. You don't want a sink keeping a reference to the byte[] even if it doesn't scribble on it.
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.
@mkarg I guess the method can only be implemented by subclasses residing in the same package with
OutputStream
, right?@AlanBateman fixed
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.
@stsypanov Yes but still it is just weird to ask any output stream if it is trusted. I mean, it feels just unsecure to ask: "Do you pretend to be trusted?" instead of "Do we trust you?". I could sleep better if this method would not be part of each OutputStream subclass. We should either move it back to the place where needed, or into some static utility like
OutputStreams::isTrusted(OutputStream)
(mind the plural!), or it should at least befinal
.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.
(Deleted) the new version doesn’t have the issue (albeit now it’s rather complicated formulated) “If stream can be used by JCL callers without extra copies of the byte[] argument to write(). This is not over writeable by user code.”
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.
Unlike BAIS, the BufferedInputStream can wrap an untrusted InputStream. BIS.buf is passed directly to wrapped InputStream so I would assume that we would want to avoid exposing BIS.buf to the
out
parameter of transferTo. This way we know the input stream is not able to poison the output stream when a write is in progress.I assume that the current small list of trusted classes are also immune to poison so I imagine this patch is safe. However, for any FilterInputStream we should either always use Arrays.copyOfRange because the input side can poison the output side or it needs a mirroring allow list for the target input stream to insure that the wrapped input stream is not poisoning the out parameter.
For instance, java.util.zip.CheckedOutputStream in theory could be added as trusted class as it doesn't leak or poison but, looking at the code it would appear that it is not immune to poison.