summaryrefslogtreecommitdiffstats
path: root/src/wireguard (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-03-16Upgraded treebitmap dependencytestsMathias Hall-Andersen1-1/+1
2020-02-26Additional in-order queue test for routerMathias Hall-Andersen1-7/+74
2020-02-21Fixed unit testsMathias Hall-Andersen9-90/+107
2020-02-20More comprehensive unit tests for routerMathias Hall-Andersen9-563/+625
2020-02-16Simplified router codeMathias Hall-Andersen15-826/+638
2020-02-16Fixed EINVAL on read4/6 from invalid namelenMathias Hall-Andersen5-15/+18
2020-02-12Bumped crate versions.Mathias Hall-Andersen12-451/+489
2020-02-01Squashed commit of the following:Mathias Hall-Andersen22-373/+1019
commit 1e26a0bef44e65023a97a16ecf3b123e688d19f7 Author: Mathias Hall-Andersen <mathias@hall-andersen.dk> Date: Sat Feb 1 14:36:50 2020 +0100 Initial version of sticky sockets for Linux commit 605cc656ad235d09ba6cd12d03dee2c5e0a9a80a Author: Mathias Hall-Andersen <mathias@hall-andersen.dk> Date: Thu Jan 30 14:57:00 2020 +0100 Clear src when sendmsg fails with EINVAL commit dffd2b228af70f681e2a161642bbdaa348419bf3 Author: Mathias Hall-Andersen <mathias@hall-andersen.dk> Date: Sun Jan 26 14:01:28 2020 +0100 Fix typoes commit 2015663706fbe15ed1ac443a31de86b3e6c643c7 Author: Mathias Hall-Andersen <mathias@hall-andersen.dk> Date: Sun Jan 26 13:51:59 2020 +0100 Restructure of public key -> peer state Restructured the mapping of public keys to peer state in the project. The handshake device is now generic over an opaque type, which enables it to be the sole place where public keys are mapped to the peer states. This gets rid of the "peer" map in the WireGuard devices and avoids having to include the public key in the handshake peer state. commit bbcfaad4bcc5cf16bacdef0cefe7d29ba1519a23 Author: Mathias Hall-Andersen <mathias@hall-andersen.dk> Date: Fri Jan 10 21:10:27 2020 +0100 Fixed bind6 also binding on IPv4 commit acbca236b70598c20c24de474690bcad883241d4 Author: Mathias Hall-Andersen <mathias@hall-andersen.dk> Date: Thu Jan 9 11:24:13 2020 +0100 Work on sticky sockets
2019-12-27Fixed typo in under load codecleanMathias Hall-Andersen6-25/+69
2019-12-26Remove unused under_load codeMathias Hall-Andersen2-18/+10
2019-12-26Make under_load global for WireGuard deviceMathias Hall-Andersen13-337/+77
2019-12-21Remove unused test code.Mathias Hall-Andersen16-552/+545
- make naming consistent with the kernel module. - better distribution of functionality from src/wireguard.rs - more consistent "import pattern" throughout the project. - remove unused test code.
2019-12-16Constant renamed to be consistent with kernel WGMathias Hall-Andersen3-6/+7
2019-12-16Clean dead codeMathias Hall-Andersen18-110/+45
2019-12-16Revert to crossbeamMathias Hall-Andersen8-51/+43
2019-12-14Removed unused atexitMathias Hall-Andersen1-11/+1
2019-12-14Added profiler featureMathias Hall-Andersen12-48/+183
2019-12-10Remove crossbeam dependencyMathias Hall-Andersen9-92/+84
2019-12-09FormattingMathias Hall-Andersen9-42/+45
2019-12-09Move to run queueMathias Hall-Andersen9-251/+478
2019-12-06Remove futures from dependenciesMathias Hall-Andersen2-8/+0
2019-12-06Fixed inbound job bug (add to sequential queue)Mathias Hall-Andersen10-207/+289
2019-12-03Moving away from peer threadsMathias Hall-Andersen14-432/+640
2019-11-28Close socket fd after getmtu ioctlMathias Hall-Andersen1-0/+17
2019-11-27Fetch updated MTU on linuxMathias Hall-Andersen1-20/+75
2019-11-27Work on netlink IF event code for LinuxMathias Hall-Andersen6-109/+311
2019-11-25Enable up/down from configuration interfaceMathias Hall-Andersen9-85/+180
2019-11-24Make IO traits suitable for Tun events (up/down)Mathias Hall-Andersen20-126/+186
2019-11-21DaemonizationMathias Hall-Andersen8-37/+94
2019-11-21Clean dependencies and importsMathias Hall-Andersen11-63/+57
2019-11-18Better compartmentalization of cryptokey routerMathias Hall-Andersen6-185/+395
2019-11-18Bug fixes from compliance tests with WireGuardMathias Hall-Andersen11-230/+291
2019-11-17Update configuration APIMathias Hall-Andersen15-105/+122
2019-11-15Update UAPI semantics for removeMathias Hall-Andersen18-140/+288
2019-11-13Initial version of full UAPI parserMathias Hall-Andersen4-83/+142
2019-11-11Work on UAPI serialize deviceMathias Hall-Andersen6-17/+113
2019-11-10Implemented UAPI "get" line-parserMathias Hall-Andersen5-161/+240
2019-11-08Removal of secret key in the handshake moduleMathias Hall-Andersen6-169/+190
2019-11-06Implement disable/enable timersMathias Hall-Andersen6-88/+138
2019-11-04Work on Up/Down operation on WireGuard deviceMathias Hall-Andersen8-152/+267
2019-11-03Work on UAPI parserMathias Hall-Andersen6-41/+231
2019-11-02Work on configuration interfaceMathias Hall-Andersen9-34/+120
2019-10-31Add derived_sessionMathias Hall-Andersen2-8/+19
2019-10-31Work on timer semanticsMathias Hall-Andersen10-80/+181
2019-10-30Remove unused dependenciesMathias Hall-Andersen5-423/+19
2019-10-30Change router job to accommodate keep_key_freshMathias Hall-Andersen5-140/+139
2019-10-29Unified use of make_packet during testsMathias Hall-Andersen6-119/+144
2019-10-28First full test of pure WireGuardMathias Hall-Andersen12-62/+242
2019-10-23Fixed Ordering::Acquire -> Ordering::SeqCst typoMathias Hall-Andersen4-8/+12
2019-10-23Work on pure WireGuard testMathias Hall-Andersen7-83/+156