forked from OpenPrinting/ipp-usb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.go
260 lines (227 loc) · 6.01 KB
/
conf.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
/* 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
*
* Program configuration
*/
package main
import (
"errors"
"fmt"
"io"
"math"
"os"
"path/filepath"
"strconv"
"strings"
)
const (
// ConfFileName defines a name of ipp-usb configuration file
ConfFileName = "ipp-usb.conf"
)
// Configuration represents a program configuration
type Configuration struct {
HTTPMinPort int // Starting port number for HTTP to bind to
HTTPMaxPort int // Ending port number for HTTP to bind to
DNSSdEnable bool // Enable DNS-SD advertising
LoopbackOnly bool // Use only loopback interface
IPV6Enable bool // Enable IPv6 advertising
LogDevice LogLevel // Per-device LogLevel mask
LogMain LogLevel // Main log LogLevel mask
LogConsole LogLevel // Console LogLevel mask
LogMaxFileSize int64 // Maximum log file size
LogMaxBackupFiles uint // Count of files preserved during rotation
ColorConsole bool // Enable ANSI colors on console
Quirks QuirksSet // Device quirks
}
// Conf contains a global instance of program configuration
var Conf = Configuration{
HTTPMinPort: 60000,
HTTPMaxPort: 65535,
DNSSdEnable: true,
LoopbackOnly: true,
IPV6Enable: true,
LogDevice: LogDebug,
LogMain: LogDebug,
LogConsole: LogDebug,
LogMaxFileSize: 256 * 1024,
LogMaxBackupFiles: 5,
ColorConsole: true,
}
// ConfLoad loads the program configuration
func ConfLoad() error {
// Obtain path to executable directory
exepath, err := os.Executable()
if err != nil {
return fmt.Errorf("conf: %s", err)
}
exepath = filepath.Dir(exepath)
// Build list of configuration files
files := []string{
filepath.Join(PathConfDir, ConfFileName),
filepath.Join(exepath, ConfFileName),
}
// Load file by file
for _, file := range files {
err = confLoadInternal(file)
if err != nil {
return fmt.Errorf("conf: %s", err)
}
}
// Load quirks
quirksDirs := []string{
PathQuirksDir,
filepath.Join(exepath, "ipp-usb-quirks"),
}
if err == nil {
Conf.Quirks, err = LoadQuirksSet(quirksDirs...)
}
return err
}
// Create "bad value" error
func confBadValue(rec *IniRecord, format string, args ...interface{}) error {
return fmt.Errorf(rec.Key+": "+format, args...)
}
// Load the program configuration -- internal version
func confLoadInternal(path string) error {
// Open configuration file
ini, err := OpenIniFile(path)
if err != nil {
if os.IsNotExist(err) {
err = nil
}
return err
}
defer ini.Close()
// Extract options
for err == nil {
var rec *IniRecord
rec, err = ini.Next()
if err != nil {
break
}
switch rec.Section {
case "network":
switch rec.Key {
case "http-min-port":
err = confLoadIPPortKey(&Conf.HTTPMinPort, rec)
case "http-max-port":
err = confLoadIPPortKey(&Conf.HTTPMaxPort, rec)
case "dns-sd":
err = confLoadBinaryKey(&Conf.DNSSdEnable, rec, "disable", "enable")
case "interface":
err = confLoadBinaryKey(&Conf.LoopbackOnly, rec, "all", "loopback")
case "ipv6":
err = confLoadBinaryKey(&Conf.IPV6Enable, rec, "disable", "enable")
}
case "logging":
switch rec.Key {
case "device-log":
err = confLoadLogLevelKey(&Conf.LogDevice, rec)
case "main-log":
err = confLoadLogLevelKey(&Conf.LogMain, rec)
case "console-log":
err = confLoadLogLevelKey(&Conf.LogConsole, rec)
case "console-color":
err = confLoadBinaryKey(&Conf.ColorConsole, rec, "disable", "enable")
case "max-file-size":
err = confLoadSizeKey(&Conf.LogMaxFileSize, rec)
case "max-backup-files":
err = confLoadUintKey(&Conf.LogMaxBackupFiles, rec)
}
}
}
if err != nil && err != io.EOF {
return err
}
// Validate configuration
if Conf.HTTPMinPort >= Conf.HTTPMaxPort {
return errors.New("http-min-port must be less that http-max-port")
}
return nil
}
// Load IP port key
func confLoadIPPortKey(out *int, rec *IniRecord) error {
port, err := strconv.Atoi(rec.Value)
if err == nil && (port < 1 || port > 65535) {
err = confBadValue(rec, "must be in range 1...65535")
}
if err != nil {
return err
}
*out = int(port)
return nil
}
// Load the binary key
func confLoadBinaryKey(out *bool, rec *IniRecord, vFalse, vTrue string) error {
switch rec.Value {
case vFalse:
*out = false
return nil
case vTrue:
*out = true
return nil
default:
return confBadValue(rec, "must be %s or %s", vFalse, vTrue)
}
}
// Load LogLevel key
func confLoadLogLevelKey(out *LogLevel, rec *IniRecord) error {
var mask LogLevel
for _, s := range strings.Split(rec.Value, ",") {
switch s {
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 "all", "trace-all":
mask |= LogAll
default:
return confBadValue(rec, "invalid log level %q", s)
}
}
*out = mask
return nil
}
// Load size key
func confLoadSizeKey(out *int64, rec *IniRecord) error {
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 confBadValue(rec, "%q: invalid size", rec.Value)
}
if sz > uint64(math.MaxInt64/units) {
return confBadValue(rec, "size too large")
}
*out = int64(sz * units)
return nil
}
// Load unsigned integer key
func confLoadUintKey(out *uint, rec *IniRecord) error {
num, err := strconv.ParseUint(rec.Value, 10, 0)
if err != nil {
return confBadValue(rec, "%q: invalid number", rec.Value)
}
*out = uint(num)
return nil
}