Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 994A5C6FD1D for ; Tue, 14 Mar 2023 11:10:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230499AbjCNLKx (ORCPT ); Tue, 14 Mar 2023 07:10:53 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38258 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230316AbjCNLJp (ORCPT ); Tue, 14 Mar 2023 07:09:45 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 88B7526856; Tue, 14 Mar 2023 04:09:18 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id ACE15B8188A; Tue, 14 Mar 2023 11:09:15 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7CA72C433D2; Tue, 14 Mar 2023 11:09:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1678792154; bh=6z7AvWibY1m3HbV3qEjuHzKTiYNR/Z3/ajtZAfltp40=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=s6Id6ONZZN8Q/L/XOKTMVyXvEFOaICIflEDqke2jysCpcPTm3z7rz6XZVVTXxCk9V k+x40PaBZABIukmeuJemqznL4yD/CeHpdjTDwQDKsYPKnUW+WDHe0eBt99vRJ790pk xwG+HJhFIc6cr8eCy8ZRZk6wHQU+/INvYcn9LSbJTngSBv7BZ3vPguPZ1yHE20h+Wh 7XWuzbtCYzyMIpT5tkCvNX2hec8ZLaGh2i6qkULcIN2Q05GJ5dMa7hjvTWzggMsyA0 CzSlYrRQ1kOfhS5oySM/h+gHwu+br5Wf17FxWQVw713Kwo/VXQ7TNhFccrcKrdZOJq OpJejE7uImwjw== Date: Tue, 14 Mar 2023 13:09:04 +0200 From: Jarkko Sakkinen To: Greg Kroah-Hartman Cc: linux-kernel@vger.kernel.org, rafael@kernel.org, Peter Huewe , Jason Gunthorpe , linux-integrity@vger.kernel.org Subject: Re: [PATCH 10/12] tpm: fix up the tpm_class shutdown_pre pointer when created Message-ID: References: <20230313181843.1207845-1-gregkh@linuxfoundation.org> <20230313181843.1207845-10-gregkh@linuxfoundation.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230313181843.1207845-10-gregkh@linuxfoundation.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Mar 13, 2023 at 07:18:41PM +0100, Greg Kroah-Hartman wrote: > Do not wait until long after the struct class has been created to set > the shutdown_pre pointer for the tpm_class, assign it right away. > > This is the only in-kernel offender that tries to modify the > device->class pointer contents after it has been assigned to a device, > so fix that up by doing the function pointer assignment before it is > matched with the device. Because of this, the patch should go through > the driver core tree to allow later changes to struct device to be > possible. > > Cc: Peter Huewe > Cc: Jarkko Sakkinen > Cc: Jason Gunthorpe > Cc: linux-integrity@vger.kernel.org > Signed-off-by: Greg Kroah-Hartman > --- > drivers/char/tpm/tpm-chip.c | 3 +-- > drivers/char/tpm/tpm-interface.c | 1 + > drivers/char/tpm/tpm.h | 1 + > 3 files changed, 3 insertions(+), 2 deletions(-) > > diff --git a/drivers/char/tpm/tpm-chip.c b/drivers/char/tpm/tpm-chip.c > index b99f55f2d4fd..7c444209a256 100644 > --- a/drivers/char/tpm/tpm-chip.c > +++ b/drivers/char/tpm/tpm-chip.c > @@ -282,7 +282,7 @@ static void tpm_dev_release(struct device *dev) > * > * Return: always 0 (i.e. success) > */ > -static int tpm_class_shutdown(struct device *dev) > +int tpm_class_shutdown(struct device *dev) > { > struct tpm_chip *chip = container_of(dev, struct tpm_chip, dev); > > @@ -337,7 +337,6 @@ struct tpm_chip *tpm_chip_alloc(struct device *pdev, > device_initialize(&chip->dev); > > chip->dev.class = tpm_class; > - chip->dev.class->shutdown_pre = tpm_class_shutdown; > chip->dev.release = tpm_dev_release; > chip->dev.parent = pdev; > chip->dev.groups = chip->groups; > diff --git a/drivers/char/tpm/tpm-interface.c b/drivers/char/tpm/tpm-interface.c > index 8763c820d1f8..43e23a04433a 100644 > --- a/drivers/char/tpm/tpm-interface.c > +++ b/drivers/char/tpm/tpm-interface.c > @@ -467,6 +467,7 @@ static int __init tpm_init(void) > int rc; > > tpm_class = class_create("tpm"); > + tpm_class->shutdown_pre = tpm_class_shutdown; > if (IS_ERR(tpm_class)) { > pr_err("couldn't create tpm class\n"); > return PTR_ERR(tpm_class); > diff --git a/drivers/char/tpm/tpm.h b/drivers/char/tpm/tpm.h > index 24ee4e1cc452..a45eb39db0c4 100644 > --- a/drivers/char/tpm/tpm.h > +++ b/drivers/char/tpm/tpm.h > @@ -183,6 +183,7 @@ int tpm1_get_pcr_allocation(struct tpm_chip *chip); > unsigned long tpm_calc_ordinal_duration(struct tpm_chip *chip, u32 ordinal); > int tpm_pm_suspend(struct device *dev); > int tpm_pm_resume(struct device *dev); > +int tpm_class_shutdown(struct device *dev); > > static inline void tpm_msleep(unsigned int delay_msec) > { > -- > 2.39.2 > Reviewed-by: Jarkko Sakkinen Are you going to pick this? BR, Jarkko