summaryrefslogtreecommitdiff
path: root/includes/api/ApiLogin.php
blob: 3e66ed794bed30ce2db84fff11200d63d64e74e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<?php

/*
 * Created on Sep 19, 2006
 *
 * API for MediaWiki 1.8+
 *
 * Copyright (C) 2006-2007 Yuri Astrakhan <Firstname><Lastname>@gmail.com,
 * Daniel Cannon (cannon dot danielc at gmail dot com)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 * http://www.gnu.org/copyleft/gpl.html
 */

if (!defined('MEDIAWIKI')) {
	// Eclipse helper - will be ignored in production
	require_once ('ApiBase.php');
}

/**
 * Unit to authenticate log-in attempts to the current wiki.
 *
 * @addtogroup API
 */
class ApiLogin extends ApiBase {
	
	/**
	 * Time (in seconds) a user must wait after submitting
	 * a bad login (will be multiplied by the THROTTLE_FACTOR for each bad attempt)
	 */
	const THROTTLE_TIME = 5;

	/**
	 * The factor by which the wait-time in between authentication
	 * attempts is increased every failed attempt.
	 */
	const THROTTLE_FACTOR = 2;
	
	/**
	 * The maximum number of failed logins after which the wait increase stops. 
	 */
	const THOTTLE_MAX_COUNT = 10;
	
	public function __construct($main, $action) {
		parent :: __construct($main, $action, 'lg');
	}

	/**
	 * Executes the log-in attempt using the parameters passed. If
	 * the log-in succeeeds, it attaches a cookie to the session
	 * and outputs the user id, username, and session token. If a
	 * log-in fails, as the result of a bad password, a nonexistant
	 * user, or any other reason, the host is cached with an expiry
	 * and no log-in attempts will be accepted until that expiry
	 * is reached. The expiry is $this->mLoginThrottle.
	 *
	 * @access public
	 */
	public function execute() {
		$name = $password = $domain = null;
		extract($this->extractRequestParams());

		$result = array ();

		// Make sure noone is trying to guess the password brut-force
		$nextLoginIn = $this->getNextLoginTimeout();
		if ($nextLoginIn > 0) {
			$result['result']  = 'NeedToWait';
			$result['details'] = "Please wait $nextLoginIn seconds before next log-in attempt";
			$result['wait'] = $nextLoginIn;
			$this->getResult()->addValue(null, 'login', $result);
			return;
		}

		$params = new FauxRequest(array (
			'wpName' => $name,
			'wpPassword' => $password,
			'wpDomain' => $domain,
			'wpRemember' => ''
		));

		// Init session if necessary
		if( session_id() == '' ) {
			wfSetupSession();
		}

		$loginForm = new LoginForm($params);
		switch ($loginForm->authenticateUserData()) {
			case LoginForm :: SUCCESS :
				global $wgUser, $wgCookiePrefix;

				$wgUser->setOption('rememberpassword', 1);
				$wgUser->setCookies();

				$result['result'] = 'Success';
				$result['lguserid'] = $_SESSION['wsUserID'];
				$result['lgusername'] = $_SESSION['wsUserName'];
				$result['lgtoken'] = $_SESSION['wsToken'];
				$result['cookieprefix'] = $wgCookiePrefix;
				$result['sessionid'] = session_id();
				break;

			case LoginForm :: NO_NAME :
				$result['result'] = 'NoName';
				break;
			case LoginForm :: ILLEGAL :
				$result['result'] = 'Illegal';
				break;
			case LoginForm :: WRONG_PLUGIN_PASS :
				$result['result'] = 'WrongPluginPass';
				break;
			case LoginForm :: NOT_EXISTS :
				$result['result'] = 'NotExists';
				break;
			case LoginForm :: WRONG_PASS :
				$result['result'] = 'WrongPass';
				break;
			case LoginForm :: EMPTY_PASS :
				$result['result'] = 'EmptyPass';
				break;
			default :
				ApiBase :: dieDebug(__METHOD__, 'Unhandled case value');
		}

		if ($result['result'] != 'Success') {
			$result['wait'] = $this->cacheBadLogin();
			$result['details'] = "Please wait " . self::THROTTLE_TIME . " seconds before next log-in attempt";
		}
		// if we were allowed to try to login, memcache is fine
		
		$this->getResult()->addValue(null, 'login', $result);
	}

	
	/**
	 * Caches a bad-login attempt associated with the host and with an 
	 * expiry of $this->mLoginThrottle. These are cached by a key 
	 * separate from that used by the captcha system--as such, logging
	 * in through the standard interface will get you a legal session
	 * and cookies to prove it, but will not remove this entry.
	 *
	 * Returns the number of seconds until next login attempt will be allowed. 
	 *
	 * @access private
	 */
	private function cacheBadLogin() {
		global $wgMemc;
		
		$key = $this->getMemCacheKey();
		$val = $wgMemc->get( $key );

		$val['lastReqTime'] = time();
		if (!isset($val['count'])) {
			$val['count'] = 1;
		} else {
			$val['count'] = 1 + $val['count'];
		}
		
		$delay = ApiLogin::calculateDelay($val['count']);
		
		$wgMemc->delete($key);
		// Cache expiration should be the maximum timeout - to prevent a "try and wait" attack
		$wgMemc->add( $key, $val, ApiLogin::calculateDelay(ApiLogin::THOTTLE_MAX_COUNT) );	
		
		return $delay;
	}
	
	/**
	 * How much time the client must wait before it will be 
	 * allowed to try to log-in next.
	 * The return value is 0 if no wait is required.
	 */
	private function getNextLoginTimeout() {
		global $wgMemc;
		
		$val = $wgMemc->get($this->getMemCacheKey());

		$elapse = (time() - $val['lastReqTime']);  // in seconds
		$canRetryIn = ApiLogin::calculateDelay($val['count']) - $elapse;

		return $canRetryIn < 0 ? 0 : $canRetryIn;
	}
	
	/**
	 * Based on the number of previously attempted logins, returns
	 * the delay (in seconds) when the next login attempt will be allowed.
	 */
	private static function calculateDelay($count) {
		// Defensive programming
		$count = intval($count);
		$count = $count < 1 ? 1 : $count;
		$count = $count > self::THOTTLE_MAX_COUNT ? self::THOTTLE_MAX_COUNT : $count;

		return self::THROTTLE_TIME + self::THROTTLE_TIME * ($count - 1) * self::THROTTLE_FACTOR;
	} 

	/**
	* Internal cache key for badlogin checks. Robbed from the 
	* ConfirmEdit extension and modified to use a key unique to the
	* API login.3
	*
	* @return string
	* @access private
	*/
	private function getMemCacheKey() {
		return wfMemcKey( 'apilogin', 'badlogin', 'ip', wfGetIP() );
	}
	
	public function mustBePosted() { return true; }

	public function getAllowedParams() {
		return array (
			'name' => null,
			'password' => null,
			'domain' => null
		);
	}

	public function getParamDescription() {
		return array (
			'name' => 'User Name',
			'password' => 'Password',
			'domain' => 'Domain (optional)'
		);
	}

	public function getDescription() {
		return array (
			'This module is used to login and get the authentication tokens. ',
			'In the event of a successful log-in, a cookie will be attached',
			'to your session. In the event of a failed log-in, you will not ',
			'be able to attempt another log-in through this method for 60 seconds.',
			'This is to prevent password guessing by automated password crackers.'
		);
	}
	
	protected function getExamples() {
		return array(
			'api.php?action=login&lgname=user&lgpassword=password'
		);
	}

	public function getVersion() {
		return __CLASS__ . ': $Id: ApiLogin.php 30222 2008-01-28 19:05:26Z catrope $';
	}
}