commit | a85afbe1960b015865db775c3e0a53df2a769f44 | [log] [tgz] |
---|---|---|
author | Willy Tu <wltu@google.com> | Tue Dec 28 14:43:47 2021 -0800 |
committer | Willy Tu <wltu@google.com> | Mon Jun 13 11:59:32 2022 -0700 |
tree | 65f89fd28f396cf240ff5363bf69604f641e5493 | |
parent | 08eca7332e6665803ea2e6a5d81820189243ebc5 [diff] |
storage: Refactor Drive and StorageController into separate method Cleanup dbus path with with object_path.filename() to determine to get the resource ID/Name. There will be no changes to the redfish tree with this change. This change help manage the Drive/Storage functions by diving it up into smaller function with no functional changes. TESTED: Redfish Validation passed for Storage Storage Get ``` wget -qO- http://localhost:80/redfish/v1/Systems/system/Storage/storage0 { "@odata.id": "/redfish/v1/Systems/system/Storage/storage0", "@odata.type": "#Storage.v1_7_1.Storage", "Drives": [ { "@odata.id": "/redfish/v1/Systems/system/Storage/storage0/Drives/drive0" } ], "Drives@odata.count": 1, "Id": "1", "Name": "Storage", "Status": { "Health": "OK", "HealthRollup": "OK", "State": "Enabled" }, "StorageControllers": [ { "@odata.id": "/redfish/v1/Systems/system/Storage/storage0#/StorageControllers/0", "@odata.type": "#Storage.v1_7_0.StorageController", "MemberId": "cpld", "Name": "cpld", "Status": { "Health": "OK", "HealthRollup": "OK", "State": "Enabled" } } ] } ``` Change-Id: I334e2233f42efc8e390a410493d7594d5d81bd4e Signed-off-by: Willy Tu <wltu@google.com>
This component attempts to be a "do everything" embedded webserver for openbmc.
At this time, the webserver implements a few interfaces:
BMCWeb is configured by setting -D
flags that correspond to options in bmcweb/meson_options.txt
and then compiling. For example, meson <builddir> -Dkvm=disabled ...
followed by ninja
in build directory. The option names become C++ preprocessor symbols that control which code is compiled into the program.
meson builddir ninja -C builddir
meson builddir -Dbuildtype=minsize -Db_lto=true -Dtests=disabled ninja -C buildir
If any of the dependencies are not found on the host system during configuration, meson automatically gets them via its wrap dependencies mentioned in bmcweb/subprojects
.
meson builddir -Dwrap_mode=nofallback ninja -C builddir
meson builddir -Dbuildtype=debug ninja -C builddir
meson builddir -Db_coverage=true -Dtests=enabled ninja -C builddir test ninja -C builddir coverage
When BMCWeb starts running, it reads persistent configuration data (such as UUID and session data) from a local file. If this is not usable, it generates a new configuration.
When BMCWeb SSL support is enabled and a usable certificate is not found, it will generate a self-sign a certificate before launching the server. The keys are generated by the secp384r1
algorithm. The certificate
C=US, O=OpenBMC, CN=testhost
,SHA-256
algorithm.