mirror of
https://github.com/cert-manager/webhook-example.git
synced 2025-07-04 07:35:49 +02:00
142 lines
3.6 KiB
Go
142 lines
3.6 KiB
Go
/*
|
|
Copyright 2021 The Kubernetes 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 addr
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"io/fs"
|
|
"net"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"time"
|
|
|
|
"sigs.k8s.io/controller-runtime/pkg/internal/flock"
|
|
)
|
|
|
|
// TODO(directxman12): interface / release functionality for external port managers
|
|
|
|
const (
|
|
portReserveTime = 2 * time.Minute
|
|
portConflictRetry = 100
|
|
portFilePrefix = "port-"
|
|
)
|
|
|
|
var (
|
|
cacheDir string
|
|
)
|
|
|
|
func init() {
|
|
baseDir, err := os.UserCacheDir()
|
|
if err == nil {
|
|
cacheDir = filepath.Join(baseDir, "kubebuilder-envtest")
|
|
err = os.MkdirAll(cacheDir, 0o750)
|
|
}
|
|
if err != nil {
|
|
// Either we didn't get a cache directory, or we can't use it
|
|
baseDir = os.TempDir()
|
|
cacheDir = filepath.Join(baseDir, "kubebuilder-envtest")
|
|
err = os.MkdirAll(cacheDir, 0o750)
|
|
}
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
type portCache struct{}
|
|
|
|
func (c *portCache) add(port int) (bool, error) {
|
|
// Remove outdated ports.
|
|
if err := fs.WalkDir(os.DirFS(cacheDir), ".", func(path string, d fs.DirEntry, err error) error {
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if d.IsDir() || !d.Type().IsRegular() || !strings.HasPrefix(path, portFilePrefix) {
|
|
return nil
|
|
}
|
|
info, err := d.Info()
|
|
if err != nil {
|
|
// No-op if file no longer exists; may have been deleted by another
|
|
// process/thread trying to allocate ports.
|
|
if errors.Is(err, fs.ErrNotExist) {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
if time.Since(info.ModTime()) > portReserveTime {
|
|
if err := os.Remove(filepath.Join(cacheDir, path)); err != nil {
|
|
// No-op if file no longer exists; may have been deleted by another
|
|
// process/thread trying to allocate ports.
|
|
if os.IsNotExist(err) {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}); err != nil {
|
|
return false, err
|
|
}
|
|
// Try allocating new port, by acquiring a file.
|
|
path := fmt.Sprintf("%s/%s%d", cacheDir, portFilePrefix, port)
|
|
if err := flock.Acquire(path); errors.Is(err, flock.ErrAlreadyLocked) {
|
|
return false, nil
|
|
} else if err != nil {
|
|
return false, err
|
|
}
|
|
return true, nil
|
|
}
|
|
|
|
var cache = &portCache{}
|
|
|
|
func suggest(listenHost string) (*net.TCPListener, int, string, error) {
|
|
if listenHost == "" {
|
|
listenHost = "localhost"
|
|
}
|
|
addr, err := net.ResolveTCPAddr("tcp", net.JoinHostPort(listenHost, "0"))
|
|
if err != nil {
|
|
return nil, -1, "", err
|
|
}
|
|
l, err := net.ListenTCP("tcp", addr)
|
|
if err != nil {
|
|
return nil, -1, "", err
|
|
}
|
|
return l, l.Addr().(*net.TCPAddr).Port,
|
|
addr.IP.String(),
|
|
nil
|
|
}
|
|
|
|
// Suggest suggests an address a process can listen on. It returns
|
|
// a tuple consisting of a free port and the hostname resolved to its IP.
|
|
// It makes sure that new port allocated does not conflict with old ports
|
|
// allocated within 1 minute.
|
|
func Suggest(listenHost string) (int, string, error) {
|
|
for i := 0; i < portConflictRetry; i++ {
|
|
listener, port, resolvedHost, err := suggest(listenHost)
|
|
if err != nil {
|
|
return -1, "", err
|
|
}
|
|
defer listener.Close()
|
|
if ok, err := cache.add(port); ok {
|
|
return port, resolvedHost, nil
|
|
} else if err != nil {
|
|
return -1, "", err
|
|
}
|
|
}
|
|
return -1, "", fmt.Errorf("no free ports found after %d retries", portConflictRetry)
|
|
}
|