0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 18:18:56 +02:00
construct/ircd/resource.cc

711 lines
15 KiB
C++
Raw Normal View History

2018-02-04 03:22:01 +01:00
// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
2016-09-06 01:05:16 +02:00
2017-11-30 20:44:23 +01:00
#include <ircd/m/m.h>
decltype(ircd::resource::resources)
ircd::resource::resources
2016-11-29 16:23:38 +01:00
{};
2016-09-06 01:05:16 +02:00
ircd::resource &
ircd::resource::find(string_view path)
{
path = rstrip(path, '/');
auto it(resources.lower_bound(path));
if(it == end(resources)) try
{
2017-10-03 13:13:52 +02:00
--it;
if(it == begin(resources) || !startswith(path, rstrip(it->first, '/')))
return *resources.at("/");
}
catch(const std::out_of_range &e)
{
2018-01-22 09:25:08 +01:00
throw http::error
{
http::code::NOT_FOUND
};
}
2016-09-06 01:05:16 +02:00
// Exact file or directory match
2017-10-03 13:13:52 +02:00
if(path == rstrip(it->first, '/'))
return *it->second;
// Directories handle all paths under them.
2017-10-03 13:13:52 +02:00
if(!startswith(path, rstrip(it->first, '/')))
{
// Walk the iterator back to find if there is a directory prefixing this path.
if(it == begin(resources))
2018-01-22 09:25:08 +01:00
throw http::error
{
http::code::NOT_FOUND
};
--it;
2017-10-03 13:13:52 +02:00
if(!startswith(path, rstrip(it->first, '/')))
2018-01-22 09:25:08 +01:00
throw http::error
{
http::code::NOT_FOUND
};
}
// Check if the resource is a directory; if not, it can only
// handle exact path matches.
2017-10-03 13:13:52 +02:00
if(~it->second->flags & it->second->DIRECTORY && path != rstrip(it->first, '/'))
2018-01-22 09:25:08 +01:00
throw http::error
{
http::code::NOT_FOUND
};
return *it->second;
}
//
// resource
//
ircd::resource::resource(const string_view &path)
:resource
{
path, opts{}
}
{
}
ircd::resource::resource(const string_view &path,
const opts &opts)
:path{path}
,description{opts.description}
,flags{opts.flags}
,resources_it{[this, &path]
2016-09-06 01:05:16 +02:00
{
2018-01-22 09:25:08 +01:00
const auto iit
{
resources.emplace(this->path, this)
};
2016-11-29 16:23:38 +01:00
if(!iit.second)
2018-01-22 09:25:08 +01:00
throw error
{
"resource \"%s\" already registered", path
};
2016-11-29 16:23:38 +01:00
return unique_const_iterator<decltype(resources)>
{
resources, iit.first
};
2016-11-29 16:23:38 +01:00
}()}
{
log::debug
2018-01-22 09:25:08 +01:00
{
"Registered resource \"%s\"", path.empty()? string_view{"/"} : path
};
2016-09-06 01:05:16 +02:00
}
2016-11-29 16:23:38 +01:00
ircd::resource::~resource()
2016-09-06 01:05:16 +02:00
noexcept
{
log::debug
2018-01-22 09:25:08 +01:00
{
"Unregistered resource \"%s\"", path.empty()? string_view{"/"} : path
};
2016-09-06 01:05:16 +02:00
}
namespace ircd
{
static void verify_origin(client &client, resource::method &method, resource::request &request);
static void authenticate(client &client, resource::method &method, resource::request &request);
}
void
ircd::authenticate(client &client,
resource::method &method,
resource::request &request)
try
{
request.access_token =
{
request.query["access_token"]
};
if(empty(request.access_token))
{
const auto authorization
{
split(request.head.authorization, ' ')
};
if(iequals(authorization.first, "bearer"_sv))
request.access_token = authorization.second;
}
const bool result
{
request.access_token &&
m::user::tokens.get(std::nothrow, "ircd.access_token"_sv, request.access_token, [&request]
(const m::event &event)
{
// The user sent this access token to the tokens room
request.user_id = m::user::id{at<"sender"_>(event)};
})
};
if(!result)
throw m::error
{
2017-09-08 11:17:06 +02:00
// When credentials are required but missing or invalid, the HTTP call will return with
// a status of 401 and the error code, M_MISSING_TOKEN or M_UNKNOWN_TOKEN respectively.
http::UNAUTHORIZED, "M_UNKNOWN_TOKEN", "Credentials for this method are required but invalid."
};
}
catch(const std::out_of_range &e)
{
throw m::error
{
2017-09-08 11:17:06 +02:00
// When credentials are required but missing or invalid, the HTTP call will return with
// a status of 401 and the error code, M_MISSING_TOKEN or M_UNKNOWN_TOKEN respectively.
http::UNAUTHORIZED, "M_MISSING_TOKEN", "Credentials for this method are required but missing."
};
}
void
ircd::verify_origin(client &client,
resource::method &method,
resource::request &request)
try
{
const m::request::x_matrix x_matrix
{
request.head.authorization
};
const m::request object
{
x_matrix.origin, my_host(), method.name, request.head.uri, request.content
};
const auto verified
{
object.verify(x_matrix.key, x_matrix.sig)
};
if(!verified)
throw m::error
{
http::UNAUTHORIZED, "M_INVALID_SIGNATURE",
"The X-Matrix Authorization is invalid."
};
}
catch(const m::error &)
{
throw;
}
catch(const std::exception &e)
{
2018-01-22 09:25:08 +01:00
log::error
{
"X-Matrix Authorization from %s: %s",
string(remote(client)),
e.what()
};
throw m::error
{
http::UNAUTHORIZED, "M_UNKNOWN_ERROR",
"An error has prevented authorization: %s",
e.what()
};
}
2016-09-06 01:05:16 +02:00
void
2016-11-29 16:23:38 +01:00
ircd::resource::operator()(client &client,
const http::request::head &head,
const string_view &content_partial)
2016-09-06 01:05:16 +02:00
{
// Find the method or METHOD_NOT_ALLOWED
auto &method
{
operator[](head.method)
};
// Bail out if the method limited the amount of content and it was exceeded.
if(head.content_length > method.opts.payload_max)
throw http::error
{
http::PAYLOAD_TOO_LARGE
};
// Content that hasn't yet arrived is remaining
const size_t content_remain
{
head.content_length - client.content_consumed
};
// View of the content that will be passed to the resource handler. Starts
// with the content received so far which is actually in the head's buffer.
// One of three things can happen now:
//
// - There is no more content so we pass this as-is right to the resource.
// - There is more content, so we allocate a content buffer, copy what we
// have to it, read the rest off the socket, and then reassign this view.
// - There is more content, but the resource wants to read it off the
// socket on its own terms, so we pass this as-is.
string_view content
{
content_partial
};
if(content_remain && ~method.opts.flags & method.CONTENT_DISCRETION)
{
// Copy any partial content to the final contiguous allocated buffer;
client.content_buffer = unique_buffer<mutable_buffer>{head.content_length};
memcpy(data(client.content_buffer), data(content_partial), size(content_partial));
// Setup a window inside the buffer for the remaining socket read.
const mutable_buffer content_remain_buffer
{
data(client.content_buffer) + size(content_partial), content_remain
};
// Read the remaining content off the socket.
client.content_consumed += read_all(*client.sock, content_remain_buffer);
assert(client.content_consumed == head.content_length);
content = string_view
{
data(client.content_buffer), head.content_length
};
}
client.request = resource::request
{
head, content
};
const auto pathparm
{
lstrip(head.path, this->path)
};
client.request.parv =
2017-03-11 02:46:25 +01:00
{
client.request.param, tokens(pathparm, '/', client.request.param)
2017-03-11 02:46:25 +01:00
};
if(method.opts.flags & method.REQUIRES_AUTH)
authenticate(client, method, client.request);
if(method.opts.flags & method.VERIFY_ORIGIN)
verify_origin(client, method, client.request);
handle_request(client, method, client.request);
2017-03-21 03:30:07 +01:00
}
void
ircd::resource::handle_request(client &client,
method &method,
resource::request &request)
2017-03-21 03:30:07 +01:00
try
{
2017-09-08 11:17:06 +02:00
const auto response
{
method(client, request)
};
2017-03-21 03:30:07 +01:00
}
catch(const json::not_found &e)
2017-03-21 03:30:07 +01:00
{
throw m::error
{
http::NOT_FOUND, "M_BAD_JSON", "Required JSON field: %s", e.what()
2017-03-21 03:30:07 +01:00
};
2016-09-06 01:05:16 +02:00
}
catch(const json::print_error &e)
{
throw m::error
{
http::INTERNAL_SERVER_ERROR, "M_NOT_JSON", "Generator Protection: %s", e.what()
};
}
catch(const json::error &e)
{
throw m::error
{
http::BAD_REQUEST, "M_NOT_JSON", "%s", e.what()
};
}
2017-09-25 03:05:42 +02:00
catch(const std::out_of_range &e)
{
throw m::error
{
http::NOT_FOUND, "M_NOT_FOUND", "%s", e.what()
};
}
catch(const ctx::timeout &e)
{
throw m::error
{
http::BAD_GATEWAY, "M_REQUEST_TIMEOUT", "%s", e.what()
};
}
2016-09-06 01:05:16 +02:00
ircd::resource::method &
ircd::resource::operator[](const string_view &name)
try
{
return *methods.at(name);
}
catch(const std::out_of_range &e)
{
size_t len(0);
char buf[128]; buf[0] = '\0';
auto it(begin(methods));
if(it != end(methods))
{
len = strlcat(buf, it->first);
for(++it; it != end(methods); ++it)
{
len = strlcat(buf, " ");
len = strlcat(buf, it->first);
}
}
throw http::error
{
http::METHOD_NOT_ALLOWED, {},
{
{ "Allow", string_view{buf, len} }
}
};
}
ircd::resource::method::method(struct resource &resource,
const string_view &name,
const handler &handler)
:method
{
resource, name, handler, {}
}
{
}
2016-11-29 16:23:38 +01:00
ircd::resource::method::method(struct resource &resource,
const string_view &name,
2016-11-29 16:23:38 +01:00
const handler &handler,
const struct opts &opts)
:name{name}
2016-11-29 16:23:38 +01:00
,resource{&resource}
,function{handler}
,opts{opts}
2016-11-29 16:23:38 +01:00
,methods_it{[this, &name]
2016-09-06 01:05:16 +02:00
{
2018-01-22 09:25:08 +01:00
const auto iit
{
this->resource->methods.emplace(this->name, this)
};
2016-09-06 01:05:16 +02:00
if(!iit.second)
2018-01-22 09:25:08 +01:00
throw error
{
"resource \"%s\" already registered", name
};
2016-09-06 01:05:16 +02:00
return unique_const_iterator<decltype(resource::methods)>
{
this->resource->methods,
iit.first
};
2016-11-29 16:23:38 +01:00
}()}
{
2016-09-06 01:05:16 +02:00
}
2016-11-29 16:23:38 +01:00
ircd::resource::method::~method()
noexcept
2016-09-06 01:05:16 +02:00
{
}
ircd::resource::response
ircd::resource::method::operator()(client &client,
request &request)
try
{
return function(client, request);
}
catch(const std::bad_function_call &e)
{
throw http::error
{
http::SERVICE_UNAVAILABLE
};
}
ircd::resource::response::response(client &client,
const http::code &code)
:response{client, json::object{"{}"}, code}
{
}
ircd::resource::response::response(client &client,
const http::code &code,
2017-09-09 21:20:00 +02:00
const json::iov &members)
:response{client, members, code}
{
2016-09-06 01:05:16 +02:00
}
2016-11-29 16:23:38 +01:00
ircd::resource::response::response(client &client,
const json::members &members,
const http::code &code)
:response{client, code, members}
{
}
ircd::resource::response::response(client &client,
const json::value &value,
const http::code &code)
:response{client, code, value}
{
}
ircd::resource::response::response(client &client,
const http::code &code,
const json::value &value)
try
{
const auto size
{
serialized(value)
};
const unique_buffer<mutable_buffer> buffer
{
size
};
switch(type(value))
{
case json::ARRAY:
{
response(client, json::array{stringify(mutable_buffer{buffer}, value)}, code);
return;
}
case json::OBJECT:
{
response(client, json::object{stringify(mutable_buffer{buffer}, value)}, code);
return;
}
default: throw m::error
{
http::INTERNAL_SERVER_ERROR, "M_NOT_JSON", "Cannot send json::%s as response content", type(value)
};
}
}
catch(const json::error &e)
{
throw m::error
{
http::INTERNAL_SERVER_ERROR, "M_NOT_JSON", "Generator Protection: %s", e.what()
};
}
ircd::resource::response::response(client &client,
const http::code &code,
const json::members &members)
try
{
const auto size
{
serialized(members)
};
const unique_buffer<mutable_buffer> buffer
{
size
};
const json::object object
{
stringify(mutable_buffer{buffer}, members)
};
response(client, object, code);
}
catch(const json::error &e)
2017-09-09 21:20:00 +02:00
{
throw m::error
{
http::INTERNAL_SERVER_ERROR, "M_NOT_JSON", "Generator Protection: %s", e.what()
};
2017-09-09 21:20:00 +02:00
}
ircd::resource::response::response(client &client,
const json::iov &members,
2017-03-11 04:31:20 +01:00
const http::code &code)
2017-03-21 03:30:07 +01:00
try
2016-09-06 01:05:16 +02:00
{
const auto size
{
serialized(members)
};
const unique_buffer<mutable_buffer> buffer
{
size
};
const json::object object
{
stringify(mutable_buffer{buffer}, members)
};
response(client, object, code);
2017-03-21 03:30:07 +01:00
}
catch(const json::error &e)
{
throw m::error
{
http::INTERNAL_SERVER_ERROR, "M_NOT_JSON", "Generator Protection: %s", e.what()
};
2017-03-11 04:31:20 +01:00
}
ircd::resource::response::response(client &client,
const json::object &object,
2017-03-11 04:31:20 +01:00
const http::code &code)
{
static const string_view content_type
2017-03-11 04:31:20 +01:00
{
"application/json; charset=utf-8"
2017-03-11 04:31:20 +01:00
};
2016-09-06 01:05:16 +02:00
assert(json::valid(object, std::nothrow));
response(client, object, content_type, code);
2016-09-06 01:05:16 +02:00
}
ircd::resource::response::response(client &client,
const json::array &array,
const http::code &code)
{
static const string_view content_type
{
"application/json; charset=utf-8"
};
assert(json::valid(array, std::nothrow));
response(client, array, content_type, code);
}
ircd::resource::response::response(client &client,
const string_view &content,
const string_view &content_type,
const http::code &code,
const vector_view<const http::header> &headers)
{
assert(empty(content) || !empty(content_type));
2018-01-12 03:41:27 +01:00
// contents of this buffer get copied again when further passed to
// response{}; we can get this off the stack if that remains true.
thread_local char buffer[4_KiB];
window_buffer sb{buffer};
2018-01-12 03:41:27 +01:00
{
const critical_assertion ca;
http::write(sb, headers);
}
new (this) response
{
client, content, content_type, code, string_view{sb.completed()}
};
}
ircd::resource::response::response(client &client,
const string_view &content,
const string_view &content_type,
const http::code &code,
const string_view &headers)
{
assert(empty(content) || !empty(content_type));
// Head gets sent
response
{
client, content.size(), content_type, code, headers
};
// All content gets sent
const ilist<const const_buffer> vector
{
content
};
write_closure(client)(vector);
}
ircd::resource::response::response(client &client,
const size_t &content_length,
const string_view &content_type,
const http::code &code,
const string_view &headers)
2016-09-06 01:05:16 +02:00
{
assert(!content_length || !empty(content_type));
const auto request_time
{
client.timer.at<microseconds>().count()
2017-09-30 08:09:03 +02:00
};
const fmt::bsprintf<64> rtime
2017-09-30 08:09:03 +02:00
{
"%zd$us", request_time
};
2018-01-12 03:41:27 +01:00
// This buffer will be passed to the socket and sent out;
// cannot be static/tls.
char head_buf[4_KiB];
window_buffer head{head_buf};
http::response
{
head,
code,
content_length,
content_type,
headers,
{
{ "Access-Control-Allow-Origin", "*" }, //TODO: XXX
{ "X-IRCd-Request-Timer", rtime, },
},
};
// Maximum size is is realistically ok but ideally a small
// maximum; this exception should hit the developer in testing.
if(unlikely(!head.remaining()))
throw assertive
{
"HTTP headers too large for buffer of %zu", sizeof(head_buf)
};
const ilist<const const_buffer> vector
{
head.completed()
};
write_closure(client)(vector);
2018-01-22 09:25:08 +01:00
log::debug
{
"socket(%p) local[%s] remote[%s] HTTP %d %s in %ld$us; %s %zu content",
2018-01-22 09:25:08 +01:00
client.sock.get(),
string(local(client)),
string(remote(client)),
int(code),
http::status(code),
request_time,
content_type,
content_length,
2018-01-22 09:25:08 +01:00
};
2016-09-06 01:05:16 +02:00
}