/usr/share/pyshared/CedarBackup2/extend/split.py is in cedar-backup2 2.27.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 | # -*- coding: iso-8859-1 -*-
# vim: set ft=python ts=3 sw=3 expandtab:
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#
# C E D A R
# S O L U T I O N S "Software done right."
# S O F T W A R E
#
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#
# Copyright (c) 2007,2010,2013 Kenneth J. Pronovici.
# All rights reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License,
# Version 2, as published by the Free Software Foundation.
#
# 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.
#
# Copies of the GNU General Public License are available from
# the Free Software Foundation website, http://www.gnu.org/.
#
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#
# Author : Kenneth J. Pronovici <pronovic@ieee.org>
# Language : Python 2 (>= 2.7)
# Project : Official Cedar Backup Extensions
# Purpose : Provides an extension to split up large files in staging directories.
#
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
########################################################################
# Module documentation
########################################################################
"""
Provides an extension to split up large files in staging directories.
When this extension is executed, it will look through the configured Cedar
Backup staging directory for files exceeding a specified size limit, and split
them down into smaller files using the 'split' utility. Any directory which
has already been split (as indicated by the C{cback.split} file) will be
ignored.
This extension requires a new configuration section <split> and is intended
to be run immediately after the standard stage action or immediately before the
standard store action. Aside from its own configuration, it requires the
options and staging configuration sections in the standard Cedar Backup
configuration file.
@author: Kenneth J. Pronovici <pronovic@ieee.org>
"""
########################################################################
# Imported modules
########################################################################
# System modules
import os
import re
import logging
# Cedar Backup modules
from CedarBackup2.util import resolveCommand, executeCommand, changeOwnership
from CedarBackup2.xmlutil import createInputDom, addContainerNode
from CedarBackup2.xmlutil import readFirstChild
from CedarBackup2.actions.util import findDailyDirs, writeIndicatorFile, getBackupFiles
from CedarBackup2.config import ByteQuantity, readByteQuantity, addByteQuantityNode
########################################################################
# Module-wide constants and variables
########################################################################
logger = logging.getLogger("CedarBackup2.log.extend.split")
SPLIT_COMMAND = [ "split", ]
SPLIT_INDICATOR = "cback.split"
########################################################################
# SplitConfig class definition
########################################################################
class SplitConfig(object):
"""
Class representing split configuration.
Split configuration is used for splitting staging directories.
The following restrictions exist on data in this class:
- The size limit must be a ByteQuantity
- The split size must be a ByteQuantity
@sort: __init__, __repr__, __str__, __cmp__, sizeLimit, splitSize
"""
def __init__(self, sizeLimit=None, splitSize=None):
"""
Constructor for the C{SplitCOnfig} class.
@param sizeLimit: Size limit of the files, in bytes
@param splitSize: Size that files exceeding the limit will be split into, in bytes
@raise ValueError: If one of the values is invalid.
"""
self._sizeLimit = None
self._splitSize = None
self.sizeLimit = sizeLimit
self.splitSize = splitSize
def __repr__(self):
"""
Official string representation for class instance.
"""
return "SplitConfig(%s, %s)" % (self.sizeLimit, self.splitSize)
def __str__(self):
"""
Informal string representation for class instance.
"""
return self.__repr__()
def __cmp__(self, other):
"""
Definition of equals operator for this class.
Lists within this class are "unordered" for equality comparisons.
@param other: Other object to compare to.
@return: -1/0/1 depending on whether self is C{<}, C{=} or C{>} other.
"""
if other is None:
return 1
if self.sizeLimit != other.sizeLimit:
if self.sizeLimit < other.sizeLimit:
return -1
else:
return 1
if self.splitSize != other.splitSize:
if self.splitSize < other.splitSize:
return -1
else:
return 1
return 0
def _setSizeLimit(self, value):
"""
Property target used to set the size limit.
If not C{None}, the value must be a C{ByteQuantity} object.
@raise ValueError: If the value is not a C{ByteQuantity}
"""
if value is None:
self._sizeLimit = None
else:
if not isinstance(value, ByteQuantity):
raise ValueError("Value must be a C{ByteQuantity} object.")
self._sizeLimit = value
def _getSizeLimit(self):
"""
Property target used to get the size limit.
"""
return self._sizeLimit
def _setSplitSize(self, value):
"""
Property target used to set the split size.
If not C{None}, the value must be a C{ByteQuantity} object.
@raise ValueError: If the value is not a C{ByteQuantity}
"""
if value is None:
self._splitSize = None
else:
if not isinstance(value, ByteQuantity):
raise ValueError("Value must be a C{ByteQuantity} object.")
self._splitSize = value
def _getSplitSize(self):
"""
Property target used to get the split size.
"""
return self._splitSize
sizeLimit = property(_getSizeLimit, _setSizeLimit, None, doc="Size limit, as a ByteQuantity")
splitSize = property(_getSplitSize, _setSplitSize, None, doc="Split size, as a ByteQuantity")
########################################################################
# LocalConfig class definition
########################################################################
class LocalConfig(object):
"""
Class representing this extension's configuration document.
This is not a general-purpose configuration object like the main Cedar
Backup configuration object. Instead, it just knows how to parse and emit
split-specific configuration values. Third parties who need to read and
write configuration related to this extension should access it through the
constructor, C{validate} and C{addConfig} methods.
@note: Lists within this class are "unordered" for equality comparisons.
@sort: __init__, __repr__, __str__, __cmp__, split, validate, addConfig
"""
def __init__(self, xmlData=None, xmlPath=None, validate=True):
"""
Initializes a configuration object.
If you initialize the object without passing either C{xmlData} or
C{xmlPath} then configuration will be empty and will be invalid until it
is filled in properly.
No reference to the original XML data or original path is saved off by
this class. Once the data has been parsed (successfully or not) this
original information is discarded.
Unless the C{validate} argument is C{False}, the L{LocalConfig.validate}
method will be called (with its default arguments) against configuration
after successfully parsing any passed-in XML. Keep in mind that even if
C{validate} is C{False}, it might not be possible to parse the passed-in
XML document if lower-level validations fail.
@note: It is strongly suggested that the C{validate} option always be set
to C{True} (the default) unless there is a specific need to read in
invalid configuration from disk.
@param xmlData: XML data representing configuration.
@type xmlData: String data.
@param xmlPath: Path to an XML file on disk.
@type xmlPath: Absolute path to a file on disk.
@param validate: Validate the document after parsing it.
@type validate: Boolean true/false.
@raise ValueError: If both C{xmlData} and C{xmlPath} are passed-in.
@raise ValueError: If the XML data in C{xmlData} or C{xmlPath} cannot be parsed.
@raise ValueError: If the parsed configuration document is not valid.
"""
self._split = None
self.split = None
if xmlData is not None and xmlPath is not None:
raise ValueError("Use either xmlData or xmlPath, but not both.")
if xmlData is not None:
self._parseXmlData(xmlData)
if validate:
self.validate()
elif xmlPath is not None:
xmlData = open(xmlPath).read()
self._parseXmlData(xmlData)
if validate:
self.validate()
def __repr__(self):
"""
Official string representation for class instance.
"""
return "LocalConfig(%s)" % (self.split)
def __str__(self):
"""
Informal string representation for class instance.
"""
return self.__repr__()
def __cmp__(self, other):
"""
Definition of equals operator for this class.
Lists within this class are "unordered" for equality comparisons.
@param other: Other object to compare to.
@return: -1/0/1 depending on whether self is C{<}, C{=} or C{>} other.
"""
if other is None:
return 1
if self.split != other.split:
if self.split < other.split:
return -1
else:
return 1
return 0
def _setSplit(self, value):
"""
Property target used to set the split configuration value.
If not C{None}, the value must be a C{SplitConfig} object.
@raise ValueError: If the value is not a C{SplitConfig}
"""
if value is None:
self._split = None
else:
if not isinstance(value, SplitConfig):
raise ValueError("Value must be a C{SplitConfig} object.")
self._split = value
def _getSplit(self):
"""
Property target used to get the split configuration value.
"""
return self._split
split = property(_getSplit, _setSplit, None, "Split configuration in terms of a C{SplitConfig} object.")
def validate(self):
"""
Validates configuration represented by the object.
Split configuration must be filled in. Within that, both the size limit
and split size must be filled in.
@raise ValueError: If one of the validations fails.
"""
if self.split is None:
raise ValueError("Split section is required.")
if self.split.sizeLimit is None:
raise ValueError("Size limit must be set.")
if self.split.splitSize is None:
raise ValueError("Split size must be set.")
def addConfig(self, xmlDom, parentNode):
"""
Adds a <split> configuration section as the next child of a parent.
Third parties should use this function to write configuration related to
this extension.
We add the following fields to the document::
sizeLimit //cb_config/split/size_limit
splitSize //cb_config/split/split_size
@param xmlDom: DOM tree as from C{impl.createDocument()}.
@param parentNode: Parent that the section should be appended to.
"""
if self.split is not None:
sectionNode = addContainerNode(xmlDom, parentNode, "split")
addByteQuantityNode(xmlDom, sectionNode, "size_limit", self.split.sizeLimit)
addByteQuantityNode(xmlDom, sectionNode, "split_size", self.split.splitSize)
def _parseXmlData(self, xmlData):
"""
Internal method to parse an XML string into the object.
This method parses the XML document into a DOM tree (C{xmlDom}) and then
calls a static method to parse the split configuration section.
@param xmlData: XML data to be parsed
@type xmlData: String data
@raise ValueError: If the XML cannot be successfully parsed.
"""
(xmlDom, parentNode) = createInputDom(xmlData)
self._split = LocalConfig._parseSplit(parentNode)
@staticmethod
def _parseSplit(parent):
"""
Parses an split configuration section.
We read the following individual fields::
sizeLimit //cb_config/split/size_limit
splitSize //cb_config/split/split_size
@param parent: Parent node to search beneath.
@return: C{EncryptConfig} object or C{None} if the section does not exist.
@raise ValueError: If some filled-in value is invalid.
"""
split = None
section = readFirstChild(parent, "split")
if section is not None:
split = SplitConfig()
split.sizeLimit = readByteQuantity(section, "size_limit")
split.splitSize = readByteQuantity(section, "split_size")
return split
########################################################################
# Public functions
########################################################################
###########################
# executeAction() function
###########################
# pylint: disable=W0613
def executeAction(configPath, options, config):
"""
Executes the split backup action.
@param configPath: Path to configuration file on disk.
@type configPath: String representing a path on disk.
@param options: Program command-line options.
@type options: Options object.
@param config: Program configuration.
@type config: Config object.
@raise ValueError: Under many generic error conditions
@raise IOError: If there are I/O problems reading or writing files
"""
logger.debug("Executing split extended action.")
if config.options is None or config.stage is None:
raise ValueError("Cedar Backup configuration is not properly filled in.")
local = LocalConfig(xmlPath=configPath)
dailyDirs = findDailyDirs(config.stage.targetDir, SPLIT_INDICATOR)
for dailyDir in dailyDirs:
_splitDailyDir(dailyDir, local.split.sizeLimit, local.split.splitSize,
config.options.backupUser, config.options.backupGroup)
writeIndicatorFile(dailyDir, SPLIT_INDICATOR, config.options.backupUser, config.options.backupGroup)
logger.info("Executed the split extended action successfully.")
##############################
# _splitDailyDir() function
##############################
def _splitDailyDir(dailyDir, sizeLimit, splitSize, backupUser, backupGroup):
"""
Splits large files in a daily staging directory.
Files that match INDICATOR_PATTERNS (i.e. C{"cback.store"},
C{"cback.stage"}, etc.) are assumed to be indicator files and are ignored.
All other files are split.
@param dailyDir: Daily directory to encrypt
@param sizeLimit: Size limit, in bytes
@param splitSize: Split size, in bytes
@param backupUser: User that target files should be owned by
@param backupGroup: Group that target files should be owned by
@raise ValueError: If the encrypt mode is not supported.
@raise ValueError: If the daily staging directory does not exist.
"""
logger.debug("Begin splitting contents of [%s].", dailyDir)
fileList = getBackupFiles(dailyDir) # ignores indicator files
for path in fileList:
size = float(os.stat(path).st_size)
if size > sizeLimit:
_splitFile(path, splitSize, backupUser, backupGroup, removeSource=True)
logger.debug("Completed splitting contents of [%s].", dailyDir)
########################
# _splitFile() function
########################
def _splitFile(sourcePath, splitSize, backupUser, backupGroup, removeSource=False):
"""
Splits the source file into chunks of the indicated size.
The split files will be owned by the indicated backup user and group. If
C{removeSource} is C{True}, then the source file will be removed after it is
successfully split.
@param sourcePath: Absolute path of the source file to split
@param splitSize: Encryption mode (only "gpg" is allowed)
@param backupUser: User that target files should be owned by
@param backupGroup: Group that target files should be owned by
@param removeSource: Indicates whether to remove the source file
@raise IOError: If there is a problem accessing, splitting or removing the source file.
"""
cwd = os.getcwd()
try:
if not os.path.exists(sourcePath):
raise ValueError("Source path [%s] does not exist." % sourcePath)
dirname = os.path.dirname(sourcePath)
filename = os.path.basename(sourcePath)
prefix = "%s_" % filename
bytes = int(splitSize.bytes) # pylint: disable=W0622
os.chdir(dirname) # need to operate from directory that we want files written to
command = resolveCommand(SPLIT_COMMAND)
args = [ "--verbose", "--numeric-suffixes", "--suffix-length=5", "--bytes=%d" % bytes, filename, prefix, ]
(result, output) = executeCommand(command, args, returnOutput=True, ignoreStderr=False)
if result != 0:
raise IOError("Error [%d] calling split for [%s]." % (result, sourcePath))
pattern = re.compile(r"(creating file [`'])(%s)(.*)(')" % prefix)
match = pattern.search(output[-1:][0])
if match is None:
raise IOError("Unable to parse output from split command.")
value = int(match.group(3).strip())
for index in range(0, value):
path = "%s%05d" % (prefix, index)
if not os.path.exists(path):
raise IOError("After call to split, expected file [%s] does not exist." % path)
changeOwnership(path, backupUser, backupGroup)
if removeSource:
if os.path.exists(sourcePath):
try:
os.remove(sourcePath)
logger.debug("Completed removing old file [%s].", sourcePath)
except:
raise IOError("Failed to remove file [%s] after splitting it." % (sourcePath))
finally:
os.chdir(cwd)
|