Re: [PATCH] Introduce support for Systems Management Driver over WMI for Dell Systems

From: Hans de Goede
Date: Mon Sep 14 2020 - 05:13:54 EST


Hi,

On 9/1/20 4:17 PM, Limonciello, Mario wrote:

<snip>

So first of all some comments on the userspace (sysfs) API for that. Getting
this
part right is the most important part of this patch, as that will be set in
stone
once merged.

My first reaction to the suggest API is that I find the sorting by type thing
really weird,
so if I were to do:

ls /sys/devices/platform/dell-wmi-sysman/attributes/

I would get the following as output:

enumeration
integer
string

And then to see the actual attributes I would need to do:

ls /sys/devices/platform/dell-wmi-sysman/attributes/{enumeration,integer,string}

This feels less then ideal both when interacting from a shell, but also when
e.g. envisioning C-code enumerating attributes.

IMHO it would be better to have:

/sys/devices/platform/dell-wmi-sysman/attributes/<attr>/type

Which can be one of "enumeration,integer,string"

and then have the other sysfs files (default_Value, current_value, max..., etc.)
as:

/sys/devices/platform/dell-wmi-sysman/attributes/<attr>/default_value
etc.

Where which files exactly are present for a specific <attr> depends on the type.

This will make e.g C-code enumerating all attributes be a single readdir,
followed
by reading the type for each dir entry; and if we add a new type the C-code can
warn the user that it encountered an atribute with unknown type <new-type>,
rather then not being aware that there is a fourth dir (for the new type) with
attributes to check.

I agree this is the most important part to get correct. This proposal seems pretty
good to me.


Other then that the sysfs interface generally looks good to me, except for
one other big thing (and one small thing, see below).

This interface seems pretty generic (which is a good thing), but then having
it live in the hardcoded /sys/devices/platform/dell-wmi-sysman/attributes
name-space seems less then ideal. I also see in the code that you are creating
a dummy platform device, just to have a place/parent to register the attributes
dir with.

Combining these 2 things I think that it would be better to make a new class
for this, like how we e.g. have a backlight class under /sys/class/backlight
we could have a /sys/class/firmware_attributes class and then we would get
a dell_wmi entry under that (and drop the "attributes" dir), so we would get:

/sys/class/firmware_attributes/dell_wmi/<attr>/type

Etc.

So instead of creating a dummy platform device, you would create a
firmware_attributes
class device.

I think it is likely that other vendors may eventually also support modifying
BIOS settings without going into the BIOS setup menu and I would like us to
use one unified userspace API for this. Note this changes little for the Dell
code /
this patch (although eventually some code may be moved into shared helpers), but
it does allow userspace to discover if the firmware-attr sysfs API is supported
in
a vendor agnostic API by doing a readdir on /sys/class/firmware_attributes


This area I'm not sure I'm aligned. Two reasons come to mind:

1) The interface that Dell offers isn't guaranteed to work the same as any other
Vendors. Do we want to force them to use the same interface as Dell? For example what
if another vendor doesn't offer an interface from their firmware to enumerate possible
options for any attribute but you have to know them in advance?

So my thinking here is as follows:

1. AFAIK other vendors may want to do something similar in the near future
2. The interface you (Dell) have come up with looks pretty generic / complete to me

Would those possible options
be hardcoded in their kernel driver?

Maybe, so the firmware implementation of an enum type, can take 2 forms:
a) An integer in the range of 0-# where 0-# is like the integer value backing an enum in C
b) Reading the current value as a string and when writing only a value from a fixed list of strings is valid

Now in both cases, either not knowing what the numbers actually mean, or not knowing
which values are valid for writing would make the interface pretty hard to use,
close to useless. So yes in that case the driver may need to hardcode to values
(assuming that scales for that vendor and they don't have a gazillion different
enums).

Also note that sysfs attributes can be marked as optional, so we could mark
things like possible enum-values, min/max/scalar_inc as optal right from the start.
We could for now mark everything optional except for type, current_value and
display-name. That should make it easy for other vendors implementations to
adhere to / implement the API.

Dell sets precedent here by having the first driver.

Right and normally I may have wanted to wait until a second vendor implements
a similar mechanism under Linux so that we can find common ground between the
2 implementations for the generic userspace API for this.

The problem with that approach is that because we do not break userspace,
we then get to carry the "temporary" vendor-specific implementation of the
userspace API around for ever, since it may very well have existing users
before we replace it with the generic API.

This scenario would mean that after some point in time (when the generic API gets
added to the kernel) Dell needs to support 2 userspace APIs the one which is
being introduced by this patch + the generic one going forward.

Since to me the current API/ABI Dell is proposing is pretty generic I'm
trying to avoid this having 2 maintain 2 different userspace APIs problem
by making this the generic API from the get go.

2) Dell has some extensions planned for other authentication mechanisms than password.
That is *definitely* going to be Dell specific, so should it be done in this vendor
agnostic directory?

Well each property:

/sys/class/firmware-properties/dell-bios/<property-name>

Will have a type attribute:

/sys/class/firmware-properties/dell-bios/<property-name>/type

You can use dell-special-auth-mechanism as type for this and
then it is clear it is dell specific. As mentioned above I
fully expect new types to get added over this and userspace tools
will be expected to just skip properties with unknown types
(possibly with a warning).

We could even do something like we have for .desktop files
fields, where we add something to the sysfs ABI documentation
that vendors may add vendor specific types prefixed with X-<vendorname>.

So all in all I believe that we can make using the proposed sysfs ABI
a generic one work, and that this will be worth it to avoid having the
issue of eventually having both a couple of vendor specific APIs +
one grant unified generic API replacing those vendor-APIs
(where we can never drop the vendor specific APIs because of
backward compat. guarantees).

There could even be multiple instances implementing this interface, e.g. if
their
is an add-on card with its own option-ROM, see for iscsi booting then the iscsi
boot
options could be available under:

/sys/class/firmware_attributes/iscsi_boot_nic/<attr>/*

While the main system firmware settings would be available under:

/sys/class/firmware_attributes/dell_wmi/<attr>/*

Since you have already designed a nice generic API for this it seems
sensible to me to make it possible to use this outside the Dell WMI case.


So as mentioned I also have one smaller issue with the API, how is a
UI supposed to represent all these attributes? In the BIOS setup screen
they are typically grouped together under e.g. CPU settings, power-management
settings,
etc. I wonder if it would be possible to add a "group" sysfs file to each
attribute
which represent the typical grouping. E.g. for pm related settings the group
file
would contain "Power Management" then an userspace Ui can enumerate the groups
and
have e.g. 1 tab per group, or a tree with the groups as parents oof the
attributes
for each group. This is just an idea I don't know if such grouping info is
available
in the WMI interface for this.

This information isn't available in the ACPI-WMI interface unfortunately.

Ok, too bad, but understandable.

Regards,

Hans