-
Notifications
You must be signed in to change notification settings - Fork 97
/
firewall.go
executable file
·867 lines (765 loc) · 28 KB
/
firewall.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
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
//go:build windows && amd64
// +build windows,amd64
package winapi
import (
"fmt"
"log"
"runtime"
ole "github.com/go-ole/go-ole"
"github.com/go-ole/go-ole/oleutil"
"github.com/scjalliance/comshim"
)
// Firewall related API constants.
const (
NET_FW_IP_PROTOCOL_TCP = 6
NET_FW_IP_PROTOCOL_UDP = 17
NET_FW_IP_PROTOCOL_ICMPv4 = 1
NET_FW_IP_PROTOCOL_ICMPv6 = 58
NET_FW_IP_PROTOCOL_ANY = 256
NET_FW_RULE_DIR_IN = 1
NET_FW_RULE_DIR_OUT = 2
NET_FW_ACTION_BLOCK = 0
NET_FW_ACTION_ALLOW = 1
// NET_FW_PROFILE2_CURRENT is not real API constant, just helper used in FW functions.
// It can mean one profile or multiple (even all) profiles. It depends on which profiles
// are currently in use. Every active interface can have it's own profile. F.e.: Public for Wifi,
// Domain for VPN, and Private for LAN. All at the same time.
NET_FW_PROFILE2_CURRENT = 0
NET_FW_PROFILE2_DOMAIN = 1
NET_FW_PROFILE2_PRIVATE = 2
NET_FW_PROFILE2_PUBLIC = 4
NET_FW_PROFILE2_ALL = 2147483647
)
// Firewall Rule Groups
// Use this magical strings instead of group names. It will work on all language Windows versions.
// You can find more string locations here:
// https://windows10dll.nirsoft.net/firewallapi_dll.html
const (
NET_FW_FILE_AND_PRINTER_SHARING = "@FirewallAPI.dll,-28502"
NET_FW_REMOTE_DESKTOP = "@FirewallAPI.dll,-28752"
)
// FWProfiles represents currently active Firewall profile(-s).
type FWProfiles struct {
Domain, Private, Public bool
}
// FWRule represents Firewall Rule.
type FWRule struct {
Name, Description, ApplicationName, ServiceName string
LocalPorts, RemotePorts string
// LocalAddresses, RemoteAddresses are always returned with netmask, f.e.:
// `10.10.1.1/255.255.255.0`
LocalAddresses, RemoteAddresses string
// ICMPTypesAndCodes is string. You can find define multiple codes separated by ":" (colon).
// Types are listed here:
// https://www.iana.org/assignments/icmp-parameters/icmp-parameters.xhtml
// So to allow ping set it to:
// "0"
ICMPTypesAndCodes string
Grouping string
// InterfaceTypes can be:
// "LAN", "Wireless", "RemoteAccess", "All"
// You can add multiple deviding with comma:
// "LAN, Wireless"
InterfaceTypes string
Protocol, Direction, Action, Profiles int32
Enabled, EdgeTraversal bool
}
// InProfiles returns FWProfiles struct, so You
// can check in which Profiles rule is active.
//
// As alternative You can analyze FWRule.Profile value.
func (r *FWRule) InProfiles() FWProfiles {
if r.Profiles == NET_FW_PROFILE2_ALL {
return FWProfiles{true, true, true}
}
return firewallParseProfiles(r.Profiles)
}
// FirewallRuleAdd creates Inbound rule for given port or ports.
//
// Rule Name is mandatory and must not contain the "|" character.
//
// Description and Group are optional. Description also can not contain the "|" character.
//
// Port(-s) is mandatory.
// Ports string can look like:
// "5800, 5900, 6810-6812"
//
// Protocol will usually be:
// NET_FW_IP_PROTOCOL_TCP
// // or
// NET_FW_IP_PROTOCOL_UDP
//
// Profile will decide in which profiles rule will apply. You can use:
// NET_FW_PROFILE2_CURRENT // adds rule to currently used FW Profile(-s)
// NET_FW_PROFILE2_ALL // adds rule to all profiles
// NET_FW_PROFILE2_DOMAIN|NET_FW_PROFILE2_PRIVATE // rule in Private and Domain profile
func FirewallRuleAdd(name, description, group, ports string, protocol, profile int32) (bool, error) {
if ports == "" {
return false, fmt.Errorf("empty FW Rule ports, it is mandatory")
}
return firewallRuleAdd(name, description, group, "", "", ports, "", "", "", "", protocol, 0, NET_FW_ACTION_ALLOW, profile, true, false)
}
// FirewallRuleAddApplication creates Inbound rule for given application.
//
// Rule Name is mandatory and must not contain the "|" character.
//
// Description and Group are optional. Description also can not contain the "|" character.
//
// AppPath is mandatory.
// AppPath string should look like:
// `%ProgramFiles% (x86)\RemoteControl\winvnc.exe`
// Protocol will usually be:
// NET_FW_IP_PROTOCOL_TCP
// // or
// NET_FW_IP_PROTOCOL_UDP
//
// Profile will decide in which profiles rule will apply. You can use:
// NET_FW_PROFILE2_CURRENT // adds rule to currently used FW Profile
// NET_FW_PROFILE2_ALL // adds rule to all profiles
// NET_FW_PROFILE2_DOMAIN|NET_FW_PROFILE2_PRIVATE // rule in Private and Domain profile
func FirewallRuleAddApplication(name, description, group, appPath string, profile int32) (bool, error) {
if appPath == "" {
return false, fmt.Errorf("empty FW Rule appPath, it is mandatory")
}
return firewallRuleAdd(name, description, group, appPath, "", "", "", "", "", "", 0, 0, NET_FW_ACTION_ALLOW, profile, true, false)
}
// FirewallRuleCreate is deprecated, use FirewallRuleAddApplication instead.
func FirewallRuleCreate(name, description, group, appPath, port string, protocol int32) (bool, error) {
return firewallRuleAdd(name, description, group, appPath, "", port, "", "", "", "", protocol, 0, NET_FW_ACTION_ALLOW, NET_FW_PROFILE2_CURRENT, true, false)
}
// FirewallPingEnable creates Inbound ICMPv4 rule which allows to answer echo requests.
//
// Rule Name is mandatory and must not contain the "|" character.
//
// Description and Group are optional. Description also can not contain the "|" character.
//
// RemoteAddresses allows you to limit pinging to f.e.:
// "10.10.10.0/24"
// This will be internally converted to:
// "10.10.10.0/255.255.255.0"
//
// Profile will decide in which profiles rule will apply. You can use:
// NET_FW_PROFILE2_CURRENT // adds rule to currently used FW Profile
// NET_FW_PROFILE2_ALL // adds rule to all profiles
// NET_FW_PROFILE2_DOMAIN|NET_FW_PROFILE2_PRIVATE // rule in Private and Domain profile
func FirewallPingEnable(name, description, group, remoteAddresses string, profile int32) (bool, error) {
return firewallRuleAdd(name, description, group, "", "", "", "", "", remoteAddresses, "8:*", NET_FW_IP_PROTOCOL_ICMPv4, 0, NET_FW_ACTION_ALLOW, profile, true, false)
}
// FirewallRuleAddAdvanced allows to modify almost all available FW Rule parameters.
// You probably do not want to use this, as function allows to create any rule, even opening all ports
// in given profile. So use with caution.
//
// HINT: Use FirewallRulesGet to get examples how rules can be defined.
func FirewallRuleAddAdvanced(rule FWRule) (bool, error) {
return firewallRuleAdd(rule.Name, rule.Description, rule.Grouping, rule.ApplicationName, rule.ServiceName,
rule.LocalPorts, rule.RemotePorts, rule.LocalAddresses, rule.RemoteAddresses, rule.ICMPTypesAndCodes,
rule.Protocol, rule.Direction, rule.Action, rule.Profiles, rule.Enabled, rule.EdgeTraversal)
}
// FirewallRuleDelete allows you to delete existing rule by name.
// If multiple rules with the same name exists, first (random?) is
// deleted. You can run this function in loop if You want to remove
// all of them:
// var err error
// for {
// if ok, err := wapi.FirewallRuleDelete("anydesk.exe"); !ok || err != nil {
// break
// }
// }
// if err != nil {
// fmt.Println(err)
// }
func FirewallRuleDelete(name string) (bool, error) {
if name == "" {
return false, fmt.Errorf("empty FW Rule name, name is mandatory")
}
runtime.LockOSThread()
defer runtime.UnlockOSThread()
u, fwPolicy, err := firewallAPIInit()
if err != nil {
return false, err
}
defer firewallAPIRelease(u, fwPolicy)
unknownRules, err := oleutil.GetProperty(fwPolicy, "Rules")
if err != nil {
return false, fmt.Errorf("Failed to get Rules: %s", err)
}
rules := unknownRules.ToIDispatch()
if ok, err := FirewallRuleExistsByName(rules, name); err != nil {
return false, fmt.Errorf("Error while checking rules for duplicate: %s", err)
} else if !ok {
return false, nil
}
if _, err := oleutil.CallMethod(rules, "Remove", name); err != nil {
return false, fmt.Errorf("Error removing Rule: %s", err)
}
return true, nil
}
// FirewallRuleGet returns firewall rule by given name.
// Error is returned if there is problem calling API.
//
// If rule is not found, no error is returned, so check:
// if len(returnedRule) == 0 {
// if err != nil {
// fmt.Println(err)
// } else {
// fmt.Println("rule not found")
// }
// }
func FirewallRuleGet(name string) (FWRule, error) {
var rule FWRule
u, fwPolicy, err := firewallAPIInit()
if err != nil {
return rule, err
}
defer firewallAPIRelease(u, fwPolicy)
ur, ep, enum, err := firewallRulesEnum(fwPolicy)
if err != nil {
return rule, err
}
defer firewallRulesEnumRelease(ur, ep, enum)
for itemRaw, length, err := enum.Next(1); length > 0; itemRaw, length, err = enum.Next(1) {
if err != nil {
return rule, fmt.Errorf("failed to seek next Rule item: %s", err)
}
item := itemRaw.ToIDispatch()
n, err := firewallRuleName(item)
if err != nil {
return rule, err
}
if name == n {
rule, err = firewallRuleParams(itemRaw)
if err != nil {
return rule, err
}
} else {
// only not matching rules can be released
item.Release()
}
}
return rule, nil
}
// FirewallRulesGet returns all rules defined in firewall.
func FirewallRulesGet() ([]FWRule, error) {
rules := make([]FWRule, 0, 1024)
u, fwPolicy, err := firewallAPIInit()
if err != nil {
return rules, err
}
defer firewallAPIRelease(u, fwPolicy)
ur, ep, enum, err := firewallRulesEnum(fwPolicy)
if err != nil {
return rules, err
}
defer firewallRulesEnumRelease(ur, ep, enum)
for itemRaw, length, err := enum.Next(1); length > 0; itemRaw, length, err = enum.Next(1) {
if err != nil {
return rules, fmt.Errorf("failed to seek next Rule item: %s", err)
}
rule, err := firewallRuleParams(itemRaw)
if err != nil {
return rules, err
}
rules = append(rules, rule)
}
return rules, nil
}
func firewallRuleName(item *ole.IDispatch) (string, error) {
name, err := oleutil.GetProperty(item, "Name")
if err != nil {
return "", fmt.Errorf("failed to get Property (Name) of Rule, err: %v", err)
}
return name.ToString(), nil
}
// firewallRuleParams retrieves all Rule parameters from API and saves them in FWRule struct.
func firewallRuleParams(itemRaw ole.VARIANT) (FWRule, error) {
var rule FWRule
item := itemRaw.ToIDispatch()
defer item.Release()
var err error
rule.Name, err = getStringProperty(item, "Name")
if err != nil {
return rule, fmt.Errorf("failed to get Property (Name) of Rule")
}
rule.Description, err = getStringProperty(item, "Description")
if err != nil {
return rule, fmt.Errorf("failed to get Property (Description) of Rule %q", rule.Name)
}
rule.ApplicationName, err = getStringProperty(item, "ApplicationName")
if err != nil {
return rule, fmt.Errorf("failed to get Property (ApplicationName) of Rule %q", rule.Name)
}
rule.ServiceName, err = getStringProperty(item, "ServiceName")
if err != nil {
return rule, fmt.Errorf("failed to get Property (ServiceName) of Rule %q", rule.Name)
}
rule.LocalPorts, err = getStringProperty(item, "LocalPorts")
if err != nil {
return rule, fmt.Errorf("failed to get Property (LocalPorts) of Rule %q", rule.Name)
}
rule.RemotePorts, err = getStringProperty(item, "RemotePorts")
if err != nil {
return rule, fmt.Errorf("failed to get Property (RemotePorts) of Rule %q", rule.Name)
}
rule.LocalAddresses, err = getStringProperty(item, "LocalAddresses")
if err != nil {
return rule, fmt.Errorf("failed to get Property (LocalAddresses) of Rule %q", rule.Name)
}
rule.RemoteAddresses, err = getStringProperty(item, "RemoteAddresses")
if err != nil {
return rule, fmt.Errorf("failed to get Property (RemoteAddresses) of Rule %q", rule.Name)
}
rule.ICMPTypesAndCodes, err = getStringProperty(item, "ICMPTypesAndCodes")
if err != nil {
return rule, fmt.Errorf("failed to get Property (ICMPTypesAndCodes) of Rule %q", rule.Name)
}
rule.Grouping, err = getStringProperty(item, "Grouping")
if err != nil {
return rule, fmt.Errorf("failed to get Property (Grouping) of Rule %q", rule.Name)
}
rule.InterfaceTypes, err = getStringProperty(item, "InterfaceTypes")
if err != nil {
return rule, fmt.Errorf("failed to get Property (InterfaceTypes) of Rule %q", rule.Name)
}
rule.Protocol, err = getInt32Property(item, "Protocol")
if err != nil {
return rule, fmt.Errorf("failed to get Property (Protocol) of Rule %q", rule.Name)
}
rule.Direction, err = getInt32Property(item, "Direction")
if err != nil {
return rule, fmt.Errorf("failed to get Property (Direction) of Rule %q", rule.Name)
}
rule.Action, err = getInt32Property(item, "Action")
if err != nil {
return rule, fmt.Errorf("failed to get Property (Action) of Rule %q", rule.Name)
}
rule.Enabled, err = getBoolProperty(item, "Enabled")
if err != nil {
return rule, fmt.Errorf("failed to get Property (Enabled) of Rule %q", rule.Name)
}
rule.EdgeTraversal, err = getBoolProperty(item, "EdgeTraversal")
if err != nil {
return rule, fmt.Errorf("failed to get Property (EdgeTraversal) of Rule %q", rule.Name)
}
rule.Profiles, err = getInt32Property(item, "Profiles")
if err != nil {
return rule, fmt.Errorf("failed to get Property (Profiles) of Rule %q", rule.Name)
}
return rule, nil
}
func getInt32Property(dispatch *ole.IDispatch, property string) (int32, error) {
val, err := oleutil.GetProperty(dispatch, property)
if err != nil {
log.Printf("failed to get dispatch property: %s \n", err.Error())
return 0, err
}
defer val.Clear()
return val.Value().(int32), nil
}
func getStringProperty(dispatch *ole.IDispatch, property string) (string, error) {
val, err := oleutil.GetProperty(dispatch, property)
if err != nil {
log.Printf("failed to get dispatch property: %s \n", err.Error())
return "", err
}
defer val.Clear()
return val.ToString(), nil
}
func getBoolProperty(dispatch *ole.IDispatch, property string) (bool, error) {
val, err := oleutil.GetProperty(dispatch, property)
if err != nil {
log.Printf("failed to get dispatch property: %s \n", err.Error())
return false, err
}
defer val.Clear()
return val.Value().(bool), nil
}
// FirewallGroupEnable allows to enable predefined firewall group. It is better
// to not use names as "File and Printer Sharing" because they are localized and
// your function will do not work on non-english Windows.
// Look at FILE_AND_PRINTER_SHARING const as example.
// This codes can be found here:
// https://windows10dll.nirsoft.net/firewallapi_dll.html
//
// You can enable group in selected FW profiles or in current,
// use something like:
// NET_FW_PROFILE2_DOMAIN|NET_FW_PROFILE2_PRIVATE
// to enable group in given profiles.
func FirewallGroupEnable(name string, profile int32) error {
return firewallGroup(name, profile, true)
}
// FirewallGroupDisable disables given group in given profiles. The same
// rules as for FirewallGroupEnable applies.
func FirewallGroupDisable(name string, profile int32) error {
return firewallGroup(name, profile, false)
}
func firewallGroup(name string, profile int32, enable bool) error {
runtime.LockOSThread()
defer runtime.UnlockOSThread()
u, fwPolicy, err := firewallAPIInit()
if err != nil {
return err
}
defer firewallAPIRelease(u, fwPolicy)
if profile == NET_FW_PROFILE2_CURRENT {
currentProfiles, err := oleutil.GetProperty(fwPolicy, "CurrentProfileTypes")
if err != nil {
return fmt.Errorf("Failed to get CurrentProfiles: %s", err)
}
profile = currentProfiles.Value().(int32)
}
if _, err := oleutil.CallMethod(fwPolicy, "EnableRuleGroup", profile, name, enable); err != nil { //currentProfiles
return fmt.Errorf("Error enabling group, %s", err)
}
return nil
}
// FirewallIsEnabled returns true if firewall is enabled for given profile.
// You can use all NET_FW_PROFILE2* constants but NET_FW_PROFILE2_ALL.
// It will return error if Firewall status can not be checked.
func FirewallIsEnabled(profile int32) (bool, error) {
u, fwPolicy, err := firewallAPIInit()
if err != nil {
return false, err
}
defer firewallAPIRelease(u, fwPolicy)
switch profile {
case NET_FW_PROFILE2_CURRENT:
currentProfiles, err := oleutil.GetProperty(fwPolicy, "CurrentProfileTypes")
if err != nil {
return false, fmt.Errorf("failed to get CurrentProfiles: %s", err)
}
profile = currentProfiles.Value().(int32)
case NET_FW_PROFILE2_ALL:
return false, fmt.Errorf("you can't use NET_FW_PROFILE2_ALL as parameter")
}
enabled, err := oleutil.GetProperty(fwPolicy, "FirewallEnabled", profile)
return enabled.Value().(bool), err
}
// FirewallEnable enables firewall for given profile.
// If firewall is enabled already for profile it will return false.
func FirewallEnable(profile int32) (bool, error) {
u, fwPolicy, err := firewallAPIInit()
if err != nil {
return false, err
}
defer firewallAPIRelease(u, fwPolicy)
enabled, err := oleutil.GetProperty(fwPolicy, "FirewallEnabled", profile)
if err != nil {
return false, err
}
if enabled.Value().(bool) {
return false, nil
}
_, err = oleutil.PutProperty(fwPolicy, "FirewallEnabled", profile, true)
if err != nil {
return false, err
}
return true, nil
}
// FirewallDisable disables firewall for given profile.
// If firewall is disabled already for profile it will return false.
func FirewallDisable(profile int32) (bool, error) {
u, fwPolicy, err := firewallAPIInit()
if err != nil {
return false, err
}
defer firewallAPIRelease(u, fwPolicy)
enabled, err := oleutil.GetProperty(fwPolicy, "FirewallEnabled", profile)
if err != nil {
return false, err
}
if !enabled.Value().(bool) {
return false, nil
}
_, err = oleutil.PutProperty(fwPolicy, "FirewallEnabled", profile, false)
if err != nil {
return false, err
}
return true, nil
}
// FirewallGetDefaultOutboundAction checks if outgoing connections without matching rules are allowed or blocked.
// Returns either NET_FW_ACTION_ALLOW or NET_FW_ACTION_BLOCK.
func FirewallGetDefaultOutboundAction(profile int32) (int32, error) {
u, fwPolicy, err := firewallAPIInit()
if err != nil {
return 0, err
}
defer firewallAPIRelease(u, fwPolicy)
action, err := oleutil.GetProperty(fwPolicy, "DefaultOutboundAction", profile)
if err != nil {
return 0, err
}
return action.Value().(int32), nil
}
// FirewallGetDefaultInboundAction checks if incoming connections without matching rules are allowed or blocked.
// Returns either NET_FW_ACTION_ALLOW or NET_FW_ACTION_BLOCK.
func FirewallGetDefaultInboundAction(profile int32) (int32, error) {
u, fwPolicy, err := firewallAPIInit()
if err != nil {
return 0, err
}
defer firewallAPIRelease(u, fwPolicy)
action, err := oleutil.GetProperty(fwPolicy, "DefaultInboundAction", profile)
if err != nil {
return 0, err
}
return action.Value().(int32), nil
}
// FirewallSetDefaultOutboundAction sets the default policy for outgoing connections.
// action must be NET_FW_ACTION_ALLOW or NET_FW_ACTION_BLOCK.
func FirewallSetDefaultOutboundAction(profile, action int32) error {
u, fwPolicy, err := firewallAPIInit()
if err != nil {
return err
}
defer firewallAPIRelease(u, fwPolicy)
_, err = oleutil.PutProperty(fwPolicy, "DefaultOutboundAction", profile, action)
return err
}
// FirewallSetDefaultInboundAction sets the default policy for incoming connections.
//// action must be NET_FW_ACTION_ALLOW or NET_FW_ACTION_BLOCK.
func FirewallSetDefaultInboundAction(profile, action int32) error {
u, fwPolicy, err := firewallAPIInit()
if err != nil {
return err
}
defer firewallAPIRelease(u, fwPolicy)
_, err = oleutil.PutProperty(fwPolicy, "DefaultInboundAction", profile, action)
return err
}
// FirewallCurrentProfiles return which profiles are currently active.
// Every active interface can have it's own profile. F.e.: Public for Wifi,
// Domain for VPN, and Private for LAN. All at the same time.
func FirewallCurrentProfiles() (FWProfiles, error) {
u, fwPolicy, err := firewallAPIInit()
if err != nil {
return FWProfiles{}, err
}
defer firewallAPIRelease(u, fwPolicy)
currentProfiles, err := oleutil.GetProperty(fwPolicy, "CurrentProfileTypes")
if err != nil {
return FWProfiles{}, fmt.Errorf("failed to get FW CurrentProfiles: %s", err)
}
cp := firewallParseProfiles(currentProfiles.Value().(int32))
if !(cp.Domain || cp.Private || cp.Public) {
// is no active profile even possible? no network?
return cp, fmt.Errorf("no active FW profile detected")
}
return cp, nil
}
// firewallParseProfiles returns FWProfiles struct which
// keeps which profiles are enabled for given integer.
func firewallParseProfiles(v int32) FWProfiles {
var p FWProfiles
if v&NET_FW_PROFILE2_DOMAIN != 0 {
p.Domain = true
}
if v&NET_FW_PROFILE2_PRIVATE != 0 {
p.Private = true
}
if v&NET_FW_PROFILE2_PUBLIC != 0 {
p.Public = true
}
return p
}
// firewallRuleAdd is universal function to add all kinds of rules.
func firewallRuleAdd(name, description, group, appPath, serviceName, ports, remotePorts, localAddresses, remoteAddresses, icmpTypes string, protocol, direction, action, profile int32, enabled, edgeTraversal bool) (bool, error) {
if name == "" {
return false, fmt.Errorf("empty FW Rule name, name is mandatory")
}
runtime.LockOSThread()
defer runtime.UnlockOSThread()
u, fwPolicy, err := firewallAPIInit()
if err != nil {
return false, err
}
defer firewallAPIRelease(u, fwPolicy)
if profile == NET_FW_PROFILE2_CURRENT {
currentProfiles, err := oleutil.GetProperty(fwPolicy, "CurrentProfileTypes")
if err != nil {
return false, fmt.Errorf("Failed to get CurrentProfiles: %s", err)
}
profile = currentProfiles.Value().(int32)
}
unknownRules, err := oleutil.GetProperty(fwPolicy, "Rules")
if err != nil {
return false, fmt.Errorf("Failed to get Rules: %s", err)
}
rules := unknownRules.ToIDispatch()
if ok, err := FirewallRuleExistsByName(rules, name); err != nil {
return false, fmt.Errorf("Error while checking rules for duplicate: %s", err)
} else if ok {
return false, nil
}
unknown2, err := oleutil.CreateObject("HNetCfg.FWRule")
if err != nil {
return false, fmt.Errorf("Error creating Rule object: %s", err)
}
defer unknown2.Release()
fwRule, err := unknown2.QueryInterface(ole.IID_IDispatch)
if err != nil {
return false, fmt.Errorf("Error creating Rule object (2): %s", err)
}
defer fwRule.Release()
if _, err := oleutil.PutProperty(fwRule, "Name", name); err != nil {
return false, fmt.Errorf("Error setting property (Name) of Rule: %s", err)
}
if _, err := oleutil.PutProperty(fwRule, "Description", description); err != nil {
return false, fmt.Errorf("Error setting property (Description) of Rule: %s", err)
}
if appPath != "" {
if _, err := oleutil.PutProperty(fwRule, "Applicationname", appPath); err != nil {
return false, fmt.Errorf("Error setting property (Applicationname) of Rule: %s", err)
}
}
if serviceName != "" {
if _, err := oleutil.PutProperty(fwRule, "ServiceName", serviceName); err != nil {
return false, fmt.Errorf("Error setting property (ServiceName) of Rule: %s", err)
}
}
if protocol != 0 {
if _, err := oleutil.PutProperty(fwRule, "Protocol", protocol); err != nil {
return false, fmt.Errorf("Error setting property (Protocol) of Rule: %s", err)
}
}
if icmpTypes != "" {
if _, err := oleutil.PutProperty(fwRule, "IcmpTypesAndCodes", icmpTypes); err != nil {
return false, fmt.Errorf("Error setting property (IcmpTypesAndCodes) of Rule: %s", err)
}
}
if ports != "" {
if _, err := oleutil.PutProperty(fwRule, "LocalPorts", ports); err != nil {
return false, fmt.Errorf("Error setting property (LocalPorts) of Rule: %s", err)
}
}
if remotePorts != "" {
if _, err := oleutil.PutProperty(fwRule, "RemotePorts", remotePorts); err != nil {
return false, fmt.Errorf("Error setting property (RemotePorts) of Rule: %s", err)
}
}
if localAddresses != "" {
if _, err := oleutil.PutProperty(fwRule, "LocalAddresses", localAddresses); err != nil {
return false, fmt.Errorf("Error setting property (LocalAddresses) of Rule: %s", err)
}
}
if remoteAddresses != "" {
if _, err := oleutil.PutProperty(fwRule, "RemoteAddresses", remoteAddresses); err != nil {
return false, fmt.Errorf("Error setting property (RemoteAddresses) of Rule: %s", err)
}
}
if direction != 0 {
if _, err := oleutil.PutProperty(fwRule, "Direction", direction); err != nil {
return false, fmt.Errorf("Error setting property (Direction) of Rule: %s", err)
}
}
if _, err := oleutil.PutProperty(fwRule, "Enabled", enabled); err != nil {
return false, fmt.Errorf("Error setting property (Enabled) of Rule: %s", err)
}
if _, err := oleutil.PutProperty(fwRule, "Grouping", group); err != nil {
return false, fmt.Errorf("Error setting property (Grouping) of Rule: %s", err)
}
if _, err := oleutil.PutProperty(fwRule, "Profiles", profile); err != nil {
return false, fmt.Errorf("Error setting property (Profiles) of Rule: %s", err)
}
if _, err := oleutil.PutProperty(fwRule, "Action", action); err != nil {
return false, fmt.Errorf("Error setting property (Action) of Rule: %s", err)
}
if edgeTraversal {
if _, err := oleutil.PutProperty(fwRule, "EdgeTraversal", edgeTraversal); err != nil {
return false, fmt.Errorf("Error setting property (EdgeTraversal) of Rule: %s", err)
}
}
if _, err := oleutil.CallMethod(rules, "Add", fwRule); err != nil {
return false, fmt.Errorf("Error adding Rule: %s", err)
}
return true, nil
}
func FirewallRuleExistsByName(rules *ole.IDispatch, name string) (bool, error) {
enumProperty, err := rules.GetProperty("_NewEnum")
if err != nil {
return false, fmt.Errorf("Failed to get enumeration property on Rules: %s", err)
}
defer enumProperty.Clear()
enum, err := enumProperty.ToIUnknown().IEnumVARIANT(ole.IID_IEnumVariant)
if err != nil {
return false, fmt.Errorf("Failed to cast enum to correct type: %s", err)
}
if enum == nil {
return false, fmt.Errorf("can't get IEnumVARIANT, enum is nil")
}
for itemRaw, length, err := enum.Next(1); length > 0; itemRaw, length, err = enum.Next(1) {
if err != nil {
return false, fmt.Errorf("Failed to seek next Rule item: %s", err)
}
t, err := func() (bool, error) {
item := itemRaw.ToIDispatch()
defer item.Release()
if item, err := oleutil.GetProperty(item, "Name"); err != nil {
return false, fmt.Errorf("Failed to get Property (Name) of Rule")
} else if item.ToString() == name {
return true, nil
}
return false, nil
}()
if err != nil {
return false, err
} else if t {
return true, nil
}
}
return false, nil
}
// firewallRulesEnum takes fwPolicy object and returns all objects which needs freeing and enum itself,
// which is used to enumerate rules. do not forget to:
// defer firewallRulesEnumRelease(ur, ep)
func firewallRulesEnum(fwPolicy *ole.IDispatch) (*ole.VARIANT, *ole.VARIANT, *ole.IEnumVARIANT, error) {
unknownRules, err := oleutil.GetProperty(fwPolicy, "Rules")
if err != nil {
return nil, unknownRules, nil, fmt.Errorf("failed to get Rules: %s", err)
}
rules := unknownRules.ToIDispatch()
enumProperty, err := rules.GetProperty("_NewEnum")
if err != nil {
unknownRules.Clear()
return nil, unknownRules, nil, fmt.Errorf("failed to get enumeration property on Rules: %s", err)
}
enum, err := enumProperty.ToIUnknown().IEnumVARIANT(ole.IID_IEnumVariant)
if err != nil {
enumProperty.Clear()
unknownRules.Clear()
return nil, unknownRules, nil, fmt.Errorf("failed to cast enum to correct type: %s", err)
}
if enum == nil {
enumProperty.Clear()
unknownRules.Clear()
return nil, unknownRules, nil, fmt.Errorf("can't get IEnumVARIANT, enum is nil")
}
return unknownRules, enumProperty, enum, nil
}
// firewallRuleEnumRelease will free memory used by firewallRulesEnum.
func firewallRulesEnumRelease(unknownRules, enumProperty *ole.VARIANT, enum *ole.IEnumVARIANT) {
enumProperty.Clear()
unknownRules.Clear()
enum.Release()
}
// firewallAPIInit initialize common fw api.
// then:
// dispatch firewallAPIRelease(u, fwp)
func firewallAPIInit() (*ole.IUnknown, *ole.IDispatch, error) {
comshim.Add(1)
unknown, err := oleutil.CreateObject("HNetCfg.FwPolicy2")
if err != nil {
return nil, nil, fmt.Errorf("Failed to create FwPolicy Object: %s", err)
}
fwPolicy, err := unknown.QueryInterface(ole.IID_IDispatch)
if err != nil {
unknown.Release()
return nil, nil, fmt.Errorf("Failed to create FwPolicy Object (2): %s", err)
}
return unknown, fwPolicy, nil
}
// firewallAPIRelease cleans memory.
func firewallAPIRelease(u *ole.IUnknown, fwp *ole.IDispatch) {
fwp.Release()
u.Release()
comshim.Done()
}