Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed vulnerability issues #5936

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/common/network/NetworkUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,18 @@ std::string NetworkUtils::toHostsStr(const std::vector<HostAddr>& hosts) {
return hostsString;
}

Status NetworkUtils::validateIP(const std::string& ip) {
if (ip.empty()) {
return Status::Error("ip is empty.");
}
static const std::regex ipv4(
R"(^((2(5[0-5]|[0-4]\d))|[0-1]?\d{1,2})(\.((2(5[0-5]|[0-4]\d))|[0-1]?\d{1,2})){3}$)");
if (!std::regex_match(ip, ipv4)) {
return Status::Error("%s is not a valid IP", ip.c_str());
}
return Status::OK();
}

Status NetworkUtils::validateHostOrIp(const std::string& hostOrIp) {
if (hostOrIp.empty()) {
return Status::Error("local_ip is empty, need to config it through config file.");
Expand Down
2 changes: 2 additions & 0 deletions src/common/network/NetworkUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ class NetworkUtils final {
static StatusOr<std::vector<HostAddr>> toHosts(const std::string& peersStr);
static std::string toHostsStr(const std::vector<HostAddr>& hosts);

static Status validateIP(const std::string& ip);

static Status validateHostOrIp(const std::string& HostOrIp);

private:
Expand Down
23 changes: 17 additions & 6 deletions src/meta/processors/job/DownloadJobExecutor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "common/hdfs/HdfsHelper.h"
#include "common/utils/MetaKeyUtils.h"
#include "meta/MetaServiceUtils.h"
#include "meta/processors/BaseProcessor.h"

namespace nebula {
namespace meta {
Expand All @@ -34,20 +35,30 @@ nebula::cpp2::ErrorCode DownloadJobExecutor::check() {
}

auto u = url.substr(hdfsPrefix.size(), url.size());
std::vector<folly::StringPiece> tokens;
std::vector<std::string> tokens;
folly::split(":", u, tokens);
if (tokens.size() == 2) {
if (!NetworkUtils::validateIP(tokens[0]).ok()) {
LOG(ERROR) << "Illegal hdfs host: " << url;
return nebula::cpp2::ErrorCode::E_INVALID_JOB;
}
host_ = std::make_unique<std::string>(tokens[0]);
int32_t position = tokens[1].find_first_of("/");
if (position != -1) {
auto position = tokens[1].find_first_of("/");
if (position != std::string::npos) {
try {
port_ = folly::to<int32_t>(tokens[1].toString().substr(0, position).c_str());
port_ = folly::to<int32_t>(tokens[1].substr(0, position).c_str());
} catch (const std::exception& ex) {
LOG(ERROR) << "URL's port parse failed: " << url;
return nebula::cpp2::ErrorCode::E_INVALID_JOB;
}
path_ =
std::make_unique<std::string>(tokens[1].toString().substr(position, tokens[1].size()));
auto path = tokens[1].substr(position, tokens[1].size());
// A valid hdfs path must start with /, and only regular characters allow for now
const std::regex pattern("^/[-_/0-9a-zA-Z]*$");
if (!std::regex_match(path, pattern)) {
LOG(ERROR) << "Illegal hdfs path: " << url;
return nebula::cpp2::ErrorCode::E_INVALID_JOB;
}
path_ = std::make_unique<std::string>(path);
} else {
LOG(ERROR) << "URL Parse Failed: " << url;
return nebula::cpp2::ErrorCode::E_INVALID_JOB;
Expand Down
8 changes: 8 additions & 0 deletions src/webservice/SetFlagsHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,14 @@ void SetFlagsHandler::onEOM() noexcept {
for (auto &item : flags.items()) {
try {
const std::string &name = item.first.asString();
if (name == "enable_authorize") {
LOG(ERROR) << "Modifying enable_authorize is not allowed";
ResponseBuilder(downstream_)
.status(WebServiceUtils::to(HttpStatusCode::BAD_REQUEST),
WebServiceUtils::toString(HttpStatusCode::BAD_REQUEST))
.sendWithEOM();
return;
}
const std::string &value = item.second.asString();
const std::string &newValue = gflags::SetCommandLineOption(name.c_str(), value.c_str());
if (newValue.empty()) {
Expand Down
Loading