From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.9 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id EF343C4363D for ; Fri, 25 Sep 2020 12:57:14 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id AD597206DB for ; Fri, 25 Sep 2020 12:57:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601038634; bh=0Tmpdw6N71PRbb7aCXjelqKZtzWw3UqqAEr+hFpvGTE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=sNbKrN4e/HltSPlf0x7XzZGZSCBvydwrtDv92IYDOITcKjfMCfYyGGtnNpUGyh5q3 FlY707/QI+1jVCUdeCTQUMTZy7UNWodzfsQpaHSi9ofkq3Q4etzE2UcQW7GU9MowWR 9Cy1TSd+xUx+pVHruf74A2Ca093H47DGzcUxPe/E= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729428AbgIYM5N (ORCPT ); Fri, 25 Sep 2020 08:57:13 -0400 Received: from mail.kernel.org ([198.145.29.99]:55208 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729154AbgIYMvH (ORCPT ); Fri, 25 Sep 2020 08:51:07 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 2B2EC206DB; Fri, 25 Sep 2020 12:51:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601038266; bh=0Tmpdw6N71PRbb7aCXjelqKZtzWw3UqqAEr+hFpvGTE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=1S1z6pLA73Lo1s/Mnm5kNcb3JtX2YglXry8Zcl8Z6WWJtLKSiXBvsRKmXZxMFa0DI jfY4oQjp6yQOcoycPJyh6qYCFQHrqrKEe09v9bWeoTfxpwDzxnxX0aKvmCF/Kp3ePM k8RmNQga/jo+Fwc79rpLNC3IBYOojad8vYVme0z8= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Eric Dumazet , "David S. Miller" Subject: [PATCH 5.8 42/56] net: add __must_check to skb_put_padto() Date: Fri, 25 Sep 2020 14:48:32 +0200 Message-Id: <20200925124734.168669943@linuxfoundation.org> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20200925124727.878494124@linuxfoundation.org> References: <20200925124727.878494124@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Eric Dumazet [ Upstream commit 4a009cb04aeca0de60b73f37b102573354214b52 ] skb_put_padto() and __skb_put_padto() callers must check return values or risk use-after-free. Signed-off-by: Eric Dumazet Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- include/linux/skbuff.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -3208,8 +3208,9 @@ static inline int skb_padto(struct sk_bu * is untouched. Otherwise it is extended. Returns zero on * success. The skb is freed on error if @free_on_error is true. */ -static inline int __skb_put_padto(struct sk_buff *skb, unsigned int len, - bool free_on_error) +static inline int __must_check __skb_put_padto(struct sk_buff *skb, + unsigned int len, + bool free_on_error) { unsigned int size = skb->len; @@ -3232,7 +3233,7 @@ static inline int __skb_put_padto(struct * is untouched. Otherwise it is extended. Returns zero on * success. The skb is freed on error. */ -static inline int skb_put_padto(struct sk_buff *skb, unsigned int len) +static inline int __must_check skb_put_padto(struct sk_buff *skb, unsigned int len) { return __skb_put_padto(skb, len, true); }