X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fcommon.lib.php;h=325ae73b42f29b436a4b759618acc18028b1ddc3;hb=47676f16efdde0b36a4ed09d2ab0476584aeb2a6;hp=5621492228ff0f780510be76ccfeb80b22b4b19f;hpb=718f61be021c6afa8ddd836e6f5cd9d76faf8530;p=timetracker.git diff --git a/WEB-INF/lib/common.lib.php b/WEB-INF/lib/common.lib.php index 56214922..325ae73b 100644 --- a/WEB-INF/lib/common.lib.php +++ b/WEB-INF/lib/common.lib.php @@ -325,30 +325,29 @@ function ttValidCondition($val, $emptyValid = true) return true; } -// ttAccessCheck is used to check whether user is allowed to proceed. This function is used -// as an initial check on all publicly available pages. -function ttAccessCheck($required_rights) +// ttValidIP is used to check user input to validate a comma-separated +// list of IP subnet "prefixes", for example 192.168.0 (note: no .* in the end). +// We keep regexp checks here simple - they are not precise. +// For example, IPv4-mapped IPv6 addresses will fail. This may need to be fixed. +function ttValidIP($val, $emptyValid = false) { - global $auth; - global $user; - - // Redirect to login page if user is not authenticated. - if (!$auth->isAuthenticated()) { - header('Location: login.php'); - exit(); + $val = trim($val); + if (strlen($val) == 0 && $emptyValid) + return true; + + $subnets = explode(',', $val); + foreach ($subnets as $subnet) { + $ipv4 = preg_match('/^\d\d?\d?(\.\d\d?\d?){0,3}\.?$/', $subnet); // Not precise check. + $ipv6 = preg_match('/^([0-9a-fA-F]{4})(:[0-9a-fA-F]{4}){0,7}$/', $subnet); // Not precise check. + if (!$ipv4 && !$ipv6) + return false; } - - // Check rights. - if (!($required_rights & $user->rights_mask)) - return false; - return true; } // ttAccessAllowed checks whether user is allowed access to a particular page. -// This function is a replacement for ttAccessCheck above as part of roles revamp. -// To be used as an initial check on all publicly available pages -// (except login.php and register.php where we don't have to check). +// It is used as an initial check on all publicly available pages +// (except login.php, register.php, and others where we don't have to check). function ttAccessAllowed($required_right) { global $auth; @@ -360,9 +359,27 @@ function ttAccessAllowed($required_right) exit(); } + // Check IP restriction, if set. + if ($user->allow_ip && !$user->can('override_allow_ip')) { + $access_allowed = false; + $user_ip = $_SERVER['REMOTE_ADDR']; + $allowed_ip_array = explode(',', $user->allow_ip); + foreach ($allowed_ip_array as $allowed_ip) { + $len = strlen($allowed_ip); + if (substr($user_ip, 0, $len) === $allowed_ip) { // startsWith check. + $access_allowed = true; + break; + } + } + if (!$access_allowed) return false; + } + // Check if user has the right. - if (in_array($required_right, $user->rights)) + if (in_array($required_right, $user->rights)) { + import('ttUserHelper'); + ttUserHelper::updateLastAccess(); return true; + } return false; -} \ No newline at end of file +}