diff options
author | Jakub Kicinski <kuba@kernel.org> | 2022-07-09 04:52:53 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-07-12 04:48:33 +0200 |
commit | bb56cea9abd85c22175b31d8f7c44d6c615fe526 (patch) | |
tree | 39fc221488be3d6da39757990a3403080eb46410 /Documentation/networking | |
parent | tls: fix spelling of MIB (diff) | |
download | linux-bb56cea9abd85c22175b31d8f7c44d6c615fe526.tar.xz linux-bb56cea9abd85c22175b31d8f7c44d6c615fe526.zip |
tls: rx: add counter for NoPad violations
As discussed with Maxim add a counter for true NoPad violations.
This should help deployments catch unexpected padded records vs
just control records which always need re-encryption.
https: //lore.kernel.org/all/b111828e6ac34baad9f4e783127eba8344ac252d.camel@nvidia.com/
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'Documentation/networking')
-rw-r--r-- | Documentation/networking/tls.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/networking/tls.rst b/Documentation/networking/tls.rst index 7a6643836e42..658ed3a71e1b 100644 --- a/Documentation/networking/tls.rst +++ b/Documentation/networking/tls.rst @@ -282,3 +282,7 @@ TLS implementation exposes the following per-namespace statistics number of RX records which had to be re-decrypted due to ``TLS_RX_EXPECT_NO_PAD`` mis-prediction. Note that this counter will also increment for non-data records. + +- ``TlsRxNoPadViolation`` - + number of data RX records which had to be re-decrypted due to + ``TLS_RX_EXPECT_NO_PAD`` mis-prediction. |