e0c86ab4a6
Merge pull request #2236 from chipitsine/master
...
follow up of https://github.com/SoftEtherVPN/SoftEtherVPN/pull/2161
2026-02-18 21:15:20 +01:00
5130f1a4da
follow up of https://github.com/SoftEtherVPN/SoftEtherVPN/pull/2161
2026-02-18 16:09:54 +01:00
13f15384f2
Merge pull request #2161 from siddharth-narayan/radius-retry-timeout
...
Add RadiusRetryTimeout option
2026-02-18 07:54:10 +01:00
bbda0c298d
Implement extended-timeout radius login
2026-02-18 00:44:18 -06:00
e42aa6bf78
Merge pull request #2235 from talynone/WINARM64BUILDSCRIPTS
...
Add Windows ARM 64 builds to GitHub Windows Actions
2026-02-16 18:12:26 +01:00
ef05c4f0c4
The liboqs (post-quantum cryptography) library doesn't officially support ARM64. To allow the build to proceed, we added -DOQS_PERMIT_UNSUPPORTED_ARCHITECTURE=ON via the CMAKE_EXTRA_FLAGS matrix field
2026-02-16 05:27:17 -08:00
7f6e527b47
Modify GitHub CI/CD with Windows ARM 64 build support
2026-02-16 05:11:02 -08:00
a0afd98744
Merge pull request #2234 from synqa/add-more-tsan-suppression
...
Add Thread Sanitizer suppressions for FreeTick64 and UnixLock
2026-02-16 13:03:54 +01:00
ae448abdad
Add Thread Sanitizer suppressions for FreeTick64 and UnixLock
...
- Add suppression for FreeTick64 (#2221 ).
- Add suppression for UnixLock (#2219 ).
2026-02-16 18:59:59 +09:00
cfe854b339
Merge pull request #2232 from synqa/add-tsan-suppression
...
Add ThreadSanitizer suppression file
2026-02-14 15:47:43 +01:00
c075bd85a8
Add ThreadSanitizer suppression file
...
Using no_sanitize("thread") disables instrumentation for the entire
stack frame, meaning functions called within that scope are also not
checked. By using race_top in a suppression file, we can suppress
erros only when they occur at the top of the stack. This provides more
granular control over errors suppression.
As an example, this suppression addresses #2222 .
2026-02-14 22:42:48 +09:00
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
0e36e095f0
Merge pull request #2229 from chipitsine/master
...
ci: run coverity workflow on demand
2026-02-13 14:20:41 +01:00
34e4d4a54b
ci: run coverity workflow on demand
2026-02-13 14:05:23 +01:00
df3ea19f0e
Merge pull request #2226 from SaiXu-QC/WinArm64
...
Add Win Arm64 Doc
2026-02-09 08:42:27 +01:00
9da4aabda5
add win arm64 doc
2026-02-09 10:42:32 +08:00
3cb3dd20fc
Add BUILD_WinArm64.md
2026-02-09 10:38:45 +08:00
b551b77e25
Merge pull request #2225 from synqa/tsan-disable-macro
...
Add macro to disable thread sanitizer
2026-02-08 17:26:26 +01:00
609b8f4a5e
Merge pull request #2224 from synqa/revert-2221-fix-halt-flag
...
Revert "Fix data race on Tick64"
2026-02-08 17:25:04 +01:00
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
6016f84315
Revert "Fix data race on Tick64"
2026-02-08 23:14:09 +09:00
9d27b935b7
Merge pull request #2223 from synqa/fix-memory-leak-loadlanglist
...
Fix memory leak in LoadLangList()
2026-02-06 15:56:18 +01:00
1e1104d3ba
Merge pull request #2221 from synqa/fix-halt-flag
...
Fix data race on Tick64
2026-02-06 15:55:01 +01:00
074efb5479
Merge pull request #2220 from synqa/fix-thread-counter
...
Fix race condition in thread counter
2026-02-06 15:54:18 +01:00
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
6ef941db21
Fix memory leak in LoadLangList()
2026-02-06 21:08:52 +09:00
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
68e9f0b593
Merge pull request #2218 from SoftEtherVPN/dependabot/npm_and_yarn/src/bin/hamcore/wwwroot/admin/default/webpack-5.105.0
...
Build(deps-dev): Bump webpack from 5.94.0 to 5.105.0 in /src/bin/hamcore/wwwroot/admin/default
2026-02-06 07:35:07 +01:00
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
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
a3176175f9
Merge pull request #2216 from synqa/fix-ub-leftshift
...
Fix undefined behavior of left shift
2026-02-05 15:13:46 +01:00
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
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
e722f78608
Merge pull request #2209 from SaiXu-QC/WinArm64
...
Add Windows ARM64 support and ARM64 Neo6 driver
2026-02-03 11:46:26 +01:00
969812e0f2
add IS_CROSS_COMPILATION
2026-01-30 13:30:38 +08:00
14526cf3ea
add arm64 DriverPackages/Neo6_Win10/arm64/Neo6_arm64_VPN.sys
2026-01-30 11:40:46 +08:00
875c4fa344
support ARM64 on windows
2026-01-30 11:36:39 +08:00
d8be1e4ddc
Merge pull request #2205 from synqa/password-prompt-for-linux
...
Fix password input handling on Linux
2026-01-24 22:44:29 +01:00
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
06c93414f2
Merge pull request #2204 from chipitsine/master
...
some translation guide kindly contributed by copilot
2026-01-23 21:42:12 +01:00
e065752618
some translation guide kindly contributed by copilot
2026-01-23 16:13:13 +01:00
d75aba9866
Merge pull request #2200 from synqa/fix-dangling-pointer
...
Fix dangling pointer
2026-01-18 21:39:56 +01:00
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
041581ce30
Merge pull request #2193 from vamhund/turkish-translation
...
Add Turkish translation (strtable_tr.stb)
2026-01-09 14:19:09 +01:00
ca745bd234
Update language list file with Turkish entry
2026-01-09 15:36:54 +03:00
051da3a48f
Add Turkish language entry to languages.txt
2026-01-09 15:34:31 +03:00
669f58036e
Merge pull request #2195 from vamhund/fix-err137-logic
...
Fix logical contradiction in ERR_137
2026-01-08 17:14:07 +01:00
ce95ef93a2
Trigger Windows Build
2026-01-08 16:02:34 +03:00
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
85c814a0fb
Merge pull request #2194 from hiura2023/master
...
Fix: Correct the wrong data type passed to the log output function
2026-01-08 09:33:37 +01:00