mirror of
https://github.com/containers/podman.git
synced 2025-07-02 16:57:24 +08:00
Merge pull request #15649 from dfr/freebsd-conmon
Fixes for conmon support on FreeBSD
This commit is contained in:
@ -280,20 +280,20 @@ func readStdio(conn *net.UnixConn, streams *define.AttachStreams, receiveStdoutE
|
||||
var err error
|
||||
select {
|
||||
case err = <-receiveStdoutError:
|
||||
if err := conn.CloseWrite(); err != nil {
|
||||
if err := socketCloseWrite(conn); err != nil {
|
||||
logrus.Errorf("Failed to close stdin: %v", err)
|
||||
}
|
||||
return err
|
||||
case err = <-stdinDone:
|
||||
if err == define.ErrDetach {
|
||||
if err := conn.CloseWrite(); err != nil {
|
||||
if err := socketCloseWrite(conn); err != nil {
|
||||
logrus.Errorf("Failed to close stdin: %v", err)
|
||||
}
|
||||
return err
|
||||
}
|
||||
if err == nil {
|
||||
// copy stdin is done, close it
|
||||
if connErr := conn.CloseWrite(); connErr != nil {
|
||||
if connErr := socketCloseWrite(conn); connErr != nil {
|
||||
logrus.Errorf("Unable to close conn: %v", connErr)
|
||||
}
|
||||
}
|
||||
|
@ -477,6 +477,16 @@ func (r *ConmonOCIRuntime) UnpauseContainer(ctr *Container) error {
|
||||
return utils.ExecCmdWithStdStreams(os.Stdin, os.Stdout, os.Stderr, env, r.path, append(r.runtimeFlags, "resume", ctr.ID())...)
|
||||
}
|
||||
|
||||
// This filters out ENOTCONN errors which can happen on FreeBSD if the
|
||||
// other side of the connection is already closed.
|
||||
func socketCloseWrite(conn *net.UnixConn) error {
|
||||
err := conn.CloseWrite()
|
||||
if err != nil && errors.Is(err, syscall.ENOTCONN) {
|
||||
return nil
|
||||
}
|
||||
return err
|
||||
}
|
||||
|
||||
// HTTPAttach performs an attach for the HTTP API.
|
||||
// The caller must handle closing the HTTP connection after this returns.
|
||||
// The cancel channel is not closed; it is up to the caller to do so after
|
||||
@ -689,7 +699,7 @@ func (r *ConmonOCIRuntime) HTTPAttach(ctr *Container, req *http.Request, w http.
|
||||
return err
|
||||
}
|
||||
// copy stdin is done, close it
|
||||
if connErr := conn.CloseWrite(); connErr != nil {
|
||||
if connErr := socketCloseWrite(conn); connErr != nil {
|
||||
logrus.Errorf("Unable to close conn: %v", connErr)
|
||||
}
|
||||
case <-cancel:
|
||||
|
@ -12,7 +12,6 @@ import (
|
||||
"syscall"
|
||||
"time"
|
||||
|
||||
"github.com/containers/common/pkg/capabilities"
|
||||
"github.com/containers/common/pkg/config"
|
||||
"github.com/containers/common/pkg/resize"
|
||||
cutil "github.com/containers/common/pkg/util"
|
||||
@ -386,7 +385,7 @@ func (r *ConmonOCIRuntime) startExec(c *Container, sessionID string, options *Ex
|
||||
finalEnv = append(finalEnv, fmt.Sprintf("%s=%s", k, v))
|
||||
}
|
||||
|
||||
processFile, err := prepareProcessExec(c, options, finalEnv, sessionID)
|
||||
processFile, err := c.prepareProcessExec(options, finalEnv, sessionID)
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
@ -654,7 +653,7 @@ func attachExecHTTP(c *Container, sessionID string, r *http.Request, w http.Resp
|
||||
return err
|
||||
}
|
||||
// copy stdin is done, close it
|
||||
if connErr := conn.CloseWrite(); connErr != nil {
|
||||
if connErr := socketCloseWrite(conn); connErr != nil {
|
||||
logrus.Errorf("Unable to close conn: %v", connErr)
|
||||
}
|
||||
case <-cancel:
|
||||
@ -665,7 +664,7 @@ func attachExecHTTP(c *Container, sessionID string, r *http.Request, w http.Resp
|
||||
|
||||
// prepareProcessExec returns the path of the process.json used in runc exec -p
|
||||
// caller is responsible to close the returned *os.File if needed.
|
||||
func prepareProcessExec(c *Container, options *ExecOptions, env []string, sessionID string) (*os.File, error) {
|
||||
func (c *Container) prepareProcessExec(options *ExecOptions, env []string, sessionID string) (*os.File, error) {
|
||||
f, err := ioutil.TempFile(c.execBundlePath(sessionID), "exec-process-")
|
||||
if err != nil {
|
||||
return nil, err
|
||||
@ -745,35 +744,10 @@ func prepareProcessExec(c *Container, options *ExecOptions, env []string, sessio
|
||||
pspec.User = processUser
|
||||
}
|
||||
|
||||
ctrSpec, err := c.specFromState()
|
||||
if err != nil {
|
||||
if err := c.setProcessCapabilitiesExec(options, user, execUser, pspec); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
allCaps, err := capabilities.BoundingSet()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if options.Privileged {
|
||||
pspec.Capabilities.Bounding = allCaps
|
||||
} else {
|
||||
pspec.Capabilities.Bounding = ctrSpec.Process.Capabilities.Bounding
|
||||
}
|
||||
|
||||
// Always unset the inheritable capabilities similarly to what the Linux kernel does
|
||||
// They are used only when using capabilities with uid != 0.
|
||||
pspec.Capabilities.Inheritable = []string{}
|
||||
|
||||
if execUser.Uid == 0 {
|
||||
pspec.Capabilities.Effective = pspec.Capabilities.Bounding
|
||||
pspec.Capabilities.Permitted = pspec.Capabilities.Bounding
|
||||
} else if user == c.config.User {
|
||||
pspec.Capabilities.Effective = ctrSpec.Process.Capabilities.Effective
|
||||
pspec.Capabilities.Inheritable = ctrSpec.Process.Capabilities.Effective
|
||||
pspec.Capabilities.Permitted = ctrSpec.Process.Capabilities.Effective
|
||||
pspec.Capabilities.Ambient = ctrSpec.Process.Capabilities.Effective
|
||||
}
|
||||
|
||||
hasHomeSet := false
|
||||
for _, s := range pspec.Env {
|
||||
if strings.HasPrefix(s, "HOME=") {
|
||||
|
10
libpod/oci_conmon_exec_freebsd.go
Normal file
10
libpod/oci_conmon_exec_freebsd.go
Normal file
@ -0,0 +1,10 @@
|
||||
package libpod
|
||||
|
||||
import (
|
||||
"github.com/opencontainers/runc/libcontainer/user"
|
||||
spec "github.com/opencontainers/runtime-spec/specs-go"
|
||||
)
|
||||
|
||||
func (c *Container) setProcessCapabilitiesExec(options *ExecOptions, user string, execUser *user.ExecUser, pspec *spec.Process) error {
|
||||
return nil
|
||||
}
|
39
libpod/oci_conmon_exec_linux.go
Normal file
39
libpod/oci_conmon_exec_linux.go
Normal file
@ -0,0 +1,39 @@
|
||||
package libpod
|
||||
|
||||
import (
|
||||
"github.com/containers/common/pkg/capabilities"
|
||||
"github.com/opencontainers/runc/libcontainer/user"
|
||||
spec "github.com/opencontainers/runtime-spec/specs-go"
|
||||
)
|
||||
|
||||
func (c *Container) setProcessCapabilitiesExec(options *ExecOptions, user string, execUser *user.ExecUser, pspec *spec.Process) error {
|
||||
ctrSpec, err := c.specFromState()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
allCaps, err := capabilities.BoundingSet()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if options.Privileged {
|
||||
pspec.Capabilities.Bounding = allCaps
|
||||
} else {
|
||||
pspec.Capabilities.Bounding = ctrSpec.Process.Capabilities.Bounding
|
||||
}
|
||||
|
||||
// Always unset the inheritable capabilities similarly to what the Linux kernel does
|
||||
// They are used only when using capabilities with uid != 0.
|
||||
pspec.Capabilities.Inheritable = []string{}
|
||||
|
||||
if execUser.Uid == 0 {
|
||||
pspec.Capabilities.Effective = pspec.Capabilities.Bounding
|
||||
pspec.Capabilities.Permitted = pspec.Capabilities.Bounding
|
||||
} else if user == c.config.User {
|
||||
pspec.Capabilities.Effective = ctrSpec.Process.Capabilities.Effective
|
||||
pspec.Capabilities.Inheritable = ctrSpec.Process.Capabilities.Effective
|
||||
pspec.Capabilities.Permitted = ctrSpec.Process.Capabilities.Effective
|
||||
pspec.Capabilities.Ambient = ctrSpec.Process.Capabilities.Effective
|
||||
}
|
||||
return nil
|
||||
}
|
Reference in New Issue
Block a user