2024-01-01 10:31:45 +00:00
|
|
|
// Copyright (C) 2019 Nicola Murino
|
2022-07-17 18:16:00 +00:00
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published
|
|
|
|
// by the Free Software Foundation, version 3.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
2023-01-03 09:18:30 +00:00
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2022-07-17 18:16:00 +00:00
|
|
|
|
2021-08-19 13:51:43 +00:00
|
|
|
//go:build !windows
|
2019-11-26 21:26:42 +00:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package sftpd
|
|
|
|
|
|
|
|
import (
|
2024-04-15 10:52:08 +00:00
|
|
|
"os"
|
2019-11-26 21:26:42 +00:00
|
|
|
"os/exec"
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
2024-04-16 16:34:40 +00:00
|
|
|
var (
|
|
|
|
processUID = os.Geteuid()
|
|
|
|
processGID = os.Getegid()
|
|
|
|
)
|
|
|
|
|
2019-11-26 21:26:42 +00:00
|
|
|
func wrapCmd(cmd *exec.Cmd, uid, gid int) *exec.Cmd {
|
2024-04-16 16:34:40 +00:00
|
|
|
isCurrentUser := processUID == uid && processGID == gid
|
2024-04-15 10:52:08 +00:00
|
|
|
if (uid > 0 || gid > 0) && !isCurrentUser {
|
2019-11-26 21:26:42 +00:00
|
|
|
cmd.SysProcAttr = &syscall.SysProcAttr{}
|
|
|
|
cmd.SysProcAttr.Credential = &syscall.Credential{Uid: uint32(uid), Gid: uint32(gid)}
|
|
|
|
}
|
|
|
|
return cmd
|
|
|
|
}
|