2020-05-07 02:36:54 +00:00
|
|
|
// Copyright (c) 2016-2020, The Monero Project
|
2017-09-05 16:20:27 +00:00
|
|
|
//
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without modification, are
|
|
|
|
// permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
|
|
// conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
|
|
// of conditions and the following disclaimer in the documentation and/or other
|
|
|
|
// materials provided with the distribution.
|
|
|
|
//
|
|
|
|
// 3. Neither the name of the copyright holder nor the names of its contributors may be
|
|
|
|
// used to endorse or promote products derived from this software without specific
|
|
|
|
// prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
|
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
|
|
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
|
|
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
#include "message.h"
|
2019-11-07 05:45:06 +00:00
|
|
|
|
2017-09-05 16:20:27 +00:00
|
|
|
#include "daemon_rpc_version.h"
|
|
|
|
#include "serialization/json_object.h"
|
|
|
|
|
|
|
|
namespace cryptonote
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace rpc
|
|
|
|
{
|
|
|
|
|
|
|
|
const char* Message::STATUS_OK = "OK";
|
|
|
|
const char* Message::STATUS_RETRY = "Retry";
|
|
|
|
const char* Message::STATUS_FAILED = "Failed";
|
|
|
|
const char* Message::STATUS_BAD_REQUEST = "Invalid request type";
|
|
|
|
const char* Message::STATUS_BAD_JSON = "Malformed json";
|
|
|
|
|
2017-10-26 20:39:22 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
constexpr const char error_field[] = "error";
|
|
|
|
constexpr const char id_field[] = "id";
|
|
|
|
constexpr const char method_field[] = "method";
|
|
|
|
constexpr const char params_field[] = "params";
|
|
|
|
constexpr const char result_field[] = "result";
|
2020-02-28 21:45:51 +00:00
|
|
|
|
|
|
|
const rapidjson::Value& get_method_field(const rapidjson::Value& src)
|
|
|
|
{
|
|
|
|
const auto member = src.FindMember(method_field);
|
|
|
|
if (member == src.MemberEnd())
|
|
|
|
throw cryptonote::json::MISSING_KEY{method_field};
|
|
|
|
if (!member->value.IsString())
|
|
|
|
throw cryptonote::json::WRONG_TYPE{"Expected string"};
|
|
|
|
return member->value;
|
|
|
|
}
|
2017-10-26 20:39:22 +00:00
|
|
|
}
|
|
|
|
|
2020-03-18 23:22:39 +00:00
|
|
|
void Message::toJson(rapidjson::Writer<epee::byte_stream>& dest) const
|
2017-09-05 16:20:27 +00:00
|
|
|
{
|
2019-11-07 05:45:06 +00:00
|
|
|
dest.StartObject();
|
|
|
|
INSERT_INTO_JSON_OBJECT(dest, status, status);
|
|
|
|
INSERT_INTO_JSON_OBJECT(dest, error_details, error_details);
|
|
|
|
INSERT_INTO_JSON_OBJECT(dest, rpc_version, DAEMON_RPC_VERSION_ZMQ);
|
|
|
|
doToJson(dest);
|
|
|
|
dest.EndObject();
|
2017-09-05 16:20:27 +00:00
|
|
|
}
|
|
|
|
|
2019-11-07 05:45:06 +00:00
|
|
|
void Message::fromJson(const rapidjson::Value& val)
|
2017-09-05 16:20:27 +00:00
|
|
|
{
|
|
|
|
GET_FROM_JSON_OBJECT(val, status, status);
|
|
|
|
GET_FROM_JSON_OBJECT(val, error_details, error_details);
|
|
|
|
GET_FROM_JSON_OBJECT(val, rpc_version, rpc_version);
|
|
|
|
}
|
|
|
|
|
|
|
|
FullMessage::FullMessage(const std::string& json_string, bool request)
|
|
|
|
{
|
|
|
|
doc.Parse(json_string.c_str());
|
2017-12-10 15:36:15 +00:00
|
|
|
if (doc.HasParseError() || !doc.IsObject())
|
2017-09-05 16:20:27 +00:00
|
|
|
{
|
|
|
|
throw cryptonote::json::PARSE_FAIL();
|
|
|
|
}
|
|
|
|
|
|
|
|
OBJECT_HAS_MEMBER_OR_THROW(doc, "jsonrpc")
|
|
|
|
|
|
|
|
if (request)
|
|
|
|
{
|
2020-02-28 21:45:51 +00:00
|
|
|
get_method_field(doc); // throws on errors
|
2017-10-26 20:39:22 +00:00
|
|
|
OBJECT_HAS_MEMBER_OR_THROW(doc, params_field)
|
2017-09-05 16:20:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-10-26 20:39:22 +00:00
|
|
|
if (!doc.HasMember(result_field) && !doc.HasMember(error_field))
|
2017-09-05 16:20:27 +00:00
|
|
|
{
|
2017-10-26 20:39:22 +00:00
|
|
|
throw cryptonote::json::MISSING_KEY("error/result");
|
2017-09-05 16:20:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string FullMessage::getRequestType() const
|
|
|
|
{
|
2020-02-28 21:45:51 +00:00
|
|
|
return get_method_field(doc).GetString();
|
2017-09-05 16:20:27 +00:00
|
|
|
}
|
|
|
|
|
2019-11-07 05:45:06 +00:00
|
|
|
const rapidjson::Value& FullMessage::getMessage() const
|
2017-09-05 16:20:27 +00:00
|
|
|
{
|
2017-10-26 20:39:22 +00:00
|
|
|
if (doc.HasMember(params_field))
|
2017-09-05 16:20:27 +00:00
|
|
|
{
|
2017-10-26 20:39:22 +00:00
|
|
|
return doc[params_field];
|
2017-09-05 16:20:27 +00:00
|
|
|
}
|
2017-10-26 20:39:22 +00:00
|
|
|
else if (doc.HasMember(result_field))
|
2017-09-05 16:20:27 +00:00
|
|
|
{
|
2017-10-26 20:39:22 +00:00
|
|
|
return doc[result_field];
|
2017-09-05 16:20:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//else
|
2017-10-26 20:39:22 +00:00
|
|
|
OBJECT_HAS_MEMBER_OR_THROW(doc, error_field)
|
|
|
|
return doc[error_field];
|
2017-09-05 16:20:27 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
rapidjson::Value FullMessage::getMessageCopy()
|
|
|
|
{
|
2019-11-07 05:45:06 +00:00
|
|
|
return rapidjson::Value(getMessage(), doc.GetAllocator());
|
2017-09-05 16:20:27 +00:00
|
|
|
}
|
|
|
|
|
2019-11-07 05:45:06 +00:00
|
|
|
const rapidjson::Value& FullMessage::getID() const
|
2017-09-05 16:20:27 +00:00
|
|
|
{
|
2017-10-26 20:39:22 +00:00
|
|
|
OBJECT_HAS_MEMBER_OR_THROW(doc, id_field)
|
|
|
|
return doc[id_field];
|
2017-09-05 16:20:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cryptonote::rpc::error FullMessage::getError()
|
|
|
|
{
|
|
|
|
cryptonote::rpc::error err;
|
|
|
|
err.use = false;
|
2017-10-26 20:39:22 +00:00
|
|
|
if (doc.HasMember(error_field))
|
2017-09-05 16:20:27 +00:00
|
|
|
{
|
|
|
|
GET_FROM_JSON_OBJECT(doc, err, error);
|
|
|
|
err.use = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2019-11-17 06:06:10 +00:00
|
|
|
epee::byte_slice FullMessage::getRequest(const std::string& request, const Message& message, const unsigned id)
|
2017-09-05 16:20:27 +00:00
|
|
|
{
|
2020-03-18 23:22:39 +00:00
|
|
|
epee::byte_stream buffer;
|
2019-11-07 05:45:06 +00:00
|
|
|
{
|
2020-03-18 23:22:39 +00:00
|
|
|
rapidjson::Writer<epee::byte_stream> dest{buffer};
|
2017-09-05 16:20:27 +00:00
|
|
|
|
2019-11-07 05:45:06 +00:00
|
|
|
dest.StartObject();
|
|
|
|
INSERT_INTO_JSON_OBJECT(dest, jsonrpc, (boost::string_ref{"2.0", 3}));
|
2017-09-05 16:20:27 +00:00
|
|
|
|
2019-11-07 05:45:06 +00:00
|
|
|
dest.Key(id_field);
|
|
|
|
json::toJsonValue(dest, id);
|
2017-09-05 16:20:27 +00:00
|
|
|
|
2019-11-07 05:45:06 +00:00
|
|
|
dest.Key(method_field);
|
|
|
|
json::toJsonValue(dest, request);
|
|
|
|
|
|
|
|
dest.Key(params_field);
|
|
|
|
message.toJson(dest);
|
|
|
|
|
|
|
|
dest.EndObject();
|
|
|
|
|
|
|
|
if (!dest.IsComplete())
|
|
|
|
throw std::logic_error{"Invalid JSON tree generated"};
|
|
|
|
}
|
2020-03-18 23:22:39 +00:00
|
|
|
return epee::byte_slice{std::move(buffer)};
|
2017-09-05 16:20:27 +00:00
|
|
|
}
|
|
|
|
|
2019-11-07 05:45:06 +00:00
|
|
|
|
2019-11-17 06:06:10 +00:00
|
|
|
epee::byte_slice FullMessage::getResponse(const Message& message, const rapidjson::Value& id)
|
2017-09-05 16:20:27 +00:00
|
|
|
{
|
2020-03-18 23:22:39 +00:00
|
|
|
epee::byte_stream buffer;
|
2019-11-07 05:45:06 +00:00
|
|
|
{
|
2020-03-18 23:22:39 +00:00
|
|
|
rapidjson::Writer<epee::byte_stream> dest{buffer};
|
2017-09-05 16:20:27 +00:00
|
|
|
|
2019-11-07 05:45:06 +00:00
|
|
|
dest.StartObject();
|
|
|
|
INSERT_INTO_JSON_OBJECT(dest, jsonrpc, (boost::string_ref{"2.0", 3}));
|
2017-09-05 16:20:27 +00:00
|
|
|
|
2019-11-07 05:45:06 +00:00
|
|
|
dest.Key(id_field);
|
|
|
|
json::toJsonValue(dest, id);
|
2017-09-05 16:20:27 +00:00
|
|
|
|
2019-11-07 05:45:06 +00:00
|
|
|
if (message.status == Message::STATUS_OK)
|
|
|
|
{
|
|
|
|
dest.Key(result_field);
|
|
|
|
message.toJson(dest);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cryptonote::rpc::error err;
|
2017-09-05 16:20:27 +00:00
|
|
|
|
2019-11-07 05:45:06 +00:00
|
|
|
err.error_str = message.status;
|
|
|
|
err.message = message.error_details;
|
2017-09-05 16:20:27 +00:00
|
|
|
|
2019-11-07 05:45:06 +00:00
|
|
|
INSERT_INTO_JSON_OBJECT(dest, error, err);
|
|
|
|
}
|
|
|
|
dest.EndObject();
|
2017-09-05 16:20:27 +00:00
|
|
|
|
2019-11-07 05:45:06 +00:00
|
|
|
if (!dest.IsComplete())
|
|
|
|
throw std::logic_error{"Invalid JSON tree generated"};
|
|
|
|
}
|
2020-03-18 23:22:39 +00:00
|
|
|
return epee::byte_slice{std::move(buffer)};
|
2017-09-05 16:20:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// convenience functions for bad input
|
2019-11-17 06:06:10 +00:00
|
|
|
epee::byte_slice BAD_REQUEST(const std::string& request)
|
2017-09-05 16:20:27 +00:00
|
|
|
{
|
2019-11-07 05:45:06 +00:00
|
|
|
rapidjson::Value invalid;
|
|
|
|
return BAD_REQUEST(request, invalid);
|
2017-09-05 16:20:27 +00:00
|
|
|
}
|
|
|
|
|
2019-11-17 06:06:10 +00:00
|
|
|
epee::byte_slice BAD_REQUEST(const std::string& request, const rapidjson::Value& id)
|
2017-09-05 16:20:27 +00:00
|
|
|
{
|
|
|
|
Message fail;
|
|
|
|
fail.status = Message::STATUS_BAD_REQUEST;
|
|
|
|
fail.error_details = std::string("\"") + request + "\" is not a valid request.";
|
2019-11-07 05:45:06 +00:00
|
|
|
return FullMessage::getResponse(fail, id);
|
2017-09-05 16:20:27 +00:00
|
|
|
}
|
|
|
|
|
2019-11-17 06:06:10 +00:00
|
|
|
epee::byte_slice BAD_JSON(const std::string& error_details)
|
2017-09-05 16:20:27 +00:00
|
|
|
{
|
2019-11-07 05:45:06 +00:00
|
|
|
rapidjson::Value invalid;
|
2017-09-05 16:20:27 +00:00
|
|
|
Message fail;
|
|
|
|
fail.status = Message::STATUS_BAD_JSON;
|
|
|
|
fail.error_details = error_details;
|
2019-11-07 05:45:06 +00:00
|
|
|
return FullMessage::getResponse(fail, invalid);
|
2017-09-05 16:20:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace rpc
|
|
|
|
|
|
|
|
} // namespace cryptonote
|