miniupnpd.inc 7.8 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1 2
<?php

3 4 5
require_once("util.inc");
require_once("config.inc");
require_once("functions.inc");
Ad Schellevis's avatar
Ad Schellevis committed
6

7
$shortcut_section = "upnp";
Ad Schellevis's avatar
Ad Schellevis committed
8

9
/* MiniUPnPd */
Ad Schellevis's avatar
Ad Schellevis committed
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
function upnp_notice ($msg) { log_error("miniupnpd: {$msg}"); }
function upnp_warn ($msg) { log_error("miniupnpd: {$msg}"); }

function upnp_running () {
	if((int)exec('/bin/pgrep -a miniupnpd | /usr/bin/wc -l') > 0)
		return true;
	return false;
}

function upnp_write_config($file, $text) {
	$handle = fopen($file, 'w');
	if(!$handle) {
		upnp_warn("Could not open {$file} for writing.");
		return;
	}
	fwrite($handle, $text);
	fclose($handle);
}

function upnp_uuid() {
	/* md5 hash of wan mac */
	$uuid = md5(get_interface_mac(get_real_interface("wan")));
	/* put uuid in correct format 8-4-4-4-12 */
	return substr($uuid,0,8).'-'.substr($uuid,9,4).'-'.substr($uuid,13,4).'-'.substr($uuid,17,4).'-'.substr($uuid,21,12);
}

function upnp_validate_ip($ip, $check_cdir) {
	/* validate cidr */
	$ip_array = array();
	if($check_cdir)	{
		$ip_array = explode('/', $ip);
		if(count($ip_array) == 2) {
			if($ip_array[1] < 1 || $ip_array[1] > 32)
				return false;
		} else
			if(count($ip_array) != 1)
				return false;
	} else
		$ip_array[] = $ip;
Ad Schellevis's avatar
Ad Schellevis committed
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
	/* validate ip */
	if (!is_ipaddr($ip_array[0]))
		return false;
	return true;
}

function upnp_validate_port($port) {
	foreach(explode('-', $port) as $sub)
		if($sub < 0 || $sub > 65535)
			return false;
	return true;
}

function before_form_miniupnpd(&$pkg) {
	global $config;

}

function validate_form_miniupnpd($post, &$input_errors) {
	if($post['enable'] && (!$post['enable_upnp'] && !$post['enable_natpmp']))
		$input_errors[] = 'At least one of \'UPnP\' or \'NAT-PMP\' must be allowed';
	if($post['iface_array'])
		foreach($post['iface_array'] as $iface) {
			if($iface == 'wan')
				$input_errors[] = 'It is a security risk to specify WAN in the \'Interface\' field';
			elseif ($iface == $post['ext_iface'])
				$input_errors[] = 'You cannot select the external interface as an internal interface.';
		}
	if($post['overridewanip'] && !upnp_validate_ip($post['overridewanip'],false))
		$input_errors[] = 'You must specify a valid ip address in the \'Override WAN address\' field';
	if(($post['download'] && !$post['upload']) || ($post['upload'] && !$post['download']))
		$input_errors[] = 'You must fill in both \'Maximum Download Speed\' and \'Maximum Upload Speed\' fields';
	if($post['download'] && $post['download'] <= 0)
		$input_errors[] = 'You must specify a value greater than 0 in the \'Maximum Download Speed\' field';
	if($post['upload'] && $post['upload'] <= 0)
		$input_errors[] = 'You must specify a value greater than 0 in the \'Maximum Upload Speed\' field';

	/* user permissions validation */
	for($i=1; $i<=4; $i++) {
		if($post["permuser{$i}"]) {
			$perm = explode(' ',$post["permuser{$i}"]);
			/* should explode to 4 args */
			if(count($perm) != 4) {
				$input_errors[] = "You must follow the specified format in the 'User specified permissions {$i}' field";
			} else {
				/* must with allow or deny */
				if(!($perm[0] == 'allow' || $perm[0] == 'deny'))
					$input_errors[] = "You must begin with allow or deny in the 'User specified permissions {$i}' field";
				/* verify port or port range */
				if(!upnp_validate_port($perm[1]) || !upnp_validate_port($perm[3]))
					$input_errors[] = "You must specify a port or port range between 0 and 65535 in the 'User specified
						permissions {$i}' field";
				/* verify ip address */
				if(!upnp_validate_ip($perm[2],true))
					$input_errors[] = "You must specify a valid ip address in the 'User specified permissions {$i}' field";
			}
Ad Schellevis's avatar
Ad Schellevis committed
107 108
		}
	}
109
}
Ad Schellevis's avatar
Ad Schellevis committed
110

111 112 113
function sync_package_miniupnpd() {
	global $config;
	global $input_errors;
Ad Schellevis's avatar
Ad Schellevis committed
114

115 116 117 118 119 120 121 122 123 124 125 126
	$upnp_config = $config['installedpackages']['miniupnpd']['config'][0];
	$config_file = '/var/etc/miniupnpd.conf';

	if (!isset($upnp_config['ext_iface']) || empty($upnp_config['ext_iface']))
		$ext_ifname = get_real_interface();
	else {
		$if = convert_friendly_interface_to_real_interface_name($upnp_config['ext_iface']);
		if ($if != $upnp_config['ext_iface'])
			$ext_ifname = $if;
		else {
			$ext_ifname = get_real_interface();
			upnp_warn("Could not resolve real interface for {$upnp_config['ext_iface']}, defaulting to WAN");
Ad Schellevis's avatar
Ad Schellevis committed
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
	$config_text = "ext_ifname={$ext_ifname}\n";
	$config_text .= "port=2189\n";

	$ifaces_active = '';

	/* since config is written before this file invoked we don't need to read post data */
	if($upnp_config['enable'] && !empty($upnp_config['iface_array'])) {
		$iface_array = explode(',', $upnp_config['iface_array']);

		foreach($iface_array as $iface) {
			/* Setting the same internal and external interface is not allowed. */
			if ($iface == $upnp_config['ext_iface'])
				continue;
			$if = convert_friendly_interface_to_real_interface_name($iface);
			/* above function returns iface if fail */
			if($if!=$iface) {
				$addr = find_interface_ip($if);
				$bits = find_interface_subnet($if);
				/* check that the interface has an ip address before adding parameters */
				if (is_ipaddr($addr)) {
					$config_text .= "listening_ip={$if}\n";
					if(!$ifaces_active) {
						$webgui_ip = $addr;
						$ifaces_active = $iface;
					} else
						$ifaces_active .= ", {$iface}";
				} else
					upnp_warn("Interface {$iface} has no ip address, ignoring");
Ad Schellevis's avatar
Ad Schellevis committed
158
			} else
159 160
				upnp_warn("Could not resolve real interface for {$iface}");
		}
Ad Schellevis's avatar
Ad Schellevis committed
161

162 163 164 165
		if (!empty($ifaces_active)) {
			/* override wan ip address, common for carp, etc */
			if($upnp_config['overridewanip'])
				$config_text .= "ext_ip={$upnp_config['overridewanip']}\n";
Ad Schellevis's avatar
Ad Schellevis committed
166

167 168
			$download = $upnp_config['download']*1000;
			$upload = $upnp_config['upload']*1000;
Ad Schellevis's avatar
Ad Schellevis committed
169

170 171 172 173 174
			/* set upload and download bitrates */
			if(!empty($download) && !empty($upload)) {
				$config_text .= "bitrate_down={$download}\n";
				$config_text .= "bitrate_up={$upload}\n";
			}
Ad Schellevis's avatar
Ad Schellevis committed
175

176 177 178
			/* enable logging of packets handled by miniupnpd rules */
			if($upnp_config['logpackets'])
				$config_text .= "packet_log=yes\n";
Ad Schellevis's avatar
Ad Schellevis committed
179

180 181 182 183 184 185 186 187 188 189
			/* enable system uptime instead of miniupnpd uptime */
			if($upnp_config['sysuptime'])
				$config_text .= "system_uptime=yes\n";

			/* set webgui url */
			if(!empty($config['system']['webgui']['protocol'])) {
				$config_text .= "presentation_url={$config['system']['webgui']['protocol']}://{$webgui_ip}";
				if(!empty($config['system']['webgui']['port']))
					$config_text .= ":{$config['system']['webgui']['port']}";
				$config_text .= "/\n";
Ad Schellevis's avatar
Ad Schellevis committed
190 191
			}

192 193 194
			/* set uuid and serial */
			$config_text .= "uuid=".upnp_uuid()."\n";
			$config_text .= "serial=".strtoupper(substr(upnp_uuid(),0,8))."\n";
Ad Schellevis's avatar
Ad Schellevis committed
195

196 197
			/* set model number */
			$config_text .= "model_number=".file_get_contents("/usr/local/opnsense/version/opnsense")."\n";
Ad Schellevis's avatar
Ad Schellevis committed
198

199 200 201 202
			/* upnp access restrictions */
			for($i=1; $i<=4; $i++) {
				if($upnp_config["permuser{$i}"])
					$config_text .= "{$upnp_config["permuser{$i}"]}\n";
Ad Schellevis's avatar
Ad Schellevis committed
203 204
			}

205 206 207 208 209 210 211 212 213 214 215 216 217 218
			if($upnp_config['permdefault'])
				$config_text .= "deny 0-65535 0.0.0.0/0 0-65535\n";

			/* Allow UPnP or NAT-PMP as requested */
			$config_text .= "enable_upnp="   . ( $upnp_config['enable_upnp']   ? "yes\n" : "no\n" );
			$config_text .= "enable_natpmp=" . ( $upnp_config['enable_natpmp'] ? "yes\n" : "no\n" );

			/* write out the configuration */
			upnp_write_config($config_file, $config_text);

			/* if miniupnpd not running start it */
			if(!upnp_running()) {
				upnp_notice("Starting service on interface: {$ifaces_active}");
				upnp_action('start');
Ad Schellevis's avatar
Ad Schellevis committed
219
			}
220 221 222 223
			/* or restart miniupnpd if settings were changed */
			else {
				upnp_notice("Restarting service on interface: {$ifaces_active}");
				upnp_action('restart');
Ad Schellevis's avatar
Ad Schellevis committed
224 225
			}
		}
226 227 228 229 230 231 232 233 234 235 236 237 238
	} else {
		/* user does not want miniupnpd running */
		/* lets stop the service and remove the rc file */

		if (file_exists($config_file)) {
			if(!$upnp_config['enable'])
				upnp_notice('Stopping service: miniupnpd disabled');
			else
				upnp_notice('Stopping service: no interfaces selected');

			upnp_action('stop');
			@unlink($config_file);
		}
Ad Schellevis's avatar
Ad Schellevis committed
239
	}
240
}