-
Notifications
You must be signed in to change notification settings - Fork 312
/
audit.go
196 lines (168 loc) · 4.59 KB
/
audit.go
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
// 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 audit
import (
"bufio"
"fmt"
"net/url"
"os"
"path/filepath"
"sort"
"strings"
"time"
"github.com/fatih/color"
"github.com/pingcap/errors"
"github.com/pingcap/tiup/pkg/base52"
"github.com/pingcap/tiup/pkg/cliutil"
tiuputils "github.com/pingcap/tiup/pkg/utils"
"github.com/pingcap/tiup/pkg/utils/rand"
)
// CommandArgs returns the original commands from the first line of a file
func CommandArgs(fp string) ([]string, error) {
file, err := os.Open(fp)
if err != nil {
return nil, errors.Trace(err)
}
defer file.Close()
scanner := bufio.NewScanner(file)
if !scanner.Scan() {
return nil, errors.New("unknown audit log format")
}
args := strings.Split(scanner.Text(), " ")
return decodeCommandArgs(args)
}
// encodeCommandArgs encode args with url.QueryEscape
func encodeCommandArgs(args []string) []string {
encoded := []string{}
for _, arg := range args {
encoded = append(encoded, url.QueryEscape(arg))
}
return encoded
}
// decodeCommandArgs decode args with url.QueryUnescape
func decodeCommandArgs(args []string) ([]string, error) {
decoded := []string{}
for _, arg := range args {
a, err := url.QueryUnescape(arg)
if err != nil {
return nil, errors.Annotate(err, "failed on decode the command line of audit log")
}
decoded = append(decoded, a)
}
return decoded, nil
}
// ShowAuditList show the audit list.
func ShowAuditList(dir string) error {
// Header
clusterTable := [][]string{{"ID", "Time", "Command"}}
auditList, err := GetAuditList(dir)
if err != nil {
return err
}
for _, item := range auditList {
clusterTable = append(clusterTable, []string{
item.ID,
item.Time,
item.Command,
})
}
cliutil.PrintTable(clusterTable, true)
return nil
}
// Item represents a single audit item
type Item struct {
ID string `json:"id"`
Time string `json:"time"`
Command string `json:"command"`
}
// GetAuditList get the audit item list
func GetAuditList(dir string) ([]Item, error) {
fileInfos, err := os.ReadDir(dir)
if err != nil && !os.IsNotExist(err) {
return nil, err
}
auditList := []Item{}
for _, fi := range fileInfos {
if fi.IsDir() {
continue
}
t, err := decodeAuditID(fi.Name())
if err != nil {
continue
}
args, err := CommandArgs(filepath.Join(dir, fi.Name()))
if err != nil {
continue
}
cmd := strings.Join(args, " ")
auditList = append(auditList, Item{
ID: fi.Name(),
Time: t.Format(time.RFC3339),
Command: cmd,
})
}
sort.Slice(auditList, func(i, j int) bool {
return auditList[i].Time > auditList[j].Time
})
return auditList, nil
}
// OutputAuditLog outputs audit log.
func OutputAuditLog(dir string, data []byte) error {
fname := filepath.Join(dir, base52.Encode(time.Now().UnixNano()+rand.Int63n(1000)))
f, err := os.Create(fname)
if err != nil {
return errors.Annotate(err, "create audit log")
}
defer f.Close()
args := encodeCommandArgs(os.Args)
if _, err := f.Write([]byte(strings.Join(args, " ") + "\n")); err != nil {
return errors.Annotate(err, "write audit log")
}
if _, err := f.Write(data); err != nil {
return errors.Annotate(err, "write audit log")
}
return nil
}
// ShowAuditLog show the audit with the specified auditID
func ShowAuditLog(dir string, auditID string) error {
path := filepath.Join(dir, auditID)
if tiuputils.IsNotExist(path) {
return errors.Errorf("cannot find the audit log '%s'", auditID)
}
t, err := decodeAuditID(auditID)
if err != nil {
return errors.Annotatef(err, "unrecognized audit id '%s'", auditID)
}
content, err := os.ReadFile(path)
if err != nil {
return errors.Trace(err)
}
hint := fmt.Sprintf("- OPERATION TIME: %s -", t.Format("2006-01-02T15:04:05"))
line := strings.Repeat("-", len(hint))
_, _ = os.Stdout.WriteString(color.MagentaString("%s\n%s\n%s\n", line, hint, line))
_, _ = os.Stdout.Write(content)
return nil
}
// decodeAuditID decodes the auditID to unix timestamp
func decodeAuditID(auditID string) (time.Time, error) {
ts, err := base52.Decode(auditID)
if err != nil {
return time.Time{}, err
}
// compatible with old second based ts
if ts>>32 > 0 {
ts /= 1e9
}
t := time.Unix(ts, 0)
return t, nil
}