Ilya Shipitsin
6f749ab71c
Merge pull request #2181 from jgrasboeck/fix_openvpn_auth_failed_reply
...
Openvpn: only send AUTH_FAILED reply on auth errors
2026-02-14 11:06:26 +01:00
Ilya Shipitsin
df3ea19f0e
Merge pull request #2226 from SaiXu-QC/WinArm64
...
Add Win Arm64 Doc
2026-02-09 08:42:27 +01:00
SaiXU
9da4aabda5
add win arm64 doc
2026-02-09 10:42:32 +08:00
SaiXU
3cb3dd20fc
Add BUILD_WinArm64.md
2026-02-09 10:38:45 +08:00
Ilya Shipitsin
b551b77e25
Merge pull request #2225 from synqa/tsan-disable-macro
...
Add macro to disable thread sanitizer
2026-02-08 17:26:26 +01:00
synqa
0a87ff8fbd
Add macro to disable thread sanitizer
...
Define ATTRIBUTE_NO_TSAN as __attribute__((no_sanitize(\"thread\")))
when building with thread sanitizer enabled. Falls back to empty
definition when thread sanitizer is not active or not supported
compiler.
2026-02-08 23:41:10 +09:00
synqa
6016f84315
Revert "Fix data race on Tick64"
2026-02-08 23:14:09 +09:00
Ilya Shipitsin
9d27b935b7
Merge pull request #2223 from synqa/fix-memory-leak-loadlanglist
...
Fix memory leak in LoadLangList()
2026-02-06 15:56:18 +01:00
Ilya Shipitsin
1e1104d3ba
Merge pull request #2221 from synqa/fix-halt-flag
...
Fix data race on Tick64
2026-02-06 15:55:01 +01:00
synqa
fe460de5a6
Fix data race on Tick64
...
Add lock protection when reading/writing Halt flag to prevent data race.
2026-02-06 21:12:16 +09:00
synqa
6ef941db21
Fix memory leak in LoadLangList()
2026-02-06 21:08:52 +09:00
synqa
d7d3ec8cac
Fix race condition in thread counter
...
To prevent data races caused by concurrent access from multiple threads,
replace UINT with COUNTER.
2026-02-06 21:03:08 +09:00
dependabot[bot]
f1012da5fb
Build(deps-dev): Bump webpack in /src/bin/hamcore/wwwroot/admin/default
...
Bumps [webpack](https://github.com/webpack/webpack ) from 5.94.0 to 5.105.0.
- [Release notes](https://github.com/webpack/webpack/releases )
- [Changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md )
- [Commits](https://github.com/webpack/webpack/compare/v5.94.0...v5.105.0 )
---
updated-dependencies:
- dependency-name: webpack
dependency-version: 5.105.0
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-02-05 23:11:11 +00:00
Ilya Shipitsin
1411d4ceb4
Merge pull request #2217 from synqa/fix-preserve-errno
...
Fix preserve errno in SIGCHLD signal handler
2026-02-05 15:46:13 +01:00
synqa
88af7986b4
Fix preserve errno in SIGCHLD signal handler
...
Signal handler may interrupt code that depends on errno, and waitpid()
may modify errno, therefore, errno must be saved and restored before
returning.
2026-02-05 18:51:58 +09:00
synqa
38f102e2e7
Fix undefined behavior of left shift
...
Left shifting UCHAR promotes it to a signed integer. When the
value is >= 128 and shifted by 24, the result sets the sign bit,
causing undefined behavior. Fixes it by explicit casting to UINT.
2026-02-05 18:48:01 +09:00
SaiXU
14526cf3ea
add arm64 DriverPackages/Neo6_Win10/arm64/Neo6_arm64_VPN.sys
2026-01-30 11:40:46 +08:00
SaiXU
875c4fa344
support ARM64 on windows
2026-01-30 11:36:39 +08:00
synqa
eaef60a582
Fix password input handling on Linux
...
The password input handling on Linux to match the behavior on Windows.
It allows deleting characters using the Backspace, Delete, and
Left arrow keys, and correctly handles other input sequences are handling
correctly.
2026-01-24 12:37:43 +09:00
synqa
1b9ac396ba
Fix dangling pointer
...
Previously, The address of a local stack variable was passed to a new
thread. Fix dangling pointer by switching to dynamic allocation.
This problem is also known as CVE-2025-25568.
2026-01-18 22:51:23 +09:00
Ilya Shipitsin
041581ce30
Merge pull request #2193 from vamhund/turkish-translation
...
Add Turkish translation (strtable_tr.stb)
2026-01-09 14:19:09 +01:00
VamHunD
ca745bd234
Update language list file with Turkish entry
2026-01-09 15:36:54 +03:00
VamHunD
051da3a48f
Add Turkish language entry to languages.txt
2026-01-09 15:34:31 +03:00
Ilya Shipitsin
669f58036e
Merge pull request #2195 from vamhund/fix-err137-logic
...
Fix logical contradiction in ERR_137
2026-01-08 17:14:07 +01:00
VamHunD
355609b339
Fix logical contradiction in ERR_137
...
Fixed "too long" -> "too short" and "equal of" -> "equal or".
The first sentence says the name is "too long", but the second sentence says it must be "longer than 3 letters" (which implies it is currently too short).
The phrase "equal of longer than" should likely be "equal or longer than".
2026-01-08 15:42:58 +03:00
hiura2023
65e5e28549
Fix: Correct the wrong data type passed to the log output
2026-01-08 16:50:47 +09:00
hiura2023
b92294fc52
Fix: Kernel-mode NAT not available due to DHCP unfunctional
2026-01-08 13:27:10 +09:00
hiura2023
a4681818c4
Revert "Fix: Kernel-mode NAT not available"
...
This reverts commit d85fc71a3a .
2026-01-08 12:15:12 +09:00
VamHunD
0a44e995de
Add Turkish translation (strtable_tr.stb)
2026-01-08 00:55:51 +03:00
hiura2023
d85fc71a3a
Fix: Kernel-mode NAT not available
2026-01-05 23:28:10 +09:00
dependabot[bot]
859ff5ca5e
Bump js-yaml in /src/bin/hamcore/wwwroot/admin/default
...
Bumps [js-yaml](https://github.com/nodeca/js-yaml ) from 3.13.1 to 3.14.2.
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md )
- [Commits](https://github.com/nodeca/js-yaml/compare/3.13.1...3.14.2 )
---
updated-dependencies:
- dependency-name: js-yaml
dependency-version: 3.14.2
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-12-27 09:39:13 +00:00
Siddharth Narayan
2628c562be
Disable unecessary liboqs algorithms
2025-12-02 02:57:15 -06:00
Siddharth Narayan
e9f7089c8b
Update post quantum submodules
2025-12-02 02:05:27 -06:00
Julian Grasböck
137d7f551f
Ensure DHCP resend interval is not to long
2025-11-26 14:57:58 +01:00
Julian Grasböck
d90e89bbbd
Safety fallback to default behaviour
2025-11-26 14:57:23 +01:00
Julian Grasböck
173df872b8
Config value for dhcp discover timeout
2025-11-26 13:56:29 +01:00
Julian Grasböck
4a4c1c79de
openvpn: only send AUTH_FAILED reply on auth errors
2025-11-26 13:53:14 +01:00
Ilya Shipitsin
acbc514b87
Merge pull request #2170 from kanglongwei/branch2
...
fix : #2166 L3KnownArp, delete entry from the incorrect list
2025-10-28 21:44:25 +01:00
w00485423
ab245552b1
fix : #2165 memory leak
2025-10-13 20:05:28 +08:00
w00485423
fdcb0a207b
fix : #2166 L3KnownArp, delete entry from the incorrect list
2025-10-10 21:20:30 +08:00
Dominique Martinet
4bb366572d
Mayaqua build: allow disabling OQS
...
SoftEtherVPN version 5.02.5186 enable post-quantum algorithms, but these
come at a large size increase (after strip, on x86_64, with default
options as of master):
- default options: 9.1M
- new -DOQS_ENABLE=OFF: 762K
Note it is also possible to disable all the algorithms individually by
passing the (243!) options to cmake -DOQS_ENABLE_KEM_BIKE=OFF
-DOQS_ENABLE_KEM_FRODOKEM=OFF -DOQS_ENABLE_KEM_NTRUPRIME=OFF ...,
in which case the binary goes back to a reasonable size of 830K
In the future, it might make sense to add a few settings picking
"sensible" algorithms, e.g. allow everything for a server build or only
allow the best algorithms for a lightweight client.
See: #2148
2025-10-01 18:05:59 +09:00
Koichiro Iwao
efb04daa34
Proper fix for #2122 #2150
...
Bundled cpu_features needs to be built with PIC but SHARED_LIBS should
be OFF.
2025-09-05 22:40:18 +09:00
Koichiro Iwao
2746e8dd19
Build bundled cpu_features with PIC
...
After updating bundled cpu_features to 0.9.0, set_property() is not
effective. We need to use set() instead.
Resolves : #2122 #2150
2025-08-25 21:52:15 +09:00
onetown
0389bfd97a
fix: Continue decapsulation to parse L3 data from VLAN-tagged packets
2025-07-17 10:51:52 -04:00
Kira
d8bcb863f5
rephrase the string
2025-05-09 11:37:21 +07:00
Kira
7228de494d
rephrase the string
2025-05-09 11:34:45 +07:00
Kira
afa848454a
fix printf formatting
2025-05-09 10:34:53 +07:00
Kira
80bab0f7d7
fix errors
2025-05-01 10:43:45 +07:00
kiraware
c742f6c5cf
Merge branch 'SoftEtherVPN:master' into add-id-translation
2025-04-30 10:53:52 +07:00
Kira
7a6a1e2ed0
add translation for strtable_id.stb
2025-04-30 10:50:27 +07:00