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 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781
|
<?php
declare(strict_types=1);
namespace PhpMyAdmin;
use ZipArchive;
use function __;
use function basename;
use function bin2hex;
use function bzopen;
use function bzread;
use function extension_loaded;
use function fclose;
use function feof;
use function file_get_contents;
use function fopen;
use function fread;
use function function_exists;
use function gzopen;
use function gzread;
use function is_link;
use function is_readable;
use function is_string;
use function is_uploaded_file;
use function mb_strcut;
use function move_uploaded_file;
use function ob_end_clean;
use function ob_start;
use function sprintf;
use function strlen;
use function tempnam;
use function trim;
use function unlink;
use const UPLOAD_ERR_CANT_WRITE;
use const UPLOAD_ERR_EXTENSION;
use const UPLOAD_ERR_FORM_SIZE;
use const UPLOAD_ERR_INI_SIZE;
use const UPLOAD_ERR_NO_FILE;
use const UPLOAD_ERR_NO_TMP_DIR;
use const UPLOAD_ERR_OK;
use const UPLOAD_ERR_PARTIAL;
/**
* File wrapper class
*
* @todo when uploading a file into a blob field, should we also consider using
* chunks like in import? UPDATE `table` SET `field` = `field` + [chunk]
*/
class File
{
/** @var string the temporary file name */
protected $name = null;
/** @var string the content */
protected $content = null;
/** @var Message|null the error message */
protected $errorMessage = null;
/** @var bool whether the file is temporary or not */
protected $isTemp = false;
/** @var string type of compression */
protected $compression = null;
/** @var int */
protected $offset = 0;
/** @var int size of chunk to read with every step */
protected $chunkSize = 32768;
/** @var resource|null file handle */
protected $handle = null;
/** @var bool whether to decompress content before returning */
protected $decompress = false;
/** @var string charset of file */
protected $charset = null;
/** @var ZipExtension */
private $zipExtension;
/**
* @param bool|string $name file name or false
*/
public function __construct($name = false)
{
if ($name && is_string($name)) {
$this->setName($name);
}
if (! extension_loaded('zip')) {
return;
}
$this->zipExtension = new ZipExtension(new ZipArchive());
}
/**
* destructor
*
* @see File::cleanUp()
*/
public function __destruct()
{
$this->cleanUp();
}
/**
* deletes file if it is temporary, usually from a moved upload file
*/
public function cleanUp(): bool
{
if ($this->isTemp()) {
return $this->delete();
}
return true;
}
/**
* deletes the file
*/
public function delete(): bool
{
return unlink((string) $this->getName());
}
/**
* checks or sets the temp flag for this file
* file objects with temp flags are deleted with object destruction
*
* @param bool $is_temp sets the temp flag
*/
public function isTemp(?bool $is_temp = null): bool
{
if ($is_temp !== null) {
$this->isTemp = $is_temp;
}
return $this->isTemp;
}
/**
* accessor
*
* @param string|null $name file name
*/
public function setName(?string $name): void
{
$this->name = trim((string) $name);
}
/**
* Gets file content
*
* @return string|false the binary file content, or false if no content
*/
public function getRawContent()
{
if ($this->content !== null) {
return $this->content;
}
if ($this->isUploaded() && ! $this->checkUploadedFile()) {
return false;
}
if (! $this->isReadable()) {
return false;
}
$this->content = file_get_contents((string) $this->getName());
return $this->content;
}
/**
* Gets file content
*
* @return string|false the binary file content as a string,
* or false if no content
*/
public function getContent()
{
$result = $this->getRawContent();
if ($result === false) {
return false;
}
return '0x' . bin2hex($result);
}
/**
* Whether file is uploaded.
*/
public function isUploaded(): bool
{
if ($this->getName() === null) {
return false;
}
return is_uploaded_file($this->getName());
}
/**
* accessor
*
* @return string|null File::$_name
*/
public function getName(): ?string
{
return $this->name;
}
/**
* Initializes object from uploaded file.
*
* @param string $name name of file uploaded
*/
public function setUploadedFile(string $name): bool
{
$this->setName($name);
if (! $this->isUploaded()) {
$this->setName(null);
$this->errorMessage = Message::error(__('File was not an uploaded file.'));
return false;
}
return true;
}
/**
* Loads uploaded file from table change request.
*
* @param string $key the md5 hash of the column name
* @param string $rownumber number of row to process
*/
public function setUploadedFromTblChangeRequest(
string $key,
string $rownumber
): bool {
if (
! isset($_FILES['fields_upload'])
|| empty($_FILES['fields_upload']['name']['multi_edit'][$rownumber][$key])
) {
return false;
}
$file = $this->fetchUploadedFromTblChangeRequestMultiple($_FILES['fields_upload'], $rownumber, $key);
switch ($file['error']) {
case UPLOAD_ERR_OK:
return $this->setUploadedFile($file['tmp_name']);
case UPLOAD_ERR_NO_FILE:
break;
case UPLOAD_ERR_INI_SIZE:
$this->errorMessage = Message::error(__(
'The uploaded file exceeds the upload_max_filesize directive in php.ini.'
));
break;
case UPLOAD_ERR_FORM_SIZE:
$this->errorMessage = Message::error(__(
'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.'
));
break;
case UPLOAD_ERR_PARTIAL:
$this->errorMessage = Message::error(__(
'The uploaded file was only partially uploaded.'
));
break;
case UPLOAD_ERR_NO_TMP_DIR:
$this->errorMessage = Message::error(__('Missing a temporary folder.'));
break;
case UPLOAD_ERR_CANT_WRITE:
$this->errorMessage = Message::error(__('Failed to write file to disk.'));
break;
case UPLOAD_ERR_EXTENSION:
$this->errorMessage = Message::error(__('File upload stopped by extension.'));
break;
default:
$this->errorMessage = Message::error(__('Unknown error in file upload.'));
}
return false;
}
/**
* strips some dimension from the multi-dimensional array from $_FILES
*
* <code>
* $file['name']['multi_edit'][$rownumber][$key] = [value]
* $file['type']['multi_edit'][$rownumber][$key] = [value]
* $file['size']['multi_edit'][$rownumber][$key] = [value]
* $file['tmp_name']['multi_edit'][$rownumber][$key] = [value]
* $file['error']['multi_edit'][$rownumber][$key] = [value]
*
* // becomes:
*
* $file['name'] = [value]
* $file['type'] = [value]
* $file['size'] = [value]
* $file['tmp_name'] = [value]
* $file['error'] = [value]
* </code>
*
* @param array $file the array
* @param string $rownumber number of row to process
* @param string $key key to process
*
* @return array
*
* @static
*/
public function fetchUploadedFromTblChangeRequestMultiple(
array $file,
string $rownumber,
string $key
): array {
return [
'name' => $file['name']['multi_edit'][$rownumber][$key],
'type' => $file['type']['multi_edit'][$rownumber][$key],
'size' => $file['size']['multi_edit'][$rownumber][$key],
'tmp_name' => $file['tmp_name']['multi_edit'][$rownumber][$key],
'error' => $file['error']['multi_edit'][$rownumber][$key],
];
}
/**
* sets the name if the file to the one selected in the tbl_change form
*
* @param string $key the md5 hash of the column name
* @param string $rownumber number of row to process
*/
public function setSelectedFromTblChangeRequest(
string $key,
?string $rownumber = null
): bool {
if (
! empty($_REQUEST['fields_uploadlocal']['multi_edit'][$rownumber][$key])
&& is_string($_REQUEST['fields_uploadlocal']['multi_edit'][$rownumber][$key])
) {
// ... whether with multiple rows ...
return $this->setLocalSelectedFile($_REQUEST['fields_uploadlocal']['multi_edit'][$rownumber][$key]);
}
return false;
}
/**
* Returns possible error message.
*
* @return Message|null error message
*/
public function getError(): ?Message
{
return $this->errorMessage;
}
/**
* Checks whether there was any error.
*/
public function isError(): bool
{
return $this->errorMessage !== null;
}
/**
* checks the superglobals provided if the tbl_change form is submitted
* and uses the submitted/selected file
*
* @param string $key the md5 hash of the column name
* @param string $rownumber number of row to process
*/
public function checkTblChangeForm(string $key, string $rownumber): bool
{
if ($this->setUploadedFromTblChangeRequest($key, $rownumber)) {
// well done ...
$this->errorMessage = null;
return true;
}
if ($this->setSelectedFromTblChangeRequest($key, $rownumber)) {
// well done ...
$this->errorMessage = null;
return true;
}
// all failed, whether just no file uploaded/selected or an error
return false;
}
/**
* Sets named file to be read from UploadDir.
*
* @param string $name file name
*/
public function setLocalSelectedFile(string $name): bool
{
if (empty($GLOBALS['cfg']['UploadDir'])) {
return false;
}
if (! is_string($GLOBALS['cfg']['UploadDir'])) {
return false;
}
$this->setName(
Util::userDir($GLOBALS['cfg']['UploadDir']) . Core::securePath($name)
);
if (@is_link((string) $this->getName())) {
$this->errorMessage = Message::error(__('File is a symbolic link'));
$this->setName(null);
return false;
}
if (! $this->isReadable()) {
$this->errorMessage = Message::error(__('File could not be read!'));
$this->setName(null);
return false;
}
return true;
}
/**
* Checks whether file can be read.
*/
public function isReadable(): bool
{
// suppress warnings from being displayed, but not from being logged
// any file access outside of open_basedir will issue a warning
return @is_readable((string) $this->getName());
}
/**
* If we are on a server with open_basedir, we must move the file
* before opening it. The FAQ 1.11 explains how to create the "./tmp"
* directory - if needed
*
* @todo move check of $cfg['TempDir'] into Config?
*/
public function checkUploadedFile(): bool
{
if ($this->isReadable()) {
return true;
}
$tmp_subdir = $GLOBALS['config']->getUploadTempDir();
if ($tmp_subdir === null) {
// cannot create directory or access, point user to FAQ 1.11
$this->errorMessage = Message::error(__(
'Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc].'
));
return false;
}
$new_file_to_upload = (string) tempnam(
$tmp_subdir,
basename((string) $this->getName())
);
// suppress warnings from being displayed, but not from being logged
// any file access outside of open_basedir will issue a warning
ob_start();
$move_uploaded_file_result = move_uploaded_file(
(string) $this->getName(),
$new_file_to_upload
);
ob_end_clean();
if (! $move_uploaded_file_result) {
$this->errorMessage = Message::error(__('Error while moving uploaded file.'));
return false;
}
$this->setName($new_file_to_upload);
$this->isTemp(true);
if (! $this->isReadable()) {
$this->errorMessage = Message::error(__('Cannot read uploaded file.'));
return false;
}
return true;
}
/**
* Detects what compression the file uses
*
* @return string|false false on error, otherwise string MIME type of
* compression, none for none
*
* @todo move file read part into readChunk() or getChunk()
* @todo add support for compression plugins
*/
protected function detectCompression()
{
// suppress warnings from being displayed, but not from being logged
// f.e. any file access outside of open_basedir will issue a warning
ob_start();
$file = fopen((string) $this->getName(), 'rb');
ob_end_clean();
if (! $file) {
$this->errorMessage = Message::error(__('File could not be read!'));
return false;
}
$this->compression = Util::getCompressionMimeType($file);
return $this->compression;
}
/**
* Sets whether the content should be decompressed before returned
*
* @param bool $decompress whether to decompress
*/
public function setDecompressContent(bool $decompress): void
{
$this->decompress = $decompress;
}
/**
* Returns the file handle
*
* @return resource|null file handle
*/
public function getHandle()
{
if ($this->handle === null) {
$this->open();
}
return $this->handle;
}
/**
* Sets the file handle
*
* @param resource $handle file handle
*/
public function setHandle($handle): void
{
$this->handle = $handle;
}
/**
* Sets error message for unsupported compression.
*/
public function errorUnsupported(): void
{
$this->errorMessage = Message::error(sprintf(
__(
'You attempted to load file with unsupported compression (%s). '
. 'Either support for it is not implemented or disabled by your '
. 'configuration.'
),
$this->getCompression()
));
}
/**
* Attempts to open the file.
*/
public function open(): bool
{
if (! $this->decompress) {
$this->handle = @fopen((string) $this->getName(), 'r');
}
switch ($this->getCompression()) {
case false:
return false;
case 'application/bzip2':
if (! $GLOBALS['cfg']['BZipDump'] || ! function_exists('bzopen')) {
$this->errorUnsupported();
return false;
}
$this->handle = @bzopen($this->getName(), 'r');
break;
case 'application/gzip':
if (! $GLOBALS['cfg']['GZipDump'] || ! function_exists('gzopen')) {
$this->errorUnsupported();
return false;
}
$this->handle = @gzopen((string) $this->getName(), 'r');
break;
case 'application/zip':
if ($GLOBALS['cfg']['ZipDump'] && function_exists('zip_open')) {
return $this->openZip();
}
$this->errorUnsupported();
return false;
case 'none':
$this->handle = @fopen((string) $this->getName(), 'r');
break;
default:
$this->errorUnsupported();
return false;
}
return $this->handle !== false;
}
/**
* Opens file from zip
*
* @param string|null $specific_entry Entry to open
*/
public function openZip(?string $specific_entry = null): bool
{
$result = $this->zipExtension->getContents($this->getName(), $specific_entry);
if (! empty($result['error'])) {
$this->errorMessage = Message::rawError($result['error']);
return false;
}
$this->content = $result['data'];
$this->offset = 0;
return true;
}
/**
* Checks whether we've reached end of file
*/
public function eof(): bool
{
if ($this->handle !== null) {
return feof($this->handle);
}
return $this->offset == strlen($this->content);
}
/**
* Closes the file
*/
public function close(): void
{
if ($this->handle !== null) {
fclose($this->handle);
$this->handle = null;
} else {
$this->content = '';
$this->offset = 0;
}
$this->cleanUp();
}
/**
* Reads data from file
*
* @param int $size Number of bytes to read
*/
public function read(int $size): string
{
if ($this->compression === 'application/zip') {
$result = mb_strcut($this->content, $this->offset, $size);
$this->offset += strlen($result);
return $result;
}
if ($this->handle === null) {
return '';
}
if ($this->compression === 'application/bzip2') {
return (string) bzread($this->handle, $size);
}
if ($this->compression === 'application/gzip') {
return (string) gzread($this->handle, $size);
}
return (string) fread($this->handle, $size);
}
/**
* Returns the character set of the file
*
* @return string character set of the file
*/
public function getCharset(): string
{
return $this->charset;
}
/**
* Sets the character set of the file
*
* @param string $charset character set of the file
*/
public function setCharset(string $charset): void
{
$this->charset = $charset;
}
/**
* Returns compression used by file.
*
* @return string MIME type of compression, none for none
*/
public function getCompression(): string
{
if ($this->compression === null) {
return $this->detectCompression();
}
return $this->compression;
}
/**
* Returns the offset
*
* @return int the offset
*/
public function getOffset(): int
{
return $this->offset;
}
/**
* Returns the chunk size
*
* @return int the chunk size
*/
public function getChunkSize(): int
{
return $this->chunkSize;
}
/**
* Sets the chunk size
*
* @param int $chunkSize the chunk size
*/
public function setChunkSize(int $chunkSize): void
{
$this->chunkSize = $chunkSize;
}
/**
* Returns the length of the content in the file
*
* @return int the length of the file content
*/
public function getContentLength(): int
{
return strlen($this->content);
}
}
|