403Webshell
Server IP : 82.208.35.60  /  Your IP : 216.73.216.168
Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31
System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64
User : studiokobylisy_cz ( 1008)
PHP Version : 7.3.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /usr/local/lib/python3.9/site-packages/rdiffbackup/meta/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/local/lib/python3.9/site-packages/rdiffbackup/meta/acl_posix.py
# Copyright 2003 Ben Escoto
#
# This file is part of rdiff-backup.
#
# rdiff-backup is free software; you can redistribute it and/or modify
# 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.
#
# rdiff-backup 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 rdiff-backup; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA
"""
Store and retrieve access control lists

Not all file systems will have ACLs, but if they do, store
this information in separate files in the rdiff-backup-data directory,
called access_control_lists.<time>.snapshot.
"""

import errno
import re
import os
try:
    import posix1e
except ImportError:
    pass

from rdiff_backup import C, Globals, log, rorpiter
from rdiffbackup import meta
from rdiffbackup.utils import usrgrp
from rdiffbackup.locations.map import owners as map_owners
from . import ea

# When an ACL gets dropped, put name in dropped_acl_names.  This is
# only used so that only the first dropped ACL for any given name
# triggers a warning.
dropped_acl_names = {}


class AccessControlLists:
    """
    Hold a file's access control list information

    Since posix1e.ACL objects cannot be pickled, and because they lack
    user/group name information, store everything in self.entry_list
    and self.default_entry_list.
    """
    # permissions regular expression
    _perm_re = re.compile(r"[r-][w-][x-]")

    def __init__(self, index, acl_text=None):
        """Initialize object with index and possibly acl_text"""
        self.index = index
        if acl_text:
            self._set_from_text(acl_text)
        else:
            self.entry_list = self.default_entry_list = None

    def __str__(self):
        """Return text version of acls"""
        if not self.entry_list:
            return ""
        slist = list(map(self._entrytuple_to_text, self.entry_list))
        if self.default_entry_list:
            slist.extend([
                "default:" + self._entrytuple_to_text(e)
                for e in self.default_entry_list
            ])
        return "\n".join(slist)

    def __eq__(self, acl):
        """Compare self and other access control list

        Basic acl permissions are considered equal to an empty acl
        object.

        """
        assert isinstance(acl, AccessControlLists), (
            "ACLs can only be compared with ACLs not {otype}.".format(
                otype=type(acl)))
        if self.is_basic():
            return acl.is_basic()
        return (self._cmp_entry_list(self.entry_list, acl.entry_list)
                and self._cmp_entry_list(self.default_entry_list,
                                         acl.default_entry_list))

    def __ne__(self, acl):
        return not self.__eq__(acl)

    def get_indexpath(self):
        return self.index and b'/'.join(self.index) or b'.'

    def is_basic(self):
        """True if acl can be reduced to standard unix permissions

        Assume that if they are only three entries, they correspond to
        user, group, and other, and thus don't use any special ACL
        features.

        """
        if not self.entry_list and not self.default_entry_list:
            return True
        assert len(self.entry_list) >= 3, (
            "Too few ACL entries '{ent}', must be 3 or more.".format(
                ent=self.entry_list))
        return len(self.entry_list) == 3 and not self.default_entry_list

    def read_from_rp(self, rp):
        """Set self.ACL from an rpath, or None if not supported"""
        self.entry_list, self.default_entry_list = get_acl_lists_from_rp(rp)

    def write_to_rp(self, rp, map_names=1):
        """Write current access control list to RPath rp"""
        assert rp.conn is Globals.local_connection, (
            "Function works locally not over '{co}'.".format(co=rp.conn))
        set_rp_acl(rp, self.entry_list, self.default_entry_list, map_names)

    def _set_from_text(self, text):
        """Set self.entry_list and self.default_entry_list from text"""
        self.entry_list, self.default_entry_list = [], []
        for line in text.split('\n'):
            comment_pos = line.find('#')
            if comment_pos >= 0:
                line = line[:comment_pos]
            line = line.strip()
            if not line:
                continue

            if line.startswith('default:'):
                entrytuple = self._text_to_entrytuple(line[8:])
                self.default_entry_list.append(entrytuple)
            else:
                self.entry_list.append(self._text_to_entrytuple(line))

    def _entrytuple_to_text(self, entrytuple):
        """Return text version of entrytuple, as in getfacl, or
        raise ValueError exception if input is wrong."""
        tagchar, name_pair, perms = entrytuple
        if tagchar == "U":
            text = 'user::'
        elif tagchar == "u":
            uid, uname = name_pair
            text = 'user:%s:' % (uname or uid)
        elif tagchar == "G":
            text = 'group::'
        elif tagchar == "g":
            gid, gname = name_pair
            text = 'group:%s:' % (gname or gid)
        elif tagchar == "M":
            text = 'mask::'
        elif tagchar == "O":
            text = 'other::'
        else:
            raise ValueError(
                "The tag {tag} must be a character from [UuGgMO].".format(
                    tag=tagchar))

        permstring = '%s%s%s' % (perms & 4 and 'r' or '-', perms & 2 and 'w'
                                 or '-', perms & 1 and 'x' or '-')
        return text + permstring

    def _text_to_entrytuple(self, text):
        """Return entrytuple given text like 'user:foo:r--'

        See the _acl_to_list function for entrytuple documentation.

        """
        typetext, qualifier, permtext = text.split(':')
        if qualifier:
            try:
                uid = int(qualifier)
            except ValueError:
                namepair = (None, qualifier)
            else:
                namepair = (uid, None)

            if typetext == 'user':
                typechar = "u"
            elif typetext == 'group':
                typechar = "g"
            else:
                raise ValueError("Type {atype} of ACL must be one of user or "
                                 "group if qualifier {qual} is present.".format(
                                     atype=typetext, qual=qualifier))
        else:
            namepair = None
            if typetext == 'user':
                typechar = "U"
            elif typetext == 'group':
                typechar = "G"
            elif typetext == 'mask':
                typechar = "M"
            elif typetext == 'other':
                typechar = "O"
            else:
                raise ValueError("Type {atype} of ACL must be one of user, group, "
                                 "mask or other if qualifier is absent.".format(
                                     atype=typetext))

        if not self._perm_re.fullmatch(permtext):
            raise ValueError(
                "Permission {perm} in ACLs must be a three "
                "characters string made of 'rwx' or dashes.".format(
                    perm=permtext))
        read, write, execute = permtext
        perms = ((read == 'r') << 2 | (write == 'w') << 1 | (execute == 'x'))
        return (typechar, namepair, perms)

    def _cmp_entry_list(self, l1, l2):
        """True if the lists have same entries.  Assume preordered"""
        if not l1:
            return not l2
        if not l2 or len(l1) != len(l2):
            return 0
        for i in range(len(l1)):
            type1, namepair1, perms1 = l1[i]
            type2, namepair2, perms2 = l2[i]
            if type1 != type2 or perms1 != perms2:
                return 0
            if namepair1 == namepair2:
                continue
            if not namepair1 or not namepair2:
                return 0
            (id1, name1), (id2, name2) = namepair1, namepair2
            if name1:
                if name1 == name2:
                    continue
                else:
                    return 0
            if name2:
                return 0
            if id1 != id2:
                return 0
        return 1

    def _eq_verbose(self, acl):
        """Returns same as __eq__ but print explanation if not equal.
        TEST: This function is used solely as part of the test suite."""
        if not self.cmp_entry_list(self.entry_list, acl.entry_list):
            print("ACL entries for {rp} compare differently".format(rp=self))
            return 0
        if not self.cmp_entry_list(self.default_entry_list,
                                   acl.default_entry_list):
            print("Default ACL entries for {rp} do not compare".format(rp=self))
            return 0
        return 1


class ACLExtractor(ea.EAExtractor):
    """
    Iterate AccessControlLists objects from the ACL information file

    Except for the _record_to_object method, we can reuse everything in
    the EAExtractor class because the file formats are so similar.
    """

    @staticmethod
    def _record_to_object(record):
        """Convert text record to an AccessControlLists object"""
        newline_pos = record.find(b'\n')
        first_line = record[:newline_pos]
        if not first_line.startswith(b'# file: '):
            raise meta.ParsingError("Bad record beginning: %r" % first_line)
        filename = first_line[8:]
        if filename == b'.':
            index = ()
        else:
            unquoted_filename = C.acl_unquote(filename)
            index = tuple(unquoted_filename.split(b'/'))
        return get_meta_object(index, os.fsdecode(record[newline_pos:]))


class AccessControlListFile(meta.FlatFile):
    """Store/retrieve ACLs from extended attributes file"""
    _name = "acl"
    _description = "POSIX ACLs"
    _prefix = b'access_control_lists'
    _extractor = ACLExtractor
    _is_main = False

    @classmethod
    def is_active(cls):
        return Globals.acls_active

    @staticmethod
    def _object_to_record(acl):
        """Convert an AccessControlLists object into a text record"""
        return b'# file: %b\n%b\n' % (C.acl_quote(acl.get_indexpath()),
                                      os.fsencode(str(acl)))

    @staticmethod
    def join_iter(rorp_iter, acl_iter):
        """Update a rorp iter by adding the information from acl_iter"""
        for rorp, acl in rorpiter.CollateIterators(rorp_iter, acl_iter):
            assert rorp, ("Missing rorp for ACL index '{aidx}'.".format(
                aidx=acl.index))
            if not acl:
                acl = get_meta_object(rorp.index)
            rorp.set_acl(acl)
            yield rorp

    def write_object(self, rorp, force_empty=False):
        """
        write RORPath' metadata to file

        The force_empty parameter is for test purposes only to even write
        empty metadata
        """
        acl_meta = rorp.get_acl()
        if acl_meta.is_basic() and not force_empty:
            return None
        else:
            return super().write_object(acl_meta)


# @API(set_rp_acl, 200, 200)  # unused
def set_rp_acl(rp, entry_list=None, default_entry_list=None, map_names=1):
    """Set given rp with ACL that acl_text defines.  rp should be local"""
    assert rp.conn is Globals.local_connection, (
        "Set ACLs of path should only be done locally not over {conn}.".format(
            conn=rp.conn))
    if entry_list:
        acl = _list_to_acl(entry_list, map_names)
    else:
        acl = posix1e.ACL()

    try:
        acl.applyto(rp.path)
    except OSError as exc:
        log.Log(
            "Unable to set ACL on path {pa} due to exception '{ex}'".format(
                pa=rp, ex=exc), log.INFO)
        return

    if rp.isdir():
        if default_entry_list:
            def_acl = _list_to_acl(default_entry_list, map_names)
        else:
            def_acl = posix1e.ACL()
        def_acl.applyto(rp.path, posix1e.ACL_TYPE_DEFAULT)


# @API(get_acl_lists_from_rp, 200, 200)  # unused
def get_acl_lists_from_rp(rp):
    """Returns (acl_list, def_acl_list) from an rpath.  Call locally"""
    assert rp.conn is Globals.local_connection, (
        "Get ACLs of path should only be done locally not over {conn}.".format(
            conn=rp.conn))
    try:
        acl = posix1e.ACL(file=rp.path)
    except (FileNotFoundError, UnicodeEncodeError) as exc:
        log.Log(
            "Unable to read ACL from path {pa} due to exception '{ex}'".format(
                pa=rp, ex=exc), log.NOTE)
        acl = None
    except OSError as exc:
        if exc.errno == errno.EOPNOTSUPP:
            acl = None
        else:
            raise
    if rp.isdir():
        try:
            def_acl = posix1e.ACL(filedef=os.fsdecode(rp.path))
        except (FileNotFoundError, UnicodeEncodeError) as exc:
            log.Log("Unable to read default ACL from path {pa} due to "
                    "exception '{ex}'".format(pa=rp, ex=exc), log.NOTE)
            def_acl = None
        except OSError as exc:
            if exc.errno == errno.EOPNOTSUPP:
                def_acl = None
            else:
                raise
    else:
        def_acl = None
    return (acl and _acl_to_list(acl), def_acl and _acl_to_list(def_acl))


def _acl_to_list(acl):
    """Return list representation of posix1e.ACL object

    ACL objects cannot be pickled, so this representation keeps
    the structure while adding that option.  Also we insert the
    username along with the id, because that information will be
    lost when moved to another system.

    The result will be a list of tuples.  Each tuple will have the
    form (acltype, (uid or gid, uname or gname) or None, permissions
    as an int).  acltype is encoded as a single character:

    U - ACL_USER_OBJ
    u - ACL_USER
    G - ACL_GROUP_OBJ
    g - ACL_GROUP
    M - ACL_MASK
    O - ACL_OTHER

    """

    def acltag_to_char(tag):
        if tag == posix1e.ACL_USER_OBJ:
            return "U"
        elif tag == posix1e.ACL_USER:
            return "u"
        elif tag == posix1e.ACL_GROUP_OBJ:
            return "G"
        elif tag == posix1e.ACL_GROUP:
            return "g"
        elif tag == posix1e.ACL_MASK:
            return "M"
        elif tag == posix1e.ACL_OTHER:
            return "O"
        else:
            raise ValueError("Unknown ACL tag {atag}.".format(atag=tag))

    def entry_to_tuple(entry):
        tagchar = acltag_to_char(entry.tag_type)
        if tagchar == "u":
            uid = entry.qualifier
            owner_pair = (uid, usrgrp.uid2uname(uid))
        elif tagchar == "g":
            gid = entry.qualifier
            owner_pair = (gid, usrgrp.gid2gname(gid))
        else:
            owner_pair = None

        perms = (entry.permset.read << 2 | entry.permset.write << 1
                 | entry.permset.execute)
        return (tagchar, owner_pair, perms)

    return list(map(entry_to_tuple, acl))


def _list_to_acl(entry_list, map_names=1):
    """Return posix1e.ACL object from list representation

    If map_names is true, use user_group to update the names for the
    current system, and drop if not available.  Otherwise just use the
    same id.

    See the _acl_to_list function for the format of an acllist.

    """

    def char_to_acltag(typechar):
        """Given typechar, query posix1e module for appropriate constant"""
        if typechar == "U":
            return posix1e.ACL_USER_OBJ
        elif typechar == "u":
            return posix1e.ACL_USER
        elif typechar == "G":
            return posix1e.ACL_GROUP_OBJ
        elif typechar == "g":
            return posix1e.ACL_GROUP
        elif typechar == "M":
            return posix1e.ACL_MASK
        elif typechar == "O":
            return posix1e.ACL_OTHER
        else:
            raise ValueError(
                "Unknown ACL character {achar} (must be one of [UuGgMO]).".format(
                    achar=typechar))

    def warn_drop(name):
        """Warn about acl with name getting dropped"""
        global dropped_acl_names
        if Globals.never_drop_acls:
            log.Log.FatalError("--never-drop-acls specified but cannot map "
                               "ACL name {an}".format(an=name))
        if name in dropped_acl_names:
            return
        log.Log("ACL name {an} not found on system, dropping entry. "
                "Further ACL entries dropped with this name will not "
                "trigger further warnings".format(an=name), log.WARNING)
        dropped_acl_names[name] = name

    acl = posix1e.ACL()
    for typechar, owner_pair, perms in entry_list:
        id = None
        if owner_pair:
            if map_names:
                if typechar == "u":
                    id = map_owners.map_acl_user(*owner_pair)
                elif typechar == "g":
                    id = map_owners.map_acl_group(*owner_pair)
                else:
                    raise ValueError(
                        "Type '{tc}' must be one of 'u' or 'g'.".format(
                            tc=typechar))
                if id is None:
                    warn_drop(owner_pair[1])
                    continue
            else:
                assert owner_pair[0] is not None, (
                    "First owner can't be None with type={tc}, "
                    "owner pair={own}, perms={perms}".format(
                        tc=typechar, own=owner_pair, perms=perms))
                id = owner_pair[0]

        entry = posix1e.Entry(acl)
        entry.tag_type = char_to_acltag(typechar)
        if id is not None:
            entry.qualifier = id
        entry.permset.read = perms >> 2
        entry.permset.write = perms >> 1 & 1
        entry.permset.execute = perms & 1
    return acl


def get_meta(rp):
    """
    Get acls of given rpath rp.
    """
    assert rp.conn is Globals.local_connection, (
        "Function works locally not over '{co}'.".format(co=rp.conn))
    acl = get_meta_object(rp.index)
    if not rp.issym():
        acl.read_from_rp(rp)
    return acl


def get_blank_meta(index):
    """
    Get a blank AccessControlLists object
    """
    return get_meta_object(index)


def get_meta_object(*params):
    """
    Returns a Metadata object as corresponds to the current type

    Necessary to guarantee compatibility between rdiff-backup 2.0 and 2.1+
    """
    if Globals.get_api_version() < 201:  # compat200
        from rdiff_backup import eas_acls
        return eas_acls.AccessControlLists(*params)
    else:
        return AccessControlLists(*params)


def get_plugin_class():
    return AccessControlListFile

Youez - 2016 - github.com/yon3zu
LinuXploit