Merge "Rewrite pref cleanup script"
[lhc/web/wiklou.git] / includes / libs / filebackend / FSFileBackend.php
1 <?php
2 /**
3 * File system based backend.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup FileBackend
22 */
23 use Wikimedia\Timestamp\ConvertibleTimestamp;
24
25 /**
26 * @brief Class for a file system (FS) based file backend.
27 *
28 * All "containers" each map to a directory under the backend's base directory.
29 * For backwards-compatibility, some container paths can be set to custom paths.
30 * The domain ID will not be used in any custom paths, so this should be avoided.
31 *
32 * Having directories with thousands of files will diminish performance.
33 * Sharding can be accomplished by using FileRepo-style hash paths.
34 *
35 * StatusValue messages should avoid mentioning the internal FS paths.
36 * PHP warnings are assumed to be logged rather than output.
37 *
38 * @ingroup FileBackend
39 * @since 1.19
40 */
41 class FSFileBackend extends FileBackendStore {
42 /** @var string Directory holding the container directories */
43 protected $basePath;
44
45 /** @var array Map of container names to root paths for custom container paths */
46 protected $containerPaths = [];
47
48 /** @var int File permission mode */
49 protected $fileMode;
50 /** @var int File permission mode */
51 protected $dirMode;
52
53 /** @var string Required OS username to own files */
54 protected $fileOwner;
55
56 /** @var bool */
57 protected $isWindows;
58 /** @var string OS username running this script */
59 protected $currentUser;
60
61 /** @var array */
62 protected $hadWarningErrors = [];
63
64 /**
65 * @see FileBackendStore::__construct()
66 * Additional $config params include:
67 * - basePath : File system directory that holds containers.
68 * - containerPaths : Map of container names to custom file system directories.
69 * This should only be used for backwards-compatibility.
70 * - fileMode : Octal UNIX file permissions to use on files stored.
71 * - directoryMode : Octal UNIX file permissions to use on directories created.
72 * @param array $config
73 */
74 public function __construct( array $config ) {
75 parent::__construct( $config );
76
77 $this->isWindows = ( strtoupper( substr( PHP_OS, 0, 3 ) ) === 'WIN' );
78 // Remove any possible trailing slash from directories
79 if ( isset( $config['basePath'] ) ) {
80 $this->basePath = rtrim( $config['basePath'], '/' ); // remove trailing slash
81 } else {
82 $this->basePath = null; // none; containers must have explicit paths
83 }
84
85 if ( isset( $config['containerPaths'] ) ) {
86 $this->containerPaths = (array)$config['containerPaths'];
87 foreach ( $this->containerPaths as &$path ) {
88 $path = rtrim( $path, '/' ); // remove trailing slash
89 }
90 }
91
92 $this->fileMode = isset( $config['fileMode'] ) ? $config['fileMode'] : 0644;
93 $this->dirMode = isset( $config['directoryMode'] ) ? $config['directoryMode'] : 0777;
94 if ( isset( $config['fileOwner'] ) && function_exists( 'posix_getuid' ) ) {
95 $this->fileOwner = $config['fileOwner'];
96 // cache this, assuming it doesn't change
97 $this->currentUser = posix_getpwuid( posix_getuid() )['name'];
98 }
99 }
100
101 public function getFeatures() {
102 if ( $this->isWindows && version_compare( PHP_VERSION, '7.1', 'lt' ) ) {
103 // PHP before 7.1 used 8-bit code page for filesystem paths on Windows;
104 // See http://php.net/manual/en/migration71.windows-support.php
105 return 0;
106 } else {
107 return FileBackend::ATTR_UNICODE_PATHS;
108 }
109 }
110
111 protected function resolveContainerPath( $container, $relStoragePath ) {
112 // Check that container has a root directory
113 if ( isset( $this->containerPaths[$container] ) || isset( $this->basePath ) ) {
114 // Check for sane relative paths (assume the base paths are OK)
115 if ( $this->isLegalRelPath( $relStoragePath ) ) {
116 return $relStoragePath;
117 }
118 }
119
120 return null;
121 }
122
123 /**
124 * Sanity check a relative file system path for validity
125 *
126 * @param string $path Normalized relative path
127 * @return bool
128 */
129 protected function isLegalRelPath( $path ) {
130 // Check for file names longer than 255 chars
131 if ( preg_match( '![^/]{256}!', $path ) ) { // ext3/NTFS
132 return false;
133 }
134 if ( $this->isWindows ) { // NTFS
135 return !preg_match( '![:*?"<>|]!', $path );
136 } else {
137 return true;
138 }
139 }
140
141 /**
142 * Given the short (unresolved) and full (resolved) name of
143 * a container, return the file system path of the container.
144 *
145 * @param string $shortCont
146 * @param string $fullCont
147 * @return string|null
148 */
149 protected function containerFSRoot( $shortCont, $fullCont ) {
150 if ( isset( $this->containerPaths[$shortCont] ) ) {
151 return $this->containerPaths[$shortCont];
152 } elseif ( isset( $this->basePath ) ) {
153 return "{$this->basePath}/{$fullCont}";
154 }
155
156 return null; // no container base path defined
157 }
158
159 /**
160 * Get the absolute file system path for a storage path
161 *
162 * @param string $storagePath Storage path
163 * @return string|null
164 */
165 protected function resolveToFSPath( $storagePath ) {
166 list( $fullCont, $relPath ) = $this->resolveStoragePathReal( $storagePath );
167 if ( $relPath === null ) {
168 return null; // invalid
169 }
170 list( , $shortCont, ) = FileBackend::splitStoragePath( $storagePath );
171 $fsPath = $this->containerFSRoot( $shortCont, $fullCont ); // must be valid
172 if ( $relPath != '' ) {
173 $fsPath .= "/{$relPath}";
174 }
175
176 return $fsPath;
177 }
178
179 public function isPathUsableInternal( $storagePath ) {
180 $fsPath = $this->resolveToFSPath( $storagePath );
181 if ( $fsPath === null ) {
182 return false; // invalid
183 }
184 $parentDir = dirname( $fsPath );
185
186 if ( file_exists( $fsPath ) ) {
187 $ok = is_file( $fsPath ) && is_writable( $fsPath );
188 } else {
189 $ok = is_dir( $parentDir ) && is_writable( $parentDir );
190 }
191
192 if ( $this->fileOwner !== null && $this->currentUser !== $this->fileOwner ) {
193 $ok = false;
194 trigger_error( __METHOD__ . ": PHP process owner is not '{$this->fileOwner}'." );
195 }
196
197 return $ok;
198 }
199
200 protected function doCreateInternal( array $params ) {
201 $status = $this->newStatus();
202
203 $dest = $this->resolveToFSPath( $params['dst'] );
204 if ( $dest === null ) {
205 $status->fatal( 'backend-fail-invalidpath', $params['dst'] );
206
207 return $status;
208 }
209
210 if ( !empty( $params['async'] ) ) { // deferred
211 $tempFile = TempFSFile::factory( 'create_', 'tmp', $this->tmpDirectory );
212 if ( !$tempFile ) {
213 $status->fatal( 'backend-fail-create', $params['dst'] );
214
215 return $status;
216 }
217 $this->trapWarnings();
218 $bytes = file_put_contents( $tempFile->getPath(), $params['content'] );
219 $this->untrapWarnings();
220 if ( $bytes === false ) {
221 $status->fatal( 'backend-fail-create', $params['dst'] );
222
223 return $status;
224 }
225 $cmd = implode( ' ', [
226 $this->isWindows ? 'COPY /B /Y' : 'cp', // (binary, overwrite)
227 escapeshellarg( $this->cleanPathSlashes( $tempFile->getPath() ) ),
228 escapeshellarg( $this->cleanPathSlashes( $dest ) )
229 ] );
230 $handler = function ( $errors, StatusValue $status, array $params, $cmd ) {
231 if ( $errors !== '' && !( $this->isWindows && $errors[0] === " " ) ) {
232 $status->fatal( 'backend-fail-create', $params['dst'] );
233 trigger_error( "$cmd\n$errors", E_USER_WARNING ); // command output
234 }
235 };
236 $status->value = new FSFileOpHandle( $this, $params, $handler, $cmd, $dest );
237 $tempFile->bind( $status->value );
238 } else { // immediate write
239 $this->trapWarnings();
240 $bytes = file_put_contents( $dest, $params['content'] );
241 $this->untrapWarnings();
242 if ( $bytes === false ) {
243 $status->fatal( 'backend-fail-create', $params['dst'] );
244
245 return $status;
246 }
247 $this->chmod( $dest );
248 }
249
250 return $status;
251 }
252
253 protected function doStoreInternal( array $params ) {
254 $status = $this->newStatus();
255
256 $dest = $this->resolveToFSPath( $params['dst'] );
257 if ( $dest === null ) {
258 $status->fatal( 'backend-fail-invalidpath', $params['dst'] );
259
260 return $status;
261 }
262
263 if ( !empty( $params['async'] ) ) { // deferred
264 $cmd = implode( ' ', [
265 $this->isWindows ? 'COPY /B /Y' : 'cp', // (binary, overwrite)
266 escapeshellarg( $this->cleanPathSlashes( $params['src'] ) ),
267 escapeshellarg( $this->cleanPathSlashes( $dest ) )
268 ] );
269 $handler = function ( $errors, StatusValue $status, array $params, $cmd ) {
270 if ( $errors !== '' && !( $this->isWindows && $errors[0] === " " ) ) {
271 $status->fatal( 'backend-fail-store', $params['src'], $params['dst'] );
272 trigger_error( "$cmd\n$errors", E_USER_WARNING ); // command output
273 }
274 };
275 $status->value = new FSFileOpHandle( $this, $params, $handler, $cmd, $dest );
276 } else { // immediate write
277 $this->trapWarnings();
278 $ok = copy( $params['src'], $dest );
279 $this->untrapWarnings();
280 // In some cases (at least over NFS), copy() returns true when it fails
281 if ( !$ok || ( filesize( $params['src'] ) !== filesize( $dest ) ) ) {
282 if ( $ok ) { // PHP bug
283 unlink( $dest ); // remove broken file
284 trigger_error( __METHOD__ . ": copy() failed but returned true." );
285 }
286 $status->fatal( 'backend-fail-store', $params['src'], $params['dst'] );
287
288 return $status;
289 }
290 $this->chmod( $dest );
291 }
292
293 return $status;
294 }
295
296 protected function doCopyInternal( array $params ) {
297 $status = $this->newStatus();
298
299 $source = $this->resolveToFSPath( $params['src'] );
300 if ( $source === null ) {
301 $status->fatal( 'backend-fail-invalidpath', $params['src'] );
302
303 return $status;
304 }
305
306 $dest = $this->resolveToFSPath( $params['dst'] );
307 if ( $dest === null ) {
308 $status->fatal( 'backend-fail-invalidpath', $params['dst'] );
309
310 return $status;
311 }
312
313 if ( !is_file( $source ) ) {
314 if ( empty( $params['ignoreMissingSource'] ) ) {
315 $status->fatal( 'backend-fail-copy', $params['src'] );
316 }
317
318 return $status; // do nothing; either OK or bad status
319 }
320
321 if ( !empty( $params['async'] ) ) { // deferred
322 $cmd = implode( ' ', [
323 $this->isWindows ? 'COPY /B /Y' : 'cp', // (binary, overwrite)
324 escapeshellarg( $this->cleanPathSlashes( $source ) ),
325 escapeshellarg( $this->cleanPathSlashes( $dest ) )
326 ] );
327 $handler = function ( $errors, StatusValue $status, array $params, $cmd ) {
328 if ( $errors !== '' && !( $this->isWindows && $errors[0] === " " ) ) {
329 $status->fatal( 'backend-fail-copy', $params['src'], $params['dst'] );
330 trigger_error( "$cmd\n$errors", E_USER_WARNING ); // command output
331 }
332 };
333 $status->value = new FSFileOpHandle( $this, $params, $handler, $cmd, $dest );
334 } else { // immediate write
335 $this->trapWarnings();
336 $ok = ( $source === $dest ) ? true : copy( $source, $dest );
337 $this->untrapWarnings();
338 // In some cases (at least over NFS), copy() returns true when it fails
339 if ( !$ok || ( filesize( $source ) !== filesize( $dest ) ) ) {
340 if ( $ok ) { // PHP bug
341 $this->trapWarnings();
342 unlink( $dest ); // remove broken file
343 $this->untrapWarnings();
344 trigger_error( __METHOD__ . ": copy() failed but returned true." );
345 }
346 $status->fatal( 'backend-fail-copy', $params['src'], $params['dst'] );
347
348 return $status;
349 }
350 $this->chmod( $dest );
351 }
352
353 return $status;
354 }
355
356 protected function doMoveInternal( array $params ) {
357 $status = $this->newStatus();
358
359 $source = $this->resolveToFSPath( $params['src'] );
360 if ( $source === null ) {
361 $status->fatal( 'backend-fail-invalidpath', $params['src'] );
362
363 return $status;
364 }
365
366 $dest = $this->resolveToFSPath( $params['dst'] );
367 if ( $dest === null ) {
368 $status->fatal( 'backend-fail-invalidpath', $params['dst'] );
369
370 return $status;
371 }
372
373 if ( !is_file( $source ) ) {
374 if ( empty( $params['ignoreMissingSource'] ) ) {
375 $status->fatal( 'backend-fail-move', $params['src'] );
376 }
377
378 return $status; // do nothing; either OK or bad status
379 }
380
381 if ( !empty( $params['async'] ) ) { // deferred
382 $cmd = implode( ' ', [
383 $this->isWindows ? 'MOVE /Y' : 'mv', // (overwrite)
384 escapeshellarg( $this->cleanPathSlashes( $source ) ),
385 escapeshellarg( $this->cleanPathSlashes( $dest ) )
386 ] );
387 $handler = function ( $errors, StatusValue $status, array $params, $cmd ) {
388 if ( $errors !== '' && !( $this->isWindows && $errors[0] === " " ) ) {
389 $status->fatal( 'backend-fail-move', $params['src'], $params['dst'] );
390 trigger_error( "$cmd\n$errors", E_USER_WARNING ); // command output
391 }
392 };
393 $status->value = new FSFileOpHandle( $this, $params, $handler, $cmd );
394 } else { // immediate write
395 $this->trapWarnings();
396 $ok = ( $source === $dest ) ? true : rename( $source, $dest );
397 $this->untrapWarnings();
398 clearstatcache(); // file no longer at source
399 if ( !$ok ) {
400 $status->fatal( 'backend-fail-move', $params['src'], $params['dst'] );
401
402 return $status;
403 }
404 }
405
406 return $status;
407 }
408
409 protected function doDeleteInternal( array $params ) {
410 $status = $this->newStatus();
411
412 $source = $this->resolveToFSPath( $params['src'] );
413 if ( $source === null ) {
414 $status->fatal( 'backend-fail-invalidpath', $params['src'] );
415
416 return $status;
417 }
418
419 if ( !is_file( $source ) ) {
420 if ( empty( $params['ignoreMissingSource'] ) ) {
421 $status->fatal( 'backend-fail-delete', $params['src'] );
422 }
423
424 return $status; // do nothing; either OK or bad status
425 }
426
427 if ( !empty( $params['async'] ) ) { // deferred
428 $cmd = implode( ' ', [
429 $this->isWindows ? 'DEL' : 'unlink',
430 escapeshellarg( $this->cleanPathSlashes( $source ) )
431 ] );
432 $handler = function ( $errors, StatusValue $status, array $params, $cmd ) {
433 if ( $errors !== '' && !( $this->isWindows && $errors[0] === " " ) ) {
434 $status->fatal( 'backend-fail-delete', $params['src'] );
435 trigger_error( "$cmd\n$errors", E_USER_WARNING ); // command output
436 }
437 };
438 $status->value = new FSFileOpHandle( $this, $params, $handler, $cmd );
439 } else { // immediate write
440 $this->trapWarnings();
441 $ok = unlink( $source );
442 $this->untrapWarnings();
443 if ( !$ok ) {
444 $status->fatal( 'backend-fail-delete', $params['src'] );
445
446 return $status;
447 }
448 }
449
450 return $status;
451 }
452
453 /**
454 * @param string $fullCont
455 * @param string $dirRel
456 * @param array $params
457 * @return StatusValue
458 */
459 protected function doPrepareInternal( $fullCont, $dirRel, array $params ) {
460 $status = $this->newStatus();
461 list( , $shortCont, ) = FileBackend::splitStoragePath( $params['dir'] );
462 $contRoot = $this->containerFSRoot( $shortCont, $fullCont ); // must be valid
463 $dir = ( $dirRel != '' ) ? "{$contRoot}/{$dirRel}" : $contRoot;
464 $existed = is_dir( $dir ); // already there?
465 // Create the directory and its parents as needed...
466 $this->trapWarnings();
467 if ( !$existed && !mkdir( $dir, $this->dirMode, true ) && !is_dir( $dir ) ) {
468 $this->logger->error( __METHOD__ . ": cannot create directory $dir" );
469 $status->fatal( 'directorycreateerror', $params['dir'] ); // fails on races
470 } elseif ( !is_writable( $dir ) ) {
471 $this->logger->error( __METHOD__ . ": directory $dir is read-only" );
472 $status->fatal( 'directoryreadonlyerror', $params['dir'] );
473 } elseif ( !is_readable( $dir ) ) {
474 $this->logger->error( __METHOD__ . ": directory $dir is not readable" );
475 $status->fatal( 'directorynotreadableerror', $params['dir'] );
476 }
477 $this->untrapWarnings();
478 // Respect any 'noAccess' or 'noListing' flags...
479 if ( is_dir( $dir ) && !$existed ) {
480 $status->merge( $this->doSecureInternal( $fullCont, $dirRel, $params ) );
481 }
482
483 return $status;
484 }
485
486 protected function doSecureInternal( $fullCont, $dirRel, array $params ) {
487 $status = $this->newStatus();
488 list( , $shortCont, ) = FileBackend::splitStoragePath( $params['dir'] );
489 $contRoot = $this->containerFSRoot( $shortCont, $fullCont ); // must be valid
490 $dir = ( $dirRel != '' ) ? "{$contRoot}/{$dirRel}" : $contRoot;
491 // Seed new directories with a blank index.html, to prevent crawling...
492 if ( !empty( $params['noListing'] ) && !file_exists( "{$dir}/index.html" ) ) {
493 $this->trapWarnings();
494 $bytes = file_put_contents( "{$dir}/index.html", $this->indexHtmlPrivate() );
495 $this->untrapWarnings();
496 if ( $bytes === false ) {
497 $status->fatal( 'backend-fail-create', $params['dir'] . '/index.html' );
498 }
499 }
500 // Add a .htaccess file to the root of the container...
501 if ( !empty( $params['noAccess'] ) && !file_exists( "{$contRoot}/.htaccess" ) ) {
502 $this->trapWarnings();
503 $bytes = file_put_contents( "{$contRoot}/.htaccess", $this->htaccessPrivate() );
504 $this->untrapWarnings();
505 if ( $bytes === false ) {
506 $storeDir = "mwstore://{$this->name}/{$shortCont}";
507 $status->fatal( 'backend-fail-create', "{$storeDir}/.htaccess" );
508 }
509 }
510
511 return $status;
512 }
513
514 protected function doPublishInternal( $fullCont, $dirRel, array $params ) {
515 $status = $this->newStatus();
516 list( , $shortCont, ) = FileBackend::splitStoragePath( $params['dir'] );
517 $contRoot = $this->containerFSRoot( $shortCont, $fullCont ); // must be valid
518 $dir = ( $dirRel != '' ) ? "{$contRoot}/{$dirRel}" : $contRoot;
519 // Unseed new directories with a blank index.html, to allow crawling...
520 if ( !empty( $params['listing'] ) && is_file( "{$dir}/index.html" ) ) {
521 $exists = ( file_get_contents( "{$dir}/index.html" ) === $this->indexHtmlPrivate() );
522 $this->trapWarnings();
523 if ( $exists && !unlink( "{$dir}/index.html" ) ) { // reverse secure()
524 $status->fatal( 'backend-fail-delete', $params['dir'] . '/index.html' );
525 }
526 $this->untrapWarnings();
527 }
528 // Remove the .htaccess file from the root of the container...
529 if ( !empty( $params['access'] ) && is_file( "{$contRoot}/.htaccess" ) ) {
530 $exists = ( file_get_contents( "{$contRoot}/.htaccess" ) === $this->htaccessPrivate() );
531 $this->trapWarnings();
532 if ( $exists && !unlink( "{$contRoot}/.htaccess" ) ) { // reverse secure()
533 $storeDir = "mwstore://{$this->name}/{$shortCont}";
534 $status->fatal( 'backend-fail-delete', "{$storeDir}/.htaccess" );
535 }
536 $this->untrapWarnings();
537 }
538
539 return $status;
540 }
541
542 protected function doCleanInternal( $fullCont, $dirRel, array $params ) {
543 $status = $this->newStatus();
544 list( , $shortCont, ) = FileBackend::splitStoragePath( $params['dir'] );
545 $contRoot = $this->containerFSRoot( $shortCont, $fullCont ); // must be valid
546 $dir = ( $dirRel != '' ) ? "{$contRoot}/{$dirRel}" : $contRoot;
547 $this->trapWarnings();
548 if ( is_dir( $dir ) ) {
549 rmdir( $dir ); // remove directory if empty
550 }
551 $this->untrapWarnings();
552
553 return $status;
554 }
555
556 protected function doGetFileStat( array $params ) {
557 $source = $this->resolveToFSPath( $params['src'] );
558 if ( $source === null ) {
559 return false; // invalid storage path
560 }
561
562 $this->trapWarnings(); // don't trust 'false' if there were errors
563 $stat = is_file( $source ) ? stat( $source ) : false; // regular files only
564 $hadError = $this->untrapWarnings();
565
566 if ( $stat ) {
567 $ct = new ConvertibleTimestamp( $stat['mtime'] );
568
569 return [
570 'mtime' => $ct->getTimestamp( TS_MW ),
571 'size' => $stat['size']
572 ];
573 } elseif ( !$hadError ) {
574 return false; // file does not exist
575 } else {
576 return null; // failure
577 }
578 }
579
580 protected function doClearCache( array $paths = null ) {
581 clearstatcache(); // clear the PHP file stat cache
582 }
583
584 protected function doDirectoryExists( $fullCont, $dirRel, array $params ) {
585 list( , $shortCont, ) = FileBackend::splitStoragePath( $params['dir'] );
586 $contRoot = $this->containerFSRoot( $shortCont, $fullCont ); // must be valid
587 $dir = ( $dirRel != '' ) ? "{$contRoot}/{$dirRel}" : $contRoot;
588
589 $this->trapWarnings(); // don't trust 'false' if there were errors
590 $exists = is_dir( $dir );
591 $hadError = $this->untrapWarnings();
592
593 return $hadError ? null : $exists;
594 }
595
596 /**
597 * @see FileBackendStore::getDirectoryListInternal()
598 * @param string $fullCont
599 * @param string $dirRel
600 * @param array $params
601 * @return array|FSFileBackendDirList|null
602 */
603 public function getDirectoryListInternal( $fullCont, $dirRel, array $params ) {
604 list( , $shortCont, ) = FileBackend::splitStoragePath( $params['dir'] );
605 $contRoot = $this->containerFSRoot( $shortCont, $fullCont ); // must be valid
606 $dir = ( $dirRel != '' ) ? "{$contRoot}/{$dirRel}" : $contRoot;
607 $exists = is_dir( $dir );
608 if ( !$exists ) {
609 $this->logger->warning( __METHOD__ . "() given directory does not exist: '$dir'\n" );
610
611 return []; // nothing under this dir
612 } elseif ( !is_readable( $dir ) ) {
613 $this->logger->warning( __METHOD__ . "() given directory is unreadable: '$dir'\n" );
614
615 return null; // bad permissions?
616 }
617
618 return new FSFileBackendDirList( $dir, $params );
619 }
620
621 /**
622 * @see FileBackendStore::getFileListInternal()
623 * @param string $fullCont
624 * @param string $dirRel
625 * @param array $params
626 * @return array|FSFileBackendFileList|null
627 */
628 public function getFileListInternal( $fullCont, $dirRel, array $params ) {
629 list( , $shortCont, ) = FileBackend::splitStoragePath( $params['dir'] );
630 $contRoot = $this->containerFSRoot( $shortCont, $fullCont ); // must be valid
631 $dir = ( $dirRel != '' ) ? "{$contRoot}/{$dirRel}" : $contRoot;
632 $exists = is_dir( $dir );
633 if ( !$exists ) {
634 $this->logger->warning( __METHOD__ . "() given directory does not exist: '$dir'\n" );
635
636 return []; // nothing under this dir
637 } elseif ( !is_readable( $dir ) ) {
638 $this->logger->warning( __METHOD__ . "() given directory is unreadable: '$dir'\n" );
639
640 return null; // bad permissions?
641 }
642
643 return new FSFileBackendFileList( $dir, $params );
644 }
645
646 protected function doGetLocalReferenceMulti( array $params ) {
647 $fsFiles = []; // (path => FSFile)
648
649 foreach ( $params['srcs'] as $src ) {
650 $source = $this->resolveToFSPath( $src );
651 if ( $source === null || !is_file( $source ) ) {
652 $fsFiles[$src] = null; // invalid path or file does not exist
653 } else {
654 $fsFiles[$src] = new FSFile( $source );
655 }
656 }
657
658 return $fsFiles;
659 }
660
661 protected function doGetLocalCopyMulti( array $params ) {
662 $tmpFiles = []; // (path => TempFSFile)
663
664 foreach ( $params['srcs'] as $src ) {
665 $source = $this->resolveToFSPath( $src );
666 if ( $source === null ) {
667 $tmpFiles[$src] = null; // invalid path
668 } else {
669 // Create a new temporary file with the same extension...
670 $ext = FileBackend::extensionFromPath( $src );
671 $tmpFile = TempFSFile::factory( 'localcopy_', $ext, $this->tmpDirectory );
672 if ( !$tmpFile ) {
673 $tmpFiles[$src] = null;
674 } else {
675 $tmpPath = $tmpFile->getPath();
676 // Copy the source file over the temp file
677 $this->trapWarnings();
678 $ok = copy( $source, $tmpPath );
679 $this->untrapWarnings();
680 if ( !$ok ) {
681 $tmpFiles[$src] = null;
682 } else {
683 $this->chmod( $tmpPath );
684 $tmpFiles[$src] = $tmpFile;
685 }
686 }
687 }
688 }
689
690 return $tmpFiles;
691 }
692
693 protected function directoriesAreVirtual() {
694 return false;
695 }
696
697 /**
698 * @param FSFileOpHandle[] $fileOpHandles
699 *
700 * @return StatusValue[]
701 */
702 protected function doExecuteOpHandlesInternal( array $fileOpHandles ) {
703 $statuses = [];
704
705 $pipes = [];
706 foreach ( $fileOpHandles as $index => $fileOpHandle ) {
707 $pipes[$index] = popen( "{$fileOpHandle->cmd} 2>&1", 'r' );
708 }
709
710 $errs = [];
711 foreach ( $pipes as $index => $pipe ) {
712 // Result will be empty on success in *NIX. On Windows,
713 // it may be something like " 1 file(s) [copied|moved].".
714 $errs[$index] = stream_get_contents( $pipe );
715 fclose( $pipe );
716 }
717
718 foreach ( $fileOpHandles as $index => $fileOpHandle ) {
719 $status = $this->newStatus();
720 $function = $fileOpHandle->call;
721 $function( $errs[$index], $status, $fileOpHandle->params, $fileOpHandle->cmd );
722 $statuses[$index] = $status;
723 if ( $status->isOK() && $fileOpHandle->chmodPath ) {
724 $this->chmod( $fileOpHandle->chmodPath );
725 }
726 }
727
728 clearstatcache(); // files changed
729 return $statuses;
730 }
731
732 /**
733 * Chmod a file, suppressing the warnings
734 *
735 * @param string $path Absolute file system path
736 * @return bool Success
737 */
738 protected function chmod( $path ) {
739 $this->trapWarnings();
740 $ok = chmod( $path, $this->fileMode );
741 $this->untrapWarnings();
742
743 return $ok;
744 }
745
746 /**
747 * Return the text of an index.html file to hide directory listings
748 *
749 * @return string
750 */
751 protected function indexHtmlPrivate() {
752 return '';
753 }
754
755 /**
756 * Return the text of a .htaccess file to make a directory private
757 *
758 * @return string
759 */
760 protected function htaccessPrivate() {
761 return "Deny from all\n";
762 }
763
764 /**
765 * Clean up directory separators for the given OS
766 *
767 * @param string $path FS path
768 * @return string
769 */
770 protected function cleanPathSlashes( $path ) {
771 return $this->isWindows ? strtr( $path, '/', '\\' ) : $path;
772 }
773
774 /**
775 * Listen for E_WARNING errors and track whether any happen
776 */
777 protected function trapWarnings() {
778 $this->hadWarningErrors[] = false; // push to stack
779 set_error_handler( [ $this, 'handleWarning' ], E_WARNING );
780 }
781
782 /**
783 * Stop listening for E_WARNING errors and return true if any happened
784 *
785 * @return bool
786 */
787 protected function untrapWarnings() {
788 restore_error_handler(); // restore previous handler
789 return array_pop( $this->hadWarningErrors ); // pop from stack
790 }
791
792 /**
793 * @param int $errno
794 * @param string $errstr
795 * @return bool
796 * @access private
797 */
798 public function handleWarning( $errno, $errstr ) {
799 $this->logger->error( $errstr ); // more detailed error logging
800 $this->hadWarningErrors[count( $this->hadWarningErrors ) - 1] = true;
801
802 return true; // suppress from PHP handler
803 }
804 }
805
806 /**
807 * @see FileBackendStoreOpHandle
808 */
809 class FSFileOpHandle extends FileBackendStoreOpHandle {
810 public $cmd; // string; shell command
811 public $chmodPath; // string; file to chmod
812
813 /**
814 * @param FSFileBackend $backend
815 * @param array $params
816 * @param callable $call
817 * @param string $cmd
818 * @param int|null $chmodPath
819 */
820 public function __construct(
821 FSFileBackend $backend, array $params, $call, $cmd, $chmodPath = null
822 ) {
823 $this->backend = $backend;
824 $this->params = $params;
825 $this->call = $call;
826 $this->cmd = $cmd;
827 $this->chmodPath = $chmodPath;
828 }
829 }
830
831 /**
832 * Wrapper around RecursiveDirectoryIterator/DirectoryIterator that
833 * catches exception or does any custom behavoir that we may want.
834 * Do not use this class from places outside FSFileBackend.
835 *
836 * @ingroup FileBackend
837 */
838 abstract class FSFileBackendList implements Iterator {
839 /** @var Iterator */
840 protected $iter;
841
842 /** @var int */
843 protected $suffixStart;
844
845 /** @var int */
846 protected $pos = 0;
847
848 /** @var array */
849 protected $params = [];
850
851 /**
852 * @param string $dir File system directory
853 * @param array $params
854 */
855 public function __construct( $dir, array $params ) {
856 $path = realpath( $dir ); // normalize
857 if ( $path === false ) {
858 $path = $dir;
859 }
860 $this->suffixStart = strlen( $path ) + 1; // size of "path/to/dir/"
861 $this->params = $params;
862
863 try {
864 $this->iter = $this->initIterator( $path );
865 } catch ( UnexpectedValueException $e ) {
866 $this->iter = null; // bad permissions? deleted?
867 }
868 }
869
870 /**
871 * Return an appropriate iterator object to wrap
872 *
873 * @param string $dir File system directory
874 * @return Iterator
875 */
876 protected function initIterator( $dir ) {
877 if ( !empty( $this->params['topOnly'] ) ) { // non-recursive
878 # Get an iterator that will get direct sub-nodes
879 return new DirectoryIterator( $dir );
880 } else { // recursive
881 # Get an iterator that will return leaf nodes (non-directories)
882 # RecursiveDirectoryIterator extends FilesystemIterator.
883 # FilesystemIterator::SKIP_DOTS default is inconsistent in PHP 5.3.x.
884 $flags = FilesystemIterator::CURRENT_AS_SELF | FilesystemIterator::SKIP_DOTS;
885
886 return new RecursiveIteratorIterator(
887 new RecursiveDirectoryIterator( $dir, $flags ),
888 RecursiveIteratorIterator::CHILD_FIRST // include dirs
889 );
890 }
891 }
892
893 /**
894 * @see Iterator::key()
895 * @return int
896 */
897 public function key() {
898 return $this->pos;
899 }
900
901 /**
902 * @see Iterator::current()
903 * @return string|bool String or false
904 */
905 public function current() {
906 return $this->getRelPath( $this->iter->current()->getPathname() );
907 }
908
909 /**
910 * @see Iterator::next()
911 * @throws FileBackendError
912 */
913 public function next() {
914 try {
915 $this->iter->next();
916 $this->filterViaNext();
917 } catch ( UnexpectedValueException $e ) { // bad permissions? deleted?
918 throw new FileBackendError( "File iterator gave UnexpectedValueException." );
919 }
920 ++$this->pos;
921 }
922
923 /**
924 * @see Iterator::rewind()
925 * @throws FileBackendError
926 */
927 public function rewind() {
928 $this->pos = 0;
929 try {
930 $this->iter->rewind();
931 $this->filterViaNext();
932 } catch ( UnexpectedValueException $e ) { // bad permissions? deleted?
933 throw new FileBackendError( "File iterator gave UnexpectedValueException." );
934 }
935 }
936
937 /**
938 * @see Iterator::valid()
939 * @return bool
940 */
941 public function valid() {
942 return $this->iter && $this->iter->valid();
943 }
944
945 /**
946 * Filter out items by advancing to the next ones
947 */
948 protected function filterViaNext() {
949 }
950
951 /**
952 * Return only the relative path and normalize slashes to FileBackend-style.
953 * Uses the "real path" since the suffix is based upon that.
954 *
955 * @param string $dir
956 * @return string
957 */
958 protected function getRelPath( $dir ) {
959 $path = realpath( $dir );
960 if ( $path === false ) {
961 $path = $dir;
962 }
963
964 return strtr( substr( $path, $this->suffixStart ), '\\', '/' );
965 }
966 }
967
968 class FSFileBackendDirList extends FSFileBackendList {
969 protected function filterViaNext() {
970 while ( $this->iter->valid() ) {
971 if ( $this->iter->current()->isDot() || !$this->iter->current()->isDir() ) {
972 $this->iter->next(); // skip non-directories and dot files
973 } else {
974 break;
975 }
976 }
977 }
978 }
979
980 class FSFileBackendFileList extends FSFileBackendList {
981 protected function filterViaNext() {
982 while ( $this->iter->valid() ) {
983 if ( !$this->iter->current()->isFile() ) {
984 $this->iter->next(); // skip non-files and dot files
985 } else {
986 break;
987 }
988 }
989 }
990 }