Skip to content

Commit 7ef8205

Browse files
fix: caddy cannot accept connections (#262)
* fix: caddy cannot accept connections * chore: deprecate -D__REMOVE_BPF_PRINTK --------- Co-authored-by: dae-bot[bot] <136105375+dae-bot[bot]@users.noreply.github.com>
1 parent f5d713f commit 7ef8205

File tree

7 files changed

+8
-21
lines changed

7 files changed

+8
-21
lines changed

.github/workflows/prerelease.yml

-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ jobs:
102102
mkdir -p ./build/
103103
export CGO_ENABLED=0
104104
export GOFLAGS="-trimpath -modcacherw"
105-
export CFLAGS="-D__REMOVE_BPF_PRINTK"
106105
export OUTPUT=build/dae-$ASSET_NAME
107106
export VERSION=${{ steps.get_version.outputs.VERSION }}
108107
export CLANG=clang-15

.github/workflows/release.yml

-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ jobs:
102102
mkdir -p ./build/
103103
export CGO_ENABLED=0
104104
export GOFLAGS="-trimpath -modcacherw"
105-
export CFLAGS="-D__REMOVE_BPF_PRINTK"
106105
export OUTPUT=build/dae-$ASSET_NAME
107106
export VERSION=${{ steps.get_version.outputs.VERSION }}
108107
export CLANG=clang-15

.github/workflows/seed-build.yml

-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ jobs:
118118
mkdir -p ./build/
119119
export CGO_ENABLED=0
120120
export GOFLAGS="-trimpath -modcacherw"
121-
export CFLAGS="-D__REMOVE_BPF_PRINTK"
122121
export OUTPUT=build/dae-$ASSET_NAME
123122
export VERSION=${{ steps.get_version.outputs.VERSION }}
124123
export CLANG=clang-15

control/bpf_utils.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ retryLoadBpf:
231231
if strings.Contains(err.Error(), "no BTF found for kernel version") {
232232
err = fmt.Errorf("%w: you should re-compile linux kernel with BTF configurations; see docs for more information", err)
233233
} else if strings.Contains(err.Error(), "unknown func bpf_trace_printk") {
234-
err = fmt.Errorf(`%w: please try to compile dae without bpf_printk; example of cross-compilation to arm64: make GOARCH=arm64 CGO_ENABLED=0 CFLAGS="-D__REMOVE_BPF_PRINTK"`, err)
234+
err = fmt.Errorf(`%w: please try to compile dae without bpf_printk"`, err)
235235
} else if strings.Contains(err.Error(), "unknown func bpf_probe_read") {
236236
err = fmt.Errorf(`%w: please re-compile linux kernel with CONFIG_BPF_EVENTS=y and CONFIG_KPROBE_EVENTS=y"`, err)
237237
}

control/kern/tproxy.c

+6-5
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,13 @@
1818
// #define __DEBUG_ROUTING
1919
// #define __PRINT_ROUTING_RESULT
2020
// #define __PRINT_SETUP_PROCESS_CONNNECTION
21-
// #define __REMOVE_BPF_PRINTK
21+
// #define __DEBUG
2222
// #define __UNROLL_ROUTE_LOOP
2323

24+
#ifndef __DEBUG
25+
#undef bpf_printk
26+
#define bpf_printk(...) (void)0
27+
#endif
2428
// #define likely(x) x
2529
// #define unlikely(x) x
2630
#define likely(x) __builtin_expect((x), 1)
@@ -1362,10 +1366,6 @@ int tproxy_lan_ingress(struct __sk_buff *skb) {
13621366

13631367
sk = bpf_skc_lookup_tcp(skb, &tuple, tuple_size, BPF_F_CURRENT_NETNS, 0);
13641368
if (sk) {
1365-
if (tuples.dport == bpf_ntohs(445)) {
1366-
// samba. It is safe because the smb port cannot be customized.
1367-
goto sk_accept;
1368-
}
13691369
if (sk->state != BPF_TCP_LISTEN) {
13701370
is_old_conn = true;
13711371
goto assign;
@@ -1487,6 +1487,7 @@ int tproxy_lan_ingress(struct __sk_buff *skb) {
14871487
bpf_printk("bpf_sk_assign: %d, perhaps you have other TPROXY programs "
14881488
"(such as v2ray) running?",
14891489
ret);
1490+
return TC_ACT_OK;
14901491
} else {
14911492
bpf_printk("bpf_sk_assign: %d", ret);
14921493
}

docs/en/troubleshooting.md

+1-11
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
# Troubleshooting
22

3-
## Unknown bpf_trace_printk
4-
5-
```console
6-
invalid argument: unknown func bpf_trace_printk
7-
```
8-
9-
Solution:
10-
11-
Compile dae with CFLAG `-D__REMOVE_BPF_PRINTK`. See [build-by-yourself](user-guide/build-by-yourself.md).
12-
133
## No network after `dae suspend`
144

155
Do not set dae as the DNS in DHCP setting. For example, you can set `223.5.5.5` as DNS in your DHCP setting.
@@ -77,4 +67,4 @@ If you use `clang-13` to compile dae, you may encounter this problem.
7767
There are ways to resolve it:
7868

7969
1. Method 1: Use `clang-15` or higher versions to compile dae. Or just download dae from [releases](https://github.com/daeuniverse/dae/releases).
80-
2. Method 2: Add CFLAGS `-D__UNROLL_ROUTE_LOOP` while compiling. However, it will increse memory occupation (or swap space) at the eBPF loading stage (about 180MB). For example, compile dae to ARM64 using `make CGO_ENABLED=0 GOARCH=arm64 CFLAGS="-D__UNROLL_ROUTE_LOOP -D__REMOVE_BPF_PRINTK"`.
70+
2. Method 2: Add CFLAGS `-D__UNROLL_ROUTE_LOOP` while compiling. However, it will increse memory occupation (or swap space) at the eBPF loading stage (about 180MB). For example, compile dae to ARM64 using `make CGO_ENABLED=0 GOARCH=arm64 CFLAGS="-D__UNROLL_ROUTE_LOOP"`.

docs/en/user-guide/build-by-yourself.md

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ cd dae
1919
git submodule update --init
2020
## Minimal dependency build
2121
make GOFLAGS="-buildvcs=false" \
22-
CFLAGS="-D__REMOVE_BPF_PRINTK" \
2322
CC=clang
2423

2524
## Normal build

0 commit comments

Comments
 (0)