Skip to content

Commit ab3cf26

Browse files
committed
Auto merge of rust-lang#132791 - tyilo:big-file-fail-fast, r=compiler-errors
rustc: Fail fast when compiling a source file larger than 4 GiB Currently if you try to compile a file that is larger than 4 GiB, `rustc` will first read the whole into memory before failing. If we can read the metadata of the file, we can fail before reading the file.
2 parents 4e4c20d + 5caf516 commit ab3cf26

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

compiler/rustc_span/src/lib.rs

+5
Original file line numberDiff line numberDiff line change
@@ -1829,6 +1829,8 @@ impl StableSourceFileId {
18291829
}
18301830

18311831
impl SourceFile {
1832+
const MAX_FILE_SIZE: u32 = u32::MAX - 1;
1833+
18321834
pub fn new(
18331835
name: FileName,
18341836
mut src: String,
@@ -1849,6 +1851,9 @@ impl SourceFile {
18491851
let stable_id = StableSourceFileId::from_filename_in_current_crate(&name);
18501852
let source_len = src.len();
18511853
let source_len = u32::try_from(source_len).map_err(|_| OffsetOverflowError)?;
1854+
if source_len > Self::MAX_FILE_SIZE {
1855+
return Err(OffsetOverflowError);
1856+
}
18521857

18531858
let (lines, multibyte_chars) = analyze_source_file::analyze_source_file(&src);
18541859

compiler/rustc_span/src/source_map.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,12 @@ impl FileLoader for RealFileLoader {
115115
}
116116

117117
fn read_file(&self, path: &Path) -> io::Result<String> {
118+
if path.metadata().is_ok_and(|metadata| metadata.len() > SourceFile::MAX_FILE_SIZE.into()) {
119+
return Err(io::Error::other(format!(
120+
"text files larger than {} bytes are unsupported",
121+
SourceFile::MAX_FILE_SIZE
122+
)));
123+
}
118124
fs::read_to_string(path)
119125
}
120126

@@ -297,7 +303,10 @@ impl SourceMap {
297303
/// unmodified.
298304
pub fn new_source_file(&self, filename: FileName, src: String) -> Lrc<SourceFile> {
299305
self.try_new_source_file(filename, src).unwrap_or_else(|OffsetOverflowError| {
300-
eprintln!("fatal error: rustc does not support files larger than 4GB");
306+
eprintln!(
307+
"fatal error: rustc does not support text files larger than {} bytes",
308+
SourceFile::MAX_FILE_SIZE
309+
);
301310
crate::fatal_error::FatalError.raise()
302311
})
303312
}

0 commit comments

Comments
 (0)