/* */ #include "HttpServerCommand.h" #include "SocketCore.h" #include "DownloadEngine.h" #include "HttpServer.h" #include "HttpHeader.h" #include "Logger.h" #include "LogFactory.h" #include "RequestGroup.h" #include "RequestGroupMan.h" #include "HttpServerBodyCommand.h" #include "HttpServerResponseCommand.h" #include "WebSocketResponseCommand.h" #include "RecoverableException.h" #include "prefs.h" #include "Option.h" #include "util.h" #include "wallclock.h" #include "fmt.h" #include "SocketRecvBuffer.h" #include "MessageDigest.h" #include "message_digest_helper.h" #include "base64.h" namespace aria2 { HttpServerCommand::HttpServerCommand (cuid_t cuid, DownloadEngine* e, const SharedHandle& socket) : Command(cuid), e_(e), socket_(socket), httpServer_(new HttpServer(socket, e)) { setStatus(Command::STATUS_ONESHOT_REALTIME); e_->addSocketForReadCheck(socket_, this); httpServer_->setUsernamePassword(e_->getOption()->get(PREF_RPC_USER), e_->getOption()->get(PREF_RPC_PASSWD)); if(e_->getOption()->getAsBool(PREF_RPC_ALLOW_ORIGIN_ALL)) { httpServer_->setAllowOrigin("*"); } #ifdef HAVE_ZLIB httpServer_->enableGZip(); #else // !HAVE_ZLIB httpServer_->disableGZip(); #endif // !HAVE_ZLIB checkSocketRecvBuffer(); } HttpServerCommand::HttpServerCommand (cuid_t cuid, const SharedHandle& httpServer, DownloadEngine* e, const SharedHandle& socket) : Command(cuid), e_(e), socket_(socket), httpServer_(httpServer) { e_->addSocketForReadCheck(socket_, this); checkSocketRecvBuffer(); } HttpServerCommand::~HttpServerCommand() { e_->deleteSocketForReadCheck(socket_, this); } void HttpServerCommand::checkSocketRecvBuffer() { if(!httpServer_->getSocketRecvBuffer()->bufferEmpty()) { setStatus(Command::STATUS_ONESHOT_REALTIME); e_->setNoWait(true); } } namespace { // Creates server's WebSocket accept key which will be sent in // Sec-WebSocket-Accept header field. The |clientKey| is the value // found in Sec-WebSocket-Key header field in the request. std::string createWebSocketServerKey(const std::string& clientKey) { std::string src = clientKey; src += "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"; unsigned char digest[20]; message_digest::digest(digest, sizeof(digest), MessageDigest::sha1(), src.c_str(), src.size()); return base64::encode(&digest[0], &digest[sizeof(digest)]); } } // namespace namespace { int websocketHandshake(const SharedHandle& header) { if(header->getMethod() != "GET" || header->find("sec-websocket-key").empty()) { return 400; } else if(header->find("sec-websocket-version") != "13") { return 426; } else if(header->getRequestPath() != "/jsonrpc") { return 404; } else { return 101; } } } // namespace bool HttpServerCommand::execute() { if(e_->getRequestGroupMan()->downloadFinished() || e_->isHaltRequested()) { return true; } try { if(socket_->isReadable(0) || !httpServer_->getSocketRecvBuffer()->bufferEmpty()) { timeoutTimer_ = global::wallclock(); SharedHandle header; header = httpServer_->receiveRequest(); if(!header) { e_->addCommand(this); return false; } if(!httpServer_->authenticate()) { httpServer_->disableKeepAlive(); httpServer_->feedResponse (401, "WWW-Authenticate: Basic realm=\"aria2\"\r\n"); Command* command = new HttpServerResponseCommand(getCuid(), httpServer_, e_, socket_); e_->addCommand(command); e_->setNoWait(true); return true; } const std::string& upgradeHd = header->find("upgrade"); const std::string& connectionHd = header->find("connection"); if(util::strieq(upgradeHd.begin(), upgradeHd.end(), "websocket") && util::strieq(connectionHd.begin(), connectionHd.end(), "upgrade")) { int status = websocketHandshake(header); Command* command; if(status == 101) { std::string serverKey = createWebSocketServerKey(header->find("sec-websocket-key")); httpServer_->feedUpgradeResponse("websocket", fmt("Sec-WebSocket-Accept: %s\r\n", serverKey.c_str())); httpServer_->getSocket()->setTcpNodelay(true); command = new rpc::WebSocketResponseCommand(getCuid(), httpServer_, e_, socket_); } else { if(status == 426) { httpServer_->feedResponse(426, "Sec-WebSocket-Version: 13\r\n"); } else { httpServer_->feedResponse(status); } command = new HttpServerResponseCommand(getCuid(), httpServer_, e_, socket_); } e_->addCommand(command); e_->setNoWait(true); return true; } else { if(e_->getOption()->getAsInt(PREF_RPC_MAX_REQUEST_SIZE) < httpServer_->getContentLength()) { A2_LOG_INFO (fmt("Request too long. ContentLength=%lld." " See --rpc-max-request-size option to loose" " this limitation.", static_cast(httpServer_->getContentLength()))); return true; } Command* command = new HttpServerBodyCommand(getCuid(), httpServer_, e_, socket_); e_->addCommand(command); e_->setNoWait(true); return true; } } else { if(timeoutTimer_.difference(global::wallclock()) >= 30) { A2_LOG_INFO("HTTP request timeout."); return true; } else { e_->addCommand(this); return false; } } } catch(RecoverableException& e) { A2_LOG_INFO_EX(fmt("CUID#%lld - Error occurred while reading HTTP request", getCuid()), e); return true; } } } // namespace aria2