2016-09-04 21:03:36 +00:00
|
|
|
// +build darwin dragonfly freebsd linux netbsd openbsd solaris windows
|
2016-02-13 00:20:04 +00:00
|
|
|
|
2016-02-19 21:08:25 +00:00
|
|
|
package logging
|
2016-02-10 02:24:30 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-02-23 00:10:23 +00:00
|
|
|
"io"
|
2016-03-10 07:25:31 +00:00
|
|
|
"io/ioutil"
|
2016-02-10 02:24:30 +00:00
|
|
|
"log"
|
|
|
|
"net"
|
2016-03-10 07:25:31 +00:00
|
|
|
"os"
|
|
|
|
"runtime"
|
2016-02-10 02:24:30 +00:00
|
|
|
|
2016-09-04 21:03:36 +00:00
|
|
|
syslog "github.com/RackSec/srslog"
|
2016-02-10 02:24:30 +00:00
|
|
|
"github.com/hashicorp/nomad/client/allocdir"
|
2016-02-19 22:01:07 +00:00
|
|
|
cstructs "github.com/hashicorp/nomad/client/driver/structs"
|
2016-02-10 02:24:30 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
)
|
|
|
|
|
2016-02-10 16:13:08 +00:00
|
|
|
// LogCollectorContext holds context to configure the syslog server
|
2016-02-10 02:24:30 +00:00
|
|
|
type LogCollectorContext struct {
|
2016-02-10 16:13:08 +00:00
|
|
|
// TaskName is the name of the Task
|
|
|
|
TaskName string
|
|
|
|
|
|
|
|
// AllocDir is the handle to do operations on the alloc dir of
|
|
|
|
// the task
|
|
|
|
AllocDir *allocdir.AllocDir
|
|
|
|
|
|
|
|
// LogConfig provides configuration related to log rotation
|
|
|
|
LogConfig *structs.LogConfig
|
|
|
|
|
|
|
|
// PortUpperBound is the upper bound of the ports that we can use to start
|
|
|
|
// the syslog server
|
2016-02-10 15:52:15 +00:00
|
|
|
PortUpperBound uint
|
2016-02-10 16:13:08 +00:00
|
|
|
|
|
|
|
// PortLowerBound is the lower bound of the ports that we can use to start
|
|
|
|
// the syslog server
|
2016-02-10 15:52:15 +00:00
|
|
|
PortLowerBound uint
|
2016-02-10 02:24:30 +00:00
|
|
|
}
|
|
|
|
|
2016-02-10 16:13:08 +00:00
|
|
|
// SyslogCollectorState holds the address and islation information of a launched
|
|
|
|
// syslog server
|
2016-02-10 02:24:30 +00:00
|
|
|
type SyslogCollectorState struct {
|
2016-02-19 22:01:07 +00:00
|
|
|
IsolationConfig *cstructs.IsolationConfig
|
2016-02-10 15:52:15 +00:00
|
|
|
Addr string
|
2016-02-10 02:24:30 +00:00
|
|
|
}
|
|
|
|
|
2016-02-10 16:13:08 +00:00
|
|
|
// LogCollector is an interface which allows a driver to launch a log server
|
|
|
|
// and update log configuration
|
2016-02-10 02:24:30 +00:00
|
|
|
type LogCollector interface {
|
2016-02-10 15:52:15 +00:00
|
|
|
LaunchCollector(ctx *LogCollectorContext) (*SyslogCollectorState, error)
|
2016-02-10 02:24:30 +00:00
|
|
|
Exit() error
|
|
|
|
UpdateLogConfig(logConfig *structs.LogConfig) error
|
|
|
|
}
|
|
|
|
|
2016-02-10 16:13:08 +00:00
|
|
|
// SyslogCollector is a LogCollector which starts a syslog server and does
|
|
|
|
// rotation to incoming stream
|
2016-02-10 02:24:30 +00:00
|
|
|
type SyslogCollector struct {
|
|
|
|
addr net.Addr
|
|
|
|
logConfig *structs.LogConfig
|
|
|
|
ctx *LogCollectorContext
|
|
|
|
|
2016-02-23 00:10:23 +00:00
|
|
|
lro *FileRotator
|
|
|
|
lre *FileRotator
|
|
|
|
server *SyslogServer
|
|
|
|
syslogChan chan *SyslogMessage
|
|
|
|
taskDir string
|
2016-02-10 02:24:30 +00:00
|
|
|
|
|
|
|
logger *log.Logger
|
|
|
|
}
|
|
|
|
|
2016-02-10 16:13:08 +00:00
|
|
|
// NewSyslogCollector returns an implementation of the SyslogCollector
|
2016-02-10 02:24:30 +00:00
|
|
|
func NewSyslogCollector(logger *log.Logger) *SyslogCollector {
|
2016-02-23 00:10:23 +00:00
|
|
|
return &SyslogCollector{logger: logger, syslogChan: make(chan *SyslogMessage, 2048)}
|
2016-02-10 02:24:30 +00:00
|
|
|
}
|
|
|
|
|
2016-02-10 16:13:08 +00:00
|
|
|
// LaunchCollector launches a new syslog server and starts writing log lines to
|
|
|
|
// files and rotates them
|
2016-02-10 15:52:15 +00:00
|
|
|
func (s *SyslogCollector) LaunchCollector(ctx *LogCollectorContext) (*SyslogCollectorState, error) {
|
2016-02-17 22:48:25 +00:00
|
|
|
l, err := s.getListener(ctx.PortLowerBound, ctx.PortUpperBound)
|
2016-02-10 15:52:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-02-17 22:48:25 +00:00
|
|
|
s.logger.Printf("[DEBUG] sylog-server: launching syslog server on addr: %v", l.Addr().String())
|
2016-02-10 02:24:30 +00:00
|
|
|
s.ctx = ctx
|
|
|
|
// configuring the task dir
|
|
|
|
if err := s.configureTaskDir(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-02-23 00:10:23 +00:00
|
|
|
s.server = NewSyslogServer(l, s.syslogChan, s.logger)
|
|
|
|
go s.server.Start()
|
2016-02-10 15:52:15 +00:00
|
|
|
logFileSize := int64(ctx.LogConfig.MaxFileSizeMB * 1024 * 1024)
|
2016-02-10 20:09:07 +00:00
|
|
|
|
2016-02-25 04:06:43 +00:00
|
|
|
lro, err := NewFileRotator(ctx.AllocDir.LogDir(), fmt.Sprintf("%v.stdout", ctx.TaskName),
|
2016-02-19 22:01:07 +00:00
|
|
|
ctx.LogConfig.MaxFiles, logFileSize, s.logger)
|
|
|
|
|
2016-02-10 15:52:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-02-11 22:44:35 +00:00
|
|
|
s.lro = lro
|
2016-02-10 20:09:07 +00:00
|
|
|
|
2016-02-25 04:06:43 +00:00
|
|
|
lre, err := NewFileRotator(ctx.AllocDir.LogDir(), fmt.Sprintf("%v.stderr", ctx.TaskName),
|
2016-02-19 22:01:07 +00:00
|
|
|
ctx.LogConfig.MaxFiles, logFileSize, s.logger)
|
2016-02-10 20:09:07 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-02-11 22:44:35 +00:00
|
|
|
s.lre = lre
|
2016-02-10 02:24:30 +00:00
|
|
|
|
2016-02-23 00:10:23 +00:00
|
|
|
go s.collectLogs(lre, lro)
|
2016-03-10 07:25:31 +00:00
|
|
|
syslogAddr := fmt.Sprintf("%s://%s", l.Addr().Network(), l.Addr().String())
|
|
|
|
return &SyslogCollectorState{Addr: syslogAddr}, nil
|
2016-02-10 02:24:30 +00:00
|
|
|
}
|
|
|
|
|
2016-02-23 00:10:23 +00:00
|
|
|
func (s *SyslogCollector) collectLogs(we io.Writer, wo io.Writer) {
|
|
|
|
for logParts := range s.syslogChan {
|
|
|
|
// If the severity of the log line is err then we write to stderr
|
|
|
|
// otherwise all messages go to stdout
|
|
|
|
if logParts.Severity == syslog.LOG_ERR {
|
|
|
|
s.lre.Write(logParts.Message)
|
|
|
|
s.lre.Write([]byte{'\n'})
|
|
|
|
} else {
|
|
|
|
s.lro.Write(logParts.Message)
|
|
|
|
s.lro.Write([]byte{'\n'})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-10 16:13:08 +00:00
|
|
|
// Exit kills the syslog server
|
2016-02-10 02:24:30 +00:00
|
|
|
func (s *SyslogCollector) Exit() error {
|
2016-02-17 22:48:25 +00:00
|
|
|
s.server.Shutdown()
|
2016-02-23 17:43:14 +00:00
|
|
|
s.lre.Close()
|
|
|
|
s.lro.Close()
|
2016-02-17 22:48:25 +00:00
|
|
|
return nil
|
2016-02-10 02:24:30 +00:00
|
|
|
}
|
|
|
|
|
2016-02-10 16:13:08 +00:00
|
|
|
// UpdateLogConfig updates the log configuration
|
2016-02-10 02:24:30 +00:00
|
|
|
func (s *SyslogCollector) UpdateLogConfig(logConfig *structs.LogConfig) error {
|
2016-02-10 16:13:08 +00:00
|
|
|
s.ctx.LogConfig = logConfig
|
|
|
|
if s.lro == nil {
|
|
|
|
return fmt.Errorf("log rotator for stdout doesn't exist")
|
|
|
|
}
|
|
|
|
s.lro.MaxFiles = logConfig.MaxFiles
|
|
|
|
s.lro.FileSize = int64(logConfig.MaxFileSizeMB * 1024 * 1024)
|
|
|
|
|
|
|
|
if s.lre == nil {
|
|
|
|
return fmt.Errorf("log rotator for stderr doesn't exist")
|
|
|
|
}
|
|
|
|
s.lre.MaxFiles = logConfig.MaxFiles
|
|
|
|
s.lre.FileSize = int64(logConfig.MaxFileSizeMB * 1024 * 1024)
|
2016-02-10 02:24:30 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-02-11 00:13:13 +00:00
|
|
|
// configureTaskDir sets the task dir in the SyslogCollector
|
2016-02-10 02:24:30 +00:00
|
|
|
func (s *SyslogCollector) configureTaskDir() error {
|
|
|
|
taskDir, ok := s.ctx.AllocDir.TaskDirs[s.ctx.TaskName]
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("couldn't find task directory for task %v", s.ctx.TaskName)
|
|
|
|
}
|
|
|
|
s.taskDir = taskDir
|
|
|
|
return nil
|
|
|
|
}
|
2016-02-10 15:52:15 +00:00
|
|
|
|
|
|
|
// getFreePort returns a free port ready to be listened on between upper and
|
|
|
|
// lower bounds
|
2016-02-17 22:48:25 +00:00
|
|
|
func (s *SyslogCollector) getListener(lowerBound uint, upperBound uint) (net.Listener, error) {
|
2016-03-10 07:25:31 +00:00
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
return s.listenerTCP(lowerBound, upperBound)
|
|
|
|
}
|
|
|
|
|
|
|
|
return s.listenerUnix()
|
|
|
|
}
|
|
|
|
|
|
|
|
// listenerTCP creates a TCP listener using an unused port between an upper and
|
|
|
|
// lower bound
|
|
|
|
func (s *SyslogCollector) listenerTCP(lowerBound uint, upperBound uint) (net.Listener, error) {
|
2016-02-10 15:52:15 +00:00
|
|
|
for i := lowerBound; i <= upperBound; i++ {
|
|
|
|
addr, err := net.ResolveTCPAddr("tcp", fmt.Sprintf("localhost:%v", i))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
l, err := net.ListenTCP("tcp", addr)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
2016-02-17 22:48:25 +00:00
|
|
|
return l, nil
|
2016-02-10 15:52:15 +00:00
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("No free port found")
|
|
|
|
}
|
2016-03-10 07:25:31 +00:00
|
|
|
|
|
|
|
// listenerUnix creates a Unix domain socket
|
|
|
|
func (s *SyslogCollector) listenerUnix() (net.Listener, error) {
|
|
|
|
f, err := ioutil.TempFile("", "plugin")
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
path := f.Name()
|
|
|
|
|
|
|
|
if err := f.Close(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err := os.Remove(path); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return net.Listen("unix", path)
|
|
|
|
}
|