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

Add string.host_and_port support #52

Merged
merged 3 commits into from
Feb 13, 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
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v5
with:
go-version: stable
cache: true
- name: Execute tests
run: make test
4 changes: 1 addition & 3 deletions .github/workflows/conformance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
conformance:
name: Conformance Testing
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Setup Cache
uses: actions/cache@v3
Expand All @@ -29,7 +27,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
go-version: stable
cache: true
- name: Test conformance
run: make conformance
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPYRIGHT_YEARS := 2023
LICENSE_IGNORE := -e internal/testdata/
LICENSE_HEADER_VERSION := 0294fdbe1ce8649ebaf5e87e8cdd588e33730bbb
# NOTE: Keep this version in sync with the version in `/bazel/deps.bzl`.
PROTOVALIDATE_VERSION ?= v0.5.3
PROTOVALIDATE_VERSION ?= v0.5.6

# Set to use a different compiler. For example, `GO=go1.18rc1 make test`.
GO ?= go
Expand Down
6 changes: 3 additions & 3 deletions bazel/deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ _dependencies = {
},
# NOTE: Keep Version in sync with `/Makefile`.
"com_github_bufbuild_protovalidate": {
"sha256": "03ee49c344d350355c7e21b36456d709cbcba493f2cfa2029be99fc065aa7c48",
"strip_prefix": "protovalidate-0.5.3",
"sha256": "a6fd142c780c82104198138d609bace9b1b145c99e265aa33de1f651e90047d8",
"strip_prefix": "protovalidate-0.5.6",
"urls": [
"https://github.com/bufbuild/protovalidate/archive/v0.5.3.tar.gz",
"https://github.com/bufbuild/protovalidate/archive/v0.5.6.tar.gz",
],
},
}
Expand Down
73 changes: 67 additions & 6 deletions buf/validate/internal/extra_func.cc
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,17 @@ bool IsHostname(std::string_view to_validate) {
return false;
}
static const re2::RE2 component_regex("^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$");
static const re2::RE2 all_digits("^[0-9]*$");
to_validate = absl::StripSuffix(to_validate, ".");
std::vector<std::string_view> split = absl::StrSplit(to_validate, '.');
if (split.size() < 2) {
return re2::RE2::FullMatch(to_validate, component_regex);
return re2::RE2::FullMatch(to_validate, component_regex)
&& !re2::RE2::FullMatch(to_validate, all_digits);
}
for (size_t i = 0; i < split.size() - 1; i++) {
if (re2::RE2::FullMatch(split[split.size()-1], all_digits)) {
return false;
}
for (size_t i = 0; i < split.size(); i++) {
const std::string_view& part = split[i];
if (part.empty() || part.size() > 63) {
return false;
Expand Down Expand Up @@ -188,13 +194,17 @@ cel::CelValue isEmail(google::protobuf::Arena* arena, cel::CelValue::StringHolde
}

bool IsIpv4(const std::string_view to_validate) {
struct in_addr result;
return inet_pton(AF_INET, to_validate.data(), &result) == 1;
// need to copy as string_view might not be null terminated
const auto str = std::string{to_validate};
struct in_addr result{};
return inet_pton(AF_INET, str.data(), &result) == 1;
}

bool IsIpv6(const std::string_view to_validate) {
struct in6_addr result;
return inet_pton(AF_INET6, to_validate.data(), &result) == 1;
// need to copy as string_view might not be null terminated
const auto str = std::string{to_validate};
struct in6_addr result{};
return inet_pton(AF_INET6, str.data(), &result) == 1;
}

bool IsIp(const std::string_view to_validate) {
Expand All @@ -220,6 +230,51 @@ cel::CelValue isIP(google::protobuf::Arena* arena, cel::CelValue::StringHolder l
return isIPvX(arena, lhs, cel::CelValue::CreateInt64(0));
}

bool IsPort(const std::string_view str) {
uint32_t port;
if (!absl::SimpleAtoi(str, &port)) {
return false;
}
static constexpr uint32_t MAX_PORT = 65535;
return port <= MAX_PORT;
}

bool IsHostAndPort(const std::string_view str, const bool portRequired) {
if (str.empty()) {
return false;
}

const auto splitIdx = str.rfind(':');
if (str.front() == '[') {
const auto end = str.find(']');
const auto afterEnd = end+1;
if (afterEnd == str.size()) { // no port
const auto host = str.substr(1, end-1);
return !portRequired && IsIpv6(host);
}
if (afterEnd == splitIdx) { // port
const auto host = str.substr(1, end-1);
const auto port = str.substr(splitIdx+1);
return IsIpv6(host)
&& IsPort(port);
}
return false;
}

if (splitIdx == std::string_view::npos) {
return !portRequired && (IsHostname(str) || IsIpv4(str));
}
const auto host = str.substr(0, splitIdx);
const auto port = str.substr(splitIdx+1);
return (IsHostname(host) || IsIpv4(host)) && IsPort(port);
}

cel::CelValue isHostAndPort(google::protobuf::Arena* arena, cel::CelValue::StringHolder lhs, cel::CelValue rhs) {
const std::string_view str = lhs.value();
const bool portReq = rhs.BoolOrDie();
return cel::CelValue::CreateBool(IsHostAndPort(str, portReq));
}

/**
* IP Prefix Validation
*/
Expand Down Expand Up @@ -493,6 +548,12 @@ absl::Status RegisterExtraFuncs(
if (!isUriRefStatus.ok()) {
return isUriStatus;
}
auto isHostAndPortStatus =
cel::FunctionAdapter<cel::CelValue, cel::CelValue::StringHolder, cel::CelValue>::
CreateAndRegister("isHostAndPort", true, &isHostAndPort, &registry);
if (!isHostAndPortStatus.ok()) {
return isHostAndPortStatus;
}
return absl::OkStatus();
}
} // namespace buf::validate::internal
Loading