aboutsummaryrefslogtreecommitdiffstats
path: root/uapi_windows.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-02-04 17:29:52 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2019-02-05 12:59:42 +0100
commit6f76edd045e20435689d9e1a3dd221b40b49adc6 (patch)
tree6bd0b68977059e74ece474fa7cfb5d27d971ec84 /uapi_windows.go
parentnoise: store clamped key instead of raw key (diff)
downloadwireguard-go-6f76edd045e20435689d9e1a3dd221b40b49adc6.tar.xz
wireguard-go-6f76edd045e20435689d9e1a3dd221b40b49adc6.zip
Import windows scafolding
Diffstat (limited to 'uapi_windows.go')
-rw-r--r--uapi_windows.go76
1 files changed, 76 insertions, 0 deletions
diff --git a/uapi_windows.go b/uapi_windows.go
new file mode 100644
index 0000000..64917f5
--- /dev/null
+++ b/uapi_windows.go
@@ -0,0 +1,76 @@
+/* SPDX-License-Identifier: MIT
+ *
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
+ */
+
+package main
+
+import (
+ "github.com/Microsoft/go-winio"
+ "net"
+)
+
+//TODO: replace these with actual standard windows error numbers from the win package
+const (
+ ipcErrorIO = -int64(5)
+ ipcErrorProtocol = -int64(71)
+ ipcErrorInvalid = -int64(22)
+ ipcErrorPortInUse = -int64(98)
+)
+
+type UAPIListener struct {
+ listener net.Listener // unix socket listener
+ connNew chan net.Conn
+ connErr chan error
+ kqueueFd int
+ keventFd int
+}
+
+func (l *UAPIListener) Accept() (net.Conn, error) {
+ for {
+ select {
+ case conn := <-l.connNew:
+ return conn, nil
+
+ case err := <-l.connErr:
+ return nil, err
+ }
+ }
+}
+
+func (l *UAPIListener) Close() error {
+ return l.listener.Close()
+}
+
+func (l *UAPIListener) Addr() net.Addr {
+ return l.listener.Addr()
+}
+
+func UAPIListen(name string) (net.Listener, error) {
+ config := winio.PipeConfig{
+ SecurityDescriptor: "", //TODO: we want this to be a very locked down pipe.
+ }
+ listener, err := winio.ListenPipe("\\\\.\\pipe\\wireguard\\"+name, &config) //TODO: choose sane name.
+ if err != nil {
+ return nil, err
+ }
+
+ uapi := &UAPIListener{
+ listener: listener,
+ connNew: make(chan net.Conn, 1),
+ connErr: make(chan error, 1),
+ }
+
+ go func(l *UAPIListener) {
+ for {
+ conn, err := l.listener.Accept()
+ if err != nil {
+ l.connErr <- err
+ break
+ }
+ l.connNew <- conn
+ }
+ }(uapi)
+
+ return uapi, nil
+}