4e81a0762f7be5cc3680ba5c1e195385731c3b1f
6 * This includes code to update < 4.1.0 globals to the newer format
7 * It also has some session register functions that work across various
10 * @copyright © 1999-2009 The SquirrelMail Project Team
11 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
13 * @package squirrelmail
18 define('SQ_INORDER',0);
21 define('SQ_SESSION',3);
22 define('SQ_COOKIE',4);
23 define('SQ_SERVER',5);
28 * returns true if current php version is at mimimum a.b.c
30 * Called: check_php_version(4,1)
31 * @param int a major version number
32 * @param int b minor version number
33 * @param int c release number
36 function check_php_version ($a = '0', $b = '0', $c = '0')
38 return version_compare ( PHP_VERSION
, "$a.$b.$c", 'ge' );
42 * returns true if the current internal SM version is at minimum a.b.c
43 * These are plain integer comparisons, as our internal version is
44 * constructed by us, as an array of 3 ints.
46 * Called: check_sm_version(1,3,3)
47 * @param int a major version number
48 * @param int b minor version number
49 * @param int c release number
52 function check_sm_version($a = 0, $b = 0, $c = 0)
54 global $SQM_INTERNAL_VERSION;
55 if ( !isset($SQM_INTERNAL_VERSION) ||
56 $SQM_INTERNAL_VERSION[0] < $a ||
57 ( $SQM_INTERNAL_VERSION[0] == $a &&
58 $SQM_INTERNAL_VERSION[1] < $b) ||
59 ( $SQM_INTERNAL_VERSION[0] == $a &&
60 $SQM_INTERNAL_VERSION[1] == $b &&
61 $SQM_INTERNAL_VERSION[2] < $c ) ) {
69 * Recursively strip slashes from the values of an array.
70 * @param array array the array to strip, passed by reference
73 function sqstripslashes(&$array) {
74 if(count($array) > 0) {
75 foreach ($array as $index=>$value) {
76 if (is_array($array[$index])) {
77 sqstripslashes($array[$index]);
80 $array[$index] = stripslashes($value);
87 * Squelch error output to screen (only) for the given function.
88 * If the SquirrelMail debug mode SM_DEBUG_MODE_ADVANCED is not
89 * enabled, error output will not go to the log, either.
91 * This provides an alternative to the @ error-suppression
92 * operator where errors will not be shown in the interface
93 * but will show up in the server log file (assuming the
94 * administrator has configured PHP logging).
96 * @since 1.4.12 and 1.5.2
98 * @param string $function The function to be executed
99 * @param array $args The arguments to be passed to the function
100 * (OPTIONAL; default no arguments)
101 * NOTE: The caller must take extra action if
102 * the function being called is supposed
103 * to use any of the parameters by
104 * reference. In the following example,
105 * $x is passed by reference and $y is
106 * passed by value to the "my_func"
108 * sq_call_function_suppress_errors('my_func', array(&$x, $y));
110 * @return mixed The return value, if any, of the function being
111 * executed will be returned.
114 function sq_call_function_suppress_errors($function, $args=NULL) {
115 global $sm_debug_mode;
117 $display_errors = ini_get('display_errors');
118 ini_set('display_errors', '0');
120 // if advanced debug mode isn't enabled, don't log the error, either
122 if (!($sm_debug_mode & SM_DEBUG_MODE_ADVANCED
))
123 $error_reporting = error_reporting(0);
125 $ret = call_user_func_array($function, $args);
127 if (!($sm_debug_mode & SM_DEBUG_MODE_ADVANCED
))
128 error_reporting($error_reporting);
130 ini_set('display_errors', $display_errors);
135 * Add a variable to the session.
136 * @param mixed $var the variable to register
137 * @param string $name the name to refer to this variable
140 function sqsession_register ($var, $name) {
142 sqsession_is_active();
144 $_SESSION[$name] = $var;
148 * Delete a variable from the session.
149 * @param string $name the name of the var to delete
152 function sqsession_unregister ($name) {
154 sqsession_is_active();
156 unset($_SESSION[$name]);
158 // starts throwing warnings in PHP 5.3.0 and is
159 // removed in PHP 6 and is redundant anyway
160 //session_unregister("$name");
164 * Checks to see if a variable has already been registered
166 * @param string $name the name of the var to check
167 * @return bool whether the var has been registered
169 function sqsession_is_registered ($name) {
173 if (isset($_SESSION[$test_name])) {
182 * Retrieves a form variable, from a set of possible similarly named
183 * form variables, based on finding a different, single field. This
184 * is intended to allow more than one same-named inputs in a single
185 * <form>, where the submit button that is clicked tells us which
186 * input we should retrieve. An example is if we have:
187 * <select name="startMessage_1">
188 * <select name="startMessage_2">
189 * <input type="submit" name="form_submit_1" />
190 * <input type="submit" name="form_submit_2" />
191 * and we want to know which one of the select inputs should be
192 * returned as $startMessage (without the suffix!), this function
193 * decides by looking for either "form_submit_1" or "form_submit_2"
194 * (both should not appear). In this example, $name should be
195 * "startMessage" and $indicator_field should be "form_submit".
197 * NOTE that form widgets must be named with the suffix "_1", "_2", "_3"
198 * and so on, or this function will not work.
200 * If more than one of the indicator fields is found, the first one
201 * (numerically) will win.
203 * If an indicator field is found without a matching input ($name)
204 * field, FALSE is returned.
206 * If no indicator fields are found, a field of $name *without* any
207 * suffix is searched for (but only if $fallback_no_suffix is TRUE),
208 * and if not found, FALSE is ultimately returned.
210 * It should also be possible to use the same string for both
211 * $name and $indicator_field to look for the first possible
212 * widget with a suffix that can be found (and possibly fallback
213 * to a widget without a suffix).
215 * @param string name the name of the var to search
216 * @param mixed value the variable to return
217 * @param string indicator_field the name of the field upon which to base
218 * our decision upon (see above)
219 * @param int search constant defining where to look
220 * @param bool fallback_no_suffix whether or not to look for $name with
221 * no suffix when nothing else is found
222 * @param mixed default the value to assign to $value when nothing is found
223 * @param int typecast force variable to be cast to given type (please
224 * use SQ_TYPE_XXX constants or set to FALSE (default)
225 * to leave variable type unmolested)
227 * @return bool whether variable is found.
229 function sqGetGlobalVarMultiple($name, &$value, $indicator_field,
230 $search = SQ_INORDER
,
231 $fallback_no_suffix=TRUE, $default=NULL,
234 // Set arbitrary max limit -- should be much lower except on the
235 // search results page, if there are many (50 or more?) mailboxes
236 // shown, this may not be high enough. Is there some way we should
237 // automate this value?
239 $max_form_search = 100;
241 for ($i = 1; $i <= $max_form_search; $i++
) {
242 if (sqGetGlobalVar($indicator_field . '_' . $i, $temp, $search)) {
243 return sqGetGlobalVar($name . '_' . $i, $value, $search, $default, $typecast);
248 // no indicator field found; just try without suffix if allowed
250 if ($fallback_no_suffix) {
251 return sqGetGlobalVar($name, $value, $search, $default, $typecast);
255 // no dice, set default and return FALSE
257 if (!is_null($default)) {
266 * Search for the var $name in $_SESSION, $_POST, $_GET, $_COOKIE, or $_SERVER
267 * and set it in provided var.
269 * If $search is not provided, or if it is SQ_INORDER, it will search $_SESSION,
270 * then $_POST, then $_GET. If $search is SQ_FORM it will search $_POST and
271 * $_GET. Otherwise, use one of the defined constants to look for a var in one
272 * place specifically.
274 * Note: $search is an int value equal to one of the constants defined above.
277 * sqgetGlobalVar('username',$username,SQ_SESSION);
278 * // No quotes around last param, it's a constant - not a string!
280 * @param string name the name of the var to search
281 * @param mixed value the variable to return
282 * @param int search constant defining where to look
283 * @param mixed default the value to assign to $value when nothing is found
284 * @param int typecast force variable to be cast to given type (please
285 * use SQ_TYPE_XXX constants or set to FALSE (default)
286 * to leave variable type unmolested)
288 * @return bool whether variable is found.
290 function sqgetGlobalVar($name, &$value, $search = SQ_INORDER
, $default = NULL, $typecast = false) {
295 /* we want the default case to be first here,
296 so that if a valid value isn't specified,
297 all three arrays will be searched. */
299 case SQ_INORDER
: // check session, post, get
301 if( isset($_SESSION[$name]) ) {
302 $value = $_SESSION[$name];
305 } elseif ( $search == SQ_SESSION
) {
308 case SQ_FORM
: // check post, get
310 if( isset($_POST[$name]) ) {
311 $value = $_POST[$name];
314 } elseif ( $search == SQ_POST
) {
318 if ( isset($_GET[$name]) ) {
319 $value = $_GET[$name];
323 /* NO IF HERE. FOR SQ_INORDER CASE, EXIT after GET */
326 if ( isset($_COOKIE[$name]) ) {
327 $value = $_COOKIE[$name];
333 if ( isset($_SERVER[$name]) ) {
334 $value = $_SERVER[$name];
340 if ($result && $typecast) {
342 case SQ_TYPE_INT
: $value = (int) $value; break;
343 case SQ_TYPE_STRING
: $value = (string) $value; break;
344 case SQ_TYPE_BOOL
: $value = (bool) $value; break;
346 $value = (preg_match('/^[0-9]+$/', $value) ?
$value : '0');
350 } else if (!$result && !is_null($default)) {
357 * Get an immutable copy of a configuration variable if SquirrelMail
358 * is in "secured configuration" mode. This guarantees the caller
359 * gets a copy of the requested value as it is set in the main
360 * application configuration (including config_local overrides), and
361 * not what it might be after possibly having been modified by some
362 * other code (usually a plugin overriding configuration values for
363 * one reason or another).
365 * WARNING: Please use this function as little as possible, because
366 * every time it is called, it forcibly reloads the main configuration
369 * Caller beware that this function will do nothing if SquirrelMail
370 * is not in "secured configuration" mode per the $secured_config
373 * @param string $var_name The name of the desired variable
375 * @return mixed The desired value
380 function get_secured_config_value($var_name) {
382 static $return_values = array();
384 // if we can avoid it, return values that have
385 // already been retrieved (so we don't have to
386 // include the config file yet again)
388 if (isset($return_values[$var_name])) {
389 return $return_values[$var_name];
393 // load site configuration
395 require(SM_PATH
. 'config/config.php');
397 // load local configuration overrides
399 if (file_exists(SM_PATH
. 'config/config_local.php')) {
400 require(SM_PATH
. 'config/config_local.php');
403 // if SM isn't in "secured configuration" mode,
404 // just return the desired value from the global scope
406 if (!$secured_config) {
408 $return_values[$var_name] = $
$var_name;
412 // else we return what we got from the config file
414 $return_values[$var_name] = $
$var_name;
420 * Deletes an existing session, more advanced than the standard PHP
421 * session_destroy(), it explicitly deletes the cookies and global vars.
423 * WARNING: Older PHP versions have some issues with session management.
424 * See http://bugs.php.net/11643 (warning, spammed bug tracker) and
425 * http://bugs.php.net/13834. SID constant is not destroyed in PHP 4.1.2,
426 * 4.2.3 and maybe other versions. If you restart session after session
427 * is destroyed, affected PHP versions produce PHP notice. Bug should
428 * be fixed only in 4.3.0
430 function sqsession_destroy() {
433 * php.net says we can kill the cookie by setting just the name:
434 * http://www.php.net/manual/en/function.setcookie.php
435 * maybe this will help fix the session merging again.
437 * Changed the theory on this to kill the cookies first starting
438 * a new session will provide a new session for all instances of
439 * the browser, we don't want that, as that is what is causing the
440 * merging of sessions.
443 global $base_uri, $_COOKIE, $_SESSION;
445 if (isset($_COOKIE[session_name()]) && session_name()) sqsetcookie(session_name(), $_COOKIE[session_name()], 1, $base_uri);
446 if (isset($_COOKIE['key']) && $_COOKIE['key']) sqsetcookie('key','SQMTRASH',1,$base_uri);
448 $sessid = session_id();
449 if (!empty( $sessid )) {
456 * Function to verify a session has been started. If it hasn't
457 * start a session up. php.net doesn't tell you that $_SESSION
458 * (even though autoglobal), is not created unless a session is
459 * started, unlike $_POST, $_GET and such
460 * Update: (see #1685031) the session ID is left over after the
461 * session is closed in some PHP setups; this function just becomes
462 * a passthru to sqsession_start(), but leaving old code in for
465 function sqsession_is_active() {
466 //$sessid = session_id();
467 //if ( empty( $sessid ) ) {
473 * Function to start the session and store the cookie with the session_id as
474 * HttpOnly cookie which means that the cookie isn't accessible by javascript
476 * Note that as sqsession_is_active() no longer discriminates as to when
477 * it calls this function, session_start() has to have E_NOTICE suppression
480 function sqsession_start() {
483 sq_call_function_suppress_errors('session_start');
484 // was: @session_start();
485 $session_id = session_id();
487 // session_starts sets the sessionid cookie but without the httponly var
488 // setting the cookie again sets the httponly cookie attribute
490 // need to check if headers have been sent, since sqsession_is_active()
491 // has become just a passthru to this function, so the sqsetcookie()
492 // below is called every time, even after headers have already been sent
495 sqsetcookie(session_name(),$session_id,false,$base_uri);
503 * @param string $sName The name of the cookie.
504 * @param string $sValue The value of the cookie.
505 * @param int $iExpire The time the cookie expires. This is a Unix
506 * timestamp so is in number of seconds since
508 * @param string $sPath The path on the server in which the cookie
509 * will be available on.
510 * @param string $sDomain The domain that the cookie is available.
511 * @param boolean $bSecure Indicates that the cookie should only be
512 * transmitted over a secure HTTPS connection.
513 * @param boolean $bHttpOnly Disallow JS to access the cookie (IE6 only)
514 * @param boolean $bReplace Replace previous cookies with same name?
518 * @since 1.4.16 and 1.5.1
521 function sqsetcookie($sName, $sValue='deleted', $iExpire=0, $sPath="", $sDomain="",
522 $bSecure=false, $bHttpOnly=true, $bReplace=false) {
524 // if we have a secure connection then limit the cookies to https only.
525 global $is_secure_connection;
526 if ($sName && $is_secure_connection)
529 // admin config can override the restriction of secure-only cookies
530 global $only_secure_cookies;
531 if (!$only_secure_cookies)
534 if (false && check_php_version(5,2)) {
535 // php 5 supports the httponly attribute in setcookie, but because setcookie seems a bit
536 // broken we use the header function for php 5.2 as well. We might change that later.
537 //setcookie($sName,$sValue,(int) $iExpire,$sPath,$sDomain,$bSecure,$bHttpOnly);
539 if (!empty($sDomain)) {
540 // Fix the domain to accept domains with and without 'www.'.
541 if (strtolower(substr($sDomain, 0, 4)) == 'www.') $sDomain = substr($sDomain, 4);
542 $sDomain = '.' . $sDomain;
544 // Remove port information.
545 $Port = strpos($sDomain, ':');
546 if ($Port !== false) $sDomain = substr($sDomain, 0, $Port);
548 if (!$sValue) $sValue = 'deleted';
549 header('Set-Cookie: ' . rawurlencode($sName) . '=' . rawurlencode($sValue)
550 . (empty($iExpire) ?
'' : '; expires=' . gmdate('D, d-M-Y H:i:s', $iExpire) . ' GMT')
551 . (empty($sPath) ?
'' : '; path=' . $sPath)
552 . (empty($sDomain) ?
'' : '; domain=' . $sDomain)
553 . (!$bSecure ?
'' : '; secure')
554 . (!$bHttpOnly ?
'' : '; HttpOnly'), $bReplace);
560 * session_regenerate_id replacement for PHP < 4.3.2
562 * This code is borrowed from Gallery, session.php version 1.53.2.1
564 if (!function_exists('session_regenerate_id')) {
566 function php_combined_lcg() {
567 $tv = gettimeofday();
568 $lcg['s1'] = $tv['sec'] ^
(~
$tv['usec']);
569 $lcg['s2'] = mt_rand();
570 $q = (int) ($lcg['s1'] / 53668);
571 $lcg['s1'] = (int) (40014 * ($lcg['s1'] - 53668 * $q) - 12211 * $q);
572 if ($lcg['s1'] < 0) {
573 $lcg['s1'] +
= 2147483563;
575 $q = (int) ($lcg['s2'] / 52774);
576 $lcg['s2'] = (int) (40692 * ($lcg['s2'] - 52774 * $q) - 3791 * $q);
577 if ($lcg['s2'] < 0) {
578 $lcg['s2'] +
= 2147483399;
580 $z = (int) ($lcg['s1'] - $lcg['s2']);
584 return $z * 4.656613e-10;
587 function session_regenerate_id() {
589 $tv = gettimeofday();
590 sqgetGlobalVar('REMOTE_ADDR',$remote_addr,SQ_SERVER
);
591 $buf = sprintf("%.15s%ld%ld%0.8f", $remote_addr, $tv['sec'], $tv['usec'], php_combined_lcg() * 10);
592 session_id(md5($buf));
593 if (ini_get('session.use_cookies')) {
594 sqsetcookie(session_name(), session_id(), 0, $base_uri);
604 * Creates an URL for the page calling this function, using either the PHP global
605 * REQUEST_URI, or the PHP global PHP_SELF with QUERY_STRING added. Before 1.5.1
606 * function was stored in function/strings.php.
608 * @return string the complete url for this page
611 function php_self () {
612 // PHP 4.4.4 apparently gives the wrong value here - missing the query string
613 // this code is commented out in the 1.4.x code, so we'll do the same here
614 //if ( sqgetGlobalVar('REQUEST_URI', $req_uri, SQ_SERVER) && !empty($req_uri) ) {
618 if ( sqgetGlobalVar('PHP_SELF', $php_self, SQ_SERVER
) && !empty($php_self) ) {
620 // need to add query string to end of PHP_SELF to match REQUEST_URI
622 if ( sqgetGlobalVar('QUERY_STRING', $query_string, SQ_SERVER
) && !empty($query_string) ) {
623 $php_self .= '?' . $query_string;
636 * sm_print_r($some_variable, [$some_other_variable [, ...]]);
638 * Debugging function - does the same as print_r, but makes sure special
639 * characters are converted to htmlentities first. This will allow
640 * values like <some@email.address> to be displayed.
641 * The output is wrapped in <<pre>> and <</pre>> tags.
642 * Since 1.4.2 accepts unlimited number of arguments.
646 function sm_print_r() {
647 ob_start(); // Buffer output
648 foreach(func_get_args() as $var) {
651 // php has get_class_methods function that can print class methods
652 if (is_object($var)) {
653 // get class methods if $var is object
654 $aMethods=get_class_methods(get_class($var));
655 // make sure that $aMethods is array and array is not empty
656 if (is_array($aMethods) && $aMethods!=array()) {
657 echo "Object methods:\n";
658 foreach($aMethods as $method) {
659 echo '* ' . $method . "\n";
665 $buffer = ob_get_contents(); // Grab the print_r output
666 ob_end_clean(); // Silently discard the output & stop buffering
667 print '<div align="left"><pre>';
668 print htmlentities($buffer);
669 print '</pre></div>';
674 * Sanitize a value using htmlspecialchars() or similar, but also
675 * recursively run htmlspecialchars() (or similar) on array keys
678 * If $value is not a string or an array with strings in it,
679 * the value is returned as is.
681 * @param mixed $value The value to be sanitized.
682 * @param mixed $quote_style Either boolean or an integer. If it
683 * is an integer, it must be the PHP
684 * constant indicating if/how to escape
685 * quotes: ENT_QUOTES, ENT_COMPAT, or
686 * ENT_NOQUOTES. If it is a boolean value,
687 * it must be TRUE and thus indicates
688 * that the only sanitizing to be done
689 * herein is to replace single and double
690 * quotes with ' and ", no other
691 * changes are made to $value. If it is
692 * boolean and FALSE, behavior reverts
693 * to same as if the value was ENT_QUOTES
694 * (OPTIONAL; default is ENT_QUOTES).
696 * @return mixed The sanitized value.
701 function sq_htmlspecialchars($value, $quote_style=ENT_QUOTES
) {
703 if ($quote_style === FALSE) $quote_style = ENT_QUOTES
;
705 // array? go recursive...
707 if (is_array($value)) {
708 $return_array = array();
709 foreach ($value as $key => $val) {
710 $return_array[sq_htmlspecialchars($key, $quote_style)]
711 = sq_htmlspecialchars($val, $quote_style);
713 return $return_array;
715 // sanitize strings only
717 } else if (is_string($value)) {
718 if ($quote_style === TRUE)
719 return str_replace(array('\'', '"'), array(''', '"'), $value);
721 return htmlspecialchars($value, $quote_style);
724 // anything else gets returned with no changes
732 * Detect whether or not we have a SSL secured (HTTPS) connection
733 * connection to the browser
735 * It is thought to be so if you have 'SSLOptions +StdEnvVars'
736 * in your Apache configuration,
737 * OR if you have HTTPS set to a non-empty value (except "off")
738 * in your HTTP_SERVER_VARS,
739 * OR if you have HTTP_X_FORWARDED_PROTO=https in your HTTP_SERVER_VARS,
740 * OR if you are on port 443.
742 * Note: HTTP_X_FORWARDED_PROTO could be sent from the client and
743 * therefore possibly spoofed/hackable. Thus, SquirrelMail
744 * ignores such headers by default. The administrator
745 * can tell SM to use such header values by setting
746 * $sq_ignore_http_x_forwarded_headers to boolean FALSE
747 * in config/config.php or by using config/conf.pl.
749 * Note: It is possible to run SSL on a port other than 443, and
750 * if that is the case, the administrator should set
751 * $sq_https_port in config/config.php or by using config/conf.pl.
753 * @return boolean TRUE if the current connection is SSL-encrypted;
756 * @since 1.4.17 and 1.5.2
759 function is_ssl_secured_connection()
761 global $sq_ignore_http_x_forwarded_headers, $sq_https_port;
762 $https_env_var = getenv('HTTPS');
763 if ($sq_ignore_http_x_forwarded_headers
764 ||
!sqgetGlobalVar('HTTP_X_FORWARDED_PROTO', $forwarded_proto, SQ_SERVER
))
765 $forwarded_proto = '';
766 if (empty($sq_https_port)) // won't work with port 0 (zero)
767 $sq_https_port = 443;
768 if ((isset($https_env_var) && strcasecmp($https_env_var, 'on') === 0)
769 ||
(sqgetGlobalVar('HTTPS', $https, SQ_SERVER
) && !empty($https)
770 && strcasecmp($https, 'off') !== 0)
771 ||
(strcasecmp($forwarded_proto, 'https') === 0)
772 ||
(sqgetGlobalVar('SERVER_PORT', $server_port, SQ_SERVER
)
773 && $server_port == $sq_https_port))
780 * Endeavor to detect what user and group PHP is currently
781 * running as. Probably only works in non-Windows environments.
783 * @return mixed Boolean FALSE is returned if something went wrong,
784 * otherwise an array is returned with the following
786 * uid The current process' UID (integer)
787 * euid The current process' effective UID (integer)
788 * gid The current process' GID (integer)
789 * egid The current process' effective GID (integer)
790 * name The current process' name/handle (string)
791 * ename The current process' effective name/handle (string)
792 * group The current process' group name (string)
793 * egroup The current process' effective group name (string)
794 * Note that some of these elements may have empty
795 * values, especially if they could not be determined.
800 function get_process_owner_info()
802 if (!function_exists('posix_getuid'))
805 $process_info['uid'] = posix_getuid();
806 $process_info['euid'] = posix_geteuid();
807 $process_info['gid'] = posix_getgid();
808 $process_info['egid'] = posix_getegid();
810 $user_info = posix_getpwuid($process_info['uid']);
811 $euser_info = posix_getpwuid($process_info['euid']);
812 $group_info = posix_getgrgid($process_info['gid']);
813 $egroup_info = posix_getgrgid($process_info['egid']);
815 $process_info['name'] = $user_info['name'];
816 $process_info['ename'] = $euser_info['name'];
817 $process_info['group'] = $user_info['name'];
818 $process_info['egroup'] = $euser_info['name'];
820 return $process_info;