Skip to content

Commit

Permalink
Add rcube name prefixes + codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
thomascube committed Aug 28, 2008
1 parent 17802fd commit 2e3ce3e
Show file tree
Hide file tree
Showing 2 changed files with 119 additions and 116 deletions.
2 changes: 1 addition & 1 deletion index.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
get_input_value('_pass', RCUBE_INPUT_POST, true, 'ISO-8859-1'), $host)) { get_input_value('_pass', RCUBE_INPUT_POST, true, 'ISO-8859-1'), $host)) {
// create new session ID // create new session ID
unset($_SESSION['temp']); unset($_SESSION['temp']);
sess_regenerate_id(); rcube_sess_regenerate_id();


// send auth cookie if necessary // send auth cookie if necessary
$RCMAIL->authenticate_session(); $RCMAIL->authenticate_session();
Expand Down
233 changes: 118 additions & 115 deletions program/include/session.inc
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
| program/include/session.inc | | program/include/session.inc |
| | | |
| This file is part of the RoundCube Webmail client | | This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2007, RoundCube Dev. - Switzerland | | Copyright (C) 2005-2008, RoundCube Dev. - Switzerland |
| Licensed under the GNU GPL | | Licensed under the GNU GPL |
| | | |
| PURPOSE: | | PURPOSE: |
Expand All @@ -20,174 +20,177 @@
*/ */




function sess_open($save_path, $session_name) function rcube_sess_open($save_path, $session_name)
{ {
return TRUE; return true;
} }




function sess_close() function rcube_sess_close()
{ {
return TRUE; return true;
} }




// read session data // read session data
function sess_read($key) function rcube_sess_read($key)
{ {
global $DB, $SESS_CHANGED, $SESS_CLIENT_IP; global $SESS_CHANGED, $SESS_CLIENT_IP;

$DB = rcmail::get_instance()->get_dbh();


if ($DB->is_error()) if ($DB->is_error()) {
return FALSE; return false;
}


$sql_result = $DB->query("SELECT vars, ip, ".$DB->unixtimestamp('changed')." AS changed $sql_result = $DB->query(
FROM ".get_table_name('session')." "SELECT vars, ip, " . $DB->unixtimestamp('changed') . " AS changed
WHERE sess_id=?", FROM " . get_table_name('session') . "
$key); WHERE sess_id=?",
$key);


if ($sql_arr = $DB->fetch_assoc($sql_result)) if ($sql_arr = $DB->fetch_assoc($sql_result)) {
{
$SESS_CHANGED = $sql_arr['changed']; $SESS_CHANGED = $sql_arr['changed'];
$SESS_CLIENT_IP = $sql_arr['ip']; $SESS_CLIENT_IP = $sql_arr['ip'];


if (strlen($sql_arr['vars'])) if (strlen($sql_arr['vars']))
return $sql_arr['vars']; return $sql_arr['vars'];
}

return FALSE;
} }

return false;
}




// save session data // save session data
function sess_write($key, $vars) function rcube_sess_write($key, $vars)
{ {
global $DB; $DB = rcmail::get_instance()->get_dbh();


if ($DB->is_error()) if ($DB->is_error()) {
return FALSE; return false;

}
$sql_result = $DB->query("SELECT 1
FROM ".get_table_name('session')."
WHERE sess_id=?",
$key);

if ($DB->num_rows($sql_result))
{
session_decode($vars);
$DB->query("UPDATE ".get_table_name('session')."
SET vars=?,
changed=".$DB->now()."
WHERE sess_id=?",
$vars,
$key);
}
else
{
$DB->query("INSERT INTO ".get_table_name('session')."
(sess_id, vars, ip, created, changed)
VALUES (?, ?, ?, ".$DB->now().", ".$DB->now().")",
$key,
$vars,
(string)$_SERVER['REMOTE_ADDR']);
}


return TRUE; $sql_result = $DB->query(
"SELECT 1 FROM " . get_table_name('session') . "
WHERE sess_id=?",
$key);

if ($DB->num_rows($sql_result)) {
$DB->query(
"UPDATE " . get_table_name('session') . "
SET vars=?, changed=" . $DB->now() . "
WHERE sess_id=?",
$vars,
$key);
}
else {
$DB->query(
"INSERT INTO " . get_table_name('session') . "
(sess_id, vars, ip, created, changed)
VALUES (?, ?, ?, ".$DB->now().", ".$DB->now().")",
$key,
$vars,
(string)$_SERVER['REMOTE_ADDR']);
} }


return true;
}



// handler for session_destroy() // handler for session_destroy()
function sess_destroy($key) function rcube_sess_destroy($key)
{ {
global $DB, $CONFIG; $rcmail = rcmail::get_instance();
$DB = $rcmail->get_dbh();


if ($DB->is_error()) if ($DB->is_error()) {
return FALSE; return false;

}
if ($CONFIG['enable_caching'])
{
// delete session entries in cache table
$DB->query("DELETE FROM ".get_table_name('cache')."
WHERE session_id=?",
$key);
}

$DB->query("DELETE FROM ".get_table_name('session')."
WHERE sess_id=?",
$key);


return TRUE; // delete session entries in cache table
if ($rcmail->config->get('enable_caching')) {
$DB->query("DELETE FROM " . get_table_name('cache') . " WHERE session_id=?", $key);
} }

$DB->query("DELETE FROM " . get_table_name('session') . " WHERE sess_id=?", $key);

return true;
}




// garbage collecting function // garbage collecting function
function sess_gc($maxlifetime) function rcube_sess_gc($maxlifetime)
{ {
global $DB, $CONFIG; $rcmail = rcmail::get_instance();

$DB = $rcmail->get_dbh();
if ($DB->is_error())
return FALSE; if ($DB->is_error()) {

return false;
// get all expired sessions }
$sql_result = $DB->query("SELECT sess_id
FROM ".get_table_name('session')." // get all expired sessions
WHERE ".$DB->unixtimestamp($DB->now())."-".$DB->unixtimestamp('changed')." > ?", $sql_result = $DB->query(
$maxlifetime); "SELECT sess_id
FROM " . get_table_name('session') . "
WHERE " . $DB->unixtimestamp($DB->now())."-".$DB->unixtimestamp('changed') . " > ?",
$maxlifetime);


$a_exp_sessions = array(); $exp_sessions = array();
while ($sql_arr = $DB->fetch_assoc($sql_result)) while ($sql_arr = $DB->fetch_assoc($sql_result)) {
$a_exp_sessions[] = $sql_arr['sess_id']; $exp_sessions[] = $sql_arr['sess_id'];

}
if (sizeof($a_exp_sessions))
{ $caching = $rcmail->config->get('enable_caching');
if ($CONFIG['enable_caching'])
{ if (sizeof($exp_sessions)) {
// delete session cache records // delete session cache records
$DB->query("DELETE FROM ".get_table_name('cache')." if ($caching) {
WHERE session_id IN ('".join("','", $a_exp_sessions)."')"); $DB->query("DELETE FROM " . get_table_name('cache') . "
} WHERE session_id IN ('".join("','", $exp_sessions)."')");

// delete session records
$DB->query("DELETE FROM ".get_table_name('session')."
WHERE sess_id IN ('".join("','", $a_exp_sessions)."')");
} }


// delete session records
$DB->query("DELETE FROM " . get_table_name('session') . "
WHERE sess_id IN ('".join("','", $exp_sessions)."')");
}

// also run message cache GC // also run message cache GC
if ($CONFIG['enable_caching']) if ($caching) {
rcmail_message_cache_gc(); rcmail_message_cache_gc();
}
rcmail_temp_gc(); rcmail_temp_gc();


return TRUE; return true;
} }




function sess_regenerate_id() function rcube_sess_regenerate_id()
{ {
$randlen = 32;
$randval = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; $randval = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
$random = "";
for ($i=1; $i <= $randlen; $i++) for ($random = "", $i=1; $i <= 32; $i++) {
$random .= substr($randval, rand(0,(strlen($randval) - 1)), 1); $random .= substr($randval, rand(0,(strlen($randval) - 1)), 1);
}


// use md5 value for id or remove capitals from string $randval // use md5 value for id or remove capitals from string $randval
$random = md5($random); $random = md5($random);


// delete old session record // delete old session record
sess_destroy(session_id()); rcube_sess_destroy(session_id());


session_id($random); session_id($random);


$cookie = session_get_cookie_params(); $cookie = session_get_cookie_params();
$_lifetime = $cookie['lifetime'] ? time() + $cookie['lifetime'] : 0; $lifetime = $cookie['lifetime'] ? time() + $cookie['lifetime'] : 0;


setcookie(session_name(), '', time() - 3600); setcookie(session_name(), '', time() - 3600);
setcookie(session_name(), $random, $_lifetime, $cookie['path'], setcookie(session_name(), $random, $lifetime, $cookie['path'], $cookie['domain']);
$cookie['domain']);


return true; return true;
} }




// set custom functions for PHP session management // set custom functions for PHP session management
session_set_save_handler('sess_open', 'sess_close', 'sess_read', 'sess_write', 'sess_destroy', 'sess_gc'); session_set_save_handler('rcube_sess_open', 'rcube_sess_close', 'rcube_sess_read', 'rcube_sess_write', 'rcube_sess_destroy', 'rcube_sess_gc');


?> ?>

0 comments on commit 2e3ce3e

Please sign in to comment.