phar_internal.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646
  1. /*
  2. +----------------------------------------------------------------------+
  3. | phar php single-file executable PHP extension |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 2006-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt. |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Gregory Beaver <cellog@php.net> |
  16. | Marcus Boerger <helly@php.net> |
  17. +----------------------------------------------------------------------+
  18. */
  19. /* $Id$ */
  20. #ifdef HAVE_CONFIG_H
  21. #include "config.h"
  22. #endif
  23. #include <time.h>
  24. #include "php.h"
  25. #include "tar.h"
  26. #include "php_ini.h"
  27. #include "zend_constants.h"
  28. #include "zend_execute.h"
  29. #include "zend_exceptions.h"
  30. #include "zend_hash.h"
  31. #include "zend_interfaces.h"
  32. #include "zend_operators.h"
  33. #include "zend_qsort.h"
  34. #include "zend_vm.h"
  35. #include "main/php_streams.h"
  36. #include "main/streams/php_stream_plain_wrapper.h"
  37. #include "main/SAPI.h"
  38. #include "main/php_main.h"
  39. #include "main/php_open_temporary_file.h"
  40. #include "ext/standard/info.h"
  41. #include "ext/standard/basic_functions.h"
  42. #include "ext/standard/file.h"
  43. #include "ext/standard/php_string.h"
  44. #include "ext/standard/url.h"
  45. #include "ext/standard/crc32.h"
  46. #include "ext/standard/md5.h"
  47. #include "ext/standard/sha1.h"
  48. #include "ext/standard/php_var.h"
  49. #include "ext/standard/php_smart_str.h"
  50. #include "ext/standard/php_versioning.h"
  51. #ifndef PHP_WIN32
  52. #include "TSRM/tsrm_strtok_r.h"
  53. #endif
  54. #include "Zend/zend_virtual_cwd.h"
  55. #if HAVE_SPL
  56. #include "ext/spl/spl_array.h"
  57. #include "ext/spl/spl_directory.h"
  58. #include "ext/spl/spl_engine.h"
  59. #include "ext/spl/spl_exceptions.h"
  60. #include "ext/spl/spl_iterators.h"
  61. #endif
  62. #include "php_phar.h"
  63. #ifdef PHAR_HASH_OK
  64. #include "ext/hash/php_hash.h"
  65. #include "ext/hash/php_hash_sha.h"
  66. #endif
  67. /* PHP_ because this is public information via MINFO */
  68. #define PHP_PHAR_API_VERSION "1.1.1"
  69. /* x.y.z maps to 0xyz0 */
  70. #define PHAR_API_VERSION 0x1110
  71. /* if we bump PHAR_API_VERSION, change this from 0x1100 to PHAR_API_VERSION */
  72. #define PHAR_API_VERSION_NODIR 0x1100
  73. #define PHAR_API_MIN_DIR 0x1110
  74. #define PHAR_API_MIN_READ 0x1000
  75. #define PHAR_API_MAJORVERSION 0x1000
  76. #define PHAR_API_MAJORVER_MASK 0xF000
  77. #define PHAR_API_VER_MASK 0xFFF0
  78. #define PHAR_HDR_COMPRESSION_MASK 0x0000F000
  79. #define PHAR_HDR_COMPRESSED_NONE 0x00000000
  80. #define PHAR_HDR_COMPRESSED_GZ 0x00001000
  81. #define PHAR_HDR_COMPRESSED_BZ2 0x00002000
  82. #define PHAR_HDR_SIGNATURE 0x00010000
  83. /* flags for defining that the entire file should be compressed */
  84. #define PHAR_FILE_COMPRESSION_MASK 0x00F00000
  85. #define PHAR_FILE_COMPRESSED_NONE 0x00000000
  86. #define PHAR_FILE_COMPRESSED_GZ 0x00100000
  87. #define PHAR_FILE_COMPRESSED_BZ2 0x00200000
  88. #define PHAR_SIG_MD5 0x0001
  89. #define PHAR_SIG_SHA1 0x0002
  90. #define PHAR_SIG_SHA256 0x0003
  91. #define PHAR_SIG_SHA512 0x0004
  92. #define PHAR_SIG_OPENSSL 0x0010
  93. /* flags byte for each file adheres to these bitmasks.
  94. All unused values are reserved */
  95. #define PHAR_ENT_COMPRESSION_MASK 0x0000F000
  96. #define PHAR_ENT_COMPRESSED_NONE 0x00000000
  97. #define PHAR_ENT_COMPRESSED_GZ 0x00001000
  98. #define PHAR_ENT_COMPRESSED_BZ2 0x00002000
  99. #define PHAR_ENT_PERM_MASK 0x000001FF
  100. #define PHAR_ENT_PERM_MASK_USR 0x000001C0
  101. #define PHAR_ENT_PERM_SHIFT_USR 6
  102. #define PHAR_ENT_PERM_MASK_GRP 0x00000038
  103. #define PHAR_ENT_PERM_SHIFT_GRP 3
  104. #define PHAR_ENT_PERM_MASK_OTH 0x00000007
  105. #define PHAR_ENT_PERM_DEF_FILE 0x000001B6
  106. #define PHAR_ENT_PERM_DEF_DIR 0x000001FF
  107. #define PHAR_FORMAT_SAME 0
  108. #define PHAR_FORMAT_PHAR 1
  109. #define PHAR_FORMAT_TAR 2
  110. #define PHAR_FORMAT_ZIP 3
  111. #define TAR_FILE '0'
  112. #define TAR_LINK '1'
  113. #define TAR_SYMLINK '2'
  114. #define TAR_DIR '5'
  115. #define TAR_NEW '8'
  116. #define TAR_GLOBAL_HDR 'g'
  117. #define TAR_FILE_HDR 'x'
  118. #define PHAR_MUNG_PHP_SELF (1<<0)
  119. #define PHAR_MUNG_REQUEST_URI (1<<1)
  120. #define PHAR_MUNG_SCRIPT_NAME (1<<2)
  121. #define PHAR_MUNG_SCRIPT_FILENAME (1<<3)
  122. typedef struct _phar_entry_fp phar_entry_fp;
  123. typedef struct _phar_archive_data phar_archive_data;
  124. ZEND_BEGIN_MODULE_GLOBALS(phar)
  125. /* a list of phar_archive_data objects that reference a cached phar, so
  126. that if copy-on-write is performed, we can swap them out for the new value */
  127. HashTable phar_persist_map;
  128. HashTable phar_fname_map;
  129. /* for cached phars, this is a per-process store of fp/ufp */
  130. phar_entry_fp *cached_fp;
  131. HashTable phar_alias_map;
  132. int phar_SERVER_mung_list;
  133. int readonly;
  134. char* cache_list;
  135. int manifest_cached;
  136. int persist;
  137. int has_zlib;
  138. int has_bz2;
  139. zend_bool readonly_orig;
  140. zend_bool require_hash_orig;
  141. zend_bool intercepted;
  142. int request_init;
  143. int require_hash;
  144. int request_done;
  145. int request_ends;
  146. void (*orig_fopen)(INTERNAL_FUNCTION_PARAMETERS);
  147. void (*orig_file_get_contents)(INTERNAL_FUNCTION_PARAMETERS);
  148. void (*orig_is_file)(INTERNAL_FUNCTION_PARAMETERS);
  149. void (*orig_is_link)(INTERNAL_FUNCTION_PARAMETERS);
  150. void (*orig_is_dir)(INTERNAL_FUNCTION_PARAMETERS);
  151. void (*orig_opendir)(INTERNAL_FUNCTION_PARAMETERS);
  152. void (*orig_file_exists)(INTERNAL_FUNCTION_PARAMETERS);
  153. void (*orig_fileperms)(INTERNAL_FUNCTION_PARAMETERS);
  154. void (*orig_fileinode)(INTERNAL_FUNCTION_PARAMETERS);
  155. void (*orig_filesize)(INTERNAL_FUNCTION_PARAMETERS);
  156. void (*orig_fileowner)(INTERNAL_FUNCTION_PARAMETERS);
  157. void (*orig_filegroup)(INTERNAL_FUNCTION_PARAMETERS);
  158. void (*orig_fileatime)(INTERNAL_FUNCTION_PARAMETERS);
  159. void (*orig_filemtime)(INTERNAL_FUNCTION_PARAMETERS);
  160. void (*orig_filectime)(INTERNAL_FUNCTION_PARAMETERS);
  161. void (*orig_filetype)(INTERNAL_FUNCTION_PARAMETERS);
  162. void (*orig_is_writable)(INTERNAL_FUNCTION_PARAMETERS);
  163. void (*orig_is_readable)(INTERNAL_FUNCTION_PARAMETERS);
  164. void (*orig_is_executable)(INTERNAL_FUNCTION_PARAMETERS);
  165. void (*orig_lstat)(INTERNAL_FUNCTION_PARAMETERS);
  166. void (*orig_readfile)(INTERNAL_FUNCTION_PARAMETERS);
  167. void (*orig_stat)(INTERNAL_FUNCTION_PARAMETERS);
  168. /* used for includes with . in them inside front controller */
  169. char* cwd;
  170. int cwd_len;
  171. int cwd_init;
  172. char *openssl_privatekey;
  173. int openssl_privatekey_len;
  174. /* phar_get_archive cache */
  175. char* last_phar_name;
  176. int last_phar_name_len;
  177. char* last_alias;
  178. int last_alias_len;
  179. phar_archive_data* last_phar;
  180. HashTable mime_types;
  181. ZEND_END_MODULE_GLOBALS(phar)
  182. ZEND_EXTERN_MODULE_GLOBALS(phar)
  183. #ifdef ZTS
  184. # include "TSRM.h"
  185. # define PHAR_G(v) TSRMG(phar_globals_id, zend_phar_globals *, v)
  186. # define PHAR_GLOBALS ((zend_phar_globals *) (*((void ***) tsrm_ls))[TSRM_UNSHUFFLE_RSRC_ID(phar_globals_id)])
  187. #else
  188. # define PHAR_G(v) (phar_globals.v)
  189. # define PHAR_GLOBALS (&phar_globals)
  190. #endif
  191. #ifndef php_uint16
  192. # if SIZEOF_SHORT == 2
  193. # define php_uint16 unsigned short
  194. # else
  195. # define php_uint16 uint16_t
  196. # endif
  197. #endif
  198. #include "pharzip.h"
  199. #if HAVE_SPL
  200. typedef union _phar_archive_object phar_archive_object;
  201. typedef union _phar_entry_object phar_entry_object;
  202. #endif
  203. /*
  204. * used in phar_entry_info->fp_type to
  205. */
  206. enum phar_fp_type {
  207. /* regular file pointer phar_archive_data->fp */
  208. PHAR_FP,
  209. /* uncompressed file pointer phar_archive_data->uncompressed_fp */
  210. PHAR_UFP,
  211. /* modified file pointer phar_entry_info->fp */
  212. PHAR_MOD,
  213. /* temporary manifest entry (file outside of the phar mapped to a location inside the phar)
  214. this entry stores the stream to open in link (normally used for tars, but we steal it here) */
  215. PHAR_TMP
  216. };
  217. /* entry for one file in a phar file */
  218. typedef struct _phar_entry_info {
  219. /* first bytes are exactly as in file */
  220. php_uint32 uncompressed_filesize;
  221. php_uint32 timestamp;
  222. php_uint32 compressed_filesize;
  223. php_uint32 crc32;
  224. php_uint32 flags;
  225. /* remainder */
  226. /* when changing compression, save old flags in case fp is NULL */
  227. php_uint32 old_flags;
  228. zval *metadata;
  229. int metadata_len; /* only used for cached manifests */
  230. php_uint32 filename_len;
  231. char *filename;
  232. enum phar_fp_type fp_type;
  233. /* offset within original phar file of the file contents */
  234. long offset_abs;
  235. /* offset within fp of the file contents */
  236. long offset;
  237. /* offset within original phar file of the file header (for zip-based/tar-based) */
  238. long header_offset;
  239. php_stream *fp;
  240. php_stream *cfp;
  241. int fp_refcount;
  242. char *tmp;
  243. phar_archive_data *phar;
  244. smart_str metadata_str;
  245. char *link; /* symbolic link to another file */
  246. char tar_type;
  247. /* position in the manifest */
  248. uint manifest_pos;
  249. /* for stat */
  250. unsigned short inode;
  251. unsigned int is_crc_checked:1;
  252. unsigned int is_modified:1;
  253. unsigned int is_deleted:1;
  254. unsigned int is_dir:1;
  255. /* this flag is used for mounted entries (external files mapped to location
  256. inside a phar */
  257. unsigned int is_mounted:1;
  258. /* used when iterating */
  259. unsigned int is_temp_dir:1;
  260. /* tar-based phar file stuff */
  261. unsigned int is_tar:1;
  262. /* zip-based phar file stuff */
  263. unsigned int is_zip:1;
  264. /* for cached phar entries */
  265. unsigned int is_persistent:1;
  266. } phar_entry_info;
  267. /* information about a phar file (the archive itself) */
  268. struct _phar_archive_data {
  269. char *fname;
  270. int fname_len;
  271. /* for phar_detect_fname_ext, this stores the location of the file extension within fname */
  272. char *ext;
  273. int ext_len;
  274. char *alias;
  275. int alias_len;
  276. char version[12];
  277. size_t internal_file_start;
  278. size_t halt_offset;
  279. HashTable manifest;
  280. /* hash of virtual directories, as in path/to/file.txt has path/to and path as virtual directories */
  281. HashTable virtual_dirs;
  282. /* hash of mounted directory paths */
  283. HashTable mounted_dirs;
  284. php_uint32 flags;
  285. php_uint32 min_timestamp;
  286. php_uint32 max_timestamp;
  287. php_stream *fp;
  288. /* decompressed file contents are stored here */
  289. php_stream *ufp;
  290. int refcount;
  291. php_uint32 sig_flags;
  292. int sig_len;
  293. char *signature;
  294. zval *metadata;
  295. int metadata_len; /* only used for cached manifests */
  296. uint phar_pos;
  297. /* if 1, then this alias was manually specified by the user and is not a permanent alias */
  298. unsigned int is_temporary_alias:1;
  299. unsigned int is_modified:1;
  300. unsigned int is_writeable:1;
  301. unsigned int is_brandnew:1;
  302. /* defer phar creation */
  303. unsigned int donotflush:1;
  304. /* zip-based phar variables */
  305. unsigned int is_zip:1;
  306. /* tar-based phar variables */
  307. unsigned int is_tar:1;
  308. /* PharData variables */
  309. unsigned int is_data:1;
  310. /* for cached phar manifests */
  311. unsigned int is_persistent:1;
  312. };
  313. typedef struct _phar_entry_fp_info {
  314. enum phar_fp_type fp_type;
  315. /* offset within fp of the file contents */
  316. long offset;
  317. } phar_entry_fp_info;
  318. struct _phar_entry_fp {
  319. php_stream *fp;
  320. php_stream *ufp;
  321. phar_entry_fp_info *manifest;
  322. };
  323. static inline php_stream *phar_get_entrypfp(phar_entry_info *entry TSRMLS_DC)
  324. {
  325. if (!entry->is_persistent) {
  326. return entry->phar->fp;
  327. }
  328. return PHAR_GLOBALS->cached_fp[entry->phar->phar_pos].fp;
  329. }
  330. static inline php_stream *phar_get_entrypufp(phar_entry_info *entry TSRMLS_DC)
  331. {
  332. if (!entry->is_persistent) {
  333. return entry->phar->ufp;
  334. }
  335. return PHAR_GLOBALS->cached_fp[entry->phar->phar_pos].ufp;
  336. }
  337. static inline void phar_set_entrypfp(phar_entry_info *entry, php_stream *fp TSRMLS_DC)
  338. {
  339. if (!entry->phar->is_persistent) {
  340. entry->phar->fp = fp;
  341. return;
  342. }
  343. PHAR_GLOBALS->cached_fp[entry->phar->phar_pos].fp = fp;
  344. }
  345. static inline void phar_set_entrypufp(phar_entry_info *entry, php_stream *fp TSRMLS_DC)
  346. {
  347. if (!entry->phar->is_persistent) {
  348. entry->phar->ufp = fp;
  349. return;
  350. }
  351. PHAR_GLOBALS->cached_fp[entry->phar->phar_pos].ufp = fp;
  352. }
  353. static inline php_stream *phar_get_pharfp(phar_archive_data *phar TSRMLS_DC)
  354. {
  355. if (!phar->is_persistent) {
  356. return phar->fp;
  357. }
  358. return PHAR_GLOBALS->cached_fp[phar->phar_pos].fp;
  359. }
  360. static inline php_stream *phar_get_pharufp(phar_archive_data *phar TSRMLS_DC)
  361. {
  362. if (!phar->is_persistent) {
  363. return phar->ufp;
  364. }
  365. return PHAR_GLOBALS->cached_fp[phar->phar_pos].ufp;
  366. }
  367. static inline void phar_set_pharfp(phar_archive_data *phar, php_stream *fp TSRMLS_DC)
  368. {
  369. if (!phar->is_persistent) {
  370. phar->fp = fp;
  371. return;
  372. }
  373. PHAR_GLOBALS->cached_fp[phar->phar_pos].fp = fp;
  374. }
  375. static inline void phar_set_pharufp(phar_archive_data *phar, php_stream *fp TSRMLS_DC)
  376. {
  377. if (!phar->is_persistent) {
  378. phar->ufp = fp;
  379. return;
  380. }
  381. PHAR_GLOBALS->cached_fp[phar->phar_pos].ufp = fp;
  382. }
  383. static inline void phar_set_fp_type(phar_entry_info *entry, enum phar_fp_type type, off_t offset TSRMLS_DC)
  384. {
  385. phar_entry_fp_info *data;
  386. if (!entry->is_persistent) {
  387. entry->fp_type = type;
  388. entry->offset = offset;
  389. return;
  390. }
  391. data = &(PHAR_GLOBALS->cached_fp[entry->phar->phar_pos].manifest[entry->manifest_pos]);
  392. data->fp_type = type;
  393. data->offset = offset;
  394. }
  395. static inline enum phar_fp_type phar_get_fp_type(phar_entry_info *entry TSRMLS_DC)
  396. {
  397. if (!entry->is_persistent) {
  398. return entry->fp_type;
  399. }
  400. return PHAR_GLOBALS->cached_fp[entry->phar->phar_pos].manifest[entry->manifest_pos].fp_type;
  401. }
  402. static inline off_t phar_get_fp_offset(phar_entry_info *entry TSRMLS_DC)
  403. {
  404. if (!entry->is_persistent) {
  405. return entry->offset;
  406. }
  407. if (PHAR_GLOBALS->cached_fp[entry->phar->phar_pos].manifest[entry->manifest_pos].fp_type == PHAR_FP) {
  408. if (!PHAR_GLOBALS->cached_fp[entry->phar->phar_pos].manifest[entry->manifest_pos].offset) {
  409. PHAR_GLOBALS->cached_fp[entry->phar->phar_pos].manifest[entry->manifest_pos].offset = entry->offset;
  410. }
  411. }
  412. return PHAR_GLOBALS->cached_fp[entry->phar->phar_pos].manifest[entry->manifest_pos].offset;
  413. }
  414. #define PHAR_MIME_PHP '\0'
  415. #define PHAR_MIME_PHPS '\1'
  416. #define PHAR_MIME_OTHER '\2'
  417. typedef struct _phar_mime_type {
  418. char *mime;
  419. int len;
  420. /* one of PHAR_MIME_* */
  421. char type;
  422. } phar_mime_type;
  423. /* stream access data for one file entry in a phar file */
  424. typedef struct _phar_entry_data {
  425. phar_archive_data *phar;
  426. php_stream *fp;
  427. /* stream position proxy, allows multiple open streams referring to the same fp */
  428. off_t position;
  429. /* for copies of the phar fp, defines where 0 is */
  430. off_t zero;
  431. unsigned int for_write:1;
  432. unsigned int is_zip:1;
  433. unsigned int is_tar:1;
  434. phar_entry_info *internal_file;
  435. } phar_entry_data;
  436. #if HAVE_SPL
  437. /* archive php object */
  438. union _phar_archive_object {
  439. zend_object std;
  440. spl_filesystem_object spl;
  441. struct {
  442. zend_object std;
  443. phar_archive_data *archive;
  444. } arc;
  445. };
  446. #endif
  447. #if HAVE_SPL
  448. /* entry php object */
  449. union _phar_entry_object {
  450. zend_object std;
  451. spl_filesystem_object spl;
  452. struct {
  453. zend_object std;
  454. phar_entry_info *entry;
  455. } ent;
  456. };
  457. #endif
  458. #ifndef PHAR_MAIN
  459. extern char *(*phar_save_resolve_path)(const char *filename, int filename_len TSRMLS_DC);
  460. #endif
  461. BEGIN_EXTERN_C()
  462. #ifdef PHP_WIN32
  463. char *tsrm_strtok_r(char *s, const char *delim, char **last);
  464. static inline void phar_unixify_path_separators(char *path, int path_len)
  465. {
  466. char *s;
  467. /* unixify win paths */
  468. for (s = path; s - path < path_len; ++s) {
  469. if (*s == '\\') {
  470. *s = '/';
  471. }
  472. }
  473. }
  474. #endif
  475. /**
  476. * validate an alias, returns 1 for success, 0 for failure
  477. */
  478. static inline int phar_validate_alias(const char *alias, int alias_len) /* {{{ */
  479. {
  480. return !(memchr(alias, '/', alias_len) || memchr(alias, '\\', alias_len) || memchr(alias, ':', alias_len) ||
  481. memchr(alias, ';', alias_len) || memchr(alias, '\n', alias_len) || memchr(alias, '\r', alias_len));
  482. }
  483. /* }}} */
  484. static inline void phar_set_inode(phar_entry_info *entry TSRMLS_DC) /* {{{ */
  485. {
  486. char tmp[MAXPATHLEN];
  487. int tmp_len;
  488. size_t len1, len2;
  489. tmp_len = MIN(MAXPATHLEN, entry->filename_len + entry->phar->fname_len);
  490. len1 = MIN(entry->phar->fname_len, tmp_len);
  491. memcpy(tmp, entry->phar->fname, len1);
  492. len2 = MIN(tmp_len - len1, entry->filename_len);
  493. memcpy(tmp + len1, entry->filename, len2);
  494. entry->inode = (unsigned short)zend_get_hash_value(tmp, tmp_len);
  495. }
  496. /* }}} */
  497. void phar_request_initialize(TSRMLS_D);
  498. void phar_object_init(TSRMLS_D);
  499. void phar_destroy_phar_data(phar_archive_data *phar TSRMLS_DC);
  500. int phar_open_entry_file(phar_archive_data *phar, phar_entry_info *entry, char **error TSRMLS_DC);
  501. int phar_postprocess_file(phar_entry_data *idata, php_uint32 crc32, char **error, int process_zip TSRMLS_DC);
  502. int phar_open_from_filename(char *fname, int fname_len, char *alias, int alias_len, int options, phar_archive_data** pphar, char **error TSRMLS_DC);
  503. int phar_open_or_create_filename(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC);
  504. int phar_create_or_parse_filename(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC);
  505. int phar_open_executed_filename(char *alias, int alias_len, char **error TSRMLS_DC);
  506. int phar_free_alias(phar_archive_data *phar, char *alias, int alias_len TSRMLS_DC);
  507. int phar_get_archive(phar_archive_data **archive, char *fname, int fname_len, char *alias, int alias_len, char **error TSRMLS_DC);
  508. int phar_open_parsed_phar(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC);
  509. int phar_verify_signature(php_stream *fp, size_t end_of_phar, php_uint32 sig_type, char *sig, int sig_len, char *fname, char **signature, int *signature_len, char **error TSRMLS_DC);
  510. int phar_create_signature(phar_archive_data *phar, php_stream *fp, char **signature, int *signature_length, char **error TSRMLS_DC);
  511. /* utility functions */
  512. char *phar_create_default_stub(const char *index_php, const char *web_index, size_t *len, char **error TSRMLS_DC);
  513. char *phar_decompress_filter(phar_entry_info * entry, int return_unknown);
  514. char *phar_compress_filter(phar_entry_info * entry, int return_unknown);
  515. void phar_remove_virtual_dirs(phar_archive_data *phar, char *filename, int filename_len TSRMLS_DC);
  516. void phar_add_virtual_dirs(phar_archive_data *phar, char *filename, int filename_len TSRMLS_DC);
  517. int phar_mount_entry(phar_archive_data *phar, char *filename, int filename_len, char *path, int path_len TSRMLS_DC);
  518. char *phar_find_in_include_path(char *file, int file_len, phar_archive_data **pphar TSRMLS_DC);
  519. char *phar_fix_filepath(char *path, int *new_len, int use_cwd TSRMLS_DC);
  520. phar_entry_info * phar_open_jit(phar_archive_data *phar, phar_entry_info *entry, char **error TSRMLS_DC);
  521. int phar_parse_metadata(char **buffer, zval **metadata, php_uint32 zip_metadata_len TSRMLS_DC);
  522. void destroy_phar_manifest_entry(void *pDest);
  523. int phar_seek_efp(phar_entry_info *entry, off_t offset, int whence, off_t position, int follow_links TSRMLS_DC);
  524. php_stream *phar_get_efp(phar_entry_info *entry, int follow_links TSRMLS_DC);
  525. int phar_copy_entry_fp(phar_entry_info *source, phar_entry_info *dest, char **error TSRMLS_DC);
  526. int phar_open_entry_fp(phar_entry_info *entry, char **error, int follow_links TSRMLS_DC);
  527. phar_entry_info *phar_get_link_source(phar_entry_info *entry TSRMLS_DC);
  528. int phar_create_writeable_entry(phar_archive_data *phar, phar_entry_info *entry, char **error TSRMLS_DC);
  529. int phar_separate_entry_fp(phar_entry_info *entry, char **error TSRMLS_DC);
  530. int phar_open_archive_fp(phar_archive_data *phar TSRMLS_DC);
  531. int phar_copy_on_write(phar_archive_data **pphar TSRMLS_DC);
  532. /* tar functions in tar.c */
  533. int phar_is_tar(char *buf, char *fname);
  534. int phar_parse_tarfile(php_stream* fp, char *fname, int fname_len, char *alias, int alias_len, phar_archive_data** pphar, int is_data, php_uint32 compression, char **error TSRMLS_DC);
  535. int phar_open_or_create_tar(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC);
  536. int phar_tar_flush(phar_archive_data *phar, char *user_stub, long len, int defaultstub, char **error TSRMLS_DC);
  537. /* zip functions in zip.c */
  538. int phar_parse_zipfile(php_stream *fp, char *fname, int fname_len, char *alias, int alias_len, phar_archive_data** pphar, char **error TSRMLS_DC);
  539. int phar_open_or_create_zip(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC);
  540. int phar_zip_flush(phar_archive_data *archive, char *user_stub, long len, int defaultstub, char **error TSRMLS_DC);
  541. #ifdef PHAR_MAIN
  542. static int phar_open_from_fp(php_stream* fp, char *fname, int fname_len, char *alias, int alias_len, int options, phar_archive_data** pphar, int is_data, char **error TSRMLS_DC);
  543. extern php_stream_wrapper php_stream_phar_wrapper;
  544. #else
  545. extern HashTable cached_phars;
  546. extern HashTable cached_alias;
  547. #endif
  548. int phar_archive_delref(phar_archive_data *phar TSRMLS_DC);
  549. int phar_entry_delref(phar_entry_data *idata TSRMLS_DC);
  550. phar_entry_info *phar_get_entry_info(phar_archive_data *phar, char *path, int path_len, char **error, int security TSRMLS_DC);
  551. phar_entry_info *phar_get_entry_info_dir(phar_archive_data *phar, char *path, int path_len, char dir, char **error, int security TSRMLS_DC);
  552. phar_entry_data *phar_get_or_create_entry_data(char *fname, int fname_len, char *path, int path_len, const char *mode, char allow_dir, char **error, int security TSRMLS_DC);
  553. int phar_get_entry_data(phar_entry_data **ret, char *fname, int fname_len, char *path, int path_len, const char *mode, char allow_dir, char **error, int security TSRMLS_DC);
  554. int phar_flush(phar_archive_data *archive, char *user_stub, long len, int convert, char **error TSRMLS_DC);
  555. int phar_detect_phar_fname_ext(const char *filename, int filename_len, const char **ext_str, int *ext_len, int executable, int for_create, int is_complete TSRMLS_DC);
  556. int phar_split_fname(const char *filename, int filename_len, char **arch, int *arch_len, char **entry, int *entry_len, int executable, int for_create TSRMLS_DC);
  557. typedef enum {
  558. pcr_use_query,
  559. pcr_is_ok,
  560. pcr_err_double_slash,
  561. pcr_err_up_dir,
  562. pcr_err_curr_dir,
  563. pcr_err_back_slash,
  564. pcr_err_star,
  565. pcr_err_illegal_char,
  566. pcr_err_empty_entry
  567. } phar_path_check_result;
  568. phar_path_check_result phar_path_check(char **p, int *len, const char **error);
  569. END_EXTERN_C()
  570. /*
  571. * Local variables:
  572. * tab-width: 4
  573. * c-basic-offset: 4
  574. * End:
  575. * vim600: noet sw=4 ts=4 fdm=marker
  576. * vim<600: noet sw=4 ts=4
  577. */