#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include constexpr int defaultPort = 18080; template void setupSocket(crow::Crow& app) { int listenFd = sd_listen_fds(0); if (1 == listenFd) { BMCWEB_LOG_INFO << "attempting systemd socket activation"; if (sd_is_socket_inet(SD_LISTEN_FDS_START, AF_UNSPEC, SOCK_STREAM, 1, 0)) { BMCWEB_LOG_INFO << "Starting webserver on socket handle " << SD_LISTEN_FDS_START; app.socket(SD_LISTEN_FDS_START); } else { BMCWEB_LOG_INFO << "bad incoming socket, starting webserver on port " << defaultPort; app.port(defaultPort); } } else { BMCWEB_LOG_INFO << "Starting webserver on port " << defaultPort; app.port(defaultPort); } } int main(int argc, char** argv) { crow::logger::setLogLevel(crow::LogLevel::Debug); auto io = std::make_shared(); CrowApp app(io); // Static assets need to be initialized before Authorization, because auth // needs to build the whitelist from the static routes #ifdef BMCWEB_ENABLE_STATIC_HOSTING crow::webassets::requestRoutes(app); #endif #ifdef BMCWEB_ENABLE_KVM crow::obmc_kvm::requestRoutes(app); #endif #ifdef BMCWEB_ENABLE_REDFISH crow::redfish::requestRoutes(app); #endif #ifdef BMCWEB_ENABLE_DBUS_REST crow::dbus_monitor::requestRoutes(app); crow::image_upload::requestRoutes(app); crow::openbmc_mapper::requestRoutes(app); #endif #ifdef BMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET crow::obmc_console::requestRoutes(app); #endif #ifdef BMCWEB_ENABLE_VM_WEBSOCKET crow::obmc_vm::requestRoutes(app); #endif crow::token_authorization::requestRoutes(app); BMCWEB_LOG_INFO << "bmcweb (" << __DATE__ << ": " << __TIME__ << ')'; setupSocket(app); crow::connections::systemBus = std::make_shared(*io); redfish::RedfishService redfish(app); // Keep the user role map hot in memory and // track the changes using match object crow::persistent_data::UserRoleMap::getInstance(); app.run(); io->run(); crow::connections::systemBus.reset(); }