Andy Wang
8fbb2dd8cc
Add more data reception tests
2020-12-28 00:29:56 +00:00
Andy Wang
23b32b603f
Latency benchmark
2020-12-27 22:01:41 +00:00
Andy Wang
e0b97db7cc
Add unordered benchmark for RecvDataFromRemote
2020-12-27 21:40:59 +00:00
Andy Wang
d1b05ee9e5
Add new encryption method option aes-128-gcm
2020-12-27 13:26:45 +00:00
Andy Wang
cbd71fae6d
Control flow optimisations
2020-12-26 16:34:25 +00:00
Andy Wang
3ad04aa7e9
Add latency benchmark
2020-12-26 15:36:38 +00:00
Andy Wang
2d08e88efb
Use a sync.Pool to remove the global random bottleneck in picking a random conn
2020-12-26 13:48:42 +00:00
Andy Wang
415523f10a
Refactor obfuscate and deobfuscate functions to reduce a layer of indirection
2020-12-26 00:49:36 +00:00
Andy Wang
2f17841f85
Use Compare-And-Swap for atomic booleans indicating session and switchboard closed
2020-12-25 23:16:57 +00:00
Andy Wang
4f34e69006
Use pooled buffer for session closing frame
2020-12-24 13:42:22 +00:00
Andy Wang
881f6e6f9d
Use sync.Pool for obfuscation buffer
2020-12-24 11:35:29 +00:00
Andy Wang
5933ad8781
Replace bytes.Buffer with vanilla []byte in tls wrapper
2020-12-24 10:26:53 +00:00
Andy Wang
4209483a48
Reduce memory pressure in tests
2020-12-23 23:58:47 +00:00
Andy Wang
3b24c33e78
Remove incorrect concurrent uses of testing.T.Fatal
2020-12-23 23:12:51 +00:00
Andy Wang
70a9723377
Temp fix to testing reading after closing a stream
2020-12-23 22:34:26 +00:00
Andy Wang
a97f5759c0
Fix race condition in tests
2020-12-23 22:34:12 +00:00
Andy Wang
0209bcd977
Fix race condition in steam closing. Fall back to temp buffer allocation
2020-12-23 22:33:01 +00:00
Andy Wang
53f0116c1d
Fix race condition in the use of assert.Eventually
2020-12-23 17:43:18 +00:00
Andy Wang
9108794362
Fix race condition in allocating obfsBuf
2020-12-23 17:42:54 +00:00
Andy Wang
5c5e9f8c14
Prevent unnecessary allocation in stream closing
2020-12-23 17:28:28 +00:00
Andy Wang
3e737717bd
Use assert.Eventually to correctly handle more timing sensitive tests
2020-12-23 12:25:58 +00:00
不确定
dc030fbb47
Implement UDP stream timeout. ( #148 )
...
* Implement UDP stream timeout.
* Correctly delete streams from map after closing
Co-authored-by: Andy Wang <cbeuw.andy@gmail.com>
2020-12-23 00:43:38 +00:00
Andy Wang
4d1612774f
Use a buffer pool to reduce contentions in tls wrapper
2020-12-23 00:02:25 +00:00
Andy Wang
35f41424c9
Use default hashmap to store streams. Avoid allocating a stream object on receiving every single frame
2020-12-22 20:21:40 +00:00
Andy Wang
fd5005db0a
Fix a timing sensitive test on reading data after actively closing a stream
2020-12-22 20:16:47 +00:00
Andy Wang
ff503b06a8
Only allocate and copy frame object into sorter heap when necessary (out of order frame)
2020-12-22 19:39:13 +00:00
Andy Wang
5a3f63f101
Reduce allocation of frame objects on receiving data
2020-12-22 14:45:29 +00:00
Andy Wang
104117cafb
Fix one instance of not accessing recvBuf via the getter
2020-12-22 14:32:41 +00:00
Andy Wang
4bc80af9a1
Lazily allocate stream receiving buffer
2020-12-22 14:12:00 +00:00
Andy Wang
badda76454
Improve data receive benchmark
2020-12-22 13:40:37 +00:00
Andy Wang
42f36b94d3
Achieve zero allocation when writing data through stream
2020-12-22 13:16:48 +00:00
Andy Wang
3633c9a03c
Fix multiplex test as test payload length may be randomised to 0
2020-12-22 12:39:39 +00:00
Andy Wang
c9ac93b0b9
Refactor session_test.go
2020-12-21 20:38:28 +00:00
Andy Wang
de0daac123
Update deprecated curve25519 functions and defend against low-order point attacks
2020-12-21 16:37:33 +00:00
Andy Wang
0d3f8dd27f
Allow DatabasePath to be empty if user info database is never used
2020-12-21 15:06:46 +00:00
Andy Wang
0473d71bea
Fix overflow in padding length calculation
2020-12-19 20:49:21 +00:00
Andy Wang
4a37449d33
Replace all time-sensitive tests with assert.Eventually
2020-12-19 20:14:43 +00:00
Andy Wang
8d146582d2
Add release action
2020-12-19 19:42:31 +00:00
Andy Wang
005da456c0
Fix timing sensitive tests
2020-12-19 19:30:53 +00:00
Andy Wang
2e36627a12
Make AdminUID optional and implement better validation on empty config fields
2020-12-19 15:34:17 +00:00
不确定
cfbf0dfcb6
Fix critical bugs in session opening for TCP and UDP in case of Singleplex mode. ( #145 )
...
* Fix critical bugs in session opening for TCP and UDP in case of Singleplex mode.
- In case of TCP, don't open the session in the listener accept thread. This
causes resource exhaustion of the tcp listener backlog queue in case of internet
connection disruption or timeout.
- In case of UDP, don't create a new session for every UDP packet.
* Fix race in integration test.
* Fix race condition in session maker
* Code style improvements
* Explicit session.Close() call is indeed needed
Co-authored-by: Andy Wang <cbeuw.andy@gmail.com>
2020-12-19 14:42:10 +00:00
Andy Wang
c3ee9f2127
Merge branch 'master' of github.com:cbeuw/Cloak
2020-12-12 20:45:14 +00:00
不确定
a72273096a
Add CdnHttpHost config setting with documentation. ( #143 )
...
* Add CdnHttpHost config setting with documentation.
* Rename CdnHttpHost to CDNOriginHost and make README more concise
Co-authored-by: Andy Wang <cbeuw.andy@gmail.com>
2020-12-12 20:40:48 +00:00
Andy Wang
d5a003d6d6
Remove StreamTimeout from server completely
2020-12-12 17:51:54 +00:00
不确定
e77fd4c446
Fix regression: termination of long downloads after StreamTimeout seconds ( #141 )
...
* Fix termination of long downloads after StreamTimeout seconds.
- Even if not broadcasting in a loop, we still need to update the read deadline.
- Don't enforce the timeout after the first data is written.
* When timeout no longer needs to be enforced, no need to schedule a broadcast.
* Fix Cloak client. Don't enforce read deadline after first read.
* Enforce StreamTimeout on the initial bytes sent by localConn only.
* Revert changes to multiplex module. Remove timeout from caller.
2020-12-12 17:00:46 +00:00
Andy Wang
061b10e802
Improve tests code quality
2020-12-06 11:14:33 +00:00
Andy Wang
61b1031da6
Reduce code duplication in session closing
2020-12-06 10:50:45 +00:00
Andy Wang
0327d0ffb3
Further reduce the amount of calls to AfterFunc
2020-12-06 00:16:29 +00:00
notsure2
208a7f249f
Fix memory leaking by extra timers.
2020-12-06 01:47:52 +02:00
Andy Wang
c0040f20c3
Use time.AfterFunc for session inactivity timeout to reduce goroutine count
2020-12-05 21:38:16 +00:00
Andy Wang
a3520c1018
Revert "Prevent time.Timer memory leak by using a singleton timer in bufferedPipes. Fix #137 "
...
This reverts commit 4baca256
2020-12-05 21:26:41 +00:00
Andy Wang
4baca256f7
Prevent time.Timer memory leak by using a singleton timer in bufferedPipes. Fix #137
2020-12-05 12:04:55 +00:00
Andy Wang
39c06a6e1d
Update comment
2020-12-04 22:27:24 +00:00
Andy Wang
095471103a
Fix timestamp tests
2020-11-24 19:00:02 +00:00
不确定
b7e7bfb314
Make sure times are UTC and correctly subtract the timestamp window from the server time. ( #134 )
2020-11-24 18:58:02 +00:00
Andy Wang
0f6e0d37b5
Rename constants to camel case
2020-10-21 16:42:24 +01:00
Andy Wang
11cfeb4fa3
Improve comments
2020-10-21 16:37:32 +01:00
Andy Wang
735975ef88
Fix typo and remove redundant benchmark
2020-10-21 15:53:39 +01:00
Andy Wang
651854904f
Improve comments
2020-10-21 00:54:36 +01:00
Andy Wang
977f51ce48
Add comments
2020-10-20 01:10:57 +01:00
Andy Wang
c564114f76
Allow retries in time sensitive tests
2020-10-18 23:06:49 +01:00
Andy Wang
ef040b0115
Fix stream closing tests
2020-10-18 22:56:31 +01:00
Andy Wang
54bca721e8
Add tests for API handlers
2020-10-18 22:50:29 +01:00
Andy Wang
c5276df32e
Check payload AEAD's size in relation to frame header's size
2020-10-18 21:41:30 +01:00
Andy Wang
e141323c9d
Fix obfsBuf being too small on closing frame
2020-10-18 21:37:41 +01:00
Andy Wang
1ec11c175a
POST to /admin/users/{UID} will POST json string directly, rather than being encoded in FormData
2020-10-18 21:21:51 +01:00
Andy Wang
a3cd5a4029
Make tests wait longer between closing something and testing if the other end has closed
2020-10-18 15:52:36 +01:00
Andy Wang
f8f02bfc43
Parameterise session inactivity timeout
2020-10-18 15:51:57 +01:00
Andy Wang
0fc27d747e
Reduce unnecessary allocation size on stream closing
2020-10-18 15:37:14 +01:00
Andy Wang
64d857c74d
Rename variables for clarity
2020-10-18 15:36:40 +01:00
Andy Wang
acdb0d35fa
Reduce recvBuffer's implementation's buffer size limits
2020-10-18 14:56:58 +01:00
Andy Wang
c7c3f7706d
Refactor for clarity and add comments
2020-10-18 14:42:47 +01:00
Andy Wang
d706e8f087
Remove redundant code
2020-10-18 00:46:03 +01:00
Andy Wang
f111ab29ab
Fix RandRead retry timer
2020-10-18 00:45:45 +01:00
Andy Wang
0968285664
Improve test coverage
2020-10-18 00:45:28 +01:00
Andy Wang
c1b261c652
Add stream tests
2020-10-17 19:28:03 +01:00
Andy Wang
c749b107e2
Improve test coverage for client's ParseConfig
2020-10-17 18:52:00 +01:00
Andy Wang
a59d9cb880
Fix singleplex and add tests
2020-10-17 16:15:55 +01:00
Andy Wang
a1bc148d50
Restore AddRecordLayer
2020-10-17 15:10:41 +01:00
Andy Wang
1f5e0c1d24
Add benchmark for TLSConn.Write
2020-10-17 15:06:45 +01:00
Andy Wang
86e2935607
Use a pre-made buffer for TLSConn.Write
2020-10-17 13:46:22 +01:00
Andy Wang
a86899f007
Improve comments
2020-10-17 12:24:23 +01:00
Andy Wang
e092e280c1
Refactor dispatcher.go
2020-10-17 11:15:21 +01:00
Andy Wang
d93ac48b85
Add build directives to fuzzing functions
2020-10-16 11:55:50 +01:00
Andy Wang
b2dbe4c654
Add fuzzer
2020-10-16 11:51:53 +01:00
Andy Wang
c17cb034e3
Wrap decryption error
2020-10-16 01:12:23 +01:00
Andy Wang
d2131799fc
Remove unnecessary table testing
2020-10-16 00:09:00 +01:00
Andy Wang
3f3259d4d3
MakeSession no longer needs to know if the Session should be admin
2020-10-15 23:02:51 +01:00
Andy Wang
f96925982f
Rename SplitConfigs to ProcessRawConfig to better reflect its behaviour
2020-10-15 22:51:59 +01:00
Andy Wang
3e133090f0
Give more descriptive names to multiplex objects
2020-10-15 22:51:36 +01:00
Andy Wang
f00ef43613
Fix time-dependant tests
2020-10-15 22:13:33 +01:00
Andy Wang
9887649b88
Refactor Singleplexing
2020-10-15 21:32:38 +01:00
Andy Wang
c3ea7f7263
Fix test GREASE comparison
2020-09-13 11:32:07 +01:00
Andy Wang
8d2605cafa
Fix test
2020-09-12 21:40:49 +01:00
Andy Wang
05482e64d2
Update Chrome signature to 85. Address #129
2020-09-12 21:18:31 +01:00
Andy Wang
cfbdd9a608
Prevent nil pointer panic when server response is incorrect under CDN mode
2020-09-07 14:48:07 +01:00
Andy Wang
0b217ddb07
Linting
2020-08-17 17:56:05 +01:00
Andy Wang
de5c51d3e4
Better redir piping behaviour
2020-08-12 12:07:32 +01:00
Andy Wang
253ea94d2a
Better and more explicit handling of first packet, reduces exposure of active probing
2020-08-12 11:32:39 +01:00
Andy Wang
2bb102a5b6
Use byte literals instead of decoding hex
2020-08-10 14:29:51 +01:00