Ed Tanous | b4d29f4 | 2017-03-24 16:39:25 -0700 | [diff] [blame] | 1 | #include <web_kvm.hpp> |
Ed Tanous | 7d3dba4 | 2017-04-05 13:04:39 -0700 | [diff] [blame] | 2 | #include <webassets.hpp> |
Ed Tanous | b4d29f4 | 2017-03-24 16:39:25 -0700 | [diff] [blame] | 3 | #include "ssl_key_handler.hpp" |
| 4 | |
Ed Tanous | f927347 | 2017-02-28 16:05:13 -0800 | [diff] [blame] | 5 | #include "crow/app.h" |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 6 | #include "crow/ci_map.h" |
Ed Tanous | f927347 | 2017-02-28 16:05:13 -0800 | [diff] [blame] | 7 | #include "crow/common.h" |
| 8 | #include "crow/dumb_timer_queue.h" |
| 9 | #include "crow/http_connection.h" |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 10 | #include "crow/http_parser_merged.h" |
Ed Tanous | f927347 | 2017-02-28 16:05:13 -0800 | [diff] [blame] | 11 | #include "crow/http_request.h" |
| 12 | #include "crow/http_response.h" |
| 13 | #include "crow/http_server.h" |
| 14 | #include "crow/json.h" |
| 15 | #include "crow/logging.h" |
| 16 | #include "crow/middleware.h" |
| 17 | #include "crow/middleware_context.h" |
| 18 | #include "crow/mustache.h" |
| 19 | #include "crow/parser.h" |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 20 | #include "crow/query_string.h" |
Ed Tanous | f927347 | 2017-02-28 16:05:13 -0800 | [diff] [blame] | 21 | #include "crow/routing.h" |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 22 | #include "crow/settings.h" |
| 23 | #include "crow/socket_adaptors.h" |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 24 | #include "crow/utility.h" |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 25 | #include "crow/websocket.h" |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 26 | |
Ed Tanous | 5f34a9c | 2017-02-28 12:35:13 -0800 | [diff] [blame] | 27 | #include "color_cout_g3_sink.hpp" |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 28 | #include "webassets.hpp" |
Ed Tanous | f927347 | 2017-02-28 16:05:13 -0800 | [diff] [blame] | 29 | |
Ed Tanous | 7d3dba4 | 2017-04-05 13:04:39 -0700 | [diff] [blame] | 30 | #include "security_headers_middleware.hpp" |
| 31 | #include "token_authorization_middleware.hpp" |
Ed Tanous | b4d29f4 | 2017-03-24 16:39:25 -0700 | [diff] [blame] | 32 | |
| 33 | #include <boost/asio.hpp> |
| 34 | #include <boost/endian/arithmetic.hpp> |
| 35 | |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 36 | #include <iostream> |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 37 | #include <memory> |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 38 | #include <string> |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 39 | #include <unordered_set> |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 40 | |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 41 | int main(int argc, char** argv) { |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 42 | auto worker(g3::LogWorker::createLogWorker()); |
Ed Tanous | 1ccd57c | 2017-03-21 13:15:58 -0700 | [diff] [blame] | 43 | std::string logger_name("bmcweb"); |
| 44 | std::string folder("/tmp/"); |
| 45 | auto handle = worker->addDefaultLogger(logger_name, folder); |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 46 | g3::initializeLogging(worker.get()); |
Ed Tanous | 1ccd57c | 2017-03-21 13:15:58 -0700 | [diff] [blame] | 47 | auto sink_handle = worker->addSink(std::make_unique<crow::ColorCoutSink>(), |
| 48 | &crow::ColorCoutSink::ReceiveLogMessage); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 49 | |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 50 | std::string ssl_pem_file("server.pem"); |
| 51 | ensuressl::ensure_openssl_key_present_and_valid(ssl_pem_file); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 52 | |
Ed Tanous | 7d3dba4 | 2017-04-05 13:04:39 -0700 | [diff] [blame] | 53 | crow::App<crow::TokenAuthorizationMiddleware, crow::SecurityHeadersMiddleware> |
| 54 | app; |
Ed Tanous | b4d29f4 | 2017-03-24 16:39:25 -0700 | [diff] [blame] | 55 | |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 56 | crow::webassets::request_routes(app); |
Ed Tanous | c81ca42 | 2017-03-21 16:18:49 -0700 | [diff] [blame] | 57 | crow::kvm::request_routes(app); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 58 | |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 59 | crow::logger::setLogLevel(crow::LogLevel::INFO); |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 60 | CROW_ROUTE(app, "/systeminfo") |
| 61 | ([]() { |
| 62 | |
| 63 | crow::json::wvalue j; |
| 64 | j["device_id"] = 0x7B; |
| 65 | j["device_provides_sdrs"] = true; |
| 66 | j["device_revision"] = true; |
| 67 | j["device_available"] = true; |
| 68 | j["firmware_revision"] = "0.68"; |
| 69 | |
| 70 | j["ipmi_revision"] = "2.0"; |
| 71 | j["supports_chassis_device"] = true; |
| 72 | j["supports_bridge"] = true; |
| 73 | j["supports_ipmb_event_generator"] = true; |
| 74 | j["supports_ipmb_event_receiver"] = true; |
| 75 | j["supports_fru_inventory_device"] = true; |
| 76 | j["supports_sel_device"] = true; |
| 77 | j["supports_sdr_repository_device"] = true; |
| 78 | j["supports_sensor_device"] = true; |
| 79 | |
| 80 | j["firmware_aux_revision"] = "0.60.foobar"; |
| 81 | |
| 82 | return j; |
| 83 | }); |
| 84 | |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 85 | CROW_ROUTE(app, "/ipmiws") |
| 86 | .websocket() |
| 87 | .onopen([&](crow::websocket::connection& conn) { |
| 88 | |
| 89 | }) |
Ed Tanous | 1ccd57c | 2017-03-21 13:15:58 -0700 | [diff] [blame] | 90 | .onclose( |
| 91 | [&](crow::websocket::connection& conn, const std::string& reason) { |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 92 | |
Ed Tanous | 1ccd57c | 2017-03-21 13:15:58 -0700 | [diff] [blame] | 93 | }) |
| 94 | .onmessage([&](crow::websocket::connection& conn, const std::string& data, |
| 95 | bool is_binary) { |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 96 | boost::asio::io_service io_service; |
Ed Tanous | 1ccd57c | 2017-03-21 13:15:58 -0700 | [diff] [blame] | 97 | using boost::asio::ip::udp; |
| 98 | udp::resolver resolver(io_service); |
| 99 | udp::resolver::query query(udp::v4(), "10.243.48.31", "623"); |
| 100 | udp::endpoint receiver_endpoint = *resolver.resolve(query); |
| 101 | |
| 102 | udp::socket socket(io_service); |
| 103 | socket.open(udp::v4()); |
| 104 | |
| 105 | socket.send_to(boost::asio::buffer(data), receiver_endpoint); |
| 106 | |
| 107 | std::array<char, 255> recv_buf; |
| 108 | |
| 109 | udp::endpoint sender_endpoint; |
| 110 | size_t len = |
| 111 | socket.receive_from(boost::asio::buffer(recv_buf), sender_endpoint); |
| 112 | // TODO(ed) THis is ugly. Find a way to not make a copy (ie, use |
Ed Tanous | 7d3dba4 | 2017-04-05 13:04:39 -0700 | [diff] [blame] | 113 | // std::string::data() to |
Ed Tanous | 1ccd57c | 2017-03-21 13:15:58 -0700 | [diff] [blame] | 114 | std::string str(std::begin(recv_buf), std::end(recv_buf)); |
| 115 | LOG(DEBUG) << "Got " << str << "back \n"; |
| 116 | conn.send_binary(str); |
| 117 | |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 118 | }); |
| 119 | |
Ed Tanous | 1ccd57c | 2017-03-21 13:15:58 -0700 | [diff] [blame] | 120 | app.port(18080) |
| 121 | //.ssl(std::move(ensuressl::get_ssl_context(ssl_pem_file))) |
| 122 | .run(); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 123 | } |