-
Notifications
You must be signed in to change notification settings - Fork 34
/
generator.go
509 lines (438 loc) · 13.5 KB
/
generator.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
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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
package gonymizer
import (
"bufio"
"bytes"
"crypto/rand"
"encoding/binary"
"errors"
"fmt"
"io"
mathRand "math/rand"
"os"
"regexp"
"strings"
"unicode"
"github.com/spf13/viper"
log "github.com/sirupsen/logrus"
)
var lineCount = int64(0) // Used to notify user progress during processing
// StateChangeTokenBeginCopy is the token used to notify the processor that we have hit SQL-COPY in the dump file
// StateChangeTokenEndCopy is the token used to notify the processor that we are done with SQL-COPY
const (
StateChangeTokenBeginCopy = "COPY"
StateChangeTokenEndCopy = "\\."
)
// LineState contains all the required information for parsing a line in the SQL dump file.
type LineState struct {
LineNum int64
IsRow bool
SchemaName string
TableName string
ColumnNames []string
}
// Clear will clear out all known line stat for the current LineState object.
func (curLine *LineState) Clear() {
curLine.IsRow = false
curLine.SchemaName = ""
curLine.TableName = ""
curLine.ColumnNames = nil
}
// CreateDumpFile will create a PostgreSQL dump file from the specified PGConfig to the location, and with
// restrictions, that are provided by the inputs to the function.
func CreateDumpFile(
conf PGConfig,
dumpfilePath,
schemaPrefix string,
excludeTables,
excludeDataTables,
excludeCreateSchemas,
schemas []string,
oids bool,
) error {
var (
errBuffer bytes.Buffer
outBuffer bytes.Buffer
)
args := CreateDumpArgs(conf, dumpfilePath, schemaPrefix, excludeTables, excludeDataTables, excludeCreateSchemas, schemas, oids)
cmd := "pg_dump"
// Execute pg_dump
err := ExecPostgresCommandOutErr(&outBuffer, &errBuffer, cmd, args...)
if err != nil {
log.Error("STDOUT: ", outBuffer.String())
log.Error("STDERR: ", errBuffer.String())
log.Error(err)
}
return err
}
// seedRNG seeds the RNG based on user-specified config.
func seedRNG(mapper *DBMapper, generateSeed bool) error {
if generateSeed {
for {
randVal, err := generateRandomInt64()
if err != nil {
log.Error(err)
} else {
log.Debugf("Using internal number generator for seed value: %d", randVal)
mathRand.Seed(randVal)
break
}
}
} else {
randVal := mapper.Seed
if randVal == 0 {
return errors.New("Expected non-zero Seed")
}
log.Debugf("Using map file for seed value: %d", randVal)
mathRand.Seed(mapper.Seed)
}
return nil
}
// ProcessDumpFile will process the supplied dump file according to the supplied database map file. GenerateSeed can
// also be set to true which will inform the function to use Go's built-in random number generator.
func ProcessDumpFile(config ProcessConfig) error {
var (
inputLine string
outputLine string
)
err2 := seedRNG(config.DBMapper, config.GenerateSeed)
if err2 != nil {
return err2
}
srcFile, err := os.Open(config.SourceFilename)
if err != nil {
log.Error(err)
log.Debug("src: ", config.SourceFilename)
log.Debug("dst: ", config.DestinationFilename)
return err
}
defer srcFile.Close()
fileReader := bufio.NewReader(srcFile)
dstFile, err := os.Create(config.DestinationFilename)
if err != nil {
log.Error(err)
log.Debug("src: ", config.SourceFilename)
log.Debug("dst: ", config.DestinationFilename)
return err
}
defer dstFile.Close()
// Call fileInjector to write any required configuration settings to the top of the
// processed dump file
if len(config.PreprocessFilename) > 0 {
if err = fileInjector(config.PreprocessFilename, dstFile); err != nil {
log.Error("Unable to run preProcessor")
return err
}
}
// Always make sure we are in replication mode so we can import tables without constraints
if _, err := dstFile.WriteString("SET session_replication_role = 'replica';\n"); err != nil {
return err
}
allDone := false
state := new(LineState)
for {
lineCount++
state.LineNum = lineCount
inputLine, err = fileReader.ReadString('\n')
if err != nil {
if err == io.EOF {
// readline will fail if it doesn't encounter our delimiter (\n)
// EOF isn't a real error tho...
// do nothing
allDone = true
} else {
log.Error(err)
log.Debug("src: ", config.SourceFilename)
log.Debug("dst: ", config.DestinationFilename)
log.Debug("lineCount: ", lineCount)
log.Debug("inputLine: ", inputLine)
return err
}
}
state, outputLine, err = processLine(config.DBMapper, state, inputLine)
if err != nil {
log.Error("processLine failure: ", err)
log.Debug("src: ", config.SourceFilename)
log.Debug("dst: ", config.DestinationFilename)
log.Debug("lineCount", lineCount)
log.Debug("inputLine", inputLine)
log.Debug("outputLine", outputLine)
return err
}
bytesWritten, err := dstFile.WriteString(outputLine)
if err != nil {
log.Error(err)
log.Debug("src: ", config.SourceFilename)
log.Debug("dst: ", config.DestinationFilename)
log.Debug("lineCount", lineCount)
log.Debug("inputLine", inputLine)
log.Debug("bytesWritten", bytesWritten)
return err
}
if allDone {
break
}
if lineCount%100000 == 0 {
log.Info("Processing line number: ", lineCount)
}
}
if strings.ToLower(viper.GetString("log-level")) == "debug" {
err = writeDebugMap()
if err != nil {
return err
}
}
// Add in SQL at the end of the dump file
if len(config.PostprocessFilename) > 0 {
if err = fileInjector(config.PostprocessFilename, dstFile); err != nil {
return err
}
}
// Enable constraints (they were disabled earlier)
if _, err := dstFile.WriteString("SET session_replication_role = 'origin';\n"); err != nil {
return err
}
return nil
}
// generateRandomInt64 will generate a pseudo random 64bit integer which is used for seeding the Go random
// number generator.
func generateRandomInt64() (int64, error) {
var b [8]byte
if _, err := rand.Read(b[:]); err != nil {
return 0, err
}
return int64(binary.LittleEndian.Uint64(b[:])), nil
}
// generateSchemaSQL will generate all needed CREATE SCHEMA statements that are needed for the processed dump file.
func generateSchemaSQL(conf PGConfig, outputFile *os.File, excludeCreateSchemas []string) error {
var sql string
// Prepopulate our dumpfile with drop / create schema statements
otherSchemas, err := GetSchemasInDatabase(conf, excludeCreateSchemas)
log.Info(otherSchemas)
if err != nil {
return err
}
for _, schema := range otherSchemas {
if conf.Username != "" {
sql = fmt.Sprintf(
"CREATE SCHEMA IF NOT EXISTS %[1]s AUTHORIZATION %[2]s;\n"+
"GRANT USAGE ON SCHEMA %[1]s TO %[2]s;\n"+
"GRANT ALL PRIVILEGES ON SCHEMA %[1]s TO %[2]s;\n"+
"GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA %[1]s TO %[2]s;\n\n"+
"ALTER DEFAULT PRIVILEGES IN SCHEMA %[1]s GRANT ALL ON TABLES TO %[2]s;\n\n", schema, conf.Username)
} else {
sql = fmt.Sprintf("CREATE SCHEMA IF NOT EXISTS %s;\n", schema)
}
_, err = outputFile.WriteString(sql)
if err != nil {
return err
}
}
return nil
}
// processLine will process the current line in the dump file by deciding which state the processor should be in
// based on reading in the content of the current line in the dump file and analyzing it.
func processLine(mapper *DBMapper, state *LineState, inputLine string) (*LineState, string, error) {
outputLine := inputLine
trimmedInput := strings.TrimLeftFunc(inputLine, unicode.IsSpace)
if len(trimmedInput) == 0 {
return state, outputLine, nil
}
if strings.HasPrefix(trimmedInput, "--") {
return state, outputLine, nil
}
if strings.HasPrefix(trimmedInput, StateChangeTokenBeginCopy) {
state.parseCopyLine(inputLine)
return state, outputLine, nil
}
if strings.HasPrefix(trimmedInput, StateChangeTokenEndCopy) {
state.Clear()
return state, outputLine, nil
}
if state.IsRow {
return processRow(mapper, state, inputLine)
}
return state, outputLine, nil
}
// processRow will process the line in the dump file IFF it is a SQL-line (eventual row in the database after import).
func processRow(mapper *DBMapper, state *LineState, inputLine string) (*LineState, string, error) {
rowVals := strings.Split(inputLine, "\t")
outputVals := make([]string, 0, len(rowVals))
for i, columnName := range state.ColumnNames {
var (
err error
escapeChar string
output string
)
cmap := mapper.ColumnMapper(state.SchemaName, state.TableName, columnName)
if cmap == nil && viper.GetBool("process.inclusive") {
log.Fatalf("Column '%s.%s.%s' does not exist. Please add to Map file",
state.SchemaName, state.TableName, columnName)
os.Exit(1)
}
val := rowVals[i]
// Check to see if the column has an escape char at the end of it.
// If so cut it and keep it for later
if strings.HasSuffix(val, "\n") {
escapeChar = "\n"
val = strings.Replace(val, "\n", "", -1)
} else if strings.HasSuffix(val, "\t") {
escapeChar = "\t"
val = strings.Replace(val, "\t", "", -1)
}
// If column value is nil or if this column is not mapped, keep the value and continue on
if val == "\\N" || cmap == nil {
output = val
} else {
output, err = processValue(cmap, val)
if err != nil {
log.Error(err)
log.Debug("i: ", i)
log.Debug("columnName: ", columnName)
return state, "****************** PROCESS ROW ERROR ******************", err
}
}
// Add escape character back to column
output += escapeChar
// Append the column to our new line
outputVals = append(outputVals, output)
}
outputLine := strings.Join(outputVals, "\t")
return state, outputLine, nil
}
// processValue will anonymize or ignore the current value for a given column in the dump file
func processValue(cmap *ColumnMapper, input string) (string, error) {
var err error
output := input
for i, procDef := range cmap.Processors {
pfunc := ProcessorCatalog[procDef.Name]
if pfunc == nil {
log.Error(err)
log.Error("Unknown Processor Name: ", procDef.Name)
log.Debug("i: ", i)
log.Debug("procDef: ", procDef)
log.Debug("cmap: ", cmap)
log.Debug("input: ", input)
return "", err
}
if procDef.Exemptions != "" {
expression, err := regexp.Compile(procDef.Exemptions)
if err != nil {
log.Error(err)
log.Error("Invalid Exemptions expression: ", procDef.Name)
log.Debug("i: ", i)
log.Debug("cmap: ", cmap)
log.Debug("input: ", input)
return "", err
}
if expression.MatchString(input) {
return input, nil
}
}
output, err = pfunc(cmap, input)
if err != nil {
log.Error(err)
log.Debug("i: ", i)
log.Debug("cmap: ", cmap)
log.Debug("input: ", input)
return "", err
}
}
return output, nil
}
// parseCopyLine will parse the /copy line in a PostgreSQL dump file
func (curLine *LineState) parseCopyLine(inputLine string) {
spaceSplts := strings.Split(inputLine, " ")
schemaTableSplt := strings.Split(spaceSplts[1], ".")
curLine.IsRow = true
curLine.SchemaName = schemaTableSplt[0]
curLine.TableName = schemaTableSplt[1]
openSplts := strings.Split(inputLine, "(")
parensContent := openSplts[1]
closeSplits := strings.Split(parensContent, ")")
parensContent = closeSplits[0]
curLine.ColumnNames = strings.Split(parensContent, ",")
for i, v := range curLine.ColumnNames {
curLine.ColumnNames[i] = strings.TrimSpace(v)
}
debugLine := fmt.Sprintf(`
====================================================================================================================
Schema.Table: %s.%s
Line number: %d
Is a row: %t
Columns: %s
====================================================================================================================`,
curLine.SchemaName, curLine.TableName, curLine.LineNum, curLine.IsRow, strings.Join(curLine.ColumnNames, ", "))
log.Debug(debugLine)
}
// fileInjector writes data to the current position in the destination file from the source file
func fileInjector(srcFileName string, dstFile *os.File) error {
srcFile, err := os.Open(srcFileName)
if err != nil {
return err
}
defer srcFile.Close()
srcBuf := bufio.NewReader(srcFile)
// Add the start tag to the destination file to indicate we are injecting another file into this one
startTag := fmt.Sprintf(`
--
-- Begin Gonymizer Injection from file: %s
--
`, srcFileName)
if _, err := dstFile.WriteString(startTag); err != nil {
return err
}
for {
inputLine, err := srcBuf.ReadString('\n')
if err != nil {
if err == io.EOF {
break
} else {
return err
}
}
// Copy data from the source file into processed dump file
_, err = dstFile.WriteString(inputLine)
if err != nil {
return nil
}
}
// Add end tag to the destination file to indicate the injection is complete
endTag := fmt.Sprintf(`
--
-- End Gonymizer File Injection from file: %s
--
`, srcFileName)
_, err = dstFile.WriteString(endTag)
return err
}
// writeDebugMap is used to store the reverse of the original data to the anonymized data.
// WARNING: this is disabled by default and the programmer must add this function back in to use it. Only use this
// function when debugging improvements to the map and process commands.
func writeDebugMap() (err error) {
// Dump map to disk for debug
outputFile, err := os.OpenFile("/tmp/map.txt", os.O_RDWR|os.O_CREATE, 0660)
if err != nil {
log.Debug("outputFileName: /tmp/map.txt")
return err
}
defer outputFile.Close()
for k, v := range UUIDMap.v {
_, err = outputFile.WriteString(fmt.Sprintf("%s => %s\n", k, v))
if err != nil {
return err
}
}
for k1, v1 := range AlphaNumericMap.v {
_, err = outputFile.WriteString(fmt.Sprintf("\n=================\n%s\n=================\n", k1))
if err != nil {
return err
}
for k2, v2 := range v1 {
_, err = outputFile.WriteString(fmt.Sprintf("%s|\t%s => %s\n", k1, k2, v2))
if err != nil {
return err
}
}
}
return err
}