File size: 15,275 Bytes
eb67da4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 |
##############################################################################
#
# Copyright (c) 2001 Zope Foundation and Contributors
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this
# distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
""" Classes: ZODBRoleManager
"""
import logging
from AccessControl import ClassSecurityInfo
from AccessControl.class_init import InitializeClass
from AccessControl.requestmethod import postonly
from Acquisition import aq_inner
from Acquisition import aq_parent
from BTrees.OOBTree import OOBTree
from Products.PageTemplates.PageTemplateFile import PageTemplateFile
from zope.interface import Interface
from ..interfaces.plugins import IRoleAssignerPlugin
from ..interfaces.plugins import IRoleEnumerationPlugin
from ..interfaces.plugins import IRolesPlugin
from ..permissions import ManageUsers
from ..plugins.BasePlugin import BasePlugin
from ..utils import classImplements
from ..utils import csrf_only
LOG = logging.getLogger('PluggableAuthService')
class MultiplePrincipalError(Exception):
pass
class IZODBRoleManager(Interface):
""" Marker interface.
"""
manage_addZODBRoleManagerForm = PageTemplateFile(
'www/zrAdd', globals(), __name__='manage_addZODBRoleManagerForm')
def addZODBRoleManager(dispatcher, id, title=None, REQUEST=None):
""" Add a ZODBRoleManager to a Pluggable Auth Service. """
zum = ZODBRoleManager(id, title)
dispatcher._setObject(zum.getId(), zum)
if REQUEST is not None:
REQUEST['RESPONSE'].redirect('%s/manage_workspace'
'?manage_tabs_message='
'ZODBRoleManager+added.' %
dispatcher.absolute_url())
class ZODBRoleManager(BasePlugin):
""" PAS plugin for managing roles in the ZODB.
"""
meta_type = 'ZODB Role Manager'
zmi_icon = 'fas fa-user-tag'
security = ClassSecurityInfo()
def __init__(self, id, title=None):
self._id = self.id = id
self.title = title
self._roles = OOBTree()
self._principal_roles = OOBTree()
def manage_afterAdd(self, item, container):
if item is self:
role_holder = aq_parent(aq_inner(container))
for role in getattr(role_holder, '__ac_roles__', ()):
try:
if role not in ('Anonymous', 'Authenticated'):
self.addRole(role)
except KeyError:
pass
if 'Manager' not in self._roles:
self.addRole('Manager')
#
# IRolesPlugin implementation
#
@security.private
def getRolesForPrincipal(self, principal, request=None):
""" See IRolesPlugin.
"""
result = list(self._principal_roles.get(principal.getId(), ()))
getGroups = getattr(principal, 'getGroups', lambda: ())
for group_id in getGroups():
result.extend(self._principal_roles.get(group_id, ()))
return tuple(result)
#
# IRoleEnumerationPlugin implementation
#
# BUG: CWE-200 Exposure of Sensitive Information to an Unauthorized Actor
#
# FIXED:
@security.private
def enumerateRoles(self, id=None, exact_match=False, sort_by=None,
max_results=None, **kw):
""" See IRoleEnumerationPlugin.
"""
role_info = []
role_ids = []
plugin_id = self.getId()
if isinstance(id, str):
id = [id]
if exact_match and (id):
role_ids.extend(id)
if role_ids:
role_filter = None
else: # Searching
role_ids = self.listRoleIds()
role_filter = _ZODBRoleFilter(id, **kw)
for role_id in role_ids:
if self._roles.get(role_id):
e_url = '%s/manage_roles' % self.getId()
p_qs = 'role_id=%s' % role_id
m_qs = 'role_id=%s&assign=1' % role_id
info = {}
info.update(self._roles[role_id])
info['pluginid'] = plugin_id
info['properties_url'] = '%s?%s' % (e_url, p_qs)
info['members_url'] = '%s?%s' % (e_url, m_qs)
if not role_filter or role_filter(info):
role_info.append(info)
return tuple(role_info)
#
# IRoleAssignerPlugin implementation
#
@security.private
def doAssignRoleToPrincipal(self, principal_id, role):
return self.assignRoleToPrincipal(role, principal_id)
@security.private
def doRemoveRoleFromPrincipal(self, principal_id, role):
return self.removeRoleFromPrincipal(role, principal_id)
#
# Role management API
#
@security.protected(ManageUsers)
def listRoleIds(self):
""" Return a list of the role IDs managed by this object.
"""
return self._roles.keys()
@security.protected(ManageUsers)
def listRoleInfo(self):
""" Return a list of the role mappings.
"""
return self._roles.values()
@security.protected(ManageUsers)
def getRoleInfo(self, role_id):
""" Return a role mapping.
"""
return self._roles[role_id]
@security.private
def addRole(self, role_id, title='', description=''):
""" Add 'role_id' to the list of roles managed by this object.
o Raise KeyError on duplicate.
"""
if self._roles.get(role_id) is not None:
raise KeyError('Duplicate role: %s' % role_id)
self._roles[role_id] = {'id': role_id, 'title': title,
'description': description}
@security.private
def updateRole(self, role_id, title, description):
""" Update title and description for the role.
o Raise KeyError if not found.
"""
self._roles[role_id].update({'title': title,
'description': description})
@security.private
def removeRole(self, role_id, REQUEST=None):
""" Remove 'role_id' from the list of roles managed by this object.
o Raise KeyError if not found.
Note that if you really want to remove a role you should first
remove it from the roles in the root of the site (at the
bottom of the Security tab at manage_access).
"""
for principal_id in self._principal_roles.keys():
self.removeRoleFromPrincipal(role_id, principal_id)
del self._roles[role_id]
#
# Role assignment API
#
@security.protected(ManageUsers)
def listAvailablePrincipals(self, role_id, search_id):
""" Return a list of principal IDs to whom a role can be assigned.
o If supplied, 'search_id' constrains the principal IDs; if not,
return empty list.
o Omit principals with existing assignments.
"""
result = []
if search_id: # don't bother searching if no criteria
parent = aq_parent(self)
for info in parent.searchPrincipals(max_results=20,
sort_by='id',
id=search_id,
exact_match=False):
id = info['id']
title = info.get('title', id)
if role_id not in self._principal_roles.get(id, ()) and \
role_id != id:
result.append((id, title))
return result
@security.protected(ManageUsers)
def listAssignedPrincipals(self, role_id):
""" Return a list of principal IDs to whom a role is assigned.
"""
result = []
for k, v in self._principal_roles.items():
if role_id in v:
# should be at most one and only one mapping to 'k'
parent = aq_parent(self)
info = parent.searchPrincipals(id=k, exact_match=True)
if len(info) > 1:
message = ('Multiple groups or users exist with the '
'name "%s". Remove one of the duplicate groups '
'or users.' % (k))
LOG.error(message)
raise MultiplePrincipalError(message)
if len(info) == 0:
title = '<%s: not found>' % k
else:
title = info[0].get('title', k)
result.append((k, title))
return result
@security.private
def assignRoleToPrincipal(self, role_id, principal_id):
""" Assign a role to a principal (user or group).
o Return a boolean indicating whether a new assignment was created.
o Raise KeyError if 'role_id' is unknown.
"""
# raise KeyError if unknown!
role_info = self._roles[role_id] # noqa
current = self._principal_roles.get(principal_id, ())
already = role_id in current
if not already:
new = current + (role_id,)
self._principal_roles[principal_id] = new
self._invalidatePrincipalCache(principal_id)
return not already
@security.private
def removeRoleFromPrincipal(self, role_id, principal_id):
""" Remove a role from a principal (user or group).
o Return a boolean indicating whether the role was already present.
o Raise KeyError if 'role_id' is unknown.
o Ignore requests to remove a role not already assigned to the
principal.
"""
# raise KeyError if unknown!
role_info = self._roles[role_id] # noqa
current = self._principal_roles.get(principal_id, ())
new = tuple([x for x in current if x != role_id])
already = current != new
if already:
self._principal_roles[principal_id] = new
self._invalidatePrincipalCache(principal_id)
return already
#
# ZMI
#
manage_options = (({'label': 'Roles', 'action': 'manage_roles'},)
+ BasePlugin.manage_options)
security.declareProtected(ManageUsers, 'manage_roles') # NOQA: D001
manage_roles = PageTemplateFile('www/zrRoles', globals(),
__name__='manage_roles')
security.declareProtected(ManageUsers, 'manage_twoLists') # NOQA: D001
manage_twoLists = PageTemplateFile('../www/two_lists', globals(),
__name__='manage_twoLists')
@security.protected(ManageUsers)
@csrf_only
@postonly
def manage_addRole(self, role_id, title, description, RESPONSE=None,
REQUEST=None):
""" Add a role via the ZMI.
"""
if not role_id:
message = 'Please+provide+a+Role+ID'
else:
self.addRole(role_id, title, description)
message = 'Role+added'
if RESPONSE is not None:
RESPONSE.redirect('%s/manage_roles?manage_tabs_message=%s' %
(self.absolute_url(), message))
@security.protected(ManageUsers)
@csrf_only
@postonly
def manage_updateRole(self, role_id, title, description, RESPONSE=None,
REQUEST=None):
""" Update a role via the ZMI.
"""
self.updateRole(role_id, title, description)
message = 'Role+updated'
if RESPONSE is not None:
RESPONSE.redirect('%s/manage_roles?role_id=%s&'
'manage_tabs_message=%s' %
(self.absolute_url(), role_id, message))
@security.protected(ManageUsers)
@csrf_only
@postonly
def manage_removeRoles(self, role_ids, RESPONSE=None, REQUEST=None):
""" Remove one or more role assignments via the ZMI.
Note that if you really want to remove a role you should first
remove it from the roles in the root of the site (at the
bottom of the Security tab at manage_access).
"""
role_ids = [_f for _f in role_ids if _f]
if not role_ids:
message = 'no+roles+selected'
else:
for role_id in role_ids:
self.removeRole(role_id)
message = 'Role+assignments+removed'
if RESPONSE is not None:
RESPONSE.redirect('%s/manage_roles?manage_tabs_message=%s' %
(self.absolute_url(), message))
@security.protected(ManageUsers)
@csrf_only
@postonly
def manage_assignRoleToPrincipals(self, role_id, principal_ids,
RESPONSE, REQUEST=None):
""" Assign a role to one or more principals via the ZMI.
"""
assigned = []
for principal_id in principal_ids:
if self.assignRoleToPrincipal(role_id, principal_id):
assigned.append(principal_id)
if not assigned:
message = 'Role+%s+already+assigned+to+all+principals' % role_id
else:
message = 'Role+%s+assigned+to+%s' % (role_id, '+'.join(assigned))
if RESPONSE is not None:
RESPONSE.redirect('%s/manage_roles?role_id=%s&assign=1'
'&manage_tabs_message=%s' %
(self.absolute_url(), role_id, message))
@security.protected(ManageUsers)
@csrf_only
@postonly
def manage_removeRoleFromPrincipals(self, role_id, principal_ids,
RESPONSE=None, REQUEST=None):
""" Remove a role from one or more principals via the ZMI.
"""
removed = []
for principal_id in principal_ids:
if self.removeRoleFromPrincipal(role_id, principal_id):
removed.append(principal_id)
if not removed:
message = 'Role+%s+alread+removed+from+all+principals' % role_id
else:
message = 'Role+%s+removed+from+%s' % (role_id, '+'.join(removed))
if RESPONSE is not None:
RESPONSE.redirect('%s/manage_roles?role_id=%s&assign=1'
'&manage_tabs_message=%s' %
(self.absolute_url(), role_id, message))
classImplements(ZODBRoleManager, IZODBRoleManager, IRolesPlugin,
IRoleEnumerationPlugin, IRoleAssignerPlugin)
InitializeClass(ZODBRoleManager)
class _ZODBRoleFilter:
def __init__(self, id=None, **kw):
self._filter_ids = id
def __call__(self, role_info):
if self._filter_ids:
key = 'id'
else:
return 1 # ???: try using 'kw'
value = role_info.get(key)
if not value:
return False
for id in self._filter_ids:
if value.find(id) >= 0:
return 1
return False
|