mirror of
https://github.com/remittor/zapret-openwrt.git
synced 2025-12-17 13:08:27 +03:00
Compare commits
64 Commits
v70.202503
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
252a7eab9d | ||
|
|
73104ca3ca | ||
|
|
a5156e0d0c | ||
|
|
565ef66299 | ||
|
|
1364bcbf1a | ||
|
|
57ba961b07 | ||
|
|
3a37ec9172 | ||
|
|
e0ecbf5145 | ||
|
|
cc7ae8a91c | ||
|
|
50ce130e1c | ||
|
|
ac97bfae89 | ||
|
|
058b3af2b3 | ||
|
|
029923bac7 | ||
|
|
6aa114e87f | ||
|
|
ebd13f65c3 | ||
|
|
a95c938c78 | ||
|
|
98dcd66524 | ||
|
|
1e2a9f48a2 | ||
|
|
f63ce9d1e2 | ||
|
|
3f17898289 | ||
|
|
52bd72079c | ||
|
|
6627678827 | ||
|
|
5691882d5e | ||
|
|
fee8b480b0 | ||
|
|
2fb3ac3cc1 | ||
|
|
f443195a44 | ||
|
|
5b65e2078f | ||
|
|
18b9394679 | ||
|
|
6ea3432d0c | ||
|
|
5b28626ac0 | ||
|
|
6cbf1e3c47 | ||
|
|
2b04a6f37a | ||
|
|
8ed3a6e3ae | ||
|
|
55daf2f006 | ||
|
|
c60b70a02f | ||
|
|
44ff0ec3e1 | ||
|
|
65d90d8ed3 | ||
|
|
e8dfb187e3 | ||
|
|
1b2057f00f | ||
|
|
7941f12c63 | ||
|
|
81f4b493f6 | ||
|
|
bd2e62c8a6 | ||
|
|
caa82938c1 | ||
|
|
b1fd577bd1 | ||
|
|
e8fc868226 | ||
|
|
2670ff2985 | ||
|
|
dda8f254a0 | ||
|
|
62401bbad5 | ||
|
|
c31fab4aaf | ||
|
|
d56cd06281 | ||
|
|
5f681a372a | ||
|
|
d9d339e157 | ||
|
|
dfbd77bb91 | ||
|
|
aa4adc0c50 | ||
|
|
919c91a6c7 | ||
|
|
da2cf34f9f | ||
|
|
6b1825387f | ||
|
|
ca2b1378c6 | ||
|
|
d0b03e60b6 | ||
|
|
d4fb54c2c0 | ||
|
|
5a7676c6f5 | ||
|
|
60865aa602 | ||
|
|
f6dd684b62 | ||
|
|
fee8520332 |
13
.github/workflows/build.yml
vendored
13
.github/workflows/build.yml
vendored
@@ -137,12 +137,13 @@ jobs:
|
||||
- mipsel_24kc_24kf
|
||||
- mipsel_74kc
|
||||
- mipsel_mips32
|
||||
- riscv64_riscv64
|
||||
- x86_64
|
||||
isTestOrFake:
|
||||
- ${{ needs.check.outputs.test_build == 'true' || needs.check.outputs.fake_build == 'true' }}
|
||||
exclude:
|
||||
- branch: openwrt-24.10
|
||||
arch: arm_cortex-a7_neon-vfpv4
|
||||
arch: riscv64_riscv64
|
||||
- branch: SNAPSHOT
|
||||
arch: arm_cortex-a9_vfpv3-d16
|
||||
- { isTestOrFake: true }
|
||||
@@ -172,7 +173,8 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
# gpg --verbose --recv-keys 0x1D53D1877742E911
|
||||
gpg --verbose --import <(wget -qO- 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=gpg/0x1D53D1877742E911.asc')
|
||||
# gpg --verbose --import <(wget -qO- 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=gpg/0x1D53D1877742E911.asc')
|
||||
gpg --verbose --import <(wget -qO- 'https://raw.githubusercontent.com/openwrt/keyring/refs/heads/master/gpg/0x1D53D1877742E911.asc')
|
||||
# disable check signatures
|
||||
sed -i 's/gpg --/#gpg --/g' setup.sh
|
||||
# disable cleanup keys
|
||||
@@ -208,6 +210,8 @@ jobs:
|
||||
PKGDIR=$GITHUB_WORKSPACE/zapret-openwrt
|
||||
MKFN=$PKGDIR/luci-app-zapret/Makefile
|
||||
PKGVER=$( grep -s '^PKG_VERSION:=.*' $MKFN | cut -d'=' -f2 )
|
||||
PKGREL=$( grep -s '^PKG_RELEASE:=.*' $MKFN | cut -d'=' -f2 )
|
||||
[ "$PKGREL" != "1" ] && PKGVER=$PKGVER-r$PKGREL
|
||||
echo "PKG_VERSION = $PKGVER"
|
||||
cp -vr $PKGDIR ./package/zapret-openwrt/
|
||||
|
||||
@@ -339,12 +343,13 @@ jobs:
|
||||
ls -lh ./public/*.zip
|
||||
|
||||
- name: Upload assets
|
||||
uses: andelf/nightly-release@main
|
||||
uses: softprops/action-gh-release@v2
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
TAG: ${{ needs.check.outputs.tag }}
|
||||
with:
|
||||
prerelease: ${{ env.TEST_BUILD == 'true' || env.FAKE_BUILD == 'true' }}
|
||||
draft: ${{ env.TEST_BUILD == 'true' || env.FAKE_BUILD == 'true' }}
|
||||
prerelease: true
|
||||
tag_name: v${{ needs.build.outputs.pkgver }}${{ env.TAG_SUFFIX }}
|
||||
name: zapret v${{ needs.build.outputs.pkgver }}
|
||||
body: |
|
||||
|
||||
140
.github/workflows/releases.yml
vendored
Normal file
140
.github/workflows/releases.yml
vendored
Normal file
@@ -0,0 +1,140 @@
|
||||
name: Update releases.json
|
||||
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: ["build"]
|
||||
types: [completed]
|
||||
release:
|
||||
types: [published, created, edited]
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
update-json:
|
||||
if: |
|
||||
github.event_name != 'workflow_run' ||
|
||||
github.event.workflow_run.conclusion == 'success'
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout gh-pages
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: gh-pages
|
||||
continue-on-error: true
|
||||
|
||||
- name: Save FULL releases.json
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
OWNER: ${{ github.repository_owner }}
|
||||
REPO: ${{ github.event.repository.name }}
|
||||
run: |
|
||||
curl -s \
|
||||
-H "Authorization: Bearer $GH_TOKEN" \
|
||||
-H "Accept: application/vnd.github+json" \
|
||||
https://api.github.com/repos/$OWNER/$REPO/releases \
|
||||
> releases.json
|
||||
|
||||
- name: Generate releases_BRANCH.json
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
OWNER: ${{ github.repository_owner }}
|
||||
REPO: ${{ github.event.repository.name }}
|
||||
run: |
|
||||
curl -s \
|
||||
-H "Authorization: Bearer $GH_TOKEN" \
|
||||
-H "Accept: application/vnd.github+json" \
|
||||
https://api.github.com/repos/$OWNER/$REPO/releases \
|
||||
| jq '
|
||||
def normalize_release:
|
||||
{
|
||||
id: .id,
|
||||
version: (.tag_name | sub("^v"; "")),
|
||||
tag: .tag_name,
|
||||
name: .name,
|
||||
draft: .draft,
|
||||
prerelease: .prerelease,
|
||||
created_at: .created_at,
|
||||
published_at: .published_at,
|
||||
url: .html_url,
|
||||
assets: (
|
||||
.assets | map({
|
||||
id: .id,
|
||||
name: .name,
|
||||
size: .size,
|
||||
content_type: .content_type,
|
||||
browser_download_url: .browser_download_url
|
||||
})
|
||||
)
|
||||
};
|
||||
sort_by(.created_at) | reverse
|
||||
| {
|
||||
zap1: (
|
||||
map(select(.draft == false))
|
||||
| map(select(.name | startswith("zapret ")))
|
||||
| .[0:20]
|
||||
| {
|
||||
generated_at: (now | todate),
|
||||
releases: map(normalize_release)
|
||||
}
|
||||
),
|
||||
zap2: (
|
||||
map(select(.draft == false))
|
||||
| map(select(.name | startswith("zapret2 ")))
|
||||
| .[0:20]
|
||||
| {
|
||||
generated_at: (now | todate),
|
||||
releases: map(normalize_release)
|
||||
}
|
||||
)
|
||||
}
|
||||
' \
|
||||
| tee \
|
||||
>(jq '.zap1' > releases_zap1.json) \
|
||||
>(jq '.zap2' > releases_zap2.json)
|
||||
|
||||
- name: Generate releases_BRANCH_ARCH.json
|
||||
run: |
|
||||
BRANCHES=("zap1" "zap2")
|
||||
for ARCH in $(jq -r '.[] | .assets[].name | capture("^[^_]+_[^_]+_(?<arch>.+)\\.zip$").arch' releases.json | sort -u); do
|
||||
for BRANCH in "${BRANCHES[@]}"; do
|
||||
if [ "$BRANCH" == "zap1" ]; then
|
||||
PREFIX="zapret "
|
||||
else
|
||||
PREFIX="zapret2 "
|
||||
fi
|
||||
jq --arg prefix "$PREFIX" --arg arch "$ARCH" '
|
||||
sort_by(.created_at) | reverse
|
||||
| map(select(.draft == false))
|
||||
| map(select(.name | startswith($prefix)))
|
||||
| .[0:20]
|
||||
| map(
|
||||
. as $release
|
||||
| {
|
||||
tag: $release.tag_name,
|
||||
name: $release.name,
|
||||
prerelease: $release.prerelease,
|
||||
created_at: $release.created_at,
|
||||
updated_at: $release.updated_at,
|
||||
published_at: $release.published_at,
|
||||
url: $release.html_url,
|
||||
assets: ($release.assets | map(select(.name | test("_\($arch)\\.zip$"))))
|
||||
}
|
||||
)
|
||||
| { generated_at: (now | todate), releases: . }
|
||||
' releases.json > "releases_${BRANCH}_${ARCH}.json"
|
||||
done
|
||||
done
|
||||
|
||||
- name: Commit and push ALL releases.json
|
||||
run: |
|
||||
mkdir -p releases
|
||||
mv releases*.json releases/
|
||||
git config user.name "github-actions"
|
||||
git config user.email "github-actions@github.com"
|
||||
git checkout -B gh-pages
|
||||
git add releases/*
|
||||
git commit -m "Update releases" || exit 0
|
||||
git push origin gh-pages
|
||||
@@ -5,7 +5,8 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=luci-app-zapret
|
||||
PKG_VERSION:=70.20250323
|
||||
PKG_VERSION:=72.20251217
|
||||
PKG_RELEASE:=1
|
||||
PKG_LICENSE:=MIT
|
||||
PKG_MAINTAINER:=remittor <https://github.com/remittor>
|
||||
|
||||
|
||||
@@ -173,16 +173,16 @@ return view.extend({
|
||||
|
||||
let tab = E('div', { 'data-tab': tabname, 'data-tab-title': tabNameText }, [
|
||||
E('div', { 'id': 'content_dmnlog_' + log_num }, [
|
||||
E('div', {'style': 'padding-bottom: 20px'}, [ scrollDownButton ]),
|
||||
E('div', {'style': 'margin-bottom: 20px; '}, [ scrollDownButton ]),
|
||||
E('textarea', {
|
||||
'id': log_id,
|
||||
'name': log_name,
|
||||
'style': 'font-size:12px',
|
||||
'style': 'font-size:12px; width: 100%; max-height: 50vh;',
|
||||
'readonly': 'readonly',
|
||||
'wrap': 'off',
|
||||
'rows': logdata[log_num].rows,
|
||||
}, [ log_text ]),
|
||||
E('div', {'style': 'padding-bottom: 20px'}, [ scrollUpButton ]),
|
||||
E('div', {'style': 'margin-top: 20px'}, [ scrollUpButton ]),
|
||||
]),
|
||||
]);
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
'require ui';
|
||||
'require view';
|
||||
'require view.zapret.tools as tools';
|
||||
'require view.zapret.updater as updater';
|
||||
|
||||
const btn_style_neutral = 'btn';
|
||||
const btn_style_action = 'btn cbi-button-action';
|
||||
@@ -21,8 +22,8 @@ return view.extend({
|
||||
start : elems.btn_start || document.getElementById('btn_start'),
|
||||
restart : elems.btn_restart || document.getElementById('btn_restart'),
|
||||
stop : elems.btn_stop || document.getElementById('btn_stop'),
|
||||
reset : elems.btn_reset || document.getElementById('btn_reset'),
|
||||
update : elems.btn_update || document.getElementById('btn_update'),
|
||||
reset : elems.btn_update || document.getElementById('btn_reset'),
|
||||
};
|
||||
},
|
||||
|
||||
@@ -37,17 +38,19 @@ return view.extend({
|
||||
btn.start.disabled = flag;
|
||||
btn.restart.disabled = flag;
|
||||
btn.stop.disabled = flag;
|
||||
btn.update.disabled = true; // TODO
|
||||
btn.reset.disabled = (error_code == 0) ? flag : false;
|
||||
btn.update.disabled = (error_code == 0) ? flag : false;
|
||||
},
|
||||
|
||||
getAppStatus: function() {
|
||||
return Promise.all([
|
||||
tools.getInitState(tools.appName), // svc_boot
|
||||
fs.exec(tools.execPath, [ 'enabled' ]), // svc_en
|
||||
fs.exec(tools.execPath, [ 'info' ]), // svc_info
|
||||
tools.getSvcInfo(), // svc_info
|
||||
fs.exec('/bin/busybox', [ 'ps' ]), // process list
|
||||
fs.exec(tools.packager.path, tools.packager.args), // installed packages
|
||||
tools.getStratList(), // nfqws strategy list
|
||||
fs.exec('/bin/cat', [ '/etc/openwrt_release' ]), // CPU arch
|
||||
uci.load(tools.appName), // config
|
||||
]).catch(e => {
|
||||
ui.addNotification(null, E('p', _('Unable to execute or read contents')
|
||||
@@ -61,7 +64,7 @@ return view.extend({
|
||||
let cfg = uci.get(tools.appName, 'config');
|
||||
if (!status_array || cfg == null || typeof(cfg) !== 'object') {
|
||||
let elem_status = elems.status || document.getElementById("status");
|
||||
elem_status.innerHTML = tools.makeStatusString(null);
|
||||
elem_status.innerHTML = tools.makeStatusString(null, '', '');
|
||||
ui.addNotification(null, E('p', _('Unable to read the contents') + ': setAppStatus()'));
|
||||
this.disableButtons(true, -1, elems);
|
||||
return;
|
||||
@@ -71,11 +74,16 @@ return view.extend({
|
||||
let svc_info = status_array[2]; // stdout: JSON as text
|
||||
let proc_list = status_array[3]; // stdout: multiline text
|
||||
let pkg_list = status_array[4]; // stdout: installed packages
|
||||
let stratlist = status_array[5]; // array of strat names
|
||||
let sys_info = status_array[6]; // stdout: openwrt distrib info
|
||||
|
||||
this.nfqws_strat_list = stratlist;
|
||||
this.pkg_arch = tools.getConfigPar(sys_info.stdout, 'DISTRIB_ARCH', 'unknown');
|
||||
|
||||
//console.log('svc_en: ' + svc_en.code);
|
||||
svc_en = (svc_en.code == 0) ? true : false;
|
||||
|
||||
if (svc_info.code != 0) {
|
||||
if (typeof(svc_info) !== 'object') {
|
||||
ui.addNotification(null, E('p', _('Unable to read the service info') + ': setAppStatus()'));
|
||||
this.disableButtons(true, -1, elems);
|
||||
return;
|
||||
@@ -97,8 +105,8 @@ return view.extend({
|
||||
svcinfo = tools.decode_svc_info(svc_en, svc_info, proc_list, cfg);
|
||||
}
|
||||
let btn = this.get_svc_buttons(elems);
|
||||
btn.update.disabled = true; // TODO
|
||||
btn.reset.disabled = false;
|
||||
btn.update.disabled = false;
|
||||
|
||||
if (Number.isInteger(svcinfo)) {
|
||||
ui.addNotification(null, E('p', _('Error')
|
||||
@@ -118,7 +126,7 @@ return view.extend({
|
||||
}
|
||||
}
|
||||
let elem_status = elems.status || document.getElementById("status");
|
||||
elem_status.innerHTML = tools.makeStatusString(svcinfo, cfg.FWTYPE, 'user_only');
|
||||
elem_status.innerHTML = tools.makeStatusString(svcinfo, this.pkg_arch, '');
|
||||
|
||||
if (!poll.active()) {
|
||||
poll.start();
|
||||
@@ -147,7 +155,7 @@ return view.extend({
|
||||
});
|
||||
},
|
||||
|
||||
serviceActionEx: function(action, button, hide_modal = false) {
|
||||
serviceActionEx: function(action, button, args = [ ], hide_modal = false) {
|
||||
if (button) {
|
||||
let elem = document.getElementById(button);
|
||||
this.disableButtons(true, elem);
|
||||
@@ -164,7 +172,7 @@ return view.extend({
|
||||
}
|
||||
else if (action == 'reset') {
|
||||
exec_cmd = tools.defaultCfgPath;
|
||||
exec_arg = [ 'sync' ]; // restore config + sync configs
|
||||
exec_arg = args; // (reset_ipset)(sync) ==> restore all configs + sync config
|
||||
errmsg = _('Unable to run restore-def-cfg.sh script.');
|
||||
action = null;
|
||||
} else {
|
||||
@@ -199,17 +207,7 @@ return view.extend({
|
||||
let elem = document.getElementById(button);
|
||||
this.disableButtons(true, elem);
|
||||
}
|
||||
|
||||
poll.stop();
|
||||
|
||||
if (action === 'update') {
|
||||
this.getAppStatus().then(
|
||||
(status_array) => {
|
||||
this.setAppStatus(status_array, [], 4);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
return fs.exec_direct(tools.execPath, [ action ]).then(res => {
|
||||
return this.getAppStatus().then(
|
||||
(status_array) => {
|
||||
@@ -228,6 +226,33 @@ return view.extend({
|
||||
|
||||
dialogResetCfg: function(ev) {
|
||||
ev.target.blur();
|
||||
|
||||
let reset_base = E('label', [
|
||||
E('input', { type: 'checkbox', id: 'cfg_reset_base', checked: true }),
|
||||
' ', _('Restore all base settings')
|
||||
]);
|
||||
|
||||
let reset_ipset = E('label', [
|
||||
E('input', { type: 'checkbox', id: 'cfg_reset_ipset', checked: true }),
|
||||
' ', _('Restore ipset configs')
|
||||
]);
|
||||
|
||||
let set_autohostlist = E('label', [
|
||||
E('input', { type: 'checkbox', id: 'cfg_autohostlist', checked: true }),
|
||||
' ', _('Set AutoHostList mode')
|
||||
]);
|
||||
|
||||
let strat_list = [ ];
|
||||
strat_list.push( E('option', { value: 'strat__skip__' }, [ '-' ] ) );
|
||||
for (let id = 0; id < this.nfqws_strat_list.length; id++) {
|
||||
let strat = '' + this.nfqws_strat_list[id];
|
||||
strat_list.push( E('option', { value: 'strat_' + id }, [ strat ] ) );
|
||||
}
|
||||
let nfqws_strat = E('label', [
|
||||
_('NFQWS_OPT strategy: '),
|
||||
E('select', { id: 'cfg_nfqws_strat' }, strat_list)
|
||||
]);
|
||||
|
||||
let cancel_button = E('button', {
|
||||
'class': btn_style_neutral,
|
||||
'click': ui.hideModal,
|
||||
@@ -238,12 +263,35 @@ return view.extend({
|
||||
}, _('Reset settings'));
|
||||
resetcfg_btn.onclick = ui.createHandlerFn(this, () => {
|
||||
//cancel_button.disabled = true;
|
||||
return this.serviceActionEx('reset', resetcfg_btn, true);
|
||||
let opt_flags = '';
|
||||
if (document.getElementById('cfg_reset_base').checked == false) {
|
||||
opt_flags += '(skip_base)';
|
||||
};
|
||||
if (document.getElementById('cfg_reset_ipset').checked) {
|
||||
opt_flags += '(reset_ipset)';
|
||||
};
|
||||
if (document.getElementById('cfg_autohostlist').checked) {
|
||||
opt_flags += '(set_mode_autohostlist)';
|
||||
};
|
||||
//console.log('RESET: opt_flags = ' + opt_flags);
|
||||
let sel_strat = document.getElementById('cfg_nfqws_strat');
|
||||
let opt_strat = sel_strat.options[sel_strat.selectedIndex].text;
|
||||
//console.log('RESET: strat = ' + opt_strat);
|
||||
opt_flags += '(sync)';
|
||||
let args = [ opt_flags, opt_strat ];
|
||||
return this.serviceActionEx('reset', resetcfg_btn, args, true);
|
||||
});
|
||||
|
||||
ui.showModal(_('Reset settings to default'), [
|
||||
E('div', { 'class': 'cbi-section' }, [
|
||||
E('p', _('All settings will be reset to default. Continue?')),
|
||||
reset_base,
|
||||
E('br'), E('br'),
|
||||
reset_ipset,
|
||||
E('br'), E('br'),
|
||||
set_autohostlist,
|
||||
E('br'), E('br'),
|
||||
nfqws_strat,
|
||||
E('br'), E('br')
|
||||
]),
|
||||
E('div', { 'class': 'right' }, [
|
||||
cancel_button,
|
||||
@@ -329,14 +377,14 @@ return view.extend({
|
||||
btn_stop.onclick = ui.createHandlerFn(this, this.serviceAction, 'stop', 'btn_stop');
|
||||
layout_append(_('Service daemons control'), null, [ btn_start, btn_restart, btn_stop ] );
|
||||
|
||||
let btn_update = create_btn('btn_update', btn_style_action, _('Update'));
|
||||
btn_update.onclick = ui.createHandlerFn(this, () => { this.appAction('update', 'btn_update') });
|
||||
layout_append(_('Update HostLists'), null, [ btn_update ] );
|
||||
|
||||
let btn_reset = create_btn('btn_reset', btn_style_action, _('Reset settings'));
|
||||
btn_reset.onclick = L.bind(this.dialogResetCfg, this);
|
||||
layout_append(_('Reset settings to default'), null, [ btn_reset ] );
|
||||
|
||||
let btn_update = create_btn('btn_update', btn_style_action, _('Update'));
|
||||
btn_update.onclick = ui.createHandlerFn(this, () => { updater.openUpdateDialog(this.pkg_arch) });
|
||||
layout_append(_('Update package'), null, [ btn_update ] );
|
||||
|
||||
let elems = {
|
||||
"status": status_string,
|
||||
"btn_enable": btn_enable,
|
||||
@@ -344,8 +392,8 @@ return view.extend({
|
||||
"btn_start": btn_start,
|
||||
"btn_restart": btn_restart,
|
||||
"btn_stop": btn_stop,
|
||||
"btn_update": btn_update,
|
||||
"btn_reset": btn_reset,
|
||||
"btn_update": btn_update,
|
||||
};
|
||||
this.setAppStatus(status_array, elems);
|
||||
|
||||
|
||||
@@ -86,11 +86,15 @@ return view.extend({
|
||||
o.rmempty = false;
|
||||
o.default = 0;
|
||||
|
||||
o = s.taboption(tabname, form.ListValue, 'MODE_FILTER', _('MODE_FILTER'));
|
||||
o = s.taboption(tabname, form.Flag, 'FILTER_TTL_EXPIRED_ICMP', 'FILTER_TTL_EXPIRED_ICMP');
|
||||
o.rmempty = false;
|
||||
o.default = 1;
|
||||
|
||||
//o = s.taboption(tabname, form.ListValue, 'MODE_FILTER', _('MODE_FILTER'));
|
||||
//o.value('none', 'none');
|
||||
//o.value('ipset', 'ipset');
|
||||
o.value('hostlist', 'hostlist');
|
||||
o.value('autohostlist', 'autohostlist');
|
||||
//o.value('hostlist', 'hostlist');
|
||||
//o.value('autohostlist', 'autohostlist');
|
||||
|
||||
o = s.taboption(tabname, form.Value, 'WS_USER', _('WS_USER'));
|
||||
o.rmempty = false;
|
||||
@@ -105,10 +109,13 @@ return view.extend({
|
||||
tabname = 'nfqws_params';
|
||||
s.tab(tabname, _('NFQWS options'));
|
||||
|
||||
let add_delim = function(sec) {
|
||||
let add_delim = function(sec, url = null) {
|
||||
let o = sec.taboption(tabname, form.DummyValue, '_hr');
|
||||
o.rawhtml = true;
|
||||
o.default = '<hr style="width: 620px; height: 1px; margin: 1px 0 1px; border-top: 1px solid;">';
|
||||
if (url) {
|
||||
o.default += '<br/>' + _('Help') + ': <a target=_blank href=%s>%s</a>'.format(url);
|
||||
}
|
||||
};
|
||||
|
||||
let add_param = function(sec, param, locname = null, rows = 10, multiline = false) {
|
||||
@@ -140,7 +147,11 @@ return view.extend({
|
||||
val.validate = function(section_id, value) {
|
||||
return (value) ? value.trim() : "";
|
||||
};
|
||||
btn.onclick = () => new tools.longstrEditDialog('config', param, param, locname, rows, multiline).show();
|
||||
let desc = locname;
|
||||
if (multiline == 2) {
|
||||
desc += '<br/>' + _('Example') + ': <a target=_blank href=%s>%s</a>'.format(tools.nfqws_opt_url);
|
||||
}
|
||||
btn.onclick = () => new tools.longstrEditDialog('config', param, param, desc, rows, multiline).show();
|
||||
};
|
||||
|
||||
o = s.taboption(tabname, form.Flag, 'NFQWS_ENABLE', _('NFQWS_ENABLE'));
|
||||
@@ -157,6 +168,11 @@ return view.extend({
|
||||
o.rmempty = false;
|
||||
o.datatype = 'string';
|
||||
|
||||
o = s.taboption(tabname, form.Value, 'FILTER_MARK', _('FILTER_MARK'));
|
||||
o.rmempty = false;
|
||||
o.validate = function(section_id, value) { return true; };
|
||||
o.write = function(section_id, value) { return form.Value.prototype.write.call(this, section_id, (value == null || value.trim() == '') ? "\t" : value.trim()); };
|
||||
|
||||
o = s.taboption(tabname, form.Value, 'NFQWS_PORTS_TCP', _('NFQWS_PORTS_TCP'));
|
||||
o.rmempty = false;
|
||||
o.datatype = 'string';
|
||||
@@ -189,14 +205,28 @@ return view.extend({
|
||||
o.rmempty = false;
|
||||
o.datatype = 'uinteger';
|
||||
|
||||
add_delim(s);
|
||||
add_param(s, 'NFQWS_OPT', null, 18, 2);
|
||||
add_delim(s, tools.nfqws_opt_url);
|
||||
add_param(s, 'NFQWS_OPT', null, 21, 2);
|
||||
|
||||
/* AutoHostList settings */
|
||||
|
||||
tabname = 'autohostlist_tab';
|
||||
s.tab(tabname, _('AutoHostList'));
|
||||
|
||||
o = s.taboption(tabname, form.Flag, 'MODE_FILTER', _('Use AutoHostList mode'));
|
||||
o.rmempty = false;
|
||||
o.default = '0';
|
||||
o.validate = function(section_id, value) { return true; };
|
||||
o.load = function(section_id) {
|
||||
return uci.load(tools.appName).then(L.bind(function() {
|
||||
var v = uci.get(tools.appName, section_id, 'MODE_FILTER');
|
||||
return (v === 'autohostlist') ? '1' : '0';
|
||||
}, this));
|
||||
};
|
||||
o.write = function(section_id, value) {
|
||||
return uci.set(tools.appName, section_id, 'MODE_FILTER', value === '1' ? 'autohostlist' : 'hostlist');
|
||||
};
|
||||
|
||||
o = s.taboption(tabname, form.Value, 'AUTOHOSTLIST_RETRANS_THRESHOLD', _('RETRANS_THRESHOLD'));
|
||||
o.rmempty = false;
|
||||
o.datatype = 'uinteger';
|
||||
@@ -333,9 +363,19 @@ return view.extend({
|
||||
tabname = 'custom_d_tab';
|
||||
s.tab(tabname, 'custom.d');
|
||||
|
||||
o = s.taboption(tabname, form.Flag, 'DISABLE_CUSTOM', _('DISABLE_CUSTOM'));
|
||||
o = s.taboption(tabname, form.Flag, 'DISABLE_CUSTOM', _('Use custom.d scripts'));
|
||||
o.rmempty = false;
|
||||
o.default = 0;
|
||||
o.default = '0';
|
||||
o.validate = function(section_id, value) { return true; };
|
||||
o.load = function(section_id) {
|
||||
return uci.load(tools.appName).then(L.bind(function() {
|
||||
var v = uci.get(tools.appName, section_id, 'DISABLE_CUSTOM');
|
||||
return (v === '1') ? '0' : '1';
|
||||
}, this));
|
||||
};
|
||||
o.write = function(section_id, value) {
|
||||
return uci.set(tools.appName, section_id, 'DISABLE_CUSTOM', value === '1' ? '0' : '1');
|
||||
};
|
||||
|
||||
add_delim(s);
|
||||
|
||||
@@ -347,7 +387,16 @@ return view.extend({
|
||||
o.inputtitle = _('Edit');
|
||||
o.inputstyle = 'edit btn';
|
||||
o.description = fn;
|
||||
let desc = (num == tools.discord_num) ? _('Example') + ': <a href=%s>%s</a>'.format(tools.discord_url) : '';
|
||||
let desc = '';
|
||||
if (num == tools.discord_num) {
|
||||
desc = _('Example') + ': ';
|
||||
for (let k = 0; k < tools.discord_url.length; k++) {
|
||||
let url = tools.discord_url[k];
|
||||
if (k > 0) desc += ' <br> ';
|
||||
const filename = url.substring(url.lastIndexOf("/") + 1).split("?")[0];
|
||||
desc += '<a target=_blank href=' + url + '>' + filename + '</a>';
|
||||
}
|
||||
}
|
||||
o.onclick = () => new tools.fileEditDialog(fn, name, desc, '', 15).show();
|
||||
}
|
||||
|
||||
|
||||
@@ -39,6 +39,7 @@ return baseclass.extend({
|
||||
appName : 'zapret',
|
||||
execPath : '/etc/init.d/zapret',
|
||||
syncCfgPath : '/opt/zapret/sync_config.sh',
|
||||
defCfgPath : '/opt/zapret/def-cfg.sh',
|
||||
defaultCfgPath : '/opt/zapret/restore-def-cfg.sh',
|
||||
|
||||
hostsGoogleFN : '/opt/zapret/ipset/zapret-hosts-google.txt',
|
||||
@@ -52,7 +53,12 @@ return baseclass.extend({
|
||||
customdPrefixList : [ 10, 20, 50, 60, 90 ] ,
|
||||
customdFileFormat : '/opt/zapret/init.d/openwrt/custom.d/%s-script.sh',
|
||||
discord_num : 50,
|
||||
discord_url : 'https://github.com/bol-van/zapret/blob/master/init.d/custom.d.examples.linux/50-discord',
|
||||
discord_url : [ 'https://github.com/bol-van/zapret/blob/4e8e3a9ed9dbeb1156db68dfaa7b353051c13797/init.d/custom.d.examples.linux/50-discord',
|
||||
'https://github.com/bol-van/zapret/blob/b251ea839cc8f04c45090314ef69fce69f2c00f2/init.d/custom.d.examples.linux/50-discord-media',
|
||||
'https://github.com/bol-van/zapret/blob/b251ea839cc8f04c45090314ef69fce69f2c00f2/init.d/custom.d.examples.linux/50-stun4all',
|
||||
'https://github.com/bol-van/zapret/tree/master/init.d/custom.d.examples.linux'
|
||||
],
|
||||
nfqws_opt_url : 'https://github.com/remittor/zapret-openwrt/discussions/168',
|
||||
|
||||
autoHostListFN : '/opt/zapret/ipset/zapret-hosts-auto.txt',
|
||||
autoHostListDbgFN : '/opt/zapret/ipset/zapret-hosts-auto-debug.log',
|
||||
@@ -73,6 +79,13 @@ return baseclass.extend({
|
||||
running : { code: 4, name: _('Running') , label: this.infoLabelRunning },
|
||||
},
|
||||
|
||||
callServiceList: rpc.declare({
|
||||
object: 'service',
|
||||
method: 'list',
|
||||
params: [ 'name', 'verbose' ],
|
||||
expect: { '': {} }
|
||||
}),
|
||||
|
||||
callInitState: rpc.declare({
|
||||
object: 'luci',
|
||||
method: 'getInitList',
|
||||
@@ -103,6 +116,17 @@ return baseclass.extend({
|
||||
}
|
||||
},
|
||||
|
||||
getSvcInfo: function(svc_name = null) {
|
||||
this.init_consts();
|
||||
let name = (svc_name) ? svc_name : this.appName;
|
||||
let verbose = 1;
|
||||
return this.callServiceList(name, verbose).then(res => {
|
||||
return res;
|
||||
}).catch(e => {
|
||||
ui.addNotification(null, E('p', _('Failed to get %s service info: %s').format(name, e)));
|
||||
});
|
||||
},
|
||||
|
||||
getInitState: function(name) {
|
||||
this.init_consts();
|
||||
return this.callInitState(name).then(res => {
|
||||
@@ -116,6 +140,20 @@ return baseclass.extend({
|
||||
});
|
||||
},
|
||||
|
||||
getStratList: function() {
|
||||
this.init_consts();
|
||||
let exec_cmd = '/bin/busybox';
|
||||
let exec_arg = [ 'awk', '-F', '"', '/if \\[ "\\$strat" = "/ {print $4}', this.defCfgPath ];
|
||||
return fs.exec(exec_cmd, exec_arg).then(res => {
|
||||
if (res.code == 0) {
|
||||
return this.getWordsArray(res.stdout);
|
||||
}
|
||||
return [ ];
|
||||
}).catch(e => {
|
||||
ui.addNotification(null, E('p', _('Failed to get strat list: %s').format(e)));
|
||||
});
|
||||
},
|
||||
|
||||
handleServiceAction: function(name, action) {
|
||||
return this.callInitAction(name, action).then(success => {
|
||||
if (!success) {
|
||||
@@ -131,6 +169,18 @@ return baseclass.extend({
|
||||
return (v && typeof(v) === 'string') ? v.trim().replace(/\r?\n/g, '') : v;
|
||||
},
|
||||
|
||||
getWordsArray: function (text, { trim = true, removeEmpty = true } = {}) {
|
||||
const rawLines = text.split(/\n/);
|
||||
const processed = trim ? rawLines.map(line => line.trim()) : rawLines.slice();
|
||||
return removeEmpty ? processed.filter(line => line.length > 0) : processed;
|
||||
},
|
||||
|
||||
getConfigPar: function(txt, key, defval = null) {
|
||||
const re = new RegExp(`^${key}\\s*=\\s*(['"])(.*?)\\1`, 'm');
|
||||
const m = txt.match(re);
|
||||
return m ? m[2] : defval;
|
||||
},
|
||||
|
||||
decode_pkg_list: function(pkg_list) {
|
||||
let pkg_dict = { };
|
||||
let lines = pkg_list.trim().split('\n');
|
||||
@@ -200,9 +250,6 @@ return baseclass.extend({
|
||||
},
|
||||
"status": this.statusDict.error,
|
||||
};
|
||||
if (svc_info.code != 0) {
|
||||
return -1;
|
||||
}
|
||||
if (proc_list.code != 0) {
|
||||
return -2;
|
||||
}
|
||||
@@ -211,22 +258,10 @@ return baseclass.extend({
|
||||
if (plist.length < 4) {
|
||||
return -3;
|
||||
}
|
||||
if (typeof(svc_info.stdout) !== 'string') {
|
||||
if (typeof(svc_info) !== 'object') {
|
||||
return -4;
|
||||
}
|
||||
if (svc_info.stdout.length < 3) {
|
||||
return -5;
|
||||
}
|
||||
let jdata;
|
||||
try {
|
||||
jdata = JSON.parse(svc_info.stdout);
|
||||
} catch (e) {
|
||||
console.log('Incorrect JSON: ' + svc_info.stdout);
|
||||
return -6;
|
||||
}
|
||||
if (typeof(jdata) !== 'object') {
|
||||
return -7;
|
||||
}
|
||||
let jdata = svc_info;
|
||||
if (typeof(jdata.zapret) == 'object') {
|
||||
result.dmn.inited = true;
|
||||
let dmn_list = jdata.zapret.instances;
|
||||
@@ -253,7 +288,7 @@ return baseclass.extend({
|
||||
return result;
|
||||
},
|
||||
|
||||
makeStatusString: function(svcinfo, fwtype, bllist_preset) {
|
||||
makeStatusString: function(svcinfo, pkg_arch, bllist_preset) {
|
||||
let svc_autorun = _('Unknown');
|
||||
let svc_daemons = _('Unknown');
|
||||
|
||||
@@ -266,12 +301,18 @@ return baseclass.extend({
|
||||
svc_daemons += ' [' + svcinfo.dmn.working + '/' + svcinfo.dmn.total + ']';
|
||||
}
|
||||
}
|
||||
let update_mode = _('user entries only');
|
||||
|
||||
let td_name_width = 40;
|
||||
let td_name_style = `style="width: ${td_name_width}%; min-width:${td_name_width}%; max-width:${td_name_width}%;"`;
|
||||
let out = `
|
||||
<table class="table">
|
||||
<tr class="tr">
|
||||
<td class="td left" ${td_name_style}>
|
||||
${_('CPU architecture')}:
|
||||
</td>
|
||||
<td class="td left">
|
||||
${pkg_arch}
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="tr">
|
||||
<td class="td left" ${td_name_style}>
|
||||
${_('Service autorun status')}:
|
||||
@@ -288,22 +329,6 @@ return baseclass.extend({
|
||||
${svc_daemons}
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="tr">
|
||||
<td class="td left" ${td_name_style}>
|
||||
${_('FW type')}:
|
||||
</td>
|
||||
<td class="td left">
|
||||
${fwtype}
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="tr">
|
||||
<td class="td left" ${td_name_style}>
|
||||
${_('HostLists update mode')}:
|
||||
</td>
|
||||
<td class="td left">
|
||||
${update_mode}
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="tr">
|
||||
<td class="td left" ${td_name_style}>
|
||||
</td>
|
||||
@@ -440,6 +465,12 @@ return baseclass.extend({
|
||||
if (typeof(value) === 'string') {
|
||||
value = value.trim();
|
||||
if (this.multiline == 2) {
|
||||
value = value.replace(/\n\t/g, "\n");
|
||||
value = value.replace(/\n\t/g, "\n");
|
||||
value = value.replace(/\n\t/g, "\n");
|
||||
value = value.replace(/\n\t/g, "\n");
|
||||
value = value.replace(/\n\t/g, "\n");
|
||||
value = value.replace(/\n\t/g, "\n");
|
||||
value = value.replace(/\n --/g, "\n--");
|
||||
value = value.replace(/\n --/g, "\n--");
|
||||
value = value.replace(/ --/g, "\n--");
|
||||
|
||||
@@ -0,0 +1,244 @@
|
||||
'use strict';
|
||||
'require baseclass';
|
||||
'require fs';
|
||||
'require poll';
|
||||
'require uci';
|
||||
'require ui';
|
||||
'require view';
|
||||
'require view.zapret.tools as tools';
|
||||
|
||||
const btn_style_neutral = 'btn';
|
||||
const btn_style_action = 'btn cbi-button-action';
|
||||
const btn_style_positive = 'btn cbi-button-save important';
|
||||
const btn_style_negative = 'btn cbi-button-reset important';
|
||||
const btn_style_warning = 'btn cbi-button-negative';
|
||||
const btn_style_success = 'btn cbi-button-success important';
|
||||
|
||||
const fn_update_pkg_sh = '/opt/zapret/update-pkg.sh';
|
||||
|
||||
return baseclass.extend({
|
||||
releasesUrlPrefix : 'https://raw.githubusercontent.com/remittor/zapret-openwrt/gh-pages/releases/',
|
||||
|
||||
appendLog: function(msg, end = '\n') {
|
||||
this.logArea.value += msg + end;
|
||||
this.logArea.scrollTop = this.logArea.scrollHeight;
|
||||
},
|
||||
|
||||
setBtnMode: function(enable) {
|
||||
this.btn_cancel.disabled = enable ? false : true;
|
||||
this.btn_action.disabled = (enable == 2) ? false : true;
|
||||
},
|
||||
|
||||
setStage: function(stage, btn_flag = true) {
|
||||
if (stage == 0) {
|
||||
this.btn_action.textContent = _('Check for updates');
|
||||
} else
|
||||
if (stage == 1) {
|
||||
this.btn_action.textContent = _('Update packages');
|
||||
} else {
|
||||
this.btn_action.textContent = _('');
|
||||
}
|
||||
if (stage > 1 && typeof(this.btn_action) == 'object') {
|
||||
this.setBtnMode(1);
|
||||
}
|
||||
this.stage = stage;
|
||||
},
|
||||
|
||||
checkUpdates: function() {
|
||||
this.setStage(0);
|
||||
this.setBtnMode(0);
|
||||
this.pkg_url = null;
|
||||
this.appendLog(_('Checking for updates...'));
|
||||
let opt_list = [ '-c' ]; // check for updates
|
||||
if (document.getElementById('cfg_exclude_prereleases').checked == false) {
|
||||
opt_list.push('-p'); // include prereleases ZIP-files
|
||||
}
|
||||
let forced_reinstall = document.getElementById('cfg_forced_reinstall').checked;
|
||||
let rpc_opt = { timeout: 20*1000 }
|
||||
//rpc_opt.uid = 0; // run under root
|
||||
let res = fs.exec(fn_update_pkg_sh, opt_list, null, rpc_opt).then(res => {
|
||||
let log = res.stdout.trim();
|
||||
this.appendLog(log);
|
||||
let code = log.match(/^RESULT:\s*\(([^)]+)\)\s+.+$/m);
|
||||
let pkg_url = log.match(/^ZAP_PKG_URL\s*=\s*(.+)$/m);
|
||||
if (res.code == 0 && code && pkg_url) {
|
||||
this.pkg_url = pkg_url[1];
|
||||
code = code[1];
|
||||
if (code == 'E' && !forced_reinstall) {
|
||||
this.setStage(999);
|
||||
return 0;
|
||||
}
|
||||
this.setStage(1);
|
||||
this.setBtnMode(2); // enable all buttons
|
||||
} else {
|
||||
if (res.code != 0) {
|
||||
this.appendLog('ERROR: Check for updates failed with error ' + res.code);
|
||||
}
|
||||
this.setStage(999);
|
||||
}
|
||||
return res.code;
|
||||
}).catch(e => {
|
||||
this.appendLog('ERROR: ' + _('Updates checking failed'));
|
||||
this.appendLog('ERROR: ' + e);
|
||||
this.setStage(999);
|
||||
return 1;
|
||||
}).finally(() => {
|
||||
this.appendLog('=========================================================');
|
||||
});
|
||||
},
|
||||
|
||||
installUpdates: async function() {
|
||||
this.setStage(1);
|
||||
this.setBtnMode(0);
|
||||
if (!this.pkg_url || this.pkg_url.length < 10) {
|
||||
this.appendLog('ERROR: pkg_url = null');
|
||||
this.setStage(999);
|
||||
return 1;
|
||||
}
|
||||
this.appendLog(_('Install updates...'));
|
||||
let opt_list = [ '-u', this.pkg_url ]; // update packages
|
||||
if (document.getElementById('cfg_forced_reinstall').checked == true) {
|
||||
opt_list.push('-f'); // forced reinstall if same version
|
||||
}
|
||||
let rpc_opt = { timeout: 5*1000 }
|
||||
//rpc_opt.uid = 0; // run under root
|
||||
const logFile = '/tmp/zapret_pkg_install.log';
|
||||
const pidFile = '/tmp/zapret_pkg_install.pid';
|
||||
try {
|
||||
await fs.exec('/bin/busybox', [ 'rm', '-f', '/tmp/zapret_pkg_install.*' ], null, rpc_opt);
|
||||
this.appendLog('Install log cleared.');
|
||||
} catch (e) {
|
||||
this.appendLog('ERROR: Failed to clear log file');
|
||||
this.setStage(999);
|
||||
return 1;
|
||||
}
|
||||
//console.log(`Start ${fn_update_pkg_sh}...`);
|
||||
try {
|
||||
let opt = [ logFile, pidFile, fn_update_pkg_sh ];
|
||||
//opt.push('-t'); // only for testing
|
||||
opt.push(...opt_list);
|
||||
await fs.exec('/opt/zapret/script-exec.sh', opt, null, rpc_opt);
|
||||
this.appendLog('Process started...');
|
||||
} catch (e) {
|
||||
this.appendLog('ERROR: Failed to start process: ' + e.message);
|
||||
this.setStage(999);
|
||||
return 1;
|
||||
}
|
||||
let lastLen = 0;
|
||||
let pid = 0;
|
||||
//console.log('setInterval...');
|
||||
let timer = setInterval(async () => {
|
||||
try {
|
||||
if (pid == 0) {
|
||||
try {
|
||||
let pid_data = await fs.exec('/bin/cat', [ pidFile ], null, rpc_opt);
|
||||
pid = parseInt(pid_data.stdout.trim(), 10);
|
||||
} catch (e) {
|
||||
//return; // goto next timer iteration
|
||||
}
|
||||
}
|
||||
let alive = null;
|
||||
if (pid > 0) {
|
||||
try {
|
||||
await fs.stat(`/proc/${pid}`, [ ], null, { timeout: 4*1000 });
|
||||
alive = true;
|
||||
} catch (e) {
|
||||
// file "/proc/${pid}" not founded ==> sh process terminated
|
||||
alive = false;
|
||||
}
|
||||
}
|
||||
let res = await fs.exec('/bin/cat', [ logFile ], null, rpc_opt);
|
||||
if (res.stdout.length > lastLen) {
|
||||
let log = res.stdout.slice(lastLen);
|
||||
log = log.replace(/^ \* resolve_conffiles.*(?:\r?\n|$)/gm, '');
|
||||
this.appendLog(log, '');
|
||||
lastLen = res.stdout.length;
|
||||
}
|
||||
if (pid > 0 && !alive) {
|
||||
clearInterval(timer);
|
||||
this.appendLog('\nProcess finished.');
|
||||
let log = res.stdout;
|
||||
let code = log.match(/^RESULT:\s*\(([^)]+)\)\s+.+$/m);
|
||||
if (code && code[1] == '+') {
|
||||
this.setStage(999);
|
||||
this.btn_action.textContent = _('OK');
|
||||
this.btn_action.disabled = false;
|
||||
this.btn_cancel.disabled = true;
|
||||
return 0;
|
||||
}
|
||||
this.appendLog('ERROR: Install updates failed!');
|
||||
this.setStage(999);
|
||||
}
|
||||
} catch (e) {
|
||||
clearInterval(timer);
|
||||
this.appendLog('ERROR: reading log: ' + e.message);
|
||||
this.setStage(999);
|
||||
}
|
||||
}, 500);
|
||||
},
|
||||
|
||||
openUpdateDialog: function(pkg_arch) {
|
||||
this.stage = 0;
|
||||
this.pkg_arch = pkg_arch;
|
||||
this.pkg_url = null;
|
||||
|
||||
let exclude_prereleases = E('label', [
|
||||
E('input', { type: 'checkbox', id: 'cfg_exclude_prereleases', checked: true }),
|
||||
' ', _('Exclude PreReleases')
|
||||
]);
|
||||
|
||||
let forced_reinstall = E('label', [
|
||||
E('input', { type: 'checkbox', id: 'cfg_forced_reinstall'}),
|
||||
' ', _('Forced reinstall packages')
|
||||
]);
|
||||
|
||||
this.logArea = E('textarea', {
|
||||
'readonly': true,
|
||||
'style': 'width:100%; height:400px; font-family: monospace;'
|
||||
});
|
||||
|
||||
this.btn_cancel = E('button', {
|
||||
'id': 'btn_cancel',
|
||||
'name': 'btn_cancel',
|
||||
'class': btn_style_warning,
|
||||
}, _('Cancel'));
|
||||
this.btn_cancel.onclick = ui.hideModal;
|
||||
|
||||
this.btn_action = E('button', {
|
||||
'id': 'btn_action',
|
||||
'name': 'btn_action',
|
||||
'class': btn_style_action,
|
||||
}, 'BUTTON_ACTION');
|
||||
this.btn_action.onclick = ui.createHandlerFn(this, () => {
|
||||
if (this.stage == 0) {
|
||||
return this.checkUpdates();
|
||||
}
|
||||
if (this.stage == 1) {
|
||||
return this.installUpdates();
|
||||
}
|
||||
return ui.hideModal();
|
||||
});
|
||||
|
||||
this.setStage(0);
|
||||
this.setBtnMode(2);
|
||||
|
||||
ui.showModal(_('Package update'), [
|
||||
E('div', { 'class': 'cbi-section' }, [
|
||||
E('div', {}, [
|
||||
E('p', {'class': 'cbi-title-field'}, [ 'CPU architecture: ' + pkg_arch ]),
|
||||
]),
|
||||
exclude_prereleases,
|
||||
E('br'), E('br'),
|
||||
forced_reinstall,
|
||||
E('br'), E('br'),
|
||||
E('hr'),
|
||||
this.logArea,
|
||||
]),
|
||||
E('div', { 'class': 'right' }, [
|
||||
this.btn_cancel,
|
||||
' ',
|
||||
this.btn_action,
|
||||
])
|
||||
]);
|
||||
}
|
||||
});
|
||||
@@ -6,6 +6,7 @@
|
||||
"file": {
|
||||
"/opt/zapret/config": [ "read" ],
|
||||
"/opt/zapret/ipset/*": [ "read" ],
|
||||
"/opt/zapret/init.d/openwrt/custom.d/*": [ "read" ],
|
||||
"/etc/crontabs/root": [ "read" ],
|
||||
"/tmp/zapret*": [ "read" ],
|
||||
"/etc/init.d/zapret*": [ "exec" ],
|
||||
@@ -16,11 +17,14 @@
|
||||
"/usr/bin/apk*": [ "exec" ],
|
||||
"/usr/bin/find*": [ "exec" ],
|
||||
"/opt/zapret/restore-def-cfg.sh*": [ "exec" ],
|
||||
"/opt/zapret/script-exec.sh*": [ "exec" ],
|
||||
"/opt/zapret/update-pkg.sh*": [ "exec" ],
|
||||
"/opt/zapret/sync_config.sh*": [ "exec" ]
|
||||
},
|
||||
"uci": [ "zapret", "network" ],
|
||||
"ubus": {
|
||||
"luci": [ "getInitList", "setInitAction" ]
|
||||
"luci": [ "getInitList", "setInitAction" ],
|
||||
"service": [ "list" ]
|
||||
}
|
||||
},
|
||||
"write": {
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=zapret-ip2net
|
||||
PKG_VERSION:=70.20250323
|
||||
PKG_VERSION:=72.20251217
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_MAINTAINER:=bol-van
|
||||
PKG_LICENSE:=MIT
|
||||
@@ -9,8 +10,8 @@ PKG_LICENSE_FILES:=docs/LICENSE.txt
|
||||
|
||||
PKG_SOURCE_URL:=https://github.com/bol-van/zapret.git
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=77df43b9cba68a82ca884cd56238e89f9851da47
|
||||
PKG_SOURCE_DATE:=2025-03-23
|
||||
PKG_SOURCE_VERSION:=a36e6ee60e910861a5bd7a2ca4214f8a2ca6259d
|
||||
PKG_SOURCE_DATE:=2025-12-17
|
||||
|
||||
#PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
#PKG_SOURCE_URL:=https://github.com/bol-van/zapret/archive/refs/tags/v$(PKG_VERSION).tar.gz?
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=zapret-mdig
|
||||
PKG_VERSION:=70.20250323
|
||||
PKG_VERSION:=72.20251217
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_MAINTAINER:=bol-van
|
||||
PKG_LICENSE:=MIT
|
||||
@@ -9,8 +10,8 @@ PKG_LICENSE_FILES:=docs/LICENSE.txt
|
||||
|
||||
PKG_SOURCE_URL:=https://github.com/bol-van/zapret.git
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=77df43b9cba68a82ca884cd56238e89f9851da47
|
||||
PKG_SOURCE_DATE:=2025-03-23
|
||||
PKG_SOURCE_VERSION:=a36e6ee60e910861a5bd7a2ca4214f8a2ca6259d
|
||||
PKG_SOURCE_DATE:=2025-12-17
|
||||
|
||||
#PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
#PKG_SOURCE_URL:=https://github.com/bol-van/zapret/archive/refs/tags/v$(PKG_VERSION).tar.gz?
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=zapret-tpws
|
||||
PKG_VERSION:=70.20250323
|
||||
PKG_VERSION:=72.20251217
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_MAINTAINER:=bol-van
|
||||
PKG_LICENSE:=MIT
|
||||
@@ -9,8 +10,8 @@ PKG_LICENSE_FILES:=docs/LICENSE.txt
|
||||
|
||||
PKG_SOURCE_URL:=https://github.com/bol-van/zapret.git
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=77df43b9cba68a82ca884cd56238e89f9851da47
|
||||
PKG_SOURCE_DATE:=2025-03-23
|
||||
PKG_SOURCE_VERSION:=a36e6ee60e910861a5bd7a2ca4214f8a2ca6259d
|
||||
PKG_SOURCE_DATE:=2025-12-17
|
||||
|
||||
#PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
#PKG_SOURCE_URL:=https://github.com/bol-van/zapret/archive/refs/tags/v$(PKG_VERSION).tar.gz?
|
||||
|
||||
@@ -5,7 +5,8 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=zapret
|
||||
PKG_VERSION:=70.20250323
|
||||
PKG_VERSION:=72.20251217
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_MAINTAINER:=bol-van
|
||||
PKG_LICENSE:=MIT
|
||||
@@ -13,8 +14,8 @@ PKG_LICENSE_FILES:=docs/LICENSE.txt
|
||||
|
||||
PKG_SOURCE_URL:=https://github.com/bol-van/zapret.git
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=77df43b9cba68a82ca884cd56238e89f9851da47
|
||||
PKG_SOURCE_DATE:=2025-03-23
|
||||
PKG_SOURCE_VERSION:=a36e6ee60e910861a5bd7a2ca4214f8a2ca6259d
|
||||
PKG_SOURCE_DATE:=2025-12-17
|
||||
|
||||
#PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
#PKG_SOURCE_URL:=https://github.com/bol-van/zapret/archive/refs/tags/v$(PKG_VERSION).tar.gz?
|
||||
@@ -54,6 +55,7 @@ define Package/$(PKG_NAME)/conffiles
|
||||
/etc/config/zapret
|
||||
/opt/zapret/config
|
||||
/opt/zapret/ipset/
|
||||
/opt/zapret/init.d/openwrt/custom.d/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/install
|
||||
@@ -66,6 +68,7 @@ define Package/$(PKG_NAME)/install
|
||||
#$(CP) $(PKG_BUILD_DIR)/docs/* $(1)/opt/zapret/docs/
|
||||
$(INSTALL_DIR) $(1)/opt/zapret/files
|
||||
$(CP) $(PKG_BUILD_DIR)/files/* $(1)/opt/zapret/files/
|
||||
$(CP) ./files/* $(1)/opt/zapret/files/
|
||||
$(INSTALL_DIR) $(1)/opt/zapret/ipset
|
||||
$(CP) $(PKG_BUILD_DIR)/ipset/* $(1)/opt/zapret/ipset/
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/blockcheck.sh $(1)/opt/zapret/blockcheck.sh
|
||||
@@ -79,8 +82,18 @@ define Package/$(PKG_NAME)/install
|
||||
$(INSTALL_BIN) ./init.d.sh $(1)/etc/init.d/zapret
|
||||
$(INSTALL_DATA) ./config.default $(1)/opt/zapret/config.default
|
||||
$(INSTALL_DATA) ./ipset/zapret-hosts-google.txt $(1)/opt/zapret/ipset/zapret-hosts-google.txt
|
||||
$(INSTALL_DATA) ./ipset/zapret-hosts-user.txt $(1)/opt/zapret/ipset/zapret-hosts-user.txt
|
||||
$(INSTALL_DATA) ./ipset/zapret-hosts-user-exclude.txt $(1)/opt/zapret/ipset/zapret-hosts-user-exclude.txt
|
||||
$(INSTALL_DATA) ./ipset/zapret-ip-exclude.txt $(1)/opt/zapret/ipset/zapret-ip-exclude.txt
|
||||
$(INSTALL_DIR) $(1)/opt/zapret/ipset_def
|
||||
$(INSTALL_DATA) ./ipset/zapret-hosts-google.txt $(1)/opt/zapret/ipset_def/zapret-hosts-google.txt
|
||||
$(INSTALL_DATA) ./ipset/zapret-hosts-user.txt $(1)/opt/zapret/ipset_def/zapret-hosts-user.txt
|
||||
$(INSTALL_DATA) ./ipset/zapret-hosts-user-exclude.txt $(1)/opt/zapret/ipset_def/zapret-hosts-user-exclude.txt
|
||||
$(INSTALL_DATA) ./ipset/zapret-ip-exclude.txt $(1)/opt/zapret/ipset_def/zapret-ip-exclude.txt
|
||||
$(INSTALL_DIR) $(1)/opt/zapret/init.d
|
||||
$(INSTALL_DIR) $(1)/opt/zapret/init.d/openwrt
|
||||
$(INSTALL_DIR) $(1)/opt/zapret/init.d/openwrt/custom.d
|
||||
$(CP) ./custom.d/* $(1)/opt/zapret/init.d/openwrt/custom.d/
|
||||
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
||||
$(INSTALL_BIN) ./uci-def-cfg.sh $(1)/etc/uci-defaults/zapret-uci-def-cfg.sh
|
||||
$(INSTALL_BIN) ./uci-def-cfg.sh $(1)/opt/zapret/uci-def-cfg.sh
|
||||
@@ -89,8 +102,12 @@ define Package/$(PKG_NAME)/install
|
||||
$(INSTALL_BIN) ./renew-cfg.sh $(1)/opt/zapret/renew-cfg.sh
|
||||
$(INSTALL_BIN) ./restore-def-cfg.sh $(1)/opt/zapret/restore-def-cfg.sh
|
||||
$(INSTALL_BIN) ./sync_config.sh $(1)/opt/zapret/sync_config.sh
|
||||
$(INSTALL_BIN) ./script-exec.sh $(1)/opt/zapret/script-exec.sh
|
||||
$(INSTALL_BIN) ./update-pkg.sh $(1)/opt/zapret/update-pkg.sh
|
||||
# Fix permisions
|
||||
chmod 644 $(1)/opt/zapret/ipset/*.txt
|
||||
chmod 644 $(1)/opt/zapret/ipset_def/*.txt
|
||||
chmod 644 $(1)/opt/zapret/init.d/openwrt/custom.d/*.sh
|
||||
chmod 644 $(1)/opt/zapret/config.default
|
||||
chmod 755 $(1)/opt/zapret/*.sh
|
||||
endef
|
||||
@@ -108,7 +125,9 @@ if [ -z "$${IPKG_INSTROOT}" ]; then
|
||||
fi
|
||||
if [ "$${PKG_UPGRADE}" = "1" ]; then
|
||||
# stop service if PKG_UPGRADE
|
||||
[ -x "/etc/init.d/zapret" ] && /etc/init.d/zapret stop >/dev/null 2>&1
|
||||
if [ -x "/etc/init.d/zapret" ]; then
|
||||
/etc/init.d/zapret running && /etc/init.d/zapret stop >/dev/null 2>&1
|
||||
fi
|
||||
fi
|
||||
if [ ! -f "/opt/zapret/ipset/zapret-hosts-google.txt" ]; then
|
||||
if [ -f "/opt/zapret/ipset/zapret-hosts-user.txt" ]; then
|
||||
@@ -186,8 +205,8 @@ if [ -z "$${IPKG_INSTROOT}" ]; then
|
||||
. "$${ZAPRET_BASE}/common/fwtype.sh"
|
||||
. "$${ZAPRET_BASE}/common/nft.sh"
|
||||
. "$${ZAPRET_BASE}/common/installer.sh"
|
||||
/etc/init.d/zapret running && /etc/init.d/zapret stop
|
||||
/etc/init.d/zapret disable
|
||||
/etc/init.d/zapret stop
|
||||
ps w | grep '/opt/zapret/nfq/nfqws' | grep -v grep | awk '{print $$1}' | xargs -r kill -9
|
||||
remove_openwrt_firewall
|
||||
nft_del_table
|
||||
|
||||
@@ -21,8 +21,7 @@ CRONTAB_FILE="/etc/crontabs/root"
|
||||
|
||||
function adapt_for_sed
|
||||
{
|
||||
local str=$( ( echo $1|sed -r 's/([\$\.\*\/\[\\^])/\\\1/g'|sed 's/[]]/\\]/g' )>&1 )
|
||||
echo "$str"
|
||||
echo -n "$1" | tr '\r' ' ' | tr '\n' ' ' | tr '\t' ' ' | sed -r 's/([\$\.\*\/\[\\^])/\\\1/g' | sed 's/[]]/\\]/g'
|
||||
}
|
||||
|
||||
function is_valid_config
|
||||
@@ -91,14 +90,42 @@ function get_run_on_boot_option
|
||||
fi
|
||||
}
|
||||
|
||||
function get_cpu_arch
|
||||
{
|
||||
if [ -f /etc/openwrt_release ]; then
|
||||
. /etc/openwrt_release
|
||||
printf '%s' "$DISTRIB_ARCH"
|
||||
else
|
||||
printf 'unknown'
|
||||
fi
|
||||
}
|
||||
|
||||
function restore_ipset_txt
|
||||
{
|
||||
local cfgname=$1
|
||||
if [ -f "$ZAPRET_BASE/ipset_def/$cfgname" ]; then
|
||||
cp -f "$ZAPRET_BASE/ipset_def/$cfgname" "$ZAPRET_BASE/ipset/$cfgname"
|
||||
fi
|
||||
}
|
||||
|
||||
function restore_all_ipset_cfg
|
||||
{
|
||||
restore_ipset_txt zapret-hosts-google.txt
|
||||
restore_ipset_txt zapret-hosts-user.txt
|
||||
restore_ipset_txt zapret-hosts-user-exclude.txt
|
||||
restore_ipset_txt zapret-ip-exclude.txt.txt
|
||||
}
|
||||
|
||||
function create_default_cfg
|
||||
{
|
||||
local cfgname=${1:-$ZAPRET_CFG_NAME}
|
||||
local opt_flags=${1:--}
|
||||
local opt_strat=$2
|
||||
local cfgname=${3:-$ZAPRET_CFG_NAME}
|
||||
local cfgfile=/etc/config/$cfgname
|
||||
rm -f $cfgfile
|
||||
touch $cfgfile
|
||||
uci set $cfgname.config=main
|
||||
set_cfg_default_values $cfgname
|
||||
set_cfg_default_values "$opt_flags" "$opt_strat" $cfgname
|
||||
return 0
|
||||
}
|
||||
|
||||
@@ -113,7 +140,7 @@ function merge_cfg_with_def_values
|
||||
local cfg_sec_name="$( uci -q get $ZAPRET_CFG_NAME.config )"
|
||||
[ -z "$cfg_sec_name" ] && create_default_cfg
|
||||
|
||||
create_default_cfg "$NEWCFGNAME"
|
||||
create_default_cfg "-" "" "$NEWCFGNAME"
|
||||
[ ! -f "$NEWCFGFILE" ] && return 1
|
||||
|
||||
uci -m -f $cfgfile import "$NEWCFGNAME"
|
||||
@@ -147,10 +174,6 @@ function init_before_start
|
||||
local DAEMON_LOG_ENABLE=$1
|
||||
local HOSTLIST_FN="$ZAPRET_BASE/ipset/zapret-hosts-user.txt"
|
||||
[ ! -f "$HOSTLIST_FN" ] && touch "$HOSTLIST_FN"
|
||||
local HOSTLIST_SZ=$( wc -c < "$HOSTLIST_FN" )
|
||||
if [ "$HOSTLIST_SZ" -le 3 ]; then
|
||||
echo "abra-cadabra.com" > "$HOSTLIST_FN"
|
||||
fi
|
||||
chmod 644 $ZAPRET_BASE/ipset/*.txt
|
||||
chmod 666 $ZAPRET_BASE/ipset/*.log
|
||||
rm -f /tmp/zapret*.log
|
||||
@@ -160,4 +183,37 @@ function init_before_start
|
||||
else
|
||||
remove_cron_task_logs
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
function patch_luci_header_ut
|
||||
{
|
||||
# INFO: https://github.com/openwrt/luci/pull/7725
|
||||
local header_ut=/usr/share/ucode/luci/template/header.ut
|
||||
local runtime_uc=/usr/share/ucode/luci/runtime.uc
|
||||
local newenv
|
||||
[ ! -f $header_ut ] && return 0
|
||||
[ ! -f $runtime_uc ] && return 0
|
||||
if grep -q "pkgs_update_time" $runtime_uc; then
|
||||
return 0
|
||||
fi
|
||||
if grep -q "pkgs_update_time" $header_ut; then
|
||||
return 0
|
||||
fi
|
||||
sed -i "/^import { access/i import { stat } from 'fs';" $runtime_uc
|
||||
if ! grep -q "{ stat }" $runtime_uc; then
|
||||
return 1
|
||||
fi
|
||||
newenv="self.env.pkgs_update_time = stat('/lib/apk/db/installed')?.mtime ?? stat('/usr/lib/opkg/status')?.mtime ?? 0;"
|
||||
newenv=`adapt_for_sed "$newenv"`
|
||||
sed -i "/self.env.include =/i $newenv" $runtime_uc
|
||||
if ! grep -q "pkgs_update_time" $runtime_uc; then
|
||||
return 1
|
||||
fi
|
||||
sed -i 's/luci.js?v=\(.*\)"><\/script>/luci.js?v=\1-{{ pkgs_update_time }}"><\/script>/g' $header_ut
|
||||
if ! grep -q "pkgs_update_time" $header_ut; then
|
||||
return 1
|
||||
fi
|
||||
logger -p notice -t ZAPRET "patch_luci_header_ut: OK"
|
||||
return 0
|
||||
}
|
||||
|
||||
@@ -56,6 +56,13 @@ DESYNC_MARK=0x40000000
|
||||
DESYNC_MARK_POSTNAT=0x20000000
|
||||
|
||||
|
||||
# do not pass outgoing traffic to tpws/nfqws not marked with this bit
|
||||
# this setting allows to write your own rules to limit traffic that should be fooled
|
||||
# for example based on source IP or incoming interface name
|
||||
# no filter if not defined
|
||||
FILTER_MARK=""
|
||||
|
||||
|
||||
TPWS_SOCKS_ENABLE=0
|
||||
# tpws socks listens on this port on localhost and LAN interfaces
|
||||
TPPORT_SOCKS=987
|
||||
@@ -90,16 +97,16 @@ NFQWS_UDP_PKT_IN="0"
|
||||
# normally it's needed only for stateless DPI that matches every packet in a single TCP session
|
||||
# typical example are plain HTTP keep alives
|
||||
# this mode can be very CPU consuming. enable with care !
|
||||
NFQWS_PORTS_TCP_KEEPALIVE=0
|
||||
NFQWS_PORTS_UDP_KEEPALIVE=0
|
||||
NFQWS_PORTS_TCP_KEEPALIVE=""
|
||||
NFQWS_PORTS_UDP_KEEPALIVE=""
|
||||
|
||||
# use <HOSTLIST> and <HOSTLIST_NOAUTO> placeholders to engage standard hostlists and autohostlist in ipset dir
|
||||
# hostlist markers are replaced to empty string if MODE_FILTER does not satisfy
|
||||
# <HOSTLIST_NOAUTO> appends ipset/zapret-hosts-auto.txt as normal list
|
||||
NFQWS_OPT="--filter-tcp=80 <HOSTLIST> --dpi-desync=fake,fakedsplit --dpi-desync-autottl=2 --dpi-desync-fooling=md5sig --new --filter-tcp=443 --hostlist=/opt/zapret/ipset/zapret-hosts-google.txt --dpi-desync=fake,multidisorder --dpi-desync-split-pos=1,midsld --dpi-desync-repeats=11 --dpi-desync-fooling=md5sig --dpi-desync-fake-tls=/opt/zapret/files/fake/tls_clienthello_www_google_com.bin --new --filter-udp=443 --hostlist=/opt/zapret/ipset/zapret-hosts-google.txt --dpi-desync=fake --dpi-desync-repeats=11 --dpi-desync-fake-quic=/opt/zapret/files/fake/quic_initial_www_google_com.bin --new --filter-udp=443 <HOSTLIST_NOAUTO> --dpi-desync=fake --dpi-desync-repeats=11 --new --filter-tcp=443 <HOSTLIST> --dpi-desync=fake,multidisorder --dpi-desync-split-pos=midsld --dpi-desync-repeats=6 --dpi-desync-fooling=badseq,md5sig"
|
||||
NFQWS_OPT="--filter-tcp=80 <HOSTLIST> --dpi-desync=fake,fakedsplit --dpi-desync-autottl=2 --dpi-desync-fooling=badsum --new --filter-tcp=443 --hostlist=/opt/zapret/ipset/zapret-hosts-google.txt --dpi-desync=fake,multidisorder --dpi-desync-split-pos=1,midsld --dpi-desync-repeats=11 --dpi-desync-fooling=badsum --dpi-desync-fake-tls-mod=rnd,dupsid,sni=www.google.com --new --filter-udp=443 --hostlist=/opt/zapret/ipset/zapret-hosts-google.txt --dpi-desync=fake --dpi-desync-repeats=11 --dpi-desync-fake-quic=/opt/zapret/files/fake/quic_initial_www_google_com.bin --new --filter-udp=443 <HOSTLIST_NOAUTO> --dpi-desync=fake --dpi-desync-repeats=11 --new --filter-tcp=443 <HOSTLIST> --dpi-desync=multidisorder --dpi-desync-split-pos=1,sniext+1,host+1,midsld-2,midsld,midsld+2,endhost-1"
|
||||
|
||||
|
||||
DISABLE_CUSTOM=0
|
||||
DISABLE_CUSTOM=1
|
||||
|
||||
# FlowOffload mode : donttouch,none,software,hardware
|
||||
FLOWOFFLOAD=none
|
||||
@@ -136,6 +143,11 @@ DISABLE_IPV4=0
|
||||
# do not work with ipv6
|
||||
DISABLE_IPV6=1
|
||||
|
||||
# drop icmp time exceeded messages for nfqws tampered connections
|
||||
# in POSTNAT mode this can interfere with default mtr/traceroute in tcp or udp mode. use source port not redirected to nfqws
|
||||
# set to 0 if you are not expecting connection breakage due to icmp in response to TCP SYN or UDP
|
||||
FILTER_TTL_EXPIRED_ICMP=1
|
||||
|
||||
# select which init script will be used to get ip or host list
|
||||
# possible values : get_user.sh get_antizapret.sh get_combined.sh get_reestr.sh get_hostlist.sh
|
||||
# comment if not required
|
||||
|
||||
31
zapret/custom.d/50-script.sh
Normal file
31
zapret/custom.d/50-script.sh
Normal file
@@ -0,0 +1,31 @@
|
||||
# Stun4ALL (discord audio, discord video, telegram call, etc)
|
||||
# this custom script runs desync to all stun packets
|
||||
# NOTE: @ih requires nft 1.0.1+ and updated kernel version. it's confirmed to work on 5.15 (openwrt 23) and not work on 5.10 (openwrt 22)
|
||||
|
||||
# can override in config :
|
||||
NFQWS_OPT_DESYNC_STUN="${NFQWS_OPT_DESYNC_STUN:---dpi-desync=fake --dpi-desync-repeats=2}"
|
||||
|
||||
alloc_dnum DNUM_STUN4ALL
|
||||
alloc_qnum QNUM_STUN4ALL
|
||||
|
||||
zapret_custom_daemons()
|
||||
{
|
||||
# $1 - 1 - add, 0 - stop
|
||||
|
||||
local opt="--qnum=$QNUM_STUN4ALL $NFQWS_OPT_DESYNC_STUN"
|
||||
do_nfqws $1 $DNUM_STUN4ALL "$opt"
|
||||
}
|
||||
zapret_custom_firewall()
|
||||
{
|
||||
# $1 - 1 - run, 0 - stop
|
||||
|
||||
local f='-p udp -m u32 --u32'
|
||||
fw_nfqws_post $1 "$f 0>>22&0x3C@4>>16=28:65535&&0>>22&0x3C@12=0x2112A442&&0>>22&0x3C@8&0xC0000003=0" "$f 44>>16=28:65535&&52=0x2112A442&&48&0xC0000003=0" $QNUM_STUN4ALL
|
||||
}
|
||||
zapret_custom_firewall_nft()
|
||||
{
|
||||
# stop logic is not required
|
||||
|
||||
local f="udp length >= 28 @ih,32,32 0x2112A442 @ih,0,2 0 @ih,30,2 0"
|
||||
nft_fw_nfqws_post "$f" "$f" $QNUM_STUN4ALL
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
# Copyright (c) 2024 remittor
|
||||
|
||||
function set_cfg_default_values
|
||||
function set_cfg_reset_values
|
||||
{
|
||||
local cfgname=${1:-$ZAPRET_CFG_NAME}
|
||||
local TAB="$( echo -n -e '\t' )"
|
||||
@@ -14,8 +14,9 @@ function set_cfg_default_values
|
||||
set $cfgname.config.INIT_APPLY_FW='1'
|
||||
set $cfgname.config.DISABLE_IPV4='0'
|
||||
set $cfgname.config.DISABLE_IPV6='1'
|
||||
set $cfgname.config.FILTER_TTL_EXPIRED_ICMP='1'
|
||||
set $cfgname.config.MODE_FILTER='hostlist'
|
||||
set $cfgname.config.DISABLE_CUSTOM='0'
|
||||
set $cfgname.config.DISABLE_CUSTOM='1'
|
||||
set $cfgname.config.WS_USER='daemon'
|
||||
set $cfgname.config.DAEMON_LOG_ENABLE='0'
|
||||
set $cfgname.config.DAEMON_LOG_FILE='/tmp/zapret+<DAEMON_NAME>+<DAEMON_IDNUM>+<DAEMON_CFGNAME>.log'
|
||||
@@ -28,6 +29,7 @@ function set_cfg_default_values
|
||||
set $cfgname.config.NFQWS_ENABLE='1'
|
||||
set $cfgname.config.DESYNC_MARK='0x40000000'
|
||||
set $cfgname.config.DESYNC_MARK_POSTNAT='0x20000000'
|
||||
set $cfgname.config.FILTER_MARK='$TAB'
|
||||
set $cfgname.config.NFQWS_PORTS_TCP='80,443'
|
||||
set $cfgname.config.NFQWS_PORTS_UDP='443'
|
||||
set $cfgname.config.NFQWS_TCP_PKT_OUT='9'
|
||||
@@ -36,36 +38,235 @@ function set_cfg_default_values
|
||||
set $cfgname.config.NFQWS_UDP_PKT_IN='0'
|
||||
set $cfgname.config.NFQWS_PORTS_TCP_KEEPALIVE='0'
|
||||
set $cfgname.config.NFQWS_PORTS_UDP_KEEPALIVE='0'
|
||||
set $cfgname.config.NFQWS_OPT="
|
||||
--filter-tcp=80 <HOSTLIST>
|
||||
--dpi-desync=fake,fakedsplit
|
||||
--dpi-desync-autottl=2
|
||||
--dpi-desync-fooling=md5sig
|
||||
--new
|
||||
--filter-tcp=443 --hostlist=/opt/zapret/ipset/zapret-hosts-google.txt
|
||||
--dpi-desync=fake,multidisorder
|
||||
--dpi-desync-split-pos=1,midsld
|
||||
--dpi-desync-repeats=11
|
||||
--dpi-desync-fooling=md5sig
|
||||
--dpi-desync-fake-tls=/opt/zapret/files/fake/tls_clienthello_www_google_com.bin
|
||||
--new
|
||||
--filter-udp=443 --hostlist=/opt/zapret/ipset/zapret-hosts-google.txt
|
||||
--dpi-desync=fake
|
||||
--dpi-desync-repeats=11
|
||||
--dpi-desync-fake-quic=/opt/zapret/files/fake/quic_initial_www_google_com.bin
|
||||
--new
|
||||
--filter-udp=443 <HOSTLIST_NOAUTO>
|
||||
--dpi-desync=fake
|
||||
--dpi-desync-repeats=11
|
||||
--new
|
||||
--filter-tcp=443 <HOSTLIST>
|
||||
--dpi-desync=fake,multidisorder
|
||||
--dpi-desync-split-pos=midsld
|
||||
--dpi-desync-repeats=6
|
||||
--dpi-desync-fooling=badseq,md5sig
|
||||
"
|
||||
# save changes
|
||||
commit $cfgname
|
||||
EOF
|
||||
return 0
|
||||
}
|
||||
|
||||
function clear_nfqws_strat
|
||||
{
|
||||
local cfgname=${1:-$ZAPRET_CFG_NAME}
|
||||
local TAB="$( echo -n -e '\t' )"
|
||||
uci batch <<-EOF
|
||||
set $cfgname.config.MODE_FILTER='hostlist'
|
||||
set $cfgname.config.NFQWS_PORTS_TCP='80,443'
|
||||
set $cfgname.config.NFQWS_PORTS_UDP='443'
|
||||
set $cfgname.config.NFQWS_OPT='$TAB'
|
||||
commit $cfgname
|
||||
EOF
|
||||
}
|
||||
|
||||
function set_cfg_nfqws_strat
|
||||
{
|
||||
local strat=${1:--}
|
||||
local cfgname=${2:-$ZAPRET_CFG_NAME}
|
||||
local TAB="$( echo -n -e '\t' )"
|
||||
|
||||
uci batch <<-EOF
|
||||
set $cfgname.config.MODE_FILTER='hostlist'
|
||||
commit $cfgname
|
||||
EOF
|
||||
if [ "$strat" = "empty" ]; then
|
||||
clear_nfqws_strat $cfgname
|
||||
fi
|
||||
if [ "$strat" = "v1_by_StressOzz" ]; then
|
||||
uci batch <<-EOF
|
||||
set $cfgname.config.NFQWS_PORTS_TCP='80,443'
|
||||
set $cfgname.config.NFQWS_PORTS_UDP='443'
|
||||
set $cfgname.config.NFQWS_OPT="
|
||||
# Strategy $strat
|
||||
|
||||
--filter-tcp=443 <HOSTLIST>
|
||||
--hostlist=/opt/zapret/ipset/zapret-hosts-google.txt
|
||||
--dpi-desync=fake,multidisorder
|
||||
--dpi-desync-split-seqovl=681
|
||||
--dpi-desync-split-pos=1
|
||||
--dpi-desync-fooling=badseq
|
||||
--dpi-desync-badseq-increment=10000000
|
||||
--dpi-desync-repeats=2
|
||||
--dpi-desync-split-seqovl-pattern=/opt/zapret/files/fake/tls_clienthello_www_google_com.bin
|
||||
--dpi-desync-fake-tls-mod=rnd,dupsid,sni=fonts.google.com
|
||||
|
||||
--new
|
||||
--filter-udp=443
|
||||
--hostlist=/opt/zapret/ipset/zapret-hosts-google.txt
|
||||
--hostlist-exclude=/opt/zapret/ipset/zapret-hosts-user-exclude.txt
|
||||
--dpi-desync=fake
|
||||
--dpi-desync-repeats=6
|
||||
--dpi-desync-fake-quic=/opt/zapret/files/fake/quic_initial_www_google_com.bin
|
||||
"
|
||||
commit $cfgname
|
||||
EOF
|
||||
fi
|
||||
if [ "$strat" = "v2_by_StressOzz" ]; then
|
||||
uci batch <<-EOF
|
||||
set $cfgname.config.NFQWS_PORTS_TCP='80,443'
|
||||
set $cfgname.config.NFQWS_PORTS_UDP='443'
|
||||
set $cfgname.config.NFQWS_OPT="
|
||||
# Strategy $strat
|
||||
|
||||
--filter-tcp=443 <HOSTLIST>
|
||||
--hostlist=/opt/zapret/ipset/zapret-hosts-google.txt
|
||||
--hostlist-exclude-domains=openwrt.org
|
||||
--dpi-desync=fake,fakeddisorder
|
||||
--dpi-desync-split-pos=10,midsld
|
||||
--dpi-desync-fake-tls=/opt/zapret/files/fake/tls_clienthello_www_google_com.bin
|
||||
--dpi-desync-fake-tls-mod=rnd,dupsid,sni=fonts.google.com
|
||||
--dpi-desync-fake-tls=0x0F0F0F0F
|
||||
--dpi-desync-fake-tls-mod=none
|
||||
--dpi-desync-fakedsplit-pattern=/opt/zapret/files/fake/tls_clienthello_vk_com.bin
|
||||
--dpi-desync-split-seqovl=336
|
||||
--dpi-desync-split-seqovl-pattern=/opt/zapret/files/fake/tls_clienthello_gosuslugi_ru.bin
|
||||
--dpi-desync-fooling=badseq,badsum
|
||||
--dpi-desync-badseq-increment=0
|
||||
|
||||
--new
|
||||
--filter-udp=443
|
||||
--hostlist=/opt/zapret/ipset/zapret-hosts-google.txt
|
||||
--hostlist-exclude=/opt/zapret/ipset/zapret-hosts-user-exclude.txt
|
||||
--dpi-desync=fake
|
||||
--dpi-desync-repeats=6
|
||||
--dpi-desync-fake-quic=/opt/zapret/files/fake/quic_initial_www_google_com.bin
|
||||
"
|
||||
commit $cfgname
|
||||
EOF
|
||||
fi
|
||||
if [ "$strat" = "v3_by_StressOzz" ]; then
|
||||
uci batch <<-EOF
|
||||
set $cfgname.config.NFQWS_PORTS_TCP='80,443'
|
||||
set $cfgname.config.NFQWS_PORTS_UDP='443'
|
||||
set $cfgname.config.NFQWS_OPT="
|
||||
# Strategy $strat
|
||||
|
||||
--filter-tcp=443 <HOSTLIST>
|
||||
--hostlist=/opt/zapret/ipset/zapret-hosts-google.txt
|
||||
--hostlist-exclude-domains=openwrt.org
|
||||
--dpi-desync=fake,fakeddisorder
|
||||
--dpi-desync-split-pos=10,midsld
|
||||
--dpi-desync-fake-tls=/opt/zapret/files/fake/t2.bin
|
||||
--dpi-desync-fake-tls-mod=rnd,dupsid,sni=m.ok.ru
|
||||
--dpi-desync-fake-tls=0x0F0F0F0F
|
||||
--dpi-desync-fake-tls-mod=none
|
||||
--dpi-desync-fakedsplit-pattern=/opt/zapret/files/fake/tls_clienthello_vk_com.bin
|
||||
--dpi-desync-split-seqovl=336
|
||||
--dpi-desync-split-seqovl-pattern=/opt/zapret/files/fake/tls_clienthello_gosuslugi_ru.bin
|
||||
--dpi-desync-fooling=badseq,badsum
|
||||
--dpi-desync-badseq-increment=0
|
||||
|
||||
--new
|
||||
--filter-udp=443
|
||||
--hostlist=/opt/zapret/ipset/zapret-hosts-google.txt
|
||||
--hostlist-exclude=/opt/zapret/ipset/zapret-hosts-user-exclude.txt
|
||||
--dpi-desync=fake
|
||||
--dpi-desync-repeats=6
|
||||
--dpi-desync-fake-quic=/opt/zapret/files/fake/quic_initial_www_google_com.bin
|
||||
"
|
||||
commit $cfgname
|
||||
EOF
|
||||
fi
|
||||
if [ "$strat" = "v4_by_StressOzz" ]; then
|
||||
uci batch <<-EOF
|
||||
set $cfgname.config.NFQWS_PORTS_TCP='80,443'
|
||||
set $cfgname.config.NFQWS_PORTS_UDP='443'
|
||||
set $cfgname.config.NFQWS_OPT="
|
||||
# Strategy $strat
|
||||
|
||||
--filter-tcp=443
|
||||
--hostlist=/opt/zapret/ipset/zapret-hosts-google.txt
|
||||
--hostlist-exclude=/opt/zapret/ipset/zapret-hosts-user-exclude.txt
|
||||
--hostlist-exclude-domains=openwrt.org
|
||||
--dpi-desync=fake,multisplit
|
||||
--dpi-desync-split-pos=2,sld
|
||||
--dpi-desync-fake-tls=0x0F0F0F0F
|
||||
--dpi-desync-fake-tls=/opt/zapret/files/fake/tls_clienthello_www_google_com.bin
|
||||
--dpi-desync-fake-tls-mod=rnd,dupsid,sni=google.com
|
||||
--dpi-desync-split-seqovl=2108
|
||||
--dpi-desync-split-seqovl-pattern=/opt/zapret/files/fake/tls_clienthello_www_google_com.bin
|
||||
--dpi-desync-fooling=badseq
|
||||
|
||||
--new
|
||||
--filter-tcp=443 <HOSTLIST>
|
||||
--hostlist-exclude-domains=openwrt.org
|
||||
--dpi-desync-any-protocol=1
|
||||
--dpi-desync-cutoff=n5
|
||||
--dpi-desync=multisplit
|
||||
--dpi-desync-split-seqovl=582
|
||||
--dpi-desync-split-pos=1
|
||||
--dpi-desync-split-seqovl-pattern=/opt/zapret/files/fake/4pda.bin
|
||||
|
||||
--new
|
||||
--filter-udp=443
|
||||
--hostlist=/opt/zapret/ipset/zapret-hosts-google.txt
|
||||
--hostlist-exclude=/opt/zapret/ipset/zapret-hosts-user-exclude.txt
|
||||
--dpi-desync=fake
|
||||
--dpi-desync-repeats=6
|
||||
--dpi-desync-fake-quic=/opt/zapret/files/fake/quic_initial_www_google_com.bin
|
||||
"
|
||||
commit $cfgname
|
||||
EOF
|
||||
fi
|
||||
if [ "$strat" = "v5_by_StressOzz" ]; then
|
||||
uci batch <<-EOF
|
||||
set $cfgname.config.NFQWS_PORTS_TCP='80,443'
|
||||
set $cfgname.config.NFQWS_PORTS_UDP='443'
|
||||
set $cfgname.config.NFQWS_OPT="
|
||||
# Strategy $strat
|
||||
|
||||
--filter-tcp=443
|
||||
--hostlist=/opt/zapret/ipset/zapret-hosts-google.txt
|
||||
--hostlist-exclude=/opt/zapret/ipset/zapret-hosts-user-exclude.txt
|
||||
--hostlist-exclude-domains=openwrt.org
|
||||
--ip-id=zero
|
||||
--dpi-desync=multisplit
|
||||
--dpi-desync-split-seqovl=681
|
||||
--dpi-desync-split-pos=1
|
||||
--dpi-desync-split-seqovl-pattern=/opt/zapret/files/fake/tls_clienthello_www_google_com.bin
|
||||
|
||||
--new
|
||||
--filter-tcp=443 <HOSTLIST>
|
||||
--hostlist-exclude-domains=openwrt.org
|
||||
--dpi-desync=fake,fakeddisorder
|
||||
--dpi-desync-split-pos=10,midsld
|
||||
--dpi-desync-fake-tls=/opt/zapret/files/fake/max.bin
|
||||
--dpi-desync-fake-tls-mod=rnd,dupsid
|
||||
--dpi-desync-fake-tls=0x0F0F0F0F
|
||||
--dpi-desync-fake-tls-mod=none
|
||||
--dpi-desync-fakedsplit-pattern=/opt/zapret/files/fake/tls_clienthello_vk_com.bin
|
||||
--dpi-desync-fooling=badseq,badsum
|
||||
--dpi-desync-badseq-increment=0
|
||||
|
||||
--new
|
||||
--filter-udp=443
|
||||
--hostlist=/opt/zapret/ipset/zapret-hosts-google.txt
|
||||
--hostlist-exclude=/opt/zapret/ipset/zapret-hosts-user-exclude.txt
|
||||
--dpi-desync=fake
|
||||
--dpi-desync-repeats=6
|
||||
--dpi-desync-fake-quic=/opt/zapret/files/fake/quic_initial_www_google_com.bin
|
||||
"
|
||||
commit $cfgname
|
||||
EOF
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
function set_cfg_default_values
|
||||
{
|
||||
local opt_flags=${1:--}
|
||||
local opt_strat=${2:-v2_by_StressOzz}
|
||||
local cfgname=${3:-$ZAPRET_CFG_NAME}
|
||||
|
||||
if ! echo "$opt_flags" | grep -q "(skip_base)"; then
|
||||
set_cfg_reset_values $cfgname
|
||||
fi
|
||||
if [ "$opt_strat" != "-" ]; then
|
||||
set_cfg_nfqws_strat "$opt_strat" $cfgname
|
||||
fi
|
||||
if echo "$opt_flags" | grep -q "(set_mode_autohostlist)"; then
|
||||
uci batch <<-EOF
|
||||
set $cfgname.config.MODE_FILTER='autohostlist'
|
||||
commit $cfgname
|
||||
EOF
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
BIN
zapret/files/fake/4pda.bin
Normal file
BIN
zapret/files/fake/4pda.bin
Normal file
Binary file not shown.
BIN
zapret/files/fake/max.bin
Normal file
BIN
zapret/files/fake/max.bin
Normal file
Binary file not shown.
BIN
zapret/files/fake/t2.bin
Normal file
BIN
zapret/files/fake/t2.bin
Normal file
Binary file not shown.
@@ -25,6 +25,7 @@ is_run_on_boot && IS_RUN_ON_BOOT=1 || IS_RUN_ON_BOOT=0
|
||||
function enable
|
||||
{
|
||||
local run_on_boot=""
|
||||
patch_luci_header_ut
|
||||
if [ "$IS_RUN_ON_BOOT" = "1" ]; then
|
||||
if [ -n "$ZAPRET_CFG_SEC_NAME" ]; then
|
||||
run_on_boot=$( get_run_on_boot_option )
|
||||
@@ -59,6 +60,7 @@ function enabled
|
||||
function boot
|
||||
{
|
||||
local run_on_boot=""
|
||||
patch_luci_header_ut
|
||||
if [ "$IS_RUN_ON_BOOT" = "1" ]; then
|
||||
if [ -n "$ZAPRET_CFG_SEC_NAME" ]; then
|
||||
run_on_boot=$( get_run_on_boot_option )
|
||||
|
||||
@@ -1,13 +1,198 @@
|
||||
cdn.youtube.com
|
||||
fonts.googleapis.com
|
||||
fonts.gstatic.com
|
||||
ggpht.com
|
||||
googleapis.com
|
||||
googleusercontent.com
|
||||
googlevideo.com
|
||||
youtubei.googleapis.com
|
||||
ytimg.com
|
||||
yt3.ggpht.com
|
||||
yt4.ggpht.com
|
||||
youtube.com
|
||||
youtubeembeddedplayer.googleapis.com
|
||||
ytimg.l.google.com
|
||||
i.ytimg.com
|
||||
i9.ytimg.com
|
||||
jnn-pa.googleapis.com
|
||||
kids.youtube.com
|
||||
m.youtube.com
|
||||
manifest.googlevideo.com
|
||||
music.youtube.com
|
||||
nhacmp3youtube.com
|
||||
returnyoutubedislikeapi.com
|
||||
s.ytimg.com
|
||||
signaler-pa.youtube.com
|
||||
studio.youtube.com
|
||||
tv.youtube.com
|
||||
wide-youtube.l.google.com
|
||||
withyoutube.com
|
||||
youtu.be
|
||||
youtube.com
|
||||
youtube.googleapis.com
|
||||
youtubeeducation.com
|
||||
youtubeembeddedplayer.googleapis.com
|
||||
youtubefanfest.com
|
||||
youtubegaming.com
|
||||
youtubei.googleapis.com
|
||||
youtubekids.com
|
||||
youtubemobilesupport.com
|
||||
youtube-nocookie.com
|
||||
youtube-ui.l.google.com
|
||||
yt.be
|
||||
yt3.ggpht.com
|
||||
yt3.googleusercontent.com
|
||||
yt4.ggpht.com
|
||||
ytimg.com
|
||||
ytimg.l.google.com
|
||||
yting.com
|
||||
yt-video-upload.l.google.com
|
||||
wide-youtube.l.google.com
|
||||
youtube.ae
|
||||
youtube.al
|
||||
youtube.am
|
||||
youtube.at
|
||||
youtube.az
|
||||
youtube.ba
|
||||
youtube.be
|
||||
youtube.bg
|
||||
youtube.bh
|
||||
youtube.bo
|
||||
youtube.by
|
||||
youtube.ca
|
||||
youtube.cat
|
||||
youtube.ch
|
||||
youtube.cl
|
||||
youtube.co
|
||||
youtube.co.ae
|
||||
youtube.co.at
|
||||
youtube.co.cr
|
||||
youtube.co.hu
|
||||
youtube.co.id
|
||||
youtube.co.il
|
||||
youtube.co.in
|
||||
youtube.co.jp
|
||||
youtube.co.ke
|
||||
youtube.co.kr
|
||||
youtube.co.ma
|
||||
youtube.co.nz
|
||||
youtube.co.th
|
||||
youtube.co.tz
|
||||
youtube.co.ug
|
||||
youtube.co.uk
|
||||
youtube.co.ve
|
||||
youtube.co.za
|
||||
youtube.co.zw
|
||||
youtube.com.ar
|
||||
youtube.com.au
|
||||
youtube.com.az
|
||||
youtube.com.bd
|
||||
youtube.com.bh
|
||||
youtube.com.bo
|
||||
youtube.com.br
|
||||
youtube.com.by
|
||||
youtube.com.co
|
||||
youtube.com.do
|
||||
youtube.com.ec
|
||||
youtube.com.ee
|
||||
youtube.com.eg
|
||||
youtube.com.es
|
||||
youtube.com.gh
|
||||
youtube.com.gr
|
||||
youtube.com.gt
|
||||
youtube.com.hk
|
||||
youtube.com.hn
|
||||
youtube.com.hr
|
||||
youtube.com.jm
|
||||
youtube.com.jo
|
||||
youtube.com.kw
|
||||
youtube.com.lb
|
||||
youtube.com.lv
|
||||
youtube.com.ly
|
||||
youtube.com.mk
|
||||
youtube.com.mt
|
||||
youtube.com.mx
|
||||
youtube.com.my
|
||||
youtube.com.ng
|
||||
youtube.com.ni
|
||||
youtube.com.om
|
||||
youtube.com.pa
|
||||
youtube.com.pe
|
||||
youtube.com.ph
|
||||
youtube.com.pk
|
||||
youtube.com.pt
|
||||
youtube.com.py
|
||||
youtube.com.qa
|
||||
youtube.com.ro
|
||||
youtube.com.sa
|
||||
youtube.com.sg
|
||||
youtube.com.sv
|
||||
youtube.com.tn
|
||||
youtube.com.tr
|
||||
youtube.com.tw
|
||||
youtube.com.ua
|
||||
youtube.com.uy
|
||||
youtube.com.ve
|
||||
youtube.cr
|
||||
youtube.cz
|
||||
youtube.de
|
||||
youtube.dk
|
||||
youtube.ee
|
||||
youtube.es
|
||||
youtube.fi
|
||||
youtube.fr
|
||||
youtube.ge
|
||||
youtube.gr
|
||||
youtube.gt
|
||||
youtube.hk
|
||||
youtube.hr
|
||||
youtube.hu
|
||||
youtube.ie
|
||||
youtube.in
|
||||
youtube.iq
|
||||
youtube.is
|
||||
youtube.it
|
||||
youtube.jo
|
||||
youtube.jp
|
||||
youtube.kr
|
||||
youtube.kz
|
||||
youtube.la
|
||||
youtube.lk
|
||||
youtube.lt
|
||||
youtube.lu
|
||||
youtube.lv
|
||||
youtube.ly
|
||||
youtube.ma
|
||||
youtube.md
|
||||
youtube.me
|
||||
youtube.mk
|
||||
youtube.mn
|
||||
youtube.mx
|
||||
youtube.my
|
||||
youtube.ng
|
||||
youtube.ni
|
||||
youtube.nl
|
||||
youtube.no
|
||||
youtube.pa
|
||||
youtube.pe
|
||||
youtube.ph
|
||||
youtube.pk
|
||||
youtube.pl
|
||||
youtube.pr
|
||||
youtube.pt
|
||||
youtube.qa
|
||||
youtube.ro
|
||||
youtube.rs
|
||||
youtube.ru
|
||||
youtube.sa
|
||||
youtube.se
|
||||
youtube.sg
|
||||
youtube.si
|
||||
youtube.sk
|
||||
youtube.sn
|
||||
youtube.soy
|
||||
youtube.sv
|
||||
youtube.tn
|
||||
youtube.tv
|
||||
youtube.ua
|
||||
youtube.ug
|
||||
youtube.uy
|
||||
youtube.vn
|
||||
youtubego.co.id
|
||||
youtubego.co.in
|
||||
youtubego.com
|
||||
youtubego.com.br
|
||||
youtubego.id
|
||||
youtubego.in
|
||||
|
||||
@@ -3,18 +3,254 @@
|
||||
172.16.0.0/12
|
||||
192.168.0.0/16
|
||||
169.254.0.0/16
|
||||
100.64.0.0/10
|
||||
::1
|
||||
fc00::/7
|
||||
fe80::/10
|
||||
play.google.com
|
||||
android.com
|
||||
google-analytics.com
|
||||
googleusercontent.com
|
||||
####################################
|
||||
nalog.ru
|
||||
gstatic.com
|
||||
gvt1.com
|
||||
ggpht.com
|
||||
dl.google.com
|
||||
dl-ssl.google.com
|
||||
android.clients.google.com
|
||||
gvt2.com
|
||||
gvt3.com
|
||||
gosuslugi.ru
|
||||
mos-gorsud.ru
|
||||
gov.ru
|
||||
sudrf.ru
|
||||
ipstream.one
|
||||
#################################### Epicgames
|
||||
easy.ac
|
||||
fab.com
|
||||
quixel.se
|
||||
quixel.com
|
||||
eac-cdn.com
|
||||
paragon.com
|
||||
spyjinx.com
|
||||
3lateral.com
|
||||
fortnite.com
|
||||
epicgames.com
|
||||
epicgames.dev
|
||||
hyprsense.com
|
||||
sketchfab.com
|
||||
artstation.com
|
||||
roborecall.com
|
||||
twinmotion.com
|
||||
cubicmotion.com
|
||||
playparagon.com
|
||||
realityscan.com
|
||||
epicgamescdn.com
|
||||
et.epicgames.com
|
||||
ol.epicgames.com
|
||||
radgametools.com
|
||||
unrealengine.com
|
||||
api.epicgames.dev
|
||||
easyanticheat.net
|
||||
shadowcomplex.com
|
||||
battlebreakers.com
|
||||
store.epicgames.com
|
||||
capturingreality.com
|
||||
unrealtournament.com
|
||||
cdn1.unrealengine.com
|
||||
cdn2.unrealengine.com
|
||||
accounts.epicgames.com
|
||||
download.epicgames.com
|
||||
tracking.epicgames.com
|
||||
download2.epicgames.com
|
||||
download3.epicgames.com
|
||||
download4.epicgames.com
|
||||
metrics.ol.epicgames.com
|
||||
datarouter.ol.epicgames.com
|
||||
fastly-download.epicgames.com
|
||||
store-content.ak.epicgames.com
|
||||
static-assets-prod.epicgames.com
|
||||
epicgames-download1.akamaized.net
|
||||
launcher-website-prod07.ol.epicgames.com
|
||||
ut-public-service-prod10.ol.epicgames.com
|
||||
store-site-backend-static.ak.epicgames.com
|
||||
library-service.live.use1a.on.epicgames.com
|
||||
accountportal-website-prod07.ol.epicgames.com
|
||||
account-public-service-prod03.ol.epicgames.com
|
||||
catalog-public-service-prod06.ol.epicgames.com
|
||||
friends-public-service-prod06.ol.epicgames.com
|
||||
launcher-public-service-prod06.ol.epicgames.com
|
||||
entitlement-public-service-prod08.ol.epicgames.com
|
||||
lightswitch-public-service-prod06.ol.epicgames.com
|
||||
orderprocessor-public-service-ecomprod01.ol.epicgames.com
|
||||
launcherwaitingroom-public-service-prod06.ol.epicgames.com
|
||||
datastorage-public-service-liveegs.live.use1a.on.epicgames.com
|
||||
#################################### Steam
|
||||
s.team
|
||||
steam.tv
|
||||
valve.net
|
||||
steamcdn.com
|
||||
steamcdn.net
|
||||
steamstat.us
|
||||
valvecdn.com
|
||||
steam-api.com
|
||||
steamchat.com
|
||||
steamdeck.com
|
||||
steam-chat.com
|
||||
steamgames.com
|
||||
steamgames.net
|
||||
underlords.com
|
||||
steamserver.net
|
||||
steamstatic.com
|
||||
playartifact.com
|
||||
steam.cdn.on.net
|
||||
steamcontent.com
|
||||
steampowered.com
|
||||
valvecontent.com
|
||||
valvesoftware.com
|
||||
valvesoftware.net
|
||||
steam.cdn.webra.ru
|
||||
steambroadcast.com
|
||||
steamcommunity.com
|
||||
cdn.steamstatic.com
|
||||
cs.steampowered.com
|
||||
dl.steam.clngaa.com
|
||||
steam.ru.qtlglb.com
|
||||
api.steampowered.com
|
||||
steam.eca.qtlglb.com
|
||||
steamusercontent.com
|
||||
help.steampowered.com
|
||||
steam.apac.qtlglb.com
|
||||
steam.naeu.qtlglb.com
|
||||
cdn.steamcommunity.com
|
||||
gstore.val.manlaxy.com
|
||||
login.steampowered.com
|
||||
media.steampowered.com
|
||||
partner.steamgames.com
|
||||
shared.steamstatic.com
|
||||
steam.cdn.orcon.net.nz
|
||||
store.steampowered.com
|
||||
steamcdn-a.akamaihd.net
|
||||
steampipe.akamaized.net
|
||||
partner.steampowered.com
|
||||
steamcdn-a.akamaized.net
|
||||
steamdeckusercontent.com
|
||||
support.steampowered.com
|
||||
checkout.steampowered.com
|
||||
community.steamstatic.com
|
||||
steam.cdn.slingshot.co.nz
|
||||
steammobile.akamaized.net
|
||||
steamstatic.akamaized.net
|
||||
steamstore-a.akamaihd.net
|
||||
steamvideo-a.akamaihd.net
|
||||
workshop.steampowered.com
|
||||
cdn.akamai.steamstatic.com
|
||||
cdn.fastly.steamstatic.com
|
||||
client-update.queniuqe.com
|
||||
community.steampowered.com
|
||||
steamdeckcdn.akamaized.net
|
||||
steampipe-kr.akamaized.net
|
||||
clan.fastly.steamstatic.com
|
||||
steamcontent-a.akamaihd.net
|
||||
steambroadcast.akamaized.net
|
||||
steamcommunity.akamaized.net
|
||||
store.akamai.steamstatic.com
|
||||
store.fastly.steamstatic.com
|
||||
scontent.steamusercontent.com
|
||||
shared.fastly.steamstatic.com
|
||||
steamcommunity-a.akamaihd.net
|
||||
avatars.fastly.steamstatic.com
|
||||
cdn.cloudflare.steamstatic.com
|
||||
edge.steam-dns.top.comcast.net
|
||||
steamcommunity-a.akamaized.net
|
||||
steamuserimages-a.akamaihd.net
|
||||
steampipe-partner.akamaized.net
|
||||
steamusercontent-a.akamaihd.net
|
||||
client-download.steampowered.com
|
||||
community.fastly.steamstatic.com
|
||||
store.cloudflare.steamstatic.com
|
||||
community.cloudflare.steamstatic.com
|
||||
steamcdn-a.akamaihd.net.edgesuite.net
|
||||
steamcloudsweden.blob.core.windows.net
|
||||
steamcommunity.cloudflare.steamstatic.com
|
||||
steamcommunity-a.akamaihd.net.edgesuite.net
|
||||
#################################### OpenWRT
|
||||
github.com
|
||||
openwrt.org
|
||||
gh.openwrt.org
|
||||
cdn.openwrt.org
|
||||
dev.openwrt.org
|
||||
git.openwrt.org
|
||||
lede-project.org
|
||||
wiki.openwrt.org
|
||||
forum.openwrt.org
|
||||
lists.openwrt.org
|
||||
openwrt.gitlab.io
|
||||
archive.openwrt.org
|
||||
downloads.openwrt.org
|
||||
fwdownloads.openwrt.org
|
||||
mirror-01.infra.openwrt.org
|
||||
mirror-02.infra.openwrt.org
|
||||
mirror-03.infra.openwrt.org
|
||||
mirror-04.infra.openwrt.org
|
||||
#################################### UbisoftConnect
|
||||
ubi.com
|
||||
ubisoft.com
|
||||
store.ubi.com
|
||||
ubisoftconnect.com
|
||||
connect.ubisoft.com
|
||||
drops-register.ubi.com
|
||||
public-ubiservices.ubi.com
|
||||
ubisoftconnect.cdn.ubi.com
|
||||
uplaypc-s-ubisoft.cdn.ubi.com
|
||||
uplaypc-s-ubisoft-ww.cdn.ubi.com
|
||||
ubisoft-orbit-savegames.s3.amazonaws.com
|
||||
ubisoft-uplay-savegames.s3.amazonaws.com
|
||||
#################################### Aliexpress
|
||||
ae.com
|
||||
ae-rus.net
|
||||
alicdn.com
|
||||
aestatic.net
|
||||
aliexpress.ru
|
||||
aliexpress.us
|
||||
aliexpress.com
|
||||
aliexpress-media.com
|
||||
#################################### PSN
|
||||
scea.com
|
||||
np.scea.com
|
||||
ps5update.com
|
||||
psdownload.com
|
||||
playstation.net
|
||||
playstation.com
|
||||
account.sony.com
|
||||
psremoteplay.com
|
||||
ps4.playstation.com
|
||||
ps5.playstation.com
|
||||
playstationcloud.com
|
||||
psapi.playstation.net
|
||||
store.playstation.com
|
||||
media.playstation.com
|
||||
auth.np.ac.playstation.net
|
||||
sonyentertainmentnetwork.com
|
||||
np.community.playstation.net
|
||||
id.sonyentertainmentnetwork.com
|
||||
#################################### Twitch
|
||||
twitch.tv
|
||||
ttvnw.net
|
||||
jtvnw.net
|
||||
twimg.com
|
||||
m.twitch.tv
|
||||
id.twitch.tv
|
||||
www.twitch.tv
|
||||
twitchcdn.net
|
||||
ext-twitch.tv
|
||||
twitchsvc.net
|
||||
api.twitch.tv
|
||||
gql.twitch.tv
|
||||
dev.twitch.tv
|
||||
live-video.net
|
||||
twitch.a2z.com
|
||||
chat.twitch.tv
|
||||
help.twitch.tv
|
||||
assets.twitch.tv
|
||||
twitch-shadow.net
|
||||
passport.twitch.tv
|
||||
irc.chat.twitch.tv
|
||||
vod-metro.twitch.tv
|
||||
twitchcdn-shadow.net
|
||||
static.twitchcdn.net
|
||||
vod-secure.twitch.tv
|
||||
irc-ws.chat.twitch.tv
|
||||
pubsub-edge.twitch.tv
|
||||
vod-pop-secure.twitch.tv
|
||||
####################################
|
||||
|
||||
23
zapret/ipset/zapret-hosts-user.txt
Normal file
23
zapret/ipset/zapret-hosts-user.txt
Normal file
@@ -0,0 +1,23 @@
|
||||
dis.gd
|
||||
discord-attachments-uploads-prd.storage.googleapis.com
|
||||
discord.app
|
||||
discord.co
|
||||
discord.com
|
||||
discord.design
|
||||
discord.dev
|
||||
discord.gift
|
||||
discord.gifts
|
||||
discord.gg
|
||||
discord.media
|
||||
discord.new
|
||||
discord.store
|
||||
discord.status
|
||||
discord-activities.com
|
||||
discordactivities.com
|
||||
discordapp.com
|
||||
discordapp.net
|
||||
discordcdn.com
|
||||
discordmerch.com
|
||||
discordpartygames.com
|
||||
discordsays.com
|
||||
discordsez.com
|
||||
@@ -5,14 +5,29 @@
|
||||
|
||||
cfg_run_on_boot="$( uci -q get zapret.config.run_on_boot )"
|
||||
|
||||
create_default_cfg
|
||||
opt_flags=${1:--}
|
||||
opt_strat=$2
|
||||
|
||||
if echo "$opt_flags" | grep -q "(reset_ipset)"; then
|
||||
restore_all_ipset_cfg
|
||||
fi
|
||||
|
||||
create_default_cfg "$opt_flags" "$opt_strat"
|
||||
|
||||
if [ "$cfg_run_on_boot" = "1" ]; then
|
||||
uci set zapret.config.run_on_boot=1
|
||||
uci commit
|
||||
fi
|
||||
|
||||
if [ "$1" = "sync" ]; then
|
||||
ZAPRET_SYNC_CONFIG=0
|
||||
if [ "$opt_flags" = "sync" ]; then
|
||||
ZAPRET_SYNC_CONFIG=1
|
||||
fi
|
||||
if echo "$opt_flags" | grep -q "(sync)"; then
|
||||
ZAPRET_SYNC_CONFIG=1
|
||||
fi
|
||||
|
||||
if [ "$ZAPRET_SYNC_CONFIG" = "1" ]; then
|
||||
# renew main config
|
||||
/opt/zapret/sync_config.sh
|
||||
fi
|
||||
|
||||
12
zapret/script-exec.sh
Executable file
12
zapret/script-exec.sh
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
# Copyright (c) 2024 remittor
|
||||
LOG_FILE=$1
|
||||
PID_FILE=$2
|
||||
shift 2
|
||||
: > $LOG_FILE
|
||||
(
|
||||
exec </dev/null >/dev/null 2>&1
|
||||
"$@" >> $LOG_FILE 2>&1
|
||||
) &
|
||||
echo $! > $PID_FILE
|
||||
exit 0
|
||||
@@ -48,6 +48,12 @@ function sync_param
|
||||
if [ "$value" = "$TAB" ]; then
|
||||
value=""
|
||||
fi
|
||||
if [ "$param" = "NFQWS_PORTS_TCP_KEEPALIVE" -o "$param" = "NFQWS_PORTS_UDP_KEEPALIVE" ]; then
|
||||
[ "$value" = "0" ] && value=""
|
||||
fi
|
||||
if [ "$param" = "NFQWS_OPT" -a "$value" != "" ]; then
|
||||
value=$( echo -n "$value" | sed '/^#/d' )
|
||||
fi
|
||||
if [ "$vtype" = "str" ]; then
|
||||
set_param_value_str $param "$value"
|
||||
else
|
||||
@@ -74,6 +80,7 @@ sync_param FLOWOFFLOAD
|
||||
sync_param INIT_APPLY_FW
|
||||
sync_param DISABLE_IPV4
|
||||
sync_param DISABLE_IPV6
|
||||
sync_param FILTER_TTL_EXPIRED_ICMP
|
||||
sync_param MODE_FILTER
|
||||
sync_param DISABLE_CUSTOM
|
||||
sync_param WS_USER str
|
||||
@@ -88,14 +95,15 @@ sync_param AUTOHOSTLIST_DEBUGLOG
|
||||
sync_param NFQWS_ENABLE
|
||||
sync_param DESYNC_MARK
|
||||
sync_param DESYNC_MARK_POSTNAT
|
||||
sync_param FILTER_MARK str
|
||||
sync_param NFQWS_PORTS_TCP str
|
||||
sync_param NFQWS_PORTS_UDP str
|
||||
sync_param NFQWS_TCP_PKT_OUT str
|
||||
sync_param NFQWS_TCP_PKT_IN str
|
||||
sync_param NFQWS_UDP_PKT_OUT str
|
||||
sync_param NFQWS_UDP_PKT_IN str
|
||||
sync_param NFQWS_PORTS_TCP_KEEPALIVE
|
||||
sync_param NFQWS_PORTS_UDP_KEEPALIVE
|
||||
sync_param NFQWS_PORTS_TCP_KEEPALIVE str
|
||||
sync_param NFQWS_PORTS_UDP_KEEPALIVE str
|
||||
sync_param NFQWS_OPT str
|
||||
|
||||
ZAPRET_CONFIG="$ZAPRET_CONFIG__SAVED"
|
||||
|
||||
388
zapret/update-pkg.sh
Executable file
388
zapret/update-pkg.sh
Executable file
@@ -0,0 +1,388 @@
|
||||
#!/bin/sh
|
||||
# Copyright (c) 2025 remittor
|
||||
|
||||
. /opt/zapret/comfunc.sh
|
||||
. /usr/share/libubox/jshn.sh
|
||||
|
||||
opt_check=
|
||||
opt_prerelease=
|
||||
opt_update=
|
||||
opt_forced=
|
||||
opt_test=
|
||||
|
||||
while getopts "cu:pft" opt; do
|
||||
case $opt in
|
||||
c) opt_check=true;;
|
||||
p) opt_prerelease=true;;
|
||||
u) opt_update="$OPTARG";;
|
||||
f) opt_forced=true;;
|
||||
t) opt_test=true;;
|
||||
esac
|
||||
done
|
||||
|
||||
ZAP_PKG_DIR=/tmp/zapret_pkg
|
||||
|
||||
if [ "$opt_test" = "true" ]; then
|
||||
echo 1; sleep 2;
|
||||
echo 2; sleep 2;
|
||||
echo 3; sleep 2;
|
||||
echo ' * resolve_conffiles 123456'; sleep 1;
|
||||
echo 4; sleep 2;
|
||||
echo END
|
||||
return 0;
|
||||
fi
|
||||
|
||||
ZAP_CPU_ARCH=$(get_cpu_arch)
|
||||
ZAP_REL_URL="https://raw.githubusercontent.com/remittor/zapret-openwrt/gh-pages/releases/releases_zap1_$ZAP_CPU_ARCH.json"
|
||||
|
||||
WGET_TIMEOUT=5
|
||||
WGET_HEADER1="Accept: application/json"
|
||||
WGET_HEADER2="Cache-Control: no-cache"
|
||||
|
||||
REL_JSON=
|
||||
REL_ACTUAL_TAG=
|
||||
REL_ACTUAL_PRE=
|
||||
REL_ACTUAL_URL=
|
||||
|
||||
ZAP_OUT=
|
||||
ZAP_ERR=
|
||||
ZAP_PKG_URL=
|
||||
|
||||
function download_json
|
||||
{
|
||||
local url="$1"
|
||||
wget -q -T "$WGET_TIMEOUT" --header="$WGET_HEADER1" --header="$WGET_HEADER2" -O - "$url"
|
||||
return $?
|
||||
}
|
||||
|
||||
if command -v apk >/dev/null; then
|
||||
PKG_MGR=apk
|
||||
ZAP_PKG_EXT=apk
|
||||
elif command -v opkg >/dev/null; then
|
||||
PKG_MGR=opkg
|
||||
ZAP_PKG_EXT=ipk
|
||||
else
|
||||
echo "ERROR: No package manager found"
|
||||
return 1
|
||||
fi
|
||||
|
||||
# -------------------------------------------------------------------------------------------------------
|
||||
|
||||
function get_pkg_version
|
||||
{
|
||||
local pkg_name="$1"
|
||||
local ver line pkg_prefix
|
||||
if [ "$PKG_MGR" = opkg ]; then
|
||||
ver=$( opkg list-installed "$pkg_name" 2>/dev/null | awk -F' - ' '{print $2}' | tr -d '\r' )
|
||||
if [ -n "$ver" ]; then
|
||||
echo -n "$ver"
|
||||
return 0
|
||||
fi
|
||||
fi
|
||||
if [ "$PKG_MGR" = apk ]; then
|
||||
line=$( apk info -e "$pkg_name" 2>/dev/null || true )
|
||||
if [ -n "$line" ]; then
|
||||
pkg_prefix="${pkg_name}-"
|
||||
case "$line" in
|
||||
"$pkg_prefix"*)
|
||||
ver=${line#"$pkg_prefix"}
|
||||
;;
|
||||
*)
|
||||
ver=${line##*-}
|
||||
;;
|
||||
esac
|
||||
echo -n "$ver"
|
||||
return 0
|
||||
fi
|
||||
fi
|
||||
echo ""
|
||||
return 1
|
||||
}
|
||||
|
||||
function normalize_version
|
||||
{
|
||||
local ver="$1"
|
||||
local base
|
||||
local major minor rel
|
||||
case "$ver" in
|
||||
*-r*)
|
||||
rel="${ver##*-r}"
|
||||
base="${ver%-r*}"
|
||||
;;
|
||||
*)
|
||||
rel=1
|
||||
base="$ver"
|
||||
;;
|
||||
esac
|
||||
major="${base%%.*}"
|
||||
minor="${base#*.}"
|
||||
[ -z "$minor" ] && minor=0
|
||||
[ -z "$rel" ] && rel=1
|
||||
echo "$major.$minor.$rel"
|
||||
}
|
||||
|
||||
function pkg_version_cmp
|
||||
{
|
||||
local ver1=$( normalize_version "$1" )
|
||||
local ver2=$( normalize_version "$2" )
|
||||
local x1 x2
|
||||
# major
|
||||
x1=$( echo "$ver1" | cut -d. -f1 )
|
||||
x2=$( echo "$ver2" | cut -d. -f1 )
|
||||
[ "$x1" -gt "$x2" ] && { echo -n "G"; return 0; }
|
||||
[ "$x1" -lt "$x2" ] && { echo -n "L"; return 0; }
|
||||
# minor
|
||||
x1=$( echo "$ver1" | cut -d. -f2 )
|
||||
x2=$( echo "$ver2" | cut -d. -f2 )
|
||||
[ "$x1" -gt "$x2" ] && { echo -n "G"; return 0; }
|
||||
[ "$x1" -lt "$x2" ] && { echo -n "L"; return 0; }
|
||||
# release
|
||||
x1=$( echo "$ver1" | cut -d. -f3 )
|
||||
x2=$( echo "$ver2" | cut -d. -f3 )
|
||||
[ "$x1" -gt "$x2" ] && { echo -n "G"; return 0; }
|
||||
[ "$x1" -lt "$x2" ] && { echo -n "L"; return 0; }
|
||||
echo -n "E"
|
||||
}
|
||||
|
||||
function download_releases_info
|
||||
{
|
||||
local txt txtlen txtlines generated_at
|
||||
REL_JSON=
|
||||
echo "CPU arch: $ZAP_CPU_ARCH"
|
||||
echo "Download releases info..."
|
||||
txt=$(download_json $ZAP_REL_URL)
|
||||
txtlen=${#txt}
|
||||
txtlines=$(printf '%s\n' "$txt" | wc -l)
|
||||
if [[ $txtlen -lt 64 ]]; then
|
||||
echo "ERROR: Cannot download releases info!"
|
||||
return 104
|
||||
fi
|
||||
echo "Releases info downloaded! Size = $txtlen, Lines = $txtlines"
|
||||
generated_at=$(printf '%s\n' "$txt" | grep -m1 -o '"generated_at"[[:space:]]*:[[:space:]]*".*"' | cut -d'"' -f4)
|
||||
if [[ "$generated_at" = "" ]]; then
|
||||
echo "ERROR: Cannot download releases info! (incorrect generated_at)"
|
||||
return 105
|
||||
fi
|
||||
echo "Releases info generated_at = $generated_at"
|
||||
REL_JSON="$txt"
|
||||
return 0
|
||||
}
|
||||
|
||||
function get_actual_release
|
||||
{
|
||||
local tag url pre idx_list
|
||||
REL_ACTUAL_TAG=
|
||||
REL_ACTUAL_PRE=
|
||||
REL_ACTUAL_URL=
|
||||
json_load "$(printf '%s' "$REL_JSON")"
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "ERROR: incorrect format of ${ZAP_REL_URL##*/}"
|
||||
json_cleanup
|
||||
return 151
|
||||
fi
|
||||
json_select releases
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "ERROR: incorrect format of ${ZAP_REL_URL##*/}"
|
||||
json_cleanup
|
||||
return 157
|
||||
fi
|
||||
json_get_keys idx_list
|
||||
# array already sorted by created_at => take first elem
|
||||
for rel_id in $idx_list; do
|
||||
json_select "$rel_id" # enter into releases[rel_id]
|
||||
json_get_var tag tag
|
||||
json_get_var pre prerelease
|
||||
#echo "rel_id = $rel_id opt_prerelease = $opt_prerelease pre = $pre"
|
||||
if [ "$opt_prerelease" != "true" ] && [ "$pre" = "1" ]; then
|
||||
json_select .. # exit from releases[rel_id]
|
||||
continue
|
||||
fi
|
||||
json_select assets
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "ERROR: release[$rel_id] has not include 'assets'"
|
||||
json_cleanup
|
||||
return 160
|
||||
fi
|
||||
json_select 0 > /dev/null
|
||||
if [ $? -ne 0 ]; then
|
||||
json_select 1 > /dev/null
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "ERROR: release[$rel_id] include incorrect 'assets'"
|
||||
json_cleanup
|
||||
return 162
|
||||
fi
|
||||
fi
|
||||
json_get_var url browser_download_url
|
||||
json_select .. .. .. # assets-elem -> assets -> releases[rel_id] -> releases
|
||||
json_cleanup
|
||||
REL_ACTUAL_TAG="$tag"
|
||||
REL_ACTUAL_PRE="$pre"
|
||||
REL_ACTUAL_URL="$url"
|
||||
return 0
|
||||
done
|
||||
json_cleanup
|
||||
echo "ERROR: latest release for arch \"$ZAP_CPU_ARCH\" not founded!"
|
||||
return 1 # release not founded
|
||||
}
|
||||
|
||||
# -------------------------------------------------------------------------------------------------------
|
||||
|
||||
if [ "$opt_check" != "true" -a "$opt_update" = "" ]; then
|
||||
echo 'ERROR: Incorrect arguments'
|
||||
return 1
|
||||
fi
|
||||
|
||||
if [ "$opt_update" = "@" ]; then
|
||||
opt_check="true"
|
||||
fi
|
||||
|
||||
if [ "$opt_check" = "true" ]; then
|
||||
download_releases_info
|
||||
ZAP_ERR=$?
|
||||
if [ $ZAP_ERR -ne 0 ]; then
|
||||
echo "ERROR: Func download_releases_info return error code: $ZAP_ERR"
|
||||
return $ZAP_ERR
|
||||
fi
|
||||
get_actual_release
|
||||
ZAP_ERR=$?
|
||||
if [ $ZAP_ERR -ne 0 ]; then
|
||||
echo "ERROR: Func get_actual_release return error code: $ZAP_ERR"
|
||||
return $ZAP_ERR
|
||||
fi
|
||||
echo "Latest package version: $REL_ACTUAL_TAG"
|
||||
echo "Latest package url: $REL_ACTUAL_URL"
|
||||
fi
|
||||
|
||||
ZAP_PKG_SIZE=
|
||||
ZAP_PKG_SZ=
|
||||
ZAP_PKG_ZIP_NAME=
|
||||
ZAP_PKG_FN=
|
||||
ZAP_PKG_BASE_FN=
|
||||
ZAP_PKG_LUCI_FN=
|
||||
|
||||
ZAP_CUR_PKG_VER=$( get_pkg_version zapret )
|
||||
echo "Current installed version: $ZAP_CUR_PKG_VER"
|
||||
|
||||
if [ "$opt_update" = "" ]; then
|
||||
ZAP_PKG_URL="$REL_ACTUAL_URL"
|
||||
if [ "$ZAP_PKG_URL" = "" ]; then
|
||||
echo "ERROR: actual release not founded!"
|
||||
return 199
|
||||
fi
|
||||
else
|
||||
ZAP_PKG_URL="$opt_update"
|
||||
if [ "$opt_update" = "@" ]; then
|
||||
ZAP_PKG_URL="$REL_ACTUAL_URL"
|
||||
fi
|
||||
if [ "$opt_update" = "@" -a "$ZAP_PKG_URL" = "" ]; then
|
||||
echo "ERROR: actual release not founded!"
|
||||
return 199
|
||||
fi
|
||||
fi
|
||||
|
||||
ZAP_PKG_ZIP_NAME=${ZAP_PKG_URL##*/}
|
||||
ZAP_PKG_ZIP_VER=${ZAP_PKG_ZIP_NAME#*_v}
|
||||
ZAP_PKG_ZIP_VER=${ZAP_PKG_ZIP_VER%%_*}
|
||||
|
||||
if [ "$opt_update" != "" ]; then
|
||||
if [ "$opt_update" = "@" ]; then
|
||||
echo "Latest available version: $ZAP_PKG_ZIP_VER"
|
||||
else
|
||||
echo "Target requested version: $ZAP_PKG_ZIP_VER"
|
||||
fi
|
||||
fi
|
||||
echo "ZAP_PKG_URL = $ZAP_PKG_URL"
|
||||
|
||||
ZAP_VER_CMP=$( pkg_version_cmp "$ZAP_CUR_PKG_VER" "$ZAP_PKG_ZIP_VER" )
|
||||
if [ "$opt_update" = "" ]; then
|
||||
if [ "$ZAP_VER_CMP" = "E" ]; then
|
||||
echo "RESULT: (E) No update required for this package!"
|
||||
elif [ "$ZAP_VER_CMP" = "G" ]; then
|
||||
echo "RESULT: (G) You have a newer version installed than the one on GitHub!"
|
||||
elif [ "$ZAP_VER_CMP" = "L" ]; then
|
||||
echo "RESULT: (L) You have an older version installed than the one on GitHub!"
|
||||
else
|
||||
echo "ERROR: ZAP_PKG_ZIP_VER='$ZAP_PKG_ZIP_VER' ZAP_VER_CMP='$ZAP_VER_CMP'"
|
||||
return 199
|
||||
fi
|
||||
return 0
|
||||
fi
|
||||
|
||||
if [ "$opt_update" != "" ]; then
|
||||
if [ "$opt_forced" != "true" ]; then
|
||||
if [ "$ZAP_VER_CMP" = "E" ]; then
|
||||
echo "RESULT: (E) No update required for this package!"
|
||||
return 0
|
||||
fi
|
||||
fi
|
||||
ZAP_PKG_DIR=/tmp/zapret_pkg
|
||||
rm -rf $ZAP_PKG_DIR
|
||||
ZAP_PKG_SIZE=$( wget --spider -T $WGET_TIMEOUT --header="$WGET_HEADER2" -S "$ZAP_PKG_URL" 2>&1 | grep -i 'Content-Length:' | tail -n1 | awk '{print $2}' | tr -d '\r' )
|
||||
echo "Downloded ZIP-file size = $ZAP_PKG_SIZE bytes"
|
||||
[ "$ZAP_PKG_SIZE" = "" ] || [[ $ZAP_PKG_SIZE -lt 256 ]] && {
|
||||
echo "ERROR: incorrect package size!"
|
||||
return 210
|
||||
}
|
||||
mkdir $ZAP_PKG_DIR
|
||||
ZAP_PKG_FN="$ZAP_PKG_DIR/${ZAP_PKG_URL##*/}"
|
||||
echo "Download ZIP-file..."
|
||||
wget -q -T 15 --header="$WGET_HEADER2" -O "$ZAP_PKG_FN" "$ZAP_PKG_URL"
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "ERROR: cannot download package!"
|
||||
return 215
|
||||
fi
|
||||
ZAP_PKG_SZ=$( wc -c < "$ZAP_PKG_FN" )
|
||||
if [ "$ZAP_PKG_SZ" != "$ZAP_PKG_SIZE" ]; then
|
||||
echo "ERROR: downloaded package is incorrect!"
|
||||
return 216
|
||||
fi
|
||||
unzip -q "$ZAP_PKG_FN" -d $ZAP_PKG_DIR
|
||||
rm -f "$ZAP_PKG_FN"
|
||||
if [ "$PKG_MGR" = "apk" ]; then
|
||||
if [ ! -d "$ZAP_PKG_DIR/apk" ]; then
|
||||
echo "ERROR: APK-files not founded"
|
||||
return 221
|
||||
fi
|
||||
rm -f "$ZAP_PKG_DIR/*.ipk"
|
||||
mv "$ZAP_PKG_DIR/apk/*" "$ZAP_PKG_DIR/"
|
||||
else
|
||||
rm -rf "$ZAP_PKG_DIR/apk"
|
||||
fi
|
||||
ZAP_PKG_LIST=$( ls -1 "$ZAP_PKG_DIR" )
|
||||
echo "------ Downloaded packages:"
|
||||
echo "$ZAP_PKG_LIST"
|
||||
echo "------"
|
||||
ZAP_PKG_BASE_FN=$( find "$ZAP_PKG_DIR" -maxdepth 1 -type f -name "zapret_*.${ZAP_PKG_EXT}" | head -n 1 )
|
||||
ZAP_PKG_LUCI_FN=$( find "$ZAP_PKG_DIR" -maxdepth 1 -type f -name "luci-app-*.${ZAP_PKG_EXT}" | head -n 1 )
|
||||
if [ ! -f "$ZAP_PKG_BASE_FN" ]; then
|
||||
echo "ERROR: File \"zapret_*.${ZAP_PKG_EXT}\" not found!"
|
||||
return 231
|
||||
fi
|
||||
echo "ZAP_PKG_BASE_FN = $ZAP_PKG_BASE_FN"
|
||||
if [ ! -f "$ZAP_PKG_LUCI_FN" ]; then
|
||||
echo "ERROR: File \"luci-app-*.${ZAP_PKG_EXT}\" not found!"
|
||||
return 232
|
||||
fi
|
||||
echo "ZAP_PKG_LUCI_FN = $ZAP_PKG_LUCI_FN"
|
||||
echo "Install downloaded packages..."
|
||||
if [ "$PKG_MGR" != "apk" ]; then
|
||||
opkg install --force-reinstall "$ZAP_PKG_BASE_FN"
|
||||
else
|
||||
apk add --allow-untrusted --upgrade "$ZAP_PKG_BASE_FN"
|
||||
fi
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "ERROR: Failed to install package $ZAP_PKG_BASE_FN"
|
||||
return 245
|
||||
fi
|
||||
if [ "$PKG_MGR" != "apk" ]; then
|
||||
opkg install --force-reinstall "$ZAP_PKG_LUCI_FN"
|
||||
else
|
||||
apk add --allow-untrusted --upgrade "$ZAP_PKG_LUCI_FN"
|
||||
fi
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "ERROR: Failed to install package $ZAP_PKG_LUCI_FN"
|
||||
return 247
|
||||
fi
|
||||
echo "RESULT: (+) Packages from $ZAP_PKG_ZIP_NAME successfully installed!"
|
||||
sleep 1
|
||||
fi
|
||||
Reference in New Issue
Block a user