Page MenuHomeFreeBSD

Use the newer EINTEGRITY error when authentication fails.
ClosedPublic

Authored by jhb on Mar 20 2020, 12:39 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Nov 14, 5:06 AM
Unknown Object (File)
Sat, Nov 9, 2:54 AM
Unknown Object (File)
Fri, Nov 8, 4:22 PM
Unknown Object (File)
Fri, Nov 8, 9:11 AM
Unknown Object (File)
Oct 13 2024, 10:21 PM
Unknown Object (File)
Oct 4 2024, 11:56 PM
Unknown Object (File)
Oct 4 2024, 4:03 PM
Unknown Object (File)
Oct 2 2024, 6:31 AM
Subscribers

Details

Summary

GELI used to fail with EINVAL when a read request spanned a disk
sector whose contents did not match the sector's authentication tag.
The recently-added EINTEGRITY more closely matches to the error in
this case.

Test Plan
  • I made this change as part of the larger OCF rework patch, but think it is useful to split out as an independent change. I tested it while testing the OCF rework patches with GELI.

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 30017
Build 27830: arc lint + arc unit

Event Timeline

This revision is now accepted and ready to land.Mar 20 2020, 12:42 AM

This is a good example of a place that where EINTEGRITY is intended to be used.
At the moment mount(2) is the only system call that lists EINTEGRITY as a possible error. If your change is going to cause EINTEGRITY to be returned to other system calls (like read(2) or wirite(2)) then you should add it to their list of possible error returns.