commit | 171676f0afd5cd747fa99b21e4623d74ee85b4ec | [log] [tgz] |
---|---|---|
author | zhanghaicheng <zhanghch05@inspur.com> | Thu Dec 09 15:28:19 2021 +0800 |
committer | zhanghaicheng <zhanghch05@inspur.com> | Thu Dec 09 15:28:19 2021 +0800 |
tree | d0983b8d0202202371f0b498cd09ed9851dd88cb | |
parent | f5e29f33e61be81ece4b2f78d7d1750d357f7ff3 [diff] |
Fix bmcweb core-dump caused by Split up authenticate Ed changed the code from req.emplace(parser->release()) to req.reset() in line 728 of the http/http_connection.hpp file in this patch https://gerrit.openbmc-project.xyz/c/openbmc/bmcweb/+/47122. So req cannot be used in doReadHeaders(). These codes are not necessary, so I choose to delete them. Tested: 1. Keep these codes and set bmcweb-logging=enabled, then log in to bmcweb using webui. Bmcweb will core-dump. 2. Delete these codes, bmcweb works normally. Signed-off-by: zhanghaicheng <zhanghch05@inspur.com> Change-Id: I1875a3fe4fa1d03656631435508b3876d8a42e54
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 coverage -C builddir test
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.