177 lines
4.2 KiB
Go
177 lines
4.2 KiB
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
/*
|
|
Copyright The containerd Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package shim
|
|
|
|
import (
|
|
"context"
|
|
"crypto/sha256"
|
|
"fmt"
|
|
"net"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"syscall"
|
|
"time"
|
|
|
|
"github.com/containerd/containerd/namespaces"
|
|
"github.com/containerd/containerd/pkg/dialer"
|
|
"github.com/containerd/containerd/sys"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
const (
|
|
shimBinaryFormat = "containerd-shim-%s-%s"
|
|
socketPathLimit = 106
|
|
)
|
|
|
|
func getSysProcAttr() *syscall.SysProcAttr {
|
|
return &syscall.SysProcAttr{
|
|
Setpgid: true,
|
|
}
|
|
}
|
|
|
|
// AdjustOOMScore sets the OOM score for the process to the parents OOM score +1
|
|
// to ensure that they parent has a lower* score than the shim
|
|
// if not already at the maximum OOM Score
|
|
func AdjustOOMScore(pid int) error {
|
|
parent := os.Getppid()
|
|
score, err := sys.GetOOMScoreAdj(parent)
|
|
if err != nil {
|
|
return errors.Wrap(err, "get parent OOM score")
|
|
}
|
|
shimScore := score + 1
|
|
if err := sys.AdjustOOMScore(pid, shimScore); err != nil {
|
|
return errors.Wrap(err, "set shim OOM score")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
const socketRoot = "/run/containerd"
|
|
|
|
// SocketAddress returns a socket address
|
|
func SocketAddress(ctx context.Context, socketPath, id string) (string, error) {
|
|
ns, err := namespaces.NamespaceRequired(ctx)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
d := sha256.Sum256([]byte(filepath.Join(socketPath, ns, id)))
|
|
return fmt.Sprintf("unix://%s/%x", filepath.Join(socketRoot, "s"), d), nil
|
|
}
|
|
|
|
// AnonDialer returns a dialer for a socket
|
|
func AnonDialer(address string, timeout time.Duration) (net.Conn, error) {
|
|
ctx, cancel := context.WithTimeout(context.Background(), timeout)
|
|
defer cancel()
|
|
return dialer.ContextDialer(ctx, socket(address).path())
|
|
}
|
|
|
|
// AnonReconnectDialer returns a dialer for an existing socket on reconnection
|
|
func AnonReconnectDialer(address string, timeout time.Duration) (net.Conn, error) {
|
|
return AnonDialer(address, timeout)
|
|
}
|
|
|
|
// NewSocket returns a new socket
|
|
func NewSocket(address string) (*net.UnixListener, error) {
|
|
var (
|
|
sock = socket(address)
|
|
path = sock.path()
|
|
)
|
|
|
|
isAbstract := sock.isAbstract()
|
|
|
|
if !isAbstract {
|
|
if err := os.MkdirAll(filepath.Dir(path), 0600); err != nil {
|
|
return nil, errors.Wrapf(err, "%s", path)
|
|
}
|
|
}
|
|
l, err := net.Listen("unix", path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if !isAbstract {
|
|
if err := os.Chmod(path, 0600); err != nil {
|
|
os.Remove(sock.path())
|
|
l.Close()
|
|
return nil, err
|
|
}
|
|
}
|
|
return l.(*net.UnixListener), nil
|
|
}
|
|
|
|
const abstractSocketPrefix = "\x00"
|
|
|
|
type socket string
|
|
|
|
func (s socket) isAbstract() bool {
|
|
return !strings.HasPrefix(string(s), "unix://")
|
|
}
|
|
|
|
func (s socket) path() string {
|
|
path := strings.TrimPrefix(string(s), "unix://")
|
|
// if there was no trim performed, we assume an abstract socket
|
|
if len(path) == len(s) {
|
|
path = abstractSocketPrefix + path
|
|
}
|
|
return path
|
|
}
|
|
|
|
// RemoveSocket removes the socket at the specified address if
|
|
// it exists on the filesystem
|
|
func RemoveSocket(address string) error {
|
|
sock := socket(address)
|
|
if !sock.isAbstract() {
|
|
return os.Remove(sock.path())
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// SocketEaddrinuse returns true if the provided error is caused by the
|
|
// EADDRINUSE error number
|
|
func SocketEaddrinuse(err error) bool {
|
|
netErr, ok := err.(*net.OpError)
|
|
if !ok {
|
|
return false
|
|
}
|
|
if netErr.Op != "listen" {
|
|
return false
|
|
}
|
|
syscallErr, ok := netErr.Err.(*os.SyscallError)
|
|
if !ok {
|
|
return false
|
|
}
|
|
errno, ok := syscallErr.Err.(syscall.Errno)
|
|
if !ok {
|
|
return false
|
|
}
|
|
return errno == syscall.EADDRINUSE
|
|
}
|
|
|
|
// CanConnect returns true if the socket provided at the address
|
|
// is accepting new connections
|
|
func CanConnect(address string) bool {
|
|
conn, err := AnonDialer(address, 100*time.Millisecond)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
conn.Close()
|
|
return true
|
|
}
|