ILIAS  Release_4_4_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
OLE.php
Go to the documentation of this file.
1 <?php
2 /* vim: set expandtab tabstop=4 shiftwidth=4: */
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4 |
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2002 The PHP Group |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license, |
9 // | that is bundled with this package in the file LICENSE, and is |
10 // | available at through the world-wide-web at |
11 // | http://www.php.net/license/2_02.txt. |
12 // | If you did not receive a copy of the PHP license and are unable to |
13 // | obtain it through the world-wide-web, please send a note to |
14 // | license@php.net so we can mail you a copy immediately. |
15 // +----------------------------------------------------------------------+
16 // | Author: Xavier Noguer <xnoguer@php.net> |
17 // | Based on OLE::Storage_Lite by Kawai, Takanori |
18 // +----------------------------------------------------------------------+
19 //
20 // $Id: OLE.php,v 1.15 2007/12/18 20:59:11 schmidt Exp $
21 
22 
26 define('OLE_PPS_TYPE_ROOT', 5);
27 define('OLE_PPS_TYPE_DIR', 1);
28 define('OLE_PPS_TYPE_FILE', 2);
29 define('OLE_DATA_SIZE_SMALL', 0x1000);
30 define('OLE_LONG_INT_SIZE', 4);
31 define('OLE_PPS_SIZE', 0x80);
32 
33 require_once 'PEAR.php';
34 
40 $GLOBALS['_OLE_INSTANCES'] = array();
41 
50 class OLE extends PEAR
51 {
52 
58 
63  var $_list;
64 
69  var $root;
70 
75  var $bbat;
76 
81  var $sbat;
82 
88 
94 
99  function OLE()
100  {
101  $this->_list = array();
102  }
103 
110  function _OLE()
111  {
112  fclose($this->_file_handle);
113  }
114 
122  function read($file)
123  {
124  $fh = @fopen($file, "r");
125  if (!$fh) {
126  return $this->raiseError("Can't open file $file");
127  }
128  $this->_file_handle = $fh;
129 
130  $signature = fread($fh, 8);
131  if ("\xD0\xCF\x11\xE0\xA1\xB1\x1A\xE1" != $signature) {
132  return $this->raiseError("File doesn't seem to be an OLE container.");
133  }
134  fseek($fh, 28);
135  if (fread($fh, 2) != "\xFE\xFF") {
136  // This shouldn't be a problem in practice
137  return $this->raiseError("Only Little-Endian encoding is supported.");
138  }
139  // Size of blocks and short blocks in bytes
140  $this->bigBlockSize = pow(2, $this->_readInt2($fh));
141  $this->smallBlockSize = pow(2, $this->_readInt2($fh));
142 
143  // Skip UID, revision number and version number
144  fseek($fh, 44);
145  // Number of blocks in Big Block Allocation Table
146  $bbatBlockCount = $this->_readInt4($fh);
147 
148  // Root chain 1st block
149  $directoryFirstBlockId = $this->_readInt4($fh);
150 
151  // Skip unused bytes
152  fseek($fh, 56);
153  // Streams shorter than this are stored using small blocks
154  $this->bigBlockThreshold = $this->_readInt4($fh);
155  // Block id of first sector in Short Block Allocation Table
156  $sbatFirstBlockId = $this->_readInt4($fh);
157  // Number of blocks in Short Block Allocation Table
158  $sbbatBlockCount = $this->_readInt4($fh);
159  // Block id of first sector in Master Block Allocation Table
160  $mbatFirstBlockId = $this->_readInt4($fh);
161  // Number of blocks in Master Block Allocation Table
162  $mbbatBlockCount = $this->_readInt4($fh);
163  $this->bbat = array();
164 
165  // Remaining 4 * 109 bytes of current block is beginning of Master
166  // Block Allocation Table
167  $mbatBlocks = array();
168  for ($i = 0; $i < 109; $i++) {
169  $mbatBlocks[] = $this->_readInt4($fh);
170  }
171 
172  // Read rest of Master Block Allocation Table (if any is left)
173  $pos = $this->_getBlockOffset($mbatFirstBlockId);
174  for ($i = 0; $i < $mbbatBlockCount; $i++) {
175  fseek($fh, $pos);
176  for ($j = 0; $j < $this->bigBlockSize / 4 - 1; $j++) {
177  $mbatBlocks[] = $this->_readInt4($fh);
178  }
179  // Last block id in each block points to next block
180  $pos = $this->_getBlockOffset($this->_readInt4($fh));
181  }
182 
183  // Read Big Block Allocation Table according to chain specified by
184  // $mbatBlocks
185  for ($i = 0; $i < $bbatBlockCount; $i++) {
186  $pos = $this->_getBlockOffset($mbatBlocks[$i]);
187  fseek($fh, $pos);
188  for ($j = 0 ; $j < $this->bigBlockSize / 4; $j++) {
189  $this->bbat[] = $this->_readInt4($fh);
190  }
191  }
192 
193  // Read short block allocation table (SBAT)
194  $this->sbat = array();
195  $shortBlockCount = $sbbatBlockCount * $this->bigBlockSize / 4;
196  $sbatFh = $this->getStream($sbatFirstBlockId);
197  for ($blockId = 0; $blockId < $shortBlockCount; $blockId++) {
198  $this->sbat[$blockId] = $this->_readInt4($sbatFh);
199  }
200  fclose($sbatFh);
201 
202  $this->_readPpsWks($directoryFirstBlockId);
203 
204  return true;
205  }
206 
212  function _getBlockOffset($blockId)
213  {
214  return 512 + $blockId * $this->bigBlockSize;
215  }
216 
223  function getStream($blockIdOrPps)
224  {
225  include_once 'OLE/ChainedBlockStream.php';
226  static $isRegistered = false;
227  if (!$isRegistered) {
228  stream_wrapper_register('ole-chainedblockstream',
229  'OLE_ChainedBlockStream');
230  $isRegistered = true;
231  }
232 
233  // Store current instance in global array, so that it can be accessed
234  // in OLE_ChainedBlockStream::stream_open().
235  // Object is removed from self::$instances in OLE_Stream::close().
236  $GLOBALS['_OLE_INSTANCES'][] = $this;
237  $instanceId = end(array_keys($GLOBALS['_OLE_INSTANCES']));
238 
239  $path = 'ole-chainedblockstream://oleInstanceId=' . $instanceId;
240  if (is_a($blockIdOrPps, 'OLE_PPS')) {
241  $path .= '&blockId=' . $blockIdOrPps->_StartBlock;
242  $path .= '&size=' . $blockIdOrPps->Size;
243  } else {
244  $path .= '&blockId=' . $blockIdOrPps;
245  }
246  return fopen($path, 'r');
247  }
248 
255  function _readInt1($fh)
256  {
257  list(, $tmp) = unpack("c", fread($fh, 1));
258  return $tmp;
259  }
260 
267  function _readInt2($fh)
268  {
269  list(, $tmp) = unpack("v", fread($fh, 2));
270  return $tmp;
271  }
272 
279  function _readInt4($fh)
280  {
281  list(, $tmp) = unpack("V", fread($fh, 4));
282  return $tmp;
283  }
284 
293  function _readPpsWks($blockId)
294  {
295  $fh = $this->getStream($blockId);
296  for ($pos = 0; ; $pos += 128) {
297  fseek($fh, $pos, SEEK_SET);
298  $nameUtf16 = fread($fh, 64);
299  $nameLength = $this->_readInt2($fh);
300  $nameUtf16 = substr($nameUtf16, 0, $nameLength - 2);
301  // Simple conversion from UTF-16LE to ISO-8859-1
302  $name = str_replace("\x00", "", $nameUtf16);
303  $type = $this->_readInt1($fh);
304  switch ($type) {
305  case OLE_PPS_TYPE_ROOT:
306  require_once 'OLE/PPS/Root.php';
307  $pps = new OLE_PPS_Root(null, null, array());
308  $this->root = $pps;
309  break;
310  case OLE_PPS_TYPE_DIR:
311  $pps = new OLE_PPS(null, null, null, null, null,
312  null, null, null, null, array());
313  break;
314  case OLE_PPS_TYPE_FILE:
315  require_once 'OLE/PPS/File.php';
316  $pps = new OLE_PPS_File($name);
317  break;
318  default:
319  continue;
320  }
321  fseek($fh, 1, SEEK_CUR);
322  $pps->Type = $type;
323  $pps->Name = $name;
324  $pps->PrevPps = $this->_readInt4($fh);
325  $pps->NextPps = $this->_readInt4($fh);
326  $pps->DirPps = $this->_readInt4($fh);
327  fseek($fh, 20, SEEK_CUR);
328  $pps->Time1st = OLE::OLE2LocalDate(fread($fh, 8));
329  $pps->Time2nd = OLE::OLE2LocalDate(fread($fh, 8));
330  $pps->_StartBlock = $this->_readInt4($fh);
331  $pps->Size = $this->_readInt4($fh);
332  $pps->No = count($this->_list);
333  $this->_list[] = $pps;
334 
335  // check if the PPS tree (starting from root) is complete
336  if (isset($this->root) &&
337  $this->_ppsTreeComplete($this->root->No)) {
338 
339  break;
340  }
341  }
342  fclose($fh);
343 
344  // Initialize $pps->children on directories
345  foreach ($this->_list as $pps) {
346  if ($pps->Type == OLE_PPS_TYPE_DIR || $pps->Type == OLE_PPS_TYPE_ROOT) {
347  $nos = array($pps->DirPps);
348  $pps->children = array();
349  while ($nos) {
350  $no = array_pop($nos);
351  if ($no != -1) {
352  $childPps = $this->_list[$no];
353  $nos[] = $childPps->PrevPps;
354  $nos[] = $childPps->NextPps;
355  $pps->children[] = $childPps;
356  }
357  }
358  }
359  }
360 
361  return true;
362  }
363 
372  function _ppsTreeComplete($index)
373  {
374  return isset($this->_list[$index]) &&
375  ($pps = $this->_list[$index]) &&
376  ($pps->PrevPps == -1 ||
377  $this->_ppsTreeComplete($pps->PrevPps)) &&
378  ($pps->NextPps == -1 ||
379  $this->_ppsTreeComplete($pps->NextPps)) &&
380  ($pps->DirPps == -1 ||
381  $this->_ppsTreeComplete($pps->DirPps));
382  }
383 
391  function isFile($index)
392  {
393  if (isset($this->_list[$index])) {
394  return ($this->_list[$index]->Type == OLE_PPS_TYPE_FILE);
395  }
396  return false;
397  }
398 
406  function isRoot($index)
407  {
408  if (isset($this->_list[$index])) {
409  return ($this->_list[$index]->Type == OLE_PPS_TYPE_ROOT);
410  }
411  return false;
412  }
413 
419  function ppsTotal()
420  {
421  return count($this->_list);
422  }
423 
435  function getData($index, $position, $length)
436  {
437  // if position is not valid return empty string
438  if (!isset($this->_list[$index]) ||
439  $position >= $this->_list[$index]->Size ||
440  $position < 0) {
441 
442  return '';
443  }
444  $fh = $this->getStream($this->_list[$index]);
445  $data = stream_get_contents($fh, $length, $position);
446  fclose($fh);
447  return $data;
448  }
449 
457  function getDataLength($index)
458  {
459  if (isset($this->_list[$index])) {
460  return $this->_list[$index]->Size;
461  }
462  return 0;
463  }
464 
473  function Asc2Ucs($ascii)
474  {
475  $rawname = '';
476  for ($i = 0; $i < strlen($ascii); $i++) {
477  $rawname .= $ascii{$i} . "\x00";
478  }
479  return $rawname;
480  }
481 
491  function LocalDate2OLE($date = null)
492  {
493  if (!isset($date)) {
494  return "\x00\x00\x00\x00\x00\x00\x00\x00";
495  }
496 
497  // factor used for separating numbers into 4 bytes parts
498  $factor = pow(2, 32);
499 
500  // days from 1-1-1601 until the beggining of UNIX era
501  $days = 134774;
502  // calculate seconds
503  $big_date = $days * 24 * 3600 +
504  gmmktime(date("H",$date),date("i",$date),date("s",$date),
505  date("m",$date),date("d",$date),date("Y",$date));
506  // multiply just to make MS happy
507  $big_date *= 10000000;
508 
509  $high_part = floor($big_date / $factor);
510  // lower 4 bytes
511  $low_part = floor((($big_date / $factor) - $high_part) * $factor);
512 
513  // Make HEX string
514  $res = '';
515 
516  for ($i = 0; $i < 4; $i++) {
517  $hex = $low_part % 0x100;
518  $res .= pack('c', $hex);
519  $low_part /= 0x100;
520  }
521  for ($i = 0; $i < 4; $i++) {
522  $hex = $high_part % 0x100;
523  $res .= pack('c', $hex);
524  $high_part /= 0x100;
525  }
526  return $res;
527  }
528 
536  function OLE2LocalDate($string)
537  {
538  if (strlen($string) != 8) {
539  return new PEAR_Error("Expecting 8 byte string");
540  }
541 
542  // factor used for separating numbers into 4 bytes parts
543  $factor = pow(2,32);
544  $high_part = 0;
545  for ($i = 0; $i < 4; $i++) {
546  list(, $high_part) = unpack('C', $string{(7 - $i)});
547  if ($i < 3) {
548  $high_part *= 0x100;
549  }
550  }
551  $low_part = 0;
552  for ($i = 4; $i < 8; $i++) {
553  list(, $low_part) = unpack('C', $string{(7 - $i)});
554  if ($i < 7) {
555  $low_part *= 0x100;
556  }
557  }
558  $big_date = ($high_part * $factor) + $low_part;
559  // translate to seconds
560  $big_date /= 10000000;
561 
562  // days from 1-1-1601 until the beggining of UNIX era
563  $days = 134774;
564 
565  // translate to seconds from beggining of UNIX era
566  $big_date -= $days * 24 * 3600;
567  return floor($big_date);
568  }
569 }
570 ?>