thomascube
2011-09-28 63d6e6dfc35e6d82c4a64f37c408794c163becd4
commit | author | age
4e17e6 1 <?php
T 2 /*
a6f90e 3  +-------------------------------------------------------------------------+
e019f2 4  | Roundcube Webmail IMAP Client                                           |
63d6e6 5  | Version 0.6                                                             |
a6f90e 6  |                                                                         |
f5e7b3 7  | Copyright (C) 2005-2011, The Roundcube Dev Team                         |
a6f90e 8  |                                                                         |
A 9  | This program is free software; you can redistribute it and/or modify    |
10  | it under the terms of the GNU General Public License version 2          |
11  | as published by the Free Software Foundation.                           |
12  |                                                                         |
13  | This program is distributed in the hope that it will be useful,         |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of          |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           |
16  | GNU General Public License for more details.                            |
17  |                                                                         |
18  | You should have received a copy of the GNU General Public License along |
19  | with this program; if not, write to the Free Software Foundation, Inc., |
20  | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.             |
21  |                                                                         |
22  +-------------------------------------------------------------------------+
23  | Author: Thomas Bruederli <roundcube@gmail.com>                          |
24  +-------------------------------------------------------------------------+
4e17e6 25
T 26  $Id$
27
28 */
15a9d1 29
47124c 30 // include environment
T 31 require_once 'program/include/iniset.php';
15a9d1 32
48bc52 33 // init application, start session, init output class, etc.
83a763 34 $RCMAIL = rcmail::get_instance();
T 35
d51c93 36 // turn on output buffering
A 37 ob_start();
8affba 38
8c72e3 39 // check if config files had errors
T 40 if ($err_str = $RCMAIL->config->get_error()) {
41   raise_error(array(
42     'code' => 601,
43     'type' => 'php',
44     'message' => $err_str), false, true);
45 }
46
8affba 47 // check DB connections and exit on failure
47124c 48 if ($err_str = $DB->is_error()) {
f11541 49   raise_error(array(
T 50     'code' => 603,
51     'type' => 'db',
52     'message' => $err_str), FALSE, TRUE);
53 }
8affba 54
4e17e6 55 // error steps
197601 56 if ($RCMAIL->action=='error' && !empty($_GET['_code'])) {
4e17e6 57   raise_error(array('code' => hexdec($_GET['_code'])), FALSE, TRUE);
47124c 58 }
570f0b 59
f5d61d 60 // check if https is required (for login) and redirect if necessary
T 61 if (empty($_SESSION['user_id']) && ($force_https = $RCMAIL->config->get('force_https', false))) {
62   $https_port = is_bool($force_https) ? 443 : $force_https;
5818e4 63   if (!rcube_https_check($https_port)) {
76c94b 64     $host  = preg_replace('/:[0-9]+$/', '', $_SERVER['HTTP_HOST']);
A 65     $host .= ($https_port != 443 ? ':' . $https_port : '');
66     header('Location: https://' . $host . $_SERVER['REQUEST_URI']);
f5d61d 67     exit;
T 68   }
69 }
70
cc97ea 71 // trigger startup plugin hook
T 72 $startup = $RCMAIL->plugins->exec_hook('startup', array('task' => $RCMAIL->task, 'action' => $RCMAIL->action));
73 $RCMAIL->set_task($startup['task']);
74 $RCMAIL->action = $startup['action'];
75
4e17e6 76 // try to log in
9b94eb 77 if ($RCMAIL->task == 'login' && $RCMAIL->action == 'login') {
784a42 78   $request_valid = $_SESSION['temp'] && $RCMAIL->check_request(RCUBE_INPUT_POST, 'login');
T 79
0129d7 80   // purge the session in case of new login when a session already exists 
cc97ea 81   $RCMAIL->kill_session();
5f560e 82
cc97ea 83   $auth = $RCMAIL->plugins->exec_hook('authenticate', array(
T 84     'host' => $RCMAIL->autoselect_host(),
85     'user' => trim(get_input_value('_user', RCUBE_INPUT_POST)),
5f560e 86     'pass' => get_input_value('_pass', RCUBE_INPUT_POST, true,
A 87        $RCMAIL->config->get('password_charset', 'ISO-8859-1')),
446364 88     'cookiecheck' => true,
784a42 89     'valid' => $request_valid,
64608b 90   ));
cc97ea 91
4e17e6 92   // check if client supports cookies
446364 93   if ($auth['cookiecheck'] && empty($_COOKIE)) {
f11541 94     $OUTPUT->show_message("cookiesdisabled", 'warning');
T 95   }
784a42 96   else if ($auth['valid'] && !$auth['abort'] &&
64608b 97         !empty($auth['host']) && !empty($auth['user']) &&
4cfe66 98         $RCMAIL->login($auth['user'], $auth['pass'], $auth['host'])
A 99   ) {
100     // create new session ID, don't destroy the current session
c294ea 101     // it was destroyed already by $RCMAIL->kill_session() above
4cfe66 102     $RCMAIL->session->remove('temp');
c294ea 103     $RCMAIL->session->regenerate_id(false);
aad6e2 104
T 105     // send auth cookie if necessary
cf2da2 106     $RCMAIL->session->set_auth_cookie();
aad6e2 107
5e0045 108     // log successful login
354455 109     rcmail_log_login();
10eedb 110
cc97ea 111     // restore original request parameters
88007c 112     $query = array();
32234d 113     if ($url = get_input_value('_url', RCUBE_INPUT_POST)) {
cc97ea 114       parse_str($url, $query);
c294ea 115
32234d 116       // prevent endless looping on login page
T 117       if ($query['_task'] == 'login')
118         unset($query['_task']);
119     }
cc97ea 120
T 121     // allow plugins to control the redirect url after login success
32234d 122     $redir = $RCMAIL->plugins->exec_hook('login_after', $query + array('_task' => 'mail'));
fcc7f8 123     unset($redir['abort'], $redir['_err']);
5e0045 124
4e17e6 125     // send redirect
cc97ea 126     $OUTPUT->redirect($redir);
4e17e6 127   }
47124c 128   else {
6d99f9 129     $error_code = is_object($IMAP) ? $IMAP->get_error_code() : -1;
A 130
784a42 131     $OUTPUT->show_message($error_code < -1 ? 'imaperror' : (!$auth['valid'] ? 'invalidrequest' : 'loginfailed'), 'warning');
8fcc3e 132     $RCMAIL->plugins->exec_hook('login_failed', array(
6d99f9 133       'code' => $error_code, 'host' => $auth['host'], 'user' => $auth['user']));
1854c4 134     $RCMAIL->kill_session();
f11541 135   }
T 136 }
4e17e6 137
de62f0 138 // end session (after optional referer check)
T 139 else if ($RCMAIL->task == 'logout' && isset($_SESSION['user_id']) && (!$RCMAIL->config->get('referer_check') || rcube_check_referer())) {
7ef47e 140   $userdata = array('user' => $_SESSION['username'], 'host' => $_SESSION['imap_host'], 'lang' => $RCMAIL->user->language);
f11541 141   $OUTPUT->show_message('loggedout');
1854c4 142   $RCMAIL->logout_actions();
T 143   $RCMAIL->kill_session();
7ef47e 144   $RCMAIL->plugins->exec_hook('logout_after', $userdata);
f11541 145 }
4e17e6 146
bac7d1 147 // check session and auth cookie
9b94eb 148 else if ($RCMAIL->task != 'login' && $_SESSION['user_id'] && $RCMAIL->action != 'send') {
cf2da2 149   if (!$RCMAIL->session->check_auth()) {
1854c4 150     $RCMAIL->kill_session();
fcc7f8 151     $session_error = true;
4e17e6 152   }
f11541 153 }
4e17e6 154
T 155 // not logged in -> show login page
197601 156 if (empty($RCMAIL->user->ID)) {
fcc7f8 157   // log session failures
2c67d4 158   if (($task = get_input_value('_task', RCUBE_INPUT_GPC)) && !in_array($task, array('login','logout')) && !$session_error && ($sess_id = $_COOKIE[ini_get('session.name')])) {
fcc7f8 159     $RCMAIL->session->log("Aborted session " . $sess_id . "; no valid session data found");
T 160     $session_error = true;
161   }
162
ec045b 163   if ($OUTPUT->ajax_call)
fcc7f8 164     $OUTPUT->redirect(array('_err' => 'session'), 2000);
9b94eb 165
ccc80d 166   if (!empty($_REQUEST['_framed']))
fcc7f8 167     $OUTPUT->command('redirect', $RCMAIL->url(array('_err' => 'session')));
ccc80d 168
330127 169   // check if installer is still active
83a763 170   if ($RCMAIL->config->get('enable_installer') && is_readable('./installer/index.php')) {
47124c 171     $OUTPUT->add_footer(html::div(array('style' => "background:#ef9398; border:2px solid #dc5757; padding:0.5em; margin:2em auto; width:50em"),
T 172       html::tag('h2', array('style' => "margin-top:0.2em"), "Installer script is still accessible") .
e019f2 173       html::p(null, "The install script of your Roundcube installation is still stored in its default location!") .
A 174       html::p(null, "Please <b>remove</b> the whole <tt>installer</tt> folder from the Roundcube directory because .
47124c 175         these files may expose sensitive configuration data like server passwords and encryption keys
T 176         to the public. Make sure you cannot access the <a href=\"./installer/\">installer script</a> from your browser.")
177       )
178     );
179   }
fcc7f8 180   
T 181   if ($session_error || $_REQUEST['_err'] == 'session')
182     $OUTPUT->show_message('sessionerror', 'error', null, true, -1);
249db1 183
784a42 184   $RCMAIL->set_task('login');
f11541 185   $OUTPUT->send('login');
T 186 }
249db1 187 // CSRF prevention
A 188 else {
189   // don't check for valid request tokens in these actions
190   $request_check_whitelist = array('login'=>1, 'spell'=>1);
4e17e6 191
249db1 192   // check client X-header to verify request origin
A 193   if ($OUTPUT->ajax_call) {
ec045b 194     if (rc_request_header('X-Roundcube-Request') != $RCMAIL->get_request_token() && !$RCMAIL->config->get('devel_mode')) {
249db1 195       header('HTTP/1.1 404 Not Found');
A 196       die("Invalid Request");
197     }
198   }
199   // check request token in POST form submissions
200   else if (!empty($_POST) && !$request_check_whitelist[$RCMAIL->action] && !$RCMAIL->check_request()) {
201     $OUTPUT->show_message('invalidrequest', 'error');
202     $OUTPUT->send($RCMAIL->task);
203   }
a77cf2 204
T 205   // check referer if configured
206   if (!$request_check_whitelist[$RCMAIL->action] && $RCMAIL->config->get('referer_check') && !rcube_check_referer()) {
207     raise_error(array(
208       'code' => 403,
209       'type' => 'php',
210       'message' => "Referer check failed"), true, true);
211   }
249db1 212 }
4e17e6 213
249db1 214 // handle special actions
48aff9 215 if ($RCMAIL->action == 'keep-alive') {
T 216   $OUTPUT->reset();
28ac5c 217   $RCMAIL->plugins->exec_hook('keep_alive', array());
48aff9 218   $OUTPUT->send();
T 219 }
249db1 220 else if ($RCMAIL->action == 'save-pref') {
4351f7 221   include INSTALL_PATH . 'program/steps/utils/save_pref.inc';
249db1 222 }
4e17e6 223
6ea6c9 224
T 225 // include task specific functions
4351f7 226 if (is_file($incfile = INSTALL_PATH . 'program/steps/'.$RCMAIL->task.'/func.inc'))
A 227   include_once $incfile;
4e17e6 228
6ea6c9 229 // allow 5 "redirects" to another action
T 230 $redirects = 0; $incstep = null;
231 while ($redirects < 5) {
cc97ea 232   // execute a plugin action
05a631 233   if ($RCMAIL->plugins->is_plugin_task($RCMAIL->task)) {
87e58c 234     if (!$RCMAIL->action) $RCMAIL->action = 'index';
05a631 235     $RCMAIL->plugins->exec_action($RCMAIL->task.'.'.$RCMAIL->action);
T 236     break;
237   }
238   else if (preg_match('/^plugin\./', $RCMAIL->action)) {
cc97ea 239     $RCMAIL->plugins->exec_action($RCMAIL->action);
T 240     break;
241   }
6ea6c9 242   // try to include the step file
68d2d5 243   else if (($stepfile = $RCMAIL->get_action_file())
4351f7 244     && is_file($incfile = INSTALL_PATH . 'program/steps/'.$RCMAIL->task.'/'.$stepfile)
68d2d5 245   ) {
4351f7 246     include $incfile;
6ea6c9 247     $redirects++;
T 248   }
249   else {
250     break;
251   }
252 }
4e17e6 253
T 254
6ea6c9 255 // parse main template (default)
197601 256 $OUTPUT->send($RCMAIL->task);
539cd4 257
T 258
259 // if we arrive here, something went wrong
f11541 260 raise_error(array(
T 261   'code' => 404,
262   'type' => 'php',
263   'line' => __LINE__,
264   'file' => __FILE__,
47124c 265   'message' => "Invalid request"), true, true);
b25dfd 266