-
Notifications
You must be signed in to change notification settings - Fork 263
Expand file tree
/
Copy pathvalidator.go
More file actions
438 lines (389 loc) · 11.7 KB
/
validator.go
File metadata and controls
438 lines (389 loc) · 11.7 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
package tools
import (
"fmt"
"regexp"
"strings"
)
// ValidationError represents a validation failure with details
type ValidationError struct {
Field string `json:"field"`
Value string `json:"value"`
Message string `json:"message"`
}
func (e ValidationError) Error() string {
return fmt.Sprintf("validation failed for field '%s' with value '%s': %s", e.Field, e.Value, e.Message)
}
// ValidationResult holds validation results and any errors
type ValidationResult struct {
Valid bool `json:"valid"`
Errors []ValidationError `json:"errors,omitempty"`
}
// Validator provides comprehensive input validation for tool parameters
type Validator struct {
kubernetesNamePattern *regexp.Regexp
}
// NewValidator creates a new validator with compiled patterns
func NewValidator() *Validator {
return &Validator{
kubernetesNamePattern: regexp.MustCompile(`^[a-z0-9]([-a-z0-9]*[a-z0-9])?$`),
}
}
// ValidateToolInput validates tool parameters based on the tool name and inputs
func (v *Validator) ValidateToolInput(toolName string, inputs map[string]interface{}) *ValidationResult {
result := &ValidationResult{Valid: true, Errors: []ValidationError{}}
// Common validations for all tools
v.validateNamespace(inputs, result)
// Only validate resource name for tools that require a specific resource
if toolName != "k8s_list_pods" {
v.validateResourceName(inputs, result)
}
// Tool-specific validations
switch toolName {
case "k8s_scale_deployment":
v.validateScaleOperation(inputs, result)
case "k8s_restart_deployment":
v.validateRestartOperation(inputs, result)
case "k8s_get_pod_logs":
v.validateLogOperation(inputs, result)
case "k8s_create_configmap":
v.validateConfigMapOperation(inputs, result)
case "k8s_delete_pod":
v.validateDeleteOperation(inputs, result)
case "k8s_list_pods":
v.validateListOperation(inputs, result)
default:
result.Valid = false
result.Errors = append(result.Errors, ValidationError{
Field: "toolName",
Value: toolName,
Message: "unknown tool name",
})
}
if len(result.Errors) > 0 {
result.Valid = false
}
return result
}
// validateNamespace checks if namespace parameter is valid
func (v *Validator) validateNamespace(inputs map[string]interface{}, result *ValidationResult) {
namespace, exists := inputs["namespace"]
if !exists {
result.Errors = append(result.Errors, ValidationError{
Field: "namespace",
Value: "",
Message: "namespace is required",
})
return
}
namespaceStr, ok := namespace.(string)
if !ok {
result.Errors = append(result.Errors, ValidationError{
Field: "namespace",
Value: fmt.Sprintf("%v", namespace),
Message: "namespace must be a string",
})
return
}
if !v.kubernetesNamePattern.MatchString(namespaceStr) {
result.Errors = append(result.Errors, ValidationError{
Field: "namespace",
Value: namespaceStr,
Message: "namespace must follow Kubernetes naming conventions (lowercase alphanumeric and hyphens)",
})
}
if len(namespaceStr) > 63 {
result.Errors = append(result.Errors, ValidationError{
Field: "namespace",
Value: namespaceStr,
Message: "namespace must be 63 characters or less",
})
}
}
// validateResourceName checks if name parameter is valid
func (v *Validator) validateResourceName(inputs map[string]interface{}, result *ValidationResult) {
name, exists := inputs["name"]
if !exists {
result.Errors = append(result.Errors, ValidationError{
Field: "name",
Value: "",
Message: "name is required",
})
return
}
nameStr, ok := name.(string)
if !ok {
result.Errors = append(result.Errors, ValidationError{
Field: "name",
Value: fmt.Sprintf("%v", name),
Message: "name must be a string",
})
return
}
if !v.kubernetesNamePattern.MatchString(nameStr) {
result.Errors = append(result.Errors, ValidationError{
Field: "name",
Value: nameStr,
Message: "name must follow Kubernetes naming conventions (lowercase alphanumeric and hyphens)",
})
}
if len(nameStr) > 253 {
result.Errors = append(result.Errors, ValidationError{
Field: "name",
Value: nameStr,
Message: "name must be 253 characters or less",
})
}
}
// validateScaleOperation validates scaling-specific parameters
func (v *Validator) validateScaleOperation(inputs map[string]interface{}, result *ValidationResult) {
// Validate replicas
replicas, exists := inputs["replicas"]
if !exists {
result.Errors = append(result.Errors, ValidationError{
Field: "replicas",
Value: "",
Message: "replicas is required for scaling operations",
})
return
}
// Handle both int and float64 (JSON numbers can be float64)
var replicasInt int
switch r := replicas.(type) {
case int:
replicasInt = r
case float64:
replicasInt = int(r)
default:
result.Errors = append(result.Errors, ValidationError{
Field: "replicas",
Value: fmt.Sprintf("%v", replicas),
Message: "replicas must be an integer",
})
return
}
if replicasInt < 0 || replicasInt > 100 {
result.Errors = append(result.Errors, ValidationError{
Field: "replicas",
Value: fmt.Sprintf("%d", replicasInt),
Message: "replicas must be between 0 and 100",
})
}
v.validateConfirmation(inputs, result)
}
// validateRestartOperation validates restart-specific parameters
func (v *Validator) validateRestartOperation(inputs map[string]interface{}, result *ValidationResult) {
v.validateConfirmation(inputs, result)
}
// validateLogOperation validates log retrieval parameters
func (v *Validator) validateLogOperation(inputs map[string]interface{}, result *ValidationResult) {
// Validate optional tailLines
if tailLines, exists := inputs["tailLines"]; exists {
var tailLinesInt int
switch t := tailLines.(type) {
case int:
tailLinesInt = t
case float64:
tailLinesInt = int(t)
default:
result.Errors = append(result.Errors, ValidationError{
Field: "tailLines",
Value: fmt.Sprintf("%v", tailLines),
Message: "tailLines must be an integer",
})
return
}
if tailLinesInt < 1 || tailLinesInt > 10000 {
result.Errors = append(result.Errors, ValidationError{
Field: "tailLines",
Value: fmt.Sprintf("%d", tailLinesInt),
Message: "tailLines must be between 1 and 10000",
})
}
}
// Validate optional sinceSeconds
if sinceSeconds, exists := inputs["sinceSeconds"]; exists {
var sinceSecondsInt int
switch s := sinceSeconds.(type) {
case int:
sinceSecondsInt = s
case float64:
sinceSecondsInt = int(s)
default:
result.Errors = append(result.Errors, ValidationError{
Field: "sinceSeconds",
Value: fmt.Sprintf("%v", sinceSeconds),
Message: "sinceSeconds must be an integer",
})
return
}
if sinceSecondsInt < 1 || sinceSecondsInt > 86400 {
result.Errors = append(result.Errors, ValidationError{
Field: "sinceSeconds",
Value: fmt.Sprintf("%d", sinceSecondsInt),
Message: "sinceSeconds must be between 1 and 86400 (24 hours)",
})
}
}
// Validate optional container name
if container, exists := inputs["container"]; exists {
containerStr, ok := container.(string)
if !ok {
result.Errors = append(result.Errors, ValidationError{
Field: "container",
Value: fmt.Sprintf("%v", container),
Message: "container must be a string",
})
return
}
if !v.kubernetesNamePattern.MatchString(containerStr) {
result.Errors = append(result.Errors, ValidationError{
Field: "container",
Value: containerStr,
Message: "container name must follow Kubernetes naming conventions",
})
}
}
}
// validateConfigMapOperation validates ConfigMap creation parameters
func (v *Validator) validateConfigMapOperation(inputs map[string]interface{}, result *ValidationResult) {
// Validate data field
data, exists := inputs["data"]
if !exists {
result.Errors = append(result.Errors, ValidationError{
Field: "data",
Value: "",
Message: "data is required for ConfigMap operations",
})
return
}
dataMap, ok := data.(map[string]interface{})
if !ok {
result.Errors = append(result.Errors, ValidationError{
Field: "data",
Value: fmt.Sprintf("%v", data),
Message: "data must be an object with string keys and values",
})
return
}
if len(dataMap) == 0 {
result.Errors = append(result.Errors, ValidationError{
Field: "data",
Value: "{}",
Message: "data cannot be empty",
})
}
// Validate each data key and value
for key, value := range dataMap {
if key == "" {
result.Errors = append(result.Errors, ValidationError{
Field: "data.key",
Value: key,
Message: "data keys cannot be empty",
})
}
if _, ok := value.(string); !ok {
result.Errors = append(result.Errors, ValidationError{
Field: fmt.Sprintf("data.%s", key),
Value: fmt.Sprintf("%v", value),
Message: "data values must be strings",
})
}
}
// Validate optional labels
if labels, exists := inputs["labels"]; exists {
labelsMap, ok := labels.(map[string]interface{})
if !ok {
result.Errors = append(result.Errors, ValidationError{
Field: "labels",
Value: fmt.Sprintf("%v", labels),
Message: "labels must be an object with string keys and values",
})
return
}
for key, value := range labelsMap {
if !isValidLabelKey(key) {
result.Errors = append(result.Errors, ValidationError{
Field: "labels.key",
Value: key,
Message: "label key is invalid",
})
}
if _, ok := value.(string); !ok {
result.Errors = append(result.Errors, ValidationError{
Field: fmt.Sprintf("labels.%s", key),
Value: fmt.Sprintf("%v", value),
Message: "label values must be strings",
})
}
}
}
}
// validateDeleteOperation validates deletion parameters
func (v *Validator) validateDeleteOperation(inputs map[string]interface{}, result *ValidationResult) {
v.validateConfirmation(inputs, result)
// Validate optional force parameter
if force, exists := inputs["force"]; exists {
if _, ok := force.(bool); !ok {
result.Errors = append(result.Errors, ValidationError{
Field: "force",
Value: fmt.Sprintf("%v", force),
Message: "force must be a boolean",
})
}
}
}
// validateConfirmation ensures dangerous operations require explicit confirmation
func (v *Validator) validateConfirmation(inputs map[string]interface{}, result *ValidationResult) {
confirm, exists := inputs["confirm"]
if !exists {
result.Errors = append(result.Errors, ValidationError{
Field: "confirm",
Value: "",
Message: "confirmation is required for this operation",
})
return
}
confirmBool, ok := confirm.(bool)
if !ok {
result.Errors = append(result.Errors, ValidationError{
Field: "confirm",
Value: fmt.Sprintf("%v", confirm),
Message: "confirm must be a boolean",
})
return
}
if !confirmBool {
result.Errors = append(result.Errors, ValidationError{
Field: "confirm",
Value: "false",
Message: "you must set confirm=true to perform this operation",
})
}
}
// validateListOperation validates list operation parameters
func (v *Validator) validateListOperation(inputs map[string]interface{}, result *ValidationResult) {
// For list operations, we only need namespace validation which is already done in common validation
// No additional validation required for listing pods
}
// isValidLabelKey validates Kubernetes label key format
func isValidLabelKey(key string) bool {
if len(key) == 0 || len(key) > 63 {
return false
}
// Check for optional prefix
parts := strings.Split(key, "/")
if len(parts) > 2 {
return false
}
// Validate each part
for _, part := range parts {
if part == "" {
return false
}
// Basic validation - could be more comprehensive
if !regexp.MustCompile(`^[a-zA-Z0-9]([a-zA-Z0-9._-]*[a-zA-Z0-9])?$`).MatchString(part) {
return false
}
}
return true
}