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=-13.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=unavailable 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 87F8BC4338F for ; Mon, 26 Jul 2021 13:42:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6FA5960E08 for ; Mon, 26 Jul 2021 13:42:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234337AbhGZNBm (ORCPT ); Mon, 26 Jul 2021 09:01:42 -0400 Received: from mga06.intel.com ([134.134.136.31]:41932 "EHLO mga06.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233849AbhGZNAP (ORCPT ); Mon, 26 Jul 2021 09:00:15 -0400 X-IronPort-AV: E=McAfee;i="6200,9189,10056"; a="273322127" X-IronPort-AV: E=Sophos;i="5.84,270,1620716400"; d="scan'208";a="273322127" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Jul 2021 06:40:43 -0700 X-IronPort-AV: E=Sophos;i="5.84,270,1620716400"; d="scan'208";a="416553000" Received: from lahna.fi.intel.com (HELO lahna) ([10.237.72.163]) by orsmga006-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Jul 2021 06:40:40 -0700 Received: by lahna (sSMTP sendmail emulation); Mon, 26 Jul 2021 16:40:37 +0300 Date: Mon, 26 Jul 2021 16:40:37 +0300 From: Mika Westerberg To: Rajat Jain Cc: Andreas Noever , Michael Jamet , Yehezkel Bernat , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org, Greg Kroah-Hartman , rajatxjain@gmail.com Subject: Re: [PATCH v2] thunderbolt: For dev authorization changes, include the actual event in udev change notification Message-ID: References: <20210724004043.2075819-1-rajatja@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Rajat, On Fri, Jul 23, 2021 at 05:41:58PM -0700, Rajat Jain wrote: > (fixing the typo in the email ID for Greg). > > On Fri, Jul 23, 2021 at 5:40 PM Rajat Jain wrote: > > > > For security, we would like to monitor and track when the thunderbolt > > devices are authorized and deauthorized (i.e. when the thunderbolt sysfs > > "authorized" attribute changes). Currently the userspace gets a udev > > change notification when there is a change, but the state may have > > changed (again) by the time we look at the authorized attribute in > > sysfs. So an authorization event may go unnoticed. Thus make it easier > > by informing the actual change (new value of authorized attribute) in > > the udev change notification. > > > > The change is included as a key value "authorized=" where > > is the new value of sysfs attribute "authorized", and is described at > > Documentation/ABI/testing/sysfs-bus-thunderbolt under > > /sys/bus/thunderbolt/devices/.../authorized Looking good, a couple of minor nits below. > > > > Signed-off-by: Rajat Jain > > --- > > drivers/thunderbolt/switch.c | 8 ++++++-- > > 1 file changed, 6 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/thunderbolt/switch.c b/drivers/thunderbolt/switch.c > > index 83b1ef3d5d03..382128dfbdee 100644 > > --- a/drivers/thunderbolt/switch.c > > +++ b/drivers/thunderbolt/switch.c > > @@ -1499,6 +1499,7 @@ static ssize_t authorized_show(struct device *dev, > > static int disapprove_switch(struct device *dev, void *not_used) > > { > > struct tb_switch *sw; > > + char *envp[] = { "AUTHORIZED=0", NULL }; Can you move arrange this to be before sw, like: char *envp[] = { "AUTHORIZED=0", NULL }; struct tb_switch *sw; > > > > sw = tb_to_switch(dev); > > if (sw && sw->authorized) { > > @@ -1514,7 +1515,7 @@ static int disapprove_switch(struct device *dev, void *not_used) > > return ret; > > > > sw->authorized = 0; > > - kobject_uevent(&sw->dev.kobj, KOBJ_CHANGE); > > + kobject_uevent_env(&sw->dev.kobj, KOBJ_CHANGE, envp); > > } > > > > return 0; > > @@ -1523,6 +1524,8 @@ static int disapprove_switch(struct device *dev, void *not_used) > > static int tb_switch_set_authorized(struct tb_switch *sw, unsigned int val) > > { > > int ret = -EINVAL; > > + char envp_string[13]; > > + char *envp[] = { envp_string, NULL }; Ditto. > > > > if (!mutex_trylock(&sw->tb->lock)) > > return restart_syscall(); > > @@ -1560,7 +1563,8 @@ static int tb_switch_set_authorized(struct tb_switch *sw, unsigned int val) > > if (!ret) { > > sw->authorized = val; > > /* Notify status change to the userspace */ > > - kobject_uevent(&sw->dev.kobj, KOBJ_CHANGE); > > + sprintf(envp_string, "AUTHORIZED=%u", sw->authorized); > > + kobject_uevent_env(&sw->dev.kobj, KOBJ_CHANGE, envp); > > } > > > > unlock: > > -- > > 2.32.0.432.gabb21c7263-goog > >