File size: 4,930 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
package smtpsrv
import (
"context"
"fmt"
"io"
"net/mail"
"strings"
"time"
"github.com/emersion/go-smtp"
"github.com/mnako/letters"
"github.com/target/goalert/alert"
"github.com/target/goalert/permission"
"github.com/target/goalert/retry"
"github.com/target/goalert/util/log"
"github.com/target/goalert/validation/validate"
)
// Session implements an SMTP session that creates alerts.
type Session struct {
cfg Config
from string
dedup string
authCtx []context.Context
}
func (s *Session) isValidDomain(d string) bool {
if strings.EqualFold(d, s.cfg.Domain) {
return true
}
for _, v := range s.cfg.AllowedDomains {
if strings.EqualFold(v, d) {
return true
}
}
return false
}
// AuthPlain is called when a client attempts to authenticate using the PLAIN
// auth mechanism. It always returns an error, indicating that PLAIN auth is
// not supported.
func (s *Session) AuthPlain(username, password string) error { return smtp.ErrAuthUnsupported }
// Mail is called when a new SMTP message is received (MAIL FROM). It checks
// that the sender is valid and stores it in the session.
func (s *Session) Mail(from string, opts *smtp.MailOptions) error {
addr, err := mail.ParseAddress(from)
if err != nil {
return &smtp.SMTPError{
Code: 501,
EnhancedCode: smtp.EnhancedCode{5, 5, 2},
Message: "Syntax error in sender address",
}
}
s.from = addr.String()
return nil
}
// Rcpt is called when a new SMTP message is received (RCPT TO). It checks
// that the recipient is valid and stores it in the session.
//
// It also checks that the recipient is authorized to create alerts.
func (s *Session) Rcpt(recipient string, opts *smtp.RcptOptions) error {
addr, err := mail.ParseAddress(recipient)
if err != nil {
return &smtp.SMTPError{
Code: 501,
EnhancedCode: smtp.EnhancedCode{5, 5, 2},
Message: "Syntax error in recipient address",
}
}
id, domain, ok := strings.Cut(addr.Address, "@")
if !ok {
return &smtp.SMTPError{
Code: 501,
EnhancedCode: smtp.EnhancedCode{5, 5, 2},
Message: "Syntax error in recipient address",
}
}
if !s.isValidDomain(domain) {
return &smtp.SMTPError{
Code: 550,
EnhancedCode: smtp.EnhancedCode{5, 7, 1},
Message: "Recipient domain not handled here",
}
}
id, s.dedup, _ = strings.Cut(id, "+")
err = validate.UUID("recipient", id)
if err != nil {
return &smtp.SMTPError{
Code: 501,
EnhancedCode: smtp.EnhancedCode{5, 5, 2},
Message: "Syntax error in recipient address",
}
}
if len(s.authCtx) >= s.cfg.MaxRecipients {
return &smtp.SMTPError{
Code: 452,
EnhancedCode: smtp.EnhancedCode{4, 5, 3},
Message: "Too many recipients",
}
}
ctx, err := s.cfg.AuthorizeFunc(s.cfg.BackgroundContext(), id)
if err != nil {
if permission.IsUnauthorized(err) {
return &smtp.SMTPError{
Code: 550,
EnhancedCode: smtp.EnhancedCode{5, 1, 1},
Message: "Invalid API key",
}
}
log.Log(ctx, err) // log unexpected error
return &smtp.SMTPError{
Code: 451,
EnhancedCode: smtp.EnhancedCode{4, 3, 0},
Message: "Temporary local error, please try again",
}
}
s.authCtx = append(s.authCtx, ctx)
return nil
}
// Data is called when a new SMTP message is received.
func (s *Session) Data(r io.Reader) error {
if len(s.authCtx) == 0 {
return &smtp.SMTPError{
Code: 503,
EnhancedCode: smtp.EnhancedCode{5, 5, 1},
Message: "Need RCPT TO command before DATA",
}
}
email, err := letters.ParseEmail(r)
if err != nil {
return &smtp.SMTPError{
Code: 554,
EnhancedCode: smtp.EnhancedCode{5, 6, 0},
Message: "Malformed email message",
}
}
body := email.Text
summary := validate.SanitizeText(email.Headers.Subject, alert.MaxSummaryLength)
details := fmt.Sprintf("From: %s\n\n%s", s.from, body)
details = validate.SanitizeText(details, alert.MaxDetailsLength)
var dedup *alert.DedupID
if s.dedup != "" {
dedup = alert.NewUserDedup(s.dedup)
}
for _, authCtx := range s.authCtx {
newAlert := &alert.Alert{
Summary: summary,
Details: details,
ServiceID: permission.ServiceID(authCtx),
Status: alert.StatusTriggered,
Source: alert.SourceEmail,
Dedup: dedup,
}
err = retry.DoTemporaryError(func(_ int) error {
return s.cfg.CreateAlertFunc(authCtx, newAlert)
},
retry.Log(authCtx),
retry.Limit(12),
retry.FibBackoff(time.Second),
)
if err != nil {
return &smtp.SMTPError{
Code: 451,
EnhancedCode: smtp.EnhancedCode{4, 3, 0},
Message: "Temporary local error, please try again",
}
}
}
return nil
}
// Reset resets the session state.
func (s *Session) Reset() {
s.dedup = ""
s.from = ""
s.authCtx = nil
}
// Logout is called when the client requests to log out.
func (s *Session) Logout() error { return nil }
|