Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
github.com/juju/mutex
import "github.com/juju/mutex"
package mutex provides a named machine level mutex shareable between processes.
Mutexes have names. Each each name, only one mutex for that name can be acquired at the same time, within and across process boundaries. If a process dies while the mutex is held, the mutex is automatically released.
The Linux/MacOS implementation uses flock, while the Windows implementation uses a named mutex. On Linux, we also acquire an abstract domain socket for compatibility with older implementations.
doc.go errors.go legacy_mutex_linux.go mutex.go mutex_flock.go
var (
ErrTimeout = errors.New("timeout acquiring mutex")
ErrCancelled = errors.New("cancelled acquiring mutex")
)
type Clock interface {
// After waits for the duration to elapse and then sends the
// current time on the returned channel.
After(time.Duration) <-chan time.Time
// Now returns the current clock time.
Now() time.Time
}
Clock provides an interface for dealing with clocks.
type Releaser interface {
// Release releases the mutex. Release may be called multiple times, but
// only the first call will release this instance of the mutex. Release is
// unable to release the mutex successfully it will call panic to forcibly
// release the mutex.
Release()
}
Releaser defines the Release method that is the only thing that can be done to a acquired mutex.
func Acquire(spec Spec) (Releaser, error)
Acquire will attempt to acquire the named mutex. If the Timout value is hit, ErrTimeout is returned. If the Cancel channel is signalled, ErrCancelled is returned.
type Spec struct {
// Name is required, and must start with a letter and contain at most
// 40 letters, numbers or dashes.
Name string
// Clock must be provided and is exposed for testing purposes.
Clock Clock
// Delay defines how often to check for lock acquisition, for
// compatibility code that requires polling.
Delay time.Duration
// Timeout allows the caller to specify how long to wait. If Timeout
// is zero, then the call will block forever.
Timeout time.Duration
// Cancel if signalled will cause the Acquire method to return with ErrCancelled.
Cancel <-chan struct{}
}
Spec defines the name of the mutex and behaviour of the Acquire function.
func (s *Spec) Validate() error
Validate checks the attributes of Spec for validity.
Generated by godoc2md
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.