2021-01-03 10:33:21 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/tls"
|
|
|
|
"crypto/x509"
|
|
|
|
"fmt"
|
2021-02-19 16:53:34 +01:00
|
|
|
"net"
|
|
|
|
"net/textproto"
|
2021-02-19 10:53:07 +01:00
|
|
|
"os"
|
2021-01-03 10:33:21 +01:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"nocternity.net/monitoring/perfdata"
|
|
|
|
"nocternity.net/monitoring/plugin"
|
2021-02-19 10:53:07 +01:00
|
|
|
|
|
|
|
"github.com/karrick/golf"
|
2021-01-03 10:33:21 +01:00
|
|
|
)
|
|
|
|
|
2021-02-19 16:53:34 +01:00
|
|
|
//--------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Interface that can be implemented to fetch TLS certificates.
|
|
|
|
type certGetter interface {
|
|
|
|
getCertificate(tlsConfig *tls.Config, address string) (*x509.Certificate, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Full TLS certificate fetcher
|
|
|
|
type fullTLSGetter struct{}
|
|
|
|
|
|
|
|
func (f fullTLSGetter) getCertificate(tlsConfig *tls.Config, address string) (*x509.Certificate, error) {
|
|
|
|
conn, err := tls.Dial("tcp", address, tlsConfig)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer conn.Close()
|
|
|
|
if err := conn.Handshake(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return conn.ConnectionState().PeerCertificates[0], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SMTP STARTTLS getter
|
|
|
|
type smtpGetter struct{}
|
|
|
|
|
|
|
|
func (f smtpGetter) cmd(tcon *textproto.Conn, expectCode int, text string) (int, string, error) {
|
|
|
|
id, err := tcon.Cmd("%s", text)
|
|
|
|
if err != nil {
|
|
|
|
return 0, "", err
|
|
|
|
}
|
|
|
|
tcon.StartResponse(id)
|
|
|
|
defer tcon.EndResponse(id)
|
|
|
|
return tcon.ReadResponse(expectCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f smtpGetter) getCertificate(tlsConfig *tls.Config, address string) (*x509.Certificate, error) {
|
|
|
|
conn, err := net.Dial("tcp", address)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
text := textproto.NewConn(conn)
|
|
|
|
defer text.Close()
|
|
|
|
if _, _, err := text.ReadResponse(220); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if _, _, err := f.cmd(text, 250, "HELO localhost"); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if _, _, err := f.cmd(text, 220, "STARTTLS"); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
t := tls.Client(conn, tlsConfig)
|
|
|
|
if err := t.Handshake(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return t.ConnectionState().PeerCertificates[0], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Supported StartTLS protocols
|
|
|
|
var certGetters map[string]certGetter = map[string]certGetter{
|
|
|
|
"": fullTLSGetter{},
|
|
|
|
"smtp": &smtpGetter{},
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------------
|
|
|
|
|
2021-02-19 13:41:50 +01:00
|
|
|
// Command line flags that have been parsed.
|
2021-02-19 10:53:07 +01:00
|
|
|
type programFlags struct {
|
2021-02-19 13:41:50 +01:00
|
|
|
hostname string // Main host name to connect to
|
|
|
|
port int // TCP port to connect to
|
|
|
|
warn int // Threshold for warning state (days)
|
|
|
|
crit int // Threshold for critical state (days)
|
|
|
|
ignoreCnOnly bool // Do not warn about SAN-less certificates
|
|
|
|
extraNames []string // Extra names the certificate should include
|
2021-02-19 16:53:34 +01:00
|
|
|
startTLS string // Protocol to use before requesting a switch to TLS.
|
2021-02-19 10:53:07 +01:00
|
|
|
}
|
2021-02-19 10:38:18 +01:00
|
|
|
|
2021-02-19 13:41:50 +01:00
|
|
|
// Program data including configuration and runtime data.
|
2021-02-19 10:53:07 +01:00
|
|
|
type checkProgram struct {
|
2021-02-19 13:41:50 +01:00
|
|
|
programFlags // Flags from the command line
|
|
|
|
plugin *plugin.Plugin // Plugin output state
|
2021-02-19 16:53:34 +01:00
|
|
|
getter certGetter // Certificate getter
|
2021-02-19 13:41:50 +01:00
|
|
|
certificate *x509.Certificate // X.509 certificate from the server
|
2021-01-03 10:33:21 +01:00
|
|
|
}
|
|
|
|
|
2021-02-19 13:41:50 +01:00
|
|
|
// Parse command line arguments and store their values. If the -h flag is present,
|
|
|
|
// help will be displayed and the program will exit.
|
2021-02-19 10:53:07 +01:00
|
|
|
func (flags *programFlags) parseArguments() {
|
2021-02-19 13:21:06 +01:00
|
|
|
var (
|
|
|
|
names string
|
|
|
|
help bool
|
|
|
|
)
|
2021-02-19 10:53:07 +01:00
|
|
|
golf.BoolVarP(&help, 'h', "help", false, "Display usage information")
|
|
|
|
golf.StringVarP(&flags.hostname, 'H', "hostname", "", "Host name to connect to.")
|
|
|
|
golf.IntVarP(&flags.port, 'P', "port", -1, "Port to connect to.")
|
|
|
|
golf.IntVarP(&flags.warn, 'W', "warning", -1,
|
|
|
|
"Validity threshold below which a warning state is issued, in days.")
|
|
|
|
golf.IntVarP(&flags.crit, 'C', "critical", -1,
|
|
|
|
"Validity threshold below which a critical state is issued, in days.")
|
|
|
|
golf.BoolVar(&flags.ignoreCnOnly, "ignore-cn-only", false,
|
|
|
|
"Do not issue warnings regarding certificates that do not use SANs at all.")
|
2021-02-19 13:21:06 +01:00
|
|
|
golf.StringVarP(&names, 'a', "additional-names", "",
|
|
|
|
"A comma-separated list of names that the certificate should also provide.")
|
2021-02-19 16:53:34 +01:00
|
|
|
golf.StringVarP(&flags.startTLS, 's', "start-tls", "",
|
|
|
|
"Protocol to use before requesting a switch to TLS. Supported protocols: smtp.")
|
2021-02-19 10:53:07 +01:00
|
|
|
golf.Parse()
|
|
|
|
if help {
|
|
|
|
golf.Usage()
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
2021-02-19 13:21:06 +01:00
|
|
|
if names == "" {
|
|
|
|
flags.extraNames = make([]string, 0)
|
|
|
|
} else {
|
|
|
|
flags.extraNames = strings.Split(names, ",")
|
|
|
|
}
|
2021-02-19 10:53:07 +01:00
|
|
|
}
|
|
|
|
|
2021-02-19 13:41:50 +01:00
|
|
|
// Initialise the monitoring check program.
|
2021-02-19 10:53:07 +01:00
|
|
|
func newProgram() *checkProgram {
|
|
|
|
program := &checkProgram{
|
2021-02-19 10:38:18 +01:00
|
|
|
plugin: plugin.New("Certificate check"),
|
|
|
|
}
|
2021-02-19 10:53:07 +01:00
|
|
|
program.parseArguments()
|
|
|
|
return program
|
2021-01-03 10:33:21 +01:00
|
|
|
}
|
|
|
|
|
2021-02-19 13:41:50 +01:00
|
|
|
// Terminate the monitoring check program.
|
2021-02-19 10:38:18 +01:00
|
|
|
func (program *checkProgram) close() {
|
|
|
|
program.plugin.Done()
|
|
|
|
}
|
|
|
|
|
2021-02-19 13:41:50 +01:00
|
|
|
// Check the values that were specified from the command line. Returns true
|
|
|
|
// if the arguments made sense.
|
2021-02-19 10:38:18 +01:00
|
|
|
func (program *checkProgram) checkFlags() bool {
|
|
|
|
if program.hostname == "" {
|
|
|
|
program.plugin.SetState(plugin.UNKNOWN, "no hostname specified")
|
2021-01-03 10:33:21 +01:00
|
|
|
return false
|
|
|
|
}
|
2021-02-19 10:38:18 +01:00
|
|
|
if program.port < 1 || program.port > 65535 {
|
|
|
|
program.plugin.SetState(plugin.UNKNOWN, "invalid or missing port number")
|
2021-01-03 10:33:21 +01:00
|
|
|
return false
|
|
|
|
}
|
2021-02-19 10:38:18 +01:00
|
|
|
if program.warn != -1 && program.crit != -1 && program.warn <= program.crit {
|
|
|
|
program.plugin.SetState(plugin.UNKNOWN, "nonsensical thresholds")
|
2021-01-03 10:33:21 +01:00
|
|
|
return false
|
|
|
|
}
|
2021-02-19 16:53:34 +01:00
|
|
|
if _, ok := certGetters[program.startTLS]; !ok {
|
|
|
|
errstr := fmt.Sprintf("unsupported StartTLS protocol %s", program.startTLS)
|
|
|
|
program.plugin.SetState(plugin.UNKNOWN, errstr)
|
|
|
|
return false
|
|
|
|
}
|
2021-02-19 10:38:18 +01:00
|
|
|
program.hostname = strings.ToLower(program.hostname)
|
2021-01-03 10:33:21 +01:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2021-02-19 13:41:50 +01:00
|
|
|
// Connect to the remote host and obtain the certificate. Returns an error
|
|
|
|
// if connecting or performing the TLS handshake fail.
|
2021-02-19 10:38:18 +01:00
|
|
|
func (program *checkProgram) getCertificate() error {
|
|
|
|
tlsConfig := &tls.Config{
|
|
|
|
InsecureSkipVerify: true,
|
|
|
|
MinVersion: tls.VersionTLS10,
|
|
|
|
}
|
|
|
|
connString := fmt.Sprintf("%s:%d", program.hostname, program.port)
|
2021-02-19 16:53:34 +01:00
|
|
|
certificate, err := certGetters[program.startTLS].getCertificate(tlsConfig, connString)
|
|
|
|
program.certificate = certificate
|
|
|
|
return err
|
2021-02-19 10:38:18 +01:00
|
|
|
}
|
|
|
|
|
2021-02-19 16:53:34 +01:00
|
|
|
// Check that the CN of a certificate that doesn't contain a SAN actually
|
|
|
|
// matches the requested host name.
|
2021-02-19 13:21:06 +01:00
|
|
|
func (program *checkProgram) checkSANlessCertificate() bool {
|
|
|
|
if !program.ignoreCnOnly || len(program.extraNames) != 0 {
|
|
|
|
program.plugin.SetState(plugin.WARNING,
|
|
|
|
"certificate doesn't have SAN domain names")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
dn := strings.ToLower(program.certificate.Subject.String())
|
|
|
|
if !strings.HasPrefix(dn, fmt.Sprintf("cn=%s,", program.hostname)) {
|
|
|
|
program.plugin.SetState(plugin.CRITICAL, "incorrect certificate CN")
|
2021-02-19 10:38:18 +01:00
|
|
|
return false
|
2021-01-03 10:33:21 +01:00
|
|
|
}
|
2021-02-19 10:38:18 +01:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2021-02-19 13:41:50 +01:00
|
|
|
// Checks whether a name is listed in the certificate's DNS names. If the name
|
|
|
|
// cannot be found, a line will be added to the plugin output and false will
|
|
|
|
// be returned.
|
|
|
|
func (program *checkProgram) checkHostName(name string) bool {
|
|
|
|
for _, n := range program.certificate.DNSNames {
|
|
|
|
if strings.ToLower(n) == name {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program.plugin.AddLine(fmt.Sprintf("missing DNS name %s in certificate", name))
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure the certificate matches the specified names. Returns false if it
|
|
|
|
// doesn't.
|
2021-02-19 13:21:06 +01:00
|
|
|
func (program *checkProgram) checkNames() bool {
|
|
|
|
if len(program.certificate.DNSNames) == 0 {
|
|
|
|
return program.checkSANlessCertificate()
|
|
|
|
}
|
|
|
|
ok := program.checkHostName(program.hostname)
|
|
|
|
for _, name := range program.extraNames {
|
|
|
|
ok = program.checkHostName(name) && ok
|
|
|
|
}
|
|
|
|
if !ok {
|
|
|
|
program.plugin.SetState(plugin.CRITICAL, "names missing from SAN domain names")
|
|
|
|
}
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2021-02-19 13:41:50 +01:00
|
|
|
// Check a certificate's time to expiry agains the warning and critical
|
|
|
|
// thresholds, returning a status code and description based on these
|
|
|
|
// values.
|
2021-02-19 10:38:18 +01:00
|
|
|
func (program *checkProgram) checkCertificateExpiry(tlDays int) (plugin.Status, string) {
|
2021-02-19 15:58:40 +01:00
|
|
|
if tlDays <= 0 {
|
|
|
|
return plugin.CRITICAL, "certificate expired"
|
|
|
|
}
|
2021-02-19 10:38:18 +01:00
|
|
|
var limitStr string
|
|
|
|
var state plugin.Status
|
|
|
|
if program.crit > 0 && tlDays <= program.crit {
|
|
|
|
limitStr = fmt.Sprintf(" (<= %d)", program.crit)
|
|
|
|
state = plugin.CRITICAL
|
|
|
|
} else if program.warn > 0 && tlDays <= program.warn {
|
|
|
|
limitStr = fmt.Sprintf(" (<= %d)", program.warn)
|
|
|
|
state = plugin.WARNING
|
2021-01-03 10:33:21 +01:00
|
|
|
} else {
|
2021-02-19 10:38:18 +01:00
|
|
|
limitStr = ""
|
|
|
|
state = plugin.OK
|
2021-01-03 10:33:21 +01:00
|
|
|
}
|
2021-02-19 10:38:18 +01:00
|
|
|
statusString := fmt.Sprintf("certificate will expire in %d days%s",
|
|
|
|
tlDays, limitStr)
|
|
|
|
return state, statusString
|
|
|
|
}
|
2021-01-03 10:33:21 +01:00
|
|
|
|
2021-02-19 13:41:50 +01:00
|
|
|
// Set the plugin's performance data based on the time left before the
|
|
|
|
// certificate expires and the thresholds.
|
2021-02-19 10:38:18 +01:00
|
|
|
func (program *checkProgram) setPerfData(tlDays int) {
|
2021-01-07 20:55:10 +01:00
|
|
|
pdat := perfdata.New("validity", perfdata.UOM_NONE, fmt.Sprintf("%d", tlDays))
|
2021-02-19 10:38:18 +01:00
|
|
|
if program.crit > 0 {
|
|
|
|
pdat.SetCrit(perfdata.PDRMax(fmt.Sprint(program.crit)))
|
|
|
|
}
|
|
|
|
if program.warn > 0 {
|
|
|
|
pdat.SetWarn(perfdata.PDRMax(fmt.Sprint(program.warn)))
|
|
|
|
}
|
|
|
|
program.plugin.AddPerfData(pdat)
|
|
|
|
}
|
|
|
|
|
2021-02-19 13:41:50 +01:00
|
|
|
// Run the check: fetch the certificate, check its names then check its time
|
|
|
|
// to expiry and update the plugin's performance data.
|
2021-02-19 10:38:18 +01:00
|
|
|
func (program *checkProgram) runCheck() {
|
|
|
|
err := program.getCertificate()
|
|
|
|
if err != nil {
|
|
|
|
program.plugin.SetState(plugin.UNKNOWN, err.Error())
|
2021-02-19 13:21:06 +01:00
|
|
|
} else if program.checkNames() {
|
2021-02-19 10:38:18 +01:00
|
|
|
timeLeft := program.certificate.NotAfter.Sub(time.Now())
|
|
|
|
tlDays := int((timeLeft + 86399*time.Second) / (24 * time.Hour))
|
|
|
|
program.plugin.SetState(program.checkCertificateExpiry(tlDays))
|
|
|
|
program.setPerfData(tlDays)
|
2021-01-03 10:33:21 +01:00
|
|
|
}
|
2021-02-19 10:38:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
program := newProgram()
|
|
|
|
defer program.close()
|
|
|
|
if program.checkFlags() {
|
|
|
|
program.runCheck()
|
2021-01-03 10:33:21 +01:00
|
|
|
}
|
|
|
|
}
|