forked from PaloAltoNetworks/pango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fw.go
174 lines (149 loc) · 4.65 KB
/
fw.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
package pango
import (
"encoding/xml"
"github.com/PaloAltoNetworks/pango/version"
// Various namespace imports.
"github.com/PaloAltoNetworks/pango/dev"
"github.com/PaloAltoNetworks/pango/licen"
"github.com/PaloAltoNetworks/pango/netw"
"github.com/PaloAltoNetworks/pango/objs"
"github.com/PaloAltoNetworks/pango/panosplugin"
"github.com/PaloAltoNetworks/pango/poli"
"github.com/PaloAltoNetworks/pango/predefined"
"github.com/PaloAltoNetworks/pango/userid"
"github.com/PaloAltoNetworks/pango/vsys"
)
// Firewall is a firewall specific client, providing version safe functions
// for the PAN-OS Xpath API methods. After creating the object, invoke
// Initialize() to prepare it for use.
//
// It has the following namespaces:
// * Predefined
// * Network
// * Device
// * Policies
// * Objects
// * Licensing
// * UserId
type Firewall struct {
Client
// Namespaces
Predefined *predefined.Firewall
Network *netw.Firewall
Device *dev.Firewall
Policies *poli.Firewall
Objects *objs.FwObjs
Licensing *licen.Licen
UserId *userid.UserId
Vsys *vsys.Firewall
PanosPlugin *panosplugin.Firewall
}
// Initialize does some initial setup of the Firewall connection, retrieves
// the API key if it was not already present, then performs "show system
// info" to get the PAN-OS version. The full results are saved into the
// client's SystemInfo map.
//
// If not specified, the following is assumed:
// * Protocol: https
// * Port: (unspecified)
// * Timeout: 10
// * Logging: LogAction | LogUid
func (c *Firewall) Initialize() error {
if len(c.rb) == 0 {
var e error
if e = c.initCon(); e != nil {
return e
} else if e = c.initApiKey(); e != nil {
return e
} else if e = c.initSystemInfo(); e != nil {
return e
}
if c.Version.Gte(version.Number{9, 0, 0, ""}) {
c.initPlugins()
}
} else {
c.Hostname = "localhost"
c.ApiKey = "password"
}
c.initNamespaces()
return nil
}
// InitializeUsing does Initialize(), but takes in a filename that contains
// fallback authentication credentials if they aren't specified.
//
// The order of preference for auth / connection settings is:
//
// * explicitly set
// * environment variable (set chkenv to true to enable this)
// * json file
func (c *Firewall) InitializeUsing(filename string, chkenv bool) error {
c.CheckEnvironment = chkenv
c.credsFile = filename
return c.Initialize()
}
// GetDhcpInfo returns the DHCP client information about the given interface.
func (c *Firewall) GetDhcpInfo(i string) (map[string]string, error) {
c.LogOp("(op) show dhcp client state %q", i)
type ireq struct {
XMLName xml.Name `xml:"show"`
Val string `xml:"dhcp>client>state"`
}
type ireq_ans struct {
Interface string `xml:"result>entry>interface"`
State string `xml:"result>entry>state"`
Ip string `xml:"result>entry>ip"`
Gateway string `xml:"result>entry>gw"`
Server string `xml:"result>entry>server"`
ServerId string `xml:"result>entry>server-id"`
Dns1 string `xml:"result>entry>dns1"`
Dns2 string `xml:"result>entry>dns2"`
Wins1 string `xml:"result>entry>wins1"`
Wins2 string `xml:"result>entry>wins2"`
Nis1 string `xml:"result>entry>nis1"`
Nis2 string `xml:"result>entry>nis2"`
Ntp1 string `xml:"result>entry>ntp1"`
Ntp2 string `xml:"result>entry>ntp2"`
Pop3Server string `xml:"result>entry>pop3"`
SmtpServer string `xml:"result>entry>smtp"`
DnsSuffix string `xml:"result>entry>dns-suffix"`
}
req := ireq{Val: i}
ans := ireq_ans{}
if _, err := c.Op(req, "", nil, &ans); err != nil {
return nil, err
}
return map[string]string{
"interface": ans.Interface,
"state": ans.State,
"ip": ans.Ip,
"gateway": ans.Gateway,
"server": ans.Server,
"server_id": ans.ServerId,
"primary_dns": ans.Dns1,
"secondary_dns": ans.Dns2,
"primary_wins": ans.Wins1,
"secondary_wins": ans.Wins2,
"primary_nis": ans.Nis1,
"secondary_nis": ans.Nis2,
"primary_ntp": ans.Ntp1,
"secondary_ntp": ans.Ntp2,
"pop3_server": ans.Pop3Server,
"smtp_server": ans.SmtpServer,
"dns_suffix": ans.DnsSuffix,
}, nil
}
/** Private functions **/
func (c *Firewall) initNamespaces() {
c.Predefined = predefined.FirewallNamespace(c)
c.Network = netw.FirewallNamespace(c)
c.Device = dev.FirewallNamespace(c)
c.Policies = poli.FirewallNamespace(c)
c.Objects = &objs.FwObjs{}
c.Objects.Initialize(c)
c.Licensing = &licen.Licen{}
c.Licensing.Initialize(c)
c.UserId = &userid.UserId{}
c.UserId.Initialize(c)
c.Vsys = vsys.FirewallNamespace(c)
c.PanosPlugin = panosplugin.FirewallNamespace(c)
}