2013-12-07 00:19:30 -05:00
|
|
|
package systemd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"net"
|
|
|
|
"strconv"
|
|
|
|
|
2014-03-18 13:40:00 -04:00
|
|
|
"github.com/coreos/go-systemd/activation"
|
2013-12-07 00:19:30 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// ListenFD returns the specified socket activated files as a slice of
|
|
|
|
// net.Listeners or all of the activated files if "*" is given.
|
|
|
|
func ListenFD(addr string) ([]net.Listener, error) {
|
2014-01-17 17:07:06 -05:00
|
|
|
// socket activation
|
|
|
|
listeners, err := activation.Listeners(false)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if listeners == nil || len(listeners) == 0 {
|
2013-12-07 00:19:30 -05:00
|
|
|
return nil, errors.New("No sockets found")
|
|
|
|
}
|
|
|
|
|
2014-01-03 21:07:43 -05:00
|
|
|
// default to all fds just like unix:// and tcp://
|
|
|
|
if addr == "" {
|
|
|
|
addr = "*"
|
|
|
|
}
|
|
|
|
|
2013-12-07 00:19:30 -05:00
|
|
|
fdNum, _ := strconv.Atoi(addr)
|
|
|
|
fdOffset := fdNum - 3
|
2014-01-17 17:07:06 -05:00
|
|
|
if (addr != "*") && (len(listeners) < int(fdOffset)+1) {
|
2013-12-07 00:19:30 -05:00
|
|
|
return nil, errors.New("Too few socket activated files passed in")
|
|
|
|
}
|
|
|
|
|
|
|
|
if addr == "*" {
|
|
|
|
return listeners, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return []net.Listener{listeners[fdOffset]}, nil
|
|
|
|
}
|