blob: cc8e1bcfcfd1e966af5b4ca21ccaccd3f0d0d0e2 [file] [log] [blame]
Ed Tanous3ccb3ad2023-01-13 17:40:03 -08001#include "bmcweb_config.h"
2
3#include "app.hpp"
4#include "cors_preflight.hpp"
5#include "dbus_monitor.hpp"
6#include "dbus_singleton.hpp"
Ed Tanousf0b59af2024-03-20 13:38:04 -07007#include "event_service_manager.hpp"
Ed Tanousfaf100f2023-05-25 10:03:14 -07008#include "google/google_service_root.hpp"
Ed Tanous3ccb3ad2023-01-13 17:40:03 -08009#include "hostname_monitor.hpp"
10#include "ibm/management_console_rest.hpp"
11#include "image_upload.hpp"
12#include "kvm_websocket.hpp"
13#include "login_routes.hpp"
14#include "nbd_proxy.hpp"
15#include "obmc_console.hpp"
16#include "openbmc_dbus_rest.hpp"
17#include "redfish.hpp"
18#include "redfish_aggregator.hpp"
19#include "security_headers.hpp"
20#include "ssl_key_handler.hpp"
Xie Ning9fa06f12022-06-29 18:27:47 +080021#include "user_monitor.hpp"
Ed Tanous3ccb3ad2023-01-13 17:40:03 -080022#include "vm_websocket.hpp"
23#include "webassets.hpp"
24
Ed Tanous9e6e1b22018-03-16 13:08:50 -070025#include <systemd/sd-daemon.h>
Ed Tanous1abe55e2018-09-05 08:30:59 -070026
Ed Tanous8f626352018-12-19 14:51:54 -080027#include <boost/asio/io_context.hpp>
Ed Tanousaa2e59c2018-04-12 12:17:20 -070028#include <sdbusplus/asio/connection.hpp>
29#include <sdbusplus/bus.hpp>
30#include <sdbusplus/server.hpp>
Ed Tanouscc5a37f2017-05-11 10:27:23 -070031
Josh Lehan45248ba2022-07-14 14:03:29 -070032#include <exception>
Ed Tanous02379d32020-09-15 21:15:44 -070033#include <memory>
Gunnar Mills1214b7e2020-06-04 10:11:30 -050034#include <string>
35
Vernon Mauery168792a2018-01-26 13:42:54 -080036constexpr int defaultPort = 18080;
37
Ed Tanous23a21a12020-07-25 04:45:05 +000038inline void setupSocket(crow::App& app)
Ed Tanous1abe55e2018-09-05 08:30:59 -070039{
40 int listenFd = sd_listen_fds(0);
41 if (1 == listenFd)
42 {
Ed Tanous62598e32023-07-17 17:06:25 -070043 BMCWEB_LOG_INFO("attempting systemd socket activation");
Ed Tanous1abe55e2018-09-05 08:30:59 -070044 if (sd_is_socket_inet(SD_LISTEN_FDS_START, AF_UNSPEC, SOCK_STREAM, 1,
Ed Tanouse662eae2022-01-25 10:39:19 -080045 0) != 0)
Ed Tanous1abe55e2018-09-05 08:30:59 -070046 {
Ed Tanous62598e32023-07-17 17:06:25 -070047 BMCWEB_LOG_INFO("Starting webserver on socket handle {}",
48 SD_LISTEN_FDS_START);
Ed Tanous1abe55e2018-09-05 08:30:59 -070049 app.socket(SD_LISTEN_FDS_START);
50 }
51 else
52 {
Ed Tanous62598e32023-07-17 17:06:25 -070053 BMCWEB_LOG_INFO(
54 "bad incoming socket, starting webserver on port {}",
55 defaultPort);
Ed Tanous1abe55e2018-09-05 08:30:59 -070056 app.port(defaultPort);
57 }
Vernon Mauery168792a2018-01-26 13:42:54 -080058 }
Ed Tanous1abe55e2018-09-05 08:30:59 -070059 else
60 {
Ed Tanous62598e32023-07-17 17:06:25 -070061 BMCWEB_LOG_INFO("Starting webserver on port {}", defaultPort);
Ed Tanous1abe55e2018-09-05 08:30:59 -070062 app.port(defaultPort);
63 }
Vernon Mauery168792a2018-01-26 13:42:54 -080064}
65
Ed Tanous2119e272022-02-17 18:07:14 -080066static int run()
Ed Tanous1abe55e2018-09-05 08:30:59 -070067{
Ed Tanous8f626352018-12-19 14:51:54 -080068 auto io = std::make_shared<boost::asio::io_context>();
Ed Tanous52cc1122020-07-18 13:51:21 -070069 App app(io);
Ed Tanousb4d29f42017-03-24 16:39:25 -070070
Nan Zhou6384e322022-06-23 22:28:25 +000071 sdbusplus::asio::connection systemBus(*io);
72 crow::connections::systemBus = &systemBus;
AppaRao Pulif6f97192021-03-23 23:36:40 +000073
Ed Tanous1abe55e2018-09-05 08:30:59 -070074 // Static assets need to be initialized before Authorization, because auth
75 // needs to build the whitelist from the static routes
Ed Tanousf0226cd2017-05-16 12:35:38 -070076
Andrew Geisslerd529ee22018-08-10 13:49:54 -070077#ifdef BMCWEB_ENABLE_STATIC_HOSTING
Ed Tanous1abe55e2018-09-05 08:30:59 -070078 crow::webassets::requestRoutes(app);
Ed Tanous1e439872018-05-18 11:48:52 -070079#endif
80
81#ifdef BMCWEB_ENABLE_KVM
Ed Tanous3eb2f352018-12-20 12:30:45 -080082 crow::obmc_kvm::requestRoutes(app);
Ed Tanous1e439872018-05-18 11:48:52 -070083#endif
84
85#ifdef BMCWEB_ENABLE_REDFISH
P Dheeraj Srujan Kumarb614e2b2021-02-05 01:51:15 +053086 redfish::RedfishService redfish(app);
87
88 // Create EventServiceManager instance and initialize Config
Ed Tanousf8ca6d72022-06-28 12:12:03 -070089 redfish::EventServiceManager::getInstance(&*io);
Carson Labrado7fb33562022-04-18 23:26:56 +000090
91#ifdef BMCWEB_ENABLE_REDFISH_AGGREGATION
92 // Create RedfishAggregator instance and initialize Config
Ed Tanousf8ca6d72022-06-28 12:12:03 -070093 redfish::RedfishAggregator::getInstance(&*io);
Carson Labrado7fb33562022-04-18 23:26:56 +000094#endif
Ed Tanous1e439872018-05-18 11:48:52 -070095#endif
96
97#ifdef BMCWEB_ENABLE_DBUS_REST
Ed Tanous1abe55e2018-09-05 08:30:59 -070098 crow::dbus_monitor::requestRoutes(app);
99 crow::image_upload::requestRoutes(app);
100 crow::openbmc_mapper::requestRoutes(app);
Ed Tanous1e439872018-05-18 11:48:52 -0700101#endif
102
Ed Tanous77295132018-10-12 11:11:17 -0700103#ifdef BMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET
104 crow::obmc_console::requestRoutes(app);
105#endif
106
Adriana Kobylak1bfbe0e2019-01-17 12:08:38 -0600107#ifdef BMCWEB_ENABLE_VM_WEBSOCKET
108 crow::obmc_vm::requestRoutes(app);
109#endif
110
Ratan Gupta453fed02019-12-14 09:39:47 +0530111#ifdef BMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE
112 crow::ibm_mc::requestRoutes(app);
Ratan Gupta07386c62019-12-14 14:06:09 +0530113 crow::ibm_mc_lock::Lock::getInstance();
Ratan Gupta453fed02019-12-14 09:39:47 +0530114#endif
115
Feras Aldahlawi735ef6d2021-03-19 14:01:46 -0700116#ifdef BMCWEB_ENABLE_GOOGLE_API
117 crow::google_api::requestRoutes(app);
118#endif
119
Ed Tanouse662eae2022-01-25 10:39:19 -0800120 if (bmcwebInsecureDisableXssPrevention != 0)
Ed Tanous0260d9d2021-02-07 19:31:07 +0000121 {
122 cors_preflight::requestRoutes(app);
123 }
Ed Tanous52cc1122020-07-18 13:51:21 -0700124
James Feist3909dc82020-04-03 10:58:55 -0700125 crow::login_routes::requestRoutes(app);
Ed Tanous911ac312017-08-15 09:37:42 -0700126
Ed Tanous1abe55e2018-09-05 08:30:59 -0700127 setupSocket(app);
Ed Tanous3dac7492017-08-02 13:46:20 -0700128
Iwona Klimaszewskac0a1c8a2019-07-12 18:26:38 +0200129#ifdef BMCWEB_ENABLE_VM_NBDPROXY
130 crow::nbd_proxy::requestRoutes(app);
131#endif
132
AppaRao Puli7f4eb582020-06-13 19:01:29 +0530133#ifndef BMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES
134 int rc = redfish::EventServiceManager::startEventLogMonitor(*io);
Ed Tanouse662eae2022-01-25 10:39:19 -0800135 if (rc != 0)
AppaRao Puli7f4eb582020-06-13 19:01:29 +0530136 {
Ed Tanous62598e32023-07-17 17:06:25 -0700137 BMCWEB_LOG_ERROR("Redfish event handler setup failed...");
AppaRao Puli7f4eb582020-06-13 19:01:29 +0530138 return rc;
139 }
140#endif
141
Alan Kuoa8220702020-11-26 11:15:29 +0800142#ifdef BMCWEB_ENABLE_SSL
Ed Tanous62598e32023-07-17 17:06:25 -0700143 BMCWEB_LOG_INFO("Start Hostname Monitor Service...");
Alan Kuoa8220702020-11-26 11:15:29 +0800144 crow::hostname_monitor::registerHostnameSignal();
145#endif
146
Xie Ning9fa06f12022-06-29 18:27:47 +0800147 bmcweb::registerUserRemovedSignal();
148
Ed Tanous1abe55e2018-09-05 08:30:59 -0700149 app.run();
150 io->run();
Ed Tanousaa2e59c2018-04-12 12:17:20 -0700151
Nan Zhou6384e322022-06-23 22:28:25 +0000152 crow::connections::systemBus = nullptr;
153
P Dheeraj Srujan Kumar85bf8902021-07-12 21:07:36 +0530154 return 0;
Ed Tanous0fdddb12017-02-28 11:06:34 -0800155}
Ed Tanous24b2fe82022-01-06 12:45:54 -0800156
157int main(int /*argc*/, char** /*argv*/)
158{
159 try
160 {
161 return run();
162 }
Josh Lehan45248ba2022-07-14 14:03:29 -0700163 catch (const std::exception& e)
164 {
Ed Tanous62598e32023-07-17 17:06:25 -0700165 BMCWEB_LOG_CRITICAL("Threw exception to main: {}", e.what());
Josh Lehan45248ba2022-07-14 14:03:29 -0700166 return -1;
167 }
Ed Tanous24b2fe82022-01-06 12:45:54 -0800168 catch (...)
169 {
Ed Tanous62598e32023-07-17 17:06:25 -0700170 BMCWEB_LOG_CRITICAL("Threw exception to main");
Ed Tanous6f2cd972022-06-30 18:09:06 -0700171 return -1;
Ed Tanous24b2fe82022-01-06 12:45:54 -0800172 }
173}