mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
54 lines
1 KiB
Go
54 lines
1 KiB
Go
//go:build darwin || linux
|
|
|
|
package libbox
|
|
|
|
import (
|
|
"os"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
var stderrFile *os.File
|
|
|
|
func RedirectStderr(path string) error {
|
|
if stats, err := os.Stat(path); err == nil && stats.Size() > 0 {
|
|
_ = os.Rename(path, path+".old")
|
|
}
|
|
outputFile, err := os.Create(path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = unix.Dup2(int(outputFile.Fd()), int(os.Stderr.Fd()))
|
|
if err != nil {
|
|
outputFile.Close()
|
|
os.Remove(outputFile.Name())
|
|
return err
|
|
}
|
|
stderrFile = outputFile
|
|
return nil
|
|
}
|
|
|
|
func RedirectStderrAsUser(path string, uid, gid int) error {
|
|
if stats, err := os.Stat(path); err == nil && stats.Size() > 0 {
|
|
_ = os.Rename(path, path+".old")
|
|
}
|
|
outputFile, err := os.Create(path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = outputFile.Chown(uid, gid)
|
|
if err != nil {
|
|
outputFile.Close()
|
|
os.Remove(outputFile.Name())
|
|
return err
|
|
}
|
|
err = unix.Dup2(int(outputFile.Fd()), int(os.Stderr.Fd()))
|
|
if err != nil {
|
|
outputFile.Close()
|
|
os.Remove(outputFile.Name())
|
|
return err
|
|
}
|
|
stderrFile = outputFile
|
|
return nil
|
|
}
|