Patch "net/tls: tls_is_tx_ready() checked list_entry" has been added to the 6.1-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    net/tls: tls_is_tx_ready() checked list_entry

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     net-tls-tls_is_tx_ready-checked-list_entry.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit d390cdf61b502621ab5294863f35fbbf91fea46a
Author: Pietro Borrello <borrello@xxxxxxxxxxxxxxxx>
Date:   Sat Jan 28 16:29:17 2023 +0000

    net/tls: tls_is_tx_ready() checked list_entry
    
    [ Upstream commit ffe2a22562444720b05bdfeb999c03e810d84cbb ]
    
    tls_is_tx_ready() checks that list_first_entry() does not return NULL.
    This condition can never happen. For empty lists, list_first_entry()
    returns the list_entry() of the head, which is a type confusion.
    Use list_first_entry_or_null() which returns NULL in case of empty
    lists.
    
    Fixes: a42055e8d2c3 ("net/tls: Add support for async encryption of records for performance")
    Signed-off-by: Pietro Borrello <borrello@xxxxxxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20230128-list-entry-null-check-tls-v1-1-525bbfe6f0d0@xxxxxxxxxxxxxxxx
    Signed-off-by: Jakub Kicinski <kuba@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/net/tls/tls_sw.c b/net/tls/tls_sw.c
index 9ed978634125..a83d2b4275fa 100644
--- a/net/tls/tls_sw.c
+++ b/net/tls/tls_sw.c
@@ -2427,7 +2427,7 @@ static bool tls_is_tx_ready(struct tls_sw_context_tx *ctx)
 {
 	struct tls_rec *rec;
 
-	rec = list_first_entry(&ctx->tx_list, struct tls_rec, list);
+	rec = list_first_entry_or_null(&ctx->tx_list, struct tls_rec, list);
 	if (!rec)
 		return false;
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux