晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
| DIR:/proc/thread-self/root/usr/lib/python3.9/site-packages/firewall/server/ |
| Current File : //proc/thread-self/root/usr/lib/python3.9/site-packages/firewall/server/decorators.py |
# -*- coding: utf-8 -*-
#
# Copyright (C) 2012-2016 Red Hat, Inc.
#
# Authors:
# Thomas Woerner <twoerner@redhat.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""This module contains decorators for use with and without D-Bus"""
__all__ = ["handle_exceptions", "dbus_handle_exceptions", "dbus_service_method"]
import dbus
import dbus.service
import traceback
import functools
import inspect
from dbus.exceptions import DBusException
from firewall.errors import FirewallError
from firewall import errors
from firewall.core.logger import log
from firewall.server.dbus import FirewallDBusException, NotAuthorizedException
from firewall.dbus_utils import uid_of_sender
############################################################################
#
# Exception handler decorators
#
############################################################################
def handle_exceptions(func):
"""Decorator to handle exceptions and log them. Used if not conneced
to D-Bus.
"""
@functools.wraps(func)
def _impl(*args, **kwargs):
try:
return func(*args, **kwargs)
except FirewallError as error:
log.debug1(traceback.format_exc())
log.error(error)
except Exception: # pylint: disable=W0703
log.exception()
return _impl
def dbus_handle_exceptions(func):
"""Decorator to handle exceptions, log and report them into D-Bus
:Raises DBusException: on a firewall error code problems.
"""
@functools.wraps(func)
def _impl(*args, **kwargs):
try:
return func(*args, **kwargs)
except FirewallError as error:
code = FirewallError.get_code(str(error))
if code in [ errors.ALREADY_ENABLED, errors.NOT_ENABLED,
errors.ZONE_ALREADY_SET, errors.ALREADY_SET ]:
log.warning(str(error))
else:
log.debug1(traceback.format_exc())
log.error(str(error))
raise FirewallDBusException(str(error))
except DBusException as ex:
# only log DBusExceptions once
raise ex
except Exception as ex:
log.exception()
raise FirewallDBusException(str(ex))
# HACK: functools.wraps() does not copy the function signature and
# dbus-python doesn't support varargs. As such we need to copy the
# signature from the function to the newly decorated function otherwise the
# decorators in dbus-python will manipulate the arg stack and fail
# miserably.
#
# Note: This can be removed if we ever stop using dbus-python.
#
# Ref: https://gitlab.freedesktop.org/dbus/dbus-python/-/issues/12
#
_impl.__signature__ = inspect.signature(func)
return _impl
def dbus_service_method(*args, **kwargs):
"""Add sender argument for D-Bus"""
kwargs.setdefault("sender_keyword", "sender")
return dbus.service.method(*args, **kwargs)
class dbus_service_method_deprecated:
"""Decorator that maintains a list of deprecated methods in dbus
interfaces.
"""
deprecated = {}
def __init__(self, interface=None):
self.interface = interface
if self.interface:
if self.interface not in self.deprecated:
self.deprecated[self.interface] = set()
def __call__(self, func):
if self.interface:
self.deprecated[self.interface].add(func.__name__)
@functools.wraps(func)
def _impl(*args, **kwargs):
return func(*args, **kwargs)
return _impl
class dbus_service_signal_deprecated(dbus_service_method_deprecated):
"""Decorator that maintains a list of deprecated signals in dbus
interfaces.
"""
pass
class dbus_polkit_require_auth:
"""Decorator factory that checks if the interface/method can be used by the
sender/user. Assumes wrapped function is a method inside a class derived
from DbusServiceObject.
"""
_polkit_name = "org.freedesktop.PolicyKit1"
_polkit_path = "/org/freedesktop/PolicyKit1/Authority"
_polkit_interface = "org.freedesktop.PolicyKit1.Authority"
_bus = None
_bus_signal_receiver = None
_interface_polkit = None
def __init__(self, polkit_auth_required):
self._polkit_auth_required = polkit_auth_required
@classmethod
def _polkit_name_owner_changed(cls, name, old_owner, new_owner):
cls._bus.remove_signal_receiver(cls._bus_signal_receiver)
cls._bus_signal_receiver = None
cls._interface_polkit = None
def __call__(self, func):
@functools.wraps(func)
def _impl(*args, **kwargs):
if not type(self)._bus:
type(self)._bus = dbus.SystemBus()
if not type(self)._bus_signal_receiver:
type(self)._bus_signal_receiver = type(self)._bus.add_signal_receiver(
handler_function=type(self)._polkit_name_owner_changed,
signal_name="NameOwnerChanged",
dbus_interface="org.freedesktop.DBus",
arg0=self._polkit_name)
if not type(self)._interface_polkit:
try:
type(self)._interface_polkit = dbus.Interface(type(self)._bus.get_object(
type(self)._polkit_name,
type(self)._polkit_path),
type(self)._polkit_interface)
except dbus.DBusException:
# polkit must not be available
pass
action_id = self._polkit_auth_required
if not action_id:
raise dbus.DBusException("Not Authorized: No action_id specified.")
sender = kwargs.get("sender")
if sender:
# use polkit if it's available
if type(self)._interface_polkit:
(result, _, _) = type(self)._interface_polkit.CheckAuthorization(
("system-bus-name", {"name": sender}),
action_id, {}, 1, "")
if not result:
raise NotAuthorizedException(action_id, "polkit")
# fallback to checking UID
else:
uid = uid_of_sender(type(self)._bus, sender)
if uid != 0:
raise NotAuthorizedException(action_id, "uid")
return func(*args, **kwargs)
_impl._polkit_auth_required = self._polkit_auth_required
return _impl
|