-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathparams.go
More file actions
465 lines (413 loc) · 14.6 KB
/
params.go
File metadata and controls
465 lines (413 loc) · 14.6 KB
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
// Copyright (c) Mondoo, Inc.
// SPDX-License-Identifier: BUSL-1.1
package sshd
import (
"strings"
"github.com/rs/zerolog/log"
"go.mondoo.com/cnquery/v12/llx"
"go.mondoo.com/cnquery/v12/utils/sortx"
)
type MatchBlock struct {
Criteria string
// Note: we set the value type to any, but it must be a string.
// This is done due to type limitations in go and MQL's internal processing
Params map[string]any
Context Context
}
type Context struct {
Path string
Range llx.Range
curLine int
}
func setParam(m map[string]any, key string, value string) {
v, ok := m[key]
if !ok {
m[key] = value
} else if isMultiParam[key] {
m[key] = v.(string) + "," + value
}
}
type MatchBlocks []*MatchBlock
var isMultiParam = map[string]bool{
"AllowGroups": true,
"AllowUsers": true,
"DenyGroups": true,
"DenyUsers": true,
"ListenAddress": true,
"Port": true,
"AcceptEnv": true,
"HostKey": true,
}
func (m MatchBlocks) Flatten() map[string]any {
if len(m) == 0 {
return nil
}
if len(m) == 1 {
return m[0].Params
}
// We are using the first block as a starting point for the size.
// We can't just add the sizes of params across all blocks, because keys
// may be used across multiple blocks. It is likely that the size will
// have to grow, but it's the floor and a good starting point.
res := make(map[string]any, len(m[0].Params))
matchConditions := []string{}
for i := range m {
cur := m[i]
if cur.Criteria != "" {
matchConditions = append(matchConditions, cur.Criteria)
}
for k, v := range cur.Params {
setParam(res, k, v.(string))
}
}
// We are adding one flattened key for all match groups. This is
// more to be informative and consistent, rather than useful.
// The most useful way to access conditions is to cycle over all match blocks.
if len(matchConditions) != 0 {
res["Match"] = strings.Join(matchConditions, ",")
}
return res
}
func mergeIncludedBlocks(matchConditions map[string]*MatchBlock, blocks MatchBlocks, curBlock string) {
for _, block := range blocks {
if block.Criteria == "" {
// Default block: merge into the current block
existing := matchConditions[curBlock]
if existing == nil {
existing = &MatchBlock{
Criteria: curBlock,
Params: map[string]any{},
Context: block.Context,
}
matchConditions[curBlock] = existing
}
if existing.Params == nil {
existing.Params = map[string]any{}
}
for k, v := range block.Params {
if _, ok := existing.Params[k]; !ok {
existing.Params[k] = v
}
}
continue
}
// Match block: always add to global map
existing, ok := matchConditions[block.Criteria]
if !ok {
// Create a new Match block
existing = &MatchBlock{
Criteria: block.Criteria,
Params: map[string]any{},
Context: block.Context,
}
matchConditions[block.Criteria] = existing
}
if existing.Params == nil {
existing.Params = map[string]any{}
}
for k, v := range block.Params {
if _, ok := existing.Params[k]; !ok {
existing.Params[k] = v
}
}
}
}
type (
fileContentFunc func(string) (content string, err error)
globExpandFunc func(string) (paths []string, err error)
)
// ParseBlocks parses a single SSH config file and returns the match blocks.
// The filePath should be the actual file path (not a glob pattern).
// For Include directives with glob patterns, use ParseBlocksWithGlob instead.
func ParseBlocks(filePath string, content string) (MatchBlocks, error) {
curBlock := &MatchBlock{
Criteria: "",
Params: map[string]any{},
Context: Context{
Path: filePath,
Range: llx.NewRange(),
curLine: 1,
},
}
matchConditions := map[string]*MatchBlock{
"": curBlock,
}
lines := strings.Split(content, "\n")
for curLineIdx, textLine := range lines {
l, err := ParseLine([]rune(textLine))
if err != nil {
return nil, err
}
key := l.key
if key == "" {
continue
}
// handle lower case entries and use proper ssh camel case
if sshKey, ok := SSH_Keywords[strings.ToLower(key)]; ok {
key = sshKey
}
if key == "Include" {
// Include directives are handled by ParseBlocksWithGlob
// This function only parses single files
log.Warn().Str("file", filePath).Msg("Include directive found in single-file parser, use ParseBlocksWithGlob instead")
continue
}
if key == "Match" {
// wrap up context on the previous block
curBlock.Context.Range = curBlock.Context.Range.AddLineRange(uint32(curBlock.Context.curLine), uint32(curLineIdx))
curBlock.Context.curLine = curLineIdx
// This key is stored in the condition of each block and can be accessed there.
condition := l.args
if b, ok := matchConditions[condition]; ok {
curBlock = b
} else {
curBlock = &MatchBlock{
Criteria: condition,
Params: map[string]any{},
Context: Context{
curLine: curLineIdx + 1,
Path: filePath,
Range: llx.NewRange(),
},
}
matchConditions[condition] = curBlock
}
continue
}
setParam(curBlock.Params, key, l.args)
}
keys := sortx.Keys(matchConditions)
res := make([]*MatchBlock, len(keys))
i := 0
for _, key := range keys {
res[i] = matchConditions[key]
i++
}
curBlock.Context.Range = curBlock.Context.Range.AddLineRange(uint32(curBlock.Context.curLine), uint32(len(lines)))
return res, nil
}
// ParseBlocksWithGlob parses SSH config files, expanding glob patterns in Include directives.
// It expands globs and calls ParseBlocksWithGlobRecursive for each matched file individually,
func ParseBlocksWithGlob(rootPath string, fileContent fileContentFunc, globExpand globExpandFunc) (MatchBlocks, error) {
// First, expand the root path if it's a glob
paths, err := globExpand(rootPath)
if err != nil {
return nil, err
}
// If no paths matched, check if rootPath was a single file (not a glob) or return empty blocks
if len(paths) == 0 {
// Check if rootPath contains a glob pattern
hasGlob := strings.Contains(rootPath, "*") || strings.Contains(rootPath, "?") || strings.Contains(rootPath, "[")
if !hasGlob {
_, err := fileContent(rootPath)
if err != nil {
return nil, err
}
}
return MatchBlocks{}, nil
}
// Parse each file individually and collect all blocks
// Each file maintains its own context (path, line numbers)
var allBlocks MatchBlocks
for i, path := range paths {
content, err := fileContent(path)
if err != nil {
if i == 0 && (len(paths) == 1 || path == rootPath) {
return nil, err
}
log.Warn().Err(err).Str("path", path).Msg("unable to read file")
continue
}
blocks, err := ParseBlocksWithGlobRecursive(path, content, fileContent, globExpand)
if err != nil {
log.Warn().Err(err).Str("path", path).Msg("unable to parse file")
continue
}
allBlocks = append(allBlocks, blocks...)
}
return allBlocks, nil
}
// ParseBlocksWithGlobRecursive parses a single file and recursively handles Include directives.
func ParseBlocksWithGlobRecursive(filePath string, content string, fileContent fileContentFunc, globExpand globExpandFunc) (MatchBlocks, error) {
curBlock := &MatchBlock{
Criteria: "",
Params: map[string]any{},
Context: Context{
Path: filePath,
Range: llx.NewRange(),
curLine: 1,
},
}
matchConditions := map[string]*MatchBlock{
"": curBlock,
}
lines := strings.Split(content, "\n")
for curLineIdx, textLine := range lines {
l, err := ParseLine([]rune(textLine))
if err != nil {
return nil, err
}
key := l.key
if key == "" {
continue
}
// handle lower case entries and use proper ssh camel case
if sshKey, ok := SSH_Keywords[strings.ToLower(key)]; ok {
key = sshKey
}
if key == "Include" {
// FIXME: parse multi-keys properly
includePaths := strings.Split(l.args, " ")
for _, includePath := range includePaths {
// Expand glob pattern if present
expandedPaths, err := globExpand(includePath)
if err != nil {
log.Warn().Err(err).Str("path", includePath).Msg("unable to expand Include directive")
continue
}
// Parse each matched file individually
for _, expandedPath := range expandedPaths {
subContent, err := fileContent(expandedPath)
if err != nil {
log.Warn().Err(err).Str("path", expandedPath).Msg("unable to read included file")
continue
}
subBlocks, err := ParseBlocksWithGlobRecursive(expandedPath, subContent, fileContent, globExpand)
if err != nil {
log.Warn().Err(err).Str("path", expandedPath).Msg("unable to parse included file")
continue
}
mergeIncludedBlocks(matchConditions, subBlocks, curBlock.Criteria)
}
}
continue
}
if key == "Match" {
// wrap up context on the previous block
curBlock.Context.Range = curBlock.Context.Range.AddLineRange(uint32(curBlock.Context.curLine), uint32(curLineIdx))
curBlock.Context.curLine = curLineIdx
// This key is the only that we don't add to any params. It is stored
// in the condition of each block and can be accessed there.
condition := l.args
if b, ok := matchConditions[condition]; ok {
curBlock = b
} else {
curBlock = &MatchBlock{
Criteria: condition,
Params: map[string]any{},
Context: Context{
curLine: curLineIdx + 1,
Path: filePath,
Range: llx.NewRange(),
},
}
matchConditions[condition] = curBlock
}
continue
}
setParam(curBlock.Params, key, l.args)
}
keys := sortx.Keys(matchConditions)
res := make([]*MatchBlock, len(keys))
i := 0
for _, key := range keys {
res[i] = matchConditions[key]
i++
}
curBlock.Context.Range = curBlock.Context.Range.AddLineRange(uint32(curBlock.Context.curLine), uint32(len(lines)))
return res, nil
}
var SSH_Keywords = map[string]string{
"acceptenv": "AcceptEnv",
"addressfamily": "AddressFamily",
"allowagentforwarding": "AllowAgentForwarding",
"allowgroups": "AllowGroups",
"allowstreamlocalforwarding": "AllowStreamLocalForwarding",
"allowtcpforwarding": "AllowTcpForwarding",
"allowusers": "AllowUsers",
"authenticationmethods": "AuthenticationMethods",
"authorizedkeyscommand": "AuthorizedKeysCommand",
"authorizedkeyscommanduser": "AuthorizedKeysCommandUser",
"authorizedkeysfile": "AuthorizedKeysFile",
"authorizedprincipalscommand": "AuthorizedPrincipalsCommand",
"authorizedprincipalscommanduser": "AuthorizedPrincipalsCommandUser",
"authorizedprincipalsfile": "AuthorizedPrincipalsFile",
"banner": "Banner",
"casignaturealgorithms": "CASignatureAlgorithms",
"challengeresponseauthentication": "ChallengeResponseAuthentication",
"chrootdirectory": "ChrootDirectory",
"ciphers": "Ciphers",
"clientalivecountmax": "ClientAliveCountMax",
"clientaliveinterval": "ClientAliveInterval",
"compression": "Compression",
"denygroups": "DenyGroups",
"denyusers": "DenyUsers",
"disableforwarding": "DisableForwarding",
"exposeauthinfo": "ExposeAuthInfo",
"fingerprinthash": "FingerprintHash",
"forcecommand": "ForceCommand",
"gssapiauthentication": "GSSAPIAuthentication",
"gssapicleanupcredentials": "GSSAPICleanupCredentials",
"gssapistrictacceptorcheck": "GSSAPIStrictAcceptorCheck",
"gatewayports": "GatewayPorts",
"hostcertificate": "HostCertificate",
"hostkey": "HostKey",
"hostkeyagent": "HostKeyAgent",
"hostkeyalgorithms": "HostKeyAlgorithms",
"hostbasedacceptedkeytypes": "HostbasedAcceptedKeyTypes",
"hostbasedauthentication": "HostbasedAuthentication",
"hostbasedusesnamefrompacketonly": "HostbasedUsesNameFromPacketOnly",
"ipqos": "IPQoS",
"ignorerhosts": "IgnoreRhosts",
"ignoreuserknownhosts": "IgnoreUserKnownHosts",
"include": "Include",
"kbdinteractiveauthentication": "KbdInteractiveAuthentication",
"kerberosauthentication": "KerberosAuthentication",
"kerberosgetafstoken": "KerberosGetAFSToken",
"kerberosorlocalpasswd": "KerberosOrLocalPasswd",
"kerberosticketcleanup": "KerberosTicketCleanup",
"kexalgorithms": "KexAlgorithms",
"listenaddress": "ListenAddress",
"loglevel": "LogLevel",
"logingracetime": "LoginGraceTime",
"macs": "MACs",
"match": "Match",
"maxauthtries": "MaxAuthTries",
"maxsessions": "MaxSessions",
"maxstartups": "MaxStartups",
"passwordauthentication": "PasswordAuthentication",
"permitemptypasswords": "PermitEmptyPasswords",
"permitlisten": "PermitListen",
"permitopen": "PermitOpen",
"permitrootlogin": "PermitRootLogin",
"permittty": "PermitTTY",
"permittunnel": "PermitTunnel",
"permituserenvironment": "PermitUserEnvironment",
"permituserrc": "PermitUserRC",
"pidfile": "PidFile",
"port": "Port",
"printlastlog": "PrintLastLog",
"printmotd": "PrintMotd",
"pubkeyacceptedkeytypes": "PubkeyAcceptedKeyTypes",
"pubkeyauthoptions": "PubkeyAuthOptions",
"pubkeyauthentication": "PubkeyAuthentication",
"rdomain": "RDomain",
"rekeylimit": "RekeyLimit",
"revokedkeys": "RevokedKeys",
"securitykeyprovider": "SecurityKeyProvider",
"setenv": "SetEnv",
"streamlocalbindmask": "StreamLocalBindMask",
"streamlocalbindunlink": "StreamLocalBindUnlink",
"strictmodes": "StrictModes",
"subsystem": "Subsystem",
"syslogfacility": "SyslogFacility",
"tcpkeepalive": "TCPKeepAlive",
"trustedusercakeys": "TrustedUserCAKeys",
"usedns": "UseDNS",
"usepam": "UsePAM",
"versionaddendum": "VersionAddendum",
"x11displayoffset": "X11DisplayOffset",
"x11forwarding": "X11Forwarding",
"x11uselocalhost": "X11UseLocalhost",
"xauthlocation": "XAuthLocation",
}