2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-07-21 16:10:13 +02:00
|
|
|
|
|
|
|
#include "remote/configfileshandler.hpp"
|
2015-08-28 17:58:29 +02:00
|
|
|
#include "remote/configpackageutility.hpp"
|
2015-07-21 16:10:13 +02:00
|
|
|
#include "remote/httputility.hpp"
|
2015-09-28 08:57:25 +02:00
|
|
|
#include "remote/filterutility.hpp"
|
2015-07-21 16:10:13 +02:00
|
|
|
#include "base/exception.hpp"
|
2019-04-01 18:54:13 +02:00
|
|
|
#include "base/utility.hpp"
|
2015-07-21 16:10:13 +02:00
|
|
|
#include <boost/algorithm/string/join.hpp>
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
REGISTER_URLHANDLER("/v1/config/files", ConfigFilesHandler);
|
|
|
|
|
2019-02-15 10:33:01 +01:00
|
|
|
bool ConfigFilesHandler::HandleRequest(
|
2019-02-15 11:51:12 +01:00
|
|
|
AsioTlsStream& stream,
|
2019-02-15 10:33:01 +01:00
|
|
|
const ApiUser::Ptr& user,
|
|
|
|
boost::beast::http::request<boost::beast::http::string_body>& request,
|
|
|
|
const Url::Ptr& url,
|
|
|
|
boost::beast::http::response<boost::beast::http::string_body>& response,
|
2019-02-15 11:51:12 +01:00
|
|
|
const Dictionary::Ptr& params,
|
|
|
|
boost::asio::yield_context& yc,
|
2019-04-02 17:37:29 +02:00
|
|
|
HttpServerConnection& server
|
2019-02-15 10:33:01 +01:00
|
|
|
)
|
2015-07-21 16:10:13 +02:00
|
|
|
{
|
2019-02-15 10:33:01 +01:00
|
|
|
namespace http = boost::beast::http;
|
|
|
|
|
|
|
|
if (request.method() != http::verb::get)
|
2015-09-28 16:08:14 +02:00
|
|
|
return false;
|
2015-07-21 16:10:13 +02:00
|
|
|
|
2019-02-15 10:33:01 +01:00
|
|
|
const std::vector<String>& urlPath = url->GetPath();
|
2015-07-21 16:10:13 +02:00
|
|
|
|
|
|
|
if (urlPath.size() >= 4)
|
2015-08-28 17:58:29 +02:00
|
|
|
params->Set("package", urlPath[3]);
|
2015-07-21 16:10:13 +02:00
|
|
|
|
|
|
|
if (urlPath.size() >= 5)
|
|
|
|
params->Set("stage", urlPath[4]);
|
|
|
|
|
|
|
|
if (urlPath.size() >= 6) {
|
|
|
|
std::vector<String> tmpPath(urlPath.begin() + 5, urlPath.end());
|
|
|
|
params->Set("path", boost::algorithm::join(tmpPath, "/"));
|
|
|
|
}
|
|
|
|
|
2019-02-15 10:33:01 +01:00
|
|
|
if (request[http::field::accept] == "application/json") {
|
2017-12-20 15:31:05 +01:00
|
|
|
HttpUtility::SendJsonError(response, params, 400, "Invalid Accept header. Either remove the Accept header or set it to 'application/octet-stream'.");
|
2015-11-05 15:18:53 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-09-28 08:57:25 +02:00
|
|
|
FilterUtility::CheckPermission(user, "config/query");
|
|
|
|
|
2015-08-28 17:58:29 +02:00
|
|
|
String packageName = HttpUtility::GetLastParameter(params, "package");
|
2015-07-29 13:39:58 +02:00
|
|
|
String stageName = HttpUtility::GetLastParameter(params, "stage");
|
2015-07-21 16:10:13 +02:00
|
|
|
|
2021-08-02 13:09:04 +02:00
|
|
|
if (!ConfigPackageUtility::ValidatePackageName(packageName)) {
|
2017-12-20 15:31:05 +01:00
|
|
|
HttpUtility::SendJsonError(response, params, 400, "Invalid package name.");
|
2015-09-28 16:08:14 +02:00
|
|
|
return true;
|
|
|
|
}
|
2015-09-22 17:58:12 +02:00
|
|
|
|
2021-08-02 13:09:04 +02:00
|
|
|
if (!ConfigPackageUtility::ValidateStageName(stageName)) {
|
2017-12-20 15:31:05 +01:00
|
|
|
HttpUtility::SendJsonError(response, params, 400, "Invalid stage name.");
|
2015-09-28 16:08:14 +02:00
|
|
|
return true;
|
|
|
|
}
|
2015-07-21 16:10:13 +02:00
|
|
|
|
2015-07-29 13:39:58 +02:00
|
|
|
String relativePath = HttpUtility::GetLastParameter(params, "path");
|
2015-07-21 16:10:13 +02:00
|
|
|
|
2015-09-28 16:08:14 +02:00
|
|
|
if (ConfigPackageUtility::ContainsDotDot(relativePath)) {
|
2017-12-20 15:31:05 +01:00
|
|
|
HttpUtility::SendJsonError(response, params, 400, "Path contains '..' (not allowed).");
|
2015-09-28 16:08:14 +02:00
|
|
|
return true;
|
|
|
|
}
|
2015-07-21 16:10:13 +02:00
|
|
|
|
2015-08-28 17:58:29 +02:00
|
|
|
String path = ConfigPackageUtility::GetPackageDir() + "/" + packageName + "/" + stageName + "/" + relativePath;
|
2015-07-21 16:10:13 +02:00
|
|
|
|
2015-09-28 16:08:14 +02:00
|
|
|
if (!Utility::PathExists(path)) {
|
2017-12-20 15:31:05 +01:00
|
|
|
HttpUtility::SendJsonError(response, params, 404, "Path not found.");
|
2015-09-28 16:08:14 +02:00
|
|
|
return true;
|
|
|
|
}
|
2015-07-21 16:10:13 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
std::ifstream fp(path.CStr(), std::ifstream::in | std::ifstream::binary);
|
|
|
|
fp.exceptions(std::ifstream::badbit);
|
|
|
|
|
|
|
|
String content((std::istreambuf_iterator<char>(fp)), std::istreambuf_iterator<char>());
|
2019-02-15 10:33:01 +01:00
|
|
|
response.result(http::status::ok);
|
|
|
|
response.set(http::field::content_type, "application/octet-stream");
|
|
|
|
response.body() = content;
|
2020-12-22 14:32:56 +01:00
|
|
|
response.content_length(response.body().size());
|
2015-07-21 16:10:13 +02:00
|
|
|
} catch (const std::exception& ex) {
|
2017-12-20 15:31:05 +01:00
|
|
|
HttpUtility::SendJsonError(response, params, 500, "Could not read file.",
|
2018-04-06 12:55:03 +02:00
|
|
|
DiagnosticInformation(ex));
|
2015-07-21 16:10:13 +02:00
|
|
|
}
|
|
|
|
|
2015-09-28 16:08:14 +02:00
|
|
|
return true;
|
|
|
|
}
|