Questions: Should kernel panic when PCIe fatal error occurs?

Shuai Xue xueshuai at linux.alibaba.com
Thu Sep 21 22:10:19 AEST 2023


On 2023/9/21 07:02, Bjorn Helgaas wrote:
> On Mon, Sep 18, 2023 at 05:39:58PM +0800, Shuai Xue wrote:
>> Hi, all folks,
>>
>> Error reporting and recovery are one of the important features of PCIe, and
>> the kernel has been supporting them since version 2.6, 17 years ago.
>> I am very curious about the expected behavior of the software.
>> I first recap the error classification and then list my questions bellow it.
>>
>> ## Recap: Error classification
>>
>> - Fatal Errors
>>
>> Fatal errors are uncorrectable error conditions which render the particular
>> Link and related hardware unreliable. For Fatal errors, a reset of the
>> components on the Link may be required to return to reliable operation.
>> Platform handling of Fatal errors, and any efforts to limit the effects of
>> these errors, is platform implementation specific. (PCIe 6.0.1, sec
>> 6.2.2.2.1 Fatal Errors).
>>
>> - Non-Fatal Errors
>>
>> Non-fatal errors are uncorrectable errors which cause a particular
>> transaction to be unreliable but the Link is otherwise fully functional.
>> Isolating Non-fatal from Fatal errors provides Requester/Receiver logic in
>> a device or system management software the opportunity to recover from the
>> error without resetting the components on the Link and disturbing other
>> transactions in progress. Devices not associated with the transaction in
>> error are not impacted by the error.  (PCIe 6.0.1, sec 6.2.2.2.1 Non-Fatal
>> Errors).
>>
>> ## What the kernel do?
>>
>> The Linux kernel supports both the OS native and firmware first modes in
>> AER and DPC drivers. The error recovery API is defined in `struct
>> pci_error_handlers`, and the recovery process is performed in several
>> stages in pcie_do_recovery(). One main difference in handling PCIe errors
>> is that the kernel only resets the link when a fatal error is detected.
>>
>> ## Questions
>>
>> 1. Should kernel panic when fatal errors occur without AER recovery?
>>
>> IMHO, the answer is NO. The AER driver handles both fatal and
>> non-fatal errors, and I have not found any panic changes in the
>> recovery path in OS native mode.
>>
>> As far as I know, on many X86 platforms, struct
>> `acpi_hest_generic_status::error_severity` is set as CPER_SEV_FATAL
>> in firmware first mode. As a result, kernel will panic immediately
>> in ghes_proc() when fatal AER errors occur, and there is no chance
>> to handle the error and perform recovery in AER driver.
> 
> UEFI r2.10, sec N.2.1,, defines CPER_SEV_FATAL, and platform firmware
> decides which Error Severity to put in the error record.  I don't see
> anything in UEFI about how the OS should handle fatal errors.
> 
> ACPI r6.5, sec 18.1, says on fatal uncorrected error, the system
> should be restarted to prevent propagation of the error.  For
> CPER_SEV_FATAL errors, it looks like ghes_proc() panics even before
> trying AER recovery.
> 
> I guess your point is that for CPER_SEV_FATAL errors, the APEI/GHES
> path always panics but the native path never does, and that maybe both
> paths should work the same way?

Yes, exactly. Both OS native and APEI/GHES firmware first are notifications
used to handles PCIe AER errors, and IMHO, they should ideally work in the
same way.

> 
> It would be nice if they worked the same, but I suspect that vendors
> may rely on the fact that CPER_SEV_FATAL forces a restart/panic as
> part of their system integrity story.


As far I I know, vendor use CPER_SEV_FATAL to report default fatal PCIe error

- Data Link Protocol Error
- Surprise Down Error
- Flow Control Protocol Error Severity
- Receiver Overflow Severity
- Malformed TLP Severity
- Uncorrectable Internal Error Severity
- IDE Check Failed Severity
(per PCIe r6.0 7.8.4.4 Uncorrectable Error Severity Register (Offset 0Ch))

which forces a panic.

As a result, AER driver only does recovery for non-fatal PCIe error.

> 
> It doesn't seem like the native path should always panic.  If we can
> tell that data was corrupted, we may want to panic, but otherwise I
> don't think we should crash the entire system even if some device is
> permanently broken.

Got it. But how can we tell if the data is corrupted with OS native?

> 
>> For fatal and non-fatal errors, struct
>> `acpi_hest_generic_status::error_severity` should as
>> CPER_SEV_RECOVERABLE, and struct
>> `acpi_hest_generic_data::error_severity` should reflect its real
>> severity. Then, the kernel is equivalent to handling PCIe errors in
>> Firmware first mode as it does in OS native mode.  Please correct me
>> if I am wrong.
> 
> I don't know enough to comment on how Error Severity should be used in
> the Generic Error Status Block vs the Generic Error Data Entry.

The APEI/UEFI standardized a means for a computer platform to convey error
information to OSPM. I think the problem here is that CPER_SEV_FATAL is ambiguous.
We can not tell that the data is corrupted or it just a PCIe fatal error?

> 
>> However, I have changed my mind on this issue as I encounter a case where
>> a error propagation is detected due to fatal DLLP (Data Link Protocol
>> Error) error. A DLLP error occurred in the Compute node, causing the
>> node to panic because `struct acpi_hest_generic_status::error_severity` was
>> set as CPER_SEV_FATAL. However, data corruption was still detected in the
>> storage node by CRC.
> 
> The only mention of Data Link Protocol Error that looks relevant is
> PCIe r6.0, sec 3.6.2.2, which basically says a DLLP with an unexpected
> Sequence Number should be discarded:
> 
>   For Ack and Nak DLLPs, the following steps are followed (see Figure
>   3-21):
> 
>     - If the Sequence Number specified by the AckNak_Seq_Num does not
>       correspond to an unacknowledged TLP, or to the value in
>       ACKD_SEQ, the DLLP is discarded
> 
>       - This is a Data Link Protocol Error, which is a reported error
> 	associated with the Port (see Section 6.2).
> 
> So data from that DLLP should not have made it to memory, although of
> course the DMA may not have been completed.  But it sounds like you
> did see corrupted data written to memory?

The storage node use RDMA to directly access remote compute node.
And a error detected by CRC in the storage node. So I suspect yes.
> 
> I assume it is not reproducible and we have no reason to think the
> receiver of the DLLP has a design defect, e.g., it reported the error
> but failed to drop the DLLP?

I did not figure out how it happened.

> 
>> 2. Should kernel panic when AER recovery failed?
>>
>> This question is actually a TODO that was added when the AER driver was
>> first upstreamed 17 years ago, and it is still relevant today. The kernel
>> does not proactively panic regardless of the error types occurring in OS
>> native mode. The DLLP error propagation case indicates that the kernel
>> might should panic when recovery failed?
> 
> I'm not a hardware engineer, but I'm not yet convinced that a Data
> Link Protocol Error should cause a panic because sec 3.6.2.2 suggests
> that this error should not cause data corruption.  Certainly willing
> to be proved wrong!

I tried to inject Data Link Protocol Error on some platform. The mechanism
behind is that rootport controls the sequence number of the specific TLPs
and ACK/NAK DLLPs. Data Link Protocol Error will be detected at the Rx side
of ACK/NAL DLLPs.

In such case, NIC and NVMe recovered on fatal and non-fatal DLLP erros.

> 
>> 3. Should DPC be enabled by default to contain fatal and non-fatal error?
>>
>> According to the PCIe specification, DPC halts PCIe traffic below a
>> Downstream Port after an unmasked uncorrectable error is detected at or
>> below the Port, avoiding the potential spread of any data corruption.
>>
>> The kernel configures DPC to be triggered only on ERR_FATAL. Literally
>> speaking, only fatal error have the potential spread of any data
>> corruption?
> 
> Sec 6.2.2.2 talks about fatal vs non-fatal but only in terms of
> whether the error affects a particular transaction (non-fatal) or
> everything related to a Link (fatal).  Unless there's more detail
> elsewhere, I would assume either could corrupt data.
> 
>> In addition, the AER Severity is programable by the
>> Uncorrectable Error Severity Register (Offset 0Ch in PCIe AER cap). If a
>> default fatal error, e.g. DLLP, set as non-fatal, DPC will not be
>> triggered.
> 
> Sec 6.2.7 and 7.8.4.4 suggest the Data Link Protocol Error should be
> a fatal error by default.
> 
> I don't think Linux changes PCI_ERR_UNC_DLP (unless there's an _HPX or
> similar method), so I would expect it to be set as fatal.

Agreed that the severity should not be touched unless we know it has no
side effect.

My point is that how kernel could recover from non-fatal and fatal errors in
firmware first without DPC? If CPER_SEV_FATAL is used to report fatal PCIe error,
kernel will panic in APEI/GHES driver. The only choice is DPC which use EDC
(PCI Error Disconnect Recover)?


> 
> Bjorn


Thank you for you reply.

Best Regards,
Shuai



More information about the Linuxppc-dev mailing list