php.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 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: Andi Gutmans <andi@php.net> |
  16. | Zeev Suraski <zeev@php.net> |
  17. +----------------------------------------------------------------------+
  18. */
  19. #ifndef PHP_H
  20. #define PHP_H
  21. #ifdef HAVE_DMALLOC
  22. #include <dmalloc.h>
  23. #endif
  24. #define PHP_API_VERSION 20180731
  25. #define PHP_HAVE_STREAMS
  26. #define YYDEBUG 0
  27. #define PHP_DEFAULT_CHARSET "UTF-8"
  28. #include "php_version.h"
  29. #include "zend.h"
  30. #include "zend_sort.h"
  31. #include "php_compat.h"
  32. #include "zend_API.h"
  33. #undef sprintf
  34. #define sprintf php_sprintf
  35. /* Operating system family definition */
  36. #ifdef PHP_WIN32
  37. # define PHP_OS_FAMILY "Windows"
  38. #elif defined(BSD) || defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
  39. # define PHP_OS_FAMILY "BSD"
  40. #elif defined(__APPLE__) || defined(__MACH__)
  41. # define PHP_OS_FAMILY "Darwin"
  42. #elif defined(__sun__)
  43. # define PHP_OS_FAMILY "Solaris"
  44. #elif defined(__linux__)
  45. # define PHP_OS_FAMILY "Linux"
  46. #else
  47. # define PHP_OS_FAMILY "Unknown"
  48. #endif
  49. /* PHP's DEBUG value must match Zend's ZEND_DEBUG value */
  50. #undef PHP_DEBUG
  51. #define PHP_DEBUG ZEND_DEBUG
  52. #ifdef PHP_WIN32
  53. # include "tsrm_win32.h"
  54. # ifdef PHP_EXPORTS
  55. # define PHPAPI __declspec(dllexport)
  56. # else
  57. # define PHPAPI __declspec(dllimport)
  58. # endif
  59. # define PHP_DIR_SEPARATOR '\\'
  60. # define PHP_EOL "\r\n"
  61. #else
  62. # if defined(__GNUC__) && __GNUC__ >= 4
  63. # define PHPAPI __attribute__ ((visibility("default")))
  64. # else
  65. # define PHPAPI
  66. # endif
  67. # define THREAD_LS
  68. # define PHP_DIR_SEPARATOR '/'
  69. # define PHP_EOL "\n"
  70. #endif
  71. /* Windows specific defines */
  72. #ifdef PHP_WIN32
  73. # define PHP_PROG_SENDMAIL "Built in mailer"
  74. # define HAVE_DECLARED_TIMEZONE
  75. # define WIN32_LEAN_AND_MEAN
  76. # define NOOPENFILE
  77. # include <io.h>
  78. # include <malloc.h>
  79. # include <direct.h>
  80. # include <stdlib.h>
  81. # include <stdio.h>
  82. # include <stdarg.h>
  83. # include <sys/types.h>
  84. # include <process.h>
  85. typedef int uid_t;
  86. typedef int gid_t;
  87. typedef char * caddr_t;
  88. typedef unsigned int uint;
  89. typedef unsigned long ulong;
  90. typedef int pid_t;
  91. # ifndef PHP_DEBUG
  92. # ifdef inline
  93. # undef inline
  94. # endif
  95. # define inline __inline
  96. # endif
  97. # define M_TWOPI (M_PI * 2.0)
  98. # define off_t _off_t
  99. # define lstat(x, y) php_sys_lstat(x, y)
  100. # define chdir(path) _chdir(path)
  101. # define mkdir(a, b) _mkdir(a)
  102. # define rmdir(a) _rmdir(a)
  103. # define getpid _getpid
  104. # define php_sleep(t) SleepEx(t*1000, TRUE)
  105. # ifndef getcwd
  106. # define getcwd(a, b) _getcwd(a, b)
  107. # endif
  108. #endif
  109. #if HAVE_ASSERT_H
  110. #if PHP_DEBUG
  111. #undef NDEBUG
  112. #else
  113. #ifndef NDEBUG
  114. #define NDEBUG
  115. #endif
  116. #endif
  117. #include <assert.h>
  118. #else /* HAVE_ASSERT_H */
  119. #define assert(expr) ((void) (0))
  120. #endif /* HAVE_ASSERT_H */
  121. #define APACHE 0
  122. #if HAVE_UNIX_H
  123. #include <unix.h>
  124. #endif
  125. #if HAVE_ALLOCA_H
  126. #include <alloca.h>
  127. #endif
  128. #if HAVE_BUILD_DEFS_H
  129. #include <build-defs.h>
  130. #endif
  131. /*
  132. * This is a fast version of strlcpy which should be used, if you
  133. * know the size of the destination buffer and if you know
  134. * the length of the source string.
  135. *
  136. * size is the allocated number of bytes of dst
  137. * src_size is the number of bytes excluding the NUL of src
  138. */
  139. #define PHP_STRLCPY(dst, src, size, src_size) \
  140. { \
  141. size_t php_str_len; \
  142. \
  143. if (src_size >= size) \
  144. php_str_len = size - 1; \
  145. else \
  146. php_str_len = src_size; \
  147. memcpy(dst, src, php_str_len); \
  148. dst[php_str_len] = '\0'; \
  149. }
  150. #ifndef HAVE_STRLCPY
  151. BEGIN_EXTERN_C()
  152. PHPAPI size_t php_strlcpy(char *dst, const char *src, size_t siz);
  153. END_EXTERN_C()
  154. #undef strlcpy
  155. #define strlcpy php_strlcpy
  156. #define HAVE_STRLCPY 1
  157. #define USE_STRLCPY_PHP_IMPL 1
  158. #endif
  159. #ifndef HAVE_STRLCAT
  160. BEGIN_EXTERN_C()
  161. PHPAPI size_t php_strlcat(char *dst, const char *src, size_t siz);
  162. END_EXTERN_C()
  163. #undef strlcat
  164. #define strlcat php_strlcat
  165. #define HAVE_STRLCAT 1
  166. #define USE_STRLCAT_PHP_IMPL 1
  167. #endif
  168. #ifndef HAVE_EXPLICIT_BZERO
  169. BEGIN_EXTERN_C()
  170. PHPAPI void php_explicit_bzero(void *dst, size_t siz);
  171. END_EXTERN_C()
  172. #undef explicit_bzero
  173. #define explicit_bzero php_explicit_bzero
  174. #endif
  175. #ifndef HAVE_STRTOK_R
  176. BEGIN_EXTERN_C()
  177. char *strtok_r(char *s, const char *delim, char **last);
  178. END_EXTERN_C()
  179. #endif
  180. #ifndef HAVE_SOCKLEN_T
  181. # ifdef PHP_WIN32
  182. typedef int socklen_t;
  183. # else
  184. typedef unsigned int socklen_t;
  185. # endif
  186. #endif
  187. #define CREATE_MUTEX(a, b)
  188. #define SET_MUTEX(a)
  189. #define FREE_MUTEX(a)
  190. /*
  191. * Then the ODBC support can use both iodbc and Solid,
  192. * uncomment this.
  193. * #define HAVE_ODBC (HAVE_IODBC|HAVE_SOLID)
  194. */
  195. #include <stdlib.h>
  196. #include <ctype.h>
  197. #if HAVE_UNISTD_H
  198. #include <unistd.h>
  199. #endif
  200. #if HAVE_STDARG_H
  201. #include <stdarg.h>
  202. #else
  203. # if HAVE_SYS_VARARGS_H
  204. # include <sys/varargs.h>
  205. # endif
  206. #endif
  207. #include "php_stdint.h"
  208. #include "zend_hash.h"
  209. #include "zend_alloc.h"
  210. #include "zend_stack.h"
  211. #if STDC_HEADERS
  212. # include <string.h>
  213. #else
  214. # ifndef HAVE_MEMCPY
  215. # define memcpy(d, s, n) bcopy((s), (d), (n))
  216. # endif
  217. # ifndef HAVE_MEMMOVE
  218. # define memmove(d, s, n) bcopy ((s), (d), (n))
  219. # endif
  220. #endif
  221. #ifndef HAVE_STRERROR
  222. char *strerror(int);
  223. #endif
  224. #if HAVE_PWD_H
  225. # ifdef PHP_WIN32
  226. #include "win32/param.h"
  227. # else
  228. #include <pwd.h>
  229. #include <sys/param.h>
  230. # endif
  231. #endif
  232. #if HAVE_LIMITS_H
  233. #include <limits.h>
  234. #endif
  235. #ifndef LONG_MAX
  236. #define LONG_MAX 2147483647L
  237. #endif
  238. #ifndef LONG_MIN
  239. #define LONG_MIN (- LONG_MAX - 1)
  240. #endif
  241. #ifndef INT_MAX
  242. #define INT_MAX 2147483647
  243. #endif
  244. #ifndef INT_MIN
  245. #define INT_MIN (- INT_MAX - 1)
  246. #endif
  247. /* double limits */
  248. #include <float.h>
  249. #if defined(DBL_MANT_DIG) && defined(DBL_MIN_EXP)
  250. #define PHP_DOUBLE_MAX_LENGTH (3 + DBL_MANT_DIG - DBL_MIN_EXP)
  251. #else
  252. #define PHP_DOUBLE_MAX_LENGTH 1080
  253. #endif
  254. #define PHP_GCC_VERSION ZEND_GCC_VERSION
  255. #define PHP_ATTRIBUTE_MALLOC ZEND_ATTRIBUTE_MALLOC
  256. #define PHP_ATTRIBUTE_FORMAT ZEND_ATTRIBUTE_FORMAT
  257. BEGIN_EXTERN_C()
  258. #include "snprintf.h"
  259. END_EXTERN_C()
  260. #include "spprintf.h"
  261. #define EXEC_INPUT_BUF 4096
  262. #define PHP_MIME_TYPE "application/x-httpd-php"
  263. /* macros */
  264. #define STR_PRINT(str) ((str)?(str):"")
  265. #ifndef MAXPATHLEN
  266. # ifdef PHP_WIN32
  267. # include "win32/ioutil.h"
  268. # define MAXPATHLEN PHP_WIN32_IOUTIL_MAXPATHLEN
  269. # elif PATH_MAX
  270. # define MAXPATHLEN PATH_MAX
  271. # elif defined(MAX_PATH)
  272. # define MAXPATHLEN MAX_PATH
  273. # else
  274. # define MAXPATHLEN 256 /* Should be safe for any weird systems that do not define it */
  275. # endif
  276. #endif
  277. #define php_ignore_value(x) ZEND_IGNORE_VALUE(x)
  278. /* global variables */
  279. #if !defined(PHP_WIN32)
  280. #define PHP_SLEEP_NON_VOID
  281. #define php_sleep sleep
  282. extern char **environ;
  283. #endif /* !defined(PHP_WIN32) */
  284. #ifdef PHP_PWRITE_64
  285. ssize_t pwrite(int, void *, size_t, off64_t);
  286. #endif
  287. #ifdef PHP_PREAD_64
  288. ssize_t pread(int, void *, size_t, off64_t);
  289. #endif
  290. BEGIN_EXTERN_C()
  291. void phperror(char *error);
  292. PHPAPI size_t php_write(void *buf, size_t size);
  293. PHPAPI size_t php_printf(const char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, 1,
  294. 2);
  295. PHPAPI int php_get_module_initialized(void);
  296. #ifdef HAVE_SYSLOG_H
  297. #include "php_syslog.h"
  298. #define php_log_err(msg) php_log_err_with_severity(msg, LOG_NOTICE)
  299. #else
  300. #define php_log_err(msg) php_log_err_with_severity(msg, 5)
  301. #endif
  302. PHPAPI ZEND_COLD void php_log_err_with_severity(char *log_message, int syslog_type_int);
  303. int Debug(char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, 1, 2);
  304. int cfgparse(void);
  305. END_EXTERN_C()
  306. #define php_error zend_error
  307. #define error_handling_t zend_error_handling_t
  308. BEGIN_EXTERN_C()
  309. static inline ZEND_ATTRIBUTE_DEPRECATED void php_set_error_handling(error_handling_t error_handling, zend_class_entry *exception_class)
  310. {
  311. zend_replace_error_handling(error_handling, exception_class, NULL);
  312. }
  313. static inline ZEND_ATTRIBUTE_DEPRECATED void php_std_error_handling() {}
  314. PHPAPI ZEND_COLD void php_verror(const char *docref, const char *params, int type, const char *format, va_list args) PHP_ATTRIBUTE_FORMAT(printf, 4, 0);
  315. /* PHPAPI void php_error(int type, const char *format, ...); */
  316. PHPAPI ZEND_COLD void php_error_docref0(const char *docref, int type, const char *format, ...)
  317. PHP_ATTRIBUTE_FORMAT(printf, 3, 4);
  318. PHPAPI ZEND_COLD void php_error_docref1(const char *docref, const char *param1, int type, const char *format, ...)
  319. PHP_ATTRIBUTE_FORMAT(printf, 4, 5);
  320. PHPAPI ZEND_COLD void php_error_docref2(const char *docref, const char *param1, const char *param2, int type, const char *format, ...)
  321. PHP_ATTRIBUTE_FORMAT(printf, 5, 6);
  322. #ifdef PHP_WIN32
  323. PHPAPI ZEND_COLD void php_win32_docref2_from_error(DWORD error, const char *param1, const char *param2);
  324. #endif
  325. END_EXTERN_C()
  326. #define php_error_docref php_error_docref0
  327. #define zenderror phperror
  328. #define zendlex phplex
  329. #define phpparse zendparse
  330. #define phprestart zendrestart
  331. #define phpin zendin
  332. #define php_memnstr zend_memnstr
  333. /* functions */
  334. BEGIN_EXTERN_C()
  335. PHPAPI extern int (*php_register_internal_extensions_func)(void);
  336. PHPAPI int php_register_internal_extensions(void);
  337. PHPAPI int php_mergesort(void *base, size_t nmemb, size_t size, int (*cmp)(const void *, const void *));
  338. PHPAPI void php_register_pre_request_shutdown(void (*func)(void *), void *userdata);
  339. PHPAPI void php_com_initialize(void);
  340. PHPAPI char *php_get_current_user(void);
  341. END_EXTERN_C()
  342. /* PHP-named Zend macro wrappers */
  343. #define PHP_FN ZEND_FN
  344. #define PHP_MN ZEND_MN
  345. #define PHP_NAMED_FUNCTION ZEND_NAMED_FUNCTION
  346. #define PHP_FUNCTION ZEND_FUNCTION
  347. #define PHP_METHOD ZEND_METHOD
  348. #define PHP_RAW_NAMED_FE ZEND_RAW_NAMED_FE
  349. #define PHP_NAMED_FE ZEND_NAMED_FE
  350. #define PHP_FE ZEND_FE
  351. #define PHP_DEP_FE ZEND_DEP_FE
  352. #define PHP_FALIAS ZEND_FALIAS
  353. #define PHP_DEP_FALIAS ZEND_DEP_FALIAS
  354. #define PHP_ME ZEND_ME
  355. #define PHP_MALIAS ZEND_MALIAS
  356. #define PHP_ABSTRACT_ME ZEND_ABSTRACT_ME
  357. #define PHP_ME_MAPPING ZEND_ME_MAPPING
  358. #define PHP_FE_END ZEND_FE_END
  359. #define PHP_MODULE_STARTUP_N ZEND_MODULE_STARTUP_N
  360. #define PHP_MODULE_SHUTDOWN_N ZEND_MODULE_SHUTDOWN_N
  361. #define PHP_MODULE_ACTIVATE_N ZEND_MODULE_ACTIVATE_N
  362. #define PHP_MODULE_DEACTIVATE_N ZEND_MODULE_DEACTIVATE_N
  363. #define PHP_MODULE_INFO_N ZEND_MODULE_INFO_N
  364. #define PHP_MODULE_STARTUP_D ZEND_MODULE_STARTUP_D
  365. #define PHP_MODULE_SHUTDOWN_D ZEND_MODULE_SHUTDOWN_D
  366. #define PHP_MODULE_ACTIVATE_D ZEND_MODULE_ACTIVATE_D
  367. #define PHP_MODULE_DEACTIVATE_D ZEND_MODULE_DEACTIVATE_D
  368. #define PHP_MODULE_INFO_D ZEND_MODULE_INFO_D
  369. /* Compatibility macros */
  370. #define PHP_MINIT ZEND_MODULE_STARTUP_N
  371. #define PHP_MSHUTDOWN ZEND_MODULE_SHUTDOWN_N
  372. #define PHP_RINIT ZEND_MODULE_ACTIVATE_N
  373. #define PHP_RSHUTDOWN ZEND_MODULE_DEACTIVATE_N
  374. #define PHP_MINFO ZEND_MODULE_INFO_N
  375. #define PHP_GINIT ZEND_GINIT
  376. #define PHP_GSHUTDOWN ZEND_GSHUTDOWN
  377. #define PHP_MINIT_FUNCTION ZEND_MODULE_STARTUP_D
  378. #define PHP_MSHUTDOWN_FUNCTION ZEND_MODULE_SHUTDOWN_D
  379. #define PHP_RINIT_FUNCTION ZEND_MODULE_ACTIVATE_D
  380. #define PHP_RSHUTDOWN_FUNCTION ZEND_MODULE_DEACTIVATE_D
  381. #define PHP_MINFO_FUNCTION ZEND_MODULE_INFO_D
  382. #define PHP_GINIT_FUNCTION ZEND_GINIT_FUNCTION
  383. #define PHP_GSHUTDOWN_FUNCTION ZEND_GSHUTDOWN_FUNCTION
  384. #define PHP_MODULE_GLOBALS ZEND_MODULE_GLOBALS
  385. /* Output support */
  386. #include "main/php_output.h"
  387. #include "php_streams.h"
  388. #include "php_memory_streams.h"
  389. #include "fopen_wrappers.h"
  390. /* Virtual current working directory support */
  391. #include "zend_virtual_cwd.h"
  392. #include "zend_constants.h"
  393. /* connection status states */
  394. #define PHP_CONNECTION_NORMAL 0
  395. #define PHP_CONNECTION_ABORTED 1
  396. #define PHP_CONNECTION_TIMEOUT 2
  397. #include "php_reentrancy.h"
  398. /* Finding offsets of elements within structures.
  399. * Taken from the Apache code, which in turn, was taken from X code...
  400. */
  401. #ifndef XtOffset
  402. #if defined(CRAY) || (defined(__arm) && !(defined(LINUX) || defined(__riscos__)))
  403. #ifdef __STDC__
  404. #define XtOffset(p_type, field) _Offsetof(p_type, field)
  405. #else
  406. #ifdef CRAY2
  407. #define XtOffset(p_type, field) \
  408. (sizeof(int)*((unsigned int)&(((p_type)NULL)->field)))
  409. #else /* !CRAY2 */
  410. #define XtOffset(p_type, field) ((unsigned int)&(((p_type)NULL)->field))
  411. #endif /* !CRAY2 */
  412. #endif /* __STDC__ */
  413. #else /* ! (CRAY || __arm) */
  414. #define XtOffset(p_type, field) \
  415. ((zend_long) (((char *) (&(((p_type)NULL)->field))) - ((char *) NULL)))
  416. #endif /* !CRAY */
  417. #endif /* ! XtOffset */
  418. #ifndef XtOffsetOf
  419. #ifdef offsetof
  420. #define XtOffsetOf(s_type, field) offsetof(s_type, field)
  421. #else
  422. #define XtOffsetOf(s_type, field) XtOffset(s_type*, field)
  423. #endif
  424. #endif /* !XtOffsetOf */
  425. #endif
  426. /*
  427. * Local variables:
  428. * tab-width: 4
  429. * c-basic-offset: 4
  430. * End:
  431. * vim600: sw=4 ts=4 fdm=marker
  432. * vim<600: sw=4 ts=4
  433. */