parent
bc3215a8a6
commit
a24cb0d900
|
@ -193,6 +193,9 @@ func ConfigLoad(proxy *Proxy, svcFlag *string) error {
|
||||||
|
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
|
if *child {
|
||||||
|
PledgeChild()
|
||||||
|
}
|
||||||
if *svcFlag == "stop" || *svcFlag == "uninstall" {
|
if *svcFlag == "stop" || *svcFlag == "uninstall" {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,6 +25,8 @@ type App struct {
|
||||||
func main() {
|
func main() {
|
||||||
dlog.Init("dnscrypt-proxy", dlog.SeverityNotice, "DAEMON")
|
dlog.Init("dnscrypt-proxy", dlog.SeverityNotice, "DAEMON")
|
||||||
|
|
||||||
|
Pledge()
|
||||||
|
|
||||||
pwd, err := os.Getwd()
|
pwd, err := os.Getwd()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
dlog.Fatal("Unable to find the path to the current directory")
|
dlog.Fatal("Unable to find the path to the current directory")
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
// +build openbsd
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"golang.org/x/sys/unix"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Pledge() {
|
||||||
|
unix.Pledge("stdio rpath wpath cpath tmppath inet fattr flock dns getpw sendfd recvfd proc exec id", nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func PledgeChild() {
|
||||||
|
unix.Pledge("stdio rpath wpath cpath tmppath inet fattr flock dns recvfd", nil)
|
||||||
|
}
|
|
@ -0,0 +1,11 @@
|
||||||
|
// +build !openbsd
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
func Pledge() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func PledgeChild() {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue