blob: 05c10cc0251bd85cf2065043e6da8d25888cbef0 [file] [log] [blame]
Ed Tanous2205bbf2021-06-17 13:33:47 -07001#include <bmcweb_config.h>
Ed Tanous9e6e1b22018-03-16 13:08:50 -07002#include <systemd/sd-daemon.h>
Ed Tanous1abe55e2018-09-05 08:30:59 -07003
Ed Tanous04e438c2020-10-03 08:06:26 -07004#include <app.hpp>
Ed Tanous8f626352018-12-19 14:51:54 -08005#include <boost/asio/io_context.hpp>
Ed Tanous0260d9d2021-02-07 19:31:07 +00006#include <cors_preflight.hpp>
Ed Tanous911ac312017-08-15 09:37:42 -07007#include <dbus_monitor.hpp>
8#include <dbus_singleton.hpp>
Feras Aldahlawi735ef6d2021-03-19 14:01:46 -07009#include <google/google_service_root.hpp>
Alan Kuoa8220702020-11-26 11:15:29 +080010#include <hostname_monitor.hpp>
Ed Tanous02379d32020-09-15 21:15:44 -070011#include <ibm/management_console_rest.hpp>
Ed Tanousc3ee5222018-05-01 12:58:27 -070012#include <image_upload.hpp>
Ed Tanous3eb2f352018-12-20 12:30:45 -080013#include <kvm_websocket.hpp>
James Feist3909dc82020-04-03 10:58:55 -070014#include <login_routes.hpp>
Ed Tanouse3009e42022-02-16 15:42:37 -080015#include <nbd_proxy.hpp>
Ed Tanous77295132018-10-12 11:11:17 -070016#include <obmc_console.hpp>
Ed Tanous911ac312017-08-15 09:37:42 -070017#include <openbmc_dbus_rest.hpp>
Ed Tanous1e439872018-05-18 11:48:52 -070018#include <redfish.hpp>
Carson Labrado7fb33562022-04-18 23:26:56 +000019#include <redfish_aggregator.hpp>
Ed Tanousaa2e59c2018-04-12 12:17:20 -070020#include <sdbusplus/asio/connection.hpp>
21#include <sdbusplus/bus.hpp>
22#include <sdbusplus/server.hpp>
Ed Tanous52cc1122020-07-18 13:51:21 -070023#include <security_headers.hpp>
Ed Tanous911ac312017-08-15 09:37:42 -070024#include <ssl_key_handler.hpp>
Adriana Kobylak1bfbe0e2019-01-17 12:08:38 -060025#include <vm_websocket.hpp>
Ed Tanous911ac312017-08-15 09:37:42 -070026#include <webassets.hpp>
Ed Tanouscc5a37f2017-05-11 10:27:23 -070027
Josh Lehan45248ba2022-07-14 14:03:29 -070028#include <exception>
Ed Tanous02379d32020-09-15 21:15:44 -070029#include <memory>
Gunnar Mills1214b7e2020-06-04 10:11:30 -050030#include <string>
31
Vernon Mauery168792a2018-01-26 13:42:54 -080032constexpr int defaultPort = 18080;
33
Ed Tanous23a21a12020-07-25 04:45:05 +000034inline void setupSocket(crow::App& app)
Ed Tanous1abe55e2018-09-05 08:30:59 -070035{
36 int listenFd = sd_listen_fds(0);
37 if (1 == listenFd)
38 {
39 BMCWEB_LOG_INFO << "attempting systemd socket activation";
40 if (sd_is_socket_inet(SD_LISTEN_FDS_START, AF_UNSPEC, SOCK_STREAM, 1,
Ed Tanouse662eae2022-01-25 10:39:19 -080041 0) != 0)
Ed Tanous1abe55e2018-09-05 08:30:59 -070042 {
43 BMCWEB_LOG_INFO << "Starting webserver on socket handle "
44 << SD_LISTEN_FDS_START;
45 app.socket(SD_LISTEN_FDS_START);
46 }
47 else
48 {
49 BMCWEB_LOG_INFO
50 << "bad incoming socket, starting webserver on port "
51 << defaultPort;
52 app.port(defaultPort);
53 }
Vernon Mauery168792a2018-01-26 13:42:54 -080054 }
Ed Tanous1abe55e2018-09-05 08:30:59 -070055 else
56 {
57 BMCWEB_LOG_INFO << "Starting webserver on port " << defaultPort;
58 app.port(defaultPort);
59 }
Vernon Mauery168792a2018-01-26 13:42:54 -080060}
61
Ed Tanous2119e272022-02-17 18:07:14 -080062static int run()
Ed Tanous1abe55e2018-09-05 08:30:59 -070063{
Ed Tanouseb643c22020-10-02 14:51:22 -070064 crow::Logger::setLogLevel(crow::LogLevel::Debug);
Lewanczyk, Dawid08777fb2018-03-22 23:33:49 +010065
Ed Tanous8f626352018-12-19 14:51:54 -080066 auto io = std::make_shared<boost::asio::io_context>();
Ed Tanous52cc1122020-07-18 13:51:21 -070067 App app(io);
Ed Tanousb4d29f42017-03-24 16:39:25 -070068
Nan Zhou6384e322022-06-23 22:28:25 +000069 sdbusplus::asio::connection systemBus(*io);
70 crow::connections::systemBus = &systemBus;
AppaRao Pulif6f97192021-03-23 23:36:40 +000071
Ed Tanous1abe55e2018-09-05 08:30:59 -070072 // Static assets need to be initialized before Authorization, because auth
73 // needs to build the whitelist from the static routes
Ed Tanousf0226cd2017-05-16 12:35:38 -070074
Andrew Geisslerd529ee22018-08-10 13:49:54 -070075#ifdef BMCWEB_ENABLE_STATIC_HOSTING
Ed Tanous1abe55e2018-09-05 08:30:59 -070076 crow::webassets::requestRoutes(app);
Ed Tanous1e439872018-05-18 11:48:52 -070077#endif
78
79#ifdef BMCWEB_ENABLE_KVM
Ed Tanous3eb2f352018-12-20 12:30:45 -080080 crow::obmc_kvm::requestRoutes(app);
Ed Tanous1e439872018-05-18 11:48:52 -070081#endif
82
83#ifdef BMCWEB_ENABLE_REDFISH
P Dheeraj Srujan Kumarb614e2b2021-02-05 01:51:15 +053084 redfish::RedfishService redfish(app);
85
Carson Labrado7fb33562022-04-18 23:26:56 +000086 // Create HttpClient instance and initialize Config
87 crow::HttpClient::getInstance();
88
P Dheeraj Srujan Kumarb614e2b2021-02-05 01:51:15 +053089 // Create EventServiceManager instance and initialize Config
90 redfish::EventServiceManager::getInstance();
Carson Labrado7fb33562022-04-18 23:26:56 +000091
92#ifdef BMCWEB_ENABLE_REDFISH_AGGREGATION
93 // Create RedfishAggregator instance and initialize Config
94 redfish::RedfishAggregator::getInstance();
95#endif
Ed Tanous1e439872018-05-18 11:48:52 -070096#endif
97
98#ifdef BMCWEB_ENABLE_DBUS_REST
Ed Tanous1abe55e2018-09-05 08:30:59 -070099 crow::dbus_monitor::requestRoutes(app);
100 crow::image_upload::requestRoutes(app);
101 crow::openbmc_mapper::requestRoutes(app);
Ed Tanous1e439872018-05-18 11:48:52 -0700102#endif
103
Ed Tanous77295132018-10-12 11:11:17 -0700104#ifdef BMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET
105 crow::obmc_console::requestRoutes(app);
106#endif
107
Adriana Kobylak1bfbe0e2019-01-17 12:08:38 -0600108#ifdef BMCWEB_ENABLE_VM_WEBSOCKET
109 crow::obmc_vm::requestRoutes(app);
110#endif
111
Ratan Gupta453fed02019-12-14 09:39:47 +0530112#ifdef BMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE
113 crow::ibm_mc::requestRoutes(app);
Ratan Gupta07386c62019-12-14 14:06:09 +0530114 crow::ibm_mc_lock::Lock::getInstance();
Ratan Gupta453fed02019-12-14 09:39:47 +0530115#endif
116
Feras Aldahlawi735ef6d2021-03-19 14:01:46 -0700117#ifdef BMCWEB_ENABLE_GOOGLE_API
118 crow::google_api::requestRoutes(app);
119#endif
120
Ed Tanouse662eae2022-01-25 10:39:19 -0800121 if (bmcwebInsecureDisableXssPrevention != 0)
Ed Tanous0260d9d2021-02-07 19:31:07 +0000122 {
123 cors_preflight::requestRoutes(app);
124 }
Ed Tanous52cc1122020-07-18 13:51:21 -0700125
James Feist3909dc82020-04-03 10:58:55 -0700126 crow::login_routes::requestRoutes(app);
Ed Tanous911ac312017-08-15 09:37:42 -0700127
Ed Tanous1abe55e2018-09-05 08:30:59 -0700128 setupSocket(app);
Ed Tanous3dac7492017-08-02 13:46:20 -0700129
Iwona Klimaszewskac0a1c8a2019-07-12 18:26:38 +0200130#ifdef BMCWEB_ENABLE_VM_NBDPROXY
131 crow::nbd_proxy::requestRoutes(app);
132#endif
133
AppaRao Puli7f4eb582020-06-13 19:01:29 +0530134#ifndef BMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES
135 int rc = redfish::EventServiceManager::startEventLogMonitor(*io);
Ed Tanouse662eae2022-01-25 10:39:19 -0800136 if (rc != 0)
AppaRao Puli7f4eb582020-06-13 19:01:29 +0530137 {
138 BMCWEB_LOG_ERROR << "Redfish event handler setup failed...";
139 return rc;
140 }
141#endif
142
Alan Kuoa8220702020-11-26 11:15:29 +0800143#ifdef BMCWEB_ENABLE_SSL
144 BMCWEB_LOG_INFO << "Start Hostname Monitor Service...";
145 crow::hostname_monitor::registerHostnameSignal();
146#endif
147
Ed Tanous1abe55e2018-09-05 08:30:59 -0700148 app.run();
149 io->run();
Ed Tanousaa2e59c2018-04-12 12:17:20 -0700150
Nan Zhou6384e322022-06-23 22:28:25 +0000151 crow::connections::systemBus = nullptr;
152
P Dheeraj Srujan Kumar85bf8902021-07-12 21:07:36 +0530153 return 0;
Ed Tanous0fdddb12017-02-28 11:06:34 -0800154}
Ed Tanous24b2fe82022-01-06 12:45:54 -0800155
156int main(int /*argc*/, char** /*argv*/)
157{
158 try
159 {
160 return run();
161 }
Josh Lehan45248ba2022-07-14 14:03:29 -0700162 catch (const std::exception& e)
163 {
164 BMCWEB_LOG_CRITICAL << "Threw exception to main: " << e.what();
165 return -1;
166 }
Ed Tanous24b2fe82022-01-06 12:45:54 -0800167 catch (...)
168 {
Ed Tanous24b2fe82022-01-06 12:45:54 -0800169 BMCWEB_LOG_CRITICAL << "Threw exception to main";
Ed Tanous6f2cd972022-06-30 18:09:06 -0700170 return -1;
Ed Tanous24b2fe82022-01-06 12:45:54 -0800171 }
172}