##// END OF EJS Templates
ldap: use connection ping only in case of single server specifed.
marcink -
r2736:f1074c0b stable
parent child Browse files
Show More
@@ -1,726 +1,783 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2010-2018 RhodeCode GmbH
3 # Copyright (C) 2010-2018 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 """
21 """
22 Authentication modules
22 Authentication modules
23 """
23 """
24
24 import socket
25 import string
25 import colander
26 import colander
26 import copy
27 import copy
27 import logging
28 import logging
28 import time
29 import time
29 import traceback
30 import traceback
30 import warnings
31 import warnings
31 import functools
32 import functools
32
33
33 from pyramid.threadlocal import get_current_registry
34 from pyramid.threadlocal import get_current_registry
34 from zope.cachedescriptors.property import Lazy as LazyProperty
35
35
36 from rhodecode.authentication.interface import IAuthnPluginRegistry
36 from rhodecode.authentication.interface import IAuthnPluginRegistry
37 from rhodecode.authentication.schema import AuthnPluginSettingsSchemaBase
37 from rhodecode.authentication.schema import AuthnPluginSettingsSchemaBase
38 from rhodecode.lib import caches
38 from rhodecode.lib import caches
39 from rhodecode.lib.auth import PasswordGenerator, _RhodeCodeCryptoBCrypt
39 from rhodecode.lib.auth import PasswordGenerator, _RhodeCodeCryptoBCrypt
40 from rhodecode.lib.utils2 import safe_int
40 from rhodecode.lib.utils2 import safe_int, safe_str
41 from rhodecode.lib.utils2 import safe_str
41 from rhodecode.lib.exceptions import LdapConnectionError
42 from rhodecode.model.db import User
42 from rhodecode.model.db import User
43 from rhodecode.model.meta import Session
43 from rhodecode.model.meta import Session
44 from rhodecode.model.settings import SettingsModel
44 from rhodecode.model.settings import SettingsModel
45 from rhodecode.model.user import UserModel
45 from rhodecode.model.user import UserModel
46 from rhodecode.model.user_group import UserGroupModel
46 from rhodecode.model.user_group import UserGroupModel
47
47
48
48
49 log = logging.getLogger(__name__)
49 log = logging.getLogger(__name__)
50
50
51 # auth types that authenticate() function can receive
51 # auth types that authenticate() function can receive
52 VCS_TYPE = 'vcs'
52 VCS_TYPE = 'vcs'
53 HTTP_TYPE = 'http'
53 HTTP_TYPE = 'http'
54
54
55
55
56 class hybrid_property(object):
56 class hybrid_property(object):
57 """
57 """
58 a property decorator that works both for instance and class
58 a property decorator that works both for instance and class
59 """
59 """
60 def __init__(self, fget, fset=None, fdel=None, expr=None):
60 def __init__(self, fget, fset=None, fdel=None, expr=None):
61 self.fget = fget
61 self.fget = fget
62 self.fset = fset
62 self.fset = fset
63 self.fdel = fdel
63 self.fdel = fdel
64 self.expr = expr or fget
64 self.expr = expr or fget
65 functools.update_wrapper(self, fget)
65 functools.update_wrapper(self, fget)
66
66
67 def __get__(self, instance, owner):
67 def __get__(self, instance, owner):
68 if instance is None:
68 if instance is None:
69 return self.expr(owner)
69 return self.expr(owner)
70 else:
70 else:
71 return self.fget(instance)
71 return self.fget(instance)
72
72
73 def __set__(self, instance, value):
73 def __set__(self, instance, value):
74 self.fset(instance, value)
74 self.fset(instance, value)
75
75
76 def __delete__(self, instance):
76 def __delete__(self, instance):
77 self.fdel(instance)
77 self.fdel(instance)
78
78
79
79
80 class LazyFormencode(object):
80 class LazyFormencode(object):
81 def __init__(self, formencode_obj, *args, **kwargs):
81 def __init__(self, formencode_obj, *args, **kwargs):
82 self.formencode_obj = formencode_obj
82 self.formencode_obj = formencode_obj
83 self.args = args
83 self.args = args
84 self.kwargs = kwargs
84 self.kwargs = kwargs
85
85
86 def __call__(self, *args, **kwargs):
86 def __call__(self, *args, **kwargs):
87 from inspect import isfunction
87 from inspect import isfunction
88 formencode_obj = self.formencode_obj
88 formencode_obj = self.formencode_obj
89 if isfunction(formencode_obj):
89 if isfunction(formencode_obj):
90 # case we wrap validators into functions
90 # case we wrap validators into functions
91 formencode_obj = self.formencode_obj(*args, **kwargs)
91 formencode_obj = self.formencode_obj(*args, **kwargs)
92 return formencode_obj(*self.args, **self.kwargs)
92 return formencode_obj(*self.args, **self.kwargs)
93
93
94
94
95 class RhodeCodeAuthPluginBase(object):
95 class RhodeCodeAuthPluginBase(object):
96 # cache the authentication request for N amount of seconds. Some kind
96 # cache the authentication request for N amount of seconds. Some kind
97 # of authentication methods are very heavy and it's very efficient to cache
97 # of authentication methods are very heavy and it's very efficient to cache
98 # the result of a call. If it's set to None (default) cache is off
98 # the result of a call. If it's set to None (default) cache is off
99 AUTH_CACHE_TTL = None
99 AUTH_CACHE_TTL = None
100 AUTH_CACHE = {}
100 AUTH_CACHE = {}
101
101
102 auth_func_attrs = {
102 auth_func_attrs = {
103 "username": "unique username",
103 "username": "unique username",
104 "firstname": "first name",
104 "firstname": "first name",
105 "lastname": "last name",
105 "lastname": "last name",
106 "email": "email address",
106 "email": "email address",
107 "groups": '["list", "of", "groups"]',
107 "groups": '["list", "of", "groups"]',
108 "user_group_sync":
108 "user_group_sync":
109 'True|False defines if returned user groups should be synced',
109 'True|False defines if returned user groups should be synced',
110 "extern_name": "name in external source of record",
110 "extern_name": "name in external source of record",
111 "extern_type": "type of external source of record",
111 "extern_type": "type of external source of record",
112 "admin": 'True|False defines if user should be RhodeCode super admin',
112 "admin": 'True|False defines if user should be RhodeCode super admin',
113 "active":
113 "active":
114 'True|False defines active state of user internally for RhodeCode',
114 'True|False defines active state of user internally for RhodeCode',
115 "active_from_extern":
115 "active_from_extern":
116 "True|False\None, active state from the external auth, "
116 "True|False\None, active state from the external auth, "
117 "None means use definition from RhodeCode extern_type active value"
117 "None means use definition from RhodeCode extern_type active value"
118
118
119 }
119 }
120 # set on authenticate() method and via set_auth_type func.
120 # set on authenticate() method and via set_auth_type func.
121 auth_type = None
121 auth_type = None
122
122
123 # set on authenticate() method and via set_calling_scope_repo, this is a
123 # set on authenticate() method and via set_calling_scope_repo, this is a
124 # calling scope repository when doing authentication most likely on VCS
124 # calling scope repository when doing authentication most likely on VCS
125 # operations
125 # operations
126 acl_repo_name = None
126 acl_repo_name = None
127
127
128 # List of setting names to store encrypted. Plugins may override this list
128 # List of setting names to store encrypted. Plugins may override this list
129 # to store settings encrypted.
129 # to store settings encrypted.
130 _settings_encrypted = []
130 _settings_encrypted = []
131
131
132 # Mapping of python to DB settings model types. Plugins may override or
132 # Mapping of python to DB settings model types. Plugins may override or
133 # extend this mapping.
133 # extend this mapping.
134 _settings_type_map = {
134 _settings_type_map = {
135 colander.String: 'unicode',
135 colander.String: 'unicode',
136 colander.Integer: 'int',
136 colander.Integer: 'int',
137 colander.Boolean: 'bool',
137 colander.Boolean: 'bool',
138 colander.List: 'list',
138 colander.List: 'list',
139 }
139 }
140
140
141 # list of keys in settings that are unsafe to be logged, should be passwords
141 # list of keys in settings that are unsafe to be logged, should be passwords
142 # or other crucial credentials
142 # or other crucial credentials
143 _settings_unsafe_keys = []
143 _settings_unsafe_keys = []
144
144
145 def __init__(self, plugin_id):
145 def __init__(self, plugin_id):
146 self._plugin_id = plugin_id
146 self._plugin_id = plugin_id
147
147
148 def __str__(self):
148 def __str__(self):
149 return self.get_id()
149 return self.get_id()
150
150
151 def _get_setting_full_name(self, name):
151 def _get_setting_full_name(self, name):
152 """
152 """
153 Return the full setting name used for storing values in the database.
153 Return the full setting name used for storing values in the database.
154 """
154 """
155 # TODO: johbo: Using the name here is problematic. It would be good to
155 # TODO: johbo: Using the name here is problematic. It would be good to
156 # introduce either new models in the database to hold Plugin and
156 # introduce either new models in the database to hold Plugin and
157 # PluginSetting or to use the plugin id here.
157 # PluginSetting or to use the plugin id here.
158 return 'auth_{}_{}'.format(self.name, name)
158 return 'auth_{}_{}'.format(self.name, name)
159
159
160 def _get_setting_type(self, name):
160 def _get_setting_type(self, name):
161 """
161 """
162 Return the type of a setting. This type is defined by the SettingsModel
162 Return the type of a setting. This type is defined by the SettingsModel
163 and determines how the setting is stored in DB. Optionally the suffix
163 and determines how the setting is stored in DB. Optionally the suffix
164 `.encrypted` is appended to instruct SettingsModel to store it
164 `.encrypted` is appended to instruct SettingsModel to store it
165 encrypted.
165 encrypted.
166 """
166 """
167 schema_node = self.get_settings_schema().get(name)
167 schema_node = self.get_settings_schema().get(name)
168 db_type = self._settings_type_map.get(
168 db_type = self._settings_type_map.get(
169 type(schema_node.typ), 'unicode')
169 type(schema_node.typ), 'unicode')
170 if name in self._settings_encrypted:
170 if name in self._settings_encrypted:
171 db_type = '{}.encrypted'.format(db_type)
171 db_type = '{}.encrypted'.format(db_type)
172 return db_type
172 return db_type
173
173
174 def is_enabled(self):
174 def is_enabled(self):
175 """
175 """
176 Returns true if this plugin is enabled. An enabled plugin can be
176 Returns true if this plugin is enabled. An enabled plugin can be
177 configured in the admin interface but it is not consulted during
177 configured in the admin interface but it is not consulted during
178 authentication.
178 authentication.
179 """
179 """
180 auth_plugins = SettingsModel().get_auth_plugins()
180 auth_plugins = SettingsModel().get_auth_plugins()
181 return self.get_id() in auth_plugins
181 return self.get_id() in auth_plugins
182
182
183 def is_active(self, plugin_cached_settings=None):
183 def is_active(self, plugin_cached_settings=None):
184 """
184 """
185 Returns true if the plugin is activated. An activated plugin is
185 Returns true if the plugin is activated. An activated plugin is
186 consulted during authentication, assumed it is also enabled.
186 consulted during authentication, assumed it is also enabled.
187 """
187 """
188 return self.get_setting_by_name(
188 return self.get_setting_by_name(
189 'enabled', plugin_cached_settings=plugin_cached_settings)
189 'enabled', plugin_cached_settings=plugin_cached_settings)
190
190
191 def get_id(self):
191 def get_id(self):
192 """
192 """
193 Returns the plugin id.
193 Returns the plugin id.
194 """
194 """
195 return self._plugin_id
195 return self._plugin_id
196
196
197 def get_display_name(self):
197 def get_display_name(self):
198 """
198 """
199 Returns a translation string for displaying purposes.
199 Returns a translation string for displaying purposes.
200 """
200 """
201 raise NotImplementedError('Not implemented in base class')
201 raise NotImplementedError('Not implemented in base class')
202
202
203 def get_settings_schema(self):
203 def get_settings_schema(self):
204 """
204 """
205 Returns a colander schema, representing the plugin settings.
205 Returns a colander schema, representing the plugin settings.
206 """
206 """
207 return AuthnPluginSettingsSchemaBase()
207 return AuthnPluginSettingsSchemaBase()
208
208
209 def get_settings(self):
209 def get_settings(self):
210 """
210 """
211 Returns the plugin settings as dictionary.
211 Returns the plugin settings as dictionary.
212 """
212 """
213 settings = {}
213 settings = {}
214 raw_settings = SettingsModel().get_all_settings()
214 raw_settings = SettingsModel().get_all_settings()
215 for node in self.get_settings_schema():
215 for node in self.get_settings_schema():
216 settings[node.name] = self.get_setting_by_name(
216 settings[node.name] = self.get_setting_by_name(
217 node.name, plugin_cached_settings=raw_settings)
217 node.name, plugin_cached_settings=raw_settings)
218 return settings
218 return settings
219
219
220 def get_setting_by_name(self, name, default=None, plugin_cached_settings=None):
220 def get_setting_by_name(self, name, default=None, plugin_cached_settings=None):
221 """
221 """
222 Returns a plugin setting by name.
222 Returns a plugin setting by name.
223 """
223 """
224 full_name = 'rhodecode_{}'.format(self._get_setting_full_name(name))
224 full_name = 'rhodecode_{}'.format(self._get_setting_full_name(name))
225 if plugin_cached_settings:
225 if plugin_cached_settings:
226 plugin_settings = plugin_cached_settings
226 plugin_settings = plugin_cached_settings
227 else:
227 else:
228 plugin_settings = SettingsModel().get_all_settings()
228 plugin_settings = SettingsModel().get_all_settings()
229
229
230 if full_name in plugin_settings:
230 if full_name in plugin_settings:
231 return plugin_settings[full_name]
231 return plugin_settings[full_name]
232 else:
232 else:
233 return default
233 return default
234
234
235 def create_or_update_setting(self, name, value):
235 def create_or_update_setting(self, name, value):
236 """
236 """
237 Create or update a setting for this plugin in the persistent storage.
237 Create or update a setting for this plugin in the persistent storage.
238 """
238 """
239 full_name = self._get_setting_full_name(name)
239 full_name = self._get_setting_full_name(name)
240 type_ = self._get_setting_type(name)
240 type_ = self._get_setting_type(name)
241 db_setting = SettingsModel().create_or_update_setting(
241 db_setting = SettingsModel().create_or_update_setting(
242 full_name, value, type_)
242 full_name, value, type_)
243 return db_setting.app_settings_value
243 return db_setting.app_settings_value
244
244
245 def log_safe_settings(self, settings):
245 def log_safe_settings(self, settings):
246 """
246 """
247 returns a log safe representation of settings, without any secrets
247 returns a log safe representation of settings, without any secrets
248 """
248 """
249 settings_copy = copy.deepcopy(settings)
249 settings_copy = copy.deepcopy(settings)
250 for k in self._settings_unsafe_keys:
250 for k in self._settings_unsafe_keys:
251 if k in settings_copy:
251 if k in settings_copy:
252 del settings_copy[k]
252 del settings_copy[k]
253 return settings_copy
253 return settings_copy
254
254
255 @hybrid_property
255 @hybrid_property
256 def name(self):
256 def name(self):
257 """
257 """
258 Returns the name of this authentication plugin.
258 Returns the name of this authentication plugin.
259
259
260 :returns: string
260 :returns: string
261 """
261 """
262 raise NotImplementedError("Not implemented in base class")
262 raise NotImplementedError("Not implemented in base class")
263
263
264 def get_url_slug(self):
264 def get_url_slug(self):
265 """
265 """
266 Returns a slug which should be used when constructing URLs which refer
266 Returns a slug which should be used when constructing URLs which refer
267 to this plugin. By default it returns the plugin name. If the name is
267 to this plugin. By default it returns the plugin name. If the name is
268 not suitable for using it in an URL the plugin should override this
268 not suitable for using it in an URL the plugin should override this
269 method.
269 method.
270 """
270 """
271 return self.name
271 return self.name
272
272
273 @property
273 @property
274 def is_headers_auth(self):
274 def is_headers_auth(self):
275 """
275 """
276 Returns True if this authentication plugin uses HTTP headers as
276 Returns True if this authentication plugin uses HTTP headers as
277 authentication method.
277 authentication method.
278 """
278 """
279 return False
279 return False
280
280
281 @hybrid_property
281 @hybrid_property
282 def is_container_auth(self):
282 def is_container_auth(self):
283 """
283 """
284 Deprecated method that indicates if this authentication plugin uses
284 Deprecated method that indicates if this authentication plugin uses
285 HTTP headers as authentication method.
285 HTTP headers as authentication method.
286 """
286 """
287 warnings.warn(
287 warnings.warn(
288 'Use is_headers_auth instead.', category=DeprecationWarning)
288 'Use is_headers_auth instead.', category=DeprecationWarning)
289 return self.is_headers_auth
289 return self.is_headers_auth
290
290
291 @hybrid_property
291 @hybrid_property
292 def allows_creating_users(self):
292 def allows_creating_users(self):
293 """
293 """
294 Defines if Plugin allows users to be created on-the-fly when
294 Defines if Plugin allows users to be created on-the-fly when
295 authentication is called. Controls how external plugins should behave
295 authentication is called. Controls how external plugins should behave
296 in terms if they are allowed to create new users, or not. Base plugins
296 in terms if they are allowed to create new users, or not. Base plugins
297 should not be allowed to, but External ones should be !
297 should not be allowed to, but External ones should be !
298
298
299 :return: bool
299 :return: bool
300 """
300 """
301 return False
301 return False
302
302
303 def set_auth_type(self, auth_type):
303 def set_auth_type(self, auth_type):
304 self.auth_type = auth_type
304 self.auth_type = auth_type
305
305
306 def set_calling_scope_repo(self, acl_repo_name):
306 def set_calling_scope_repo(self, acl_repo_name):
307 self.acl_repo_name = acl_repo_name
307 self.acl_repo_name = acl_repo_name
308
308
309 def allows_authentication_from(
309 def allows_authentication_from(
310 self, user, allows_non_existing_user=True,
310 self, user, allows_non_existing_user=True,
311 allowed_auth_plugins=None, allowed_auth_sources=None):
311 allowed_auth_plugins=None, allowed_auth_sources=None):
312 """
312 """
313 Checks if this authentication module should accept a request for
313 Checks if this authentication module should accept a request for
314 the current user.
314 the current user.
315
315
316 :param user: user object fetched using plugin's get_user() method.
316 :param user: user object fetched using plugin's get_user() method.
317 :param allows_non_existing_user: if True, don't allow the
317 :param allows_non_existing_user: if True, don't allow the
318 user to be empty, meaning not existing in our database
318 user to be empty, meaning not existing in our database
319 :param allowed_auth_plugins: if provided, users extern_type will be
319 :param allowed_auth_plugins: if provided, users extern_type will be
320 checked against a list of provided extern types, which are plugin
320 checked against a list of provided extern types, which are plugin
321 auth_names in the end
321 auth_names in the end
322 :param allowed_auth_sources: authentication type allowed,
322 :param allowed_auth_sources: authentication type allowed,
323 `http` or `vcs` default is both.
323 `http` or `vcs` default is both.
324 defines if plugin will accept only http authentication vcs
324 defines if plugin will accept only http authentication vcs
325 authentication(git/hg) or both
325 authentication(git/hg) or both
326 :returns: boolean
326 :returns: boolean
327 """
327 """
328 if not user and not allows_non_existing_user:
328 if not user and not allows_non_existing_user:
329 log.debug('User is empty but plugin does not allow empty users,'
329 log.debug('User is empty but plugin does not allow empty users,'
330 'not allowed to authenticate')
330 'not allowed to authenticate')
331 return False
331 return False
332
332
333 expected_auth_plugins = allowed_auth_plugins or [self.name]
333 expected_auth_plugins = allowed_auth_plugins or [self.name]
334 if user and (user.extern_type and
334 if user and (user.extern_type and
335 user.extern_type not in expected_auth_plugins):
335 user.extern_type not in expected_auth_plugins):
336 log.debug(
336 log.debug(
337 'User `%s` is bound to `%s` auth type. Plugin allows only '
337 'User `%s` is bound to `%s` auth type. Plugin allows only '
338 '%s, skipping', user, user.extern_type, expected_auth_plugins)
338 '%s, skipping', user, user.extern_type, expected_auth_plugins)
339
339
340 return False
340 return False
341
341
342 # by default accept both
342 # by default accept both
343 expected_auth_from = allowed_auth_sources or [HTTP_TYPE, VCS_TYPE]
343 expected_auth_from = allowed_auth_sources or [HTTP_TYPE, VCS_TYPE]
344 if self.auth_type not in expected_auth_from:
344 if self.auth_type not in expected_auth_from:
345 log.debug('Current auth source is %s but plugin only allows %s',
345 log.debug('Current auth source is %s but plugin only allows %s',
346 self.auth_type, expected_auth_from)
346 self.auth_type, expected_auth_from)
347 return False
347 return False
348
348
349 return True
349 return True
350
350
351 def get_user(self, username=None, **kwargs):
351 def get_user(self, username=None, **kwargs):
352 """
352 """
353 Helper method for user fetching in plugins, by default it's using
353 Helper method for user fetching in plugins, by default it's using
354 simple fetch by username, but this method can be custimized in plugins
354 simple fetch by username, but this method can be custimized in plugins
355 eg. headers auth plugin to fetch user by environ params
355 eg. headers auth plugin to fetch user by environ params
356
356
357 :param username: username if given to fetch from database
357 :param username: username if given to fetch from database
358 :param kwargs: extra arguments needed for user fetching.
358 :param kwargs: extra arguments needed for user fetching.
359 """
359 """
360 user = None
360 user = None
361 log.debug(
361 log.debug(
362 'Trying to fetch user `%s` from RhodeCode database', username)
362 'Trying to fetch user `%s` from RhodeCode database', username)
363 if username:
363 if username:
364 user = User.get_by_username(username)
364 user = User.get_by_username(username)
365 if not user:
365 if not user:
366 log.debug('User not found, fallback to fetch user in '
366 log.debug('User not found, fallback to fetch user in '
367 'case insensitive mode')
367 'case insensitive mode')
368 user = User.get_by_username(username, case_insensitive=True)
368 user = User.get_by_username(username, case_insensitive=True)
369 else:
369 else:
370 log.debug('provided username:`%s` is empty skipping...', username)
370 log.debug('provided username:`%s` is empty skipping...', username)
371 if not user:
371 if not user:
372 log.debug('User `%s` not found in database', username)
372 log.debug('User `%s` not found in database', username)
373 else:
373 else:
374 log.debug('Got DB user:%s', user)
374 log.debug('Got DB user:%s', user)
375 return user
375 return user
376
376
377 def user_activation_state(self):
377 def user_activation_state(self):
378 """
378 """
379 Defines user activation state when creating new users
379 Defines user activation state when creating new users
380
380
381 :returns: boolean
381 :returns: boolean
382 """
382 """
383 raise NotImplementedError("Not implemented in base class")
383 raise NotImplementedError("Not implemented in base class")
384
384
385 def auth(self, userobj, username, passwd, settings, **kwargs):
385 def auth(self, userobj, username, passwd, settings, **kwargs):
386 """
386 """
387 Given a user object (which may be null), username, a plaintext
387 Given a user object (which may be null), username, a plaintext
388 password, and a settings object (containing all the keys needed as
388 password, and a settings object (containing all the keys needed as
389 listed in settings()), authenticate this user's login attempt.
389 listed in settings()), authenticate this user's login attempt.
390
390
391 Return None on failure. On success, return a dictionary of the form:
391 Return None on failure. On success, return a dictionary of the form:
392
392
393 see: RhodeCodeAuthPluginBase.auth_func_attrs
393 see: RhodeCodeAuthPluginBase.auth_func_attrs
394 This is later validated for correctness
394 This is later validated for correctness
395 """
395 """
396 raise NotImplementedError("not implemented in base class")
396 raise NotImplementedError("not implemented in base class")
397
397
398 def _authenticate(self, userobj, username, passwd, settings, **kwargs):
398 def _authenticate(self, userobj, username, passwd, settings, **kwargs):
399 """
399 """
400 Wrapper to call self.auth() that validates call on it
400 Wrapper to call self.auth() that validates call on it
401
401
402 :param userobj: userobj
402 :param userobj: userobj
403 :param username: username
403 :param username: username
404 :param passwd: plaintext password
404 :param passwd: plaintext password
405 :param settings: plugin settings
405 :param settings: plugin settings
406 """
406 """
407 auth = self.auth(userobj, username, passwd, settings, **kwargs)
407 auth = self.auth(userobj, username, passwd, settings, **kwargs)
408 if auth:
408 if auth:
409 auth['_plugin'] = self.name
409 auth['_plugin'] = self.name
410 auth['_ttl_cache'] = self.get_ttl_cache(settings)
410 auth['_ttl_cache'] = self.get_ttl_cache(settings)
411 # check if hash should be migrated ?
411 # check if hash should be migrated ?
412 new_hash = auth.get('_hash_migrate')
412 new_hash = auth.get('_hash_migrate')
413 if new_hash:
413 if new_hash:
414 self._migrate_hash_to_bcrypt(username, passwd, new_hash)
414 self._migrate_hash_to_bcrypt(username, passwd, new_hash)
415 if 'user_group_sync' not in auth:
415 if 'user_group_sync' not in auth:
416 auth['user_group_sync'] = False
416 auth['user_group_sync'] = False
417 return self._validate_auth_return(auth)
417 return self._validate_auth_return(auth)
418 return auth
418 return auth
419
419
420 def _migrate_hash_to_bcrypt(self, username, password, new_hash):
420 def _migrate_hash_to_bcrypt(self, username, password, new_hash):
421 new_hash_cypher = _RhodeCodeCryptoBCrypt()
421 new_hash_cypher = _RhodeCodeCryptoBCrypt()
422 # extra checks, so make sure new hash is correct.
422 # extra checks, so make sure new hash is correct.
423 password_encoded = safe_str(password)
423 password_encoded = safe_str(password)
424 if new_hash and new_hash_cypher.hash_check(
424 if new_hash and new_hash_cypher.hash_check(
425 password_encoded, new_hash):
425 password_encoded, new_hash):
426 cur_user = User.get_by_username(username)
426 cur_user = User.get_by_username(username)
427 cur_user.password = new_hash
427 cur_user.password = new_hash
428 Session().add(cur_user)
428 Session().add(cur_user)
429 Session().flush()
429 Session().flush()
430 log.info('Migrated user %s hash to bcrypt', cur_user)
430 log.info('Migrated user %s hash to bcrypt', cur_user)
431
431
432 def _validate_auth_return(self, ret):
432 def _validate_auth_return(self, ret):
433 if not isinstance(ret, dict):
433 if not isinstance(ret, dict):
434 raise Exception('returned value from auth must be a dict')
434 raise Exception('returned value from auth must be a dict')
435 for k in self.auth_func_attrs:
435 for k in self.auth_func_attrs:
436 if k not in ret:
436 if k not in ret:
437 raise Exception('Missing %s attribute from returned data' % k)
437 raise Exception('Missing %s attribute from returned data' % k)
438 return ret
438 return ret
439
439
440 def get_ttl_cache(self, settings=None):
440 def get_ttl_cache(self, settings=None):
441 plugin_settings = settings or self.get_settings()
441 plugin_settings = settings or self.get_settings()
442 cache_ttl = 0
442 cache_ttl = 0
443
443
444 if isinstance(self.AUTH_CACHE_TTL, (int, long)):
444 if isinstance(self.AUTH_CACHE_TTL, (int, long)):
445 # plugin cache set inside is more important than the settings value
445 # plugin cache set inside is more important than the settings value
446 cache_ttl = self.AUTH_CACHE_TTL
446 cache_ttl = self.AUTH_CACHE_TTL
447 elif plugin_settings.get('cache_ttl'):
447 elif plugin_settings.get('cache_ttl'):
448 cache_ttl = safe_int(plugin_settings.get('cache_ttl'), 0)
448 cache_ttl = safe_int(plugin_settings.get('cache_ttl'), 0)
449
449
450 plugin_cache_active = bool(cache_ttl and cache_ttl > 0)
450 plugin_cache_active = bool(cache_ttl and cache_ttl > 0)
451 return plugin_cache_active, cache_ttl
451 return plugin_cache_active, cache_ttl
452
452
453
453
454 class RhodeCodeExternalAuthPlugin(RhodeCodeAuthPluginBase):
454 class RhodeCodeExternalAuthPlugin(RhodeCodeAuthPluginBase):
455
455
456 @hybrid_property
456 @hybrid_property
457 def allows_creating_users(self):
457 def allows_creating_users(self):
458 return True
458 return True
459
459
460 def use_fake_password(self):
460 def use_fake_password(self):
461 """
461 """
462 Return a boolean that indicates whether or not we should set the user's
462 Return a boolean that indicates whether or not we should set the user's
463 password to a random value when it is authenticated by this plugin.
463 password to a random value when it is authenticated by this plugin.
464 If your plugin provides authentication, then you will generally
464 If your plugin provides authentication, then you will generally
465 want this.
465 want this.
466
466
467 :returns: boolean
467 :returns: boolean
468 """
468 """
469 raise NotImplementedError("Not implemented in base class")
469 raise NotImplementedError("Not implemented in base class")
470
470
471 def _authenticate(self, userobj, username, passwd, settings, **kwargs):
471 def _authenticate(self, userobj, username, passwd, settings, **kwargs):
472 # at this point _authenticate calls plugin's `auth()` function
472 # at this point _authenticate calls plugin's `auth()` function
473 auth = super(RhodeCodeExternalAuthPlugin, self)._authenticate(
473 auth = super(RhodeCodeExternalAuthPlugin, self)._authenticate(
474 userobj, username, passwd, settings, **kwargs)
474 userobj, username, passwd, settings, **kwargs)
475
475
476 if auth:
476 if auth:
477 # maybe plugin will clean the username ?
477 # maybe plugin will clean the username ?
478 # we should use the return value
478 # we should use the return value
479 username = auth['username']
479 username = auth['username']
480
480
481 # if external source tells us that user is not active, we should
481 # if external source tells us that user is not active, we should
482 # skip rest of the process. This can prevent from creating users in
482 # skip rest of the process. This can prevent from creating users in
483 # RhodeCode when using external authentication, but if it's
483 # RhodeCode when using external authentication, but if it's
484 # inactive user we shouldn't create that user anyway
484 # inactive user we shouldn't create that user anyway
485 if auth['active_from_extern'] is False:
485 if auth['active_from_extern'] is False:
486 log.warning(
486 log.warning(
487 "User %s authenticated against %s, but is inactive",
487 "User %s authenticated against %s, but is inactive",
488 username, self.__module__)
488 username, self.__module__)
489 return None
489 return None
490
490
491 cur_user = User.get_by_username(username, case_insensitive=True)
491 cur_user = User.get_by_username(username, case_insensitive=True)
492 is_user_existing = cur_user is not None
492 is_user_existing = cur_user is not None
493
493
494 if is_user_existing:
494 if is_user_existing:
495 log.debug('Syncing user `%s` from '
495 log.debug('Syncing user `%s` from '
496 '`%s` plugin', username, self.name)
496 '`%s` plugin', username, self.name)
497 else:
497 else:
498 log.debug('Creating non existing user `%s` from '
498 log.debug('Creating non existing user `%s` from '
499 '`%s` plugin', username, self.name)
499 '`%s` plugin', username, self.name)
500
500
501 if self.allows_creating_users:
501 if self.allows_creating_users:
502 log.debug('Plugin `%s` allows to '
502 log.debug('Plugin `%s` allows to '
503 'create new users', self.name)
503 'create new users', self.name)
504 else:
504 else:
505 log.debug('Plugin `%s` does not allow to '
505 log.debug('Plugin `%s` does not allow to '
506 'create new users', self.name)
506 'create new users', self.name)
507
507
508 user_parameters = {
508 user_parameters = {
509 'username': username,
509 'username': username,
510 'email': auth["email"],
510 'email': auth["email"],
511 'firstname': auth["firstname"],
511 'firstname': auth["firstname"],
512 'lastname': auth["lastname"],
512 'lastname': auth["lastname"],
513 'active': auth["active"],
513 'active': auth["active"],
514 'admin': auth["admin"],
514 'admin': auth["admin"],
515 'extern_name': auth["extern_name"],
515 'extern_name': auth["extern_name"],
516 'extern_type': self.name,
516 'extern_type': self.name,
517 'plugin': self,
517 'plugin': self,
518 'allow_to_create_user': self.allows_creating_users,
518 'allow_to_create_user': self.allows_creating_users,
519 }
519 }
520
520
521 if not is_user_existing:
521 if not is_user_existing:
522 if self.use_fake_password():
522 if self.use_fake_password():
523 # Randomize the PW because we don't need it, but don't want
523 # Randomize the PW because we don't need it, but don't want
524 # them blank either
524 # them blank either
525 passwd = PasswordGenerator().gen_password(length=16)
525 passwd = PasswordGenerator().gen_password(length=16)
526 user_parameters['password'] = passwd
526 user_parameters['password'] = passwd
527 else:
527 else:
528 # Since the password is required by create_or_update method of
528 # Since the password is required by create_or_update method of
529 # UserModel, we need to set it explicitly.
529 # UserModel, we need to set it explicitly.
530 # The create_or_update method is smart and recognises the
530 # The create_or_update method is smart and recognises the
531 # password hashes as well.
531 # password hashes as well.
532 user_parameters['password'] = cur_user.password
532 user_parameters['password'] = cur_user.password
533
533
534 # we either create or update users, we also pass the flag
534 # we either create or update users, we also pass the flag
535 # that controls if this method can actually do that.
535 # that controls if this method can actually do that.
536 # raises NotAllowedToCreateUserError if it cannot, and we try to.
536 # raises NotAllowedToCreateUserError if it cannot, and we try to.
537 user = UserModel().create_or_update(**user_parameters)
537 user = UserModel().create_or_update(**user_parameters)
538 Session().flush()
538 Session().flush()
539 # enforce user is just in given groups, all of them has to be ones
539 # enforce user is just in given groups, all of them has to be ones
540 # created from plugins. We store this info in _group_data JSON
540 # created from plugins. We store this info in _group_data JSON
541 # field
541 # field
542
542
543 if auth['user_group_sync']:
543 if auth['user_group_sync']:
544 try:
544 try:
545 groups = auth['groups'] or []
545 groups = auth['groups'] or []
546 log.debug(
546 log.debug(
547 'Performing user_group sync based on set `%s` '
547 'Performing user_group sync based on set `%s` '
548 'returned by `%s` plugin', groups, self.name)
548 'returned by `%s` plugin', groups, self.name)
549 UserGroupModel().enforce_groups(user, groups, self.name)
549 UserGroupModel().enforce_groups(user, groups, self.name)
550 except Exception:
550 except Exception:
551 # for any reason group syncing fails, we should
551 # for any reason group syncing fails, we should
552 # proceed with login
552 # proceed with login
553 log.error(traceback.format_exc())
553 log.error(traceback.format_exc())
554
554
555 Session().commit()
555 Session().commit()
556 return auth
556 return auth
557
557
558
558
559 class AuthLdapBase(object):
560
561 @classmethod
562 def _build_servers(cls, ldap_server_type, ldap_server, port):
563 def host_resolver(host, port, full_resolve=True):
564 """
565 Main work for this function is to prevent ldap connection issues,
566 and detect them early using a "greenified" sockets
567 """
568 host = host.strip()
569 if not full_resolve:
570 return '{}:{}'.format(host, port)
571
572 log.debug('LDAP: Resolving IP for LDAP host %s', host)
573 try:
574 ip = socket.gethostbyname(host)
575 log.debug('Got LDAP server %s ip %s', host, ip)
576 except Exception:
577 raise LdapConnectionError(
578 'Failed to resolve host: `{}`'.format(host))
579
580 log.debug('LDAP: Checking if IP %s is accessible', ip)
581 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
582 try:
583 s.connect((ip, int(port)))
584 s.shutdown(socket.SHUT_RD)
585 except Exception:
586 raise LdapConnectionError(
587 'Failed to connect to host: `{}:{}`'.format(host, port))
588
589 return '{}:{}'.format(host, port)
590
591 if len(ldap_server) == 1:
592 # in case of single server use resolver to detect potential
593 # connection issues
594 full_resolve = True
595 else:
596 full_resolve = False
597
598 return ', '.join(
599 ["{}://{}".format(
600 ldap_server_type,
601 host_resolver(host, port, full_resolve=full_resolve))
602 for host in ldap_server])
603
604 @classmethod
605 def _get_server_list(cls, servers):
606 return map(string.strip, servers.split(','))
607
608 @classmethod
609 def get_uid(cls, username, server_addresses):
610 uid = username
611 for server_addr in server_addresses:
612 uid = chop_at(username, "@%s" % server_addr)
613 return uid
614
615
559 def loadplugin(plugin_id):
616 def loadplugin(plugin_id):
560 """
617 """
561 Loads and returns an instantiated authentication plugin.
618 Loads and returns an instantiated authentication plugin.
562 Returns the RhodeCodeAuthPluginBase subclass on success,
619 Returns the RhodeCodeAuthPluginBase subclass on success,
563 or None on failure.
620 or None on failure.
564 """
621 """
565 # TODO: Disusing pyramids thread locals to retrieve the registry.
622 # TODO: Disusing pyramids thread locals to retrieve the registry.
566 authn_registry = get_authn_registry()
623 authn_registry = get_authn_registry()
567 plugin = authn_registry.get_plugin(plugin_id)
624 plugin = authn_registry.get_plugin(plugin_id)
568 if plugin is None:
625 if plugin is None:
569 log.error('Authentication plugin not found: "%s"', plugin_id)
626 log.error('Authentication plugin not found: "%s"', plugin_id)
570 return plugin
627 return plugin
571
628
572
629
573 def get_authn_registry(registry=None):
630 def get_authn_registry(registry=None):
574 registry = registry or get_current_registry()
631 registry = registry or get_current_registry()
575 authn_registry = registry.getUtility(IAuthnPluginRegistry)
632 authn_registry = registry.getUtility(IAuthnPluginRegistry)
576 return authn_registry
633 return authn_registry
577
634
578
635
579 def get_auth_cache_manager(custom_ttl=None, suffix=None):
636 def get_auth_cache_manager(custom_ttl=None, suffix=None):
580 cache_name = 'rhodecode.authentication'
637 cache_name = 'rhodecode.authentication'
581 if suffix:
638 if suffix:
582 cache_name = 'rhodecode.authentication.{}'.format(suffix)
639 cache_name = 'rhodecode.authentication.{}'.format(suffix)
583 return caches.get_cache_manager(
640 return caches.get_cache_manager(
584 'auth_plugins', cache_name, custom_ttl)
641 'auth_plugins', cache_name, custom_ttl)
585
642
586
643
587 def get_perms_cache_manager(custom_ttl=None, suffix=None):
644 def get_perms_cache_manager(custom_ttl=None, suffix=None):
588 cache_name = 'rhodecode.permissions'
645 cache_name = 'rhodecode.permissions'
589 if suffix:
646 if suffix:
590 cache_name = 'rhodecode.permissions.{}'.format(suffix)
647 cache_name = 'rhodecode.permissions.{}'.format(suffix)
591 return caches.get_cache_manager(
648 return caches.get_cache_manager(
592 'auth_plugins', cache_name, custom_ttl)
649 'auth_plugins', cache_name, custom_ttl)
593
650
594
651
595 def authenticate(username, password, environ=None, auth_type=None,
652 def authenticate(username, password, environ=None, auth_type=None,
596 skip_missing=False, registry=None, acl_repo_name=None):
653 skip_missing=False, registry=None, acl_repo_name=None):
597 """
654 """
598 Authentication function used for access control,
655 Authentication function used for access control,
599 It tries to authenticate based on enabled authentication modules.
656 It tries to authenticate based on enabled authentication modules.
600
657
601 :param username: username can be empty for headers auth
658 :param username: username can be empty for headers auth
602 :param password: password can be empty for headers auth
659 :param password: password can be empty for headers auth
603 :param environ: environ headers passed for headers auth
660 :param environ: environ headers passed for headers auth
604 :param auth_type: type of authentication, either `HTTP_TYPE` or `VCS_TYPE`
661 :param auth_type: type of authentication, either `HTTP_TYPE` or `VCS_TYPE`
605 :param skip_missing: ignores plugins that are in db but not in environment
662 :param skip_missing: ignores plugins that are in db but not in environment
606 :returns: None if auth failed, plugin_user dict if auth is correct
663 :returns: None if auth failed, plugin_user dict if auth is correct
607 """
664 """
608 if not auth_type or auth_type not in [HTTP_TYPE, VCS_TYPE]:
665 if not auth_type or auth_type not in [HTTP_TYPE, VCS_TYPE]:
609 raise ValueError('auth type must be on of http, vcs got "%s" instead'
666 raise ValueError('auth type must be on of http, vcs got "%s" instead'
610 % auth_type)
667 % auth_type)
611 headers_only = environ and not (username and password)
668 headers_only = environ and not (username and password)
612
669
613 authn_registry = get_authn_registry(registry)
670 authn_registry = get_authn_registry(registry)
614 plugins_to_check = authn_registry.get_plugins_for_authentication()
671 plugins_to_check = authn_registry.get_plugins_for_authentication()
615 log.debug('Starting ordered authentication chain using %s plugins',
672 log.debug('Starting ordered authentication chain using %s plugins',
616 plugins_to_check)
673 [x.name for x in plugins_to_check])
617 for plugin in plugins_to_check:
674 for plugin in plugins_to_check:
618 plugin.set_auth_type(auth_type)
675 plugin.set_auth_type(auth_type)
619 plugin.set_calling_scope_repo(acl_repo_name)
676 plugin.set_calling_scope_repo(acl_repo_name)
620
677
621 if headers_only and not plugin.is_headers_auth:
678 if headers_only and not plugin.is_headers_auth:
622 log.debug('Auth type is for headers only and plugin `%s` is not '
679 log.debug('Auth type is for headers only and plugin `%s` is not '
623 'headers plugin, skipping...', plugin.get_id())
680 'headers plugin, skipping...', plugin.get_id())
624 continue
681 continue
625
682
626 log.debug('Trying authentication using ** %s **', plugin.get_id())
683 log.debug('Trying authentication using ** %s **', plugin.get_id())
627
684
628 # load plugin settings from RhodeCode database
685 # load plugin settings from RhodeCode database
629 plugin_settings = plugin.get_settings()
686 plugin_settings = plugin.get_settings()
630 plugin_sanitized_settings = plugin.log_safe_settings(plugin_settings)
687 plugin_sanitized_settings = plugin.log_safe_settings(plugin_settings)
631 log.debug('Plugin `%s` settings:%s', plugin.get_id(), plugin_sanitized_settings)
688 log.debug('Plugin `%s` settings:%s', plugin.get_id(), plugin_sanitized_settings)
632
689
633 # use plugin's method of user extraction.
690 # use plugin's method of user extraction.
634 user = plugin.get_user(username, environ=environ,
691 user = plugin.get_user(username, environ=environ,
635 settings=plugin_settings)
692 settings=plugin_settings)
636 display_user = user.username if user else username
693 display_user = user.username if user else username
637 log.debug(
694 log.debug(
638 'Plugin %s extracted user is `%s`', plugin.get_id(), display_user)
695 'Plugin %s extracted user is `%s`', plugin.get_id(), display_user)
639
696
640 if not plugin.allows_authentication_from(user):
697 if not plugin.allows_authentication_from(user):
641 log.debug('Plugin %s does not accept user `%s` for authentication',
698 log.debug('Plugin %s does not accept user `%s` for authentication',
642 plugin.get_id(), display_user)
699 plugin.get_id(), display_user)
643 continue
700 continue
644 else:
701 else:
645 log.debug('Plugin %s accepted user `%s` for authentication',
702 log.debug('Plugin %s accepted user `%s` for authentication',
646 plugin.get_id(), display_user)
703 plugin.get_id(), display_user)
647
704
648 log.info('Authenticating user `%s` using %s plugin',
705 log.info('Authenticating user `%s` using %s plugin',
649 display_user, plugin.get_id())
706 display_user, plugin.get_id())
650
707
651 plugin_cache_active, cache_ttl = plugin.get_ttl_cache(plugin_settings)
708 plugin_cache_active, cache_ttl = plugin.get_ttl_cache(plugin_settings)
652
709
653 # get instance of cache manager configured for a namespace
710 # get instance of cache manager configured for a namespace
654 cache_manager = get_auth_cache_manager(
711 cache_manager = get_auth_cache_manager(
655 custom_ttl=cache_ttl, suffix=user.user_id if user else '')
712 custom_ttl=cache_ttl, suffix=user.user_id if user else '')
656
713
657 log.debug('AUTH_CACHE_TTL for plugin `%s` active: %s (TTL: %s)',
714 log.debug('AUTH_CACHE_TTL for plugin `%s` active: %s (TTL: %s)',
658 plugin.get_id(), plugin_cache_active, cache_ttl)
715 plugin.get_id(), plugin_cache_active, cache_ttl)
659
716
660 # for environ based password can be empty, but then the validation is
717 # for environ based password can be empty, but then the validation is
661 # on the server that fills in the env data needed for authentication
718 # on the server that fills in the env data needed for authentication
662
719
663 _password_hash = caches.compute_key_from_params(
720 _password_hash = caches.compute_key_from_params(
664 plugin.name, username, (password or ''))
721 plugin.name, username, (password or ''))
665
722
666 # _authenticate is a wrapper for .auth() method of plugin.
723 # _authenticate is a wrapper for .auth() method of plugin.
667 # it checks if .auth() sends proper data.
724 # it checks if .auth() sends proper data.
668 # For RhodeCodeExternalAuthPlugin it also maps users to
725 # For RhodeCodeExternalAuthPlugin it also maps users to
669 # Database and maps the attributes returned from .auth()
726 # Database and maps the attributes returned from .auth()
670 # to RhodeCode database. If this function returns data
727 # to RhodeCode database. If this function returns data
671 # then auth is correct.
728 # then auth is correct.
672 start = time.time()
729 start = time.time()
673 log.debug('Running plugin `%s` _authenticate method', plugin.get_id())
730 log.debug('Running plugin `%s` _authenticate method', plugin.get_id())
674
731
675 def auth_func():
732 def auth_func():
676 """
733 """
677 This function is used internally in Cache of Beaker to calculate
734 This function is used internally in Cache of Beaker to calculate
678 Results
735 Results
679 """
736 """
680 log.debug('auth: calculating password access now...')
737 log.debug('auth: calculating password access now...')
681 return plugin._authenticate(
738 return plugin._authenticate(
682 user, username, password, plugin_settings,
739 user, username, password, plugin_settings,
683 environ=environ or {})
740 environ=environ or {})
684
741
685 if plugin_cache_active:
742 if plugin_cache_active:
686 log.debug('Trying to fetch cached auth by pwd hash `...%s`',
743 log.debug('Trying to fetch cached auth by pwd hash `...%s`',
687 _password_hash[:6])
744 _password_hash[:6])
688 plugin_user = cache_manager.get(
745 plugin_user = cache_manager.get(
689 _password_hash, createfunc=auth_func)
746 _password_hash, createfunc=auth_func)
690 else:
747 else:
691 plugin_user = auth_func()
748 plugin_user = auth_func()
692
749
693 auth_time = time.time() - start
750 auth_time = time.time() - start
694 log.debug('Authentication for plugin `%s` completed in %.3fs, '
751 log.debug('Authentication for plugin `%s` completed in %.3fs, '
695 'expiration time of fetched cache %.1fs.',
752 'expiration time of fetched cache %.1fs.',
696 plugin.get_id(), auth_time, cache_ttl)
753 plugin.get_id(), auth_time, cache_ttl)
697
754
698 log.debug('PLUGIN USER DATA: %s', plugin_user)
755 log.debug('PLUGIN USER DATA: %s', plugin_user)
699
756
700 if plugin_user:
757 if plugin_user:
701 log.debug('Plugin returned proper authentication data')
758 log.debug('Plugin returned proper authentication data')
702 return plugin_user
759 return plugin_user
703 # we failed to Auth because .auth() method didn't return proper user
760 # we failed to Auth because .auth() method didn't return proper user
704 log.debug("User `%s` failed to authenticate against %s",
761 log.debug("User `%s` failed to authenticate against %s",
705 display_user, plugin.get_id())
762 display_user, plugin.get_id())
706
763
707 # case when we failed to authenticate against all defined plugins
764 # case when we failed to authenticate against all defined plugins
708 return None
765 return None
709
766
710
767
711 def chop_at(s, sub, inclusive=False):
768 def chop_at(s, sub, inclusive=False):
712 """Truncate string ``s`` at the first occurrence of ``sub``.
769 """Truncate string ``s`` at the first occurrence of ``sub``.
713
770
714 If ``inclusive`` is true, truncate just after ``sub`` rather than at it.
771 If ``inclusive`` is true, truncate just after ``sub`` rather than at it.
715
772
716 >>> chop_at("plutocratic brats", "rat")
773 >>> chop_at("plutocratic brats", "rat")
717 'plutoc'
774 'plutoc'
718 >>> chop_at("plutocratic brats", "rat", True)
775 >>> chop_at("plutocratic brats", "rat", True)
719 'plutocrat'
776 'plutocrat'
720 """
777 """
721 pos = s.find(sub)
778 pos = s.find(sub)
722 if pos == -1:
779 if pos == -1:
723 return s
780 return s
724 if inclusive:
781 if inclusive:
725 return s[:pos+len(sub)]
782 return s[:pos+len(sub)]
726 return s[:pos]
783 return s[:pos]
@@ -0,0 +1,19 b''
1 # -*- coding: utf-8 -*-
2
3 # Copyright (C) 2012-2018 RhodeCode GmbH
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
@@ -1,542 +1,505 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2010-2018 RhodeCode GmbH
3 # Copyright (C) 2010-2018 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 """
21 """
22 RhodeCode authentication plugin for LDAP
22 RhodeCode authentication plugin for LDAP
23 """
23 """
24
24
25 import socket
26 import re
27 import colander
28 import logging
25 import logging
29 import traceback
26 import traceback
30 import string
31
27
28 import colander
32 from rhodecode.translation import _
29 from rhodecode.translation import _
33 from rhodecode.authentication.base import (
30 from rhodecode.authentication.base import (
34 RhodeCodeExternalAuthPlugin, chop_at, hybrid_property)
31 RhodeCodeExternalAuthPlugin, AuthLdapBase, hybrid_property)
35 from rhodecode.authentication.schema import AuthnPluginSettingsSchemaBase
32 from rhodecode.authentication.schema import AuthnPluginSettingsSchemaBase
36 from rhodecode.authentication.routes import AuthnPluginResourceBase
33 from rhodecode.authentication.routes import AuthnPluginResourceBase
37 from rhodecode.lib.colander_utils import strip_whitespace
34 from rhodecode.lib.colander_utils import strip_whitespace
38 from rhodecode.lib.exceptions import (
35 from rhodecode.lib.exceptions import (
39 LdapConnectionError, LdapUsernameError, LdapPasswordError, LdapImportError
36 LdapConnectionError, LdapUsernameError, LdapPasswordError, LdapImportError
40 )
37 )
41 from rhodecode.lib.utils2 import safe_unicode, safe_str
38 from rhodecode.lib.utils2 import safe_unicode, safe_str
42 from rhodecode.model.db import User
39 from rhodecode.model.db import User
43 from rhodecode.model.validators import Missing
40 from rhodecode.model.validators import Missing
44
41
45 log = logging.getLogger(__name__)
42 log = logging.getLogger(__name__)
46
43
47 try:
44 try:
48 import ldap
45 import ldap
49 except ImportError:
46 except ImportError:
50 # means that python-ldap is not installed, we use Missing object to mark
47 # means that python-ldap is not installed, we use Missing object to mark
51 # ldap lib is Missing
48 # ldap lib is Missing
52 ldap = Missing
49 ldap = Missing
53
50
54
51
55 class LdapError(Exception):
52 class LdapError(Exception):
56 pass
53 pass
57
54
58 def plugin_factory(plugin_id, *args, **kwds):
55 def plugin_factory(plugin_id, *args, **kwds):
59 """
56 """
60 Factory function that is called during plugin discovery.
57 Factory function that is called during plugin discovery.
61 It returns the plugin instance.
58 It returns the plugin instance.
62 """
59 """
63 plugin = RhodeCodeAuthPlugin(plugin_id)
60 plugin = RhodeCodeAuthPlugin(plugin_id)
64 return plugin
61 return plugin
65
62
66
63
67 class LdapAuthnResource(AuthnPluginResourceBase):
64 class LdapAuthnResource(AuthnPluginResourceBase):
68 pass
65 pass
69
66
70
67
71 class LdapSettingsSchema(AuthnPluginSettingsSchemaBase):
68 class LdapSettingsSchema(AuthnPluginSettingsSchemaBase):
72 tls_kind_choices = ['PLAIN', 'LDAPS', 'START_TLS']
69 tls_kind_choices = ['PLAIN', 'LDAPS', 'START_TLS']
73 tls_reqcert_choices = ['NEVER', 'ALLOW', 'TRY', 'DEMAND', 'HARD']
70 tls_reqcert_choices = ['NEVER', 'ALLOW', 'TRY', 'DEMAND', 'HARD']
74 search_scope_choices = ['BASE', 'ONELEVEL', 'SUBTREE']
71 search_scope_choices = ['BASE', 'ONELEVEL', 'SUBTREE']
75
72
76 host = colander.SchemaNode(
73 host = colander.SchemaNode(
77 colander.String(),
74 colander.String(),
78 default='',
75 default='',
79 description=_('Host[s] of the LDAP Server \n'
76 description=_('Host[s] of the LDAP Server \n'
80 '(e.g., 192.168.2.154, or ldap-server.domain.com.\n '
77 '(e.g., 192.168.2.154, or ldap-server.domain.com.\n '
81 'Multiple servers can be specified using commas'),
78 'Multiple servers can be specified using commas'),
82 preparer=strip_whitespace,
79 preparer=strip_whitespace,
83 title=_('LDAP Host'),
80 title=_('LDAP Host'),
84 widget='string')
81 widget='string')
85 port = colander.SchemaNode(
82 port = colander.SchemaNode(
86 colander.Int(),
83 colander.Int(),
87 default=389,
84 default=389,
88 description=_('Custom port that the LDAP server is listening on. '
85 description=_('Custom port that the LDAP server is listening on. '
89 'Default value is: 389'),
86 'Default value is: 389'),
90 preparer=strip_whitespace,
87 preparer=strip_whitespace,
91 title=_('Port'),
88 title=_('Port'),
92 validator=colander.Range(min=0, max=65536),
89 validator=colander.Range(min=0, max=65536),
93 widget='int')
90 widget='int')
94
91
95 timeout = colander.SchemaNode(
92 timeout = colander.SchemaNode(
96 colander.Int(),
93 colander.Int(),
97 default=60 * 5,
94 default=60 * 5,
98 description=_('Timeout for LDAP connection'),
95 description=_('Timeout for LDAP connection'),
99 preparer=strip_whitespace,
96 preparer=strip_whitespace,
100 title=_('Connection timeout'),
97 title=_('Connection timeout'),
101 validator=colander.Range(min=1),
98 validator=colander.Range(min=1),
102 widget='int')
99 widget='int')
103
100
104 dn_user = colander.SchemaNode(
101 dn_user = colander.SchemaNode(
105 colander.String(),
102 colander.String(),
106 default='',
103 default='',
107 description=_('Optional user DN/account to connect to LDAP if authentication is required. \n'
104 description=_('Optional user DN/account to connect to LDAP if authentication is required. \n'
108 'e.g., cn=admin,dc=mydomain,dc=com, or '
105 'e.g., cn=admin,dc=mydomain,dc=com, or '
109 'uid=root,cn=users,dc=mydomain,dc=com, or admin@mydomain.com'),
106 'uid=root,cn=users,dc=mydomain,dc=com, or admin@mydomain.com'),
110 missing='',
107 missing='',
111 preparer=strip_whitespace,
108 preparer=strip_whitespace,
112 title=_('Account'),
109 title=_('Account'),
113 widget='string')
110 widget='string')
114 dn_pass = colander.SchemaNode(
111 dn_pass = colander.SchemaNode(
115 colander.String(),
112 colander.String(),
116 default='',
113 default='',
117 description=_('Password to authenticate for given user DN.'),
114 description=_('Password to authenticate for given user DN.'),
118 missing='',
115 missing='',
119 preparer=strip_whitespace,
116 preparer=strip_whitespace,
120 title=_('Password'),
117 title=_('Password'),
121 widget='password')
118 widget='password')
122 tls_kind = colander.SchemaNode(
119 tls_kind = colander.SchemaNode(
123 colander.String(),
120 colander.String(),
124 default=tls_kind_choices[0],
121 default=tls_kind_choices[0],
125 description=_('TLS Type'),
122 description=_('TLS Type'),
126 title=_('Connection Security'),
123 title=_('Connection Security'),
127 validator=colander.OneOf(tls_kind_choices),
124 validator=colander.OneOf(tls_kind_choices),
128 widget='select')
125 widget='select')
129 tls_reqcert = colander.SchemaNode(
126 tls_reqcert = colander.SchemaNode(
130 colander.String(),
127 colander.String(),
131 default=tls_reqcert_choices[0],
128 default=tls_reqcert_choices[0],
132 description=_('Require Cert over TLS?. Self-signed and custom '
129 description=_('Require Cert over TLS?. Self-signed and custom '
133 'certificates can be used when\n `RhodeCode Certificate` '
130 'certificates can be used when\n `RhodeCode Certificate` '
134 'found in admin > settings > system info page is extended.'),
131 'found in admin > settings > system info page is extended.'),
135 title=_('Certificate Checks'),
132 title=_('Certificate Checks'),
136 validator=colander.OneOf(tls_reqcert_choices),
133 validator=colander.OneOf(tls_reqcert_choices),
137 widget='select')
134 widget='select')
138 base_dn = colander.SchemaNode(
135 base_dn = colander.SchemaNode(
139 colander.String(),
136 colander.String(),
140 default='',
137 default='',
141 description=_('Base DN to search. Dynamic bind is supported. Add `$login` marker '
138 description=_('Base DN to search. Dynamic bind is supported. Add `$login` marker '
142 'in it to be replaced with current user credentials \n'
139 'in it to be replaced with current user credentials \n'
143 '(e.g., dc=mydomain,dc=com, or ou=Users,dc=mydomain,dc=com)'),
140 '(e.g., dc=mydomain,dc=com, or ou=Users,dc=mydomain,dc=com)'),
144 missing='',
141 missing='',
145 preparer=strip_whitespace,
142 preparer=strip_whitespace,
146 title=_('Base DN'),
143 title=_('Base DN'),
147 widget='string')
144 widget='string')
148 filter = colander.SchemaNode(
145 filter = colander.SchemaNode(
149 colander.String(),
146 colander.String(),
150 default='',
147 default='',
151 description=_('Filter to narrow results \n'
148 description=_('Filter to narrow results \n'
152 '(e.g., (&(objectCategory=Person)(objectClass=user)), or \n'
149 '(e.g., (&(objectCategory=Person)(objectClass=user)), or \n'
153 '(memberof=cn=rc-login,ou=groups,ou=company,dc=mydomain,dc=com)))'),
150 '(memberof=cn=rc-login,ou=groups,ou=company,dc=mydomain,dc=com)))'),
154 missing='',
151 missing='',
155 preparer=strip_whitespace,
152 preparer=strip_whitespace,
156 title=_('LDAP Search Filter'),
153 title=_('LDAP Search Filter'),
157 widget='string')
154 widget='string')
158
155
159 search_scope = colander.SchemaNode(
156 search_scope = colander.SchemaNode(
160 colander.String(),
157 colander.String(),
161 default=search_scope_choices[2],
158 default=search_scope_choices[2],
162 description=_('How deep to search LDAP. If unsure set to SUBTREE'),
159 description=_('How deep to search LDAP. If unsure set to SUBTREE'),
163 title=_('LDAP Search Scope'),
160 title=_('LDAP Search Scope'),
164 validator=colander.OneOf(search_scope_choices),
161 validator=colander.OneOf(search_scope_choices),
165 widget='select')
162 widget='select')
166 attr_login = colander.SchemaNode(
163 attr_login = colander.SchemaNode(
167 colander.String(),
164 colander.String(),
168 default='uid',
165 default='uid',
169 description=_('LDAP Attribute to map to user name (e.g., uid, or sAMAccountName)'),
166 description=_('LDAP Attribute to map to user name (e.g., uid, or sAMAccountName)'),
170 preparer=strip_whitespace,
167 preparer=strip_whitespace,
171 title=_('Login Attribute'),
168 title=_('Login Attribute'),
172 missing_msg=_('The LDAP Login attribute of the CN must be specified'),
169 missing_msg=_('The LDAP Login attribute of the CN must be specified'),
173 widget='string')
170 widget='string')
174 attr_firstname = colander.SchemaNode(
171 attr_firstname = colander.SchemaNode(
175 colander.String(),
172 colander.String(),
176 default='',
173 default='',
177 description=_('LDAP Attribute to map to first name (e.g., givenName)'),
174 description=_('LDAP Attribute to map to first name (e.g., givenName)'),
178 missing='',
175 missing='',
179 preparer=strip_whitespace,
176 preparer=strip_whitespace,
180 title=_('First Name Attribute'),
177 title=_('First Name Attribute'),
181 widget='string')
178 widget='string')
182 attr_lastname = colander.SchemaNode(
179 attr_lastname = colander.SchemaNode(
183 colander.String(),
180 colander.String(),
184 default='',
181 default='',
185 description=_('LDAP Attribute to map to last name (e.g., sn)'),
182 description=_('LDAP Attribute to map to last name (e.g., sn)'),
186 missing='',
183 missing='',
187 preparer=strip_whitespace,
184 preparer=strip_whitespace,
188 title=_('Last Name Attribute'),
185 title=_('Last Name Attribute'),
189 widget='string')
186 widget='string')
190 attr_email = colander.SchemaNode(
187 attr_email = colander.SchemaNode(
191 colander.String(),
188 colander.String(),
192 default='',
189 default='',
193 description=_('LDAP Attribute to map to email address (e.g., mail).\n'
190 description=_('LDAP Attribute to map to email address (e.g., mail).\n'
194 'Emails are a crucial part of RhodeCode. \n'
191 'Emails are a crucial part of RhodeCode. \n'
195 'If possible add a valid email attribute to ldap users.'),
192 'If possible add a valid email attribute to ldap users.'),
196 missing='',
193 missing='',
197 preparer=strip_whitespace,
194 preparer=strip_whitespace,
198 title=_('Email Attribute'),
195 title=_('Email Attribute'),
199 widget='string')
196 widget='string')
200
197
201
198
202 class AuthLdap(object):
199 class AuthLdap(AuthLdapBase):
203
204 def _build_servers(self):
205 def host_resolver(host, port):
206 """
207 Main work for this function is to prevent ldap connection issues,
208 and detect them early using a "greenified" sockets
209 """
210 host = host.strip()
211
212 log.info('Resolving LDAP host %s', host)
213 try:
214 ip = socket.gethostbyname(host)
215 log.info('Got LDAP server %s ip %s', host, ip)
216 except Exception:
217 raise LdapConnectionError(
218 'Failed to resolve host: `{}`'.format(host))
219
220 log.info('Checking LDAP IP access %s', ip)
221 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
222 try:
223 s.connect((ip, int(port)))
224 s.shutdown(socket.SHUT_RD)
225 except Exception:
226 raise LdapConnectionError(
227 'Failed to connect to host: `{}:{}`'.format(host, port))
228
229 return '{}:{}'.format(host, port)
230
231 port = self.LDAP_SERVER_PORT
232 return ', '.join(
233 ["{}://{}".format(
234 self.ldap_server_type, host_resolver(host, port))
235 for host in self.SERVER_ADDRESSES])
236
200
237 def __init__(self, server, base_dn, port=389, bind_dn='', bind_pass='',
201 def __init__(self, server, base_dn, port=389, bind_dn='', bind_pass='',
238 tls_kind='PLAIN', tls_reqcert='DEMAND', ldap_version=3,
202 tls_kind='PLAIN', tls_reqcert='DEMAND', ldap_version=3,
239 search_scope='SUBTREE', attr_login='uid',
203 search_scope='SUBTREE', attr_login='uid',
240 ldap_filter='', timeout=None):
204 ldap_filter='', timeout=None):
241 if ldap == Missing:
205 if ldap == Missing:
242 raise LdapImportError("Missing or incompatible ldap library")
206 raise LdapImportError("Missing or incompatible ldap library")
243
207
244 self.debug = False
208 self.debug = False
245 self.timeout = timeout or 60 * 5
209 self.timeout = timeout or 60 * 5
246 self.ldap_version = ldap_version
210 self.ldap_version = ldap_version
247 self.ldap_server_type = 'ldap'
211 self.ldap_server_type = 'ldap'
248
212
249 self.TLS_KIND = tls_kind
213 self.TLS_KIND = tls_kind
250
214
251 if self.TLS_KIND == 'LDAPS':
215 if self.TLS_KIND == 'LDAPS':
252 port = port or 689
216 port = port or 689
253 self.ldap_server_type += 's'
217 self.ldap_server_type += 's'
254
218
255 OPT_X_TLS_DEMAND = 2
219 OPT_X_TLS_DEMAND = 2
256 self.TLS_REQCERT = getattr(ldap, 'OPT_X_TLS_%s' % tls_reqcert,
220 self.TLS_REQCERT = getattr(ldap, 'OPT_X_TLS_%s' % tls_reqcert,
257 OPT_X_TLS_DEMAND)
221 OPT_X_TLS_DEMAND)
222 self.LDAP_SERVER = server
258 # split server into list
223 # split server into list
259 self.SERVER_ADDRESSES = server.split(',')
224 self.SERVER_ADDRESSES = self._get_server_list(server)
260 self.LDAP_SERVER_PORT = port
225 self.LDAP_SERVER_PORT = port
261
226
262 # USE FOR READ ONLY BIND TO LDAP SERVER
227 # USE FOR READ ONLY BIND TO LDAP SERVER
263 self.attr_login = attr_login
228 self.attr_login = attr_login
264
229
265 self.LDAP_BIND_DN = safe_str(bind_dn)
230 self.LDAP_BIND_DN = safe_str(bind_dn)
266 self.LDAP_BIND_PASS = safe_str(bind_pass)
231 self.LDAP_BIND_PASS = safe_str(bind_pass)
267 self.LDAP_SERVER = self._build_servers()
232
268 self.SEARCH_SCOPE = getattr(ldap, 'SCOPE_%s' % search_scope)
233 self.SEARCH_SCOPE = getattr(ldap, 'SCOPE_%s' % search_scope)
269 self.BASE_DN = safe_str(base_dn)
234 self.BASE_DN = safe_str(base_dn)
270 self.LDAP_FILTER = safe_str(ldap_filter)
235 self.LDAP_FILTER = safe_str(ldap_filter)
271
236
272 def _get_ldap_conn(self):
237 def _get_ldap_conn(self):
273 log.debug('initializing LDAP connection to:%s', self.LDAP_SERVER)
274
238
275 if self.debug:
239 if self.debug:
276 ldap.set_option(ldap.OPT_DEBUG_LEVEL, 255)
240 ldap.set_option(ldap.OPT_DEBUG_LEVEL, 255)
277
241
278 if hasattr(ldap, 'OPT_X_TLS_CACERTDIR'):
242 if hasattr(ldap, 'OPT_X_TLS_CACERTDIR'):
279 ldap.set_option(ldap.OPT_X_TLS_CACERTDIR, '/etc/openldap/cacerts')
243 ldap.set_option(ldap.OPT_X_TLS_CACERTDIR, '/etc/openldap/cacerts')
280 if self.TLS_KIND != 'PLAIN':
244 if self.TLS_KIND != 'PLAIN':
281 ldap.set_option(ldap.OPT_X_TLS_REQUIRE_CERT, self.TLS_REQCERT)
245 ldap.set_option(ldap.OPT_X_TLS_REQUIRE_CERT, self.TLS_REQCERT)
282
246
283 ldap.set_option(ldap.OPT_REFERRALS, ldap.OPT_OFF)
247 ldap.set_option(ldap.OPT_REFERRALS, ldap.OPT_OFF)
284 ldap.set_option(ldap.OPT_RESTART, ldap.OPT_ON)
248 ldap.set_option(ldap.OPT_RESTART, ldap.OPT_ON)
285
249
286 # init connection now
250 # init connection now
287 ldap_conn = ldap.initialize(self.LDAP_SERVER)
251 ldap_servers = self._build_servers(
252 self.ldap_server_type, self.SERVER_ADDRESSES, self.LDAP_SERVER_PORT)
253 log.debug('initializing LDAP connection to:%s', ldap_servers)
254 ldap_conn = ldap.initialize(ldap_servers)
288 ldap_conn.set_option(ldap.OPT_NETWORK_TIMEOUT, self.timeout)
255 ldap_conn.set_option(ldap.OPT_NETWORK_TIMEOUT, self.timeout)
289 ldap_conn.set_option(ldap.OPT_TIMEOUT, self.timeout)
256 ldap_conn.set_option(ldap.OPT_TIMEOUT, self.timeout)
290 ldap_conn.timeout = self.timeout
257 ldap_conn.timeout = self.timeout
291
258
292 if self.ldap_version == 2:
259 if self.ldap_version == 2:
293 ldap_conn.protocol = ldap.VERSION2
260 ldap_conn.protocol = ldap.VERSION2
294 else:
261 else:
295 ldap_conn.protocol = ldap.VERSION3
262 ldap_conn.protocol = ldap.VERSION3
296
263
297 if self.TLS_KIND == 'START_TLS':
264 if self.TLS_KIND == 'START_TLS':
298 ldap_conn.start_tls_s()
265 ldap_conn.start_tls_s()
299
266
300 if self.LDAP_BIND_DN and self.LDAP_BIND_PASS:
267 if self.LDAP_BIND_DN and self.LDAP_BIND_PASS:
301 log.debug('Trying simple_bind with password and given login DN: %s',
268 log.debug('Trying simple_bind with password and given login DN: %s',
302 self.LDAP_BIND_DN)
269 self.LDAP_BIND_DN)
303 ldap_conn.simple_bind_s(self.LDAP_BIND_DN, self.LDAP_BIND_PASS)
270 ldap_conn.simple_bind_s(self.LDAP_BIND_DN, self.LDAP_BIND_PASS)
304
271
305 return ldap_conn
272 return ldap_conn
306
273
307 def get_uid(self, username):
308 uid = username
309 for server_addr in self.SERVER_ADDRESSES:
310 uid = chop_at(username, "@%s" % server_addr)
311 return uid
312
313 def fetch_attrs_from_simple_bind(self, server, dn, username, password):
274 def fetch_attrs_from_simple_bind(self, server, dn, username, password):
314 try:
275 try:
315 log.debug('Trying simple bind with %s', dn)
276 log.debug('Trying simple bind with %s', dn)
316 server.simple_bind_s(dn, safe_str(password))
277 server.simple_bind_s(dn, safe_str(password))
317 user = server.search_ext_s(
278 user = server.search_ext_s(
318 dn, ldap.SCOPE_BASE, '(objectClass=*)', )[0]
279 dn, ldap.SCOPE_BASE, '(objectClass=*)', )[0]
319 _, attrs = user
280 _, attrs = user
320 return attrs
281 return attrs
321
282
322 except ldap.INVALID_CREDENTIALS:
283 except ldap.INVALID_CREDENTIALS:
323 log.debug(
284 log.debug(
324 "LDAP rejected password for user '%s': %s, org_exc:",
285 "LDAP rejected password for user '%s': %s, org_exc:",
325 username, dn, exc_info=True)
286 username, dn, exc_info=True)
326
287
327 def authenticate_ldap(self, username, password):
288 def authenticate_ldap(self, username, password):
328 """
289 """
329 Authenticate a user via LDAP and return his/her LDAP properties.
290 Authenticate a user via LDAP and return his/her LDAP properties.
330
291
331 Raises AuthenticationError if the credentials are rejected, or
292 Raises AuthenticationError if the credentials are rejected, or
332 EnvironmentError if the LDAP server can't be reached.
293 EnvironmentError if the LDAP server can't be reached.
333
294
334 :param username: username
295 :param username: username
335 :param password: password
296 :param password: password
336 """
297 """
337
298
338 uid = self.get_uid(username)
299 uid = self.get_uid(username, self.SERVER_ADDRESSES)
300 user_attrs = {}
301 dn = ''
339
302
340 if not password:
303 if not password:
341 msg = "Authenticating user %s with blank password not allowed"
304 msg = "Authenticating user %s with blank password not allowed"
342 log.warning(msg, username)
305 log.warning(msg, username)
343 raise LdapPasswordError(msg)
306 raise LdapPasswordError(msg)
344 if "," in username:
307 if "," in username:
345 raise LdapUsernameError(
308 raise LdapUsernameError(
346 "invalid character `,` in username: `{}`".format(username))
309 "invalid character `,` in username: `{}`".format(username))
347 ldap_conn = None
310 ldap_conn = None
348 try:
311 try:
349 ldap_conn = self._get_ldap_conn()
312 ldap_conn = self._get_ldap_conn()
350 filter_ = '(&%s(%s=%s))' % (
313 filter_ = '(&%s(%s=%s))' % (
351 self.LDAP_FILTER, self.attr_login, username)
314 self.LDAP_FILTER, self.attr_login, username)
352 log.debug("Authenticating %r filter %s at %s", self.BASE_DN,
315 log.debug(
353 filter_, self.LDAP_SERVER)
316 "Authenticating %r filter %s", self.BASE_DN, filter_)
354 lobjects = ldap_conn.search_ext_s(
317 lobjects = ldap_conn.search_ext_s(
355 self.BASE_DN, self.SEARCH_SCOPE, filter_)
318 self.BASE_DN, self.SEARCH_SCOPE, filter_)
356
319
357 if not lobjects:
320 if not lobjects:
358 log.debug("No matching LDAP objects for authentication "
321 log.debug("No matching LDAP objects for authentication "
359 "of UID:'%s' username:(%s)", uid, username)
322 "of UID:'%s' username:(%s)", uid, username)
360 raise ldap.NO_SUCH_OBJECT()
323 raise ldap.NO_SUCH_OBJECT()
361
324
362 log.debug('Found matching ldap object, trying to authenticate')
325 log.debug('Found matching ldap object, trying to authenticate')
363 for (dn, _attrs) in lobjects:
326 for (dn, _attrs) in lobjects:
364 if dn is None:
327 if dn is None:
365 continue
328 continue
366
329
367 user_attrs = self.fetch_attrs_from_simple_bind(
330 user_attrs = self.fetch_attrs_from_simple_bind(
368 ldap_conn, dn, username, password)
331 ldap_conn, dn, username, password)
369 if user_attrs:
332 if user_attrs:
370 break
333 break
371
334
372 else:
335 else:
373 raise LdapPasswordError(
336 raise LdapPasswordError(
374 'Failed to authenticate user `{}`'
337 'Failed to authenticate user `{}`'
375 'with given password'.format(username))
338 'with given password'.format(username))
376
339
377 except ldap.NO_SUCH_OBJECT:
340 except ldap.NO_SUCH_OBJECT:
378 log.debug("LDAP says no such user '%s' (%s), org_exc:",
341 log.debug("LDAP says no such user '%s' (%s), org_exc:",
379 uid, username, exc_info=True)
342 uid, username, exc_info=True)
380 raise LdapUsernameError('Unable to find user')
343 raise LdapUsernameError('Unable to find user')
381 except ldap.SERVER_DOWN:
344 except ldap.SERVER_DOWN:
382 org_exc = traceback.format_exc()
345 org_exc = traceback.format_exc()
383 raise LdapConnectionError(
346 raise LdapConnectionError(
384 "LDAP can't access authentication "
347 "LDAP can't access authentication "
385 "server, org_exc:%s" % org_exc)
348 "server, org_exc:%s" % org_exc)
386 finally:
349 finally:
387 if ldap_conn:
350 if ldap_conn:
388 log.debug('ldap: connection release')
351 log.debug('ldap: connection release')
389 try:
352 try:
390 ldap_conn.unbind_s()
353 ldap_conn.unbind_s()
391 except Exception:
354 except Exception:
392 # for any reason this can raise exception we must catch it
355 # for any reason this can raise exception we must catch it
393 # to not crush the server
356 # to not crush the server
394 pass
357 pass
395
358
396 return dn, user_attrs
359 return dn, user_attrs
397
360
398
361
399 class RhodeCodeAuthPlugin(RhodeCodeExternalAuthPlugin):
362 class RhodeCodeAuthPlugin(RhodeCodeExternalAuthPlugin):
400 # used to define dynamic binding in the
363 # used to define dynamic binding in the
401 DYNAMIC_BIND_VAR = '$login'
364 DYNAMIC_BIND_VAR = '$login'
402 _settings_unsafe_keys = ['dn_pass']
365 _settings_unsafe_keys = ['dn_pass']
403
366
404 def includeme(self, config):
367 def includeme(self, config):
405 config.add_authn_plugin(self)
368 config.add_authn_plugin(self)
406 config.add_authn_resource(self.get_id(), LdapAuthnResource(self))
369 config.add_authn_resource(self.get_id(), LdapAuthnResource(self))
407 config.add_view(
370 config.add_view(
408 'rhodecode.authentication.views.AuthnPluginViewBase',
371 'rhodecode.authentication.views.AuthnPluginViewBase',
409 attr='settings_get',
372 attr='settings_get',
410 renderer='rhodecode:templates/admin/auth/plugin_settings.mako',
373 renderer='rhodecode:templates/admin/auth/plugin_settings.mako',
411 request_method='GET',
374 request_method='GET',
412 route_name='auth_home',
375 route_name='auth_home',
413 context=LdapAuthnResource)
376 context=LdapAuthnResource)
414 config.add_view(
377 config.add_view(
415 'rhodecode.authentication.views.AuthnPluginViewBase',
378 'rhodecode.authentication.views.AuthnPluginViewBase',
416 attr='settings_post',
379 attr='settings_post',
417 renderer='rhodecode:templates/admin/auth/plugin_settings.mako',
380 renderer='rhodecode:templates/admin/auth/plugin_settings.mako',
418 request_method='POST',
381 request_method='POST',
419 route_name='auth_home',
382 route_name='auth_home',
420 context=LdapAuthnResource)
383 context=LdapAuthnResource)
421
384
422 def get_settings_schema(self):
385 def get_settings_schema(self):
423 return LdapSettingsSchema()
386 return LdapSettingsSchema()
424
387
425 def get_display_name(self):
388 def get_display_name(self):
426 return _('LDAP')
389 return _('LDAP')
427
390
428 @hybrid_property
391 @hybrid_property
429 def name(self):
392 def name(self):
430 return "ldap"
393 return "ldap"
431
394
432 def use_fake_password(self):
395 def use_fake_password(self):
433 return True
396 return True
434
397
435 def user_activation_state(self):
398 def user_activation_state(self):
436 def_user_perms = User.get_default_user().AuthUser().permissions['global']
399 def_user_perms = User.get_default_user().AuthUser().permissions['global']
437 return 'hg.extern_activate.auto' in def_user_perms
400 return 'hg.extern_activate.auto' in def_user_perms
438
401
439 def try_dynamic_binding(self, username, password, current_args):
402 def try_dynamic_binding(self, username, password, current_args):
440 """
403 """
441 Detects marker inside our original bind, and uses dynamic auth if
404 Detects marker inside our original bind, and uses dynamic auth if
442 present
405 present
443 """
406 """
444
407
445 org_bind = current_args['bind_dn']
408 org_bind = current_args['bind_dn']
446 passwd = current_args['bind_pass']
409 passwd = current_args['bind_pass']
447
410
448 def has_bind_marker(username):
411 def has_bind_marker(username):
449 if self.DYNAMIC_BIND_VAR in username:
412 if self.DYNAMIC_BIND_VAR in username:
450 return True
413 return True
451
414
452 # we only passed in user with "special" variable
415 # we only passed in user with "special" variable
453 if org_bind and has_bind_marker(org_bind) and not passwd:
416 if org_bind and has_bind_marker(org_bind) and not passwd:
454 log.debug('Using dynamic user/password binding for ldap '
417 log.debug('Using dynamic user/password binding for ldap '
455 'authentication. Replacing `%s` with username',
418 'authentication. Replacing `%s` with username',
456 self.DYNAMIC_BIND_VAR)
419 self.DYNAMIC_BIND_VAR)
457 current_args['bind_dn'] = org_bind.replace(
420 current_args['bind_dn'] = org_bind.replace(
458 self.DYNAMIC_BIND_VAR, username)
421 self.DYNAMIC_BIND_VAR, username)
459 current_args['bind_pass'] = password
422 current_args['bind_pass'] = password
460
423
461 return current_args
424 return current_args
462
425
463 def auth(self, userobj, username, password, settings, **kwargs):
426 def auth(self, userobj, username, password, settings, **kwargs):
464 """
427 """
465 Given a user object (which may be null), username, a plaintext password,
428 Given a user object (which may be null), username, a plaintext password,
466 and a settings object (containing all the keys needed as listed in
429 and a settings object (containing all the keys needed as listed in
467 settings()), authenticate this user's login attempt.
430 settings()), authenticate this user's login attempt.
468
431
469 Return None on failure. On success, return a dictionary of the form:
432 Return None on failure. On success, return a dictionary of the form:
470
433
471 see: RhodeCodeAuthPluginBase.auth_func_attrs
434 see: RhodeCodeAuthPluginBase.auth_func_attrs
472 This is later validated for correctness
435 This is later validated for correctness
473 """
436 """
474
437
475 if not username or not password:
438 if not username or not password:
476 log.debug('Empty username or password skipping...')
439 log.debug('Empty username or password skipping...')
477 return None
440 return None
478
441
479 ldap_args = {
442 ldap_args = {
480 'server': settings.get('host', ''),
443 'server': settings.get('host', ''),
481 'base_dn': settings.get('base_dn', ''),
444 'base_dn': settings.get('base_dn', ''),
482 'port': settings.get('port'),
445 'port': settings.get('port'),
483 'bind_dn': settings.get('dn_user'),
446 'bind_dn': settings.get('dn_user'),
484 'bind_pass': settings.get('dn_pass'),
447 'bind_pass': settings.get('dn_pass'),
485 'tls_kind': settings.get('tls_kind'),
448 'tls_kind': settings.get('tls_kind'),
486 'tls_reqcert': settings.get('tls_reqcert'),
449 'tls_reqcert': settings.get('tls_reqcert'),
487 'search_scope': settings.get('search_scope'),
450 'search_scope': settings.get('search_scope'),
488 'attr_login': settings.get('attr_login'),
451 'attr_login': settings.get('attr_login'),
489 'ldap_version': 3,
452 'ldap_version': 3,
490 'ldap_filter': settings.get('filter'),
453 'ldap_filter': settings.get('filter'),
491 'timeout': settings.get('timeout')
454 'timeout': settings.get('timeout')
492 }
455 }
493
456
494 ldap_attrs = self.try_dynamic_binding(username, password, ldap_args)
457 ldap_attrs = self.try_dynamic_binding(username, password, ldap_args)
495
458
496 log.debug('Checking for ldap authentication.')
459 log.debug('Checking for ldap authentication.')
497
460
498 try:
461 try:
499 aldap = AuthLdap(**ldap_args)
462 aldap = AuthLdap(**ldap_args)
500 (user_dn, ldap_attrs) = aldap.authenticate_ldap(username, password)
463 (user_dn, ldap_attrs) = aldap.authenticate_ldap(username, password)
501 log.debug('Got ldap DN response %s', user_dn)
464 log.debug('Got ldap DN response %s', user_dn)
502
465
503 def get_ldap_attr(k):
466 def get_ldap_attr(k):
504 return ldap_attrs.get(settings.get(k), [''])[0]
467 return ldap_attrs.get(settings.get(k), [''])[0]
505
468
506 # old attrs fetched from RhodeCode database
469 # old attrs fetched from RhodeCode database
507 admin = getattr(userobj, 'admin', False)
470 admin = getattr(userobj, 'admin', False)
508 active = getattr(userobj, 'active', True)
471 active = getattr(userobj, 'active', True)
509 email = getattr(userobj, 'email', '')
472 email = getattr(userobj, 'email', '')
510 username = getattr(userobj, 'username', username)
473 username = getattr(userobj, 'username', username)
511 firstname = getattr(userobj, 'firstname', '')
474 firstname = getattr(userobj, 'firstname', '')
512 lastname = getattr(userobj, 'lastname', '')
475 lastname = getattr(userobj, 'lastname', '')
513 extern_type = getattr(userobj, 'extern_type', '')
476 extern_type = getattr(userobj, 'extern_type', '')
514
477
515 groups = []
478 groups = []
516 user_attrs = {
479 user_attrs = {
517 'username': username,
480 'username': username,
518 'firstname': safe_unicode(
481 'firstname': safe_unicode(
519 get_ldap_attr('attr_firstname') or firstname),
482 get_ldap_attr('attr_firstname') or firstname),
520 'lastname': safe_unicode(
483 'lastname': safe_unicode(
521 get_ldap_attr('attr_lastname') or lastname),
484 get_ldap_attr('attr_lastname') or lastname),
522 'groups': groups,
485 'groups': groups,
523 'user_group_sync': False,
486 'user_group_sync': False,
524 'email': get_ldap_attr('attr_email') or email,
487 'email': get_ldap_attr('attr_email') or email,
525 'admin': admin,
488 'admin': admin,
526 'active': active,
489 'active': active,
527 'active_from_extern': None,
490 'active_from_extern': None,
528 'extern_name': user_dn,
491 'extern_name': user_dn,
529 'extern_type': extern_type,
492 'extern_type': extern_type,
530 }
493 }
531 log.debug('ldap user: %s', user_attrs)
494 log.debug('ldap user: %s', user_attrs)
532 log.info('user `%s` authenticated correctly', user_attrs['username'])
495 log.info('user `%s` authenticated correctly', user_attrs['username'])
533
496
534 return user_attrs
497 return user_attrs
535
498
536 except (LdapUsernameError, LdapPasswordError, LdapImportError):
499 except (LdapUsernameError, LdapPasswordError, LdapImportError):
537 log.exception("LDAP related exception")
500 log.exception("LDAP related exception")
538 return None
501 return None
539 except (Exception,):
502 except (Exception,):
540 log.exception("Other exception")
503 log.exception("Other exception")
541 return None
504 return None
542
505
General Comments 0
You need to be logged in to leave comments. Login now