[flang-commits] [PATCH] D122049: [flang] Expose error recovery cases in external I/O
Peter Klausler via Phabricator via flang-commits
flang-commits at lists.llvm.org
Fri Mar 18 17:32:48 PDT 2022
klausler created this revision.
klausler added a reviewer: vdonaldson.
klausler added a project: Flang.
Herald added a subscriber: jdoerfert.
Herald added a project: All.
klausler requested review of this revision.
Some I/O error situations are current handled with fatal
runtime asserts, but should be exposed for user program
error recovery.
https://reviews.llvm.org/D122049
Files:
flang/include/flang/Runtime/iostat.h
flang/runtime/iostat.cpp
flang/runtime/unit.cpp
Index: flang/runtime/unit.cpp
===================================================================
--- flang/runtime/unit.cpp
+++ flang/runtime/unit.cpp
@@ -762,10 +762,16 @@
// checked informatively in NextSequentialVariableUnformattedInputRecord().
std::size_t got{
ReadFrame(frameOffsetInFile_ - headerBytes, headerBytes, handler)};
- RUNTIME_CHECK(handler, got >= sizeof footer);
+ if (static_cast<std::int64_t>(got) < headerBytes) {
+ handler.SignalError(IostatShortRead);
+ return;
+ }
std::memcpy(&footer, Frame(), sizeof footer);
recordLength = footer;
- RUNTIME_CHECK(handler, frameOffsetInFile_ >= *recordLength + 2 * headerBytes);
+ if (frameOffsetInFile_ < *recordLength + 2 * headerBytes) {
+ handler.SignalError(IostatBadUnformattedRecord);
+ return;
+ }
frameOffsetInFile_ -= *recordLength + 2 * headerBytes;
if (frameOffsetInFile_ >= headerBytes) {
frameOffsetInFile_ -= headerBytes;
@@ -774,9 +780,15 @@
auto need{static_cast<std::size_t>(
recordOffsetInFrame_ + sizeof header + *recordLength)};
got = ReadFrame(frameOffsetInFile_, need, handler);
- RUNTIME_CHECK(handler, got >= need);
+ if (got < need) {
+ handler.SignalError(IostatShortRead);
+ return;
+ }
std::memcpy(&header, Frame() + recordOffsetInFrame_, sizeof header);
- RUNTIME_CHECK(handler, header == *recordLength);
+ if (header != *recordLength) {
+ handler.SignalError(IostatBadUnformattedRecord);
+ return;
+ }
}
// There's no portable memrchr(), unfortunately, and strrchr() would
@@ -816,9 +828,15 @@
frameOffsetInFile_ -= std::min<std::int64_t>(frameOffsetInFile_, 1024);
auto need{static_cast<std::size_t>(prevNL + 1 - frameOffsetInFile_)};
auto got{ReadFrame(frameOffsetInFile_, need, handler)};
- RUNTIME_CHECK(handler, got >= need);
+ if (got < need) {
+ handler.SignalError(IostatShortRead);
+ return;
+ }
+ }
+ if (Frame()[recordOffsetInFrame_ + *recordLength] != '\n') {
+ handler.SignalError(IostatMissingTerminator);
+ return;
}
- RUNTIME_CHECK(handler, Frame()[recordOffsetInFrame_ + *recordLength] == '\n');
if (*recordLength > 0 &&
Frame()[recordOffsetInFrame_ + *recordLength - 1] == '\r') {
--*recordLength;
Index: flang/runtime/iostat.cpp
===================================================================
--- flang/runtime/iostat.cpp
+++ flang/runtime/iostat.cpp
@@ -69,6 +69,12 @@
return "Child input from output parent unit";
case IostatChildOutputToInputParent:
return "Child output to input parent unit";
+ case IostatShortRead:
+ return "Read from external unit returned insufficient data";
+ case IostatMissingTerminator:
+ return "Sequential record missing its terminator";
+ case IostatBadUnformattedRecord:
+ return "Erroneous unformatted sequential file record structure";
default:
return nullptr;
}
Index: flang/include/flang/Runtime/iostat.h
===================================================================
--- flang/include/flang/Runtime/iostat.h
+++ flang/include/flang/Runtime/iostat.h
@@ -63,6 +63,9 @@
IostatFormattedChildOnUnformattedParent,
IostatChildInputFromOutputParent,
IostatChildOutputToInputParent,
+ IostatShortRead,
+ IostatMissingTerminator,
+ IostatBadUnformattedRecord,
};
const char *IostatErrorString(int);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D122049.416639.patch
Type: text/x-patch
Size: 3347 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20220319/db7e4062/attachment.bin>
More information about the flang-commits
mailing list