blob: 9ba9184b1beb0714ca18a674c5634b557796813e [file] [log] [blame]
# -*- coding: utf-8 -*-
#
# Copyright (C) 2003-2009 Edgewall Software
# Copyright (C) 2003-2004 Jonas Borgström <jonas@edgewall.com>
# Copyright (C) 2005 Christopher Lenz <cmlenz@gmx.de>
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at http://trac.edgewall.org/wiki/TracLicense.
#
# This software consists of voluntary contributions made by many
# individuals. For the exact contribution history, see the revision
# history and logs, available at http://trac.edgewall.org/log/.
#
# Author: Jonas Borgström <jonas@edgewall.com>
# Christopher Lenz <cmlenz@gmx.de>
from __future__ import with_statement
import csv
import os
from time import time
from trac.admin import AdminCommandError, IAdminCommandProvider, get_dir_list
from trac.cache import cached
from trac.config import ExtensionOption, OrderedExtensionsOption
from trac.core import *
from trac.resource import get_resource_name, manager_for_neighborhood, \
Neighborhood, Resource
from trac.util import file_or_std
from trac.util.text import path_to_unicode, print_table, printout, \
stream_encoding, to_unicode, wrap
from trac.util.translation import _
__all__ = ['IPermissionRequestor', 'IPermissionStore', 'IPermissionPolicy',
'IPermissionGroupProvider', 'PermissionError', 'PermissionSystem']
class PermissionError(StandardError):
"""Insufficient permissions to complete the operation"""
def __init__ (self, action=None, resource=None, env=None, msg=None):
StandardError.__init__(self)
self.action = action
self.resource = resource
self.env = env
self.msg = msg
def __unicode__ (self):
if self.action:
if self.resource:
return _('%(perm)s privileges are required to perform '
'this operation on %(resource)s. You don\'t have the '
'required permissions.',
perm=self.action,
resource=get_resource_name(self.env, self.resource))
else:
return _('%(perm)s privileges are required to perform this '
'operation. You don\'t have the required '
'permissions.', perm=self.action)
elif self.msg:
return self.msg
else:
return _('Insufficient privileges to perform this operation.')
class IPermissionRequestor(Interface):
"""Extension point interface for components that define actions."""
def get_permission_actions():
"""Return a list of actions defined by this component.
The items in the list may either be simple strings, or
`(string, sequence)` tuples. The latter are considered to be "meta
permissions" that group several simple actions under one name for
convenience, adding to it if another component already defined that
name.
"""
class IPermissionStore(Interface):
"""Extension point interface for components that provide storage and
management of permissions."""
def get_user_permissions(username):
"""Return all permissions for the user with the specified name.
The permissions are returned as a dictionary where the key is the name
of the permission, and the value is either `True` for granted
permissions or `False` for explicitly denied permissions."""
def get_users_with_permissions(permissions):
"""Retrieve a list of users that have any of the specified permissions.
Users are returned as a list of usernames.
"""
def get_all_permissions():
"""Return all permissions for all users.
The permissions are returned as a list of (subject, action)
formatted tuples."""
def grant_permission(username, action):
"""Grant a user permission to perform an action."""
def revoke_permission(username, action):
"""Revokes the permission of the given user to perform an action."""
class IPermissionGroupProvider(Interface):
"""Extension point interface for components that provide information about
user groups.
"""
def get_permission_groups(username):
"""Return a list of names of the groups that the user with the specified
name is a member of."""
class IPermissionPolicy(Interface):
"""A security policy provider used for fine grained permission checks."""
def check_permission(action, username, resource, perm):
"""Check that the action can be performed by username on the resource
:param action: the name of the permission
:param username: the username string or 'anonymous' if there's no
authenticated user
:param resource: the resource on which the check applies.
Will be `None`, if the check is a global one and
not made on a resource in particular
:param perm: the permission cache for that username and resource,
which can be used for doing secondary checks on other
permissions. Care must be taken to avoid recursion.
:return: `True` if action is allowed, `False` if action is denied,
or `None` if indifferent. If `None` is returned, the next
policy in the chain will be used, and so on.
Note that when checking a permission on a realm resource (i.e. when
`.id` is `None`), this usually corresponds to some preliminary check
done before making a fine-grained check on some resource.
Therefore the `IPermissionPolicy` should be conservative and return:
* `True` if the action *can* be allowed for some resources in
that realm. Later, for specific resource, the policy will be able
to return `True` (allow), `False` (deny) or `None` (don't decide).
* `None` if the action *can not* be performed for *some* resources.
This corresponds to situation where the policy is only interested
in returning `False` or `None` on specific resources.
* `False` if the action *can not* be performed for *any* resource in
that realm (that's a very strong decision as that will usually
prevent any fine-grained check to even happen).
Note that performing permission checks on realm resources may seem
redundant for now as the action name itself contains the realm, but
this will probably change in the future (e.g. `'VIEW' in ...`).
"""
class DefaultPermissionStore(Component):
"""Default implementation of permission storage and group management.
This component uses the `permission` table in the database to store both
permissions and groups.
"""
implements(IPermissionStore)
group_providers = ExtensionPoint(IPermissionGroupProvider)
def get_user_permissions(self, username):
"""Retrieve the permissions for the given user and return them in a
dictionary.
The permissions are stored in the database as (username, action)
records. There's simple support for groups by using lowercase names for
the action column: such a record represents a group and not an actual
permission, and declares that the user is part of that group.
"""
subjects = set([username])
for provider in self.group_providers:
subjects.update(provider.get_permission_groups(username) or [])
actions = set()
perms = self._all_permissions
while True:
num_users = len(subjects)
num_actions = len(actions)
for user, action in perms:
if user in subjects:
if action.isupper() and action not in actions:
actions.add(action)
if not action.isupper() and action not in subjects:
# action is actually the name of the permission
# group here
subjects.add(action)
if num_users == len(subjects) and num_actions == len(actions):
break
return list(actions)
def get_users_with_permissions(self, permissions):
"""Retrieve a list of users that have any of the specified permissions
Users are returned as a list of usernames.
"""
# get_user_permissions() takes care of the magic 'authenticated' group.
# The optimized loop we had before didn't. This is very inefficient,
# but it works.
result = set()
users = set([u[0] for u in self.env.get_known_users()])
for user in users:
userperms = self.get_user_permissions(user)
for group in permissions:
if group in userperms:
result.add(user)
return list(result)
def get_all_permissions(self):
"""Return all permissions for all users.
The permissions are returned as a list of (subject, action)
formatted tuples."""
return self._all_permissions
@cached
def _all_permissions(self):
return [(username, action) for username, action in
self.env.db_query("SELECT username, action FROM permission")]
def grant_permission(self, username, action):
"""Grants a user the permission to perform the specified action."""
self.env.db_transaction("INSERT INTO permission VALUES (%s, %s)",
(username, action))
self.log.info("Granted permission for %s to %s", action, username)
# Invalidate cached property
del self._all_permissions
def revoke_permission(self, username, action):
"""Revokes a users' permission to perform the specified action."""
self.env.db_transaction(
"DELETE FROM permission WHERE username=%s AND action=%s",
(username, action))
self.log.info("Revoked permission for %s to %s", action, username)
# Invalidate cached property
del self._all_permissions
class DefaultPermissionGroupProvider(Component):
"""Permission group provider providing the basic builtin permission groups
'anonymous' and 'authenticated'."""
required = True
implements(IPermissionGroupProvider)
def get_permission_groups(self, username):
groups = ['anonymous']
if username and username != 'anonymous':
groups.append('authenticated')
return groups
class DefaultPermissionPolicy(Component):
"""Default permission policy using the IPermissionStore system."""
implements(IPermissionPolicy)
# Number of seconds a cached user permission set is valid for.
CACHE_EXPIRY = 5
# How frequently to clear the entire permission cache
CACHE_REAP_TIME = 60
def __init__(self):
self.permission_cache = {}
self.last_reap = time()
# IPermissionPolicy methods
def check_permission(self, action, username, resource, perm):
# TODO: Precondition resource.neighborhood is None
now = time()
if now - self.last_reap > self.CACHE_REAP_TIME:
self.permission_cache = {}
self.last_reap = time()
timestamp, permissions = self.permission_cache.get(username, (0, None))
# Cache hit?
if now - timestamp > self.CACHE_EXPIRY:
# No, pull permissions from database.
permissions = PermissionSystem(self.env). \
get_user_permissions(username)
self.permission_cache[username] = (now, permissions)
return action in permissions or None
class PermissionSystem(Component):
"""Permission management sub-system."""
required = True
implements(IPermissionRequestor)
requestors = ExtensionPoint(IPermissionRequestor)
store = ExtensionOption('trac', 'permission_store', IPermissionStore,
'DefaultPermissionStore',
"""Name of the component implementing `IPermissionStore`, which is used
for managing user and group permissions.""")
policies = OrderedExtensionsOption('trac', 'permission_policies',
IPermissionPolicy,
'DefaultPermissionPolicy, LegacyAttachmentPolicy',
False,
"""List of components implementing `IPermissionPolicy`, in the order in
which they will be applied. These components manage fine-grained access
control to Trac resources.
Defaults to the DefaultPermissionPolicy (pre-0.11 behavior) and
LegacyAttachmentPolicy (map ATTACHMENT_* permissions to realm specific
ones)""")
# Number of seconds a cached user permission set is valid for.
CACHE_EXPIRY = 5
# How frequently to clear the entire permission cache
CACHE_REAP_TIME = 60
def __init__(self):
self.permission_cache = {}
self.last_reap = time()
# Public API
def grant_permission(self, username, action):
"""Grant the user with the given name permission to perform to specified
action."""
if action.isupper() and action not in self.get_actions():
raise TracError(_('%(name)s is not a valid action.', name=action))
self.store.grant_permission(username, action)
def revoke_permission(self, username, action):
"""Revokes the permission of the specified user to perform an action."""
self.store.revoke_permission(username, action)
def get_actions_dict(self):
"""Get all actions from permission requestors as a `dict`.
The keys are the action names. The values are the additional actions
granted by each action. For simple actions, this is an empty list.
For meta actions, this is the list of actions covered by the action.
"""
actions = {}
for requestor in self.requestors:
for action in requestor.get_permission_actions() or []:
if isinstance(action, tuple):
actions.setdefault(action[0], []).extend(action[1])
else:
actions.setdefault(action, [])
return actions
def get_actions(self, skip=None):
"""Get a list of all actions defined by permission requestors."""
actions = set()
for requestor in self.requestors:
if requestor is skip:
continue
for action in requestor.get_permission_actions() or []:
if isinstance(action, tuple):
actions.add(action[0])
else:
actions.add(action)
return list(actions)
def get_user_permissions(self, username=None):
"""Return the permissions of the specified user.
The return value is a dictionary containing all the actions granted to
the user mapped to `True`. If an action is missing as a key, or has
`False` as a value, permission is denied."""
if not username:
# Return all permissions available in the system
return dict.fromkeys(self.get_actions(), True)
# Return all permissions that the given user has
actions = self.get_actions_dict()
permissions = {}
def expand_meta(action):
if action not in permissions:
permissions[action] = True
for a in actions.get(action, ()):
expand_meta(a)
for perm in self.store.get_user_permissions(username) or []:
expand_meta(perm)
return permissions
def get_all_permissions(self):
"""Return all permissions for all users.
The permissions are returned as a list of (subject, action)
formatted tuples."""
return self.store.get_all_permissions() or []
def get_users_with_permission(self, permission):
"""Return all users that have the specified permission.
Users are returned as a list of user names.
"""
now = time()
if now - self.last_reap > self.CACHE_REAP_TIME:
self.permission_cache = {}
self.last_reap = now
timestamp, permissions = self.permission_cache.get(permission,
(0, None))
if now - timestamp <= self.CACHE_EXPIRY:
return permissions
parent_map = {}
for parent, children in self.get_actions_dict().iteritems():
for child in children:
parent_map.setdefault(child, set()).add(parent)
satisfying_perms = set()
def append_with_parents(action):
if action not in satisfying_perms:
satisfying_perms.add(action)
for action in parent_map.get(action, ()):
append_with_parents(action)
append_with_parents(permission)
perms = self.store.get_users_with_permissions(satisfying_perms) or []
self.permission_cache[permission] = (now, perms)
return perms
def expand_actions(self, actions):
"""Helper method for expanding all meta actions."""
all_actions = self.get_actions_dict()
expanded_actions = set()
def expand_action(action):
if action not in expanded_actions:
expanded_actions.add(action)
for a in all_actions.get(action, ()):
expand_action(a)
for a in actions:
expand_action(a)
return expanded_actions
def check_permission(self, action, username=None, resource=None, perm=None):
"""Return True if permission to perform action for the given resource
is allowed."""
if username is None:
username = 'anonymous'
if resource:
if resource.realm is None:
resource = None
elif resource.neighborhood is not None:
try:
compmgr = manager_for_neighborhood(self.env,
resource.neighborhood)
except ResourceNotFound:
#FIXME: raise ?
return False
else:
return PermissionSystem(compmgr).check_permission(
action, username, resource, perm)
for policy in self.policies:
decision = policy.check_permission(action, username, resource,
perm)
if decision is not None:
if not decision:
self.log.debug("%s denies %s performing %s on %r",
policy.__class__.__name__, username,
action, resource)
return decision
self.log.debug("No policy allowed %s performing %s on %r",
username, action, resource)
return False
# IPermissionRequestor methods
def get_permission_actions(self):
"""Implement the global `TRAC_ADMIN` meta permission.
Implements also the `EMAIL_VIEW` permission which allows for
showing email addresses even if `[trac] show_email_addresses`
is `false`.
"""
actions = self.get_actions(skip=self)
actions.append('EMAIL_VIEW')
return [('TRAC_ADMIN', actions), 'EMAIL_VIEW']
class PermissionCache(object):
"""Cache that maintains the permissions of a single user.
Permissions are usually checked using the following syntax:
'WIKI_MODIFY' in perm
One can also apply more fine grained permission checks and
specify a specific resource for which the permission should be available:
'WIKI_MODIFY' in perm('wiki', 'WikiStart')
If there's already a `page` object available, the check is simply:
'WIKI_MODIFY' in perm(page.resource)
If instead of a check, one wants to assert that a given permission is
available, the following form should be used:
perm.require('WIKI_MODIFY')
or
perm('wiki', 'WikiStart').require('WIKI_MODIFY')
or
perm(page.resource).require('WIKI_MODIFY')
When using `require`, a `PermissionError` exception is raised if the
permission is missing.
"""
__slots__ = ('env', 'username', '_resource', '_cache')
def __init__(self, env, username=None, resource=None, cache=None,
groups=None):
if resource and resource.neighborhood is not None:
env = manager_for_neighborhood(env, resource.neighborhood)
resource = Neighborhood(None, None).child(resource)
self.env = env
self.username = username or 'anonymous'
self._resource = resource
if cache is None:
cache = {}
self._cache = cache
def _normalize_resource(self, realm_or_resource, id, version):
if realm_or_resource:
return Resource(realm_or_resource, id, version)
else:
return self._resource
def __call__(self, realm_or_resource, id=False, version=False):
"""Convenience function for using thus:
'WIKI_VIEW' in perm(context)
or
'WIKI_VIEW' in perm(realm, id, version)
or
'WIKI_VIEW' in perm(resource)
"""
resource = Resource(realm_or_resource, id, version)
if resource and self._resource and resource == self._resource:
return self
else:
return PermissionCache(self.env, self.username, resource,
self._cache)
def has_permission(self, action, realm_or_resource=None, id=False,
version=False):
resource = self._normalize_resource(realm_or_resource, id, version)
return self._has_permission(action, resource)
def _has_permission(self, action, resource):
key = (self.username, hash(resource), action)
cached = self._cache.get(key)
if cached:
cache_decision, cache_resource = cached
if resource == cache_resource:
return cache_decision
perm = self
permsys = PermissionSystem(self.env)
if resource is not self._resource:
if resource.neighborhood is not None:
perm = PermissionCache(self.env, self.username, resource, {})
permsys = PermissionSystem(manager_for_neighborhood(
self.env, resource.neighborhood))
else:
perm = PermissionCache(self.env, self.username, resource,
self._cache)
decision = permsys.check_permission(action, perm.username, resource,
perm)
self._cache[key] = (decision, resource)
return decision
__contains__ = has_permission
def require(self, action, realm_or_resource=None, id=False, version=False):
resource = self._normalize_resource(realm_or_resource, id, version)
if not self._has_permission(action, resource):
raise PermissionError(action, resource, self.env)
assert_permission = require
def permissions(self):
"""Deprecated (but still used by the HDF compatibility layer)"""
self.env.log.warning("perm.permissions() is deprecated and "
"is only present for HDF compatibility")
perm = PermissionSystem(self.env)
actions = perm.get_user_permissions(self.username)
return [action for action in actions if action in self]
class PermissionAdmin(Component):
"""trac-admin command provider for permission system administration."""
implements(IAdminCommandProvider)
# IAdminCommandProvider methods
def get_admin_commands(self):
yield ('permission list', '[user]',
'List permission rules',
self._complete_list, self._do_list)
yield ('permission add', '<user> <action> [action] [...]',
'Add a new permission rule',
self._complete_add, self._do_add)
yield ('permission remove', '<user> <action> [action] [...]',
'Remove a permission rule',
self._complete_remove, self._do_remove)
yield ('permission export', '[file]',
'Export permission rules to a file or stdout as CSV',
self._complete_import_export, self._do_export)
yield ('permission import', '[file]',
'Import permission rules from a file or stdin as CSV',
self._complete_import_export, self._do_import)
def get_user_list(self):
return set(user for (user, action) in
PermissionSystem(self.env).get_all_permissions())
def get_user_perms(self, user):
return [action for (subject, action) in
PermissionSystem(self.env).get_all_permissions()
if subject == user]
def _complete_list(self, args):
if len(args) == 1:
return self.get_user_list()
def _complete_add(self, args):
if len(args) == 1:
return self.get_user_list()
elif len(args) >= 2:
return (set(PermissionSystem(self.env).get_actions())
- set(self.get_user_perms(args[0])) - set(args[1:-1]))
def _complete_remove(self, args):
if len(args) == 1:
return self.get_user_list()
elif len(args) >= 2:
return set(self.get_user_perms(args[0])) - set(args[1:-1])
def _complete_import_export(self, args):
if len(args) == 1:
return get_dir_list(args[-1])
def _do_list(self, user=None):
permsys = PermissionSystem(self.env)
if user:
rows = []
perms = permsys.get_user_permissions(user)
for action in perms:
if perms[action]:
rows.append((user, action))
else:
rows = permsys.get_all_permissions()
rows.sort()
print_table(rows, [_('User'), _('Action')])
print
printout(_("Available actions:"))
actions = permsys.get_actions()
actions.sort()
text = ', '.join(actions)
printout(wrap(text, initial_indent=' ', subsequent_indent=' ',
linesep='\n'))
print
def _do_add(self, user, *actions):
permsys = PermissionSystem(self.env)
if user.isupper():
raise AdminCommandError(_('All upper-cased tokens are reserved '
'for permission names'))
for action in actions:
try:
permsys.grant_permission(user, action)
except self.env.db_exc.IntegrityError:
printout(_("The user %(user)s already has permission "
"%(action)s.", user=user, action=action))
def _do_remove(self, user, *actions):
permsys = PermissionSystem(self.env)
rows = permsys.get_all_permissions()
for action in actions:
found = False
for u, a in rows:
if user in (u, '*') and action in (a, '*'):
permsys.revoke_permission(u, a)
found = True
if not found:
raise AdminCommandError(
_("Cannot remove permission %(action)s for user %(user)s.",
action=action, user=user))
def _do_export(self, filename=None):
try:
with file_or_std(filename, 'wb') as f:
encoding = stream_encoding(f)
linesep = os.linesep if filename else '\n'
writer = csv.writer(f, lineterminator=linesep)
users = self.get_user_list()
for user in sorted(users):
actions = sorted(self.get_user_perms(user))
writer.writerow([s.encode(encoding, 'replace')
for s in [user] + actions])
except IOError, e:
raise AdminCommandError(
_("Cannot export to %(filename)s: %(error)s",
filename=path_to_unicode(filename or 'stdout'),
error=e.strerror))
def _do_import(self, filename=None):
permsys = PermissionSystem(self.env)
try:
with file_or_std(filename, 'rb') as f:
encoding = stream_encoding(f)
linesep = os.linesep if filename else '\n'
reader = csv.reader(f, lineterminator=linesep)
for row in reader:
if len(row) < 2:
raise AdminCommandError(
_("Invalid row %(line)d. Expected <user>, "
"<action>, [action], [...]",
line=reader.line_num))
user = to_unicode(row[0], encoding)
actions = [to_unicode(action, encoding)
for action in row[1:]]
if user.isupper():
raise AdminCommandError(
_("Invalid user %(user)s on line %(line)d: All "
"upper-cased tokens are reserved for permission "
"names.", user=user, line=reader.line_num))
old_actions = self.get_user_perms(user)
for action in set(actions) - set(old_actions):
permsys.grant_permission(user, action)
except csv.Error, e:
raise AdminCommandError(
_("Cannot import from %(filename)s line %(line)d: %(error)s ",
filename=path_to_unicode(filename or 'stdin'),
line=reader.line_num, error=e))
except IOError, e:
raise AdminCommandError(
_("Cannot import from %(filename)s: %(error)s",
filename=path_to_unicode(filename or 'stdin'),
error=e.strerror))