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

3 4 5
/*
	Copyright (C) 2008 Shrew Soft Inc
	Copyright (C) 2007-2008 Scott Ullrich <sullrich@gmail.com>
Ad Schellevis's avatar
Ad Schellevis committed
6
        Copyright (C) 2005-2006 Bill Marquette <bill.marquette@gmail.com>
7 8
        Copyright (C) 2006 Paul Taylor <paultaylor@winn-dixie.com>
        Copyright (C) 2003-2006 Manuel Kasper <mk@neon1.net>
Ad Schellevis's avatar
Ad Schellevis committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
        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.
*/
32 33 34 35
require_once("script/load_phalcon.php");
global $priv_list;
$acl = new OPNsense\Core\ACL();
$priv_list = $acl->getLegacyPrivList();
Ad Schellevis's avatar
Ad Schellevis committed
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


function cmp_page_matches($page, & $matches, $fullwc = true) {

//	$dbg_matches = implode(",", $matches);
//	log_error("debug: checking page {$page} match with {$dbg_matches}");

	if (!is_array($matches))
		return false;

	/* skip any leading fwdslash */
	$test = strpos($page, "/");
	if ($test !== false && $test == 0)
		$page = substr($page, 1);

	/* look for a match */
	foreach ($matches as $match) {

		/* possibly ignore full wildcard match */
		if (!$fullwc && !strcmp($match ,"*"))
			continue;

		/* compare exact or wildcard match */
		$match =  str_replace(array(".", "*","?"), array("\.", ".*","\?"), $match);
		$result = preg_match("@^/{$match}$@", "/{$page}");
61

Ad Schellevis's avatar
Ad Schellevis committed
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
		if ($result)
			return true;
	}

	return false;
}


function get_user_privdesc(& $user) {
	global $priv_list;

	$privs = array();

	$user_privs = $user['priv'];
	if (!is_array($user_privs))
		$user_privs = array();

	$names = local_user_get_groups($user, true);

	foreach ($names as $name) {
		$group = getGroupEntry($name);
		$group_privs = $group['priv'];
		if (!is_array($group_privs))
			continue;
		foreach ($group_privs as $pname) {
			if (in_array($pname,$user_privs))
				continue;
			if (!$priv_list[$pname])
				continue;
			$priv = $priv_list[$pname];
			$priv['group'] = $group['name'];
			$privs[] = $priv;
		}
	}

	foreach ($user_privs as $pname)
		if($priv_list[$pname])
			$privs[] = $priv_list[$pname];

	return $privs;
}

104 105
function isAllowed($username, $page)
{
Ad Schellevis's avatar
Ad Schellevis committed
106 107
	global $_SESSION;

108
	if (!isset($username)) {
Ad Schellevis's avatar
Ad Schellevis committed
109
		return false;
110
	}
Ad Schellevis's avatar
Ad Schellevis committed
111

112
	/* root access check */
Ad Schellevis's avatar
Ad Schellevis committed
113
	$user = getUserEntry($username);
114 115 116
	if (isset($user)) {
		if (isset($user['uid'])) {
			if ($user['uid'] == 0) {
Ad Schellevis's avatar
Ad Schellevis committed
117
				return true;
118 119 120
			}
		}
	}
Ad Schellevis's avatar
Ad Schellevis committed
121 122

	/* user privelege access check */
123
	if (cmp_page_matches($page, $_SESSION['page-match'])) {
Ad Schellevis's avatar
Ad Schellevis committed
124
		return true;
125
	}
Ad Schellevis's avatar
Ad Schellevis committed
126 127 128 129

	return false;
}

130 131
function isAllowedPage($page)
{
Ad Schellevis's avatar
Ad Schellevis committed
132 133 134 135
	global $_SESSION;

	$username = $_SESSION['Username'];

136
	if (!isset($username)) {
Ad Schellevis's avatar
Ad Schellevis committed
137
		return false;
138
	}
Ad Schellevis's avatar
Ad Schellevis committed
139

140
	/* root access check */
Ad Schellevis's avatar
Ad Schellevis committed
141
	$user = getUserEntry($username);
142 143 144
	if (isset($user)) {
		if (isset($user['uid'])) {
			if ($user['uid'] == 0) {
Ad Schellevis's avatar
Ad Schellevis committed
145
				return true;
146 147 148
			}
		}
	}
Ad Schellevis's avatar
Ad Schellevis committed
149 150 151 152 153 154 155 156

	/* user privelege access check */
	return cmp_page_matches($page, $_SESSION['page-match']);
}

function getPrivPages(& $entry, & $allowed_pages) {
	global $priv_list;

157
	if (!isset($entry['priv']) || !is_array($entry['priv']))
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
		return;

	foreach ($entry['priv'] as $pname) {
		if (strncmp($pname, "page-", 5))
			continue;
		$priv = &$priv_list[$pname];
		if (!is_array($priv))
			continue;
		$matches = &$priv['match'];
		if (!is_array($matches))
			continue;
		foreach ($matches as $match)
			$allowed_pages[] = $match;
	}
}

function getAllowedPages($username) {
	global $config, $_SESSION;

	if (!function_exists("ldap_connect"))
		return;
179

Ad Schellevis's avatar
Ad Schellevis committed
180 181
	$allowed_pages = array();
	$allowed_groups = array();
182

183 184 185 186 187
	if (isset($config['system']['webgui']['authmode'])) {
		$authcfg = auth_get_authserver($config['system']['webgui']['authmode']);
	} else {
		$authcfg['type'] = 'local';
	}
Ad Schellevis's avatar
Ad Schellevis committed
188 189 190 191 192 193 194 195 196
	// obtain ldap groups if we are in ldap mode
	if ($authcfg['type'] == "ldap")
		$allowed_groups = @ldap_get_groups($username, $authcfg);
	else {
		// search for a local user by name
		$local_user = getUserEntry($username);
		getPrivPages($local_user, $allowed_pages);

		// obtain local groups if we have a local user
197
		$allowed_groups = local_user_get_groups($local_user);
Ad Schellevis's avatar
Ad Schellevis committed
198 199 200
	}

	// build a list of allowed pages
201 202 203
	if (is_array($config['system']['group']) && is_array($allowed_groups)) {
		foreach ($config['system']['group'] as $group) {
			if (in_array($group['name'], $allowed_groups)) {
Ad Schellevis's avatar
Ad Schellevis committed
204
				getPrivPages($group, $allowed_pages);
205 206 207
			}
		}
	}
Ad Schellevis's avatar
Ad Schellevis committed
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227

//	$dbg_pages = implode(",", $allowed_pages);
//	$dbg_groups = implode(",", $allowed_groups);
//	log_error("debug: user {$username} groups = {$dbg_groups}");
//	log_error("debug: user {$username} pages = {$dbg_pages}");

	$_SESSION['page-match'] = $allowed_pages;

	return $allowed_pages;
}

function sort_user_privs($privs) {
	// Privileges to place first, to redirect properly.
	$priority_privs = array("page-dashboard-all", "page-system-login/logout");

	$fprivs = array_intersect($privs, $priority_privs);
	$sprivs  = array_diff($privs, $priority_privs);

	return array_merge($fprivs, $sprivs);
}
228
?>