mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-08-31 21:44:03 +03:00
REPOSITORY / ScuroNeko/mtg
Compare commits
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1a81efcb6e | ||
|
|
2544c521ed | ||
|
|
3a68ea5f2d | ||
|
|
dbced77566 | ||
|
|
f4f969e702 | ||
|
|
e8368f7645 | ||
|
|
38abee7d7f | ||
|
|
a3663fe8b5 | ||
|
|
2aa3321bd4 | ||
|
|
3793558c4c | ||
|
|
b6427ee321 | ||
|
|
0c9fa5e710 | ||
|
|
1fcec38aea | ||
|
|
89930631cf | ||
|
|
eedee63143 | ||
|
|
73c6a3aa37 | ||
|
|
e54d9d60d3 | ||
|
|
db2e6031a3 | ||
|
|
4b8da719ae | ||
|
|
a2de52f071 | ||
|
|
b926a0590c | ||
|
|
58e8c8f982 | ||
|
|
4642546b35 | ||
|
|
4627910238 | ||
|
|
8b3c622ea6 | ||
|
|
9d43c2d759 | ||
|
|
0840c7e3e5 | ||
|
|
de48e177b1 | ||
|
|
3ed09146b9 | ||
|
|
018bd2fdc1 | ||
|
|
0ad3a06863 | ||
|
|
d3a090d6b4 | ||
|
|
1725a0d721 | ||
|
|
87988326ab | ||
|
|
ec271baab0 | ||
|
|
139db15e83 | ||
|
|
0c030646f9 | ||
|
|
822560bede | ||
|
|
9917f61bc8 | ||
|
|
735466b90d | ||
|
|
6b51de8305 | ||
|
|
7b62e06e36 | ||
|
|
2b07c0037e | ||
|
|
450381ee16 | ||
|
|
46c33f1532 | ||
|
|
f355512aa6 | ||
|
|
289bb283b1 | ||
|
|
836090ebdf | ||
|
|
01402bdba2 | ||
|
|
026ec74dfd | ||
|
|
cc4b6ce2f4 | ||
|
|
9dfd992c1d | ||
|
|
80213ad35d | ||
|
|
d32e8e8b97 | ||
|
|
60c57c2306 | ||
|
|
0edd5e6f92 | ||
|
|
a8e4acb6f8 | ||
|
|
27d10e6820 | ||
|
|
b47e13556e | ||
|
|
de81ed565d | ||
|
|
006fba1046 | ||
|
|
7b333ed833 | ||
|
|
5adfee5dd4 | ||
|
|
de89de2ad6 | ||
|
|
b0d37de0ec | ||
|
|
0cb25ba7ff | ||
|
|
614acd7303 | ||
|
|
4f5368aa2a | ||
|
|
cfb5fe66be | ||
|
|
fb390d3417 | ||
|
|
f0ae4ce290 | ||
|
|
b6b900e430 | ||
|
|
8154f65e0e | ||
|
|
a60523fed0 | ||
|
|
63b147c287 | ||
|
|
21c0d18c7c | ||
|
|
8f0bf47d56 |
@@ -119,6 +119,39 @@ jobs:
|
|||||||
- name: Run linter
|
- name: Run linter
|
||||||
run: mise tasks run lint
|
run: mise tasks run lint
|
||||||
|
|
||||||
|
artifacts:
|
||||||
|
name: Build release artifacts
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 20
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
- uses: jdx/mise-action@v3
|
||||||
|
name: Install mise
|
||||||
|
|
||||||
|
- name: Cache Go modules
|
||||||
|
uses: actions/cache@v5
|
||||||
|
with:
|
||||||
|
path: ~/go/pkg/mod
|
||||||
|
key: ${{ runner.os }}-gomod-${{ hashFiles('go.sum') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-gomod-
|
||||||
|
|
||||||
|
- name: Cache cross-compilation build
|
||||||
|
uses: actions/cache@v5
|
||||||
|
with:
|
||||||
|
path: ~/.cache/go-build
|
||||||
|
key: ${{ runner.os }}-goreleaser-${{ hashFiles('go.sum') }}-${{ hashFiles('**/*.go') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-goreleaser-${{ hashFiles('go.sum') }}-
|
||||||
|
${{ runner.os }}-goreleaser-
|
||||||
|
|
||||||
|
- name: Run release
|
||||||
|
run: mise tasks run release
|
||||||
|
|
||||||
docker:
|
docker:
|
||||||
name: Docker
|
name: Docker
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
@@ -45,11 +45,13 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v6
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
# Initializes the CodeQL tools for scanning.
|
# Initializes the CodeQL tools for scanning.
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
uses: github/codeql-action/init@v1
|
uses: github/codeql-action/init@v4
|
||||||
with:
|
with:
|
||||||
languages: ${{ matrix.language }}
|
languages: ${{ matrix.language }}
|
||||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||||
@@ -60,7 +62,7 @@ jobs:
|
|||||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||||
# If this step fails, then you should remove it and run the build manually (see below)
|
# If this step fails, then you should remove it and run the build manually (see below)
|
||||||
- name: Autobuild
|
- name: Autobuild
|
||||||
uses: github/codeql-action/autobuild@v1
|
uses: github/codeql-action/autobuild@v4
|
||||||
|
|
||||||
# ℹ️ Command-line programs to run using the OS shell.
|
# ℹ️ Command-line programs to run using the OS shell.
|
||||||
# 📚 https://git.io/JvXDl
|
# 📚 https://git.io/JvXDl
|
||||||
@@ -74,4 +76,4 @@ jobs:
|
|||||||
# make release
|
# make release
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
- name: Perform CodeQL Analysis
|
||||||
uses: github/codeql-action/analyze@v1
|
uses: github/codeql-action/analyze@v4
|
||||||
|
|||||||
@@ -16,6 +16,12 @@ sources = ["**/*.go", "go.mod", "go.sum"]
|
|||||||
outputs = ["mtg"]
|
outputs = ["mtg"]
|
||||||
run = "go build"
|
run = "go build"
|
||||||
|
|
||||||
|
[tasks."build:prof"]
|
||||||
|
description = "Build binary with profiling enabled"
|
||||||
|
sources = ["**/*.go", "go.mod", "go.sum"]
|
||||||
|
outputs = ["mtg"]
|
||||||
|
run = "go build -tags prof"
|
||||||
|
|
||||||
[tasks.update]
|
[tasks.update]
|
||||||
description = "Update dependencies"
|
description = "Update dependencies"
|
||||||
run = [
|
run = [
|
||||||
|
|||||||
+16
-2
@@ -5,6 +5,19 @@ FROM golang:1.26-alpine AS build
|
|||||||
|
|
||||||
ENV CGO_ENABLED=0
|
ENV CGO_ENABLED=0
|
||||||
|
|
||||||
|
# this is done for backward compatibility: before that we mounted a config
|
||||||
|
# into /config.toml. Some application allow mounting directories only,
|
||||||
|
# so it makes problems. So, instead we are going to do 2 steps:
|
||||||
|
# 1. Create /config/config.toml as a symlink to /config.toml
|
||||||
|
# 2. Force /mtg to use /config/config.toml
|
||||||
|
#
|
||||||
|
# it helps in both ways: users with directories could use /config directory
|
||||||
|
# and overlap a symlink by their bind mount. Old users could continue using
|
||||||
|
# /config.toml as a real config.
|
||||||
|
RUN set -x \
|
||||||
|
&& mkdir -p /config \
|
||||||
|
&& ln -sv /config.toml /config/config.toml
|
||||||
|
|
||||||
RUN --mount=type=cache,target=/var/cache/apk \
|
RUN --mount=type=cache,target=/var/cache/apk \
|
||||||
set -x \
|
set -x \
|
||||||
&& apk --update add \
|
&& apk --update add \
|
||||||
@@ -20,7 +33,7 @@ RUN go mod download
|
|||||||
COPY . /app
|
COPY . /app
|
||||||
|
|
||||||
RUN set -x \
|
RUN set -x \
|
||||||
&& version="$(git describe --exact-match HEAD 2>/dev/null || git describe --tags --always)" \
|
&& version="$(git describe --exact-match HEAD 2>/dev/null || git describe --tags --always 2>/dev/null || echo dev)" \
|
||||||
&& go build \
|
&& go build \
|
||||||
-trimpath \
|
-trimpath \
|
||||||
-mod=readonly \
|
-mod=readonly \
|
||||||
@@ -35,8 +48,9 @@ RUN set -x \
|
|||||||
FROM scratch
|
FROM scratch
|
||||||
|
|
||||||
ENTRYPOINT ["/mtg"]
|
ENTRYPOINT ["/mtg"]
|
||||||
CMD ["run", "/config.toml"]
|
CMD ["run", "/config/config.toml"]
|
||||||
|
|
||||||
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
||||||
COPY --from=build /app/mtg /mtg
|
COPY --from=build /app/mtg /mtg
|
||||||
COPY --from=build /app/example.config.toml /config.toml
|
COPY --from=build /app/example.config.toml /config.toml
|
||||||
|
COPY --from=build /config /config
|
||||||
|
|||||||
@@ -29,6 +29,8 @@ are the most notable:
|
|||||||
* [Official](https://github.com/TelegramMessenger/MTProxy)
|
* [Official](https://github.com/TelegramMessenger/MTProxy)
|
||||||
* [Python](https://github.com/alexbers/mtprotoproxy)
|
* [Python](https://github.com/alexbers/mtprotoproxy)
|
||||||
* [Erlang](https://github.com/seriyps/mtproto_proxy)
|
* [Erlang](https://github.com/seriyps/mtproto_proxy)
|
||||||
|
* [Teleproxy (C)](https://github.com/teleproxy/teleproxy)
|
||||||
|
* [mtproto.zig (Zig)](https://github.com/sleep3r/mtproto.zig)
|
||||||
* [Telemt (Rust)](https://github.com/telemt/telemt)
|
* [Telemt (Rust)](https://github.com/telemt/telemt)
|
||||||
|
|
||||||
You can use any of these. They work great and all implementations have
|
You can use any of these. They work great and all implementations have
|
||||||
@@ -91,6 +93,9 @@ that probably matter.
|
|||||||
software. I also believe that in the case of throwout proxies, this
|
software. I also believe that in the case of throwout proxies, this
|
||||||
the feature is a useless luxury.
|
the feature is a useless luxury.
|
||||||
|
|
||||||
|
This is very controversial topic. Please read [rationale (in russian)](https://github.com/9seconds/mtg/issues/376#issuecomment-4118726699)
|
||||||
|
and use [mtg-multi](https://github.com/dolonet/mtg-multi) fork if you are disagree with.
|
||||||
|
|
||||||
* **No adtag support**
|
* **No adtag support**
|
||||||
|
|
||||||
Please read [Version 2](#version-2) chapter.
|
Please read [Version 2](#version-2) chapter.
|
||||||
@@ -301,6 +306,38 @@ For example, you've bought a VPS from [Digital
|
|||||||
Ocean](https://www.digitalocean.com/). Then it might be a good idea to
|
Ocean](https://www.digitalocean.com/). Then it might be a good idea to
|
||||||
generate a secret for _digitalocean.com_ then.
|
generate a secret for _digitalocean.com_ then.
|
||||||
|
|
||||||
|
### Check configuration
|
||||||
|
|
||||||
|
There is a special command for secret verification:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ mtg doctor /path/to/my/config.toml
|
||||||
|
Deprecated options
|
||||||
|
✅ All good
|
||||||
|
Time skewness
|
||||||
|
✅ Time drift is -607.048µs, but tolerate-time-skewness is 5s
|
||||||
|
Validate native network connectivity
|
||||||
|
✅ DC 1
|
||||||
|
✅ DC 2
|
||||||
|
✅ DC 3
|
||||||
|
✅ DC 4
|
||||||
|
✅ DC 5
|
||||||
|
✅ DC 203
|
||||||
|
Validate network connectivity with proxy socks5://127.0.0.1:1080
|
||||||
|
✅ DC 1
|
||||||
|
✅ DC 2
|
||||||
|
✅ DC 3
|
||||||
|
✅ DC 4
|
||||||
|
✅ DC 5
|
||||||
|
✅ DC 203
|
||||||
|
Validate fronting domain connectivity
|
||||||
|
✅ xx.xx.xx.xx:yyy is reachable
|
||||||
|
Validate SNI-DNS match
|
||||||
|
✅ IP address xx.xx.xx.xx matches secret hostname <REDACTED>
|
||||||
|
```
|
||||||
|
|
||||||
|
It aims to find out possible inconsistencies and problems with your
|
||||||
|
configuration. It makes sense to run it before executing any relevant commands.
|
||||||
|
|
||||||
### Simple run mode
|
### Simple run mode
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ type StableBloomFilterTestSuite struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (suite *StableBloomFilterTestSuite) TestOp() {
|
func (suite *StableBloomFilterTestSuite) TestOp() {
|
||||||
filter := antireplay.NewStableBloomFilter(500, 0.001)
|
filter := antireplay.NewStableBloomFilter(100000, 0.001)
|
||||||
|
|
||||||
suite.False(filter.SeenBefore([]byte{1, 2, 3}))
|
suite.False(filter.SeenBefore([]byte{1, 2, 3}))
|
||||||
suite.False(filter.SeenBefore([]byte{4, 5, 6}))
|
suite.False(filter.SeenBefore([]byte{4, 5, 6}))
|
||||||
|
|||||||
BIN
Binary file not shown.
@@ -0,0 +1,30 @@
|
|||||||
|
package essentials
|
||||||
|
|
||||||
|
// TelegramCoreAddresses are publicly known addresses of Telegram core network.
|
||||||
|
var TelegramCoreAddresses = map[int][]string{
|
||||||
|
1: {
|
||||||
|
"149.154.175.50:443",
|
||||||
|
"[2001:b28:f23d:f001::a]:443",
|
||||||
|
},
|
||||||
|
2: {
|
||||||
|
"149.154.167.51:443",
|
||||||
|
"95.161.76.100:443",
|
||||||
|
"[2001:67c:04e8:f002::a]:443",
|
||||||
|
},
|
||||||
|
3: {
|
||||||
|
"149.154.175.100:443",
|
||||||
|
"[2001:b28:f23d:f003::a]:443",
|
||||||
|
},
|
||||||
|
4: {
|
||||||
|
"149.154.167.91:443",
|
||||||
|
"[2001:67c:04e8:f004::a]:443",
|
||||||
|
},
|
||||||
|
5: {
|
||||||
|
"149.154.171.5:443",
|
||||||
|
"[2001:b28:f23f:f005::a]:443",
|
||||||
|
},
|
||||||
|
203: {
|
||||||
|
"91.105.192.100:443",
|
||||||
|
"[2a0a:f280:0203:000a:5000:0000:0000:0100]:443",
|
||||||
|
},
|
||||||
|
}
|
||||||
@@ -38,7 +38,7 @@ func (e EventStream) Send(ctx context.Context, evt mtglib.Event) {
|
|||||||
select {
|
select {
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
case <-e.ctx.Done():
|
case <-e.ctx.Done():
|
||||||
case e.chans[int(chanNo)%len(e.chans)] <- evt:
|
case e.chans[chanNo%uint32(len(e.chans))] <- evt:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -48,6 +48,13 @@ concurrency = 8192
|
|||||||
# Only ipv4 connectivity is used
|
# Only ipv4 connectivity is used
|
||||||
prefer-ip = "prefer-ipv6"
|
prefer-ip = "prefer-ipv6"
|
||||||
|
|
||||||
|
# Public IP addresses of this server. Used by 'mtg access' to generate
|
||||||
|
# proxy links and by 'mtg doctor' to validate SNI-DNS match.
|
||||||
|
# If not set, mtg tries to detect them automatically via ifconfig.co.
|
||||||
|
# Set these if ifconfig.co is unreachable from your server.
|
||||||
|
# public-ipv4 = "1.2.3.4"
|
||||||
|
# public-ipv6 = "2001:db8::1"
|
||||||
|
|
||||||
# If this setting is set, then mtg will try to get proxy updates from Telegram
|
# If this setting is set, then mtg will try to get proxy updates from Telegram
|
||||||
# Usually this is completely fine to have it disabled, because mtg has a list
|
# Usually this is completely fine to have it disabled, because mtg has a list
|
||||||
# of some core proxies hardcoded.
|
# of some core proxies hardcoded.
|
||||||
|
|||||||
@@ -11,11 +11,11 @@ require (
|
|||||||
github.com/d4l3k/messagediff v1.2.1 // indirect
|
github.com/d4l3k/messagediff v1.2.1 // indirect
|
||||||
github.com/jarcoal/httpmock v1.0.8
|
github.com/jarcoal/httpmock v1.0.8
|
||||||
github.com/mccutchen/go-httpbin v1.1.1
|
github.com/mccutchen/go-httpbin v1.1.1
|
||||||
github.com/panjf2000/ants/v2 v2.11.6
|
github.com/panjf2000/ants/v2 v2.12.0
|
||||||
github.com/prometheus/client_golang v1.23.2
|
github.com/prometheus/client_golang v1.23.2
|
||||||
github.com/prometheus/common v0.67.5 // indirect
|
github.com/prometheus/common v0.67.5 // indirect
|
||||||
github.com/prometheus/procfs v0.20.1 // indirect
|
github.com/prometheus/procfs v0.20.1 // indirect
|
||||||
github.com/rs/zerolog v1.34.0
|
github.com/rs/zerolog v1.35.0
|
||||||
github.com/smira/go-statsd v1.3.4
|
github.com/smira/go-statsd v1.3.4
|
||||||
github.com/stretchr/objx v0.5.2 // indirect
|
github.com/stretchr/objx v0.5.2 // indirect
|
||||||
github.com/stretchr/testify v1.11.1
|
github.com/stretchr/testify v1.11.1
|
||||||
@@ -27,8 +27,9 @@ require (
|
|||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
|
github.com/beevik/ntp v1.5.0
|
||||||
github.com/ncruces/go-dns v1.3.2
|
github.com/ncruces/go-dns v1.3.2
|
||||||
github.com/pelletier/go-toml/v2 v2.2.4
|
github.com/pelletier/go-toml/v2 v2.3.0
|
||||||
github.com/pires/go-proxyproto v0.11.0
|
github.com/pires/go-proxyproto v0.11.0
|
||||||
github.com/things-go/go-socks5 v0.1.0
|
github.com/things-go/go-socks5 v0.1.0
|
||||||
github.com/txthinking/socks5 v0.0.0-20251011041537-5c31f201a10e
|
github.com/txthinking/socks5 v0.0.0-20251011041537-5c31f201a10e
|
||||||
|
|||||||
@@ -12,18 +12,18 @@ github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPd
|
|||||||
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
|
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
|
||||||
github.com/babolivier/go-doh-client v0.0.0-20201028162107-a76cff4cb8b6 h1:4NNbNM2Iq/k57qEu7WfL67UrbPq1uFWxW4qODCohi+0=
|
github.com/babolivier/go-doh-client v0.0.0-20201028162107-a76cff4cb8b6 h1:4NNbNM2Iq/k57qEu7WfL67UrbPq1uFWxW4qODCohi+0=
|
||||||
github.com/babolivier/go-doh-client v0.0.0-20201028162107-a76cff4cb8b6/go.mod h1:J29hk+f9lJrblVIfiJOtTFk+OblBawmib4uz/VdKzlg=
|
github.com/babolivier/go-doh-client v0.0.0-20201028162107-a76cff4cb8b6/go.mod h1:J29hk+f9lJrblVIfiJOtTFk+OblBawmib4uz/VdKzlg=
|
||||||
|
github.com/beevik/ntp v1.5.0 h1:y+uj/JjNwlY2JahivxYvtmv4ehfi3h74fAuABB9ZSM4=
|
||||||
|
github.com/beevik/ntp v1.5.0/go.mod h1:mJEhBrwT76w9D+IfOEGvuzyuudiW9E52U2BaTrMOYow=
|
||||||
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
|
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
|
||||||
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
|
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
|
||||||
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
|
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
|
||||||
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
|
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
|
||||||
github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=
|
|
||||||
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
|
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
|
||||||
github.com/d4l3k/messagediff v1.2.1 h1:ZcAIMYsUg0EAp9X+tt8/enBE/Q8Yd5kzPynLyKptt9U=
|
github.com/d4l3k/messagediff v1.2.1 h1:ZcAIMYsUg0EAp9X+tt8/enBE/Q8Yd5kzPynLyKptt9U=
|
||||||
github.com/d4l3k/messagediff v1.2.1/go.mod h1:Oozbb1TVXFac9FtSIxHBMnBCq2qeH/2KkEQxENCrlLo=
|
github.com/d4l3k/messagediff v1.2.1/go.mod h1:Oozbb1TVXFac9FtSIxHBMnBCq2qeH/2KkEQxENCrlLo=
|
||||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
|
|
||||||
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
|
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
|
||||||
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
|
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
|
||||||
github.com/hexops/gotextdiff v1.0.3 h1:gitA9+qJrrTCsiCl7+kh75nPqQt1cx4ZkudSTLoUqJM=
|
github.com/hexops/gotextdiff v1.0.3 h1:gitA9+qJrrTCsiCl7+kh75nPqQt1cx4ZkudSTLoUqJM=
|
||||||
@@ -38,11 +38,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
|
|||||||
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
|
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
|
||||||
github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
|
github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
|
||||||
github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
|
github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
|
||||||
github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg=
|
|
||||||
github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHPsaIE=
|
github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHPsaIE=
|
||||||
github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8=
|
github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8=
|
||||||
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
|
|
||||||
github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
|
||||||
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
|
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
|
||||||
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
||||||
github.com/mccutchen/go-httpbin v1.1.1 h1:aEws49HEJEyXHLDnshQVswfUlCVoS8g6h9YaDyaW7RE=
|
github.com/mccutchen/go-httpbin v1.1.1 h1:aEws49HEJEyXHLDnshQVswfUlCVoS8g6h9YaDyaW7RE=
|
||||||
@@ -53,15 +50,14 @@ github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq
|
|||||||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ=
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ=
|
||||||
github.com/ncruces/go-dns v1.3.2 h1:kBLuUZBgkQ4qF4WDXZRQ4rG0Gk6sLVJQ5tESkWrxUa0=
|
github.com/ncruces/go-dns v1.3.2 h1:kBLuUZBgkQ4qF4WDXZRQ4rG0Gk6sLVJQ5tESkWrxUa0=
|
||||||
github.com/ncruces/go-dns v1.3.2/go.mod h1:tuzixNY8PY/M7yUzcvRbUaeLs3ifIdydpi5H2bfRU+s=
|
github.com/ncruces/go-dns v1.3.2/go.mod h1:tuzixNY8PY/M7yUzcvRbUaeLs3ifIdydpi5H2bfRU+s=
|
||||||
github.com/panjf2000/ants/v2 v2.11.6 h1:JKsoIUukIoCO0sP0gcOqdyoXmpyKXuU6fC57rODtpug=
|
github.com/panjf2000/ants/v2 v2.12.0 h1:u9JhESo83i/GkZnhfTNuFMMWcNt7mnV1bGJ6FT4wXH8=
|
||||||
github.com/panjf2000/ants/v2 v2.11.6/go.mod h1:8u92CYMUc6gyvTIw8Ru7Mt7+/ESnJahz5EVtqfrilek=
|
github.com/panjf2000/ants/v2 v2.12.0/go.mod h1:tSQuaNQ6r6NRhPt+IZVUevvDyFMTs+eS4ztZc52uJTY=
|
||||||
github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc=
|
github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc=
|
||||||
github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ=
|
github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ=
|
||||||
github.com/pelletier/go-toml/v2 v2.2.4 h1:mye9XuhQ6gvn5h28+VilKrrPoQVanw5PMw/TB0t5Ec4=
|
github.com/pelletier/go-toml/v2 v2.3.0 h1:k59bC/lIZREW0/iVaQR8nDHxVq8OVlIzYCOJf421CaM=
|
||||||
github.com/pelletier/go-toml/v2 v2.2.4/go.mod h1:2gIqNv+qfxSVS7cM2xJQKtLSTLUE9V8t9Stt+h56mCY=
|
github.com/pelletier/go-toml/v2 v2.3.0/go.mod h1:2gIqNv+qfxSVS7cM2xJQKtLSTLUE9V8t9Stt+h56mCY=
|
||||||
github.com/pires/go-proxyproto v0.11.0 h1:gUQpS85X/VJMdUsYyEgyn59uLJvGqPhJV5YvG68wXH4=
|
github.com/pires/go-proxyproto v0.11.0 h1:gUQpS85X/VJMdUsYyEgyn59uLJvGqPhJV5YvG68wXH4=
|
||||||
github.com/pires/go-proxyproto v0.11.0/go.mod h1:ZKAAyp3cgy5Y5Mo4n9AlScrkCZwUy0g3Jf+slqQVcuU=
|
github.com/pires/go-proxyproto v0.11.0/go.mod h1:ZKAAyp3cgy5Y5Mo4n9AlScrkCZwUy0g3Jf+slqQVcuU=
|
||||||
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
|
||||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||||
github.com/prometheus/client_golang v1.23.2 h1:Je96obch5RDVy3FDMndoUsjAhG5Edi49h0RJWRi/o0o=
|
github.com/prometheus/client_golang v1.23.2 h1:Je96obch5RDVy3FDMndoUsjAhG5Edi49h0RJWRi/o0o=
|
||||||
@@ -74,9 +70,8 @@ github.com/prometheus/procfs v0.20.1 h1:XwbrGOIplXW/AU3YhIhLODXMJYyC1isLFfYCsTEy
|
|||||||
github.com/prometheus/procfs v0.20.1/go.mod h1:o9EMBZGRyvDrSPH1RqdxhojkuXstoe4UlK79eF5TGGo=
|
github.com/prometheus/procfs v0.20.1/go.mod h1:o9EMBZGRyvDrSPH1RqdxhojkuXstoe4UlK79eF5TGGo=
|
||||||
github.com/rogpeppe/go-internal v1.14.1 h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0tI/otEQ=
|
github.com/rogpeppe/go-internal v1.14.1 h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0tI/otEQ=
|
||||||
github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7so1lCWt35ZSgc=
|
github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7so1lCWt35ZSgc=
|
||||||
github.com/rs/xid v1.6.0/go.mod h1:7XoLgs4eV+QndskICGsho+ADou8ySMSjJKDIan90Nz0=
|
github.com/rs/zerolog v1.35.0 h1:VD0ykx7HMiMJytqINBsKcbLS+BJ4WYjz+05us+LRTdI=
|
||||||
github.com/rs/zerolog v1.34.0 h1:k43nTLIwcTVQAncfCw4KZ2VY6ukYoZaBPNOE8txlOeY=
|
github.com/rs/zerolog v1.35.0/go.mod h1:EjML9kdfa/RMA7h/6z6pYmq1ykOuA8/mjWaEvGI+jcw=
|
||||||
github.com/rs/zerolog v1.34.0/go.mod h1:bJsvje4Z08ROH4Nhs5iH600c3IkWhwp44iRc54W6wYQ=
|
|
||||||
github.com/smira/go-statsd v1.3.4 h1:kBYWcLSGT+qC6JVbvfz48kX7mQys32fjDOPrfmsSx2c=
|
github.com/smira/go-statsd v1.3.4 h1:kBYWcLSGT+qC6JVbvfz48kX7mQys32fjDOPrfmsSx2c=
|
||||||
github.com/smira/go-statsd v1.3.4/go.mod h1:RjdsESPgDODtg1VpVVf9MJrEW2Hw0wtRNbmB1CAhu6A=
|
github.com/smira/go-statsd v1.3.4/go.mod h1:RjdsESPgDODtg1VpVVf9MJrEW2Hw0wtRNbmB1CAhu6A=
|
||||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
@@ -131,10 +126,8 @@ golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7w
|
|||||||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
|
||||||
golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
|
||||||
golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo=
|
golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo=
|
||||||
golang.org/x/sys v0.42.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
|
golang.org/x/sys v0.42.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
|
||||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||||
|
|||||||
+8
-47
@@ -1,22 +1,16 @@
|
|||||||
package cli
|
package cli
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"github.com/9seconds/mtg/v2/essentials"
|
|
||||||
"github.com/9seconds/mtg/v2/internal/config"
|
"github.com/9seconds/mtg/v2/internal/config"
|
||||||
"github.com/9seconds/mtg/v2/internal/utils"
|
"github.com/9seconds/mtg/v2/internal/utils"
|
||||||
"github.com/9seconds/mtg/v2/mtglib"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type accessResponse struct {
|
type accessResponse struct {
|
||||||
@@ -65,7 +59,10 @@ func (a *Access) Run(cli *CLI, version string) error {
|
|||||||
wg.Go(func() {
|
wg.Go(func() {
|
||||||
ip := a.PublicIPv4
|
ip := a.PublicIPv4
|
||||||
if ip == nil {
|
if ip == nil {
|
||||||
ip = a.getIP(ntw, "tcp4")
|
ip = conf.PublicIPv4.Get(nil)
|
||||||
|
}
|
||||||
|
if ip == nil {
|
||||||
|
ip = getIP(ntw, "tcp4")
|
||||||
}
|
}
|
||||||
|
|
||||||
if ip != nil {
|
if ip != nil {
|
||||||
@@ -77,7 +74,10 @@ func (a *Access) Run(cli *CLI, version string) error {
|
|||||||
wg.Go(func() {
|
wg.Go(func() {
|
||||||
ip := a.PublicIPv6
|
ip := a.PublicIPv6
|
||||||
if ip == nil {
|
if ip == nil {
|
||||||
ip = a.getIP(ntw, "tcp6")
|
ip = conf.PublicIPv6.Get(nil)
|
||||||
|
}
|
||||||
|
if ip == nil {
|
||||||
|
ip = getIP(ntw, "tcp6")
|
||||||
}
|
}
|
||||||
|
|
||||||
if ip != nil {
|
if ip != nil {
|
||||||
@@ -100,45 +100,6 @@ func (a *Access) Run(cli *CLI, version string) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *Access) getIP(ntw mtglib.Network, protocol string) net.IP {
|
|
||||||
dialer := ntw.NativeDialer()
|
|
||||||
client := ntw.MakeHTTPClient(func(ctx context.Context, network, address string) (essentials.Conn, error) {
|
|
||||||
conn, err := dialer.DialContext(ctx, protocol, address)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return essentials.WrapNetConn(conn), err
|
|
||||||
})
|
|
||||||
|
|
||||||
req, err := http.NewRequest(http.MethodGet, "https://ifconfig.co", nil) //nolint: noctx
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
req.Header.Add("Accept", "text/plain")
|
|
||||||
|
|
||||||
resp, err := client.Do(req)
|
|
||||||
if err != nil {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
if resp.StatusCode != http.StatusOK {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
defer func() {
|
|
||||||
io.Copy(io.Discard, resp.Body) //nolint: errcheck
|
|
||||||
resp.Body.Close() //nolint: errcheck
|
|
||||||
}()
|
|
||||||
|
|
||||||
data, err := io.ReadAll(resp.Body)
|
|
||||||
if err != nil {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
return net.ParseIP(strings.TrimSpace(string(data)))
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a *Access) makeURLs(conf *config.Config, ip net.IP) *accessResponseURLs {
|
func (a *Access) makeURLs(conf *config.Config, ip net.IP) *accessResponseURLs {
|
||||||
if ip == nil {
|
if ip == nil {
|
||||||
return nil
|
return nil
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import "github.com/alecthomas/kong"
|
|||||||
|
|
||||||
type CLI struct {
|
type CLI struct {
|
||||||
GenerateSecret GenerateSecret `kong:"cmd,help='Generate new proxy secret'"`
|
GenerateSecret GenerateSecret `kong:"cmd,help='Generate new proxy secret'"`
|
||||||
|
Doctor Doctor `kong:"cmd,help='Check that proxy can run correctly'"`
|
||||||
Access Access `kong:"cmd,help='Print access information.'"`
|
Access Access `kong:"cmd,help='Print access information.'"`
|
||||||
Run Run `kong:"cmd,help='Run proxy.'"`
|
Run Run `kong:"cmd,help='Run proxy.'"`
|
||||||
SimpleRun SimpleRun `kong:"cmd,help='Run proxy without config file.'"`
|
SimpleRun SimpleRun `kong:"cmd,help='Run proxy without config file.'"`
|
||||||
|
|||||||
@@ -0,0 +1,375 @@
|
|||||||
|
package cli
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"maps"
|
||||||
|
"net"
|
||||||
|
"os"
|
||||||
|
"slices"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
"text/template"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/9seconds/mtg/v2/essentials"
|
||||||
|
"github.com/9seconds/mtg/v2/internal/config"
|
||||||
|
"github.com/9seconds/mtg/v2/internal/utils"
|
||||||
|
"github.com/9seconds/mtg/v2/mtglib"
|
||||||
|
"github.com/9seconds/mtg/v2/network/v2"
|
||||||
|
"github.com/beevik/ntp"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
tplError = template.Must(
|
||||||
|
template.New("").Parse(" ‼️ {{ .description }}: {{ .error }}\n"),
|
||||||
|
)
|
||||||
|
|
||||||
|
tplWDeprecatedConfig = template.Must(
|
||||||
|
template.New("").
|
||||||
|
Parse(` ⚠️ Option {{ .old | printf "%q" }}{{ if .old_section }} from section [{{ .old_section }}]{{ end }} is deprecated and will be removed in v{{ .when }}. Please use {{ .new | printf "%q" }}{{ if .new_section }} in [{{ .new_section }}] section{{ end }} instead.` + "\n"),
|
||||||
|
)
|
||||||
|
|
||||||
|
tplOTimeSkewness = template.Must(
|
||||||
|
template.New("").
|
||||||
|
Parse(" ✅ Time drift is {{ .drift }}, but tolerate-time-skewness is {{ .value }}\n"),
|
||||||
|
)
|
||||||
|
tplWTimeSkewness = template.Must(
|
||||||
|
template.New("").
|
||||||
|
Parse(" ⚠️ Time drift is {{ .drift }}, but tolerate-time-skewness is {{ .value }}. Please check ntp.\n"),
|
||||||
|
)
|
||||||
|
tplETimeSkewness = template.Must(
|
||||||
|
template.New("").
|
||||||
|
Parse(" ❌ Time drift is {{ .drift }}, but tolerate-time-skewness is {{ .value }}. You will get many rejected connections!\n"),
|
||||||
|
)
|
||||||
|
|
||||||
|
tplODCConnect = template.Must(
|
||||||
|
template.New("").Parse(" ✅ DC {{ .dc }}\n"),
|
||||||
|
)
|
||||||
|
tplEDCConnect = template.Must(
|
||||||
|
template.New("").Parse(" ❌ DC {{ .dc }}: {{ .error }}\n"),
|
||||||
|
)
|
||||||
|
|
||||||
|
tplODNSSNIMatch = template.Must(
|
||||||
|
template.New("").Parse(" ✅ IP address {{ .ip }} matches secret hostname {{ .hostname }}\n"),
|
||||||
|
)
|
||||||
|
tplEDNSSNIMatch = template.Must(
|
||||||
|
template.New("").Parse(" ❌ Hostname {{ .hostname }} {{ if .resolved }}is resolved to {{ .resolved }} addresses, not {{ if .ip4 }}{{ .ip4 }}{{ else }}{{ .ip6 }}{{ end }}{{ else }}cannot be resolved to any host{{ end }}\n"),
|
||||||
|
)
|
||||||
|
|
||||||
|
tplOFrontingDomain = template.Must(
|
||||||
|
template.New("").Parse(" ✅ {{ .address }} is reachable\n"),
|
||||||
|
)
|
||||||
|
tplEFrontingDomain = template.Must(
|
||||||
|
template.New("").Parse(" ❌ {{ .address }}: {{ .error }}\n"),
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
type Doctor struct {
|
||||||
|
conf *config.Config
|
||||||
|
|
||||||
|
ConfigPath string `kong:"arg,required,type='existingfile',help='Path to the configuration file.',name='config-path'"` //nolint: lll
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *Doctor) Run(cli *CLI, version string) error {
|
||||||
|
conf, err := utils.ReadConfig(d.ConfigPath)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("cannot init config: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
d.conf = conf
|
||||||
|
|
||||||
|
fmt.Println("Deprecated options")
|
||||||
|
everythingOK := d.checkDeprecatedConfig()
|
||||||
|
|
||||||
|
fmt.Println("Time skewness")
|
||||||
|
everythingOK = d.checkTimeSkewness() && everythingOK
|
||||||
|
|
||||||
|
resolver, err := network.GetDNS(conf.GetDNS())
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("cannot create DNS resolver: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
base := network.New(
|
||||||
|
resolver,
|
||||||
|
"",
|
||||||
|
conf.Network.Timeout.TCP.Get(10*time.Second),
|
||||||
|
conf.Network.Timeout.HTTP.Get(0),
|
||||||
|
conf.Network.Timeout.Idle.Get(0),
|
||||||
|
)
|
||||||
|
|
||||||
|
fmt.Println("Validate native network connectivity")
|
||||||
|
everythingOK = d.checkNetwork(base) && everythingOK
|
||||||
|
|
||||||
|
for _, url := range conf.Network.Proxies {
|
||||||
|
value, err := network.NewProxyNetwork(base, url.Get(nil))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Printf("Validate network connectivity with proxy %s\n", url.Get(nil))
|
||||||
|
everythingOK = d.checkNetwork(value) && everythingOK
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Println("Validate fronting domain connectivity")
|
||||||
|
everythingOK = d.checkFrontingDomain(base) && everythingOK
|
||||||
|
|
||||||
|
fmt.Println("Validate SNI-DNS match")
|
||||||
|
everythingOK = d.checkSecretHost(resolver, base) && everythingOK
|
||||||
|
|
||||||
|
if !everythingOK {
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *Doctor) checkDeprecatedConfig() bool {
|
||||||
|
ok := true
|
||||||
|
|
||||||
|
if d.conf.DomainFrontingIP.Value != nil {
|
||||||
|
ok = false
|
||||||
|
tplWDeprecatedConfig.Execute(os.Stdout, map[string]string{ //nolint: errcheck
|
||||||
|
"when": "2.3.0",
|
||||||
|
"old": "domain-fronting-ip",
|
||||||
|
"old_section": "",
|
||||||
|
"new": "ip",
|
||||||
|
"new_section": "domain-fronting",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if d.conf.DomainFrontingPort.Value != 0 {
|
||||||
|
ok = false
|
||||||
|
tplWDeprecatedConfig.Execute(os.Stdout, map[string]string{ //nolint: errcheck
|
||||||
|
"when": "2.3.0",
|
||||||
|
"old": "domain-fronting-port",
|
||||||
|
"old_section": "",
|
||||||
|
"new": "port",
|
||||||
|
"new_section": "domain-fronting",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if d.conf.DomainFrontingProxyProtocol.Value {
|
||||||
|
ok = false
|
||||||
|
tplWDeprecatedConfig.Execute(os.Stdout, map[string]string{ //nolint: errcheck
|
||||||
|
"when": "2.3.0",
|
||||||
|
"old": "domain-fronting-proxy-protocol",
|
||||||
|
"old_section": "",
|
||||||
|
"new": "proxy-protocol",
|
||||||
|
"new_section": "domain-fronting",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if d.conf.Network.DOHIP.Value != nil {
|
||||||
|
ok = false
|
||||||
|
tplWDeprecatedConfig.Execute(os.Stdout, map[string]string{ //nolint: errcheck
|
||||||
|
"when": "2.3.0",
|
||||||
|
"old": "doh-ip",
|
||||||
|
"old_section": "network",
|
||||||
|
"new": "dns",
|
||||||
|
"new_section": "network",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if ok {
|
||||||
|
fmt.Println(" ✅ All good")
|
||||||
|
}
|
||||||
|
|
||||||
|
return ok
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *Doctor) checkTimeSkewness() bool {
|
||||||
|
response, err := ntp.Query("0.pool.ntp.org")
|
||||||
|
if err != nil {
|
||||||
|
tplError.Execute(os.Stdout, map[string]any{ //nolint: errcheck
|
||||||
|
"description": "cannot access ntp pool",
|
||||||
|
"error": err,
|
||||||
|
})
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
skewness := response.ClockOffset.Abs()
|
||||||
|
confValue := d.conf.TolerateTimeSkewness.Get(mtglib.DefaultTolerateTimeSkewness)
|
||||||
|
diff := float64(skewness) / float64(confValue)
|
||||||
|
tplData := map[string]any{
|
||||||
|
"drift": response.ClockOffset,
|
||||||
|
"value": confValue,
|
||||||
|
}
|
||||||
|
|
||||||
|
switch {
|
||||||
|
case diff < 0.3:
|
||||||
|
tplOTimeSkewness.Execute(os.Stdout, tplData) //nolint: errcheck
|
||||||
|
return true
|
||||||
|
case diff < 0.7:
|
||||||
|
tplWTimeSkewness.Execute(os.Stdout, tplData) //nolint: errcheck
|
||||||
|
default:
|
||||||
|
tplETimeSkewness.Execute(os.Stdout, tplData) //nolint: errcheck
|
||||||
|
}
|
||||||
|
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *Doctor) checkNetwork(ntw mtglib.Network) bool {
|
||||||
|
dcs := slices.Collect(maps.Keys(essentials.TelegramCoreAddresses))
|
||||||
|
slices.Sort(dcs)
|
||||||
|
|
||||||
|
ok := true
|
||||||
|
|
||||||
|
for _, dc := range dcs {
|
||||||
|
err := d.checkNetworkAddresses(ntw, essentials.TelegramCoreAddresses[dc])
|
||||||
|
if err == nil {
|
||||||
|
tplODCConnect.Execute(os.Stdout, map[string]any{ //nolint: errcheck
|
||||||
|
"dc": dc,
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
tplEDCConnect.Execute(os.Stdout, map[string]any{ //nolint: errcheck
|
||||||
|
"dc": dc,
|
||||||
|
"error": err,
|
||||||
|
})
|
||||||
|
ok = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return ok
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *Doctor) checkNetworkAddresses(ntw mtglib.Network, addresses []string) error {
|
||||||
|
checkAddresses := []string{}
|
||||||
|
|
||||||
|
switch d.conf.PreferIP.Get("prefer-ip4") {
|
||||||
|
case "only-ipv4":
|
||||||
|
for _, addr := range addresses {
|
||||||
|
host, _, err := net.SplitHostPort(addr)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if ip := net.ParseIP(host); ip != nil && ip.To4() != nil {
|
||||||
|
checkAddresses = append(checkAddresses, addr)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case "only-ipv6":
|
||||||
|
for _, addr := range addresses {
|
||||||
|
host, _, err := net.SplitHostPort(addr)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if ip := net.ParseIP(host); ip != nil && ip.To4() == nil {
|
||||||
|
checkAddresses = append(checkAddresses, addr)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
checkAddresses = addresses
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(checkAddresses) == 0 {
|
||||||
|
return fmt.Errorf("no suitable addresses after IP version filtering")
|
||||||
|
}
|
||||||
|
|
||||||
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
var (
|
||||||
|
conn net.Conn
|
||||||
|
err error
|
||||||
|
)
|
||||||
|
|
||||||
|
for _, addr := range checkAddresses {
|
||||||
|
conn, err = ntw.DialContext(ctx, "tcp", addr)
|
||||||
|
if err != nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
conn.Close() //nolint: errcheck
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *Doctor) checkFrontingDomain(ntw mtglib.Network) bool {
|
||||||
|
host := d.conf.Secret.Host
|
||||||
|
if ip := d.conf.GetDomainFrontingIP(nil); ip != "" {
|
||||||
|
host = ip
|
||||||
|
}
|
||||||
|
|
||||||
|
port := d.conf.GetDomainFrontingPort(mtglib.DefaultDomainFrontingPort)
|
||||||
|
address := net.JoinHostPort(host, strconv.Itoa(int(port)))
|
||||||
|
|
||||||
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
dialer := ntw.NativeDialer()
|
||||||
|
|
||||||
|
conn, err := dialer.DialContext(ctx, "tcp", address)
|
||||||
|
if err != nil {
|
||||||
|
tplEFrontingDomain.Execute(os.Stdout, map[string]any{ //nolint: errcheck
|
||||||
|
"address": address,
|
||||||
|
"error": err,
|
||||||
|
})
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
conn.Close() //nolint: errcheck
|
||||||
|
|
||||||
|
tplOFrontingDomain.Execute(os.Stdout, map[string]any{ //nolint: errcheck
|
||||||
|
"address": address,
|
||||||
|
})
|
||||||
|
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *Doctor) checkSecretHost(resolver *net.Resolver, ntw mtglib.Network) bool {
|
||||||
|
addresses, err := resolver.LookupIPAddr(context.Background(), d.conf.Secret.Host)
|
||||||
|
if err != nil {
|
||||||
|
tplError.Execute(os.Stdout, map[string]any{ //nolint: errcheck
|
||||||
|
"description": fmt.Sprintf("cannot resolve DNS name of %s", d.conf.Secret.Host),
|
||||||
|
"error": err,
|
||||||
|
})
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
ourIP4 := d.conf.PublicIPv4.Get(nil)
|
||||||
|
if ourIP4 == nil {
|
||||||
|
ourIP4 = getIP(ntw, "tcp4")
|
||||||
|
}
|
||||||
|
|
||||||
|
ourIP6 := d.conf.PublicIPv6.Get(nil)
|
||||||
|
if ourIP6 == nil {
|
||||||
|
ourIP6 = getIP(ntw, "tcp6")
|
||||||
|
}
|
||||||
|
|
||||||
|
if ourIP4 == nil && ourIP6 == nil {
|
||||||
|
tplError.Execute(os.Stdout, map[string]any{ //nolint: errcheck
|
||||||
|
"description": "cannot detect public IP address",
|
||||||
|
"error": errors.New("cannot detect automatically and public-ipv4/public-ipv6 are not set in config"),
|
||||||
|
})
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
strAddresses := []string{}
|
||||||
|
for _, value := range addresses {
|
||||||
|
if (ourIP4 != nil && value.IP.String() == ourIP4.String()) ||
|
||||||
|
(ourIP6 != nil && value.IP.String() == ourIP6.String()) {
|
||||||
|
tplODNSSNIMatch.Execute(os.Stdout, map[string]any{ //nolint: errcheck
|
||||||
|
"ip": value.IP,
|
||||||
|
"hostname": d.conf.Secret.Host,
|
||||||
|
})
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
strAddresses = append(strAddresses, `"`+value.IP.String()+`"`)
|
||||||
|
}
|
||||||
|
|
||||||
|
tplEDNSSNIMatch.Execute(os.Stdout, map[string]any{ //nolint: errcheck
|
||||||
|
"hostname": d.conf.Secret.Host,
|
||||||
|
"resolved": strings.Join(strAddresses, ", "),
|
||||||
|
"ip4": ourIP4,
|
||||||
|
"ip6": ourIP6,
|
||||||
|
})
|
||||||
|
|
||||||
|
return false
|
||||||
|
}
|
||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"net"
|
"net"
|
||||||
"os"
|
"os"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/9seconds/mtg/v2/antireplay"
|
"github.com/9seconds/mtg/v2/antireplay"
|
||||||
"github.com/9seconds/mtg/v2/events"
|
"github.com/9seconds/mtg/v2/events"
|
||||||
@@ -253,6 +254,7 @@ func runProxy(conf *config.Config, version string) error { //nolint: funlen
|
|||||||
EventStream: eventStream,
|
EventStream: eventStream,
|
||||||
|
|
||||||
Secret: conf.Secret,
|
Secret: conf.Secret,
|
||||||
|
Concurrency: conf.GetConcurrency(mtglib.DefaultConcurrency),
|
||||||
DomainFrontingPort: conf.GetDomainFrontingPort(mtglib.DefaultDomainFrontingPort),
|
DomainFrontingPort: conf.GetDomainFrontingPort(mtglib.DefaultDomainFrontingPort),
|
||||||
DomainFrontingIP: conf.GetDomainFrontingIP(nil),
|
DomainFrontingIP: conf.GetDomainFrontingIP(nil),
|
||||||
DomainFrontingProxyProtocol: conf.GetDomainFrontingProxyProtocol(false),
|
DomainFrontingProxyProtocol: conf.GetDomainFrontingProxyProtocol(false),
|
||||||
@@ -261,6 +263,7 @@ func runProxy(conf *config.Config, version string) error { //nolint: funlen
|
|||||||
|
|
||||||
AllowFallbackOnUnknownDC: conf.AllowFallbackOnUnknownDC.Get(false),
|
AllowFallbackOnUnknownDC: conf.AllowFallbackOnUnknownDC.Get(false),
|
||||||
TolerateTimeSkewness: conf.TolerateTimeSkewness.Value,
|
TolerateTimeSkewness: conf.TolerateTimeSkewness.Value,
|
||||||
|
IdleTimeout: conf.Network.Timeout.Idle.Get(time.Minute),
|
||||||
|
|
||||||
DoppelGangerURLs: doppelGangerURLs,
|
DoppelGangerURLs: doppelGangerURLs,
|
||||||
DoppelGangerPerRaid: conf.Defense.Doppelganger.Repeats.Get(mtglib.DoppelGangerPerRaid),
|
DoppelGangerPerRaid: conf.Defense.Doppelganger.Repeats.Get(mtglib.DoppelGangerPerRaid),
|
||||||
|
|||||||
@@ -0,0 +1,51 @@
|
|||||||
|
package cli
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"io"
|
||||||
|
"net"
|
||||||
|
"net/http"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/9seconds/mtg/v2/essentials"
|
||||||
|
"github.com/9seconds/mtg/v2/mtglib"
|
||||||
|
)
|
||||||
|
|
||||||
|
func getIP(ntw mtglib.Network, protocol string) net.IP {
|
||||||
|
dialer := ntw.NativeDialer()
|
||||||
|
client := ntw.MakeHTTPClient(func(ctx context.Context, network, address string) (essentials.Conn, error) {
|
||||||
|
conn, err := dialer.DialContext(ctx, protocol, address)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return essentials.WrapNetConn(conn), err
|
||||||
|
})
|
||||||
|
|
||||||
|
req, err := http.NewRequest(http.MethodGet, "https://ifconfig.co", nil) //nolint: noctx
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
req.Header.Add("Accept", "text/plain")
|
||||||
|
|
||||||
|
resp, err := client.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
if resp.StatusCode != http.StatusOK {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
defer func() {
|
||||||
|
io.Copy(io.Discard, resp.Body) //nolint: errcheck
|
||||||
|
resp.Body.Close() //nolint: errcheck
|
||||||
|
}()
|
||||||
|
|
||||||
|
data, err := io.ReadAll(resp.Body)
|
||||||
|
if err != nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return net.ParseIP(strings.TrimSpace(string(data)))
|
||||||
|
}
|
||||||
@@ -35,6 +35,8 @@ type Config struct {
|
|||||||
DomainFrontingProxyProtocol TypeBool `json:"domainFrontingProxyProtocol"`
|
DomainFrontingProxyProtocol TypeBool `json:"domainFrontingProxyProtocol"`
|
||||||
TolerateTimeSkewness TypeDuration `json:"tolerateTimeSkewness"`
|
TolerateTimeSkewness TypeDuration `json:"tolerateTimeSkewness"`
|
||||||
Concurrency TypeConcurrency `json:"concurrency"`
|
Concurrency TypeConcurrency `json:"concurrency"`
|
||||||
|
PublicIPv4 TypeIP `json:"publicIpv4"`
|
||||||
|
PublicIPv6 TypeIP `json:"publicIpv6"`
|
||||||
DomainFronting struct {
|
DomainFronting struct {
|
||||||
IP TypeIP `json:"ip"`
|
IP TypeIP `json:"ip"`
|
||||||
Port TypePort `json:"port"`
|
Port TypePort `json:"port"`
|
||||||
@@ -84,6 +86,13 @@ type Config struct {
|
|||||||
} `json:"stats"`
|
} `json:"stats"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *Config) GetConcurrency(defaultValue uint) uint {
|
||||||
|
if concurrency := c.Concurrency.Get(0); concurrency != 0 {
|
||||||
|
return concurrency
|
||||||
|
}
|
||||||
|
return c.Concurrency.Get(defaultValue)
|
||||||
|
}
|
||||||
|
|
||||||
func (c *Config) GetDNS() *url.URL {
|
func (c *Config) GetDNS() *url.URL {
|
||||||
var dohURL *url.URL
|
var dohURL *url.URL
|
||||||
|
|
||||||
|
|||||||
@@ -42,6 +42,32 @@ func (suite *ConfigTestSuite) TestParseMinimalConfig() {
|
|||||||
suite.Equal("0.0.0.0:3128", conf.BindTo.String())
|
suite.Equal("0.0.0.0:3128", conf.BindTo.String())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (suite *ConfigTestSuite) TestParsePublicIP() {
|
||||||
|
conf, err := config.Parse(suite.ReadConfig("public_ip.toml"))
|
||||||
|
suite.NoError(err)
|
||||||
|
suite.Equal("203.0.113.1", conf.PublicIPv4.Get(nil).String())
|
||||||
|
suite.Equal("2001:db8::1", conf.PublicIPv6.Get(nil).String())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *ConfigTestSuite) TestParsePublicIPv4Only() {
|
||||||
|
conf, err := config.Parse(suite.ReadConfig("public_ip_v4_only.toml"))
|
||||||
|
suite.NoError(err)
|
||||||
|
suite.Equal("203.0.113.1", conf.PublicIPv4.Get(nil).String())
|
||||||
|
suite.Nil(conf.PublicIPv6.Get(nil))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *ConfigTestSuite) TestParsePublicIPInvalid() {
|
||||||
|
_, err := config.Parse(suite.ReadConfig("public_ip_invalid.toml"))
|
||||||
|
suite.Error(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *ConfigTestSuite) TestParsePublicIPNotSet() {
|
||||||
|
conf, err := config.Parse(suite.ReadConfig("minimal.toml"))
|
||||||
|
suite.NoError(err)
|
||||||
|
suite.Nil(conf.PublicIPv4.Get(nil))
|
||||||
|
suite.Nil(conf.PublicIPv6.Get(nil))
|
||||||
|
}
|
||||||
|
|
||||||
func (suite *ConfigTestSuite) TestString() {
|
func (suite *ConfigTestSuite) TestString() {
|
||||||
conf, err := config.Parse(suite.ReadConfig("minimal.toml"))
|
conf, err := config.Parse(suite.ReadConfig("minimal.toml"))
|
||||||
suite.NoError(err)
|
suite.NoError(err)
|
||||||
|
|||||||
@@ -21,6 +21,8 @@ type tomlConfig struct {
|
|||||||
DomainFrontingProxyProtocol bool `toml:"domain-fronting-proxy-protocol" json:"domainFrontingProxyProtocol,omitempty"`
|
DomainFrontingProxyProtocol bool `toml:"domain-fronting-proxy-protocol" json:"domainFrontingProxyProtocol,omitempty"`
|
||||||
TolerateTimeSkewness string `toml:"tolerate-time-skewness" json:"tolerateTimeSkewness,omitempty"`
|
TolerateTimeSkewness string `toml:"tolerate-time-skewness" json:"tolerateTimeSkewness,omitempty"`
|
||||||
Concurrency uint `toml:"concurrency" json:"concurrency,omitempty"`
|
Concurrency uint `toml:"concurrency" json:"concurrency,omitempty"`
|
||||||
|
PublicIPv4 string `toml:"public-ipv4" json:"publicIpv4,omitempty"`
|
||||||
|
PublicIPv6 string `toml:"public-ipv6" json:"publicIpv6,omitempty"`
|
||||||
DomainFronting struct {
|
DomainFronting struct {
|
||||||
IP string `toml:"ip" json:"ip,omitempty"`
|
IP string `toml:"ip" json:"ip,omitempty"`
|
||||||
Port uint `toml:"port" json:"port,omitempty"`
|
Port uint `toml:"port" json:"port,omitempty"`
|
||||||
|
|||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
secret = "7oe1GqLy6TBc38CV3jx7q09nb29nbGUuY29t"
|
||||||
|
bind-to = "0.0.0.0:3128"
|
||||||
|
public-ipv4 = "203.0.113.1"
|
||||||
|
public-ipv6 = "2001:db8::1"
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
secret = "7oe1GqLy6TBc38CV3jx7q09nb29nbGUuY29t"
|
||||||
|
bind-to = "0.0.0.0:3128"
|
||||||
|
public-ipv4 = "not-an-ip"
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
secret = "7oe1GqLy6TBc38CV3jx7q09nb29nbGUuY29t"
|
||||||
|
bind-to = "0.0.0.0:3128"
|
||||||
|
public-ipv4 = "203.0.113.1"
|
||||||
@@ -1,11 +1,36 @@
|
|||||||
|
# @generated - this file is auto-generated by `mise lock` https://mise.jdx.dev/dev-tools/mise-lock.html
|
||||||
|
|
||||||
[[tools.go]]
|
[[tools.go]]
|
||||||
version = "1.26.1"
|
version = "1.26.1"
|
||||||
backend = "core:go"
|
backend = "core:go"
|
||||||
"platforms.linux-arm64" = { checksum = "sha256:a290581cfe4fe28ddd737dde3095f3dbeb7f2e4065cab4eae44dfc53b760c2f7", url = "https://dl.google.com/go/go1.26.1.linux-arm64.tar.gz"}
|
|
||||||
"platforms.linux-x64" = { checksum = "sha256:031f088e5d955bab8657ede27ad4e3bc5b7c1ba281f05f245bcc304f327c987a", url = "https://dl.google.com/go/go1.26.1.linux-amd64.tar.gz"}
|
[tools.go."platforms.linux-arm64"]
|
||||||
"platforms.macos-arm64" = { checksum = "sha256:353df43a7811ce284c8938b5f3c7df40b7bfb6f56cb165b150bc40b5e2dd541f", url = "https://dl.google.com/go/go1.26.1.darwin-arm64.tar.gz"}
|
checksum = "sha256:a290581cfe4fe28ddd737dde3095f3dbeb7f2e4065cab4eae44dfc53b760c2f7"
|
||||||
"platforms.macos-x64" = { checksum = "sha256:65773dab2f8cc4cd23d93ba6d0a805de150ca0b78378879292be0b903b8cdd08", url = "https://dl.google.com/go/go1.26.1.darwin-amd64.tar.gz"}
|
url = "https://dl.google.com/go/go1.26.1.linux-arm64.tar.gz"
|
||||||
"platforms.windows-x64" = { checksum = "sha256:9b68112c913f45b7aebbf13c036721264bbba7e03a642f8f7490c561eebd1ecc", url = "https://dl.google.com/go/go1.26.1.windows-amd64.zip"}
|
|
||||||
|
[tools.go."platforms.linux-arm64-musl"]
|
||||||
|
checksum = "sha256:a290581cfe4fe28ddd737dde3095f3dbeb7f2e4065cab4eae44dfc53b760c2f7"
|
||||||
|
url = "https://dl.google.com/go/go1.26.1.linux-arm64.tar.gz"
|
||||||
|
|
||||||
|
[tools.go."platforms.linux-x64"]
|
||||||
|
checksum = "sha256:031f088e5d955bab8657ede27ad4e3bc5b7c1ba281f05f245bcc304f327c987a"
|
||||||
|
url = "https://dl.google.com/go/go1.26.1.linux-amd64.tar.gz"
|
||||||
|
|
||||||
|
[tools.go."platforms.linux-x64-musl"]
|
||||||
|
checksum = "sha256:031f088e5d955bab8657ede27ad4e3bc5b7c1ba281f05f245bcc304f327c987a"
|
||||||
|
url = "https://dl.google.com/go/go1.26.1.linux-amd64.tar.gz"
|
||||||
|
|
||||||
|
[tools.go."platforms.macos-arm64"]
|
||||||
|
checksum = "sha256:353df43a7811ce284c8938b5f3c7df40b7bfb6f56cb165b150bc40b5e2dd541f"
|
||||||
|
url = "https://dl.google.com/go/go1.26.1.darwin-arm64.tar.gz"
|
||||||
|
|
||||||
|
[tools.go."platforms.macos-x64"]
|
||||||
|
checksum = "sha256:65773dab2f8cc4cd23d93ba6d0a805de150ca0b78378879292be0b903b8cdd08"
|
||||||
|
url = "https://dl.google.com/go/go1.26.1.darwin-amd64.tar.gz"
|
||||||
|
|
||||||
|
[tools.go."platforms.windows-x64"]
|
||||||
|
checksum = "sha256:9b68112c913f45b7aebbf13c036721264bbba7e03a642f8f7490c561eebd1ecc"
|
||||||
|
url = "https://dl.google.com/go/go1.26.1.windows-amd64.zip"
|
||||||
|
|
||||||
[[tools."go:golang.org/x/pkgsite/cmd/pkgsite"]]
|
[[tools."go:golang.org/x/pkgsite/cmd/pkgsite"]]
|
||||||
version = "latest"
|
version = "latest"
|
||||||
@@ -24,19 +49,73 @@ version = "0.9.2"
|
|||||||
backend = "go:mvdan.cc/gofumpt"
|
backend = "go:mvdan.cc/gofumpt"
|
||||||
|
|
||||||
[[tools.golangci-lint]]
|
[[tools.golangci-lint]]
|
||||||
version = "2.11.3"
|
version = "2.11.4"
|
||||||
backend = "aqua:golangci/golangci-lint"
|
backend = "aqua:golangci/golangci-lint"
|
||||||
"platforms.linux-arm64" = { checksum = "sha256:ee3d95f301359e7d578e6d99c8ad5aeadbabc5a13009a30b2b0df11c8058afe9", url = "https://github.com/golangci/golangci-lint/releases/download/v2.11.3/golangci-lint-2.11.3-linux-arm64.tar.gz"}
|
|
||||||
"platforms.linux-x64" = { checksum = "sha256:87bb8cddbcc825d5778b64e8a91b46c0526b247f4e2f2904dea74ec7450475d1", url = "https://github.com/golangci/golangci-lint/releases/download/v2.11.3/golangci-lint-2.11.3-linux-amd64.tar.gz"}
|
[tools.golangci-lint."platforms.linux-arm64"]
|
||||||
"platforms.macos-arm64" = { checksum = "sha256:30ee39979c516b9d1adca289a3f93429d130c4c0fda5e57d637850894221f6cc", url = "https://github.com/golangci/golangci-lint/releases/download/v2.11.3/golangci-lint-2.11.3-darwin-arm64.tar.gz"}
|
checksum = "sha256:3bcfa2e6f3d32b2bf5cd75eaa876447507025e0303698633f722a05331988db4"
|
||||||
"platforms.macos-x64" = { checksum = "sha256:f93bda1f2cc981fd1326464020494be62f387bbf262706e1b3b644e5afacc440", url = "https://github.com/golangci/golangci-lint/releases/download/v2.11.3/golangci-lint-2.11.3-darwin-amd64.tar.gz"}
|
url = "https://github.com/golangci/golangci-lint/releases/download/v2.11.4/golangci-lint-2.11.4-linux-arm64.tar.gz"
|
||||||
"platforms.windows-x64" = { checksum = "sha256:cd42e890176bc5cfeb36225a77e66b9410ddd3a59a03551e23f6b210d29e1f67", url = "https://github.com/golangci/golangci-lint/releases/download/v2.11.3/golangci-lint-2.11.3-windows-amd64.zip"}
|
|
||||||
|
[tools.golangci-lint."platforms.linux-arm64-musl"]
|
||||||
|
checksum = "sha256:3bcfa2e6f3d32b2bf5cd75eaa876447507025e0303698633f722a05331988db4"
|
||||||
|
url = "https://github.com/golangci/golangci-lint/releases/download/v2.11.4/golangci-lint-2.11.4-linux-arm64.tar.gz"
|
||||||
|
|
||||||
|
[tools.golangci-lint."platforms.linux-x64"]
|
||||||
|
checksum = "sha256:200c5b7503f67b59a6743ccf32133026c174e272b930ee79aa2aa6f37aca7ef1"
|
||||||
|
url = "https://github.com/golangci/golangci-lint/releases/download/v2.11.4/golangci-lint-2.11.4-linux-amd64.tar.gz"
|
||||||
|
|
||||||
|
[tools.golangci-lint."platforms.linux-x64-musl"]
|
||||||
|
checksum = "sha256:200c5b7503f67b59a6743ccf32133026c174e272b930ee79aa2aa6f37aca7ef1"
|
||||||
|
url = "https://github.com/golangci/golangci-lint/releases/download/v2.11.4/golangci-lint-2.11.4-linux-amd64.tar.gz"
|
||||||
|
|
||||||
|
[tools.golangci-lint."platforms.macos-arm64"]
|
||||||
|
checksum = "sha256:02db2a2dae8b26812e53b0688a6f617e3ef1f489790e829ea22862cf76945675"
|
||||||
|
url = "https://github.com/golangci/golangci-lint/releases/download/v2.11.4/golangci-lint-2.11.4-darwin-arm64.tar.gz"
|
||||||
|
provenance = "github-attestations"
|
||||||
|
|
||||||
|
[tools.golangci-lint."platforms.macos-x64"]
|
||||||
|
checksum = "sha256:c900d4048db75d1edfd550fd11cf6a9b3008e7caa8e119fcddbc700412d63e60"
|
||||||
|
url = "https://github.com/golangci/golangci-lint/releases/download/v2.11.4/golangci-lint-2.11.4-darwin-amd64.tar.gz"
|
||||||
|
|
||||||
|
[tools.golangci-lint."platforms.windows-x64"]
|
||||||
|
checksum = "sha256:4932cfca5e75bf60fe1c576edf459e5e809e6644664a068185d64b84af3fad9e"
|
||||||
|
url = "https://github.com/golangci/golangci-lint/releases/download/v2.11.4/golangci-lint-2.11.4-windows-amd64.zip"
|
||||||
|
|
||||||
[[tools.goreleaser]]
|
[[tools.goreleaser]]
|
||||||
version = "2.14.3"
|
version = "2.15.2"
|
||||||
backend = "aqua:goreleaser/goreleaser"
|
backend = "aqua:goreleaser/goreleaser"
|
||||||
"platforms.linux-arm64" = { checksum = "sha256:581a10e53c1176b3e81ee45cf531e02dbf899db0bc7b795669347df4276ce948", url = "https://github.com/goreleaser/goreleaser/releases/download/v2.14.3/goreleaser_Linux_arm64.tar.gz"}
|
|
||||||
"platforms.linux-x64" = { checksum = "sha256:dc7faeeeb6da8bdfda788626263a4ae725892a8c7504b975c3234127d4a44579", url = "https://github.com/goreleaser/goreleaser/releases/download/v2.14.3/goreleaser_Linux_x86_64.tar.gz"}
|
[tools.goreleaser."platforms.linux-arm64"]
|
||||||
"platforms.macos-arm64" = { checksum = "sha256:3507798489e107a78aff36b169de48148a335ac26eb3161608d905f3f3a957bd", url = "https://github.com/goreleaser/goreleaser/releases/download/v2.14.3/goreleaser_Darwin_all.tar.gz"}
|
checksum = "sha256:5db66761a98f6693161e49e1a95d28d2673a892ba60cb4a5e16736cafd41c4c9"
|
||||||
"platforms.macos-x64" = { checksum = "sha256:3507798489e107a78aff36b169de48148a335ac26eb3161608d905f3f3a957bd", url = "https://github.com/goreleaser/goreleaser/releases/download/v2.14.3/goreleaser_Darwin_all.tar.gz"}
|
url = "https://github.com/goreleaser/goreleaser/releases/download/v2.15.2/goreleaser_Linux_arm64.tar.gz"
|
||||||
"platforms.windows-x64" = { checksum = "sha256:3deea8ff471aa258a2d99f3e5302971d7028647ae8ddaf103257a8113e485a31", url = "https://github.com/goreleaser/goreleaser/releases/download/v2.14.3/goreleaser_Windows_x86_64.zip"}
|
provenance = "cosign"
|
||||||
|
|
||||||
|
[tools.goreleaser."platforms.linux-arm64-musl"]
|
||||||
|
checksum = "sha256:5db66761a98f6693161e49e1a95d28d2673a892ba60cb4a5e16736cafd41c4c9"
|
||||||
|
url = "https://github.com/goreleaser/goreleaser/releases/download/v2.15.2/goreleaser_Linux_arm64.tar.gz"
|
||||||
|
provenance = "cosign"
|
||||||
|
|
||||||
|
[tools.goreleaser."platforms.linux-x64"]
|
||||||
|
checksum = "sha256:0ebdbf0353aba566b969dde746cc4e4806f96c27aa2f3971b229a9df7611fedc"
|
||||||
|
url = "https://github.com/goreleaser/goreleaser/releases/download/v2.15.2/goreleaser_Linux_x86_64.tar.gz"
|
||||||
|
provenance = "cosign"
|
||||||
|
|
||||||
|
[tools.goreleaser."platforms.linux-x64-musl"]
|
||||||
|
checksum = "sha256:0ebdbf0353aba566b969dde746cc4e4806f96c27aa2f3971b229a9df7611fedc"
|
||||||
|
url = "https://github.com/goreleaser/goreleaser/releases/download/v2.15.2/goreleaser_Linux_x86_64.tar.gz"
|
||||||
|
provenance = "cosign"
|
||||||
|
|
||||||
|
[tools.goreleaser."platforms.macos-arm64"]
|
||||||
|
checksum = "sha256:0e6bd67688ac949780bf1166813a91f89856898ef4c40d7d46c2c74ebaa4b9ee"
|
||||||
|
url = "https://github.com/goreleaser/goreleaser/releases/download/v2.15.2/goreleaser_Darwin_all.tar.gz"
|
||||||
|
provenance = "github-attestations"
|
||||||
|
|
||||||
|
[tools.goreleaser."platforms.macos-x64"]
|
||||||
|
checksum = "sha256:0e6bd67688ac949780bf1166813a91f89856898ef4c40d7d46c2c74ebaa4b9ee"
|
||||||
|
url = "https://github.com/goreleaser/goreleaser/releases/download/v2.15.2/goreleaser_Darwin_all.tar.gz"
|
||||||
|
provenance = "cosign"
|
||||||
|
|
||||||
|
[tools.goreleaser."platforms.windows-x64"]
|
||||||
|
checksum = "sha256:7459832946dbe122c144f8d7f87484d8572ca005b779310aa6bb03346e8de17a"
|
||||||
|
url = "https://github.com/goreleaser/goreleaser/releases/download/v2.15.2/goreleaser_Windows_x86_64.zip"
|
||||||
|
provenance = "cosign"
|
||||||
|
|||||||
@@ -3,9 +3,12 @@ package mtglib
|
|||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"net"
|
"net"
|
||||||
|
"sync/atomic"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/9seconds/mtg/v2/essentials"
|
"github.com/9seconds/mtg/v2/essentials"
|
||||||
"github.com/pires/go-proxyproto"
|
"github.com/pires/go-proxyproto"
|
||||||
@@ -95,3 +98,64 @@ func newConnProxyProtocol(source, target essentials.Conn) *connProxyProtocol {
|
|||||||
sourceAddr: source.RemoteAddr(),
|
sourceAddr: source.RemoteAddr(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// idleTracker is a shared idle tracker for a pair of relay connections.
|
||||||
|
// Both directions update the same timestamp so that activity in one direction
|
||||||
|
// prevents the other (idle) direction from timing out.
|
||||||
|
type idleTracker struct {
|
||||||
|
lastActive atomic.Pointer[time.Time]
|
||||||
|
timeout time.Duration
|
||||||
|
}
|
||||||
|
|
||||||
|
func newIdleTracker(timeout time.Duration) *idleTracker {
|
||||||
|
t := &idleTracker{timeout: timeout}
|
||||||
|
t.touch()
|
||||||
|
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *idleTracker) touch() {
|
||||||
|
stamp := time.Now()
|
||||||
|
t.lastActive.Store(&stamp)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *idleTracker) isIdle() bool {
|
||||||
|
return time.Since(*t.lastActive.Load()) >= t.timeout
|
||||||
|
}
|
||||||
|
|
||||||
|
type connIdleTimeout struct {
|
||||||
|
essentials.Conn
|
||||||
|
|
||||||
|
tracker *idleTracker
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c connIdleTimeout) Read(b []byte) (int, error) {
|
||||||
|
var netErr net.Error
|
||||||
|
|
||||||
|
for {
|
||||||
|
c.SetReadDeadline(time.Now().Add(c.tracker.timeout)) //nolint: errcheck
|
||||||
|
|
||||||
|
n, err := c.Conn.Read(b)
|
||||||
|
|
||||||
|
switch {
|
||||||
|
case err == nil:
|
||||||
|
c.tracker.touch()
|
||||||
|
return n, nil
|
||||||
|
case errors.As(err, &netErr) && netErr.Timeout() && !c.tracker.isIdle():
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
return n, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c connIdleTimeout) Write(b []byte) (int, error) {
|
||||||
|
c.SetWriteDeadline(time.Now().Add(c.tracker.timeout)) //nolint: errcheck
|
||||||
|
|
||||||
|
n, err := c.Conn.Write(b)
|
||||||
|
if n > 0 {
|
||||||
|
c.tracker.touch()
|
||||||
|
}
|
||||||
|
|
||||||
|
return n, err //nolint: wrapcheck
|
||||||
|
}
|
||||||
|
|||||||
@@ -16,6 +16,12 @@ import (
|
|||||||
"github.com/stretchr/testify/suite"
|
"github.com/stretchr/testify/suite"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type netTimeoutError struct{}
|
||||||
|
|
||||||
|
func (e netTimeoutError) Error() string { return "i/o timeout" }
|
||||||
|
func (e netTimeoutError) Timeout() bool { return true }
|
||||||
|
func (e netTimeoutError) Temporary() bool { return true }
|
||||||
|
|
||||||
type ConnRewindBaseConn struct {
|
type ConnRewindBaseConn struct {
|
||||||
testlib.EssentialsConnMock
|
testlib.EssentialsConnMock
|
||||||
|
|
||||||
@@ -291,6 +297,141 @@ func (suite *ConnProxyProtocolTestSuite) TearDownTest() {
|
|||||||
suite.targetConnMock.AssertExpectations(suite.T())
|
suite.targetConnMock.AssertExpectations(suite.T())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type IdleTrackerTestSuite struct {
|
||||||
|
suite.Suite
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *IdleTrackerTestSuite) TestNewNotIdle() {
|
||||||
|
tracker := newIdleTracker(time.Second)
|
||||||
|
suite.False(tracker.isIdle())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *IdleTrackerTestSuite) TestIdleAfterTimeout() {
|
||||||
|
tracker := newIdleTracker(10 * time.Millisecond)
|
||||||
|
time.Sleep(20 * time.Millisecond)
|
||||||
|
|
||||||
|
suite.True(tracker.isIdle())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *IdleTrackerTestSuite) TestTouchResetsIdle() {
|
||||||
|
tracker := newIdleTracker(50 * time.Millisecond)
|
||||||
|
time.Sleep(30 * time.Millisecond)
|
||||||
|
|
||||||
|
tracker.touch()
|
||||||
|
|
||||||
|
suite.False(tracker.isIdle())
|
||||||
|
}
|
||||||
|
|
||||||
|
type ConnIdleTimeoutTestSuite struct {
|
||||||
|
suite.Suite
|
||||||
|
|
||||||
|
connMock *testlib.EssentialsConnMock
|
||||||
|
tracker *idleTracker
|
||||||
|
conn connIdleTimeout
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *ConnIdleTimeoutTestSuite) SetupTest() {
|
||||||
|
suite.connMock = &testlib.EssentialsConnMock{}
|
||||||
|
suite.tracker = newIdleTracker(time.Second)
|
||||||
|
suite.conn = connIdleTimeout{
|
||||||
|
Conn: suite.connMock,
|
||||||
|
tracker: suite.tracker,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *ConnIdleTimeoutTestSuite) TearDownTest() {
|
||||||
|
suite.connMock.AssertExpectations(suite.T())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *ConnIdleTimeoutTestSuite) TestReadOk() {
|
||||||
|
suite.connMock.On("SetReadDeadline", mock.Anything).Return(nil)
|
||||||
|
suite.connMock.On("Read", mock.Anything).Once().Return(5, nil)
|
||||||
|
|
||||||
|
n, err := suite.conn.Read(make([]byte, 10))
|
||||||
|
suite.NoError(err)
|
||||||
|
suite.Equal(5, n)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *ConnIdleTimeoutTestSuite) TestReadNonTimeoutErr() {
|
||||||
|
suite.connMock.On("SetReadDeadline", mock.Anything).Return(nil)
|
||||||
|
suite.connMock.On("Read", mock.Anything).Once().Return(0, io.EOF)
|
||||||
|
|
||||||
|
n, err := suite.conn.Read(make([]byte, 10))
|
||||||
|
suite.True(errors.Is(err, io.EOF))
|
||||||
|
suite.Equal(0, n)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *ConnIdleTimeoutTestSuite) TestReadTimeoutRetriesWhenNotIdle() {
|
||||||
|
suite.connMock.On("SetReadDeadline", mock.Anything).Return(nil)
|
||||||
|
suite.connMock.On("Read", mock.Anything).Once().Return(0, netTimeoutError{})
|
||||||
|
suite.connMock.On("Read", mock.Anything).Once().Return(5, nil)
|
||||||
|
|
||||||
|
n, err := suite.conn.Read(make([]byte, 10))
|
||||||
|
suite.NoError(err)
|
||||||
|
suite.Equal(5, n)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *ConnIdleTimeoutTestSuite) TestReadTimeoutClosesWhenIdle() {
|
||||||
|
suite.tracker = newIdleTracker(time.Millisecond)
|
||||||
|
suite.conn = connIdleTimeout{
|
||||||
|
Conn: suite.connMock,
|
||||||
|
tracker: suite.tracker,
|
||||||
|
}
|
||||||
|
|
||||||
|
time.Sleep(5 * time.Millisecond)
|
||||||
|
|
||||||
|
suite.connMock.On("SetReadDeadline", mock.Anything).Return(nil)
|
||||||
|
suite.connMock.On("Read", mock.Anything).Once().Return(0, netTimeoutError{})
|
||||||
|
|
||||||
|
n, err := suite.conn.Read(make([]byte, 10))
|
||||||
|
suite.Equal(0, n)
|
||||||
|
|
||||||
|
netErr, ok := err.(net.Error) //nolint: errorlint
|
||||||
|
suite.True(ok)
|
||||||
|
suite.True(netErr.Timeout())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *ConnIdleTimeoutTestSuite) TestSharedTrackerPreventsFalseTimeout() {
|
||||||
|
connMock2 := &testlib.EssentialsConnMock{}
|
||||||
|
conn2 := connIdleTimeout{
|
||||||
|
Conn: connMock2,
|
||||||
|
tracker: suite.tracker,
|
||||||
|
}
|
||||||
|
|
||||||
|
connMock2.On("SetWriteDeadline", mock.Anything).Return(nil)
|
||||||
|
connMock2.On("Write", mock.Anything).Once().Return(5, nil)
|
||||||
|
|
||||||
|
_, _ = conn2.Write(make([]byte, 5))
|
||||||
|
|
||||||
|
suite.connMock.On("SetReadDeadline", mock.Anything).Return(nil)
|
||||||
|
suite.connMock.On("Read", mock.Anything).Once().Return(0, netTimeoutError{})
|
||||||
|
suite.connMock.On("Read", mock.Anything).Once().Return(3, nil)
|
||||||
|
|
||||||
|
n, err := suite.conn.Read(make([]byte, 10))
|
||||||
|
suite.NoError(err)
|
||||||
|
suite.Equal(3, n)
|
||||||
|
|
||||||
|
connMock2.AssertExpectations(suite.T())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *ConnIdleTimeoutTestSuite) TestWriteOk() {
|
||||||
|
suite.connMock.On("SetWriteDeadline", mock.Anything).Return(nil)
|
||||||
|
suite.connMock.On("Write", mock.Anything).Once().Return(5, nil)
|
||||||
|
|
||||||
|
n, err := suite.conn.Write(make([]byte, 5))
|
||||||
|
suite.NoError(err)
|
||||||
|
suite.Equal(5, n)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *ConnIdleTimeoutTestSuite) TestWriteErr() {
|
||||||
|
suite.connMock.On("SetWriteDeadline", mock.Anything).Return(nil)
|
||||||
|
suite.connMock.On("Write", mock.Anything).Once().Return(0, io.EOF)
|
||||||
|
|
||||||
|
n, err := suite.conn.Write(make([]byte, 5))
|
||||||
|
suite.True(errors.Is(err, io.EOF))
|
||||||
|
suite.Equal(0, n)
|
||||||
|
}
|
||||||
|
|
||||||
func TestConnTraffic(t *testing.T) {
|
func TestConnTraffic(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
suite.Run(t, &ConnTrafficTestSuite{})
|
suite.Run(t, &ConnTrafficTestSuite{})
|
||||||
@@ -305,3 +446,13 @@ func TestConnProxyProtocol(t *testing.T) {
|
|||||||
t.Parallel()
|
t.Parallel()
|
||||||
suite.Run(t, &ConnProxyProtocolTestSuite{})
|
suite.Run(t, &ConnProxyProtocolTestSuite{})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestIdleTracker(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
suite.Run(t, &IdleTrackerTestSuite{})
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestConnIdleTimeout(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
suite.Run(t, &ConnIdleTimeoutTestSuite{})
|
||||||
|
}
|
||||||
|
|||||||
+36
-43
@@ -2,7 +2,10 @@ package dc
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"net"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/9seconds/mtg/v2/essentials"
|
||||||
)
|
)
|
||||||
|
|
||||||
type preferIP uint8
|
type preferIP uint8
|
||||||
@@ -39,46 +42,36 @@ type Updater interface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// https://github.com/telegramdesktop/tdesktop/blob/master/Telegram/SourceFiles/mtproto/mtproto_dc_options.cpp#L30
|
// https://github.com/telegramdesktop/tdesktop/blob/master/Telegram/SourceFiles/mtproto/mtproto_dc_options.cpp#L30
|
||||||
var defaultDCAddrSet = dcAddrSet{
|
var defaultDCAddrSet = (func() dcAddrSet {
|
||||||
v4: map[int][]Addr{
|
addrSet := dcAddrSet{
|
||||||
1: {
|
v4: make(map[int][]Addr),
|
||||||
{Network: "tcp4", Address: "149.154.175.50:443"},
|
v6: make(map[int][]Addr),
|
||||||
},
|
}
|
||||||
2: {
|
|
||||||
{Network: "tcp4", Address: "149.154.167.51:443"},
|
for dcid, ips := range essentials.TelegramCoreAddresses {
|
||||||
{Network: "tcp4", Address: "95.161.76.100:443"},
|
for _, addr := range ips {
|
||||||
},
|
host, _, err := net.SplitHostPort(addr)
|
||||||
3: {
|
if err != nil {
|
||||||
{Network: "tcp4", Address: "149.154.175.100:443"},
|
panic(err)
|
||||||
},
|
}
|
||||||
4: {
|
|
||||||
{Network: "tcp4", Address: "149.154.167.91:443"},
|
ip := net.ParseIP(host)
|
||||||
},
|
if ip == nil {
|
||||||
5: {
|
panic(addr)
|
||||||
{Network: "tcp4", Address: "149.154.171.5:443"},
|
}
|
||||||
},
|
if ip.To4() == nil {
|
||||||
203: {
|
addrSet.v6[dcid] = append(addrSet.v6[dcid], Addr{
|
||||||
{Network: "tcp4", Address: "91.105.192.100:443"},
|
Network: "tcp6",
|
||||||
},
|
Address: addr,
|
||||||
},
|
})
|
||||||
v6: map[int][]Addr{
|
} else {
|
||||||
1: {
|
addrSet.v4[dcid] = append(addrSet.v4[dcid], Addr{
|
||||||
{Network: "tcp6", Address: "[2001:b28:f23d:f001::a]:443"},
|
Network: "tcp4",
|
||||||
},
|
Address: addr,
|
||||||
2: {
|
})
|
||||||
{Network: "tcp6", Address: "[2001:67c:04e8:f002::a]:443"},
|
}
|
||||||
},
|
}
|
||||||
3: {
|
}
|
||||||
{Network: "tcp6", Address: "[2001:b28:f23d:f003::a]:443"},
|
|
||||||
},
|
return addrSet
|
||||||
4: {
|
})()
|
||||||
{Network: "tcp6", Address: "[2001:67c:04e8:f004::a]:443"},
|
|
||||||
},
|
|
||||||
5: {
|
|
||||||
{Network: "tcp6", Address: "[2001:b28:f23f:f005::a]:443"},
|
|
||||||
},
|
|
||||||
203: {
|
|
||||||
{Network: "tcp6", Address: "[2a0a:f280:0203:000a:5000:0000:0000:0100]:443"},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -5,15 +5,19 @@ type dcView struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (d dcView) getV4(dc int) []Addr {
|
func (d dcView) getV4(dc int) []Addr {
|
||||||
addrs := d.publicConfigs.getV4(dc)
|
var addrs []Addr
|
||||||
|
|
||||||
addrs = append(addrs, defaultDCAddrSet.getV4(dc)...)
|
addrs = append(addrs, defaultDCAddrSet.getV4(dc)...)
|
||||||
|
addrs = append(addrs, d.publicConfigs.getV4(dc)...)
|
||||||
|
|
||||||
return addrs
|
return addrs
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d dcView) getV6(dc int) []Addr {
|
func (d dcView) getV6(dc int) []Addr {
|
||||||
addrs := d.publicConfigs.getV6(dc)
|
var addrs []Addr
|
||||||
|
|
||||||
addrs = append(addrs, defaultDCAddrSet.getV6(dc)...)
|
addrs = append(addrs, defaultDCAddrSet.getV6(dc)...)
|
||||||
|
addrs = append(addrs, d.publicConfigs.getV6(dc)...)
|
||||||
|
|
||||||
return addrs
|
return addrs
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,35 +0,0 @@
|
|||||||
package doppel
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Clock struct {
|
|
||||||
stats *Stats
|
|
||||||
tick chan struct{}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c Clock) Start(ctx context.Context) {
|
|
||||||
tickTock := time.NewTimer(c.stats.Delay())
|
|
||||||
defer func() {
|
|
||||||
tickTock.Stop()
|
|
||||||
select {
|
|
||||||
case <-tickTock.C:
|
|
||||||
default:
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
|
|
||||||
for {
|
|
||||||
select {
|
|
||||||
case <-ctx.Done():
|
|
||||||
return
|
|
||||||
case <-tickTock.C:
|
|
||||||
select {
|
|
||||||
case <-ctx.Done():
|
|
||||||
case c.tick <- struct{}{}:
|
|
||||||
}
|
|
||||||
tickTock.Reset(c.stats.Delay())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,80 +0,0 @@
|
|||||||
package doppel
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"sync"
|
|
||||||
"testing"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/stretchr/testify/suite"
|
|
||||||
)
|
|
||||||
|
|
||||||
type ClockTestSuite struct {
|
|
||||||
suite.Suite
|
|
||||||
|
|
||||||
clock Clock
|
|
||||||
wg sync.WaitGroup
|
|
||||||
ctx context.Context
|
|
||||||
ctxCancel context.CancelFunc
|
|
||||||
}
|
|
||||||
|
|
||||||
func (suite *ClockTestSuite) SetupTest() {
|
|
||||||
ctx, cancel := context.WithCancel(context.Background())
|
|
||||||
|
|
||||||
suite.ctx = ctx
|
|
||||||
suite.ctxCancel = cancel
|
|
||||||
suite.clock = Clock{
|
|
||||||
stats: &Stats{
|
|
||||||
k: StatsDefaultK,
|
|
||||||
lambda: StatsDefaultLambda,
|
|
||||||
},
|
|
||||||
tick: make(chan struct{}),
|
|
||||||
}
|
|
||||||
|
|
||||||
suite.wg.Go(func() {
|
|
||||||
suite.clock.Start(suite.ctx)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
func (suite *ClockTestSuite) TearDownTest() {
|
|
||||||
suite.ctxCancel()
|
|
||||||
suite.wg.Wait()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (suite *ClockTestSuite) TestTicks() {
|
|
||||||
received := 0
|
|
||||||
|
|
||||||
for range 3 {
|
|
||||||
select {
|
|
||||||
case <-suite.clock.tick:
|
|
||||||
received++
|
|
||||||
case <-time.After(2 * time.Second):
|
|
||||||
suite.Fail("timed out waiting for tick")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
suite.Equal(3, received)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (suite *ClockTestSuite) TestStopsOnCancel() {
|
|
||||||
select {
|
|
||||||
case <-suite.clock.tick:
|
|
||||||
case <-time.After(2 * time.Second):
|
|
||||||
suite.Fail("timed out waiting for first tick")
|
|
||||||
}
|
|
||||||
|
|
||||||
suite.ctxCancel()
|
|
||||||
|
|
||||||
time.Sleep(50 * time.Millisecond)
|
|
||||||
|
|
||||||
select {
|
|
||||||
case <-suite.clock.tick:
|
|
||||||
suite.Fail("received tick after cancel")
|
|
||||||
default:
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestClock(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
suite.Run(t, &ClockTestSuite{})
|
|
||||||
}
|
|
||||||
@@ -4,11 +4,19 @@ import (
|
|||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"sync"
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/9seconds/mtg/v2/essentials"
|
"github.com/9seconds/mtg/v2/essentials"
|
||||||
"github.com/9seconds/mtg/v2/mtglib/internal/tls"
|
"github.com/9seconds/mtg/v2/mtglib/internal/tls"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var doppelBufPool = sync.Pool{
|
||||||
|
New: func() any {
|
||||||
|
b := make([]byte, tls.MaxRecordSize)
|
||||||
|
return &b
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
type Conn struct {
|
type Conn struct {
|
||||||
essentials.Conn
|
essentials.Conn
|
||||||
|
|
||||||
@@ -18,7 +26,7 @@ type Conn struct {
|
|||||||
type connPayload struct {
|
type connPayload struct {
|
||||||
ctx context.Context
|
ctx context.Context
|
||||||
ctxCancel context.CancelCauseFunc
|
ctxCancel context.CancelCauseFunc
|
||||||
clock Clock
|
stats Stats
|
||||||
wg sync.WaitGroup
|
wg sync.WaitGroup
|
||||||
writeStream bytes.Buffer
|
writeStream bytes.Buffer
|
||||||
writtenCond sync.Cond
|
writtenCond sync.Cond
|
||||||
@@ -39,23 +47,23 @@ func (c Conn) Write(p []byte) (int, error) {
|
|||||||
return len(p), context.Cause(c.p.ctx)
|
return len(p), context.Cause(c.p.ctx)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c Conn) Start() {
|
|
||||||
c.p.wg.Go(func() {
|
|
||||||
c.start()
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c Conn) start() {
|
func (c Conn) start() {
|
||||||
buf := [tls.MaxRecordSize]byte{}
|
bp := doppelBufPool.Get().(*[]byte)
|
||||||
|
buf := *bp
|
||||||
|
defer doppelBufPool.Put(bp)
|
||||||
|
|
||||||
|
timer := time.NewTimer(c.p.stats.Delay())
|
||||||
|
defer timer.Stop()
|
||||||
|
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-c.p.ctx.Done():
|
case <-c.p.ctx.Done():
|
||||||
return
|
return
|
||||||
case <-c.p.clock.tick:
|
case <-timer.C:
|
||||||
|
timer.Reset(c.p.stats.Delay())
|
||||||
}
|
}
|
||||||
|
|
||||||
size := c.p.clock.stats.Size()
|
size := c.p.stats.Size()
|
||||||
|
|
||||||
c.p.writtenCond.L.Lock()
|
c.p.writtenCond.L.Lock()
|
||||||
for c.p.writeStream.Len() == 0 && !c.p.done {
|
for c.p.writeStream.Len() == 0 && !c.p.done {
|
||||||
@@ -68,7 +76,7 @@ func (c Conn) start() {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := tls.WriteRecordInPlace(c.Conn, buf[:], n); err != nil {
|
if err := tls.WriteRecordInPlace(c.Conn, buf, n); err != nil {
|
||||||
c.p.ctxCancel(err)
|
c.p.ctxCancel(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -86,28 +94,22 @@ func (c Conn) Stop() {
|
|||||||
c.p.wg.Wait()
|
c.p.wg.Wait()
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewConn(ctx context.Context, conn essentials.Conn, stats *Stats) Conn {
|
func NewConn(ctx context.Context, conn essentials.Conn, stats Stats) Conn {
|
||||||
ctx, cancel := context.WithCancelCause(ctx)
|
ctx, cancel := context.WithCancelCause(ctx)
|
||||||
rv := Conn{
|
rv := Conn{
|
||||||
Conn: conn,
|
Conn: conn,
|
||||||
p: &connPayload{
|
p: &connPayload{
|
||||||
ctx: ctx,
|
ctx: ctx,
|
||||||
ctxCancel: cancel,
|
ctxCancel: cancel,
|
||||||
|
stats: stats,
|
||||||
writtenCond: sync.Cond{
|
writtenCond: sync.Cond{
|
||||||
L: &sync.Mutex{},
|
L: &sync.Mutex{},
|
||||||
},
|
},
|
||||||
clock: Clock{
|
|
||||||
stats: stats,
|
|
||||||
tick: make(chan struct{}),
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
rv.p.writeStream.Grow(tls.DefaultBufferSize)
|
rv.p.writeStream.Grow(tls.DefaultBufferSize)
|
||||||
|
|
||||||
rv.p.wg.Go(func() {
|
|
||||||
rv.p.clock.Start(ctx)
|
|
||||||
})
|
|
||||||
rv.p.wg.Go(func() {
|
rv.p.wg.Go(func() {
|
||||||
rv.start()
|
rv.start()
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ func (suite *ConnTestSuite) TearDownTest() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (suite *ConnTestSuite) makeConn() Conn {
|
func (suite *ConnTestSuite) makeConn() Conn {
|
||||||
return NewConn(suite.ctx, suite.connMock, &Stats{
|
return NewConn(suite.ctx, suite.connMock, Stats{
|
||||||
k: 2.0,
|
k: 2.0,
|
||||||
lambda: 0.01,
|
lambda: 0.01,
|
||||||
})
|
})
|
||||||
@@ -152,7 +152,7 @@ func (suite *ConnTestSuite) TestStopDoesNotDeadlockWhenStartIsWaiting() {
|
|||||||
ctx, cancel := context.WithCancel(suite.ctx)
|
ctx, cancel := context.WithCancel(suite.ctx)
|
||||||
defer cancel()
|
defer cancel()
|
||||||
|
|
||||||
c := NewConn(ctx, suite.connMock, &Stats{
|
c := NewConn(ctx, suite.connMock, Stats{
|
||||||
k: 2.0,
|
k: 2.0,
|
||||||
lambda: 0.01,
|
lambda: 0.01,
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -2,7 +2,9 @@ package doppel
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"fmt"
|
||||||
"sync"
|
"sync"
|
||||||
|
"sync/atomic"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/9seconds/mtg/v2/essentials"
|
"github.com/9seconds/mtg/v2/essentials"
|
||||||
@@ -12,8 +14,22 @@ const (
|
|||||||
DoppelGangerMaxDurations = 4096
|
DoppelGangerMaxDurations = 4096
|
||||||
DoppelGangerScoutRaidEach = 6 * time.Hour
|
DoppelGangerScoutRaidEach = 6 * time.Hour
|
||||||
DoppelGangerScoutRepeats = 10
|
DoppelGangerScoutRepeats = 10
|
||||||
|
|
||||||
|
MinCertSizesToCalculate = 3
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// NoiseParams holds the measured cert chain size for FakeTLS noise calibration.
|
||||||
|
// If Mean is 0, the caller should use a legacy fallback.
|
||||||
|
type NoiseParams struct {
|
||||||
|
Mean int
|
||||||
|
Jitter int
|
||||||
|
}
|
||||||
|
|
||||||
|
type scoutRaidResult struct {
|
||||||
|
durations []time.Duration
|
||||||
|
certSizes []int
|
||||||
|
}
|
||||||
|
|
||||||
type gangerConnRequest struct {
|
type gangerConnRequest struct {
|
||||||
ret chan<- Conn
|
ret chan<- Conn
|
||||||
payload essentials.Conn
|
payload essentials.Conn
|
||||||
@@ -31,8 +47,11 @@ type Ganger struct {
|
|||||||
|
|
||||||
drs bool
|
drs bool
|
||||||
|
|
||||||
stats *Stats
|
stats Stats
|
||||||
durations []time.Duration
|
durations []time.Duration
|
||||||
|
certSizes []int
|
||||||
|
|
||||||
|
noiseParams atomic.Pointer[NoiseParams]
|
||||||
|
|
||||||
connRequests chan gangerConnRequest
|
connRequests chan gangerConnRequest
|
||||||
}
|
}
|
||||||
@@ -48,6 +67,16 @@ func (g *Ganger) Run() {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NoiseParams returns the current cert-size-based noise parameters.
|
||||||
|
// Returns zero-value NoiseParams if not yet measured (caller should use fallback).
|
||||||
|
func (g *Ganger) NoiseParams() NoiseParams {
|
||||||
|
if p := g.noiseParams.Load(); p != nil {
|
||||||
|
return *p
|
||||||
|
}
|
||||||
|
|
||||||
|
return NoiseParams{}
|
||||||
|
}
|
||||||
|
|
||||||
func (g *Ganger) NewConn(conn essentials.Conn) (Conn, error) {
|
func (g *Ganger) NewConn(conn essentials.Conn) (Conn, error) {
|
||||||
rvChan := make(chan Conn)
|
rvChan := make(chan Conn)
|
||||||
req := gangerConnRequest{
|
req := gangerConnRequest{
|
||||||
@@ -81,10 +110,10 @@ func (g *Ganger) run() {
|
|||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
scoutCollectedChan := make(chan []time.Duration)
|
scoutCollectedChan := make(chan scoutRaidResult)
|
||||||
currentScoutCollectedChan := scoutCollectedChan
|
currentScoutCollectedChan := scoutCollectedChan
|
||||||
|
|
||||||
updatedStatsChan := make(chan *Stats)
|
updatedStatsChan := make(chan Stats)
|
||||||
|
|
||||||
g.wg.Go(func() {
|
g.wg.Go(func() {
|
||||||
g.runScoutRaid(scoutCollectedChan)
|
g.runScoutRaid(scoutCollectedChan)
|
||||||
@@ -94,18 +123,29 @@ func (g *Ganger) run() {
|
|||||||
select {
|
select {
|
||||||
case <-g.ctx.Done():
|
case <-g.ctx.Done():
|
||||||
return
|
return
|
||||||
case durations := <-currentScoutCollectedChan:
|
case result := <-currentScoutCollectedChan:
|
||||||
g.durations = append(g.durations, durations...)
|
g.durations = append(g.durations, result.durations...)
|
||||||
|
|
||||||
if len(g.durations) > DoppelGangerMaxDurations {
|
if len(g.durations) > DoppelGangerMaxDurations {
|
||||||
copy(g.durations, g.durations[len(g.durations)-DoppelGangerMaxDurations:])
|
copy(g.durations, g.durations[len(g.durations)-DoppelGangerMaxDurations:])
|
||||||
g.durations = g.durations[:DoppelGangerMaxDurations]
|
g.durations = g.durations[:DoppelGangerMaxDurations]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Update cert sizes and recompute noise params.
|
||||||
|
g.certSizes = append(g.certSizes, result.certSizes...)
|
||||||
|
if len(g.certSizes) > DoppelGangerMaxDurations {
|
||||||
|
g.certSizes = g.certSizes[len(g.certSizes)-DoppelGangerMaxDurations:]
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(g.certSizes) >= MinCertSizesToCalculate {
|
||||||
|
g.updateNoiseParams()
|
||||||
|
}
|
||||||
|
|
||||||
if len(g.durations) < MinDurationsToCalculate {
|
if len(g.durations) < MinDurationsToCalculate {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
durations := g.durations
|
||||||
currentScoutCollectedChan = nil
|
currentScoutCollectedChan = nil
|
||||||
g.wg.Go(func() {
|
g.wg.Go(func() {
|
||||||
select {
|
select {
|
||||||
@@ -129,8 +169,45 @@ func (g *Ganger) run() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (g *Ganger) runScoutRaid(rvChan chan<- []time.Duration) {
|
func (g *Ganger) updateNoiseParams() {
|
||||||
durations := []time.Duration{}
|
if len(g.certSizes) == 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
sum := 0
|
||||||
|
for _, s := range g.certSizes {
|
||||||
|
sum += s
|
||||||
|
}
|
||||||
|
|
||||||
|
mean := sum / len(g.certSizes)
|
||||||
|
|
||||||
|
maxDev := 0
|
||||||
|
for _, s := range g.certSizes {
|
||||||
|
d := s - mean
|
||||||
|
if d < 0 {
|
||||||
|
d = -d
|
||||||
|
}
|
||||||
|
|
||||||
|
if d > maxDev {
|
||||||
|
maxDev = d
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if maxDev < 100 {
|
||||||
|
maxDev = 100
|
||||||
|
}
|
||||||
|
|
||||||
|
np := &NoiseParams{Mean: mean, Jitter: maxDev}
|
||||||
|
g.noiseParams.Store(np)
|
||||||
|
|
||||||
|
g.logger.Info(fmt.Sprintf(
|
||||||
|
"updated noise params: mean=%d jitter=%d samples=%d",
|
||||||
|
mean, maxDev, len(g.certSizes),
|
||||||
|
))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *Ganger) runScoutRaid(rvChan chan<- scoutRaidResult) {
|
||||||
|
var result scoutRaidResult
|
||||||
|
|
||||||
for range g.scoutRaidRepeats {
|
for range g.scoutRaidRepeats {
|
||||||
learned, err := g.scout.Learn(g.ctx)
|
learned, err := g.scout.Learn(g.ctx)
|
||||||
@@ -138,13 +215,18 @@ func (g *Ganger) runScoutRaid(rvChan chan<- []time.Duration) {
|
|||||||
g.logger.WarningError("cannot learn", err)
|
g.logger.WarningError("cannot learn", err)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
durations = append(durations, learned...)
|
|
||||||
|
result.durations = append(result.durations, learned.Durations...)
|
||||||
|
|
||||||
|
if learned.CertSize > 0 {
|
||||||
|
result.certSizes = append(result.certSizes, learned.CertSize)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
case <-g.ctx.Done():
|
case <-g.ctx.Done():
|
||||||
return
|
return
|
||||||
case rvChan <- durations:
|
case rvChan <- result:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -174,7 +256,7 @@ func NewGanger(
|
|||||||
scoutRaidEach: scoutEach,
|
scoutRaidEach: scoutEach,
|
||||||
scoutRaidRepeats: scoutRepeats,
|
scoutRaidRepeats: scoutRepeats,
|
||||||
drs: drs,
|
drs: drs,
|
||||||
stats: &Stats{
|
stats: Stats{
|
||||||
k: StatsDefaultK,
|
k: StatsDefaultK,
|
||||||
lambda: StatsDefaultLambda,
|
lambda: StatsDefaultLambda,
|
||||||
drs: drs,
|
drs: drs,
|
||||||
|
|||||||
@@ -12,36 +12,46 @@ import (
|
|||||||
"github.com/9seconds/mtg/v2/mtglib/internal/tls"
|
"github.com/9seconds/mtg/v2/mtglib/internal/tls"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// ScoutResult holds measurements from a single scout HTTP request.
|
||||||
|
type ScoutResult struct {
|
||||||
|
Durations []time.Duration
|
||||||
|
CertSize int // total ApplicationData bytes during TLS handshake; 0 if unknown
|
||||||
|
}
|
||||||
|
|
||||||
type Scout struct {
|
type Scout struct {
|
||||||
network Network
|
network Network
|
||||||
urls []string
|
urls []string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s Scout) Learn(ctx context.Context) ([]time.Duration, error) {
|
func (s Scout) Learn(ctx context.Context) (ScoutResult, error) {
|
||||||
var durations []time.Duration
|
var combined ScoutResult
|
||||||
|
|
||||||
for _, url := range s.urls {
|
for _, url := range s.urls {
|
||||||
learned, err := s.learn(ctx, url)
|
learned, err := s.learn(ctx, url)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return ScoutResult{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
durations = append(durations, learned...)
|
combined.Durations = append(combined.Durations, learned.Durations...)
|
||||||
|
|
||||||
|
if learned.CertSize > 0 && combined.CertSize == 0 {
|
||||||
|
combined.CertSize = learned.CertSize
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return durations, nil
|
return combined, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s Scout) learn(ctx context.Context, url string) ([]time.Duration, error) {
|
func (s Scout) learn(ctx context.Context, url string) (ScoutResult, error) {
|
||||||
client, results := s.makeClient()
|
client, results := s.makeClient()
|
||||||
|
|
||||||
if !strings.HasPrefix(url, "https://") {
|
if !strings.HasPrefix(url, "https://") {
|
||||||
return nil, fmt.Errorf("url %s must be https", url)
|
return ScoutResult{}, fmt.Errorf("url %s must be https", url)
|
||||||
}
|
}
|
||||||
|
|
||||||
req, err := http.NewRequestWithContext(ctx, http.MethodGet, url, nil)
|
req, err := http.NewRequestWithContext(ctx, http.MethodGet, url, nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return ScoutResult{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
resp, err := client.Do(req)
|
resp, err := client.Do(req)
|
||||||
@@ -51,31 +61,62 @@ func (s Scout) learn(ctx context.Context, url string) ([]time.Duration, error) {
|
|||||||
client.CloseIdleConnections()
|
client.CloseIdleConnections()
|
||||||
}
|
}
|
||||||
|
|
||||||
if err != nil || len(results.data) == 0 {
|
if err != nil {
|
||||||
return nil, err
|
return ScoutResult{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
durations := []time.Duration{}
|
data, writeIndex := results.Snapshot()
|
||||||
|
|
||||||
|
if len(data) == 0 {
|
||||||
|
return ScoutResult{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var result ScoutResult
|
||||||
|
|
||||||
|
// Compute inter-record durations (existing logic).
|
||||||
lastTimestamp := time.Time{}
|
lastTimestamp := time.Time{}
|
||||||
|
|
||||||
for i, v := range results.data {
|
for i, v := range data {
|
||||||
if v.recordType != tls.TypeApplicationData {
|
if v.recordType != tls.TypeApplicationData {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if lastTimestamp.IsZero() {
|
if lastTimestamp.IsZero() {
|
||||||
if i > 0 {
|
if i > 0 {
|
||||||
lastTimestamp = results.data[i-1].timestamp
|
lastTimestamp = data[i-1].timestamp
|
||||||
} else {
|
} else {
|
||||||
lastTimestamp = v.timestamp
|
lastTimestamp = v.timestamp
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
durations = append(durations, v.timestamp.Sub(lastTimestamp))
|
result.Durations = append(result.Durations, v.timestamp.Sub(lastTimestamp))
|
||||||
lastTimestamp = v.timestamp
|
lastTimestamp = v.timestamp
|
||||||
}
|
}
|
||||||
|
|
||||||
return durations, nil
|
// Compute cert size: sum of ApplicationData payload between CCS and
|
||||||
|
// the first client Write (which marks the end of server handshake).
|
||||||
|
seenCCS := false
|
||||||
|
boundary := writeIndex
|
||||||
|
if boundary < 0 {
|
||||||
|
boundary = len(data)
|
||||||
|
}
|
||||||
|
|
||||||
|
for i, v := range data {
|
||||||
|
if i >= boundary {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
if v.recordType == tls.TypeChangeCipherSpec {
|
||||||
|
seenCCS = true
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if seenCCS && v.recordType == tls.TypeApplicationData {
|
||||||
|
result.CertSize += v.payloadLen
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s Scout) makeClient() (*http.Client, *ScoutConnCollected) {
|
func (s Scout) makeClient() (*http.Client, *ScoutConnCollected) {
|
||||||
|
|||||||
@@ -14,9 +14,10 @@ type ScoutConn struct {
|
|||||||
|
|
||||||
results *ScoutConnCollected
|
results *ScoutConnCollected
|
||||||
rawBuf *bytes.Buffer
|
rawBuf *bytes.Buffer
|
||||||
|
seenCCS bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s ScoutConn) Read(p []byte) (int, error) {
|
func (s *ScoutConn) Read(p []byte) (int, error) {
|
||||||
buf := &bytes.Buffer{}
|
buf := &bytes.Buffer{}
|
||||||
|
|
||||||
for {
|
for {
|
||||||
@@ -31,7 +32,11 @@ func (s ScoutConn) Read(p []byte) (int, error) {
|
|||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
s.results.Add(recordType)
|
if recordType == tls.TypeChangeCipherSpec {
|
||||||
|
s.seenCCS = true
|
||||||
|
}
|
||||||
|
|
||||||
|
s.results.Add(recordType, int(length))
|
||||||
s.rawBuf.Write([]byte{recordType})
|
s.rawBuf.Write([]byte{recordType})
|
||||||
s.rawBuf.Write(tls.TLSVersion[:])
|
s.rawBuf.Write(tls.TLSVersion[:])
|
||||||
|
|
||||||
@@ -45,11 +50,19 @@ func (s ScoutConn) Read(p []byte) (int, error) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewScoutConn(conn essentials.Conn, results *ScoutConnCollected) ScoutConn {
|
func (s *ScoutConn) Write(p []byte) (int, error) {
|
||||||
|
if s.seenCCS {
|
||||||
|
s.results.MarkWrite()
|
||||||
|
}
|
||||||
|
|
||||||
|
return s.Conn.Write(p)
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewScoutConn(conn essentials.Conn, results *ScoutConnCollected) *ScoutConn {
|
||||||
rawBuf := &bytes.Buffer{}
|
rawBuf := &bytes.Buffer{}
|
||||||
rawBuf.Grow(tls.MaxRecordSize)
|
rawBuf.Grow(tls.MaxRecordSize)
|
||||||
|
|
||||||
return ScoutConn{
|
return &ScoutConn{
|
||||||
Conn: tls.New(conn, false, false),
|
Conn: tls.New(conn, false, false),
|
||||||
results: results,
|
results: results,
|
||||||
rawBuf: rawBuf,
|
rawBuf: rawBuf,
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
package doppel
|
package doppel
|
||||||
|
|
||||||
import "time"
|
import (
|
||||||
|
"slices"
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
ScoutConnCollectedPreallocSize = 100
|
ScoutConnCollectedPreallocSize = 100
|
||||||
@@ -9,21 +13,47 @@ const (
|
|||||||
type ScoutConnResult struct {
|
type ScoutConnResult struct {
|
||||||
timestamp time.Time
|
timestamp time.Time
|
||||||
recordType byte
|
recordType byte
|
||||||
|
payloadLen int
|
||||||
}
|
}
|
||||||
|
|
||||||
type ScoutConnCollected struct {
|
type ScoutConnCollected struct {
|
||||||
|
mu sync.Mutex
|
||||||
data []ScoutConnResult
|
data []ScoutConnResult
|
||||||
|
writeIndex int // index at which client first wrote post-handshake data; -1 if not set
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *ScoutConnCollected) Add(record byte) {
|
func (s *ScoutConnCollected) Add(record byte, payloadLen int) {
|
||||||
|
s.mu.Lock()
|
||||||
s.data = append(s.data, ScoutConnResult{
|
s.data = append(s.data, ScoutConnResult{
|
||||||
timestamp: time.Now(),
|
timestamp: time.Now(),
|
||||||
recordType: record,
|
recordType: record,
|
||||||
|
payloadLen: payloadLen,
|
||||||
})
|
})
|
||||||
|
s.mu.Unlock()
|
||||||
|
}
|
||||||
|
|
||||||
|
// MarkWrite records the current data length as the handshake boundary.
|
||||||
|
func (s *ScoutConnCollected) MarkWrite() {
|
||||||
|
s.mu.Lock()
|
||||||
|
if s.writeIndex < 0 {
|
||||||
|
s.writeIndex = len(s.data)
|
||||||
|
}
|
||||||
|
s.mu.Unlock()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Snapshot returns a copy of the collected data and the write index.
|
||||||
|
func (s *ScoutConnCollected) Snapshot() ([]ScoutConnResult, int) {
|
||||||
|
s.mu.Lock()
|
||||||
|
snapshot := slices.Clone(s.data)
|
||||||
|
writeIndex := s.writeIndex
|
||||||
|
s.mu.Unlock()
|
||||||
|
|
||||||
|
return snapshot, writeIndex
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewScoutConnCollected() *ScoutConnCollected {
|
func NewScoutConnCollected() *ScoutConnCollected {
|
||||||
return &ScoutConnCollected{
|
return &ScoutConnCollected{
|
||||||
data: make([]ScoutConnResult, 0, ScoutConnCollectedPreallocSize),
|
data: make([]ScoutConnResult, 0, ScoutConnCollectedPreallocSize),
|
||||||
|
writeIndex: -1,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package doppel
|
package doppel
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"sync"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@@ -14,28 +15,71 @@ type ScoutConnCollectedTestSuite struct {
|
|||||||
|
|
||||||
func (suite *ScoutConnCollectedTestSuite) TestAddSingle() {
|
func (suite *ScoutConnCollectedTestSuite) TestAddSingle() {
|
||||||
collected := NewScoutConnCollected()
|
collected := NewScoutConnCollected()
|
||||||
collected.Add(tls.TypeApplicationData)
|
collected.Add(tls.TypeApplicationData, 100)
|
||||||
|
|
||||||
suite.Len(collected.data, 1)
|
data, _ := collected.Snapshot()
|
||||||
suite.Equal(byte(tls.TypeApplicationData), collected.data[0].recordType)
|
|
||||||
|
suite.Len(data, 1)
|
||||||
|
suite.Equal(byte(tls.TypeApplicationData), data[0].recordType)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (suite *ScoutConnCollectedTestSuite) TestAddTimestampsAreMonotonic() {
|
func (suite *ScoutConnCollectedTestSuite) TestAddTimestampsAreMonotonic() {
|
||||||
collected := NewScoutConnCollected()
|
collected := NewScoutConnCollected()
|
||||||
|
|
||||||
collected.Add(tls.TypeApplicationData)
|
collected.Add(tls.TypeApplicationData, 100)
|
||||||
|
|
||||||
time.Sleep(time.Microsecond)
|
time.Sleep(time.Microsecond)
|
||||||
collected.Add(tls.TypeApplicationData)
|
collected.Add(tls.TypeApplicationData, 100)
|
||||||
|
|
||||||
time.Sleep(time.Microsecond)
|
time.Sleep(time.Microsecond)
|
||||||
collected.Add(tls.TypeApplicationData)
|
collected.Add(tls.TypeApplicationData, 100)
|
||||||
|
|
||||||
for i := 1; i < len(collected.data); i++ {
|
data, _ := collected.Snapshot()
|
||||||
suite.True(collected.data[i].timestamp.After(collected.data[i-1].timestamp))
|
|
||||||
|
for i := 1; i < len(data); i++ {
|
||||||
|
suite.True(data[i].timestamp.After(data[i-1].timestamp))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (suite *ScoutConnCollectedTestSuite) TestConcurrentAddSnapshot() {
|
||||||
|
collected := NewScoutConnCollected()
|
||||||
|
|
||||||
|
var wg sync.WaitGroup
|
||||||
|
|
||||||
|
wg.Add(3)
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
defer wg.Done()
|
||||||
|
|
||||||
|
for i := 0; i < 1000; i++ {
|
||||||
|
collected.Add(tls.TypeApplicationData, i)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
defer wg.Done()
|
||||||
|
|
||||||
|
for i := 0; i < 100; i++ {
|
||||||
|
collected.MarkWrite()
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
defer wg.Done()
|
||||||
|
|
||||||
|
for i := 0; i < 1000; i++ {
|
||||||
|
// call Snapshot concurrently to exercise the lock under -race
|
||||||
|
collected.Snapshot() //nolint:errcheck
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
wg.Wait()
|
||||||
|
|
||||||
|
data, writeIndex := collected.Snapshot()
|
||||||
|
suite.Len(data, 1000)
|
||||||
|
suite.GreaterOrEqual(writeIndex, 0)
|
||||||
|
}
|
||||||
|
|
||||||
func TestScoutConnCollected(t *testing.T) {
|
func TestScoutConnCollected(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
suite.Run(t, &ScoutConnCollectedTestSuite{})
|
suite.Run(t, &ScoutConnCollectedTestSuite{})
|
||||||
|
|||||||
@@ -22,9 +22,9 @@ func (suite *ScoutTestSuite) SetupSuite() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (suite *ScoutTestSuite) TestCollectResults() {
|
func (suite *ScoutTestSuite) TestCollectResults() {
|
||||||
durations, err := suite.scout.Learn(suite.ctx)
|
result, err := suite.scout.Learn(suite.ctx)
|
||||||
suite.NoError(err)
|
suite.NoError(err)
|
||||||
suite.Less(3, len(durations))
|
suite.Less(3, len(result.Durations))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (suite *ScoutTestSuite) TestCollectNothing() {
|
func (suite *ScoutTestSuite) TestCollectNothing() {
|
||||||
|
|||||||
@@ -112,7 +112,7 @@ func (d *Stats) Size() int {
|
|||||||
return TLSRecordSizeMax
|
return TLSRecordSizeMax
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewStats(durations []time.Duration, drs bool) *Stats {
|
func NewStats(durations []time.Duration, drs bool) Stats {
|
||||||
n := float64(len(durations))
|
n := float64(len(durations))
|
||||||
|
|
||||||
// in milliseconds
|
// in milliseconds
|
||||||
@@ -162,7 +162,7 @@ func NewStats(durations []time.Duration, drs bool) *Stats {
|
|||||||
// λ = (Σxᵢᵏ / n)^(1/k)
|
// λ = (Σxᵢᵏ / n)^(1/k)
|
||||||
lambda := math.Pow(sumXK/n, 1.0/k)
|
lambda := math.Pow(sumXK/n, 1.0/k)
|
||||||
|
|
||||||
return &Stats{
|
return Stats{
|
||||||
k: k,
|
k: k,
|
||||||
lambda: lambda,
|
lambda: lambda,
|
||||||
drs: drs,
|
drs: drs,
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
//go:build mips || mipsle
|
||||||
|
|
||||||
|
package relay
|
||||||
|
|
||||||
|
import "github.com/9seconds/mtg/v2/mtglib/internal/tls"
|
||||||
|
|
||||||
|
const (
|
||||||
|
// MIPS is quite short in resources, and usually it means that it will run
|
||||||
|
// on Microtiks, OpenWRT-based routers or similar hardware. I think it worth
|
||||||
|
// to sacrifice a number of read syscalls (read, CPU load) to shrink
|
||||||
|
// limited RAM resources.
|
||||||
|
bufPoolSize = tls.MaxRecordPayloadSize / 2
|
||||||
|
)
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
//go:build !mips && !mipsle
|
||||||
|
|
||||||
|
package relay
|
||||||
|
|
||||||
|
import "github.com/9seconds/mtg/v2/mtglib/internal/tls"
|
||||||
|
|
||||||
|
const (
|
||||||
|
bufPoolSize = tls.MaxRecordPayloadSize
|
||||||
|
)
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
package relay
|
||||||
|
|
||||||
|
import "sync"
|
||||||
|
|
||||||
|
var bufPool = sync.Pool{
|
||||||
|
New: func() any {
|
||||||
|
b := make([]byte, bufPoolSize)
|
||||||
|
return &b
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
func acquireBuffer() *[]byte {
|
||||||
|
return bufPool.Get().(*[]byte)
|
||||||
|
}
|
||||||
|
|
||||||
|
func releaseBuffer(p *[]byte) {
|
||||||
|
bufPool.Put(p)
|
||||||
|
}
|
||||||
@@ -6,7 +6,6 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
|
|
||||||
"github.com/9seconds/mtg/v2/essentials"
|
"github.com/9seconds/mtg/v2/essentials"
|
||||||
"github.com/9seconds/mtg/v2/mtglib/internal/tls"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func Relay(ctx context.Context, log Logger, telegramConn, clientConn essentials.Conn) {
|
func Relay(ctx context.Context, log Logger, telegramConn, clientConn essentials.Conn) {
|
||||||
@@ -16,11 +15,11 @@ func Relay(ctx context.Context, log Logger, telegramConn, clientConn essentials.
|
|||||||
ctx, cancel := context.WithCancel(ctx)
|
ctx, cancel := context.WithCancel(ctx)
|
||||||
defer cancel()
|
defer cancel()
|
||||||
|
|
||||||
go func() {
|
stop := context.AfterFunc(ctx, func() {
|
||||||
<-ctx.Done()
|
|
||||||
telegramConn.Close() //nolint: errcheck
|
telegramConn.Close() //nolint: errcheck
|
||||||
clientConn.Close() //nolint: errcheck
|
clientConn.Close() //nolint: errcheck
|
||||||
}()
|
})
|
||||||
|
defer stop()
|
||||||
|
|
||||||
closeChan := make(chan struct{})
|
closeChan := make(chan struct{})
|
||||||
|
|
||||||
@@ -36,12 +35,13 @@ func Relay(ctx context.Context, log Logger, telegramConn, clientConn essentials.
|
|||||||
}
|
}
|
||||||
|
|
||||||
func pump(log Logger, src, dst essentials.Conn, direction string) {
|
func pump(log Logger, src, dst essentials.Conn, direction string) {
|
||||||
var buf [tls.MaxRecordPayloadSize]byte
|
buf := acquireBuffer()
|
||||||
|
defer releaseBuffer(buf)
|
||||||
|
|
||||||
defer src.CloseRead() //nolint: errcheck
|
defer src.CloseRead() //nolint: errcheck
|
||||||
defer dst.CloseWrite() //nolint: errcheck
|
defer dst.CloseWrite() //nolint: errcheck
|
||||||
|
|
||||||
n, err := io.CopyBuffer(src, dst, buf[:])
|
n, err := io.CopyBuffer(src, dst, *buf)
|
||||||
|
|
||||||
switch {
|
switch {
|
||||||
case err == nil:
|
case err == nil:
|
||||||
|
|||||||
@@ -11,8 +11,6 @@ import (
|
|||||||
"net"
|
"net"
|
||||||
"slices"
|
"slices"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/9seconds/mtg/v2/mtglib/internal/tls"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
@@ -56,25 +54,17 @@ func ReadClientHello(
|
|||||||
// 4. New digest should be all 0 except of last 4 bytes
|
// 4. New digest should be all 0 except of last 4 bytes
|
||||||
// 5. Last 4 bytes are little endian uint32 of UNIX timestamp when
|
// 5. Last 4 bytes are little endian uint32 of UNIX timestamp when
|
||||||
// this message was created.
|
// this message was created.
|
||||||
handshakeCopyBuf := &bytes.Buffer{}
|
clientHelloCopy, handshakeReader, err := parseClientHello(conn)
|
||||||
reader := io.TeeReader(conn, handshakeCopyBuf)
|
|
||||||
|
|
||||||
reader, err := parseTLSHeader(reader)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("cannot parse tls header: %w", err)
|
return nil, fmt.Errorf("cannot read client hello: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
reader, err = parseHandshakeHeader(reader)
|
hello, err := parseHandshake(handshakeReader)
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("cannot parse handshake header: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
hello, err := parseHandshake(reader)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("cannot parse handshake: %w", err)
|
return nil, fmt.Errorf("cannot parse handshake: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
sniHostnames, err := parseSNI(reader)
|
sniHostnames, err := parseSNI(handshakeReader)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("cannot parse SNI: %w", err)
|
return nil, fmt.Errorf("cannot parse SNI: %w", err)
|
||||||
}
|
}
|
||||||
@@ -85,10 +75,10 @@ func ReadClientHello(
|
|||||||
|
|
||||||
digest := hmac.New(sha256.New, secret)
|
digest := hmac.New(sha256.New, secret)
|
||||||
// we write a copy of the handshake with client random all nullified.
|
// we write a copy of the handshake with client random all nullified.
|
||||||
digest.Write(handshakeCopyBuf.Next(RandomOffset))
|
digest.Write(clientHelloCopy.Next(RandomOffset))
|
||||||
handshakeCopyBuf.Next(RandomLen)
|
clientHelloCopy.Next(RandomLen)
|
||||||
digest.Write(emptyRandom[:])
|
digest.Write(emptyRandom[:])
|
||||||
digest.Write(handshakeCopyBuf.Bytes())
|
digest.Write(clientHelloCopy.Bytes())
|
||||||
|
|
||||||
computed := digest.Sum(nil)
|
computed := digest.Sum(nil)
|
||||||
|
|
||||||
@@ -110,58 +100,6 @@ func ReadClientHello(
|
|||||||
return hello, nil
|
return hello, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func parseTLSHeader(r io.Reader) (io.Reader, error) {
|
|
||||||
// record_type(1) + version(2) + size(2)
|
|
||||||
// 16 - type is 0x16 (handshake record)
|
|
||||||
// 03 01 - protocol version is "3,1" (also known as TLS 1.0)
|
|
||||||
// 00 f8 - 0xF8 (248) bytes of handshake message follows
|
|
||||||
header := [1 + 2 + 2]byte{}
|
|
||||||
|
|
||||||
if _, err := io.ReadFull(r, header[:]); err != nil {
|
|
||||||
return nil, fmt.Errorf("cannot read record header: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if header[0] != tls.TypeHandshake {
|
|
||||||
return nil, fmt.Errorf("unexpected record type %#x", header[0])
|
|
||||||
}
|
|
||||||
|
|
||||||
if header[1] != 3 || header[2] != 1 {
|
|
||||||
return nil, fmt.Errorf("unexpected protocol version %#x %#x", header[1], header[2])
|
|
||||||
}
|
|
||||||
|
|
||||||
length := int64(binary.BigEndian.Uint16(header[3:]))
|
|
||||||
buf := &bytes.Buffer{}
|
|
||||||
|
|
||||||
_, err := io.CopyN(buf, r, length)
|
|
||||||
|
|
||||||
return buf, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func parseHandshakeHeader(r io.Reader) (io.Reader, error) {
|
|
||||||
// type(1) + size(3 / uint24)
|
|
||||||
// 01 - handshake message type 0x01 (client hello)
|
|
||||||
// 00 00 f4 - 0xF4 (244) bytes of client hello data follows
|
|
||||||
header := [1 + 3]byte{}
|
|
||||||
|
|
||||||
if _, err := io.ReadFull(r, header[:]); err != nil {
|
|
||||||
return nil, fmt.Errorf("cannot read handshake header: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if header[0] != TypeHandshakeClient {
|
|
||||||
return nil, fmt.Errorf("incorrect handshake type: %#x", header[0])
|
|
||||||
}
|
|
||||||
|
|
||||||
// unfortunately there is not uint24 in golang, so we just reust header
|
|
||||||
header[0] = 0
|
|
||||||
|
|
||||||
length := int64(binary.BigEndian.Uint32(header[:]))
|
|
||||||
buf := &bytes.Buffer{}
|
|
||||||
|
|
||||||
_, err := io.CopyN(buf, r, length)
|
|
||||||
|
|
||||||
return buf, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func parseHandshake(r io.Reader) (*ClientHello, error) {
|
func parseHandshake(r io.Reader) (*ClientHello, error) {
|
||||||
// A protocol version of "3,3" (meaning TLS 1.2) is given.
|
// A protocol version of "3,3" (meaning TLS 1.2) is given.
|
||||||
header := [2]byte{}
|
header := [2]byte{}
|
||||||
|
|||||||
@@ -3,8 +3,10 @@ package fake_test
|
|||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"io"
|
"io"
|
||||||
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@@ -393,3 +395,273 @@ func TestParseClientHelloSNI(t *testing.T) {
|
|||||||
t.Parallel()
|
t.Parallel()
|
||||||
suite.Run(t, &ParseClientHelloSNITestSuite{})
|
suite.Run(t, &ParseClientHelloSNITestSuite{})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// fragmentTLSRecord splits a single TLS record into n TLS records by
|
||||||
|
// dividing the payload into roughly equal parts. Each part gets its own
|
||||||
|
// TLS record header with the same record type and version.
|
||||||
|
func fragmentTLSRecord(t testing.TB, full []byte, n int) []byte {
|
||||||
|
t.Helper()
|
||||||
|
|
||||||
|
recordType := full[0]
|
||||||
|
version := full[1:3]
|
||||||
|
payload := full[tls.SizeHeader:]
|
||||||
|
|
||||||
|
chunkSize := len(payload) / n
|
||||||
|
result := &bytes.Buffer{}
|
||||||
|
|
||||||
|
for i := 0; i < n; i++ {
|
||||||
|
start := i * chunkSize
|
||||||
|
end := start + chunkSize
|
||||||
|
|
||||||
|
if i == n-1 {
|
||||||
|
end = len(payload)
|
||||||
|
}
|
||||||
|
|
||||||
|
chunk := payload[start:end]
|
||||||
|
result.WriteByte(recordType)
|
||||||
|
result.Write(version)
|
||||||
|
require.NoError(t, binary.Write(result, binary.BigEndian, uint16(len(chunk))))
|
||||||
|
result.Write(chunk)
|
||||||
|
}
|
||||||
|
|
||||||
|
return result.Bytes()
|
||||||
|
}
|
||||||
|
|
||||||
|
// splitPayloadAt creates two TLS records from a single record by splitting
|
||||||
|
// the payload at the given byte position.
|
||||||
|
func splitPayloadAt(t testing.TB, full []byte, pos int) []byte {
|
||||||
|
t.Helper()
|
||||||
|
|
||||||
|
payload := full[tls.SizeHeader:]
|
||||||
|
buf := &bytes.Buffer{}
|
||||||
|
|
||||||
|
buf.WriteByte(tls.TypeHandshake)
|
||||||
|
buf.Write(full[1:3])
|
||||||
|
require.NoError(t, binary.Write(buf, binary.BigEndian, uint16(pos)))
|
||||||
|
buf.Write(payload[:pos])
|
||||||
|
|
||||||
|
buf.WriteByte(tls.TypeHandshake)
|
||||||
|
buf.Write(full[1:3])
|
||||||
|
require.NoError(t, binary.Write(buf, binary.BigEndian, uint16(len(payload)-pos)))
|
||||||
|
buf.Write(payload[pos:])
|
||||||
|
|
||||||
|
return buf.Bytes()
|
||||||
|
}
|
||||||
|
|
||||||
|
type ParseClientHelloFragmentedTestSuite struct {
|
||||||
|
suite.Suite
|
||||||
|
|
||||||
|
secret mtglib.Secret
|
||||||
|
snapshot *clientHelloSnapshot
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *ParseClientHelloFragmentedTestSuite) SetupSuite() {
|
||||||
|
parsed, err := mtglib.ParseSecret(
|
||||||
|
"ee367a189aee18fa31c190054efd4a8e9573746f726167652e676f6f676c65617069732e636f6d",
|
||||||
|
)
|
||||||
|
require.NoError(s.T(), err)
|
||||||
|
|
||||||
|
s.secret = parsed
|
||||||
|
|
||||||
|
fileData, err := os.ReadFile("testdata/client-hello-ok-19dfe38384b9884b.json")
|
||||||
|
require.NoError(s.T(), err)
|
||||||
|
|
||||||
|
s.snapshot = &clientHelloSnapshot{}
|
||||||
|
require.NoError(s.T(), json.Unmarshal(fileData, s.snapshot))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *ParseClientHelloFragmentedTestSuite) makeConn(data []byte) *parseClientHelloConnMock {
|
||||||
|
readBuf := &bytes.Buffer{}
|
||||||
|
readBuf.Write(data)
|
||||||
|
|
||||||
|
connMock := &parseClientHelloConnMock{
|
||||||
|
readBuf: readBuf,
|
||||||
|
}
|
||||||
|
|
||||||
|
connMock.
|
||||||
|
On("SetReadDeadline", mock.AnythingOfType("time.Time")).
|
||||||
|
Twice().
|
||||||
|
Return(nil)
|
||||||
|
|
||||||
|
return connMock
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *ParseClientHelloFragmentedTestSuite) TestReassemblySuccess() {
|
||||||
|
full := s.snapshot.GetFull()
|
||||||
|
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
data []byte
|
||||||
|
}{
|
||||||
|
{"two equal fragments", fragmentTLSRecord(s.T(), full, 2)},
|
||||||
|
{"three equal fragments", fragmentTLSRecord(s.T(), full, 3)},
|
||||||
|
{"single byte first fragment", splitPayloadAt(s.T(), full, 1)},
|
||||||
|
{"three byte first fragment", splitPayloadAt(s.T(), full, 3)},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
s.Run(tt.name, func() {
|
||||||
|
connMock := s.makeConn(tt.data)
|
||||||
|
defer connMock.AssertExpectations(s.T())
|
||||||
|
|
||||||
|
hello, err := fake.ReadClientHello(
|
||||||
|
connMock,
|
||||||
|
s.secret.Key[:],
|
||||||
|
s.secret.Host,
|
||||||
|
TolerateTime,
|
||||||
|
)
|
||||||
|
s.Require().NoError(err)
|
||||||
|
|
||||||
|
s.Equal(s.snapshot.GetRandom(), hello.Random[:])
|
||||||
|
s.Equal(s.snapshot.GetSessionID(), hello.SessionID)
|
||||||
|
s.Equal(uint16(s.snapshot.CipherSuite), hello.CipherSuite)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *ParseClientHelloFragmentedTestSuite) TestReassemblyErrors() {
|
||||||
|
full := s.snapshot.GetFull()
|
||||||
|
payload := full[tls.SizeHeader:]
|
||||||
|
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
buildData func() []byte
|
||||||
|
errMsg string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "wrong continuation record type",
|
||||||
|
buildData: func() []byte {
|
||||||
|
buf := &bytes.Buffer{}
|
||||||
|
buf.WriteByte(tls.TypeHandshake)
|
||||||
|
buf.Write(full[1:3])
|
||||||
|
require.NoError(s.T(), binary.Write(buf, binary.BigEndian, uint16(10)))
|
||||||
|
buf.Write(payload[:10])
|
||||||
|
// Wrong type: application data instead of handshake
|
||||||
|
buf.WriteByte(tls.TypeApplicationData)
|
||||||
|
buf.Write(full[1:3])
|
||||||
|
require.NoError(s.T(), binary.Write(buf, binary.BigEndian, uint16(len(payload)-10)))
|
||||||
|
buf.Write(payload[10:])
|
||||||
|
return buf.Bytes()
|
||||||
|
},
|
||||||
|
errMsg: "unexpected record type",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "too many continuation records",
|
||||||
|
buildData: func() []byte {
|
||||||
|
// Handshake header claiming 256 bytes, but we only send 1 byte per continuation
|
||||||
|
handshakePayload := []byte{0x01, 0x00, 0x01, 0x00}
|
||||||
|
buf := &bytes.Buffer{}
|
||||||
|
buf.WriteByte(tls.TypeHandshake)
|
||||||
|
buf.Write([]byte{3, 1})
|
||||||
|
require.NoError(s.T(), binary.Write(buf, binary.BigEndian, uint16(len(handshakePayload))))
|
||||||
|
buf.Write(handshakePayload)
|
||||||
|
for range 11 {
|
||||||
|
buf.WriteByte(tls.TypeHandshake)
|
||||||
|
buf.Write([]byte{3, 1})
|
||||||
|
require.NoError(s.T(), binary.Write(buf, binary.BigEndian, uint16(1)))
|
||||||
|
buf.WriteByte(0xAB)
|
||||||
|
}
|
||||||
|
return buf.Bytes()
|
||||||
|
},
|
||||||
|
errMsg: "too many fragments",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "zero-length continuation record",
|
||||||
|
buildData: func() []byte {
|
||||||
|
buf := &bytes.Buffer{}
|
||||||
|
buf.WriteByte(tls.TypeHandshake)
|
||||||
|
buf.Write(full[1:3])
|
||||||
|
require.NoError(s.T(), binary.Write(buf, binary.BigEndian, uint16(10)))
|
||||||
|
buf.Write(payload[:10])
|
||||||
|
// Valid header but zero-length payload
|
||||||
|
buf.WriteByte(tls.TypeHandshake)
|
||||||
|
buf.Write(full[1:3])
|
||||||
|
require.NoError(s.T(), binary.Write(buf, binary.BigEndian, uint16(0)))
|
||||||
|
return buf.Bytes()
|
||||||
|
},
|
||||||
|
errMsg: "cannot read record header",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "wrong continuation record version",
|
||||||
|
buildData: func() []byte {
|
||||||
|
buf := &bytes.Buffer{}
|
||||||
|
buf.WriteByte(tls.TypeHandshake)
|
||||||
|
buf.Write(full[1:3])
|
||||||
|
require.NoError(s.T(), binary.Write(buf, binary.BigEndian, uint16(10)))
|
||||||
|
buf.Write(payload[:10])
|
||||||
|
// Wrong version: 3.3 instead of 3.1
|
||||||
|
buf.WriteByte(tls.TypeHandshake)
|
||||||
|
buf.Write([]byte{3, 3})
|
||||||
|
require.NoError(s.T(), binary.Write(buf, binary.BigEndian, uint16(len(payload)-10)))
|
||||||
|
buf.Write(payload[10:])
|
||||||
|
return buf.Bytes()
|
||||||
|
},
|
||||||
|
errMsg: "unexpected protocol version",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "handshake message too large",
|
||||||
|
buildData: func() []byte {
|
||||||
|
// Handshake header claiming 0x010000 (65536) bytes — exceeds 0xFFFF limit
|
||||||
|
handshakePayload := []byte{0x01, 0x01, 0x00, 0x00}
|
||||||
|
buf := &bytes.Buffer{}
|
||||||
|
buf.WriteByte(tls.TypeHandshake)
|
||||||
|
buf.Write([]byte{3, 1})
|
||||||
|
require.NoError(s.T(), binary.Write(buf, binary.BigEndian, uint16(len(handshakePayload))))
|
||||||
|
buf.Write(handshakePayload)
|
||||||
|
return buf.Bytes()
|
||||||
|
},
|
||||||
|
errMsg: "cannot read record header",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "truncated continuation record header",
|
||||||
|
buildData: func() []byte {
|
||||||
|
buf := &bytes.Buffer{}
|
||||||
|
buf.WriteByte(tls.TypeHandshake)
|
||||||
|
buf.Write(full[1:3])
|
||||||
|
require.NoError(s.T(), binary.Write(buf, binary.BigEndian, uint16(10)))
|
||||||
|
buf.Write(payload[:10])
|
||||||
|
// Connection ends mid-header (only 2 bytes)
|
||||||
|
buf.WriteByte(tls.TypeHandshake)
|
||||||
|
buf.WriteByte(3)
|
||||||
|
return buf.Bytes()
|
||||||
|
},
|
||||||
|
errMsg: "cannot read record header",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "truncated continuation record payload",
|
||||||
|
buildData: func() []byte {
|
||||||
|
buf := &bytes.Buffer{}
|
||||||
|
buf.WriteByte(tls.TypeHandshake)
|
||||||
|
buf.Write(full[1:3])
|
||||||
|
require.NoError(s.T(), binary.Write(buf, binary.BigEndian, uint16(10)))
|
||||||
|
buf.Write(payload[:10])
|
||||||
|
// Claims 100 bytes but no payload follows
|
||||||
|
buf.WriteByte(tls.TypeHandshake)
|
||||||
|
buf.Write(full[1:3])
|
||||||
|
require.NoError(s.T(), binary.Write(buf, binary.BigEndian, uint16(100)))
|
||||||
|
return buf.Bytes()
|
||||||
|
},
|
||||||
|
errMsg: "EOF",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
s.Run(tt.name, func() {
|
||||||
|
connMock := s.makeConn(tt.buildData())
|
||||||
|
defer connMock.AssertExpectations(s.T())
|
||||||
|
|
||||||
|
_, err := fake.ReadClientHello(
|
||||||
|
connMock,
|
||||||
|
s.secret.Key[:],
|
||||||
|
s.secret.Host,
|
||||||
|
TolerateTime,
|
||||||
|
)
|
||||||
|
s.ErrorContains(err, tt.errMsg)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestParseClientHelloFragmented(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
suite.Run(t, &ParseClientHelloFragmentedTestSuite{})
|
||||||
|
}
|
||||||
|
|||||||
@@ -9,11 +9,18 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
rnd "math/rand/v2"
|
rnd "math/rand/v2"
|
||||||
|
|
||||||
"github.com/9seconds/mtg/v2/mtglib/internal/doppel"
|
|
||||||
"github.com/9seconds/mtg/v2/mtglib/internal/tls"
|
"github.com/9seconds/mtg/v2/mtglib/internal/tls"
|
||||||
"golang.org/x/crypto/curve25519"
|
"golang.org/x/crypto/curve25519"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// NoiseParams controls the size of the fake ApplicationData record
|
||||||
|
// in ServerHello. If Mean is 0, the legacy random range (2500-4700)
|
||||||
|
// is used.
|
||||||
|
type NoiseParams struct {
|
||||||
|
Mean int
|
||||||
|
Jitter int
|
||||||
|
}
|
||||||
|
|
||||||
const (
|
const (
|
||||||
TypeHandshakeServer = 0x02
|
TypeHandshakeServer = 0x02
|
||||||
ChangeCipherValue = 0x01
|
ChangeCipherValue = 0x01
|
||||||
@@ -33,13 +40,13 @@ var serverHelloSuffix = []byte{
|
|||||||
0x00, 0x20, // 32 bytes of key
|
0x00, 0x20, // 32 bytes of key
|
||||||
}
|
}
|
||||||
|
|
||||||
func SendServerHello(w io.Writer, secret []byte, clientHello *ClientHello) error {
|
func SendServerHello(w io.Writer, secret []byte, clientHello *ClientHello, noise NoiseParams) error {
|
||||||
buf := &bytes.Buffer{}
|
buf := &bytes.Buffer{}
|
||||||
buf.Grow(tls.MaxRecordSize)
|
buf.Grow(tls.MaxRecordSize)
|
||||||
|
|
||||||
generateServerHello(buf, clientHello)
|
generateServerHello(buf, clientHello)
|
||||||
generateChangeCipherValue(buf)
|
generateChangeCipherValue(buf)
|
||||||
generateNoise(buf)
|
generateNoise(buf, noise)
|
||||||
|
|
||||||
packet := buf.Bytes()
|
packet := buf.Bytes()
|
||||||
digest := hmac.New(sha256.New, secret)
|
digest := hmac.New(sha256.New, secret)
|
||||||
@@ -125,19 +132,31 @@ func generateChangeCipherValue(buf *bytes.Buffer) {
|
|||||||
buf.WriteByte(ChangeCipherValue)
|
buf.WriteByte(ChangeCipherValue)
|
||||||
}
|
}
|
||||||
|
|
||||||
func generateNoise(buf *bytes.Buffer) {
|
// generateNoise writes a single ApplicationData record mimicking the combined
|
||||||
data := make(
|
// size of a real TLS 1.3 encrypted server handshake (EncryptedExtensions +
|
||||||
[]byte,
|
// Certificate chain + CertificateVerify + Finished).
|
||||||
int64(
|
//
|
||||||
doppel.TLSRecordSizeStart+rnd.IntN(
|
// NOTE: Must be exactly ONE ApplicationData record — the Telegram client reads
|
||||||
doppel.TLSRecordSizeAccel-doppel.TLSRecordSizeStart,
|
// ServerHello + CCS + 1 ApplicationData and computes HMAC over all three.
|
||||||
),
|
// Multiple records would cause HMAC mismatch and connection failure.
|
||||||
),
|
func generateNoise(buf *bytes.Buffer, noise NoiseParams) {
|
||||||
)
|
var size int
|
||||||
|
|
||||||
if _, err := rand.Read(data[:]); err != nil {
|
if noise.Mean > 0 && noise.Jitter > 0 {
|
||||||
|
// Calibrated: use measured cert chain size ± jitter.
|
||||||
|
size = noise.Mean - noise.Jitter + rnd.IntN(2*noise.Jitter)
|
||||||
|
if size < 1000 {
|
||||||
|
size = 1000
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Legacy fallback: random in 2500-4700 range.
|
||||||
|
size = 2500 + rnd.IntN(2200)
|
||||||
|
}
|
||||||
|
|
||||||
|
data := make([]byte, size)
|
||||||
|
if _, err := rand.Read(data); err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
tls.WriteRecord(buf, data[:]) //nolint: errcheck
|
tls.WriteRecord(buf, data) //nolint: errcheck
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/9seconds/mtg/v2/mtglib"
|
"github.com/9seconds/mtg/v2/mtglib"
|
||||||
"github.com/9seconds/mtg/v2/mtglib/internal/doppel"
|
|
||||||
"github.com/9seconds/mtg/v2/mtglib/internal/tls"
|
"github.com/9seconds/mtg/v2/mtglib/internal/tls"
|
||||||
"github.com/9seconds/mtg/v2/mtglib/internal/tls/fake"
|
"github.com/9seconds/mtg/v2/mtglib/internal/tls/fake"
|
||||||
"github.com/stretchr/testify/suite"
|
"github.com/stretchr/testify/suite"
|
||||||
@@ -39,7 +38,7 @@ func (suite *SendServerHelloTestSuite) SetupTest() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (suite *SendServerHelloTestSuite) TestRecordStructure() {
|
func (suite *SendServerHelloTestSuite) TestRecordStructure() {
|
||||||
err := fake.SendServerHello(suite.buf, suite.secret.Key[:], suite.hello)
|
err := fake.SendServerHello(suite.buf, suite.secret.Key[:], suite.hello, fake.NoiseParams{})
|
||||||
suite.NoError(err)
|
suite.NoError(err)
|
||||||
|
|
||||||
var rec bytes.Buffer
|
var rec bytes.Buffer
|
||||||
@@ -59,13 +58,13 @@ func (suite *SendServerHelloTestSuite) TestRecordStructure() {
|
|||||||
recordType, length, err := tls.ReadRecord(suite.buf, &rec)
|
recordType, length, err := tls.ReadRecord(suite.buf, &rec)
|
||||||
suite.NoError(err)
|
suite.NoError(err)
|
||||||
suite.Equal(byte(tls.TypeApplicationData), recordType)
|
suite.Equal(byte(tls.TypeApplicationData), recordType)
|
||||||
suite.Greater(length, int64(doppel.TLSRecordSizeStart))
|
suite.Greater(length, int64(2500))
|
||||||
|
|
||||||
suite.Empty(suite.buf.Bytes())
|
suite.Empty(suite.buf.Bytes())
|
||||||
}
|
}
|
||||||
|
|
||||||
func (suite *SendServerHelloTestSuite) TestHMAC() {
|
func (suite *SendServerHelloTestSuite) TestHMAC() {
|
||||||
err := fake.SendServerHello(suite.buf, suite.secret.Key[:], suite.hello)
|
err := fake.SendServerHello(suite.buf, suite.secret.Key[:], suite.hello, fake.NoiseParams{})
|
||||||
suite.NoError(err)
|
suite.NoError(err)
|
||||||
|
|
||||||
packet := make([]byte, suite.buf.Len())
|
packet := make([]byte, suite.buf.Len())
|
||||||
@@ -83,7 +82,7 @@ func (suite *SendServerHelloTestSuite) TestHMAC() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (suite *SendServerHelloTestSuite) TestHandshakePayload() {
|
func (suite *SendServerHelloTestSuite) TestHandshakePayload() {
|
||||||
err := fake.SendServerHello(suite.buf, suite.secret.Key[:], suite.hello)
|
err := fake.SendServerHello(suite.buf, suite.secret.Key[:], suite.hello, fake.NoiseParams{})
|
||||||
suite.NoError(err)
|
suite.NoError(err)
|
||||||
|
|
||||||
packet := suite.buf.Bytes()
|
packet := suite.buf.Bytes()
|
||||||
@@ -105,7 +104,7 @@ func (suite *SendServerHelloTestSuite) TestHandshakePayload() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (suite *SendServerHelloTestSuite) TestChangeCipherSpec() {
|
func (suite *SendServerHelloTestSuite) TestChangeCipherSpec() {
|
||||||
err := fake.SendServerHello(suite.buf, suite.secret.Key[:], suite.hello)
|
err := fake.SendServerHello(suite.buf, suite.secret.Key[:], suite.hello, fake.NoiseParams{})
|
||||||
suite.NoError(err)
|
suite.NoError(err)
|
||||||
|
|
||||||
// Skip first record
|
// Skip first record
|
||||||
@@ -124,6 +123,33 @@ func (suite *SendServerHelloTestSuite) TestChangeCipherSpec() {
|
|||||||
suite.Equal([]byte{fake.ChangeCipherValue}, rec.Bytes())
|
suite.Equal([]byte{fake.ChangeCipherValue}, rec.Bytes())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (suite *SendServerHelloTestSuite) TestCalibratedNoiseSize() {
|
||||||
|
noise := fake.NoiseParams{Mean: 6480, Jitter: 100}
|
||||||
|
err := fake.SendServerHello(suite.buf, suite.secret.Key[:], suite.hello, noise)
|
||||||
|
suite.NoError(err)
|
||||||
|
|
||||||
|
var rec bytes.Buffer
|
||||||
|
|
||||||
|
// Skip ServerHello
|
||||||
|
_, _, err = tls.ReadRecord(suite.buf, &rec)
|
||||||
|
suite.NoError(err)
|
||||||
|
|
||||||
|
// Skip ChangeCipherSpec
|
||||||
|
rec.Reset()
|
||||||
|
_, _, err = tls.ReadRecord(suite.buf, &rec)
|
||||||
|
suite.NoError(err)
|
||||||
|
|
||||||
|
// Read noise ApplicationData
|
||||||
|
rec.Reset()
|
||||||
|
recordType, length, err := tls.ReadRecord(suite.buf, &rec)
|
||||||
|
suite.NoError(err)
|
||||||
|
suite.Equal(byte(tls.TypeApplicationData), recordType)
|
||||||
|
|
||||||
|
// Should be within mean ± jitter range.
|
||||||
|
suite.GreaterOrEqual(length, int64(noise.Mean-noise.Jitter))
|
||||||
|
suite.LessOrEqual(length, int64(noise.Mean+noise.Jitter))
|
||||||
|
}
|
||||||
|
|
||||||
func TestSendServerHello(t *testing.T) {
|
func TestSendServerHello(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
suite.Run(t, &SendServerHelloTestSuite{})
|
suite.Run(t, &SendServerHelloTestSuite{})
|
||||||
|
|||||||
@@ -0,0 +1,158 @@
|
|||||||
|
package fake
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"encoding/binary"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
|
||||||
|
"github.com/9seconds/mtg/v2/mtglib/internal/tls"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
maxFragmentsCount = 10
|
||||||
|
)
|
||||||
|
|
||||||
|
var ErrTooManyFragments = errors.New("too many fragments")
|
||||||
|
|
||||||
|
// https://datatracker.ietf.org/doc/html/rfc5246#section-6.2.1
|
||||||
|
// client hello can be fragmented in a series of packets:
|
||||||
|
//
|
||||||
|
// Bytes on the wire:
|
||||||
|
//
|
||||||
|
// 16 03 01 00 F8 01 00 00 F4 03 03 [32 bytes random] [session_id] [ciphers] [SNI...]
|
||||||
|
// ├─────────────┤├──────────────────────────────────────────────────────────────────┤
|
||||||
|
//
|
||||||
|
// TLS record Payload (248 bytes)
|
||||||
|
// header (5B)
|
||||||
|
//
|
||||||
|
// 16 = Handshake
|
||||||
|
// 03 01 = TLS 1.0 (record layer version)
|
||||||
|
// 00 F8 = 248 bytes follow
|
||||||
|
//
|
||||||
|
// 01 = ClientHello (handshake type)
|
||||||
|
// 00 00 F4 = 244 bytes of handshake body
|
||||||
|
// 03 03 = TLS 1.2 (actual protocol version)
|
||||||
|
// ...rest of ClientHello...
|
||||||
|
//
|
||||||
|
// Fragmented record look like:
|
||||||
|
//
|
||||||
|
// Record 1:
|
||||||
|
//
|
||||||
|
// 16 03 01 00 03 01 00 00
|
||||||
|
// ├─────────────┤├──────┤
|
||||||
|
//
|
||||||
|
// TLS header 3 bytes of payload
|
||||||
|
//
|
||||||
|
// 16 = Handshake
|
||||||
|
// 03 01 = TLS 1.0
|
||||||
|
// 00 03 = only 3 bytes follow
|
||||||
|
//
|
||||||
|
// 01 = ClientHello type
|
||||||
|
// 00 00 = first 2 bytes of the uint24 length (INCOMPLETE!)
|
||||||
|
//
|
||||||
|
// Record 2:
|
||||||
|
// 16 03 01 00 F5 F4 03 03 [32 bytes random] [session_id] [ciphers] [SNI...]
|
||||||
|
// ├─────────────┤├────────────────────────────────────────────────────────────┤
|
||||||
|
//
|
||||||
|
// TLS header remaining 245 bytes of payload
|
||||||
|
//
|
||||||
|
// 16 = Handshake
|
||||||
|
// 03 01 = TLS 1.0
|
||||||
|
// 00 F5 = 245 bytes follow
|
||||||
|
//
|
||||||
|
// F4 = last byte of uint24 length (now complete: 00 00 F4 = 244)
|
||||||
|
// 03 03 = TLS 1.2
|
||||||
|
// ...rest of ClientHello continues...
|
||||||
|
//
|
||||||
|
// So it means that there could be a series of handshake packets of different
|
||||||
|
// lengths. The goal of this function is to concatenate these fragments.
|
||||||
|
type fragmentedHandshakeReader struct {
|
||||||
|
r io.Reader
|
||||||
|
buf bytes.Buffer
|
||||||
|
readFragments int
|
||||||
|
}
|
||||||
|
|
||||||
|
func (f *fragmentedHandshakeReader) Read(p []byte) (int, error) {
|
||||||
|
if n, err := f.buf.Read(p); err == nil {
|
||||||
|
return n, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
f.buf.Reset()
|
||||||
|
|
||||||
|
for f.buf.Len() == 0 {
|
||||||
|
if f.readFragments > maxFragmentsCount {
|
||||||
|
return 0, ErrTooManyFragments
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := f.parseNextFragment(); err != nil {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
|
||||||
|
f.readFragments++
|
||||||
|
}
|
||||||
|
|
||||||
|
return f.buf.Read(p)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (f *fragmentedHandshakeReader) parseNextFragment() error {
|
||||||
|
// record_type(1) + version(2) + size(2)
|
||||||
|
// 16 - type is 0x16 (handshake record)
|
||||||
|
// 03 01 - protocol version is "3,1" (also known as TLS 1.0)
|
||||||
|
// 00 f8 - 0xF8 (248) bytes of handshake message follows
|
||||||
|
header := [1 + 2 + 2]byte{}
|
||||||
|
|
||||||
|
if _, err := io.ReadFull(f.r, header[:]); err != nil {
|
||||||
|
return fmt.Errorf("cannot read record header: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if header[0] != tls.TypeHandshake {
|
||||||
|
return fmt.Errorf("unexpected record type %#x", header[0])
|
||||||
|
}
|
||||||
|
|
||||||
|
if header[1] != 3 || header[2] != 1 {
|
||||||
|
return fmt.Errorf("unexpected protocol version %#x %#x", header[1], header[2])
|
||||||
|
}
|
||||||
|
|
||||||
|
length := int64(binary.BigEndian.Uint16(header[3:]))
|
||||||
|
_, err := io.CopyN(&f.buf, f.r, length)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func parseClientHello(r io.Reader) (*bytes.Buffer, *bytes.Buffer, error) {
|
||||||
|
r = &fragmentedHandshakeReader{r: r}
|
||||||
|
header := [1 + 3]byte{}
|
||||||
|
|
||||||
|
if _, err := io.ReadFull(r, header[:]); err != nil {
|
||||||
|
return nil, nil, fmt.Errorf("cannot read handshake header: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if header[0] != TypeHandshakeClient {
|
||||||
|
return nil, nil, fmt.Errorf("incorrect handshake type: %#x", header[0])
|
||||||
|
}
|
||||||
|
|
||||||
|
// unfortunately there is not uint24 in golang, so we just reuse header
|
||||||
|
header[0] = 0
|
||||||
|
length := int64(binary.BigEndian.Uint32(header[:]))
|
||||||
|
|
||||||
|
clientHelloCopy := &bytes.Buffer{}
|
||||||
|
clientHelloCopy.Write([]byte{tls.TypeHandshake, 3, 1})
|
||||||
|
binary.Write( //nolint: errcheck
|
||||||
|
clientHelloCopy,
|
||||||
|
binary.BigEndian,
|
||||||
|
// 1 for handshake type
|
||||||
|
// 3 for handshake length
|
||||||
|
uint16(1+3+length),
|
||||||
|
)
|
||||||
|
clientHelloCopy.WriteByte(TypeHandshakeClient)
|
||||||
|
clientHelloCopy.Write(header[1:])
|
||||||
|
|
||||||
|
handshakeCopy := &bytes.Buffer{}
|
||||||
|
writer := io.MultiWriter(clientHelloCopy, handshakeCopy)
|
||||||
|
|
||||||
|
_, err := io.CopyN(writer, r, length)
|
||||||
|
|
||||||
|
return clientHelloCopy, handshakeCopy, err
|
||||||
|
}
|
||||||
+18
-8
@@ -27,6 +27,7 @@ type Proxy struct {
|
|||||||
|
|
||||||
allowFallbackOnUnknownDC bool
|
allowFallbackOnUnknownDC bool
|
||||||
tolerateTimeSkewness time.Duration
|
tolerateTimeSkewness time.Duration
|
||||||
|
idleTimeout time.Duration
|
||||||
domainFrontingPort int
|
domainFrontingPort int
|
||||||
domainFrontingIP string
|
domainFrontingIP string
|
||||||
domainFrontingProxyProtocol bool
|
domainFrontingProxyProtocol bool
|
||||||
@@ -65,10 +66,10 @@ func (p *Proxy) ServeConn(conn essentials.Conn) {
|
|||||||
ctx := newStreamContext(p.ctx, p.logger, conn)
|
ctx := newStreamContext(p.ctx, p.logger, conn)
|
||||||
defer ctx.Close()
|
defer ctx.Close()
|
||||||
|
|
||||||
go func() {
|
stop := context.AfterFunc(ctx, func() {
|
||||||
<-ctx.Done()
|
|
||||||
ctx.Close()
|
ctx.Close()
|
||||||
}()
|
})
|
||||||
|
defer stop()
|
||||||
|
|
||||||
p.eventStream.Send(ctx, NewEventStart(ctx.streamID, ctx.ClientIP()))
|
p.eventStream.Send(ctx, NewEventStart(ctx.streamID, ctx.ClientIP()))
|
||||||
ctx.logger.Info("Stream has been started")
|
ctx.logger.Info("Stream has been started")
|
||||||
@@ -101,11 +102,13 @@ func (p *Proxy) ServeConn(conn essentials.Conn) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tracker := newIdleTracker(p.idleTimeout)
|
||||||
|
|
||||||
relay.Relay(
|
relay.Relay(
|
||||||
ctx,
|
ctx,
|
||||||
ctx.logger.Named("relay"),
|
ctx.logger.Named("relay"),
|
||||||
ctx.telegramConn,
|
connIdleTimeout{Conn: ctx.telegramConn, tracker: tracker},
|
||||||
ctx.clientConn,
|
connIdleTimeout{Conn: ctx.clientConn, tracker: tracker},
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -151,6 +154,7 @@ func (p *Proxy) Serve(listener net.Listener) error {
|
|||||||
case errors.Is(err, ants.ErrPoolClosed):
|
case errors.Is(err, ants.ErrPoolClosed):
|
||||||
return nil
|
return nil
|
||||||
case errors.Is(err, ants.ErrPoolOverload):
|
case errors.Is(err, ants.ErrPoolOverload):
|
||||||
|
conn.Close() //nolint: errcheck
|
||||||
logger.Info("connection was concurrency limited")
|
logger.Info("connection was concurrency limited")
|
||||||
p.eventStream.Send(p.ctx, NewEventConcurrencyLimited())
|
p.eventStream.Send(p.ctx, NewEventConcurrencyLimited())
|
||||||
}
|
}
|
||||||
@@ -192,7 +196,10 @@ func (p *Proxy) doFakeTLSHandshake(ctx *streamContext) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := fake.SendServerHello(ctx.clientConn, p.secret.Key[:], clientHello); err != nil {
|
gangerNoise := p.doppelGanger.NoiseParams()
|
||||||
|
noiseParams := fake.NoiseParams{Mean: gangerNoise.Mean, Jitter: gangerNoise.Jitter}
|
||||||
|
|
||||||
|
if err := fake.SendServerHello(ctx.clientConn, p.secret.Key[:], clientHello, noiseParams); err != nil {
|
||||||
p.logger.InfoError("cannot send welcome packet", err)
|
p.logger.InfoError("cannot send welcome packet", err)
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
@@ -300,11 +307,13 @@ func (p *Proxy) doDomainFronting(ctx *streamContext, conn *connRewind) {
|
|||||||
stream: p.eventStream,
|
stream: p.eventStream,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tracker := newIdleTracker(p.idleTimeout)
|
||||||
|
|
||||||
relay.Relay(
|
relay.Relay(
|
||||||
ctx,
|
ctx,
|
||||||
ctx.logger.Named("domain-fronting"),
|
ctx.logger.Named("domain-fronting"),
|
||||||
frontConn,
|
connIdleTimeout{Conn: frontConn, tracker: tracker},
|
||||||
conn,
|
connIdleTimeout{Conn: conn, tracker: tracker},
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -336,6 +345,7 @@ func NewProxy(opts ProxyOpts) (*Proxy, error) {
|
|||||||
domainFrontingPort: opts.getDomainFrontingPort(),
|
domainFrontingPort: opts.getDomainFrontingPort(),
|
||||||
domainFrontingIP: opts.DomainFrontingIP,
|
domainFrontingIP: opts.DomainFrontingIP,
|
||||||
tolerateTimeSkewness: opts.getTolerateTimeSkewness(),
|
tolerateTimeSkewness: opts.getTolerateTimeSkewness(),
|
||||||
|
idleTimeout: opts.getIdleTimeout(),
|
||||||
allowFallbackOnUnknownDC: opts.AllowFallbackOnUnknownDC,
|
allowFallbackOnUnknownDC: opts.AllowFallbackOnUnknownDC,
|
||||||
telegram: tg,
|
telegram: tg,
|
||||||
doppelGanger: doppel.NewGanger(
|
doppelGanger: doppel.NewGanger(
|
||||||
|
|||||||
@@ -215,6 +215,14 @@ func (p ProxyOpts) getPreferIP() string {
|
|||||||
return p.PreferIP
|
return p.PreferIP
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p ProxyOpts) getIdleTimeout() time.Duration {
|
||||||
|
if p.IdleTimeout == 0 {
|
||||||
|
return time.Minute
|
||||||
|
}
|
||||||
|
|
||||||
|
return p.IdleTimeout
|
||||||
|
}
|
||||||
|
|
||||||
func (p ProxyOpts) getLogger(name string) Logger {
|
func (p ProxyOpts) getLogger(name string) Logger {
|
||||||
return p.Logger.Named(name)
|
return p.Logger.Named(name)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -175,7 +175,7 @@ func (suite *ProxyTestSuite) TestHTTPSRequest() {
|
|||||||
addr := fmt.Sprintf("https://%s/headers", suite.ProxyAddress())
|
addr := fmt.Sprintf("https://%s/headers", suite.ProxyAddress())
|
||||||
|
|
||||||
resp, err := client.Get(addr) //nolint: noctx
|
resp, err := client.Get(addr) //nolint: noctx
|
||||||
suite.NoError(err)
|
suite.Require().NoError(err)
|
||||||
|
|
||||||
defer resp.Body.Close() //nolint: errcheck
|
defer resp.Body.Close() //nolint: errcheck
|
||||||
|
|
||||||
|
|||||||
@@ -3,5 +3,4 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
func runProfile() {
|
func runProfile() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
_ "net/http/pprof" //nolint: gosec
|
_ "net/http/pprof" //nolint: gosec
|
||||||
|
|||||||
Reference in New Issue
Block a user