Fix missing commit() flag in postgres savepoint class
[mediawiki.git] / includes / libs / filebackend / FileBackend.php
blob5764cc3397c412cbacf6bf400c94e8695beab5da
1 <?php
2 /**
3 * @defgroup FileBackend File backend
5 * File backend is used to interact with file storage systems,
6 * such as the local file system, NFS, or cloud storage systems.
7 */
9 /**
10 * Base class for all file backends.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 * http://www.gnu.org/copyleft/gpl.html
27 * @file
28 * @ingroup FileBackend
29 * @author Aaron Schulz
31 use Psr\Log\LoggerAwareInterface;
32 use Psr\Log\LoggerInterface;
33 use Wikimedia\ScopedCallback;
35 /**
36 * @brief Base class for all file backend classes (including multi-write backends).
38 * This class defines the methods as abstract that subclasses must implement.
39 * Outside callers can assume that all backends will have these functions.
41 * All "storage paths" are of the format "mwstore://<backend>/<container>/<path>".
42 * The "backend" portion is unique name for the application to refer to a backend, while
43 * the "container" portion is a top-level directory of the backend. The "path" portion
44 * is a relative path that uses UNIX file system (FS) notation, though any particular
45 * backend may not actually be using a local filesystem. Therefore, the relative paths
46 * are only virtual.
48 * Backend contents are stored under "domain"-specific container names by default.
49 * A domain is simply a logical umbrella for entities, such as those belonging to a certain
50 * application or portion of a website, for example. A domain can be local or global.
51 * Global (qualified) backends are achieved by configuring the "domain ID" to a constant.
52 * Global domains are simpler, but local domains can be used by choosing a domain ID based on
53 * the current context, such as which language of a website is being used.
55 * For legacy reasons, the FSFileBackend class allows manually setting the paths of
56 * containers to ones that do not respect the "domain ID".
58 * In key/value (object) stores, containers are the only hierarchy (the rest is emulated).
59 * FS-based backends are somewhat more restrictive due to the existence of real
60 * directory files; a regular file cannot have the same name as a directory. Other
61 * backends with virtual directories may not have this limitation. Callers should
62 * store files in such a way that no files and directories are under the same path.
64 * In general, this class allows for callers to access storage through the same
65 * interface, without regard to the underlying storage system. However, calling code
66 * must follow certain patterns and be aware of certain things to ensure compatibility:
67 * - a) Always call prepare() on the parent directory before trying to put a file there;
68 * key/value stores only need the container to exist first, but filesystems need
69 * all the parent directories to exist first (prepare() is aware of all this)
70 * - b) Always call clean() on a directory when it might become empty to avoid empty
71 * directory buildup on filesystems; key/value stores never have empty directories,
72 * so doing this helps preserve consistency in both cases
73 * - c) Likewise, do not rely on the existence of empty directories for anything;
74 * calling directoryExists() on a path that prepare() was previously called on
75 * will return false for key/value stores if there are no files under that path
76 * - d) Never alter the resulting FSFile returned from getLocalReference(), as it could
77 * either be a copy of the source file in /tmp or the original source file itself
78 * - e) Use a file layout that results in never attempting to store files over directories
79 * or directories over files; key/value stores allow this but filesystems do not
80 * - f) Use ASCII file names (e.g. base32, IDs, hashes) to avoid Unicode issues in Windows
81 * - g) Do not assume that move operations are atomic (difficult with key/value stores)
82 * - h) Do not assume that file stat or read operations always have immediate consistency;
83 * various methods have a "latest" flag that should always be used if up-to-date
84 * information is required (this trades performance for correctness as needed)
85 * - i) Do not assume that directory listings have immediate consistency
87 * Methods of subclasses should avoid throwing exceptions at all costs.
88 * As a corollary, external dependencies should be kept to a minimum.
90 * @ingroup FileBackend
91 * @since 1.19
93 abstract class FileBackend implements LoggerAwareInterface {
94 /** @var string Unique backend name */
95 protected $name;
97 /** @var string Unique domain name */
98 protected $domainId;
100 /** @var string Read-only explanation message */
101 protected $readOnly;
103 /** @var string When to do operations in parallel */
104 protected $parallelize;
106 /** @var int How many operations can be done in parallel */
107 protected $concurrency;
109 /** @var string Temporary file directory */
110 protected $tmpDirectory;
112 /** @var LockManager */
113 protected $lockManager;
114 /** @var FileJournal */
115 protected $fileJournal;
116 /** @var LoggerInterface */
117 protected $logger;
118 /** @var object|string Class name or object With profileIn/profileOut methods */
119 protected $profiler;
121 /** @var callable */
122 protected $obResetFunc;
123 /** @var callable */
124 protected $streamMimeFunc;
125 /** @var callable */
126 protected $statusWrapper;
128 /** Bitfield flags for supported features */
129 const ATTR_HEADERS = 1; // files can be tagged with standard HTTP headers
130 const ATTR_METADATA = 2; // files can be stored with metadata key/values
131 const ATTR_UNICODE_PATHS = 4; // files can have Unicode paths (not just ASCII)
134 * Create a new backend instance from configuration.
135 * This should only be called from within FileBackendGroup.
137 * @param array $config Parameters include:
138 * - name : The unique name of this backend.
139 * This should consist of alphanumberic, '-', and '_' characters.
140 * This name should not be changed after use (e.g. with journaling).
141 * Note that the name is *not* used in actual container names.
142 * - domainId : Prefix to container names that is unique to this backend.
143 * It should only consist of alphanumberic, '-', and '_' characters.
144 * This ID is what avoids collisions if multiple logical backends
145 * use the same storage system, so this should be set carefully.
146 * - lockManager : LockManager object to use for any file locking.
147 * If not provided, then no file locking will be enforced.
148 * - fileJournal : FileJournal object to use for logging changes to files.
149 * If not provided, then change journaling will be disabled.
150 * - readOnly : Write operations are disallowed if this is a non-empty string.
151 * It should be an explanation for the backend being read-only.
152 * - parallelize : When to do file operations in parallel (when possible).
153 * Allowed values are "implicit", "explicit" and "off".
154 * - concurrency : How many file operations can be done in parallel.
155 * - tmpDirectory : Directory to use for temporary files. If this is not set or null,
156 * then the backend will try to discover a usable temporary directory.
157 * - obResetFunc : alternative callback to clear the output buffer
158 * - streamMimeFunc : alternative method to determine the content type from the path
159 * - logger : Optional PSR logger object.
160 * - profiler : Optional class name or object With profileIn/profileOut methods.
161 * @throws InvalidArgumentException
163 public function __construct( array $config ) {
164 $this->name = $config['name'];
165 $this->domainId = isset( $config['domainId'] )
166 ? $config['domainId'] // e.g. "my_wiki-en_"
167 : $config['wikiId']; // b/c alias
168 if ( !preg_match( '!^[a-zA-Z0-9-_]{1,255}$!', $this->name ) ) {
169 throw new InvalidArgumentException( "Backend name '{$this->name}' is invalid." );
170 } elseif ( !is_string( $this->domainId ) ) {
171 throw new InvalidArgumentException(
172 "Backend domain ID not provided for '{$this->name}'." );
174 $this->lockManager = isset( $config['lockManager'] )
175 ? $config['lockManager']
176 : new NullLockManager( [] );
177 $this->fileJournal = isset( $config['fileJournal'] )
178 ? $config['fileJournal']
179 : FileJournal::factory( [ 'class' => 'NullFileJournal' ], $this->name );
180 $this->readOnly = isset( $config['readOnly'] )
181 ? (string)$config['readOnly']
182 : '';
183 $this->parallelize = isset( $config['parallelize'] )
184 ? (string)$config['parallelize']
185 : 'off';
186 $this->concurrency = isset( $config['concurrency'] )
187 ? (int)$config['concurrency']
188 : 50;
189 $this->obResetFunc = isset( $config['obResetFunc'] )
190 ? $config['obResetFunc']
191 : [ $this, 'resetOutputBuffer' ];
192 $this->streamMimeFunc = isset( $config['streamMimeFunc'] )
193 ? $config['streamMimeFunc']
194 : null;
195 $this->statusWrapper = isset( $config['statusWrapper'] ) ? $config['statusWrapper'] : null;
197 $this->profiler = isset( $config['profiler'] ) ? $config['profiler'] : null;
198 $this->logger = isset( $config['logger'] ) ? $config['logger'] : new \Psr\Log\NullLogger();
199 $this->statusWrapper = isset( $config['statusWrapper'] ) ? $config['statusWrapper'] : null;
200 $this->tmpDirectory = isset( $config['tmpDirectory'] ) ? $config['tmpDirectory'] : null;
203 public function setLogger( LoggerInterface $logger ) {
204 $this->logger = $logger;
208 * Get the unique backend name.
209 * We may have multiple different backends of the same type.
210 * For example, we can have two Swift backends using different proxies.
212 * @return string
214 final public function getName() {
215 return $this->name;
219 * Get the domain identifier used for this backend (possibly empty).
221 * @return string
222 * @since 1.28
224 final public function getDomainId() {
225 return $this->domainId;
229 * Alias to getDomainId()
230 * @return string
231 * @since 1.20
233 final public function getWikiId() {
234 return $this->getDomainId();
238 * Check if this backend is read-only
240 * @return bool
242 final public function isReadOnly() {
243 return ( $this->readOnly != '' );
247 * Get an explanatory message if this backend is read-only
249 * @return string|bool Returns false if the backend is not read-only
251 final public function getReadOnlyReason() {
252 return ( $this->readOnly != '' ) ? $this->readOnly : false;
256 * Get the a bitfield of extra features supported by the backend medium
258 * @return int Bitfield of FileBackend::ATTR_* flags
259 * @since 1.23
261 public function getFeatures() {
262 return self::ATTR_UNICODE_PATHS;
266 * Check if the backend medium supports a field of extra features
268 * @param int $bitfield Bitfield of FileBackend::ATTR_* flags
269 * @return bool
270 * @since 1.23
272 final public function hasFeatures( $bitfield ) {
273 return ( $this->getFeatures() & $bitfield ) === $bitfield;
277 * This is the main entry point into the backend for write operations.
278 * Callers supply an ordered list of operations to perform as a transaction.
279 * Files will be locked, the stat cache cleared, and then the operations attempted.
280 * If any serious errors occur, all attempted operations will be rolled back.
282 * $ops is an array of arrays. The outer array holds a list of operations.
283 * Each inner array is a set of key value pairs that specify an operation.
285 * Supported operations and their parameters. The supported actions are:
286 * - create
287 * - store
288 * - copy
289 * - move
290 * - delete
291 * - describe (since 1.21)
292 * - null
294 * FSFile/TempFSFile object support was added in 1.27.
296 * a) Create a new file in storage with the contents of a string
297 * @code
299 * 'op' => 'create',
300 * 'dst' => <storage path>,
301 * 'content' => <string of new file contents>,
302 * 'overwrite' => <boolean>,
303 * 'overwriteSame' => <boolean>,
304 * 'headers' => <HTTP header name/value map> # since 1.21
306 * @endcode
308 * b) Copy a file system file into storage
309 * @code
311 * 'op' => 'store',
312 * 'src' => <file system path, FSFile, or TempFSFile>,
313 * 'dst' => <storage path>,
314 * 'overwrite' => <boolean>,
315 * 'overwriteSame' => <boolean>,
316 * 'headers' => <HTTP header name/value map> # since 1.21
318 * @endcode
320 * c) Copy a file within storage
321 * @code
323 * 'op' => 'copy',
324 * 'src' => <storage path>,
325 * 'dst' => <storage path>,
326 * 'overwrite' => <boolean>,
327 * 'overwriteSame' => <boolean>,
328 * 'ignoreMissingSource' => <boolean>, # since 1.21
329 * 'headers' => <HTTP header name/value map> # since 1.21
331 * @endcode
333 * d) Move a file within storage
334 * @code
336 * 'op' => 'move',
337 * 'src' => <storage path>,
338 * 'dst' => <storage path>,
339 * 'overwrite' => <boolean>,
340 * 'overwriteSame' => <boolean>,
341 * 'ignoreMissingSource' => <boolean>, # since 1.21
342 * 'headers' => <HTTP header name/value map> # since 1.21
344 * @endcode
346 * e) Delete a file within storage
347 * @code
349 * 'op' => 'delete',
350 * 'src' => <storage path>,
351 * 'ignoreMissingSource' => <boolean>
353 * @endcode
355 * f) Update metadata for a file within storage
356 * @code
358 * 'op' => 'describe',
359 * 'src' => <storage path>,
360 * 'headers' => <HTTP header name/value map>
362 * @endcode
364 * g) Do nothing (no-op)
365 * @code
367 * 'op' => 'null',
369 * @endcode
371 * Boolean flags for operations (operation-specific):
372 * - ignoreMissingSource : The operation will simply succeed and do
373 * nothing if the source file does not exist.
374 * - overwrite : Any destination file will be overwritten.
375 * - overwriteSame : If a file already exists at the destination with the
376 * same contents, then do nothing to the destination file
377 * instead of giving an error. This does not compare headers.
378 * This option is ignored if 'overwrite' is already provided.
379 * - headers : If supplied, the result of merging these headers with any
380 * existing source file headers (replacing conflicting ones)
381 * will be set as the destination file headers. Headers are
382 * deleted if their value is set to the empty string. When a
383 * file has headers they are included in responses to GET and
384 * HEAD requests to the backing store for that file.
385 * Header values should be no larger than 255 bytes, except for
386 * Content-Disposition. The system might ignore or truncate any
387 * headers that are too long to store (exact limits will vary).
388 * Backends that don't support metadata ignore this. (since 1.21)
390 * $opts is an associative of boolean flags, including:
391 * - force : Operation precondition errors no longer trigger an abort.
392 * Any remaining operations are still attempted. Unexpected
393 * failures may still cause remaining operations to be aborted.
394 * - nonLocking : No locks are acquired for the operations.
395 * This can increase performance for non-critical writes.
396 * This has no effect unless the 'force' flag is set.
397 * - nonJournaled : Don't log this operation batch in the file journal.
398 * This limits the ability of recovery scripts.
399 * - parallelize : Try to do operations in parallel when possible.
400 * - bypassReadOnly : Allow writes in read-only mode. (since 1.20)
401 * - preserveCache : Don't clear the process cache before checking files.
402 * This should only be used if all entries in the process
403 * cache were added after the files were already locked. (since 1.20)
405 * @remarks Remarks on locking:
406 * File system paths given to operations should refer to files that are
407 * already locked or otherwise safe from modification from other processes.
408 * Normally these files will be new temp files, which should be adequate.
410 * @par Return value:
412 * This returns a Status, which contains all warnings and fatals that occurred
413 * during the operation. The 'failCount', 'successCount', and 'success' members
414 * will reflect each operation attempted.
416 * The StatusValue will be "OK" unless:
417 * - a) unexpected operation errors occurred (network partitions, disk full...)
418 * - b) significant operation errors occurred and 'force' was not set
420 * @param array $ops List of operations to execute in order
421 * @param array $opts Batch operation options
422 * @return StatusValue
424 final public function doOperations( array $ops, array $opts = [] ) {
425 if ( empty( $opts['bypassReadOnly'] ) && $this->isReadOnly() ) {
426 return $this->newStatus( 'backend-fail-readonly', $this->name, $this->readOnly );
428 if ( !count( $ops ) ) {
429 return $this->newStatus(); // nothing to do
432 $ops = $this->resolveFSFileObjects( $ops );
433 if ( empty( $opts['force'] ) ) { // sanity
434 unset( $opts['nonLocking'] );
437 /** @noinspection PhpUnusedLocalVariableInspection */
438 $scope = $this->getScopedPHPBehaviorForOps(); // try to ignore client aborts
440 return $this->doOperationsInternal( $ops, $opts );
444 * @see FileBackend::doOperations()
445 * @param array $ops
446 * @param array $opts
448 abstract protected function doOperationsInternal( array $ops, array $opts );
451 * Same as doOperations() except it takes a single operation.
452 * If you are doing a batch of operations that should either
453 * all succeed or all fail, then use that function instead.
455 * @see FileBackend::doOperations()
457 * @param array $op Operation
458 * @param array $opts Operation options
459 * @return StatusValue
461 final public function doOperation( array $op, array $opts = [] ) {
462 return $this->doOperations( [ $op ], $opts );
466 * Performs a single create operation.
467 * This sets $params['op'] to 'create' and passes it to doOperation().
469 * @see FileBackend::doOperation()
471 * @param array $params Operation parameters
472 * @param array $opts Operation options
473 * @return StatusValue
475 final public function create( array $params, array $opts = [] ) {
476 return $this->doOperation( [ 'op' => 'create' ] + $params, $opts );
480 * Performs a single store operation.
481 * This sets $params['op'] to 'store' and passes it to doOperation().
483 * @see FileBackend::doOperation()
485 * @param array $params Operation parameters
486 * @param array $opts Operation options
487 * @return StatusValue
489 final public function store( array $params, array $opts = [] ) {
490 return $this->doOperation( [ 'op' => 'store' ] + $params, $opts );
494 * Performs a single copy operation.
495 * This sets $params['op'] to 'copy' and passes it to doOperation().
497 * @see FileBackend::doOperation()
499 * @param array $params Operation parameters
500 * @param array $opts Operation options
501 * @return StatusValue
503 final public function copy( array $params, array $opts = [] ) {
504 return $this->doOperation( [ 'op' => 'copy' ] + $params, $opts );
508 * Performs a single move operation.
509 * This sets $params['op'] to 'move' and passes it to doOperation().
511 * @see FileBackend::doOperation()
513 * @param array $params Operation parameters
514 * @param array $opts Operation options
515 * @return StatusValue
517 final public function move( array $params, array $opts = [] ) {
518 return $this->doOperation( [ 'op' => 'move' ] + $params, $opts );
522 * Performs a single delete operation.
523 * This sets $params['op'] to 'delete' and passes it to doOperation().
525 * @see FileBackend::doOperation()
527 * @param array $params Operation parameters
528 * @param array $opts Operation options
529 * @return StatusValue
531 final public function delete( array $params, array $opts = [] ) {
532 return $this->doOperation( [ 'op' => 'delete' ] + $params, $opts );
536 * Performs a single describe operation.
537 * This sets $params['op'] to 'describe' and passes it to doOperation().
539 * @see FileBackend::doOperation()
541 * @param array $params Operation parameters
542 * @param array $opts Operation options
543 * @return StatusValue
544 * @since 1.21
546 final public function describe( array $params, array $opts = [] ) {
547 return $this->doOperation( [ 'op' => 'describe' ] + $params, $opts );
551 * Perform a set of independent file operations on some files.
553 * This does no locking, nor journaling, and possibly no stat calls.
554 * Any destination files that already exist will be overwritten.
555 * This should *only* be used on non-original files, like cache files.
557 * Supported operations and their parameters:
558 * - create
559 * - store
560 * - copy
561 * - move
562 * - delete
563 * - describe (since 1.21)
564 * - null
566 * FSFile/TempFSFile object support was added in 1.27.
568 * a) Create a new file in storage with the contents of a string
569 * @code
571 * 'op' => 'create',
572 * 'dst' => <storage path>,
573 * 'content' => <string of new file contents>,
574 * 'headers' => <HTTP header name/value map> # since 1.21
576 * @endcode
578 * b) Copy a file system file into storage
579 * @code
581 * 'op' => 'store',
582 * 'src' => <file system path, FSFile, or TempFSFile>,
583 * 'dst' => <storage path>,
584 * 'headers' => <HTTP header name/value map> # since 1.21
586 * @endcode
588 * c) Copy a file within storage
589 * @code
591 * 'op' => 'copy',
592 * 'src' => <storage path>,
593 * 'dst' => <storage path>,
594 * 'ignoreMissingSource' => <boolean>, # since 1.21
595 * 'headers' => <HTTP header name/value map> # since 1.21
597 * @endcode
599 * d) Move a file within storage
600 * @code
602 * 'op' => 'move',
603 * 'src' => <storage path>,
604 * 'dst' => <storage path>,
605 * 'ignoreMissingSource' => <boolean>, # since 1.21
606 * 'headers' => <HTTP header name/value map> # since 1.21
608 * @endcode
610 * e) Delete a file within storage
611 * @code
613 * 'op' => 'delete',
614 * 'src' => <storage path>,
615 * 'ignoreMissingSource' => <boolean>
617 * @endcode
619 * f) Update metadata for a file within storage
620 * @code
622 * 'op' => 'describe',
623 * 'src' => <storage path>,
624 * 'headers' => <HTTP header name/value map>
626 * @endcode
628 * g) Do nothing (no-op)
629 * @code
631 * 'op' => 'null',
633 * @endcode
635 * @par Boolean flags for operations (operation-specific):
636 * - ignoreMissingSource : The operation will simply succeed and do
637 * nothing if the source file does not exist.
638 * - headers : If supplied with a header name/value map, the backend will
639 * reply with these headers when GETs/HEADs of the destination
640 * file are made. Header values should be smaller than 256 bytes.
641 * Content-Disposition headers can be longer, though the system
642 * might ignore or truncate ones that are too long to store.
643 * Existing headers will remain, but these will replace any
644 * conflicting previous headers, and headers will be removed
645 * if they are set to an empty string.
646 * Backends that don't support metadata ignore this. (since 1.21)
648 * $opts is an associative of boolean flags, including:
649 * - bypassReadOnly : Allow writes in read-only mode (since 1.20)
651 * @par Return value:
652 * This returns a Status, which contains all warnings and fatals that occurred
653 * during the operation. The 'failCount', 'successCount', and 'success' members
654 * will reflect each operation attempted for the given files. The StatusValue will be
655 * considered "OK" as long as no fatal errors occurred.
657 * @param array $ops Set of operations to execute
658 * @param array $opts Batch operation options
659 * @return StatusValue
660 * @since 1.20
662 final public function doQuickOperations( array $ops, array $opts = [] ) {
663 if ( empty( $opts['bypassReadOnly'] ) && $this->isReadOnly() ) {
664 return $this->newStatus( 'backend-fail-readonly', $this->name, $this->readOnly );
666 if ( !count( $ops ) ) {
667 return $this->newStatus(); // nothing to do
670 $ops = $this->resolveFSFileObjects( $ops );
671 foreach ( $ops as &$op ) {
672 $op['overwrite'] = true; // avoids RTTs in key/value stores
675 /** @noinspection PhpUnusedLocalVariableInspection */
676 $scope = $this->getScopedPHPBehaviorForOps(); // try to ignore client aborts
678 return $this->doQuickOperationsInternal( $ops );
682 * @see FileBackend::doQuickOperations()
683 * @param array $ops
684 * @since 1.20
686 abstract protected function doQuickOperationsInternal( array $ops );
689 * Same as doQuickOperations() except it takes a single operation.
690 * If you are doing a batch of operations, then use that function instead.
692 * @see FileBackend::doQuickOperations()
694 * @param array $op Operation
695 * @return StatusValue
696 * @since 1.20
698 final public function doQuickOperation( array $op ) {
699 return $this->doQuickOperations( [ $op ] );
703 * Performs a single quick create operation.
704 * This sets $params['op'] to 'create' and passes it to doQuickOperation().
706 * @see FileBackend::doQuickOperation()
708 * @param array $params Operation parameters
709 * @return StatusValue
710 * @since 1.20
712 final public function quickCreate( array $params ) {
713 return $this->doQuickOperation( [ 'op' => 'create' ] + $params );
717 * Performs a single quick store operation.
718 * This sets $params['op'] to 'store' and passes it to doQuickOperation().
720 * @see FileBackend::doQuickOperation()
722 * @param array $params Operation parameters
723 * @return StatusValue
724 * @since 1.20
726 final public function quickStore( array $params ) {
727 return $this->doQuickOperation( [ 'op' => 'store' ] + $params );
731 * Performs a single quick copy operation.
732 * This sets $params['op'] to 'copy' and passes it to doQuickOperation().
734 * @see FileBackend::doQuickOperation()
736 * @param array $params Operation parameters
737 * @return StatusValue
738 * @since 1.20
740 final public function quickCopy( array $params ) {
741 return $this->doQuickOperation( [ 'op' => 'copy' ] + $params );
745 * Performs a single quick move operation.
746 * This sets $params['op'] to 'move' and passes it to doQuickOperation().
748 * @see FileBackend::doQuickOperation()
750 * @param array $params Operation parameters
751 * @return StatusValue
752 * @since 1.20
754 final public function quickMove( array $params ) {
755 return $this->doQuickOperation( [ 'op' => 'move' ] + $params );
759 * Performs a single quick delete operation.
760 * This sets $params['op'] to 'delete' and passes it to doQuickOperation().
762 * @see FileBackend::doQuickOperation()
764 * @param array $params Operation parameters
765 * @return StatusValue
766 * @since 1.20
768 final public function quickDelete( array $params ) {
769 return $this->doQuickOperation( [ 'op' => 'delete' ] + $params );
773 * Performs a single quick describe operation.
774 * This sets $params['op'] to 'describe' and passes it to doQuickOperation().
776 * @see FileBackend::doQuickOperation()
778 * @param array $params Operation parameters
779 * @return StatusValue
780 * @since 1.21
782 final public function quickDescribe( array $params ) {
783 return $this->doQuickOperation( [ 'op' => 'describe' ] + $params );
787 * Concatenate a list of storage files into a single file system file.
788 * The target path should refer to a file that is already locked or
789 * otherwise safe from modification from other processes. Normally,
790 * the file will be a new temp file, which should be adequate.
792 * @param array $params Operation parameters, include:
793 * - srcs : ordered source storage paths (e.g. chunk1, chunk2, ...)
794 * - dst : file system path to 0-byte temp file
795 * - parallelize : try to do operations in parallel when possible
796 * @return StatusValue
798 abstract public function concatenate( array $params );
801 * Prepare a storage directory for usage.
802 * This will create any required containers and parent directories.
803 * Backends using key/value stores only need to create the container.
805 * The 'noAccess' and 'noListing' parameters works the same as in secure(),
806 * except they are only applied *if* the directory/container had to be created.
807 * These flags should always be set for directories that have private files.
808 * However, setting them is not guaranteed to actually do anything.
809 * Additional server configuration may be needed to achieve the desired effect.
811 * @param array $params Parameters include:
812 * - dir : storage directory
813 * - noAccess : try to deny file access (since 1.20)
814 * - noListing : try to deny file listing (since 1.20)
815 * - bypassReadOnly : allow writes in read-only mode (since 1.20)
816 * @return StatusValue
818 final public function prepare( array $params ) {
819 if ( empty( $params['bypassReadOnly'] ) && $this->isReadOnly() ) {
820 return $this->newStatus( 'backend-fail-readonly', $this->name, $this->readOnly );
822 /** @noinspection PhpUnusedLocalVariableInspection */
823 $scope = $this->getScopedPHPBehaviorForOps(); // try to ignore client aborts
824 return $this->doPrepare( $params );
828 * @see FileBackend::prepare()
829 * @param array $params
831 abstract protected function doPrepare( array $params );
834 * Take measures to block web access to a storage directory and
835 * the container it belongs to. FS backends might add .htaccess
836 * files whereas key/value store backends might revoke container
837 * access to the storage user representing end-users in web requests.
839 * This is not guaranteed to actually make files or listings publically hidden.
840 * Additional server configuration may be needed to achieve the desired effect.
842 * @param array $params Parameters include:
843 * - dir : storage directory
844 * - noAccess : try to deny file access
845 * - noListing : try to deny file listing
846 * - bypassReadOnly : allow writes in read-only mode (since 1.20)
847 * @return StatusValue
849 final public function secure( array $params ) {
850 if ( empty( $params['bypassReadOnly'] ) && $this->isReadOnly() ) {
851 return $this->newStatus( 'backend-fail-readonly', $this->name, $this->readOnly );
853 /** @noinspection PhpUnusedLocalVariableInspection */
854 $scope = $this->getScopedPHPBehaviorForOps(); // try to ignore client aborts
855 return $this->doSecure( $params );
859 * @see FileBackend::secure()
860 * @param array $params
862 abstract protected function doSecure( array $params );
865 * Remove measures to block web access to a storage directory and
866 * the container it belongs to. FS backends might remove .htaccess
867 * files whereas key/value store backends might grant container
868 * access to the storage user representing end-users in web requests.
869 * This essentially can undo the result of secure() calls.
871 * This is not guaranteed to actually make files or listings publically viewable.
872 * Additional server configuration may be needed to achieve the desired effect.
874 * @param array $params Parameters include:
875 * - dir : storage directory
876 * - access : try to allow file access
877 * - listing : try to allow file listing
878 * - bypassReadOnly : allow writes in read-only mode (since 1.20)
879 * @return StatusValue
880 * @since 1.20
882 final public function publish( array $params ) {
883 if ( empty( $params['bypassReadOnly'] ) && $this->isReadOnly() ) {
884 return $this->newStatus( 'backend-fail-readonly', $this->name, $this->readOnly );
886 /** @noinspection PhpUnusedLocalVariableInspection */
887 $scope = $this->getScopedPHPBehaviorForOps(); // try to ignore client aborts
888 return $this->doPublish( $params );
892 * @see FileBackend::publish()
893 * @param array $params
895 abstract protected function doPublish( array $params );
898 * Delete a storage directory if it is empty.
899 * Backends using key/value stores may do nothing unless the directory
900 * is that of an empty container, in which case it will be deleted.
902 * @param array $params Parameters include:
903 * - dir : storage directory
904 * - recursive : recursively delete empty subdirectories first (since 1.20)
905 * - bypassReadOnly : allow writes in read-only mode (since 1.20)
906 * @return StatusValue
908 final public function clean( array $params ) {
909 if ( empty( $params['bypassReadOnly'] ) && $this->isReadOnly() ) {
910 return $this->newStatus( 'backend-fail-readonly', $this->name, $this->readOnly );
912 /** @noinspection PhpUnusedLocalVariableInspection */
913 $scope = $this->getScopedPHPBehaviorForOps(); // try to ignore client aborts
914 return $this->doClean( $params );
918 * @see FileBackend::clean()
919 * @param array $params
921 abstract protected function doClean( array $params );
924 * Enter file operation scope.
925 * This just makes PHP ignore user aborts/disconnects until the return
926 * value leaves scope. This returns null and does nothing in CLI mode.
928 * @return ScopedCallback|null
930 final protected function getScopedPHPBehaviorForOps() {
931 if ( PHP_SAPI != 'cli' ) { // http://bugs.php.net/bug.php?id=47540
932 $old = ignore_user_abort( true ); // avoid half-finished operations
933 return new ScopedCallback( function () use ( $old ) {
934 ignore_user_abort( $old );
935 } );
938 return null;
942 * Check if a file exists at a storage path in the backend.
943 * This returns false if only a directory exists at the path.
945 * @param array $params Parameters include:
946 * - src : source storage path
947 * - latest : use the latest available data
948 * @return bool|null Returns null on failure
950 abstract public function fileExists( array $params );
953 * Get the last-modified timestamp of the file at a storage path.
955 * @param array $params Parameters include:
956 * - src : source storage path
957 * - latest : use the latest available data
958 * @return string|bool TS_MW timestamp or false on failure
960 abstract public function getFileTimestamp( array $params );
963 * Get the contents of a file at a storage path in the backend.
964 * This should be avoided for potentially large files.
966 * @param array $params Parameters include:
967 * - src : source storage path
968 * - latest : use the latest available data
969 * @return string|bool Returns false on failure
971 final public function getFileContents( array $params ) {
972 $contents = $this->getFileContentsMulti(
973 [ 'srcs' => [ $params['src'] ] ] + $params );
975 return $contents[$params['src']];
979 * Like getFileContents() except it takes an array of storage paths
980 * and returns a map of storage paths to strings (or null on failure).
981 * The map keys (paths) are in the same order as the provided list of paths.
983 * @see FileBackend::getFileContents()
985 * @param array $params Parameters include:
986 * - srcs : list of source storage paths
987 * - latest : use the latest available data
988 * - parallelize : try to do operations in parallel when possible
989 * @return array Map of (path name => string or false on failure)
990 * @since 1.20
992 abstract public function getFileContentsMulti( array $params );
995 * Get metadata about a file at a storage path in the backend.
996 * If the file does not exist, then this returns false.
997 * Otherwise, the result is an associative array that includes:
998 * - headers : map of HTTP headers used for GET/HEAD requests (name => value)
999 * - metadata : map of file metadata (name => value)
1000 * Metadata keys and headers names will be returned in all lower-case.
1001 * Additional values may be included for internal use only.
1003 * Use FileBackend::hasFeatures() to check how well this is supported.
1005 * @param array $params
1006 * $params include:
1007 * - src : source storage path
1008 * - latest : use the latest available data
1009 * @return array|bool Returns false on failure
1010 * @since 1.23
1012 abstract public function getFileXAttributes( array $params );
1015 * Get the size (bytes) of a file at a storage path in the backend.
1017 * @param array $params Parameters include:
1018 * - src : source storage path
1019 * - latest : use the latest available data
1020 * @return int|bool Returns false on failure
1022 abstract public function getFileSize( array $params );
1025 * Get quick information about a file at a storage path in the backend.
1026 * If the file does not exist, then this returns false.
1027 * Otherwise, the result is an associative array that includes:
1028 * - mtime : the last-modified timestamp (TS_MW)
1029 * - size : the file size (bytes)
1030 * Additional values may be included for internal use only.
1032 * @param array $params Parameters include:
1033 * - src : source storage path
1034 * - latest : use the latest available data
1035 * @return array|bool|null Returns null on failure
1037 abstract public function getFileStat( array $params );
1040 * Get a SHA-1 hash of the file at a storage path in the backend.
1042 * @param array $params Parameters include:
1043 * - src : source storage path
1044 * - latest : use the latest available data
1045 * @return string|bool Hash string or false on failure
1047 abstract public function getFileSha1Base36( array $params );
1050 * Get the properties of the file at a storage path in the backend.
1051 * This gives the result of FSFile::getProps() on a local copy of the file.
1053 * @param array $params Parameters include:
1054 * - src : source storage path
1055 * - latest : use the latest available data
1056 * @return array Returns FSFile::placeholderProps() on failure
1058 abstract public function getFileProps( array $params );
1061 * Stream the file at a storage path in the backend.
1063 * If the file does not exists, an HTTP 404 error will be given.
1064 * Appropriate HTTP headers (Status, Content-Type, Content-Length)
1065 * will be sent if streaming began, while none will be sent otherwise.
1066 * Implementations should flush the output buffer before sending data.
1068 * @param array $params Parameters include:
1069 * - src : source storage path
1070 * - headers : list of additional HTTP headers to send if the file exists
1071 * - options : HTTP request header map with lower case keys (since 1.28). Supports:
1072 * range : format is "bytes=(\d*-\d*)"
1073 * if-modified-since : format is an HTTP date
1074 * - headless : only include the body (and headers from "headers") (since 1.28)
1075 * - latest : use the latest available data
1076 * - allowOB : preserve any output buffers (since 1.28)
1077 * @return StatusValue
1079 abstract public function streamFile( array $params );
1082 * Returns a file system file, identical to the file at a storage path.
1083 * The file returned is either:
1084 * - a) A local copy of the file at a storage path in the backend.
1085 * The temporary copy will have the same extension as the source.
1086 * - b) An original of the file at a storage path in the backend.
1087 * Temporary files may be purged when the file object falls out of scope.
1089 * Write operations should *never* be done on this file as some backends
1090 * may do internal tracking or may be instances of FileBackendMultiWrite.
1091 * In that latter case, there are copies of the file that must stay in sync.
1092 * Additionally, further calls to this function may return the same file.
1094 * @param array $params Parameters include:
1095 * - src : source storage path
1096 * - latest : use the latest available data
1097 * @return FSFile|null Returns null on failure
1099 final public function getLocalReference( array $params ) {
1100 $fsFiles = $this->getLocalReferenceMulti(
1101 [ 'srcs' => [ $params['src'] ] ] + $params );
1103 return $fsFiles[$params['src']];
1107 * Like getLocalReference() except it takes an array of storage paths
1108 * and returns a map of storage paths to FSFile objects (or null on failure).
1109 * The map keys (paths) are in the same order as the provided list of paths.
1111 * @see FileBackend::getLocalReference()
1113 * @param array $params Parameters include:
1114 * - srcs : list of source storage paths
1115 * - latest : use the latest available data
1116 * - parallelize : try to do operations in parallel when possible
1117 * @return array Map of (path name => FSFile or null on failure)
1118 * @since 1.20
1120 abstract public function getLocalReferenceMulti( array $params );
1123 * Get a local copy on disk of the file at a storage path in the backend.
1124 * The temporary copy will have the same file extension as the source.
1125 * Temporary files may be purged when the file object falls out of scope.
1127 * @param array $params Parameters include:
1128 * - src : source storage path
1129 * - latest : use the latest available data
1130 * @return TempFSFile|null Returns null on failure
1132 final public function getLocalCopy( array $params ) {
1133 $tmpFiles = $this->getLocalCopyMulti(
1134 [ 'srcs' => [ $params['src'] ] ] + $params );
1136 return $tmpFiles[$params['src']];
1140 * Like getLocalCopy() except it takes an array of storage paths and
1141 * returns a map of storage paths to TempFSFile objects (or null on failure).
1142 * The map keys (paths) are in the same order as the provided list of paths.
1144 * @see FileBackend::getLocalCopy()
1146 * @param array $params Parameters include:
1147 * - srcs : list of source storage paths
1148 * - latest : use the latest available data
1149 * - parallelize : try to do operations in parallel when possible
1150 * @return array Map of (path name => TempFSFile or null on failure)
1151 * @since 1.20
1153 abstract public function getLocalCopyMulti( array $params );
1156 * Return an HTTP URL to a given file that requires no authentication to use.
1157 * The URL may be pre-authenticated (via some token in the URL) and temporary.
1158 * This will return null if the backend cannot make an HTTP URL for the file.
1160 * This is useful for key/value stores when using scripts that seek around
1161 * large files and those scripts (and the backend) support HTTP Range headers.
1162 * Otherwise, one would need to use getLocalReference(), which involves loading
1163 * the entire file on to local disk.
1165 * @param array $params Parameters include:
1166 * - src : source storage path
1167 * - ttl : lifetime (seconds) if pre-authenticated; default is 1 day
1168 * @return string|null
1169 * @since 1.21
1171 abstract public function getFileHttpUrl( array $params );
1174 * Check if a directory exists at a given storage path.
1175 * Backends using key/value stores will check if the path is a
1176 * virtual directory, meaning there are files under the given directory.
1178 * Storage backends with eventual consistency might return stale data.
1180 * @param array $params Parameters include:
1181 * - dir : storage directory
1182 * @return bool|null Returns null on failure
1183 * @since 1.20
1185 abstract public function directoryExists( array $params );
1188 * Get an iterator to list *all* directories under a storage directory.
1189 * If the directory is of the form "mwstore://backend/container",
1190 * then all directories in the container will be listed.
1191 * If the directory is of form "mwstore://backend/container/dir",
1192 * then all directories directly under that directory will be listed.
1193 * Results will be storage directories relative to the given directory.
1195 * Storage backends with eventual consistency might return stale data.
1197 * Failures during iteration can result in FileBackendError exceptions (since 1.22).
1199 * @param array $params Parameters include:
1200 * - dir : storage directory
1201 * - topOnly : only return direct child dirs of the directory
1202 * @return Traversable|array|null Returns null on failure
1203 * @since 1.20
1205 abstract public function getDirectoryList( array $params );
1208 * Same as FileBackend::getDirectoryList() except only lists
1209 * directories that are immediately under the given directory.
1211 * Storage backends with eventual consistency might return stale data.
1213 * Failures during iteration can result in FileBackendError exceptions (since 1.22).
1215 * @param array $params Parameters include:
1216 * - dir : storage directory
1217 * @return Traversable|array|null Returns null on failure
1218 * @since 1.20
1220 final public function getTopDirectoryList( array $params ) {
1221 return $this->getDirectoryList( [ 'topOnly' => true ] + $params );
1225 * Get an iterator to list *all* stored files under a storage directory.
1226 * If the directory is of the form "mwstore://backend/container",
1227 * then all files in the container will be listed.
1228 * If the directory is of form "mwstore://backend/container/dir",
1229 * then all files under that directory will be listed.
1230 * Results will be storage paths relative to the given directory.
1232 * Storage backends with eventual consistency might return stale data.
1234 * Failures during iteration can result in FileBackendError exceptions (since 1.22).
1236 * @param array $params Parameters include:
1237 * - dir : storage directory
1238 * - topOnly : only return direct child files of the directory (since 1.20)
1239 * - adviseStat : set to true if stat requests will be made on the files (since 1.22)
1240 * @return Traversable|array|null Returns null on failure
1242 abstract public function getFileList( array $params );
1245 * Same as FileBackend::getFileList() except only lists
1246 * files that are immediately under the given directory.
1248 * Storage backends with eventual consistency might return stale data.
1250 * Failures during iteration can result in FileBackendError exceptions (since 1.22).
1252 * @param array $params Parameters include:
1253 * - dir : storage directory
1254 * - adviseStat : set to true if stat requests will be made on the files (since 1.22)
1255 * @return Traversable|array|null Returns null on failure
1256 * @since 1.20
1258 final public function getTopFileList( array $params ) {
1259 return $this->getFileList( [ 'topOnly' => true ] + $params );
1263 * Preload persistent file stat cache and property cache into in-process cache.
1264 * This should be used when stat calls will be made on a known list of a many files.
1266 * @see FileBackend::getFileStat()
1268 * @param array $paths Storage paths
1270 abstract public function preloadCache( array $paths );
1273 * Invalidate any in-process file stat and property cache.
1274 * If $paths is given, then only the cache for those files will be cleared.
1276 * @see FileBackend::getFileStat()
1278 * @param array $paths Storage paths (optional)
1280 abstract public function clearCache( array $paths = null );
1283 * Preload file stat information (concurrently if possible) into in-process cache.
1285 * This should be used when stat calls will be made on a known list of a many files.
1286 * This does not make use of the persistent file stat cache.
1288 * @see FileBackend::getFileStat()
1290 * @param array $params Parameters include:
1291 * - srcs : list of source storage paths
1292 * - latest : use the latest available data
1293 * @return bool All requests proceeded without I/O errors (since 1.24)
1294 * @since 1.23
1296 abstract public function preloadFileStat( array $params );
1299 * Lock the files at the given storage paths in the backend.
1300 * This will either lock all the files or none (on failure).
1302 * Callers should consider using getScopedFileLocks() instead.
1304 * @param array $paths Storage paths
1305 * @param int $type LockManager::LOCK_* constant
1306 * @param int $timeout Timeout in seconds (0 means non-blocking) (since 1.24)
1307 * @return StatusValue
1309 final public function lockFiles( array $paths, $type, $timeout = 0 ) {
1310 $paths = array_map( 'FileBackend::normalizeStoragePath', $paths );
1312 return $this->wrapStatus( $this->lockManager->lock( $paths, $type, $timeout ) );
1316 * Unlock the files at the given storage paths in the backend.
1318 * @param array $paths Storage paths
1319 * @param int $type LockManager::LOCK_* constant
1320 * @return StatusValue
1322 final public function unlockFiles( array $paths, $type ) {
1323 $paths = array_map( 'FileBackend::normalizeStoragePath', $paths );
1325 return $this->wrapStatus( $this->lockManager->unlock( $paths, $type ) );
1329 * Lock the files at the given storage paths in the backend.
1330 * This will either lock all the files or none (on failure).
1331 * On failure, the StatusValue object will be updated with errors.
1333 * Once the return value goes out scope, the locks will be released and
1334 * the StatusValue updated. Unlock fatals will not change the StatusValue "OK" value.
1336 * @see ScopedLock::factory()
1338 * @param array $paths List of storage paths or map of lock types to path lists
1339 * @param int|string $type LockManager::LOCK_* constant or "mixed"
1340 * @param StatusValue $status StatusValue to update on lock/unlock
1341 * @param int $timeout Timeout in seconds (0 means non-blocking) (since 1.24)
1342 * @return ScopedLock|null Returns null on failure
1344 final public function getScopedFileLocks(
1345 array $paths, $type, StatusValue $status, $timeout = 0
1347 if ( $type === 'mixed' ) {
1348 foreach ( $paths as &$typePaths ) {
1349 $typePaths = array_map( 'FileBackend::normalizeStoragePath', $typePaths );
1351 } else {
1352 $paths = array_map( 'FileBackend::normalizeStoragePath', $paths );
1355 return ScopedLock::factory( $this->lockManager, $paths, $type, $status, $timeout );
1359 * Get an array of scoped locks needed for a batch of file operations.
1361 * Normally, FileBackend::doOperations() handles locking, unless
1362 * the 'nonLocking' param is passed in. This function is useful if you
1363 * want the files to be locked for a broader scope than just when the
1364 * files are changing. For example, if you need to update DB metadata,
1365 * you may want to keep the files locked until finished.
1367 * @see FileBackend::doOperations()
1369 * @param array $ops List of file operations to FileBackend::doOperations()
1370 * @param StatusValue $status StatusValue to update on lock/unlock
1371 * @return ScopedLock|null
1372 * @since 1.20
1374 abstract public function getScopedLocksForOps( array $ops, StatusValue $status );
1377 * Get the root storage path of this backend.
1378 * All container paths are "subdirectories" of this path.
1380 * @return string Storage path
1381 * @since 1.20
1383 final public function getRootStoragePath() {
1384 return "mwstore://{$this->name}";
1388 * Get the storage path for the given container for this backend
1390 * @param string $container Container name
1391 * @return string Storage path
1392 * @since 1.21
1394 final public function getContainerStoragePath( $container ) {
1395 return $this->getRootStoragePath() . "/{$container}";
1399 * Get the file journal object for this backend
1401 * @return FileJournal
1403 final public function getJournal() {
1404 return $this->fileJournal;
1408 * Convert FSFile 'src' paths to string paths (with an 'srcRef' field set to the FSFile)
1410 * The 'srcRef' field keeps any TempFSFile objects in scope for the backend to have it
1411 * around as long it needs (which may vary greatly depending on configuration)
1413 * @param array $ops File operation batch for FileBaclend::doOperations()
1414 * @return array File operation batch
1416 protected function resolveFSFileObjects( array $ops ) {
1417 foreach ( $ops as &$op ) {
1418 $src = isset( $op['src'] ) ? $op['src'] : null;
1419 if ( $src instanceof FSFile ) {
1420 $op['srcRef'] = $src;
1421 $op['src'] = $src->getPath();
1424 unset( $op );
1426 return $ops;
1430 * Check if a given path is a "mwstore://" path.
1431 * This does not do any further validation or any existence checks.
1433 * @param string $path
1434 * @return bool
1436 final public static function isStoragePath( $path ) {
1437 return ( strpos( $path, 'mwstore://' ) === 0 );
1441 * Split a storage path into a backend name, a container name,
1442 * and a relative file path. The relative path may be the empty string.
1443 * This does not do any path normalization or traversal checks.
1445 * @param string $storagePath
1446 * @return array (backend, container, rel object) or (null, null, null)
1448 final public static function splitStoragePath( $storagePath ) {
1449 if ( self::isStoragePath( $storagePath ) ) {
1450 // Remove the "mwstore://" prefix and split the path
1451 $parts = explode( '/', substr( $storagePath, 10 ), 3 );
1452 if ( count( $parts ) >= 2 && $parts[0] != '' && $parts[1] != '' ) {
1453 if ( count( $parts ) == 3 ) {
1454 return $parts; // e.g. "backend/container/path"
1455 } else {
1456 return [ $parts[0], $parts[1], '' ]; // e.g. "backend/container"
1461 return [ null, null, null ];
1465 * Normalize a storage path by cleaning up directory separators.
1466 * Returns null if the path is not of the format of a valid storage path.
1468 * @param string $storagePath
1469 * @return string|null
1471 final public static function normalizeStoragePath( $storagePath ) {
1472 list( $backend, $container, $relPath ) = self::splitStoragePath( $storagePath );
1473 if ( $relPath !== null ) { // must be for this backend
1474 $relPath = self::normalizeContainerPath( $relPath );
1475 if ( $relPath !== null ) {
1476 return ( $relPath != '' )
1477 ? "mwstore://{$backend}/{$container}/{$relPath}"
1478 : "mwstore://{$backend}/{$container}";
1482 return null;
1486 * Get the parent storage directory of a storage path.
1487 * This returns a path like "mwstore://backend/container",
1488 * "mwstore://backend/container/...", or null if there is no parent.
1490 * @param string $storagePath
1491 * @return string|null
1493 final public static function parentStoragePath( $storagePath ) {
1494 $storagePath = dirname( $storagePath );
1495 list( , , $rel ) = self::splitStoragePath( $storagePath );
1497 return ( $rel === null ) ? null : $storagePath;
1501 * Get the final extension from a storage or FS path
1503 * @param string $path
1504 * @param string $case One of (rawcase, uppercase, lowercase) (since 1.24)
1505 * @return string
1507 final public static function extensionFromPath( $path, $case = 'lowercase' ) {
1508 $i = strrpos( $path, '.' );
1509 $ext = $i ? substr( $path, $i + 1 ) : '';
1511 if ( $case === 'lowercase' ) {
1512 $ext = strtolower( $ext );
1513 } elseif ( $case === 'uppercase' ) {
1514 $ext = strtoupper( $ext );
1517 return $ext;
1521 * Check if a relative path has no directory traversals
1523 * @param string $path
1524 * @return bool
1525 * @since 1.20
1527 final public static function isPathTraversalFree( $path ) {
1528 return ( self::normalizeContainerPath( $path ) !== null );
1532 * Build a Content-Disposition header value per RFC 6266.
1534 * @param string $type One of (attachment, inline)
1535 * @param string $filename Suggested file name (should not contain slashes)
1536 * @throws FileBackendError
1537 * @return string
1538 * @since 1.20
1540 final public static function makeContentDisposition( $type, $filename = '' ) {
1541 $parts = [];
1543 $type = strtolower( $type );
1544 if ( !in_array( $type, [ 'inline', 'attachment' ] ) ) {
1545 throw new InvalidArgumentException( "Invalid Content-Disposition type '$type'." );
1547 $parts[] = $type;
1549 if ( strlen( $filename ) ) {
1550 $parts[] = "filename*=UTF-8''" . rawurlencode( basename( $filename ) );
1553 return implode( ';', $parts );
1557 * Validate and normalize a relative storage path.
1558 * Null is returned if the path involves directory traversal.
1559 * Traversal is insecure for FS backends and broken for others.
1561 * This uses the same traversal protection as Title::secureAndSplit().
1563 * @param string $path Storage path relative to a container
1564 * @return string|null
1566 final protected static function normalizeContainerPath( $path ) {
1567 // Normalize directory separators
1568 $path = strtr( $path, '\\', '/' );
1569 // Collapse any consecutive directory separators
1570 $path = preg_replace( '![/]{2,}!', '/', $path );
1571 // Remove any leading directory separator
1572 $path = ltrim( $path, '/' );
1573 // Use the same traversal protection as Title::secureAndSplit()
1574 if ( strpos( $path, '.' ) !== false ) {
1575 if (
1576 $path === '.' ||
1577 $path === '..' ||
1578 strpos( $path, './' ) === 0 ||
1579 strpos( $path, '../' ) === 0 ||
1580 strpos( $path, '/./' ) !== false ||
1581 strpos( $path, '/../' ) !== false
1583 return null;
1587 return $path;
1591 * Yields the result of the status wrapper callback on either:
1592 * - StatusValue::newGood() if this method is called without parameters
1593 * - StatusValue::newFatal() with all parameters to this method if passed in
1595 * @param ... string
1596 * @return StatusValue
1598 final protected function newStatus() {
1599 $args = func_get_args();
1600 if ( count( $args ) ) {
1601 $sv = call_user_func_array( [ 'StatusValue', 'newFatal' ], $args );
1602 } else {
1603 $sv = StatusValue::newGood();
1606 return $this->wrapStatus( $sv );
1610 * @param StatusValue $sv
1611 * @return StatusValue Modified status or StatusValue subclass
1613 final protected function wrapStatus( StatusValue $sv ) {
1614 return $this->statusWrapper ? call_user_func( $this->statusWrapper, $sv ) : $sv;
1618 * @param string $section
1619 * @return ScopedCallback|null
1621 protected function scopedProfileSection( $section ) {
1622 if ( $this->profiler ) {
1623 call_user_func( [ $this->profiler, 'profileIn' ], $section );
1624 return new ScopedCallback( [ $this->profiler, 'profileOut' ], [ $section ] );
1627 return null;
1630 protected function resetOutputBuffer() {
1631 while ( ob_get_status() ) {
1632 if ( !ob_end_clean() ) {
1633 // Could not remove output buffer handler; abort now
1634 // to avoid getting in some kind of infinite loop.
1635 break;