Put the Google Fonts name in quotes to avoid parsing
[GitHub/WoltLab/WCF.git] / wcfsetup / install.php
CommitLineData
158bd3ca
TD
1<?php
2/**
3 * This script tries to find the temp folder and unzip all setup files into.
e3369fd2 4 *
158bd3ca 5 * @author Marcel Werk
cea1798f 6 * @copyright 2001-2017 WoltLab GmbH
158bd3ca
TD
7 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
8 */
392cd6cb 9// @codingStandardsIgnoreFile
158bd3ca 10// define constants
728b9dd6 11define('INSTALL_SCRIPT', __FILE__);
158bd3ca
TD
12define('INSTALL_SCRIPT_DIR', dirname(__FILE__).'/');
13define('SETUP_FILE', INSTALL_SCRIPT_DIR . 'WCFSetup.tar.gz');
14define('NO_IMPORTS', 1);
15
16// set exception handler
17set_exception_handler('handleException');
18// set php error handler
19set_error_handler('handleError', E_ALL);
20
21// define list of needed file
058cbd6a 22$neededFilesPattern = [
158bd3ca 23 '!^setup/.*!',
07937b16 24 '!^install/files/acp/images/woltlabSuite.*!',
e94c3830 25 '!^install/files/acp/style/setup/.*!',
158bd3ca 26 '!^install/files/lib/data/.*!',
7da7f7cc 27 '!^install/files/icon/.*!',
e2a34399 28 '!^install/files/font/.*!',
158bd3ca
TD
29 '!^install/files/lib/system/.*!',
30 '!^install/files/lib/util/.*!',
158bd3ca 31 '!^install/lang/.*!',
058cbd6a 32 '!^install/packages/.*!'];
158bd3ca
TD
33
34// define needed functions and classes
3e823cfa 35/** @noinspection PhpMultipleClassesDeclarationsInOneFile */
158bd3ca
TD
36/**
37 * WCF::handleException() calls the show method on exceptions that implement this interface.
38 *
f4f05aa5 39 * @package com.woltlab.wcf
158bd3ca
TD
40 * @author Marcel Werk
41 */
42interface IPrintableException {
43 public function show();
44}
45
46// define needed classes
47// needed are:
48// SystemException, PrintableException, BasicFileUtil, Tar, File, ZipFile
3e823cfa 49/** @noinspection PhpMultipleClassesDeclarationsInOneFile */
158bd3ca
TD
50/**
51 * A SystemException is thrown when an unexpected error occurs.
52 *
f4f05aa5 53 * @package com.woltlab.wcf
158bd3ca
TD
54 * @author Marcel Werk
55 */
56class SystemException extends \Exception implements IPrintableException {
57 protected $description;
58 protected $information = '';
59 protected $functions = '';
60
61 /**
62 * Creates a new SystemException.
63 *
ac52543a
MS
64 * @param string $message error message
65 * @param integer $code error code
66 * @param string $description description of the error
3353ca3e 67 * @param \Exception $previous repacked Exception
158bd3ca 68 */
3353ca3e
AE
69 public function __construct($message = '', $code = 0, $description = '', \Exception $previous = null) {
70 parent::__construct((string) $message, (int) $code, $previous);
158bd3ca
TD
71 $this->description = $description;
72 }
73
74 /**
75 * Returns the description of this exception.
76 *
39bea7dd 77 * @return string
158bd3ca
TD
78 */
79 public function getDescription() {
80 return $this->description;
81 }
82
83 /**
84 * Prints this exception.
85 * This method is called by WCF::handleException().
86 */
87 public function show() {
314f7e0e
MW
88 /*
89 * A notice on the HTML used below:
90 *
91 * It might appear a bit weird to use <p> all over the place where semantically
92 * other elements would fit in way better. The reason behind this is that we avoid
93 * inheriting unwanted styles (e.g. exception displayed in an overlay) and that
94 * the output needs to be properly readable when copied & pasted somewhere.
95 *
96 * Besides the visual appearance, the output was built to provide a maximum of
97 * compatibility and readability when pasted somewhere else, e.g. a WYSIWYG editor
98 * without the potential of messing up the formatting and thus harming the readability.
99 */
100?><!DOCTYPE html>
158bd3ca
TD
101<html>
102<head>
314f7e0e
MW
103 <title>Fatal Error: <?php echo htmlentities($this->getMessage()); ?></title>
104 <meta charset="utf-8">
105 <meta name="viewport" content="width=device-width, initial-scale=1">
106 <style>
107 .exceptionBody {
108 margin: 0;
109 padding: 0;
110 }
111
112 .exceptionContainer {
113 box-sizing: border-box;
114 font-family: 'Segoe UI', 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
115 font-size: 14px;
116 padding-bottom: 20px;
117 }
118
119 .exceptionContainer * {
120 box-sizing: inherit;
121 color: #000;
122 line-height: 1.5em;
123 margin: 0;
124 padding: 0;
125 }
126
127 .exceptionHeader {
3bfbe63f 128 background-color: rgb(58, 109, 156);
314f7e0e
MW
129 padding: 30px 0;
130 }
131
132 .exceptionTitle {
133 color: #fff;
134 font-size: 28px;
135 font-weight: 300;
136 }
137
138 .exceptionErrorCode {
139 color: #fff;
140 margin-top: .5em;
141 }
142
143 .exceptionErrorCode .exceptionInlineCode {
3bfbe63f 144 background-color: rgb(43, 79, 113);
314f7e0e
MW
145 border-radius: 3px;
146 color: #fff;
147 font-family: monospace;
148 padding: 3px 10px;
149 white-space: nowrap;
150 }
151
152 .exceptionSubtitle {
153 border-bottom: 1px solid rgb(238, 238, 238);
154 color: rgb(44, 62, 80);
155 font-size: 24px;
156 font-weight: 300;
157 margin-bottom: 15px;
158 padding-bottom: 10px;
159 }
160
161 .exceptionContainer > .exceptionBoundary {
162 margin-top: 30px;
163 }
164
165 .exceptionText .exceptionInlineCodeWrapper {
166 border: 1px solid rgb(169, 169, 169);
167 border-radius: 3px;
168 padding: 2px 5px;
169 }
2d63c13c 170
314f7e0e
MW
171 .exceptionText .exceptionInlineCode {
172 font-family: monospace;
173 white-space: nowrap;
174 }
175
176 .exceptionFieldTitle {
177 color: rgb(59, 109, 169);
178 }
179
180 .exceptionFieldTitle .exceptionColon {
181 /* hide colon in browser, but will be visible after copy & paste */
182 opacity: 0;
183 }
184
185 .exceptionFieldValue {
186 font-size: 18px;
187 min-height: 1.5em;
188 }
189
190 .exceptionSystemInformation,
191 .exceptionErrorDetails,
192 .exceptionStacktrace {
193 list-style-type: none;
194 }
195
196 .exceptionSystemInformation > li:not(:first-child),
197 .exceptionErrorDetails > li:not(:first-child) {
198 margin-top: 10px;
199 }
200
201 .exceptionStacktrace {
202 display: block;
203 margin-top: 5px;
204 overflow: auto;
205 padding-bottom: 20px;
206 }
207
208 .exceptionStacktraceFile,
209 .exceptionStacktraceFile span,
210 .exceptionStacktraceCall,
211 .exceptionStacktraceCall span {
212 font-family: monospace !important;
213 white-space: nowrap !important;
214 }
215
216 .exceptionStacktraceCall + .exceptionStacktraceFile {
217 margin-top: 5px;
218 }
219
220 .exceptionStacktraceCall {
221 padding-left: 40px;
222 }
223
224 .exceptionStacktraceCall,
225 .exceptionStacktraceCall span {
226 color: rgb(102, 102, 102) !important;
227 font-size: 13px !important;
228 }
229
230 /* mobile */
231 @media (max-width: 767px) {
232 .exceptionBoundary {
233 min-width: 320px;
234 padding: 0 10px;
235 }
158bd3ca 236
314f7e0e
MW
237 .exceptionText .exceptionInlineCodeWrapper {
238 display: inline-block;
239 overflow: auto;
240 }
158bd3ca 241
314f7e0e
MW
242 .exceptionErrorCode .exceptionInlineCode {
243 font-size: 13px;
244 padding: 2px 5px;
245 }
246 }
247
248 /* desktop */
249 @media (min-width: 768px) {
250 .exceptionBoundary {
251 margin: 0 auto;
252 max-width: 1400px;
253 min-width: 1200px;
254 padding: 0 10px;
255 }
256
257 .exceptionSystemInformation {
258 display: flex;
259 flex-wrap: wrap;
260 }
261
262 .exceptionSystemInformation1,
263 .exceptionSystemInformation3,
264 .exceptionSystemInformation5 {
265 flex: 0 0 200px;
266 margin: 0 0 10px 0 !important;
267 }
268
269 .exceptionSystemInformation2,
270 .exceptionSystemInformation4,
271 .exceptionSystemInformation6 {
272 flex: 0 0 calc(100% - 210px);
273 margin: 0 0 10px 10px !important;
274 max-width: calc(100% - 210px);
275 }
276
277 .exceptionSystemInformation1 { order: 1; }
278 .exceptionSystemInformation2 { order: 2; }
279 .exceptionSystemInformation3 { order: 3; }
280 .exceptionSystemInformation4 { order: 4; }
281 .exceptionSystemInformation5 { order: 5; }
282 .exceptionSystemInformation6 { order: 6; }
283
284 .exceptionSystemInformation .exceptionFieldValue {
285 overflow: hidden;
286 text-overflow: ellipsis;
287 white-space: nowrap;
288 }
289 }
290 </style>
291</head>
292<body class="exceptionBody">
293 <div class="exceptionContainer">
294 <div class="exceptionHeader">
295 <div class="exceptionBoundary">
296 <p class="exceptionTitle">An error has occured</p>
297 </div>
158bd3ca
TD
298 </div>
299
314f7e0e
MW
300 <div class="exceptionBoundary">
301 <p class="exceptionSubtitle">System Information</p>
302 <ul class="exceptionSystemInformation">
303 <li class="exceptionSystemInformation1">
304 <p class="exceptionFieldTitle">PHP Version<span class="exceptionColon">:</span></p>
305 <p class="exceptionFieldValue"><?php echo htmlentities(phpversion()); ?></p>
306 </li>
307 <li class="exceptionSystemInformation3">
308 <p class="exceptionFieldTitle">WoltLab Suite Core<span class="exceptionColon">:</span></p>
309 <p class="exceptionFieldValue">3.0</p>
310 </li>
311 <li class="exceptionSystemInformation5">
312 <p class="exceptionFieldTitle">Peak Memory Usage<span class="exceptionColon">:</span></p>
313 <p class="exceptionFieldValue"><?php echo round(memory_get_peak_usage() / 1024 / 1024, 3); ?>/<?php echo ini_get('memory_limit'); ?></p>
314 </li>
315 <li class="exceptionSystemInformation2">
316 <p class="exceptionFieldTitle">Request URI<span class="exceptionColon">:</span></p>
317 <p class="exceptionFieldValue"><?php if (isset($_SERVER['REQUEST_URI'])) echo htmlentities($_SERVER['REQUEST_URI']); ?></p>
318 </li>
319 <li class="exceptionSystemInformation4">
320 <p class="exceptionFieldTitle">Referrer<span class="exceptionColon">:</span></p>
321 <p class="exceptionFieldValue"><?php if (isset($_SERVER['HTTP_REFERER'])) echo htmlentities($_SERVER['HTTP_REFERER']); ?></p>
322 </li>
323 <li class="exceptionSystemInformation6">
324 <p class="exceptionFieldTitle">User Agent<span class="exceptionColon">:</span></p>
325 <p class="exceptionFieldValue"><?php if (isset($_SERVER['HTTP_USER_AGENT'])) echo htmlentities($_SERVER['HTTP_USER_AGENT']); ?></p>
326 </li>
327 </ul>
328 </div>
329
330 <?php
3353ca3e 331 $e = $this;
314f7e0e
MW
332 $first = true;
333 do {
3353ca3e
AE
334 $trace = $e->getTrace();
335 if (isset($trace[0]['function']) && $trace[0]['function'] === 'handleException') {
336 // ignore repacked exception
337 continue;
338 }
339
314f7e0e
MW
340 ?>
341 <div class="exceptionBoundary">
3353ca3e
AE
342 <p class="exceptionSubtitle"><?php if (!$e->getPrevious() && !$first) { echo "Original "; } else if ($e->getPrevious() && $first) { echo "Final "; } ?>Error</p>
343 <?php if ($e instanceof SystemException && $e->getDescription()) { ?>
344 <p class="exceptionText"><?php echo $e->getDescription(); ?></p>
314f7e0e
MW
345 <?php } ?>
346 <ul class="exceptionErrorDetails">
347 <li>
348 <p class="exceptionFieldTitle">Error Type<span class="exceptionColon">:</span></p>
3353ca3e 349 <p class="exceptionFieldValue"><?php echo htmlentities(get_class($e)); ?></p>
314f7e0e
MW
350 </li>
351 <li>
352 <p class="exceptionFieldTitle">Error Message<span class="exceptionColon">:</span></p>
3353ca3e 353 <p class="exceptionFieldValue"><?php echo htmlentities($e->getMessage()); ?></p>
314f7e0e 354 </li>
3353ca3e 355 <?php if ($e->getCode()) { ?>
314f7e0e
MW
356 <li>
357 <p class="exceptionFieldTitle">Error Code<span class="exceptionColon">:</span></p>
3353ca3e 358 <p class="exceptionFieldValue"><?php echo intval($e->getCode()); ?></p>
314f7e0e
MW
359 </li>
360 <?php } ?>
361 <li>
362 <p class="exceptionFieldTitle">File<span class="exceptionColon">:</span></p>
3353ca3e 363 <p class="exceptionFieldValue" style="word-break: break-all"><?php echo htmlentities($e->getFile()); ?> (<?php echo $e->getLine(); ?>)</p>
314f7e0e
MW
364 </li>
365
366 <li>
367 <p class="exceptionFieldTitle">Stack Trace<span class="exceptionColon">:</span></p>
368 <ul class="exceptionStacktrace">
369 <?php
3353ca3e 370 $trace = $e->getTrace();
314f7e0e
MW
371 for ($i = 0, $max = count($trace); $i < $max; $i++) {
372 ?>
373 <li class="exceptionStacktraceFile"><?php echo '#'.$i.' '.htmlentities($trace[$i]['file']).' ('.$trace[$i]['line'].')'.':'; ?></li>
374 <li class="exceptionStacktraceCall">
375 <?php
376 echo $trace[$i]['class'].$trace[$i]['type'].$trace[$i]['function'].'(';
377 echo implode(', ', array_map(function ($item) {
378 switch (gettype($item)) {
379 case 'integer':
380 case 'double':
381 return $item;
382 case 'NULL':
383 return 'null';
384 case 'string':
385 return "'".addcslashes(htmlentities($item), "\\'")."'";
386 case 'boolean':
387 return $item ? 'true' : 'false';
388 case 'array':
389 $keys = array_keys($item);
390 if (count($keys) > 5) return "[ ".count($keys)." items ]";
391 return '[ '.implode(', ', array_map(function ($item) {
392 return $item.' => ';
393 }, $keys)).']';
394 case 'object':
395 return get_class($item);
396 }
397
398 throw new \LogicException('Unreachable');
399 }, $trace[$i]['args']));
400 echo ')</li>';
401 }
402 ?>
403 </ul>
404 </li>
405 </ul>
406 </div>
407 <?php
408 $first = false;
3353ca3e
AE
409 } while ($e = $e->getPrevious());
410 ?>
158bd3ca
TD
411 </div>
412</body>
413</html>
414
415<?php
416 }
417}
418
158bd3ca
TD
419/**
420 * Loads the required classes automatically.
421 */
db8aa273 422spl_autoload_register(function($className) {
158bd3ca
TD
423 $namespaces = explode('\\', $className);
424 if (count($namespaces) > 1) {
425 // remove 'wcf' component
426 array_shift($namespaces);
427
428 $className = implode('/', $namespaces);
01bd2eff 429 $classPath = TMP_DIR . 'install/files/lib/' . $className . '.class.php';
158bd3ca
TD
430 if (file_exists($classPath)) {
431 require_once($classPath);
432 }
433 }
db8aa273 434});
158bd3ca
TD
435
436/**
437 * Escapes strings for execution in sql queries.
ac52543a
MS
438 *
439 * @param string $string
440 * @return string
158bd3ca
TD
441 */
442function escapeString($string) {
443 return \wcf\system\WCF::getDB()->escapeString($string);
444}
445
1a2817c4
AE
446/**
447 * Helper method to output debug data for all passed variables,
448 * uses `print_r()` for arrays and objects, `var_dump()` otherwise.
449 */
450function wcfDebug() {
451 echo "<pre>";
452
453 $args = func_get_args();
454 $length = count($args);
455 if ($length === 0) {
456 echo "ERROR: No arguments provided.<hr>";
457 }
458 else {
459 for ($i = 0; $i < $length; $i++) {
460 $arg = $args[$i];
461
462 echo "<h2>Argument {$i} (" . gettype($arg) . ")</h2>";
463
464 if (is_array($arg) || is_object($arg)) {
465 print_r($arg);
466 }
467 else {
468 var_dump($arg);
469 }
470
471 echo "<hr>";
472 }
473 }
474
475 $backtrace = debug_backtrace();
476
477 // output call location to help finding these debug outputs again
478 echo "wcfDebug() called in {$backtrace[0]['file']} on line {$backtrace[0]['line']}";
479
480 echo "</pre>";
481
482 exit;
483}
484
158bd3ca
TD
485/**
486 * Calls the show method on the given exception.
487 *
9a132951 488 * @param mixed $e
158bd3ca 489 */
9a132951
M
490function handleException($e) {
491 try {
492 if (!($e instanceof \Exception)) throw $e;
493
494 if ($e instanceof IPrintableException || $e instanceof \wcf\system\exception\IPrintableException) {
495 $e->show();
496 exit;
497 }
3353ca3e
AE
498
499 // repacking
500 (new SystemException($e->getMessage(), $e->getCode(), '', $e))->show();
501 exit;
9a132951
M
502 }
503 catch (\Throwable $exception) {
504 die("<pre>WCF::handleException() Unhandled exception: ".$exception->getMessage()."\n\n".$exception->getTraceAsString());
505 }
506 catch (\Exception $exception) {
507 die("<pre>WCF::handleException() Unhandled exception: ".$exception->getMessage()."\n\n".$exception->getTraceAsString());
158bd3ca 508 }
158bd3ca
TD
509}
510
511/**
512 * Catches php errors and throws instead a system exception.
513 *
514 * @param integer $errorNo
515 * @param string $message
516 * @param string $filename
517 * @param integer $lineNo
2b770bdd 518 * @throws SystemException
158bd3ca
TD
519 */
520function handleError($errorNo, $message, $filename, $lineNo) {
521 if (error_reporting() != 0) {
522 $type = 'error';
523 switch ($errorNo) {
524 case 2: $type = 'warning';
525 break;
526 case 8: $type = 'notice';
527 break;
528 }
529
530 throw new SystemException('PHP '.$type.' in file '.$filename.' ('.$lineNo.'): '.$message, 0);
531 }
532}
533
3e823cfa 534/** @noinspection PhpMultipleClassesDeclarationsInOneFile */
158bd3ca
TD
535/**
536 * BasicFileUtil contains file-related functions.
537 *
f4f05aa5 538 * @package com.woltlab.wcf
158bd3ca
TD
539 * @author Marcel Werk
540 */
541class BasicFileUtil {
d8fa09e0
AE
542 /**
543 * chmod mode
544 * @var integer
545 */
546 protected static $mode = null;
547
158bd3ca
TD
548 /**
549 * Tries to find the temp folder.
550 *
551 * @return string
2b770bdd 552 * @throws SystemException
158bd3ca
TD
553 */
554 public static function getTempFolder() {
158bd3ca
TD
555 // use tmp folder in document root by default
556 if (!empty($_SERVER['DOCUMENT_ROOT'])) {
069cd37e
MW
557 if (strpos($_SERVER['DOCUMENT_ROOT'], 'strato') !== false) {
558 // strato bugfix
559 // create tmp folder in document root automatically
560 if (!@file_exists($_SERVER['DOCUMENT_ROOT'].'/tmp')) {
561 @mkdir($_SERVER['DOCUMENT_ROOT'].'/tmp/', 0777);
562 try {
563 self::makeWritable($_SERVER['DOCUMENT_ROOT'].'/tmp/');
564 }
565 catch (SystemException $e) {}
566 }
158bd3ca 567 }
069cd37e
MW
568 if (@file_exists($_SERVER['DOCUMENT_ROOT'].'/tmp') && @is_writable($_SERVER['DOCUMENT_ROOT'].'/tmp')) {
569 return $_SERVER['DOCUMENT_ROOT'].'/tmp/';
158bd3ca
TD
570 }
571 }
e3369fd2 572
069cd37e
MW
573 if (isset($_ENV['TMP']) && @is_writable($_ENV['TMP'])) {
574 return $_ENV['TMP'] . '/';
158bd3ca 575 }
069cd37e
MW
576 if (isset($_ENV['TEMP']) && @is_writable($_ENV['TEMP'])) {
577 return $_ENV['TEMP'] . '/';
578 }
579 if (isset($_ENV['TMPDIR']) && @is_writable($_ENV['TMPDIR'])) {
580 return $_ENV['TMPDIR'] . '/';
581 }
e3369fd2 582
069cd37e
MW
583 if (($path = ini_get('upload_tmp_dir')) && @is_writable($path)) {
584 return $path . '/';
585 }
586 if (@file_exists('/tmp/') && @is_writable('/tmp/')) {
587 return '/tmp/';
158bd3ca 588 }
069cd37e
MW
589 if (function_exists('session_save_path') && ($path = session_save_path()) && @is_writable($path)) {
590 return $path . '/';
591 }
2d63c13c 592
5805a819 593 $path = INSTALL_SCRIPT_DIR.'tmp/';
069cd37e
MW
594 if (@file_exists($path) && @is_writable($path)) {
595 return $path;
596 }
597 else {
598 throw new SystemException('There is no access to the system temporary folder due to an unknown reason and no user specific temporary folder exists in '.INSTALL_SCRIPT_DIR.'! This is a misconfiguration of your webserver software! Please create a folder called '.$path.' using your favorite ftp program, make it writable and then retry this installation.');
599 }
600 }
601
602 /**
603 * Returns the temp folder for the installation.
604 *
605 * @return string
606 */
607 public static function getInstallTempFolder() {
608 $dir = self::getTempFolder() . TMP_FILE_PREFIX . '/';
609 @mkdir($dir);
610 self::makeWritable($dir);
158bd3ca 611
158bd3ca
TD
612 return $dir;
613 }
1232bce2
AE
614
615 /**
616 * Tries to make a file or directory writable. It starts of with the least
d8fa09e0 617 * permissions and goes up until 0666 for files and 0777 for directories.
1232bce2
AE
618 *
619 * @param string $filename
2b770bdd 620 * @throws SystemException
1232bce2
AE
621 */
622 public static function makeWritable($filename) {
043b049d 623 if (!file_exists($filename)) {
1232bce2 624 return;
158bd3ca
TD
625 }
626
d8fa09e0
AE
627 // determine mode
628 if (self::$mode === null) {
629 // do not use PHP_OS here, as this represents the system it was built on != running on
0436b618
AE
630 // php_uname() is forbidden on some strange hosts; PHP_EOL is reliable
631 if (PHP_EOL == "\r\n") {
632 // Windows
d8fa09e0
AE
633 self::$mode = 0777;
634 }
635 else {
0436b618 636 // anything but Windows
adbd8054
AE
637 clearstatcache();
638
d8fa09e0
AE
639 self::$mode = 0666;
640
0c1810be
AE
641 $tmpFilename = '__permissions_'.sha1(time()).'.txt';
642 @touch($tmpFilename);
d8fa09e0
AE
643
644 // create a new file and check the file owner, if it is the same
645 // as this file (uploaded through FTP), we can safely grant write
646 // permissions exclusively to the owner rather than everyone
0c1810be 647 if (file_exists($tmpFilename)) {
d8fa09e0 648 $scriptOwner = fileowner(__FILE__);
0c1810be 649 $fileOwner = fileowner($tmpFilename);
d8fa09e0
AE
650
651 if ($scriptOwner === $fileOwner) {
652 self::$mode = 0644;
653 }
654
0c1810be 655 @unlink($tmpFilename);
d8fa09e0
AE
656 }
657 }
658 }
158bd3ca 659
1232bce2 660 if (is_dir($filename)) {
d8fa09e0 661 if (self::$mode == 0644) {
7fe5312d 662 @chmod($filename, 0755);
1232bce2 663 }
d8fa09e0 664 else {
7fe5312d 665 @chmod($filename, 0777);
1232bce2
AE
666 }
667 }
d8fa09e0 668 else {
7fe5312d 669 @chmod($filename, self::$mode);
d8fa09e0
AE
670 }
671
672 if (!is_writable($filename)) {
673 throw new SystemException("Unable to make '".$filename."' writable. This is a misconfiguration of your server, please contact your system administrator or hosting provider.");
674 }
158bd3ca
TD
675 }
676}
677
3e823cfa 678/** @noinspection PhpMultipleClassesDeclarationsInOneFile */
158bd3ca
TD
679/**
680 * Opens tar or tar.gz archives.
681 *
682 * Usage:
683 * ------
684 * $tar = new Tar('archive.tar');
685 * $contentList = $tar->getContentList();
686 * foreach ($contentList as $key => $val) {
687 * $tar->extract($key, DESTINATION);
688 * }
689 */
690class Tar {
691 protected $archiveName = '';
058cbd6a 692 protected $contentList = [];
158bd3ca
TD
693 protected $opened = false;
694 protected $read = false;
695 protected $file = null;
696 protected $isZipped = false;
697 protected $mode = 'rb';
698
699 /**
700 * Creates a new Tar object.
701 * archiveName must be tarball or gzipped tarball
702 *
39bea7dd 703 * @param string $archiveName
2b770bdd 704 * @throws SystemException
158bd3ca
TD
705 */
706 public function __construct($archiveName) {
158bd3ca 707 if (!is_file($archiveName)) {
4fe0b42b 708 throw new SystemException("unable to find tar archive '".$archiveName."'");
158bd3ca
TD
709 }
710
711 $this->archiveName = $archiveName;
712 $this->open();
713 $this->readContent();
714 }
715
716 /**
717 * Destructor of this class, closes tar archive.
718 */
719 public function __destruct() {
720 $this->close();
721 }
722
723 /**
724 * Opens the tar archive and stores filehandle.
725 */
726 public function open() {
727 if (!$this->opened) {
728 if ($this->isZipped) $this->file = new ZipFile($this->archiveName, $this->mode);
729 else {
730 // test compression
731 $this->file = new File($this->archiveName, $this->mode);
732 if ($this->file->read(2) == "\37\213") {
733 $this->file->close();
734 $this->isZipped = true;
735 $this->file = new ZipFile($this->archiveName, $this->mode);
736 }
737 else {
738 $this->file->seek(0);
739 }
740 }
741 $this->opened = true;
742 }
743 }
744
745 /**
746 * Closes the opened file.
747 */
748 public function close() {
749 if ($this->opened) {
750 $this->file->close();
751 $this->opened = false;
752 }
753 }
754
755 /**
756 * Returns the table of contents (TOC) list for this tar archive.
757 *
39bea7dd 758 * @return array list of content
158bd3ca
TD
759 */
760 public function getContentList() {
761 if (!$this->read) {
762 $this->open();
763 $this->readContent();
764 }
765 return $this->contentList;
766 }
767
768 /**
769 * Returns an associative array with information
770 * about a specific file in the archive.
771 *
ac52543a
MS
772 * @param mixed $fileIndex index or name of the requested file
773 * @return array
2b770bdd 774 * @throws SystemException
158bd3ca
TD
775 */
776 public function getFileInfo($fileIndex) {
777 if (!is_int($fileIndex)) {
778 $fileIndex = $this->getIndexByFilename($fileIndex);
779 }
780
781 if (!isset($this->contentList[$fileIndex])) {
6286572b 782 throw new SystemException("Tar: could find file '".$fileIndex."' in archive");
158bd3ca
TD
783 }
784 return $this->contentList[$fileIndex];
785 }
786
787 /**
788 * Searchs a file in the tar archive
789 * and returns the numeric fileindex.
790 * Returns false if not found.
791 *
39bea7dd
MS
792 * @param string $filename
793 * @return integer index of the requested file
158bd3ca
TD
794 */
795 public function getIndexByFilename($filename) {
796 foreach ($this->contentList as $index => $file) {
797 if ($file['filename'] == $filename) {
798 return $index;
799 }
800 }
801 return false;
802 }
803
804 /**
805 * Extracts a specific file and returns the content as string.
806 * Returns false if extraction failed.
807 *
39bea7dd
MS
808 * @param mixed $index index or name of the requested file
809 * @return string content of the requested file
158bd3ca
TD
810 */
811 public function extractToString($index) {
812 if (!$this->read) {
813 $this->open();
814 $this->readContent();
815 }
816 $header = $this->getFileInfo($index);
817
818 // can not extract a folder
819 if ($header['type'] != 'file') {
820 return false;
821 }
822
823 // seek to offset
824 $this->file->seek($header['offset']);
825
826 // read data
827 $content = '';
828 $n = floor($header['size'] / 512);
829 for($i = 0; $i < $n; $i++) {
830 $content .= $this->file->read(512);
831 }
832 if(($header['size'] % 512) != 0) {
833 $buffer = $this->file->read(512);
63b9817b 834 $content .= substr($buffer, 0, $header['size'] % 512);
158bd3ca
TD
835 }
836
837 return $content;
838 }
839
840 /**
841 * Extracts a specific file and writes it's content
842 * to the file specified with $destination.
843 *
39bea7dd
MS
844 * @param mixed $index index or name of the requested file
845 * @param string $destination
2b770bdd
MS
846 * @return boolean
847 * @throws SystemException
158bd3ca
TD
848 */
849 public function extract($index, $destination) {
850 if (!$this->read) {
851 $this->open();
852 $this->readContent();
853 }
854 $header = $this->getFileInfo($index);
855
856 // can not extract a folder
857 if ($header['type'] != 'file') {
858 return false;
859 }
860
861 // seek to offset
862 $this->file->seek($header['offset']);
863
864 $targetFile = new File($destination);
865
866 // read data
867 $n = floor($header['size'] / 512);
868 for ($i = 0; $i < $n; $i++) {
869 $content = $this->file->read(512);
870 $targetFile->write($content, 512);
871 }
872 if (($header['size'] % 512) != 0) {
873 $content = $this->file->read(512);
63b9817b 874 $targetFile->write($content, $header['size'] % 512);
158bd3ca
TD
875 }
876
877 $targetFile->close();
1232bce2 878 BasicFileUtil::makeWritable($destination);
158bd3ca
TD
879
880 if ($header['mtime']) {
881 @$targetFile->touch($header['mtime']);
882 }
883
884 // check filesize
885 if (filesize($destination) != $header['size']) {
4fe0b42b 886 throw new SystemException("Could not untar file '".$header['filename']."' to '".$destination."'. Maybe disk quota exceeded in folder '".dirname($destination)."'.");
158bd3ca
TD
887 }
888
889 return true;
890 }
891
892 /**
893 * Reads table of contents (TOC) from tar archive.
894 * This does not get the entire to memory but only parts of it.
895 */
896 protected function readContent() {
058cbd6a 897 $this->contentList = [];
158bd3ca
TD
898 $this->read = true;
899 $i = 0;
900
901 // Read the 512 bytes header
db8aa273 902 $longFilename = null;
158bd3ca
TD
903 while (strlen($binaryData = $this->file->read(512)) != 0) {
904 // read header
905 $header = $this->readHeader($binaryData);
906 if ($header === false) {
907 continue;
908 }
db8aa273
AE
909
910 // fixes a bug that files with long names aren't correctly
911 // extracted
912 if ($longFilename !== null) {
913 $header['filename'] = $longFilename;
914 $longFilename = null;
915 }
916 if ($header['typeflag'] == 'L') {
917 $format = 'Z'.$header['size'].'filename';
918
919 $fileData = unpack($format, $this->file->read(512));
920 $longFilename = $fileData['filename'];
921 $header['size'] = 0;
922 }
923 // don't include the @LongLink file in the content list
924 else {
925 $this->contentList[$i] = $header;
926 $this->contentList[$i]['index'] = $i;
927 $i++;
928 }
158bd3ca 929
63b9817b 930 $this->file->seek($this->file->tell() + (512 * ceil($header['size'] / 512)));
158bd3ca
TD
931 }
932 }
933
934 /**
935 * Unpacks file header for one file entry.
db8aa273 936 *
39bea7dd 937 * @param string $binaryData
4be0ecec 938 * @return array|boolean
158bd3ca
TD
939 */
940 protected function readHeader($binaryData) {
941 if (strlen($binaryData) != 512) {
942 return false;
943 }
2d63c13c 944
058cbd6a 945 $header = [];
158bd3ca
TD
946 $checksum = 0;
947 // First part of the header
948 for ($i = 0; $i < 148; $i++) {
949 $checksum += ord(substr($binaryData, $i, 1));
950 }
951 // Calculate the checksum
952 // Ignore the checksum value and replace it by ' ' (space)
953 for ($i = 148; $i < 156; $i++) {
954 $checksum += ord(' ');
955 }
956 // Last part of the header
957 for ($i = 156; $i < 512; $i++) {
958 $checksum += ord(substr($binaryData, $i, 1));
959 }
2d63c13c 960
db8aa273
AE
961 // extract values
962 $format = 'Z100filename/Z8mode/Z8uid/Z8gid/Z12size/Z12mtime/Z8checksum/Z1typeflag/Z100link/Z6magic/Z2version/Z32uname/Z32gname/Z8devmajor/Z8devminor/Z155prefix';
32b198a0
AE
963
964 $data = unpack($format, $binaryData);
158bd3ca
TD
965
966 // Extract the properties
379875ee 967 $header['checksum'] = octdec(trim($data['checksum']));
158bd3ca
TD
968 if ($header['checksum'] == $checksum) {
969 $header['filename'] = trim($data['filename']);
379875ee
MS
970 $header['mode'] = octdec(trim($data['mode']));
971 $header['uid'] = octdec(trim($data['uid']));
972 $header['gid'] = octdec(trim($data['gid']));
973 $header['size'] = octdec(trim($data['size']));
974 $header['mtime'] = octdec(trim($data['mtime']));
158bd3ca
TD
975 $header['prefix'] = trim($data['prefix']);
976 if ($header['prefix']) {
977 $header['filename'] = $header['prefix'].'/'.$header['filename'];
978 }
979 if (($header['typeflag'] = $data['typeflag']) == '5') {
980 $header['size'] = 0;
981 $header['type'] = 'folder';
982 }
983 else {
984 $header['type'] = 'file';
985 }
986 $header['offset'] = $this->file->tell();
987
988 return $header;
989 }
990 else {
991 return false;
992 }
993 }
994}
995
3e823cfa 996/** @noinspection PhpMultipleClassesDeclarationsInOneFile */
158bd3ca
TD
997/**
998 * The File class handles all file operations.
999 *
1000 * Example:
1001 * using php functions:
1002 * $fp = fopen('filename', 'wb');
1003 * fwrite($fp, '...');
1004 * fclose($fp);
1005 *
1006 * using this class:
1007 * $file = new File('filename');
1008 * $file->write('...');
1009 * $file->close();
1010 *
1011 * @author Marcel Werk
1012 */
1013class File {
1014 protected $resource = null;
1015 protected $filename;
1016
1017 /**
1018 * Opens a new file.
1019 *
39bea7dd
MS
1020 * @param string $filename
1021 * @param string $mode
2b770bdd 1022 * @throws SystemException
158bd3ca
TD
1023 */
1024 public function __construct($filename, $mode = 'wb') {
1025 $this->filename = $filename;
1026 $this->resource = fopen($filename, $mode);
1027 if ($this->resource === false) {
4fe0b42b 1028 throw new SystemException('Can not open file ' . $filename);
158bd3ca
TD
1029 }
1030 }
1031
1032 /**
1033 * Calls the specified function on the open file.
1034 * Do not call this function directly. Use $file->write('') instead.
1035 *
39bea7dd
MS
1036 * @param string $function
1037 * @param array $arguments
71952a87 1038 * @return mixed
2b770bdd 1039 * @throws SystemException
158bd3ca
TD
1040 */
1041 public function __call($function, $arguments) {
1042 if (function_exists('f' . $function)) {
1043 array_unshift($arguments, $this->resource);
39bea7dd 1044 return call_user_func_array('f' . $function, $arguments);
158bd3ca
TD
1045 }
1046 else if (function_exists($function)) {
1047 array_unshift($arguments, $this->filename);
39bea7dd 1048 return call_user_func_array($function, $arguments);
158bd3ca
TD
1049 }
1050 else {
4fe0b42b 1051 throw new SystemException('Can not call file method ' . $function);
158bd3ca
TD
1052 }
1053 }
1054}
1055
3e823cfa 1056/** @noinspection PhpMultipleClassesDeclarationsInOneFile */
158bd3ca
TD
1057/**
1058 * The File class handles all file operations on a zipped file.
1059 *
1060 * @author Marcel Werk
1061 */
1062class ZipFile extends File {
eedfeca6
AE
1063 /**
1064 * checks if gz*64 functions are available instead of gz*
1065 * https://bugs.php.net/bug.php?id=53829
1066 * @var boolean
1067 */
1068 protected static $gzopen64 = null;
1069
e4bda351 1070 /** @noinspection PhpMissingParentConstructorInspection */
158bd3ca
TD
1071 /**
1072 * Opens a new zipped file.
1073 *
39bea7dd
MS
1074 * @param string $filename
1075 * @param string $mode
2b770bdd 1076 * @throws SystemException
158bd3ca
TD
1077 */
1078 public function __construct($filename, $mode = 'wb') {
eedfeca6 1079 if (self::$gzopen64 === null) {
63b9817b 1080 self::$gzopen64 = function_exists('gzopen64');
eedfeca6
AE
1081 }
1082
158bd3ca 1083 $this->filename = $filename;
eedfeca6 1084 if (!self::$gzopen64 && !function_exists('gzopen')) {
4fe0b42b 1085 throw new SystemException('Can not find functions of the zlib extension');
158bd3ca 1086 }
083a041c 1087 /** @noinspection PhpUndefinedFunctionInspection */
eedfeca6 1088 $this->resource = (self::$gzopen64 ? @gzopen64($filename, $mode) : @gzopen($filename, $mode));
158bd3ca 1089 if ($this->resource === false) {
4fe0b42b 1090 throw new SystemException('Can not open file ' . $filename);
158bd3ca
TD
1091 }
1092 }
1093
1094 /**
1095 * Calls the specified function on the open file.
1096 *
39bea7dd
MS
1097 * @param string $function
1098 * @param array $arguments
71952a87 1099 * @return mixed
2b770bdd 1100 * @throws SystemException
158bd3ca
TD
1101 */
1102 public function __call($function, $arguments) {
eedfeca6
AE
1103 if (self::$gzopen64 && function_exists('gz' . $function . '64')) {
1104 array_unshift($arguments, $this->resource);
1105 return call_user_func_array('gz' . $function . '64', $arguments);
1106 }
1107 else if (function_exists('gz' . $function)) {
158bd3ca 1108 array_unshift($arguments, $this->resource);
39bea7dd 1109 return call_user_func_array('gz' . $function, $arguments);
158bd3ca
TD
1110 }
1111 else if (function_exists($function)) {
1112 array_unshift($arguments, $this->filename);
39bea7dd 1113 return call_user_func_array($function, $arguments);
158bd3ca
TD
1114 }
1115 else {
4fe0b42b 1116 throw new SystemException('Can not call method ' . $function);
158bd3ca
TD
1117 }
1118 }
1119
1120 /**
1121 * Returns the filesize of the unzipped file
1122 */
1123 public function getFileSize() {
1124 $byteBlock = 1<<14;
1125 $eof = $byteBlock;
1126
1127 // the correction is for zip files that are too small
1128 // to get in the first while loop
1129 $correction = 1;
1130 while ($this->seek($eof) == 0) {
1131 $eof += $byteBlock;
1132 $correction = 0;
1133 }
1134
1135 while ($byteBlock > 1) {
1136 $byteBlock >>= 1;
1137 $eof += $byteBlock * ($this->seek($eof) ? -1 : 1);
1138 }
1139
1140 if ($this->seek($eof) == -1) $eof -= 1;
1141
1142 $this->rewind();
1143 return $eof - $correction;
1144 }
1145}
1146
1147// let's go
1148// get temp file prefix
1149if (isset($_REQUEST['tmpFilePrefix'])) {
1150 $prefix = preg_replace('/[^a-f0-9_]+/', '', $_REQUEST['tmpFilePrefix']);
1151}
1152else {
1153 $prefix = substr(sha1(uniqid(microtime())), 0, 8);
1154}
1155define('TMP_FILE_PREFIX', $prefix);
1156
1157// try to find the temp folder
99be741e 1158define('TMP_DIR', BasicFileUtil::getInstallTempFolder());
158bd3ca 1159
7da7f7cc
AE
1160/**
1161 * Reads a file resource from temp folder.
1162 *
1163 * @param string $key
1164 * @param string $directory
1165 */
1166function readFileResource($key, $directory) {
ec6e78b9 1167 if (preg_match('~[\w\-]+\.(css|jpg|png|svg|eot|woff|ttf)~', $_GET[$key], $match)) {
7da7f7cc
AE
1168 switch ($match[1]) {
1169 case 'css':
1170 header('Content-Type: text/css');
1171 break;
1172
1173 case 'jpg':
1174 header('Content-Type: image/jpg');
1175 break;
1176
1177 case 'png':
1178 header('Content-Type: image/png');
1179 break;
1180
1181 case 'svg':
1182 header('Content-Type: image/svg+xml');
1183 break;
ec6e78b9
MW
1184
1185 case 'eot':
1186 header('Content-Type: application/vnd.ms-fontobject');
1187 break;
1188
1189 case 'woff':
1190 header('Content-Type: application/font-woff');
1191 break;
1192
1193 case 'ttf':
1194 header('Content-Type: application/octet-stream');
1195 break;
7da7f7cc
AE
1196 }
1197
2d9861cd
AE
1198 header('Expires: '.gmdate('D, d M Y H:i:s', time() + 3600).' GMT');
1199 header('Last-Modified: Mon, 26 Jul 1997 05:00:00 GMT');
1200 header('Cache-Control: public, max-age=3600');
1201
7da7f7cc 1202 readfile($directory . $_GET[$key]);
158bd3ca
TD
1203 }
1204 exit;
1205}
1206
7da7f7cc
AE
1207// show image from temp folder
1208if (isset($_GET['showImage'])) {
1209 readFileResource('showImage', TMP_DIR . 'install/files/acp/images/');
1210}
1211// show icon from temp folder
1212if (isset($_GET['showIcon'])) {
1213 readFileResource('showIcon', TMP_DIR . 'install/files/icon/');
1214}
1215// show css from temp folder
1216if (isset($_GET['showCSS'])) {
e94c3830 1217 readFileResource('showCSS', TMP_DIR . 'install/files/acp/style/setup/');
7da7f7cc 1218}
ec6e78b9
MW
1219// show fonts from temp folder
1220if (isset($_GET['showFont'])) {
1221 readFileResource('showFont', TMP_DIR . 'install/files/font/');
1222}
7da7f7cc 1223
53e00c6b 1224// check whether setup files are already unzipped
158bd3ca
TD
1225if (!file_exists(TMP_DIR . 'install/files/lib/system/WCFSetup.class.php')) {
1226 // try to unzip all setup files into temp folder
1227 $tar = new Tar(SETUP_FILE);
1228 $contentList = $tar->getContentList();
15fa2802 1229 if (empty($contentList)) {
3a4862d3 1230 throw new SystemException("Cannot unpack 'WCFSetup.tar.gz'. File is probably broken.");
158bd3ca
TD
1231 }
1232
1233 foreach ($contentList as $file) {
1234 foreach ($neededFilesPattern as $pattern) {
1235 if (preg_match($pattern, $file['filename'])) {
1236 // create directory if not exists
1237 $dir = TMP_DIR . dirname($file['filename']);
1238 if (!@is_dir($dir)) {
1239 @mkdir($dir, 0777, true);
1232bce2 1240 BasicFileUtil::makeWritable($dir);
158bd3ca
TD
1241 }
1242
1243 $tar->extract($file['index'], TMP_DIR . $file['filename']);
1244 }
1245 }
1246 }
1247 $tar->close();
1248
1249 // create cache folders
1250 @mkdir(TMP_DIR . 'setup/lang/cache/', 0777);
1232bce2 1251 BasicFileUtil::makeWritable(TMP_DIR . 'setup/lang/cache/');
158bd3ca
TD
1252
1253 @mkdir(TMP_DIR . 'setup/template/compiled/', 0777);
1232bce2 1254 BasicFileUtil::makeWritable(TMP_DIR . 'setup/template/compiled/');
158bd3ca
TD
1255}
1256
1257if (!class_exists('wcf\system\WCFSetup')) {
3a4862d3 1258 throw new SystemException("Cannot find class 'WCFSetup'");
158bd3ca
TD
1259}
1260
1261// start setup
dcb3a44c 1262new \wcf\system\WCFSetup();