Projet

Général

Profil

Télécharger (10,7 ko) Statistiques
| Branche: | Tag: | Révision:

univnautes / usr / local / www / services_unbound_host_edit.php @ fab1cd2f

1
<?php 
2
/* $Id$ */
3
/*
4
	services_unbound_edit_host.php
5
	part of the pfSense project (https://www.pfsense.org)
6
	Copyright (C) 2014 Warren Baker (warren@decoy.co.za)
7
	All rights reserved.
8
	
9
	Copyright (C) 2003-2004 Bob Zoller <bob@kludgebox.com> and Manuel Kasper <mk@neon1.net>.
10
	All rights reserved.
11

    
12
	Redistribution and use in source and binary forms, with or without
13
	modification, are permitted provided that the following conditions are met:
14
	
15
	1. Redistributions of source code must retain the above copyright notice,
16
	   this list of conditions and the following disclaimer.
17
	
18
	2. Redistributions in binary form must reproduce the above copyright
19
	   notice, this list of conditions and the following disclaimer in the
20
	   documentation and/or other materials provided with the distribution.
21
	
22
	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
23
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
24
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
26
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31
	POSSIBILITY OF SUCH DAMAGE.
32
*/
33
/*
34
	pfSense_MODULE:	dnsforwarder
35
*/
36

    
37
##|+PRIV
38
##|*IDENT=page-services-dnsresolver-edithost
39
##|*NAME=Services: DNS Forwarder: Edit host page
40
##|*DESCR=Allow access to the 'Services: DNS Forwarder: Edit host' page.
41
##|*MATCH=services_unbound_host_edit.php*
42
##|-PRIV
43

    
44
function hostcmp($a, $b) {
45
	return strcasecmp($a['host'], $b['host']);
46
}
47

    
48
function hosts_sort() {
49
	global $g, $config;
50

    
51
	if (!is_array($config['unbound']['hosts']))
52
		return;
53

    
54
	usort($config['unbound']['hosts'], "hostcmp");
55
}
56

    
57
require("guiconfig.inc");
58

    
59
if (!is_array($config['unbound']['hosts'])) 
60
	$config['unbound']['hosts'] = array();
61

    
62
$a_hosts = &$config['unbound']['hosts'];
63

    
64
if (is_numericint($_GET['id']))
65
	$id = $_GET['id'];
66
if (isset($_POST['id']) && is_numericint($_POST['id']))
67
	$id = $_POST['id'];
68

    
69
if (isset($id) && $a_hosts[$id]) {
70
	$pconfig['host'] = $a_hosts[$id]['host'];
71
	$pconfig['domain'] = $a_hosts[$id]['domain'];
72
	$pconfig['ip'] = $a_hosts[$id]['ip'];
73
	$pconfig['descr'] = $a_hosts[$id]['descr'];
74
	$pconfig['aliases'] = $a_hosts[$id]['aliases'];
75
}
76

    
77
if ($_POST) {
78

    
79
	unset($input_errors);
80
	$pconfig = $_POST;
81

    
82
	/* input validation */
83
	$reqdfields = explode(" ", "domain ip");
84
	$reqdfieldsn = array(gettext("Domain"),gettext("IP address"));
85
	
86
	do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
87
	
88
	if (($_POST['host'] && !is_hostname($_POST['host']))) 
89
		$input_errors[] = gettext("The hostname can only contain the characters A-Z, 0-9 and '-'.");
90

    
91
	if (($_POST['domain'] && !is_domain($_POST['domain']))) 
92
		$input_errors[] = gettext("A valid domain must be specified.");
93
		
94
	if (($_POST['ip'] && !is_ipaddr($_POST['ip']))) 
95
		$input_errors[] = gettext("A valid IP address must be specified.");
96

    
97
	/* collect aliases */
98
	$aliases = array();
99
	foreach ($_POST as $key => $value) {
100
		$entry = '';
101
		if (!substr_compare('aliashost', $key, 0, 9)) {
102
			$entry = substr($key, 9);
103
			$field = 'host';
104
		}
105
		elseif (!substr_compare('aliasdomain', $key, 0, 11)) {
106
			$entry = substr($key, 11);
107
			$field = 'domain';
108
		}
109
		elseif (!substr_compare('aliasdescription', $key, 0, 16)) {
110
			$entry = substr($key, 16);
111
			$field = 'description';
112
		}
113
		if (ctype_digit($entry)) {
114
			$aliases[$entry][$field] = $value;
115
		}
116
	}
117
	$pconfig['aliases']['item'] = $aliases;
118

    
119
	/* validate aliases */
120
	foreach ($aliases as $idx => $alias) {
121
		$aliasreqdfields = array('aliasdomain' . $idx);
122
		$aliasreqdfieldsn = array(gettext("Alias Domain"));
123

    
124
		var_dump(array('fields' => $aliasreqdfields, 'names' => $aliasreqdfieldsn, 'alias' => $alias));
125
		do_input_validation($_POST, $aliasreqdfields, $aliasreqdfieldsn, $input_errors);
126
		if (($alias['host'] && !is_hostname($alias['host'])))
127
			$input_errors[] = gettext("Hostnames in alias list can only contain the characters A-Z, 0-9 and '-'.");
128
		if (($alias['domain'] && !is_domain($alias['domain'])))
129
			$input_errors[] = gettext("A valid domain must be specified in alias list.");
130
	}
131

    
132
	/* check for overlaps */
133
	foreach ($a_hosts as $hostent) {
134
		if (isset($id) && ($a_hosts[$id]) && ($a_hosts[$id] === $hostent))
135
			continue;
136

    
137
		if (($hostent['host'] == $_POST['host']) && ($hostent['domain'] == $_POST['domain'])
138
			&& ((is_ipaddrv4($hostent['ip']) && is_ipaddrv4($_POST['ip'])) || (is_ipaddrv6($hostent['ip']) && is_ipaddrv6($_POST['ip'])))) {
139
			$input_errors[] = gettext("This host/domain already exists.");
140
			break;
141
		}
142
	}
143

    
144
	if (!$input_errors) {
145
		$hostent = array();
146
		$hostent['host'] = $_POST['host'];
147
		$hostent['domain'] = $_POST['domain'];
148
		$hostent['ip'] = $_POST['ip'];
149
		$hostent['descr'] = $_POST['descr'];
150
		$hostent['aliases']['item'] = $aliases;
151

    
152
		if (isset($id) && $a_hosts[$id])
153
			$a_hosts[$id] = $hostent;
154
		else
155
			$a_hosts[] = $hostent;
156
		hosts_sort();
157
		
158
		mark_subsystem_dirty('unbound');
159
		
160
		write_config();
161
		
162
		header("Location: services_unbound.php");
163
		exit;
164
	}
165
}
166

    
167
$pgtitle = array(gettext("Services"),gettext("DNS Resolver"),gettext("Edit host"));
168
$shortcut_section = "resolver";
169
include("head.inc");
170

    
171
?>
172

    
173
<body onload="<?= $jsevents["body"]["onload"] ?>">
174
<?php include("fbegin.inc"); ?>
175

    
176
<script type="text/javascript" src="/javascript/row_helper.js">
177
</script>
178

    
179
<script type="text/javascript">
180
//<![CDATA[
181
	rowname[0] = "aliashost";
182
	rowtype[0] = "textbox";
183
	rowsize[0] = "20";
184
	rowname[1] = "aliasdomain";
185
	rowtype[1] = "textbox";
186
	rowsize[1] = "20";
187
	rowname[2] = "aliasdescription";
188
	rowtype[2] = "textbox";
189
	rowsize[2] = "20";
190
//]]>
191
</script>
192

    
193
<?php if ($input_errors) print_input_errors($input_errors); ?>
194
	<form action="services_unbound_host_edit.php" method="post" name="iform" id="iform">
195
		<table width="100%" border="0" cellpadding="6" cellspacing="0" summary="host edit">
196
			<tr>
197
				<td colspan="2" valign="top" class="listtopic"><?=gettext("Edit DNS Resolver entry");?></td>
198
			</tr>
199
			<tr>
200
				<td width="22%" valign="top" class="vncell"><?=gettext("Host");?></td>
201
				<td width="78%" class="vtable">
202
					<input name="host" type="text" class="formfld" id="host" size="40" value="<?=htmlspecialchars($pconfig['host']);?>" /><br />
203
					<span class="vexpl"><?=gettext("Name of the host, without domain part"); ?><br />
204
					<?=gettext("e.g."); ?> <em><?=gettext("myhost"); ?></em></span>
205
				</td>
206
			</tr>
207
			<tr>
208
				<td width="22%" valign="top" class="vncellreq"><?=gettext("Domain");?></td>
209
				<td width="78%" class="vtable">
210
					<input name="domain" type="text" class="formfld" id="domain" size="40" value="<?=htmlspecialchars($pconfig['domain']);?>" /><br />
211
					<span class="vexpl"><?=gettext("Domain of the host"); ?><br />
212
						<?=gettext("e.g."); ?> <em><?=gettext("example.com"); ?></em></span>
213
				</td>
214
			</tr>
215
			<tr>
216
				<td width="22%" valign="top" class="vncellreq"><?=gettext("IP address");?></td>
217
				<td width="78%" class="vtable">
218
					<input name="ip" type="text" class="formfld" id="ip" size="40" value="<?=htmlspecialchars($pconfig['ip']);?>" /><br />
219
					<span class="vexpl"><?=gettext("IP address of the host"); ?><br />
220
						<?=gettext("e.g."); ?> <em>192.168.100.100</em> <?=gettext("or"); ?> <em>fd00:abcd::1</em></span>
221
				</td>
222
			</tr>
223
			<tr>
224
				<td width="22%" valign="top" class="vncell"><?=gettext("Description");?></td>
225
				<td width="78%" class="vtable">
226
					<input name="descr" type="text" class="formfld" id="descr" size="40" value="<?=htmlspecialchars($pconfig['descr']);?>" /><br />
227
					<span class="vexpl"><?=gettext("You may enter a description here for your reference (not parsed).");?></span>
228
				</td>
229
			</tr>
230
			<tr>
231
				<td width="22%" valign="top" class="vncell"><div id="addressnetworkport"><?=gettext("Aliases"); ?></div></td>
232
				<td width="78%" class="vtable">
233
					<table id="maintable" summary="aliases">
234
						<tbody>
235
							<tr>
236
								<td colspan="4">
237
									<div style="padding:5px; margin-top: 16px; margin-bottom: 16px; border:1px dashed #000066; background-color: #ffffff; color: #000000; font-size: 8pt;" id="itemhelp">
238
										<?=gettext("Enter additional names for this host."); ?>
239
									</div>
240
								</td>
241
							</tr>
242
							<tr>
243
								<td><div id="onecolumn"><?=gettext("Host");?></div></td>
244
								<td><div id="twocolumn"><?=gettext("Domain");?></div></td>
245
								<td><div id="threecolumn"><?=gettext("Description");?></div></td>
246
							</tr>
247
							<?php
248
								$counter = 0;
249
								if ($pconfig['aliases']['item']):
250
									foreach($pconfig['aliases']['item'] as $item):
251
										$host = $item['host'];
252
										$domain = $item['domain'];
253
										$description = $item['description'];
254
							?>
255
							<tr>
256
								<td>
257
									<input autocomplete="off" name="aliashost<?php echo $counter; ?>" type="text" class="formfld unknown" id="aliashost<?php echo $counter; ?>" size="20" value="<?=htmlspecialchars($host);?>" />
258
								</td>
259
								<td>
260
									<input autocomplete="off" name="aliasdomain<?php echo $counter; ?>" type="text" class="formfld unknown" id="aliasdomain<?php echo $counter; ?>" size="20" value="<?=htmlspecialchars($domain);?>" />
261
								</td>
262
								<td>
263
									<input name="aliasdescription<?php echo $counter; ?>" type="text" class="formfld unknown" id="aliasdescription<?php echo $counter; ?>" size="20" value="<?=htmlspecialchars($description);?>" />
264
								</td>
265
								<td>
266
									<a onclick="removeRow(this); return false;" href="#">
267
										<img border="0" src="/themes/<?echo $g['theme'];?>/images/icons/icon_x.gif" alt="" title="<?=gettext("remove this entry"); ?>" />
268
									</a>
269
								</td>
270
							</tr>
271
							<?php
272
										$counter++;
273
									endforeach;
274
								endif;
275
							?>
276
						</tbody>
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
					//<![CDATA[
283
						field_counter_js = 3;
284
						rows = 1;
285
						totalrows = <?php echo $counter; ?>;
286
						loaded = <?php echo $counter; ?>;
287
					//]]>
288
					</script>
289
				</td>
290
			</tr>
291
			<tr>
292
				<td width="22%" valign="top">&nbsp;</td>
293
				<td width="78%">
294
					<input name="Submit" type="submit" class="formbtn" value="<?=gettext("Save");?>" /> <input class="formbtn" type="button" value="<?=gettext("Cancel");?>" onclick="history.back()" />
295
					<?php if (isset($id) && $a_hosts[$id]): ?>
296
					<input name="id" type="hidden" value="<?=htmlspecialchars($id);?>" />
297
					<?php endif; ?>
298
				</td>
299
			</tr>
300
		</table>
301
	</form>
302
<?php include("fend.inc"); ?>
303
</body>
304
</html>
(173-173/255)