-
Notifications
You must be signed in to change notification settings - Fork 1
/
importxml.php
405 lines (355 loc) · 9.36 KB
/
importxml.php
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
<?php
/**
* Base file for HTML processing
*
* @author Gouverneur Thomas <[email protected]>
* @copyright Copyright (c) 2007-2008, Gouverneur Thomas - TI Automotive
* @version 1.0
* @package html
* @subpackage base
* @category html
* @filesource
*/
require_once("./inc/config.inc.php");
require_once("./lib/html.lib.php");
require_once("./lib/autoload.lib.php");
/* sanitize _GET and _POST */
sanitizeArray($_GET);
sanitizeArray($_POST);
/* common to all pages */
$page = new Template("./tpl/main.tpl");
$head = new Template("./tpl/head.tpl");
$head->set("title", "m0n0wall Central Management Interface");
$head->set("subtitle", "XML Import");
$head->set("pagename", "import m0n0wall from XML");
$menu = new Template("./tpl/menu.tpl");
$menu->set("version", $config["version"]);
$foot = new Template("./tpl/foot.tpl");
/* body */
$msg = null;
$error = null;
if (isset($_POST["Submit"])) {
if (isset($_POST["xml"]) && !empty($_POST["xml"])) {
$body = new Template("./tpl/message.tpl");
$body->set("pagename", "Import device from XML");
$mono = new Monowall();
$msg .= "Parsing configuration...";
$mono->config->rawconfig = str_replace('\"', '"', $_POST["xml"]);
if (!(@$mono->config->parseConfig())) {
$error = "Error while parsing configuration...<br/>";
$msg .= "failed<br/>";
end_process();
}
$msg .= "done<br/>";
$msg .= "Connecting to MySQL...";
if (!Mysql::getInstance()->connect()) {
$error = "Cannot connect to MySQL: ".Mysql::getInstance()->getError()." !!";
$msg .= "failed<br/>";
end_process();
}
$main = Main::getInstance();
$msg .= "ok<br/>";
Main::getInstance()->fetchRulesId();
Main::getInstance()->fetchRulesDetails();
$msg .= "Filling m0n0wall's objects...";
if (!(@$mono->config->fillObj())) {
$error = "Error while filling Objects...<br/>";
$msg .= "failed<br/>";
end_process();
}
$msg .= "done<br/>";
$msg .= "Insertion of all objects into database...";
$msg .= " Base...";
$mono->insert();
$mono->id = Mysql::getInstance()->getLastId();
$msg .= "done<br/>";
$msg .= " Properties...";
foreach ($mono->prop as $p) {
$p->idhost = $mono->id;
if ($p->existsInDb()) {
$p->fetchId();
if ($p->ischanged()) {
$p->update();
}
} else {
$p->insert();
$p->id = Mysql::getInstance()->getLastId();
}
}
$msg .= "done<br/>";
$msg .= " Syslog settings...";
if ($mono->syslog->existsInDb()) {
$mono->syslog->fetchId();
$mono->idsyslog = $mono->syslog->id;
if ($mono->syslog->ischanged()) {
$mono->syslog->update();
}
} else {
$mono->syslog->insert();
$mono->syslog->fetchId();
$mono->idsyslog = $mono->syslog->id;
}
$msg .= "done<br/>";
$msg .= " SNMP Settings...";
if ($mono->snmp->existsInDb())
{
$mono->snmp->fetchId();
$mono->idsnmp = $mono->snmp->id;
if ($mono->snmp->ischanged()) {
$mono->snmp->update();
}
} else {
$mono->snmp->insert();
$mono->snmp->fetchId();
$mono->idsnmp = $mono->snmp->id;
}
$msg .= "done<br/>";
$msg .= " Groups...";
foreach ($mono->group as $group) {
$group->idhost = $mono->id;
if ($group->existsInDb()) {
$group->fetchId();
if ($group->ischanged()) {
$group->update();
}
} else {
$group->insert();
$group->fetchId();
}
}
$msg .= "done<br/>";
$msg .= " Users...";
foreach ($mono->user as $user) {
$user->idhost = $mono->id;
if ($user->existsInDb())
{
$user->fetchId();
if ($user->ischanged()) {
$user->update();
}
} else {
$user->insert();
$user->fetchId();
}
}
$msg .= "done<br/>";
$msg .= " Interfaces...";
foreach ($mono->ifaces as $iface) {
$iface->idhost = $mono->id;
if ($iface->existsInDb())
{
if ($iface->ischanged())
{
$iface->update();
}
} else {
$iface->insert();
}
}
$msg .= "done<br/>";
$msg .= " VLANs...";
foreach ($mono->vlans as $vlan) {
$vlan->idhost = $mono->id;
if ($vlan->existsInDb())
{
if ($vlan->ischanged())
{
$vlan->update();
}
} else {
$vlan->insert();
}
}
$msg .= "done<br/>";
$msg .= " Local aliases...";
foreach ($mono->alias as $alias) {
$alias->idhost = $mono->id;
if ($alias->existsInDb())
{
if ($alias->ischanged())
{
$alias->update();
}
} else {
$alias->insert();
}
}
$msg .= "done<br/>";
$msg .= " ProxyARP...";
foreach ($mono->proxyarp as $pa) {
$pa->idhost = $mono->id;
if ($pa->existsInDb())
{
if ($pa->ischanged())
{
$pa->update();
}
} else {
$pa->insert();
}
}
$msg .= "done<br/>";
$msg .= " Static Routes...";
foreach ($mono->sroutes as $sroute) {
$sroute->idhost = $mono->id;
if ($sroute->existsInDb())
{
if ($sroute->ischanged())
{
$sroute->update();
}
} else {
$sroute->insert();
}
}
$msg .= "done<br/>";
foreach($mono->ifaces as $iface) {
$msg .= " Inserting rules for iface ".$iface->type;
$msg .= ($iface->num != 0)?$iface->num:"";
$msg .= "...";
foreach($iface->rules as $rule) {
if ($rule->existsInDb()) {
$rule->fetchId();
if($rule->ischanged())
$rule->update();
} else {
$rule->insert();
$rule->id = Mysql::getInstance()->getLastId();
}
}
$main->removeRuleIntIf($iface->id);
RuleInt::dropAllIface($iface->id);
$iface->rulesint = array();
reset($iface->rules);
$i = 0;
foreach($iface->rules as $rule) {
$ri = new RuleInt($rule->id, $iface->id, $iface->rulesp[$i][1], $iface->rulesp[$i][0]);
$ri->iface = $iface;
$ri->rule = $main->getRule($ri->idrule);
array_push($main->ruleint, $ri);
array_push($iface->rulesint, $ri);
$riarray[$ri->position] = $ri;
$i++;
}
reset($riarray);
foreach($riarray as $ri) {
$ri->insert();
}
$msg .= "done<br/>";
}
$msg .= " NAT rules...";
foreach ($mono->nat as $nat)
{
$nat->idhost = $mono->id;
if ($nat->existsInDb())
{
if ($nat->ischanged())
{
$nat->update();
}
} else {
$nat->insert();
}
}
$msg .= "done<br/>";
$msg .= " Advanced NAT...";
foreach ($mono->advnat as $nat)
{
$nat->idhost = $mono->id;
if ($nat->existsInDb())
{
if ($nat->ischanged())
{
$nat->update();
}
} else {
$nat->insert();
}
}
$msg .= "done<br/>";
$msg .= " Server NAT...";
foreach ($mono->srvnat as $nat)
{
$nat->idhost = $mono->id;
if ($nat->existsInDb())
{
if ($nat->ischanged())
{
$nat->update();
}
} else {
$nat->insert();
}
}
$msg .= "done<br/>";
$msg .= " One to One NAT...";
foreach ($mono->o2onat as $nat)
{
$nat->idhost = $mono->id;
if ($nat->existsInDb())
{
if ($nat->ischanged())
{
$nat->update();
}
} else {
$nat->insert();
}
}
$msg .= "done<br/>";
$msg .= " All remaining unknown objects...";
foreach ($mono->unknown as $unknown)
{
$unknown->idhost = $mono->id;
$unknown->insert();
$unknown->id = Mysql::getInstance()->getLastId();
}
foreach ($mono->unknown as $unknown) {
if ($unknown->parent) {
$unknown->idparent = $unknown->parent->id;
$unknown->update();
}
}
$msg .= "done<br/>";
if (isset($_POST["hostname"]) && !empty($_POST["hostname"])) {
$msg .= "Overwritting the hostname to be ".$_POST["hostname"]."...";
$mono->hostname = $_POST["hostname"];
$msg .= "done<br/>";
}
if (isset($_POST["domain"]) && !empty($_POST["domain"])) {
$msg .= "Overwritting the domain name to be ".$_POST["domain"]."...";
$mono->domain = $_POST["domain"];
$msg .= "done<br/>";
}
$msg .= "Updating m0n0wall base object...";
$mono->update();
$msg .= "done<br/>";
$body->set("message", $msg);
$body->set("error", $error);
$body->set("link", array("href" => "index.php", "label" => "return to main page"));
} else { /* XML empty */
$body = new Template("./tpl/importxml.tpl");
$body->set("pagename", "Import device from XML");
$body->set("error", "You haven't pasted any XML content...");
}
} else { /* not yet submitted */
$body = new Template("./tpl/importxml.tpl");
$body->set("pagename", "Import device from XML");
}
end_process();
/* end process and exit script */
function end_process() {
global $body, $page, $form, $head, $menu, $foot, $msg, $error;
/* template processing */
$body->set("message", $msg);
$body->set("error", $error);
$body->set("form", $form);
$page->set("head", $head);
$page->set("menu", $menu);
$page->set("foot", $foot);
$page->set("body", $body);
echo $page->fetch();
@Mysql::getInstance()->disconnect();
exit(0);
}
?>