Skip to content

Commit 4d86094

Browse files
author
Brian Burkhalter
committedNov 25, 2019
8179320: File.getUsableSpace() returns a negative number on very large file system
Reviewed-by: alanb, rriggs, darcy
1 parent 0ba7b4b commit 4d86094

File tree

1 file changed

+33
-17
lines changed

1 file changed

+33
-17
lines changed
 

‎src/java.base/share/classes/java/io/File.java

+33-17
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import java.net.URL;
3030
import java.net.MalformedURLException;
3131
import java.net.URISyntaxException;
32+
import java.nio.file.FileStore;
3233
import java.nio.file.FileSystems;
3334
import java.nio.file.Path;
3435
import java.security.SecureRandom;
@@ -1798,10 +1799,13 @@ public static File[] listRoots() {
17981799

17991800
/**
18001801
* Returns the size of the partition <a href="#partName">named</a> by this
1801-
* abstract pathname.
1802+
* abstract pathname. If the total number of bytes in the partition is
1803+
* greater than {@link Long#MAX_VALUE}, then {@code Long.MAX_VALUE} will be
1804+
* returned.
18021805
*
18031806
* @return The size, in bytes, of the partition or {@code 0L} if this
1804-
* abstract pathname does not name a partition
1807+
* abstract pathname does not name a partition or if the size
1808+
* cannot be obtained
18051809
*
18061810
* @throws SecurityException
18071811
* If a security manager has been installed and it denies
@@ -1810,6 +1814,7 @@ public static File[] listRoots() {
18101814
* read access to the file named by this abstract pathname
18111815
*
18121816
* @since 1.6
1817+
* @see FileStore#getTotalSpace
18131818
*/
18141819
public long getTotalSpace() {
18151820
SecurityManager sm = System.getSecurityManager();
@@ -1820,12 +1825,15 @@ public long getTotalSpace() {
18201825
if (isInvalid()) {
18211826
return 0L;
18221827
}
1823-
return fs.getSpace(this, FileSystem.SPACE_TOTAL);
1828+
long space = fs.getSpace(this, FileSystem.SPACE_TOTAL);
1829+
return space >= 0L ? space : Long.MAX_VALUE;
18241830
}
18251831

18261832
/**
18271833
* Returns the number of unallocated bytes in the partition <a
1828-
* href="#partName">named</a> by this abstract path name.
1834+
* href="#partName">named</a> by this abstract path name. If the
1835+
* number of unallocated bytes in the partition is greater than
1836+
* {@link Long#MAX_VALUE}, then {@code Long.MAX_VALUE} will be returned.
18291837
*
18301838
* <p> The returned number of unallocated bytes is a hint, but not
18311839
* a guarantee, that it is possible to use most or any of these
@@ -1837,9 +1845,10 @@ public long getTotalSpace() {
18371845
* will succeed.
18381846
*
18391847
* @return The number of unallocated bytes on the partition or {@code 0L}
1840-
* if the abstract pathname does not name a partition. This
1841-
* value will be less than or equal to the total file system size
1842-
* returned by {@link #getTotalSpace}.
1848+
* if the abstract pathname does not name a partition or if this
1849+
* number cannot be obtained. This value will be less than or
1850+
* equal to the total file system size returned by
1851+
* {@link #getTotalSpace}.
18431852
*
18441853
* @throws SecurityException
18451854
* If a security manager has been installed and it denies
@@ -1848,6 +1857,7 @@ public long getTotalSpace() {
18481857
* read access to the file named by this abstract pathname
18491858
*
18501859
* @since 1.6
1860+
* @see FileStore#getUnallocatedSpace
18511861
*/
18521862
public long getFreeSpace() {
18531863
SecurityManager sm = System.getSecurityManager();
@@ -1858,16 +1868,19 @@ public long getFreeSpace() {
18581868
if (isInvalid()) {
18591869
return 0L;
18601870
}
1861-
return fs.getSpace(this, FileSystem.SPACE_FREE);
1871+
long space = fs.getSpace(this, FileSystem.SPACE_FREE);
1872+
return space >= 0L ? space : Long.MAX_VALUE;
18621873
}
18631874

18641875
/**
18651876
* Returns the number of bytes available to this virtual machine on the
1866-
* partition <a href="#partName">named</a> by this abstract pathname. When
1867-
* possible, this method checks for write permissions and other operating
1868-
* system restrictions and will therefore usually provide a more accurate
1869-
* estimate of how much new data can actually be written than {@link
1870-
* #getFreeSpace}.
1877+
* partition <a href="#partName">named</a> by this abstract pathname. If
1878+
* the number of available bytes in the partition is greater than
1879+
* {@link Long#MAX_VALUE}, then {@code Long.MAX_VALUE} will be returned.
1880+
* When possible, this method checks for write permissions and other
1881+
* operating system restrictions and will therefore usually provide a more
1882+
* accurate estimate of how much new data can actually be written than
1883+
* {@link #getFreeSpace}.
18711884
*
18721885
* <p> The returned number of available bytes is a hint, but not a
18731886
* guarantee, that it is possible to use most or any of these bytes. The
@@ -1878,9 +1891,10 @@ public long getFreeSpace() {
18781891
* to this file system will succeed.
18791892
*
18801893
* @return The number of available bytes on the partition or {@code 0L}
1881-
* if the abstract pathname does not name a partition. On
1882-
* systems where this information is not available, this method
1883-
* will be equivalent to a call to {@link #getFreeSpace}.
1894+
* if the abstract pathname does not name a partition or if this
1895+
* number cannot be obtained. On systems where this information
1896+
* is not available, this method will be equivalent to a call to
1897+
* {@link #getFreeSpace}.
18841898
*
18851899
* @throws SecurityException
18861900
* If a security manager has been installed and it denies
@@ -1889,6 +1903,7 @@ public long getFreeSpace() {
18891903
* read access to the file named by this abstract pathname
18901904
*
18911905
* @since 1.6
1906+
* @see FileStore#getUsableSpace
18921907
*/
18931908
public long getUsableSpace() {
18941909
SecurityManager sm = System.getSecurityManager();
@@ -1899,7 +1914,8 @@ public long getUsableSpace() {
18991914
if (isInvalid()) {
19001915
return 0L;
19011916
}
1902-
return fs.getSpace(this, FileSystem.SPACE_USABLE);
1917+
long space = fs.getSpace(this, FileSystem.SPACE_USABLE);
1918+
return space >= 0L ? space : Long.MAX_VALUE;
19031919
}
19041920

19051921
/* -- Temporary files -- */

0 commit comments

Comments
 (0)
Please sign in to comment.