All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Limonciello, Mario" <Mario.Limonciello@dell.com>
To: Andy Shevchenko <andy.shevchenko@gmail.com>,
	Hans de Goede <hdegoede@redhat.com>
Cc: Divya Bharathi <divya27392@gmail.com>,
	Darren Hart <dvhart@infradead.org>,
	LKML <linux-kernel@vger.kernel.org>,
	Platform Driver <platform-driver-x86@vger.kernel.org>,
	"Bharathi, Divya" <Divya.Bharathi@Dell.com>,
	"Ksr, Prasanth" <Prasanth.Ksr@dell.com>
Subject: RE: [PATCH] Introduce support for Systems Management Driver over WMI for Dell Systems
Date: Thu, 3 Sep 2020 14:27:10 +0000	[thread overview]
Message-ID: <DM6PR19MB2636225813D7359A210D8DCCFA2C0@DM6PR19MB2636.namprd19.prod.outlook.com> (raw)
In-Reply-To: <CAHp75Vfxgf4ttL931M08WqiWVELtZQotHvikDbmrTGkOyd=ZtQ@mail.gmail.com>

Andy,

Thanks for your feedback.
> 
> > > +bool get_pending_changes(void)
> > > +{
> > > +     struct wmi_interface_priv *priv;
> > > +
> > > +     priv = get_first_interface_priv();
> > > +     if (priv)
> > > +             return priv->pending_changes;
> 
> > > +     return 0;
> 
> 0 is not boolean.


Ack

> 
> > > +}
> 
> ...
> 
> > > +int set_attribute(const char *a_name, const char *a_value)
> > > +{
> 
> > > +     int ret = -1;
> > > +     int i;
> > > +     u8 *name_len, *value_len;
> > > +     char *current_password, *attribute_name, *attribute_value;
> > > +     size_t security_area_size;
> > > +     size_t string_area_size;
> > > +     size_t buffer_size;
> > > +     struct wmi_interface_priv *priv;
> > > +     char *buffer;
> 
> Consider to use reversed xmas tree order. And what -1 means?

Ack

> 
> > > +     /* look up if user set a password for the requests */
> > > +     current_password = get_current_password("Admin");
> > > +     if (!current_password)
> > > +             return -ENODEV;
> >
> > Can we instead of passing "Admin" and "System" to this function
> > just have 2 separate get_current_admin_password and
> get_current_system_password
> > helpers and then drop the error handling ?

The error handling for -ENODEV is actually important in case a WMI driver
was unbound.

> >
> > > +
> > > +     /* password is set */
> > > +     if (strlen(current_password) > 0)
> > > +             security_area_size = (sizeof(u32) * 2) +
> strlen(current_password) +
> > > +                                     strlen(current_password) % 2;
> > > +     /* password not set */
> > > +     else
> > > +             security_area_size = sizeof(u32) * 2;
> >
> > Since you are using more then 1 line here please use {} around the state-
> ments,
> > also please put the /* password not set */ after the else:
> >
> >                 ...
> >         } else { /* password not set */
> >                 ...
> >
> > > +     string_area_size = (strlen(a_name) + strlen(a_value))*2;
> > > +     buffer_size = security_area_size + string_area_size + sizeof(u16) *
> 2;
> > > +
> > > +     buffer = kzalloc(buffer_size, GFP_KERNEL);
> 
> Actually above looks like home grown kasprintf() implementation.

I don't think so, sprintf isn't used at all here.  It's a calculation to determine
the size of the buffer to use.

> 
> > > +     if (!buffer)
> > > +             return -ENOMEM;
> > > +
> > > +     /* build security area */
> > > +     if (strlen(current_password) > 0)
> > > +             populate_security_buffer(buffer, current_password);
> 
> > > +     name_len = buffer + security_area_size;
> > > +     attribute_name = name_len + sizeof(u16);
> > > +     value_len = attribute_name + strlen(a_name)*2;
> > > +     attribute_value = value_len + sizeof(u16);
> > > +
> > > +     /* turn into UTF16 strings, no NULL terminator */
> > > +     *name_len = strlen(a_name)*2;
> > > +     *value_len = strlen(a_value)*2;
> > > +     for (i = 0; i < strlen(a_name); i++)
> > > +             attribute_name[i*2] = a_name[i];
> > > +     for (i = 0; i < strlen(a_value); i++)
> > > +             attribute_value[i*2] = a_value[i];
> >
> > This assumes the incoming string is ASCII only and won't
> > work when the incoming string is UTF-8. It is probably
> > better to use the utf8s_to_utf16s() helper from the nls
> > code, this will mean adding a dependency on CONFIG_NLS
> > which typically is used for filesystem code, but I think
> > that that will be fine.
> 
> +1. Also my thought.

Ack

> 
> > > +     mutex_lock(&call_mutex);
> > > +     priv = get_first_interface_priv();
> > > +     if (!priv) {
> > > +             ret = -ENODEV;
> 
> > > +             pr_err(DRIVER_NAME ": no WMI backend bound");
> 
> If you wish, define pr_fmt() rather than putting this DRIVER_NAME to
> each of the pr_*() call.

Ack, we'll add pr_fmt.

> 
> > > +             goto out_set_attribute;
> > > +     }
> > > +
> > > +     ret = call_biosattributes_interface(priv->wdev, buffer, buffer_size,
> > > +                                             SETATTRIBUTE_METHOD_ID);
> > > +     if (ret == -EOPNOTSUPP)
> > > +             dev_err(&priv->wdev->dev, "admin password must be
> configured");
> > > +     else if (ret == -EACCES)
> > > +             dev_err(&priv->wdev->dev, "invalid password");
> > > +
> > > +     priv->pending_changes = 1;
> > > +out_set_attribute:
> > > +     kfree(buffer);
> > > +     mutex_unlock(&call_mutex);
> > > +
> > > +     return ret;
> > > +}
> 
> Above comments, as a rule of thumb, should be considered against
> entire code (where appropriate and applicable).

Thanks, the team will adjust against all the code for the next patch.


  reply	other threads:[~2020-09-03 14:31 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-30 14:31 [PATCH] Introduce support for Systems Management Driver over WMI for Dell Systems Divya Bharathi
2020-08-08 18:37 ` Limonciello, Mario
2020-08-08 18:37   ` Limonciello, Mario
2020-08-10  8:27   ` Andy Shevchenko
2020-08-10  8:27     ` Andy Shevchenko
2020-09-01  9:49 ` Hans de Goede
2020-09-01 14:17   ` Limonciello, Mario
2020-09-01 14:17     ` Limonciello, Mario
2020-09-14  9:13     ` Hans de Goede
2020-09-14  9:13       ` Hans de Goede
2020-09-14  9:13     ` Hans de Goede
2020-09-14  9:13       ` Hans de Goede
2020-09-14 16:06       ` Limonciello, Mario
2020-09-14 16:06         ` Limonciello, Mario
2020-09-17 10:11         ` Hans de Goede
2020-09-17 16:18           ` Limonciello, Mario
2020-09-21 10:02             ` Hans de Goede
2020-09-21 15:26               ` Limonciello, Mario
2020-09-22  8:57                 ` Hans de Goede
2020-09-22  9:14                   ` Hans de Goede
2020-09-22 18:02                     ` Limonciello, Mario
2020-09-22  9:02                 ` Hans de Goede
2020-09-01 10:09 ` Hans de Goede
2020-09-01 14:22   ` Limonciello, Mario
2020-09-01 14:22     ` Limonciello, Mario
2020-09-14  8:45     ` Hans de Goede
2020-09-14  8:45       ` Hans de Goede
2020-09-14  8:57       ` Hans de Goede
2020-09-14  8:57         ` Hans de Goede
2020-09-01 11:41 ` Hans de Goede
2020-09-02  8:04   ` Andy Shevchenko
2020-09-03 14:27     ` Limonciello, Mario [this message]
2020-09-14  9:53       ` Hans de Goede

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=DM6PR19MB2636225813D7359A210D8DCCFA2C0@DM6PR19MB2636.namprd19.prod.outlook.com \
    --to=mario.limonciello@dell.com \
    --cc=Divya.Bharathi@Dell.com \
    --cc=Prasanth.Ksr@dell.com \
    --cc=andy.shevchenko@gmail.com \
    --cc=divya27392@gmail.com \
    --cc=dvhart@infradead.org \
    --cc=hdegoede@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=platform-driver-x86@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.