-
Notifications
You must be signed in to change notification settings - Fork 66
*: redact log and error messages, add log-redact parameter #538
Changes from 4 commits
afa544e
f2394e7
e8cdad0
0513f09
4263e5f
83d42fb
3e6df61
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,8 @@ type Config struct { | |
FileMaxDays int `toml:"max-days" json:"max-days"` | ||
// Maximum number of old log files to retain. | ||
FileMaxBackups int `toml:"max-backups" json:"max-backups"` | ||
// Redact sensitive logs during the whole process | ||
RedactLog bool `toml:"redact-log" json:"redact-log"` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should allow config this field from toml too |
||
} | ||
|
||
func (cfg *Config) Adjust() { | ||
|
@@ -98,6 +100,8 @@ func InitLogger(cfg *Config, tidbLoglevel string) error { | |
appLogger = Logger{logger.WithOptions(zap.AddStacktrace(zap.DPanicLevel))} | ||
appLevel = props.Level | ||
|
||
InitRedact(cfg.RedactLog) | ||
|
||
return nil | ||
} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
// Copyright 2020 PingCAP, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package log | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. shall we directly shall the package in br? Since they should be almost the same There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Some functions are not implemented in br's package. Since these two repositories are going to be merged together, I think we can do the refactor at that time to avoid update the dependencies now. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @overvenus FYI about this task. |
||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/pingcap/errors" | ||
"go.uber.org/zap" | ||
"go.uber.org/zap/zapcore" | ||
) | ||
|
||
// InitRedact inits the enableRedactLog | ||
func InitRedact(redactLog bool) { | ||
errors.RedactLogEnabled.Store(redactLog) | ||
} | ||
|
||
// NeedRedact returns whether to redact log | ||
func NeedRedact() bool { | ||
return errors.RedactLogEnabled.Load() | ||
} | ||
|
||
// ZapRedactBinary receives zap.Binary and return omitted information if redact log enabled | ||
func ZapRedactBinary(key string, val []byte) zapcore.Field { | ||
if NeedRedact() { | ||
return zap.String(key, "?") | ||
} | ||
return zap.Binary(key, val) | ||
} | ||
|
||
// ZapRedactArray receives zap.Array and return omitted information if redact log enabled | ||
func ZapRedactArray(key string, val zapcore.ArrayMarshaler) zapcore.Field { | ||
if NeedRedact() { | ||
return zap.String(key, "?") | ||
} | ||
return zap.Array(key, val) | ||
} | ||
|
||
// ZapRedactReflect receives zap.Reflect and return omitted information if redact log enabled | ||
func ZapRedactReflect(key string, val interface{}) zapcore.Field { | ||
if NeedRedact() { | ||
return zap.String(key, "?") | ||
} | ||
return zap.Reflect(key, val) | ||
} | ||
|
||
// ZapRedactStringer receives stringer argument and return omitted information in zap.Field if redact log enabled | ||
func ZapRedactStringer(key string, arg fmt.Stringer) zap.Field { | ||
return zap.Stringer(key, RedactStringer(arg)) | ||
} | ||
|
||
// ZapRedactString receives stringer argument and return omitted information in zap.Field if redact log enabled | ||
func ZapRedactString(key string, arg string) zap.Field { | ||
return zap.String(key, RedactString(arg)) | ||
} | ||
|
||
// RedactString receives string argument and return omitted information if redact log enabled | ||
func RedactString(arg string) string { | ||
if NeedRedact() { | ||
return "?" | ||
} | ||
return arg | ||
} | ||
|
||
// RedactStringer receives stringer argument and return omitted information if redact log enabled | ||
func RedactStringer(arg fmt.Stringer) fmt.Stringer { | ||
if NeedRedact() { | ||
return stringer{} | ||
} | ||
return arg | ||
} | ||
|
||
type stringer struct{} | ||
|
||
// String implement fmt.Stringer | ||
func (s stringer) String() string { | ||
return "?" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
stmt
should be redacted too since it contains the rawData