Files
crypto/utils/ulimit/ulimit_darwin.go
T

60 lines
1.8 KiB
Go

// Copyright (C) 2019-2025, Lux Industries, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
//go:build darwin
// +build darwin
package ulimit
import (
"fmt"
"syscall"
"github.com/luxfi/log"
)
const DefaultFDLimit = 10 * 1024
// Set attempts to bump the Rlimit which has a soft (Cur) and a hard (Max) value.
// The soft limit is what is used by the kernel to report EMFILE errors. The hard
// limit is a secondary limit which the process can be bumped to without additional
// privileges. Bumping the Max limit further would require superuser privileges.
// If the value is below the recommendation warn on start.
// see: http://0pointer.net/blog/file-descriptor-limits.html
func Set(limit uint64, log log.Logger) error {
var rLimit syscall.Rlimit
err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &rLimit)
if err != nil {
return fmt.Errorf("error getting rlimit: %w", err)
}
// Darwin max number of FDs to allocatable for darwin systems.
// The max file limit is 10240, even though the max returned by
// Getrlimit is 1<<63-1. This is OPEN_MAX in sys/syslimits.h.
// See https://github.com/golang/go/issues/30401
if limit > DefaultFDLimit {
return fmt.Errorf("error fd-limit: (%d) greater than max: (%d)", limit, DefaultFDLimit)
}
rLimit.Cur = limit
// set new limit
if err := syscall.Setrlimit(syscall.RLIMIT_NOFILE, &rLimit); err != nil {
return fmt.Errorf("error setting fd-limit: %w", err)
}
// verify limit
if err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &rLimit); err != nil {
return fmt.Errorf("error getting rlimit: %w", err)
}
if rLimit.Cur < DefaultFDLimit {
log.Warn("fd-limit is less than recommended and could result in reduced performance",
"currentLimit", rLimit.Cur,
"recommendedLimit", DefaultFDLimit,
)
}
return nil
}