blob: a2da120188865cdaec6f756af3358877e519cfc2 [file] [log] [blame]
Ed Tanousc94ad492019-10-10 15:39:33 -07001#include <app.h>
Ed Tanous9e6e1b22018-03-16 13:08:50 -07002#include <systemd/sd-daemon.h>
Ed Tanous1abe55e2018-09-05 08:30:59 -07003
Ed Tanous8f626352018-12-19 14:51:54 -08004#include <boost/asio/io_context.hpp>
Ed Tanous911ac312017-08-15 09:37:42 -07005#include <dbus_monitor.hpp>
6#include <dbus_singleton.hpp>
Ed Tanousc3ee5222018-05-01 12:58:27 -07007#include <image_upload.hpp>
Ed Tanous3eb2f352018-12-20 12:30:45 -08008#include <kvm_websocket.hpp>
Ed Tanous1abe55e2018-09-05 08:30:59 -07009#include <memory>
Ed Tanous77295132018-10-12 11:11:17 -070010#include <obmc_console.hpp>
Ed Tanous911ac312017-08-15 09:37:42 -070011#include <openbmc_dbus_rest.hpp>
Ed Tanousba9f9a62017-10-11 16:40:35 -070012#include <persistent_data_middleware.hpp>
Ed Tanous1e439872018-05-18 11:48:52 -070013#include <redfish.hpp>
Ed Tanous911ac312017-08-15 09:37:42 -070014#include <redfish_v1.hpp>
Ed Tanousaa2e59c2018-04-12 12:17:20 -070015#include <sdbusplus/asio/connection.hpp>
16#include <sdbusplus/bus.hpp>
17#include <sdbusplus/server.hpp>
Ed Tanous911ac312017-08-15 09:37:42 -070018#include <security_headers_middleware.hpp>
19#include <ssl_key_handler.hpp>
Ed Tanous1abe55e2018-09-05 08:30:59 -070020#include <string>
Ed Tanous911ac312017-08-15 09:37:42 -070021#include <token_authorization_middleware.hpp>
Adriana Kobylak1bfbe0e2019-01-17 12:08:38 -060022#include <vm_websocket.hpp>
Ed Tanous911ac312017-08-15 09:37:42 -070023#include <webassets.hpp>
Ed Tanous1e439872018-05-18 11:48:52 -070024#include <webserver_common.hpp>
Ed Tanouscc5a37f2017-05-11 10:27:23 -070025
Iwona Klimaszewskac0a1c8a2019-07-12 18:26:38 +020026#ifdef BMCWEB_ENABLE_VM_NBDPROXY
27#include <nbd_proxy.hpp>
28#endif
29
Vernon Mauery168792a2018-01-26 13:42:54 -080030constexpr int defaultPort = 18080;
31
32template <typename... Middlewares>
Ed Tanous1abe55e2018-09-05 08:30:59 -070033void setupSocket(crow::Crow<Middlewares...>& app)
34{
35 int listenFd = sd_listen_fds(0);
36 if (1 == listenFd)
37 {
38 BMCWEB_LOG_INFO << "attempting systemd socket activation";
39 if (sd_is_socket_inet(SD_LISTEN_FDS_START, AF_UNSPEC, SOCK_STREAM, 1,
40 0))
41 {
42 BMCWEB_LOG_INFO << "Starting webserver on socket handle "
43 << SD_LISTEN_FDS_START;
44 app.socket(SD_LISTEN_FDS_START);
45 }
46 else
47 {
48 BMCWEB_LOG_INFO
49 << "bad incoming socket, starting webserver on port "
50 << defaultPort;
51 app.port(defaultPort);
52 }
Vernon Mauery168792a2018-01-26 13:42:54 -080053 }
Ed Tanous1abe55e2018-09-05 08:30:59 -070054 else
55 {
56 BMCWEB_LOG_INFO << "Starting webserver on port " << defaultPort;
57 app.port(defaultPort);
58 }
Vernon Mauery168792a2018-01-26 13:42:54 -080059}
60
Ed Tanous1abe55e2018-09-05 08:30:59 -070061int main(int argc, char** argv)
62{
Ed Tanous271584a2019-07-09 16:24:22 -070063 crow::logger::setLogLevel(crow::LogLevel::Debug);
Lewanczyk, Dawid08777fb2018-03-22 23:33:49 +010064
Ed Tanous8f626352018-12-19 14:51:54 -080065 auto io = std::make_shared<boost::asio::io_context>();
Ed Tanous1abe55e2018-09-05 08:30:59 -070066 CrowApp app(io);
Ed Tanousb4d29f42017-03-24 16:39:25 -070067
Ed Tanous1abe55e2018-09-05 08:30:59 -070068 // Static assets need to be initialized before Authorization, because auth
69 // needs to build the whitelist from the static routes
Ed Tanousf0226cd2017-05-16 12:35:38 -070070
Andrew Geisslerd529ee22018-08-10 13:49:54 -070071#ifdef BMCWEB_ENABLE_STATIC_HOSTING
Ed Tanous1abe55e2018-09-05 08:30:59 -070072 crow::webassets::requestRoutes(app);
Ed Tanous1e439872018-05-18 11:48:52 -070073#endif
74
75#ifdef BMCWEB_ENABLE_KVM
Ed Tanous3eb2f352018-12-20 12:30:45 -080076 crow::obmc_kvm::requestRoutes(app);
Ed Tanous1e439872018-05-18 11:48:52 -070077#endif
78
79#ifdef BMCWEB_ENABLE_REDFISH
Ed Tanous1abe55e2018-09-05 08:30:59 -070080 crow::redfish::requestRoutes(app);
Ed Tanous1e439872018-05-18 11:48:52 -070081#endif
82
83#ifdef BMCWEB_ENABLE_DBUS_REST
Ed Tanous1abe55e2018-09-05 08:30:59 -070084 crow::dbus_monitor::requestRoutes(app);
85 crow::image_upload::requestRoutes(app);
86 crow::openbmc_mapper::requestRoutes(app);
Ed Tanous1e439872018-05-18 11:48:52 -070087#endif
88
Ed Tanous77295132018-10-12 11:11:17 -070089#ifdef BMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET
90 crow::obmc_console::requestRoutes(app);
91#endif
92
Adriana Kobylak1bfbe0e2019-01-17 12:08:38 -060093#ifdef BMCWEB_ENABLE_VM_WEBSOCKET
94 crow::obmc_vm::requestRoutes(app);
95#endif
96
Ed Tanous1abe55e2018-09-05 08:30:59 -070097 crow::token_authorization::requestRoutes(app);
Ed Tanous911ac312017-08-15 09:37:42 -070098
Ed Tanous1abe55e2018-09-05 08:30:59 -070099 BMCWEB_LOG_INFO << "bmcweb (" << __DATE__ << ": " << __TIME__ << ')';
100 setupSocket(app);
Ed Tanous3dac7492017-08-02 13:46:20 -0700101
Ed Tanous1abe55e2018-09-05 08:30:59 -0700102 crow::connections::systemBus =
103 std::make_shared<sdbusplus::asio::connection>(*io);
Iwona Klimaszewskac0a1c8a2019-07-12 18:26:38 +0200104
105#ifdef BMCWEB_ENABLE_VM_NBDPROXY
106 crow::nbd_proxy::requestRoutes(app);
107#endif
108
Ed Tanous1abe55e2018-09-05 08:30:59 -0700109 redfish::RedfishService redfish(app);
Borawski.Lukaszb6df6dc2018-01-24 10:20:45 +0100110
James Feist7166bf02019-12-10 16:52:14 +0000111 // Keep the user role map hot in memory and
112 // track the changes using match object
113 crow::persistent_data::UserRoleMap::getInstance();
114
Ed Tanous1abe55e2018-09-05 08:30:59 -0700115 app.run();
116 io->run();
Ed Tanousaa2e59c2018-04-12 12:17:20 -0700117
Ed Tanous1abe55e2018-09-05 08:30:59 -0700118 crow::connections::systemBus.reset();
Ed Tanous0fdddb12017-02-28 11:06:34 -0800119}