-
Notifications
You must be signed in to change notification settings - Fork 15
/
inifile.go
629 lines (546 loc) · 13.2 KB
/
inifile.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
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
/* ipp-usb - HTTP reverse proxy, backed by IPP-over-USB connection to device
*
* Copyright (C) 2020 and up by Alexander Pevzner ([email protected])
* See LICENSE for license terms and conditions
*
* .INI file loader
*/
package main
import (
"bufio"
"bytes"
"fmt"
"math"
"os"
"strconv"
"strings"
"time"
)
// IniFile represents opened .INI file
type IniFile struct {
file *os.File // Underlying file
line int // Line in that file
reader *bufio.Reader // Reader on a top of file
buf bytes.Buffer // Temporary buffer to speed up things
rec IniRecord // Next record
withRecType bool // Return records of any type
}
// IniRecord represents a single .INI file record
type IniRecord struct {
Section string // Section name
Key, Value string // Key and value
File string // Origin file
Line int // Line in that file
Type IniRecordType // Record type
}
// IniRecordType represents IniRecord type
type IniRecordType int
// Record types:
//
// [section] <- IniRecordSection
// key - value <- IniRecordKeyVal
const (
IniRecordSection IniRecordType = iota
IniRecordKeyVal
)
// IniError represents an .INI file read error
type IniError struct {
File string // Origin file
Line int // Line in that file
Message string // Error message
}
// OpenIniFile opens the .INI file for reading
//
// If file is opened this way, (*IniFile) Next() returns
// records of IniRecordKeyVal type only
func OpenIniFile(path string) (ini *IniFile, err error) {
f, err := os.Open(path)
if err != nil {
return nil, err
}
ini = &IniFile{
file: f,
line: 1,
reader: bufio.NewReader(f),
rec: IniRecord{
File: path,
},
}
return ini, nil
}
// OpenIniFileWithRecType opens the .INI file for reading
//
// If file is opened this way, (*IniFile) Next() returns
// records of any type
func OpenIniFileWithRecType(path string) (ini *IniFile, err error) {
ini, err = OpenIniFile(path)
if ini != nil {
ini.withRecType = true
}
return
}
// Lock manages file lock on underlying disk file
func (ini *IniFile) Lock(cmd FileLockCmd) error {
return FileLock(ini.file, cmd)
}
// Unlock releases file lock
func (ini *IniFile) Unlock() error {
return FileUnlock(ini.file)
}
// Close the .INI file
func (ini *IniFile) Close() error {
return ini.file.Close()
}
// Next returns next IniRecord or an error
func (ini *IniFile) Next() (*IniRecord, error) {
for {
// Read until next non-space character, skipping all comments
c, err := ini.getcNonSpace()
for err == nil && ini.iscomment(c) {
ini.getcNl()
c, err = ini.getcNonSpace()
}
if err != nil {
return nil, err
}
// Parse next record
ini.rec.Line = ini.line
var token string
switch c {
case '[':
c, token, err = ini.token(']', false)
if err == nil && c == ']' {
ini.rec.Section = token
}
ini.getcNl()
ini.rec.Type = IniRecordSection
if ini.withRecType {
return &ini.rec, nil
}
case '=':
ini.getcNl()
return nil, ini.errorf("unexpected '=' character")
default:
ini.ungetc(c)
c, token, err = ini.token('=', false)
if err == nil && c == '=' {
ini.rec.Key = token
c, token, err = ini.token(-1, true)
if err == nil {
ini.rec.Value = token
ini.rec.Type = IniRecordKeyVal
return &ini.rec, nil
}
} else if err == nil {
return nil, ini.errorf("expected '=' character")
}
}
}
}
// Read next token
func (ini *IniFile) token(delimiter rune, linecont bool) (byte, string, error) {
var accumulator, count, trailingSpace int
var c byte
var err error
type prsState int
const (
prsSkipSpace prsState = iota
prsBody
prsString
prsStringBslash
prsStringHex
prsStringOctal
prsComment
)
// Parse the string
state := prsSkipSpace
ini.buf.Reset()
for {
c, err = ini.getc()
if err != nil || c == '\n' {
break
}
if (state == prsBody || state == prsSkipSpace) && rune(c) == delimiter {
break
}
switch state {
case prsSkipSpace:
if ini.isspace(c) {
break
}
state = prsBody
fallthrough
case prsBody:
if c == '"' {
state = prsString
} else if ini.iscomment(c) {
state = prsComment
} else if c == '\\' && linecont {
c2, _ := ini.getc()
if c2 == '\n' {
ini.buf.Truncate(ini.buf.Len() - trailingSpace)
trailingSpace = 0
state = prsSkipSpace
} else {
ini.ungetc(c2)
}
} else {
ini.buf.WriteByte(c)
}
if state == prsBody {
if ini.isspace(c) {
trailingSpace++
} else {
trailingSpace = 0
}
} else {
ini.buf.Truncate(ini.buf.Len() - trailingSpace)
trailingSpace = 0
}
case prsString:
if c == '\\' {
state = prsStringBslash
} else if c == '"' {
state = prsBody
} else {
ini.buf.WriteByte(c)
}
case prsStringBslash:
if c == 'x' || c == 'X' {
state = prsStringHex
accumulator, count = 0, 0
} else if ini.isoctal(c) {
state = prsStringOctal
accumulator = ini.hex2int(c)
count = 1
} else {
switch c {
case 'a':
c = '\a'
case 'b':
c = '\b'
case 'e':
c = '\x1b'
case 'f':
c = '\f'
case 'n':
c = '\n'
case 'r':
c = '\r'
case 't':
c = '\t'
case 'v':
c = '\v'
}
ini.buf.WriteByte(c)
state = prsString
}
case prsStringHex:
if ini.isxdigit(c) {
if count != 2 {
accumulator = accumulator*16 + ini.hex2int(c)
count++
}
} else {
state = prsString
ini.ungetc(c)
}
if state != prsStringHex {
ini.buf.WriteByte(c)
}
case prsStringOctal:
if ini.isoctal(c) {
accumulator = accumulator*8 + ini.hex2int(c)
count++
if count == 3 {
state = prsString
}
} else {
state = prsString
ini.ungetc(c)
}
if state != prsStringOctal {
ini.buf.WriteByte(c)
}
case prsComment:
// Nothing to do
}
}
// Remove trailing space, if any
ini.buf.Truncate(ini.buf.Len() - trailingSpace)
// Check for syntax error
if state != prsSkipSpace && state != prsBody && state != prsComment {
return 0, "", ini.errorf("unterminated string")
}
return c, ini.buf.String(), nil
}
// getc returns a next character from the input file
func (ini *IniFile) getc() (byte, error) {
c, err := ini.reader.ReadByte()
if c == '\n' {
ini.line++
}
return c, err
}
// getcNonSpace returns a next non-space character from the input file
func (ini *IniFile) getcNonSpace() (byte, error) {
for {
c, err := ini.getc()
if err != nil || !ini.isspace(c) {
return c, err
}
}
}
// getcNl returns a next newline character, or reads until EOF or error
func (ini *IniFile) getcNl() (byte, error) {
for {
c, err := ini.getc()
if err != nil || c == '\n' {
return c, err
}
}
}
// ungetc pushes a character back to the input stream
// only one character can be unread this way
func (ini *IniFile) ungetc(c byte) {
if c == '\n' {
ini.line--
}
ini.reader.UnreadByte()
}
// isspace returns true, if character is whitespace
func (ini *IniFile) isspace(c byte) bool {
switch c {
case ' ', '\t', '\n', '\r':
return true
}
return false
}
// iscomment returns true, if character is commentary
func (ini *IniFile) iscomment(c byte) bool {
return c == ';' || c == '#'
}
// isoctal returns true for octal digit
func (ini *IniFile) isoctal(c byte) bool {
return '0' <= c && c <= '7'
}
// isoctal returns true for hexadecimal digit
func (ini *IniFile) isxdigit(c byte) bool {
return ('0' <= c && c <= '7') ||
('a' <= c && c <= 'f') ||
('A' <= c && c <= 'F')
}
// hex2int return integer value of hexadecimal character
func (ini *IniFile) hex2int(c byte) int {
switch {
case '0' <= c && c <= '9':
return int(c - '0')
case 'a' <= c && c <= 'f':
return int(c-'a') + 10
case 'A' <= c && c <= 'F':
return int(c-'A') + 10
}
return 0
}
// errorf creates a new IniError
func (ini *IniFile) errorf(format string, args ...interface{}) *IniError {
return &IniError{
File: ini.rec.File,
Line: ini.rec.Line,
Message: fmt.Sprintf(format, args...),
}
}
// LoadIPPort loads IP port value
// The destination remains untouched in a case of an error
func (rec *IniRecord) LoadIPPort(out *int) error {
port, err := strconv.Atoi(rec.Value)
if err == nil && (port < 1 || port > 65535) {
err = rec.errBadValue("must be in range 1...65535")
}
if err != nil {
return err
}
*out = port
return nil
}
// LoadBool loads boolean value
// The destination remains untouched in a case of an error
func (rec *IniRecord) LoadBool(out *bool) error {
return rec.LoadNamedBool(out, "false", "true")
}
// LoadNamedBool loads boolean value
// Names for "true" and "false" values are specified explicitly
// The destination remains untouched in a case of an error
func (rec *IniRecord) LoadNamedBool(out *bool, vFalse, vTrue string) error {
switch rec.Value {
case vFalse:
*out = false
return nil
case vTrue:
*out = true
return nil
default:
return rec.errBadValue("must be %s or %s", vFalse, vTrue)
}
}
// LoadLogLevel loads LogLevel value
// The destination remains untouched in a case of an error
func (rec *IniRecord) LoadLogLevel(out *LogLevel) error {
var mask LogLevel
for _, s := range strings.Split(rec.Value, ",") {
s = strings.TrimSpace(s)
switch s {
case "":
case "error":
mask |= LogError
case "info":
mask |= LogInfo | LogError
case "debug":
mask |= LogDebug | LogInfo | LogError
case "trace-ipp":
mask |= LogTraceIPP | LogDebug | LogInfo | LogError
case "trace-escl":
mask |= LogTraceESCL | LogDebug | LogInfo | LogError
case "trace-http":
mask |= LogTraceHTTP | LogDebug | LogInfo | LogError
case "trace-usb":
mask |= LogTraceUSB | LogDebug | LogInfo | LogError
case "all", "trace-all":
mask |= LogAll & ^LogTraceUSB
default:
return rec.errBadValue("invalid log level %q", s)
}
}
*out = mask
return nil
}
// LoadDuration loads time.Duration value
// The destination remains untouched in a case of an error
func (rec *IniRecord) LoadDuration(out *time.Duration) error {
var ms uint
err := rec.LoadUint(&ms)
if err == nil {
*out = time.Millisecond * time.Duration(ms)
}
return err
}
// LoadSize loads size value (returned as int64)
// The syntax is following:
//
// 123 - size in bytes
// 123K - size in kilobytes, 1K == 1024
// 123M - size in megabytes, 1M == 1024K
//
// The destination remains untouched in a case of an error
func (rec *IniRecord) LoadSize(out *int64) error {
var units uint64 = 1
if l := len(rec.Value); l > 0 {
switch rec.Value[l-1] {
case 'k', 'K':
units = 1024
case 'm', 'M':
units = 1024 * 1024
}
if units != 1 {
rec.Value = rec.Value[:l-1]
}
}
sz, err := strconv.ParseUint(rec.Value, 10, 64)
if err != nil {
return rec.errBadValue("%q: invalid size", rec.Value)
}
if sz > uint64(math.MaxInt64/units) {
return rec.errBadValue("size too large")
}
*out = int64(sz * units)
return nil
}
// LoadUint loads unsigned integer value
// The destination remains untouched in a case of an error
func (rec *IniRecord) LoadUint(out *uint) error {
num, err := strconv.ParseUint(rec.Value, 10, 0)
if err != nil {
return rec.errBadValue("%q: invalid number", rec.Value)
}
*out = uint(num)
return nil
}
// LoadUintRange loads unsigned integer value within the range
// The destination remains untouched in a case of an error
func (rec *IniRecord) LoadUintRange(out *uint, min, max uint) error {
var val uint
err := rec.LoadUint(&val)
if err == nil && (val < min || val > max) {
err = rec.errBadValue("must be in range %d...%d", min, max)
}
if err != nil {
return err
}
*out = val
return nil
}
// LoadAuthUIDRules loads AuthUIDRule-s value and appends them
// to the destination
//
// The destination remains untouched in a case of an error
func (rec *IniRecord) LoadAuthUIDRules(out *[]*AuthUIDRule) error {
// Parse rec.Key -- it contains list of operations
allowed := AuthOpsNone
for _, s := range strings.Split(rec.Key, ",") {
s = strings.TrimSpace(s)
switch s {
case "all":
allowed |= AuthOpsAll
case "config":
allowed |= AuthOpsConfig
case "fax":
allowed |= AuthOpsFax
case "print":
allowed |= AuthOpsPrint
case "scan":
allowed |= AuthOpsScan
default:
return rec.errBadValue("invalid operation: %q", s)
}
}
// Parse rec.Value -- it contains list of users
rules := []*AuthUIDRule{}
users := make(map[string]struct{})
for _, s := range strings.Split(rec.Value, ",") {
s = strings.TrimSpace(s)
// Silently ignore empty users and groups
if s == "" || s == "@" {
continue
}
// Check for duplicates
if _, dup := users[s]; dup {
continue
}
users[s] = struct{}{}
// Skip rules that allows nothing
if allowed == AuthOpsNone {
continue
}
// Build rules, preserving the order (just in case for now)
rule := &AuthUIDRule{
Name: s,
Allowed: allowed,
}
rules = append(rules, rule)
}
// Save results
*out = append(*out, rules...)
return nil
}
// errBadValue creates a "bad value" error related to the INI record
func (rec *IniRecord) errBadValue(format string, args ...interface{}) error {
return &IniError{
File: rec.File,
Line: rec.Line,
Message: fmt.Sprintf(rec.Key+": "+format, args...),
}
}
// Error implements error interface for the IniError
func (err *IniError) Error() string {
return fmt.Sprintf("%s:%d: %s", err.File, err.Line, err.Message)
}