mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 06:07:36 +03:00
Minor improvements for the user_name option (#559)
* Fix missing pidfile when run with user_name opt. * Make sure we are root when dropping privilege This is required on macOS. * Kill child process on exit. Fixes https://github.com/jedisct1/dnscrypt-proxy/issues/547
This commit is contained in:
parent
c043bd73dd
commit
33bcff7d4a
3 changed files with 21 additions and 2 deletions
|
@ -98,8 +98,8 @@ func (app *App) Start(service service.Service) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (app *App) AppMain(proxy *Proxy) {
|
func (app *App) AppMain(proxy *Proxy) {
|
||||||
proxy.StartProxy()
|
|
||||||
pidfile.Write()
|
pidfile.Write()
|
||||||
|
proxy.StartProxy()
|
||||||
<-app.quit
|
<-app.quit
|
||||||
dlog.Notice("Quit signal received...")
|
dlog.Notice("Quit signal received...")
|
||||||
app.wg.Done()
|
app.wg.Done()
|
||||||
|
@ -110,6 +110,7 @@ func (app *App) Stop(service service.Service) error {
|
||||||
if pidFilePath := pidfile.GetPidfilePath(); len(pidFilePath) > 1 {
|
if pidFilePath := pidfile.GetPidfilePath(); len(pidFilePath) > 1 {
|
||||||
os.Remove(pidFilePath)
|
os.Remove(pidFilePath)
|
||||||
}
|
}
|
||||||
|
killChild()
|
||||||
dlog.Notice("Stopped.")
|
dlog.Notice("Stopped.")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,16 @@ import (
|
||||||
"github.com/jedisct1/dlog"
|
"github.com/jedisct1/dlog"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var cmd *exec.Cmd
|
||||||
|
|
||||||
func (proxy *Proxy) dropPrivilege(userStr string, fds []*os.File) {
|
func (proxy *Proxy) dropPrivilege(userStr string, fds []*os.File) {
|
||||||
|
currentUser, err := user.Current()
|
||||||
|
if err != nil {
|
||||||
|
dlog.Fatal(err)
|
||||||
|
}
|
||||||
|
if currentUser.Uid != "0" {
|
||||||
|
dlog.Fatal("I need root permissions. Try again with 'sudo'")
|
||||||
|
}
|
||||||
user, err := user.Lookup(userStr)
|
user, err := user.Lookup(userStr)
|
||||||
args := os.Args
|
args := os.Args
|
||||||
|
|
||||||
|
@ -45,7 +54,7 @@ func (proxy *Proxy) dropPrivilege(userStr string, fds []*os.File) {
|
||||||
|
|
||||||
dlog.Notice("Dropping privileges")
|
dlog.Notice("Dropping privileges")
|
||||||
for {
|
for {
|
||||||
cmd := exec.Command(path, args...)
|
cmd = exec.Command(path, args...)
|
||||||
cmd.Stdout = os.Stdout
|
cmd.Stdout = os.Stdout
|
||||||
cmd.Stderr = os.Stderr
|
cmd.Stderr = os.Stderr
|
||||||
cmd.ExtraFiles = fds
|
cmd.ExtraFiles = fds
|
||||||
|
@ -58,3 +67,11 @@ func (proxy *Proxy) dropPrivilege(userStr string, fds []*os.File) {
|
||||||
}
|
}
|
||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func killChild() {
|
||||||
|
if cmd != nil {
|
||||||
|
if err := cmd.Process.Kill(); err != nil {
|
||||||
|
dlog.Fatal("Failed to kill child process.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -3,3 +3,4 @@ package main
|
||||||
import "os"
|
import "os"
|
||||||
|
|
||||||
func (proxy *Proxy) dropPrivilege(userStr string, fds []*os.File) {}
|
func (proxy *Proxy) dropPrivilege(userStr string, fds []*os.File) {}
|
||||||
|
func killChild() {}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue