]>
git.ipfire.org Git - thirdparty/wireguard-go.git/log
Jason A. Donenfeld [Thu, 7 Feb 2019 01:56:31 +0000 (02:56 +0100)]
setupapi: Do not export the toGo/toWindows functions
Jason A. Donenfeld [Thu, 7 Feb 2019 01:26:50 +0000 (02:26 +0100)]
setupapi: Pass pointers instead of values
Simon Rozman [Wed, 6 Feb 2019 21:30:14 +0000 (22:30 +0100)]
tun_windows: Introduce preliminary TUN interface creation
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Wed, 6 Feb 2019 19:22:04 +0000 (20:22 +0100)]
tun_windows: Stop checking minimum size of received TUN packets
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Wed, 6 Feb 2019 19:18:44 +0000 (20:18 +0100)]
setupapi: Add DrvInfoDetailData.IsCompatible() to simplify HID detection
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Wed, 6 Feb 2019 19:17:47 +0000 (20:17 +0100)]
setupapi: Add SP_DRVINFO_DATA.IsNewer() method to simplify comparison
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Wed, 6 Feb 2019 19:15:40 +0000 (20:15 +0100)]
setupapi: Make toUTF16() public and add UTF16ToBuf() counterpart
Signed-off-by: Simon Rozman <simon@rozman.si>
Jason A. Donenfeld [Tue, 5 Feb 2019 13:06:25 +0000 (22:06 +0900)]
Fix up errors and paths
Jason A. Donenfeld [Tue, 5 Feb 2019 12:55:33 +0000 (21:55 +0900)]
conn: close ipv4 socket when ipv6 socket fails
Simon Rozman [Tue, 5 Feb 2019 15:29:17 +0000 (16:29 +0100)]
setupapi: Add support for driver info lists
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Tue, 5 Feb 2019 13:03:28 +0000 (14:03 +0100)]
setupapi: Move Go<>Windows struct marshaling to types_windows.go
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Tue, 5 Feb 2019 10:44:47 +0000 (11:44 +0100)]
setupapi: Add support for SetupDi(Get|Set)DeviceRegistryProperty()
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Tue, 5 Feb 2019 07:45:44 +0000 (08:45 +0100)]
setupapi: Introduce DevInfo methods for cleaner code
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Mon, 4 Feb 2019 14:50:59 +0000 (15:50 +0100)]
Add support for setupapi.SetupDi(Get|Set)SelectedDevice()
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Mon, 4 Feb 2019 14:21:19 +0000 (15:21 +0100)]
Reorder data-types and functions to match SetupAPI.h
Adding functions with non-consistent order made setupapi package a mess.
While we could reorder data-types and functions by alphabet - it would
make searching easier - it would put ...Get... and ...Set... functions
quite apart.
Therefore, the SetupAPI.h order was adopted.
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Mon, 4 Feb 2019 10:52:42 +0000 (11:52 +0100)]
Add support for setupapi.SetupDiCreateDeviceInfo()
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Mon, 4 Feb 2019 10:49:26 +0000 (11:49 +0100)]
Add support for setupapi.setupDiCreateDeviceInfoListEx()
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Mon, 4 Feb 2019 10:45:37 +0000 (11:45 +0100)]
Stop accessing SetupDiGetDeviceInfoListDetail() output on error
The data returned by SetupDiGetDeviceInfoListDetail() is nil on error
which will cause the test to crash should the function fail.
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Mon, 4 Feb 2019 10:42:51 +0000 (11:42 +0100)]
Unify certain variable names
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Mon, 4 Feb 2019 10:40:44 +0000 (11:40 +0100)]
Simplify SetupDiEnumDeviceInfo() synopsis
The SetupDiEnumDeviceInfo() now returns a SP_DEVINFO_DATA rather than
taking it on input to fill it on return.
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Mon, 4 Feb 2019 08:51:19 +0000 (09:51 +0100)]
Change generic local variable names with meaningful replacements
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Mon, 4 Feb 2019 08:36:42 +0000 (09:36 +0100)]
Add support for setupapi.SetupDiClassGuidsFromNameEx()
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Mon, 4 Feb 2019 07:40:06 +0000 (08:40 +0100)]
Clean an unused constant
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Mon, 4 Feb 2019 07:39:31 +0000 (08:39 +0100)]
Replace SetupDiClassNameFromGuid() with SetupDiClassNameFromGuidEx()
The former is only a subset of the later. To minimize future
maintenance, we'll provide support for extended version only.
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Mon, 4 Feb 2019 07:23:55 +0000 (08:23 +0100)]
Add support for setupapi.SetupDiClassNameFromGuid()
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Mon, 4 Feb 2019 07:22:49 +0000 (08:22 +0100)]
Stop checking for valid handle in DevInfo.Close()
User should not have called or deferred the Close() method should
SetupDiGetClassDevsEx() return an error (and invalid handle). And even
if user does that, a SetupDiDestroyDeviceInfoList(INVALID_HANDLE_VALUE)
is harmless. It just returns ERROR_INVALID_HANDLE - we have a unit test
for this in TestSetupDiDestroyDeviceInfoList().
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Mon, 4 Feb 2019 06:50:30 +0000 (07:50 +0100)]
Add support for setupapi.SetupDiCallClassInstaller()
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Fri, 1 Feb 2019 13:58:59 +0000 (14:58 +0100)]
Add support for setupapi.SetupDi(Get|Set)ClassInstallParams()
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Fri, 1 Feb 2019 12:59:53 +0000 (13:59 +0100)]
Add support for setupapi.SetupDi(Get|Set)DeviceInstallParams()
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Fri, 1 Feb 2019 12:00:44 +0000 (13:00 +0100)]
Add support for setupapi.SetupDiOpenDevRegKey()
Furthermore setupapi.DevInfoData has been obsoleted.
SetupDiEnumDeviceInfo() fills existing SP_DEVINFO_DATA structure now.
As other functions of SetupAPI use SP_DEVINFO_DATA, converting it to
DevInfoData and back would hurt performance.
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Fri, 1 Feb 2019 11:17:09 +0000 (12:17 +0100)]
Add support for setupapi.SetupDiEnumDeviceInfo()
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Fri, 1 Feb 2019 10:51:39 +0000 (11:51 +0100)]
Update exported types and functions annotations
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Fri, 1 Feb 2019 10:39:57 +0000 (11:39 +0100)]
Add support for setupapi.SetupDiGetDeviceInfoListDetail()
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Fri, 1 Feb 2019 09:58:06 +0000 (10:58 +0100)]
Finish support for setupapi.SetupDiGetClassDevsEx()
Signed-off-by: Simon Rozman <simon@rozman.si>
Simon Rozman [Thu, 31 Jan 2019 14:20:11 +0000 (15:20 +0100)]
Introduce SetupAPI - Windows device and driver management API
Signed-off-by: Simon Rozman <simon@rozman.si>
Jason A. Donenfeld [Mon, 4 Feb 2019 16:29:52 +0000 (17:29 +0100)]
Import windows scafolding
Jason A. Donenfeld [Sun, 3 Feb 2019 21:00:36 +0000 (22:00 +0100)]
noise: store clamped key instead of raw key
Jason A. Donenfeld [Sun, 3 Feb 2019 01:08:16 +0000 (02:08 +0100)]
tai64n: whiten nano seconds
Avoid being too precise of a time oracle.
Jason A. Donenfeld [Wed, 23 Jan 2019 21:05:07 +0000 (22:05 +0100)]
uapi: Simpler function signature
Jason A. Donenfeld [Thu, 3 Jan 2019 18:04:00 +0000 (19:04 +0100)]
Extend structs rather than embed, when possible
Jason A. Donenfeld [Wed, 2 Jan 2019 00:55:51 +0000 (01:55 +0100)]
Update copyright
Jason A. Donenfeld [Tue, 25 Dec 2018 21:56:36 +0000 (22:56 +0100)]
Properly bubble up setsockopt error from closure
Jason A. Donenfeld [Sat, 22 Dec 2018 16:34:23 +0000 (17:34 +0100)]
version: bump snapshot
Jason A. Donenfeld [Tue, 18 Dec 2018 23:35:53 +0000 (00:35 +0100)]
Make error messages consistent
Jason A. Donenfeld [Tue, 11 Dec 2018 17:33:13 +0000 (18:33 +0100)]
Freebsd is finally normal in sys/unix
Jason A. Donenfeld [Tue, 11 Dec 2018 17:21:11 +0000 (18:21 +0100)]
Separate out mark setting for Windows
Jason A. Donenfeld [Mon, 10 Dec 2018 03:23:17 +0000 (04:23 +0100)]
Use upstream's xchacha20poly1305
Jason A. Donenfeld [Mon, 10 Dec 2018 01:00:03 +0000 (02:00 +0100)]
Update go x/ libraries
Android 9's Bionic disallows inotify_init with seccomp, so we want the
latest unix change, and while we're at it, we update the others too.
Reported-by: Berk D. Demir <bdd@mindcast.org>
Go CL: https://go-review.googlesource.com/c/sys/+/153318
Fixes: https://lists.zx2c4.com/pipermail/wireguard/2018-December/003642.html
Jason A. Donenfeld [Thu, 6 Dec 2018 16:17:51 +0000 (17:17 +0100)]
tun: remove nonblock hack for linux
This is no longer necessary and actually breaks things
Reported-by: Chris Branch <cbranch@cloudflare.com>
Jason A. Donenfeld [Thu, 8 Nov 2018 02:58:01 +0000 (03:58 +0100)]
tai64n: use proper nanoseconds offset
The code before was obviously wrong.
Reported-by: Vlad Krasnov <vlad@cloudflare.com>
Jason A. Donenfeld [Tue, 6 Nov 2018 15:24:35 +0000 (16:24 +0100)]
Use darwin tun on ios
Jason A. Donenfeld [Mon, 5 Nov 2018 04:46:27 +0000 (05:46 +0100)]
uapi: typo
Jason A. Donenfeld [Thu, 1 Nov 2018 18:54:25 +0000 (19:54 +0100)]
receive: make started status uniform
Jason A. Donenfeld [Thu, 18 Oct 2018 16:15:24 +0000 (18:15 +0200)]
send: do not unlock already freed object
Jason A. Donenfeld [Thu, 18 Oct 2018 00:38:29 +0000 (02:38 +0200)]
version: bump snapshot
Jason A. Donenfeld [Wed, 17 Oct 2018 19:45:16 +0000 (21:45 +0200)]
Makefile: rename default to all
Jason A. Donenfeld [Wed, 17 Oct 2018 19:26:53 +0000 (21:26 +0200)]
tun: only call .Fd() once
Doing so tends to make the tunnel blocking, so we only retrieve it once
before we call SetNonblock, and then cache the result.
Jason A. Donenfeld [Thu, 11 Oct 2018 23:45:33 +0000 (01:45 +0200)]
Use go modules always
Jason A. Donenfeld [Thu, 11 Oct 2018 23:12:00 +0000 (01:12 +0200)]
Do not build if nothing to do
Jason A. Donenfeld [Tue, 9 Oct 2018 16:11:36 +0000 (18:11 +0200)]
Switch to go modules
Jason A. Donenfeld [Mon, 1 Oct 2018 15:58:31 +0000 (17:58 +0200)]
version: bump snapshot
Jason A. Donenfeld [Mon, 1 Oct 2018 14:11:31 +0000 (16:11 +0200)]
Adding missing queueconstants file
Chris Branch [Thu, 20 Sep 2018 12:28:53 +0000 (13:28 +0100)]
Fix transport message length check
wireguard-go has a bad length check in its transport message handling.
Although it cannot be exploited because of another length check earlier in the
function, this should be fixed regardless.
Jason A. Donenfeld [Tue, 25 Sep 2018 00:31:02 +0000 (02:31 +0200)]
Make it easy to restrict queue sizes more
Jason A. Donenfeld [Sun, 23 Sep 2018 23:52:02 +0000 (01:52 +0200)]
Fix shutdown races
Jason A. Donenfeld [Sat, 22 Sep 2018 04:29:02 +0000 (06:29 +0200)]
More pooling
Jason A. Donenfeld [Sun, 16 Sep 2018 22:43:23 +0000 (00:43 +0200)]
Fixup buffer freeing
Jason A. Donenfeld [Sun, 16 Sep 2018 21:42:31 +0000 (23:42 +0200)]
send: more precise padding calculation
Jason A. Donenfeld [Sun, 16 Sep 2018 21:10:19 +0000 (23:10 +0200)]
device: preallocated buffers scheme
Not useful now but quite possibly later.
Jason A. Donenfeld [Sun, 16 Sep 2018 19:50:58 +0000 (21:50 +0200)]
Change queueing drop order and fix memory leaks
If the queues are full, we drop the present packet, which is better for
network traffic flow. Also, we try to fix up the memory leaks with not
putting buffers from our shared pool.
Jason A. Donenfeld [Sun, 16 Sep 2018 15:30:46 +0000 (17:30 +0200)]
send: use accessor function for buffer pool
Mathias Hall-Andersen [Sun, 16 Sep 2018 13:05:08 +0000 (15:05 +0200)]
Fixed port overwrite issue on kernels without ipv6
Fixed an issue in CreateBind for Linux:
If ipv6 was not supported the error code would be
correctly identified as EAFNOSUPPORT and ipv4 binding attempted.
However the port would be set to 0,
which results in the subsequent create4 call requesting
a random port rather than the one provided to CreateBind.
This issue was identified by:
Kent Friis <leeloored@gmx.com>
Jason A. Donenfeld [Wed, 5 Sep 2018 21:54:31 +0000 (15:54 -0600)]
global: fix up copyright headers
Jason A. Donenfeld [Mon, 3 Sep 2018 05:04:47 +0000 (23:04 -0600)]
uapi: insert peer version placeholder
While we don't want people to ever use old protocols, people will
complain if the API "changes", so explicitly make the unset protocol
mean the latest, and add a dummy mechanism of specifying the protocol on
a per-peer basis, which we hope nobody actually ever uses.
Jason A. Donenfeld [Mon, 30 Jul 2018 03:14:17 +0000 (05:14 +0200)]
Fix duplicate copyright line
Jason A. Donenfeld [Tue, 24 Jul 2018 12:32:02 +0000 (14:32 +0200)]
uapi: allow overriding socket directory at compile time
Jason A. Donenfeld [Mon, 16 Jul 2018 14:05:21 +0000 (16:05 +0200)]
send: better debug message for failed data packet
Jason A. Donenfeld [Wed, 13 Jun 2018 14:21:59 +0000 (16:21 +0200)]
version: bump snapshot
Jason A. Donenfeld [Mon, 11 Jun 2018 17:04:38 +0000 (19:04 +0200)]
Support IPv6-less kernels
Jason A. Donenfeld [Sat, 9 Jun 2018 01:31:17 +0000 (03:31 +0200)]
Do not build tun device on ios
Jason A. Donenfeld [Sat, 2 Jun 2018 15:36:35 +0000 (17:36 +0200)]
Fix duplicated wording
Jason A. Donenfeld [Sat, 2 Jun 2018 14:25:19 +0000 (16:25 +0200)]
Makefile: export PWD for OpenBSD's ksh(1)
Interestingly, ksh(1) on OpenBSD does not export PWD by default, and it
also has a notion of the "logical cwd" vs the "physical cwd", with the
latter being passed to chdir, but the former being stored in the
non-exported PWD and displayed to the user. This means that if you `cd`
into a directory that's comprised of symlinks, exec'd processes will see
the physical path. Observe:
# ksh
# mkdir a
# ln -s a b
# cd b
# pwd
/root/b
# ksh -c pwd
/root/a
The fact of separating physical and logical paths is not too uncommon
for shells (bash does it too), but not exporting PWD is very odd.
Since this is common behavior for many shells, libraries that return the
working directory will do something strange: they `stat(".")` and then
`stat(getenv("PWD"))`, and if these point to the same inode, they roll
with the value of `getenv("PWD")`, or otherwise fallback to asking the
kernel for the cwd.
Since PWD was not exported by ksh(1), Go's dep utility did not understand
it was operating inside of our faked GOPATH and became upset.
This patch works around the whole situation by simply exporting PWD
before executing dep.
Jason A. Donenfeld [Thu, 31 May 2018 00:26:07 +0000 (02:26 +0200)]
version: bump snapshot
Jason A. Donenfeld [Tue, 29 May 2018 23:09:18 +0000 (01:09 +0200)]
Print version number in log
Jason A. Donenfeld [Sun, 27 May 2018 23:39:37 +0000 (01:39 +0200)]
Update deps
Jason A. Donenfeld [Sun, 27 May 2018 20:55:01 +0000 (22:55 +0200)]
Fix typo in timers
Jason A. Donenfeld [Sun, 27 May 2018 00:26:56 +0000 (02:26 +0200)]
Disable broadcast mode on *BSD
Keeping it on makes IPv6 problematic and confuses routing daemons.
Jason A. Donenfeld [Sat, 26 May 2018 00:59:26 +0000 (02:59 +0200)]
Disappointing anti-sticky experiment
Jason A. Donenfeld [Thu, 24 May 2018 17:58:16 +0000 (19:58 +0200)]
Fix tests
Jason A. Donenfeld [Thu, 24 May 2018 16:00:45 +0000 (18:00 +0200)]
Trick for being extra sensitive to route changes
Jason A. Donenfeld [Thu, 24 May 2018 15:53:00 +0000 (17:53 +0200)]
Back to sticky sockets on android
Jason A. Donenfeld [Thu, 24 May 2018 14:41:42 +0000 (16:41 +0200)]
Do not build on Linux
Jason A. Donenfeld [Thu, 24 May 2018 13:29:16 +0000 (15:29 +0200)]
Catch EINTR
Jason A. Donenfeld [Thu, 24 May 2018 01:13:46 +0000 (03:13 +0200)]
Remove old makefile artifact
Jason A. Donenfeld [Thu, 24 May 2018 00:25:51 +0000 (02:25 +0200)]
version: bump snapshot
Jason A. Donenfeld [Wed, 23 May 2018 23:52:22 +0000 (01:52 +0200)]
Add undocumented --version flag
Jason A. Donenfeld [Wed, 23 May 2018 17:00:00 +0000 (19:00 +0200)]
Eye before ee except after see
Jason A. Donenfeld [Wed, 23 May 2018 16:30:55 +0000 (18:30 +0200)]
No zero sequence numbers
Jason A. Donenfeld [Wed, 23 May 2018 15:30:35 +0000 (17:30 +0200)]
Don't cause a new fake gopath to call dep
Jason A. Donenfeld [Wed, 23 May 2018 13:38:24 +0000 (15:38 +0200)]
Infoleak ifnames and be more permissive
Listing interfaces is already permitted by the OS, so we allow this info
leak too.