-
-
Notifications
You must be signed in to change notification settings - Fork 635
Expand file tree
/
Copy pathlog.go
More file actions
387 lines (330 loc) · 10.2 KB
/
log.go
File metadata and controls
387 lines (330 loc) · 10.2 KB
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
package log
import (
"encoding/base64"
"encoding/binary"
"encoding/json"
"errors"
"fmt"
"hash/crc32"
"io"
"log/syslog"
"os"
"path"
"runtime"
"strings"
"sync"
"github.com/jmhodges/clock"
"golang.org/x/term"
)
// A Logger logs messages with explicit priority levels. It is
// implemented by a logging back-end as provided by New() or
// NewMock(). Any additions to this interface with format strings should be
// added to the govet configuration in .golangci.yml
type Logger interface {
Err(msg string)
Errf(format string, a ...interface{})
Warning(msg string)
Warningf(format string, a ...interface{})
Info(msg string)
Infof(format string, a ...interface{})
InfoObject(string, interface{})
Debug(msg string)
Debugf(format string, a ...interface{})
AuditPanic()
AuditInfo(msg string)
AuditInfof(format string, a ...interface{})
AuditObject(string, interface{})
AuditErr(string)
AuditErrf(format string, a ...interface{})
}
// impl implements Logger.
type impl struct {
w writer
}
// singleton defines the object of a Singleton pattern
type singleton struct {
once sync.Once
log Logger
}
// _Singleton is the single impl entity in memory
var _Singleton singleton
// The constant used to identify audit-specific messages
const auditTag = "[AUDIT]"
// New returns a new Logger that uses the given syslog.Writer as a backend
// and also writes to stdout/stderr. It is safe for concurrent use.
func New(log *syslog.Writer, stdoutLogLevel int, syslogLogLevel int) (Logger, error) {
if log == nil {
return nil, errors.New("Attempted to use a nil System Logger")
}
return &impl{
&bothWriter{
sync.Mutex{},
log,
newStdoutWriter(stdoutLogLevel),
syslogLogLevel,
},
}, nil
}
// StdoutLogger returns a Logger that writes solely to stdout and stderr.
// It is safe for concurrent use.
func StdoutLogger(level int) Logger {
return &impl{newStdoutWriter(level)}
}
func newStdoutWriter(level int) *stdoutWriter {
shortHostname := "unknown"
datacenter := "unknown"
hostname, err := os.Hostname()
if err == nil {
splits := strings.SplitN(hostname, ".", 3)
shortHostname = splits[0]
if len(splits) > 1 {
datacenter = splits[1]
}
}
prefix := fmt.Sprintf("%s %s %s[%d]:", shortHostname, datacenter, path.Base(os.Args[0]), os.Getpid())
return &stdoutWriter{
prefix: prefix,
level: level,
clk: clock.New(),
stdout: os.Stdout,
stderr: os.Stderr,
isatty: term.IsTerminal(int(os.Stdout.Fd())),
}
}
// initialize is used in unit tests and called by `Get` before the logger
// is fully set up.
func initialize() {
const defaultPriority = syslog.LOG_INFO | syslog.LOG_LOCAL0
syslogger, err := syslog.Dial("", "", defaultPriority, "test")
if err != nil {
panic(err)
}
logger, err := New(syslogger, int(syslog.LOG_DEBUG), int(syslog.LOG_DEBUG))
if err != nil {
panic(err)
}
_ = Set(logger)
}
// Set configures the singleton Logger. This method
// must only be called once, and before calling Get the
// first time.
func Set(logger Logger) (err error) {
if _Singleton.log != nil {
err = errors.New("You may not call Set after it has already been implicitly or explicitly set")
_Singleton.log.Warning(err.Error())
} else {
_Singleton.log = logger
}
return
}
// Get obtains the singleton Logger. If Set has not been called first, this
// method initializes with basic defaults. The basic defaults cannot error, and
// subsequent access to an already-set Logger also cannot error, so this method is
// error-safe.
func Get() Logger {
_Singleton.once.Do(func() {
if _Singleton.log == nil {
initialize()
}
})
return _Singleton.log
}
type writer interface {
logAtLevel(syslog.Priority, string, ...interface{})
}
// bothWriter implements writer and writes to both syslog and stdout.
type bothWriter struct {
sync.Mutex
*syslog.Writer
*stdoutWriter
syslogLevel int
}
// stdoutWriter implements writer and writes just to stdout.
type stdoutWriter struct {
// prefix is a set of information that is the same for every log line,
// imitating what syslog emits for us when we use the syslog writer.
prefix string
level int
clk clock.Clock
stdout io.Writer
stderr io.Writer
isatty bool
}
func LogLineChecksum(line string) string {
crc := crc32.ChecksumIEEE([]byte(line))
// Using the hash.Hash32 doesn't make this any easier
// as it also returns a uint32 rather than []byte
buf := make([]byte, binary.MaxVarintLen32)
binary.PutUvarint(buf, uint64(crc))
return base64.RawURLEncoding.EncodeToString(buf)
}
func checkSummed(msg string) string {
return fmt.Sprintf("%s %s", LogLineChecksum(msg), msg)
}
// logAtLevel logs the provided message at the appropriate level, writing to
// both stdout and the Logger
func (w *bothWriter) logAtLevel(level syslog.Priority, msg string, a ...interface{}) {
var err error
// Apply conditional formatting for f functions
if a != nil {
msg = fmt.Sprintf(msg, a...)
}
// Since messages are delimited by newlines, we have to escape any internal or
// trailing newlines before generating the checksum or outputting the message.
msg = strings.Replace(msg, "\n", "\\n", -1)
w.Lock()
defer w.Unlock()
switch syslogAllowed := int(level) <= w.syslogLevel; level {
case syslog.LOG_ERR:
if syslogAllowed {
err = w.Err(checkSummed(msg))
}
case syslog.LOG_WARNING:
if syslogAllowed {
err = w.Warning(checkSummed(msg))
}
case syslog.LOG_INFO:
if syslogAllowed {
err = w.Info(checkSummed(msg))
}
case syslog.LOG_DEBUG:
if syslogAllowed {
err = w.Debug(checkSummed(msg))
}
default:
err = w.Err(fmt.Sprintf("%s (unknown logging level: %d)", checkSummed(msg), int(level)))
}
if err != nil {
fmt.Fprintf(os.Stderr, "Failed to write to syslog: %d %s (%s)\n", int(level), checkSummed(msg), err)
}
w.stdoutWriter.logAtLevel(level, msg)
}
// logAtLevel logs the provided message to stdout, or stderr if it is at Warning or Error level.
func (w *stdoutWriter) logAtLevel(level syslog.Priority, msg string, a ...interface{}) {
if int(level) <= w.level {
output := w.stdout
if int(level) <= int(syslog.LOG_WARNING) {
output = w.stderr
}
// Apply conditional formatting for f functions
if a != nil {
msg = fmt.Sprintf(msg, a...)
}
msg = strings.Replace(msg, "\n", "\\n", -1)
var color string
var reset string
const red = "\033[31m\033[1m"
const yellow = "\033[33m"
const gray = "\033[37m\033[2m"
if w.isatty {
if int(level) == int(syslog.LOG_DEBUG) {
color = gray
reset = "\033[0m"
} else if int(level) == int(syslog.LOG_WARNING) {
color = yellow
reset = "\033[0m"
} else if int(level) <= int(syslog.LOG_ERR) {
color = red
reset = "\033[0m"
}
}
if _, err := fmt.Fprintf(output, "%s%s %s %d %s %s%s\n",
color,
w.clk.Now().UTC().Format("2006-01-02T15:04:05.000000+00:00Z"),
w.prefix,
int(level),
path.Base(os.Args[0]),
checkSummed(msg),
reset); err != nil {
panic(fmt.Sprintf("failed to write to stdout: %v\n", err))
}
}
}
func (log *impl) auditAtLevel(level syslog.Priority, msg string, a ...interface{}) {
msg = fmt.Sprintf("%s %s", auditTag, msg)
log.w.logAtLevel(level, msg, a...)
}
// AuditPanic catches panicking executables. This method should be added
// in a defer statement as early as possible
func (log *impl) AuditPanic() {
err := recover()
if err != nil {
buf := make([]byte, 8192)
log.AuditErrf("Panic caused by err: %s", err)
runtime.Stack(buf, false)
log.AuditErrf("Stack Trace (Current frame) %s", buf)
runtime.Stack(buf, true)
log.Warningf("Stack Trace (All frames): %s", buf)
}
}
// Err level messages are always marked with the audit tag, for special handling
// at the upstream system logger.
func (log *impl) Err(msg string) {
log.Errf(msg)
}
// Errf level messages are always marked with the audit tag, for special handling
// at the upstream system logger.
func (log *impl) Errf(format string, a ...interface{}) {
log.auditAtLevel(syslog.LOG_ERR, format, a...)
}
// Warning level messages pass through normally.
func (log *impl) Warning(msg string) {
log.Warningf(msg)
}
// Warningf level messages pass through normally.
func (log *impl) Warningf(format string, a ...interface{}) {
log.w.logAtLevel(syslog.LOG_WARNING, format, a...)
}
// Info level messages pass through normally.
func (log *impl) Info(msg string) {
log.Infof(msg)
}
// Infof level messages pass through normally.
func (log *impl) Infof(format string, a ...interface{}) {
log.w.logAtLevel(syslog.LOG_INFO, format, a...)
}
// InfoObject logs an INFO level JSON-serialized object message.
func (log *impl) InfoObject(msg string, obj interface{}) {
jsonObj, err := json.Marshal(obj)
if err != nil {
log.auditAtLevel(syslog.LOG_ERR, fmt.Sprintf("Object for msg %q could not be serialized to JSON. Raw: %+v", msg, obj))
return
}
log.Infof("%s JSON=%s", msg, jsonObj)
}
// Debug level messages pass through normally.
func (log *impl) Debug(msg string) {
log.Debugf(msg)
}
// Debugf level messages pass through normally.
func (log *impl) Debugf(format string, a ...interface{}) {
log.w.logAtLevel(syslog.LOG_DEBUG, format, a...)
}
// AuditInfo sends an INFO-severity message that is prefixed with the
// audit tag, for special handling at the upstream system logger.
func (log *impl) AuditInfo(msg string) {
log.AuditInfof(msg)
}
// AuditInfof sends an INFO-severity message that is prefixed with the
// audit tag, for special handling at the upstream system logger.
func (log *impl) AuditInfof(format string, a ...interface{}) {
log.auditAtLevel(syslog.LOG_INFO, format, a...)
}
// AuditObject sends an INFO-severity JSON-serialized object message that is prefixed
// with the audit tag, for special handling at the upstream system logger.
func (log *impl) AuditObject(msg string, obj interface{}) {
jsonObj, err := json.Marshal(obj)
if err != nil {
log.auditAtLevel(syslog.LOG_ERR, fmt.Sprintf("Object for msg %q could not be serialized to JSON. Raw: %+v", msg, obj))
return
}
log.auditAtLevel(syslog.LOG_INFO, fmt.Sprintf("%s JSON=%s", msg, jsonObj))
}
// AuditErr can format an error for auditing; it does so at ERR level.
func (log *impl) AuditErr(msg string) {
log.AuditErrf(msg)
}
// AuditErrf can format an error for auditing; it does so at ERR level.
func (log *impl) AuditErrf(format string, a ...interface{}) {
log.auditAtLevel(syslog.LOG_ERR, format, a...)
}