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 firewall config protos #31

Merged
merged 10 commits into from
Mar 27, 2025
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.envrc
.direnv
13 changes: 0 additions & 13 deletions LICENSE

This file was deleted.

667 changes: 667 additions & 0 deletions LICENSE.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions client/client.proto
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ message InterfaceData {

// service used by desktop clients to communicate with interface management daemon
service DesktopDaemonService {
rpc CreateInterface (CreateInterfaceRequest) returns (google.protobuf.Empty);
rpc RemoveInterface (RemoveInterfaceRequest) returns (google.protobuf.Empty);
rpc ReadInterfaceData (ReadInterfaceDataRequest) returns (stream InterfaceData);
rpc CreateInterface(CreateInterfaceRequest) returns (google.protobuf.Empty);
rpc RemoveInterface(RemoveInterfaceRequest) returns (google.protobuf.Empty);
rpc ReadInterfaceData(ReadInterfaceDataRequest) returns (stream InterfaceData);
}
2 changes: 1 addition & 1 deletion core/auth.proto
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ message AuthenticateRequest {

message AuthenticateResponse {
string token = 1;
}
}
2 changes: 1 addition & 1 deletion core/proxy.proto
Original file line number Diff line number Diff line change
Expand Up @@ -233,5 +233,5 @@ message CoreRequest {
* so requests and responses are actually send in reverse.
*/
service Proxy {
rpc Bidi (stream CoreResponse) returns (stream CoreRequest);
rpc Bidi(stream CoreResponse) returns (stream CoreRequest);
}
16 changes: 16 additions & 0 deletions enterprise/LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Copyright 2024 teonite ventures sp. z o. o.

defguard enterprise license / defguard.net

Use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

1. Use is permitted for the purposes of the Licensee that paid for the relevant license only (no redistributions or products based on that).

2. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote the Licensee when using the product without specific prior written permission.

3. The Licensee may use the software in accordance with the terms and conditions of this license after paying the license fee to the Licensor, in accordance with the currently available price list on the defguard.net website, for the time period defined in the license. The Licensee is not permitted to resell, sublicense, or create derivative products based on the software. The Licensor may secure the ability to use the software with a license key or other technical protection.

5. You may not move, change, disable, or circumvent the license key functionality in the software, and you may not remove or obscure any functionality in the software that is protected by the license key.

6. The licensor can provide support for the use of the software. The current terms in this respect are on the website defguard.net
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.
72 changes: 72 additions & 0 deletions enterprise/firewall/firewall.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
syntax = "proto3";
package enterprise.firewall;

// Describes target configuration of the firewall
message FirewallConfig {
IpVersion ip_version = 1;
FirewallPolicy default_policy = 2;
repeated FirewallRule rules = 3;
}

enum IpVersion {
IPV4 = 0;
IPV6 = 1;
}

enum FirewallPolicy {
ALLOW = 0;
DENY = 1;
}

message FirewallRule {
int64 id = 1;
repeated IpAddress source_addrs = 2;
repeated IpAddress destination_addrs = 3;
repeated Port destination_ports = 4;
repeated Protocol protocols = 5;
FirewallPolicy verdict = 6;
optional string comment = 7;
}

// IPv4 or IPv6 address
// expected type is determined by a given FirewallRule
message IpAddress {
oneof address {
// single IP address
string ip = 1;
// range of IPs, e.g. 10.0.10.1-10.0.20.3
IpRange ip_range = 2;
// IP subnet using CIDR notation, e.g. 10.0.10.0/24
string ip_subnet = 3;
}
}

// inclusive IP range
message IpRange {
string start = 1;
string end = 2;
}

// wrapper message since `oneof` itself cannot be repeated
message Port {
oneof port {
uint32 single_port = 1;
PortRange port_range = 2;
}
}

// inclusive port range
message PortRange {
uint32 start = 1;
uint32 end = 2;
}

// Specific IDs are used to align with the standard below:
// https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/include/uapi/linux/in.h
enum Protocol {
// proto3 requires that first enum value must be 0
INVALID = 0;
ICMP = 1;
TCP = 6;
UDP = 17;
}
61 changes: 61 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
description = "Development flake for working with protobuf files";

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};

outputs = {
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {
inherit system;
};
in {
devShells.default = pkgs.mkShell {
packages = with pkgs; [
protobuf
# formatter, linter, LSP etc
buf
];
};
});
}
9 changes: 6 additions & 3 deletions wireguard/gateway.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
syntax = "proto3";
package gateway;

import "firewall.proto";
import "google/protobuf/empty.proto";

message ConfigurationRequest {
Expand All @@ -14,6 +15,7 @@ message Configuration {
uint32 port = 4;
repeated Peer peers = 5;
repeated string addresses = 6;
optional enterprise.firewall.FirewallConfig firewall_config = 7;
}

enum UpdateType {
Expand All @@ -34,6 +36,7 @@ message Update {
oneof update {
Peer peer = 2;
Configuration network = 3;
enterprise.firewall.FirewallConfig firewall_config = 4;
}
}

Expand All @@ -59,7 +62,7 @@ message StatsUpdate {
}

service GatewayService {
rpc Config (ConfigurationRequest) returns (Configuration);
rpc Updates (google.protobuf.Empty) returns (stream Update);
rpc Stats (stream StatsUpdate) returns (google.protobuf.Empty);
rpc Config(ConfigurationRequest) returns (Configuration);
rpc Updates(google.protobuf.Empty) returns (stream Update);
rpc Stats(stream StatsUpdate) returns (google.protobuf.Empty);
}
7 changes: 4 additions & 3 deletions worker/worker.proto
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
syntax = "proto3";
package worker;

import "google/protobuf/empty.proto";

message Worker {
Expand All @@ -24,7 +25,7 @@ message GetJobResponse {
}

service WorkerService {
rpc RegisterWorker (Worker) returns (google.protobuf.Empty) {}
rpc GetJob (Worker) returns (GetJobResponse) {}
rpc SetJobDone (JobStatus) returns (google.protobuf.Empty) {}
rpc RegisterWorker(Worker) returns (google.protobuf.Empty) {}
rpc GetJob(Worker) returns (GetJobResponse) {}
rpc SetJobDone(JobStatus) returns (google.protobuf.Empty) {}
}