123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470 |
- package backends
- import (
- "bytes"
- "compress/zlib"
- "database/sql"
- "fmt"
- "io"
- "math/rand"
- "runtime/debug"
- "strings"
- "sync"
- "time"
- "github.com/flashmob/go-guerrilla/mail"
- "github.com/garyburd/redigo/redis"
- )
- // ----------------------------------------------------------------------------------
- // Processor Name: GuerrillaRedisDB
- // ----------------------------------------------------------------------------------
- // Description : Saves the body to redis, meta data to SQL. Example only.
- // : Limitation: it doesn't save multiple recipients or validate them
- // ----------------------------------------------------------------------------------
- // Config Options: ...
- // --------------:-------------------------------------------------------------------
- // Input : envelope
- // ----------------------------------------------------------------------------------
- // Output :
- // ----------------------------------------------------------------------------------
- func init() {
- processors["guerrillaredisdb"] = func() Decorator {
- return GuerrillaDbRedis()
- }
- }
- var queryBatcherId = 0
- // how many rows to batch at a time
- const GuerrillaDBAndRedisBatchMax = 50
- // tick on every...
- const GuerrillaDBAndRedisBatchTimeout = time.Second * 3
- type GuerrillaDBAndRedisBackend struct {
- config *guerrillaDBAndRedisConfig
- batcherWg sync.WaitGroup
- // cache prepared queries
- cache stmtCache
- batcherStoppers []chan bool
- }
- // statement cache. It's an array, not slice
- type stmtCache [GuerrillaDBAndRedisBatchMax]*sql.Stmt
- type guerrillaDBAndRedisConfig struct {
- NumberOfWorkers int `json:"save_workers_size"`
- Table string `json:"mail_table"`
- Driver string `json:"sql_driver"`
- DSN string `json:"sql_dsn"`
- RedisExpireSeconds int `json:"redis_expire_seconds"`
- RedisInterface string `json:"redis_interface"`
- PrimaryHost string `json:"primary_mail_host"`
- BatchTimeout int `json:"redis_sql_batch_timeout,omitempty"`
- }
- // Load the backend config for the backend. It has already been unmarshalled
- // from the main config file 'backend' config "backend_config"
- // Now we need to convert each type and copy into the guerrillaDBAndRedisConfig struct
- func (g *GuerrillaDBAndRedisBackend) loadConfig(backendConfig BackendConfig) (err error) {
- configType := BaseConfig(&guerrillaDBAndRedisConfig{})
- bcfg, err := Svc.ExtractConfig(backendConfig, configType)
- if err != nil {
- return err
- }
- m := bcfg.(*guerrillaDBAndRedisConfig)
- g.config = m
- return nil
- }
- func (g *GuerrillaDBAndRedisBackend) getNumberOfWorkers() int {
- return g.config.NumberOfWorkers
- }
- type redisClient struct {
- isConnected bool
- conn redis.Conn
- time int
- }
- // compressedData struct will be compressed using zlib when printed via fmt
- type compressedData struct {
- extraHeaders []byte
- data *bytes.Buffer
- pool *sync.Pool
- }
- // newCompressedData returns a new CompressedData
- func newCompressedData() *compressedData {
- var p = sync.Pool{
- New: func() interface{} {
- var b bytes.Buffer
- return &b
- },
- }
- return &compressedData{
- pool: &p,
- }
- }
- // Set the extraheaders and buffer of data to compress
- func (c *compressedData) set(b []byte, d *bytes.Buffer) {
- c.extraHeaders = b
- c.data = d
- }
- // implement Stringer interface
- func (c *compressedData) String() string {
- if c.data == nil {
- return ""
- }
- //borrow a buffer form the pool
- b := c.pool.Get().(*bytes.Buffer)
- // put back in the pool
- defer func() {
- b.Reset()
- c.pool.Put(b)
- }()
- var r *bytes.Reader
- w, _ := zlib.NewWriterLevel(b, zlib.BestSpeed)
- r = bytes.NewReader(c.extraHeaders)
- io.Copy(w, r)
- io.Copy(w, c.data)
- w.Close()
- return b.String()
- }
- // clear it, without clearing the pool
- func (c *compressedData) clear() {
- c.extraHeaders = []byte{}
- c.data = nil
- }
- // prepares the sql query with the number of rows that can be batched with it
- func (g *GuerrillaDBAndRedisBackend) prepareInsertQuery(rows int, db *sql.DB) *sql.Stmt {
- if rows == 0 {
- panic("rows argument cannot be 0")
- }
- if g.cache[rows-1] != nil {
- return g.cache[rows-1]
- }
- sqlstr := "INSERT INTO " + g.config.Table + " "
- sqlstr += "(`date`, `to`, `from`, `subject`, `body`, `charset`, `mail`, `spam_score`, `hash`, `content_type`, `recipient`, `has_attach`, `ip_addr`, `return_path`, `is_tls`)"
- sqlstr += " values "
- values := "(NOW(), ?, ?, ?, ? , 'UTF-8' , ?, 0, ?, '', ?, 0, ?, ?, ?)"
- // add more rows
- comma := ""
- for i := 0; i < rows; i++ {
- sqlstr += comma + values
- if comma == "" {
- comma = ","
- }
- }
- stmt, sqlErr := db.Prepare(sqlstr)
- if sqlErr != nil {
- Log().WithError(sqlErr).Fatalf("failed while db.Prepare(INSERT...)")
- }
- // cache it
- g.cache[rows-1] = stmt
- return stmt
- }
- func (g *GuerrillaDBAndRedisBackend) doQuery(c int, db *sql.DB, insertStmt *sql.Stmt, vals *[]interface{}) error {
- var execErr error
- defer func() {
- if r := recover(); r != nil {
- //logln(1, fmt.Sprintf("Recovered in %v", r))
- Log().Error("Recovered form panic:", r, string(debug.Stack()))
- sum := 0
- for _, v := range *vals {
- if str, ok := v.(string); ok {
- sum = sum + len(str)
- }
- }
- Log().Errorf("panic while inserting query [%s] size:%d, err %v", r, sum, execErr)
- panic("query failed")
- }
- }()
- // prepare the query used to insert when rows reaches batchMax
- insertStmt = g.prepareInsertQuery(c, db)
- _, execErr = insertStmt.Exec(*vals...)
- //if rand.Intn(2) == 1 {
- // return errors.New("uggabooka")
- //}
- if execErr != nil {
- Log().WithError(execErr).Error("There was a problem the insert")
- }
- return execErr
- }
- // Batches the rows from the feeder chan in to a single INSERT statement.
- // Execute the batches query when:
- // - number of batched rows reaches a threshold, i.e. count n = threshold
- // - or, no new rows within a certain time, i.e. times out
- // The goroutine can either exit if there's a panic or feeder channel closes
- // it returns feederOk which signals if the feeder chanel was ok (still open) while returning
- // if it feederOk is false, then it means the feeder chanel is closed
- func (g *GuerrillaDBAndRedisBackend) insertQueryBatcher(
- feeder feedChan,
- db *sql.DB,
- batcherId int,
- stop chan bool) (feederOk bool) {
- // controls shutdown
- defer g.batcherWg.Done()
- g.batcherWg.Add(1)
- // vals is where values are batched to
- var vals []interface{}
- // how many rows were batched
- count := 0
- // The timer will tick x seconds.
- // Interrupting the select clause when there's no data on the feeder channel
- timeo := GuerrillaDBAndRedisBatchTimeout
- if g.config.BatchTimeout > 0 {
- timeo = time.Duration(g.config.BatchTimeout)
- }
- t := time.NewTimer(timeo)
- // prepare the query used to insert when rows reaches batchMax
- insertStmt := g.prepareInsertQuery(GuerrillaDBAndRedisBatchMax, db)
- // inserts executes a batched insert query, clears the vals and resets the count
- inserter := func(c int) {
- if c > 0 {
- err := g.doQuery(c, db, insertStmt, &vals)
- if err != nil {
- // maybe connection prob?
- // retry the sql query
- attempts := 3
- for i := 0; i < attempts; i++ {
- Log().Infof("retrying query query rows[%c] ", c)
- time.Sleep(time.Second)
- err = g.doQuery(c, db, insertStmt, &vals)
- if err == nil {
- continue
- }
- }
- }
- }
- vals = nil
- count = 0
- }
- rand.Seed(time.Now().UnixNano())
- defer func() {
- if r := recover(); r != nil {
- Log().Error("insertQueryBatcher caught a panic", r, string(debug.Stack()))
- }
- }()
- // Keep getting values from feeder and add to batch.
- // if feeder times out, execute the batched query
- // otherwise, execute the batched query once it reaches the GuerrillaDBAndRedisBatchMax threshold
- feederOk = true
- for {
- select {
- // it may panic when reading on a closed feeder channel. feederOK detects if it was closed
- case <-stop:
- Log().Infof("MySQL query batcher stopped (#%d)", batcherId)
- // Insert any remaining rows
- inserter(count)
- feederOk = false
- close(feeder)
- return
- case row := <-feeder:
- vals = append(vals, row...)
- count++
- Log().Debug("new feeder row:", row, " cols:", len(row), " count:", count, " worker", batcherId)
- if count >= GuerrillaDBAndRedisBatchMax {
- inserter(GuerrillaDBAndRedisBatchMax)
- }
- // stop timer from firing (reset the interrupt)
- if !t.Stop() {
- // darin the timer
- <-t.C
- }
- t.Reset(timeo)
- case <-t.C:
- // anything to insert?
- if n := len(vals); n > 0 {
- inserter(count)
- }
- t.Reset(timeo)
- }
- }
- }
- func trimToLimit(str string, limit int) string {
- ret := strings.TrimSpace(str)
- if len(str) > limit {
- ret = str[:limit]
- }
- return ret
- }
- func (g *GuerrillaDBAndRedisBackend) sqlConnect() (*sql.DB, error) {
- tOut := GuerrillaDBAndRedisBatchTimeout
- if g.config.BatchTimeout > 0 {
- tOut = time.Duration(g.config.BatchTimeout)
- }
- tOut += 10
- // don't go to 30 sec or more
- if tOut >= 30 {
- tOut = 29
- }
- if db, err := sql.Open(g.config.Driver, g.config.DSN); err != nil {
- Log().Error("cannot open database", err, "]")
- return nil, err
- } else {
- // do we have access?
- _, err = db.Query("SELECT mail_id FROM " + g.config.Table + " LIMIT 1")
- if err != nil {
- Log().Error("cannot select table:", err)
- return nil, err
- }
- return db, nil
- }
- }
- func (c *redisClient) redisConnection(redisInterface string) (err error) {
- if c.isConnected == false {
- c.conn, err = redis.Dial("tcp", redisInterface)
- if err != nil {
- // handle error
- return err
- }
- c.isConnected = true
- }
- return nil
- }
- type feedChan chan []interface{}
- // GuerrillaDbRedis is a specialized processor for Guerrilla mail. It is here as an example.
- // It's an example of a 'monolithic' processor.
- func GuerrillaDbRedis() Decorator {
- g := GuerrillaDBAndRedisBackend{}
- redisClient := &redisClient{}
- var db *sql.DB
- var to, body string
- var redisErr error
- var feeders []feedChan
- g.batcherStoppers = make([]chan bool, 0)
- Svc.AddInitializer(InitializeWith(func(backendConfig BackendConfig) error {
- configType := BaseConfig(&guerrillaDBAndRedisConfig{})
- bcfg, err := Svc.ExtractConfig(backendConfig, configType)
- if err != nil {
- return err
- }
- g.config = bcfg.(*guerrillaDBAndRedisConfig)
- db, err = g.sqlConnect()
- if err != nil {
- return err
- }
- queryBatcherId++
- // start the query SQL batching where we will send data via the feeder channel
- stop := make(chan bool)
- feeder := make(feedChan, 1)
- go func(qbID int, stop chan bool) {
- // we loop so that if insertQueryBatcher panics, it can recover and go in again
- for {
- if feederOK := g.insertQueryBatcher(feeder, db, qbID, stop); !feederOK {
- Log().Debugf("insertQueryBatcher exited (#%d)", qbID)
- return
- }
- Log().Debug("resuming insertQueryBatcher")
- }
- }(queryBatcherId, stop)
- g.batcherStoppers = append(g.batcherStoppers, stop)
- feeders = append(feeders, feeder)
- return nil
- }))
- Svc.AddShutdowner(ShutdownWith(func() error {
- db.Close()
- Log().Infof("closed sql")
- if redisClient.conn != nil {
- Log().Infof("closed redis")
- redisClient.conn.Close()
- }
- // send a close signal to all query batchers to exit.
- for i := range g.batcherStoppers {
- g.batcherStoppers[i] <- true
- }
- g.batcherWg.Wait()
- return nil
- }))
- var vals []interface{}
- data := newCompressedData()
- return func(p Processor) Processor {
- return ProcessWith(func(e *mail.Envelope, task SelectTask) (Result, error) {
- if task == TaskSaveMail {
- Log().Debug("Got mail from chan,", e.RemoteIP)
- to = trimToLimit(strings.TrimSpace(e.RcptTo[0].User)+"@"+g.config.PrimaryHost, 255)
- e.Helo = trimToLimit(e.Helo, 255)
- e.RcptTo[0].Host = trimToLimit(e.RcptTo[0].Host, 255)
- ts := fmt.Sprintf("%d", time.Now().UnixNano())
- e.ParseHeaders()
- hash := MD5Hex(
- to,
- e.MailFrom.String(),
- e.Subject,
- ts)
- // Add extra headers
- var addHead string
- addHead += "Delivered-To: " + to + "\r\n"
- addHead += "Received: from " + e.Helo + " (" + e.Helo + " [" + e.RemoteIP + "])\r\n"
- addHead += " by " + e.RcptTo[0].Host + " with SMTP id " + hash + "@" + e.RcptTo[0].Host + ";\r\n"
- addHead += " " + time.Now().Format(time.RFC1123Z) + "\r\n"
- // data will be compressed when printed, with addHead added to beginning
- data.set([]byte(addHead), &e.Data)
- body = "gzencode"
- // data will be written to redis - it implements the Stringer interface, redigo uses fmt to
- // print the data to redis.
- redisErr = redisClient.redisConnection(g.config.RedisInterface)
- if redisErr == nil {
- _, doErr := redisClient.conn.Do("SETEX", hash, g.config.RedisExpireSeconds, data)
- if doErr == nil {
- body = "redis" // the backend system will know to look in redis for the message data
- data.clear() // blank
- }
- } else {
- Log().WithError(redisErr).Warn("Error while connecting redis")
- }
- vals = []interface{}{} // clear the vals
- vals = append(vals,
- trimToLimit(to, 255),
- trimToLimit(e.MailFrom.String(), 255),
- trimToLimit(e.Subject, 255),
- body,
- data.String(),
- hash,
- trimToLimit(to, 255),
- e.RemoteIP,
- trimToLimit(e.MailFrom.String(), 255),
- e.TLS)
- // give the values to a random query batcher
- feeders[rand.Intn(len(feeders))] <- vals
- return p.Process(e, task)
- } else {
- return p.Process(e, task)
- }
- })
- }
- }
|