Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
442c32b6eb | ||
|
|
949a2aaac3 | ||
|
|
c77463f337 | ||
|
|
00377d6070 | ||
|
|
f393b4b3e9 | ||
|
|
75e6cfde15 | ||
|
|
7bfe5617d9 | ||
|
|
97cc96c243 | ||
|
|
1821ee2f61 |
58
.github/release_template.md
vendored
@@ -1,58 +0,0 @@
|
|||||||
<div align=center>
|
|
||||||
|
|
||||||
[](https://img.shields.io/github/downloads/chen08209/FlClash/vVERSION/)
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
**Download based on your OS:**
|
|
||||||
|
|
||||||
<div align=left>
|
|
||||||
<table>
|
|
||||||
<thead align=left>
|
|
||||||
<tr>
|
|
||||||
<th>OS</th>
|
|
||||||
<th>Download</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody align=left>
|
|
||||||
<tr>
|
|
||||||
<td>Android</td>
|
|
||||||
<td>
|
|
||||||
<a href="https://github.com/chen08209/FlClash/releases/download/vVERSION/FlClash-VERSION-android-arm64-v8a.apk"><img src="https://img.shields.io/badge/APK-ARMv8-168039.svg?logo=android"></a><br>
|
|
||||||
<a href="https://github.com/chen08209/FlClash/releases/download/vVERSION/FlClash-VERSION-android-armeabi-v7a.apk"><img src="https://img.shields.io/badge/APK-ARMv7-45bf55.svg?logo=android"></a><br>
|
|
||||||
<a href="https://github.com/chen08209/FlClash/releases/download/vVERSION/FlClash-VERSION-android-x86_64.apk"><img src="https://img.shields.io/badge/APK-x64-96ed89.svg?logo=android"></a>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Windows</td>
|
|
||||||
<td>
|
|
||||||
<a href="https://github.com/chen08209/FlClash/releases/download/vVERSION/FlClash-VERSION-windows-amd64-setup.exe"><img src="https://img.shields.io/badge/Setup-x64-2d7d9a.svg?logo=windows"></a><br>
|
|
||||||
<a href="https://github.com/chen08209/FlClash/releases/download/vVERSION/FlClash-VERSION-windows-amd64.zip"><img src="https://img.shields.io/badge/Portable-x64-67b7d1.svg?logo=windows"></a>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>macOS</td>
|
|
||||||
<td>
|
|
||||||
<a href="https://github.com/chen08209/FlClash/releases/download/vVERSION/FlClash-VERSION-macos-arm64.dmg"><img src="https://img.shields.io/badge/DMG-Apple%20Silicon-%23000000.svg?logo=apple"></a><br>
|
|
||||||
<a href="https://github.com/chen08209/FlClash/releases/download/vVERSION/FlClash-VERSION-macos-amd64.dmg"><img src="https://img.shields.io/badge/DMG-Intel%20X64-%2300A9E0.svg?logo=apple"></a><br>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Linux</td>
|
|
||||||
<td>
|
|
||||||
<a href="https://github.com/chen08209/FlClash/releases/download/vVERSION/FlClash-VERSION-linux-amd64.AppImage"><img src="https://img.shields.io/badge/AppImage-x64-f84e29.svg?logo=linux"> </a><br>
|
|
||||||
<a href="https://github.com/chen08209/FlClash/releases/download/vVERSION/FlClash-VERSION-linux-amd64.deb"><img src="https://img.shields.io/badge/DebPackage-x64-FF9966.svg?logo=debian"> </a><br>
|
|
||||||
<a href="https://github.com/chen08209/FlClash/releases/download/vVERSION/FlClash-VERSION-linux-amd64.deb"><img src="https://img.shields.io/badge/RpmPackage-x64-F1B42F.svg?logo=redhat"> </a>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div dir="ltr">
|
|
||||||
|
|
||||||
**List of all changes:** [ChangeLog](https://github.com/chen08209/FlClash/blob/main/CHANGELOG.md)
|
|
||||||
|
|
||||||
</div>
|
|
||||||
245
.github/workflows/build.yaml
vendored
@@ -1,245 +0,0 @@
|
|||||||
name: build
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- 'v*'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- platform: android
|
|
||||||
os: ubuntu-latest
|
|
||||||
- platform: windows
|
|
||||||
os: windows-latest
|
|
||||||
arch: amd64
|
|
||||||
- platform: linux
|
|
||||||
os: ubuntu-latest
|
|
||||||
arch: amd64
|
|
||||||
- platform: macos
|
|
||||||
os: macos-13
|
|
||||||
arch: amd64
|
|
||||||
- platform: macos
|
|
||||||
os: macos-latest
|
|
||||||
arch: arm64
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
- name: Setup JAVA
|
|
||||||
if: startsWith(matrix.platform,'android')
|
|
||||||
uses: actions/setup-java@v4
|
|
||||||
with:
|
|
||||||
distribution: 'zulu'
|
|
||||||
java-version: 17
|
|
||||||
|
|
||||||
- name: Setup NDK
|
|
||||||
if: startsWith(matrix.platform,'android')
|
|
||||||
uses: nttld/setup-ndk@v1
|
|
||||||
id: setup-ndk
|
|
||||||
with:
|
|
||||||
ndk-version: r26b
|
|
||||||
add-to-path: true
|
|
||||||
link-to-sdk: true
|
|
||||||
|
|
||||||
- name: Setup Android Signing
|
|
||||||
if: startsWith(matrix.platform,'android')
|
|
||||||
run: |
|
|
||||||
echo "${{ secrets.KEYSTORE }}" | base64 --decode > android/app/keystore.jks
|
|
||||||
echo "keyAlias=${{ secrets.KEY_ALIAS }}" >> android/local.properties
|
|
||||||
echo "storePassword=${{ secrets.STORE_PASSWORD }}" >> android/local.properties
|
|
||||||
echo "keyPassword=${{ secrets.KEY_PASSWORD }}" >> android/local.properties
|
|
||||||
|
|
||||||
|
|
||||||
- name: Setup Go
|
|
||||||
uses: actions/setup-go@v5
|
|
||||||
with:
|
|
||||||
go-version: 'stable'
|
|
||||||
cache-dependency-path: |
|
|
||||||
core/go.sum
|
|
||||||
|
|
||||||
- name: Setup Flutter
|
|
||||||
uses: subosito/flutter-action@v2
|
|
||||||
with:
|
|
||||||
flutter-version: '3.x'
|
|
||||||
channel: 'stable'
|
|
||||||
cache: true
|
|
||||||
|
|
||||||
- name: Get Flutter Dependency
|
|
||||||
run: flutter pub get
|
|
||||||
|
|
||||||
- name: Setup
|
|
||||||
run: dart setup.dart ${{ matrix.platform }} ${{ matrix.arch && format('--arch {0}', matrix.arch) }}
|
|
||||||
|
|
||||||
- name: Upload
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: artifact-${{ matrix.platform }}${{ matrix.arch && format('-{0}', matrix.arch) }}
|
|
||||||
path: ./dist
|
|
||||||
overwrite: true
|
|
||||||
|
|
||||||
changelog:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: [ build ]
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
if: ${{ !contains(github.ref, '+') }}
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
ref: refs/heads/main
|
|
||||||
|
|
||||||
- name: Generate
|
|
||||||
if: ${{ !contains(github.ref, '+') }}
|
|
||||||
run: |
|
|
||||||
tags=($(git tag --merged $(git rev-parse HEAD) --sort=-creatordate))
|
|
||||||
preTag=$(grep -oP '^## \K.*' CHANGELOG.md | head -n 1)
|
|
||||||
currentTag=""
|
|
||||||
for ((i = 0; i <= ${#tags[@]}; i++)); do
|
|
||||||
if (( i < ${#tags[@]} )); then
|
|
||||||
tag=${tags[$i]}
|
|
||||||
else
|
|
||||||
tag=""
|
|
||||||
fi
|
|
||||||
if [ -n "$currentTag" ]; then
|
|
||||||
if [ "$(echo -e "$currentTag\n$preTag" | sort -V | head -n 1)" == "$currentTag" ]; then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
if [ -n "$currentTag" ]; then
|
|
||||||
echo "## $currentTag" >> NEW_CHANGELOG.md
|
|
||||||
echo "" >> NEW_CHANGELOG.md
|
|
||||||
if [ -n "$tag" ]; then
|
|
||||||
git log --pretty=format:"%B" "$tag..$currentTag" | awk 'NF {print "- " $0} !NF {print ""}' >> NEW_CHANGELOG.md
|
|
||||||
else
|
|
||||||
git log --pretty=format:"%B" "$currentTag" | awk 'NF {print "- " $0} !NF {print ""}' >> NEW_CHANGELOG.md
|
|
||||||
fi
|
|
||||||
echo "" >> NEW_CHANGELOG.md
|
|
||||||
fi
|
|
||||||
currentTag=$tag
|
|
||||||
done
|
|
||||||
cat CHANGELOG.md >> NEW_CHANGELOG.md
|
|
||||||
cat NEW_CHANGELOG.md > CHANGELOG.md
|
|
||||||
|
|
||||||
- name: Commit
|
|
||||||
if: ${{ !contains(github.ref, '+') }}
|
|
||||||
run: |
|
|
||||||
git add CHANGELOG.md
|
|
||||||
if ! git diff --cached --quiet; then
|
|
||||||
echo "Commit pushing"
|
|
||||||
git config --local user.email "chen08209@gmail.com"
|
|
||||||
git config --local user.name "chen08209"
|
|
||||||
git commit -m "Update changelog"
|
|
||||||
git push
|
|
||||||
if [ $? -eq 0 ]; then
|
|
||||||
echo "Push succeeded"
|
|
||||||
else
|
|
||||||
echo "Push failed"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
upload:
|
|
||||||
permissions: write-all
|
|
||||||
needs: [ build ]
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
services:
|
|
||||||
telegram-bot-api:
|
|
||||||
image: aiogram/telegram-bot-api:latest
|
|
||||||
env:
|
|
||||||
TELEGRAM_API_ID: ${{ secrets.TELEGRAM_API_ID }}
|
|
||||||
TELEGRAM_API_HASH: ${{ secrets.TELEGRAM_API_HASH }}
|
|
||||||
ports:
|
|
||||||
- 8081:8081
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Download
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
path: ./dist/
|
|
||||||
pattern: artifact-*
|
|
||||||
merge-multiple: true
|
|
||||||
|
|
||||||
- name: Generate release.md
|
|
||||||
run: |
|
|
||||||
tags=($(git tag --merged $(git rev-parse HEAD) --sort=-creatordate))
|
|
||||||
preTag=$(curl --silent "https://api.github.com/repos/chen08209/FlClash/releases/latest" | grep -Po '"tag_name": "\K.*?(?=")' || echo "")
|
|
||||||
currentTag=""
|
|
||||||
for ((i = 0; i <= ${#tags[@]}; i++)); do
|
|
||||||
if (( i < ${#tags[@]} )); then
|
|
||||||
tag=${tags[$i]}
|
|
||||||
else
|
|
||||||
tag=""
|
|
||||||
fi
|
|
||||||
if [ -n "$currentTag" ]; then
|
|
||||||
if [ "$(echo -e "$currentTag\n$preTag" | sort -V | head -n 1)" == "$currentTag" ]; then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
if [ -n "$currentTag" ]; then
|
|
||||||
if [ -n "$tag" ]; then
|
|
||||||
git log --pretty=format:"%B" "$tag..$currentTag" | awk 'NF {print "- " $0} !NF {print ""}' >> release.md
|
|
||||||
else
|
|
||||||
git log --pretty=format:"%B" "$currentTag" | awk 'NF {print "- " $0} !NF {print ""}' >> release.md
|
|
||||||
fi
|
|
||||||
echo "" >> release.md
|
|
||||||
fi
|
|
||||||
currentTag=$tag
|
|
||||||
done
|
|
||||||
|
|
||||||
- name: Push to telegram
|
|
||||||
env:
|
|
||||||
TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
|
|
||||||
TAG: ${{ github.ref_name }}
|
|
||||||
run: |
|
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install requests
|
|
||||||
python release.py
|
|
||||||
|
|
||||||
- name: Patch release.md
|
|
||||||
run: |
|
|
||||||
version=$(echo "${{ github.ref_name }}" | sed 's/^v//')
|
|
||||||
sed "s|VERSION|$version|g" ./.github/release_template.md >> release.md
|
|
||||||
|
|
||||||
- name: Release
|
|
||||||
if: ${{ !contains(github.ref, '+') }}
|
|
||||||
uses: softprops/action-gh-release@v2
|
|
||||||
with:
|
|
||||||
files: ./dist/*
|
|
||||||
body_path: './release.md'
|
|
||||||
|
|
||||||
- name: Create Fdroid Source Dir
|
|
||||||
if: ${{ !contains(github.ref, '+') }}
|
|
||||||
run: |
|
|
||||||
mkdir -p ./tmp
|
|
||||||
cp ./dist/*android-arm64-v8a* ./tmp/ || true
|
|
||||||
echo "Files copied successfully"
|
|
||||||
|
|
||||||
- name: Push to fdroid repo
|
|
||||||
if: ${{ !contains(github.ref, '+') }}
|
|
||||||
uses: cpina/github-action-push-to-another-repository@v1.7.2
|
|
||||||
env:
|
|
||||||
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }}
|
|
||||||
with:
|
|
||||||
source-directory: ./tmp/
|
|
||||||
destination-github-username: chen08209
|
|
||||||
destination-repository-name: FlClash-fdroid-repo
|
|
||||||
user-name: 'github-actions[bot]'
|
|
||||||
user-email: 'github-actions[bot]@users.noreply.github.com'
|
|
||||||
target-branch: action-pr
|
|
||||||
commit-message: Update from ${{ github.ref_name }}
|
|
||||||
target-directory: /tmp/
|
|
||||||
|
|
||||||
117
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
name: build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'v*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- platform: android
|
||||||
|
os: ubuntu-latest
|
||||||
|
- platform: windows
|
||||||
|
os: windows-latest
|
||||||
|
- platform: linux
|
||||||
|
os: ubuntu-latest
|
||||||
|
- platform: macos
|
||||||
|
os: macos-13
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
- name: Setup JAVA
|
||||||
|
if: startsWith(matrix.platform,'android')
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
distribution: 'zulu'
|
||||||
|
java-version: 17
|
||||||
|
|
||||||
|
- name: Setup NDK
|
||||||
|
if: startsWith(matrix.platform,'android')
|
||||||
|
uses: nttld/setup-ndk@v1
|
||||||
|
id: setup-ndk
|
||||||
|
with:
|
||||||
|
ndk-version: r26b
|
||||||
|
add-to-path: true
|
||||||
|
link-to-sdk: true
|
||||||
|
|
||||||
|
- name: Setup Android Signing
|
||||||
|
if: startsWith(matrix.platform,'android')
|
||||||
|
run: |
|
||||||
|
echo "${{ secrets.KEYSTORE }}" | base64 --decode > android/app/keystore.jks
|
||||||
|
echo "keyAlias=${{ secrets.KEY_ALIAS }}" >> android/local.properties
|
||||||
|
echo "storePassword=${{ secrets.STORE_PASSWORD }}" >> android/local.properties
|
||||||
|
echo "keyPassword=${{ secrets.KEY_PASSWORD }}" >> android/local.properties
|
||||||
|
|
||||||
|
|
||||||
|
- name: Setup Go
|
||||||
|
uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
go-version-file: 'core/go.mod'
|
||||||
|
cache-dependency-path: |
|
||||||
|
core/go.sum
|
||||||
|
|
||||||
|
- name: Setup Flutter
|
||||||
|
uses: subosito/flutter-action@v2
|
||||||
|
with:
|
||||||
|
flutter-version: '3.x'
|
||||||
|
channel: 'stable'
|
||||||
|
cache: true
|
||||||
|
|
||||||
|
- name: Get Flutter Dependency
|
||||||
|
run: flutter pub get
|
||||||
|
|
||||||
|
- name: Setup
|
||||||
|
run: |
|
||||||
|
dart setup.dart ${{ matrix.platform }}
|
||||||
|
|
||||||
|
- name: Upload
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: artifact-${{ matrix.platform }}
|
||||||
|
path: ./dist
|
||||||
|
retention-days: 1
|
||||||
|
overwrite: true
|
||||||
|
|
||||||
|
|
||||||
|
upload-release:
|
||||||
|
permissions: write-all
|
||||||
|
needs: [ build ]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
- name: Download
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
path: ./dist/
|
||||||
|
pattern: artifact-*
|
||||||
|
merge-multiple: true
|
||||||
|
|
||||||
|
- name: Pre Release
|
||||||
|
run: |
|
||||||
|
pip install gitchangelog pystache mustache markdown
|
||||||
|
prelease=$(curl --silent "https://api.github.com/repos/chen08209/FlClash/releases/latest" | grep -Po '"tag_name": "\K.*?(?=")' || echo "")
|
||||||
|
if [ -z "$prelease" ]; then
|
||||||
|
echo "init" > release.md
|
||||||
|
else
|
||||||
|
current="${{ github.ref_name }}"
|
||||||
|
echo -e "\n\n<details markdown=1><summary>All changes from $current to the latest commit:</summary>\n\n" >> release.md
|
||||||
|
gitchangelog "${prelease}" >> release.md 2>&1 || echo "Error in gitchangelog"
|
||||||
|
echo -e "\n\n</details>" >> release.md
|
||||||
|
fi
|
||||||
|
- name: Release
|
||||||
|
uses: softprops/action-gh-release@v2
|
||||||
|
with:
|
||||||
|
files: ./dist/*
|
||||||
|
body_path: './release.md'
|
||||||
4
.gitignore
vendored
@@ -5,11 +5,9 @@
|
|||||||
*.swp
|
*.swp
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.atom/
|
.atom/
|
||||||
.build/
|
|
||||||
.buildlog/
|
.buildlog/
|
||||||
.history
|
.history
|
||||||
.svn/
|
.svn/
|
||||||
.swiftpm/
|
|
||||||
migrate_working_dir/
|
migrate_working_dir/
|
||||||
|
|
||||||
# IntelliJ related
|
# IntelliJ related
|
||||||
@@ -33,7 +31,6 @@ migrate_working_dir/
|
|||||||
.pub-cache/
|
.pub-cache/
|
||||||
.pub/
|
.pub/
|
||||||
/build/
|
/build/
|
||||||
/dist/
|
|
||||||
|
|
||||||
# Symbolication related
|
# Symbolication related
|
||||||
app.*.symbols
|
app.*.symbols
|
||||||
@@ -47,7 +44,6 @@ app.*.map.json
|
|||||||
/android/app/release
|
/android/app/release
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#libclash
|
#libclash
|
||||||
/libclash/
|
/libclash/
|
||||||
|
|
||||||
|
|||||||
4
.gitmodules
vendored
@@ -1,8 +1,8 @@
|
|||||||
[submodule "core/Clash.Meta"]
|
[submodule "core/Clash.Meta"]
|
||||||
path = core/Clash.Meta
|
path = core/Clash.Meta
|
||||||
url = git@github.com:chen08209/Clash.Meta.git
|
url = git@github.com:chen08209/Clash.Meta.git
|
||||||
branch = FlClash-Alpha
|
branch = FlClash
|
||||||
[submodule "plugins/flutter_distributor"]
|
[submodule "plugins/flutter_distributor"]
|
||||||
path = plugins/flutter_distributor
|
path = plugins/flutter_distributor
|
||||||
url = git@github.com:chen08209/flutter_distributor.git
|
url = git@github.com:chen08209/flutter_distributor.git
|
||||||
branch = FlClash
|
branch = main
|
||||||
|
|||||||
706
CHANGELOG.md
@@ -1,706 +0,0 @@
|
|||||||
## v0.8.70
|
|
||||||
|
|
||||||
- Support better window position memory
|
|
||||||
|
|
||||||
- Add windows arm64 and linux arm64 build script
|
|
||||||
|
|
||||||
- Optimize some details
|
|
||||||
|
|
||||||
## v0.8.69
|
|
||||||
|
|
||||||
- Remake desktop
|
|
||||||
|
|
||||||
- Optimize change proxy
|
|
||||||
|
|
||||||
- Optimize network check
|
|
||||||
|
|
||||||
- Fix fallback issues
|
|
||||||
|
|
||||||
- Optimize lots of details
|
|
||||||
|
|
||||||
- Update change.yaml
|
|
||||||
|
|
||||||
- Fix android tile issues
|
|
||||||
|
|
||||||
- Fix windows tray issues
|
|
||||||
|
|
||||||
- Support setting bypassDomain
|
|
||||||
|
|
||||||
- Update flutter version
|
|
||||||
|
|
||||||
- Fix android service issues
|
|
||||||
|
|
||||||
- Fix macos dock exit button issues
|
|
||||||
|
|
||||||
- Add route address setting
|
|
||||||
|
|
||||||
- Optimize provider view
|
|
||||||
|
|
||||||
- Update changelog
|
|
||||||
|
|
||||||
- Update CHANGELOG.md
|
|
||||||
|
|
||||||
## v0.8.67
|
|
||||||
|
|
||||||
- Add android shortcuts
|
|
||||||
|
|
||||||
- Fix init params issues
|
|
||||||
|
|
||||||
- Fix dynamic color issues
|
|
||||||
|
|
||||||
- Optimize navigator animate
|
|
||||||
|
|
||||||
- Optimize window init
|
|
||||||
|
|
||||||
- Optimize fab
|
|
||||||
|
|
||||||
- Optimize save
|
|
||||||
|
|
||||||
## v0.8.66
|
|
||||||
|
|
||||||
- Fix the collapse issues
|
|
||||||
|
|
||||||
- Add fontFamily options
|
|
||||||
|
|
||||||
## v0.8.65
|
|
||||||
|
|
||||||
- Update core version
|
|
||||||
|
|
||||||
- Update flutter version
|
|
||||||
|
|
||||||
- Optimize ip check
|
|
||||||
|
|
||||||
- Optimize url-test
|
|
||||||
|
|
||||||
## v0.8.64
|
|
||||||
|
|
||||||
- Update release message
|
|
||||||
|
|
||||||
- Init auto gen changelog
|
|
||||||
|
|
||||||
- Fix windows tray issues
|
|
||||||
|
|
||||||
- Fix urltest issues
|
|
||||||
|
|
||||||
- Add auto changelog
|
|
||||||
|
|
||||||
- Fix windows admin auto launch issues
|
|
||||||
|
|
||||||
- Add android vpn options
|
|
||||||
|
|
||||||
- Support proxies icon configuration
|
|
||||||
|
|
||||||
- Optimize android immersion display
|
|
||||||
|
|
||||||
- Fix some issues
|
|
||||||
|
|
||||||
- Optimize ip detection
|
|
||||||
|
|
||||||
- Support android vpn ipv6 inbound switch
|
|
||||||
|
|
||||||
- Support log export
|
|
||||||
|
|
||||||
- Optimize more details
|
|
||||||
|
|
||||||
- Fix android system dns issues
|
|
||||||
|
|
||||||
- Optimize dns default option
|
|
||||||
|
|
||||||
- Fix some issues
|
|
||||||
|
|
||||||
- Update readme
|
|
||||||
|
|
||||||
## v0.8.60
|
|
||||||
|
|
||||||
- Fix build error2
|
|
||||||
|
|
||||||
- Fix build error
|
|
||||||
|
|
||||||
- Support desktop hotkey
|
|
||||||
|
|
||||||
- Support android ipv6 inbound
|
|
||||||
|
|
||||||
- Support android system dns
|
|
||||||
|
|
||||||
- fix some bugs
|
|
||||||
|
|
||||||
## v0.8.59
|
|
||||||
|
|
||||||
- Fix delete profile error
|
|
||||||
|
|
||||||
## v0.8.58
|
|
||||||
|
|
||||||
- Fix submit error 2
|
|
||||||
|
|
||||||
- Fix submit error
|
|
||||||
|
|
||||||
- Optimize DNS strategy
|
|
||||||
|
|
||||||
- Fix the problem that the tray is not displayed in some cases
|
|
||||||
|
|
||||||
- Optimize tray
|
|
||||||
|
|
||||||
- Update core
|
|
||||||
|
|
||||||
- Fix some error
|
|
||||||
|
|
||||||
## v0.8.57
|
|
||||||
|
|
||||||
- Fix tun update issues
|
|
||||||
|
|
||||||
- Add DNS override
|
|
||||||
- Fixed some bugs
|
|
||||||
- Optimize more detail
|
|
||||||
|
|
||||||
- Add Hosts override
|
|
||||||
|
|
||||||
## v0.8.56
|
|
||||||
|
|
||||||
- fix android tip error
|
|
||||||
- fix windows auto launch error
|
|
||||||
|
|
||||||
## v0.8.55
|
|
||||||
|
|
||||||
- Fix windows tray issues
|
|
||||||
|
|
||||||
- Optimize windows logic
|
|
||||||
|
|
||||||
- Optimize app logic
|
|
||||||
|
|
||||||
- Support windows administrator auto launch
|
|
||||||
|
|
||||||
- Support android close vpn
|
|
||||||
|
|
||||||
## v0.8.53
|
|
||||||
|
|
||||||
- Change flutter version
|
|
||||||
|
|
||||||
- Support profiles sort
|
|
||||||
|
|
||||||
- Support windows country flags display
|
|
||||||
|
|
||||||
- Optimize proxies page and profiles page columns
|
|
||||||
|
|
||||||
## v0.8.52
|
|
||||||
|
|
||||||
- Update flutter version
|
|
||||||
|
|
||||||
- Update version
|
|
||||||
|
|
||||||
- Update timeout time
|
|
||||||
|
|
||||||
- Update access control page
|
|
||||||
|
|
||||||
- Fix bug
|
|
||||||
|
|
||||||
## v0.8.51
|
|
||||||
|
|
||||||
- Optimize provider page
|
|
||||||
|
|
||||||
- Optimize delay test
|
|
||||||
|
|
||||||
- Support local backup and recovery
|
|
||||||
|
|
||||||
- Fix android tile service issues
|
|
||||||
|
|
||||||
## v0.8.49
|
|
||||||
|
|
||||||
- Fix linux core build error
|
|
||||||
|
|
||||||
- Add proxy-only traffic statistics
|
|
||||||
|
|
||||||
- Update core
|
|
||||||
|
|
||||||
- Optimize more details
|
|
||||||
|
|
||||||
- Merge pull request #140 from txyyh/main
|
|
||||||
|
|
||||||
- 添加自建 F-Droid 仓库相关 workflow
|
|
||||||
- Rename readme fingerprint
|
|
||||||
|
|
||||||
- Rename workflow deploy repo name
|
|
||||||
|
|
||||||
- Add download guide to README
|
|
||||||
|
|
||||||
- Add push release files to fdroid-repo
|
|
||||||
|
|
||||||
## v0.8.48
|
|
||||||
|
|
||||||
- Optimize proxies page
|
|
||||||
|
|
||||||
- Fix ua issues
|
|
||||||
|
|
||||||
- Optimize more details
|
|
||||||
|
|
||||||
## v0.8.47
|
|
||||||
|
|
||||||
- Fix windows build error
|
|
||||||
|
|
||||||
## v0.8.46
|
|
||||||
|
|
||||||
- Update app icon
|
|
||||||
|
|
||||||
- Fix desktop backup error
|
|
||||||
|
|
||||||
- Optimize request ua
|
|
||||||
|
|
||||||
- Change android icon
|
|
||||||
|
|
||||||
- Optimize dashboard
|
|
||||||
|
|
||||||
## v0.8.44
|
|
||||||
|
|
||||||
- Remove request validate certificate
|
|
||||||
|
|
||||||
- Sync core
|
|
||||||
|
|
||||||
## v0.8.43
|
|
||||||
|
|
||||||
- Fix windows error
|
|
||||||
|
|
||||||
## v0.8.42
|
|
||||||
|
|
||||||
- Fix setup.dart error
|
|
||||||
|
|
||||||
- Fix android system proxy not effective
|
|
||||||
|
|
||||||
- Add macos arm64
|
|
||||||
|
|
||||||
## v0.8.41
|
|
||||||
|
|
||||||
- Optimize proxies page
|
|
||||||
|
|
||||||
- Support mouse drag scroll
|
|
||||||
|
|
||||||
- Adjust desktop ui
|
|
||||||
|
|
||||||
- Revert "Fix android vpn issues"
|
|
||||||
|
|
||||||
- This reverts commit 891977408e6938e2acd74e9b9adb959c48c79988.
|
|
||||||
|
|
||||||
## v0.8.40
|
|
||||||
|
|
||||||
- Fix android vpn issues
|
|
||||||
|
|
||||||
- Fix android vpn issues
|
|
||||||
|
|
||||||
- Rollback partial modification
|
|
||||||
|
|
||||||
## v0.8.39
|
|
||||||
|
|
||||||
- Fix the problem that ui can't be synchronized when android vpn is occupied by an external
|
|
||||||
|
|
||||||
- Override default socksPort,port
|
|
||||||
|
|
||||||
## v0.8.38
|
|
||||||
|
|
||||||
- Fix fab issues
|
|
||||||
|
|
||||||
## v0.8.37
|
|
||||||
|
|
||||||
- Update version
|
|
||||||
|
|
||||||
- Fix the problem that vpn cannot be started in some cases
|
|
||||||
|
|
||||||
- Fix the problem that geodata url does not take effect
|
|
||||||
|
|
||||||
## v0.8.36
|
|
||||||
|
|
||||||
- Update ua
|
|
||||||
|
|
||||||
- Fix change outbound mode without check ip issues
|
|
||||||
|
|
||||||
- Separate android ui and vpn
|
|
||||||
|
|
||||||
- Fix url validate issues 2
|
|
||||||
|
|
||||||
- Add android hidden from the recent task
|
|
||||||
|
|
||||||
- Add geoip file
|
|
||||||
|
|
||||||
- Support modify geoData URL
|
|
||||||
|
|
||||||
## v0.8.35
|
|
||||||
|
|
||||||
- Fix url validate issues
|
|
||||||
|
|
||||||
- Fix check ip performance problem
|
|
||||||
|
|
||||||
- Optimize resources page
|
|
||||||
|
|
||||||
## v0.8.34
|
|
||||||
|
|
||||||
- Add ua selector
|
|
||||||
|
|
||||||
- Support modify test url
|
|
||||||
|
|
||||||
- Optimize android proxy
|
|
||||||
|
|
||||||
- Fix the error that async proxy provider could not selected the proxy
|
|
||||||
|
|
||||||
## v0.8.33
|
|
||||||
|
|
||||||
- Fix android proxy error
|
|
||||||
|
|
||||||
- Fix submit error
|
|
||||||
|
|
||||||
- Add windows tun
|
|
||||||
|
|
||||||
- Optimize android proxy
|
|
||||||
|
|
||||||
- Optimize change profile
|
|
||||||
|
|
||||||
- Update application ua
|
|
||||||
|
|
||||||
- Optimize delay test
|
|
||||||
|
|
||||||
## v0.8.32
|
|
||||||
|
|
||||||
- Fix android repeated request notification issues
|
|
||||||
|
|
||||||
## v0.8.31
|
|
||||||
|
|
||||||
- Fix memory overflow issues
|
|
||||||
|
|
||||||
## v0.8.30
|
|
||||||
|
|
||||||
- Optimize proxies expansion panel 2
|
|
||||||
|
|
||||||
- Fix android scan qrcode error
|
|
||||||
|
|
||||||
## v0.8.29
|
|
||||||
|
|
||||||
- Optimize proxies expansion panel
|
|
||||||
|
|
||||||
- Fix text error
|
|
||||||
|
|
||||||
## v0.8.28
|
|
||||||
|
|
||||||
- Optimize proxy
|
|
||||||
|
|
||||||
- Optimize delayed sorting performance
|
|
||||||
|
|
||||||
- Add expansion panel proxies page
|
|
||||||
|
|
||||||
- Support to adjust the proxy card size
|
|
||||||
|
|
||||||
- Support to adjust proxies columns number
|
|
||||||
|
|
||||||
- Fix autoRun show issues
|
|
||||||
|
|
||||||
- Fix Android 10 issues
|
|
||||||
|
|
||||||
- Optimize ip show
|
|
||||||
|
|
||||||
## v0.8.26
|
|
||||||
|
|
||||||
- Add intranet IP display
|
|
||||||
|
|
||||||
- Add connections page
|
|
||||||
|
|
||||||
- Add search in connections, requests
|
|
||||||
|
|
||||||
- Add keyword search in connections, requests, logs
|
|
||||||
|
|
||||||
- Add basic viewing editing capabilities
|
|
||||||
|
|
||||||
- Optimize update profile
|
|
||||||
|
|
||||||
## v0.8.25
|
|
||||||
|
|
||||||
- Update version
|
|
||||||
|
|
||||||
- Fix the problem of excessive memory usage in traffic usage.
|
|
||||||
|
|
||||||
- Add lightBlue theme color
|
|
||||||
|
|
||||||
- Fix start unable to update profile issues
|
|
||||||
|
|
||||||
- Fix flashback caused by process
|
|
||||||
|
|
||||||
## v0.8.23
|
|
||||||
|
|
||||||
- Add build version
|
|
||||||
|
|
||||||
- Optimize quick start
|
|
||||||
|
|
||||||
- Update system default option
|
|
||||||
|
|
||||||
## v0.8.22
|
|
||||||
|
|
||||||
- Update build.yml
|
|
||||||
|
|
||||||
- Fix android vpn close issues
|
|
||||||
|
|
||||||
- Add requests page
|
|
||||||
|
|
||||||
- Fix checkUpdate dark mode style error
|
|
||||||
|
|
||||||
- Fix quickStart error open app
|
|
||||||
|
|
||||||
- Add memory proxies tab index
|
|
||||||
|
|
||||||
- Support hidden group
|
|
||||||
|
|
||||||
- Optimize logs
|
|
||||||
|
|
||||||
- Fix externalController hot load error
|
|
||||||
|
|
||||||
## v0.8.21
|
|
||||||
|
|
||||||
- Add tcp concurrent switch
|
|
||||||
|
|
||||||
- Add system proxy switch
|
|
||||||
|
|
||||||
- Add geodata loader switch
|
|
||||||
|
|
||||||
- Add external controller switch
|
|
||||||
|
|
||||||
- Add auto gc on trim memory
|
|
||||||
|
|
||||||
- Fix android notification error
|
|
||||||
|
|
||||||
## v0.8.20
|
|
||||||
|
|
||||||
- Fix ipv6 error
|
|
||||||
|
|
||||||
- Fix android udp direct error
|
|
||||||
|
|
||||||
- Add ipv6 switch
|
|
||||||
|
|
||||||
- Add access all selected button
|
|
||||||
|
|
||||||
- Remove android low version splash
|
|
||||||
|
|
||||||
## v0.8.19
|
|
||||||
|
|
||||||
- Update version
|
|
||||||
|
|
||||||
- Add allowBypass
|
|
||||||
|
|
||||||
- Fix Android only pick .text file issues
|
|
||||||
|
|
||||||
## v0.8.18
|
|
||||||
|
|
||||||
- Fix search issues
|
|
||||||
|
|
||||||
## v0.8.17
|
|
||||||
|
|
||||||
- Fix LoadBalance, Relay load error
|
|
||||||
|
|
||||||
- Fix build.yml4
|
|
||||||
|
|
||||||
- Fix build.yml3
|
|
||||||
|
|
||||||
- Fix build.yml2
|
|
||||||
|
|
||||||
- Fix build.yml
|
|
||||||
|
|
||||||
- Add search function at access control
|
|
||||||
|
|
||||||
- Fix the issues with the profile add button to cover the edit button
|
|
||||||
|
|
||||||
- Adapt LoadBalance and Relay
|
|
||||||
|
|
||||||
- Add arm
|
|
||||||
|
|
||||||
- Fix android notification icon error
|
|
||||||
|
|
||||||
## v0.8.16
|
|
||||||
|
|
||||||
- Add one-click update all profiles
|
|
||||||
- Add expire show
|
|
||||||
|
|
||||||
## v0.8.15
|
|
||||||
|
|
||||||
- Temp remove tun mode
|
|
||||||
|
|
||||||
- Remove macos in workflow
|
|
||||||
|
|
||||||
- Change go version
|
|
||||||
|
|
||||||
## v0.8.14
|
|
||||||
|
|
||||||
- Update Version
|
|
||||||
|
|
||||||
- Fix tun unable to open
|
|
||||||
|
|
||||||
## v0.8.13
|
|
||||||
|
|
||||||
- Optimize delay test2
|
|
||||||
|
|
||||||
- Optimize delay test
|
|
||||||
|
|
||||||
- Add check ip
|
|
||||||
|
|
||||||
- add check ip request
|
|
||||||
|
|
||||||
## v0.8.12
|
|
||||||
|
|
||||||
- Fix the problem that the download of remote resources failed after GeodataMode was turned on, which caused the
|
|
||||||
application to flash back.
|
|
||||||
|
|
||||||
- Fix edit profile error
|
|
||||||
|
|
||||||
- Fix quickStart change proxy error
|
|
||||||
|
|
||||||
- Fix core version
|
|
||||||
|
|
||||||
## v0.8.10
|
|
||||||
|
|
||||||
- Fix core version
|
|
||||||
|
|
||||||
## v0.8.9
|
|
||||||
|
|
||||||
- Update file_picker
|
|
||||||
|
|
||||||
- Add resources page
|
|
||||||
|
|
||||||
- Optimize more detail
|
|
||||||
|
|
||||||
- Add access selected sorted
|
|
||||||
|
|
||||||
- Fix notification duplicate creation issue
|
|
||||||
|
|
||||||
- Fix AccessControl click issue
|
|
||||||
|
|
||||||
## v0.8.7
|
|
||||||
|
|
||||||
- Fix Workflow
|
|
||||||
|
|
||||||
- Fix Linux unable to open
|
|
||||||
|
|
||||||
- Update README.md 3
|
|
||||||
|
|
||||||
- Create LICENSE
|
|
||||||
- Update README.md 2
|
|
||||||
|
|
||||||
- Update README.md
|
|
||||||
|
|
||||||
- Optimize workFlow
|
|
||||||
|
|
||||||
## v0.8.6
|
|
||||||
|
|
||||||
- optimize checkUpdate
|
|
||||||
|
|
||||||
## v0.8.5
|
|
||||||
|
|
||||||
- Fix submit error
|
|
||||||
|
|
||||||
## v0.8.4
|
|
||||||
|
|
||||||
- add WebDAV
|
|
||||||
|
|
||||||
- add Auto check updates
|
|
||||||
|
|
||||||
- Optimize more details
|
|
||||||
|
|
||||||
- optimize delayTest
|
|
||||||
|
|
||||||
## v0.8.2
|
|
||||||
|
|
||||||
- upgrade flutter version
|
|
||||||
|
|
||||||
## v0.8.1
|
|
||||||
|
|
||||||
- Update kernel
|
|
||||||
- Add import profile via QR code image
|
|
||||||
|
|
||||||
## v0.8.0
|
|
||||||
|
|
||||||
- Add compatibility mode and adapt clash scheme.
|
|
||||||
|
|
||||||
## v0.7.14
|
|
||||||
|
|
||||||
- update Version
|
|
||||||
|
|
||||||
- Reconstruction application proxy logic
|
|
||||||
|
|
||||||
## v0.7.13
|
|
||||||
|
|
||||||
- Fix Tab destroy error
|
|
||||||
|
|
||||||
## v0.7.12
|
|
||||||
|
|
||||||
- Optimize repeat healthcheck
|
|
||||||
|
|
||||||
## v0.7.11
|
|
||||||
|
|
||||||
- Optimize Direct mode ui
|
|
||||||
|
|
||||||
## v0.7.10
|
|
||||||
|
|
||||||
- Optimize Healthcheck
|
|
||||||
|
|
||||||
- Remove proxies position animation, improve performance
|
|
||||||
- Add Telegram Link
|
|
||||||
|
|
||||||
- Update healthcheck policy
|
|
||||||
|
|
||||||
- New Check URLTest
|
|
||||||
|
|
||||||
- Fix the problem of invalid auto-selection
|
|
||||||
|
|
||||||
## v0.7.8
|
|
||||||
|
|
||||||
- New Async UpdateConfig
|
|
||||||
|
|
||||||
- add changeProfileDebounce
|
|
||||||
|
|
||||||
- Update Workflow
|
|
||||||
|
|
||||||
- Fix ChangeProfile block
|
|
||||||
|
|
||||||
- Fix Release Message Error
|
|
||||||
|
|
||||||
## v0.7.7
|
|
||||||
|
|
||||||
- Update Selector 2
|
|
||||||
|
|
||||||
## v0.7.6
|
|
||||||
|
|
||||||
- Update Version
|
|
||||||
|
|
||||||
- Fix Proxies Select Error
|
|
||||||
|
|
||||||
## v0.7.5
|
|
||||||
|
|
||||||
- Fix the problem that the proxy group is empty in global mode.
|
|
||||||
|
|
||||||
- Fix the problem that the proxy group is empty in global mode.
|
|
||||||
|
|
||||||
## v0.7.4
|
|
||||||
|
|
||||||
- Add ProxyProvider2
|
|
||||||
|
|
||||||
## v0.7.3
|
|
||||||
|
|
||||||
- Add ProxyProvider
|
|
||||||
|
|
||||||
- Update Version
|
|
||||||
|
|
||||||
- Update ProxyGroup Sort
|
|
||||||
|
|
||||||
- Fix Android quickStart VpnService some problems
|
|
||||||
|
|
||||||
## v0.7.1
|
|
||||||
|
|
||||||
- Update version
|
|
||||||
|
|
||||||
- Set Android notification low importance
|
|
||||||
|
|
||||||
- Fix the issue that VpnService can't be closed correctly in special cases
|
|
||||||
|
|
||||||
- Fix the problem that TileService is not destroyed correctly in some cases
|
|
||||||
|
|
||||||
- Adjust tab animation defaults
|
|
||||||
|
|
||||||
- Add Telegram in README_zh_CN.md
|
|
||||||
|
|
||||||
- Add Telegram
|
|
||||||
|
|
||||||
## v0.7.0
|
|
||||||
|
|
||||||
- update mobile_scanner
|
|
||||||
|
|
||||||
- Initial commit
|
|
||||||
674
LICENSE
@@ -1,674 +0,0 @@
|
|||||||
GNU GENERAL PUBLIC LICENSE
|
|
||||||
Version 3, 29 June 2007
|
|
||||||
|
|
||||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
|
||||||
of this license document, but changing it is not allowed.
|
|
||||||
|
|
||||||
Preamble
|
|
||||||
|
|
||||||
The GNU General Public License is a free, copyleft license for
|
|
||||||
software and other kinds of works.
|
|
||||||
|
|
||||||
The licenses for most software and other practical works are designed
|
|
||||||
to take away your freedom to share and change the works. By contrast,
|
|
||||||
the GNU General Public License is intended to guarantee your freedom to
|
|
||||||
share and change all versions of a program--to make sure it remains free
|
|
||||||
software for all its users. We, the Free Software Foundation, use the
|
|
||||||
GNU General Public License for most of our software; it applies also to
|
|
||||||
any other work released this way by its authors. You can apply it to
|
|
||||||
your programs, too.
|
|
||||||
|
|
||||||
When we speak of free software, we are referring to freedom, not
|
|
||||||
price. Our General Public Licenses are designed to make sure that you
|
|
||||||
have the freedom to distribute copies of free software (and charge for
|
|
||||||
them if you wish), that you receive source code or can get it if you
|
|
||||||
want it, that you can change the software or use pieces of it in new
|
|
||||||
free programs, and that you know you can do these things.
|
|
||||||
|
|
||||||
To protect your rights, we need to prevent others from denying you
|
|
||||||
these rights or asking you to surrender the rights. Therefore, you have
|
|
||||||
certain responsibilities if you distribute copies of the software, or if
|
|
||||||
you modify it: responsibilities to respect the freedom of others.
|
|
||||||
|
|
||||||
For example, if you distribute copies of such a program, whether
|
|
||||||
gratis or for a fee, you must pass on to the recipients the same
|
|
||||||
freedoms that you received. You must make sure that they, too, receive
|
|
||||||
or can get the source code. And you must show them these terms so they
|
|
||||||
know their rights.
|
|
||||||
|
|
||||||
Developers that use the GNU GPL protect your rights with two steps:
|
|
||||||
(1) assert copyright on the software, and (2) offer you this License
|
|
||||||
giving you legal permission to copy, distribute and/or modify it.
|
|
||||||
|
|
||||||
For the developers' and authors' protection, the GPL clearly explains
|
|
||||||
that there is no warranty for this free software. For both users' and
|
|
||||||
authors' sake, the GPL requires that modified versions be marked as
|
|
||||||
changed, so that their problems will not be attributed erroneously to
|
|
||||||
authors of previous versions.
|
|
||||||
|
|
||||||
Some devices are designed to deny users access to install or run
|
|
||||||
modified versions of the software inside them, although the manufacturer
|
|
||||||
can do so. This is fundamentally incompatible with the aim of
|
|
||||||
protecting users' freedom to change the software. The systematic
|
|
||||||
pattern of such abuse occurs in the area of products for individuals to
|
|
||||||
use, which is precisely where it is most unacceptable. Therefore, we
|
|
||||||
have designed this version of the GPL to prohibit the practice for those
|
|
||||||
products. If such problems arise substantially in other domains, we
|
|
||||||
stand ready to extend this provision to those domains in future versions
|
|
||||||
of the GPL, as needed to protect the freedom of users.
|
|
||||||
|
|
||||||
Finally, every program is threatened constantly by software patents.
|
|
||||||
States should not allow patents to restrict development and use of
|
|
||||||
software on general-purpose computers, but in those that do, we wish to
|
|
||||||
avoid the special danger that patents applied to a free program could
|
|
||||||
make it effectively proprietary. To prevent this, the GPL assures that
|
|
||||||
patents cannot be used to render the program non-free.
|
|
||||||
|
|
||||||
The precise terms and conditions for copying, distribution and
|
|
||||||
modification follow.
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
0. Definitions.
|
|
||||||
|
|
||||||
"This License" refers to version 3 of the GNU General Public License.
|
|
||||||
|
|
||||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
|
||||||
works, such as semiconductor masks.
|
|
||||||
|
|
||||||
"The Program" refers to any copyrightable work licensed under this
|
|
||||||
License. Each licensee is addressed as "you". "Licensees" and
|
|
||||||
"recipients" may be individuals or organizations.
|
|
||||||
|
|
||||||
To "modify" a work means to copy from or adapt all or part of the work
|
|
||||||
in a fashion requiring copyright permission, other than the making of an
|
|
||||||
exact copy. The resulting work is called a "modified version" of the
|
|
||||||
earlier work or a work "based on" the earlier work.
|
|
||||||
|
|
||||||
A "covered work" means either the unmodified Program or a work based
|
|
||||||
on the Program.
|
|
||||||
|
|
||||||
To "propagate" a work means to do anything with it that, without
|
|
||||||
permission, would make you directly or secondarily liable for
|
|
||||||
infringement under applicable copyright law, except executing it on a
|
|
||||||
computer or modifying a private copy. Propagation includes copying,
|
|
||||||
distribution (with or without modification), making available to the
|
|
||||||
public, and in some countries other activities as well.
|
|
||||||
|
|
||||||
To "convey" a work means any kind of propagation that enables other
|
|
||||||
parties to make or receive copies. Mere interaction with a user through
|
|
||||||
a computer network, with no transfer of a copy, is not conveying.
|
|
||||||
|
|
||||||
An interactive user interface displays "Appropriate Legal Notices"
|
|
||||||
to the extent that it includes a convenient and prominently visible
|
|
||||||
feature that (1) displays an appropriate copyright notice, and (2)
|
|
||||||
tells the user that there is no warranty for the work (except to the
|
|
||||||
extent that warranties are provided), that licensees may convey the
|
|
||||||
work under this License, and how to view a copy of this License. If
|
|
||||||
the interface presents a list of user commands or options, such as a
|
|
||||||
menu, a prominent item in the list meets this criterion.
|
|
||||||
|
|
||||||
1. Source Code.
|
|
||||||
|
|
||||||
The "source code" for a work means the preferred form of the work
|
|
||||||
for making modifications to it. "Object code" means any non-source
|
|
||||||
form of a work.
|
|
||||||
|
|
||||||
A "Standard Interface" means an interface that either is an official
|
|
||||||
standard defined by a recognized standards body, or, in the case of
|
|
||||||
interfaces specified for a particular programming language, one that
|
|
||||||
is widely used among developers working in that language.
|
|
||||||
|
|
||||||
The "System Libraries" of an executable work include anything, other
|
|
||||||
than the work as a whole, that (a) is included in the normal form of
|
|
||||||
packaging a Major Component, but which is not part of that Major
|
|
||||||
Component, and (b) serves only to enable use of the work with that
|
|
||||||
Major Component, or to implement a Standard Interface for which an
|
|
||||||
implementation is available to the public in source code form. A
|
|
||||||
"Major Component", in this context, means a major essential component
|
|
||||||
(kernel, window system, and so on) of the specific operating system
|
|
||||||
(if any) on which the executable work runs, or a compiler used to
|
|
||||||
produce the work, or an object code interpreter used to run it.
|
|
||||||
|
|
||||||
The "Corresponding Source" for a work in object code form means all
|
|
||||||
the source code needed to generate, install, and (for an executable
|
|
||||||
work) run the object code and to modify the work, including scripts to
|
|
||||||
control those activities. However, it does not include the work's
|
|
||||||
System Libraries, or general-purpose tools or generally available free
|
|
||||||
programs which are used unmodified in performing those activities but
|
|
||||||
which are not part of the work. For example, Corresponding Source
|
|
||||||
includes interface definition files associated with source files for
|
|
||||||
the work, and the source code for shared libraries and dynamically
|
|
||||||
linked subprograms that the work is specifically designed to require,
|
|
||||||
such as by intimate data communication or control flow between those
|
|
||||||
subprograms and other parts of the work.
|
|
||||||
|
|
||||||
The Corresponding Source need not include anything that users
|
|
||||||
can regenerate automatically from other parts of the Corresponding
|
|
||||||
Source.
|
|
||||||
|
|
||||||
The Corresponding Source for a work in source code form is that
|
|
||||||
same work.
|
|
||||||
|
|
||||||
2. Basic Permissions.
|
|
||||||
|
|
||||||
All rights granted under this License are granted for the term of
|
|
||||||
copyright on the Program, and are irrevocable provided the stated
|
|
||||||
conditions are met. This License explicitly affirms your unlimited
|
|
||||||
permission to run the unmodified Program. The output from running a
|
|
||||||
covered work is covered by this License only if the output, given its
|
|
||||||
content, constitutes a covered work. This License acknowledges your
|
|
||||||
rights of fair use or other equivalent, as provided by copyright law.
|
|
||||||
|
|
||||||
You may make, run and propagate covered works that you do not
|
|
||||||
convey, without conditions so long as your license otherwise remains
|
|
||||||
in force. You may convey covered works to others for the sole purpose
|
|
||||||
of having them make modifications exclusively for you, or provide you
|
|
||||||
with facilities for running those works, provided that you comply with
|
|
||||||
the terms of this License in conveying all material for which you do
|
|
||||||
not control copyright. Those thus making or running the covered works
|
|
||||||
for you must do so exclusively on your behalf, under your direction
|
|
||||||
and control, on terms that prohibit them from making any copies of
|
|
||||||
your copyrighted material outside their relationship with you.
|
|
||||||
|
|
||||||
Conveying under any other circumstances is permitted solely under
|
|
||||||
the conditions stated below. Sublicensing is not allowed; section 10
|
|
||||||
makes it unnecessary.
|
|
||||||
|
|
||||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
|
||||||
|
|
||||||
No covered work shall be deemed part of an effective technological
|
|
||||||
measure under any applicable law fulfilling obligations under article
|
|
||||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
|
||||||
similar laws prohibiting or restricting circumvention of such
|
|
||||||
measures.
|
|
||||||
|
|
||||||
When you convey a covered work, you waive any legal power to forbid
|
|
||||||
circumvention of technological measures to the extent such circumvention
|
|
||||||
is effected by exercising rights under this License with respect to
|
|
||||||
the covered work, and you disclaim any intention to limit operation or
|
|
||||||
modification of the work as a means of enforcing, against the work's
|
|
||||||
users, your or third parties' legal rights to forbid circumvention of
|
|
||||||
technological measures.
|
|
||||||
|
|
||||||
4. Conveying Verbatim Copies.
|
|
||||||
|
|
||||||
You may convey verbatim copies of the Program's source code as you
|
|
||||||
receive it, in any medium, provided that you conspicuously and
|
|
||||||
appropriately publish on each copy an appropriate copyright notice;
|
|
||||||
keep intact all notices stating that this License and any
|
|
||||||
non-permissive terms added in accord with section 7 apply to the code;
|
|
||||||
keep intact all notices of the absence of any warranty; and give all
|
|
||||||
recipients a copy of this License along with the Program.
|
|
||||||
|
|
||||||
You may charge any price or no price for each copy that you convey,
|
|
||||||
and you may offer support or warranty protection for a fee.
|
|
||||||
|
|
||||||
5. Conveying Modified Source Versions.
|
|
||||||
|
|
||||||
You may convey a work based on the Program, or the modifications to
|
|
||||||
produce it from the Program, in the form of source code under the
|
|
||||||
terms of section 4, provided that you also meet all of these conditions:
|
|
||||||
|
|
||||||
a) The work must carry prominent notices stating that you modified
|
|
||||||
it, and giving a relevant date.
|
|
||||||
|
|
||||||
b) The work must carry prominent notices stating that it is
|
|
||||||
released under this License and any conditions added under section
|
|
||||||
7. This requirement modifies the requirement in section 4 to
|
|
||||||
"keep intact all notices".
|
|
||||||
|
|
||||||
c) You must license the entire work, as a whole, under this
|
|
||||||
License to anyone who comes into possession of a copy. This
|
|
||||||
License will therefore apply, along with any applicable section 7
|
|
||||||
additional terms, to the whole of the work, and all its parts,
|
|
||||||
regardless of how they are packaged. This License gives no
|
|
||||||
permission to license the work in any other way, but it does not
|
|
||||||
invalidate such permission if you have separately received it.
|
|
||||||
|
|
||||||
d) If the work has interactive user interfaces, each must display
|
|
||||||
Appropriate Legal Notices; however, if the Program has interactive
|
|
||||||
interfaces that do not display Appropriate Legal Notices, your
|
|
||||||
work need not make them do so.
|
|
||||||
|
|
||||||
A compilation of a covered work with other separate and independent
|
|
||||||
works, which are not by their nature extensions of the covered work,
|
|
||||||
and which are not combined with it such as to form a larger program,
|
|
||||||
in or on a volume of a storage or distribution medium, is called an
|
|
||||||
"aggregate" if the compilation and its resulting copyright are not
|
|
||||||
used to limit the access or legal rights of the compilation's users
|
|
||||||
beyond what the individual works permit. Inclusion of a covered work
|
|
||||||
in an aggregate does not cause this License to apply to the other
|
|
||||||
parts of the aggregate.
|
|
||||||
|
|
||||||
6. Conveying Non-Source Forms.
|
|
||||||
|
|
||||||
You may convey a covered work in object code form under the terms
|
|
||||||
of sections 4 and 5, provided that you also convey the
|
|
||||||
machine-readable Corresponding Source under the terms of this License,
|
|
||||||
in one of these ways:
|
|
||||||
|
|
||||||
a) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by the
|
|
||||||
Corresponding Source fixed on a durable physical medium
|
|
||||||
customarily used for software interchange.
|
|
||||||
|
|
||||||
b) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by a
|
|
||||||
written offer, valid for at least three years and valid for as
|
|
||||||
long as you offer spare parts or customer support for that product
|
|
||||||
model, to give anyone who possesses the object code either (1) a
|
|
||||||
copy of the Corresponding Source for all the software in the
|
|
||||||
product that is covered by this License, on a durable physical
|
|
||||||
medium customarily used for software interchange, for a price no
|
|
||||||
more than your reasonable cost of physically performing this
|
|
||||||
conveying of source, or (2) access to copy the
|
|
||||||
Corresponding Source from a network server at no charge.
|
|
||||||
|
|
||||||
c) Convey individual copies of the object code with a copy of the
|
|
||||||
written offer to provide the Corresponding Source. This
|
|
||||||
alternative is allowed only occasionally and noncommercially, and
|
|
||||||
only if you received the object code with such an offer, in accord
|
|
||||||
with subsection 6b.
|
|
||||||
|
|
||||||
d) Convey the object code by offering access from a designated
|
|
||||||
place (gratis or for a charge), and offer equivalent access to the
|
|
||||||
Corresponding Source in the same way through the same place at no
|
|
||||||
further charge. You need not require recipients to copy the
|
|
||||||
Corresponding Source along with the object code. If the place to
|
|
||||||
copy the object code is a network server, the Corresponding Source
|
|
||||||
may be on a different server (operated by you or a third party)
|
|
||||||
that supports equivalent copying facilities, provided you maintain
|
|
||||||
clear directions next to the object code saying where to find the
|
|
||||||
Corresponding Source. Regardless of what server hosts the
|
|
||||||
Corresponding Source, you remain obligated to ensure that it is
|
|
||||||
available for as long as needed to satisfy these requirements.
|
|
||||||
|
|
||||||
e) Convey the object code using peer-to-peer transmission, provided
|
|
||||||
you inform other peers where the object code and Corresponding
|
|
||||||
Source of the work are being offered to the general public at no
|
|
||||||
charge under subsection 6d.
|
|
||||||
|
|
||||||
A separable portion of the object code, whose source code is excluded
|
|
||||||
from the Corresponding Source as a System Library, need not be
|
|
||||||
included in conveying the object code work.
|
|
||||||
|
|
||||||
A "User Product" is either (1) a "consumer product", which means any
|
|
||||||
tangible personal property which is normally used for personal, family,
|
|
||||||
or household purposes, or (2) anything designed or sold for incorporation
|
|
||||||
into a dwelling. In determining whether a product is a consumer product,
|
|
||||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
|
||||||
product received by a particular user, "normally used" refers to a
|
|
||||||
typical or common use of that class of product, regardless of the status
|
|
||||||
of the particular user or of the way in which the particular user
|
|
||||||
actually uses, or expects or is expected to use, the product. A product
|
|
||||||
is a consumer product regardless of whether the product has substantial
|
|
||||||
commercial, industrial or non-consumer uses, unless such uses represent
|
|
||||||
the only significant mode of use of the product.
|
|
||||||
|
|
||||||
"Installation Information" for a User Product means any methods,
|
|
||||||
procedures, authorization keys, or other information required to install
|
|
||||||
and execute modified versions of a covered work in that User Product from
|
|
||||||
a modified version of its Corresponding Source. The information must
|
|
||||||
suffice to ensure that the continued functioning of the modified object
|
|
||||||
code is in no case prevented or interfered with solely because
|
|
||||||
modification has been made.
|
|
||||||
|
|
||||||
If you convey an object code work under this section in, or with, or
|
|
||||||
specifically for use in, a User Product, and the conveying occurs as
|
|
||||||
part of a transaction in which the right of possession and use of the
|
|
||||||
User Product is transferred to the recipient in perpetuity or for a
|
|
||||||
fixed term (regardless of how the transaction is characterized), the
|
|
||||||
Corresponding Source conveyed under this section must be accompanied
|
|
||||||
by the Installation Information. But this requirement does not apply
|
|
||||||
if neither you nor any third party retains the ability to install
|
|
||||||
modified object code on the User Product (for example, the work has
|
|
||||||
been installed in ROM).
|
|
||||||
|
|
||||||
The requirement to provide Installation Information does not include a
|
|
||||||
requirement to continue to provide support service, warranty, or updates
|
|
||||||
for a work that has been modified or installed by the recipient, or for
|
|
||||||
the User Product in which it has been modified or installed. Access to a
|
|
||||||
network may be denied when the modification itself materially and
|
|
||||||
adversely affects the operation of the network or violates the rules and
|
|
||||||
protocols for communication across the network.
|
|
||||||
|
|
||||||
Corresponding Source conveyed, and Installation Information provided,
|
|
||||||
in accord with this section must be in a format that is publicly
|
|
||||||
documented (and with an implementation available to the public in
|
|
||||||
source code form), and must require no special password or key for
|
|
||||||
unpacking, reading or copying.
|
|
||||||
|
|
||||||
7. Additional Terms.
|
|
||||||
|
|
||||||
"Additional permissions" are terms that supplement the terms of this
|
|
||||||
License by making exceptions from one or more of its conditions.
|
|
||||||
Additional permissions that are applicable to the entire Program shall
|
|
||||||
be treated as though they were included in this License, to the extent
|
|
||||||
that they are valid under applicable law. If additional permissions
|
|
||||||
apply only to part of the Program, that part may be used separately
|
|
||||||
under those permissions, but the entire Program remains governed by
|
|
||||||
this License without regard to the additional permissions.
|
|
||||||
|
|
||||||
When you convey a copy of a covered work, you may at your option
|
|
||||||
remove any additional permissions from that copy, or from any part of
|
|
||||||
it. (Additional permissions may be written to require their own
|
|
||||||
removal in certain cases when you modify the work.) You may place
|
|
||||||
additional permissions on material, added by you to a covered work,
|
|
||||||
for which you have or can give appropriate copyright permission.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, for material you
|
|
||||||
add to a covered work, you may (if authorized by the copyright holders of
|
|
||||||
that material) supplement the terms of this License with terms:
|
|
||||||
|
|
||||||
a) Disclaiming warranty or limiting liability differently from the
|
|
||||||
terms of sections 15 and 16 of this License; or
|
|
||||||
|
|
||||||
b) Requiring preservation of specified reasonable legal notices or
|
|
||||||
author attributions in that material or in the Appropriate Legal
|
|
||||||
Notices displayed by works containing it; or
|
|
||||||
|
|
||||||
c) Prohibiting misrepresentation of the origin of that material, or
|
|
||||||
requiring that modified versions of such material be marked in
|
|
||||||
reasonable ways as different from the original version; or
|
|
||||||
|
|
||||||
d) Limiting the use for publicity purposes of names of licensors or
|
|
||||||
authors of the material; or
|
|
||||||
|
|
||||||
e) Declining to grant rights under trademark law for use of some
|
|
||||||
trade names, trademarks, or service marks; or
|
|
||||||
|
|
||||||
f) Requiring indemnification of licensors and authors of that
|
|
||||||
material by anyone who conveys the material (or modified versions of
|
|
||||||
it) with contractual assumptions of liability to the recipient, for
|
|
||||||
any liability that these contractual assumptions directly impose on
|
|
||||||
those licensors and authors.
|
|
||||||
|
|
||||||
All other non-permissive additional terms are considered "further
|
|
||||||
restrictions" within the meaning of section 10. If the Program as you
|
|
||||||
received it, or any part of it, contains a notice stating that it is
|
|
||||||
governed by this License along with a term that is a further
|
|
||||||
restriction, you may remove that term. If a license document contains
|
|
||||||
a further restriction but permits relicensing or conveying under this
|
|
||||||
License, you may add to a covered work material governed by the terms
|
|
||||||
of that license document, provided that the further restriction does
|
|
||||||
not survive such relicensing or conveying.
|
|
||||||
|
|
||||||
If you add terms to a covered work in accord with this section, you
|
|
||||||
must place, in the relevant source files, a statement of the
|
|
||||||
additional terms that apply to those files, or a notice indicating
|
|
||||||
where to find the applicable terms.
|
|
||||||
|
|
||||||
Additional terms, permissive or non-permissive, may be stated in the
|
|
||||||
form of a separately written license, or stated as exceptions;
|
|
||||||
the above requirements apply either way.
|
|
||||||
|
|
||||||
8. Termination.
|
|
||||||
|
|
||||||
You may not propagate or modify a covered work except as expressly
|
|
||||||
provided under this License. Any attempt otherwise to propagate or
|
|
||||||
modify it is void, and will automatically terminate your rights under
|
|
||||||
this License (including any patent licenses granted under the third
|
|
||||||
paragraph of section 11).
|
|
||||||
|
|
||||||
However, if you cease all violation of this License, then your
|
|
||||||
license from a particular copyright holder is reinstated (a)
|
|
||||||
provisionally, unless and until the copyright holder explicitly and
|
|
||||||
finally terminates your license, and (b) permanently, if the copyright
|
|
||||||
holder fails to notify you of the violation by some reasonable means
|
|
||||||
prior to 60 days after the cessation.
|
|
||||||
|
|
||||||
Moreover, your license from a particular copyright holder is
|
|
||||||
reinstated permanently if the copyright holder notifies you of the
|
|
||||||
violation by some reasonable means, this is the first time you have
|
|
||||||
received notice of violation of this License (for any work) from that
|
|
||||||
copyright holder, and you cure the violation prior to 30 days after
|
|
||||||
your receipt of the notice.
|
|
||||||
|
|
||||||
Termination of your rights under this section does not terminate the
|
|
||||||
licenses of parties who have received copies or rights from you under
|
|
||||||
this License. If your rights have been terminated and not permanently
|
|
||||||
reinstated, you do not qualify to receive new licenses for the same
|
|
||||||
material under section 10.
|
|
||||||
|
|
||||||
9. Acceptance Not Required for Having Copies.
|
|
||||||
|
|
||||||
You are not required to accept this License in order to receive or
|
|
||||||
run a copy of the Program. Ancillary propagation of a covered work
|
|
||||||
occurring solely as a consequence of using peer-to-peer transmission
|
|
||||||
to receive a copy likewise does not require acceptance. However,
|
|
||||||
nothing other than this License grants you permission to propagate or
|
|
||||||
modify any covered work. These actions infringe copyright if you do
|
|
||||||
not accept this License. Therefore, by modifying or propagating a
|
|
||||||
covered work, you indicate your acceptance of this License to do so.
|
|
||||||
|
|
||||||
10. Automatic Licensing of Downstream Recipients.
|
|
||||||
|
|
||||||
Each time you convey a covered work, the recipient automatically
|
|
||||||
receives a license from the original licensors, to run, modify and
|
|
||||||
propagate that work, subject to this License. You are not responsible
|
|
||||||
for enforcing compliance by third parties with this License.
|
|
||||||
|
|
||||||
An "entity transaction" is a transaction transferring control of an
|
|
||||||
organization, or substantially all assets of one, or subdividing an
|
|
||||||
organization, or merging organizations. If propagation of a covered
|
|
||||||
work results from an entity transaction, each party to that
|
|
||||||
transaction who receives a copy of the work also receives whatever
|
|
||||||
licenses to the work the party's predecessor in interest had or could
|
|
||||||
give under the previous paragraph, plus a right to possession of the
|
|
||||||
Corresponding Source of the work from the predecessor in interest, if
|
|
||||||
the predecessor has it or can get it with reasonable efforts.
|
|
||||||
|
|
||||||
You may not impose any further restrictions on the exercise of the
|
|
||||||
rights granted or affirmed under this License. For example, you may
|
|
||||||
not impose a license fee, royalty, or other charge for exercise of
|
|
||||||
rights granted under this License, and you may not initiate litigation
|
|
||||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
|
||||||
any patent claim is infringed by making, using, selling, offering for
|
|
||||||
sale, or importing the Program or any portion of it.
|
|
||||||
|
|
||||||
11. Patents.
|
|
||||||
|
|
||||||
A "contributor" is a copyright holder who authorizes use under this
|
|
||||||
License of the Program or a work on which the Program is based. The
|
|
||||||
work thus licensed is called the contributor's "contributor version".
|
|
||||||
|
|
||||||
A contributor's "essential patent claims" are all patent claims
|
|
||||||
owned or controlled by the contributor, whether already acquired or
|
|
||||||
hereafter acquired, that would be infringed by some manner, permitted
|
|
||||||
by this License, of making, using, or selling its contributor version,
|
|
||||||
but do not include claims that would be infringed only as a
|
|
||||||
consequence of further modification of the contributor version. For
|
|
||||||
purposes of this definition, "control" includes the right to grant
|
|
||||||
patent sublicenses in a manner consistent with the requirements of
|
|
||||||
this License.
|
|
||||||
|
|
||||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
|
||||||
patent license under the contributor's essential patent claims, to
|
|
||||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
|
||||||
propagate the contents of its contributor version.
|
|
||||||
|
|
||||||
In the following three paragraphs, a "patent license" is any express
|
|
||||||
agreement or commitment, however denominated, not to enforce a patent
|
|
||||||
(such as an express permission to practice a patent or covenant not to
|
|
||||||
sue for patent infringement). To "grant" such a patent license to a
|
|
||||||
party means to make such an agreement or commitment not to enforce a
|
|
||||||
patent against the party.
|
|
||||||
|
|
||||||
If you convey a covered work, knowingly relying on a patent license,
|
|
||||||
and the Corresponding Source of the work is not available for anyone
|
|
||||||
to copy, free of charge and under the terms of this License, through a
|
|
||||||
publicly available network server or other readily accessible means,
|
|
||||||
then you must either (1) cause the Corresponding Source to be so
|
|
||||||
available, or (2) arrange to deprive yourself of the benefit of the
|
|
||||||
patent license for this particular work, or (3) arrange, in a manner
|
|
||||||
consistent with the requirements of this License, to extend the patent
|
|
||||||
license to downstream recipients. "Knowingly relying" means you have
|
|
||||||
actual knowledge that, but for the patent license, your conveying the
|
|
||||||
covered work in a country, or your recipient's use of the covered work
|
|
||||||
in a country, would infringe one or more identifiable patents in that
|
|
||||||
country that you have reason to believe are valid.
|
|
||||||
|
|
||||||
If, pursuant to or in connection with a single transaction or
|
|
||||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
|
||||||
covered work, and grant a patent license to some of the parties
|
|
||||||
receiving the covered work authorizing them to use, propagate, modify
|
|
||||||
or convey a specific copy of the covered work, then the patent license
|
|
||||||
you grant is automatically extended to all recipients of the covered
|
|
||||||
work and works based on it.
|
|
||||||
|
|
||||||
A patent license is "discriminatory" if it does not include within
|
|
||||||
the scope of its coverage, prohibits the exercise of, or is
|
|
||||||
conditioned on the non-exercise of one or more of the rights that are
|
|
||||||
specifically granted under this License. You may not convey a covered
|
|
||||||
work if you are a party to an arrangement with a third party that is
|
|
||||||
in the business of distributing software, under which you make payment
|
|
||||||
to the third party based on the extent of your activity of conveying
|
|
||||||
the work, and under which the third party grants, to any of the
|
|
||||||
parties who would receive the covered work from you, a discriminatory
|
|
||||||
patent license (a) in connection with copies of the covered work
|
|
||||||
conveyed by you (or copies made from those copies), or (b) primarily
|
|
||||||
for and in connection with specific products or compilations that
|
|
||||||
contain the covered work, unless you entered into that arrangement,
|
|
||||||
or that patent license was granted, prior to 28 March 2007.
|
|
||||||
|
|
||||||
Nothing in this License shall be construed as excluding or limiting
|
|
||||||
any implied license or other defenses to infringement that may
|
|
||||||
otherwise be available to you under applicable patent law.
|
|
||||||
|
|
||||||
12. No Surrender of Others' Freedom.
|
|
||||||
|
|
||||||
If conditions are imposed on you (whether by court order, agreement or
|
|
||||||
otherwise) that contradict the conditions of this License, they do not
|
|
||||||
excuse you from the conditions of this License. If you cannot convey a
|
|
||||||
covered work so as to satisfy simultaneously your obligations under this
|
|
||||||
License and any other pertinent obligations, then as a consequence you may
|
|
||||||
not convey it at all. For example, if you agree to terms that obligate you
|
|
||||||
to collect a royalty for further conveying from those to whom you convey
|
|
||||||
the Program, the only way you could satisfy both those terms and this
|
|
||||||
License would be to refrain entirely from conveying the Program.
|
|
||||||
|
|
||||||
13. Use with the GNU Affero General Public License.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, you have
|
|
||||||
permission to link or combine any covered work with a work licensed
|
|
||||||
under version 3 of the GNU Affero General Public License into a single
|
|
||||||
combined work, and to convey the resulting work. The terms of this
|
|
||||||
License will continue to apply to the part which is the covered work,
|
|
||||||
but the special requirements of the GNU Affero General Public License,
|
|
||||||
section 13, concerning interaction through a network will apply to the
|
|
||||||
combination as such.
|
|
||||||
|
|
||||||
14. Revised Versions of this License.
|
|
||||||
|
|
||||||
The Free Software Foundation may publish revised and/or new versions of
|
|
||||||
the GNU General Public License from time to time. Such new versions will
|
|
||||||
be similar in spirit to the present version, but may differ in detail to
|
|
||||||
address new problems or concerns.
|
|
||||||
|
|
||||||
Each version is given a distinguishing version number. If the
|
|
||||||
Program specifies that a certain numbered version of the GNU General
|
|
||||||
Public License "or any later version" applies to it, you have the
|
|
||||||
option of following the terms and conditions either of that numbered
|
|
||||||
version or of any later version published by the Free Software
|
|
||||||
Foundation. If the Program does not specify a version number of the
|
|
||||||
GNU General Public License, you may choose any version ever published
|
|
||||||
by the Free Software Foundation.
|
|
||||||
|
|
||||||
If the Program specifies that a proxy can decide which future
|
|
||||||
versions of the GNU General Public License can be used, that proxy's
|
|
||||||
public statement of acceptance of a version permanently authorizes you
|
|
||||||
to choose that version for the Program.
|
|
||||||
|
|
||||||
Later license versions may give you additional or different
|
|
||||||
permissions. However, no additional obligations are imposed on any
|
|
||||||
author or copyright holder as a result of your choosing to follow a
|
|
||||||
later version.
|
|
||||||
|
|
||||||
15. Disclaimer of Warranty.
|
|
||||||
|
|
||||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
|
||||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
|
||||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
|
||||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
||||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
|
||||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
|
||||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
|
||||||
|
|
||||||
16. Limitation of Liability.
|
|
||||||
|
|
||||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
|
||||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
|
||||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
|
||||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
|
||||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
|
||||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
|
||||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
|
||||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
|
||||||
SUCH DAMAGES.
|
|
||||||
|
|
||||||
17. Interpretation of Sections 15 and 16.
|
|
||||||
|
|
||||||
If the disclaimer of warranty and limitation of liability provided
|
|
||||||
above cannot be given local legal effect according to their terms,
|
|
||||||
reviewing courts shall apply local law that most closely approximates
|
|
||||||
an absolute waiver of all civil liability in connection with the
|
|
||||||
Program, unless a warranty or assumption of liability accompanies a
|
|
||||||
copy of the Program in return for a fee.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
How to Apply These Terms to Your New Programs
|
|
||||||
|
|
||||||
If you develop a new program, and you want it to be of the greatest
|
|
||||||
possible use to the public, the best way to achieve this is to make it
|
|
||||||
free software which everyone can redistribute and change under these terms.
|
|
||||||
|
|
||||||
To do so, attach the following notices to the program. It is safest
|
|
||||||
to attach them to the start of each source file to most effectively
|
|
||||||
state the exclusion of warranty; and each file should have at least
|
|
||||||
the "copyright" line and a pointer to where the full notice is found.
|
|
||||||
|
|
||||||
<one line to give the program's name and a brief idea of what it does.>
|
|
||||||
Copyright (C) <year> <name of author>
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper mail.
|
|
||||||
|
|
||||||
If the program does terminal interaction, make it output a short
|
|
||||||
notice like this when it starts in an interactive mode:
|
|
||||||
|
|
||||||
<program> Copyright (C) <year> <name of author>
|
|
||||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
|
||||||
This is free software, and you are welcome to redistribute it
|
|
||||||
under certain conditions; type `show c' for details.
|
|
||||||
|
|
||||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
|
||||||
parts of the General Public License. Of course, your program's commands
|
|
||||||
might be different; for a GUI interface, you would use an "about box".
|
|
||||||
|
|
||||||
You should also get your employer (if you work as a programmer) or school,
|
|
||||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
|
||||||
For more information on this, and how to apply and follow the GNU GPL, see
|
|
||||||
<https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
The GNU General Public License does not permit incorporating your program
|
|
||||||
into proprietary programs. If your program is a subroutine library, you
|
|
||||||
may consider it more useful to permit linking proprietary applications with
|
|
||||||
the library. If this is what you want to do, use the GNU Lesser General
|
|
||||||
Public License instead of this License. But first, please read
|
|
||||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
|
||||||
50
README.md
@@ -6,10 +6,6 @@
|
|||||||
|
|
||||||
## FlClash
|
## FlClash
|
||||||
|
|
||||||
[](https://github.com/chen08209/FlClash/releases/)[](https://github.com/chen08209/FlClash/releases/)[](LICENSE)
|
|
||||||
|
|
||||||
[](https://t.me/FlClash)
|
|
||||||
|
|
||||||
A multi-platform proxy client based on ClashMeta, simple and easy to use, open-source and ad-free.
|
A multi-platform proxy client based on ClashMeta, simple and easy to use, open-source and ad-free.
|
||||||
|
|
||||||
on Desktop:
|
on Desktop:
|
||||||
@@ -30,36 +26,11 @@ on Mobile:
|
|||||||
|
|
||||||
💡 Based on Material You Design, [Surfboard](https://github.com/getsurfboard/surfboard)-like UI
|
💡 Based on Material You Design, [Surfboard](https://github.com/getsurfboard/surfboard)-like UI
|
||||||
|
|
||||||
☁️ Supports data sync via WebDAV
|
|
||||||
|
|
||||||
✨ Support subscription link, Dark mode
|
✨ Support subscription link, Dark mode
|
||||||
|
|
||||||
## Use
|
## Contact
|
||||||
|
|
||||||
### Linux
|
[Telegram](https://t.me/+G-veVtwBOl4wODc1)
|
||||||
|
|
||||||
⚠️ Make sure to install the following dependencies before using them
|
|
||||||
|
|
||||||
```bash
|
|
||||||
sudo apt-get install appindicator3-0.1 libappindicator3-dev
|
|
||||||
sudo apt-get install keybinder-3.0
|
|
||||||
```
|
|
||||||
|
|
||||||
### Android
|
|
||||||
|
|
||||||
Support the following actions
|
|
||||||
|
|
||||||
```bash
|
|
||||||
com.follow.clash.action.START
|
|
||||||
|
|
||||||
com.follow.clash.action.STOP
|
|
||||||
|
|
||||||
com.follow.clash.action.CHANGE
|
|
||||||
```
|
|
||||||
|
|
||||||
## Download
|
|
||||||
|
|
||||||
<a href="https://chen08209.github.io/FlClash-fdroid-repo/repo?fingerprint=789D6D32668712EF7672F9E58DEEB15FBD6DCEEC5AE7A4371EA72F2AAE8A12FD"><img alt="Get it on F-Droid" src="snapshots/get-it-on-fdroid.svg" width="200px"/></a> <a href="https://github.com/chen08209/FlClash/releases"><img alt="Get it on GitHub" src="snapshots/get-it-on-github.svg" width="200px"/></a>
|
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
|
||||||
@@ -93,7 +64,7 @@ Support the following actions
|
|||||||
3. Run build script
|
3. Run build script
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
dart .\setup.dart windows --arch <arm64 | amd64>
|
dart .\setup.dart
|
||||||
```
|
```
|
||||||
|
|
||||||
- linux
|
- linux
|
||||||
@@ -103,7 +74,7 @@ Support the following actions
|
|||||||
2. Run build script
|
2. Run build script
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
dart .\setup.dart linux --arch <arm64 | amd64>
|
dart .\setup.dart
|
||||||
```
|
```
|
||||||
|
|
||||||
- macOS
|
- macOS
|
||||||
@@ -113,15 +84,8 @@ Support the following actions
|
|||||||
2. Run build script
|
2. Run build script
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
dart .\setup.dart macos --arch <arm64 | amd64>
|
dart .\setup.dart
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## Star
|
|
||||||
|
|
||||||
The easiest way to support developers is to click on the star (⭐) at the top of the page.
|
|
||||||
|
|
||||||
<p style="text-align: center;">
|
|
||||||
<a href="https://api.star-history.com/svg?repos=chen08209/FlClash&Date">
|
|
||||||
<img alt="start" width=50% src="https://api.star-history.com/svg?repos=chen08209/FlClash&Date"/>
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
@@ -6,10 +6,6 @@
|
|||||||
|
|
||||||
## FlClash
|
## FlClash
|
||||||
|
|
||||||
[](https://github.com/chen08209/FlClash/releases/)[](https://github.com/chen08209/FlClash/releases/)[](LICENSE)
|
|
||||||
|
|
||||||
[](https://t.me/FlClash)
|
|
||||||
|
|
||||||
基于ClashMeta的多平台代理客户端,简单易用,开源无广告。
|
基于ClashMeta的多平台代理客户端,简单易用,开源无广告。
|
||||||
|
|
||||||
on Desktop:
|
on Desktop:
|
||||||
@@ -30,36 +26,11 @@ on Mobile:
|
|||||||
|
|
||||||
💡 基本 Material You 设计, 类[Surfboard](https://github.com/getsurfboard/surfboard)用户界面
|
💡 基本 Material You 设计, 类[Surfboard](https://github.com/getsurfboard/surfboard)用户界面
|
||||||
|
|
||||||
☁️ 支持通过WebDAV同步数据
|
|
||||||
|
|
||||||
✨ 支持一键导入订阅, 深色模式
|
✨ 支持一键导入订阅, 深色模式
|
||||||
|
|
||||||
## Use
|
## Contact
|
||||||
|
|
||||||
### Linux
|
[Telegram](https://t.me/+G-veVtwBOl4wODc1)
|
||||||
|
|
||||||
⚠️ 使用前请确保安装以下依赖
|
|
||||||
|
|
||||||
```bash
|
|
||||||
sudo apt-get install appindicator3-0.1 libappindicator3-dev
|
|
||||||
sudo apt-get install keybinder-3.0
|
|
||||||
```
|
|
||||||
|
|
||||||
### Android
|
|
||||||
|
|
||||||
支持下列操作
|
|
||||||
|
|
||||||
```bash
|
|
||||||
com.follow.clash.action.START
|
|
||||||
|
|
||||||
com.follow.clash.action.STOP
|
|
||||||
|
|
||||||
com.follow.clash.action.CHANGE
|
|
||||||
```
|
|
||||||
|
|
||||||
## Download
|
|
||||||
|
|
||||||
<a href="https://chen08209.github.io/FlClash-fdroid-repo/repo?fingerprint=789D6D32668712EF7672F9E58DEEB15FBD6DCEEC5AE7A4371EA72F2AAE8A12FD"><img alt="Get it on F-Droid" src="snapshots/get-it-on-fdroid.svg" width="200px"/></a> <a href="https://github.com/chen08209/FlClash/releases"><img alt="Get it on GitHub" src="snapshots/get-it-on-github.svg" width="200px"/></a>
|
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
|
||||||
@@ -93,7 +64,7 @@ on Mobile:
|
|||||||
3. 运行构建脚本
|
3. 运行构建脚本
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
dart .\setup.dart windows --arch <arm64 | amd64>
|
dart .\setup.dart
|
||||||
```
|
```
|
||||||
|
|
||||||
- linux
|
- linux
|
||||||
@@ -103,7 +74,7 @@ on Mobile:
|
|||||||
2. 运行构建脚本
|
2. 运行构建脚本
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
dart .\setup.dart linux --arch <arm64 | amd64>
|
dart .\setup.dart
|
||||||
```
|
```
|
||||||
|
|
||||||
- macOS
|
- macOS
|
||||||
@@ -113,15 +84,5 @@ on Mobile:
|
|||||||
2. 运行构建脚本
|
2. 运行构建脚本
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
dart .\setup.dart macos --arch <arm64 | amd64>
|
dart .\setup.dart
|
||||||
```
|
```
|
||||||
|
|
||||||
## Star History
|
|
||||||
|
|
||||||
支持开发者的最简单方式是点击页面顶部的星标(⭐)。
|
|
||||||
|
|
||||||
<p style="text-align: center;">
|
|
||||||
<a href="https://api.star-history.com/svg?repos=chen08209/FlClash&Date">
|
|
||||||
<img alt="start" width=50% src="https://api.star-history.com/svg?repos=chen08209/FlClash&Date"/>
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
@@ -34,22 +34,22 @@ def isRelease = defStoreFile.exists() && defStorePassword != null && defKeyAlias
|
|||||||
android {
|
android {
|
||||||
namespace "com.follow.clash"
|
namespace "com.follow.clash"
|
||||||
compileSdkVersion 34
|
compileSdkVersion 34
|
||||||
ndkVersion "27.1.12297006"
|
ndkVersion "25.1.8937393"
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_17
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
targetCompatibility JavaVersion.VERSION_17
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlinOptions {
|
kotlinOptions {
|
||||||
jvmTarget = '17'
|
jvmTarget = '1.8'
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
main.java.srcDirs += 'src/main/kotlin'
|
main.java.srcDirs += 'src/main/kotlin'
|
||||||
}
|
}
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
if (isRelease) {
|
if (isRelease){
|
||||||
release {
|
release {
|
||||||
storeFile defStoreFile
|
storeFile defStoreFile
|
||||||
storePassword defStorePassword
|
storePassword defStorePassword
|
||||||
@@ -74,9 +74,10 @@ android {
|
|||||||
applicationIdSuffix '.debug'
|
applicationIdSuffix '.debug'
|
||||||
}
|
}
|
||||||
release {
|
release {
|
||||||
if (isRelease) {
|
minifyEnabled true
|
||||||
|
if(isRelease){
|
||||||
signingConfig signingConfigs.release
|
signingConfig signingConfigs.release
|
||||||
} else {
|
}else{
|
||||||
signingConfig signingConfigs.debug
|
signingConfig signingConfigs.debug
|
||||||
}
|
}
|
||||||
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
|
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
|
||||||
@@ -101,9 +102,6 @@ flutter {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation 'androidx.core:core-splashscreen:1.0.1'
|
implementation 'androidx.core:core-splashscreen:1.0.1'
|
||||||
implementation 'com.google.code.gson:gson:2.10'
|
implementation 'com.google.code.gson:gson:2.10'
|
||||||
implementation("com.android.tools.smali:smali-dexlib2:3.0.7") {
|
|
||||||
exclude group: "com.google.guava", module: "guava"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -2,29 +2,26 @@
|
|||||||
xmlns:tools="http://schemas.android.com/tools">
|
xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
|
||||||
<uses-feature
|
<uses-feature
|
||||||
android:name="android.hardware.touchscreen"
|
android:name="android.software.leanback"
|
||||||
android:required="false" />
|
android:required="false" />
|
||||||
<uses-feature
|
<uses-feature
|
||||||
android:name="android.hardware.camera"
|
android:name="android.hardware.touchscreen"
|
||||||
android:required="false" />
|
android:required="false" />
|
||||||
|
<uses-feature
|
||||||
|
android:name="android.hardware.camera"
|
||||||
|
android:required="false" />
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
||||||
<uses-permission
|
|
||||||
android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE"
|
|
||||||
tools:ignore="SystemPermissionTypo" />
|
|
||||||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||||
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
||||||
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
|
||||||
<uses-permission
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" tools:ignore="QueryAllPackagesPermission"/>
|
||||||
android:name="android.permission.QUERY_ALL_PACKAGES"
|
|
||||||
tools:ignore="QueryAllPackagesPermission" />
|
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:name="${applicationName}"
|
android:name="${applicationName}"
|
||||||
android:hardwareAccelerated="true"
|
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:label="FlClash">
|
android:label="FlClash">
|
||||||
<activity
|
<activity
|
||||||
@@ -56,44 +53,28 @@
|
|||||||
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
<category android:name="android.intent.category.BROWSABLE" />
|
<category android:name="android.intent.category.BROWSABLE" />
|
||||||
|
|
||||||
<data android:scheme="clash" />
|
<data android:scheme="clash"/>
|
||||||
<data android:scheme="clashmeta" />
|
<data android:scheme="clashmeta"/>
|
||||||
<data android:scheme="flclash" />
|
<data android:scheme="flclash"/>
|
||||||
|
|
||||||
<data android:host="install-config" />
|
<data android:host="install-config"/>
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
<!-- <meta-data-->
|
<!-- <meta-data-->
|
||||||
<!-- android:name="io.flutter.embedding.android.EnableImpeller"-->
|
<!-- android:name="io.flutter.embedding.android.EnableImpeller"-->
|
||||||
<!-- android:value="true" />-->
|
<!-- android:value="true" />-->
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".TempActivity"
|
android:name=".TempActivity"
|
||||||
android:exported="true"
|
android:theme="@style/TransparentTheme" />
|
||||||
android:theme="@style/TransparentTheme">
|
|
||||||
<intent-filter>
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
<action android:name="${applicationId}.action.START" />
|
|
||||||
</intent-filter>
|
|
||||||
<intent-filter>
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
<action android:name="${applicationId}.action.STOP" />
|
|
||||||
</intent-filter>
|
|
||||||
<intent-filter>
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
<action android:name="${applicationId}.action.CHANGE" />
|
|
||||||
</intent-filter>
|
|
||||||
</activity>
|
|
||||||
|
|
||||||
<service
|
<service
|
||||||
android:name=".services.FlClashTileService"
|
android:name=".services.FlClashTileService"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:foregroundServiceType="specialUse"
|
android:icon="@drawable/tile_icon"
|
||||||
android:icon="@drawable/ic_stat_name"
|
|
||||||
android:label="FlClash"
|
android:label="FlClash"
|
||||||
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
||||||
tools:targetApi="n">
|
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
@@ -101,29 +82,6 @@
|
|||||||
android:name="android.service.quicksettings.TOGGLEABLE_TILE"
|
android:name="android.service.quicksettings.TOGGLEABLE_TILE"
|
||||||
android:value="true" />
|
android:value="true" />
|
||||||
</service>
|
</service>
|
||||||
|
|
||||||
<provider
|
|
||||||
android:name=".FilesProvider"
|
|
||||||
android:authorities="${applicationId}.files"
|
|
||||||
android:exported="true"
|
|
||||||
android:grantUriPermissions="true"
|
|
||||||
android:permission="android.permission.MANAGE_DOCUMENTS"
|
|
||||||
android:process=":background">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.content.action.DOCUMENTS_PROVIDER" />
|
|
||||||
</intent-filter>
|
|
||||||
</provider>
|
|
||||||
|
|
||||||
<provider
|
|
||||||
android:name="androidx.core.content.FileProvider"
|
|
||||||
android:authorities="${applicationId}.fileProvider"
|
|
||||||
android:exported="false"
|
|
||||||
android:grantUriPermissions="true">
|
|
||||||
<meta-data
|
|
||||||
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
||||||
android:resource="@xml/file_paths" />
|
|
||||||
</provider>
|
|
||||||
|
|
||||||
<service
|
<service
|
||||||
android:name=".services.FlClashVpnService"
|
android:name=".services.FlClashVpnService"
|
||||||
android:exported="false"
|
android:exported="false"
|
||||||
@@ -132,18 +90,6 @@
|
|||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.net.VpnService" />
|
<action android:name="android.net.VpnService" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
<property
|
|
||||||
android:name="android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE"
|
|
||||||
android:value="vpn" />
|
|
||||||
</service>
|
|
||||||
|
|
||||||
<service
|
|
||||||
android:name=".services.FlClashService"
|
|
||||||
android:exported="false"
|
|
||||||
android:foregroundServiceType="specialUse">
|
|
||||||
<property
|
|
||||||
android:name="android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE"
|
|
||||||
android:value="service" />
|
|
||||||
</service>
|
</service>
|
||||||
|
|
||||||
<meta-data
|
<meta-data
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 72 KiB |
@@ -1,10 +0,0 @@
|
|||||||
package com.follow.clash
|
|
||||||
|
|
||||||
|
|
||||||
import com.follow.clash.models.VpnOptions
|
|
||||||
|
|
||||||
interface BaseServiceInterface {
|
|
||||||
fun start(options: VpnOptions): Int
|
|
||||||
fun stop()
|
|
||||||
fun startForeground(title: String, content: String)
|
|
||||||
}
|
|
||||||
@@ -1,112 +0,0 @@
|
|||||||
package com.follow.clash
|
|
||||||
|
|
||||||
import android.database.Cursor
|
|
||||||
import android.database.MatrixCursor
|
|
||||||
import android.os.CancellationSignal
|
|
||||||
import android.os.ParcelFileDescriptor
|
|
||||||
import android.provider.DocumentsContract.Document
|
|
||||||
import android.provider.DocumentsContract.Root
|
|
||||||
import android.provider.DocumentsProvider
|
|
||||||
import java.io.File
|
|
||||||
import java.io.FileNotFoundException
|
|
||||||
|
|
||||||
|
|
||||||
class FilesProvider : DocumentsProvider() {
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
private const val DEFAULT_ROOT_ID = "0"
|
|
||||||
|
|
||||||
private val DEFAULT_DOCUMENT_COLUMNS = arrayOf(
|
|
||||||
Document.COLUMN_DOCUMENT_ID,
|
|
||||||
Document.COLUMN_DISPLAY_NAME,
|
|
||||||
Document.COLUMN_MIME_TYPE,
|
|
||||||
Document.COLUMN_FLAGS,
|
|
||||||
Document.COLUMN_SIZE,
|
|
||||||
)
|
|
||||||
private val DEFAULT_ROOT_COLUMNS = arrayOf(
|
|
||||||
Root.COLUMN_ROOT_ID,
|
|
||||||
Root.COLUMN_FLAGS,
|
|
||||||
Root.COLUMN_ICON,
|
|
||||||
Root.COLUMN_TITLE,
|
|
||||||
Root.COLUMN_SUMMARY,
|
|
||||||
Root.COLUMN_DOCUMENT_ID
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onCreate(): Boolean {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun queryRoots(projection: Array<String>?): Cursor {
|
|
||||||
return MatrixCursor(projection ?: DEFAULT_ROOT_COLUMNS).apply {
|
|
||||||
newRow().apply {
|
|
||||||
add(Root.COLUMN_ROOT_ID, DEFAULT_ROOT_ID)
|
|
||||||
add(Root.COLUMN_FLAGS, Root.FLAG_LOCAL_ONLY)
|
|
||||||
add(Root.COLUMN_ICON, R.mipmap.ic_launcher)
|
|
||||||
add(Root.COLUMN_TITLE, context!!.getString(R.string.fl_clash))
|
|
||||||
add(Root.COLUMN_SUMMARY, "Data")
|
|
||||||
add(Root.COLUMN_DOCUMENT_ID, "/")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
override fun queryChildDocuments(
|
|
||||||
parentDocumentId: String,
|
|
||||||
projection: Array<String>?,
|
|
||||||
sortOrder: String?
|
|
||||||
): Cursor {
|
|
||||||
val result = MatrixCursor(resolveDocumentProjection(projection))
|
|
||||||
val parentFile = if (parentDocumentId == "/") {
|
|
||||||
context?.filesDir
|
|
||||||
} else {
|
|
||||||
File(parentDocumentId)
|
|
||||||
} ?: throw FileNotFoundException("Parent directory not found")
|
|
||||||
parentFile.listFiles()?.forEach { file ->
|
|
||||||
includeFile(result, file)
|
|
||||||
}
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun queryDocument(documentId: String, projection: Array<String>?): Cursor {
|
|
||||||
val result = MatrixCursor(resolveDocumentProjection(projection))
|
|
||||||
val file = File(documentId)
|
|
||||||
includeFile(result, file)
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun openDocument(
|
|
||||||
documentId: String,
|
|
||||||
mode: String,
|
|
||||||
signal: CancellationSignal?
|
|
||||||
): ParcelFileDescriptor {
|
|
||||||
val file = File(documentId)
|
|
||||||
val accessMode = ParcelFileDescriptor.parseMode(mode)
|
|
||||||
return ParcelFileDescriptor.open(file, accessMode)
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun includeFile(result: MatrixCursor, file: File) {
|
|
||||||
result.newRow().apply {
|
|
||||||
add(Document.COLUMN_DOCUMENT_ID, file.absolutePath)
|
|
||||||
add(Document.COLUMN_DISPLAY_NAME, file.name)
|
|
||||||
add(Document.COLUMN_SIZE, file.length())
|
|
||||||
add(
|
|
||||||
Document.COLUMN_FLAGS,
|
|
||||||
Document.FLAG_SUPPORTS_WRITE or Document.FLAG_SUPPORTS_DELETE
|
|
||||||
)
|
|
||||||
add(Document.COLUMN_MIME_TYPE, getDocumentType(file))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun getDocumentType(file: File): String {
|
|
||||||
return if (file.isDirectory) {
|
|
||||||
Document.MIME_TYPE_DIR
|
|
||||||
} else {
|
|
||||||
"application/octet-stream"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun resolveDocumentProjection(projection: Array<String>?): Array<String> {
|
|
||||||
return projection ?: DEFAULT_DOCUMENT_COLUMNS
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,16 +1,9 @@
|
|||||||
package com.follow.clash
|
package com.follow.clash
|
||||||
|
|
||||||
import android.content.Context
|
|
||||||
import androidx.lifecycle.MutableLiveData
|
import androidx.lifecycle.MutableLiveData
|
||||||
import com.follow.clash.plugins.AppPlugin
|
|
||||||
import com.follow.clash.plugins.ServicePlugin
|
|
||||||
import com.follow.clash.plugins.TilePlugin
|
import com.follow.clash.plugins.TilePlugin
|
||||||
import com.follow.clash.plugins.VpnPlugin
|
|
||||||
import io.flutter.FlutterInjector
|
|
||||||
import io.flutter.embedding.engine.FlutterEngine
|
import io.flutter.embedding.engine.FlutterEngine
|
||||||
import io.flutter.embedding.engine.dart.DartExecutor
|
import java.util.Date
|
||||||
import java.util.concurrent.locks.ReentrantLock
|
|
||||||
import kotlin.concurrent.withLock
|
|
||||||
|
|
||||||
enum class RunState {
|
enum class RunState {
|
||||||
START,
|
START,
|
||||||
@@ -18,86 +11,13 @@ enum class RunState {
|
|||||||
STOP
|
STOP
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class GlobalState {
|
||||||
object GlobalState {
|
companion object {
|
||||||
val runLock = ReentrantLock()
|
val runState: MutableLiveData<RunState> = MutableLiveData<RunState>(RunState.STOP)
|
||||||
|
var runTime: Date? = null
|
||||||
val runState: MutableLiveData<RunState> = MutableLiveData<RunState>(RunState.STOP)
|
var flutterEngine: FlutterEngine? = null
|
||||||
var flutterEngine: FlutterEngine? = null
|
fun getCurrentTilePlugin(): TilePlugin? =
|
||||||
private var serviceEngine: FlutterEngine? = null
|
flutterEngine?.plugins?.get(TilePlugin::class.java) as TilePlugin?
|
||||||
|
|
||||||
fun getCurrentAppPlugin(): AppPlugin? {
|
|
||||||
val currentEngine = if (flutterEngine != null) flutterEngine else serviceEngine
|
|
||||||
return currentEngine?.plugins?.get(AppPlugin::class.java) as AppPlugin?
|
|
||||||
}
|
|
||||||
|
|
||||||
fun getText(text: String): String {
|
|
||||||
return getCurrentAppPlugin()?.getText(text) ?: ""
|
|
||||||
}
|
|
||||||
|
|
||||||
fun getCurrentTilePlugin(): TilePlugin? {
|
|
||||||
val currentEngine = if (flutterEngine != null) flutterEngine else serviceEngine
|
|
||||||
return currentEngine?.plugins?.get(TilePlugin::class.java) as TilePlugin?
|
|
||||||
}
|
|
||||||
|
|
||||||
fun getCurrentVPNPlugin(): VpnPlugin? {
|
|
||||||
return serviceEngine?.plugins?.get(VpnPlugin::class.java) as VpnPlugin?
|
|
||||||
}
|
|
||||||
|
|
||||||
fun handleToggle(context: Context) {
|
|
||||||
val starting = handleStart(context)
|
|
||||||
if (!starting) {
|
|
||||||
handleStop()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun handleStart(context: Context): Boolean {
|
|
||||||
if (runState.value == RunState.STOP) {
|
|
||||||
runState.value = RunState.PENDING
|
|
||||||
runLock.lock()
|
|
||||||
val tilePlugin = getCurrentTilePlugin()
|
|
||||||
if (tilePlugin != null) {
|
|
||||||
tilePlugin.handleStart()
|
|
||||||
} else {
|
|
||||||
initServiceEngine(context)
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
fun handleStop() {
|
|
||||||
if (runState.value == RunState.START) {
|
|
||||||
runState.value = RunState.PENDING
|
|
||||||
runLock.lock()
|
|
||||||
getCurrentTilePlugin()?.handleStop()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun destroyServiceEngine() {
|
|
||||||
runLock.withLock {
|
|
||||||
serviceEngine?.destroy()
|
|
||||||
serviceEngine = null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun initServiceEngine(context: Context) {
|
|
||||||
if (serviceEngine != null) return
|
|
||||||
destroyServiceEngine()
|
|
||||||
runLock.withLock {
|
|
||||||
serviceEngine = FlutterEngine(context)
|
|
||||||
serviceEngine?.plugins?.add(VpnPlugin())
|
|
||||||
serviceEngine?.plugins?.add(AppPlugin())
|
|
||||||
serviceEngine?.plugins?.add(TilePlugin())
|
|
||||||
serviceEngine?.plugins?.add(ServicePlugin())
|
|
||||||
val vpnService = DartExecutor.DartEntrypoint(
|
|
||||||
FlutterInjector.instance().flutterLoader().findAppBundlePath(),
|
|
||||||
"vpnService"
|
|
||||||
)
|
|
||||||
serviceEngine?.dartExecutor?.executeDartEntrypoint(
|
|
||||||
vpnService,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,18 +2,18 @@ package com.follow.clash
|
|||||||
|
|
||||||
|
|
||||||
import com.follow.clash.plugins.AppPlugin
|
import com.follow.clash.plugins.AppPlugin
|
||||||
import com.follow.clash.plugins.ServicePlugin
|
import com.follow.clash.plugins.ProxyPlugin
|
||||||
import com.follow.clash.plugins.TilePlugin
|
import com.follow.clash.plugins.TilePlugin
|
||||||
import com.follow.clash.plugins.VpnPlugin
|
|
||||||
import io.flutter.embedding.android.FlutterActivity
|
import io.flutter.embedding.android.FlutterActivity
|
||||||
import io.flutter.embedding.engine.FlutterEngine
|
import io.flutter.embedding.engine.FlutterEngine
|
||||||
|
|
||||||
class MainActivity : FlutterActivity() {
|
class MainActivity : FlutterActivity() {
|
||||||
|
|
||||||
override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
|
override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
|
||||||
|
GlobalState.flutterEngine?.destroy()
|
||||||
super.configureFlutterEngine(flutterEngine)
|
super.configureFlutterEngine(flutterEngine)
|
||||||
flutterEngine.plugins.add(AppPlugin())
|
flutterEngine.plugins.add(AppPlugin())
|
||||||
flutterEngine.plugins.add(VpnPlugin())
|
flutterEngine.plugins.add(ProxyPlugin())
|
||||||
flutterEngine.plugins.add(ServicePlugin())
|
|
||||||
flutterEngine.plugins.add(TilePlugin())
|
flutterEngine.plugins.add(TilePlugin())
|
||||||
GlobalState.flutterEngine = flutterEngine
|
GlobalState.flutterEngine = flutterEngine
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,24 +2,10 @@ package com.follow.clash
|
|||||||
|
|
||||||
import android.app.Activity
|
import android.app.Activity
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import com.follow.clash.extensions.wrapAction
|
|
||||||
|
|
||||||
class TempActivity : Activity() {
|
class TempActivity : Activity() {
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
when (intent.action) {
|
|
||||||
wrapAction("START") -> {
|
|
||||||
GlobalState.handleStart(applicationContext)
|
|
||||||
}
|
|
||||||
|
|
||||||
wrapAction("STOP") -> {
|
|
||||||
GlobalState.handleStop()
|
|
||||||
}
|
|
||||||
|
|
||||||
wrapAction("CHANGE") -> {
|
|
||||||
GlobalState.handleToggle(applicationContext)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
finishAndRemoveTask()
|
finishAndRemoveTask()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
package com.follow.clash.extensions
|
||||||
|
|
||||||
|
import java.net.InetSocketAddress
|
||||||
|
|
||||||
|
import android.graphics.Bitmap
|
||||||
|
import android.graphics.drawable.Drawable
|
||||||
|
import android.system.OsConstants.IPPROTO_TCP
|
||||||
|
import android.system.OsConstants.IPPROTO_UDP
|
||||||
|
import android.util.Base64
|
||||||
|
import androidx.core.graphics.drawable.toBitmap
|
||||||
|
import com.follow.clash.models.Metadata
|
||||||
|
import kotlinx.coroutines.Dispatchers
|
||||||
|
import kotlinx.coroutines.withContext
|
||||||
|
import java.io.ByteArrayOutputStream
|
||||||
|
|
||||||
|
|
||||||
|
suspend fun Drawable.getBase64(): String {
|
||||||
|
val drawable = this
|
||||||
|
return withContext(Dispatchers.IO) {
|
||||||
|
val bitmap = drawable.toBitmap()
|
||||||
|
val byteArrayOutputStream = ByteArrayOutputStream()
|
||||||
|
bitmap.compress(Bitmap.CompressFormat.PNG, 100, byteArrayOutputStream)
|
||||||
|
Base64.encodeToString(byteArrayOutputStream.toByteArray(), Base64.NO_WRAP)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun Metadata.getProtocol(): Int? {
|
||||||
|
if (network.startsWith("tcp")) return IPPROTO_TCP
|
||||||
|
if (network.startsWith("udp")) return IPPROTO_UDP
|
||||||
|
return null
|
||||||
|
}
|
||||||
@@ -1,198 +0,0 @@
|
|||||||
package com.follow.clash.extensions
|
|
||||||
|
|
||||||
import android.app.PendingIntent
|
|
||||||
import android.content.Context
|
|
||||||
import android.content.Intent
|
|
||||||
import android.graphics.Bitmap
|
|
||||||
import android.graphics.drawable.Drawable
|
|
||||||
import android.net.ConnectivityManager
|
|
||||||
import android.net.Network
|
|
||||||
import android.os.Build
|
|
||||||
import android.system.OsConstants.IPPROTO_TCP
|
|
||||||
import android.system.OsConstants.IPPROTO_UDP
|
|
||||||
import android.util.Base64
|
|
||||||
import androidx.core.graphics.drawable.toBitmap
|
|
||||||
import com.follow.clash.TempActivity
|
|
||||||
import com.follow.clash.models.CIDR
|
|
||||||
import com.follow.clash.models.Metadata
|
|
||||||
import com.follow.clash.models.VpnOptions
|
|
||||||
import io.flutter.plugin.common.MethodChannel
|
|
||||||
import kotlinx.coroutines.Dispatchers
|
|
||||||
import kotlinx.coroutines.withContext
|
|
||||||
import java.io.ByteArrayOutputStream
|
|
||||||
import java.net.Inet4Address
|
|
||||||
import java.net.Inet6Address
|
|
||||||
import java.net.InetAddress
|
|
||||||
import java.util.concurrent.locks.ReentrantLock
|
|
||||||
import kotlin.coroutines.resume
|
|
||||||
import kotlin.coroutines.suspendCoroutine
|
|
||||||
|
|
||||||
|
|
||||||
suspend fun Drawable.getBase64(): String {
|
|
||||||
val drawable = this
|
|
||||||
return withContext(Dispatchers.IO) {
|
|
||||||
val bitmap = drawable.toBitmap()
|
|
||||||
val byteArrayOutputStream = ByteArrayOutputStream()
|
|
||||||
bitmap.compress(Bitmap.CompressFormat.PNG, 100, byteArrayOutputStream)
|
|
||||||
Base64.encodeToString(byteArrayOutputStream.toByteArray(), Base64.NO_WRAP)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun Metadata.getProtocol(): Int? {
|
|
||||||
if (network.startsWith("tcp")) return IPPROTO_TCP
|
|
||||||
if (network.startsWith("udp")) return IPPROTO_UDP
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
|
|
||||||
fun VpnOptions.getIpv4RouteAddress(): List<CIDR> {
|
|
||||||
return routeAddress.filter {
|
|
||||||
it.isIpv4()
|
|
||||||
}.map {
|
|
||||||
it.toCIDR()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun VpnOptions.getIpv6RouteAddress(): List<CIDR> {
|
|
||||||
return routeAddress.filter {
|
|
||||||
it.isIpv6()
|
|
||||||
}.map {
|
|
||||||
it.toCIDR()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun String.isIpv4(): Boolean {
|
|
||||||
val parts = split("/")
|
|
||||||
if (parts.size != 2) {
|
|
||||||
throw IllegalArgumentException("Invalid CIDR format")
|
|
||||||
}
|
|
||||||
val address = InetAddress.getByName(parts[0])
|
|
||||||
return address.address.size == 4
|
|
||||||
}
|
|
||||||
|
|
||||||
fun String.isIpv6(): Boolean {
|
|
||||||
val parts = split("/")
|
|
||||||
if (parts.size != 2) {
|
|
||||||
throw IllegalArgumentException("Invalid CIDR format")
|
|
||||||
}
|
|
||||||
val address = InetAddress.getByName(parts[0])
|
|
||||||
return address.address.size == 16
|
|
||||||
}
|
|
||||||
|
|
||||||
fun String.toCIDR(): CIDR {
|
|
||||||
val parts = split("/")
|
|
||||||
if (parts.size != 2) {
|
|
||||||
throw IllegalArgumentException("Invalid CIDR format")
|
|
||||||
}
|
|
||||||
val ipAddress = parts[0]
|
|
||||||
val prefixLength = parts[1].toIntOrNull()
|
|
||||||
?: throw IllegalArgumentException("Invalid prefix length")
|
|
||||||
|
|
||||||
val address = InetAddress.getByName(ipAddress)
|
|
||||||
|
|
||||||
val maxPrefix = if (address.address.size == 4) 32 else 128
|
|
||||||
if (prefixLength < 0 || prefixLength > maxPrefix) {
|
|
||||||
throw IllegalArgumentException("Invalid prefix length for IP version")
|
|
||||||
}
|
|
||||||
|
|
||||||
return CIDR(address, prefixLength)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
fun ConnectivityManager.resolveDns(network: Network?): List<String> {
|
|
||||||
val properties = getLinkProperties(network) ?: return listOf()
|
|
||||||
return properties.dnsServers.map { it.asSocketAddressText(53) }
|
|
||||||
}
|
|
||||||
|
|
||||||
fun InetAddress.asSocketAddressText(port: Int): String {
|
|
||||||
return when (this) {
|
|
||||||
is Inet6Address ->
|
|
||||||
"[${numericToTextFormat(this.address)}]:$port"
|
|
||||||
|
|
||||||
is Inet4Address ->
|
|
||||||
"${this.hostAddress}:$port"
|
|
||||||
|
|
||||||
else -> throw IllegalArgumentException("Unsupported Inet type ${this.javaClass}")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun Context.wrapAction(action: String): String {
|
|
||||||
return "${this.packageName}.action.$action"
|
|
||||||
}
|
|
||||||
|
|
||||||
fun Context.getActionIntent(action: String): Intent {
|
|
||||||
val actionIntent = Intent(this, TempActivity::class.java)
|
|
||||||
actionIntent.action = wrapAction(action)
|
|
||||||
return actionIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_MULTIPLE_TASK)
|
|
||||||
}
|
|
||||||
|
|
||||||
fun Context.getActionPendingIntent(action: String): PendingIntent {
|
|
||||||
return if (Build.VERSION.SDK_INT >= 31) {
|
|
||||||
PendingIntent.getActivity(
|
|
||||||
this,
|
|
||||||
0,
|
|
||||||
getActionIntent(action),
|
|
||||||
PendingIntent.FLAG_IMMUTABLE or PendingIntent.FLAG_UPDATE_CURRENT
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
PendingIntent.getActivity(
|
|
||||||
this,
|
|
||||||
0,
|
|
||||||
getActionIntent(action),
|
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private fun numericToTextFormat(src: ByteArray): String {
|
|
||||||
val sb = StringBuilder(39)
|
|
||||||
for (i in 0 until 8) {
|
|
||||||
sb.append(
|
|
||||||
Integer.toHexString(
|
|
||||||
src[i shl 1].toInt() shl 8 and 0xff00
|
|
||||||
or (src[(i shl 1) + 1].toInt() and 0xff)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
if (i < 7) {
|
|
||||||
sb.append(":")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return sb.toString()
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun <T> MethodChannel.awaitResult(
|
|
||||||
method: String,
|
|
||||||
arguments: Any? = null
|
|
||||||
): T? = withContext(Dispatchers.Main) { // 切换到主线程
|
|
||||||
suspendCoroutine { continuation ->
|
|
||||||
invokeMethod(method, arguments, object : MethodChannel.Result {
|
|
||||||
override fun success(result: Any?) {
|
|
||||||
@Suppress("UNCHECKED_CAST")
|
|
||||||
continuation.resume(result as T)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun error(code: String, message: String?, details: Any?) {
|
|
||||||
continuation.resume(null)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun notImplemented() {
|
|
||||||
continuation.resume(null)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun ReentrantLock.safeLock() {
|
|
||||||
if (this.isLocked) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
this.lock()
|
|
||||||
}
|
|
||||||
|
|
||||||
fun ReentrantLock.safeUnlock() {
|
|
||||||
if (!this.isLocked) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
this.unlock()
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
package com.follow.clash.models
|
||||||
|
|
||||||
|
enum class AccessControlMode {
|
||||||
|
acceptSelected,
|
||||||
|
rejectSelected,
|
||||||
|
}
|
||||||
|
|
||||||
|
data class AccessControl(
|
||||||
|
val mode: AccessControlMode,
|
||||||
|
val acceptList: List<String>,
|
||||||
|
val rejectList: List<String>,
|
||||||
|
)
|
||||||
@@ -1,15 +1,11 @@
|
|||||||
package com.follow.clash.models
|
package com.follow.clash.models
|
||||||
|
|
||||||
data class Process(
|
|
||||||
val id: Int,
|
|
||||||
val metadata: Metadata,
|
|
||||||
)
|
|
||||||
|
|
||||||
data class Metadata(
|
data class Metadata(
|
||||||
val network: String,
|
val network: String,
|
||||||
val sourceIP: String,
|
val sourceIP: String,
|
||||||
val sourcePort: Int,
|
val sourcePort: Int,
|
||||||
val destinationIP: String,
|
val destinationIP: String,
|
||||||
val destinationPort: Int,
|
val destinationPort: Int,
|
||||||
|
val remoteDestination: String,
|
||||||
val host: String
|
val host: String
|
||||||
)
|
)
|
||||||
@@ -3,6 +3,5 @@ package com.follow.clash.models
|
|||||||
data class Package(
|
data class Package(
|
||||||
val packageName: String,
|
val packageName: String,
|
||||||
val label: String,
|
val label: String,
|
||||||
val isSystem: Boolean,
|
val isSystem:Boolean
|
||||||
val firstInstallTime: Long,
|
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
package com.follow.clash.models
|
|
||||||
|
|
||||||
import java.net.InetAddress
|
|
||||||
|
|
||||||
enum class AccessControlMode {
|
|
||||||
acceptSelected, rejectSelected,
|
|
||||||
}
|
|
||||||
|
|
||||||
data class AccessControl(
|
|
||||||
val mode: AccessControlMode,
|
|
||||||
val acceptList: List<String>,
|
|
||||||
val rejectList: List<String>,
|
|
||||||
)
|
|
||||||
|
|
||||||
data class CIDR(val address: InetAddress, val prefixLength: Int)
|
|
||||||
|
|
||||||
data class VpnOptions(
|
|
||||||
val enable: Boolean,
|
|
||||||
val port: Int,
|
|
||||||
val accessControl: AccessControl?,
|
|
||||||
val allowBypass: Boolean,
|
|
||||||
val systemProxy: Boolean,
|
|
||||||
val bypassDomain: List<String>,
|
|
||||||
val routeAddress: List<String>,
|
|
||||||
val ipv4Address: String,
|
|
||||||
val ipv6Address: String,
|
|
||||||
val dnsServerAddress: String,
|
|
||||||
)
|
|
||||||
@@ -2,200 +2,120 @@ package com.follow.clash.plugins
|
|||||||
|
|
||||||
import android.Manifest
|
import android.Manifest
|
||||||
import android.app.Activity
|
import android.app.Activity
|
||||||
import android.app.ActivityManager
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.Intent
|
|
||||||
import android.content.pm.ApplicationInfo
|
import android.content.pm.ApplicationInfo
|
||||||
import android.content.pm.ComponentInfo
|
|
||||||
import android.content.pm.PackageManager
|
import android.content.pm.PackageManager
|
||||||
import android.net.VpnService
|
import android.net.ConnectivityManager
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
import android.widget.Toast
|
import android.widget.Toast
|
||||||
import androidx.core.app.ActivityCompat
|
import androidx.annotation.RequiresApi
|
||||||
import androidx.core.content.ContextCompat
|
import androidx.core.content.getSystemService
|
||||||
import androidx.core.content.ContextCompat.getSystemService
|
|
||||||
import androidx.core.content.FileProvider
|
|
||||||
import androidx.core.content.pm.ShortcutInfoCompat
|
|
||||||
import androidx.core.content.pm.ShortcutManagerCompat
|
|
||||||
import androidx.core.graphics.drawable.IconCompat
|
|
||||||
import com.android.tools.smali.dexlib2.dexbacked.DexBackedDexFile
|
|
||||||
import com.follow.clash.GlobalState
|
|
||||||
import com.follow.clash.R
|
|
||||||
import com.follow.clash.extensions.awaitResult
|
|
||||||
import com.follow.clash.extensions.getActionIntent
|
|
||||||
import com.follow.clash.extensions.getBase64
|
import com.follow.clash.extensions.getBase64
|
||||||
|
import com.follow.clash.extensions.getProtocol
|
||||||
|
import com.follow.clash.models.Metadata
|
||||||
import com.follow.clash.models.Package
|
import com.follow.clash.models.Package
|
||||||
import com.google.gson.Gson
|
import com.google.gson.Gson
|
||||||
import io.flutter.embedding.android.FlutterActivity
|
|
||||||
import io.flutter.embedding.engine.plugins.FlutterPlugin
|
import io.flutter.embedding.engine.plugins.FlutterPlugin
|
||||||
import io.flutter.embedding.engine.plugins.activity.ActivityAware
|
import io.flutter.embedding.engine.plugins.activity.ActivityAware
|
||||||
import io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding
|
import io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding
|
||||||
import io.flutter.plugin.common.MethodCall
|
import io.flutter.plugin.common.MethodCall
|
||||||
import io.flutter.plugin.common.MethodChannel
|
import io.flutter.plugin.common.MethodChannel
|
||||||
import io.flutter.plugin.common.MethodChannel.Result
|
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.Dispatchers
|
import kotlinx.coroutines.Dispatchers
|
||||||
import kotlinx.coroutines.cancel
|
import kotlinx.coroutines.cancel
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import kotlinx.coroutines.runBlocking
|
|
||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
import java.io.File
|
import java.net.InetSocketAddress
|
||||||
import java.util.zip.ZipFile
|
|
||||||
|
|
||||||
class AppPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware {
|
class AppPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware {
|
||||||
|
|
||||||
private var activity: Activity? = null
|
private var activity: Activity? = null
|
||||||
|
|
||||||
private lateinit var context: Context
|
private var toast: Toast? = null
|
||||||
|
|
||||||
|
private var context: Context? = null
|
||||||
|
|
||||||
private lateinit var channel: MethodChannel
|
private lateinit var channel: MethodChannel
|
||||||
|
|
||||||
private lateinit var scope: CoroutineScope
|
private lateinit var scope: CoroutineScope
|
||||||
|
|
||||||
private var vpnCallBack: (() -> Unit)? = null
|
private var connectivity: ConnectivityManager? = null
|
||||||
|
|
||||||
private val iconMap = mutableMapOf<String, String?>()
|
private val iconMap = mutableMapOf<String, String?>()
|
||||||
|
|
||||||
private val packages = mutableListOf<Package>()
|
|
||||||
|
|
||||||
private val skipPrefixList = listOf(
|
|
||||||
"com.google",
|
|
||||||
"com.android.chrome",
|
|
||||||
"com.android.vending",
|
|
||||||
"com.microsoft",
|
|
||||||
"com.apple",
|
|
||||||
"com.zhiliaoapp.musically", // Banned by China
|
|
||||||
)
|
|
||||||
|
|
||||||
private val chinaAppPrefixList = listOf(
|
|
||||||
"com.tencent",
|
|
||||||
"com.alibaba",
|
|
||||||
"com.umeng",
|
|
||||||
"com.qihoo",
|
|
||||||
"com.ali",
|
|
||||||
"com.alipay",
|
|
||||||
"com.amap",
|
|
||||||
"com.sina",
|
|
||||||
"com.weibo",
|
|
||||||
"com.vivo",
|
|
||||||
"com.xiaomi",
|
|
||||||
"com.huawei",
|
|
||||||
"com.taobao",
|
|
||||||
"com.secneo",
|
|
||||||
"s.h.e.l.l",
|
|
||||||
"com.stub",
|
|
||||||
"com.kiwisec",
|
|
||||||
"com.secshell",
|
|
||||||
"com.wrapper",
|
|
||||||
"cn.securitystack",
|
|
||||||
"com.mogosec",
|
|
||||||
"com.secoen",
|
|
||||||
"com.netease",
|
|
||||||
"com.mx",
|
|
||||||
"com.qq.e",
|
|
||||||
"com.baidu",
|
|
||||||
"com.bytedance",
|
|
||||||
"com.bugly",
|
|
||||||
"com.miui",
|
|
||||||
"com.oppo",
|
|
||||||
"com.coloros",
|
|
||||||
"com.iqoo",
|
|
||||||
"com.meizu",
|
|
||||||
"com.gionee",
|
|
||||||
"cn.nubia",
|
|
||||||
"com.oplus",
|
|
||||||
"andes.oplus",
|
|
||||||
"com.unionpay",
|
|
||||||
"cn.wps"
|
|
||||||
)
|
|
||||||
|
|
||||||
private val chinaAppRegex by lazy {
|
|
||||||
("(" + chinaAppPrefixList.joinToString("|").replace(".", "\\.") + ").*").toRegex()
|
|
||||||
}
|
|
||||||
|
|
||||||
val VPN_PERMISSION_REQUEST_CODE = 1001
|
|
||||||
|
|
||||||
val NOTIFICATION_PERMISSION_REQUEST_CODE = 1002
|
|
||||||
|
|
||||||
private var isBlockNotification: Boolean = false
|
|
||||||
|
|
||||||
override fun onAttachedToEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
|
override fun onAttachedToEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
|
||||||
scope = CoroutineScope(Dispatchers.Default)
|
context = flutterPluginBinding.applicationContext;
|
||||||
context = flutterPluginBinding.applicationContext
|
|
||||||
channel = MethodChannel(flutterPluginBinding.binaryMessenger, "app")
|
channel = MethodChannel(flutterPluginBinding.binaryMessenger, "app")
|
||||||
channel.setMethodCallHandler(this)
|
channel.setMethodCallHandler(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun initShortcuts(label: String) {
|
|
||||||
val shortcut = ShortcutInfoCompat.Builder(context, "toggle")
|
|
||||||
.setShortLabel(label)
|
|
||||||
.setIcon(IconCompat.createWithResource(context, R.mipmap.ic_launcher_round))
|
|
||||||
.setIntent(context.getActionIntent("CHANGE"))
|
|
||||||
.build()
|
|
||||||
ShortcutManagerCompat.setDynamicShortcuts(context, listOf(shortcut))
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
override fun onDetachedFromEngine(binding: FlutterPlugin.FlutterPluginBinding) {
|
override fun onDetachedFromEngine(binding: FlutterPlugin.FlutterPluginBinding) {
|
||||||
channel.setMethodCallHandler(null)
|
channel.setMethodCallHandler(null)
|
||||||
scope.cancel()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun tip(message: String?) {
|
private fun tip(message: String?) {
|
||||||
if (GlobalState.flutterEngine == null) {
|
if (toast != null) {
|
||||||
Toast.makeText(context, message, Toast.LENGTH_LONG).show()
|
toast!!.cancel()
|
||||||
}
|
}
|
||||||
|
toast = Toast.makeText(context, message, Toast.LENGTH_SHORT)
|
||||||
|
toast!!.show()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onMethodCall(call: MethodCall, result: Result) {
|
@RequiresApi(Build.VERSION_CODES.Q)
|
||||||
|
override fun onMethodCall(call: MethodCall, result: MethodChannel.Result) {
|
||||||
when (call.method) {
|
when (call.method) {
|
||||||
"moveTaskToBack" -> {
|
"moveTaskToBack" -> {
|
||||||
activity?.moveTaskToBack(true)
|
activity?.moveTaskToBack(true)
|
||||||
result.success(true)
|
result.success(true);
|
||||||
}
|
|
||||||
|
|
||||||
"updateExcludeFromRecents" -> {
|
|
||||||
val value = call.argument<Boolean>("value")
|
|
||||||
updateExcludeFromRecents(value)
|
|
||||||
result.success(true)
|
|
||||||
}
|
|
||||||
|
|
||||||
"initShortcuts" -> {
|
|
||||||
initShortcuts(call.arguments as String)
|
|
||||||
result.success(true)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
"getPackages" -> {
|
"getPackages" -> {
|
||||||
scope.launch {
|
scope.launch {
|
||||||
result.success(getPackagesToJson())
|
result.success(getPackages())
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
"getChinaPackageNames" -> {
|
|
||||||
scope.launch {
|
|
||||||
result.success(getChinaPackageNames())
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
"getPackageIcon" -> {
|
"getPackageIcon" -> {
|
||||||
scope.launch {
|
scope.launch {
|
||||||
val packageName = call.argument<String>("packageName")
|
val packageName = call.argument<String>("packageName")
|
||||||
if (packageName == null) {
|
if (packageName != null) {
|
||||||
|
result.success(getPackageIcon(packageName))
|
||||||
|
} else {
|
||||||
result.success(null)
|
result.success(null)
|
||||||
return@launch
|
|
||||||
}
|
}
|
||||||
val packageIcon = getPackageIcon(packageName)
|
}
|
||||||
packageIcon.let {
|
}
|
||||||
if (it != null) {
|
|
||||||
result.success(it)
|
"getPackageName" -> {
|
||||||
return@launch
|
val data = call.argument<String>("data")
|
||||||
|
val metadata =
|
||||||
|
if (data != null) Gson().fromJson(
|
||||||
|
data,
|
||||||
|
Metadata::class.java
|
||||||
|
) else null
|
||||||
|
val protocol = metadata?.getProtocol()
|
||||||
|
if (protocol == null) {
|
||||||
|
result.success(null)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
scope.launch {
|
||||||
|
withContext(Dispatchers.Default) {
|
||||||
|
if (context == null) result.success(null)
|
||||||
|
val source = InetSocketAddress(metadata.sourceIP, metadata.sourcePort)
|
||||||
|
val target = InetSocketAddress(
|
||||||
|
metadata.host.ifEmpty { metadata.destinationIP },
|
||||||
|
metadata.destinationPort
|
||||||
|
)
|
||||||
|
if (connectivity == null) {
|
||||||
|
connectivity = context!!.getSystemService<ConnectivityManager>()
|
||||||
}
|
}
|
||||||
if (iconMap["default"] == null) {
|
val uid =
|
||||||
iconMap["default"] =
|
connectivity?.getConnectionOwnerUid(protocol, source, target)
|
||||||
context.packageManager?.defaultActivityIcon?.getBase64()
|
if (uid == null || uid == -1) {
|
||||||
|
result.success(null)
|
||||||
|
return@withContext
|
||||||
}
|
}
|
||||||
result.success(iconMap["default"])
|
val packages = context?.packageManager?.getPackagesForUid(uid)
|
||||||
return@launch
|
result.success(packages?.first())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -204,258 +124,59 @@ class AppPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware
|
|||||||
val message = call.argument<String>("message")
|
val message = call.argument<String>("message")
|
||||||
tip(message)
|
tip(message)
|
||||||
result.success(true)
|
result.success(true)
|
||||||
}
|
|
||||||
|
|
||||||
"openFile" -> {
|
|
||||||
val path = call.argument<String>("path")!!
|
|
||||||
openFile(path)
|
|
||||||
result.success(true)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
else -> {
|
else -> {
|
||||||
result.notImplemented()
|
result.notImplemented();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun openFile(path: String) {
|
|
||||||
val file = File(path)
|
|
||||||
val uri = FileProvider.getUriForFile(
|
|
||||||
context,
|
|
||||||
"${context.packageName}.fileProvider",
|
|
||||||
file
|
|
||||||
)
|
|
||||||
|
|
||||||
val intent = Intent(Intent.ACTION_VIEW).setDataAndType(
|
|
||||||
uri,
|
|
||||||
"text/plain"
|
|
||||||
)
|
|
||||||
|
|
||||||
val flags =
|
|
||||||
Intent.FLAG_GRANT_WRITE_URI_PERMISSION or Intent.FLAG_GRANT_READ_URI_PERMISSION
|
|
||||||
|
|
||||||
val resInfoList = context.packageManager.queryIntentActivities(
|
|
||||||
intent, PackageManager.MATCH_DEFAULT_ONLY
|
|
||||||
)
|
|
||||||
|
|
||||||
for (resolveInfo in resInfoList) {
|
|
||||||
val packageName = resolveInfo.activityInfo.packageName
|
|
||||||
context.grantUriPermission(
|
|
||||||
packageName,
|
|
||||||
uri,
|
|
||||||
flags
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
activity?.startActivity(intent)
|
|
||||||
} catch (e: Exception) {
|
|
||||||
println(e)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun updateExcludeFromRecents(value: Boolean?) {
|
|
||||||
val am = getSystemService(context, ActivityManager::class.java)
|
|
||||||
val task = am?.appTasks?.firstOrNull {
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
|
||||||
it.taskInfo.taskId == activity?.taskId
|
|
||||||
} else {
|
|
||||||
it.taskInfo.id == activity?.taskId
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
when (value) {
|
|
||||||
true -> task?.setExcludeFromRecents(value)
|
|
||||||
false -> task?.setExcludeFromRecents(value)
|
|
||||||
null -> task?.setExcludeFromRecents(false)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun getPackageIcon(packageName: String): String? {
|
private suspend fun getPackageIcon(packageName: String): String? {
|
||||||
val packageManager = context.packageManager
|
val packageManager = context?.packageManager
|
||||||
if (iconMap[packageName] == null) {
|
if (iconMap[packageName] == null) {
|
||||||
iconMap[packageName] = try {
|
iconMap[packageName] = packageManager?.getApplicationIcon(packageName)?.getBase64()
|
||||||
packageManager?.getApplicationIcon(packageName)?.getBase64()
|
|
||||||
} catch (_: Exception) {
|
|
||||||
null
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
return iconMap[packageName]
|
return iconMap[packageName]
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getPackages(): List<Package> {
|
private suspend fun getPackages(): String {
|
||||||
val packageManager = context.packageManager
|
return withContext(Dispatchers.Default){
|
||||||
if (packages.isNotEmpty()) return packages
|
val packageManager = context?.packageManager
|
||||||
packageManager?.getInstalledPackages(PackageManager.GET_META_DATA)?.filter {
|
val packages: List<Package>? =
|
||||||
it.packageName != context.packageName
|
packageManager?.getInstalledPackages(PackageManager.GET_META_DATA)?.filter {
|
||||||
|| it.requestedPermissions?.contains(Manifest.permission.INTERNET) == true
|
it.packageName == context?.packageName
|
||||||
|| it.packageName == "android"
|
|| it.requestedPermissions?.contains(Manifest.permission.INTERNET) == false
|
||||||
|
|| it.packageName != "android"
|
||||||
|
|
||||||
}?.map {
|
}?.map {
|
||||||
Package(
|
Package(
|
||||||
packageName = it.packageName,
|
packageName = it.packageName,
|
||||||
label = it.applicationInfo.loadLabel(packageManager).toString(),
|
label = it.applicationInfo.loadLabel(packageManager).toString(),
|
||||||
isSystem = (it.applicationInfo.flags and ApplicationInfo.FLAG_SYSTEM) == 1,
|
isSystem = (it.applicationInfo.flags and ApplicationInfo.FLAG_SYSTEM) == 1
|
||||||
firstInstallTime = it.firstInstallTime
|
)
|
||||||
)
|
}
|
||||||
}?.let { packages.addAll(it) }
|
|
||||||
return packages
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun getPackagesToJson(): String {
|
|
||||||
return withContext(Dispatchers.Default) {
|
|
||||||
Gson().toJson(getPackages())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun getChinaPackageNames(): String {
|
|
||||||
return withContext(Dispatchers.Default) {
|
|
||||||
val packages: List<String> =
|
|
||||||
getPackages().map { it.packageName }.filter { isChinaPackage(it) }
|
|
||||||
Gson().toJson(packages)
|
Gson().toJson(packages)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun requestVpnPermission(context: Context, callBack: () -> Unit) {
|
|
||||||
vpnCallBack = callBack
|
|
||||||
val intent = VpnService.prepare(context)
|
|
||||||
if (intent != null) {
|
|
||||||
activity?.startActivityForResult(intent, VPN_PERMISSION_REQUEST_CODE)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
vpnCallBack?.invoke()
|
|
||||||
}
|
|
||||||
|
|
||||||
fun requestNotificationsPermission(context: Context) {
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
|
|
||||||
val permission = ContextCompat.checkSelfPermission(
|
|
||||||
context,
|
|
||||||
Manifest.permission.POST_NOTIFICATIONS
|
|
||||||
)
|
|
||||||
if (permission != PackageManager.PERMISSION_GRANTED) {
|
|
||||||
if (isBlockNotification) return
|
|
||||||
if (activity == null) return
|
|
||||||
ActivityCompat.requestPermissions(
|
|
||||||
activity!!,
|
|
||||||
arrayOf(Manifest.permission.POST_NOTIFICATIONS),
|
|
||||||
NOTIFICATION_PERMISSION_REQUEST_CODE
|
|
||||||
)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun getText(text: String): String? {
|
|
||||||
return runBlocking {
|
|
||||||
channel.awaitResult<String>("getText", text)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun isChinaPackage(packageName: String): Boolean {
|
|
||||||
val packageManager = context.packageManager ?: return false
|
|
||||||
skipPrefixList.forEach {
|
|
||||||
if (packageName == it || packageName.startsWith("$it.")) return false
|
|
||||||
}
|
|
||||||
val packageManagerFlags = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
|
|
||||||
PackageManager.MATCH_UNINSTALLED_PACKAGES or PackageManager.GET_ACTIVITIES or PackageManager.GET_SERVICES or PackageManager.GET_RECEIVERS or PackageManager.GET_PROVIDERS
|
|
||||||
} else {
|
|
||||||
@Suppress("DEPRECATION")
|
|
||||||
PackageManager.GET_UNINSTALLED_PACKAGES or PackageManager.GET_ACTIVITIES or PackageManager.GET_SERVICES or PackageManager.GET_RECEIVERS or PackageManager.GET_PROVIDERS
|
|
||||||
}
|
|
||||||
if (packageName.matches(chinaAppRegex)) {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
val packageInfo = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
|
|
||||||
packageManager.getPackageInfo(
|
|
||||||
packageName,
|
|
||||||
PackageManager.PackageInfoFlags.of(packageManagerFlags.toLong())
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
@Suppress("DEPRECATION") packageManager.getPackageInfo(
|
|
||||||
packageName, packageManagerFlags
|
|
||||||
)
|
|
||||||
}
|
|
||||||
mutableListOf<ComponentInfo>().apply {
|
|
||||||
packageInfo.services?.let { addAll(it) }
|
|
||||||
packageInfo.activities?.let { addAll(it) }
|
|
||||||
packageInfo.receivers?.let { addAll(it) }
|
|
||||||
packageInfo.providers?.let { addAll(it) }
|
|
||||||
}.forEach {
|
|
||||||
if (it.name.matches(chinaAppRegex)) return true
|
|
||||||
}
|
|
||||||
ZipFile(File(packageInfo.applicationInfo.publicSourceDir)).use {
|
|
||||||
for (packageEntry in it.entries()) {
|
|
||||||
if (packageEntry.name.startsWith("firebase-")) return false
|
|
||||||
}
|
|
||||||
for (packageEntry in it.entries()) {
|
|
||||||
if (!(packageEntry.name.startsWith("classes") && packageEntry.name.endsWith(
|
|
||||||
".dex"
|
|
||||||
))
|
|
||||||
) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if (packageEntry.size > 15000000) {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
val input = it.getInputStream(packageEntry).buffered()
|
|
||||||
val dexFile = try {
|
|
||||||
DexBackedDexFile.fromInputStream(null, input)
|
|
||||||
} catch (e: Exception) {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
for (clazz in dexFile.classes) {
|
|
||||||
val clazzName =
|
|
||||||
clazz.type.substring(1, clazz.type.length - 1).replace("/", ".")
|
|
||||||
.replace("$", ".")
|
|
||||||
if (clazzName.matches(chinaAppRegex)) return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (_: Exception) {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onAttachedToActivity(binding: ActivityPluginBinding) {
|
override fun onAttachedToActivity(binding: ActivityPluginBinding) {
|
||||||
activity = binding.activity
|
activity = binding.activity;
|
||||||
binding.addActivityResultListener(::onActivityResult)
|
scope = CoroutineScope(Dispatchers.Default)
|
||||||
binding.addRequestPermissionsResultListener(::onRequestPermissionsResultListener)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onDetachedFromActivityForConfigChanges() {
|
override fun onDetachedFromActivityForConfigChanges() {
|
||||||
activity = null
|
activity = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onReattachedToActivityForConfigChanges(binding: ActivityPluginBinding) {
|
override fun onReattachedToActivityForConfigChanges(binding: ActivityPluginBinding) {
|
||||||
activity = binding.activity
|
activity = binding.activity;
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onDetachedFromActivity() {
|
override fun onDetachedFromActivity() {
|
||||||
channel.invokeMethod("exit", null)
|
channel.invokeMethod("exit", null)
|
||||||
activity = null
|
scope.cancel()
|
||||||
}
|
activity = null;
|
||||||
|
|
||||||
private fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?): Boolean {
|
|
||||||
if (requestCode == VPN_PERMISSION_REQUEST_CODE) {
|
|
||||||
if (resultCode == FlutterActivity.RESULT_OK) {
|
|
||||||
GlobalState.initServiceEngine(context)
|
|
||||||
vpnCallBack?.invoke()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun onRequestPermissionsResultListener(
|
|
||||||
requestCode: Int,
|
|
||||||
permissions: Array<String>,
|
|
||||||
grantResults: IntArray
|
|
||||||
): Boolean {
|
|
||||||
if (requestCode == NOTIFICATION_PERMISSION_REQUEST_CODE) {
|
|
||||||
isBlockNotification = true
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,227 @@
|
|||||||
|
package com.follow.clash.plugins
|
||||||
|
|
||||||
|
import android.Manifest
|
||||||
|
import android.annotation.SuppressLint
|
||||||
|
import android.app.Activity
|
||||||
|
import android.content.ComponentName
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
|
import android.content.ServiceConnection
|
||||||
|
import android.content.pm.PackageManager
|
||||||
|
import android.net.VpnService
|
||||||
|
import android.os.Build.VERSION
|
||||||
|
import android.os.Build.VERSION_CODES
|
||||||
|
import android.os.IBinder
|
||||||
|
import androidx.core.app.ActivityCompat
|
||||||
|
import androidx.core.content.ContextCompat
|
||||||
|
import com.follow.clash.GlobalState
|
||||||
|
import com.follow.clash.RunState
|
||||||
|
import com.follow.clash.models.AccessControl
|
||||||
|
import com.follow.clash.services.FlClashVpnService
|
||||||
|
import com.google.gson.Gson
|
||||||
|
import io.flutter.embedding.android.FlutterActivity
|
||||||
|
import io.flutter.embedding.engine.plugins.FlutterPlugin
|
||||||
|
import io.flutter.embedding.engine.plugins.activity.ActivityAware
|
||||||
|
import io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding
|
||||||
|
import io.flutter.plugin.common.MethodCall
|
||||||
|
import io.flutter.plugin.common.MethodChannel
|
||||||
|
import java.util.Date
|
||||||
|
|
||||||
|
|
||||||
|
class ProxyPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware {
|
||||||
|
|
||||||
|
|
||||||
|
val VPN_PERMISSION_REQUEST_CODE = 1001
|
||||||
|
val NOTIFICATION_PERMISSION_REQUEST_CODE = 1002
|
||||||
|
|
||||||
|
private lateinit var flutterMethodChannel: MethodChannel
|
||||||
|
|
||||||
|
private var activity: Activity? = null
|
||||||
|
private var context: Context? = null
|
||||||
|
private var flClashVpnService: FlClashVpnService? = null
|
||||||
|
private var isBound = false
|
||||||
|
private var port: Int? = null
|
||||||
|
private var accessControl: AccessControl? = null
|
||||||
|
private lateinit var title: String
|
||||||
|
private lateinit var content: String
|
||||||
|
|
||||||
|
private val connection = object : ServiceConnection {
|
||||||
|
override fun onServiceConnected(className: ComponentName, service: IBinder) {
|
||||||
|
val binder = service as FlClashVpnService.LocalBinder
|
||||||
|
flClashVpnService = binder.getService()
|
||||||
|
port?.let { startVpn(it) }
|
||||||
|
isBound = true
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onServiceDisconnected(arg0: ComponentName) {
|
||||||
|
flClashVpnService = null
|
||||||
|
isBound = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onAttachedToEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
|
||||||
|
context = flutterPluginBinding.applicationContext
|
||||||
|
flutterMethodChannel = MethodChannel(flutterPluginBinding.binaryMessenger, "proxy")
|
||||||
|
flutterMethodChannel.setMethodCallHandler(this)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onDetachedFromEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
|
||||||
|
flutterMethodChannel.setMethodCallHandler(null)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onMethodCall(call: MethodCall, result: MethodChannel.Result) = when (call.method) {
|
||||||
|
"StartProxy" -> {
|
||||||
|
port = call.argument<Int>("port")
|
||||||
|
val args = call.argument<String>("args")
|
||||||
|
accessControl =
|
||||||
|
if (args != null) Gson().fromJson(args, AccessControl::class.java) else null
|
||||||
|
handleStartVpn()
|
||||||
|
result.success(true)
|
||||||
|
}
|
||||||
|
|
||||||
|
"StopProxy" -> {
|
||||||
|
stopVpn()
|
||||||
|
result.success(true)
|
||||||
|
}
|
||||||
|
|
||||||
|
"SetProtect" -> {
|
||||||
|
val fd = call.argument<Int>("fd")
|
||||||
|
if (fd != null) {
|
||||||
|
flClashVpnService?.protect(fd)
|
||||||
|
result.success(true)
|
||||||
|
} else {
|
||||||
|
result.success(false)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
"GetRunTimeStamp" -> {
|
||||||
|
result.success(GlobalState.runTime?.time)
|
||||||
|
}
|
||||||
|
|
||||||
|
"startForeground" -> {
|
||||||
|
title = call.argument<String>("title") as String
|
||||||
|
content = call.argument<String>("content") as String
|
||||||
|
requestNotificationsPermission()
|
||||||
|
result.success(true)
|
||||||
|
}
|
||||||
|
|
||||||
|
else -> {
|
||||||
|
result.notImplemented()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun handleStartVpn() {
|
||||||
|
val intent = VpnService.prepare(context)
|
||||||
|
if (intent != null) {
|
||||||
|
activity?.startActivityForResult(intent, VPN_PERMISSION_REQUEST_CODE)
|
||||||
|
} else {
|
||||||
|
bindService()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun startVpn(port: Int) {
|
||||||
|
if (GlobalState.runState.value == RunState.START) return;
|
||||||
|
flClashVpnService?.start(port, accessControl)
|
||||||
|
GlobalState.runState.value = RunState.START
|
||||||
|
GlobalState.runTime = Date()
|
||||||
|
startAfter()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun stopVpn() {
|
||||||
|
if (GlobalState.runState.value == RunState.STOP) return
|
||||||
|
flClashVpnService?.stop()
|
||||||
|
unbindService()
|
||||||
|
GlobalState.runState.value = RunState.STOP;
|
||||||
|
GlobalState.runTime = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressLint("ForegroundServiceType")
|
||||||
|
private fun startForeground() {
|
||||||
|
if (GlobalState.runState.value != RunState.START) return
|
||||||
|
flClashVpnService?.startForeground(title, content)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun requestNotificationsPermission() {
|
||||||
|
if (VERSION.SDK_INT >= VERSION_CODES.TIRAMISU) {
|
||||||
|
val permission = context?.let {
|
||||||
|
ContextCompat.checkSelfPermission(
|
||||||
|
it,
|
||||||
|
Manifest.permission.POST_NOTIFICATIONS
|
||||||
|
)
|
||||||
|
}
|
||||||
|
if (permission == PackageManager.PERMISSION_GRANTED) {
|
||||||
|
startForeground()
|
||||||
|
} else {
|
||||||
|
activity?.let {
|
||||||
|
ActivityCompat.requestPermissions(
|
||||||
|
it,
|
||||||
|
arrayOf(Manifest.permission.POST_NOTIFICATIONS),
|
||||||
|
NOTIFICATION_PERMISSION_REQUEST_CODE
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
startForeground()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun startAfter() {
|
||||||
|
flutterMethodChannel.invokeMethod("startAfter", flClashVpnService?.fd)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onAttachedToActivity(binding: ActivityPluginBinding) {
|
||||||
|
activity = binding.activity
|
||||||
|
binding.addActivityResultListener(::onActivityResult)
|
||||||
|
binding.addRequestPermissionsResultListener(::onRequestPermissionsResultListener)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?): Boolean {
|
||||||
|
if (requestCode == VPN_PERMISSION_REQUEST_CODE) {
|
||||||
|
if (resultCode == FlutterActivity.RESULT_OK) {
|
||||||
|
bindService()
|
||||||
|
} else {
|
||||||
|
stopVpn()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun onRequestPermissionsResultListener(
|
||||||
|
requestCode: Int,
|
||||||
|
permissions: Array<String>,
|
||||||
|
grantResults: IntArray
|
||||||
|
): Boolean {
|
||||||
|
if (requestCode == NOTIFICATION_PERMISSION_REQUEST_CODE) {
|
||||||
|
if (grantResults.isNotEmpty() && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
||||||
|
startForeground()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
override fun onDetachedFromActivityForConfigChanges() {
|
||||||
|
activity = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onReattachedToActivityForConfigChanges(binding: ActivityPluginBinding) {
|
||||||
|
activity = binding.activity
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onDetachedFromActivity() {
|
||||||
|
stopVpn()
|
||||||
|
activity = null
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun bindService() {
|
||||||
|
val intent = Intent(context, FlClashVpnService::class.java)
|
||||||
|
context?.bindService(intent, connection, Context.BIND_AUTO_CREATE)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun unbindService() {
|
||||||
|
if (isBound) {
|
||||||
|
context?.unbindService(connection)
|
||||||
|
isBound = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
package com.follow.clash.plugins
|
|
||||||
|
|
||||||
import android.content.Context
|
|
||||||
import com.follow.clash.GlobalState
|
|
||||||
import io.flutter.embedding.engine.plugins.FlutterPlugin
|
|
||||||
import io.flutter.plugin.common.MethodCall
|
|
||||||
import io.flutter.plugin.common.MethodChannel
|
|
||||||
|
|
||||||
|
|
||||||
class ServicePlugin : FlutterPlugin, MethodChannel.MethodCallHandler {
|
|
||||||
|
|
||||||
private lateinit var flutterMethodChannel: MethodChannel
|
|
||||||
|
|
||||||
private lateinit var context: Context
|
|
||||||
|
|
||||||
override fun onAttachedToEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
|
|
||||||
context = flutterPluginBinding.applicationContext
|
|
||||||
flutterMethodChannel = MethodChannel(flutterPluginBinding.binaryMessenger, "service")
|
|
||||||
flutterMethodChannel.setMethodCallHandler(this)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onDetachedFromEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
|
|
||||||
flutterMethodChannel.setMethodCallHandler(null)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onMethodCall(call: MethodCall, result: MethodChannel.Result) = when (call.method) {
|
|
||||||
"init" -> {
|
|
||||||
GlobalState.getCurrentAppPlugin()?.requestNotificationsPermission(context)
|
|
||||||
GlobalState.initServiceEngine(context)
|
|
||||||
result.success(true)
|
|
||||||
}
|
|
||||||
|
|
||||||
"destroy" -> {
|
|
||||||
handleDestroy()
|
|
||||||
result.success(true)
|
|
||||||
}
|
|
||||||
|
|
||||||
else -> {
|
|
||||||
result.notImplemented()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun handleDestroy() {
|
|
||||||
GlobalState.getCurrentVPNPlugin()?.stop()
|
|
||||||
GlobalState.destroyServiceEngine()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
package com.follow.clash.plugins
|
package com.follow.clash.plugins
|
||||||
|
|
||||||
import io.flutter.embedding.engine.plugins.FlutterPlugin
|
import io.flutter.embedding.engine.plugins.FlutterPlugin
|
||||||
|
|||||||
@@ -1,260 +0,0 @@
|
|||||||
package com.follow.clash.plugins
|
|
||||||
|
|
||||||
import android.content.ComponentName
|
|
||||||
import android.content.Context
|
|
||||||
import android.content.Intent
|
|
||||||
import android.content.ServiceConnection
|
|
||||||
import android.net.ConnectivityManager
|
|
||||||
import android.net.Network
|
|
||||||
import android.net.NetworkCapabilities
|
|
||||||
import android.net.NetworkRequest
|
|
||||||
import android.os.Build
|
|
||||||
import android.os.IBinder
|
|
||||||
import androidx.core.content.getSystemService
|
|
||||||
import com.follow.clash.BaseServiceInterface
|
|
||||||
import com.follow.clash.GlobalState
|
|
||||||
import com.follow.clash.RunState
|
|
||||||
import com.follow.clash.extensions.getProtocol
|
|
||||||
import com.follow.clash.extensions.resolveDns
|
|
||||||
import com.follow.clash.models.Process
|
|
||||||
import com.follow.clash.models.VpnOptions
|
|
||||||
import com.follow.clash.services.FlClashService
|
|
||||||
import com.follow.clash.services.FlClashVpnService
|
|
||||||
import com.google.gson.Gson
|
|
||||||
import io.flutter.embedding.engine.plugins.FlutterPlugin
|
|
||||||
import io.flutter.plugin.common.MethodCall
|
|
||||||
import io.flutter.plugin.common.MethodChannel
|
|
||||||
import kotlinx.coroutines.CoroutineScope
|
|
||||||
import kotlinx.coroutines.Dispatchers
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
import kotlinx.coroutines.withContext
|
|
||||||
import java.net.InetSocketAddress
|
|
||||||
import kotlin.concurrent.withLock
|
|
||||||
|
|
||||||
|
|
||||||
class VpnPlugin : FlutterPlugin, MethodChannel.MethodCallHandler {
|
|
||||||
private lateinit var flutterMethodChannel: MethodChannel
|
|
||||||
private lateinit var context: Context
|
|
||||||
private var flClashService: BaseServiceInterface? = null
|
|
||||||
private lateinit var options: VpnOptions
|
|
||||||
private lateinit var scope: CoroutineScope
|
|
||||||
|
|
||||||
private val connectivity by lazy {
|
|
||||||
context.getSystemService<ConnectivityManager>()
|
|
||||||
}
|
|
||||||
|
|
||||||
private val connection = object : ServiceConnection {
|
|
||||||
override fun onServiceConnected(className: ComponentName, service: IBinder) {
|
|
||||||
flClashService = when (service) {
|
|
||||||
is FlClashVpnService.LocalBinder -> service.getService()
|
|
||||||
is FlClashService.LocalBinder -> service.getService()
|
|
||||||
else -> throw Exception("invalid binder")
|
|
||||||
}
|
|
||||||
start()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onServiceDisconnected(arg: ComponentName) {
|
|
||||||
flClashService = null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onAttachedToEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
|
|
||||||
scope = CoroutineScope(Dispatchers.Default)
|
|
||||||
context = flutterPluginBinding.applicationContext
|
|
||||||
scope.launch {
|
|
||||||
registerNetworkCallback()
|
|
||||||
}
|
|
||||||
flutterMethodChannel = MethodChannel(flutterPluginBinding.binaryMessenger, "vpn")
|
|
||||||
flutterMethodChannel.setMethodCallHandler(this)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onDetachedFromEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
|
|
||||||
unRegisterNetworkCallback()
|
|
||||||
flutterMethodChannel.setMethodCallHandler(null)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onMethodCall(call: MethodCall, result: MethodChannel.Result) {
|
|
||||||
when (call.method) {
|
|
||||||
"start" -> {
|
|
||||||
val data = call.argument<String>("data")
|
|
||||||
options = Gson().fromJson(data, VpnOptions::class.java)
|
|
||||||
when (options.enable) {
|
|
||||||
true -> handleStartVpn()
|
|
||||||
false -> start()
|
|
||||||
}
|
|
||||||
result.success(true)
|
|
||||||
}
|
|
||||||
|
|
||||||
"stop" -> {
|
|
||||||
stop()
|
|
||||||
result.success(true)
|
|
||||||
}
|
|
||||||
|
|
||||||
"setProtect" -> {
|
|
||||||
val fd = call.argument<Int>("fd")
|
|
||||||
if (fd != null) {
|
|
||||||
if (flClashService is FlClashVpnService) {
|
|
||||||
(flClashService as FlClashVpnService).protect(fd)
|
|
||||||
}
|
|
||||||
result.success(true)
|
|
||||||
} else {
|
|
||||||
result.success(false)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
"startForeground" -> {
|
|
||||||
val title = call.argument<String>("title") as String
|
|
||||||
val content = call.argument<String>("content") as String
|
|
||||||
startForeground(title, content)
|
|
||||||
result.success(true)
|
|
||||||
}
|
|
||||||
|
|
||||||
"resolverProcess" -> {
|
|
||||||
val data = call.argument<String>("data")
|
|
||||||
val process = if (data != null) Gson().fromJson(
|
|
||||||
data, Process::class.java
|
|
||||||
) else null
|
|
||||||
val metadata = process?.metadata
|
|
||||||
if (metadata == null) {
|
|
||||||
result.success(null)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
val protocol = metadata.getProtocol()
|
|
||||||
if (protocol == null) {
|
|
||||||
result.success(null)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
scope.launch {
|
|
||||||
withContext(Dispatchers.Default) {
|
|
||||||
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) {
|
|
||||||
result.success(null)
|
|
||||||
return@withContext
|
|
||||||
}
|
|
||||||
val src = InetSocketAddress(metadata.sourceIP, metadata.sourcePort)
|
|
||||||
val dst = InetSocketAddress(
|
|
||||||
metadata.destinationIP.ifEmpty { metadata.host },
|
|
||||||
metadata.destinationPort
|
|
||||||
)
|
|
||||||
val uid = try {
|
|
||||||
connectivity?.getConnectionOwnerUid(protocol, src, dst)
|
|
||||||
} catch (_: Exception) {
|
|
||||||
null
|
|
||||||
}
|
|
||||||
if (uid == null || uid == -1) {
|
|
||||||
result.success(null)
|
|
||||||
return@withContext
|
|
||||||
}
|
|
||||||
val packages = context.packageManager?.getPackagesForUid(uid)
|
|
||||||
result.success(packages?.first())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
else -> {
|
|
||||||
result.notImplemented()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun handleStartVpn() {
|
|
||||||
GlobalState.getCurrentAppPlugin()?.requestVpnPermission(context) {
|
|
||||||
start()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun requestGc() {
|
|
||||||
flutterMethodChannel.invokeMethod("gc", null)
|
|
||||||
}
|
|
||||||
|
|
||||||
val networks = mutableSetOf<Network>()
|
|
||||||
|
|
||||||
fun onUpdateNetwork() {
|
|
||||||
val dns = networks.flatMap { network ->
|
|
||||||
connectivity?.resolveDns(network) ?: emptyList()
|
|
||||||
}.toSet().joinToString(",")
|
|
||||||
scope.launch {
|
|
||||||
withContext(Dispatchers.Main) {
|
|
||||||
flutterMethodChannel.invokeMethod("dnsChanged", dns)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// if (flClashService is FlClashVpnService) {
|
|
||||||
// val network = networks.maxByOrNull { net ->
|
|
||||||
// connectivity?.getNetworkCapabilities(net)?.let { cap ->
|
|
||||||
// TRANSPORT_PRIORITY.indexOfFirst { cap.hasTransport(it) }
|
|
||||||
// } ?: -1
|
|
||||||
// }
|
|
||||||
// network?.let {
|
|
||||||
// (flClashService as FlClashVpnService).updateUnderlyingNetworks(arrayOf(network))
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
}
|
|
||||||
|
|
||||||
private val callback = object : ConnectivityManager.NetworkCallback() {
|
|
||||||
override fun onAvailable(network: Network) {
|
|
||||||
networks.add(network)
|
|
||||||
onUpdateNetwork()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onLost(network: Network) {
|
|
||||||
networks.remove(network)
|
|
||||||
onUpdateNetwork()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private val request = NetworkRequest.Builder().apply {
|
|
||||||
addCapability(NetworkCapabilities.NET_CAPABILITY_NOT_VPN)
|
|
||||||
addCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET)
|
|
||||||
addCapability(NetworkCapabilities.NET_CAPABILITY_NOT_RESTRICTED)
|
|
||||||
}.build()
|
|
||||||
|
|
||||||
private fun registerNetworkCallback() {
|
|
||||||
networks.clear()
|
|
||||||
connectivity?.registerNetworkCallback(request, callback)
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun unRegisterNetworkCallback() {
|
|
||||||
connectivity?.unregisterNetworkCallback(callback)
|
|
||||||
networks.clear()
|
|
||||||
onUpdateNetwork()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun startForeground(title: String, content: String) {
|
|
||||||
GlobalState.runLock.withLock {
|
|
||||||
if (GlobalState.runState.value != RunState.START) return
|
|
||||||
flClashService?.startForeground(title, content)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun start() {
|
|
||||||
if (flClashService == null) {
|
|
||||||
bindService()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
GlobalState.runLock.withLock {
|
|
||||||
if (GlobalState.runState.value == RunState.START) return
|
|
||||||
GlobalState.runState.value = RunState.START
|
|
||||||
val fd = flClashService?.start(options)
|
|
||||||
flutterMethodChannel.invokeMethod(
|
|
||||||
"started", fd
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun stop() {
|
|
||||||
GlobalState.runLock.withLock {
|
|
||||||
if (GlobalState.runState.value == RunState.STOP) return
|
|
||||||
GlobalState.runState.value = RunState.STOP
|
|
||||||
flClashService?.stop()
|
|
||||||
}
|
|
||||||
GlobalState.destroyServiceEngine()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun bindService() {
|
|
||||||
val intent = when (options.enable) {
|
|
||||||
true -> Intent(context, FlClashVpnService::class.java)
|
|
||||||
false -> Intent(context, FlClashService::class.java)
|
|
||||||
}
|
|
||||||
context.bindService(intent, connection, Context.BIND_AUTO_CREATE)
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,114 +0,0 @@
|
|||||||
package com.follow.clash.services
|
|
||||||
|
|
||||||
import android.annotation.SuppressLint
|
|
||||||
import android.app.Notification.FOREGROUND_SERVICE_IMMEDIATE
|
|
||||||
import android.app.NotificationChannel
|
|
||||||
import android.app.NotificationManager
|
|
||||||
import android.app.PendingIntent
|
|
||||||
import android.app.Service
|
|
||||||
import android.content.Intent
|
|
||||||
import android.content.pm.ServiceInfo.FOREGROUND_SERVICE_TYPE_SPECIAL_USE
|
|
||||||
import android.os.Binder
|
|
||||||
import android.os.Build
|
|
||||||
import android.os.IBinder
|
|
||||||
import androidx.core.app.NotificationCompat
|
|
||||||
import com.follow.clash.BaseServiceInterface
|
|
||||||
import com.follow.clash.GlobalState
|
|
||||||
import com.follow.clash.MainActivity
|
|
||||||
import com.follow.clash.extensions.getActionPendingIntent
|
|
||||||
import com.follow.clash.models.VpnOptions
|
|
||||||
import kotlinx.coroutines.CoroutineScope
|
|
||||||
import kotlinx.coroutines.Dispatchers
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
|
|
||||||
|
|
||||||
class FlClashService : Service(), BaseServiceInterface {
|
|
||||||
|
|
||||||
private val binder = LocalBinder()
|
|
||||||
|
|
||||||
inner class LocalBinder : Binder() {
|
|
||||||
fun getService(): FlClashService = this@FlClashService
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onBind(intent: Intent): IBinder {
|
|
||||||
return binder
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onUnbind(intent: Intent?): Boolean {
|
|
||||||
return super.onUnbind(intent)
|
|
||||||
}
|
|
||||||
|
|
||||||
private val CHANNEL = "FlClash"
|
|
||||||
|
|
||||||
private val notificationId: Int = 1
|
|
||||||
|
|
||||||
private val notificationBuilder: NotificationCompat.Builder by lazy {
|
|
||||||
val intent = Intent(this, MainActivity::class.java)
|
|
||||||
|
|
||||||
val pendingIntent = if (Build.VERSION.SDK_INT >= 31) {
|
|
||||||
PendingIntent.getActivity(
|
|
||||||
this,
|
|
||||||
0,
|
|
||||||
intent,
|
|
||||||
PendingIntent.FLAG_IMMUTABLE or PendingIntent.FLAG_UPDATE_CURRENT
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
PendingIntent.getActivity(
|
|
||||||
this,
|
|
||||||
0,
|
|
||||||
intent,
|
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT
|
|
||||||
)
|
|
||||||
}
|
|
||||||
with(NotificationCompat.Builder(this, CHANNEL)) {
|
|
||||||
setSmallIcon(com.follow.clash.R.drawable.ic_stat_name)
|
|
||||||
setContentTitle("FlClash")
|
|
||||||
setContentIntent(pendingIntent)
|
|
||||||
setCategory(NotificationCompat.CATEGORY_SERVICE)
|
|
||||||
priority = NotificationCompat.PRIORITY_MIN
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
|
|
||||||
foregroundServiceBehavior = FOREGROUND_SERVICE_IMMEDIATE
|
|
||||||
}
|
|
||||||
addAction(
|
|
||||||
0,
|
|
||||||
GlobalState.getText("stop"),
|
|
||||||
getActionPendingIntent("STOP")
|
|
||||||
)
|
|
||||||
setOngoing(true)
|
|
||||||
setShowWhen(false)
|
|
||||||
setOnlyAlertOnce(true)
|
|
||||||
setAutoCancel(true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun start(options: VpnOptions) = 0
|
|
||||||
|
|
||||||
override fun stop() {
|
|
||||||
stopSelf()
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
|
||||||
stopForeground(STOP_FOREGROUND_REMOVE)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressLint("ForegroundServiceType", "WrongConstant")
|
|
||||||
override fun startForeground(title: String, content: String) {
|
|
||||||
CoroutineScope(Dispatchers.Default).launch {
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
|
||||||
val manager = getSystemService(NotificationManager::class.java)
|
|
||||||
var channel = manager?.getNotificationChannel(CHANNEL)
|
|
||||||
if (channel == null) {
|
|
||||||
channel =
|
|
||||||
NotificationChannel(CHANNEL, "FlClash", NotificationManager.IMPORTANCE_LOW)
|
|
||||||
manager?.createNotificationChannel(channel)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
val notification =
|
|
||||||
notificationBuilder.setContentTitle(title).setContentText(content).build()
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE) {
|
|
||||||
startForeground(notificationId, notification, FOREGROUND_SERVICE_TYPE_SPECIAL_USE)
|
|
||||||
} else {
|
|
||||||
startForeground(notificationId, notification)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -11,6 +11,12 @@ import androidx.lifecycle.Observer
|
|||||||
import com.follow.clash.GlobalState
|
import com.follow.clash.GlobalState
|
||||||
import com.follow.clash.RunState
|
import com.follow.clash.RunState
|
||||||
import com.follow.clash.TempActivity
|
import com.follow.clash.TempActivity
|
||||||
|
import com.follow.clash.plugins.AppPlugin
|
||||||
|
import com.follow.clash.plugins.ProxyPlugin
|
||||||
|
import com.follow.clash.plugins.TilePlugin
|
||||||
|
import io.flutter.FlutterInjector
|
||||||
|
import io.flutter.embedding.engine.FlutterEngine
|
||||||
|
import io.flutter.embedding.engine.dart.DartExecutor
|
||||||
|
|
||||||
|
|
||||||
@RequiresApi(Build.VERSION_CODES.N)
|
@RequiresApi(Build.VERSION_CODES.N)
|
||||||
@@ -40,33 +46,53 @@ class FlClashTileService : TileService() {
|
|||||||
@SuppressLint("StartActivityAndCollapseDeprecated")
|
@SuppressLint("StartActivityAndCollapseDeprecated")
|
||||||
private fun activityTransfer() {
|
private fun activityTransfer() {
|
||||||
val intent = Intent(this, TempActivity::class.java)
|
val intent = Intent(this, TempActivity::class.java)
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_MULTIPLE_TASK)
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
|
||||||
val pendingIntent = if (Build.VERSION.SDK_INT >= 31) {
|
if (Build.VERSION.SDK_INT >= 34) {
|
||||||
PendingIntent.getActivity(
|
val pendingIntent = PendingIntent.getActivity(
|
||||||
this,
|
this,
|
||||||
0,
|
0,
|
||||||
intent,
|
intent,
|
||||||
PendingIntent.FLAG_IMMUTABLE or PendingIntent.FLAG_UPDATE_CURRENT
|
PendingIntent.FLAG_IMMUTABLE
|
||||||
)
|
)
|
||||||
} else {
|
|
||||||
PendingIntent.getActivity(
|
|
||||||
this,
|
|
||||||
0,
|
|
||||||
intent,
|
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT
|
|
||||||
)
|
|
||||||
}
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE) {
|
|
||||||
startActivityAndCollapse(pendingIntent)
|
startActivityAndCollapse(pendingIntent)
|
||||||
} else {
|
} else {
|
||||||
startActivityAndCollapse(intent)
|
startActivityAndCollapse(intent)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private var flutterEngine: FlutterEngine? = null;
|
||||||
|
|
||||||
|
private fun initFlutterEngine() {
|
||||||
|
flutterEngine = FlutterEngine(this)
|
||||||
|
flutterEngine?.plugins?.add(ProxyPlugin())
|
||||||
|
flutterEngine?.plugins?.add(TilePlugin())
|
||||||
|
flutterEngine?.plugins?.add(AppPlugin())
|
||||||
|
GlobalState.flutterEngine = flutterEngine
|
||||||
|
if (flutterEngine?.dartExecutor?.isExecutingDart != true) {
|
||||||
|
val vpnService = DartExecutor.DartEntrypoint(
|
||||||
|
FlutterInjector.instance().flutterLoader().findAppBundlePath(),
|
||||||
|
"vpnService"
|
||||||
|
)
|
||||||
|
flutterEngine?.dartExecutor?.executeDartEntrypoint(vpnService)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
override fun onClick() {
|
override fun onClick() {
|
||||||
super.onClick()
|
super.onClick()
|
||||||
activityTransfer()
|
activityTransfer()
|
||||||
GlobalState.handleToggle(applicationContext)
|
val currentTilePlugin = GlobalState.getCurrentTilePlugin()
|
||||||
|
if (GlobalState.runState.value == RunState.STOP) {
|
||||||
|
GlobalState.runState.value = RunState.PENDING
|
||||||
|
if(currentTilePlugin == null){
|
||||||
|
initFlutterEngine()
|
||||||
|
}else{
|
||||||
|
currentTilePlugin.handleStart()
|
||||||
|
}
|
||||||
|
} else if(GlobalState.runState.value == RunState.START){
|
||||||
|
GlobalState.runState.value = RunState.PENDING
|
||||||
|
currentTilePlugin?.handleStop()
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onDestroy() {
|
override fun onDestroy() {
|
||||||
|
|||||||
@@ -1,74 +1,63 @@
|
|||||||
package com.follow.clash.services
|
package com.follow.clash.services
|
||||||
|
|
||||||
import android.annotation.SuppressLint
|
import android.annotation.SuppressLint
|
||||||
import android.app.Notification.FOREGROUND_SERVICE_IMMEDIATE
|
|
||||||
import android.app.NotificationChannel
|
import android.app.NotificationChannel
|
||||||
import android.app.NotificationManager
|
import android.app.NotificationManager
|
||||||
import android.app.PendingIntent
|
import android.app.PendingIntent
|
||||||
|
import android.app.Service
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.content.pm.ServiceInfo.FOREGROUND_SERVICE_TYPE_SPECIAL_USE
|
import android.content.pm.ServiceInfo.FOREGROUND_SERVICE_TYPE_SPECIAL_USE
|
||||||
import android.net.Network
|
|
||||||
import android.net.ProxyInfo
|
import android.net.ProxyInfo
|
||||||
import android.net.VpnService
|
import android.net.VpnService
|
||||||
import android.os.Binder
|
import android.os.Binder
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
import android.os.IBinder
|
import android.os.IBinder
|
||||||
import android.os.Parcel
|
|
||||||
import android.os.RemoteException
|
|
||||||
import android.util.Log
|
|
||||||
import androidx.core.app.NotificationCompat
|
import androidx.core.app.NotificationCompat
|
||||||
import com.follow.clash.BaseServiceInterface
|
import androidx.core.graphics.drawable.IconCompat
|
||||||
import com.follow.clash.GlobalState
|
import com.follow.clash.GlobalState
|
||||||
import com.follow.clash.MainActivity
|
import com.follow.clash.MainActivity
|
||||||
import com.follow.clash.R
|
import com.follow.clash.models.AccessControl
|
||||||
import com.follow.clash.extensions.getActionPendingIntent
|
|
||||||
import com.follow.clash.extensions.getIpv4RouteAddress
|
|
||||||
import com.follow.clash.extensions.getIpv6RouteAddress
|
|
||||||
import com.follow.clash.extensions.toCIDR
|
|
||||||
import com.follow.clash.models.AccessControlMode
|
import com.follow.clash.models.AccessControlMode
|
||||||
import com.follow.clash.models.VpnOptions
|
|
||||||
import kotlinx.coroutines.CoroutineScope
|
|
||||||
import kotlinx.coroutines.Dispatchers
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
|
|
||||||
|
|
||||||
class FlClashVpnService : VpnService(), BaseServiceInterface {
|
class FlClashVpnService : VpnService() {
|
||||||
override fun onCreate() {
|
|
||||||
super.onCreate()
|
|
||||||
GlobalState.initServiceEngine(applicationContext)
|
private val CHANNEL = "FlClash"
|
||||||
|
|
||||||
|
var fd: Int? = null
|
||||||
|
private val notificationId: Int = 1
|
||||||
|
|
||||||
|
private val passList = listOf(
|
||||||
|
"*zhihu.com",
|
||||||
|
"*zhimg.com",
|
||||||
|
"*jd.com",
|
||||||
|
"100ime-iat-api.xfyun.cn",
|
||||||
|
"*360buyimg.com",
|
||||||
|
"localhost",
|
||||||
|
"*.local",
|
||||||
|
"127.*",
|
||||||
|
"10.*",
|
||||||
|
"172.16.*",
|
||||||
|
"172.17.*",
|
||||||
|
"172.18.*",
|
||||||
|
"172.19.*",
|
||||||
|
"172.2*",
|
||||||
|
"172.30.*",
|
||||||
|
"172.31.*",
|
||||||
|
"192.168.*"
|
||||||
|
)
|
||||||
|
|
||||||
|
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
|
||||||
|
return START_STICKY
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun start(options: VpnOptions): Int {
|
fun start(port: Int, accessControl: AccessControl?) {
|
||||||
return with(Builder()) {
|
fd = with(Builder()) {
|
||||||
if (options.ipv4Address.isNotEmpty()) {
|
addAddress("172.16.0.1", 30)
|
||||||
val cidr = options.ipv4Address.toCIDR()
|
|
||||||
addAddress(cidr.address, cidr.prefixLength)
|
|
||||||
val routeAddress = options.getIpv4RouteAddress()
|
|
||||||
if (routeAddress.isNotEmpty()) {
|
|
||||||
routeAddress.forEach { i ->
|
|
||||||
Log.d("addRoute4", "address: ${i.address} prefixLength:${i.prefixLength}")
|
|
||||||
addRoute(i.address, i.prefixLength)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
addRoute("0.0.0.0", 0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (options.ipv6Address.isNotEmpty()) {
|
|
||||||
val cidr = options.ipv6Address.toCIDR()
|
|
||||||
addAddress(cidr.address, cidr.prefixLength)
|
|
||||||
val routeAddress = options.getIpv6RouteAddress()
|
|
||||||
if (routeAddress.isNotEmpty()) {
|
|
||||||
routeAddress.forEach { i ->
|
|
||||||
Log.d("addRoute6", "address: ${i.address} prefixLength:${i.prefixLength}")
|
|
||||||
addRoute(i.address, i.prefixLength)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
addRoute("::", 0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
addDnsServer(options.dnsServerAddress)
|
|
||||||
setMtu(9000)
|
setMtu(9000)
|
||||||
options.accessControl?.let { accessControl ->
|
addRoute("0.0.0.0", 0)
|
||||||
|
if (accessControl != null) {
|
||||||
when (accessControl.mode) {
|
when (accessControl.mode) {
|
||||||
AccessControlMode.acceptSelected -> {
|
AccessControlMode.acceptSelected -> {
|
||||||
(accessControl.acceptList + packageName).forEach {
|
(accessControl.acceptList + packageName).forEach {
|
||||||
@@ -83,102 +72,69 @@ class FlClashVpnService : VpnService(), BaseServiceInterface {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
addDnsServer("172.16.0.2")
|
||||||
setSession("FlClash")
|
setSession("FlClash")
|
||||||
setBlocking(false)
|
setBlocking(false)
|
||||||
if (Build.VERSION.SDK_INT >= 29) {
|
if (Build.VERSION.SDK_INT >= 29) {
|
||||||
setMetered(false)
|
setMetered(false)
|
||||||
}
|
}
|
||||||
if (options.allowBypass) {
|
allowBypass()
|
||||||
allowBypass()
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||||
}
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q && options.systemProxy) {
|
|
||||||
setHttpProxy(
|
setHttpProxy(
|
||||||
ProxyInfo.buildDirectProxy(
|
ProxyInfo.buildDirectProxy(
|
||||||
"127.0.0.1",
|
"127.0.0.1",
|
||||||
options.port,
|
port,
|
||||||
options.bypassDomain
|
passList
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
establish()?.detachFd()
|
establish()?.detachFd()
|
||||||
?: throw NullPointerException("Establish VPN rejected by system")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun updateUnderlyingNetworks(networks: Array<Network>) {
|
fun stop() {
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP_MR1) {
|
|
||||||
this.setUnderlyingNetworks(networks)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun stop() {
|
|
||||||
stopSelf()
|
stopSelf()
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
stopForeground()
|
||||||
stopForeground(STOP_FOREGROUND_REMOVE)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private val CHANNEL = "FlClash"
|
|
||||||
|
|
||||||
private val notificationId: Int = 1
|
|
||||||
|
|
||||||
private val notificationBuilder: NotificationCompat.Builder by lazy {
|
|
||||||
val intent = Intent(this, MainActivity::class.java)
|
|
||||||
|
|
||||||
val pendingIntent = if (Build.VERSION.SDK_INT >= 31) {
|
|
||||||
PendingIntent.getActivity(
|
|
||||||
this,
|
|
||||||
0,
|
|
||||||
intent,
|
|
||||||
PendingIntent.FLAG_IMMUTABLE or PendingIntent.FLAG_UPDATE_CURRENT
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
PendingIntent.getActivity(
|
|
||||||
this,
|
|
||||||
0,
|
|
||||||
intent,
|
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
with(NotificationCompat.Builder(this, CHANNEL)) {
|
|
||||||
setSmallIcon(R.drawable.ic_stat_name)
|
|
||||||
setContentTitle("FlClash")
|
|
||||||
setContentIntent(pendingIntent)
|
|
||||||
setCategory(NotificationCompat.CATEGORY_SERVICE)
|
|
||||||
priority = NotificationCompat.PRIORITY_MIN
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
|
|
||||||
foregroundServiceBehavior = FOREGROUND_SERVICE_IMMEDIATE
|
|
||||||
}
|
|
||||||
setOngoing(true)
|
|
||||||
addAction(
|
|
||||||
0,
|
|
||||||
GlobalState.getText("stop"),
|
|
||||||
getActionPendingIntent("STOP")
|
|
||||||
)
|
|
||||||
setShowWhen(false)
|
|
||||||
setOnlyAlertOnce(true)
|
|
||||||
setAutoCancel(true)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressLint("ForegroundServiceType", "WrongConstant")
|
@SuppressLint("ForegroundServiceType", "WrongConstant")
|
||||||
override fun startForeground(title: String, content: String) {
|
fun startForeground(title: String, content: String) {
|
||||||
CoroutineScope(Dispatchers.Default).launch {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
val channel =
|
||||||
val manager = getSystemService(NotificationManager::class.java)
|
NotificationChannel(CHANNEL, "FlClash", NotificationManager.IMPORTANCE_LOW)
|
||||||
var channel = manager?.getNotificationChannel(CHANNEL)
|
val manager = getSystemService(NotificationManager::class.java)
|
||||||
if (channel == null) {
|
manager.createNotificationChannel(channel)
|
||||||
channel =
|
|
||||||
NotificationChannel(CHANNEL, "FlClash", NotificationManager.IMPORTANCE_LOW)
|
val intent = Intent(this, MainActivity::class.java)
|
||||||
manager?.createNotificationChannel(channel)
|
|
||||||
}
|
val pendingIntent = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
||||||
|
PendingIntent.getActivity(
|
||||||
|
this,
|
||||||
|
0,
|
||||||
|
intent,
|
||||||
|
PendingIntent.FLAG_IMMUTABLE or PendingIntent.FLAG_UPDATE_CURRENT
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
PendingIntent.getActivity(
|
||||||
|
this,
|
||||||
|
0,
|
||||||
|
intent,
|
||||||
|
PendingIntent.FLAG_UPDATE_CURRENT
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
val icon = IconCompat.createWithResource(this, this.applicationInfo.icon)
|
||||||
|
|
||||||
|
val notification = with(NotificationCompat.Builder(this, CHANNEL)) {
|
||||||
|
setSmallIcon(icon)
|
||||||
|
setContentTitle(title)
|
||||||
|
setContentText(content)
|
||||||
|
foregroundServiceBehavior = NotificationCompat.FOREGROUND_SERVICE_IMMEDIATE
|
||||||
|
setContentIntent(pendingIntent)
|
||||||
|
setOngoing(true)
|
||||||
|
setShowWhen(false)
|
||||||
|
build()
|
||||||
}
|
}
|
||||||
val notification =
|
|
||||||
notificationBuilder
|
|
||||||
.setContentTitle(title)
|
|
||||||
.setContentText(content)
|
|
||||||
.build()
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE) {
|
||||||
startForeground(notificationId, notification, FOREGROUND_SERVICE_TYPE_SPECIAL_USE)
|
startForeground(notificationId, notification, FOREGROUND_SERVICE_TYPE_SPECIAL_USE)
|
||||||
} else {
|
} else {
|
||||||
@@ -187,29 +143,16 @@ class FlClashVpnService : VpnService(), BaseServiceInterface {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onTrimMemory(level: Int) {
|
private fun stopForeground() {
|
||||||
super.onTrimMemory(level)
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||||
GlobalState.getCurrentVPNPlugin()?.requestGc()
|
stopForeground(Service.STOP_FOREGROUND_REMOVE)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private val binder = LocalBinder()
|
private val binder = LocalBinder()
|
||||||
|
|
||||||
inner class LocalBinder : Binder() {
|
inner class LocalBinder : Binder() {
|
||||||
fun getService(): FlClashVpnService = this@FlClashVpnService
|
fun getService(): FlClashVpnService = this@FlClashVpnService
|
||||||
|
|
||||||
override fun onTransact(code: Int, data: Parcel, reply: Parcel?, flags: Int): Boolean {
|
|
||||||
try {
|
|
||||||
val isSuccess = super.onTransact(code, data, reply, flags)
|
|
||||||
if (!isSuccess) {
|
|
||||||
CoroutineScope(Dispatchers.Main).launch {
|
|
||||||
GlobalState.getCurrentTilePlugin()?.handleStop()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return isSuccess
|
|
||||||
} catch (e: RemoteException) {
|
|
||||||
throw e
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onBind(intent: Intent): IBinder {
|
override fun onBind(intent: Intent): IBinder {
|
||||||
@@ -217,6 +160,7 @@ class FlClashVpnService : VpnService(), BaseServiceInterface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun onUnbind(intent: Intent?): Boolean {
|
override fun onUnbind(intent: Intent?): Boolean {
|
||||||
|
GlobalState.getCurrentTilePlugin()?.handleStop();
|
||||||
return super.onUnbind(intent)
|
return super.onUnbind(intent)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 618 B |
|
Before Width: | Height: | Size: 423 B |
|
Before Width: | Height: | Size: 803 B |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1,25 +0,0 @@
|
|||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:width="108dp"
|
|
||||||
android:height="108dp"
|
|
||||||
android:viewportWidth="240"
|
|
||||||
android:viewportHeight="240">
|
|
||||||
<group android:scaleX="0.924"
|
|
||||||
android:scaleY="0.924"
|
|
||||||
android:translateX="9.12"
|
|
||||||
android:translateY="9.12">
|
|
||||||
<group android:scaleX="0.63461536"
|
|
||||||
android:scaleY="0.63461536"
|
|
||||||
android:translateX="45.96154"
|
|
||||||
android:translateY="43.846153">
|
|
||||||
<path
|
|
||||||
android:pathData="M60.65,89.6L154.18,35.6A18,18 107.59,0 1,178.77 42.19L178.77,42.19A18,18 107.59,0 1,172.18 66.78L78.65,120.78A18,18 106.67,0 1,54.06 114.19L54.06,114.19A18,18 106.67,0 1,60.65 89.6z"
|
|
||||||
android:fillColor="#6666FB"/>
|
|
||||||
<path
|
|
||||||
android:pathData="M84.65,131.17L131.42,104.17A18,18 107.83,0 1,156 110.76L156,110.76A18,18 107.83,0 1,149.42 135.35L102.65,162.35A18,18 106.67,0 1,78.06 155.76L78.06,155.76A18,18 106.67,0 1,84.65 131.17z"
|
|
||||||
android:fillColor="#336AB6"/>
|
|
||||||
<path
|
|
||||||
android:pathData="M108.65,172.74L108.65,172.74A18,18 116.03,0 1,133.24 179.33L133.24,179.33A18,18 116.03,0 1,126.65 203.92L126.65,203.92A18,18 116.03,0 1,102.06 197.33L102.06,197.33A18,18 116.03,0 1,108.65 172.74z"
|
|
||||||
android:fillColor="#5CA8E9"/>
|
|
||||||
</group>
|
|
||||||
</group>
|
|
||||||
</vector>
|
|
||||||
BIN
android/app/src/main/res/drawable/tile_icon.png
Normal file
|
After Width: | Height: | Size: 105 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<background android:drawable="@color/ic_launcher_background"/>
|
<background android:drawable="@color/ic_launcher_background"/>
|
||||||
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
|
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
||||||
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
|
<monochrome android:drawable="@mipmap/ic_launcher_foreground" />
|
||||||
</adaptive-icon>
|
</adaptive-icon>
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<background android:drawable="@color/ic_launcher_background"/>
|
<background android:drawable="@color/ic_launcher_background"/>
|
||||||
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
|
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
||||||
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
|
<monochrome android:drawable="@mipmap/ic_launcher_foreground" />
|
||||||
</adaptive-icon>
|
</adaptive-icon>
|
||||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.9 KiB |
BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 886 B After Width: | Height: | Size: 1.2 KiB |
BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 6.8 KiB |
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 8.6 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 7.2 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 13 KiB |
@@ -6,7 +6,7 @@
|
|||||||
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
|
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
|
||||||
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
|
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
|
||||||
<item name="android:windowSplashScreenBackground" tools:targetApi="s">#121212</item>
|
<item name="android:windowSplashScreenBackground" tools:targetApi="s">#121212</item>
|
||||||
<item name="android:windowSplashScreenAnimatedIcon" tools:targetApi="s">@drawable/ic_launcher_foreground</item>
|
<item name="android:windowSplashScreenAnimatedIcon" tools:targetApi="s">@mipmap/ic_launcher_foreground</item>
|
||||||
<item name="postSplashScreenTheme">@style/NormalTheme</item>
|
<item name="postSplashScreenTheme">@style/NormalTheme</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -4,6 +4,7 @@
|
|||||||
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||||
<!-- Show a splash screen on the activity. Automatically removed when
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
the Flutter engine draws its first frame -->
|
the Flutter engine draws its first frame -->
|
||||||
|
<item name="android:windowBackground">@mipmap/ic_launcher_foreground</item>
|
||||||
</style>
|
</style>
|
||||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
This theme determines the color of the Android Window while your
|
This theme determines the color of the Android Window while your
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
|
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
|
||||||
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
|
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
|
||||||
<item name="android:windowSplashScreenBackground" tools:targetApi="s">@color/ic_launcher_background</item>
|
<item name="android:windowSplashScreenBackground" tools:targetApi="s">@color/ic_launcher_background</item>
|
||||||
<item name="android:windowSplashScreenAnimatedIcon" tools:targetApi="s">@drawable/ic_launcher_foreground</item>
|
<item name="android:windowSplashScreenAnimatedIcon" tools:targetApi="s">@mipmap/ic_launcher_foreground</item>
|
||||||
<item name="postSplashScreenTheme">@style/NormalTheme</item>
|
<item name="postSplashScreenTheme">@style/NormalTheme</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<color name="ic_launcher_background">#FAFAFA</color>
|
<color name="ic_launcher_background">#EFEFEF</color>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -4,6 +4,7 @@
|
|||||||
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||||
<!-- Show a splash screen on the activity. Automatically removed when
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
the Flutter engine draws its first frame -->
|
the Flutter engine draws its first frame -->
|
||||||
|
<item name="android:windowBackground">@mipmap/ic_launcher_foreground</item>
|
||||||
</style>
|
</style>
|
||||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
This theme determines the color of the Android Window while your
|
This theme determines the color of the Android Window while your
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
<paths>
|
|
||||||
<files-path
|
|
||||||
name="files"
|
|
||||||
path="."/>
|
|
||||||
</paths>
|
|
||||||
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<network-security-config xmlns:tools="http://schemas.android.com/tools"
|
|
||||||
tools:ignore="AcceptsUserCertificates">
|
|
||||||
<base-config>
|
|
||||||
<trust-anchors>
|
|
||||||
<certificates src="system" />
|
|
||||||
<certificates src="user" />
|
|
||||||
</trust-anchors>
|
|
||||||
</base-config>
|
|
||||||
<domain-config cleartextTrafficPermitted="true">
|
|
||||||
<domain includeSubdomains="true">localhost</domain>
|
|
||||||
<domain includeSubdomains="true">127.0.0.1</domain>
|
|
||||||
</domain-config>
|
|
||||||
</network-security-config>
|
|
||||||
35960
assets/data/GeoSite.dat
BIN
assets/images/app_icon.ico
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
|
Before Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 9.5 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 7.0 KiB |
BIN
assets/images/launch_icon.png
Normal file
|
After Width: | Height: | Size: 118 KiB |
@@ -1,32 +0,0 @@
|
|||||||
//go:build !cgo
|
|
||||||
|
|
||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
)
|
|
||||||
|
|
||||||
func (action Action) Json() ([]byte, error) {
|
|
||||||
data, err := json.Marshal(action)
|
|
||||||
return data, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func (action Action) callback(data interface{}) bool {
|
|
||||||
if conn == nil {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
sendAction := Action{
|
|
||||||
Id: action.Id,
|
|
||||||
Method: action.Method,
|
|
||||||
Data: data,
|
|
||||||
}
|
|
||||||
res, err := sendAction.Json()
|
|
||||||
if err != nil {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
_, err = conn.Write(append(res, []byte("\n")...))
|
|
||||||
if err != nil {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
382
core/common.go
@@ -1,51 +1,73 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
|
import "C"
|
||||||
import (
|
import (
|
||||||
"context"
|
|
||||||
"encoding/json"
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
"github.com/metacubex/mihomo/adapter"
|
|
||||||
"github.com/metacubex/mihomo/adapter/inbound"
|
"github.com/metacubex/mihomo/adapter/inbound"
|
||||||
"github.com/metacubex/mihomo/adapter/outboundgroup"
|
|
||||||
"github.com/metacubex/mihomo/adapter/provider"
|
|
||||||
"github.com/metacubex/mihomo/common/batch"
|
|
||||||
"github.com/metacubex/mihomo/component/dialer"
|
"github.com/metacubex/mihomo/component/dialer"
|
||||||
|
"github.com/metacubex/mihomo/component/process"
|
||||||
"github.com/metacubex/mihomo/component/resolver"
|
"github.com/metacubex/mihomo/component/resolver"
|
||||||
"github.com/metacubex/mihomo/config"
|
"github.com/metacubex/mihomo/config"
|
||||||
"github.com/metacubex/mihomo/constant"
|
"github.com/metacubex/mihomo/dns"
|
||||||
"github.com/metacubex/mihomo/constant/features"
|
"github.com/metacubex/mihomo/hub/executor"
|
||||||
cp "github.com/metacubex/mihomo/constant/provider"
|
|
||||||
"github.com/metacubex/mihomo/hub"
|
|
||||||
"github.com/metacubex/mihomo/hub/route"
|
|
||||||
"github.com/metacubex/mihomo/listener"
|
"github.com/metacubex/mihomo/listener"
|
||||||
"github.com/metacubex/mihomo/log"
|
"github.com/metacubex/mihomo/log"
|
||||||
rp "github.com/metacubex/mihomo/rules/provider"
|
|
||||||
"github.com/metacubex/mihomo/tunnel"
|
"github.com/metacubex/mihomo/tunnel"
|
||||||
"github.com/samber/lo"
|
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"os/exec"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strings"
|
"syscall"
|
||||||
"sync"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
type GenerateConfigParams struct {
|
||||||
isRunning = false
|
ProfilePath *string `json:"profile-path"`
|
||||||
runLock sync.Mutex
|
Config *config.RawConfig `json:"config" `
|
||||||
ips = []string{"ipwho.is", "ifconfig.me", "icanhazip.com", "api.ip.sb", "ipinfo.io"}
|
IsPatch *bool `json:"is-patch"`
|
||||||
b, _ = batch.New[bool](context.Background(), batch.WithConcurrencyNum[bool](50))
|
}
|
||||||
)
|
|
||||||
|
|
||||||
type ExternalProviders []ExternalProvider
|
type ChangeProxyParams struct {
|
||||||
|
GroupName *string `json:"group-name"`
|
||||||
|
ProxyName *string `json:"proxy-name"`
|
||||||
|
}
|
||||||
|
|
||||||
func (a ExternalProviders) Len() int { return len(a) }
|
type TestDelayParams struct {
|
||||||
func (a ExternalProviders) Less(i, j int) bool { return a[i].Name < a[j].Name }
|
ProxyName string `json:"proxy-name"`
|
||||||
func (a ExternalProviders) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
|
Timeout int64 `json:"timeout"`
|
||||||
|
}
|
||||||
|
|
||||||
func (message *Message) Json() (string, error) {
|
type Delay struct {
|
||||||
data, err := json.Marshal(message)
|
Name string `json:"name"`
|
||||||
return string(data), err
|
Value int32 `json:"value"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Process struct {
|
||||||
|
Uid uint32 `json:"uid"`
|
||||||
|
Network string `json:"network"`
|
||||||
|
Source string `json:"source"`
|
||||||
|
Target string `json:"target"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func restartExecutable(execPath string) {
|
||||||
|
var err error
|
||||||
|
executor.Shutdown()
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
cmd := exec.Command(execPath, os.Args[1:]...)
|
||||||
|
log.Infoln("restarting: %q %q", execPath, os.Args[1:])
|
||||||
|
cmd.Stdin = os.Stdin
|
||||||
|
cmd.Stdout = os.Stdout
|
||||||
|
cmd.Stderr = os.Stderr
|
||||||
|
err = cmd.Start()
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalln("restarting: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
os.Exit(0)
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Infoln("restarting: %q %q", execPath, os.Args[1:])
|
||||||
|
err = syscall.Exec(execPath, os.Args, os.Environ())
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalln("restarting: %s", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func readFile(path string) ([]byte, error) {
|
func readFile(path string) ([]byte, error) {
|
||||||
@@ -60,303 +82,101 @@ func readFile(path string) ([]byte, error) {
|
|||||||
return data, err
|
return data, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func getProfilePath(id string) string {
|
func getRawConfigWithPath(path *string) *config.RawConfig {
|
||||||
return filepath.Join(constant.Path.HomeDir(), "profiles", id+".yaml")
|
if path == nil {
|
||||||
}
|
|
||||||
|
|
||||||
func getProfileProvidersPath(id string) string {
|
|
||||||
return filepath.Join(constant.Path.HomeDir(), "providers", id)
|
|
||||||
}
|
|
||||||
|
|
||||||
func getRawConfigWithId(id string) *config.RawConfig {
|
|
||||||
path := getProfilePath(id)
|
|
||||||
bytes, err := readFile(path)
|
|
||||||
if err != nil {
|
|
||||||
log.Errorln("profile is not exist")
|
|
||||||
return config.DefaultRawConfig()
|
return config.DefaultRawConfig()
|
||||||
}
|
} else {
|
||||||
prof, err := config.UnmarshalRawConfig(bytes)
|
bytes, err := readFile(*path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorln("unmarshalRawConfig error %v", err)
|
log.Errorln("getProfile readFile error %v", err)
|
||||||
return config.DefaultRawConfig()
|
return config.DefaultRawConfig()
|
||||||
}
|
|
||||||
for _, mapping := range prof.ProxyProvider {
|
|
||||||
value, exist := mapping["path"].(string)
|
|
||||||
if !exist {
|
|
||||||
continue
|
|
||||||
}
|
}
|
||||||
mapping["path"] = filepath.Join(getProfileProvidersPath(id), value)
|
prof, err := config.UnmarshalRawConfig(bytes)
|
||||||
if configParams.TestURL != nil {
|
if err != nil {
|
||||||
if mapping["health-check"] != nil {
|
log.Errorln("getProfile UnmarshalRawConfig error %v", err)
|
||||||
hc := mapping["health-check"].(map[string]any)
|
return config.DefaultRawConfig()
|
||||||
if hc != nil {
|
|
||||||
if hc["url"] != nil {
|
|
||||||
hc["url"] = *configParams.TestURL
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
return prof
|
||||||
for _, mapping := range prof.RuleProvider {
|
|
||||||
value, exist := mapping["path"].(string)
|
|
||||||
if !exist {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
mapping["path"] = filepath.Join(getProfileProvidersPath(id), value)
|
|
||||||
}
|
|
||||||
return prof
|
|
||||||
}
|
|
||||||
|
|
||||||
func getExternalProvidersRaw() map[string]cp.Provider {
|
|
||||||
eps := make(map[string]cp.Provider)
|
|
||||||
for n, p := range tunnel.Providers() {
|
|
||||||
if p.VehicleType() != cp.Compatible {
|
|
||||||
eps[n] = p
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for n, p := range tunnel.RuleProviders() {
|
|
||||||
if p.VehicleType() != cp.Compatible {
|
|
||||||
eps[n] = p
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return eps
|
|
||||||
}
|
|
||||||
|
|
||||||
func toExternalProvider(p cp.Provider) (*ExternalProvider, error) {
|
|
||||||
switch p.(type) {
|
|
||||||
case *provider.ProxySetProvider:
|
|
||||||
psp := p.(*provider.ProxySetProvider)
|
|
||||||
return &ExternalProvider{
|
|
||||||
Name: psp.Name(),
|
|
||||||
Type: psp.Type().String(),
|
|
||||||
VehicleType: psp.VehicleType().String(),
|
|
||||||
Count: psp.Count(),
|
|
||||||
UpdateAt: psp.UpdatedAt(),
|
|
||||||
Path: psp.Vehicle().Path(),
|
|
||||||
SubscriptionInfo: psp.GetSubscriptionInfo(),
|
|
||||||
}, nil
|
|
||||||
case *rp.RuleSetProvider:
|
|
||||||
rsp := p.(*rp.RuleSetProvider)
|
|
||||||
return &ExternalProvider{
|
|
||||||
Name: rsp.Name(),
|
|
||||||
Type: rsp.Type().String(),
|
|
||||||
VehicleType: rsp.VehicleType().String(),
|
|
||||||
Count: rsp.Count(),
|
|
||||||
UpdateAt: rsp.UpdatedAt(),
|
|
||||||
Path: rsp.Vehicle().Path(),
|
|
||||||
}, nil
|
|
||||||
default:
|
|
||||||
return nil, errors.New("not external provider")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func sideUpdateExternalProvider(p cp.Provider, bytes []byte) error {
|
func decorationConfig(profilePath *string, cfg config.RawConfig) *config.RawConfig {
|
||||||
switch p.(type) {
|
prof := getRawConfigWithPath(profilePath)
|
||||||
case *provider.ProxySetProvider:
|
|
||||||
psp := p.(*provider.ProxySetProvider)
|
|
||||||
_, _, err := psp.SideUpdate(bytes)
|
|
||||||
if err == nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
case rp.RuleSetProvider:
|
|
||||||
rsp := p.(*rp.RuleSetProvider)
|
|
||||||
_, _, err := rsp.SideUpdate(bytes)
|
|
||||||
if err == nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
default:
|
|
||||||
return errors.New("not external provider")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func decorationConfig(profileId string, cfg config.RawConfig) *config.RawConfig {
|
|
||||||
prof := getRawConfigWithId(profileId)
|
|
||||||
overwriteConfig(prof, cfg)
|
overwriteConfig(prof, cfg)
|
||||||
return prof
|
return prof
|
||||||
}
|
}
|
||||||
|
|
||||||
func genHosts(hosts, patchHosts map[string]any) {
|
|
||||||
for k, v := range patchHosts {
|
|
||||||
hosts[k] = v
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func trimArr(arr []string) (r []string) {
|
|
||||||
for _, e := range arr {
|
|
||||||
r = append(r, strings.Trim(e, " "))
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func overrideRules(rules *[]string) {
|
|
||||||
var target = ""
|
|
||||||
for _, line := range *rules {
|
|
||||||
rule := trimArr(strings.Split(line, ","))
|
|
||||||
l := len(rule)
|
|
||||||
if l != 2 {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if strings.ToUpper(rule[0]) == "MATCH" {
|
|
||||||
target = rule[1]
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if target == "" {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
var rulesExt = lo.Map(ips, func(ip string, index int) string {
|
|
||||||
return fmt.Sprintf("DOMAIN %s %s", ip, target)
|
|
||||||
})
|
|
||||||
*rules = append(rulesExt, *rules...)
|
|
||||||
}
|
|
||||||
|
|
||||||
func overwriteConfig(targetConfig *config.RawConfig, patchConfig config.RawConfig) {
|
func overwriteConfig(targetConfig *config.RawConfig, patchConfig config.RawConfig) {
|
||||||
targetConfig.ExternalController = patchConfig.ExternalController
|
targetConfig.ExternalController = ""
|
||||||
targetConfig.ExternalUI = ""
|
targetConfig.ExternalUI = ""
|
||||||
targetConfig.Interface = ""
|
targetConfig.Interface = ""
|
||||||
targetConfig.ExternalUIURL = ""
|
targetConfig.ExternalUIURL = ""
|
||||||
targetConfig.TCPConcurrent = patchConfig.TCPConcurrent
|
|
||||||
targetConfig.UnifiedDelay = patchConfig.UnifiedDelay
|
|
||||||
targetConfig.IPv6 = patchConfig.IPv6
|
targetConfig.IPv6 = patchConfig.IPv6
|
||||||
targetConfig.LogLevel = patchConfig.LogLevel
|
targetConfig.LogLevel = patchConfig.LogLevel
|
||||||
targetConfig.Port = 0
|
targetConfig.FindProcessMode = process.FindProcessAlways
|
||||||
targetConfig.SocksPort = 0
|
|
||||||
targetConfig.KeepAliveInterval = patchConfig.KeepAliveInterval
|
|
||||||
targetConfig.MixedPort = patchConfig.MixedPort
|
|
||||||
targetConfig.FindProcessMode = patchConfig.FindProcessMode
|
|
||||||
targetConfig.AllowLan = patchConfig.AllowLan
|
targetConfig.AllowLan = patchConfig.AllowLan
|
||||||
|
targetConfig.MixedPort = patchConfig.MixedPort
|
||||||
targetConfig.Mode = patchConfig.Mode
|
targetConfig.Mode = patchConfig.Mode
|
||||||
targetConfig.Tun.Enable = patchConfig.Tun.Enable
|
targetConfig.Tun.Enable = patchConfig.Tun.Enable
|
||||||
targetConfig.Tun.Device = patchConfig.Tun.Device
|
targetConfig.Tun.Device = patchConfig.Tun.Device
|
||||||
targetConfig.Tun.DNSHijack = patchConfig.Tun.DNSHijack
|
targetConfig.Tun.DNSHijack = patchConfig.Tun.DNSHijack
|
||||||
targetConfig.Tun.Stack = patchConfig.Tun.Stack
|
targetConfig.Tun.Stack = patchConfig.Tun.Stack
|
||||||
targetConfig.GeodataLoader = patchConfig.GeodataLoader
|
if targetConfig.DNS.Enable == false {
|
||||||
targetConfig.Profile.StoreSelected = false
|
|
||||||
targetConfig.GeoXUrl = patchConfig.GeoXUrl
|
|
||||||
targetConfig.GlobalUA = patchConfig.GlobalUA
|
|
||||||
if configParams.TestURL != nil {
|
|
||||||
constant.DefaultTestURL = *configParams.TestURL
|
|
||||||
}
|
|
||||||
for idx := range targetConfig.ProxyGroup {
|
|
||||||
targetConfig.ProxyGroup[idx]["url"] = ""
|
|
||||||
}
|
|
||||||
genHosts(targetConfig.Hosts, patchConfig.Hosts)
|
|
||||||
if configParams.OverrideDns {
|
|
||||||
targetConfig.DNS = patchConfig.DNS
|
targetConfig.DNS = patchConfig.DNS
|
||||||
} else {
|
} else {
|
||||||
if targetConfig.DNS.Enable == false {
|
targetConfig.DNS.UseHosts = patchConfig.DNS.UseHosts
|
||||||
targetConfig.DNS.Enable = true
|
targetConfig.DNS.EnhancedMode = patchConfig.DNS.EnhancedMode
|
||||||
|
targetConfig.DNS.IPv6 = patchConfig.DNS.IPv6
|
||||||
|
targetConfig.DNS.DefaultNameserver = append(patchConfig.DNS.DefaultNameserver, targetConfig.DNS.DefaultNameserver...)
|
||||||
|
targetConfig.DNS.NameServer = append(patchConfig.DNS.NameServer, targetConfig.DNS.NameServer...)
|
||||||
|
targetConfig.DNS.FakeIPFilter = append(patchConfig.DNS.FakeIPFilter, targetConfig.DNS.FakeIPFilter...)
|
||||||
|
targetConfig.DNS.Fallback = append(patchConfig.DNS.Fallback, targetConfig.DNS.Fallback...)
|
||||||
|
if runtime.GOOS == "android" {
|
||||||
|
targetConfig.DNS.NameServer = append(targetConfig.DNS.NameServer, "dhcp://"+dns.SystemDNSPlaceholder)
|
||||||
|
} else if runtime.GOOS == "windows" {
|
||||||
|
targetConfig.DNS.NameServer = append(targetConfig.DNS.NameServer, dns.SystemDNSPlaceholder)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
overrideRules(&targetConfig.Rule)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func patchConfig() {
|
func patchConfig(general *config.General) {
|
||||||
log.Infoln("[Apply] patch")
|
log.Infoln("[Apply] patch")
|
||||||
general := currentConfig.General
|
|
||||||
controller := currentConfig.Controller
|
|
||||||
tls := currentConfig.TLS
|
|
||||||
tunnel.SetSniffing(general.Sniffing)
|
|
||||||
tunnel.SetFindProcessMode(general.FindProcessMode)
|
|
||||||
dialer.SetTcpConcurrent(general.TCPConcurrent)
|
|
||||||
dialer.DefaultInterface.Store(general.Interface)
|
|
||||||
adapter.UnifiedDelay.Store(general.UnifiedDelay)
|
|
||||||
tunnel.SetMode(general.Mode)
|
|
||||||
log.SetLevel(general.LogLevel)
|
|
||||||
resolver.DisableIPv6 = !general.IPv6
|
|
||||||
|
|
||||||
route.ReCreateServer(&route.Config{
|
|
||||||
Addr: controller.ExternalController,
|
|
||||||
TLSAddr: controller.ExternalControllerTLS,
|
|
||||||
UnixAddr: controller.ExternalControllerUnix,
|
|
||||||
PipeAddr: controller.ExternalControllerPipe,
|
|
||||||
Secret: controller.Secret,
|
|
||||||
Certificate: tls.Certificate,
|
|
||||||
PrivateKey: tls.PrivateKey,
|
|
||||||
DohServer: controller.ExternalDohServer,
|
|
||||||
IsDebug: false,
|
|
||||||
Cors: route.Cors{
|
|
||||||
AllowOrigins: controller.Cors.AllowOrigins,
|
|
||||||
AllowPrivateNetwork: controller.Cors.AllowPrivateNetwork,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
func updateListeners(force bool) {
|
|
||||||
if !isRunning {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
general := currentConfig.General
|
|
||||||
listeners := currentConfig.Listeners
|
|
||||||
if force == true {
|
|
||||||
stopListeners()
|
|
||||||
}
|
|
||||||
listener.PatchInboundListeners(listeners, tunnel.Tunnel, true)
|
|
||||||
listener.SetAllowLan(general.AllowLan)
|
listener.SetAllowLan(general.AllowLan)
|
||||||
inbound.SetSkipAuthPrefixes(general.SkipAuthPrefixes)
|
inbound.SetSkipAuthPrefixes(general.SkipAuthPrefixes)
|
||||||
inbound.SetAllowedIPs(general.LanAllowedIPs)
|
inbound.SetAllowedIPs(general.LanAllowedIPs)
|
||||||
inbound.SetDisAllowedIPs(general.LanDisAllowedIPs)
|
inbound.SetDisAllowedIPs(general.LanDisAllowedIPs)
|
||||||
listener.SetBindAddress(general.BindAddress)
|
listener.SetBindAddress(general.BindAddress)
|
||||||
|
tunnel.SetSniffing(general.Sniffing)
|
||||||
|
dialer.SetTcpConcurrent(general.TCPConcurrent)
|
||||||
|
dialer.DefaultInterface.Store(general.Interface)
|
||||||
listener.ReCreateHTTP(general.Port, tunnel.Tunnel)
|
listener.ReCreateHTTP(general.Port, tunnel.Tunnel)
|
||||||
listener.ReCreateSocks(general.SocksPort, tunnel.Tunnel)
|
listener.ReCreateSocks(general.SocksPort, tunnel.Tunnel)
|
||||||
listener.ReCreateRedir(general.RedirPort, tunnel.Tunnel)
|
listener.ReCreateRedir(general.RedirPort, tunnel.Tunnel)
|
||||||
|
listener.ReCreateAutoRedir(general.EBpf.AutoRedir, tunnel.Tunnel)
|
||||||
listener.ReCreateTProxy(general.TProxyPort, tunnel.Tunnel)
|
listener.ReCreateTProxy(general.TProxyPort, tunnel.Tunnel)
|
||||||
|
listener.ReCreateTun(general.Tun, tunnel.Tunnel)
|
||||||
listener.ReCreateMixed(general.MixedPort, tunnel.Tunnel)
|
listener.ReCreateMixed(general.MixedPort, tunnel.Tunnel)
|
||||||
listener.ReCreateShadowSocks(general.ShadowSocksConfig, tunnel.Tunnel)
|
listener.ReCreateShadowSocks(general.ShadowSocksConfig, tunnel.Tunnel)
|
||||||
listener.ReCreateVmess(general.VmessConfig, tunnel.Tunnel)
|
listener.ReCreateVmess(general.VmessConfig, tunnel.Tunnel)
|
||||||
listener.ReCreateTuic(general.TuicServer, tunnel.Tunnel)
|
listener.ReCreateTuic(general.TuicServer, tunnel.Tunnel)
|
||||||
if !features.Android {
|
tunnel.SetMode(general.Mode)
|
||||||
listener.ReCreateTun(general.Tun, tunnel.Tunnel)
|
log.SetLevel(general.LogLevel)
|
||||||
}
|
resolver.DisableIPv6 = !general.IPv6
|
||||||
}
|
}
|
||||||
|
|
||||||
func stopListeners() {
|
func applyConfig(isPatch bool) bool {
|
||||||
listener.StopListener()
|
if currentConfig == nil {
|
||||||
}
|
return false
|
||||||
|
|
||||||
func patchSelectGroup() {
|
|
||||||
mapping := configParams.SelectedMap
|
|
||||||
if mapping == nil {
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
for name, proxy := range tunnel.ProxiesWithProviders() {
|
cfg, err := config.ParseRawConfig(currentConfig)
|
||||||
outbound, ok := proxy.(*adapter.Proxy)
|
|
||||||
if !ok {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
selector, ok := outbound.ProxyAdapter.(outboundgroup.SelectAble)
|
|
||||||
if !ok {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
selected, exist := mapping[name]
|
|
||||||
if !exist {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
selector.ForceSet(selected)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func applyConfig(rawConfig *config.RawConfig) error {
|
|
||||||
runLock.Lock()
|
|
||||||
defer runLock.Unlock()
|
|
||||||
var err error
|
|
||||||
currentConfig, err = config.ParseRawConfig(rawConfig)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
currentConfig, _ = config.ParseRawConfig(config.DefaultRawConfig())
|
cfg, _ = config.ParseRawConfig(config.DefaultRawConfig())
|
||||||
}
|
}
|
||||||
if configParams.IsPatch {
|
if isPatch {
|
||||||
patchConfig()
|
patchConfig(cfg.General)
|
||||||
} else {
|
} else {
|
||||||
handleCloseConnectionsUnLock()
|
executor.ApplyConfig(cfg, true)
|
||||||
runtime.GC()
|
|
||||||
hub.ApplyConfig(currentConfig)
|
|
||||||
patchSelectGroup()
|
|
||||||
}
|
}
|
||||||
updateListeners(false)
|
return true
|
||||||
return err
|
|
||||||
}
|
}
|
||||||
|
|||||||
112
core/constant.go
@@ -1,112 +0,0 @@
|
|||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/metacubex/mihomo/adapter/provider"
|
|
||||||
"github.com/metacubex/mihomo/config"
|
|
||||||
"github.com/metacubex/mihomo/constant"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
type ConfigExtendedParams struct {
|
|
||||||
IsPatch bool `json:"is-patch"`
|
|
||||||
IsCompatible bool `json:"is-compatible"`
|
|
||||||
SelectedMap map[string]string `json:"selected-map"`
|
|
||||||
TestURL *string `json:"test-url"`
|
|
||||||
OverrideDns bool `json:"override-dns"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type GenerateConfigParams struct {
|
|
||||||
ProfileId string `json:"profile-id"`
|
|
||||||
Config config.RawConfig `json:"config" `
|
|
||||||
Params ConfigExtendedParams `json:"params"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type ChangeProxyParams struct {
|
|
||||||
GroupName *string `json:"group-name"`
|
|
||||||
ProxyName *string `json:"proxy-name"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type TestDelayParams struct {
|
|
||||||
ProxyName string `json:"proxy-name"`
|
|
||||||
Timeout int64 `json:"timeout"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type ProcessMapItem struct {
|
|
||||||
Id int64 `json:"id"`
|
|
||||||
Value string `json:"value"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type ExternalProvider struct {
|
|
||||||
Name string `json:"name"`
|
|
||||||
Type string `json:"type"`
|
|
||||||
VehicleType string `json:"vehicle-type"`
|
|
||||||
Count int `json:"count"`
|
|
||||||
Path string `json:"path"`
|
|
||||||
UpdateAt time.Time `json:"update-at"`
|
|
||||||
SubscriptionInfo *provider.SubscriptionInfo `json:"subscription-info"`
|
|
||||||
}
|
|
||||||
|
|
||||||
const (
|
|
||||||
messageMethod Method = "message"
|
|
||||||
initClashMethod Method = "initClash"
|
|
||||||
getIsInitMethod Method = "getIsInit"
|
|
||||||
forceGcMethod Method = "forceGc"
|
|
||||||
shutdownMethod Method = "shutdown"
|
|
||||||
validateConfigMethod Method = "validateConfig"
|
|
||||||
updateConfigMethod Method = "updateConfig"
|
|
||||||
getProxiesMethod Method = "getProxies"
|
|
||||||
changeProxyMethod Method = "changeProxy"
|
|
||||||
getTrafficMethod Method = "getTraffic"
|
|
||||||
getTotalTrafficMethod Method = "getTotalTraffic"
|
|
||||||
resetTrafficMethod Method = "resetTraffic"
|
|
||||||
asyncTestDelayMethod Method = "asyncTestDelay"
|
|
||||||
getConnectionsMethod Method = "getConnections"
|
|
||||||
closeConnectionsMethod Method = "closeConnections"
|
|
||||||
closeConnectionMethod Method = "closeConnection"
|
|
||||||
getExternalProvidersMethod Method = "getExternalProviders"
|
|
||||||
getExternalProviderMethod Method = "getExternalProvider"
|
|
||||||
getCountryCodeMethod Method = "getCountryCode"
|
|
||||||
getMemoryMethod Method = "getMemory"
|
|
||||||
updateGeoDataMethod Method = "updateGeoData"
|
|
||||||
updateExternalProviderMethod Method = "updateExternalProvider"
|
|
||||||
sideLoadExternalProviderMethod Method = "sideLoadExternalProvider"
|
|
||||||
startLogMethod Method = "startLog"
|
|
||||||
stopLogMethod Method = "stopLog"
|
|
||||||
startListenerMethod Method = "startListener"
|
|
||||||
stopListenerMethod Method = "stopListener"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Method string
|
|
||||||
|
|
||||||
type Action struct {
|
|
||||||
Id string `json:"id"`
|
|
||||||
Method Method `json:"method"`
|
|
||||||
Data interface{} `json:"data"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type MessageType string
|
|
||||||
|
|
||||||
type Delay struct {
|
|
||||||
Name string `json:"name"`
|
|
||||||
Value int32 `json:"value"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type Message struct {
|
|
||||||
Type MessageType `json:"type"`
|
|
||||||
Data interface{} `json:"data"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type Process struct {
|
|
||||||
Id int64 `json:"id"`
|
|
||||||
Metadata *constant.Metadata `json:"metadata"`
|
|
||||||
}
|
|
||||||
|
|
||||||
const (
|
|
||||||
LogMessage MessageType = "log"
|
|
||||||
ProtectMessage MessageType = "protect"
|
|
||||||
DelayMessage MessageType = "delay"
|
|
||||||
ProcessMessage MessageType = "process"
|
|
||||||
RequestMessage MessageType = "request"
|
|
||||||
StartedMessage MessageType = "started"
|
|
||||||
LoadedMessage MessageType = "loaded"
|
|
||||||
)
|
|
||||||
@@ -1,9 +1,6 @@
|
|||||||
//go:build cgo
|
|
||||||
|
|
||||||
package dart_bridge
|
package dart_bridge
|
||||||
|
|
||||||
/*
|
/*
|
||||||
#include <stdlib.h>
|
|
||||||
#include "stdint.h"
|
#include "stdint.h"
|
||||||
#include "include/dart_api_dl.h"
|
#include "include/dart_api_dl.h"
|
||||||
#include "include/dart_api_dl.c"
|
#include "include/dart_api_dl.c"
|
||||||
@@ -27,16 +24,14 @@ func InitDartApi(api unsafe.Pointer) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func SendToPort(port int64, msg string) bool {
|
func sendToPort(port int64, msg string) {
|
||||||
var obj C.Dart_CObject
|
var obj C.Dart_CObject
|
||||||
obj._type = C.Dart_CObject_kString
|
obj._type = C.Dart_CObject_kString
|
||||||
msgString := C.CString(msg)
|
msgString := C.CString(msg)
|
||||||
defer C.free(unsafe.Pointer(msgString))
|
|
||||||
ptr := unsafe.Pointer(&obj.value[0])
|
ptr := unsafe.Pointer(&obj.value[0])
|
||||||
*(**C.char)(ptr) = msgString
|
*(**C.char)(ptr) = msgString
|
||||||
isSuccess := C.GoDart_PostCObject(C.Dart_Port_DL(port), &obj)
|
isSuccess := C.GoDart_PostCObject(C.Dart_Port_DL(port), &obj)
|
||||||
if !isSuccess {
|
if !isSuccess {
|
||||||
return false
|
fmt.Println("ERROR: post to port ", port, " failed", msg)
|
||||||
}
|
}
|
||||||
return true
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
//go:build !cgo
|
|
||||||
|
|
||||||
package dart_bridge
|
|
||||||
|
|
||||||
func SendToPort(port int64, msg string) bool {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
28
core/dart-bridge/message.go
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
package dart_bridge
|
||||||
|
|
||||||
|
import "encoding/json"
|
||||||
|
|
||||||
|
var Port *int64
|
||||||
|
|
||||||
|
type MessageType string
|
||||||
|
|
||||||
|
const (
|
||||||
|
Log MessageType = "log"
|
||||||
|
Tun MessageType = "tun"
|
||||||
|
Delay MessageType = "delay"
|
||||||
|
Process MessageType = "process"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Message struct {
|
||||||
|
Type MessageType `json:"type"`
|
||||||
|
Data interface{} `json:"data"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (message *Message) toJson() string {
|
||||||
|
data, _ := json.Marshal(message)
|
||||||
|
return string(data)
|
||||||
|
}
|
||||||
|
|
||||||
|
func SendMessage(message Message) {
|
||||||
|
sendToPort(*Port, message.toJson())
|
||||||
|
}
|
||||||
97
core/go.mod
@@ -1,74 +1,64 @@
|
|||||||
module core
|
module core
|
||||||
|
|
||||||
go 1.21
|
go 1.21.0
|
||||||
|
|
||||||
replace github.com/metacubex/mihomo => ./Clash.Meta
|
replace github.com/metacubex/mihomo => ./Clash.Meta
|
||||||
|
|
||||||
require github.com/metacubex/mihomo v1.17.1
|
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/metacubex/amneziawg-go v0.0.0-20240922133038-fdf3a4d5a4ab // indirect
|
github.com/Kr328/tun2socket v0.0.0-20220414050025-d07c78d06d34
|
||||||
github.com/metacubex/wireguard-go v0.0.0-20240922131502-c182e7471181 // indirect
|
github.com/metacubex/mihomo v1.17.1
|
||||||
github.com/sagernet/cors v1.2.1 // indirect
|
github.com/miekg/dns v1.1.59
|
||||||
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
|
golang.org/x/net v0.24.0
|
||||||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
|
golang.org/x/sync v0.7.0
|
||||||
)
|
)
|
||||||
|
|
||||||
replace github.com/sagernet/sing => github.com/metacubex/sing v0.0.0-20240724044459-6f3cf5896297
|
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/3andne/restls-client-go v0.1.6 // indirect
|
github.com/3andne/restls-client-go v0.1.6 // indirect
|
||||||
github.com/RyuaNerin/go-krypto v1.2.4 // indirect
|
github.com/RyuaNerin/go-krypto v1.2.4 // indirect
|
||||||
github.com/Yawning/aez v0.0.0-20211027044916-e49e68abd344 // indirect
|
github.com/Yawning/aez v0.0.0-20211027044916-e49e68abd344 // indirect
|
||||||
github.com/ajg/form v1.5.1 // indirect
|
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
|
||||||
github.com/andybalholm/brotli v1.0.6 // indirect
|
github.com/andybalholm/brotli v1.0.6 // indirect
|
||||||
github.com/bahlo/generic-list-go v0.2.0 // indirect
|
github.com/bahlo/generic-list-go v0.2.0 // indirect
|
||||||
github.com/buger/jsonparser v1.1.1 // indirect
|
github.com/buger/jsonparser v1.1.1 // indirect
|
||||||
github.com/cloudflare/circl v1.3.7 // indirect
|
github.com/cilium/ebpf v0.12.3 // indirect
|
||||||
github.com/coreos/go-iptables v0.8.0 // indirect
|
github.com/cloudflare/circl v1.3.6 // indirect
|
||||||
github.com/dlclark/regexp2 v1.11.4 // indirect
|
github.com/coreos/go-iptables v0.7.0 // indirect
|
||||||
|
github.com/dlclark/regexp2 v1.11.0 // indirect
|
||||||
github.com/ericlagergren/aegis v0.0.0-20230312195928-b4ce538b56f9 // indirect
|
github.com/ericlagergren/aegis v0.0.0-20230312195928-b4ce538b56f9 // indirect
|
||||||
github.com/ericlagergren/polyval v0.0.0-20220411101811-e25bc10ba391 // indirect
|
github.com/ericlagergren/polyval v0.0.0-20220411101811-e25bc10ba391 // indirect
|
||||||
github.com/ericlagergren/siv v0.0.0-20220507050439-0b757b3aa5f1 // indirect
|
github.com/ericlagergren/siv v0.0.0-20220507050439-0b757b3aa5f1 // indirect
|
||||||
github.com/ericlagergren/subtle v0.0.0-20220507045147-890d697da010 // indirect
|
github.com/ericlagergren/subtle v0.0.0-20220507045147-890d697da010 // indirect
|
||||||
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
||||||
github.com/gaukas/godicttls v0.0.4 // indirect
|
github.com/gaukas/godicttls v0.0.4 // indirect
|
||||||
github.com/go-chi/chi/v5 v5.1.0 // indirect
|
|
||||||
github.com/go-chi/render v1.0.3 // indirect
|
|
||||||
github.com/go-ole/go-ole v1.3.0 // indirect
|
github.com/go-ole/go-ole v1.3.0 // indirect
|
||||||
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
|
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
|
||||||
github.com/gobwas/httphead v0.1.0 // indirect
|
github.com/gobwas/httphead v0.1.0 // indirect
|
||||||
github.com/gobwas/pool v0.2.1 // indirect
|
github.com/gobwas/pool v0.2.1 // indirect
|
||||||
github.com/gobwas/ws v1.4.0 // indirect
|
github.com/gobwas/ws v1.3.2 // indirect
|
||||||
github.com/gofrs/uuid/v5 v5.3.0 // indirect
|
github.com/gofrs/uuid/v5 v5.1.0 // indirect
|
||||||
github.com/google/btree v1.1.2 // indirect
|
github.com/google/btree v1.1.2 // indirect
|
||||||
github.com/google/go-cmp v0.6.0 // indirect
|
github.com/google/go-cmp v0.6.0 // indirect
|
||||||
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
|
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
|
||||||
github.com/hashicorp/yamux v0.1.1 // indirect
|
github.com/hashicorp/yamux v0.1.1 // indirect
|
||||||
github.com/insomniacslk/dhcp v0.0.0-20240829085014-a3a4c1f04475 // indirect
|
github.com/insomniacslk/dhcp v0.0.0-20240419123447-f1cffa2c0c49 // indirect
|
||||||
github.com/josharian/native v1.1.0 // indirect
|
github.com/josharian/native v1.1.0 // indirect
|
||||||
github.com/klauspost/compress v1.17.9 // indirect
|
github.com/klauspost/compress v1.17.4 // indirect
|
||||||
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
|
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
|
||||||
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
|
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
|
||||||
github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40 // indirect
|
github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40 // indirect
|
||||||
github.com/mailru/easyjson v0.7.7 // indirect
|
github.com/mailru/easyjson v0.7.7 // indirect
|
||||||
github.com/mdlayher/netlink v1.7.2 // indirect
|
github.com/mdlayher/netlink v1.7.2 // indirect
|
||||||
github.com/mdlayher/socket v0.4.1 // indirect
|
github.com/mdlayher/socket v0.4.1 // indirect
|
||||||
github.com/metacubex/bbolt v0.0.0-20240822011022-aed6d4850399 // indirect
|
|
||||||
github.com/metacubex/chacha v0.1.0 // indirect
|
|
||||||
github.com/metacubex/gopacket v1.1.20-0.20230608035415-7e2f98a3e759 // indirect
|
github.com/metacubex/gopacket v1.1.20-0.20230608035415-7e2f98a3e759 // indirect
|
||||||
github.com/metacubex/gvisor v0.0.0-20240320004321-933faba989ec // indirect
|
github.com/metacubex/gvisor v0.0.0-20240320004321-933faba989ec // indirect
|
||||||
github.com/metacubex/quic-go v0.47.1-0.20240909010619-6b38f24bfcc4 // indirect
|
github.com/metacubex/quic-go v0.42.1-0.20240418003344-f006b5735d98 // indirect
|
||||||
github.com/metacubex/randv2 v0.2.0 // indirect
|
github.com/metacubex/sing-quic v0.0.0-20240418004036-814c531c378d // indirect
|
||||||
github.com/metacubex/sing-quic v0.0.0-20240827003841-cd97758ed8b4 // indirect
|
github.com/metacubex/sing-shadowsocks v0.2.6 // indirect
|
||||||
github.com/metacubex/sing-shadowsocks v0.2.8 // indirect
|
github.com/metacubex/sing-shadowsocks2 v0.2.0 // indirect
|
||||||
github.com/metacubex/sing-shadowsocks2 v0.2.2 // indirect
|
github.com/metacubex/sing-tun v0.2.6 // indirect
|
||||||
github.com/metacubex/sing-tun v0.2.7-0.20240729131039-ed03f557dee1 // indirect
|
github.com/metacubex/sing-vmess v0.1.9-0.20231207122118-72303677451f // indirect
|
||||||
github.com/metacubex/sing-vmess v0.1.9-0.20240719134745-1df6fb20bbf9 // indirect
|
github.com/metacubex/sing-wireguard v0.0.0-20240321042214-224f96122a63 // indirect
|
||||||
github.com/metacubex/sing-wireguard v0.0.0-20240924052438-b0976fc59ea3 // indirect
|
github.com/metacubex/tfo-go v0.0.0-20240228025757-be1269474a66 // indirect
|
||||||
github.com/metacubex/tfo-go v0.0.0-20241006021335-daedaf0ca7aa // indirect
|
|
||||||
github.com/metacubex/utls v1.6.6 // indirect
|
|
||||||
github.com/miekg/dns v1.1.62 // indirect
|
|
||||||
github.com/mroth/weightedrand/v2 v2.1.0 // indirect
|
github.com/mroth/weightedrand/v2 v2.1.0 // indirect
|
||||||
github.com/oasisprotocol/deoxysii v0.0.0-20220228165953-2091330c22b7 // indirect
|
github.com/oasisprotocol/deoxysii v0.0.0-20220228165953-2091330c22b7 // indirect
|
||||||
github.com/onsi/ginkgo/v2 v2.9.5 // indirect
|
github.com/onsi/ginkgo/v2 v2.9.5 // indirect
|
||||||
@@ -76,18 +66,19 @@ require (
|
|||||||
github.com/oschwald/maxminddb-golang v1.12.0 // indirect
|
github.com/oschwald/maxminddb-golang v1.12.0 // indirect
|
||||||
github.com/pierrec/lz4/v4 v4.1.14 // indirect
|
github.com/pierrec/lz4/v4 v4.1.14 // indirect
|
||||||
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
|
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
|
||||||
github.com/puzpuzpuz/xsync/v3 v3.4.0 // indirect
|
github.com/puzpuzpuz/xsync/v3 v3.1.0 // indirect
|
||||||
github.com/quic-go/qpack v0.4.0 // indirect
|
github.com/quic-go/qpack v0.4.0 // indirect
|
||||||
github.com/quic-go/qtls-go1-20 v0.4.1 // indirect
|
github.com/quic-go/qtls-go1-20 v0.4.1 // indirect
|
||||||
github.com/sagernet/fswatch v0.1.1 // indirect
|
github.com/sagernet/bbolt v0.0.0-20231014093535-ea5cb2fe9f0a // indirect
|
||||||
github.com/sagernet/netlink v0.0.0-20240612041022-b9a21c07ac6a // indirect
|
github.com/sagernet/netlink v0.0.0-20220905062125-8043b4a9aa97 // indirect
|
||||||
github.com/sagernet/nftables v0.3.0-beta.4 // indirect
|
github.com/sagernet/sing v0.3.8 // indirect
|
||||||
github.com/sagernet/sing v0.5.0-alpha.13 // indirect
|
|
||||||
github.com/sagernet/sing-mux v0.2.1-0.20240124034317-9bfb33698bb6 // indirect
|
github.com/sagernet/sing-mux v0.2.1-0.20240124034317-9bfb33698bb6 // indirect
|
||||||
github.com/sagernet/sing-shadowtls v0.1.4 // indirect
|
github.com/sagernet/sing-shadowtls v0.1.4 // indirect
|
||||||
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7 // indirect
|
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7 // indirect
|
||||||
github.com/samber/lo v1.47.0
|
github.com/sagernet/utls v1.5.4 // indirect
|
||||||
github.com/shirou/gopsutil/v3 v3.24.5 // indirect
|
github.com/sagernet/wireguard-go v0.0.0-20231209092712-9a439356a62e // indirect
|
||||||
|
github.com/samber/lo v1.39.0 // indirect
|
||||||
|
github.com/shirou/gopsutil/v3 v3.24.3 // indirect
|
||||||
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
||||||
github.com/sina-ghaderi/poly1305 v0.0.0-20220724002748-c5926b03988b // indirect
|
github.com/sina-ghaderi/poly1305 v0.0.0-20220724002748-c5926b03988b // indirect
|
||||||
github.com/sina-ghaderi/rabaead v0.0.0-20220730151906-ab6e06b96e8c // indirect
|
github.com/sina-ghaderi/rabaead v0.0.0-20220730151906-ab6e06b96e8c // indirect
|
||||||
@@ -96,23 +87,21 @@ require (
|
|||||||
github.com/tklauser/go-sysconf v0.3.12 // indirect
|
github.com/tklauser/go-sysconf v0.3.12 // indirect
|
||||||
github.com/tklauser/numcpus v0.6.1 // indirect
|
github.com/tklauser/numcpus v0.6.1 // indirect
|
||||||
github.com/u-root/uio v0.0.0-20230220225925-ffce2a382923 // indirect
|
github.com/u-root/uio v0.0.0-20230220225925-ffce2a382923 // indirect
|
||||||
github.com/vishvananda/netns v0.0.4 // indirect
|
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect
|
||||||
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
|
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
|
||||||
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
||||||
gitlab.com/go-extension/aes-ccm v0.0.0-20230221065045-e58665ef23c7 // indirect
|
github.com/zhangyunhao116/fastrand v0.4.0 // indirect
|
||||||
gitlab.com/yawning/bsaes.git v0.0.0-20190805113838-0a714cd429ec // indirect
|
gitlab.com/yawning/bsaes.git v0.0.0-20190805113838-0a714cd429ec // indirect
|
||||||
go.uber.org/mock v0.4.0 // indirect
|
go.uber.org/mock v0.4.0 // indirect
|
||||||
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba // indirect
|
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba // indirect
|
||||||
golang.org/x/crypto v0.28.0 // indirect
|
golang.org/x/crypto v0.22.0 // indirect
|
||||||
golang.org/x/exp v0.0.0-20240904232852-e7e105dedf7e // indirect
|
golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f // indirect
|
||||||
golang.org/x/mod v0.20.0 // indirect
|
golang.org/x/mod v0.17.0 // indirect
|
||||||
golang.org/x/net v0.30.0 // indirect
|
golang.org/x/sys v0.19.0 // indirect
|
||||||
golang.org/x/sync v0.8.0 // indirect
|
golang.org/x/text v0.14.0 // indirect
|
||||||
golang.org/x/sys v0.26.0 // indirect
|
|
||||||
golang.org/x/text v0.19.0 // indirect
|
|
||||||
golang.org/x/time v0.5.0 // indirect
|
golang.org/x/time v0.5.0 // indirect
|
||||||
golang.org/x/tools v0.24.0 // indirect
|
golang.org/x/tools v0.20.0 // indirect
|
||||||
google.golang.org/protobuf v1.34.2 // indirect
|
google.golang.org/protobuf v1.33.0 // indirect
|
||||||
gopkg.in/yaml.v3 v3.0.1 // indirect; indirect`
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||||
lukechampine.com/blake3 v1.3.0 // indirect
|
lukechampine.com/blake3 v1.2.2 // indirect
|
||||||
)
|
)
|
||||||
|
|||||||
196
core/go.sum
@@ -1,12 +1,14 @@
|
|||||||
github.com/3andne/restls-client-go v0.1.6 h1:tRx/YilqW7iHpgmEL4E1D8dAsuB0tFF3uvncS+B6I08=
|
github.com/3andne/restls-client-go v0.1.6 h1:tRx/YilqW7iHpgmEL4E1D8dAsuB0tFF3uvncS+B6I08=
|
||||||
github.com/3andne/restls-client-go v0.1.6/go.mod h1:iEdTZNt9kzPIxjIGSMScUFSBrUH6bFRNg0BWlP4orEY=
|
github.com/3andne/restls-client-go v0.1.6/go.mod h1:iEdTZNt9kzPIxjIGSMScUFSBrUH6bFRNg0BWlP4orEY=
|
||||||
|
github.com/Kr328/tun2socket v0.0.0-20220414050025-d07c78d06d34 h1:USCTqih5d1bUXUxWNS9ZD5Tx/lb0jXHEtRIIx/F9dMc=
|
||||||
|
github.com/Kr328/tun2socket v0.0.0-20220414050025-d07c78d06d34/go.mod h1:YR9wK13TgI5ww8iKWm91MHiSoHC7Oz0U4beCCmtXqLw=
|
||||||
github.com/RyuaNerin/elliptic2 v1.0.0/go.mod h1:wWB8fWrJI/6EPJkyV/r1Rj0hxUgrusmqSj8JN6yNf/A=
|
github.com/RyuaNerin/elliptic2 v1.0.0/go.mod h1:wWB8fWrJI/6EPJkyV/r1Rj0hxUgrusmqSj8JN6yNf/A=
|
||||||
github.com/RyuaNerin/go-krypto v1.2.4 h1:mXuNdK6M317aPV0llW6Xpjbo4moOlPF7Yxz4tb4b4Go=
|
github.com/RyuaNerin/go-krypto v1.2.4 h1:mXuNdK6M317aPV0llW6Xpjbo4moOlPF7Yxz4tb4b4Go=
|
||||||
github.com/RyuaNerin/go-krypto v1.2.4/go.mod h1:QqCYkoutU3yInyD9INt2PGolVRsc3W4oraQadVGXJ/8=
|
github.com/RyuaNerin/go-krypto v1.2.4/go.mod h1:QqCYkoutU3yInyD9INt2PGolVRsc3W4oraQadVGXJ/8=
|
||||||
github.com/Yawning/aez v0.0.0-20211027044916-e49e68abd344 h1:cDVUiFo+npB0ZASqnw4q90ylaVAbnYyx0JYqK4YcGok=
|
github.com/Yawning/aez v0.0.0-20211027044916-e49e68abd344 h1:cDVUiFo+npB0ZASqnw4q90ylaVAbnYyx0JYqK4YcGok=
|
||||||
github.com/Yawning/aez v0.0.0-20211027044916-e49e68abd344/go.mod h1:9pIqrY6SXNL8vjRQE5Hd/OL5GyK/9MrGUWs87z/eFfk=
|
github.com/Yawning/aez v0.0.0-20211027044916-e49e68abd344/go.mod h1:9pIqrY6SXNL8vjRQE5Hd/OL5GyK/9MrGUWs87z/eFfk=
|
||||||
github.com/ajg/form v1.5.1 h1:t9c7v8JUKu/XxOGBU0yjNpaMloxGEJhUkqFRq0ibGeU=
|
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da h1:KjTM2ks9d14ZYCvmHS9iAKVt9AyzRSqNU1qabPih5BY=
|
||||||
github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY=
|
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da/go.mod h1:eHEWzANqSiWQsof+nXEI9bUVUyV6F53Fp89EuCh2EAA=
|
||||||
github.com/andybalholm/brotli v1.0.6 h1:Yf9fFpf49Zrxb9NlQaluyE92/+X7UVHlhMNJN2sxfOI=
|
github.com/andybalholm/brotli v1.0.6 h1:Yf9fFpf49Zrxb9NlQaluyE92/+X7UVHlhMNJN2sxfOI=
|
||||||
github.com/andybalholm/brotli v1.0.6/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
|
github.com/andybalholm/brotli v1.0.6/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
|
||||||
github.com/bahlo/generic-list-go v0.2.0 h1:5sz/EEAK+ls5wF+NeqDpk5+iNdMDXrh3z3nPnH1Wvgk=
|
github.com/bahlo/generic-list-go v0.2.0 h1:5sz/EEAK+ls5wF+NeqDpk5+iNdMDXrh3z3nPnH1Wvgk=
|
||||||
@@ -17,15 +19,17 @@ github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx2
|
|||||||
github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=
|
github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=
|
||||||
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
|
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
|
||||||
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
|
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
|
||||||
github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU=
|
github.com/cilium/ebpf v0.12.3 h1:8ht6F9MquybnY97at+VDZb3eQQr8ev79RueWeVaEcG4=
|
||||||
github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA=
|
github.com/cilium/ebpf v0.12.3/go.mod h1:TctK1ivibvI3znr66ljgi4hqOT8EYQjz1KWBfb1UVgM=
|
||||||
github.com/coreos/go-iptables v0.8.0 h1:MPc2P89IhuVpLI7ETL/2tx3XZ61VeICZjYqDEgNsPRc=
|
github.com/cloudflare/circl v1.3.6 h1:/xbKIqSHbZXHwkhbrhrt2YOHIwYJlXH94E3tI/gDlUg=
|
||||||
github.com/coreos/go-iptables v0.8.0/go.mod h1:Qe8Bv2Xik5FyTXwgIbLAnv2sWSBmvWdFETJConOQ//Q=
|
github.com/cloudflare/circl v1.3.6/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA=
|
||||||
|
github.com/coreos/go-iptables v0.7.0 h1:XWM3V+MPRr5/q51NuWSgU0fqMad64Zyxs8ZUoMsamr8=
|
||||||
|
github.com/coreos/go-iptables v0.7.0/go.mod h1:Qe8Bv2Xik5FyTXwgIbLAnv2sWSBmvWdFETJConOQ//Q=
|
||||||
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/dlclark/regexp2 v1.11.4 h1:rPYF9/LECdNymJufQKmri9gV604RvvABwgOA8un7yAo=
|
github.com/dlclark/regexp2 v1.11.0 h1:G/nrcoOa7ZXlpoa/91N3X7mM3r8eIlMBBJZvsz/mxKI=
|
||||||
github.com/dlclark/regexp2 v1.11.4/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8=
|
github.com/dlclark/regexp2 v1.11.0/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8=
|
||||||
github.com/ericlagergren/aegis v0.0.0-20230312195928-b4ce538b56f9 h1:/5RkVc9Rc81XmMyVqawCiDyrBHZbLAZgTTCqou4mwj8=
|
github.com/ericlagergren/aegis v0.0.0-20230312195928-b4ce538b56f9 h1:/5RkVc9Rc81XmMyVqawCiDyrBHZbLAZgTTCqou4mwj8=
|
||||||
github.com/ericlagergren/aegis v0.0.0-20230312195928-b4ce538b56f9/go.mod h1:hkIFzoiIPZYxdFOOLyDho59b7SrDfo+w3h+yWdlg45I=
|
github.com/ericlagergren/aegis v0.0.0-20230312195928-b4ce538b56f9/go.mod h1:hkIFzoiIPZYxdFOOLyDho59b7SrDfo+w3h+yWdlg45I=
|
||||||
github.com/ericlagergren/polyval v0.0.0-20220411101811-e25bc10ba391 h1:8j2RH289RJplhA6WfdaPqzg1MjH2K8wX5e0uhAxrw2g=
|
github.com/ericlagergren/polyval v0.0.0-20220411101811-e25bc10ba391 h1:8j2RH289RJplhA6WfdaPqzg1MjH2K8wX5e0uhAxrw2g=
|
||||||
@@ -36,14 +40,12 @@ github.com/ericlagergren/siv v0.0.0-20220507050439-0b757b3aa5f1 h1:tlDMEdcPRQKBE
|
|||||||
github.com/ericlagergren/siv v0.0.0-20220507050439-0b757b3aa5f1/go.mod h1:4RfsapbGx2j/vU5xC/5/9qB3kn9Awp1YDiEnN43QrJ4=
|
github.com/ericlagergren/siv v0.0.0-20220507050439-0b757b3aa5f1/go.mod h1:4RfsapbGx2j/vU5xC/5/9qB3kn9Awp1YDiEnN43QrJ4=
|
||||||
github.com/ericlagergren/subtle v0.0.0-20220507045147-890d697da010 h1:fuGucgPk5dN6wzfnxl3D0D3rVLw4v2SbBT9jb4VnxzA=
|
github.com/ericlagergren/subtle v0.0.0-20220507045147-890d697da010 h1:fuGucgPk5dN6wzfnxl3D0D3rVLw4v2SbBT9jb4VnxzA=
|
||||||
github.com/ericlagergren/subtle v0.0.0-20220507045147-890d697da010/go.mod h1:JtBcj7sBuTTRupn7c2bFspMDIObMJsVK8TeUvpShPok=
|
github.com/ericlagergren/subtle v0.0.0-20220507045147-890d697da010/go.mod h1:JtBcj7sBuTTRupn7c2bFspMDIObMJsVK8TeUvpShPok=
|
||||||
|
github.com/frankban/quicktest v1.14.5 h1:dfYrrRyLtiqT9GyKXgdh+k4inNeTvmGbuSgZ3lx3GhA=
|
||||||
|
github.com/frankban/quicktest v1.14.5/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0=
|
||||||
github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA=
|
github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA=
|
||||||
github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM=
|
github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM=
|
||||||
github.com/gaukas/godicttls v0.0.4 h1:NlRaXb3J6hAnTmWdsEKb9bcSBD6BvcIjdGdeb0zfXbk=
|
github.com/gaukas/godicttls v0.0.4 h1:NlRaXb3J6hAnTmWdsEKb9bcSBD6BvcIjdGdeb0zfXbk=
|
||||||
github.com/gaukas/godicttls v0.0.4/go.mod h1:l6EenT4TLWgTdwslVb4sEMOCf7Bv0JAK67deKr9/NCI=
|
github.com/gaukas/godicttls v0.0.4/go.mod h1:l6EenT4TLWgTdwslVb4sEMOCf7Bv0JAK67deKr9/NCI=
|
||||||
github.com/go-chi/chi/v5 v5.1.0 h1:acVI1TYaD+hhedDJ3r54HyA6sExp3HfXq7QWEEY/xMw=
|
|
||||||
github.com/go-chi/chi/v5 v5.1.0/go.mod h1:DslCQbL2OYiznFReuXYUmQ2hGd1aDpCnlMNITLSKoi8=
|
|
||||||
github.com/go-chi/render v1.0.3 h1:AsXqd2a1/INaIfUSKq3G5uA8weYx20FOsM7uSoCyyt4=
|
|
||||||
github.com/go-chi/render v1.0.3/go.mod h1:/gr3hVkmYR0YlEy3LxCuVRFzEu9Ruok+gFqbIofjao0=
|
|
||||||
github.com/go-logr/logr v1.2.4 h1:g01GSCwiDw2xSZfjJ2/T9M+S6pFdcNtFYsp+Y43HYDQ=
|
github.com/go-logr/logr v1.2.4 h1:g01GSCwiDw2xSZfjJ2/T9M+S6pFdcNtFYsp+Y43HYDQ=
|
||||||
github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
|
github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
|
||||||
github.com/go-ole/go-ole v1.2.6/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0=
|
github.com/go-ole/go-ole v1.2.6/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0=
|
||||||
@@ -55,16 +57,17 @@ github.com/gobwas/httphead v0.1.0 h1:exrUm0f4YX0L7EBwZHuCF4GDp8aJfVeBrlLQrs6NqWU
|
|||||||
github.com/gobwas/httphead v0.1.0/go.mod h1:O/RXo79gxV8G+RqlR/otEwx4Q36zl9rqC5u12GKvMCM=
|
github.com/gobwas/httphead v0.1.0/go.mod h1:O/RXo79gxV8G+RqlR/otEwx4Q36zl9rqC5u12GKvMCM=
|
||||||
github.com/gobwas/pool v0.2.1 h1:xfeeEhW7pwmX8nuLVlqbzVc7udMDrwetjEv+TZIz1og=
|
github.com/gobwas/pool v0.2.1 h1:xfeeEhW7pwmX8nuLVlqbzVc7udMDrwetjEv+TZIz1og=
|
||||||
github.com/gobwas/pool v0.2.1/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw=
|
github.com/gobwas/pool v0.2.1/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw=
|
||||||
github.com/gobwas/ws v1.4.0 h1:CTaoG1tojrh4ucGPcoJFiAQUAsEWekEWvLy7GsVNqGs=
|
github.com/gobwas/ws v1.3.2 h1:zlnbNHxumkRvfPWgfXu8RBwyNR1x8wh9cf5PTOCqs9Q=
|
||||||
github.com/gobwas/ws v1.4.0/go.mod h1:G3gNqMNtPppf5XUz7O4shetPpcZ1VJ7zt18dlUeakrc=
|
github.com/gobwas/ws v1.3.2/go.mod h1:hRKAFb8wOxFROYNsT1bqfWnhX+b5MFeJM9r2ZSwg/KY=
|
||||||
github.com/gofrs/uuid/v5 v5.3.0 h1:m0mUMr+oVYUdxpMLgSYCZiXe7PuVPnI94+OMeVBNedk=
|
github.com/gofrs/uuid/v5 v5.1.0 h1:S5rqVKIigghZTCBKPCw0Y+bXkn26K3TB5mvQq2Ix8dk=
|
||||||
github.com/gofrs/uuid/v5 v5.3.0/go.mod h1:CDOjlDMVAtN56jqyRUZh58JT31Tiw7/oQyEXZV+9bD8=
|
github.com/gofrs/uuid/v5 v5.1.0/go.mod h1:CDOjlDMVAtN56jqyRUZh58JT31Tiw7/oQyEXZV+9bD8=
|
||||||
github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
||||||
github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
|
github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
|
||||||
github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
|
github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
|
||||||
github.com/google/btree v1.1.2 h1:xf4v41cLI2Z6FxbKm+8Bu+m8ifhj15JuZ9sa0jZCMUU=
|
github.com/google/btree v1.1.2 h1:xf4v41cLI2Z6FxbKm+8Bu+m8ifhj15JuZ9sa0jZCMUU=
|
||||||
github.com/google/btree v1.1.2/go.mod h1:qOPhT0dTNdNzV6Z/lhRX0YXUafgPLFUh+gZMl761Gm4=
|
github.com/google/btree v1.1.2/go.mod h1:qOPhT0dTNdNzV6Z/lhRX0YXUafgPLFUh+gZMl761Gm4=
|
||||||
github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
||||||
|
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
|
||||||
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
|
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
|
||||||
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
|
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
|
||||||
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 h1:yAJXTCF9TqKcTiHJAE8dj7HMvPfh66eeA2JYW7eFpSE=
|
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 h1:yAJXTCF9TqKcTiHJAE8dj7HMvPfh66eeA2JYW7eFpSE=
|
||||||
@@ -74,16 +77,20 @@ github.com/google/tink/go v1.6.1/go.mod h1:IGW53kTgag+st5yPhKKwJ6u2l+SSp5/v9XF7s
|
|||||||
github.com/hashicorp/yamux v0.1.1 h1:yrQxtgseBDrq9Y652vSRDvsKCJKOUD+GzTS4Y0Y8pvE=
|
github.com/hashicorp/yamux v0.1.1 h1:yrQxtgseBDrq9Y652vSRDvsKCJKOUD+GzTS4Y0Y8pvE=
|
||||||
github.com/hashicorp/yamux v0.1.1/go.mod h1:CtWFDAQgb7dxtzFs4tWbplKIe2jSi3+5vKbgIO0SLnQ=
|
github.com/hashicorp/yamux v0.1.1/go.mod h1:CtWFDAQgb7dxtzFs4tWbplKIe2jSi3+5vKbgIO0SLnQ=
|
||||||
github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
|
github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
|
||||||
github.com/insomniacslk/dhcp v0.0.0-20240829085014-a3a4c1f04475 h1:hxST5pwMBEOWmxpkX20w9oZG+hXdhKmAIPQ3NGGAxas=
|
github.com/insomniacslk/dhcp v0.0.0-20240419123447-f1cffa2c0c49 h1:/OuvSMGT9+xnyZ+7MZQ1zdngaCCAdPoSw8B/uurZ7pg=
|
||||||
github.com/insomniacslk/dhcp v0.0.0-20240829085014-a3a4c1f04475/go.mod h1:KclMyHxX06VrVr0DJmeFSUb1ankt7xTfoOA35pCkoic=
|
github.com/insomniacslk/dhcp v0.0.0-20240419123447-f1cffa2c0c49/go.mod h1:KclMyHxX06VrVr0DJmeFSUb1ankt7xTfoOA35pCkoic=
|
||||||
github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
|
github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
|
||||||
github.com/josharian/native v1.0.1-0.20221213033349-c1e37c09b531/go.mod h1:7X/raswPFr05uY3HiLlYeyQntB6OO7E/d2Cu7qoaN2w=
|
github.com/josharian/native v1.0.1-0.20221213033349-c1e37c09b531/go.mod h1:7X/raswPFr05uY3HiLlYeyQntB6OO7E/d2Cu7qoaN2w=
|
||||||
github.com/josharian/native v1.1.0 h1:uuaP0hAbW7Y4l0ZRQ6C9zfb7Mg1mbFKry/xzDAfmtLA=
|
github.com/josharian/native v1.1.0 h1:uuaP0hAbW7Y4l0ZRQ6C9zfb7Mg1mbFKry/xzDAfmtLA=
|
||||||
github.com/josharian/native v1.1.0/go.mod h1:7X/raswPFr05uY3HiLlYeyQntB6OO7E/d2Cu7qoaN2w=
|
github.com/josharian/native v1.1.0/go.mod h1:7X/raswPFr05uY3HiLlYeyQntB6OO7E/d2Cu7qoaN2w=
|
||||||
github.com/klauspost/compress v1.17.9 h1:6KIumPrER1LHsvBVuDa0r5xaG0Es51mhhB9BQB2qeMA=
|
github.com/klauspost/compress v1.17.4 h1:Ej5ixsIri7BrIjBkRZLTo6ghwrEtHFk7ijlczPW4fZ4=
|
||||||
github.com/klauspost/compress v1.17.9/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw=
|
github.com/klauspost/compress v1.17.4/go.mod h1:/dCuZOvVtNoHsyb+cuJD3itjs3NbnF6KH9zAO4BDxPM=
|
||||||
github.com/klauspost/cpuid/v2 v2.2.8 h1:+StwCXwm9PdpiEkPyzBXIy+M9KUb4ODm0Zarf1kS5BM=
|
github.com/klauspost/cpuid/v2 v2.2.7 h1:ZWSB3igEs+d0qvnxR/ZBzXVmxkgt8DdzP6m9pfuVLDM=
|
||||||
github.com/klauspost/cpuid/v2 v2.2.8/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws=
|
github.com/klauspost/cpuid/v2 v2.2.7/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws=
|
||||||
|
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
|
||||||
|
github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
|
||||||
|
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
|
||||||
|
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
|
||||||
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 h1:6E+4a0GO5zZEnZ81pIr0yLvtUWk2if982qA3F3QD6H4=
|
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 h1:6E+4a0GO5zZEnZ81pIr0yLvtUWk2if982qA3F3QD6H4=
|
||||||
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0/go.mod h1:zJYVVT2jmtg6P3p1VtQj7WsuWi/y4VnjVBn7F8KPB3I=
|
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0/go.mod h1:zJYVVT2jmtg6P3p1VtQj7WsuWi/y4VnjVBn7F8KPB3I=
|
||||||
github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40 h1:EnfXoSqDfSNJv0VBNqY/88RNnhSGYkrHaO0mmFGbVsc=
|
github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40 h1:EnfXoSqDfSNJv0VBNqY/88RNnhSGYkrHaO0mmFGbVsc=
|
||||||
@@ -94,42 +101,28 @@ github.com/mdlayher/netlink v1.7.2 h1:/UtM3ofJap7Vl4QWCPDGXY8d3GIY2UGSDbK+QWmY8/
|
|||||||
github.com/mdlayher/netlink v1.7.2/go.mod h1:xraEF7uJbxLhc5fpHL4cPe221LI2bdttWlU+ZGLfQSw=
|
github.com/mdlayher/netlink v1.7.2/go.mod h1:xraEF7uJbxLhc5fpHL4cPe221LI2bdttWlU+ZGLfQSw=
|
||||||
github.com/mdlayher/socket v0.4.1 h1:eM9y2/jlbs1M615oshPQOHZzj6R6wMT7bX5NPiQvn2U=
|
github.com/mdlayher/socket v0.4.1 h1:eM9y2/jlbs1M615oshPQOHZzj6R6wMT7bX5NPiQvn2U=
|
||||||
github.com/mdlayher/socket v0.4.1/go.mod h1:cAqeGjoufqdxWkD7DkpyS+wcefOtmu5OQ8KuoJGIReA=
|
github.com/mdlayher/socket v0.4.1/go.mod h1:cAqeGjoufqdxWkD7DkpyS+wcefOtmu5OQ8KuoJGIReA=
|
||||||
github.com/metacubex/amneziawg-go v0.0.0-20240922133038-fdf3a4d5a4ab h1:Chbw+/31UC14YFNr78pESt5Vowlc62zziw05JCUqoL4=
|
|
||||||
github.com/metacubex/amneziawg-go v0.0.0-20240922133038-fdf3a4d5a4ab/go.mod h1:xVKK8jC5Sd3hfh7WjmCq+HorehIbrBijaUWmcuKjPcI=
|
|
||||||
github.com/metacubex/bbolt v0.0.0-20240822011022-aed6d4850399 h1:oBowHVKZycNtAFbZ6avaCSZJYeme2Nrj+4RpV2cNJig=
|
|
||||||
github.com/metacubex/bbolt v0.0.0-20240822011022-aed6d4850399/go.mod h1:4xcieuIK+M4bGQmQYZVqEaIYqjS1ahO4kXG7EmDgEro=
|
|
||||||
github.com/metacubex/chacha v0.1.0 h1:tg9RSJ18NvL38cCWNyYH1eiG6qDCyyXIaTLQthon0sc=
|
|
||||||
github.com/metacubex/chacha v0.1.0/go.mod h1:Djn9bPZxLTXbJFSeyo0/qzEzQI+gUSSzttuzZM75GH8=
|
|
||||||
github.com/metacubex/gopacket v1.1.20-0.20230608035415-7e2f98a3e759 h1:cjd4biTvOzK9ubNCCkQ+ldc4YSH/rILn53l/xGBFHHI=
|
github.com/metacubex/gopacket v1.1.20-0.20230608035415-7e2f98a3e759 h1:cjd4biTvOzK9ubNCCkQ+ldc4YSH/rILn53l/xGBFHHI=
|
||||||
github.com/metacubex/gopacket v1.1.20-0.20230608035415-7e2f98a3e759/go.mod h1:UHOv2xu+RIgLwpXca7TLrXleEd4oR3sPatW6IF8wU88=
|
github.com/metacubex/gopacket v1.1.20-0.20230608035415-7e2f98a3e759/go.mod h1:UHOv2xu+RIgLwpXca7TLrXleEd4oR3sPatW6IF8wU88=
|
||||||
github.com/metacubex/gvisor v0.0.0-20240320004321-933faba989ec h1:HxreOiFTUrJXJautEo8rnE1uKTVGY8wtZepY1Tii/Nc=
|
github.com/metacubex/gvisor v0.0.0-20240320004321-933faba989ec h1:HxreOiFTUrJXJautEo8rnE1uKTVGY8wtZepY1Tii/Nc=
|
||||||
github.com/metacubex/gvisor v0.0.0-20240320004321-933faba989ec/go.mod h1:8BVmQ+3cxjqzWElafm24rb2Ae4jRI6vAXNXWqWjfrXw=
|
github.com/metacubex/gvisor v0.0.0-20240320004321-933faba989ec/go.mod h1:8BVmQ+3cxjqzWElafm24rb2Ae4jRI6vAXNXWqWjfrXw=
|
||||||
github.com/metacubex/quic-go v0.47.1-0.20240909010619-6b38f24bfcc4 h1:CgdUBRxmNlxEGkp35HwvgQ10jwOOUJKWdOxpi8yWi8o=
|
github.com/metacubex/quic-go v0.42.1-0.20240418003344-f006b5735d98 h1:oMLlJV4a9AylNo8ZLBNUiqZ02Vme6GLLHjuWJz8amSk=
|
||||||
github.com/metacubex/quic-go v0.47.1-0.20240909010619-6b38f24bfcc4/go.mod h1:Y7yRGqFE6UQL/3aKPYmiYdjfVkeujJaStP4+jiZMcN8=
|
github.com/metacubex/quic-go v0.42.1-0.20240418003344-f006b5735d98/go.mod h1:iGx3Y1zynls/FjFgykLSqDcM81U0IKePRTXEz5g3iiQ=
|
||||||
github.com/metacubex/randv2 v0.2.0 h1:uP38uBvV2SxYfLj53kuvAjbND4RUDfFJjwr4UigMiLs=
|
github.com/metacubex/sing-quic v0.0.0-20240418004036-814c531c378d h1:RAe0ND8J5SOPGI623oEXfaHKaaUrrzHx+U1DN9Awcco=
|
||||||
github.com/metacubex/randv2 v0.2.0/go.mod h1:kFi2SzrQ5WuneuoLLCMkABtiBu6VRrMrWFqSPyj2cxY=
|
github.com/metacubex/sing-quic v0.0.0-20240418004036-814c531c378d/go.mod h1:WyY0zYxv+o+18R/Ece+QFontlgXoobKbNqbtYn2zjz8=
|
||||||
github.com/metacubex/sing v0.0.0-20240724044459-6f3cf5896297 h1:YG/JkwGPbca5rUtEMHIu8ZuqzR7BSVm1iqY8hNoMeMA=
|
github.com/metacubex/sing-shadowsocks v0.2.6 h1:6oEB3QcsFYnNiFeoevcXrCwJ3sAablwVSgtE9R3QeFQ=
|
||||||
github.com/metacubex/sing v0.0.0-20240724044459-6f3cf5896297/go.mod h1:ARkL0gM13/Iv5VCZmci/NuoOlePoIsW0m7BWfln/Hak=
|
github.com/metacubex/sing-shadowsocks v0.2.6/go.mod h1:zIkMeSnb8Mbf4hdqhw0pjzkn1d99YJ3JQm/VBg5WMTg=
|
||||||
github.com/metacubex/sing-quic v0.0.0-20240827003841-cd97758ed8b4 h1:HobpULaPK6OoxrHMmgcwLkwwIduXVmwdcznwUfH1GQM=
|
github.com/metacubex/sing-shadowsocks2 v0.2.0 h1:hqwT/AfI5d5UdPefIzR6onGHJfDXs5zgOM5QSgaM/9A=
|
||||||
github.com/metacubex/sing-quic v0.0.0-20240827003841-cd97758ed8b4/go.mod h1:g7Mxj7b7zm7YVqD975mk/hSmrb0A0G4bVvIMr2MMzn8=
|
github.com/metacubex/sing-shadowsocks2 v0.2.0/go.mod h1:LCKF6j1P94zN8ZS+LXRK1gmYTVGB3squivBSXAFnOg8=
|
||||||
github.com/metacubex/sing-shadowsocks v0.2.8 h1:wIhlaigswzjPw4hej75sEvWte3QR0+AJRafgwBHO5B4=
|
github.com/metacubex/sing-tun v0.2.6 h1:frc58BqnIClqcC9KcYBfVAn5bgO6WW1ANKvZW3/HYAQ=
|
||||||
github.com/metacubex/sing-shadowsocks v0.2.8/go.mod h1:X3x88XtJpBxG0W0/ECOJL6Ib0SJ3xdniAkU/6/RMWU0=
|
github.com/metacubex/sing-tun v0.2.6/go.mod h1:4VsMwZH1IlgPGFK1ZbBomZ/B2MYkTgs2+gnBAr5GOIo=
|
||||||
github.com/metacubex/sing-shadowsocks2 v0.2.2 h1:eaf42uVx4Lr21S6MDYs0ZdTvGA0GEhDpb9no4+gdXPo=
|
github.com/metacubex/sing-vmess v0.1.9-0.20231207122118-72303677451f h1:QjXrHKbTMBip/C+R79bvbfr42xH1gZl3uFb0RELdZiQ=
|
||||||
github.com/metacubex/sing-shadowsocks2 v0.2.2/go.mod h1:BhOug03a/RbI7y6hp6q+6ITM1dXjnLTmeWBHSTwvv2Q=
|
github.com/metacubex/sing-vmess v0.1.9-0.20231207122118-72303677451f/go.mod h1:olVkD4FChQ5gKMHG4ZzuD7+fMkJY1G8vwOKpRehjrmY=
|
||||||
github.com/metacubex/sing-tun v0.2.7-0.20240729131039-ed03f557dee1 h1:ypfofGDZbP8p3Y4P/m74JYu7sQViesi3c8nbmT6cS0Y=
|
github.com/metacubex/sing-wireguard v0.0.0-20240321042214-224f96122a63 h1:AGyIB55UfQm/0ZH0HtQO9u3l//yjtHUpjeRjjPGfGRI=
|
||||||
github.com/metacubex/sing-tun v0.2.7-0.20240729131039-ed03f557dee1/go.mod h1:olbEx9yVcaw5tHTNlRamRoxmMKcvDvcVS1YLnQGzvWE=
|
github.com/metacubex/sing-wireguard v0.0.0-20240321042214-224f96122a63/go.mod h1:uY+BYb0UEknLrqvbGcwi9i++KgrKxsurysgI6G1Pveo=
|
||||||
github.com/metacubex/sing-vmess v0.1.9-0.20240719134745-1df6fb20bbf9 h1:OAXiCosqY8xKDp3pqTW3qbrCprZ1l6WkrXSFSCwyY4I=
|
github.com/metacubex/tfo-go v0.0.0-20240228025757-be1269474a66 h1:as/aO/fM8nv4W4pOr9EETP6kV/Oaujk3fUNyQSJK61c=
|
||||||
github.com/metacubex/sing-vmess v0.1.9-0.20240719134745-1df6fb20bbf9/go.mod h1:olVkD4FChQ5gKMHG4ZzuD7+fMkJY1G8vwOKpRehjrmY=
|
github.com/metacubex/tfo-go v0.0.0-20240228025757-be1269474a66/go.mod h1:c7bVFM9f5+VzeZ/6Kg77T/jrg1Xp8QpqlSHvG/aXVts=
|
||||||
github.com/metacubex/sing-wireguard v0.0.0-20240924052438-b0976fc59ea3 h1:xg71VmzLS6ByAzi/57phwDvjE+dLLs+ozH00k4DnOns=
|
github.com/miekg/dns v1.1.59 h1:C9EXc/UToRwKLhK5wKU/I4QVsBUc8kE6MkHBkeypWZs=
|
||||||
github.com/metacubex/sing-wireguard v0.0.0-20240924052438-b0976fc59ea3/go.mod h1:6nitcmzPDL3MXnLdhu6Hm126Zk4S1fBbX3P7jxUxSFw=
|
github.com/miekg/dns v1.1.59/go.mod h1:nZpewl5p6IvctfgrckopVx2OlSEHPRO/U4SYkRklrEk=
|
||||||
github.com/metacubex/tfo-go v0.0.0-20241006021335-daedaf0ca7aa h1:9mcjV+RGZVC3reJBNDjjNPyS8PmFG97zq56X7WNaFO4=
|
|
||||||
github.com/metacubex/tfo-go v0.0.0-20241006021335-daedaf0ca7aa/go.mod h1:4tLB5c8U0CxpkFM+AJJB77jEaVDbLH5XQvy42vAGsWw=
|
|
||||||
github.com/metacubex/utls v1.6.6 h1:3D12YKHTf2Z41UPhQU2dWerNWJ5TVQD9gKoQ+H+iLC8=
|
|
||||||
github.com/metacubex/utls v1.6.6/go.mod h1:+WLFUnXjcpdxXCnyX25nggw8C6YonZ8zOK2Zm/oRvdo=
|
|
||||||
github.com/metacubex/wireguard-go v0.0.0-20240922131502-c182e7471181 h1:hJLQviGySBuaynlCwf/oYgIxbVbGRUIKZCxdya9YrbQ=
|
|
||||||
github.com/metacubex/wireguard-go v0.0.0-20240922131502-c182e7471181/go.mod h1:phewKljNYiTVT31Gcif8RiCKnTUOgVWFJjccqYM8s+Y=
|
|
||||||
github.com/miekg/dns v1.1.62 h1:cN8OuEF1/x5Rq6Np+h1epln8OiyPWV+lROx9LxcGgIQ=
|
|
||||||
github.com/miekg/dns v1.1.62/go.mod h1:mvDlcItzm+br7MToIKqkglaGhlFMHJ9DTNNWONWXbNQ=
|
|
||||||
github.com/mroth/weightedrand/v2 v2.1.0 h1:o1ascnB1CIVzsqlfArQQjeMy1U0NcIbBO5rfd5E/OeU=
|
github.com/mroth/weightedrand/v2 v2.1.0 h1:o1ascnB1CIVzsqlfArQQjeMy1U0NcIbBO5rfd5E/OeU=
|
||||||
github.com/mroth/weightedrand/v2 v2.1.0/go.mod h1:f2faGsfOGOwc1p94wzHKKZyTpcJUW7OJ/9U4yfiNAOU=
|
github.com/mroth/weightedrand/v2 v2.1.0/go.mod h1:f2faGsfOGOwc1p94wzHKKZyTpcJUW7OJ/9U4yfiNAOU=
|
||||||
github.com/oasisprotocol/deoxysii v0.0.0-20220228165953-2091330c22b7 h1:1102pQc2SEPp5+xrS26wEaeb26sZy6k9/ZXlZN+eXE4=
|
github.com/oasisprotocol/deoxysii v0.0.0-20220228165953-2091330c22b7 h1:1102pQc2SEPp5+xrS26wEaeb26sZy6k9/ZXlZN+eXE4=
|
||||||
@@ -152,30 +145,35 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
|
|||||||
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/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF4JjgDlrVEn3C11VoGHZN7m8qihwgMEtzYw=
|
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF4JjgDlrVEn3C11VoGHZN7m8qihwgMEtzYw=
|
||||||
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE=
|
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE=
|
||||||
github.com/puzpuzpuz/xsync/v3 v3.4.0 h1:DuVBAdXuGFHv8adVXjWWZ63pJq+NRXOWVXlKDBZ+mJ4=
|
github.com/puzpuzpuz/xsync/v3 v3.1.0 h1:EewKT7/LNac5SLiEblJeUu8z5eERHrmRLnMQL2d7qX4=
|
||||||
github.com/puzpuzpuz/xsync/v3 v3.4.0/go.mod h1:VjzYrABPabuM4KyBh1Ftq6u8nhwY5tBPKP9jpmh0nnA=
|
github.com/puzpuzpuz/xsync/v3 v3.1.0/go.mod h1:VjzYrABPabuM4KyBh1Ftq6u8nhwY5tBPKP9jpmh0nnA=
|
||||||
github.com/quic-go/qpack v0.4.0 h1:Cr9BXA1sQS2SmDUWjSofMPNKmvF6IiIfDRmgU0w1ZCo=
|
github.com/quic-go/qpack v0.4.0 h1:Cr9BXA1sQS2SmDUWjSofMPNKmvF6IiIfDRmgU0w1ZCo=
|
||||||
github.com/quic-go/qpack v0.4.0/go.mod h1:UZVnYIfi5GRk+zI9UMaCPsmZ2xKJP7XBUvVyT1Knj9A=
|
github.com/quic-go/qpack v0.4.0/go.mod h1:UZVnYIfi5GRk+zI9UMaCPsmZ2xKJP7XBUvVyT1Knj9A=
|
||||||
github.com/quic-go/qtls-go1-20 v0.4.1 h1:D33340mCNDAIKBqXuAvexTNMUByrYmFYVfKfDN5nfFs=
|
github.com/quic-go/qtls-go1-20 v0.4.1 h1:D33340mCNDAIKBqXuAvexTNMUByrYmFYVfKfDN5nfFs=
|
||||||
github.com/quic-go/qtls-go1-20 v0.4.1/go.mod h1:X9Nh97ZL80Z+bX/gUXMbipO6OxdiDi58b/fMC9mAL+k=
|
github.com/quic-go/qtls-go1-20 v0.4.1/go.mod h1:X9Nh97ZL80Z+bX/gUXMbipO6OxdiDi58b/fMC9mAL+k=
|
||||||
github.com/sagernet/cors v1.2.1 h1:Cv5Z8y9YSD6Gm+qSpNrL3LO4lD3eQVvbFYJSG7JCMHQ=
|
github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8=
|
||||||
github.com/sagernet/cors v1.2.1/go.mod h1:O64VyOjjhrkLmQIjF4KGRrJO/5dVXFdpEmCW/eISRAI=
|
github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs=
|
||||||
github.com/sagernet/fswatch v0.1.1 h1:YqID+93B7VRfqIH3PArW/XpJv5H4OLEVWDfProGoRQs=
|
github.com/sagernet/bbolt v0.0.0-20231014093535-ea5cb2fe9f0a h1:+NkI2670SQpQWvkkD2QgdTuzQG263YZ+2emfpeyGqW0=
|
||||||
github.com/sagernet/fswatch v0.1.1/go.mod h1:nz85laH0mkQqJfaOrqPpkwtU1znMFNVTpT/5oRsVz/o=
|
github.com/sagernet/bbolt v0.0.0-20231014093535-ea5cb2fe9f0a/go.mod h1:63s7jpZqcDAIpj8oI/1v4Izok+npJOHACFCU6+huCkM=
|
||||||
github.com/sagernet/netlink v0.0.0-20240612041022-b9a21c07ac6a h1:ObwtHN2VpqE0ZNjr6sGeT00J8uU7JF4cNUdb44/Duis=
|
github.com/sagernet/netlink v0.0.0-20220905062125-8043b4a9aa97 h1:iL5gZI3uFp0X6EslacyapiRz7LLSJyr4RajF/BhMVyE=
|
||||||
github.com/sagernet/netlink v0.0.0-20240612041022-b9a21c07ac6a/go.mod h1:xLnfdiJbSp8rNqYEdIW/6eDO4mVoogml14Bh2hSiFpM=
|
github.com/sagernet/netlink v0.0.0-20220905062125-8043b4a9aa97/go.mod h1:xLnfdiJbSp8rNqYEdIW/6eDO4mVoogml14Bh2hSiFpM=
|
||||||
github.com/sagernet/nftables v0.3.0-beta.4 h1:kbULlAwAC3jvdGAC1P5Fa3GSxVwQJibNenDW2zaXr8I=
|
github.com/sagernet/sing v0.2.18/go.mod h1:OL6k2F0vHmEzXz2KW19qQzu172FDgSbUSODylighuVo=
|
||||||
github.com/sagernet/nftables v0.3.0-beta.4/go.mod h1:OQXAjvjNGGFxaTgVCSTRIhYB5/llyVDeapVoENYBDS8=
|
github.com/sagernet/sing v0.3.8 h1:gm4JKalPhydMYX2zFOTnnd4TXtM/16WFRqSjMepYQQk=
|
||||||
|
github.com/sagernet/sing v0.3.8/go.mod h1:+60H3Cm91RnL9dpVGWDPHt0zTQImO9Vfqt9a4rSambI=
|
||||||
github.com/sagernet/sing-mux v0.2.1-0.20240124034317-9bfb33698bb6 h1:5bCAkvDDzSMITiHFjolBwpdqYsvycdTu71FsMEFXQ14=
|
github.com/sagernet/sing-mux v0.2.1-0.20240124034317-9bfb33698bb6 h1:5bCAkvDDzSMITiHFjolBwpdqYsvycdTu71FsMEFXQ14=
|
||||||
github.com/sagernet/sing-mux v0.2.1-0.20240124034317-9bfb33698bb6/go.mod h1:khzr9AOPocLa+g53dBplwNDz4gdsyx/YM3swtAhlkHQ=
|
github.com/sagernet/sing-mux v0.2.1-0.20240124034317-9bfb33698bb6/go.mod h1:khzr9AOPocLa+g53dBplwNDz4gdsyx/YM3swtAhlkHQ=
|
||||||
github.com/sagernet/sing-shadowtls v0.1.4 h1:aTgBSJEgnumzFenPvc+kbD9/W0PywzWevnVpEx6Tw3k=
|
github.com/sagernet/sing-shadowtls v0.1.4 h1:aTgBSJEgnumzFenPvc+kbD9/W0PywzWevnVpEx6Tw3k=
|
||||||
github.com/sagernet/sing-shadowtls v0.1.4/go.mod h1:F8NBgsY5YN2beQavdgdm1DPlhaKQlaL6lpDdcBglGK4=
|
github.com/sagernet/sing-shadowtls v0.1.4/go.mod h1:F8NBgsY5YN2beQavdgdm1DPlhaKQlaL6lpDdcBglGK4=
|
||||||
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7 h1:DImB4lELfQhplLTxeq2z31Fpv8CQqqrUwTbrIRumZqQ=
|
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7 h1:DImB4lELfQhplLTxeq2z31Fpv8CQqqrUwTbrIRumZqQ=
|
||||||
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7/go.mod h1:FP9X2xjT/Az1EsG/orYYoC+5MojWnuI7hrffz8fGwwo=
|
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7/go.mod h1:FP9X2xjT/Az1EsG/orYYoC+5MojWnuI7hrffz8fGwwo=
|
||||||
github.com/samber/lo v1.47.0 h1:z7RynLwP5nbyRscyvcD043DWYoOcYRv3mV8lBeqOCLc=
|
github.com/sagernet/utls v1.5.4 h1:KmsEGbB2dKUtCNC+44NwAdNAqnqQ6GA4pTO0Yik56co=
|
||||||
github.com/samber/lo v1.47.0/go.mod h1:RmDH9Ct32Qy3gduHQuKJ3gW1fMHAnE/fAzQuf6He5cU=
|
github.com/sagernet/utls v1.5.4/go.mod h1:CTGxPWExIloRipK3XFpYv0OVyhO8kk3XCGW/ieyTh1s=
|
||||||
github.com/shirou/gopsutil/v3 v3.24.5 h1:i0t8kL+kQTvpAYToeuiVk3TgDeKOFioZO3Ztz/iZ9pI=
|
github.com/sagernet/wireguard-go v0.0.0-20231209092712-9a439356a62e h1:iGH0RMv2FzELOFNFQtvsxH7NPmlo7X5JizEK51UCojo=
|
||||||
github.com/shirou/gopsutil/v3 v3.24.5/go.mod h1:bsoOS1aStSs9ErQ1WWfxllSeS1K5D+U30r2NfcubMVk=
|
github.com/sagernet/wireguard-go v0.0.0-20231209092712-9a439356a62e/go.mod h1:YbL4TKHRR6APYQv3U2RGfwLDpPYSyWz6oUlpISBEzBE=
|
||||||
|
github.com/samber/lo v1.39.0 h1:4gTz1wUhNYLhFSKl6O+8peW0v2F4BCY034GRpU9WnuA=
|
||||||
|
github.com/samber/lo v1.39.0/go.mod h1:+m/ZKRl6ClXCE2Lgf3MsQlWfh4bn1bz6CXEOxnEXnEA=
|
||||||
|
github.com/shirou/gopsutil/v3 v3.24.3 h1:eoUGJSmdfLzJ3mxIhmOAhgKEKgQkeOwKpz1NbhVnuPE=
|
||||||
|
github.com/shirou/gopsutil/v3 v3.24.3/go.mod h1:JpND7O217xa72ewWz9zN2eIIkPWsDN/3pl0H8Qt0uwg=
|
||||||
github.com/shoenig/go-m1cpu v0.1.6 h1:nxdKQNcEB6vzgA2E2bvzKIYRuNj7XNJ4S/aRSwKzFtM=
|
github.com/shoenig/go-m1cpu v0.1.6 h1:nxdKQNcEB6vzgA2E2bvzKIYRuNj7XNJ4S/aRSwKzFtM=
|
||||||
github.com/shoenig/go-m1cpu v0.1.6/go.mod h1:1JJMcUBvfNwpq05QDQVAnx3gUHr9IYF7GNg9SUEw2VQ=
|
github.com/shoenig/go-m1cpu v0.1.6/go.mod h1:1JJMcUBvfNwpq05QDQVAnx3gUHr9IYF7GNg9SUEw2VQ=
|
||||||
github.com/shoenig/test v0.6.4 h1:kVTaSd7WLz5WZ2IaoM0RSzRsUD+m8wRR+5qvntpn4LU=
|
github.com/shoenig/test v0.6.4 h1:kVTaSd7WLz5WZ2IaoM0RSzRsUD+m8wRR+5qvntpn4LU=
|
||||||
@@ -209,18 +207,14 @@ github.com/u-root/uio v0.0.0-20230220225925-ffce2a382923/go.mod h1:eLL9Nub3yfAho
|
|||||||
github.com/vishvananda/netlink v1.1.0/go.mod h1:cTgwzPIzzgDAYoQrMm0EdrjRUBkTqKYppBueQtXaqoE=
|
github.com/vishvananda/netlink v1.1.0/go.mod h1:cTgwzPIzzgDAYoQrMm0EdrjRUBkTqKYppBueQtXaqoE=
|
||||||
github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df/go.mod h1:JP3t17pCcGlemwknint6hfoeCVQrEMVwxRLRjXpq+BU=
|
github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df/go.mod h1:JP3t17pCcGlemwknint6hfoeCVQrEMVwxRLRjXpq+BU=
|
||||||
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f/go.mod h1:DD4vA1DwXk04H54A1oHXtwZmA0grkVMdPxx/VGLCah0=
|
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f/go.mod h1:DD4vA1DwXk04H54A1oHXtwZmA0grkVMdPxx/VGLCah0=
|
||||||
github.com/vishvananda/netns v0.0.4 h1:Oeaw1EM2JMxD51g9uhtC0D7erkIjgmj8+JZc26m1YX8=
|
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 h1:gga7acRE695APm9hlsSMoOoE65U4/TcqNj90mc69Rlg=
|
||||||
github.com/vishvananda/netns v0.0.4/go.mod h1:SpkAiCQRtJ6TvvxPnOSyH3BMl6unz3xZlaprSwhNNJM=
|
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74/go.mod h1:DD4vA1DwXk04H54A1oHXtwZmA0grkVMdPxx/VGLCah0=
|
||||||
github.com/vmihailenco/msgpack/v5 v5.4.1 h1:cQriyiUvjTwOHg8QZaPihLWeRAAVoCpE00IUPn0Bjt8=
|
|
||||||
github.com/vmihailenco/msgpack/v5 v5.4.1/go.mod h1:GaZTsDaehaPpQVyxrf5mtQlH+pc21PIudVV/E3rRQok=
|
|
||||||
github.com/vmihailenco/tagparser/v2 v2.0.0 h1:y09buUbR+b5aycVFQs/g70pqKVZNBmxwAhO7/IwNM9g=
|
|
||||||
github.com/vmihailenco/tagparser/v2 v2.0.0/go.mod h1:Wri+At7QHww0WTrCBeu4J6bNtoV6mEfg5OIWRZA9qds=
|
|
||||||
github.com/wk8/go-ordered-map/v2 v2.1.8 h1:5h/BUHu93oj4gIdvHHHGsScSTMijfx5PeYkE/fJgbpc=
|
github.com/wk8/go-ordered-map/v2 v2.1.8 h1:5h/BUHu93oj4gIdvHHHGsScSTMijfx5PeYkE/fJgbpc=
|
||||||
github.com/wk8/go-ordered-map/v2 v2.1.8/go.mod h1:5nJHM5DyteebpVlHnWMV0rPz6Zp7+xBAnxjb1X5vnTw=
|
github.com/wk8/go-ordered-map/v2 v2.1.8/go.mod h1:5nJHM5DyteebpVlHnWMV0rPz6Zp7+xBAnxjb1X5vnTw=
|
||||||
github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0=
|
github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0=
|
||||||
github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0=
|
github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0=
|
||||||
gitlab.com/go-extension/aes-ccm v0.0.0-20230221065045-e58665ef23c7 h1:UNrDfkQqiEYzdMlNsVvBYOAJWZjdktqFE9tQh5BT2+4=
|
github.com/zhangyunhao116/fastrand v0.4.0 h1:86QB6Y+GGgLZRFRDCjMmAS28QULwspK9sgL5d1Bx3H4=
|
||||||
gitlab.com/go-extension/aes-ccm v0.0.0-20230221065045-e58665ef23c7/go.mod h1:E+rxHvJG9H6PUdzq9NRG6csuLN3XUx98BfGOVWNYnXs=
|
github.com/zhangyunhao116/fastrand v0.4.0/go.mod h1:vIyo6EyBhjGKpZv6qVlkPl4JVAklpMM4DSKzbAkMguA=
|
||||||
gitlab.com/yawning/bsaes.git v0.0.0-20190805113838-0a714cd429ec h1:FpfFs4EhNehiVfzQttTuxanPIT43FtkkCFypIod8LHo=
|
gitlab.com/yawning/bsaes.git v0.0.0-20190805113838-0a714cd429ec h1:FpfFs4EhNehiVfzQttTuxanPIT43FtkkCFypIod8LHo=
|
||||||
gitlab.com/yawning/bsaes.git v0.0.0-20190805113838-0a714cd429ec/go.mod h1:BZ1RAoRPbCxum9Grlv5aeksu2H8BiKehBYooU2LFiOQ=
|
gitlab.com/yawning/bsaes.git v0.0.0-20190805113838-0a714cd429ec/go.mod h1:BZ1RAoRPbCxum9Grlv5aeksu2H8BiKehBYooU2LFiOQ=
|
||||||
go.uber.org/mock v0.4.0 h1:VcM4ZOtdbR4f6VXfiOpwpVJDL6lCReaZ6mw31wqh7KU=
|
go.uber.org/mock v0.4.0 h1:VcM4ZOtdbR4f6VXfiOpwpVJDL6lCReaZ6mw31wqh7KU=
|
||||||
@@ -229,21 +223,21 @@ go4.org/netipx v0.0.0-20231129151722-fdeea329fbba h1:0b9z3AuHCjxk0x/opv64kcgZLBs
|
|||||||
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba/go.mod h1:PLyyIXexvUFg3Owu6p/WfdlivPbZJsZdgWZlrGope/Y=
|
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba/go.mod h1:PLyyIXexvUFg3Owu6p/WfdlivPbZJsZdgWZlrGope/Y=
|
||||||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||||
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
|
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
|
||||||
golang.org/x/crypto v0.28.0 h1:GBDwsMXVQi34v5CCYUm2jkJvu4cbtru2U4TN2PSyQnw=
|
golang.org/x/crypto v0.22.0 h1:g1v0xeRhjcugydODzvb3mEM9SQ0HGp9s/nh3COQ/C30=
|
||||||
golang.org/x/crypto v0.28.0/go.mod h1:rmgy+3RHxRZMyY0jjAJShp2zgEdOqj2AO7U0pYmeQ7U=
|
golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M=
|
||||||
golang.org/x/exp v0.0.0-20240904232852-e7e105dedf7e h1:I88y4caeGeuDQxgdoFPUq097j7kNfw6uvuiNxUBfcBk=
|
golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f h1:99ci1mjWVBWwJiEKYY6jWa4d2nTQVIEhZIptnrVb1XY=
|
||||||
golang.org/x/exp v0.0.0-20240904232852-e7e105dedf7e/go.mod h1:akd2r19cwCdwSwWeIdzYQGa/EZZyqcOdwWiwj5L5eKQ=
|
golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f/go.mod h1:/lliqkxwWAhPjf5oSOIJup2XcqJaw8RGS6k3TGEc7GI=
|
||||||
golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
|
golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
|
||||||
golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
|
golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
|
||||||
golang.org/x/mod v0.20.0 h1:utOm6MM3R3dnawAiJgn0y+xvuYRsm1RKM/4giyfDgV0=
|
golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA=
|
||||||
golang.org/x/mod v0.20.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
|
golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
|
||||||
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
||||||
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
||||||
golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4=
|
golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w=
|
||||||
golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU=
|
golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8=
|
||||||
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ=
|
golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M=
|
||||||
golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
|
golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
|
||||||
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||||
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20190606203320-7fc4e5ec1444/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20190606203320-7fc4e5ec1444/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
@@ -259,27 +253,29 @@ golang.org/x/sys v0.5.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.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
golang.org/x/sys v0.14.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||||
golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo=
|
golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||||
golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o=
|
||||||
golang.org/x/term v0.25.0 h1:WtHI/ltw4NvSUig5KARz9h521QvRC8RmF/cuYqifU24=
|
golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||||
golang.org/x/term v0.25.0/go.mod h1:RPyXicDX+6vLxogjjRxjgD2TKtmAO6NZBsBRfrOLu7M=
|
golang.org/x/term v0.19.0 h1:+ThwsDv+tYfnJFhF4L8jITxu1tdTWRTZpdsWgEgjL6Q=
|
||||||
|
golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk=
|
||||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
golang.org/x/text v0.19.0 h1:kTxAhCbGbxhK0IwgSKiMO5awPoDQ0RpfiVYBfK860YM=
|
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
|
||||||
golang.org/x/text v0.19.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
|
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
|
||||||
golang.org/x/time v0.5.0 h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk=
|
golang.org/x/time v0.5.0 h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk=
|
||||||
golang.org/x/time v0.5.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
|
golang.org/x/time v0.5.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
|
||||||
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
|
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
|
||||||
golang.org/x/tools v0.24.0 h1:J1shsA93PJUEVaUSaay7UXAyE8aimq3GW0pjlolpa24=
|
golang.org/x/tools v0.20.0 h1:hz/CVckiOxybQvFw6h7b/q80NTr9IUQb4s1IIzW7KNY=
|
||||||
golang.org/x/tools v0.24.0/go.mod h1:YhNqVBIfWHdzvTLs0d8LCuMhkKUgSUKldakyV7W/WDQ=
|
golang.org/x/tools v0.20.0/go.mod h1:WvitBU7JJf6A4jOdg4S1tviW9bhUxkgeCui/0JHctQg=
|
||||||
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg=
|
google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
|
||||||
google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw=
|
google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
|
||||||
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
||||||
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
lukechampine.com/blake3 v1.3.0 h1:sJ3XhFINmHSrYCgl958hscfIa3bw8x4DqMP3u1YvoYE=
|
lukechampine.com/blake3 v1.2.2 h1:wEAbSg0IVU4ih44CVlpMqMZMpzr5hf/6aqodLlevd/w=
|
||||||
lukechampine.com/blake3 v1.3.0/go.mod h1:0OFRp7fBtAylGVCO40o87sbupkyIGgbpv1+M1k1LM6k=
|
lukechampine.com/blake3 v1.2.2/go.mod h1:0OFRp7fBtAylGVCO40o87sbupkyIGgbpv1+M1k1LM6k=
|
||||||
|
|||||||
498
core/hub.go
@@ -1,246 +1,210 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
|
import "C"
|
||||||
import (
|
import (
|
||||||
"context"
|
bridge "core/dart-bridge"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/metacubex/mihomo/adapter"
|
"github.com/metacubex/mihomo/adapter"
|
||||||
"github.com/metacubex/mihomo/adapter/outboundgroup"
|
"github.com/metacubex/mihomo/adapter/outboundgroup"
|
||||||
"github.com/metacubex/mihomo/common/observable"
|
|
||||||
"github.com/metacubex/mihomo/common/utils"
|
"github.com/metacubex/mihomo/common/utils"
|
||||||
"github.com/metacubex/mihomo/component/mmdb"
|
|
||||||
"github.com/metacubex/mihomo/component/updater"
|
|
||||||
"github.com/metacubex/mihomo/config"
|
"github.com/metacubex/mihomo/config"
|
||||||
"github.com/metacubex/mihomo/constant"
|
"github.com/metacubex/mihomo/constant"
|
||||||
cp "github.com/metacubex/mihomo/constant/provider"
|
|
||||||
"github.com/metacubex/mihomo/hub/executor"
|
"github.com/metacubex/mihomo/hub/executor"
|
||||||
"github.com/metacubex/mihomo/listener"
|
|
||||||
"github.com/metacubex/mihomo/log"
|
"github.com/metacubex/mihomo/log"
|
||||||
"github.com/metacubex/mihomo/tunnel"
|
"github.com/metacubex/mihomo/tunnel"
|
||||||
"github.com/metacubex/mihomo/tunnel/statistic"
|
"github.com/metacubex/mihomo/tunnel/statistic"
|
||||||
"net"
|
"golang.org/x/net/context"
|
||||||
|
"os"
|
||||||
"runtime"
|
"runtime"
|
||||||
"sort"
|
|
||||||
"strconv"
|
|
||||||
"time"
|
"time"
|
||||||
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var currentConfig = config.DefaultRawConfig()
|
||||||
isInit = false
|
|
||||||
configParams = ConfigExtendedParams{}
|
|
||||||
externalProviders = map[string]cp.Provider{}
|
|
||||||
logSubscriber observable.Subscription[log.Event]
|
|
||||||
currentConfig *config.Config
|
|
||||||
)
|
|
||||||
|
|
||||||
func handleInitClash(homeDirStr string) bool {
|
var isInit = false
|
||||||
|
|
||||||
|
//export initClash
|
||||||
|
func initClash(homeDirStr *C.char) bool {
|
||||||
if !isInit {
|
if !isInit {
|
||||||
constant.SetHomeDir(homeDirStr)
|
constant.SetHomeDir(C.GoString(homeDirStr))
|
||||||
isInit = true
|
isInit = true
|
||||||
}
|
}
|
||||||
return isInit
|
return isInit
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleStartListener() bool {
|
//export getIsInit
|
||||||
runLock.Lock()
|
func getIsInit() bool {
|
||||||
defer runLock.Unlock()
|
|
||||||
isRunning = true
|
|
||||||
updateListeners(true)
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleStopListener() bool {
|
|
||||||
runLock.Lock()
|
|
||||||
defer runLock.Unlock()
|
|
||||||
isRunning = false
|
|
||||||
listener.StopListener()
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleGetIsInit() bool {
|
|
||||||
return isInit
|
return isInit
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleForceGc() {
|
//export restartClash
|
||||||
go func() {
|
func restartClash() bool {
|
||||||
log.Infoln("[APP] request force GC")
|
execPath, _ := os.Executable()
|
||||||
runtime.GC()
|
go restartExecutable(execPath)
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleShutdown() bool {
|
|
||||||
stopListeners()
|
|
||||||
executor.Shutdown()
|
|
||||||
runtime.GC()
|
|
||||||
isInit = false
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleValidateConfig(bytes []byte) string {
|
//export shutdownClash
|
||||||
|
func shutdownClash() bool {
|
||||||
|
executor.Shutdown()
|
||||||
|
runtime.GC()
|
||||||
|
isInit = false
|
||||||
|
currentConfig = nil
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
//export validateConfig
|
||||||
|
func validateConfig(s *C.char) bool {
|
||||||
|
bytes := []byte(C.GoString(s))
|
||||||
_, err := config.UnmarshalRawConfig(bytes)
|
_, err := config.UnmarshalRawConfig(bytes)
|
||||||
if err != nil {
|
return err == nil
|
||||||
return err.Error()
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleUpdateConfig(bytes []byte) string {
|
//export updateConfig
|
||||||
|
func updateConfig(s *C.char) bool {
|
||||||
|
paramsString := C.GoString(s)
|
||||||
var params = &GenerateConfigParams{}
|
var params = &GenerateConfigParams{}
|
||||||
err := json.Unmarshal(bytes, params)
|
err := json.Unmarshal([]byte(paramsString), params)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err.Error()
|
log.Errorln("generateConfig Unmarshal error %v", err)
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
|
prof := decorationConfig(params.ProfilePath, *params.Config)
|
||||||
configParams = params.Params
|
currentConfig = prof
|
||||||
prof := decorationConfig(params.ProfileId, params.Config)
|
if *params.IsPatch {
|
||||||
err = applyConfig(prof)
|
return applyConfig(true)
|
||||||
if err != nil {
|
} else {
|
||||||
return err.Error()
|
return applyConfig(false)
|
||||||
}
|
}
|
||||||
return ""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleGetProxies() string {
|
//export getProxies
|
||||||
runLock.Lock()
|
func getProxies() *C.char {
|
||||||
defer runLock.Unlock()
|
data, err := json.Marshal(tunnel.Proxies())
|
||||||
data, err := json.Marshal(tunnel.ProxiesWithProviders())
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return ""
|
return C.CString("")
|
||||||
}
|
}
|
||||||
return string(data)
|
return C.CString(string(data))
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleChangeProxy(data string, fn func(string string)) {
|
//export changeProxy
|
||||||
runLock.Lock()
|
func changeProxy(s *C.char) bool {
|
||||||
|
paramsString := C.GoString(s)
|
||||||
|
var params = &ChangeProxyParams{}
|
||||||
|
err := json.Unmarshal([]byte(paramsString), params)
|
||||||
|
if err != nil {
|
||||||
|
log.Infoln("Unmarshal ChangeProxyParams %v", err)
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
proxies := tunnel.Proxies()
|
||||||
|
proxy := proxies[*params.GroupName]
|
||||||
|
if proxy == nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
log.Infoln("change proxy %s", proxy.Name())
|
||||||
|
adapterProxy := proxy.(*adapter.Proxy)
|
||||||
|
selector, ok := adapterProxy.ProxyAdapter.(*outboundgroup.Selector)
|
||||||
|
if !ok {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
if err := selector.Set(*params.ProxyName); err != nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
//export getTraffic
|
||||||
|
func getTraffic() *C.char {
|
||||||
|
up, down := statistic.DefaultManager.Now()
|
||||||
|
traffic := map[string]int64{
|
||||||
|
"up": up,
|
||||||
|
"down": down,
|
||||||
|
}
|
||||||
|
data, err := json.Marshal(traffic)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("Error:", err)
|
||||||
|
return C.CString("")
|
||||||
|
}
|
||||||
|
return C.CString(string(data))
|
||||||
|
}
|
||||||
|
|
||||||
|
//export asyncTestDelay
|
||||||
|
func asyncTestDelay(s *C.char) {
|
||||||
go func() {
|
go func() {
|
||||||
defer runLock.Unlock()
|
paramsString := C.GoString(s)
|
||||||
var params = &ChangeProxyParams{}
|
|
||||||
err := json.Unmarshal([]byte(data), params)
|
|
||||||
if err != nil {
|
|
||||||
fn(err.Error())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
groupName := *params.GroupName
|
|
||||||
proxyName := *params.ProxyName
|
|
||||||
proxies := tunnel.ProxiesWithProviders()
|
|
||||||
group, ok := proxies[groupName]
|
|
||||||
if !ok {
|
|
||||||
fn("Not found group")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
adapterProxy := group.(*adapter.Proxy)
|
|
||||||
selector, ok := adapterProxy.ProxyAdapter.(outboundgroup.SelectAble)
|
|
||||||
if !ok {
|
|
||||||
fn("Group is not selectable")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if proxyName == "" {
|
|
||||||
selector.ForceSet(proxyName)
|
|
||||||
} else {
|
|
||||||
err = selector.Set(proxyName)
|
|
||||||
}
|
|
||||||
if err != nil {
|
|
||||||
fn(err.Error())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
fn("")
|
|
||||||
return
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleGetTraffic(onlyProxy bool) string {
|
|
||||||
up, down := statistic.DefaultManager.Current(onlyProxy)
|
|
||||||
traffic := map[string]int64{
|
|
||||||
"up": up,
|
|
||||||
"down": down,
|
|
||||||
}
|
|
||||||
data, err := json.Marshal(traffic)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println("Error:", err)
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
return string(data)
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleGetTotalTraffic(onlyProxy bool) string {
|
|
||||||
up, down := statistic.DefaultManager.Total(onlyProxy)
|
|
||||||
traffic := map[string]int64{
|
|
||||||
"up": up,
|
|
||||||
"down": down,
|
|
||||||
}
|
|
||||||
data, err := json.Marshal(traffic)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println("Error:", err)
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
return string(data)
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleResetTraffic() {
|
|
||||||
statistic.DefaultManager.ResetStatistic()
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleAsyncTestDelay(paramsString string, fn func(string)) {
|
|
||||||
b.Go(paramsString, func() (bool, error) {
|
|
||||||
var params = &TestDelayParams{}
|
var params = &TestDelayParams{}
|
||||||
err := json.Unmarshal([]byte(paramsString), params)
|
err := json.Unmarshal([]byte(paramsString), params)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fn("")
|
return
|
||||||
return false, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
expectedStatus, err := utils.NewUnsignedRanges[uint16]("")
|
expectedStatus, err := utils.NewUnsignedRanges[uint16]("")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fn("")
|
return
|
||||||
return false, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx, cancel := context.WithTimeout(context.Background(), time.Millisecond*time.Duration(params.Timeout))
|
ctx, cancel := context.WithTimeout(context.Background(), time.Millisecond*time.Duration(params.Timeout))
|
||||||
defer cancel()
|
defer cancel()
|
||||||
|
|
||||||
proxies := tunnel.ProxiesWithProviders()
|
proxies := tunnel.Proxies()
|
||||||
proxy := proxies[params.ProxyName]
|
proxy := proxies[params.ProxyName]
|
||||||
|
|
||||||
delayData := &Delay{
|
delayData := &Delay{
|
||||||
Name: params.ProxyName,
|
Name: params.ProxyName,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message := bridge.Message{
|
||||||
|
Type: bridge.Delay,
|
||||||
|
Data: delayData,
|
||||||
|
}
|
||||||
|
|
||||||
if proxy == nil {
|
if proxy == nil {
|
||||||
delayData.Value = -1
|
delayData.Value = -1
|
||||||
data, _ := json.Marshal(delayData)
|
bridge.SendMessage(message)
|
||||||
fn(string(data))
|
return
|
||||||
return false, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
delay, err := proxy.URLTest(ctx, constant.DefaultTestURL, expectedStatus)
|
delay, err := proxy.URLTest(ctx, constant.DefaultTestURL, expectedStatus)
|
||||||
if err != nil || delay == 0 {
|
if err != nil || delay == 0 {
|
||||||
delayData.Value = -1
|
delayData.Value = -1
|
||||||
data, _ := json.Marshal(delayData)
|
bridge.SendMessage(message)
|
||||||
fn(string(data))
|
return
|
||||||
return false, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
delayData.Value = int32(delay)
|
delayData.Value = int32(delay)
|
||||||
data, _ := json.Marshal(delayData)
|
bridge.SendMessage(message)
|
||||||
fn(string(data))
|
}()
|
||||||
return false, nil
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleGetConnections() string {
|
//export getVersionInfo
|
||||||
runLock.Lock()
|
func getVersionInfo() *C.char {
|
||||||
defer runLock.Unlock()
|
versionInfo := map[string]string{
|
||||||
|
"clashName": constant.Name,
|
||||||
|
"version": constant.Version,
|
||||||
|
}
|
||||||
|
data, err := json.Marshal(versionInfo)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("Error:", err)
|
||||||
|
return C.CString("")
|
||||||
|
}
|
||||||
|
return C.CString(string(data))
|
||||||
|
}
|
||||||
|
|
||||||
|
//export getConnections
|
||||||
|
func getConnections() *C.char {
|
||||||
snapshot := statistic.DefaultManager.Snapshot()
|
snapshot := statistic.DefaultManager.Snapshot()
|
||||||
data, err := json.Marshal(snapshot)
|
data, err := json.Marshal(snapshot)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("Error:", err)
|
fmt.Println("Error:", err)
|
||||||
return ""
|
return C.CString("")
|
||||||
}
|
}
|
||||||
return string(data)
|
return C.CString(string(data))
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleCloseConnectionsUnLock() bool {
|
//export closeConnections
|
||||||
|
func closeConnections() bool {
|
||||||
statistic.DefaultManager.Range(func(c statistic.Tracker) bool {
|
statistic.DefaultManager.Range(func(c statistic.Tracker) bool {
|
||||||
err := c.Close()
|
err := c.Close()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -251,206 +215,42 @@ func handleCloseConnectionsUnLock() bool {
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleCloseConnections() bool {
|
//export closeConnection
|
||||||
runLock.Lock()
|
func closeConnection(id *C.char) bool {
|
||||||
defer runLock.Unlock()
|
connectionId := C.GoString(id)
|
||||||
statistic.DefaultManager.Range(func(c statistic.Tracker) bool {
|
|
||||||
err := c.Close()
|
|
||||||
if err != nil {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
})
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleCloseConnection(connectionId string) bool {
|
err := statistic.DefaultManager.Get(connectionId).Close()
|
||||||
runLock.Lock()
|
if err != nil {
|
||||||
defer runLock.Unlock()
|
|
||||||
c := statistic.DefaultManager.Get(connectionId)
|
|
||||||
if c == nil {
|
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
_ = c.Close()
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleGetExternalProviders() string {
|
//export getProviders
|
||||||
runLock.Lock()
|
func getProviders() *C.char {
|
||||||
defer runLock.Unlock()
|
data, err := json.Marshal(tunnel.Providers())
|
||||||
externalProviders = getExternalProvidersRaw()
|
|
||||||
eps := make([]ExternalProvider, 0)
|
|
||||||
for _, p := range externalProviders {
|
|
||||||
externalProvider, err := toExternalProvider(p)
|
|
||||||
if err != nil {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
eps = append(eps, *externalProvider)
|
|
||||||
}
|
|
||||||
sort.Sort(ExternalProviders(eps))
|
|
||||||
data, err := json.Marshal(eps)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return ""
|
return C.CString("")
|
||||||
}
|
}
|
||||||
return string(data)
|
return C.CString(string(data))
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleGetExternalProvider(externalProviderName string) string {
|
|
||||||
runLock.Lock()
|
//export getProvider
|
||||||
defer runLock.Unlock()
|
func getProvider(name *C.char) *C.char {
|
||||||
externalProvider, exist := externalProviders[externalProviderName]
|
providerName := C.GoString(name)
|
||||||
if !exist {
|
providers := tunnel.Providers()
|
||||||
return ""
|
var provider = providers[providerName]
|
||||||
}
|
data, err := json.Marshal(provider)
|
||||||
e, err := toExternalProvider(externalProvider)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return ""
|
return C.CString("")
|
||||||
}
|
}
|
||||||
data, err := json.Marshal(e)
|
return C.CString(string(data))
|
||||||
if err != nil {
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
return string(data)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleUpdateGeoData(geoType string, geoName string, fn func(value string)) {
|
//export initNativeApiBridge
|
||||||
go func() {
|
func initNativeApiBridge(api unsafe.Pointer, port C.longlong) {
|
||||||
path := constant.Path.Resolve(geoName)
|
bridge.InitDartApi(api)
|
||||||
switch geoType {
|
i := int64(port)
|
||||||
case "MMDB":
|
bridge.Port = &i
|
||||||
err := updater.UpdateMMDBWithPath(path)
|
|
||||||
if err != nil {
|
|
||||||
fn(err.Error())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
case "ASN":
|
|
||||||
err := updater.UpdateASNWithPath(path)
|
|
||||||
if err != nil {
|
|
||||||
fn(err.Error())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
case "GeoIp":
|
|
||||||
err := updater.UpdateGeoIpWithPath(path)
|
|
||||||
if err != nil {
|
|
||||||
fn(err.Error())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
case "GeoSite":
|
|
||||||
err := updater.UpdateGeoSiteWithPath(path)
|
|
||||||
if err != nil {
|
|
||||||
fn(err.Error())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fn("")
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleUpdateExternalProvider(providerName string, fn func(value string)) {
|
|
||||||
go func() {
|
|
||||||
externalProvider, exist := externalProviders[providerName]
|
|
||||||
if !exist {
|
|
||||||
fn("external provider is not exist")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
err := externalProvider.Update()
|
|
||||||
if err != nil {
|
|
||||||
fn(err.Error())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
fn("")
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleSideLoadExternalProvider(providerName string, data []byte, fn func(value string)) {
|
|
||||||
go func() {
|
|
||||||
runLock.Lock()
|
|
||||||
defer runLock.Unlock()
|
|
||||||
externalProvider, exist := externalProviders[providerName]
|
|
||||||
if !exist {
|
|
||||||
fn("external provider is not exist")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
err := sideUpdateExternalProvider(externalProvider, data)
|
|
||||||
if err != nil {
|
|
||||||
fn(err.Error())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
fn("")
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleStartLog() {
|
|
||||||
if logSubscriber != nil {
|
|
||||||
log.UnSubscribe(logSubscriber)
|
|
||||||
logSubscriber = nil
|
|
||||||
}
|
|
||||||
logSubscriber = log.Subscribe()
|
|
||||||
go func() {
|
|
||||||
for logData := range logSubscriber {
|
|
||||||
if logData.LogLevel < log.Level() {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
message := &Message{
|
|
||||||
Type: LogMessage,
|
|
||||||
Data: logData,
|
|
||||||
}
|
|
||||||
SendMessage(*message)
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleStopLog() {
|
|
||||||
if logSubscriber != nil {
|
|
||||||
log.UnSubscribe(logSubscriber)
|
|
||||||
logSubscriber = nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleGetCountryCode(ip string, fn func(value string)) {
|
|
||||||
go func() {
|
|
||||||
runLock.Lock()
|
|
||||||
defer runLock.Unlock()
|
|
||||||
codes := mmdb.IPInstance().LookupCode(net.ParseIP(ip))
|
|
||||||
if len(codes) == 0 {
|
|
||||||
fn("")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
fn(codes[0])
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleGetMemory(fn func(value string)) {
|
|
||||||
go func() {
|
|
||||||
fn(strconv.FormatUint(statistic.DefaultManager.Memory(), 10))
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
adapter.UrlTestHook = func(name string, delay uint16) {
|
|
||||||
delayData := &Delay{
|
|
||||||
Name: name,
|
|
||||||
}
|
|
||||||
if delay == 0 {
|
|
||||||
delayData.Value = -1
|
|
||||||
} else {
|
|
||||||
delayData.Value = int32(delay)
|
|
||||||
}
|
|
||||||
SendMessage(Message{
|
|
||||||
Type: DelayMessage,
|
|
||||||
Data: delayData,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
statistic.DefaultRequestNotify = func(c statistic.Tracker) {
|
|
||||||
SendMessage(Message{
|
|
||||||
Type: RequestMessage,
|
|
||||||
Data: c,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
executor.DefaultProviderLoadedHook = func(providerName string) {
|
|
||||||
SendMessage(Message{
|
|
||||||
Type: LoadedMessage,
|
|
||||||
Data: providerName,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
199
core/lib.go
@@ -1,199 +0,0 @@
|
|||||||
//go:build cgo
|
|
||||||
|
|
||||||
package main
|
|
||||||
|
|
||||||
/*
|
|
||||||
#include <stdlib.h>
|
|
||||||
*/
|
|
||||||
import "C"
|
|
||||||
import (
|
|
||||||
bridge "core/dart-bridge"
|
|
||||||
"unsafe"
|
|
||||||
)
|
|
||||||
|
|
||||||
//export initNativeApiBridge
|
|
||||||
func initNativeApiBridge(api unsafe.Pointer) {
|
|
||||||
bridge.InitDartApi(api)
|
|
||||||
}
|
|
||||||
|
|
||||||
//export initMessage
|
|
||||||
func initMessage(port C.longlong) {
|
|
||||||
i := int64(port)
|
|
||||||
Port = i
|
|
||||||
}
|
|
||||||
|
|
||||||
//export freeCString
|
|
||||||
func freeCString(s *C.char) {
|
|
||||||
C.free(unsafe.Pointer(s))
|
|
||||||
}
|
|
||||||
|
|
||||||
//export initClash
|
|
||||||
func initClash(homeDirStr *C.char) bool {
|
|
||||||
return handleInitClash(C.GoString(homeDirStr))
|
|
||||||
}
|
|
||||||
|
|
||||||
//export startListener
|
|
||||||
func startListener() {
|
|
||||||
handleStartListener()
|
|
||||||
}
|
|
||||||
|
|
||||||
//export stopListener
|
|
||||||
func stopListener() {
|
|
||||||
handleStopListener()
|
|
||||||
}
|
|
||||||
|
|
||||||
//export getIsInit
|
|
||||||
func getIsInit() bool {
|
|
||||||
return handleGetIsInit()
|
|
||||||
}
|
|
||||||
|
|
||||||
//export shutdownClash
|
|
||||||
func shutdownClash() bool {
|
|
||||||
return handleShutdown()
|
|
||||||
}
|
|
||||||
|
|
||||||
//export forceGc
|
|
||||||
func forceGc() {
|
|
||||||
handleForceGc()
|
|
||||||
}
|
|
||||||
|
|
||||||
//export validateConfig
|
|
||||||
func validateConfig(s *C.char, port C.longlong) {
|
|
||||||
i := int64(port)
|
|
||||||
bytes := []byte(C.GoString(s))
|
|
||||||
go func() {
|
|
||||||
bridge.SendToPort(i, handleValidateConfig(bytes))
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
//export updateConfig
|
|
||||||
func updateConfig(s *C.char, port C.longlong) {
|
|
||||||
i := int64(port)
|
|
||||||
bytes := []byte(C.GoString(s))
|
|
||||||
go func() {
|
|
||||||
bridge.SendToPort(i, handleUpdateConfig(bytes))
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
//export getProxies
|
|
||||||
func getProxies() *C.char {
|
|
||||||
return C.CString(handleGetProxies())
|
|
||||||
}
|
|
||||||
|
|
||||||
//export changeProxy
|
|
||||||
func changeProxy(s *C.char, port C.longlong) {
|
|
||||||
i := int64(port)
|
|
||||||
paramsString := C.GoString(s)
|
|
||||||
handleChangeProxy(paramsString, func(value string) {
|
|
||||||
bridge.SendToPort(i, value)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
//export getTraffic
|
|
||||||
func getTraffic(port C.int) *C.char {
|
|
||||||
onlyProxy := int(port) == 1
|
|
||||||
return C.CString(handleGetTraffic(onlyProxy))
|
|
||||||
}
|
|
||||||
|
|
||||||
//export getTotalTraffic
|
|
||||||
func getTotalTraffic(port C.int) *C.char {
|
|
||||||
onlyProxy := int(port) == 1
|
|
||||||
return C.CString(handleGetTotalTraffic(onlyProxy))
|
|
||||||
}
|
|
||||||
|
|
||||||
//export resetTraffic
|
|
||||||
func resetTraffic() {
|
|
||||||
handleResetTraffic()
|
|
||||||
}
|
|
||||||
|
|
||||||
//export asyncTestDelay
|
|
||||||
func asyncTestDelay(s *C.char, port C.longlong) {
|
|
||||||
i := int64(port)
|
|
||||||
paramsString := C.GoString(s)
|
|
||||||
handleAsyncTestDelay(paramsString, func(value string) {
|
|
||||||
bridge.SendToPort(i, value)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
//export getConnections
|
|
||||||
func getConnections() *C.char {
|
|
||||||
return C.CString(handleGetConnections())
|
|
||||||
}
|
|
||||||
|
|
||||||
//export getMemory
|
|
||||||
func getMemory(port C.longlong) {
|
|
||||||
i := int64(port)
|
|
||||||
handleGetMemory(func(value string) {
|
|
||||||
bridge.SendToPort(i, value)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
//export closeConnections
|
|
||||||
func closeConnections() {
|
|
||||||
handleCloseConnections()
|
|
||||||
}
|
|
||||||
|
|
||||||
//export closeConnection
|
|
||||||
func closeConnection(id *C.char) {
|
|
||||||
connectionId := C.GoString(id)
|
|
||||||
handleCloseConnection(connectionId)
|
|
||||||
}
|
|
||||||
|
|
||||||
//export getExternalProviders
|
|
||||||
func getExternalProviders() *C.char {
|
|
||||||
return C.CString(handleGetExternalProviders())
|
|
||||||
}
|
|
||||||
|
|
||||||
//export getExternalProvider
|
|
||||||
func getExternalProvider(externalProviderNameChar *C.char) *C.char {
|
|
||||||
externalProviderName := C.GoString(externalProviderNameChar)
|
|
||||||
return C.CString(handleGetExternalProvider(externalProviderName))
|
|
||||||
}
|
|
||||||
|
|
||||||
//export updateGeoData
|
|
||||||
func updateGeoData(geoTypeChar *C.char, geoNameChar *C.char, port C.longlong) {
|
|
||||||
i := int64(port)
|
|
||||||
geoType := C.GoString(geoTypeChar)
|
|
||||||
geoName := C.GoString(geoNameChar)
|
|
||||||
handleUpdateGeoData(geoType, geoName, func(value string) {
|
|
||||||
bridge.SendToPort(i, value)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
//export updateExternalProvider
|
|
||||||
func updateExternalProvider(providerNameChar *C.char, port C.longlong) {
|
|
||||||
i := int64(port)
|
|
||||||
providerName := C.GoString(providerNameChar)
|
|
||||||
handleUpdateExternalProvider(providerName, func(value string) {
|
|
||||||
bridge.SendToPort(i, value)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
//export getCountryCode
|
|
||||||
func getCountryCode(ipChar *C.char, port C.longlong) {
|
|
||||||
ip := C.GoString(ipChar)
|
|
||||||
i := int64(port)
|
|
||||||
handleGetCountryCode(ip, func(value string) {
|
|
||||||
bridge.SendToPort(i, value)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
//export sideLoadExternalProvider
|
|
||||||
func sideLoadExternalProvider(providerNameChar *C.char, dataChar *C.char, port C.longlong) {
|
|
||||||
i := int64(port)
|
|
||||||
providerName := C.GoString(providerNameChar)
|
|
||||||
data := []byte(C.GoString(dataChar))
|
|
||||||
handleSideLoadExternalProvider(providerName, data, func(value string) {
|
|
||||||
bridge.SendToPort(i, value)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
//export startLog
|
|
||||||
func startLog() {
|
|
||||||
handleStartLog()
|
|
||||||
}
|
|
||||||
|
|
||||||
//export stopLog
|
|
||||||
func stopLog() {
|
|
||||||
handleStopLog()
|
|
||||||
}
|
|
||||||
@@ -1,270 +0,0 @@
|
|||||||
//go:build android && cgo
|
|
||||||
|
|
||||||
package main
|
|
||||||
|
|
||||||
import "C"
|
|
||||||
import (
|
|
||||||
"core/platform"
|
|
||||||
"core/state"
|
|
||||||
t "core/tun"
|
|
||||||
"encoding/json"
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
"github.com/metacubex/mihomo/component/dialer"
|
|
||||||
"github.com/metacubex/mihomo/component/process"
|
|
||||||
"github.com/metacubex/mihomo/constant"
|
|
||||||
"github.com/metacubex/mihomo/dns"
|
|
||||||
"github.com/metacubex/mihomo/listener/sing_tun"
|
|
||||||
"github.com/metacubex/mihomo/log"
|
|
||||||
"strconv"
|
|
||||||
"strings"
|
|
||||||
"sync"
|
|
||||||
"sync/atomic"
|
|
||||||
"syscall"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
type ProcessMap struct {
|
|
||||||
m sync.Map
|
|
||||||
}
|
|
||||||
|
|
||||||
type FdMap struct {
|
|
||||||
m sync.Map
|
|
||||||
}
|
|
||||||
|
|
||||||
type Fd struct {
|
|
||||||
Id int64 `json:"id"`
|
|
||||||
Value int64 `json:"value"`
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
tunListener *sing_tun.Listener
|
|
||||||
fdMap FdMap
|
|
||||||
fdCounter int64 = 0
|
|
||||||
counter int64 = 0
|
|
||||||
processMap ProcessMap
|
|
||||||
tunLock sync.Mutex
|
|
||||||
runTime *time.Time
|
|
||||||
errBlocked = errors.New("blocked")
|
|
||||||
)
|
|
||||||
|
|
||||||
func (cm *ProcessMap) Store(key int64, value string) {
|
|
||||||
cm.m.Store(key, value)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (cm *ProcessMap) Load(key int64) (string, bool) {
|
|
||||||
value, ok := cm.m.Load(key)
|
|
||||||
if !ok || value == nil {
|
|
||||||
return "", false
|
|
||||||
}
|
|
||||||
return value.(string), true
|
|
||||||
}
|
|
||||||
|
|
||||||
func (cm *FdMap) Store(key int64) {
|
|
||||||
cm.m.Store(key, struct{}{})
|
|
||||||
}
|
|
||||||
|
|
||||||
func (cm *FdMap) Load(key int64) bool {
|
|
||||||
_, ok := cm.m.Load(key)
|
|
||||||
return ok
|
|
||||||
}
|
|
||||||
|
|
||||||
//export startTUN
|
|
||||||
func startTUN(fd C.int, port C.longlong) {
|
|
||||||
i := int64(port)
|
|
||||||
ServicePort = i
|
|
||||||
if fd == 0 {
|
|
||||||
tunLock.Lock()
|
|
||||||
defer tunLock.Unlock()
|
|
||||||
now := time.Now()
|
|
||||||
runTime = &now
|
|
||||||
SendMessage(Message{
|
|
||||||
Type: StartedMessage,
|
|
||||||
Data: strconv.FormatInt(runTime.UnixMilli(), 10),
|
|
||||||
})
|
|
||||||
return
|
|
||||||
}
|
|
||||||
initSocketHook()
|
|
||||||
go func() {
|
|
||||||
tunLock.Lock()
|
|
||||||
defer tunLock.Unlock()
|
|
||||||
f := int(fd)
|
|
||||||
tunListener, _ = t.Start(f, currentConfig.General.Tun.Device, currentConfig.General.Tun.Stack)
|
|
||||||
if tunListener != nil {
|
|
||||||
log.Infoln("TUN address: %v", tunListener.Address())
|
|
||||||
}
|
|
||||||
now := time.Now()
|
|
||||||
runTime = &now
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
//export getRunTime
|
|
||||||
func getRunTime() *C.char {
|
|
||||||
if runTime == nil {
|
|
||||||
return C.CString("")
|
|
||||||
}
|
|
||||||
return C.CString(strconv.FormatInt(runTime.UnixMilli(), 10))
|
|
||||||
}
|
|
||||||
|
|
||||||
//export stopTun
|
|
||||||
func stopTun() {
|
|
||||||
removeSocketHook()
|
|
||||||
go func() {
|
|
||||||
tunLock.Lock()
|
|
||||||
defer tunLock.Unlock()
|
|
||||||
|
|
||||||
runTime = nil
|
|
||||||
|
|
||||||
if tunListener != nil {
|
|
||||||
_ = tunListener.Close()
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
//export setFdMap
|
|
||||||
func setFdMap(fd C.long) {
|
|
||||||
fdInt := int64(fd)
|
|
||||||
go func() {
|
|
||||||
fdMap.Store(fdInt)
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
func markSocket(fd Fd) {
|
|
||||||
SendMessage(Message{
|
|
||||||
Type: ProtectMessage,
|
|
||||||
Data: fd,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
func initSocketHook() {
|
|
||||||
dialer.DefaultSocketHook = func(network, address string, conn syscall.RawConn) error {
|
|
||||||
if platform.ShouldBlockConnection() {
|
|
||||||
return errBlocked
|
|
||||||
}
|
|
||||||
return conn.Control(func(fd uintptr) {
|
|
||||||
fdInt := int64(fd)
|
|
||||||
timeout := time.After(500 * time.Millisecond)
|
|
||||||
id := atomic.AddInt64(&fdCounter, 1)
|
|
||||||
|
|
||||||
markSocket(Fd{
|
|
||||||
Id: id,
|
|
||||||
Value: fdInt,
|
|
||||||
})
|
|
||||||
|
|
||||||
for {
|
|
||||||
select {
|
|
||||||
case <-timeout:
|
|
||||||
return
|
|
||||||
default:
|
|
||||||
exists := fdMap.Load(id)
|
|
||||||
if exists {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
time.Sleep(20 * time.Millisecond)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func removeSocketHook() {
|
|
||||||
dialer.DefaultSocketHook = nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
process.DefaultPackageNameResolver = func(metadata *constant.Metadata) (string, error) {
|
|
||||||
if metadata == nil {
|
|
||||||
return "", process.ErrInvalidNetwork
|
|
||||||
}
|
|
||||||
id := atomic.AddInt64(&counter, 1)
|
|
||||||
|
|
||||||
timeout := time.After(200 * time.Millisecond)
|
|
||||||
|
|
||||||
SendMessage(Message{
|
|
||||||
Type: ProcessMessage,
|
|
||||||
Data: Process{
|
|
||||||
Id: id,
|
|
||||||
Metadata: metadata,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
for {
|
|
||||||
select {
|
|
||||||
case <-timeout:
|
|
||||||
return "", errors.New("package resolver timeout")
|
|
||||||
default:
|
|
||||||
value, exists := processMap.Load(id)
|
|
||||||
if exists {
|
|
||||||
return value, nil
|
|
||||||
}
|
|
||||||
time.Sleep(20 * time.Millisecond)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//export setProcessMap
|
|
||||||
func setProcessMap(s *C.char) {
|
|
||||||
if s == nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
paramsString := C.GoString(s)
|
|
||||||
go func() {
|
|
||||||
var processMapItem = &ProcessMapItem{}
|
|
||||||
err := json.Unmarshal([]byte(paramsString), processMapItem)
|
|
||||||
if err == nil {
|
|
||||||
processMap.Store(processMapItem.Id, processMapItem.Value)
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
//export getCurrentProfileName
|
|
||||||
func getCurrentProfileName() *C.char {
|
|
||||||
if state.CurrentState == nil {
|
|
||||||
return C.CString("")
|
|
||||||
}
|
|
||||||
return C.CString(state.CurrentState.CurrentProfileName)
|
|
||||||
}
|
|
||||||
|
|
||||||
//export getAndroidVpnOptions
|
|
||||||
func getAndroidVpnOptions() *C.char {
|
|
||||||
tunLock.Lock()
|
|
||||||
defer tunLock.Unlock()
|
|
||||||
options := state.AndroidVpnOptions{
|
|
||||||
Enable: state.CurrentState.Enable,
|
|
||||||
Port: currentConfig.General.MixedPort,
|
|
||||||
Ipv4Address: state.DefaultIpv4Address,
|
|
||||||
Ipv6Address: state.GetIpv6Address(),
|
|
||||||
AccessControl: state.CurrentState.AccessControl,
|
|
||||||
SystemProxy: state.CurrentState.SystemProxy,
|
|
||||||
AllowBypass: state.CurrentState.AllowBypass,
|
|
||||||
RouteAddress: state.CurrentState.RouteAddress,
|
|
||||||
BypassDomain: state.CurrentState.BypassDomain,
|
|
||||||
DnsServerAddress: state.GetDnsServerAddress(),
|
|
||||||
}
|
|
||||||
data, err := json.Marshal(options)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println("Error:", err)
|
|
||||||
return C.CString("")
|
|
||||||
}
|
|
||||||
return C.CString(string(data))
|
|
||||||
}
|
|
||||||
|
|
||||||
//export setState
|
|
||||||
func setState(s *C.char) {
|
|
||||||
paramsString := C.GoString(s)
|
|
||||||
err := json.Unmarshal([]byte(paramsString), state.CurrentState)
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//export updateDns
|
|
||||||
func updateDns(s *C.char) {
|
|
||||||
dnsList := C.GoString(s)
|
|
||||||
go func() {
|
|
||||||
log.Infoln("[DNS] updateDns %s", dnsList)
|
|
||||||
dns.UpdateSystemDNS(strings.Split(dnsList, ","))
|
|
||||||
dns.FlushCacheWithDefaultResolver()
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
36
core/log.go
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import "C"
|
||||||
|
import (
|
||||||
|
bridge "core/dart-bridge"
|
||||||
|
"github.com/metacubex/mihomo/common/observable"
|
||||||
|
"github.com/metacubex/mihomo/log"
|
||||||
|
)
|
||||||
|
|
||||||
|
var logSubscriber observable.Subscription[log.Event]
|
||||||
|
|
||||||
|
//export startLog
|
||||||
|
func startLog() {
|
||||||
|
if logSubscriber != nil {
|
||||||
|
log.UnSubscribe(logSubscriber)
|
||||||
|
logSubscriber = nil
|
||||||
|
}
|
||||||
|
logSubscriber = log.Subscribe()
|
||||||
|
go func() {
|
||||||
|
for logData := range logSubscriber {
|
||||||
|
message := &bridge.Message{
|
||||||
|
Type: bridge.Log,
|
||||||
|
Data: logData,
|
||||||
|
}
|
||||||
|
bridge.SendMessage(*message)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
|
//export stopLog
|
||||||
|
func stopLog() {
|
||||||
|
if logSubscriber != nil {
|
||||||
|
log.UnSubscribe(logSubscriber)
|
||||||
|
logSubscriber = nil
|
||||||
|
}
|
||||||
|
}
|
||||||
11
core/main.go
@@ -1,17 +1,10 @@
|
|||||||
//go:build !cgo
|
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
|
import "C"
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
args := os.Args
|
fmt.Println("init clash")
|
||||||
if len(args) <= 1 {
|
|
||||||
fmt.Println("Arguments error")
|
|
||||||
os.Exit(1)
|
|
||||||
}
|
|
||||||
startServer(args[1])
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
//go:build cgo
|
|
||||||
|
|
||||||
package main
|
|
||||||
|
|
||||||
import "C"
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
//go:build !cgo
|
|
||||||
|
|
||||||
package main
|
|
||||||
|
|
||||||
func SendMessage(message Message) {
|
|
||||||
s, err := message.Json()
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
Action{
|
|
||||||
Method: messageMethod,
|
|
||||||
}.callback(s)
|
|
||||||
}
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
//go:build cgo
|
|
||||||
|
|
||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
bridge "core/dart-bridge"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
Port int64 = -1
|
|
||||||
ServicePort int64 = -1
|
|
||||||
)
|
|
||||||
|
|
||||||
func SendMessage(message Message) {
|
|
||||||
s, err := message.Json()
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if handler, ok := messageHandlers[message.Type]; ok {
|
|
||||||
handler(s)
|
|
||||||
} else {
|
|
||||||
sendToPort(s)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var messageHandlers = map[MessageType]func(string) bool{
|
|
||||||
ProtectMessage: sendToServicePort,
|
|
||||||
ProcessMessage: sendToServicePort,
|
|
||||||
StartedMessage: conditionalSend,
|
|
||||||
LoadedMessage: conditionalSend,
|
|
||||||
}
|
|
||||||
|
|
||||||
func sendToPort(s string) bool {
|
|
||||||
return bridge.SendToPort(Port, s)
|
|
||||||
}
|
|
||||||
|
|
||||||
func sendToServicePort(s string) bool {
|
|
||||||
return bridge.SendToPort(ServicePort, s)
|
|
||||||
}
|
|
||||||
|
|
||||||
func conditionalSend(s string) bool {
|
|
||||||
isSuccess := sendToPort(s)
|
|
||||||
if !isSuccess {
|
|
||||||
return sendToServicePort(s)
|
|
||||||
}
|
|
||||||
return isSuccess
|
|
||||||
}
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
//go:build android && cgo
|
|
||||||
|
|
||||||
package platform
|
|
||||||
|
|
||||||
import "syscall"
|
|
||||||
|
|
||||||
var nullFd int
|
|
||||||
var maxFdCount int
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
fd, err := syscall.Open("/dev/null", syscall.O_WRONLY, 0644)
|
|
||||||
if err != nil {
|
|
||||||
panic(err.Error())
|
|
||||||
}
|
|
||||||
|
|
||||||
nullFd = fd
|
|
||||||
|
|
||||||
var limit syscall.Rlimit
|
|
||||||
|
|
||||||
if err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &limit); err != nil {
|
|
||||||
maxFdCount = 1024
|
|
||||||
} else {
|
|
||||||
maxFdCount = int(limit.Cur)
|
|
||||||
}
|
|
||||||
|
|
||||||
maxFdCount = maxFdCount / 4 * 3
|
|
||||||
}
|
|
||||||
|
|
||||||
func ShouldBlockConnection() bool {
|
|
||||||
fd, err := syscall.Dup(nullFd)
|
|
||||||
if err != nil {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
_ = syscall.Close(fd)
|
|
||||||
|
|
||||||
if fd > maxFdCount {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
3
core/process.go
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
//go:build android
|
||||||
|
|
||||||
|
package main
|
||||||
173
core/server.go
@@ -1,173 +0,0 @@
|
|||||||
//go:build !cgo
|
|
||||||
|
|
||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bufio"
|
|
||||||
"encoding/json"
|
|
||||||
"fmt"
|
|
||||||
"net"
|
|
||||||
"strconv"
|
|
||||||
)
|
|
||||||
|
|
||||||
var conn net.Conn = nil
|
|
||||||
|
|
||||||
func startServer(arg string) {
|
|
||||||
_, err := strconv.Atoi(arg)
|
|
||||||
if err != nil {
|
|
||||||
conn, err = net.Dial("unix", arg)
|
|
||||||
} else {
|
|
||||||
conn, err = net.Dial("tcp", fmt.Sprintf("127.0.0.1:%s", arg))
|
|
||||||
}
|
|
||||||
if err != nil {
|
|
||||||
panic(err.Error())
|
|
||||||
}
|
|
||||||
|
|
||||||
defer func(conn net.Conn) {
|
|
||||||
_ = conn.Close()
|
|
||||||
}(conn)
|
|
||||||
|
|
||||||
reader := bufio.NewReader(conn)
|
|
||||||
|
|
||||||
for {
|
|
||||||
data, err := reader.ReadString('\n')
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
var action = &Action{}
|
|
||||||
|
|
||||||
err = json.Unmarshal([]byte(data), action)
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
go handleAction(action)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleAction(action *Action) {
|
|
||||||
switch action.Method {
|
|
||||||
case initClashMethod:
|
|
||||||
data := action.Data.(string)
|
|
||||||
action.callback(handleInitClash(data))
|
|
||||||
return
|
|
||||||
case getIsInitMethod:
|
|
||||||
action.callback(handleGetIsInit())
|
|
||||||
return
|
|
||||||
case forceGcMethod:
|
|
||||||
handleForceGc()
|
|
||||||
return
|
|
||||||
case shutdownMethod:
|
|
||||||
action.callback(handleShutdown())
|
|
||||||
return
|
|
||||||
case validateConfigMethod:
|
|
||||||
data := []byte(action.Data.(string))
|
|
||||||
action.callback(handleValidateConfig(data))
|
|
||||||
return
|
|
||||||
case updateConfigMethod:
|
|
||||||
data := []byte(action.Data.(string))
|
|
||||||
action.callback(handleUpdateConfig(data))
|
|
||||||
return
|
|
||||||
case getProxiesMethod:
|
|
||||||
action.callback(handleGetProxies())
|
|
||||||
return
|
|
||||||
case changeProxyMethod:
|
|
||||||
data := action.Data.(string)
|
|
||||||
handleChangeProxy(data, func(value string) {
|
|
||||||
action.callback(value)
|
|
||||||
})
|
|
||||||
return
|
|
||||||
case getTrafficMethod:
|
|
||||||
data := action.Data.(bool)
|
|
||||||
action.callback(handleGetTraffic(data))
|
|
||||||
return
|
|
||||||
case getTotalTrafficMethod:
|
|
||||||
data := action.Data.(bool)
|
|
||||||
action.callback(handleGetTotalTraffic(data))
|
|
||||||
return
|
|
||||||
case resetTrafficMethod:
|
|
||||||
handleResetTraffic()
|
|
||||||
return
|
|
||||||
case asyncTestDelayMethod:
|
|
||||||
data := action.Data.(string)
|
|
||||||
handleAsyncTestDelay(data, func(value string) {
|
|
||||||
action.callback(value)
|
|
||||||
})
|
|
||||||
return
|
|
||||||
case getConnectionsMethod:
|
|
||||||
action.callback(handleGetConnections())
|
|
||||||
return
|
|
||||||
case closeConnectionsMethod:
|
|
||||||
action.callback(handleCloseConnections())
|
|
||||||
return
|
|
||||||
case closeConnectionMethod:
|
|
||||||
id := action.Data.(string)
|
|
||||||
action.callback(handleCloseConnection(id))
|
|
||||||
return
|
|
||||||
case getExternalProvidersMethod:
|
|
||||||
action.callback(handleGetExternalProviders())
|
|
||||||
return
|
|
||||||
case getExternalProviderMethod:
|
|
||||||
externalProviderName := action.Data.(string)
|
|
||||||
action.callback(handleGetExternalProvider(externalProviderName))
|
|
||||||
case updateGeoDataMethod:
|
|
||||||
paramsString := action.Data.(string)
|
|
||||||
var params = map[string]string{}
|
|
||||||
err := json.Unmarshal([]byte(paramsString), ¶ms)
|
|
||||||
if err != nil {
|
|
||||||
action.callback(err.Error())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
geoType := params["geoType"]
|
|
||||||
geoName := params["geoName"]
|
|
||||||
handleUpdateGeoData(geoType, geoName, func(value string) {
|
|
||||||
action.callback(value)
|
|
||||||
})
|
|
||||||
return
|
|
||||||
case updateExternalProviderMethod:
|
|
||||||
providerName := action.Data.(string)
|
|
||||||
handleUpdateExternalProvider(providerName, func(value string) {
|
|
||||||
action.callback(value)
|
|
||||||
})
|
|
||||||
return
|
|
||||||
case sideLoadExternalProviderMethod:
|
|
||||||
paramsString := action.Data.(string)
|
|
||||||
var params = map[string]string{}
|
|
||||||
err := json.Unmarshal([]byte(paramsString), ¶ms)
|
|
||||||
if err != nil {
|
|
||||||
action.callback(err.Error())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
providerName := params["providerName"]
|
|
||||||
data := params["data"]
|
|
||||||
handleSideLoadExternalProvider(providerName, []byte(data), func(value string) {
|
|
||||||
action.callback(value)
|
|
||||||
})
|
|
||||||
return
|
|
||||||
case startLogMethod:
|
|
||||||
handleStartLog()
|
|
||||||
return
|
|
||||||
case stopLogMethod:
|
|
||||||
handleStopLog()
|
|
||||||
return
|
|
||||||
case startListenerMethod:
|
|
||||||
action.callback(handleStartListener())
|
|
||||||
return
|
|
||||||
case stopListenerMethod:
|
|
||||||
action.callback(handleStopListener())
|
|
||||||
return
|
|
||||||
case getCountryCodeMethod:
|
|
||||||
ip := action.Data.(string)
|
|
||||||
handleGetCountryCode(ip, func(value string) {
|
|
||||||
action.callback(value)
|
|
||||||
})
|
|
||||||
return
|
|
||||||
case getMemoryMethod:
|
|
||||||
handleGetMemory(func(value string) {
|
|
||||||
action.callback(value)
|
|
||||||
})
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,56 +0,0 @@
|
|||||||
//go:build android && cgo
|
|
||||||
|
|
||||||
package state
|
|
||||||
|
|
||||||
var DefaultIpv4Address = "172.19.0.1/30"
|
|
||||||
var DefaultDnsAddress = "172.19.0.2"
|
|
||||||
var DefaultIpv6Address = "fdfe:dcba:9876::1/126"
|
|
||||||
|
|
||||||
type AndroidVpnOptions struct {
|
|
||||||
Enable bool `json:"enable"`
|
|
||||||
Port int `json:"port"`
|
|
||||||
AccessControl *AccessControl `json:"accessControl"`
|
|
||||||
AllowBypass bool `json:"allowBypass"`
|
|
||||||
SystemProxy bool `json:"systemProxy"`
|
|
||||||
BypassDomain []string `json:"bypassDomain"`
|
|
||||||
RouteAddress []string `json:"routeAddress"`
|
|
||||||
Ipv4Address string `json:"ipv4Address"`
|
|
||||||
Ipv6Address string `json:"ipv6Address"`
|
|
||||||
DnsServerAddress string `json:"dnsServerAddress"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type AccessControl struct {
|
|
||||||
Mode string `json:"mode"`
|
|
||||||
AcceptList []string `json:"acceptList"`
|
|
||||||
RejectList []string `json:"rejectList"`
|
|
||||||
IsFilterSystemApp bool `json:"isFilterSystemApp"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type AndroidVpnRawOptions struct {
|
|
||||||
Enable bool `json:"enable"`
|
|
||||||
AccessControl *AccessControl `json:"accessControl"`
|
|
||||||
AllowBypass bool `json:"allowBypass"`
|
|
||||||
SystemProxy bool `json:"systemProxy"`
|
|
||||||
RouteAddress []string `json:"routeAddress"`
|
|
||||||
Ipv6 bool `json:"ipv6"`
|
|
||||||
BypassDomain []string `json:"bypassDomain"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type State struct {
|
|
||||||
AndroidVpnRawOptions
|
|
||||||
CurrentProfileName string `json:"currentProfileName"`
|
|
||||||
}
|
|
||||||
|
|
||||||
var CurrentState = &State{}
|
|
||||||
|
|
||||||
func GetIpv6Address() string {
|
|
||||||
if CurrentState.Ipv6 {
|
|
||||||
return DefaultIpv6Address
|
|
||||||
} else {
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func GetDnsServerAddress() string {
|
|
||||||
return DefaultDnsAddress
|
|
||||||
}
|
|
||||||