Skip to content

Commit acc8404

Browse files
committed
implement firewall
1 parent b7eba83 commit acc8404

File tree

8 files changed

+483
-253
lines changed

8 files changed

+483
-253
lines changed

Cargo.lock

+195-216
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ Before running, you can use environment variables for configuration:
104104
* `DRY`. Set any value (for example `DRY=1`) to disable BPF. This is useful for inspecting the database.
105105
* `HTTPS_KEY_PATH` and `HTTPS_CERT_PATH`. By default, the variables are not set. Set the path to crypto stuff in order to enable them (https).
106106
* `DEBUGGER_INDEX_LEDGER_HASH`. By default it is disabled, set any value to enable indexing ledger hash, it may be cpu expensive.
107+
* `FIREWALL_INTERFACE`. Set interface name where firewall will be attached. Default is `eth0`.
107108

108109
Line in log `libbpf: BTF loading error: -22` may be ignored. It is because we wrote BPF module in Rust, which generate incompatible debug information.
109110

bpf-recorder/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ env_logger = { version = "0.10.0", default-features = false, optional = true }
3030
hex = { version = "0.4.3", optional = true }
3131
libbpf-sys = { version = "1.0.4", optional = true }
3232
libc = { version = "0.2.138", optional = true }
33+
network-types = { version = "0.0.4", optional = true }
3334

3435
serde = { version = "1.0", optional = true }
3536
serde_json = { version = "1.0", optional = true }
@@ -42,7 +43,7 @@ simulator = { path = "../simulator", optional = true }
4243

4344
[features]
4445
default = ["user"]
45-
kern = ["ebpf-kern/macros", "typenum"]
46+
kern = ["ebpf-kern/macros", "typenum", "network-types"]
4647
user = [
4748
"ebpf-user/macros",
4849
"ctrlc/termination",

0 commit comments

Comments
 (0)