mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-06 14:47:35 +03:00
40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
// +build !android
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
|
|
"github.com/coreos/go-systemd/activation"
|
|
"github.com/jedisct1/dlog"
|
|
)
|
|
|
|
func (proxy *Proxy) SystemDListeners() error {
|
|
files := activation.Files(true)
|
|
|
|
if len(files) > 0 {
|
|
if len(proxy.userName) > 0 || proxy.child {
|
|
dlog.Fatal("Systemd activated sockets are incompatible with privilege dropping. Remove activated sockets and fill `listen_addresses` in the dnscrypt-proxy configuration file instead.")
|
|
}
|
|
dlog.Warn("Systemd sockets are untested and unsupported - use at your own risk")
|
|
}
|
|
for i, file := range files {
|
|
defer file.Close()
|
|
ok := false
|
|
if listener, err := net.FileListener(file); err == nil {
|
|
dlog.Noticef("Wiring systemd TCP socket #%d, %s, %s", i, file.Name(), listener.Addr())
|
|
ok = true
|
|
go proxy.tcpListener(listener.(*net.TCPListener))
|
|
} else if pc, err := net.FilePacketConn(file); err == nil {
|
|
dlog.Noticef("Wiring systemd UDP socket #%d, %s, %s", i, file.Name(), pc.LocalAddr())
|
|
ok = true
|
|
go proxy.udpListener(pc.(*net.UDPConn))
|
|
}
|
|
if !ok {
|
|
return fmt.Errorf("Could not wire systemd socket #%d, %s", i, file.Name())
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|