firewall_shaper_vinterface.php 13 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1 2
<?php
/*
3
	Copyright (C) 2014-2015 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
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
	Copyright (C) 2004, 2005 Scott Ullrich
	Copyright (C) 2008 Ermal Luçi
	All rights reserved.

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

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

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


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

require("guiconfig.inc");
32
require_once("functions.inc");
Ad Schellevis's avatar
Ad Schellevis committed
33
require_once("filter.inc");
34
require_once("shaper.inc");
Ad Schellevis's avatar
Ad Schellevis committed
35 36 37 38 39 40 41 42 43 44

if($_GET['reset'] <> "") {
	mwexec("/usr/bin/killall -9 pfctl");
	exit;
}

$pgtitle = array(gettext("Firewall"),gettext("Traffic Shaper"), gettext("Limiter"));
$shortcut_section = "trafficshaper-limiters";

read_dummynet_config();
45
/*
Ad Schellevis's avatar
Ad Schellevis committed
46 47 48 49 50 51
 * The whole logic in these code maybe can be specified.
 * If you find a better way contact me :).
 */

if ($_GET) {
	if ($_GET['queue'])
52
		$qname = htmlspecialchars(trim($_GET['queue']));
Ad Schellevis's avatar
Ad Schellevis committed
53 54 55 56 57 58 59
        if ($_GET['pipe'])
                $pipe = htmlspecialchars(trim($_GET['pipe']));
        if ($_GET['action'])
                $action = htmlspecialchars($_GET['action']);
}
if ($_POST) {
	if ($_POST['name'])
60
		$qname = htmlspecialchars(trim($_POST['name']));
Ad Schellevis's avatar
Ad Schellevis committed
61
	else if ($_POST['newname'])
62
		$qname = htmlspecialchars(trim($_POST['newname']));
Ad Schellevis's avatar
Ad Schellevis committed
63
        if ($_POST['pipe'])
64
		$pipe = htmlspecialchars(trim($_POST['pipe']));
Ad Schellevis's avatar
Ad Schellevis committed
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
	else
		$pipe = htmlspecialchars(trim($qname));
	if ($_POST['parentqueue'])
		$parentqueue = htmlspecialchars(trim($_POST['parentqueue']));
}

if ($pipe) {
	$dnpipe = $dummynet_pipe_list[$pipe];
	if ($dnpipe) {
		$queue =& $dnpipe->find_queue($pipe, $qname);
	} else $addnewpipe = true;
}

$dontshow = false;
$newqueue = false;
$output_form = "";

if ($_GET) {
	switch ($action) {
	case "delete":
		if ($queue) {
			if (is_array($config['filter']['rule'])) {
				foreach ($config['filter']['rule'] as $rule) {
					if ($rule['dnpipe'] == $queue->GetQname() || $rule['pdnpipe'] == $queue->GetQname())
						$input_errors[] = gettext("This pipe/queue is referenced in filter rules, please remove references from there before deleting.");
				}
			}
			if (!$input_errors) {
				$queue->delete_queue();
				if (write_config())
					mark_subsystem_dirty('shaper');
				header("Location: firewall_shaper_vinterface.php");
				exit;
			}
			$output_form .= $queue->build_form();
		} else {
			$input_errors[] = sprintf(gettext("No queue with name %s was found!"),$qname);
			$output_form .= $dn_default_shaper_msg;
			$dontshow = true;
		}
		break;
	case "resetall":
		foreach ($dummynet_pipe_list as $dn)
			$dn->delete_queue();
		unset($dummynet_pipe_list);
		$dummynet_pipe_list = array();
		unset($config['dnshaper']['queue']);
		unset($queue);
		unset($pipe);
		$can_add = false;
		$can_enable = false;
		$dontshow = true;
		foreach ($config['filter']['rule'] as $key => $rule) {
			if (isset($rule['dnpipe']))
				unset($config['filter']['rule'][$key]['dnpipe']);
			if (isset($rule['pdnpipe']))
				unset($config['filter']['rule'][$key]['pdnpipe']);
		}
		if (write_config()) {
			$retval = 0;
			$retval = filter_configure();
			$savemsg = get_std_save_message($retval);

			if (stristr($retval, "error") <> true)
				$savemsg = get_std_save_message($retval);
			else
				$savemsg = $retval;
		} else
			$savemsg = gettext("Unable to write config.xml (Access Denied?)");
		$output_form = $dn_default_shaper_message;

		break;
	case "add":
		if ($dnpipe) {
			$q = new dnqueue_class();
			$q->SetPipe($pipe);
			$output_form .= "<input type=\"hidden\" name=\"parentqueue\" id=\"parentqueue\"";
			$output_form .= " value=\"".$pipe."\" />";
		} else if ($addnewpipe) {
			$q = new dnpipe_class();
			$q->SetQname($pipe);
146
		} else
Ad Schellevis's avatar
Ad Schellevis committed
147 148 149 150 151 152 153 154 155 156
			$input_errors[] = gettext("Could not create new queue/discipline!");

		if ($q) {
			$output_form .= $q->build_form();
			$newjavascript = $q->build_javascript();
			unset($q);
			$newqueue = true;
		}
		break;
	case "show":
157
		if ($queue)
Ad Schellevis's avatar
Ad Schellevis committed
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
                       $output_form .= $queue->build_form();
		else
			$input_errors[] = gettext("Queue not found!");
		break;
	case "enable":
		if ($queue) {
			$queue->SetEnabled("on");
			$output_form .= $queue->build_form();
			$queue->wconfig();
			if (write_config())
				mark_subsystem_dirty('shaper');
		} else
			$input_errors[] = gettext("Queue not found!");
		break;
	case "disable":
		if ($queue) {
			$queue->SetEnabled("");
			$output_form .= $queue->build_form();
			$queue->wconfig();
			if (write_config())
				mark_subsystem_dirty('shaper');
		} else
			$input_errors[] = gettext("Queue not found!");
		break;
	default:
		$output_form .= $dn_default_shaper_msg;
		$dontshow = true;
		break;
	}
} else if ($_POST) {
	unset($input_errors);

	if ($addnewpipe) {
		if (!empty($dummynet_pipe_list[$qname]))
			$input_errors[] = gettext("You cannot name a child queue with the same name as a parent limiter");
		else {
			$dnpipe =& new dnpipe_class();
195

Ad Schellevis's avatar
Ad Schellevis committed
196 197 198 199 200 201 202
			$dnpipe->ReadConfig($_POST);
			$dnpipe->validate_input($_POST, $input_errors);
			if (!$input_errors) {
				$number = dnpipe_find_nextnumber();
				$dnpipe->SetNumber($number);
				unset($tmppath);
				$tmppath[] = $dnpipe->GetQname();
203
				$dnpipe->SetLink($tmppath);
Ad Schellevis's avatar
Ad Schellevis committed
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
				$dnpipe->wconfig();
				if (write_config())
					mark_subsystem_dirty('shaper');
				$can_enable = true;
				$can_add = true;
			}

			read_dummynet_config();
			$output_form .= $dnpipe->build_form();
			$newjavascript = $dnpipe->build_javascript();
		}
	} else if ($parentqueue) { /* Add a new queue */
		if (!empty($dummynet_pipe_list[$qname]))
			$input_errors[] = gettext("You cannot name a child queue with the same name as a parent limiter");
		else if ($dnpipe) {
			$tmppath =& $dnpipe->GetLink();
			array_push($tmppath, $qname);
			$tmp =& $dnpipe->add_queue($pipe, $_POST, $tmppath, $input_errors);
			if (!$input_errors) {
				array_pop($tmppath);
				$tmp->wconfig();
				if (write_config()) {
					$can_enable = true;
					$can_add = false;
					mark_subsystem_dirty('shaper');
				}
			}
			read_dummynet_config();
			$output_form .= $tmp->build_form();
		} else
			$input_errors[] = gettext("Could not add new queue.");
	} else if ($_POST['apply']) {
			write_config();

			$retval = 0;
			$retval = filter_configure();
			$savemsg = get_std_save_message($retval);
241

Ad Schellevis's avatar
Ad Schellevis committed
242 243 244 245 246
			if (stristr($retval, "error") <> true)
					$savemsg = get_std_save_message($retval);
			else
					$savemsg = $retval;

247
		/* XXX: TODO Make dummynet pretty graphs */
Ad Schellevis's avatar
Ad Schellevis committed
248 249 250
		//	enable_rrd_graphing();

			clear_subsystem_dirty('shaper');
251

Ad Schellevis's avatar
Ad Schellevis committed
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
			if ($queue) {
				$output_form .= $queue->build_form();
				$dontshow = false;
			}
			else {
				$output_form .= $dn_default_shaper_message;
				$dontshow = true;
			}

	} else if ($queue) {
                $queue->validate_input($_POST, $input_errors);
                if (!$input_errors) {
			$queue->update_dn_data($_POST);
			$queue->wconfig();
			if (write_config())
				mark_subsystem_dirty('shaper');
			$dontshow = false;
269
                }
Ad Schellevis's avatar
Ad Schellevis committed
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
		read_dummynet_config();
		$output_form .= $queue->build_form();
	} else  {
		$output_form .= $dn_default_shaper_msg;
		$dontshow = true;
	}
} else {
	$output_form .= $dn_default_shaper_msg;
	$dontshow = true;
}

if ($queue) {
                        if ($queue->GetEnabled())
                                $can_enable = true;
                        else
                                $can_enable = false;
286 287
                        if ($queue->CanHaveChildren()) {
				$can_add = true;
Ad Schellevis's avatar
Ad Schellevis committed
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
                        } else
                                $can_add = false;
}

$tree = "<ul class=\"tree\" >";
if (is_array($dummynet_pipe_list)) {
        foreach ($dummynet_pipe_list as $tmpdn) {
                $tree .= $tmpdn->build_tree();
        }
}
$tree .= "</ul>";

if (!$dontshow || $newqueue) {

$output_form .= "<tr><td width=\"22%\" valign=\"top\" class=\"vncellreq\">";
$output_form .= gettext("Queue Actions");
$output_form .= "</td><td valign=\"top\" class=\"vncellreq\" width=\"78%\">";

Ad Schellevis's avatar
Ad Schellevis committed
306
$output_form .= "<input type=\"submit\" name=\"Submit\" value=\"" . gettext("Save") . "\" class=\"btn btn-primary\" />";
Ad Schellevis's avatar
Ad Schellevis committed
307 308
if ($can_add || $addnewaltq) {
	$output_form .= "<a href=\"firewall_shaper_vinterface.php?pipe=";
309
	$output_form .= $pipe;
Ad Schellevis's avatar
Ad Schellevis committed
310 311 312 313
	if ($queue) {
		$output_form .= "&amp;queue=" . $queue->GetQname();
	}
	$output_form .= "&amp;action=add\">";
Ad Schellevis's avatar
Ad Schellevis committed
314
	$output_form .= "<input type=\"button\" class=\"btn btn-primary\" name=\"add\" value=\"" . gettext("Add new queue") ."\" />";
Ad Schellevis's avatar
Ad Schellevis committed
315 316 317 318 319 320 321 322
	$output_form .= "</a>";
}
$output_form .= "<a href=\"firewall_shaper_vinterface.php?pipe=";
$output_form .= $pipe;
if ($queue) {
	$output_form .= "&amp;queue=" . $queue->GetQname();
}
$output_form .= "&amp;action=delete\">";
Ad Schellevis's avatar
Ad Schellevis committed
323
$output_form .= "<input type=\"button\" class=\"btn btn-default\" name=\"delete\"";
Ad Schellevis's avatar
Ad Schellevis committed
324 325 326 327
if ($queue)
	$output_form .= " value=\"" . gettext("Delete this queue") ."\" />";
else
	$output_form .= " value=\"" . gettext("Delete Limiter") ."\" />";
328
$output_form .= "</a>";
Ad Schellevis's avatar
Ad Schellevis committed
329 330
$output_form .= "</td></tr>";
$output_form .= "</table>";
331 332
}
else
Ad Schellevis's avatar
Ad Schellevis committed
333 334 335 336 337 338 339
	$output_form .= "</table>";

$output = "<table summary=\"output form\">";
$output .= $output_form;
$closehead = false;
include("head.inc");
?>
Jos Schellevis's avatar
Jos Schellevis committed
340 341 342

<body>

Ad Schellevis's avatar
Ad Schellevis committed
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
<link rel="stylesheet" type="text/css" media="all" href="./tree/tree.css" />
<script type="text/javascript" src="./tree/tree.js"></script>
<script type="text/javascript">
//<![CDATA[
function show_source_port_range() {
        document.getElementById("sprtable").style.display = '';
	document.getElementById("sprtable1").style.display = '';
	document.getElementById("sprtable2").style.display = '';
	document.getElementById("sprtable5").style.display = '';
	document.getElementById("sprtable4").style.display = 'none';
	document.getElementById("showadvancedboxspr").innerHTML='';
}
//]]>
</script>

<?php
if ($queue)
	echo $queue->build_javascript();
else
	echo $newjavascript;
363

Ad Schellevis's avatar
Ad Schellevis committed
364 365 366 367

$main_buttons = array(
	array('label'=>gettext("Create new limiter"), 'href'=>'firewall_shaper_vinterface.php?pipe=new&amp;action=add'),
);
Ad Schellevis's avatar
Ad Schellevis committed
368

369 370

include("fbegin.inc");
Ad Schellevis's avatar
Ad Schellevis committed
371 372 373
?>


Ad Schellevis's avatar
Ad Schellevis committed
374
	<section class="page-content-main">
375 376 377
		<div class="container-fluid">
			<div class="row">

Ad Schellevis's avatar
Ad Schellevis committed
378 379
				<div id="inputerrors"></div>
				<?php if ($input_errors) print_input_errors($input_errors); ?>
380

Ad Schellevis's avatar
Ad Schellevis committed
381 382 383 384 385 386
				<?php if ($savemsg) print_info_box($savemsg); ?>
				<?php if (is_subsystem_dirty('shaper')): ?><p>
				<?php print_info_box_np(gettext("The traffic shaper configuration has been changed.")."<br />".gettext("You must apply the changes in order for them to take effect."));?><br /></p>
				<?php endif; ?>

			    <section class="col-xs-12">
387 388 389


					<?php
Ad Schellevis's avatar
Ad Schellevis committed
390 391 392 393 394 395 396 397
							$tab_array = array();
							$tab_array[0] = array(gettext("By Interface"), false, "firewall_shaper.php");
							$tab_array[1] = array(gettext("By Queue"), false, "firewall_shaper_queues.php");
							$tab_array[2] = array(gettext("Limiter"), true, "firewall_shaper_vinterface.php");
							$tab_array[3] = array(gettext("Layer7"), false, "firewall_shaper_layer7.php");
							$tab_array[4] = array(gettext("Wizards"), false, "firewall_shaper_wizards.php");
							display_top_tabs($tab_array);
						?>
398 399


Ad Schellevis's avatar
Ad Schellevis committed
400
						<div class="tab-content content-box col-xs-12">
401

Ad Schellevis's avatar
Ad Schellevis committed
402
		                        <form action="firewall_shaper_vinterface.php" method="post" name="iform" id="iform">
403 404


Ad Schellevis's avatar
Ad Schellevis committed
405 406 407 408 409 410 411 412 413
		                        <div class="table-responsive">
			                        <table class="table table-striped table-sort">
									<?php if (count($dummynet_pipe_list) > 0): ?>
									                        <tr class="tabcont"><td width="25%" align="left">
									                        </td><td width="75%"> </td></tr>
									<?php endif; ?>
												<tr>
												<td width="25%" valign="top" align="left">
												<?php
414
													echo $tree;
Ad Schellevis's avatar
Ad Schellevis committed
415
												?>
416

Ad Schellevis's avatar
Ad Schellevis committed
417 418 419 420 421
												</td>
												<td width="75%" valign="top" align="center">
												<div id="shaperarea" style="position:relative">
												<?php
													echo $output;
422
												?>
Ad Schellevis's avatar
Ad Schellevis committed
423
												</div>
424

Ad Schellevis's avatar
Ad Schellevis committed
425 426 427 428 429 430 431
											      </td>
											 </tr>
									     </table>
											</div>
		                        </form>
						</div>
			    </section>
Ad Schellevis's avatar
Ad Schellevis committed
432 433
			</div>
		</div>
Ad Schellevis's avatar
Ad Schellevis committed
434
	</section>
435 436


Ad Schellevis's avatar
Ad Schellevis committed
437 438 439 440
<script type='text/javascript'>
//<![CDATA[
<?php
	$totalrows = 0;
441
	if (is_array($config['dnshaper']) && is_array($config['dnshaper']['queue']))
Ad Schellevis's avatar
Ad Schellevis committed
442 443 444 445 446
		$totalrows = count($config['dnshaper']['queue']);
	echo "totalrows = {$totalrows}";
?>
//]]>
</script>
447
<?php include("foot.inc"); ?>