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