-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
resource_security_utm_policy.go
555 lines (512 loc) · 18 KB
/
resource_security_utm_policy.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
package junos
import (
"context"
"fmt"
"strconv"
"strings"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
)
type utmPolicyOptions struct {
name string
antiSpamSMTPProfile string
webFilteringProfile string
antiVirus []map[string]interface{}
contentFiltering []map[string]interface{}
trafficSessionsPerClient []map[string]interface{}
}
func resourceSecurityUtmPolicy() *schema.Resource {
return &schema.Resource{
CreateContext: resourceSecurityUtmPolicyCreate,
ReadContext: resourceSecurityUtmPolicyRead,
UpdateContext: resourceSecurityUtmPolicyUpdate,
DeleteContext: resourceSecurityUtmPolicyDelete,
Importer: &schema.ResourceImporter{
State: resourceSecurityUtmPolicyImport,
},
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
ForceNew: true,
Required: true,
},
"anti_spam_smtp_profile": {
Type: schema.TypeString,
Optional: true,
},
"anti_virus": {
Type: schema.TypeList,
Optional: true,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"ftp_download_profile": {
Type: schema.TypeString,
Optional: true,
},
"ftp_upload_profile": {
Type: schema.TypeString,
Optional: true,
},
"http_profile": {
Type: schema.TypeString,
Optional: true,
},
"imap_profile": {
Type: schema.TypeString,
Optional: true,
},
"pop3_profile": {
Type: schema.TypeString,
Optional: true,
},
"smtp_profile": {
Type: schema.TypeString,
Optional: true,
},
},
},
},
"content_filtering": {
Type: schema.TypeList,
Optional: true,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"ftp_download_profile": {
Type: schema.TypeString,
Optional: true,
},
"ftp_upload_profile": {
Type: schema.TypeString,
Optional: true,
},
"http_profile": {
Type: schema.TypeString,
Optional: true,
},
"imap_profile": {
Type: schema.TypeString,
Optional: true,
},
"pop3_profile": {
Type: schema.TypeString,
Optional: true,
},
"smtp_profile": {
Type: schema.TypeString,
Optional: true,
},
},
},
},
"traffic_sessions_per_client": {
Type: schema.TypeList,
Optional: true,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"limit": {
Type: schema.TypeInt,
Optional: true,
ValidateFunc: validation.IntBetween(0, 2000),
Default: -1,
},
"over_limit": {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.StringInSlice([]string{"block", "log-and-permit"}, false),
},
},
},
},
"web_filtering_profile": {
Type: schema.TypeString,
Optional: true,
},
},
}
}
func resourceSecurityUtmPolicyCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics {
sess := m.(*Session)
if sess.junosFakeCreateSetFile != "" {
if err := setUtmPolicy(d, m, nil); err != nil {
return diag.FromErr(err)
}
d.SetId(d.Get("name").(string))
return nil
}
jnprSess, err := sess.startNewSession()
if err != nil {
return diag.FromErr(err)
}
defer sess.closeSession(jnprSess)
if !checkCompatibilitySecurity(jnprSess) {
return diag.FromErr(fmt.Errorf("security utm utm-policy "+
"not compatible with Junos device %s", jnprSess.SystemInformation.HardwareModel))
}
sess.configLock(jnprSess)
var diagWarns diag.Diagnostics
utmPolicyExists, err := checkUtmPolicysExists(d.Get("name").(string), m, jnprSess)
if err != nil {
appendDiagWarns(&diagWarns, sess.configClear(jnprSess))
return append(diagWarns, diag.FromErr(err)...)
}
if utmPolicyExists {
appendDiagWarns(&diagWarns, sess.configClear(jnprSess))
return append(diagWarns,
diag.FromErr(fmt.Errorf("security utm utm-policy %v already exists", d.Get("name").(string)))...)
}
if err := setUtmPolicy(d, m, jnprSess); err != nil {
appendDiagWarns(&diagWarns, sess.configClear(jnprSess))
return append(diagWarns, diag.FromErr(err)...)
}
warns, err := sess.commitConf("create resource junos_security_utm_policy", jnprSess)
appendDiagWarns(&diagWarns, warns)
if err != nil {
appendDiagWarns(&diagWarns, sess.configClear(jnprSess))
return append(diagWarns, diag.FromErr(err)...)
}
utmPolicyExists, err = checkUtmPolicysExists(d.Get("name").(string), m, jnprSess)
if err != nil {
return append(diagWarns, diag.FromErr(err)...)
}
if utmPolicyExists {
d.SetId(d.Get("name").(string))
} else {
return append(diagWarns, diag.FromErr(fmt.Errorf("security utm utm-policy %v "+
"not exists after commit => check your config", d.Get("name").(string)))...)
}
return append(diagWarns, resourceSecurityUtmPolicyReadWJnprSess(d, m, jnprSess)...)
}
func resourceSecurityUtmPolicyRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics {
sess := m.(*Session)
jnprSess, err := sess.startNewSession()
if err != nil {
return diag.FromErr(err)
}
defer sess.closeSession(jnprSess)
return resourceSecurityUtmPolicyReadWJnprSess(d, m, jnprSess)
}
func resourceSecurityUtmPolicyReadWJnprSess(
d *schema.ResourceData, m interface{}, jnprSess *NetconfObject) diag.Diagnostics {
mutex.Lock()
utmPolicyOptions, err := readUtmPolicy(d.Get("name").(string), m, jnprSess)
mutex.Unlock()
if err != nil {
return diag.FromErr(err)
}
if utmPolicyOptions.name == "" {
d.SetId("")
} else {
fillUtmPolicyData(d, utmPolicyOptions)
}
return nil
}
func resourceSecurityUtmPolicyUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics {
d.Partial(true)
sess := m.(*Session)
if sess.junosFakeUpdateAlso {
if err := delUtmPolicy(d.Get("name").(string), m, nil); err != nil {
return diag.FromErr(err)
}
if err := setUtmPolicy(d, m, nil); err != nil {
return diag.FromErr(err)
}
d.Partial(false)
return nil
}
jnprSess, err := sess.startNewSession()
if err != nil {
return diag.FromErr(err)
}
defer sess.closeSession(jnprSess)
sess.configLock(jnprSess)
var diagWarns diag.Diagnostics
if err := delUtmPolicy(d.Get("name").(string), m, jnprSess); err != nil {
appendDiagWarns(&diagWarns, sess.configClear(jnprSess))
return append(diagWarns, diag.FromErr(err)...)
}
if err := setUtmPolicy(d, m, jnprSess); err != nil {
appendDiagWarns(&diagWarns, sess.configClear(jnprSess))
return append(diagWarns, diag.FromErr(err)...)
}
warns, err := sess.commitConf("update resource junos_security_utm_policy", jnprSess)
appendDiagWarns(&diagWarns, warns)
if err != nil {
appendDiagWarns(&diagWarns, sess.configClear(jnprSess))
return append(diagWarns, diag.FromErr(err)...)
}
d.Partial(false)
return append(diagWarns, resourceSecurityUtmPolicyReadWJnprSess(d, m, jnprSess)...)
}
func resourceSecurityUtmPolicyDelete(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics {
sess := m.(*Session)
if sess.junosFakeDeleteAlso {
if err := delUtmPolicy(d.Get("name").(string), m, nil); err != nil {
return diag.FromErr(err)
}
return nil
}
jnprSess, err := sess.startNewSession()
if err != nil {
return diag.FromErr(err)
}
defer sess.closeSession(jnprSess)
sess.configLock(jnprSess)
var diagWarns diag.Diagnostics
if err := delUtmPolicy(d.Get("name").(string), m, jnprSess); err != nil {
appendDiagWarns(&diagWarns, sess.configClear(jnprSess))
return append(diagWarns, diag.FromErr(err)...)
}
warns, err := sess.commitConf("delete resource junos_security_utm_policy", jnprSess)
appendDiagWarns(&diagWarns, warns)
if err != nil {
appendDiagWarns(&diagWarns, sess.configClear(jnprSess))
return append(diagWarns, diag.FromErr(err)...)
}
return diagWarns
}
func resourceSecurityUtmPolicyImport(d *schema.ResourceData, m interface{}) ([]*schema.ResourceData, error) {
sess := m.(*Session)
jnprSess, err := sess.startNewSession()
if err != nil {
return nil, err
}
defer sess.closeSession(jnprSess)
result := make([]*schema.ResourceData, 1)
utmPolicyExists, err := checkUtmPolicysExists(d.Id(), m, jnprSess)
if err != nil {
return nil, err
}
if !utmPolicyExists {
return nil, fmt.Errorf("don't find security utm utm-policy with id '%v' (id must be <name>)", d.Id())
}
utmPolicyOptions, err := readUtmPolicy(d.Id(), m, jnprSess)
if err != nil {
return nil, err
}
fillUtmPolicyData(d, utmPolicyOptions)
result[0] = d
return result, nil
}
func checkUtmPolicysExists(policy string, m interface{}, jnprSess *NetconfObject) (bool, error) {
sess := m.(*Session)
showConfig, err := sess.command("show configuration security utm utm-policy \""+policy+"\" | display set", jnprSess)
if err != nil {
return false, err
}
if showConfig == emptyWord {
return false, nil
}
return true, nil
}
func setUtmPolicy(d *schema.ResourceData, m interface{}, jnprSess *NetconfObject) error {
sess := m.(*Session)
configSet := make([]string, 0)
setPrefix := "set security utm utm-policy \"" + d.Get("name").(string) + "\" "
if d.Get("anti_spam_smtp_profile").(string) != "" {
configSet = append(configSet, setPrefix+"anti-spam smtp-profile \""+d.Get("anti_spam_smtp_profile").(string)+"\"")
}
for _, v := range d.Get("anti_virus").([]interface{}) {
if v != nil {
antiVirus := v.(map[string]interface{})
setPrefixAntiVirus := setPrefix + "anti-virus "
if antiVirus["ftp_download_profile"].(string) != "" {
configSet = append(configSet, setPrefixAntiVirus+"ftp download-profile \""+
antiVirus["ftp_download_profile"].(string)+"\"")
}
if antiVirus["ftp_upload_profile"].(string) != "" {
configSet = append(configSet, setPrefixAntiVirus+"ftp upload-profile \""+
antiVirus["ftp_upload_profile"].(string)+"\"")
}
if antiVirus["http_profile"].(string) != "" {
configSet = append(configSet, setPrefixAntiVirus+"http-profile \""+
antiVirus["http_profile"].(string)+"\"")
}
if antiVirus["imap_profile"].(string) != "" {
configSet = append(configSet, setPrefixAntiVirus+"imap-profile \""+
antiVirus["imap_profile"].(string)+"\"")
}
if antiVirus["pop3_profile"].(string) != "" {
configSet = append(configSet, setPrefixAntiVirus+"pop3-profile \""+
antiVirus["pop3_profile"].(string)+"\"")
}
if antiVirus["smtp_profile"].(string) != "" {
configSet = append(configSet, setPrefixAntiVirus+"smtp-profile \""+
antiVirus["smtp_profile"].(string)+"\"")
}
} else {
return fmt.Errorf("anti_virus block is empty")
}
}
for _, v := range d.Get("content_filtering").([]interface{}) {
if v != nil {
contentFiltering := v.(map[string]interface{})
setPrefixContentFiltering := setPrefix + "content-filtering "
if contentFiltering["ftp_download_profile"].(string) != "" {
configSet = append(configSet, setPrefixContentFiltering+"ftp download-profile \""+
contentFiltering["ftp_download_profile"].(string)+"\"")
}
if contentFiltering["ftp_upload_profile"].(string) != "" {
configSet = append(configSet, setPrefixContentFiltering+"ftp upload-profile \""+
contentFiltering["ftp_upload_profile"].(string)+"\"")
}
if contentFiltering["http_profile"].(string) != "" {
configSet = append(configSet, setPrefixContentFiltering+"http-profile \""+
contentFiltering["http_profile"].(string)+"\"")
}
if contentFiltering["imap_profile"].(string) != "" {
configSet = append(configSet, setPrefixContentFiltering+"imap-profile \""+
contentFiltering["imap_profile"].(string)+"\"")
}
if contentFiltering["pop3_profile"].(string) != "" {
configSet = append(configSet, setPrefixContentFiltering+"pop3-profile \""+
contentFiltering["pop3_profile"].(string)+"\"")
}
if contentFiltering["smtp_profile"].(string) != "" {
configSet = append(configSet, setPrefixContentFiltering+"smtp-profile \""+
contentFiltering["smtp_profile"].(string)+"\"")
}
} else {
return fmt.Errorf("content_filtering block is empty")
}
}
for _, v := range d.Get("traffic_sessions_per_client").([]interface{}) {
trafficSessPerClient := v.(map[string]interface{})
if trafficSessPerClient["limit"].(int) != -1 {
configSet = append(configSet, setPrefix+"traffic-options sessions-per-client limit "+
strconv.Itoa(trafficSessPerClient["limit"].(int)))
}
if trafficSessPerClient["over_limit"].(string) != "" {
configSet = append(configSet, setPrefix+"traffic-options sessions-per-client over-limit "+
trafficSessPerClient["over_limit"].(string))
}
if len(configSet) == 0 || !strings.HasPrefix(configSet[len(configSet)-1],
setPrefix+"traffic-options sessions-per-client") {
return fmt.Errorf("traffic_sessions_per_client block is empty")
}
}
if d.Get("web_filtering_profile").(string) != "" {
configSet = append(configSet, setPrefix+"web-filtering http-profile \""+
d.Get("web_filtering_profile").(string)+"\"")
}
return sess.configSet(configSet, jnprSess)
}
func readUtmPolicy(policy string, m interface{}, jnprSess *NetconfObject) (
utmPolicyOptions, error) {
sess := m.(*Session)
var confRead utmPolicyOptions
showConfig, err := sess.command("show configuration"+
" security utm utm-policy \""+policy+"\" | display set relative", jnprSess)
if err != nil {
return confRead, err
}
if showConfig != emptyWord {
confRead.name = policy
for _, item := range strings.Split(showConfig, "\n") {
if strings.Contains(item, "<configuration-output>") {
continue
}
if strings.Contains(item, "</configuration-output>") {
break
}
itemTrim := strings.TrimPrefix(item, setLineStart)
switch {
case strings.HasPrefix(itemTrim, "anti-spam smtp-profile "):
confRead.antiSpamSMTPProfile = strings.Trim(strings.TrimPrefix(itemTrim, "anti-spam smtp-profile "), "\"")
case strings.HasPrefix(itemTrim, "anti-virus "):
if len(confRead.antiVirus) == 0 {
confRead.antiVirus = append(confRead.antiVirus, genMapUtmPolicyProfile())
}
readUtmPolicyProfile(strings.TrimPrefix(itemTrim, "anti-virus "), confRead.antiVirus[0])
case strings.HasPrefix(itemTrim, "content-filtering "):
if len(confRead.contentFiltering) == 0 {
confRead.contentFiltering = append(confRead.contentFiltering, genMapUtmPolicyProfile())
}
readUtmPolicyProfile(strings.TrimPrefix(itemTrim, "content-filtering "), confRead.contentFiltering[0])
case strings.HasPrefix(itemTrim, "traffic-options sessions-per-client "):
if len(confRead.trafficSessionsPerClient) == 0 {
confRead.trafficSessionsPerClient = append(confRead.trafficSessionsPerClient, map[string]interface{}{
"limit": -1,
"over_limit": "",
})
}
if strings.HasPrefix(itemTrim, "traffic-options sessions-per-client limit ") {
var err error
confRead.trafficSessionsPerClient[0]["limit"], err = strconv.Atoi(
strings.TrimPrefix(itemTrim, "traffic-options sessions-per-client limit "))
if err != nil {
return confRead, fmt.Errorf("failed to convert value from '%s' to integer : %w", itemTrim, err)
}
}
if strings.HasPrefix(itemTrim, "traffic-options sessions-per-client over-limit ") {
confRead.trafficSessionsPerClient[0]["over_limit"] = strings.TrimPrefix(
itemTrim, "traffic-options sessions-per-client over-limit ")
}
case strings.HasPrefix(itemTrim, "web-filtering http-profile "):
confRead.webFilteringProfile = strings.Trim(strings.TrimPrefix(itemTrim, "web-filtering http-profile "), "\"")
}
}
}
return confRead, nil
}
func genMapUtmPolicyProfile() map[string]interface{} {
return map[string]interface{}{
"ftp_download_profile": "",
"ftp_upload_profile": "",
"http_profile": "",
"imap_profile": "",
"pop3_profile": "",
"smtp_profile": "",
}
}
func readUtmPolicyProfile(itemTrimPolicyProfile string, profileMap map[string]interface{}) {
switch {
case strings.HasPrefix(itemTrimPolicyProfile, "ftp download-profile "):
profileMap["ftp_download_profile"] = strings.Trim(
strings.TrimPrefix(itemTrimPolicyProfile, "ftp download-profile "), "\"")
case strings.HasPrefix(itemTrimPolicyProfile, "ftp upload-profile "):
profileMap["ftp_upload_profile"] = strings.Trim(
strings.TrimPrefix(itemTrimPolicyProfile, "ftp upload-profile "), "\"")
case strings.HasPrefix(itemTrimPolicyProfile, "http-profile "):
profileMap["http_profile"] = strings.Trim(
strings.TrimPrefix(itemTrimPolicyProfile, "http-profile "), "\"")
case strings.HasPrefix(itemTrimPolicyProfile, "imap-profile "):
profileMap["imap_profile"] = strings.Trim(
strings.TrimPrefix(itemTrimPolicyProfile, "imap-profile "), "\"")
case strings.HasPrefix(itemTrimPolicyProfile, "pop3-profile "):
profileMap["pop3_profile"] = strings.Trim(
strings.TrimPrefix(itemTrimPolicyProfile, "pop3-profile "), "\"")
case strings.HasPrefix(itemTrimPolicyProfile, "smtp-profile "):
profileMap["smtp_profile"] = strings.Trim(
strings.TrimPrefix(itemTrimPolicyProfile, "smtp-profile "), "\"")
}
}
func delUtmPolicy(policy string, m interface{}, jnprSess *NetconfObject) error {
sess := m.(*Session)
configSet := make([]string, 0, 1)
configSet = append(configSet, "delete security utm utm-policy \""+policy+"\"")
return sess.configSet(configSet, jnprSess)
}
func fillUtmPolicyData(d *schema.ResourceData, utmPolicyOptions utmPolicyOptions) {
if tfErr := d.Set("name", utmPolicyOptions.name); tfErr != nil {
panic(tfErr)
}
if tfErr := d.Set("anti_spam_smtp_profile", utmPolicyOptions.antiSpamSMTPProfile); tfErr != nil {
panic(tfErr)
}
if tfErr := d.Set("anti_virus", utmPolicyOptions.antiVirus); tfErr != nil {
panic(tfErr)
}
if tfErr := d.Set("content_filtering", utmPolicyOptions.contentFiltering); tfErr != nil {
panic(tfErr)
}
if tfErr := d.Set("traffic_sessions_per_client", utmPolicyOptions.trafficSessionsPerClient); tfErr != nil {
panic(tfErr)
}
if tfErr := d.Set("web_filtering_profile", utmPolicyOptions.webFilteringProfile); tfErr != nil {
panic(tfErr)
}
}