| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | // Package log implements basic but useful request (access) logging middleware.
 | 
					
						
							|  |  |  | package log
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"log"
 | 
					
						
							| 
									
										
										
										
											2016-04-09 16:17:53 +01:00
										 |  |  | 	"time"
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	"github.com/miekg/coredns/middleware"
 | 
					
						
							| 
									
										
										
										
											2016-04-09 16:17:53 +01:00
										 |  |  | 	"github.com/miekg/coredns/middleware/metrics"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	"github.com/miekg/dns"
 | 
					
						
							| 
									
										
										
										
											2016-04-09 16:17:53 +01:00
										 |  |  | 	"golang.org/x/net/context"
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Logger is a basic request logging middleware.
 | 
					
						
							|  |  |  | type Logger struct {
 | 
					
						
							|  |  |  | 	Next      middleware.Handler
 | 
					
						
							|  |  |  | 	Rules     []Rule
 | 
					
						
							|  |  |  | 	ErrorFunc func(dns.ResponseWriter, *dns.Msg, int) // failover error handler
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (l Logger) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) {
 | 
					
						
							| 
									
										
										
										
											2016-03-19 11:16:08 +00:00
										 |  |  | 	state := middleware.State{W: w, Req: r}
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	for _, rule := range l.Rules {
 | 
					
						
							| 
									
										
										
										
											2016-03-19 11:16:08 +00:00
										 |  |  | 		if middleware.Name(state.Name()).Matches(rule.NameScope) {
 | 
					
						
							|  |  |  | 			responseRecorder := middleware.NewResponseRecorder(w)
 | 
					
						
							|  |  |  | 			rcode, err := l.Next.ServeDNS(ctx, responseRecorder, r)
 | 
					
						
							| 
									
										
										
										
											2016-04-04 15:45:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-19 11:16:08 +00:00
										 |  |  | 			if rcode > 0 {
 | 
					
						
							|  |  |  | 				// There was an error up the chain, but no response has been written yet.
 | 
					
						
							|  |  |  | 				// The error must be handled here so the log entry will record the response size.
 | 
					
						
							|  |  |  | 				if l.ErrorFunc != nil {
 | 
					
						
							|  |  |  | 					l.ErrorFunc(responseRecorder, r, rcode)
 | 
					
						
							|  |  |  | 				} else {
 | 
					
						
							| 
									
										
										
										
											2016-04-09 16:17:53 +01:00
										 |  |  | 					rc := middleware.RcodeToString(rcode)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-19 11:16:08 +00:00
										 |  |  | 					answer := new(dns.Msg)
 | 
					
						
							|  |  |  | 					answer.SetRcode(r, rcode)
 | 
					
						
							| 
									
										
										
										
											2016-04-09 16:17:53 +01:00
										 |  |  | 					state.SizeAndDo(answer)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-09 17:42:31 +01:00
										 |  |  | 					metrics.Report(metrics.Dropped, state.Proto(), rc, answer.Len(), time.Now())
 | 
					
						
							| 
									
										
										
										
											2016-03-19 11:16:08 +00:00
										 |  |  | 					w.WriteMsg(answer)
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 				}
 | 
					
						
							| 
									
										
										
										
											2016-03-19 11:16:08 +00:00
										 |  |  | 				rcode = 0
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 			}
 | 
					
						
							| 
									
										
										
										
											2016-03-19 11:16:08 +00:00
										 |  |  | 			rep := middleware.NewReplacer(r, responseRecorder, CommonLogEmptyValue)
 | 
					
						
							|  |  |  | 			rule.Log.Println(rep.Replace(rule.Format))
 | 
					
						
							|  |  |  | 			return rcode, err
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | 	return l.Next.ServeDNS(ctx, w, r)
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Rule configures the logging middleware.
 | 
					
						
							|  |  |  | type Rule struct {
 | 
					
						
							| 
									
										
										
										
											2016-03-19 11:16:08 +00:00
										 |  |  | 	NameScope  string
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	OutputFile string
 | 
					
						
							|  |  |  | 	Format     string
 | 
					
						
							|  |  |  | 	Log        *log.Logger
 | 
					
						
							|  |  |  | 	Roller     *middleware.LogRoller
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const (
 | 
					
						
							|  |  |  | 	// DefaultLogFilename is the default log filename.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 11:16:08 +00:00
										 |  |  | 	DefaultLogFilename = "query.log"
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	// CommonLogFormat is the common log format.
 | 
					
						
							| 
									
										
										
										
											2016-04-04 15:45:17 +01:00
										 |  |  | 	CommonLogFormat = `{remote} ` + CommonLogEmptyValue + ` [{when}] "{type} {class} {name} {proto} {>do} {>bufsize}" {rcode} {size} {duration}`
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	// CommonLogEmptyValue is the common empty log value.
 | 
					
						
							|  |  |  | 	CommonLogEmptyValue = "-"
 | 
					
						
							|  |  |  | 	// CombinedLogFormat is the combined log format.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 11:16:08 +00:00
										 |  |  | 	CombinedLogFormat = CommonLogFormat + ` "{>opcode}"`
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	// DefaultLogFormat is the default log format.
 | 
					
						
							|  |  |  | 	DefaultLogFormat = CommonLogFormat
 | 
					
						
							|  |  |  | )
 |