bc44baba55
The sshd handler performed a concrete type assertion on the accepted connection, but the SSH listener's Accept() wraps each connection with a traffic limiter (limitConn), obscuring the underlying *DirectForwardConn type and causing 'sshd: wrong connection type' whenever a limiter was configured. Add an UnwrapConn() method to the traffic limiter wrapper and an unwrapConn() helper in the handler that peels through wrapper layers before the type switch. The handler uses the unwrapped conn only for the type-specific DstAddr() call, while the original limiter-wrapped conn drives data transfer so rate limiting remains effective. Also track the last accept/bind error on service Status so callers can retrieve the cause when a service enters the failed state.
111 lines
2.6 KiB
Go
111 lines
2.6 KiB
Go
package service
|
|
|
|
import (
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/go-gost/core/observer/stats"
|
|
)
|
|
|
|
// MaxEventSize is the maximum number of events retained in a Status event log.
|
|
// When the log is full, the oldest event is discarded.
|
|
const MaxEventSize = 20
|
|
|
|
// State represents the operational state of a service.
|
|
type State string
|
|
|
|
const (
|
|
// StateRunning indicates the service has been created but is not yet accepting.
|
|
StateRunning State = "running"
|
|
// StateReady indicates the service is actively accepting connections.
|
|
StateReady State = "ready"
|
|
// StateFailed indicates the service accept loop encountered a temporary error.
|
|
StateFailed State = "failed"
|
|
// StateClosed indicates the service has been shut down.
|
|
StateClosed State = "closed"
|
|
)
|
|
|
|
// Event records a state change or notable occurrence in a service's lifetime.
|
|
type Event struct {
|
|
Time time.Time
|
|
Message string
|
|
}
|
|
|
|
// Status tracks the runtime state, event log, and traffic statistics of a service.
|
|
type Status struct {
|
|
createTime time.Time
|
|
state State
|
|
events []Event
|
|
stats stats.Stats
|
|
lastError error
|
|
mu sync.RWMutex
|
|
}
|
|
|
|
// CreateTime returns the time at which the service was created.
|
|
func (p *Status) CreateTime() time.Time {
|
|
return p.createTime
|
|
}
|
|
|
|
// State returns the current service state.
|
|
func (p *Status) State() State {
|
|
p.mu.RLock()
|
|
defer p.mu.RUnlock()
|
|
return p.state
|
|
}
|
|
|
|
func (p *Status) setState(state State) {
|
|
p.mu.Lock()
|
|
defer p.mu.Unlock()
|
|
p.state = state
|
|
}
|
|
|
|
// Events returns a snapshot of the recent event log. The returned slice is safe
|
|
// to modify without affecting the internal state.
|
|
func (p *Status) Events() []Event {
|
|
p.mu.RLock()
|
|
defer p.mu.RUnlock()
|
|
|
|
events := make([]Event, len(p.events))
|
|
copy(events, p.events)
|
|
return events
|
|
}
|
|
|
|
func (p *Status) addEvent(event Event) {
|
|
p.mu.Lock()
|
|
defer p.mu.Unlock()
|
|
|
|
if len(p.events) == MaxEventSize {
|
|
events := make([]Event, MaxEventSize-1, MaxEventSize)
|
|
copy(events, p.events[1:])
|
|
p.events = events
|
|
}
|
|
p.events = append(p.events, event)
|
|
}
|
|
|
|
// LastError returns the last accept/bind error that caused the service to
|
|
// enter StateFailed. Returns nil if the service never entered the failed state.
|
|
func (p *Status) LastError() error {
|
|
if p == nil {
|
|
return nil
|
|
}
|
|
p.mu.RLock()
|
|
defer p.mu.RUnlock()
|
|
return p.lastError
|
|
}
|
|
|
|
// setLastError stores the last accept/bind error for retrieval via LastError().
|
|
func (p *Status) setLastError(err error) {
|
|
p.mu.Lock()
|
|
defer p.mu.Unlock()
|
|
p.lastError = err
|
|
}
|
|
|
|
// Stats returns the traffic statistics for the service. It safely handles nil
|
|
// receivers by returning nil.
|
|
func (p *Status) Stats() stats.Stats {
|
|
if p == nil {
|
|
return nil
|
|
}
|
|
return p.stats
|
|
}
|