2019-02-04 16:29:52 +00:00
|
|
|
/* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
2019-03-03 03:04:41 +00:00
|
|
|
package ipc
|
2019-02-04 16:29:52 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/Microsoft/go-winio"
|
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
|
|
|
//TODO: replace these with actual standard windows error numbers from the win package
|
|
|
|
const (
|
2019-03-03 03:04:41 +00:00
|
|
|
IpcErrorIO = -int64(5)
|
|
|
|
IpcErrorProtocol = -int64(71)
|
|
|
|
IpcErrorInvalid = -int64(22)
|
|
|
|
IpcErrorPortInUse = -int64(98)
|
2019-02-04 16:29:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
2019-03-06 13:58:25 +00:00
|
|
|
func GetSystemSecurityDescriptor() string {
|
|
|
|
//
|
|
|
|
// SDDL encoded.
|
|
|
|
//
|
|
|
|
// (system = SECURITY_NT_AUTHORITY | SECURITY_LOCAL_SYSTEM_RID)
|
|
|
|
// owner: system
|
|
|
|
// grant: GENERIC_ALL to system
|
|
|
|
//
|
|
|
|
return "O:SYD:(A;;GA;;;SY)"
|
|
|
|
}
|
|
|
|
|
2019-02-04 16:29:52 +00:00
|
|
|
func UAPIListen(name string) (net.Listener, error) {
|
|
|
|
config := winio.PipeConfig{
|
2019-03-06 13:58:25 +00:00
|
|
|
SecurityDescriptor: GetSystemSecurityDescriptor(),
|
2019-02-04 16:29:52 +00:00
|
|
|
}
|
2019-03-08 00:40:54 +00:00
|
|
|
listener, err := winio.ListenPipe("\\\\.\\pipe\\WireGuard\\"+name, &config)
|
2019-02-04 16:29:52 +00:00
|
|
|
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
|
|
|
|
}
|