SECURITY: Do not allow botpassword login if account locked.
[lhc/web/wiklou.git] / includes / api / ApiLogin.php
1 <?php
2 /**
3 * Copyright © 2006-2007 Yuri Astrakhan "<Firstname><Lastname>@gmail.com",
4 * Daniel Cannon (cannon dot danielc at gmail dot com)
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
20 *
21 * @file
22 */
23
24 use MediaWiki\Auth\AuthManager;
25 use MediaWiki\Auth\AuthenticationRequest;
26 use MediaWiki\Auth\AuthenticationResponse;
27 use MediaWiki\Logger\LoggerFactory;
28
29 /**
30 * Unit to authenticate log-in attempts to the current wiki.
31 *
32 * @ingroup API
33 */
34 class ApiLogin extends ApiBase {
35
36 public function __construct( ApiMain $main, $action ) {
37 parent::__construct( $main, $action, 'lg' );
38 }
39
40 protected function getExtendedDescription() {
41 if ( $this->getConfig()->get( 'EnableBotPasswords' ) ) {
42 return 'apihelp-login-extended-description';
43 } else {
44 return 'apihelp-login-extended-description-nobotpasswords';
45 }
46 }
47
48 /**
49 * Format a message for the response
50 * @param Message|string|array $message
51 * @return string|array
52 */
53 private function formatMessage( $message ) {
54 $message = Message::newFromSpecifier( $message );
55 $errorFormatter = $this->getErrorFormatter();
56 if ( $errorFormatter instanceof ApiErrorFormatter_BackCompat ) {
57 return ApiErrorFormatter::stripMarkup(
58 $message->useDatabase( false )->inLanguage( 'en' )->text()
59 );
60 } else {
61 return $errorFormatter->formatMessage( $message );
62 }
63 }
64
65 /**
66 * Executes the log-in attempt using the parameters passed. If
67 * the log-in succeeds, it attaches a cookie to the session
68 * and outputs the user id, username, and session token. If a
69 * log-in fails, as the result of a bad password, a nonexistent
70 * user, or any other reason, the host is cached with an expiry
71 * and no log-in attempts will be accepted until that expiry
72 * is reached. The expiry is $this->mLoginThrottle.
73 */
74 public function execute() {
75 // If we're in a mode that breaks the same-origin policy, no tokens can
76 // be obtained
77 if ( $this->lacksSameOriginSecurity() ) {
78 $this->getResult()->addValue( null, 'login', [
79 'result' => 'Aborted',
80 'reason' => $this->formatMessage( 'api-login-fail-sameorigin' ),
81 ] );
82
83 return;
84 }
85
86 $this->requirePostedParameters( [ 'password', 'token' ] );
87
88 $params = $this->extractRequestParams();
89
90 $result = [];
91
92 // Make sure session is persisted
93 $session = MediaWiki\Session\SessionManager::getGlobalSession();
94 $session->persist();
95
96 // Make sure it's possible to log in
97 if ( !$session->canSetUser() ) {
98 $this->getResult()->addValue( null, 'login', [
99 'result' => 'Aborted',
100 'reason' => $this->formatMessage( [
101 'api-login-fail-badsessionprovider',
102 $session->getProvider()->describe( $this->getErrorFormatter()->getLanguage() ),
103 ] )
104 ] );
105
106 return;
107 }
108
109 $authRes = false;
110 $context = new DerivativeContext( $this->getContext() );
111 $loginType = 'N/A';
112
113 // Check login token
114 $token = $session->getToken( '', 'login' );
115 if ( $token->wasNew() || !$params['token'] ) {
116 $authRes = 'NeedToken';
117 } elseif ( !$token->match( $params['token'] ) ) {
118 $authRes = 'WrongToken';
119 }
120
121 // Try bot passwords
122 if (
123 $authRes === false && $this->getConfig()->get( 'EnableBotPasswords' ) &&
124 ( $botLoginData = BotPassword::canonicalizeLoginData( $params['name'], $params['password'] ) )
125 ) {
126 $status = BotPassword::login(
127 $botLoginData[0], $botLoginData[1], $this->getRequest()
128 );
129 if ( $status->isOK() ) {
130 $session = $status->getValue();
131 $authRes = 'Success';
132 $loginType = 'BotPassword';
133 } elseif ( !$botLoginData[2] ||
134 $status->hasMessage( 'login-throttled' ) ||
135 $status->hasMessage( 'botpasswords-needs-reset' ) ||
136 $status->hasMessage( 'botpasswords-locked' )
137 ) {
138 $authRes = 'Failed';
139 $message = $status->getMessage();
140 LoggerFactory::getInstance( 'authentication' )->info(
141 'BotPassword login failed: ' . $status->getWikiText( false, false, 'en' )
142 );
143 }
144 }
145
146 if ( $authRes === false ) {
147 // Simplified AuthManager login, for backwards compatibility
148 $manager = AuthManager::singleton();
149 $reqs = AuthenticationRequest::loadRequestsFromSubmission(
150 $manager->getAuthenticationRequests( AuthManager::ACTION_LOGIN, $this->getUser() ),
151 [
152 'username' => $params['name'],
153 'password' => $params['password'],
154 'domain' => $params['domain'],
155 'rememberMe' => true,
156 ]
157 );
158 $res = AuthManager::singleton()->beginAuthentication( $reqs, 'null:' );
159 switch ( $res->status ) {
160 case AuthenticationResponse::PASS:
161 if ( $this->getConfig()->get( 'EnableBotPasswords' ) ) {
162 $this->addDeprecation( 'apiwarn-deprecation-login-botpw', 'main-account-login' );
163 } else {
164 $this->addDeprecation( 'apiwarn-deprecation-login-nobotpw', 'main-account-login' );
165 }
166 $authRes = 'Success';
167 $loginType = 'AuthManager';
168 break;
169
170 case AuthenticationResponse::FAIL:
171 // Hope it's not a PreAuthenticationProvider that failed...
172 $authRes = 'Failed';
173 $message = $res->message;
174 \MediaWiki\Logger\LoggerFactory::getInstance( 'authentication' )
175 ->info( __METHOD__ . ': Authentication failed: '
176 . $message->inLanguage( 'en' )->plain() );
177 break;
178
179 default:
180 \MediaWiki\Logger\LoggerFactory::getInstance( 'authentication' )
181 ->info( __METHOD__ . ': Authentication failed due to unsupported response type: '
182 . $res->status, $this->getAuthenticationResponseLogData( $res ) );
183 $authRes = 'Aborted';
184 break;
185 }
186 }
187
188 $result['result'] = $authRes;
189 switch ( $authRes ) {
190 case 'Success':
191 $user = $session->getUser();
192
193 ApiQueryInfo::resetTokenCache();
194
195 // Deprecated hook
196 $injected_html = '';
197 Hooks::run( 'UserLoginComplete', [ &$user, &$injected_html, true ] );
198
199 $result['lguserid'] = intval( $user->getId() );
200 $result['lgusername'] = $user->getName();
201 break;
202
203 case 'NeedToken':
204 $result['token'] = $token->toString();
205 $this->addDeprecation( 'apiwarn-deprecation-login-token', 'action=login&!lgtoken' );
206 break;
207
208 case 'WrongToken':
209 break;
210
211 case 'Failed':
212 $result['reason'] = $this->formatMessage( $message );
213 break;
214
215 case 'Aborted':
216 $result['reason'] = $this->formatMessage(
217 $this->getConfig()->get( 'EnableBotPasswords' )
218 ? 'api-login-fail-aborted'
219 : 'api-login-fail-aborted-nobotpw'
220 );
221 break;
222
223 default:
224 ApiBase::dieDebug( __METHOD__, "Unhandled case value: {$authRes}" );
225 }
226
227 $this->getResult()->addValue( null, 'login', $result );
228
229 if ( $loginType === 'LoginForm' && isset( LoginForm::$statusCodes[$authRes] ) ) {
230 $authRes = LoginForm::$statusCodes[$authRes];
231 }
232 LoggerFactory::getInstance( 'authevents' )->info( 'Login attempt', [
233 'event' => 'login',
234 'successful' => $authRes === 'Success',
235 'loginType' => $loginType,
236 'status' => $authRes,
237 ] );
238 }
239
240 public function isDeprecated() {
241 return !$this->getConfig()->get( 'EnableBotPasswords' );
242 }
243
244 public function mustBePosted() {
245 return true;
246 }
247
248 public function isReadMode() {
249 return false;
250 }
251
252 public function getAllowedParams() {
253 return [
254 'name' => null,
255 'password' => [
256 ApiBase::PARAM_TYPE => 'password',
257 ],
258 'domain' => null,
259 'token' => [
260 ApiBase::PARAM_TYPE => 'string',
261 ApiBase::PARAM_REQUIRED => false, // for BC
262 ApiBase::PARAM_SENSITIVE => true,
263 ApiBase::PARAM_HELP_MSG => [ 'api-help-param-token', 'login' ],
264 ],
265 ];
266 }
267
268 protected function getExamplesMessages() {
269 return [
270 'action=login&lgname=user&lgpassword=password'
271 => 'apihelp-login-example-gettoken',
272 'action=login&lgname=user&lgpassword=password&lgtoken=123ABC'
273 => 'apihelp-login-example-login',
274 ];
275 }
276
277 public function getHelpUrls() {
278 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Login';
279 }
280
281 /**
282 * Turns an AuthenticationResponse into a hash suitable for passing to Logger
283 * @param AuthenticationResponse $response
284 * @return array
285 */
286 protected function getAuthenticationResponseLogData( AuthenticationResponse $response ) {
287 $ret = [
288 'status' => $response->status,
289 ];
290 if ( $response->message ) {
291 $ret['message'] = $response->message->inLanguage( 'en' )->plain();
292 };
293 $reqs = [
294 'neededRequests' => $response->neededRequests,
295 'createRequest' => $response->createRequest,
296 'linkRequest' => $response->linkRequest,
297 ];
298 foreach ( $reqs as $k => $v ) {
299 if ( $v ) {
300 $v = is_array( $v ) ? $v : [ $v ];
301 $reqClasses = array_unique( array_map( 'get_class', $v ) );
302 sort( $reqClasses );
303 $ret[$k] = implode( ', ', $reqClasses );
304 }
305 }
306 return $ret;
307 }
308 }