2007-01-21 23:25:50 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| phar php single-file executable PHP extension |
|
|
|
|
+----------------------------------------------------------------------+
|
2007-02-06 05:38:50 +08:00
|
|
|
| Copyright (c) 2006-2007 The PHP Group |
|
2007-01-21 23:25:50 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available through the world-wide-web at the following url: |
|
|
|
|
| http://www.php.net/license/3_01.txt. |
|
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Gregory Beaver <cellog@php.net> |
|
|
|
|
| Marcus Boerger <helly@php.net> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include "php.h"
|
2008-01-03 12:45:00 +08:00
|
|
|
#include "tar.h"
|
2007-01-21 23:25:50 +08:00
|
|
|
#include "php_ini.h"
|
|
|
|
#include "zend_constants.h"
|
|
|
|
#include "zend_execute.h"
|
|
|
|
#include "zend_exceptions.h"
|
|
|
|
#include "zend_hash.h"
|
|
|
|
#include "zend_interfaces.h"
|
|
|
|
#include "zend_operators.h"
|
|
|
|
#include "zend_qsort.h"
|
2007-12-22 15:46:53 +08:00
|
|
|
#include "zend_vm.h"
|
2007-01-21 23:25:50 +08:00
|
|
|
#include "main/php_streams.h"
|
2007-12-19 01:01:24 +08:00
|
|
|
#include "main/streams/php_stream_plain_wrapper.h"
|
2007-12-24 05:12:42 +08:00
|
|
|
#include "main/SAPI.h"
|
|
|
|
#include "main/php_main.h"
|
2008-01-16 15:24:39 +08:00
|
|
|
#include "main/php_open_temporary_file.h"
|
2007-01-21 23:25:50 +08:00
|
|
|
#include "ext/standard/info.h"
|
2007-02-07 01:09:37 +08:00
|
|
|
#include "ext/standard/basic_functions.h"
|
2007-12-19 12:37:25 +08:00
|
|
|
#include "ext/standard/file.h"
|
2008-01-10 23:13:00 +08:00
|
|
|
#include "ext/standard/php_string.h"
|
2007-01-21 23:25:50 +08:00
|
|
|
#include "ext/standard/url.h"
|
|
|
|
#include "ext/standard/crc32.h"
|
|
|
|
#include "ext/standard/md5.h"
|
|
|
|
#include "ext/standard/sha1.h"
|
2007-01-22 04:12:50 +08:00
|
|
|
#include "ext/standard/php_var.h"
|
|
|
|
#include "ext/standard/php_smart_str.h"
|
2008-01-18 13:42:16 +08:00
|
|
|
#include "ext/standard/php_versioning.h"
|
2007-12-25 05:40:54 +08:00
|
|
|
#ifndef PHP_WIN32
|
2007-12-21 07:12:40 +08:00
|
|
|
#include "TSRM/tsrm_strtok_r.h"
|
2007-12-25 05:40:54 +08:00
|
|
|
#endif
|
2008-01-10 23:13:00 +08:00
|
|
|
#include "TSRM/tsrm_virtual_cwd.h"
|
2007-01-21 23:25:50 +08:00
|
|
|
#if HAVE_SPL
|
|
|
|
#include "ext/spl/spl_array.h"
|
|
|
|
#include "ext/spl/spl_directory.h"
|
|
|
|
#include "ext/spl/spl_engine.h"
|
|
|
|
#include "ext/spl/spl_exceptions.h"
|
2007-02-09 06:50:15 +08:00
|
|
|
#include "ext/spl/spl_iterators.h"
|
2007-01-21 23:25:50 +08:00
|
|
|
#endif
|
|
|
|
#include "php_phar.h"
|
|
|
|
#ifdef HAVE_STDINT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#endif
|
2007-03-26 05:43:49 +08:00
|
|
|
#if HAVE_HASH_EXT
|
|
|
|
#include "ext/hash/php_hash.h"
|
|
|
|
#include "ext/hash/php_hash_sha.h"
|
|
|
|
#endif
|
2007-01-21 23:25:50 +08:00
|
|
|
|
|
|
|
#ifndef E_RECOVERABLE_ERROR
|
|
|
|
#define E_RECOVERABLE_ERROR E_ERROR
|
|
|
|
#endif
|
|
|
|
|
2008-03-23 05:54:15 +08:00
|
|
|
/* PHP_ because this is public information via MINFO */
|
|
|
|
#define PHP_PHAR_API_VERSION "1.1.1"
|
2007-01-21 23:25:50 +08:00
|
|
|
/* x.y.z maps to 0xyz0 */
|
2008-01-20 02:30:30 +08:00
|
|
|
#define PHAR_API_VERSION 0x1110
|
|
|
|
/* if we bump PHAR_API_VERSION, change this from 0x1100 to PHAR_API_VERSION */
|
|
|
|
#define PHAR_API_VERSION_NODIR 0x1100
|
|
|
|
#define PHAR_API_MIN_DIR 0x1110
|
2007-01-29 11:59:55 +08:00
|
|
|
#define PHAR_API_MIN_READ 0x1000
|
2007-01-28 11:59:30 +08:00
|
|
|
#define PHAR_API_MAJORVERSION 0x1000
|
2007-01-21 23:25:50 +08:00
|
|
|
#define PHAR_API_MAJORVER_MASK 0xF000
|
|
|
|
#define PHAR_API_VER_MASK 0xFFF0
|
|
|
|
|
|
|
|
#define PHAR_HDR_COMPRESSION_MASK 0x0000F000
|
|
|
|
#define PHAR_HDR_COMPRESSED_NONE 0x00000000
|
|
|
|
#define PHAR_HDR_COMPRESSED_GZ 0x00001000
|
|
|
|
#define PHAR_HDR_COMPRESSED_BZ2 0x00002000
|
|
|
|
#define PHAR_HDR_SIGNATURE 0x00010000
|
|
|
|
|
2008-01-09 15:09:04 +08:00
|
|
|
/* flags for defining that the entire file should be compressed */
|
|
|
|
#define PHAR_FILE_COMPRESSION_MASK 0x00F00000
|
|
|
|
#define PHAR_FILE_COMPRESSED_NONE 0x00000000
|
|
|
|
#define PHAR_FILE_COMPRESSED_GZ 0x00100000
|
|
|
|
#define PHAR_FILE_COMPRESSED_BZ2 0x00200000
|
|
|
|
|
2007-01-21 23:25:50 +08:00
|
|
|
#define PHAR_SIG_MD5 0x0001
|
|
|
|
#define PHAR_SIG_SHA1 0x0002
|
2007-03-26 05:43:49 +08:00
|
|
|
#define PHAR_SIG_SHA256 0x0003
|
|
|
|
#define PHAR_SIG_SHA512 0x0004
|
2007-01-21 23:25:50 +08:00
|
|
|
#define PHAR_SIG_PGP 0x0010
|
|
|
|
|
|
|
|
/* flags byte for each file adheres to these bitmasks.
|
|
|
|
All unused values are reserved */
|
|
|
|
#define PHAR_ENT_COMPRESSION_MASK 0x0000F000
|
|
|
|
#define PHAR_ENT_COMPRESSED_NONE 0x00000000
|
|
|
|
#define PHAR_ENT_COMPRESSED_GZ 0x00001000
|
|
|
|
#define PHAR_ENT_COMPRESSED_BZ2 0x00002000
|
|
|
|
|
|
|
|
#define PHAR_ENT_PERM_MASK 0x000001FF
|
|
|
|
#define PHAR_ENT_PERM_MASK_USR 0x000001C0
|
|
|
|
#define PHAR_ENT_PERM_SHIFT_USR 6
|
|
|
|
#define PHAR_ENT_PERM_MASK_GRP 0x00000038
|
|
|
|
#define PHAR_ENT_PERM_SHIFT_GRP 3
|
|
|
|
#define PHAR_ENT_PERM_MASK_OTH 0x00000007
|
|
|
|
#define PHAR_ENT_PERM_DEF_FILE 0x000001B6
|
|
|
|
#define PHAR_ENT_PERM_DEF_DIR 0x000001FF
|
|
|
|
|
2008-04-11 12:20:15 +08:00
|
|
|
#define PHAR_FORMAT_PHAR 0
|
|
|
|
#define PHAR_FORMAT_TAR 1
|
|
|
|
#define PHAR_FORMAT_ZIP 2
|
|
|
|
|
2008-01-09 06:14:16 +08:00
|
|
|
#define TAR_FILE '0'
|
|
|
|
#define TAR_LINK '1'
|
|
|
|
#define TAR_SYMLINK '2'
|
|
|
|
#define TAR_DIR '5'
|
|
|
|
#define TAR_NEW '8'
|
|
|
|
|
2007-01-21 23:25:50 +08:00
|
|
|
ZEND_BEGIN_MODULE_GLOBALS(phar)
|
|
|
|
HashTable phar_fname_map;
|
|
|
|
HashTable phar_alias_map;
|
2007-03-26 03:03:38 +08:00
|
|
|
HashTable phar_plain_map;
|
2008-01-04 12:57:11 +08:00
|
|
|
HashTable phar_SERVER_mung_list;
|
2007-03-26 03:03:38 +08:00
|
|
|
char* extract_list;
|
2007-01-21 23:25:50 +08:00
|
|
|
int readonly;
|
|
|
|
zend_bool readonly_orig;
|
|
|
|
zend_bool require_hash_orig;
|
2007-05-17 07:16:51 +08:00
|
|
|
int request_init;
|
2007-03-26 03:03:38 +08:00
|
|
|
int require_hash;
|
2007-01-27 23:31:24 +08:00
|
|
|
int request_done;
|
2007-03-28 05:28:22 +08:00
|
|
|
int request_ends;
|
2007-12-19 01:01:24 +08:00
|
|
|
void (*orig_fopen)(INTERNAL_FUNCTION_PARAMETERS);
|
2008-01-11 15:30:03 +08:00
|
|
|
void (*orig_file_get_contents)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_is_file)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_is_link)(INTERNAL_FUNCTION_PARAMETERS);
|
2008-01-10 23:13:00 +08:00
|
|
|
void (*orig_is_dir)(INTERNAL_FUNCTION_PARAMETERS);
|
2008-01-11 15:30:03 +08:00
|
|
|
void (*orig_opendir)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_file_exists)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_fileperms)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_fileinode)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_filesize)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_fileowner)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_filegroup)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_fileatime)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_filemtime)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_filectime)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_filetype)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_is_writable)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_is_readable)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_is_executable)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
void (*orig_lstat)(INTERNAL_FUNCTION_PARAMETERS);
|
2008-04-15 11:36:57 +08:00
|
|
|
void (*orig_readfile)(INTERNAL_FUNCTION_PARAMETERS);
|
2008-01-11 15:30:03 +08:00
|
|
|
void (*orig_stat)(INTERNAL_FUNCTION_PARAMETERS);
|
2008-01-10 23:13:00 +08:00
|
|
|
/* used for includes with . in them inside front controller */
|
|
|
|
char* cwd;
|
|
|
|
int cwd_len;
|
2008-02-13 23:00:31 +08:00
|
|
|
int cwd_init;
|
2007-01-21 23:25:50 +08:00
|
|
|
ZEND_END_MODULE_GLOBALS(phar)
|
|
|
|
|
|
|
|
ZEND_EXTERN_MODULE_GLOBALS(phar)
|
|
|
|
|
|
|
|
#ifdef ZTS
|
|
|
|
# include "TSRM.h"
|
|
|
|
# define PHAR_G(v) TSRMG(phar_globals_id, zend_phar_globals *, v)
|
|
|
|
# define PHAR_GLOBALS ((zend_phar_globals *) (*((void ***) tsrm_ls))[TSRM_UNSHUFFLE_RSRC_ID(phar_globals_id)])
|
|
|
|
#else
|
|
|
|
# define PHAR_G(v) (phar_globals.v)
|
|
|
|
# define PHAR_GLOBALS (&phar_globals)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef php_uint16
|
|
|
|
# if SIZEOF_SHORT == 2
|
|
|
|
# define php_uint16 unsigned short
|
|
|
|
# else
|
|
|
|
# define php_uint16 uint16_t
|
|
|
|
# endif
|
|
|
|
#endif
|
2008-01-28 16:52:08 +08:00
|
|
|
#include "pharzip.h"
|
2007-01-21 23:25:50 +08:00
|
|
|
|
|
|
|
#if HAVE_SPL
|
|
|
|
typedef union _phar_archive_object phar_archive_object;
|
|
|
|
typedef union _phar_entry_object phar_entry_object;
|
|
|
|
#endif
|
|
|
|
|
2008-01-28 16:52:08 +08:00
|
|
|
/*
|
|
|
|
* used in phar_entry_info->fp_type to
|
|
|
|
*/
|
|
|
|
enum phar_fp_type {
|
|
|
|
/* regular file pointer phar_archive_data->fp */
|
|
|
|
PHAR_FP,
|
|
|
|
/* uncompressed file pointer phar_archive_data->uncompressed_fp */
|
|
|
|
PHAR_UFP,
|
|
|
|
/* modified file pointer phar_entry_info->fp */
|
2008-02-15 13:01:40 +08:00
|
|
|
PHAR_MOD,
|
|
|
|
/* temporary manifest entry (file outside of the phar mapped to a location inside the phar)
|
|
|
|
this entry stores the stream to open in link (normally used for tars, but we steal it here) */
|
|
|
|
PHAR_TMP
|
2008-01-28 16:52:08 +08:00
|
|
|
};
|
|
|
|
|
2007-01-22 08:13:20 +08:00
|
|
|
typedef struct _phar_archive_data phar_archive_data;
|
2007-01-21 23:25:50 +08:00
|
|
|
/* entry for one file in a phar file */
|
|
|
|
typedef struct _phar_entry_info {
|
|
|
|
/* first bytes are exactly as in file */
|
|
|
|
php_uint32 uncompressed_filesize;
|
|
|
|
php_uint32 timestamp;
|
|
|
|
php_uint32 compressed_filesize;
|
|
|
|
php_uint32 crc32;
|
|
|
|
php_uint32 flags;
|
|
|
|
/* remainder */
|
2007-08-17 12:47:50 +08:00
|
|
|
/* when changing compression, save old flags in case fp is NULL */
|
|
|
|
php_uint32 old_flags;
|
2007-01-21 23:25:50 +08:00
|
|
|
zval *metadata;
|
|
|
|
php_uint32 filename_len;
|
|
|
|
char *filename;
|
2008-01-28 16:52:08 +08:00
|
|
|
enum phar_fp_type fp_type;
|
|
|
|
/* offset within original phar file of the file contents */
|
|
|
|
long offset_abs;
|
|
|
|
/* offset within fp of the file contents */
|
|
|
|
long offset;
|
|
|
|
/* offset within original phar file of the file header (for zip-based/tar-based) */
|
|
|
|
long header_offset;
|
2007-01-21 23:25:50 +08:00
|
|
|
php_stream *fp;
|
2007-01-27 23:31:24 +08:00
|
|
|
php_stream *cfp;
|
2007-01-26 22:52:10 +08:00
|
|
|
int fp_refcount;
|
2007-01-21 23:25:50 +08:00
|
|
|
int is_crc_checked:1;
|
|
|
|
int is_modified:1;
|
|
|
|
int is_deleted:1;
|
2007-10-04 11:33:21 +08:00
|
|
|
int is_dir:1;
|
2008-02-15 13:01:40 +08:00
|
|
|
/* this flag is used for mounted entries (external files mapped to location
|
|
|
|
inside a phar */
|
|
|
|
int is_mounted:1;
|
2008-04-21 14:17:51 +08:00
|
|
|
char *tmp;
|
2008-01-09 06:14:16 +08:00
|
|
|
/* used when iterating */
|
|
|
|
int is_temp_dir:1;
|
2007-01-22 08:13:20 +08:00
|
|
|
phar_archive_data *phar;
|
2007-05-15 03:14:00 +08:00
|
|
|
smart_str metadata_str;
|
2008-01-03 12:45:00 +08:00
|
|
|
/* tar-based phar file stuff */
|
|
|
|
int is_tar:1;
|
|
|
|
char *link; /* symbolic link to another file */
|
|
|
|
char tar_type;
|
2008-01-01 06:42:40 +08:00
|
|
|
/* zip-based phar file stuff */
|
|
|
|
int is_zip:1;
|
2007-01-21 23:25:50 +08:00
|
|
|
} phar_entry_info;
|
|
|
|
|
|
|
|
/* information about a phar file (the archive itself) */
|
2007-01-22 08:13:20 +08:00
|
|
|
struct _phar_archive_data {
|
2007-01-21 23:25:50 +08:00
|
|
|
char *fname;
|
|
|
|
int fname_len;
|
|
|
|
char *alias;
|
|
|
|
int alias_len;
|
|
|
|
char version[12];
|
|
|
|
size_t internal_file_start;
|
|
|
|
size_t halt_offset;
|
|
|
|
HashTable manifest;
|
2008-02-18 12:45:42 +08:00
|
|
|
/* hash of mounted directory paths */
|
|
|
|
HashTable mounted_dirs;
|
2007-01-21 23:25:50 +08:00
|
|
|
php_uint32 flags;
|
|
|
|
php_uint32 min_timestamp;
|
|
|
|
php_uint32 max_timestamp;
|
|
|
|
php_stream *fp;
|
2008-01-28 16:52:08 +08:00
|
|
|
/* decompressed file contents are stored here */
|
|
|
|
php_stream *ufp;
|
2007-01-21 23:25:50 +08:00
|
|
|
int refcount;
|
|
|
|
php_uint32 sig_flags;
|
|
|
|
int sig_len;
|
|
|
|
char *signature;
|
2007-01-29 11:59:55 +08:00
|
|
|
zval *metadata;
|
2008-02-11 14:46:44 +08:00
|
|
|
/* if 1, then this alias was manually specified by the user and is not a permanent alias */
|
|
|
|
int is_temporary_alias:1;
|
2007-01-21 23:25:50 +08:00
|
|
|
int is_modified:1;
|
|
|
|
int is_writeable:1;
|
2007-01-29 05:26:54 +08:00
|
|
|
int is_brandnew:1;
|
2007-01-26 22:52:10 +08:00
|
|
|
/* defer phar creation */
|
|
|
|
int donotflush:1;
|
2008-01-01 06:42:40 +08:00
|
|
|
/* zip-based phar variables */
|
|
|
|
int is_zip:1;
|
2008-01-03 12:45:00 +08:00
|
|
|
/* tar-based phar variables */
|
|
|
|
int is_tar:1;
|
2008-02-28 05:34:26 +08:00
|
|
|
/* PharData variables */
|
|
|
|
int is_data:1;
|
2007-01-22 08:13:20 +08:00
|
|
|
};
|
2007-01-21 23:25:50 +08:00
|
|
|
|
2007-12-22 15:46:53 +08:00
|
|
|
#define PHAR_MIME_PHP '\0'
|
|
|
|
#define PHAR_MIME_PHPS '\1'
|
|
|
|
#define PHAR_MIME_OTHER '\2'
|
|
|
|
|
|
|
|
typedef struct _phar_mime_type {
|
|
|
|
char *mime;
|
|
|
|
int len;
|
|
|
|
/* one of PHAR_MIME_* */
|
|
|
|
char type;
|
|
|
|
} phar_mime_type;
|
2007-01-26 22:52:10 +08:00
|
|
|
|
2007-01-21 23:25:50 +08:00
|
|
|
/* stream access data for one file entry in a phar file */
|
|
|
|
typedef struct _phar_entry_data {
|
|
|
|
phar_archive_data *phar;
|
|
|
|
php_stream *fp;
|
2008-01-28 16:52:08 +08:00
|
|
|
/* stream position proxy, allows multiple open streams referring to the same fp */
|
2007-01-26 22:52:10 +08:00
|
|
|
off_t position;
|
2007-08-30 10:30:16 +08:00
|
|
|
/* for copies of the phar fp, defines where 0 is */
|
|
|
|
off_t zero;
|
|
|
|
int for_write:1;
|
2008-01-01 06:42:40 +08:00
|
|
|
int is_zip:1;
|
2008-01-03 12:45:00 +08:00
|
|
|
int is_tar:1;
|
2007-01-21 23:25:50 +08:00
|
|
|
phar_entry_info *internal_file;
|
|
|
|
} phar_entry_data;
|
|
|
|
|
|
|
|
#if HAVE_SPL
|
|
|
|
/* archive php object */
|
|
|
|
union _phar_archive_object {
|
|
|
|
zend_object std;
|
|
|
|
spl_filesystem_object spl;
|
|
|
|
struct {
|
|
|
|
zend_object std;
|
|
|
|
phar_archive_data *archive;
|
|
|
|
} arc;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAVE_SPL
|
|
|
|
/* entry php object */
|
|
|
|
union _phar_entry_object {
|
|
|
|
zend_object std;
|
|
|
|
spl_filesystem_object spl;
|
|
|
|
struct {
|
|
|
|
zend_object std;
|
|
|
|
phar_entry_info *entry;
|
|
|
|
} ent;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2008-04-14 12:47:34 +08:00
|
|
|
#ifndef PHAR_MAIN
|
|
|
|
extern int phar_has_bz2;
|
|
|
|
extern int phar_has_zlib;
|
|
|
|
# if PHP_VERSION_ID >= 50300
|
|
|
|
extern char *(*phar_save_resolve_path)(const char *filename, int filename_len TSRMLS_DC);
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2008-03-02 06:28:33 +08:00
|
|
|
BEGIN_EXTERN_C()
|
|
|
|
|
2008-02-02 06:23:37 +08:00
|
|
|
|
2008-03-02 08:42:29 +08:00
|
|
|
#ifdef PHP_WIN32
|
2007-12-25 05:40:54 +08:00
|
|
|
char *tsrm_strtok_r(char *s, const char *delim, char **last);
|
2008-01-28 22:39:17 +08:00
|
|
|
|
|
|
|
static inline void phar_unixify_path_separators(char *path, int path_len)
|
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
/* unixify win paths */
|
2008-03-23 06:11:49 +08:00
|
|
|
for (s = path; s - path < path_len; ++s) {
|
2008-01-28 22:39:17 +08:00
|
|
|
if (*s == '\\') {
|
|
|
|
*s = '/';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-12-25 05:40:54 +08:00
|
|
|
#endif
|
2008-03-24 09:33:30 +08:00
|
|
|
/**
|
|
|
|
* validate an alias, returns 1 for success, 0 for failure
|
|
|
|
*/
|
|
|
|
static inline int phar_validate_alias(const char *alias, int alias_len) /* {{{ */
|
|
|
|
{
|
|
|
|
return !(memchr(alias, '/', alias_len) || memchr(alias, '\\', alias_len) || memchr(alias, ':', alias_len) ||
|
|
|
|
memchr(alias, ';', alias_len));
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2007-01-21 23:25:50 +08:00
|
|
|
|
2007-05-17 07:16:51 +08:00
|
|
|
void phar_request_initialize(TSRMLS_D);
|
|
|
|
|
2007-01-21 23:25:50 +08:00
|
|
|
void phar_object_init(TSRMLS_D);
|
|
|
|
|
2008-01-28 16:52:08 +08:00
|
|
|
int phar_open_entry_file(phar_archive_data *phar, phar_entry_info *entry, char **error TSRMLS_DC);
|
2007-01-29 14:02:19 +08:00
|
|
|
int phar_open_filename(char *fname, int fname_len, char *alias, int alias_len, int options, phar_archive_data** pphar, char **error TSRMLS_DC);
|
2008-04-18 12:13:13 +08:00
|
|
|
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);
|
2008-03-03 16:41:15 +08:00
|
|
|
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);
|
2007-01-29 14:02:19 +08:00
|
|
|
int phar_open_compiled_file(char *alias, int alias_len, char **error TSRMLS_DC);
|
2008-01-09 03:40:23 +08:00
|
|
|
int phar_get_archive(phar_archive_data **archive, char *fname, int fname_len, char *alias, int alias_len, char **error TSRMLS_DC);
|
2008-02-28 05:34:26 +08:00
|
|
|
int phar_open_loaded(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC);
|
2008-01-28 16:52:08 +08:00
|
|
|
|
|
|
|
/* utility functions */
|
2008-01-20 08:49:45 +08:00
|
|
|
char *phar_create_default_stub(const char *index_php, const char *web_index, size_t *len, char **error TSRMLS_DC);
|
2008-03-24 06:42:45 +08:00
|
|
|
char *phar_decompress_filter(phar_entry_info * entry, int return_unknown);
|
|
|
|
char *phar_compress_filter(phar_entry_info * entry, int return_unknown);
|
2008-01-09 03:40:23 +08:00
|
|
|
|
2008-02-18 12:32:50 +08:00
|
|
|
int phar_mount_entry(phar_archive_data *phar, char *filename, int filename_len, char *path, int path_len TSRMLS_DC);
|
2008-03-21 07:59:07 +08:00
|
|
|
char *phar_find_in_include_path(char *file, int file_len, phar_archive_data **pphar TSRMLS_DC);
|
2008-01-11 15:30:03 +08:00
|
|
|
char *phar_fix_filepath(char *path, int *new_len, int use_cwd TSRMLS_DC);
|
2008-01-01 06:42:40 +08:00
|
|
|
phar_entry_info * phar_open_jit(phar_archive_data *phar, phar_entry_info *entry, php_stream *fp,
|
|
|
|
char **error, int for_write TSRMLS_DC);
|
2008-04-16 12:01:33 +08:00
|
|
|
int phar_parse_metadata(char **buffer, zval **metadata, int zip_metadata_len TSRMLS_DC);
|
2008-01-09 11:47:22 +08:00
|
|
|
void destroy_phar_manifest_entry(void *pDest);
|
2008-04-21 14:17:51 +08:00
|
|
|
int phar_seek_efp(phar_entry_info *entry, off_t offset, int whence, off_t position, int follow_links TSRMLS_DC);
|
|
|
|
php_stream *phar_get_efp(phar_entry_info *entry, int follow_links TSRMLS_DC);
|
2008-01-28 16:52:08 +08:00
|
|
|
int phar_copy_entry_fp(phar_entry_info *source, phar_entry_info *dest, char **error TSRMLS_DC);
|
2008-04-21 14:17:51 +08:00
|
|
|
int phar_open_entry_fp(phar_entry_info *entry, char **error, int follow_links TSRMLS_DC);
|
|
|
|
phar_entry_info *phar_get_link_source(phar_entry_info *entry TSRMLS_DC);
|
2008-01-28 16:52:08 +08:00
|
|
|
int phar_create_writeable_entry(phar_archive_data *phar, phar_entry_info *entry, char **error TSRMLS_DC);
|
|
|
|
int phar_separate_entry_fp(phar_entry_info *entry, char **error TSRMLS_DC);
|
|
|
|
int phar_open_archive_fp(phar_archive_data *phar TSRMLS_DC);
|
2008-01-09 03:40:23 +08:00
|
|
|
|
|
|
|
/* tar functions in tar.c */
|
2008-04-21 01:28:54 +08:00
|
|
|
int phar_is_tar(char *buf, char *fname);
|
2008-01-09 15:09:04 +08:00
|
|
|
int phar_open_tarfile(php_stream* fp, char *fname, int fname_len, char *alias, int alias_len, int options, phar_archive_data** pphar, php_uint32 compression, char **error TSRMLS_DC);
|
2008-02-28 05:34:26 +08:00
|
|
|
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);
|
2008-02-25 06:29:06 +08:00
|
|
|
int phar_tar_flush(phar_archive_data *phar, char *user_stub, long len, int defaultstub, char **error TSRMLS_DC);
|
2007-01-21 23:25:50 +08:00
|
|
|
|
2008-01-09 03:40:23 +08:00
|
|
|
/* zip functions in zip.c */
|
2008-01-28 16:52:08 +08:00
|
|
|
int phar_open_zipfile(php_stream *fp, char *fname, int fname_len, char *alias, int alias_len, phar_archive_data** pphar, char **error TSRMLS_DC);
|
2008-02-28 05:34:26 +08:00
|
|
|
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);
|
2008-02-25 06:29:06 +08:00
|
|
|
int phar_zip_flush(phar_archive_data *archive, char *user_stub, long len, int defaultstub, char **error TSRMLS_DC);
|
2008-01-09 03:40:23 +08:00
|
|
|
|
2007-12-19 01:01:24 +08:00
|
|
|
#ifdef PHAR_MAIN
|
2007-01-29 14:02:19 +08:00
|
|
|
static int phar_open_fp(php_stream* fp, char *fname, int fname_len, char *alias, int alias_len, int options, phar_archive_data** pphar, char **error TSRMLS_DC);
|
2008-01-09 04:31:54 +08:00
|
|
|
extern php_stream_wrapper php_stream_phar_wrapper;
|
2007-01-21 23:25:50 +08:00
|
|
|
#endif
|
|
|
|
|
2007-01-27 03:58:22 +08:00
|
|
|
int phar_archive_delref(phar_archive_data *phar TSRMLS_DC);
|
2007-01-27 23:31:24 +08:00
|
|
|
int phar_entry_delref(phar_entry_data *idata TSRMLS_DC);
|
|
|
|
|
2007-02-05 04:10:03 +08:00
|
|
|
phar_entry_info *phar_get_entry_info(phar_archive_data *phar, char *path, int path_len, char **error TSRMLS_DC);
|
2007-10-04 11:33:21 +08:00
|
|
|
phar_entry_info *phar_get_entry_info_dir(phar_archive_data *phar, char *path, int path_len, char dir, char **error TSRMLS_DC);
|
2008-01-09 08:58:37 +08:00
|
|
|
phar_entry_data *phar_get_or_create_entry_data(char *fname, int fname_len, char *path, int path_len, char *mode, char allow_dir, char **error TSRMLS_DC);
|
|
|
|
int phar_get_entry_data(phar_entry_data **ret, char *fname, int fname_len, char *path, int path_len, char *mode, char allow_dir, char **error TSRMLS_DC);
|
2008-02-25 06:29:06 +08:00
|
|
|
int phar_flush(phar_archive_data *archive, char *user_stub, long len, int convert, char **error TSRMLS_DC);
|
2008-04-18 12:13:13 +08:00
|
|
|
int phar_detect_phar_fname_ext(const char *filename, int check_length, const char **ext_str, int *ext_len, int executable, int for_create, int is_complete TSRMLS_DC);
|
|
|
|
int phar_split_fname(char *filename, int filename_len, char **arch, int *arch_len, char **entry, int *entry_len, int executable, int for_create TSRMLS_DC);
|
2007-01-21 23:25:50 +08:00
|
|
|
|
2007-02-04 21:21:40 +08:00
|
|
|
typedef enum {
|
|
|
|
pcr_use_query,
|
|
|
|
pcr_is_ok,
|
|
|
|
pcr_err_double_slash,
|
|
|
|
pcr_err_up_dir,
|
|
|
|
pcr_err_curr_dir,
|
|
|
|
pcr_err_back_slash,
|
2007-02-05 00:25:25 +08:00
|
|
|
pcr_err_star,
|
2007-02-05 15:58:29 +08:00
|
|
|
pcr_err_illegal_char,
|
2007-02-04 21:21:40 +08:00
|
|
|
pcr_err_empty_entry
|
|
|
|
} phar_path_check_result;
|
|
|
|
|
2007-02-05 04:10:03 +08:00
|
|
|
phar_path_check_result phar_path_check(char **p, int *len, const char **error);
|
2007-02-04 21:21:40 +08:00
|
|
|
|
2007-01-21 23:25:50 +08:00
|
|
|
END_EXTERN_C()
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
* vim600: noet sw=4 ts=4 fdm=marker
|
|
|
|
* vim<600: noet sw=4 ts=4
|
|
|
|
*/
|