summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/inc/auth.inc702
-rw-r--r--etc/inc/authgui.inc306
-rw-r--r--etc/inc/config.inc53
-rw-r--r--etc/inc/functions.inc3
-rw-r--r--etc/inc/globals.inc5
-rw-r--r--etc/inc/pfsense-utils.inc122
-rwxr-xr-xusr/local/www/fbegin.inc4
-rwxr-xr-xusr/local/www/guiconfig.inc22
-rw-r--r--usr/local/www/headjs.php156
-rw-r--r--usr/local/www/system_groupmanager.php798
-rw-r--r--usr/local/www/system_usermanager.php478
-rwxr-xr-xusr/local/www/system_usermanager_settings.php111
12 files changed, 2638 insertions, 122 deletions
diff --git a/etc/inc/auth.inc b/etc/inc/auth.inc
index a13faaf..c9318bc 100644
--- a/etc/inc/auth.inc
+++ b/etc/inc/auth.inc
@@ -4,6 +4,12 @@
Copyright (C) 2005-2006 Bill Marquette <bill.marquette@gmail.com>
All rights reserved.
+ Copyright (C) 2006 Paul Taylor <paultaylor@winn-dixie.com>.
+ All rights reserved.
+
+ Copyright (C) 2003-2006 Manuel Kasper <mk@neon1.net>.
+ All rights reserved.
+
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
@@ -26,107 +32,605 @@
POSSIBILITY OF SUCH DAMAGE.
*/
-require_once("config.inc");
-require_once("globals.inc");
-
-/* We only support file backed HTTP Basic auth right now */
-$auth_method="htpasswd_backed_basic_auth";
-
-/* Authenticate user - exit if failed (we should have a callback for this maybe) */
-if (!$auth_method())
- exit;
-
-function basic_auth_prompt(){
- header("WWW-Authenticate: Basic realm=\".\"");
- header("HTTP/1.0 401 Unauthorized");
- echo "You must enter valid credentials to access this resource.";
- exit;
-}
-
-function passwd_backed_basic_auth() {
- global $HTTP_SERVER_VARS;
-
- $authfile = file("/etc/master.passwd");
-
- /* Prompt three times and give up */
- for($attempt = 0; $attempt <= 3; basic_auth_prompt()){
- $attempt++;
- /* Check for AUTH_USER */
- if ($HTTP_SERVER_VARS['PHP_AUTH_USER'] <> "") {
- $HTTP_SERVER_VARS['AUTH_USER'] = $HTTP_SERVER_VARS['PHP_AUTH_USER'];
- $HTTP_SERVER_VARS['AUTH_PW'] = $HTTP_SERVER_VARS['PHP_AUTH_PW'];
- }
- if (!isset($HTTP_SERVER_VARS['AUTH_USER']))
- continue;
-
- /* Check to see if user even exists */
- $username = $HTTP_SERVER_VARS['AUTH_USER'];
- if(!($line = array_shift(preg_grep("/^$username:.*$/", $authfile))))
- continue;
-
- /* Get crypted password */
- $matches = "";
- preg_match("/^$username:((\\$1\\$[.\d\w_\/]{8}\\$)[.\d\w_\/]{22})$/", $line, $matches);
- $pass = $matches[1];
- $salt = $matches[2];
-
- /* Encrypt entered password with salt */
- $authpass = crypt($HTTP_SERVER_VARS['AUTH_PW'], $salt);
-
- /* And finally validate password */
- if($authpass == $pass)
- return true;
- else
- continue;
- }
-
- /* Should only get here if user fails login three times */
- return false;
-}
-
-function htpasswd_backed_basic_auth() {
- global $HTTP_SERVER_VARS;
-
- $authfile = file("/var/run/htpasswd");
-
- /* sanity check to ensure that /usr/local/www/.htpasswd doesn't exist */
- unlink_if_exists("/usr/local/www/.htpasswd");
-
- /* Prompt three times and give up */
- for($attempt = 0; $attempt <= 3; basic_auth_prompt()){
- $attempt++;
-
- /* Check for AUTH_USER */
- if ($HTTP_SERVER_VARS['PHP_AUTH_USER'] <> "") {
- $HTTP_SERVER_VARS['AUTH_USER'] = $HTTP_SERVER_VARS['PHP_AUTH_USER'];
- $HTTP_SERVER_VARS['AUTH_PW'] = $HTTP_SERVER_VARS['PHP_AUTH_PW'];
- }
- if (!isset($HTTP_SERVER_VARS['AUTH_USER']))
- continue;
-
- /* Check to see if user even exists */
- $username = $HTTP_SERVER_VARS['AUTH_USER'];
- if(!($line = array_shift(preg_grep("/^$username:.*$/", $authfile))))
- continue;
-
- /* Get crypted password */
- $matches = "";
- preg_match("/^$username:((\\$1\\$[.\d\w_\/]{8}\\$)[.\d\w_\/]{22})$/", $line, $matches);
- $pass = $matches[1];
- $salt = $matches[2];
-
- /* Encrypt entered password with salt */
- $authpass = crypt($HTTP_SERVER_VARS['AUTH_PW'], $salt);
-
- /* And finally validate password */
- if($authpass == $pass)
- return true;
- else
- continue;
+require_once("functions.inc");
+$groupindex = index_groups();
+$userindex = index_users();
+
+function &getSystemAdminNames() {
+ global $config, $g, $userindex;
+ $adminUsers = array();
+
+ if (is_array($config['system']['user'])) {
+ foreach($config['system']['user'] as $user){
+ if (isSystemAdmin($user['name'])) {
+ $adminUsers[] = $user['name'];
+ }
+ }
+ }
+
+ return $adminUsers;
+}
+
+function &getSystemPrivs() {
+ global $g;
+
+ $privs = array();
+
+ $privs[] = array("id" => "lockwc",
+ "name" => "Lock webConfigurator",
+ "desc" => "Indicates whether this user will lock access to " .
+ "the webConfigurator for other users.");
+ $privs[] = array("id" => "lock-ipages",
+ "name" => "Lock individual pages",
+ "desc" => "Indicates whether this user will lock individual " .
+ "HTML pages after having accessed a particular page" .
+ "(the lock will be freed if the user leaves or " .
+ "saves the page form).");
+ $privs[] = array("id" => "hasshell",
+ "name" => "Has shell access",
+ "desc" => "Indicates whether this user is able to login for " .
+ "example via SSH.");
+ $privs[] = array("id" => "copyfiles",
+ "name" => "Is allowed to copy files",
+ "desc" => "Indicates whether this user is allowed to copy files " .
+ "onto the {$g['product_name']} appliance via SCP/SFTP. " .
+ "If you are going to use this privilege, you must install " .
+ "scponly on the appliance (Hint: pkg_add -r scponly).");
+ $privs[] = array("id" => "isroot",
+ "name" => "Is root user",
+ "desc" => "This user is associated with the UNIX root user " .
+ "(you should associate this privilege only with one " .
+ "single user).");
+
+ return $privs;
+}
+
+function assignUID($username = "") {
+ global $userindex, $config, $g;
+
+ if ($username == "") { return; }
+
+ $nextuid = $config['system']['nextuid'];
+ $user =& $config['system']['user'][$userindex[$username]];
+
+ if (empty($user['uid'])) {
+ $user['uid'] = $nextuid;
+ $nextuid++;
+ $config['system']['nextuid'] = $nextuid;
+
+ write_config();
+
+ return $user;
+ }
+}
+
+function assignGID($groupname = "") {
+ global $groupindex, $config, $g;
+
+ if ($groupname == "") { return; }
+
+ $nextgid = $config['system']['nextgid'];
+ $group =& $config['system']['group'][$groupindex[$groupname]];
+
+ if (empty($group['gid'])) {
+ $group['gid'] = $nextgid;
+ $nextgid++;
+ $config['system']['nextgid'] = $nextgid;
+
+ write_config();
+
+ return $group;
+ }
+}
+
+function hasPrivilege($user, $privid = "") {
+ global $userindex, $config, $g;
+
+ if ($privid == "" || ! isset($userindex[$user])) { return 0; }
+
+ $privs = &$config['system']['user'][$userindex[$user]]['priv'];
+
+ if (is_array($privs)) {
+ foreach($privs as $priv){
+ if ($priv['id'] == $privid) {
+ return 1;
+ }
+ }
+ }
+
+ return 0;
+}
+
+function isAllowedToCopyFiles($username) {
+ global $userindex, $config, $g;
+
+ if ($username == "") { return 0; }
+
+ return hasPrivilege($username, "copyfiles");
+}
+
+function hasLockAbility($username) {
+ global $userindex, $config, $g;
+
+ if ($username == "") { return 0; }
+
+ return hasPrivilege($username, "lockwc");
+}
+
+function hasPageLockAbility($username) {
+ global $userindex, $config, $g;
+
+ if ($username == "") { return 0; }
+
+ return hasPrivilege($username, "lock-ipages");
+}
+
+function hasShellAccess($username) {
+ global $userindex, $config, $g;
+
+ if ($username == "") { return 0; }
+
+ return hasPrivilege($username, "hasshell");
+}
+
+function isUNIXRoot($username = "") {
+ global $userindex, $config;
+
+ if ($username == "") { return 0; }
+
+ if (isSystemAdmin($username)) {
+ return hasPrivilege($username, "isroot");
+ }
+
+ return 0;
+}
+
+function setUserFullName($name = "", $new_name = "") {
+ global $config, $g, $userindex;
+
+ if ($name == "" || $new_name == "") { return; }
+
+ $user = &$config['system']['user'][$userindex[$name]];
+ $user['fullname'] = $new_name;
+}
+
+function setUserName($name = "", $new_name = "") {
+ global $config, $g, $userindex;
+
+ if ($name == "" || $new_name == "") { return; }
+
+ $user = &$config['system']['user'][$userindex[$name]];
+ $user['name'] = $new_name;
+}
+
+function setUserPWD($name = "", $password = "") {
+ global $config, $g, $userindex;
+
+ if ($name == "" || $password == "") { return; }
+
+ $user = &$config['system']['user'][$userindex[$name]];
+ $user['password'] = crypt($password);
+}
+
+function setUserGroupName($name = "", $new_name = "") {
+ global $config, $g, $userindex;
+
+ if ($name == "" || $new_name == "") { return; }
+
+ $user = &$config['system']['user'][$userindex[$name]];
+ $user['groupname'] = $new_name;
+}
+
+function setUserType($name = "", $new_type = "") {
+ global $config, $g, $userindex;
+
+ if ($name == "" || $new_type == "") { return; }
+
+ $user = &$config['system']['user'][$userindex[$name]];
+ $user['scope'] = $new_type;
+}
+
+function getUNIXRoot() {
+ global $config, $g, $userindex;
+
+ if (is_array($config['system']['user'])) {
+ foreach($config['system']['user'] as $user){
+ if (isUNIXRoot($user['name'])) {
+ $root = &$config['system']['user'][$userindex[$user['name']]];
+ return $root;
+ }
+ }
+ }
+
+ return NULL;
+}
+
+function getUNIXRootName() {
+ global $config, $g, $userindex;
+
+ if (is_array($config['system']['user'])) {
+ foreach($config['system']['user'] as $user){
+ if (isUNIXRoot($user['name'])) {
+ return $user['name'];
+ }
+ }
+ }
+
+ return NULL;
+}
+
+function getGroupHomePage($group = "") {
+ global $groupindex, $config, $g;
+
+ if ($group == "") { return ""; }
+
+ $page = $config['system']['group'][$groupindex[$group]]['home'];
+ if(empty($page)) { $page = ""; }
+ return $page;
+}
+
+function isSystemAdmin($username = "") {
+ global $groupindex, $userindex, $config, $g;
+
+ if ($username == "") { return 0; }
+
+ $gname = $config['system']['group'][$groupindex[$config['system']['user'][$userindex[$username]]['groupname']]]['name'];
+
+ if (isset($gname)) {
+ return ($gname === $g["admin_group"]);
+ }
+
+ return 0;
+}
+
+function getRealName($username = "") {
+ global $userindex, $config;
+
+ if ($username == "") { return ""; }
+
+ return $config['system']['user'][$userindex[$username]]['fullname'];
+
+}
+
+function basic_auth($backing) {
+ global $HTTP_SERVER_VARS;
+
+ /* Check for AUTH_USER */
+ if ($HTTP_SERVER_VARS['PHP_AUTH_USER'] <> "") {
+ $HTTP_SERVER_VARS['AUTH_USER'] = $HTTP_SERVER_VARS['PHP_AUTH_USER'];
+ $HTTP_SERVER_VARS['AUTH_PW'] = $HTTP_SERVER_VARS['PHP_AUTH_PW'];
+ }
+ if (!isset($HTTP_SERVER_VARS['AUTH_USER'])) {
+ require_once("authgui.inc");
+ header("WWW-Authenticate: Basic realm=\".\"");
+ header("HTTP/1.0 401 Unauthorized");
+ display_error_form("401", gettext("You must enter valid credentials to access this resource."));
+ exit;
+ } else {
+ return $backing($HTTP_SERVER_VARS['AUTH_USER'],$HTTP_SERVER_VARS['AUTH_PW']);
+ }
+}
+
+function session_auth($backing) {
+ global $g, $HTTP_SERVER_VARS, $userindex, $config;
+
+ session_start();
+
+ /* Validate incoming login request */
+ if (isset($_POST['login'])) {
+ if ($backing($_POST['usernamefld'], $_POST['passwordfld'])) {
+ $_SESSION['Logged_In'] = "True";
+ $_SESSION['Username'] = $_POST['usernamefld'];
+ $_SESSION['last_access'] = time();
+ } else {
+ /* give the user a more detailed error message */
+ if (isset($userindex[$_POST['usernamefld']])) {
+ $_SESSION['Login_Error'] = "Wrong password";
+ } else {
+ $_SESSION['Login_Error'] = "User does not exist";
+ }
+ }
+ }
+
+ /* Show login page if they aren't logged in */
+ if (empty($_SESSION['Logged_In'])) {
+ /* Don't display login forms to AJAX */
+ if (isAjax())
+ return false;
+ require_once("authgui.inc");
+ display_login_form();
+ return false;
+ } else {
+ /* If session timeout isn't set, we don't mark sessions stale */
+ if (!isset($config['system']['webgui']['session_timeout']) or
+ $config['system']['webgui']['session_timeout'] == 0 or
+ $config['system']['webgui']['session_timeout'] == "")
+ $_SESSION['last_access'] = time();
+ else
+ /* Check for stale session */
+ if ($_SESSION['last_access'] < (time() - ($config['system']['webgui']['session_timeout'] * 60)))
+ $_GET['logout'] = true;
+ else
+ /* only update if it wasn't ajax */
+ if (!isAjax())
+ $_SESSION['last_access'] = time();
+
+ /* user hit the logout button */
+ if (isset($_GET['logout'])) {
+ if (hasLockAbility($_SESSION['Username'])) {
+ unlink_if_exists("{$g['tmp_path']}/webconfigurator.lock");
+ }
+
+ /* wipe out $_SESSION */
+ $_SESSION = array();
+
+ if (isset($_COOKIE[session_name()])) {
+ setcookie(session_name(), '', time()-42000, '/');
+ }
+
+ /* and destroy it */
+ session_destroy();
+
+ $scriptName = split("/", $_SERVER["SCRIPT_FILENAME"]);
+ $scriptElms = count($scriptName);
+ $scriptName = $scriptName[$scriptElms-1];
+
+ if (isAjax())
+ return false;
+
+ /* redirect to page the user is on, it'll prompt them to login again */
+ pfSenseHeader($scriptName);
+
+ return false;
+
+ /* user wants to explicitely delete the log file.
+ * Requires a particular privilege.
+ */
+ } else if ($_GET['deletelock'] && hasLockAbility($_SESSION['Username'])) {
+ unlink_if_exists("{$g['tmp_path']}/webconfigurator.lock");
+ $HTTP_SERVER_VARS['AUTH_USER'] = $_SESSION['Username'];
+ return true;
+
+ /* this is for debugging purpose if you do not want to use Ajax
+ * to submit a HTML form. It basically diables the observation
+ * of the submit event and hence does not trigger Ajax.
+ */
+ } else if ($_GET['disable_ajax']) {
+ $_SESSION['NO_AJAX'] = "True";
+ $HTTP_SERVER_VARS['AUTH_USER'] = $_SESSION['Username'];
+ return true;
+
+ /* Same to re-enable Ajax.
+ */
+ } else if ($_GET['enable_ajax']) {
+ unset($_SESSION['NO_AJAX']);
+ $HTTP_SERVER_VARS['AUTH_USER'] = $_SESSION['Username'];
+ return true;
+
+ /* user wants to explicitely create a lock.
+ * Requires a particular privilege.
+ */
+ } else if ($_GET['createlock'] && hasLockAbility($_SESSION['Username'])) {
+ $fd = fopen("{$g['tmp_path']}/webconfigurator.lock", "w");
+ fputs($fd, "{$_SERVER['REMOTE_ADDR']} (" .
+ getRealName($_SESSION['Username']) . ")");
+ fclose($fd);
+ /* if the user did delete the lock manually, do not
+ * re-create it while the session is valide.
+ */
+ $_SESSION['Lock_Created'] = "True";
+ $HTTP_SERVER_VARS['AUTH_USER'] = $_SESSION['Username'];
+ return true;
+
+ /* proceed with the login process */
+ } else {
+ /* if the user is allowed to create a lock,
+ * create it once per session.
+ */
+ if (hasLockAbility($_SESSION['Username']) &&
+ ! isset($_SESSION['Lock_Created'])) {
+
+ $fd = fopen("{$g['tmp_path']}/webconfigurator.lock", "w");
+ fputs($fd, "{$_SERVER['REMOTE_ADDR']} (" .
+ getRealName($_SESSION['Username']) . ")");
+ fclose($fd);
+ /* if the user did delete the lock manually, do not
+ * re-create it while the session is valide.
+ */
+ $_SESSION['Lock_Created'] = "True";
+
+ /* give regular users a chance to automatically invalidate
+ * a lock if its older than a particular time.
+ */
+ } else if (! hasLockAbility($_SESSION['Username']) &&
+ file_exists("{$g['tmp_path']}/webconfigurator.lock")) {
+
+ $offset = 12; //hours
+ $mtime = filemtime("{$g['tmp_path']}/webconfigurator.lock");
+ $now_minus_offset = mktime(date("H") - $offset, 0, 0, date("m"), date("d"), date("Y"));
+
+ if (($mtime - $now_minus_offset) < $mtime) {
+ require_once("authgui.inc");
+ display_login_form();
+ return false;
+ } else {
+ /* file is older than mtime + offset which may
+ * indicate a stale lockfile, hence we are going
+ * to remove it.
+ */
+ unlink_if_exists("{$g['tmp_path']}/webconfigurator.lock");
}
+ }
+
+ $HTTP_SERVER_VARS['AUTH_USER'] = $_SESSION['Username'];
+ return true;
+ }
+ }
+}
+
+function pam_backed($username = "", $password = "") {
+ /* we do not support blank pwds, don't we? */
+ if ($username == "" || password == "") { return false; }
+
+ if(! extension_loaded( 'pam_auth' )) {
+ if(! @dl( 'pam_auth.so' )) {
+ return false;
+ } else {
+ /* no php file no auth, sorry */
+ if (! file_exists("/etc/pam.d/php")) {
+ if (! file_exists("/etc/pam.d")) { mkdir("/etc/pam.d"); }
+
+ $pam_php = <<<EOD
+# /etc/pam.d/php
+#
+# note: both an auth and account entry are required
+
+# auth
+auth required pam_nologin.so no_warn
+auth sufficient pam_opie.so no_warn no_fake_prompts
+auth requisite pam_opieaccess.so no_warn allow_local
+auth required pam_unix.so no_warn try_first_pass
+
+# account
+account required pam_unix.so
+
+# session
+session required pam_permit.so
- /* Should only get here if user fails login three times */
+# password
+password required pam_unix.so no_warn try_first_pass
+
+EOD;
+
+ file_put_contents("/etc/pam.d/php", $pam_php);
+ } // end if
+
+ if (pam_auth($username, $password, &$error)) {
+ return true;
+ } else {
return false;
+ }
+ }
+ }
+}
+
+function passwd_backed($username, $passwd) {
+ $authfile = file("/etc/master.passwd");
+
+ $matches="";
+
+ /* Check to see if user even exists */
+ if(!($line = array_shift(preg_grep("/^$username:.*$/", $authfile))))
+ return false;
+
+ /* Get crypted password */
+ preg_match("/^$username:((\\$1\\$[.\d\w_\/]{8}\\$)[.\d\w_\/]{22})$/", $line, $matches);
+ $pass = $matches[1];
+ $salt = $matches[2];
+
+ /* Encrypt entered password with salt
+ * And finally validate password
+ */
+ if ($pass == crypt($passwd, $salt))
+ return true;
+ else
+ return false;
+}
+
+function htpasswd_backed($username, $passwd) {
+ $authfile = file("/var/run/htpasswd");
+
+ /* sanity check to ensure that /usr/local/www/.htpasswd doesn't exist */
+ unlink_if_exists("/usr/local/www/.htpasswd");
+
+ $matches="";
+ if(!($line = array_shift(preg_grep("/^$username:.*$/", $authfile))))
+ return false;
+
+ /* Get crypted password */
+ preg_match("/^$username:((\\$1\\$[.\d\w_\/]{8}\\$)[.\d\w_\/]{22})$/", $line, $matches);
+ $pass = $matches[1];
+ $salt = $matches[2];
+
+ /* Encrypt entered password with salt
+ * And finally validate password
+ */
+ if ($pass == crypt($passwd, $salt))
+ return true;
+ else
+ return false;
+}
+
+function radius_backed($username, $passwd){
+ global $config, $debug;
+ $ret = false;
+ $radiusservers = $config['system']['radius']['servers'];
+
+ $rauth = new Auth_RADIUS_PAP($username, $passwd);
+ foreach ($radiusservers as $radsrv) {
+ // Add a new server to our instance
+ $rauth->addServer($radsrv['ipaddr'], $radsrv['port'], $radsrv['sharedsecret']);
+ }
+
+ if (!$rauth->start()) {
+ $retvalue['auth_val'] = 1;
+ $retvalue['error'] = $rauth->getError();
+ if ($debug)
+ printf("Radius start: %s<br>\n", $retvalue['error']);
+ }
+
+ // XXX - billm - somewhere in here we need to handle securid challenge/response
+
+ // Send request
+ $result = $rauth->send();
+ if (PEAR::isError($result)) {
+ $retvalue['auth_val'] = 1;
+ $retvalue['error'] = $result->getMessage();
+ if ($debug)
+ printf("Radius send failed: %s<br>\n", $retvalue['error']);
+ } else if ($result === true) {
+ $retvalue['auth_val'] = 2;
+ if ($debug)
+ printf (gettext("Radius Auth succeeded") . "<br>\n");
+ $ret = true;
+ } else {
+ $retvalue['auth_val'] = 3;
+ if ($debug)
+ printf (gettext("Radius Auth rejected") . "<br>\n");
+ }
+ // close OO RADIUS_AUTHENTICATION
+ $rauth->close();
+
+ return $ret;
+}
+
+
+function index_groups() {
+ global $g, $config, $groupindex;
+
+ $groupindex = array();
+
+ if (isset($config['system']['group'])) {
+ $i = 0;
+ foreach($config['system']['group'] as $groupent) {
+ $groupindex[$groupent['name']] = $i;
+ $i++;
+ }
+ }
+ return ($groupindex);
+}
+
+function index_users() {
+ global $g, $config;
+
+ if (isset($config['system']['user'])) {
+ $i = 0;
+ foreach($config['system']['user'] as $userent) {
+ $userindex[$userent['name']] = $i;
+ $i++;
+ }
+ }
+ return ($userindex);
}
-?> \ No newline at end of file
+?>
diff --git a/etc/inc/authgui.inc b/etc/inc/authgui.inc
new file mode 100644
index 0000000..2d7975a
--- /dev/null
+++ b/etc/inc/authgui.inc
@@ -0,0 +1,306 @@
+<?php
+/* $Id$ */
+/*
+ Copyright (C) 2005-2006 Bill Marquette <bill.marquette@gmail.com>
+ All rights reserved.
+
+ Copyright (C) 2006 Paul Taylor <paultaylor@winn-dixie.com>.
+ All rights reserved.
+
+ Copyright (C) 2003-2006 Manuel Kasper <mk@neon1.net>.
+ 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.
+*/
+
+include_once("auth.inc");
+require_once("functions.inc");
+/* TODO: Needs testing... require_once("pages.inc"); */
+
+/* We only support htpasswd backed HTTP Basic auth right now
+ * backing methods
+ * passwd_backed - this will use the system passwd file in /etc
+ * radius_backed - this will allow you to use a radius server
+ * htpasswd_backed - this uses the "standard" .htpasswd file
+ * pam_backed - this uses the system's PAM facility .htpasswd file
+ */
+//$auth_method="basic_auth";
+$auth_method="session_auth";
+$backing_method="htpasswd_backed";
+
+/* Authenticate user - exit if failed (we should have a callback for this maybe) */
+if (!$auth_method($backing_method)) { exit; }
+
+/* scriptname is set in headjs.php if the user did try to access a page other
+ * than index.php without beeing logged in.
+ */
+if (isset($_POST['scriptname']) && isSystemAdmin($HTTP_SERVER_VARS['AUTH_USER'])) {
+ pfSenseHeader("{$_POST['scriptname']}");
+ exit;
+}
+
+/* TODO: Needs testing
+if ($_SESSION) {
+ if (isset($_SESSION['Pages'])) {
+ $pfPages = getPageObjectFromSession();
+ } else {
+ $pfPages = getPageObject($HTTP_SERVER_VARS['AUTH_USER']);
+ $pages =& $pfPages->getPages();
+ $pages_index =& $pfPages->getPagesIndex();
+ $allowed_pages_index =& $pfPages->getAllowedPagesIndex();
+
+ $_SESSION['Pages'] = serialize($pages);
+ $_SESSION['Pages_Index'] = serialize($pages_index);
+ $_SESSION['Allowed_Pages_Index'] = serialize($allowed_pages_index);
+ }
+} else {
+ $pfPages = getPageObject($HTTP_SERVER_VARS['AUTH_USER']);
+}
+*/
+
+// Once here, the user has authenticated with the web server.
+// Now, we give them access only to the appropriate pages for their group.
+if (!(isSystemAdmin($HTTP_SERVER_VARS['AUTH_USER']))) {
+ $allowed[] = '';
+ if (isset($config['system']['group'][$groupindex[$config['system']['user'][$userindex[$HTTP_SERVER_VARS['AUTH_USER']]]['groupname']]]['pages'][0])) {
+ $allowed = &$config['system']['group'][$groupindex[$config['system']['user'][$userindex[$HTTP_SERVER_VARS['AUTH_USER']]]['groupname']]]['pages'];
+ }
+
+ $group = $config['system']['user'][$userindex[$HTTP_SERVER_VARS['AUTH_USER']]]['groupname'];
+ /* get the group homepage, to be able to forward
+ * the user to this particular PHP page.
+ */
+ getGroupHomePage($group) == "" ? $home = "/index.php" : $home = "/" . getGroupHomePage($group);
+
+ /* okay but if the user realy tries to explicitely access a particular
+ * page, set $home to that page instead.
+ */
+ if (isset($_POST['scriptname']) && $_POST['scriptname'] <> "/" && $_POST['scriptname'] <> "/index.php")
+ $home = basename($_POST['scriptname']);
+
+ // If the user is attempting to hit the default page, set it to specifically look for /index.php.
+ // Without this, any user would have access to the index page.
+ //if ($_SERVER['SCRIPT_NAME'] == '/')
+ // $_SERVER['SCRIPT_NAME'] = $home;
+
+ // Strip the leading / from the currently requested PHP page
+ if (!in_array(basename($_SERVER['SCRIPT_NAME']),$allowed) && !in_array("ANY", $allowed)) {
+ // The currently logged in user is not allowed to access the page
+ // they are attempting to go to. Redirect them to an allowed page.
+
+ if(stristr($_SERVER['SCRIPT_NAME'],"sajax")) {
+ echo "||Access to AJAX has been disallowed for this user.";
+ exit;
+ }
+
+ if ($home <> "" && (in_array($home, $allowed) || in_array("ANY", $allowed))) {
+ pfSenseHeader("{$home}");
+ exit;
+ } else {
+ header("HTTP/1.0 401 Unauthorized");
+ header("Status: 401 Unauthorized");
+
+ echo display_error_form("401", "401 Unauthorized. Authorization required.");
+ exit;
+ }
+ }
+
+ if (isset($_SESSION['Logged_In'])) {
+ /*
+ * only forward if the user has just logged in
+ * TODO: session auth based - may be an issue.
+ */
+ if ($_SERVER['SCRIPT_NAME'] <> $home && empty($_SESSION['First_Visit'])) {
+ $_SESSION['First_Visit'] = "False";
+ pfSenseHeader("{$home}");
+ exit;
+ }
+ }
+}
+
+function display_error_form($http_code, $desc) {
+ global $config, $g;
+ $g['theme'] = $config['theme'];
+
+ $htmlstr = <<<EOD
+<html>
+ <head>
+ <script type="text/javascript" src="/javascript/scriptaculous/prototype.js"></script>
+ <script type="text/javascript" src="/javascript/scriptaculous/scriptaculous.js"></script>
+ <title>An error occurred: {$http_code}</title>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+ <link rel="shortcut icon" href="/themes/{$g['theme']}/images/icons/favicon.ico" />
+ <link rel="stylesheet" type="text/css" href="/themes/{$g['theme']}/all.css" media="all" />
+ <style type="text/css">
+ #errordesc {
+ background: #cccccc;
+ border: 0px solid #666666;
+ margin: 5em auto;
+ padding: 0em;
+ width: 340px;
+ }
+ #errordesc h1 {
+ background: url(/themes/{$g['theme']}/images/misc/logon.png) no-repeat top left;
+ margin-top: 0;
+ display: block;
+ text-indent: -1000px;
+ height: 50px;
+ border-bottom: none;
+ }
+
+ #login p {
+ font-size: 1em;
+ font-weight: bold;
+ padding: 3px;
+ margin: 0em;
+ text-indent: 10px;
+ }
+
+ #login span {
+ font-size: 1em;
+ font-weight: bold;
+ width: 20%;
+ padding: 3px;
+ margin: 0em;
+ text-indent: 10px;
+ }
+
+ #login p#text {
+ font-size: 1em;
+ font-weight: normal;
+ padding: 3px;
+ margin: 0em;
+ text-indent: 10px;
+ }
+ </style>
+
+ <script type="text/javascript">
+ <!--
+ function page_load() {
+ NiftyCheck();
+ Rounded("div#errordesc","bl br","#333","#cccccc","smooth");
+ Effect.Pulsate('errortext', { duration: 10 });
+ }
+ <?php
+ require("headjs.php");
+ echo getHeadJS();
+ ?>
+ //-->
+ </script>
+ <script type="text/javascript" src="/themes/{$g['theme']}/javascript/niftyjsCode.js"></script>
+ </head>
+ <body onload="page_load();">
+ <div id="errordesc">
+ <h1>&nbsp</h1>
+ <p id="errortext" style="vertical-align: middle; text-align: center;"><span style="color: #000000; font-weight: bold;">{$desc}</span></p>
+ </div>
+ </body>
+</html>
+
+EOD;
+
+ return $htmlstr;
+}
+
+function display_login_form() {
+ require_once("globals.inc");
+ global $config, $g;
+ $g['theme'] = $config['theme'];
+
+ unset($input_errors);
+
+ if(isAjax()) {
+ if (isset($_POST['login'])) {
+ if($_SESSION['Logged_In'] <> "True") {
+ isset($_SESSION['Login_Error']) ? $login_error = $_SESSION['Login_Error'] : $login_error = "unknown reason";
+ echo "showajaxmessage('Invalid login ({$login_error}).');";
+ }
+ if (file_exists("{$g['tmp_path']}/webconfigurator.lock")) {
+ // TODO: add the IP from the user who did lock the device
+ $whom = file_get_contents("{$g['tmp_path']}/webconfigurator.lock");
+ echo "showajaxmessage('This device is currently beeing maintained by: {$whom}.');";
+ }
+ }
+ exit;
+ }
+
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html>
+ <head>
+ <script type="text/javascript" src="/javascript/scriptaculous/prototype.js"></script>
+ <script type="text/javascript" src="/javascript/scriptaculous/scriptaculous.js"></script>
+ <title><?=gettext("Login"); ?></title>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+ <link rel="shortcut icon" href="/themes/<?= $g['theme'] ?>/images/icons/favicon.ico" />
+ <link rel="stylesheet" type="text/css" href="/themes/<?= $g['theme'] ?>/all.css" media="all" />
+ <script type="text/javascript">
+ <!--
+ function page_load() {
+ NiftyCheck();
+ Rounded("div#login","bl br","#333","#cccccc","smooth");
+ document.login_iform.usernamefld.focus();
+ }
+ function clearError() {
+ if($('inputerrors'))
+ $('inputerrors').innerHTML='';
+ }
+ <?php
+ require("headjs.php");
+ echo getHeadJS();
+ ?>
+ //-->
+ </script>
+ <script type="text/javascript" src="/themes/<?= $g['theme'] ?>/javascript/niftyjsCode.js"></script>
+ </head>
+ <body onload="page_load()">
+ <div id="login">
+ <h1>&nbsp;</h1>
+ <form id="iform" name="login_iform" method="post" autocomplete="off" action="<?= $_SERVER['SCRIPT_NAME'] ?>">
+ <div id="inputerrors"></div>
+ <p>
+ <span style="text-align: left;">
+ <?=gettext("Username"); ?>:&nbsp;&nbsp;
+ </span>
+ <input onclick="clearError();" onchange="clearError();" id="usernamefld" type="text" name="usernamefld" class="formfld user" tabindex="1" />
+ </p>
+ <p>
+ <span style="text-align: left;">
+ <?=gettext("Password"); ?>:&nbsp;&nbsp;
+ </span>
+ <input onclick="clearError();" onchange="clearError();" id="passwordfld" type="password" name="passwordfld" class="formfld pwd" tabindex="2" />
+ </p>
+ <table width="90%" style="margin-right: auto; margin-left: auto;">
+ <tr>
+ <td valign="middle" align="right" style="font-style: italic;"><br /><?=gettext("Enter username and password to login."); ?></td>
+ <td valign="middle" align="left"><input type="submit" id="submit" name="login" class="formbtn" value="<?=gettext("Login"); ?>" tabindex="3" /></td>
+ </tr>
+ </table>
+ </form>
+ </div>
+ </body>
+</html>
+<?php
+} // end function
+
+?>
diff --git a/etc/inc/config.inc b/etc/inc/config.inc
index f4af73c..abedcf3 100644
--- a/etc/inc/config.inc
+++ b/etc/inc/config.inc
@@ -955,6 +955,57 @@ function convert_config() {
$config['version'] = "2.9";
}
+ /* Convert 2.9 -> 3.0 */
+ if ($config['version'] <= 2.9) {
+ $config['system']['webgui']['auth_method'] = "session";
+ $config['system']['webgui']['backing_method'] = "htpasswd";
+
+ if (isset ($config['system']['username'])) {
+ $config['system']['group'] = array();
+ $config['system']['group'][0]['name'] = "admins";
+ $config['system']['group'][0]['description'] = "System Administrators";
+ $config['system']['group'][0]['scope'] = "system";
+ $config['system']['group'][0]['pages'] = "ANY";
+ $config['system']['group'][0]['home'] = "index.php";
+ $config['system']['group'][0]['gid'] = "110";
+
+ $config['system']['user'] = array();
+ $config['system']['user'][0]['name'] = "{$config['system']['username']}";
+ $config['system']['user'][0]['fullname'] = "System Administrator";
+ $config['system']['user'][0]['scope'] = "system";
+ $config['system']['user'][0]['groupname'] = "admins";
+ $config['system']['user'][0]['password'] = "{$config['system']['password']}";
+ $config['system']['user'][0]['uid'] = "0";
+
+ $config['system']['user'][0]['priv'] = array();
+ $config['system']['user'][0]['priv'][0]['id'] = "lockwc";
+ $config['system']['user'][0]['priv'][0]['name'] = "Lock webConfigurator";
+ $config['system']['user'][0]['priv'][0]['descr'] = "Indicates whether this user will lock access to the webConfigurator for other users.";
+ $config['system']['user'][0]['priv'][1]['id'] = "lock-ipages";
+ $config['system']['user'][0]['priv'][1]['name'] = "Lock individual pages";
+ $config['system']['user'][0]['priv'][1]['decr'] = "Indicates whether this user will lock individual HTML pages after having accessed a particular page (the lock will be freed if the user leaves or saves the page form).";
+ $config['system']['user'][0]['priv'][2]['id'] = "hasshell";
+ $config['system']['user'][0]['priv'][2]['name'] = "Has shell access";
+ $config['system']['user'][0]['priv'][2]['descr'] = "Indicates whether this user is able to login for example via SSH.";
+ $config['system']['user'][0]['priv'][3]['id'] = "copyfiles";
+ $config['system']['user'][0]['priv'][3]['name'] = "Is allowed to copy files";
+ $config['system']['user'][0]['priv'][3]['descr'] = "Indicates whether this user is allowed to copy files onto the {$g['product_name']} appliance via SCP/SFTP. If you are going to use this privilege, you must install scponly on the appliance (Hint: pkg_add -r scponly).";
+ $config['system']['user'][0]['priv'][4]['id'] = "isroot";
+ $config['system']['user'][0]['priv'][4]['name'] = "Is root user";
+ $config['system']['user'][0]['priv'][4]['descr'] = "This user is associated with the UNIX root user (you should associate this privilege only with one single user).";
+
+ $config['system']['nextuid'] = "111";
+ $config['system']['nextgid'] = "111";
+
+ /* wipe previous auth configuration */
+ unset ($config['system']['username']);
+ unset ($config['system']['password']);
+ }
+
+ $config['version'] = "3.0";
+ }
+
+
if ($prev_version != $config['version'])
write_config("Upgraded config version level from {$prev_version} to {$config['version']}");
}
@@ -1758,4 +1809,4 @@ function set_device_perms() {
if($g['booting']) echo ".";
$config = parse_config();
-?> \ No newline at end of file
+?>
diff --git a/etc/inc/functions.inc b/etc/inc/functions.inc
index 77a08cb..7fdbcbf 100644
--- a/etc/inc/functions.inc
+++ b/etc/inc/functions.inc
@@ -46,6 +46,7 @@ if(!function_exists("pfSenseHeader")) {
/* END compatibility goo with HEAD */
/* include all configuration functions */
+require_once("auth.inc");
require_once("captiveportal.inc");
require_once("filter.inc");
require_once("interfaces.inc");
@@ -57,4 +58,4 @@ require_once("util.inc");
require_once("vpn.inc");
require_once("vslb.inc");
-?> \ No newline at end of file
+?>
diff --git a/etc/inc/globals.inc b/etc/inc/globals.inc
index 69bf973..00063eb 100644
--- a/etc/inc/globals.inc
+++ b/etc/inc/globals.inc
@@ -47,13 +47,14 @@ $g = array(
"cf_conf_path" => "/cf/conf",
"www_path" => "/usr/local/www",
"xml_rootobj" => "pfsense",
+ "admin_group" => "admins",
"pppoe_interface" => "ng0",
"n_pptp_units" => 16, /* this value can be overriden in pptp->n_pptp_units */
"pptp_subnet" => 28, /* this value can be overriden in pptp->pptp_subnet */
"n_pppoe_units" => 16, /* this value can be overriden in pppoe->n_pppoe_units */
"pppoe_subnet" => 28, /* this value can be overriden in pppoe->pppoe_subnet */
"debug" => false,
- "latest_config" => "2.9",
+ "latest_config" => "3.0",
"nopkg_platforms" => array("cdrom"),
"nopccard_platforms" => array("wrap", "net48xx"),
"xmlrpcbaseurl" => "www.pfsense.com",
@@ -73,4 +74,4 @@ $iptos = array("lowdelay", "throughput", "reliability");
/* TCP flags */
$tcpflags = array("syn", "ack", "fin", "rst", "psh", "urg");
-?> \ No newline at end of file
+?>
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc
index 2d7d27b..ca0a7aa 100644
--- a/etc/inc/pfsense-utils.inc
+++ b/etc/inc/pfsense-utils.inc
@@ -2293,26 +2293,38 @@ function reload_interfaces() {
* none
******/
function sync_webgui_passwords() {
- global $config, $g;
+ global $config, $g, $groupindex, $userindex;
+
conf_mount_rw();
$fd = fopen("{$g['varrun_path']}/htpasswd", "w");
+
if (!$fd) {
- printf("Error: cannot open htpasswd in system_password_configure().\n");
+ log_error("Error: cannot open htpasswd in sync_webgui_passwords().\n");
return 1;
}
- /* set admin account */
- $username = $config['system']['username'];
- /* set defined user account */
- if($username <> "admin") {
- $username = $config['system']['username'];
- fwrite($fd, $username . ":" . $config['system']['password'] . "\n");
- } else {
- fwrite($fd, $username . ":" . $config['system']['password'] . "\n");
+ /* loop through custom users and add "virtual" entries */
+ if ($config['system']['user']) {
+ foreach ($config['system']['user'] as $user)
+ fwrite($fd, "{$user['name']}:{$user['password']}\n");
}
+
fclose($fd);
chmod("{$g['varrun_path']}/htpasswd", 0600);
- $crypted_pw = $config['system']['password'];
+
+ if ($config['system']['user']) {
+ $root =& getUNIXRoot();
+ $crypted_pw = $root['password'];
+ }
+
+ if (empty ($crypted_pw)) {
+ log_error("Error: cannot determine root pwd in sync_webgui_passwords().\nRoot user struct follows:\n");
+ empty($root) ? log_error("Unable to determine root user!\n") : print_r($root);
+ log_error("Testing whether your system has the necessary users... ");
+ empty($config['system']['user']) ? log_error("users are missing.\n") : log_error("users found.\n");
+ return 1;
+ }
+
mwexec("/usr/sbin/pwd_mkdb -d /etc -p /etc/master.passwd");
mwexec("/usr/sbin/pwd_mkdb -p /etc/master.passwd");
/* sync root */
@@ -2320,16 +2332,79 @@ function sync_webgui_passwords() {
fwrite($fd, $crypted_pw);
pclose($fd);
mwexec("/usr/sbin/pw usermod -n root -s /bin/sh");
- /* sync admin */
- $fd = popen("/usr/sbin/pw usermod -n admin -H 0", "w");
- fwrite($fd, $crypted_pw);
- pclose($fd);
- mwexec("/usr/sbin/pw usermod -n admin -s /etc/rc.initial");
+
+ /* and again for shell users */
+ /* only users with hasShellAccess() == true should be synced */
+ if($config['system']['user']) {
+ $home_base = $g['platform'] == "pfSense" ? "/home" : "/var/home";
+
+ if(! is_dir($home_base))
+ mkdir($home_base, 0755);
+
+ foreach($config['system']['user'] as $user) {
+ if (hasShellAccess($user['name']) || isAllowedToCopyFiles($user['name'])) {
+ $home = hasShellAccess($user['name']) ? "{$home_base}/{$user['name']}" : "{$home_base}/scponly";
+ $shell = isAllowedToCopyFiles($user['name']) ? "/usr/local/bin/scponly" : "/etc/rc.initial";
+ if (isAllowedToCopyFiles($user['name']))
+ $user['groupname'] = "scponly";
+
+ $fd = popen("/usr/sbin/pw groupshow -n {$user['groupname']} 2>&1", "r");
+ $pwread = fgets($fd, 4096);
+ pclose($fd);
+
+ if (strpos($pwread, "unknown group") !== false) {
+ $groupname = $user['groupname'];
+ $group = $config['system']['group'][$groupindex[$groupname]];
+
+ if (isset($group) && is_array($group)) {
+ $fd = popen("/usr/sbin/pw groupadd -g {$group['gid']} -n {$group['name']}", "r");
+ pclose($fd);
+ } elseif (isAllowedToCopyFiles($user['name'])) {
+ $fd = popen("/usr/sbin/pw groupadd -g 100 -n scponly", "r");
+ pclose($fd);
+ }
+ }
+
+ $fd = popen("/usr/sbin/pw usershow -n {$user['name']} 2>&1", "r");
+ $pwread = fgets($fd, 4096);
+ pclose($fd);
+
+ isSystemAdmin($user['name']) ? $group = "wheel" : $group = "staff";
+
+ if (strpos($pwread, "no such user") === false) {
+ $fd = popen("/usr/sbin/pw usermod -n {$user['name']} -g ${user['groupname']} -G {$group} -H 0", "w");
+ fwrite($fd, $user['password']);
+ pclose($fd);
+ } else {
+ $fd = popen("/usr/sbin/pw useradd -u {$user['uid']} -n {$user['name']} -c '{$user['fullname']}' -g ${user['groupname']} -G {$group} -H 0", "w");
+ fwrite($fd, $user['password']);
+ pclose($fd);
+ }
+
+ /* common user related operations */
+ mwexec("/usr/sbin/pw usermod -n {$user['name']} -s {$shell}");
+
+ if(! is_dir($home)) mkdir($home, 0755);
+ mwexec("/usr/sbin/pw usermod -n {$user['name']} -d {$home} -m");
+
+ if (isAllowedToCopyFiles($user['name'])) {
+ mwexec("/usr/sbin/pw usermod -n {$user['name']} -g scponly");
+ }
+
+ if (file_exists("{$home_base}/scponly"))
+ mwexec("chmod 0660 {$home_base}/scponly");
+
+ if(isset($config['system']['ssh']['sshdkeyonly']) && ! isAllowedToCopyFiles($user['name'])) {
+ create_authorized_keys($user['name'], $home);
+ }
+ }
+ }
+ }
+
mwexec("/usr/sbin/pwd_mkdb -d /etc -p /etc/master.passwd");
mwexec("/usr/sbin/pwd_mkdb -p /etc/master.passwd");
conf_mount_ro();
}
-
/****f* pfsense-utils/cleanup_opt_interfaces_after_removal
* NAME
* cleanup_opt_interfaces_after_removal - renumber interfaces after removing
@@ -3291,4 +3366,17 @@ function interface_has_gateway($friendly) {
}
}
+/****f* pfsense-utils/isAjax
+ * NAME
+ * isAjax - reports if the request is driven from prototype
+ * INPUTS
+ * none
+ * RESULT
+ * true/false
+ ******/
+function isAjax() {
+ return isset ($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest';
+}
+
+
?>
diff --git a/usr/local/www/fbegin.inc b/usr/local/www/fbegin.inc
index dc8f5bd..d4d4674 100755
--- a/usr/local/www/fbegin.inc
+++ b/usr/local/www/fbegin.inc
@@ -122,11 +122,13 @@ require_once("notices.inc");
<li><a href="/system_advanced.php" class="navlnk">Advanced</a></li>
<li><a href="/system_firmware.php" class="navlnk">Firmware</a></li>
<li><a href="/system.php" class="navlnk">General Setup</a></li>
+ <li><a href="/index.php?logout" class="navlnk">Logout</a></li>
<?php if($g['platform'] == "pfSense"): ?>
<li><a href="/pkg_mgr.php" class="navlnk">Packages</a></li>
<?php endif; ?>
<li><a href="/wizard.php?xml=setup_wizard.xml" class="navlnk">Setup wizard</a></li>
<li><a href="/system_routes.php" class="navlnk">Static routes</a></li>
+ <li><a href="/system_usermanager.php" class="navlnk">User Manager</a></li>
</ul>
</li>
<li class="drop">
@@ -280,4 +282,4 @@ require_once("notices.inc");
echo "</div>";
}
-?> \ No newline at end of file
+?>
diff --git a/usr/local/www/guiconfig.inc b/usr/local/www/guiconfig.inc
index a6c1c00..b140bf4 100755
--- a/usr/local/www/guiconfig.inc
+++ b/usr/local/www/guiconfig.inc
@@ -41,7 +41,7 @@ if (!$omit_nocacheheaders) {
/* Include authentication routines */
/* THIS MUST BE ABOVE ALL OTHER CODE */
-require_once("auth.inc");
+require_once("authgui.inc");
/* parse the configuration and include all configuration functions */
require_once("config.inc");
@@ -305,6 +305,26 @@ function captiveportal_users_sort() {
usort($config['captiveportal']['user'], "cpusercmp");
}
+function admin_groups_sort() {
+ global $g, $config;
+
+ function cpusercmp($a, $b) {
+ return strcasecmp($a['name'], $b['name']);
+ }
+
+ usort($config['system']['group'], "cpusercmp");
+}
+
+function admin_users_sort() {
+ global $g, $config;
+
+ function cpusercmp($a, $b) {
+ return strcasecmp($a['name'], $b['name']);
+ }
+
+ usort($config['system']['user'], "cpusercmp");
+}
+
/* sort by interface only, retain the original order of rules that apply to
the same interface */
function filter_rules_sort() {
diff --git a/usr/local/www/headjs.php b/usr/local/www/headjs.php
new file mode 100644
index 0000000..e2b4e20
--- /dev/null
+++ b/usr/local/www/headjs.php
@@ -0,0 +1,156 @@
+<?php
+
+function getHeadJS() {
+ global $_SERVER, $HTTP_SERVER_VARS, $g, $use_loader_tab_gif;
+
+ if(!$use_loader_tab_gif)
+ $loader_gif = "/themes/{$g['theme']}/images/misc/loader.gif";
+ else
+ $loader_gif = "/themes/{$g['theme']}/images/misc/loader_tab.gif";
+
+ $headjs = "
+ var input_errors = '';
+ Event.observe(window, 'load', init, false);
+ ";
+ $_SESSION['NO_AJAX'] == "True" ? $noajax = "var noAjaxOnSubmit = true;" : $noajax = "var noAjaxOnSubmit = false;";
+
+ $headjs .= "
+ {$noajax}
+
+ function init() {
+ if($('submit') && ! noAjaxOnSubmit) {
+ // debugging helper
+ //alert('adding observe event for submit button');
+
+ Event.observe(\"submit\", \"click\", submit_form, false);
+ $('submit').onclick = function() {return false;};
+ var to_insert = \"<div style='visibility:hidden' id='loading' name='loading'><img src='{$loader_gif}' \/><\/div>\";
+ new Insertion.Before('submit', to_insert);
+ }
+ }
+
+ function submit_form(e){
+ // debugging helper
+ //alert(Form.serialize($('iform')));
+
+ if($('inputerrors'))
+ $('inputerrors').innerHTML = '';
+
+ /* dsh: Introduced because pkg_edit tries to set some hidden fields
+ * if executing submit's onclick event. Tho click gets deleted
+ * by Ajax. Hence using onkeydown instead.
+ */
+ if($('submit') && $('submit').onkeydown)
+ $('submit').onkeydown();
+ if($('submit'))
+ $('submit').style.visibility = 'hidden';
+ if($('cancelbutton'))
+ $('cancelbutton').style.visibility = 'hidden';
+ $('loading').style.visibility = 'visible';
+ // submit the form using Ajax
+ ";
+
+
+ isset($HTTP_SERVER_VARS['AUTH_USER']) ? $scriptName = split("/", $_SERVER["SCRIPT_FILENAME"]) : $scriptName = split("/", "/index.php");
+ isset($HTTP_SERVER_VARS['AUTH_USER']) ? $loggedin = "var isLoggedIn = true;" : $loggedin = "var isLoggedIn = false;";
+ $scriptElms = count($scriptName);
+ $scriptName = $scriptName[$scriptElms-1];
+ $realScriptName = $_SERVER["SCRIPT_NAME"];
+
+ $headjs .= "
+ {$loggedin}
+
+ if (! isLoggedIn) {
+ var newInput = document.createElement('input');
+ newInput.setAttribute('id', 'scriptname');
+ newInput.setAttribute('name', 'scriptname');
+ newInput.setAttribute('value', '$realScriptName');
+ newInput.setAttribute('type', 'hidden');
+
+ $('iform').appendChild(newInput);
+ }
+
+ new Ajax.Request('{$scriptName}', {
+ method : 'post',
+ parameters : Form.serialize($('iform')),
+ onSuccess : formSubmitted,
+ onFailure : formFailure
+ });
+ }
+
+ function formSubmitted(resp) {
+ var responseText = resp.responseText;
+
+ // debugging helper
+ //alert(responseText);
+
+ if(responseText.indexOf('html') > 0) {
+ /* somehow we have been fed an html page! */
+ //alert('Somehow we have been fed an html page! Forwarding to /.');
+ document.location.href = '/';
+ }
+
+ eval(responseText);
+ }
+
+ /* this function will be called if an HTTP error will be triggered */
+ function formFailure(resp) {
+ alert('An error occured while saving the data ' + resp.responseText);
+ }
+
+ function showajaxmessage(message) {
+ var message_html;
+
+ if (message == '') {
+ NiftyCheck();
+ Rounded(\"div#redbox\",\"all\",\"#FFF\",\"#990000\",\"smooth\");
+ Rounded(\"td#blackbox\",\"all\",\"#FFF\",\"#000000\",\"smooth\");
+
+ if($('submit'))
+ $('submit').style.visibility = 'visible';
+ if($('cancelbutton'))
+ $('cancelbutton').style.visibility = 'visible';
+ if($('loading'))
+ $('loading').style.visibility = 'hidden';
+
+ return;
+ }
+
+ message_html = '<table height=\"32\" width=\"100%\"><tr><td>';
+ message_html += '<div style=\"background-color:#990000\" id=\"redbox\">';
+ message_html += '<table width=\"100%\"><tr><td width=\"8%\">';
+ message_html += '&nbsp;&nbsp;&nbsp;';
+ message_html += '<img style=\"vertical-align:middle\" src=\"/themes/{$g['theme']}/images/icons/icon_exclam.gif\" width=\"28\" height=\"32\" \/>';
+ message_html += '<\/td><td width=\"70%\"><font color=\"white\">';
+ message_html += '<b>' + message + '<\/b><\/font><\/td>';
+
+ if(message.indexOf('apply') > 0) {
+ message_html += '<td>';
+ message_html += '<input name=\"apply\" type=\"submit\" class=\"formbtn\" id=\"apply\" value=\"" . gettext("Apply changes") . "\" \/>';
+ message_html += '<\/td>';
+ }
+
+ message_html += '<\/tr><\/table><\/div><\/td><\/table><br \/>';
+ $('inputerrors').innerHTML = message_html;
+
+ NiftyCheck();
+ Rounded(\"div#redbox\",\"all\",\"#FFF\",\"#990000\",\"smooth\");
+ Rounded(\"td#blackbox\",\"all\",\"#FFF\",\"#000000\",\"smooth\");
+
+ if($('submit'))
+ $('submit').style.visibility = 'visible';
+ if($('cancelbutton'))
+ $('cancelbutton').style.visibility = 'visible';
+ if($('loading'))
+ $('loading').style.visibility = 'hidden';
+ if($('inputerrors'))
+ window.scrollTo(0, 0);
+ if($('inputerrors'))
+ new Effect.Shake($('inputerrors'));
+ }
+ ";
+
+ return $headjs;
+}
+
+?>
diff --git a/usr/local/www/system_groupmanager.php b/usr/local/www/system_groupmanager.php
new file mode 100644
index 0000000..ca63f9d
--- /dev/null
+++ b/usr/local/www/system_groupmanager.php
@@ -0,0 +1,798 @@
+<?php
+/*
+ $Id$
+ part of pfSense (http://www.pfSense.com)
+ originally part of part of m0n0wall (http://m0n0.ch/wall)
+
+ Copyright (C) 2006 Scott Ullrich <sullrich@gmail.com>.
+ All rights reserved.
+
+ Copyright (C) 2005 Paul Taylor <paultaylor@winn-dixie.com>.
+ All rights reserved.
+
+ Copyright (C) 2003-2005 Manuel Kasper <mk@neon1.net>.
+ 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");
+
+$_SESSION['NO_AJAX'] = true;
+
+$pgtitle = array(gettext("System"), gettext("Group manager"));
+$treeItemID = 0;
+
+function walkArea($title,
+ $t,
+ $area,
+ $id,
+ &$counter,
+ &$script_tag,
+ $tmpfname,
+ &$group) {
+ global $treeItemID;
+
+ foreach($area as $a => $aa) {
+ if (is_array($aa) && count($aa) > 0) {
+ $title .= "_{$a}";
+ echo "<li class=\"closed\"><a id=\"treeitem_{$treeItemID}\" href=\"#\">$a</a><ul>";
+ $treeItemID++;
+ walkArea($title,
+ $a,
+ $aa,
+ $id,
+ $counter,
+ $script_tag,
+ $tmpfname,
+ $group);
+ echo "</ul>\n";
+ } else {
+ $tmp_string = "{$t}";
+ $tmp_string .= ": ";
+ $tmp_string .= $a;
+ $trimmed_title = trim($title);
+ $trimmed_a = trim($a);
+ $this_id = "{$trimmed_title}_{$trimmed_a}_{$counter}";
+ $this_id = str_replace(" ", "", $this_id);
+ $this_id = str_replace("/", "", $this_id);
+ $stripped_session = str_replace("/tmp/", "", $tmpfname);
+ $allowed = false;
+ if (is_array($group['pages'][0]['page'])) {
+ foreach($group['pages'][0]['page'] as $page) {
+ if (stristr($aa, $page))
+ $allowed = true;
+ // echo "$page || $aa";
+ }
+ }
+ $allowed ? $checked = " checked=\"checked\"" : $checked = "";
+ echo " <li id=\"treeitem_{$treeItemID}\" class=\"closed\" title=\"{$aa}\"><a name=\"anchor_{$treeItemID}\" style=\"display: none;\">&nbsp;</a>";
+ $idForOnClick = $treeItemID;
+ $treeItemID++;
+ echo "<input type=\"checkbox\" class=\"formfld\" id=\"treeitem_{$treeItemID}\" ";
+ $treeItemID++;
+ echo "name=\"treeitem_{$treeItemID}\" title=\"{$area}\" onClick=\"getURL('system_groupmanager.php?id={$id}&amp;toggle={$aa}&amp;item={$idForOnClick}&amp;session={$stripped_session}', after_request_callback); rotate();\" {$checked} />&nbsp;";
+ $treeItemID++;
+ echo "<a id=\"treeitem_{$treeItemID}\" href=\"#anchor_{$idForOnClick}\" onclick=\"getURL('system_groupmanager.php?id={$id}&amp;toggle={$aa}&amp;item={$idForOnClick}&amp;session={$stripped_session}', after_request_callback); rotate();\">{$a}</a></li>\n";
+ $idForScript = $treeItemID;
+ $treeItemID++;
+
+//echo "$script_tag <hr />";
+ $script_tag .= "var item = document.getElementById('treeitem_{$idForScript}');\n";
+ if ($allowed) {
+ $script_tag .= "item.style.backgroundImage = \"url('/tree/page-file_play.gif')\";\n";
+ } else {
+ $script_tag .= "item.style.backgroundImage = \"url('/tree/page-file_x.gif')\";\n";
+ }
+ $counter++;
+ } // end if
+ } // end foreach
+}
+
+function init_ajax_helper_file($tmpfname)
+{
+ global $config, $id, $global;
+ $a_group = &$config['system']['group'];
+ $id = $_GET['id'];
+ if (isset($id) && $a_group[$id])
+ $group = $a_group[$id];
+ else
+ $group = array();
+ $fd = fopen("/tmp/{$tmpfname}", "w");
+ if ($group['pages'][0]['page'])
+ foreach($group['pages'][0]['page'] as $page) {
+ fwrite($fd, $page . "\n");
+ }
+ fclose($fd);
+ return;
+}
+
+if ($_GET['toggle'] <> "") {
+ /* AJAX is calling, lets take care of it */
+ if (!file_exists("/tmp/" . $_GET['session'])) {
+ init_ajax_helper_file($_GET['session']);
+ }
+ $fc = file_get_contents("/tmp/" . $_GET['session']);
+ $file_split = split("\n", $fc);
+ $found = -1;
+ for($x = 0; $x < count($file_split); $x++) {
+ if ($file_split[$x] == $_GET['toggle']) {
+ $found = $x;
+ }
+ }
+ if ($found == -1) {
+ $file_split[] = $_GET['toggle'];
+ $image = "/tree/page-file_play.gif";
+ } else {
+ unset($file_split[$found]);
+ $image = "/tree/page-file_x.gif";
+ }
+ $fd = fopen("/tmp/{$_GET['session']}", "w");
+ if ($file_split)
+ foreach($file_split as $fs) {
+ if ($fs)
+ fwrite($fd, $fs . "\n");
+ }
+ fclose($fd);
+ echo $_GET['item'] . "_a||" . "{$image}";
+ exit;
+}
+
+function convert_array_to_pgtitle($orig)
+{
+ $newstring = "";
+ foreach($orig as $o) {
+ if ($newstring <> "")
+ $newstring .= ": ";
+ $newstring .= $o;
+ }
+ return $newstring;
+}
+// Returns an array of pages with their descriptions
+function getAdminPageList()
+{
+ global $g;
+
+ $tmp = Array();
+
+ if ($dir = opendir($g['www_path'])) {
+ while ($file = readdir($dir)) {
+ // Make sure the file exists and is not a directory
+ if ($file == "." or $file == ".." or $file[0] == '.')
+ continue;
+ // Is this a .inc.php file? pfSense!
+ if (fnmatch('guiconfig.inc', $file))
+ continue;
+ if (fnmatch('*.inc', $file))
+ continue;
+ if (fnmatch('*.inc.php', $file))
+ continue;
+ if (fnmatch('*.php', $file)) {
+ // Read the description out of the file
+ $contents = file_get_contents($file);
+ $contents_split = split("\n", $contents);
+ $mlinestr = "";
+ foreach($contents_split as $contents) {
+ $pgtitle = "";
+ // Looking for a line like:
+ // $pgtitle = array(gettext("System"), gettext("Group manager")); // - DO NOT REMOVE.
+ if ($mlinestr == "" && stristr($contents, "\$pgtitle") == false)
+ continue;
+ if ($mlinestr == "" && stristr($contents, "=") == false)
+ continue;
+ if (stristr($contents, "<"))
+ continue;
+ if (stristr($contents, ">"))
+ continue;
+ /* at this point its evalable */
+ $contents = trim ($contents);
+ $lastchar = substr($contents, strlen($contents) - 1, strlen($contents));
+ $firstchar = substr($contents, 0, 1);
+
+ /* check whether pgtitle is on one or multible lines */
+ if ($firstchar <> "/" && $firstchar <> "#" && $lastchar <> ";") {
+ /* remember the partitial pgtitle string for the next loop iteration */
+ $mlinestr .= $contents;
+ continue;
+ } else if ($mlinestr <> "" && $lastchar == ";") {
+ /* this is the final pgtitle part including the semicolon */
+ $mlinestr .= $contents;
+ } else if ($mlinestr == "" && $lastchar == ";") {
+ /* this is a single line pgtitle, hence just
+ * copy its contents into mlinestr
+ */
+ $mlinestr = $contents;
+ } else if ($firstchar == "/" || $firstchar == "#") {
+ /* same applies for comment lines */
+ $mlinestr = $contents;
+ }
+
+ eval($mlinestr);
+
+ /* after eval, if not an array, continue */
+ if (!is_array($pgtitle)) {
+ /* reset mlinestr for the next loop iteration */
+ $mlinestr = "";
+ continue;
+ }
+
+ $tmp[$file] = convert_array_to_pgtitle($pgtitle);
+
+ /* break out of the for loop, on to next file */
+ break;
+ }
+ }
+ }
+
+ /* loop through and read in wizard information */
+ if ($dir = opendir("{$g['www_path']}/wizards")) {
+ while ($file = readdir($dir)) {
+ // Make sure the file exists and is not directory
+ if ($file == "." or $file == ".." or $file[0] == '.')
+ continue;
+ // Is this a .xml file? pfSense!
+ if (fnmatch('*.xml', $file)) {
+ /* parse package and retrieve the package title */
+ $pkg = parse_xml_config_pkg("{$g['www_path']}/wizards/{$file}", "pfsensewizard");
+ $title = $pkg['title'];
+ if ($title)
+ $tmp[$file] = trim($title);
+ }
+ }
+ }
+
+ /* loop through and read in package information */
+ if ($dir = opendir("{$g['pkg_path']}")) {
+ while ($file = readdir($dir)) {
+ // Make sure the file exists and is not directory
+ if ($file == "." or $file == ".." or $file[0] == '.')
+ continue;
+ // Is this a .xml file? pfSense!
+ if (fnmatch('*.xml', $file)) {
+ /* parse package and retrieve the package title */
+ $pkg = parse_xml_config_pkg("{$g['pkg_path']}/{$file}", "packagegui");
+ $title = $pkg['title'];
+ if ($title)
+ $tmp[$file] = trim($title);
+ }
+ }
+ closedir($dir);
+ }
+
+ // Sets Interfaces:Optional page that didn't read in properly with the above method,
+ // and pages that don't have descriptions.
+ $tmp['interfaces_opt.php'] = ("Interfaces: Optional");
+ $tmp['graph.php'] = ("Status: Traffic Graph");
+ $tmp['graph_cpu.php'] = ("Diagnostics: CPU Utilization");
+ $tmp['exec_raw.php'] = ("Hidden: Exec Raw");
+ $tmp['uploadconfig.php'] = ("Hidden: Upload Configuration");
+ $tmp['index.php'] = ("Status: System");
+ $tmp['system_usermanager.php'] = ("System: User Password");
+ $tmp['diag_logs_settings.php'] = ("Diagnostics: Logs: Settings");
+ $tmp['diag_logs_vpn.php'] = ("Diagnostics: Logs: PPTP VPN");
+ $tmp['diag_logs_filter.php'] = ("Diagnostics: Logs: Firewall");
+ $tmp['diag_logs_portal.php'] = ("Diagnostics: Logs: Captive Portal");
+ $tmp['diag_logs_dhcp.php'] = ("Diagnostics: Logs: DHCP");
+ $tmp['diag_logs.php'] = ("Diagnostics: Logs: System");
+
+ $tmp['ifstats.php'] = ("Hidden: *XMLRPC Interface Stats");
+ $tmp['license.php'] = ("System: License");
+ $tmp['progress.php'] = ("Hidden: *No longer included");
+ $tmp['diag_logs_filter_dynamic.php'] = ("Hidden: *No longer included");
+ $tmp['preload.php'] = ("Hidden: *XMLRPC Preloader");
+ $tmp['xmlrpc.php'] = ("Hidden: *XMLRPC Library");
+ $tmp['pkg.php'] = ("System: *Renderer for XML based package GUIs (Part I)");
+ $tmp['pkg_edit.php'] = ("System: *Renderer for XML based package GUIs (Part II)");
+
+ $tmp['functions.inc.php'] = ("Hidden: Ajax Helper 1");
+ $tmp['javascript.inc.php'] = ("Hidden: Ajax Helper 2 ");
+ $tmp['sajax.class.php'] = ("Hidden: Ajax Helper 3");
+
+ asort($tmp);
+
+ return $tmp;
+ }
+}
+// Get a list of all admin pages & Descriptions
+$pages = getAdminPageList();
+
+if (!is_array($config['system']['group'])) {
+ $config['system']['group'] = array();
+}
+admin_groups_sort();
+$a_group = &$config['system']['group'];
+
+$id = $_GET['id'];
+if (isset($_POST['id']))
+ $id = $_POST['id'];
+
+if ($_GET['act'] == "del") {
+ if ($a_group[$_GET['id']]) {
+ $ok_to_delete = true;
+ if (isset($config['system']['user'])) {
+ foreach ($config['system']['user'] as $userent) {
+ if ($userent['groupname'] == $a_group[$_GET['id']]['name']) {
+ $ok_to_delete = false;
+ $input_errors[] = gettext("users still exist who are members of this group!");
+ break;
+ }
+ }
+ }
+ if ($ok_to_delete) {
+ unset($a_group[$_GET['id']]);
+ write_config();
+ pfSenseHeader("system_groupmanager.php");
+ exit;
+ }
+ }
+}
+
+if ($_POST) {
+ unset($input_errors);
+ $pconfig = $_POST;
+ /* input validation */
+ $reqdfields = explode(" ", "groupname");
+ $reqdfieldsn = explode(",", "Group Name");
+
+ do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors);
+
+ if (preg_match("/[^a-zA-Z0-9\.\-_ ]/", $_POST['groupname']))
+ $input_errors[] = gettext("The group name contains invalid characters.");
+
+ if (!$input_errors && !(isset($id) && $a_group[$id])) {
+ /* make sure there are no dupes */
+ foreach ($a_group as $group) {
+ if ($group['name'] == $_POST['groupname']) {
+ $input_errors[] = gettext("Another entry with the same group name already exists.");
+ break;
+ }
+ }
+ }
+
+ if (!$input_errors) {
+ if (isset($id) && $a_group[$id])
+ $group = $a_group[$id];
+
+ $group['name'] = $_POST['groupname'];
+ isset($_POST['homepage']) ? $group['home'] = $_POST['homepage'] : $group['home'] = "index.php";
+ isset($_POST['gtype']) ? $group['scope'] = $_POST['gtype'] : $group['scope'] = "system";
+ $group['description'] = $_POST['description'];
+ unset($group['pages'][0]['page']);
+
+ $file_split = split("\n", file_get_contents("/tmp/" . $_POST['session']));
+ for($x = 0; $x < count($file_split); $x++) {
+ if ($file_split[$x])
+ $group['pages'][0]['page'][] = $file_split[$x];
+ }
+
+ if (isset($id) && $a_group[$id])
+ $a_group[$id] = $group;
+ else
+ $a_group[] = $group;
+
+ write_config();
+
+ unlink_if_exists("/tmp/" . $_GET['session']);
+
+ pfSenseHeader("system_groupmanager.php");
+ exit;
+ }
+}
+
+include("head.inc");
+
+$checkallstr = <<<EOD
+ function checkallareas(enable) {
+ var elem = document.iform.elements.length;
+ var endis = (document.iform.checkall.checked || enable);
+
+ for (i = 0; i < elem; i++) {
+ if (document.iform.elements[i].name.indexOf("chk-") >= 0) {
+ document.iform.elements[i].checked = true;
+ document.iform.elements[i].click();
+ }
+ }
+ }
+
+EOD;
+
+// XXX: billm TODO
+//$pfSenseHead->addScript("<script type=\"text/javascript\">\n" . $checkallstr . "</script>\n");
+//$pfSenseHead->addLink("<link href=\"/tree/tree.css\" rel=\"stylesheet\" type=\"text/css\" />");
+//echo $pfSenseHead->getHTML();
+
+?>
+<body link="#000000" vlink="#000000" alink="#000000" onload="<?= $jsevents["body"]["onload"] ?>">
+<?php include("fbegin.inc");?>
+<?php if ($input_errors) print_input_errors($input_errors);?>
+<?php if ($savemsg) print_info_box($savemsg);?>
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td class="tabnavtbl">
+<?php
+ $tab_array = array();
+ $tab_array[] = array(gettext("Users"), false, "system_usermanager.php");
+ $tab_array[] = array(gettext("Group"), true, "system_groupmanager.php");
+ $tab_array[] = array(gettext("Settings"), false, "system_usermanager_settings.php");
+ display_top_tabs($tab_array);
+?>
+ </td>
+ </tr>
+ <tr>
+ <td class="tabcont">
+<?php
+if ($_GET['act'] == "new" || $_GET['act'] == "edit") {
+ $tmpfname = tempnam("/tmp", "edit_add_groupmanager");
+ $tmpfname = str_replace("/tmp/", "", $tmpfname);
+ unlink("/tmp/$tmpfname");
+ init_ajax_helper_file($tmpfname);
+ if ($_GET['act'] == "edit") {
+ if (isset($id) && $a_group[$id]) {
+ $pconfig['name'] = $a_group[$id]['name'];
+ $pconfig['description'] = $a_group[$id]['description'];
+ $pconfig['home'] = $a_group[$id]['home'];
+ $pconfig['gtype'] = $a_group[$id]['scope'];
+ $pconfig['pages'] = $a_group[$id]['pages'][0]['page'];
+ }
+ } else if ($_GET['act'] == "new") {
+ /* set this value cause the text field is read only
+ * and the user should not be able to mess with this
+ * setting.
+ */
+ $pconfig['gtype'] = "user";
+ }
+
+?>
+ <form action="system_groupmanager.php" method="post" name="iform" id="iform">
+ <div id="inputerrors"></div>
+<script type="text/javascript">
+if (typeof getURL == 'undefined') {
+ getURL = function(url, callback) {
+ if (!url)
+ throw 'No URL for getURL';
+ try {
+ if (typeof callback.operationComplete == 'function')
+ callback = callback.operationComplete;
+ } catch (e) {}
+ if (typeof callback != 'function')
+ throw 'No callback function for getURL';
+ var http_request = null;
+ if (typeof XMLHttpRequest != 'undefined') {
+ http_request = new XMLHttpRequest();
+ }
+ else if (typeof ActiveXObject != 'undefined') {
+ try {
+ http_request = new ActiveXObject('Msxml2.XMLHTTP');
+ } catch (e) {
+ try {
+ http_request = new ActiveXObject('Microsoft.XMLHTTP');
+ } catch (e) {}
+ }
+ }
+ if (!http_request)
+ throw 'Both getURL and XMLHttpRequest are undefined';
+ http_request.onreadystatechange = function() {
+ if (http_request.readyState == 4) {
+ callback( { success : true,
+ content : http_request.responseText,
+ contentType : http_request.getResponseHeader("Content-Type") } );
+ }
+ }
+ http_request.open('GET', url, true);
+ http_request.send(null);
+ }
+}
+function after_request_callback(callback_data) {
+ var data = callback_data.content;
+ data_split = data.split("||");
+ var item = document.getElementById(data_split[0]);
+ var check = document.getElementById("chk-" + data_split[0]);
+ item.style.backgroundImage = 'url(' + data_split[1] + ')';
+ if (data_split[1] == "/tree/page-file_play.gif") {
+ check.checked = true;
+ } else {
+ check.checked = false;
+ }
+ $('troot_text').innerHTML = '<?= gettext("webConfigurator"); ?>';
+}
+
+function rotate() {
+ $('troot_text').innerHTML = '<img src="/themes/<?= $g['theme'] ?>/images/misc/loader.gif" alt="" />';
+}
+</script>
+
+ <input type="hidden" name="session" value="<?=$tmpfname?>" />
+ <table width="100%" border="0" cellpadding="6" cellspacing="0">
+ <tr>
+ <td width="22%" valign="top" class="vncellreq">
+ <?=gettext("Group name");?>
+ </td>
+ <td width="78%" class="vtable">
+ <input name="groupname" type="text" class="formfld group" id="groupname" size="20" value="<?=htmlspecialchars($pconfig['name']);?>" />
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">
+ <?=gettext("Home Page");?>
+ </td>
+ <td width="78%" class="vtable">
+ <input name="homepage" type="text" class="formfld url" id="homepage" size="20" value="<?=htmlspecialchars($pconfig['home']);?>" />
+ <br />
+ <?=gettext("A webpage that should be shown to the user after having logged in.");?>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncellreq">
+ <?=gettext("Group Type");?>
+ </td>
+ <td width="78%" class="vtable">
+ <input name="gtype" type="text" class="formfld unknown" id="gtype" size="20" value="<?=htmlspecialchars($pconfig['gtype']);?>" readonly="readonly" />
+ <br />
+ <?=gettext("Indicates whether this is a system (aka non-deletable) group or a group created by the user.");?>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell"><?=gettext("Description");?></td>
+ <td width="78%" class="vtable">
+ <textarea name="description" class="formpre" id="description" rows="2" cols="20"><?=htmlspecialchars($pconfig['description']);?></textarea>
+ <br />
+ <?=gettext("Group description, for your own information only");?>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="5">
+ <script type="text/javascript" src="/tree/tree.js"></script>
+<?php
+ if (isset($id) && $a_group[$id])
+ $group = $a_group[$id];
+ else
+ $group = array();
+ $menu_array = array();
+ /* build up an array similar to fbegin.inc's $menu */
+ foreach ($pages as $fname => $title) {
+ $identifier = str_replace('.php', '', $fname);
+ $identifier = $fname;
+ $title_split = split(": ", $title);
+ $tmp = "\$menu_array";
+ foreach($title_split as $ts)
+ $tmp .= "['{$ts}']";
+ $tmp .= " = \"{$identifier}\";";
+ echo "<!-- $tmp -->\n";
+ eval($tmp);
+ }
+
+ echo "<span id=\"troot_text\" style=\"position: relative; top: 12px;\">" . gettext("webConfigurator") . "</span><ul class=\"tree\" id=\"troot\">\n";
+ $counter = 0;
+ /* XXX: we may wanna pull from or add to each row a +e item (+edit) */
+ $script_tag = "";
+
+ if (is_array($menu_array) && count($menu_array) > 0) {
+ foreach($menu_array as $title => $m) {
+ echo "<li class=\"closed\"><a id=\"treeitem_{$treeItemID}\" href=\"#\">$title</a><ul>";
+ $treeItemID++;
+ if (is_array($m) && count($m) > 0) {
+ foreach($m as $t => $area) {
+ if (is_array($area) && count($area) > 0) {
+ echo "<li class=\"closed\"><a id=\"treeitem_{$treeItemID}\" href=\"#\">$t</a><ul>";
+ $treeItemID++;
+ walkArea("{$title}_{$t}",
+ $t,
+ $area,
+ $id,
+ $counter,
+ $script_tag,
+ $tmpfname,
+ $group);
+ echo "</ul>\n";
+ } else {
+ $trimmed_title = trim($title);
+ $trimmed_t = trim($t);
+ $this_id = "{$trimmed_title}_{$trimmed_t}_{$counter}";
+ $this_id = str_replace(" ", "", $this_id);
+ $this_id = str_replace("/", "", $this_id);
+ $allowed = false;
+ if (is_array($group['pages'][0]['page'])) {
+ foreach($group['pages'][0]['page'] as $page) {
+ if (stristr($area, $page))
+ $allowed = true;
+ // echo "$page || $area || $t";
+ }
+ }
+ $allowed ? $checked = " checked=\"checked\"" : $checked = "";
+ $stripped_session = str_replace("/tmp/", "", $tmpfname);
+ echo"<li id=\"treeitem_{$treeItemID}\" class=\"closed\" title=\"{$area}\"><a name=\"anchor_{$treeItemID}\" style=\"display: none;\">&nbsp;</a>";
+ $idForOnClick = $treeItemID;
+ $treeItemID++;
+ echo " <input type=\"checkbox\" class=\"formfld\" id=\"treeitem_{$treeItemID}\" ";
+ $treeItemID++;
+ echo "name=\"treeitem_{$treeItemID}\" title=\"{$area}\" onclick=\"getURL('system_groupmanager.php?id={$id}&amp;toggle={$area}&amp;item={$idForOnClick}&amp;session={$stripped_session}', after_request_callback); rotate();\" {$checked}/>&nbsp;";
+ echo " <a id=\"treeitem_{$treeItemID}\" ";
+ $idForScript = $treeItemID;
+ $treeItemID++;
+ echo "href=\"#anchor_{$idForOnClick}\" onclick=\"getURL('system_groupmanager.php?id={$id}&amp;toggle={$area}&amp;item={$idForOnClick}&amp;session={$stripped_session}', after_request_callback); rotate();\">{$t}</a></li>\n";
+ $treeItemID++;
+ $script_tag .= "var item = document.getElementById('treeitem_{$idForScript}');\n";
+ if ($allowed) {
+ $script_tag .= "item.style.backgroundImage = \"url('/tree/page-file_play.gif')\";\n";
+ } else {
+ $script_tag .= "item.style.backgroundImage = \"url('/tree/page-file_x.gif')\";\n";
+ }
+ $counter++;
+ }
+ }
+ }
+ echo "</ul>\n";
+ }
+ }
+ echo "</ul>\n";
+
+?>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="5">
+ <table>
+ <tr>
+ <td><input type="checkbox" name="checkall" id="checkall" title="Check/Uncheck all areas" onclick="checkallareas();"/></td>
+ <td><?=gettext("Check/Uncheck all areas");?></td>
+ </tr>
+ <tr>
+ <td><img src="/tree/page-file_play.gif" alt="" /></td>
+ <td><?=gettext("Allowed access to area");?></td>
+ </tr>
+ <tr>
+ <td><img src="/tree/page-file_x.gif" alt="" /></td>
+ <td><?=gettext("Disallowed access to area");?></td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="5">
+ <?=gettext("Select that pages that this group may access. Members of this group will be able to perform all actions that are possible from each individual web page. Ensure you set access levels appropriately.");?>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="5">
+ <input id="submit" name="save" type="submit" class="formbtn" value="<?=gettext("Save");?>" />
+ <?php if (isset($id) && $a_group[$id]): ?>
+ <input name="id" type="hidden" value="<?=$id;?>" />
+ <?php endif;?>
+ <p>
+ <span class="vexpl">
+ <span class="red">
+ <strong><?=gettext("Note");?>: </strong>
+ </span>
+ <?=gettext("Pages marked with an * are strongly recommended for every group.");?>
+ </span>
+ </p>
+ </td>
+ </tr>
+ </table>
+ </form>
+ </td> <!-- end <td class="tabcont"/> -->
+ </tr>
+ </table>
+<?php
+} else {
+
+?>
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td width="35%" class="listhdrr"><?=gettext("Group name");?></td>
+ <td width="20%" class="listhdrr"><?=gettext("Description");?></td>
+ <td width="20%" class="listhdrr"><?=gettext("Pages Accessible");?></td>
+ <td width="10%" class="list"></td>
+ </tr>
+<?php
+ $i = 0;
+ foreach($a_group as $group):
+?>
+ <tr>
+ <td class="listlr" valign="middle" nowrap="nowrap">
+ <table border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td align="left" valign="middle">
+ <?php if($group['scope'] == "user"): ?>
+ <img src="/themes/<?=$g['theme'];?>/images/icons/icon_system-group.png" alt="Group" title="Group" border="0" height="20" width="20" />
+ <?php else: ?>
+ <img src="/themes/<?=$g['theme'];?>/images/icons/icon_system-group-grey.png" alt="Group" title="Group" border="0" height="20" width="20" />
+ <?php endif; ?>
+ &nbsp;
+ </td>
+ <td align="left" valign="middle">
+ <?
+ if($group['name'] != "")
+ echo htmlspecialchars($group['name']);
+ else
+ echo "&nbsp";
+ ?>
+ </td>
+ </tr>
+ </table>
+ </td>
+ <td class="listr">
+ <?
+ if($group['description'] != "")
+ echo htmlspecialchars($group['description']);
+ else
+ echo "&nbsp;";
+ ?>
+ </td>
+ <td class="listbg">
+ <?php if(is_array($group['pages'][0])): ?>
+ <font color="white"><?=count($group['pages'][0]['page']);?></font>
+ <?php elseif (isset($group['pages'][0])): ?>
+ <font color="white"><?=$group['pages'][0];?></font>
+ <?php else: ?>
+ <font color="white"><?=gettext("NOT SET");?></font>
+ <?php endif; ?>
+ </td>
+ <?php if($group['scope'] == "user"): ?>
+ <td valign="middle" nowrap class="list">
+ <a href="system_groupmanager.php?act=edit&amp;id=<?=$i;?>">
+ <img src="/themes/<?= $g['theme'];?>/images/icons/icon_e.gif" title="<?=gettext("edit group");?>" width="17" height="17" border="0" alt="" />
+ </a>
+ <a href="system_groupmanager.php?act=del&amp;id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this group?");?>')">
+ <img src="./themes/<?= $g['theme'];?>/images/icons/icon_x.gif" title="<?=gettext("delete group");?>" width="17" height="17" border="0" alt="" />
+ </a>
+ </td>
+ <?php endif; ?>
+ </tr>
+<?php
+ $i++;
+ endforeach;
+?>
+ <tr>
+ <td class="list" colspan="3"></td>
+ <td class="list">
+ <a href="system_groupmanager.php?act=new">
+ <img src="/themes/<?= $g['theme'];?>/images/icons/icon_plus.gif" title="<?=gettext("add group");?>" width="17" height="17" border="0" alt="" />
+ </a>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="3">
+ <p>
+ <?=gettext("Additional webConfigurator admin groups can be added here. Each group can be restricted to specific portions of the webConfigurator. Individually select the desired web pages each group may access. For example, a troubleshooting group could be created which has access only to selected Status and Diagnostics pages.");?>
+ </p>
+ <p>
+ <?=gettext("A group icon that appears grey indicates that it is a system group and thus can't be modified or deleted.");?>
+ </p>
+ </td>
+ </tr>
+ </table>
+</td></tr>
+</table>
+<?php
+}
+?>
+
+<script type="text/javascript">
+ window.setTimeout('afterload()', '10');
+ function afterload() {
+ <?php echo $script_tag ?>
+ }
+</script>
+<?php include("fend.inc");?>
+</body>
+</html>
diff --git a/usr/local/www/system_usermanager.php b/usr/local/www/system_usermanager.php
new file mode 100644
index 0000000..19a69ec
--- /dev/null
+++ b/usr/local/www/system_usermanager.php
@@ -0,0 +1,478 @@
+<?php
+/* $Id$ */
+/*
+ system_usermanager.php
+ part of m0n0wall (http://m0n0.ch/wall)
+
+ Copyright (C) 2005 Paul Taylor <paultaylor@winn-dixie.com>.
+ All rights reserved.
+
+ Copyright (C) 2003-2005 Manuel Kasper <mk@neon1.net>.
+ 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");
+// The page title for non-admins
+$pgtitle = array(gettext("System"), gettext("User password"));
+
+if (isSystemAdmin($HTTP_SERVER_VARS['AUTH_USER'])) {
+ // Page title for main admin
+ $pgtitle = array(gettext("System"), gettext("User manager"));
+
+ $id = $_GET['id'];
+ if (isset($_POST['id']))
+ $id = $_POST['id'];
+
+ if (!is_array($config['system']['user'])) {
+ $config['system']['user'] = array();
+ }
+
+ admin_users_sort();
+ $a_user = &$config['system']['user'];
+ $t_privs = $a_user[$id]['priv'];
+
+ if ($_GET['act'] == "del" && $_GET['what'] == "user") {
+ if ($a_user[$_GET['id']]) {
+ $userdeleted = $a_user[$_GET['id']]['name'];
+ unset($a_user[$_GET['id']]);
+ write_config();
+ $retval = system_password_configure();
+ $savemsg = get_std_save_message($retval);
+ $savemsg = gettext("User") . " " . $userdeleted . " " . gettext("successfully deleted") . "<br />";
+ }
+ } else if ($_GET['act'] == "del" && $_GET['what'] == "priv") {
+ if ($t_privs[$_GET['privid']]) {
+ $privdeleted = $t_privs[$_GET['privid']]['id'];
+ unset($t_privs[$_GET['privid']]);
+ write_config();
+ $_GET['act'] = "edit";
+ $retval = 0;
+ $savemsg = get_std_save_message($retval);
+ $savemsg = gettext("Privilege") . " " . $privdeleted . " " . gettext("of user") . " " . $a_user[$_GET['id']]['name'] . " " . gettext("successfully deleted") . "<br />";
+ }
+ }
+
+ if ($_POST) {
+ unset($input_errors);
+ $pconfig = $_POST;
+
+ /* input validation */
+ if (isset($id) && ($a_user[$id])) {
+ $reqdfields = explode(" ", "usernamefld");
+ $reqdfieldsn = explode(",", "Username");
+ } else {
+ $reqdfields = explode(" ", "usernamefld passwordfld1");
+ $reqdfieldsn = explode(",", "Username,Password");
+ }
+
+ do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors);
+
+ if (hasShellAccess($_POST['usernamefld'])) {
+ if (preg_match("/[^a-zA-Z0-9\.\-_]/", $_POST['usernamefld']))
+ $input_errors[] = gettext("The username contains invalid characters.");
+ } else {
+ if (preg_match("/[^a-zA-Z0-9\@\.\-_]/", $_POST['usernamefld']))
+ $input_errors[] = gettext("The username contains invalid characters.");
+ }
+
+ if (($_POST['passwordfld1']) && ($_POST['passwordfld1'] != $_POST['passwordfld2']))
+ $input_errors[] = gettext("The passwords do not match.");
+
+ if (!$input_errors && !(isset($id) && $a_user[$id])) {
+ /* make sure there are no dupes */
+ foreach ($a_user as $userent) {
+ if ($userent['name'] == $_POST['usernamefld']) {
+ $input_errors[] = gettext("Another entry with the same username already exists.");
+ break;
+ }
+ }
+ }
+
+ if ($pconfig['utype'] <> "system" && !isset($groupindex[$_POST['groupname']])) {
+ $input_errors[] = gettext("group does not exist, please define the group before assigning users.");
+ }
+
+ if (isset($config['system']['ssh']['sshdkeyonly']) &&
+ empty($_POST['authorizedkeys'])) {
+ $input_errors[] = gettext("You must provide an authorized key otherwise you won't be able to login into this system.");
+ }
+
+ /* if this is an AJAX caller then handle via JSON */
+ if (isAjax() && is_array($input_errors)) {
+ input_errors2Ajax($input_errors);
+ exit;
+ }
+
+ if (!$input_errors) {
+ if (isset($id) && $a_user[$id])
+ $userent = $a_user[$id];
+
+ /* the user did change his username */
+ if ($_POST['usernamefld'] <> $_POST['oldusername']) {
+ $_SERVER['REMOTE_USER'] = $_POST['usernamefld'];
+ }
+
+ $userent['name'] = $_POST['usernamefld'];
+ $userent['fullname'] = $_POST['fullname'];
+ if ($pconfig['utype'] <> "system") {
+ $userent['groupname'] = $_POST['groupname'];
+ }
+ isset($_POST['utype']) ? $userent['scope'] = $_POST['utype'] : $userent['scope'] = "system";
+
+ if ($_POST['passwordfld1'])
+ $userent['password'] = crypt($_POST['passwordfld1']);
+
+ if(isset($config['system']['ssh']['sshdkeyonly'])) {
+ $userent['authorizedkeys'] = base64_encode($_POST['authorizedkeys']);
+ }
+
+ if (isset($id) && $a_user[$id])
+ $a_user[$id] = $userent;
+ else
+ $a_user[] = $userent;
+
+ write_config();
+ $retval = system_password_configure();
+ sync_webgui_passwords();
+
+ pfSenseHeader("system_usermanager.php");
+ }
+ }
+
+ include("head.inc");
+ //echo $pfSenseHead->getHTML();
+?>
+
+<body link="#000000" vlink="#000000" alink="#000000" onload="<?= $jsevents["body"]["onload"] ?>">
+<?php include("fbegin.inc");?>
+<?php if ($input_errors) print_input_errors($input_errors);?>
+<?php if ($savemsg) print_info_box($savemsg);?>
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td class="tabnavtbl">
+<?php
+ $tab_array = array();
+ $tab_array[] = array(gettext("Users"), true, "system_usermanager.php");
+ $tab_array[] = array(gettext("Group"), false, "system_groupmanager.php");
+ $tab_array[] = array(gettext("Settings"), false, "system_usermanager_settings.php");
+ display_top_tabs($tab_array);
+?>
+ </td>
+ </tr>
+ <tr>
+ <td class="tabcont">
+<?php
+ if ($_GET['act'] == "new" || $_GET['act'] == "edit" || $input_errors) {
+ if ($_GET['act'] == "edit") {
+ if (isset($id) && $a_user[$id]) {
+ $pconfig['usernamefld'] = $a_user[$id]['name'];
+ $pconfig['fullname'] = $a_user[$id]['fullname'];
+ $pconfig['groupname'] = $a_user[$id]['groupname'];
+ $pconfig['utype'] = $a_user[$id]['scope'];
+ $pconfig['authorizedkeys'] = base64_decode($a_user[$id]['authorizedkeys']);
+ }
+ } else if ($_GET['act'] == "new") {
+ /* set this value cause the text field is read only
+ * and the user should not be able to mess with this
+ * setting.
+ */
+ $pconfig['utype'] = "user";
+ }
+?>
+ <form action="system_usermanager.php" method="post" name="iform" id="iform">
+ <div id="inputerrors"></div>
+ <table width="100%" border="0" cellpadding="6" cellspacing="0">
+ <tr>
+ <td width="22%" valign="top" class="vncellreq"><?=gettext("Username");?></td>
+ <td width="78%" class="vtable">
+ <input name="usernamefld" type="text" class="formfld user" id="usernamefld" size="20" value="<?=htmlspecialchars($pconfig['usernamefld']);?>" <?php if ($pconfig['utype'] == "system") { echo "readonly=\"readonly\" "; }?>/>
+ <input name="oldusername" type="hidden" id="oldusername" value="<?=htmlspecialchars($pconfig['usernamefld']);?>" />
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncellreq" rowspan="2"><?=gettext("Password");?></td>
+ <td width="78%" class="vtable">
+ <input name="passwordfld1" type="password" class="formfld pwd" id="passwordfld1" size="20" value="" />
+ </td>
+ </tr>
+ <tr>
+ <td width="78%" class="vtable">
+ <input name="passwordfld2" type="password" class="formfld pwd" id="passwordfld2" size="20" value="" />&nbsp;<?= gettext("(confirmation)"); ?>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell"><?=gettext("Full name");?></td>
+ <td width="78%" class="vtable">
+ <input name="fullname" type="text" class="formfld unknown" id="fullname" size="20" value="<?=htmlspecialchars($pconfig['fullname']);?>" <?php if ($pconfig['utype'] == "system") { echo "readonly=\"readonly\" "; }?>/>
+ <br />
+ <?=gettext("User's full name, for your own information only");?>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell"><?=gettext("User type");?></td>
+ <td width="78%" class="vtable">
+ <input name="utype" type="text" class="formfld unknown" id="utype" size="20" value="<?=htmlspecialchars($pconfig['utype']);?>" readonly="readonly" />
+ <br />
+ <?=gettext("Indicates whether this is a system (aka non-deletable) user or a user created by a particular user.");?>
+ </td>
+ </tr>
+ <?php if (isSystemAdmin($HTTP_SERVER_VARS['AUTH_USER'])): ?>
+ <tr>
+ <td width="22%" valign="top" class="vncell"><?=gettext("User Privileges");?></td>
+ <td width="78%" class="vtable">
+ <table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td width="5%" class="listhdrr"><?=gettext("ID");?></td>
+ <td width="30%" class="listhdrr"><?=gettext("Name");?></td>
+ <td width="40%" class="listhdrr"><?=gettext("Description");?></td>
+ <td width="5%" class="list"></td>
+ </tr>
+
+ <?php if(is_array($t_privs)): ?>
+ <?php $i = 0; foreach ($t_privs as $priv): ?>
+ <?php if($priv['id'] <> ""): ?>
+ <tr>
+ <td class="listlr" <?php if($a_user[$id]['scope'] == "user") echo "ondblclick=\"document.location='system_usermanager_edit.php?id={$i}&userid={$id}&useract={$_GET['act']}';\""; ?>>
+ <?=htmlspecialchars($priv['id']);?>
+ </td>
+ <td class="listlr" <?php if($a_user[$id]['scope'] == "user") echo "ondblclick=\"document.location='system_usermanager_edit.php?id={$i}&userid={$id}&useract={$_GET['act']}';\""; ?>>
+ <?=htmlspecialchars($priv['name']);?>
+ </td>
+ <td class="listbg" <?php if($a_user[$id]['scope'] == "user") echo "ondblclick=\"document.location='system_usermanager_edit?id={$i}&userid={$id}&useract={$_GET['act']}';\""; ?>>
+ <font color="#FFFFFF"><?=htmlspecialchars($priv['descr']);?>&nbsp;</font>
+ </td>
+ <td valign="middle" nowrap class="list">
+ <?php if($a_user[$id]['scope'] == "user"): ?>
+ <table border="0" cellspacing="0" cellpadding="1">
+ <tr>
+ <td valign="middle"><a href="system_usermanager_edit.php?id=<?=$i;?>&userid=<?= $id ?>&useract=<?= $_GET['act'] ?>"><img src="/themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0" alt="" /></a></td>
+ <td valign="middle"><a href="system_usermanager.php?act=del&privid=<?=$i;?>&what=priv&id=<?= $id ?>" onclick="return confirm('<?=gettext("Do you really want to delete this mapping?");?>')"><img src="/themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0" alt="" /></a></td>
+ </tr>
+ </table>
+ <?php endif; ?>
+ </td>
+ </tr>
+ <?php endif; ?>
+ <?php $i++; endforeach; ?>
+ <?php endif; ?>
+
+ <?php if($a_user[$id]['scope'] == "user"): ?>
+ <tr>
+ <td class="list" colspan="3"></td>
+ <td class="list">
+ <table border="0" cellspacing="0" cellpadding="1">
+ <tr>
+ <td valign="middle"><a href="system_usermanager_edit.php?userid=<?= $id ?>&useract=<?= $_GET['act'] ?>"><img src="/themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0" alt="" /></a></td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ <?php endif; ?>
+ </table>
+ </td>
+ </tr>
+ <?php endif; ?>
+ <?php if (isset($config['system']['ssh']['sshdkeyonly'])): ?>
+ <tr>
+ <td width="22%" valign="top" class="vncell"><?=gettext("Authorized keys");?></td>
+ <td width="78%" class="vtable">
+ <textarea name="authorizedkeys" cols="65" rows="7" id="authorizedkeys" class="formfld_cert" wrap="off"><?=htmlspecialchars($pconfig['authorizedkeys']);?></textarea>
+ <br />
+ <?=gettext("Paste an authorized keys file here.");?>
+ </td>
+ </tr>
+ <?php endif; ?>
+ <tr>
+ <td width="22%" valign="top" class="vncell"><?=gettext("Group Name");?></td>
+ <td width="78%" class="vtable">
+ <select name="groupname" class="formselect" id="groupname" <?php if ($pconfig['utype'] == "system") { echo "disabled=\"disabled\" "; } ?>>
+ <?php foreach ($config['system']['group'] as $group): ?>
+ <option value="<?=$group['name'];?>" <?php if ($group['name'] == $pconfig['groupname']) { echo "selected"; } ?>>
+ <?=htmlspecialchars($group['name']);?>
+ </option>
+ <?php endforeach;?>
+ </select>
+ <br />
+ <?=gettext("The admin group to which this user is assigned.");?>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top">&nbsp;</td>
+ <td width="78%">
+ <input id="submit" name="save" type="submit" class="formbtn" value="Save" />
+ <?php if (isset($id) && $a_user[$id]): ?>
+ <input name="id" type="hidden" value="<?=$id;?>" />
+ <?php endif;?>
+ </td>
+ </tr>
+ </table>
+ </form>
+<?php
+ } else {
+?>
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td width="35%" class="listhdrr">Username</td>
+ <td width="20%" class="listhdrr">Full name</td>
+ <td width="20%" class="listhdrr">Group</td>
+ <td width="10%" class="list"></td>
+ </tr>
+<?php
+ $i = 0;
+ foreach($a_user as $userent):
+?>
+ <tr ondblclick="document.location='system_usermanager.php?act=edit&id=<?=$i;?>'">
+ <td class="listlr">
+ <table border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td align="left" valign="middle">
+ <?php if($userent['scope'] == "user"): ?>
+ <img src="/themes/<?=$g['theme'];?>/images/icons/icon_system-user.png" alt="User" title="User" border="0" height="20" width="20" />
+ <?php else: ?>
+ <img src="/themes/<?=$g['theme'];?>/images/icons/icon_system-user-grey.png" alt="User" title="User" border="0" height="20" width="20" />
+ <?php endif; ?>
+ &nbsp;
+ </td>
+ <td align="left" valign="middle">
+ <?=htmlspecialchars($userent['name']);?>
+ </td>
+ </tr>
+ </table>
+ </td>
+ <td class="listr"><?=htmlspecialchars($userent['fullname']);?>&nbsp;</td>
+ <td class="listbg">
+ <font color="white"><?=htmlspecialchars($userent['groupname']);?></font>&nbsp;
+ </td>
+ <td valign="middle" nowrap class="list">
+ <a href="system_usermanager.php?act=edit&id=<?=$i;?>">
+ <img src="/themes/<?= $g['theme'];?>/images/icons/icon_e.gif" title="edit user" alt="edit user" width="17" height="17" border="0" />
+ </a>
+ <?php if($userent['scope'] == "user"): ?>
+ &nbsp;
+ <a href="system_usermanager.php?act=del&what=user&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this User?");?>')">
+ <img src="/themes/<?= $g['theme'];?>/images/icons/icon_x.gif" title="delete user" alt="delete user" width="17" height="17" border="0" />
+ </a>
+ <?php endif; ?>
+ </td>
+ </tr>
+<?php
+ $i++;
+ endforeach;
+?>
+ <tr>
+ <td class="list" colspan="3"></td>
+ <td class="list">
+ <a href="system_usermanager.php?act=new">
+ <img src="/themes/<?= $g['theme'];?>/images/icons/icon_plus.gif" title="add user" alt="add user" width="17" height="17" border="0" />
+ </a>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="3">
+ <p>
+ <?=gettext("Additional webConfigurator users can be added here. User permissions are determined by the admin group they are a member of.");?>
+ </p>
+ <p>
+ <?=gettext("An user icon that appears grey indicates that it is a system user and thus it's only possible to modified a subset of the regular user data. Additionally such an user can't be deleted.");?>
+ </p>
+ </td>
+ </tr>
+ </table>
+<?php
+ }
+?>
+ </td>
+ </tr>
+</table>
+<?php
+} else { // end of admin user code, start of normal user code
+ if (isset($_POST['save'])) {
+ unset($input_errors);
+
+ /* input validation */
+ $reqdfields = explode(" ", "passwordfld1");
+ $reqdfieldsn = explode(",", "Password");
+
+ do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors);
+
+ if ($_POST['passwordfld1'] != $_POST['passwordfld2'])
+ $input_errors[] = "The passwords do not match.";
+
+ if (!$input_errors) {
+ // all values are okay --> saving changes
+ $config['system']['user'][$userindex[$HTTP_SERVER_VARS['AUTH_USER']]]['password'] = crypt(trim($_POST['passwordfld1']));
+
+ write_config();
+
+ sync_webgui_passwords();
+
+ $retval = system_password_configure();
+ $savemsg = get_std_save_message($retval);
+ $savemsg = "Password successfully changed<br />";
+ }
+ }
+?>
+
+<?php
+ include("head.inc");
+ //echo $pfSenseHead->getHTML();
+?>
+<?php include("fbegin.inc");?>
+<?php if ($input_errors) print_input_errors($input_errors);?>
+<?php if ($savemsg) print_info_box($savemsg);?>
+ <body link="#000000" vlink="#000000" alink="#000000" onload="<?= $jsevents["body"]["onload"] ?>">
+ <form action="system_usermanager.php" method="post" name="iform" id="iform">
+ <table width="100%" border="0" cellpadding="6" cellspacing="0">
+ <tr>
+ <td colspan="2" valign="top" class="listtopic"><?=$HTTP_SERVER_VARS['AUTH_USER']?>'s Password</td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell" rowspan="2">Password</td>
+ <td width="78%" class="vtable">
+ <input name="passwordfld1" type="password" class="formfld pwd" id="passwordfld1" size="20" />
+ </td>
+ </tr>
+ <tr>
+ <td width="78%" class="vtable">
+ <input name="passwordfld2" type="password" class="formfld pwd" id="passwordfld2" size="20" />
+ &nbsp;<?=gettext("(confirmation)");?>
+ <br />
+ <span class="vexpl"><?=gettext("Select a new password");?></span>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top">&nbsp;</td>
+ <td width="78%">
+ <input name="save" type="submit" class="formbtn" value="<?=gettext("Save");?>" />
+ </td>
+ </tr>
+ </table>
+ </form>
+<?php
+} // end of normal user code
+?>
+
+<?php include("fend.inc");?>
+</body>
+</html>
diff --git a/usr/local/www/system_usermanager_settings.php b/usr/local/www/system_usermanager_settings.php
new file mode 100755
index 0000000..c62771c
--- /dev/null
+++ b/usr/local/www/system_usermanager_settings.php
@@ -0,0 +1,111 @@
+<?php
+/* $Id$ */
+/*
+ part of pfSense (http://www.pfsense.org/)
+
+ Copyright (C) 2007 Bill Marquette <bill.marquette@gmail.com>
+ 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");
+$pconfig['session_timeout'] = &$config['system']['webgui']['session_timeout'];
+
+// Page title for main admin
+$pgtitle = array(gettext("System"), gettext("User manager settings"));
+
+if ($_POST) {
+ unset($input_errors);
+
+ /* input validation */
+ $reqdfields = explode(" ", "session_timeout");
+ $reqdfieldsn = explode(",", "Session Timeout");
+
+ do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors);
+
+ if ($_POST['session_timeout'] != "" && !is_numeric($_POST['session_timeout']))
+ $input_errors[] = gettext("Session timeout must be an integer with value 0 or greater.");
+
+ /* if this is an AJAX caller then handle via JSON */
+ if (isAjax() && is_array($input_errors)) {
+ input_errors2Ajax($input_errors);
+ exit;
+ }
+
+
+ if (!$input_errors) {
+ $pconfig['session_timeout'] = $_POST['session_timeout'];
+
+ write_config();
+
+ pfSenseHeader("system_usermanager_settings.php");
+ }
+}
+
+include("head.inc");
+// XXX billm FIXME
+//echo $pfSenseHead->getHTML();
+?>
+
+<body link="#000000" vlink="#000000" alink="#000000" onload="<?= $jsevents["body"]["onload"] ?>">
+<?php include("fbegin.inc");?>
+<?php if ($input_errors) print_input_errors($input_errors);?>
+<?php if ($savemsg) print_info_box($savemsg);?>
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td class="tabnavtbl">
+<?php
+ $tab_array = array();
+ $tab_array[] = array(gettext("Users"), false, "system_usermanager.php");
+ $tab_array[] = array(gettext("Group"), false, "system_groupmanager.php");
+ $tab_array[] = array(gettext("Settings"), true, "system_usermanager_settings.php");
+ display_top_tabs($tab_array);
+?>
+ </td>
+ <tr>
+ <td>
+ <div id="mainarea">
+ <form id="iform" name="iform" action="system_usermanager_settings.php" method="post">
+ <table class="tabcont" width="100%" border="0" cellspacing="0" cellpadding="0">
+ <tr>
+ <td width="22%" valign="top" class="vncell">Session Timeout</td>
+ <td width="78%" class="vtable"> <input name="session_timeout" id="session_timeout" type="text"size="20" class="formfld unknown" value="<?=htmlspecialchars($pconfig['session_timeout']);?>" />
+ <br />
+ <?=gettext("Time in minutes to expire idle management sessions.");?><br />
+ </td>
+ </tr>
+
+ <tr>
+ <td width="22%" valign="top">&nbsp;</td>
+ <td width="78%"> <input id="submit" name="Submit" type="submit" class="formbtn" value="<?=gettext("Save");?>" />
+ </td>
+ </tr>
+ </table>
+ </form>
+ </div>
+ </td>
+ </tr>
+ </table>
+
+<?php include("fend.inc");?>
+</body>
+</html>
OpenPOWER on IntegriCloud