commit | d7f04fd9ef456a6e6871adba6f3c5803f1ee88c6 | [log] [tgz] |
---|---|---|
author | Nan Zhou <nanzhoumails@gmail.com> | Sun May 01 01:11:07 2022 +0000 |
committer | Ed Tanous <ed@tanous.net> | Wed Jun 15 00:36:40 2022 +0000 |
tree | 9fea25b9a9232b8af6d542c61d00785172c2b995 | |
parent | 3ba0007367777144f474fdf99439ae8c03633486 [diff] |
memory: refactor JSON assembling codes This commit does nothing but a refactoring around the translation codes that translate data from dbus objects to JSON. Existing codes assumes that the |AsyncResponse| is always at a specific DIMM. This doesn't work if we are doing a efficient level=1 expand, as introduced initially in https://gerrit.openbmc-project.xyz/c/openbmc/bmcweb/+/52418, where the |AsyncResponse| now points to the MemoryCollection. In order to reuse codes in future changes, this commits refactors many functions to take a JSON pointer, so any attributes added to a specific DIMM go to the JSON pointer, rather than always to the root. 1. Tested on my mock environment, ``` URI: /redfish/v1/Systems/system/Memory/dimm0 { "@odata.id": "/redfish/v1/Systems/system/Memory/dimm0", "@odata.type": "#Memory.v1_11_0.Memory", "AllowedSpeedsMHz": [], "BaseModuleType": "RDIMM", "BusWidthBits": 0, "CapacityMiB": 1024, "DataWidthBits": 0, "ErrorCorrection": "NoECC", "FirmwareRevision": "0", "Id": "dimm0", "Name": "DIMM Slot", "OperatingSpeedMhz": 0, "RankCount": 0, "Regions": [ { "MemoryClassification": "Volatile", "OffsetMiB": 0, "PassphraseEnabled": false, "RegionId": "", "SizeMiB": 1024 } ], "Status": { "Health": "OK", "HealthRollup": "OK", "State": "Enabled" } } ``` 2. No new Redfish Validator failures on MemoryCollection on real hardware: /redfish/v1/Systems/system/Memory (response time:0:00:00.116538) MemoryCollection Pass /redfish/v1/Systems/system/Memory/dimm0 (response time: 0:00:00.201940) Memory Pass Signed-off-by: Nan Zhou <nanzhoumails@gmail.com> Change-Id: I61e6c76ca6dd6f129c5d382dcc46a4292a4e1bb7
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.