fwupd/plugins/redfish
Richard Hughes a11fefff35 redfish: Don't add the backup BMC device as it shares the same GUIDs
This fixes the problem when the UEFI update depends on a specific BMC
version -- including the backup BMC device means we checking that both
the primary and the backup were above a specific version.

I don't think it's ever useful to show the backup BMC device, so just
don't include it as an enumerated device.

Fixes https://github.com/fwupd/fwupd/issues/4404
2022-03-18 11:03:14 +00:00
..
tests Move the fuzzing files into the plugin directories 2021-10-22 15:24:05 +01:00
fu-ipmi-device.c redfish: Be more robust by retrying IPMI transactions 2022-02-01 16:18:28 +00:00
fu-ipmi-device.h redfish: Create user accounts automatically using IPMI 2021-09-07 17:25:37 +01:00
fu-plugin-redfish.c redfish: Wait some time after creating the initial IPMI user 2022-02-01 16:18:28 +00:00
fu-redfish-backend.c redfish: Don't add the backup BMC device as it shares the same GUIDs 2022-03-18 11:03:14 +00:00
fu-redfish-backend.h redfish: Create user accounts automatically using IPMI 2021-09-07 17:25:37 +01:00
fu-redfish-common.c trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
fu-redfish-common.h trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
fu-redfish-device.c Allow devices to build instance IDs more easily 2022-03-03 09:13:29 +00:00
fu-redfish-device.h Allow using a per-device global percentage completion 2021-09-13 14:28:15 +01:00
fu-redfish-legacy-device.c Allow using a per-device global percentage completion 2021-09-13 14:28:15 +01:00
fu-redfish-legacy-device.h trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
fu-redfish-multipart-device.c Allow using a per-device global percentage completion 2021-09-13 14:28:15 +01:00
fu-redfish-multipart-device.h trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
fu-redfish-network-device.c trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
fu-redfish-network-device.h trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
fu-redfish-network.c trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
fu-redfish-network.h trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
fu-redfish-request.c redfish: Change an expired password when required 2022-01-19 21:19:01 +00:00
fu-redfish-request.h redfish: Refactor the PATCH modify code 2021-09-07 17:25:37 +01:00
fu-redfish-smbios.c trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
fu-redfish-smbios.h trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
fu-self-test.c trivial: redfish: use the configured prefix to determine if it's an installed test 2022-02-28 13:36:49 -06:00
fwupd-redfish.conf redfish: Do not autoload ipmi-si to avoid warning on non-server hardware 2022-01-10 14:06:34 +00:00
meson.build Convert build system to use meson tristate features 2022-02-28 08:34:48 -06:00
README.md trivial: update markdown for pre-commit style 2021-07-18 14:42:47 -05:00
redfish.conf redfish: Create user accounts automatically using IPMI 2021-09-07 17:25:37 +01:00
redfish.quirk redfish: Don't add the backup BMC device as it shares the same GUIDs 2022-03-18 11:03:14 +00:00

Redfish

Introduction

Redfish is an open industry standard specification and schema that helps enable simple and secure management of modern scalable platform hardware.

By specifying a RESTful interface and utilizing JSON and OData, Redfish helps customers integrate solutions within their existing tool chains.

Firmware Format

The daemon will decompress the cabinet archive and extract a firmware blob in an unspecified binary file format.

This plugin supports the following protocol ID:

  • org.dmtf.redfish

GUID Generation

These devices use the provided GUID provided in the SoftwareId property without modification if it is a valid GUID. If the property is not a GUID then the vendor instance ID is used instead:

  • REDFISH\\VENDOR_${RedfishManufacturer}&SOFTWAREID_${RedfishSoftwareId}

Additionally, this Instance ID is added for quirk and parent matching:

  • REDFISH\VENDOR_${RedfishManufacturer}&ID_${RedfishId}

Update Behavior

The firmware will be deployed as appropriate. The Redfish API does not specify when the firmware will actually be written to the SPI device.

Vendor ID Security

No vendor ID is set as there is no vendor field in the schema.

Setting Service IP Manually

The service IP may not be automatically discoverable due to the absence of Type 42 entry in SMBIOS. In this case, you have to specify the service IP to RedfishUri in /etc/fwupd/redfish.conf

Take HPE Gen10 for example, the service IP can be found with the following command:

ilorest --nologo list --selector=EthernetInterface. -j

This command lists all network interfaces, and the Redfish service IP belongs to one of "Manager Network" Interfaces. For example:

    {
      "@odata.context": "/redfish/v1/$metadata#EthernetInterface.EthernetInterface",
      "@odata.id": "/redfish/v1/Managers/1/EthernetInterfaces/1/",
      "@odata.type": "#EthernetInterface.v1_0_3.EthernetInterface",
      "Description": "Configuration of this Manager Network Interface",
      "HostName": "myredfish",
      "IPv4Addresses": [
        {
          "SubnetMask": "255.255.255.0",
          "AddressOrigin": "DHCP",
          "Gateway": "192.168.0.1",
          "Address": "192.168.0.133"
        }
      ],
      ...

In this example, the service IP is "192.168.0.133".

Since the conventional HTTP port is 80 and HTTPS port is 443, we can set RedfishUri to either "http://192.168.0.133:80" or "https://192.168.0.133:443" and verify the uri with

curl http://192.168.0.133:80/redfish/v1/

or

curl -k https://192.168.0.133:443/redfish/v1/

External Interface Access

This requires HTTP access to a given URL.