~ K A L I ~
UNAME : Linux web65.extendcp.co.uk 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64SERVER IP : 10.0.187.65 -________-
CLIENT IP : 216.73.216.230 MINI SHELL D ZAB '
Current File : //lib64/python3.6/site-packages/rdiff_backup/FilenameMapping.py |
# DEPRECATED compat200
# Copyright 2002, 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
"""Coordinate corresponding files with different names
For instance, some source filenames may contain characters not allowed
on the mirror end. These files must be called something different on
the mirror end, so we escape the offending characters with semicolons.
One problem/complication is that all this escaping may put files over
the 256 or whatever limit on the length of file names. (We just don't
handle that error.)
"""
import os
import re
from rdiff_backup import Globals, log, rpath
from rdiffbackup.utils import safestr
# If true, enable character quoting, and set characters making
# regex-style range.
chars_to_quote = None
# These compiled regular expressions are used in quoting and unquoting
chars_to_quote_regexp = None
unquoting_regexp = None
# Use given char to quote. Default is set in Globals.
quoting_char = None
class QuotingException(Exception):
pass
class QuotedRPath(rpath.RPath):
"""RPath where the filename is quoted version of index
We use QuotedRPaths so we don't need to remember to quote RPaths
derived from this one (via append or new_index). Note that only
the index is quoted, not the base.
"""
def __init__(self, connection, base, index=(), data=None):
"""Make new QuotedRPath"""
# we avoid handing over "None" as data so that the parent
# class doesn't try to gather data of an unquoted filename
# Caution: this works only because RPath checks on "None"
# and its parent RORPath on True/False.
super().__init__(connection, base, index, data or False)
self.quoted_index = tuple(map(quote, self.index))
# we need to recalculate path and data on the basis of
# quoted_index (parent class does it on the basis of index)
if base is not None:
self.path = self.path_join(self.base, *self.quoted_index)
if data is None:
self.setdata()
def __setstate__(self, rpath_state):
"""Reproduce QuotedRPath from __getstate__ output"""
conn_number, self.base, self.index, self.data = rpath_state
self.conn = Globals.connection_dict[conn_number]
self.quoted_index = tuple(map(quote, self.index))
self.path = self.path_join(self.base, *self.quoted_index)
def listdir(self):
"""Return list of unquoted filenames in current directory
We want them unquoted so that the results can be sorted
correctly and append()ed to the current QuotedRPath.
"""
return list(map(unquote, self.conn.os.listdir(self.path)))
def isincfile(self):
"""Return true if path indicates increment, sets various variables"""
if not self.index: # consider the last component as quoted
dirname, basename = self.dirsplit()
temp_rp = rpath.RPath(self.conn, dirname, (basename, ))
result = temp_rp.isincfile()
if result:
self.inc_basestr = unquote(temp_rp.inc_basestr)
self.inc_timestr = unquote(temp_rp.inc_timestr)
else:
result = rpath.RPath.isincfile(self)
return result
def dirsplit(self):
"""
Same as rpath.dirsplit but unquotes the basename
"""
dirname, basename = super().dirsplit()
return (dirname, unquote(basename))
def __fspath__(self):
"""
Just a getter to return the path unquoted
Fulfills the os.PathLike interface
"""
return unquote(self.path)
def set_init_quote_vals():
"""Set quoting value from Globals on all conns"""
for conn in Globals.connections:
conn.FilenameMapping.set_init_quote_vals_local()
# @API(set_init_quote_vals_local, 200, 200)
def set_init_quote_vals_local():
"""Set value on local connection, initialize regexps"""
global chars_to_quote, quoting_char
chars_to_quote = Globals.chars_to_quote
if len(Globals.quoting_char) != 1:
log.Log.FatalError("Expected single character for quoting char, "
"got '{qc}' instead.".format(
qc=safestr.to_str(Globals.quoting_char)))
quoting_char = Globals.quoting_char
_init_quoting_regexps()
def quote(path):
"""Return quoted version of given path
Any characters quoted will be replaced by the quoting char and
the ascii number of the character. For instance, "10:11:12"
would go to "10;05811;05812" if ":" were quoted and ";" were
the quoting character.
"""
QuotedPath = chars_to_quote_regexp.sub(_quote_single, path)
if not Globals.escape_dos_devices and not Globals.escape_trailing_spaces:
return QuotedPath
# Escape a trailing space or period (invalid in names on FAT32 under DOS,
# Windows and modern Linux)
if Globals.escape_trailing_spaces:
if len(QuotedPath) and (QuotedPath[-1] == ord(' ')
or QuotedPath[-1] == ord('.')):
QuotedPath = QuotedPath[:-1] + \
b"%b%03d" % (quoting_char, QuotedPath[-1])
if not Globals.escape_dos_devices:
return QuotedPath
# Escape first char of any special DOS device files even if filename has an
# extension. Special names are: aux, prn, con, nul, com0-9, and lpt1-9.
if not re.search(br"^aux(\..*)*$|^prn(\..*)*$|^con(\..*)*$|^nul(\..*)*$|"
br"^com[0-9](\..*)*$|^lpt[1-9]{1}(\..*)*$", QuotedPath,
re.I):
return QuotedPath
return b"%b%03d" % (quoting_char, QuotedPath[0]) + QuotedPath[1:]
def unquote(path):
"""Return original version of quoted filename"""
return unquoting_regexp.sub(_unquote_single, path)
def get_quotedrpath(rp, separate_basename=0):
"""Return quoted version of rpath rp"""
if separate_basename:
assert not rp.index, (
"Trying to start quoting '{rp}' in the middle.".format(rp=rp))
dirname, basename = rp.dirsplit()
return QuotedRPath(rp.conn, dirname, (unquote(basename), ), rp.data)
else:
return QuotedRPath(rp.conn, rp.base, rp.index, rp.data)
def _init_quoting_regexps():
"""Compile quoting regular expressions"""
global chars_to_quote_regexp, unquoting_regexp
assert chars_to_quote and isinstance(chars_to_quote, bytes), (
"Chars to quote must be non-empty bytes: '{ctq}'.".format(
ctq=safestr.to_str(chars_to_quote)))
try:
chars_to_quote_regexp = re.compile(b"[%b]|%b" %
(chars_to_quote, quoting_char), re.S)
unquoting_regexp = re.compile(b"%b[0-9]{3}" % quoting_char, re.S)
except re.error as exc:
log.Log.FatalError(
"Regex error '{er}' when processing char quote list {ql}".format(
er=exc, ql=chars_to_quote))
def _quote_single(match):
"""Return replacement for a single character"""
return b"%b%03d" % (quoting_char, ord(match.group()))
def _unquote_single(match):
"""Unquote a single quoted character"""
if not len(match.group()) == 4:
raise QuotingException("Quoted group wrong size: '{qg}'".format(
qg=safestr.to_str(match.group())))
try:
return os.fsencode(chr(int(match.group()[1:])))
except ValueError:
raise QuotingException("Quoted out of range: '{qg}'".format(
qg=safestr.to_str(match.group())))
Coded by KALI :v Greetz to DR HARD ../ kali.zbi@hotmail.com