Project

General

Profile

Download (12.9 KB) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
/* $Id$ */
3
/*
4
	services_unbound_acls.php
5
	part of pfSense (http://www.pfsense.com/)
6

    
7
	Copyright (C) 2011 Warren Baker <warren@decoy.co.za>
8
	All rights reserved.
9

    
10
	Redistribution and use in source and binary forms, with or without
11
	modification, are permitted provided that the following conditions are met:
12

    
13
	1. Redistributions of source code must retain the above copyright notice,
14
	   this list of conditions and the following disclaimer.
15

    
16
	2. Redistributions in binary form must reproduce the above copyright
17
	   notice, this list of conditions and the following disclaimer in the
18
	   documentation and/or other materials provided with the distribution.
19

    
20
	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
21
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
22
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
24
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29
	POSSIBILITY OF SUCH DAMAGE.
30
*/
31

    
32
require("guiconfig.inc");
33
require("unbound.inc");
34

    
35
if (!is_array($config['unbound']['acls']))
36
	$config['unbound']['acls'] = array();
37

    
38
$a_acls = &$config['unbound']['acls'];
39

    
40
$id = $_GET['id'];
41
if (isset($_POST['aclid']))
42
	$id = $_POST['aclid'];
43

    
44
$act = $_GET['act'];
45
if (isset($_POST['act']))
46
	$act = $_POST['act'];
47

    
48
if ($act == "del") {
49
	if (!$a_acls[$id]) {
50
		pfSenseHeader("services_unbound_acls.php");
51
		exit;
52
	}
53

    
54
	unset($a_acls[$id]);
55
	write_config();
56
	unbound_reconfigure();
57
	$savemsg = gettext("Access List successfully deleted")."<br/>";
58
}
59

    
60
if ($act == "new") {
61
	$id = unbound_get_next_id();
62
}
63

    
64
if ($act == "edit") {
65
	if (isset($id) && $a_acls[$id]) {
66
		$pconfig = $a_acls[$id];
67
		$networkacl = $a_acls[$id]['row'];
68
	}
69
}
70

    
71
if ($_POST) {
72

    
73
	unset($input_errors);
74
	$pconfig = $_POST;
75

    
76
	/* input validation - only allow 50 entries in a single ACL*/
77
	for($x=0; $x<50; $x++) {
78
		if(isset($pconfig["acl_network{$x}"])) {
79
			$networkacl[$x] = array();
80
			$networkacl[$x]['acl_network'] = $pconfig["acl_network{$x}"];
81
			$networkacl[$x]['mask'] = $pconfig["mask{$x}"];
82
			$networkacl[$x]['description'] = $pconfig["description{$x}"];
83
			if (!is_ipaddr($networkacl[$x]['acl_network']))
84
				$input_errors[] = gettext("You must enter a valid network IP address for {$networkacl[$x]['acl_network']}.");
85

    
86
			if (is_ipaddr($networkacl[$x]['acl_network'])) {
87
				if (!is_subnet($networkacl[$x]['acl_network']."/".$networkacl[$x]['mask']))
88
					$input_errors[] = gettext("You must enter a valid IPv4 netmask for {$networkacl[$x]['acl_network']}/{$networkacl[$x]['mask']}.");
89
			} else if (function_exists("is_ipaddrv6")) {
90
				if (!is_ipaddrv6($networkacl[$x]['acl_network']))
91
					$input_errors[] = gettext("You must enter a valid IPv6 address for {$networkacl[$x]['acl_network']}.");
92
				else if (!is_subnetv6($networkacl[$x]['acl_network']."/".$networkacl[$x]['mask']))
93
					$input_errors[] = gettext("You must enter a valid IPv6 netmask for {$networkacl[$x]['acl_network']}/{$networkacl[$x]['mask']}.");
94
			} else
95
				$input_errors[] = gettext("You must enter a valid IPv4 address for {$networkacl[$x]['acl_network']}.");
96
		}
97
	}
98
	
99
	if (!$input_errors) {
100

    
101
		if ($pconfig['Submit'] == gettext("Save")) {
102
			if(!$a_acls[$id])
103
				$a_acls[$id]['aclid'] = $id;
104

    
105
			if (isset($id) && $a_acls[$id]) {
106
				$a_acls[$id]['aclid'] = $pconfig['aclid'];
107
				$a_acls[$id]['aclname'] = $pconfig['aclname'];
108
				$a_acls[$id]['aclaction'] = $pconfig['aclaction'];
109
				$a_acls[$id]['description'] = $pconfig['description'];
110
				$a_acls[$id]['row'] = array();
111
				foreach ($networkacl as $acl)
112
					$a_acls[$id]['row'][] = $acl;
113
				write_config();
114
				mark_subsystem_dirty("unbound");
115
				//unbound_reconfigure();
116
			}
117
			pfSenseHeader("/services_unbound_acls.php");
118
			exit;
119
		}
120

    
121
		if ($pconfig['apply']) {
122
				clear_subsystem_dirty("unbound");
123
				$retval = 0;
124
				$retval = unbound_reconfigure();
125
				$savemsg = get_std_save_message($retval);
126
		}
127
	}
128
}
129

    
130

    
131
$pgtitle = "Services: DNS Resolver: Access Lists";
132
include("head.inc");
133

    
134
?>
135

    
136
<script type="text/javascript" src="/javascript/row_helper.js">
137
</script>
138

    
139
<script type="text/javascript">
140
	function mask_field(fieldname, fieldsize, n) {
141
		return '<select name="' + fieldname + n + '" class="formselect" id="' + fieldname + n + '"><?php
142
			for ($i = 128; $i >= 0; $i--) {
143
					echo "<option value=\"$i\">$i</option>";
144
			}
145
		?></select>';
146
	}
147

    
148
	rowtype[0] = "textbox";
149
	rowname[0] = "acl_network";
150
	rowsize[0] = "30";
151
	rowname[1] = "mask";
152
	rowtype[1] = mask_field;
153
	rowtype[2] = "textbox";
154
	rowname[2] = "description";
155
	rowsize[2] = "40";
156
</script>
157

    
158
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
159

    
160
<?php include("fbegin.inc"); ?>
161
<form action="services_unbound_acls.php" method="post" name="iform" id="iform">
162
<?php
163
if (!$savemsg)
164
	$savemsg = "";
165

    
166
if ($input_errors)
167
	print_input_errors($input_errors);
168

    
169
if ($savemsg)
170
	print_info_box($savemsg);
171

    
172
if (is_subsystem_dirty("unbound"))
173
		print_info_box_np(gettext("The settings for the DNS Resolver have changed. You must apply the configuration to take affect."));
174
?>
175
<table width="100%" border="0" cellpadding="0" cellspacing="0">
176
 	<tr>
177
		<td class="tabnavtbl">
178
			<ul id="tabnav">
179
			<?php
180
				$tab_array = array();
181
				$tab_array[] = array(gettext("General Settings"), false, "/services_unbound.php");
182
				$tab_array[] = array(gettext("Advanced settings"), false, "services_unbound_advanced.php");
183
				$tab_array[] = array(gettext("Access Lists"), true, "/services_unbound_acls.php");
184
				display_top_tabs($tab_array, true);
185
			?>
186
			</ul>
187
		</td>
188
	</tr>    
189
	<tr>
190
		<td class="tabcont">
191

    
192
			<?php if($act=="new" || $act=="edit"): ?>
193

    
194

    
195
			<input name="aclid" type="hidden" value="<?=$id;?>">
196
			<input name="act" type="hidden" value="<?=$act;?>">
197

    
198
				<table width="100%" border="0" cellpadding="6" cellspacing="0">
199
					<tr>
200
						<td colspan="2" valign="top" class="listtopic"><?=ucwords(sprintf(gettext("%s Access List"),$act));?></td>
201
					</tr>
202
					<tr>
203
						<td width="22%" valign="top" class="vncellreq"><?=gettext("Access List name");?></td>
204
						<td width="78%" class="vtable">
205
							<input name="aclname" type="text" class="formfld" id="aclname" size="30" maxlength="30" value="<?=htmlspecialchars($pconfig['aclname']);?>">
206
							<br />
207
							<span class="vexpl"><?=gettext("Provide an Access List name.");?></span>
208
						</td>
209
					</tr>
210
					<tr>
211
						<td width="22%" valign="top" class="vncellreq"><?=gettext("Action");?></td>
212
						<td width="78%" class="vtable">
213
							<select name="aclaction" class="formselect">
214
								<?php $types = explode(",", "Allow,Deny,Refuse,Allow Snoop"); foreach ($types as $type): ?>
215
								<option value="<?=strtolower($type);?>" <?php if (strtolower($type) == strtolower($pconfig['aclaction'])) echo "selected"; ?>>
216
								<?=htmlspecialchars($type);?>
217
								</option>
218
								<?php endforeach; ?>
219
							</select>
220
							<br/>
221
							<span class="vexpl">
222
								<?=gettext("Choose what to do with DNS requests that match the criteria specified below.");?> <br/>
223
								<?=gettext("<b>Deny:</b> This action stops queries from hosts within the netblock defined below.");?> <br/>
224
								<?=gettext("<b>Refuse:</b> This action also stops queries from hosts within the netblock defined below, but sends a DNS rcode REFUSED error message back to the client.");?> <br/>
225
								<?=gettext("<b>Allow:</b> This action allows queries from hosts within the netblock defined below.");?> <br/>
226
								<?=gettext("<b>Allow Snoop:</b> This action allows recursive and nonrecursive access from hosts within the netblock defined below. Used for cache snooping and ideally should only be configured for your administrative host.");?> <br/>
227
							</span>
228
						</td>
229
					</tr>
230
					<tr>
231
					<td width="22%" valign="top" class="vncellreq"><?=gettext("Networks");?></td>
232
					<td width="78%" class="vtable">
233
						<table id="maintable">
234
							<tbody>
235
								<tr>
236
									<td><div id="onecolumn"><?=gettext("Network");?></div></td>
237
									<td><div id="twocolumn"><?=gettext("CIDR");?></div></td>
238
									<td><div id="threecolumn"><?=gettext("Description");?></div></td>
239
								</tr>
240
								<?php $counter = 0; ?>
241
								<?php
242
									if($networkacl)
243
										foreach($networkacl as $item):
244
								?>
245
										<?php
246
											$network = $item['acl_network'];
247
											$cidr = $item['mask'];
248
											$description = $item['description'];
249
										?>
250
								<tr>
251
									<td>
252
										<input autocomplete="off" name="acl_network<?=$counter;?>" type="text" class="formfld unknown" id="acl_network<?=$counter;?>" size="40" value="<?=htmlspecialchars($network);?>" />
253
									</td>
254
									<td>
255
										<select name="mask<?=$counter;?>" class="formselect" id="mask<?=$counter;?>">
256
										<?php
257
											for ($i = 128; $i > 0; $i--) {
258
												echo "<option value=\"$i\" ";
259
												if ($i == $cidr) echo "selected";
260
												echo ">" . $i . "</option>";
261
											}
262
										?>
263
										</select>
264
									</td>
265
									<td>
266
										<input autocomplete="off" name="description<?=$counter;?>" type="text" class="listbg" id="description<?=$counter;?>" size="40" value="<?=htmlspecialchars($description);?>" />
267
									</td>
268
									<td>
269
										<a onclick="removeRow(this); return false;" href="#"><img border="0" src="/themes/<?=$g['theme'];?>/images/icons/icon_x.gif" /></a>
270
									</td>
271
								</tr>
272
								<?php $counter++; ?>
273
								<?php endforeach; ?>
274
							</tbody>
275
							<tfoot>
276
							</tfoot>
277
						</table>
278
						<a onclick="javascript:addRowTo('maintable', 'formfldalias'); return false;" href="#">
279
							<img border="0" src="/themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" alt="" title="<?=gettext("add another entry");?>" />
280
						</a>
281
						<script type="text/javascript">
282
							field_counter_js = 3;
283
							rows = 1;
284
							totalrows = <?php echo $counter; ?>;
285
							loaded = <?php echo $counter; ?>;
286
						</script>
287

    
288
						</td>
289
					</tr>
290

    
291
					<tr>
292
						<td width="22%" valign="top" class="vncell"><?=gettext("Description");?></td>
293
						<td width="78%" class="vtable">
294
							<input name="description" type="text" class="formfld unknown" id="description" size="52" maxlength="52" value="<?=htmlspecialchars($pconfig['description']);?>">
295
							<br />
296
							<span class="vexpl"><?=gettext("You may enter a description here for your reference.");?></span>
297
						</td>
298
					</tr>
299
					<tr>
300
						<td>&nbsp;</td>
301
					</tr>
302
					<tr>
303
						<td width="22%" valign="top">&nbsp;</td>
304
						<td width="78%">
305
							&nbsp;<br>&nbsp;
306
							<input name="Submit" type="submit" class="formbtn" value="<?=gettext("Save"); ?>">  <input type="button" class="formbtn" value="<?=gettext("Cancel"); ?>" onclick="history.back()">
307
						</td>
308
					</tr>
309
				</table>
310
			</form>
311

    
312
			<?php else: ?>
313

    
314
			<table class="sortable" width="100%" border="0" cellpadding="0" cellspacing="0">
315
				<thead>
316
				<tr>
317
					<td width="25%" class="listhdrr"><?=gettext("Access List Name"); ?></td>
318
					<td width="25%" class="listhdrr"><?=gettext("Action"); ?></td>
319
					<td width="40%" class="listhdrr"><?=gettext("Description"); ?></td>
320
					<td width="10%" class="list"></td>
321
				</tr>
322
				</thead>
323
				<tbody>
324
				<?php
325
					$i = 0;
326
					foreach($a_acls as $acl):
327
				?>
328
				<tr ondblclick="document.location='services_unbound_acls.php?act=edit&id=<?=$i;?>'">
329
					<td class="listlr">
330
						<?=$acl['aclname'];?>
331
					</td>
332
					<td class="listr">
333
						<?=htmlspecialchars($acl['aclaction']);?>
334
					</td>
335
					<td class="listbg">
336
						<?=htmlspecialchars($acl['description']);?>
337
					</td>
338
					<td valign="middle" nowrap class="list">
339
						<a href="services_unbound_acls.php?act=edit&id=<?=$i;?>">
340
							<img src="./themes/<?=$g['theme'];?>/images/icons/icon_e.gif" title="<?=gettext("edit access list"); ?>" width="17" height="17" border="0">
341
						</a>
342
						&nbsp;
343
						<a href="services_unbound_acls.php?act=del&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this access list?"); ?>')">
344
							<img src="/themes/<?=$g['theme'];?>/images/icons/icon_x.gif" title="<?=gettext("delete access list"); ?>" width="17" height="17" border="0">
345
						</a>
346
					</td>
347
				</tr>
348
				<?php
349
					$i++;
350
					endforeach;
351
				?>
352
				</tbody>
353
				<tfoot>
354
				<tr>
355
					<td class="list" colspan="4"></td>
356
					<td class="list">
357
						<a href="services_unbound_acls.php?act=new"><img src="./themes/<?=$g['theme'];?>/images/icons/icon_plus.gif" title="<?=gettext("Add new Access List"); ?>" width="17" height="17" border="0">
358
						</a>
359
					</td>
360
				</tr>
361
				<tr>
362
					<td colspan="4">
363
						<p>
364
							<?=gettext("Access Lists to control access to the DNS Resolver can be defined here.");?>
365
						</p>
366
					</td>
367
				</tr>
368
				</tfoot>
369
			</table>
370

    
371
			<?php endif; ?>
372

    
373
		</td>
374
	</tr>
375
</table>
376
</body>
377
<?php include("fend.inc"); ?>
(165-165/245)