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

4799358: BufferedOutputStream.write() should immediately throw IOException on closed stream #15361

Closed
wants to merge 2 commits into from

Conversation

vyommani
Copy link
Contributor

@vyommani vyommani commented Aug 21, 2023

With the current implementation of BufferedOutputStream if you close the stream and try to write to the closed stream BufferedOutputStream does not throw an IOException until the internal buffer is full. To fix this issue i added a private "ensureOpen" function to BufferedOutputStream which will check if the underline stream is open. If the underline stream is closed "ensureOpen" will throw the IOException.


Progress

  • Change must be properly reviewed (1 review required, with at least 1 Reviewer)
  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue
  • Change requires CSR request JDK-8314870 to be approved

Issues

  • JDK-4799358: BufferedOutputStream.write() should immediately throw IOException on closed stream (Bug - P4)
  • JDK-8314870: BufferedOutputStream.write() should immediately throw IOException on closed stream (CSR)

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/15361/head:pull/15361
$ git checkout pull/15361

Update a local copy of the PR:
$ git checkout pull/15361
$ git pull https://git.openjdk.org/jdk.git pull/15361/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 15361

View PR using the GUI difftool:
$ git pr show -t 15361

Using diff file

Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/15361.diff

Webrev

Link to Webrev Comment

Sorry, something went wrong.

@bridgekeeper
Copy link

bridgekeeper bot commented Aug 21, 2023

👋 Welcome back vtewari! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk openjdk bot added the rfr Pull request is ready for review label Aug 21, 2023
@openjdk
Copy link

openjdk bot commented Aug 21, 2023

@vyommani The following label will be automatically applied to this pull request:

  • core-libs

When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command.

@openjdk openjdk bot added the core-libs core-libs-dev@openjdk.org label Aug 21, 2023
@mlbridge
Copy link

mlbridge bot commented Aug 21, 2023

Webrevs

@AlanBateman
Copy link
Contributor

/csr

@openjdk openjdk bot added the csr Pull request needs approved CSR before integration label Aug 21, 2023
@openjdk
Copy link

openjdk bot commented Aug 21, 2023

@AlanBateman has indicated that a compatibility and specification (CSR) request is needed for this pull request.

@vyommani please create a CSR request for issue JDK-4799358 with the correct fix version. This pull request cannot be integrated until the CSR request is approved.

@liach
Copy link
Member

liach commented Aug 21, 2023

write(int) should have an ensureOpen check too.

* @return {@code true} if, and only if, this stream is open
*/
boolean isOpen(){
return !closed;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wouldn't you want synchronized (closeLock) here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'closed' is volatile, we don't need synchronized (closeLock) here.

import java.io.IOException;
import java.io.OutputStream;
import java.io.File;
import java.io.FileOutputStream;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The imports should be in alphabetical order per convention.


public static void main(String argv[]) throws IOException {
var file = new File(System.getProperty("test.dir", "."), "test.txt");
file.createNewFile();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not instead do something like?:

var dir = new File(System.getProperty("test.dir", "."));
File file = File.createTempFile("x", "y", dir);

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think you need to specify test.dir

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'test.dir' is not necessary, but it's a convention currently used in more than 50 IO and NIO tests. Probably not so useful here.

@bplb
Copy link
Member

bplb commented Aug 23, 2023

The proposed change does not appear to add a great deal of value and breaks longstanding behavior. In such cases, the preferred approach is usually to modify the specification to match the current, albeit incorrect, behavior rather than to change the code itself. Given that this issue was filed more than two decades ago suggests that changing the implementation would be likely to break code which unwittingly depends on the longstanding behavior.

@bplb
Copy link
Member

bplb commented Aug 23, 2023

The PR title should be changed to match the JBS issue summary.

@vyommani
Copy link
Contributor Author

The proposed change does not appear to add a great deal of value and breaks longstanding behavior. In such cases, the preferred approach is usually to modify the specification to match the current, albeit incorrect, behavior rather than to change the code itself. Given that this issue was filed more than two decades ago suggests that changing the implementation would be likely to break code which unwittingly depends on the longstanding behavior.

I am unable to understand how proposed change breaks longstanding behavior(what behavior). With current implementation if the underline stream is closed ‘BufferedOutputStream.write’ will throw IOException when the internal buffer is full. With the proposed change BufferedOutputStream will throw IOException immediately . I don’t see any reason in not throwing exception and waiting till internal buffer fills.

All other OutputStream implementations internally checks and throw IOException immediately if the stream is close. So with the proposed change 'BufferedOutputStream' will behave the same.

Do you really think there is code outside which do ‘write’ after closing the stream, and proposed change will break it ?.

@AlanBateman
Copy link
Contributor

I am unable to understand how proposed change breaks longstanding behavior(what behavior). With current implementation if the underline stream is closed ‘BufferedOutputStream.write’ will throw IOException when the internal buffer is full. With the proposed change BufferedOutputStream will throw IOException immediately.

The change means that IOException will be thrown for cases where it isn't currently thrown. It also means that IOException may be thrown at different use-sites that it is now. I don't think anyone is disagreeing that there is a long standing bug, the issue is that changing the behavior will likely be observed. In cases like this, we will often decide to just specify long standing behavior as the compatibility impact of fixing something is too high.

In this case, I don't object to fixing it early in JDK 22 but the change will need to be widely tested so as to shake out any bugs in code in the eco system as early as possible. It might be that after a few weeks/months that we get some confidence that it is okay, or it might be that we decide to introduce a system property to restore long standing behavior, or decide to just back it out. The question is whether we can get enough testing of JDK 22 builds to help decide on this.

@vyommani vyommani changed the title 4799358: BufferOutputStream.write() should immediately throw IOExcept on closed stream 4799358: BufferOutputStream.write() should immediately throw IOException on closed stream Aug 24, 2023
@vyommani vyommani changed the title 4799358: BufferOutputStream.write() should immediately throw IOException on closed stream 4799358: BufferedOutputStream.write() should immediately throw IOException on closed stream Aug 25, 2023
@bridgekeeper
Copy link

bridgekeeper bot commented Sep 21, 2023

@vyommani This pull request has been inactive for more than 4 weeks and will be automatically closed if another 4 weeks passes without any activity. To avoid this, simply add a new comment to the pull request. Feel free to ask for assistance if you need help with progressing this pull request towards integration!

@bridgekeeper
Copy link

bridgekeeper bot commented Oct 20, 2023

@vyommani This pull request has been inactive for more than 8 weeks and will now be automatically closed. If you would like to continue working on this pull request in the future, feel free to reopen it! This can be done using the /open pull request command.

@bridgekeeper bridgekeeper bot closed this Oct 20, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
core-libs core-libs-dev@openjdk.org csr Pull request needs approved CSR before integration rfr Pull request is ready for review
Development

Successfully merging this pull request may close these issues.

None yet

5 participants