file.c 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-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: Rasmus Lerdorf <rasmus@php.net> |
  16. | Stig Bakken <ssb@php.net> |
  17. | Andi Gutmans <andi@zend.com> |
  18. | Zeev Suraski <zeev@zend.com> |
  19. | PHP 4.0 patches by Thies C. Arntzen (thies@thieso.net) |
  20. | PHP streams by Wez Furlong (wez@thebrainroom.com) |
  21. +----------------------------------------------------------------------+
  22. */
  23. /* $Id$ */
  24. /* Synced with php 3.0 revision 1.218 1999-06-16 [ssb] */
  25. /* {{{ includes */
  26. #include "php.h"
  27. #include "php_globals.h"
  28. #include "ext/standard/flock_compat.h"
  29. #include "ext/standard/exec.h"
  30. #include "ext/standard/php_filestat.h"
  31. #include "php_open_temporary_file.h"
  32. #include "ext/standard/basic_functions.h"
  33. #include "php_ini.h"
  34. #include "php_smart_str.h"
  35. #include <stdio.h>
  36. #include <stdlib.h>
  37. #include <errno.h>
  38. #include <sys/types.h>
  39. #include <sys/stat.h>
  40. #include <fcntl.h>
  41. #ifdef PHP_WIN32
  42. # include <io.h>
  43. # define O_RDONLY _O_RDONLY
  44. # include "win32/param.h"
  45. # include "win32/winutil.h"
  46. # include "win32/fnmatch.h"
  47. #else
  48. # if HAVE_SYS_PARAM_H
  49. # include <sys/param.h>
  50. # endif
  51. # if HAVE_SYS_SELECT_H
  52. # include <sys/select.h>
  53. # endif
  54. # if defined(NETWARE) && defined(USE_WINSOCK)
  55. # include <novsock2.h>
  56. # else
  57. # include <sys/socket.h>
  58. # include <netinet/in.h>
  59. # include <netdb.h>
  60. # endif
  61. # if HAVE_ARPA_INET_H
  62. # include <arpa/inet.h>
  63. # endif
  64. #endif
  65. #include "ext/standard/head.h"
  66. #include "php_string.h"
  67. #include "file.h"
  68. #if HAVE_PWD_H
  69. # ifdef PHP_WIN32
  70. # include "win32/pwd.h"
  71. # else
  72. # include <pwd.h>
  73. # endif
  74. #endif
  75. #ifdef HAVE_SYS_TIME_H
  76. # include <sys/time.h>
  77. #endif
  78. #include "fsock.h"
  79. #include "fopen_wrappers.h"
  80. #include "streamsfuncs.h"
  81. #include "php_globals.h"
  82. #ifdef HAVE_SYS_FILE_H
  83. # include <sys/file.h>
  84. #endif
  85. #if MISSING_FCLOSE_DECL
  86. extern int fclose(FILE *);
  87. #endif
  88. #ifdef HAVE_SYS_MMAN_H
  89. # include <sys/mman.h>
  90. #endif
  91. #include "scanf.h"
  92. #include "zend_API.h"
  93. #ifdef ZTS
  94. int file_globals_id;
  95. #else
  96. php_file_globals file_globals;
  97. #endif
  98. #if defined(HAVE_FNMATCH) && !defined(PHP_WIN32)
  99. # ifndef _GNU_SOURCE
  100. # define _GNU_SOURCE
  101. # endif
  102. # include <fnmatch.h>
  103. #endif
  104. #ifdef HAVE_WCHAR_H
  105. # include <wchar.h>
  106. #endif
  107. #ifndef S_ISDIR
  108. # define S_ISDIR(mode) (((mode)&S_IFMT) == S_IFDIR)
  109. #endif
  110. /* }}} */
  111. #define PHP_STREAM_TO_ZVAL(stream, arg) \
  112. php_stream_from_zval_no_verify(stream, arg); \
  113. if (stream == NULL) { \
  114. RETURN_FALSE; \
  115. }
  116. /* {{{ ZTS-stuff / Globals / Prototypes */
  117. /* sharing globals is *evil* */
  118. static int le_stream_context = FAILURE;
  119. PHPAPI int php_le_stream_context(TSRMLS_D)
  120. {
  121. return le_stream_context;
  122. }
  123. /* }}} */
  124. /* {{{ Module-Stuff
  125. */
  126. static ZEND_RSRC_DTOR_FUNC(file_context_dtor)
  127. {
  128. php_stream_context *context = (php_stream_context*)rsrc->ptr;
  129. if (context->options) {
  130. zval_ptr_dtor(&context->options);
  131. context->options = NULL;
  132. }
  133. php_stream_context_free(context);
  134. }
  135. static void file_globals_ctor(php_file_globals *file_globals_p TSRMLS_DC)
  136. {
  137. FG(pclose_ret) = 0;
  138. FG(pclose_wait) = 0;
  139. FG(user_stream_current_filename) = NULL;
  140. FG(def_chunk_size) = PHP_SOCK_CHUNK_SIZE;
  141. FG(wrapper_errors) = NULL;
  142. }
  143. static void file_globals_dtor(php_file_globals *file_globals_p TSRMLS_DC)
  144. {
  145. }
  146. PHP_INI_BEGIN()
  147. STD_PHP_INI_ENTRY("user_agent", NULL, PHP_INI_ALL, OnUpdateString, user_agent, php_file_globals, file_globals)
  148. STD_PHP_INI_ENTRY("from", NULL, PHP_INI_ALL, OnUpdateString, from_address, php_file_globals, file_globals)
  149. STD_PHP_INI_ENTRY("default_socket_timeout", "60", PHP_INI_ALL, OnUpdateLong, default_socket_timeout, php_file_globals, file_globals)
  150. STD_PHP_INI_ENTRY("auto_detect_line_endings", "0", PHP_INI_ALL, OnUpdateLong, auto_detect_line_endings, php_file_globals, file_globals)
  151. PHP_INI_END()
  152. PHP_MINIT_FUNCTION(file)
  153. {
  154. le_stream_context = zend_register_list_destructors_ex(file_context_dtor, NULL, "stream-context", module_number);
  155. #ifdef ZTS
  156. ts_allocate_id(&file_globals_id, sizeof(php_file_globals), (ts_allocate_ctor) file_globals_ctor, (ts_allocate_dtor) file_globals_dtor);
  157. #else
  158. file_globals_ctor(&file_globals TSRMLS_CC);
  159. #endif
  160. REGISTER_INI_ENTRIES();
  161. REGISTER_LONG_CONSTANT("SEEK_SET", SEEK_SET, CONST_CS | CONST_PERSISTENT);
  162. REGISTER_LONG_CONSTANT("SEEK_CUR", SEEK_CUR, CONST_CS | CONST_PERSISTENT);
  163. REGISTER_LONG_CONSTANT("SEEK_END", SEEK_END, CONST_CS | CONST_PERSISTENT);
  164. REGISTER_LONG_CONSTANT("LOCK_SH", PHP_LOCK_SH, CONST_CS | CONST_PERSISTENT);
  165. REGISTER_LONG_CONSTANT("LOCK_EX", PHP_LOCK_EX, CONST_CS | CONST_PERSISTENT);
  166. REGISTER_LONG_CONSTANT("LOCK_UN", PHP_LOCK_UN, CONST_CS | CONST_PERSISTENT);
  167. REGISTER_LONG_CONSTANT("LOCK_NB", PHP_LOCK_NB, CONST_CS | CONST_PERSISTENT);
  168. REGISTER_LONG_CONSTANT("STREAM_NOTIFY_CONNECT", PHP_STREAM_NOTIFY_CONNECT, CONST_CS | CONST_PERSISTENT);
  169. REGISTER_LONG_CONSTANT("STREAM_NOTIFY_AUTH_REQUIRED", PHP_STREAM_NOTIFY_AUTH_REQUIRED, CONST_CS | CONST_PERSISTENT);
  170. REGISTER_LONG_CONSTANT("STREAM_NOTIFY_AUTH_RESULT", PHP_STREAM_NOTIFY_AUTH_RESULT, CONST_CS | CONST_PERSISTENT);
  171. REGISTER_LONG_CONSTANT("STREAM_NOTIFY_MIME_TYPE_IS", PHP_STREAM_NOTIFY_MIME_TYPE_IS, CONST_CS | CONST_PERSISTENT);
  172. REGISTER_LONG_CONSTANT("STREAM_NOTIFY_FILE_SIZE_IS", PHP_STREAM_NOTIFY_FILE_SIZE_IS, CONST_CS | CONST_PERSISTENT);
  173. REGISTER_LONG_CONSTANT("STREAM_NOTIFY_REDIRECTED", PHP_STREAM_NOTIFY_REDIRECTED, CONST_CS | CONST_PERSISTENT);
  174. REGISTER_LONG_CONSTANT("STREAM_NOTIFY_PROGRESS", PHP_STREAM_NOTIFY_PROGRESS, CONST_CS | CONST_PERSISTENT);
  175. REGISTER_LONG_CONSTANT("STREAM_NOTIFY_FAILURE", PHP_STREAM_NOTIFY_FAILURE, CONST_CS | CONST_PERSISTENT);
  176. REGISTER_LONG_CONSTANT("STREAM_NOTIFY_COMPLETED", PHP_STREAM_NOTIFY_COMPLETED, CONST_CS | CONST_PERSISTENT);
  177. REGISTER_LONG_CONSTANT("STREAM_NOTIFY_RESOLVE", PHP_STREAM_NOTIFY_RESOLVE, CONST_CS | CONST_PERSISTENT);
  178. REGISTER_LONG_CONSTANT("STREAM_NOTIFY_SEVERITY_INFO", PHP_STREAM_NOTIFY_SEVERITY_INFO, CONST_CS | CONST_PERSISTENT);
  179. REGISTER_LONG_CONSTANT("STREAM_NOTIFY_SEVERITY_WARN", PHP_STREAM_NOTIFY_SEVERITY_WARN, CONST_CS | CONST_PERSISTENT);
  180. REGISTER_LONG_CONSTANT("STREAM_NOTIFY_SEVERITY_ERR", PHP_STREAM_NOTIFY_SEVERITY_ERR, CONST_CS | CONST_PERSISTENT);
  181. REGISTER_LONG_CONSTANT("STREAM_FILTER_READ", PHP_STREAM_FILTER_READ, CONST_CS | CONST_PERSISTENT);
  182. REGISTER_LONG_CONSTANT("STREAM_FILTER_WRITE", PHP_STREAM_FILTER_WRITE, CONST_CS | CONST_PERSISTENT);
  183. REGISTER_LONG_CONSTANT("STREAM_FILTER_ALL", PHP_STREAM_FILTER_ALL, CONST_CS | CONST_PERSISTENT);
  184. REGISTER_LONG_CONSTANT("STREAM_CLIENT_PERSISTENT", PHP_STREAM_CLIENT_PERSISTENT, CONST_CS | CONST_PERSISTENT);
  185. REGISTER_LONG_CONSTANT("STREAM_CLIENT_ASYNC_CONNECT", PHP_STREAM_CLIENT_ASYNC_CONNECT, CONST_CS | CONST_PERSISTENT);
  186. REGISTER_LONG_CONSTANT("STREAM_CLIENT_CONNECT", PHP_STREAM_CLIENT_CONNECT, CONST_CS | CONST_PERSISTENT);
  187. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_ANY_CLIENT", STREAM_CRYPTO_METHOD_ANY_CLIENT, CONST_CS|CONST_PERSISTENT);
  188. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_SSLv2_CLIENT", STREAM_CRYPTO_METHOD_SSLv2_CLIENT, CONST_CS|CONST_PERSISTENT);
  189. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_SSLv3_CLIENT", STREAM_CRYPTO_METHOD_SSLv3_CLIENT, CONST_CS|CONST_PERSISTENT);
  190. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_SSLv23_CLIENT", STREAM_CRYPTO_METHOD_SSLv23_CLIENT, CONST_CS|CONST_PERSISTENT);
  191. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_TLS_CLIENT", STREAM_CRYPTO_METHOD_TLS_CLIENT, CONST_CS|CONST_PERSISTENT);
  192. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_TLSv1_0_CLIENT", STREAM_CRYPTO_METHOD_TLSv1_0_CLIENT, CONST_CS|CONST_PERSISTENT);
  193. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_TLSv1_1_CLIENT", STREAM_CRYPTO_METHOD_TLSv1_1_CLIENT, CONST_CS|CONST_PERSISTENT);
  194. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT", STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT, CONST_CS|CONST_PERSISTENT);
  195. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_ANY_SERVER", STREAM_CRYPTO_METHOD_ANY_SERVER, CONST_CS|CONST_PERSISTENT);
  196. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_SSLv2_SERVER", STREAM_CRYPTO_METHOD_SSLv2_SERVER, CONST_CS|CONST_PERSISTENT);
  197. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_SSLv3_SERVER", STREAM_CRYPTO_METHOD_SSLv3_SERVER, CONST_CS|CONST_PERSISTENT);
  198. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_SSLv23_SERVER", STREAM_CRYPTO_METHOD_SSLv23_SERVER, CONST_CS|CONST_PERSISTENT);
  199. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_TLS_SERVER", STREAM_CRYPTO_METHOD_TLS_SERVER, CONST_CS|CONST_PERSISTENT);
  200. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_TLSv1_0_SERVER", STREAM_CRYPTO_METHOD_TLSv1_0_SERVER, CONST_CS|CONST_PERSISTENT);
  201. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_TLSv1_1_SERVER", STREAM_CRYPTO_METHOD_TLSv1_1_SERVER, CONST_CS|CONST_PERSISTENT);
  202. REGISTER_LONG_CONSTANT("STREAM_CRYPTO_METHOD_TLSv1_2_SERVER", STREAM_CRYPTO_METHOD_TLSv1_2_SERVER, CONST_CS|CONST_PERSISTENT);
  203. REGISTER_LONG_CONSTANT("STREAM_SHUT_RD", STREAM_SHUT_RD, CONST_CS|CONST_PERSISTENT);
  204. REGISTER_LONG_CONSTANT("STREAM_SHUT_WR", STREAM_SHUT_WR, CONST_CS|CONST_PERSISTENT);
  205. REGISTER_LONG_CONSTANT("STREAM_SHUT_RDWR", STREAM_SHUT_RDWR, CONST_CS|CONST_PERSISTENT);
  206. #ifdef PF_INET
  207. REGISTER_LONG_CONSTANT("STREAM_PF_INET", PF_INET, CONST_CS|CONST_PERSISTENT);
  208. #elif defined(AF_INET)
  209. REGISTER_LONG_CONSTANT("STREAM_PF_INET", AF_INET, CONST_CS|CONST_PERSISTENT);
  210. #endif
  211. #if HAVE_IPV6
  212. # ifdef PF_INET6
  213. REGISTER_LONG_CONSTANT("STREAM_PF_INET6", PF_INET6, CONST_CS|CONST_PERSISTENT);
  214. # elif defined(AF_INET6)
  215. REGISTER_LONG_CONSTANT("STREAM_PF_INET6", AF_INET6, CONST_CS|CONST_PERSISTENT);
  216. # endif
  217. #endif
  218. #ifdef PF_UNIX
  219. REGISTER_LONG_CONSTANT("STREAM_PF_UNIX", PF_UNIX, CONST_CS|CONST_PERSISTENT);
  220. #elif defined(AF_UNIX)
  221. REGISTER_LONG_CONSTANT("STREAM_PF_UNIX", AF_UNIX, CONST_CS|CONST_PERSISTENT);
  222. #endif
  223. #ifdef IPPROTO_IP
  224. /* most people will use this one when calling socket() or socketpair() */
  225. REGISTER_LONG_CONSTANT("STREAM_IPPROTO_IP", IPPROTO_IP, CONST_CS|CONST_PERSISTENT);
  226. #endif
  227. #ifdef IPPROTO_TCP
  228. REGISTER_LONG_CONSTANT("STREAM_IPPROTO_TCP", IPPROTO_TCP, CONST_CS|CONST_PERSISTENT);
  229. #endif
  230. #ifdef IPPROTO_UDP
  231. REGISTER_LONG_CONSTANT("STREAM_IPPROTO_UDP", IPPROTO_UDP, CONST_CS|CONST_PERSISTENT);
  232. #endif
  233. #ifdef IPPROTO_ICMP
  234. REGISTER_LONG_CONSTANT("STREAM_IPPROTO_ICMP", IPPROTO_ICMP, CONST_CS|CONST_PERSISTENT);
  235. #endif
  236. #ifdef IPPROTO_RAW
  237. REGISTER_LONG_CONSTANT("STREAM_IPPROTO_RAW", IPPROTO_RAW, CONST_CS|CONST_PERSISTENT);
  238. #endif
  239. REGISTER_LONG_CONSTANT("STREAM_SOCK_STREAM", SOCK_STREAM, CONST_CS|CONST_PERSISTENT);
  240. REGISTER_LONG_CONSTANT("STREAM_SOCK_DGRAM", SOCK_DGRAM, CONST_CS|CONST_PERSISTENT);
  241. #ifdef SOCK_RAW
  242. REGISTER_LONG_CONSTANT("STREAM_SOCK_RAW", SOCK_RAW, CONST_CS|CONST_PERSISTENT);
  243. #endif
  244. #ifdef SOCK_SEQPACKET
  245. REGISTER_LONG_CONSTANT("STREAM_SOCK_SEQPACKET", SOCK_SEQPACKET, CONST_CS|CONST_PERSISTENT);
  246. #endif
  247. #ifdef SOCK_RDM
  248. REGISTER_LONG_CONSTANT("STREAM_SOCK_RDM", SOCK_RDM, CONST_CS|CONST_PERSISTENT);
  249. #endif
  250. REGISTER_LONG_CONSTANT("STREAM_PEEK", STREAM_PEEK, CONST_CS | CONST_PERSISTENT);
  251. REGISTER_LONG_CONSTANT("STREAM_OOB", STREAM_OOB, CONST_CS | CONST_PERSISTENT);
  252. REGISTER_LONG_CONSTANT("STREAM_SERVER_BIND", STREAM_XPORT_BIND, CONST_CS | CONST_PERSISTENT);
  253. REGISTER_LONG_CONSTANT("STREAM_SERVER_LISTEN", STREAM_XPORT_LISTEN, CONST_CS | CONST_PERSISTENT);
  254. REGISTER_LONG_CONSTANT("FILE_USE_INCLUDE_PATH", PHP_FILE_USE_INCLUDE_PATH, CONST_CS | CONST_PERSISTENT);
  255. REGISTER_LONG_CONSTANT("FILE_IGNORE_NEW_LINES", PHP_FILE_IGNORE_NEW_LINES, CONST_CS | CONST_PERSISTENT);
  256. REGISTER_LONG_CONSTANT("FILE_SKIP_EMPTY_LINES", PHP_FILE_SKIP_EMPTY_LINES, CONST_CS | CONST_PERSISTENT);
  257. REGISTER_LONG_CONSTANT("FILE_APPEND", PHP_FILE_APPEND, CONST_CS | CONST_PERSISTENT);
  258. REGISTER_LONG_CONSTANT("FILE_NO_DEFAULT_CONTEXT", PHP_FILE_NO_DEFAULT_CONTEXT, CONST_CS | CONST_PERSISTENT);
  259. REGISTER_LONG_CONSTANT("FILE_TEXT", 0, CONST_CS | CONST_PERSISTENT);
  260. REGISTER_LONG_CONSTANT("FILE_BINARY", 0, CONST_CS | CONST_PERSISTENT);
  261. #ifdef HAVE_FNMATCH
  262. REGISTER_LONG_CONSTANT("FNM_NOESCAPE", FNM_NOESCAPE, CONST_CS | CONST_PERSISTENT);
  263. REGISTER_LONG_CONSTANT("FNM_PATHNAME", FNM_PATHNAME, CONST_CS | CONST_PERSISTENT);
  264. REGISTER_LONG_CONSTANT("FNM_PERIOD", FNM_PERIOD, CONST_CS | CONST_PERSISTENT);
  265. # ifdef FNM_CASEFOLD /* a GNU extension */ /* TODO emulate if not available */
  266. REGISTER_LONG_CONSTANT("FNM_CASEFOLD", FNM_CASEFOLD, CONST_CS | CONST_PERSISTENT);
  267. # endif
  268. #endif
  269. return SUCCESS;
  270. }
  271. /* }}} */
  272. PHP_MSHUTDOWN_FUNCTION(file) /* {{{ */
  273. {
  274. #ifndef ZTS
  275. file_globals_dtor(&file_globals TSRMLS_CC);
  276. #endif
  277. return SUCCESS;
  278. }
  279. /* }}} */
  280. static int flock_values[] = { LOCK_SH, LOCK_EX, LOCK_UN };
  281. /* {{{ proto bool flock(resource fp, int operation [, int &wouldblock])
  282. Portable file locking */
  283. PHP_FUNCTION(flock)
  284. {
  285. zval *res, *wouldblock = NULL;
  286. int act;
  287. php_stream *stream;
  288. long operation = 0;
  289. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl|z", &res, &operation, &wouldblock) == FAILURE) {
  290. return;
  291. }
  292. PHP_STREAM_TO_ZVAL(stream, &res);
  293. act = operation & 3;
  294. if (act < 1 || act > 3) {
  295. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Illegal operation argument");
  296. RETURN_FALSE;
  297. }
  298. if (wouldblock && PZVAL_IS_REF(wouldblock)) {
  299. convert_to_long_ex(&wouldblock);
  300. Z_LVAL_P(wouldblock) = 0;
  301. }
  302. /* flock_values contains all possible actions if (operation & 4) we won't block on the lock */
  303. act = flock_values[act - 1] | (operation & PHP_LOCK_NB ? LOCK_NB : 0);
  304. if (php_stream_lock(stream, act)) {
  305. if (operation && errno == EWOULDBLOCK && wouldblock && PZVAL_IS_REF(wouldblock)) {
  306. Z_LVAL_P(wouldblock) = 1;
  307. }
  308. RETURN_FALSE;
  309. }
  310. RETURN_TRUE;
  311. }
  312. /* }}} */
  313. #define PHP_META_UNSAFE ".\\+*?[^]$() "
  314. /* {{{ proto array get_meta_tags(string filename [, bool use_include_path])
  315. Extracts all meta tag content attributes from a file and returns an array */
  316. PHP_FUNCTION(get_meta_tags)
  317. {
  318. char *filename;
  319. int filename_len;
  320. zend_bool use_include_path = 0;
  321. int in_tag = 0, done = 0;
  322. int looking_for_val = 0, have_name = 0, have_content = 0;
  323. int saw_name = 0, saw_content = 0;
  324. char *name = NULL, *value = NULL, *temp = NULL;
  325. php_meta_tags_token tok, tok_last;
  326. php_meta_tags_data md;
  327. /* Initiailize our structure */
  328. memset(&md, 0, sizeof(md));
  329. /* Parse arguments */
  330. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|b", &filename, &filename_len, &use_include_path) == FAILURE) {
  331. return;
  332. }
  333. md.stream = php_stream_open_wrapper(filename, "rb",
  334. (use_include_path ? USE_PATH : 0) | REPORT_ERRORS,
  335. NULL);
  336. if (!md.stream) {
  337. RETURN_FALSE;
  338. }
  339. array_init(return_value);
  340. tok_last = TOK_EOF;
  341. while (!done && (tok = php_next_meta_token(&md TSRMLS_CC)) != TOK_EOF) {
  342. if (tok == TOK_ID) {
  343. if (tok_last == TOK_OPENTAG) {
  344. md.in_meta = !strcasecmp("meta", md.token_data);
  345. } else if (tok_last == TOK_SLASH && in_tag) {
  346. if (strcasecmp("head", md.token_data) == 0) {
  347. /* We are done here! */
  348. done = 1;
  349. }
  350. } else if (tok_last == TOK_EQUAL && looking_for_val) {
  351. if (saw_name) {
  352. STR_FREE(name);
  353. /* Get the NAME attr (Single word attr, non-quoted) */
  354. temp = name = estrndup(md.token_data, md.token_len);
  355. while (temp && *temp) {
  356. if (strchr(PHP_META_UNSAFE, *temp)) {
  357. *temp = '_';
  358. }
  359. temp++;
  360. }
  361. have_name = 1;
  362. } else if (saw_content) {
  363. STR_FREE(value);
  364. value = estrndup(md.token_data, md.token_len);
  365. have_content = 1;
  366. }
  367. looking_for_val = 0;
  368. } else {
  369. if (md.in_meta) {
  370. if (strcasecmp("name", md.token_data) == 0) {
  371. saw_name = 1;
  372. saw_content = 0;
  373. looking_for_val = 1;
  374. } else if (strcasecmp("content", md.token_data) == 0) {
  375. saw_name = 0;
  376. saw_content = 1;
  377. looking_for_val = 1;
  378. }
  379. }
  380. }
  381. } else if (tok == TOK_STRING && tok_last == TOK_EQUAL && looking_for_val) {
  382. if (saw_name) {
  383. STR_FREE(name);
  384. /* Get the NAME attr (Quoted single/double) */
  385. temp = name = estrndup(md.token_data, md.token_len);
  386. while (temp && *temp) {
  387. if (strchr(PHP_META_UNSAFE, *temp)) {
  388. *temp = '_';
  389. }
  390. temp++;
  391. }
  392. have_name = 1;
  393. } else if (saw_content) {
  394. STR_FREE(value);
  395. value = estrndup(md.token_data, md.token_len);
  396. have_content = 1;
  397. }
  398. looking_for_val = 0;
  399. } else if (tok == TOK_OPENTAG) {
  400. if (looking_for_val) {
  401. looking_for_val = 0;
  402. have_name = saw_name = 0;
  403. have_content = saw_content = 0;
  404. }
  405. in_tag = 1;
  406. } else if (tok == TOK_CLOSETAG) {
  407. if (have_name) {
  408. /* For BC */
  409. php_strtolower(name, strlen(name));
  410. if (have_content) {
  411. add_assoc_string(return_value, name, value, 1);
  412. } else {
  413. add_assoc_string(return_value, name, "", 1);
  414. }
  415. efree(name);
  416. STR_FREE(value);
  417. } else if (have_content) {
  418. efree(value);
  419. }
  420. name = value = NULL;
  421. /* Reset all of our flags */
  422. in_tag = looking_for_val = 0;
  423. have_name = saw_name = 0;
  424. have_content = saw_content = 0;
  425. md.in_meta = 0;
  426. }
  427. tok_last = tok;
  428. if (md.token_data)
  429. efree(md.token_data);
  430. md.token_data = NULL;
  431. }
  432. STR_FREE(value);
  433. STR_FREE(name);
  434. php_stream_close(md.stream);
  435. }
  436. /* }}} */
  437. /* {{{ proto string file_get_contents(string filename [, bool use_include_path [, resource context [, long offset [, long maxlen]]]])
  438. Read the entire file into a string */
  439. PHP_FUNCTION(file_get_contents)
  440. {
  441. char *filename;
  442. int filename_len;
  443. char *contents;
  444. zend_bool use_include_path = 0;
  445. php_stream *stream;
  446. long len;
  447. long offset = -1;
  448. long maxlen = PHP_STREAM_COPY_ALL;
  449. zval *zcontext = NULL;
  450. php_stream_context *context = NULL;
  451. /* Parse arguments */
  452. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|br!ll", &filename, &filename_len, &use_include_path, &zcontext, &offset, &maxlen) == FAILURE) {
  453. return;
  454. }
  455. if (ZEND_NUM_ARGS() == 5 && maxlen < 0) {
  456. php_error_docref(NULL TSRMLS_CC, E_WARNING, "length must be greater than or equal to zero");
  457. RETURN_FALSE;
  458. }
  459. context = php_stream_context_from_zval(zcontext, 0);
  460. stream = php_stream_open_wrapper_ex(filename, "rb",
  461. (use_include_path ? USE_PATH : 0) | REPORT_ERRORS,
  462. NULL, context);
  463. if (!stream) {
  464. RETURN_FALSE;
  465. }
  466. if (offset > 0 && php_stream_seek(stream, offset, SEEK_SET) < 0) {
  467. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to seek to position %ld in the stream", offset);
  468. php_stream_close(stream);
  469. RETURN_FALSE;
  470. }
  471. if ((len = php_stream_copy_to_mem(stream, &contents, maxlen, 0)) > 0) {
  472. if (len > INT_MAX) {
  473. php_error_docref(NULL TSRMLS_CC, E_WARNING, "content truncated from %ld to %d bytes", len, INT_MAX);
  474. len = INT_MAX;
  475. }
  476. RETVAL_STRINGL(contents, len, 0);
  477. } else if (len == 0) {
  478. RETVAL_EMPTY_STRING();
  479. } else {
  480. RETVAL_FALSE;
  481. }
  482. php_stream_close(stream);
  483. }
  484. /* }}} */
  485. /* {{{ proto int file_put_contents(string file, mixed data [, int flags [, resource context]])
  486. Write/Create a file with contents data and return the number of bytes written */
  487. PHP_FUNCTION(file_put_contents)
  488. {
  489. php_stream *stream;
  490. char *filename;
  491. int filename_len;
  492. zval *data;
  493. long numbytes = 0;
  494. long flags = 0;
  495. zval *zcontext = NULL;
  496. php_stream_context *context = NULL;
  497. php_stream *srcstream = NULL;
  498. char mode[3] = "wb";
  499. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "pz/|lr!", &filename, &filename_len, &data, &flags, &zcontext) == FAILURE) {
  500. return;
  501. }
  502. if (Z_TYPE_P(data) == IS_RESOURCE) {
  503. php_stream_from_zval(srcstream, &data);
  504. }
  505. context = php_stream_context_from_zval(zcontext, flags & PHP_FILE_NO_DEFAULT_CONTEXT);
  506. if (flags & PHP_FILE_APPEND) {
  507. mode[0] = 'a';
  508. } else if (flags & LOCK_EX) {
  509. /* check to make sure we are dealing with a regular file */
  510. if (php_memnstr(filename, "://", sizeof("://") - 1, filename + filename_len)) {
  511. if (strncasecmp(filename, "file://", sizeof("file://") - 1)) {
  512. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Exclusive locks may only be set for regular files");
  513. RETURN_FALSE;
  514. }
  515. }
  516. mode[0] = 'c';
  517. }
  518. mode[2] = '\0';
  519. stream = php_stream_open_wrapper_ex(filename, mode, ((flags & PHP_FILE_USE_INCLUDE_PATH) ? USE_PATH : 0) | REPORT_ERRORS, NULL, context);
  520. if (stream == NULL) {
  521. RETURN_FALSE;
  522. }
  523. if (flags & LOCK_EX && (!php_stream_supports_lock(stream) || php_stream_lock(stream, LOCK_EX))) {
  524. php_stream_close(stream);
  525. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Exclusive locks are not supported for this stream");
  526. RETURN_FALSE;
  527. }
  528. if (mode[0] == 'c') {
  529. php_stream_truncate_set_size(stream, 0);
  530. }
  531. switch (Z_TYPE_P(data)) {
  532. case IS_RESOURCE: {
  533. size_t len;
  534. if (php_stream_copy_to_stream_ex(srcstream, stream, PHP_STREAM_COPY_ALL, &len) != SUCCESS) {
  535. numbytes = -1;
  536. } else {
  537. if (len > LONG_MAX) {
  538. php_error_docref(NULL TSRMLS_CC, E_WARNING, "content truncated from %lu to %ld bytes", (unsigned long) len, LONG_MAX);
  539. len = LONG_MAX;
  540. }
  541. numbytes = len;
  542. }
  543. break;
  544. }
  545. case IS_NULL:
  546. case IS_LONG:
  547. case IS_DOUBLE:
  548. case IS_BOOL:
  549. case IS_CONSTANT:
  550. convert_to_string_ex(&data);
  551. case IS_STRING:
  552. if (Z_STRLEN_P(data)) {
  553. numbytes = php_stream_write(stream, Z_STRVAL_P(data), Z_STRLEN_P(data));
  554. if (numbytes != Z_STRLEN_P(data)) {
  555. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Only %ld of %d bytes written, possibly out of free disk space", numbytes, Z_STRLEN_P(data));
  556. numbytes = -1;
  557. }
  558. }
  559. break;
  560. case IS_ARRAY:
  561. if (zend_hash_num_elements(Z_ARRVAL_P(data))) {
  562. int bytes_written;
  563. zval **tmp;
  564. HashPosition pos;
  565. zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(data), &pos);
  566. while (zend_hash_get_current_data_ex(Z_ARRVAL_P(data), (void **) &tmp, &pos) == SUCCESS) {
  567. if (Z_TYPE_PP(tmp) != IS_STRING) {
  568. SEPARATE_ZVAL(tmp);
  569. convert_to_string(*tmp);
  570. }
  571. if (Z_STRLEN_PP(tmp)) {
  572. numbytes += Z_STRLEN_PP(tmp);
  573. bytes_written = php_stream_write(stream, Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp));
  574. if (bytes_written < 0 || bytes_written != Z_STRLEN_PP(tmp)) {
  575. if (bytes_written < 0) {
  576. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to write %d bytes to %s", Z_STRLEN_PP(tmp), filename);
  577. } else {
  578. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Only %d of %d bytes written, possibly out of free disk space", bytes_written, Z_STRLEN_PP(tmp));
  579. }
  580. numbytes = -1;
  581. break;
  582. }
  583. }
  584. zend_hash_move_forward_ex(Z_ARRVAL_P(data), &pos);
  585. }
  586. }
  587. break;
  588. case IS_OBJECT:
  589. if (Z_OBJ_HT_P(data) != NULL) {
  590. zval out;
  591. if (zend_std_cast_object_tostring(data, &out, IS_STRING TSRMLS_CC) == SUCCESS) {
  592. numbytes = php_stream_write(stream, Z_STRVAL(out), Z_STRLEN(out));
  593. if (numbytes != Z_STRLEN(out)) {
  594. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Only %ld of %d bytes written, possibly out of free disk space", numbytes, Z_STRLEN(out));
  595. numbytes = -1;
  596. }
  597. zval_dtor(&out);
  598. break;
  599. }
  600. }
  601. default:
  602. numbytes = -1;
  603. break;
  604. }
  605. php_stream_close(stream);
  606. if (numbytes < 0) {
  607. RETURN_FALSE;
  608. }
  609. RETURN_LONG(numbytes);
  610. }
  611. /* }}} */
  612. #define PHP_FILE_BUF_SIZE 80
  613. /* {{{ proto array file(string filename [, int flags[, resource context]])
  614. Read entire file into an array */
  615. PHP_FUNCTION(file)
  616. {
  617. char *filename;
  618. int filename_len;
  619. char *target_buf=NULL, *p, *s, *e;
  620. register int i = 0;
  621. int target_len;
  622. char eol_marker = '\n';
  623. long flags = 0;
  624. zend_bool use_include_path;
  625. zend_bool include_new_line;
  626. zend_bool skip_blank_lines;
  627. php_stream *stream;
  628. zval *zcontext = NULL;
  629. php_stream_context *context = NULL;
  630. /* Parse arguments */
  631. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|lr!", &filename, &filename_len, &flags, &zcontext) == FAILURE) {
  632. return;
  633. }
  634. if (flags < 0 || flags > (PHP_FILE_USE_INCLUDE_PATH | PHP_FILE_IGNORE_NEW_LINES | PHP_FILE_SKIP_EMPTY_LINES | PHP_FILE_NO_DEFAULT_CONTEXT)) {
  635. php_error_docref(NULL TSRMLS_CC, E_WARNING, "'%ld' flag is not supported", flags);
  636. RETURN_FALSE;
  637. }
  638. use_include_path = flags & PHP_FILE_USE_INCLUDE_PATH;
  639. include_new_line = !(flags & PHP_FILE_IGNORE_NEW_LINES);
  640. skip_blank_lines = flags & PHP_FILE_SKIP_EMPTY_LINES;
  641. context = php_stream_context_from_zval(zcontext, flags & PHP_FILE_NO_DEFAULT_CONTEXT);
  642. stream = php_stream_open_wrapper_ex(filename, "rb", (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, NULL, context);
  643. if (!stream) {
  644. RETURN_FALSE;
  645. }
  646. /* Initialize return array */
  647. array_init(return_value);
  648. if ((target_len = php_stream_copy_to_mem(stream, &target_buf, PHP_STREAM_COPY_ALL, 0))) {
  649. s = target_buf;
  650. e = target_buf + target_len;
  651. if (!(p = php_stream_locate_eol(stream, target_buf, target_len TSRMLS_CC))) {
  652. p = e;
  653. goto parse_eol;
  654. }
  655. if (stream->flags & PHP_STREAM_FLAG_EOL_MAC) {
  656. eol_marker = '\r';
  657. }
  658. /* for performance reasons the code is duplicated, so that the if (include_new_line)
  659. * will not need to be done for every single line in the file. */
  660. if (include_new_line) {
  661. do {
  662. p++;
  663. parse_eol:
  664. add_index_stringl(return_value, i++, estrndup(s, p-s), p-s, 0);
  665. s = p;
  666. } while ((p = memchr(p, eol_marker, (e-p))));
  667. } else {
  668. do {
  669. int windows_eol = 0;
  670. if (p != target_buf && eol_marker == '\n' && *(p - 1) == '\r') {
  671. windows_eol++;
  672. }
  673. if (skip_blank_lines && !(p-s-windows_eol)) {
  674. s = ++p;
  675. continue;
  676. }
  677. add_index_stringl(return_value, i++, estrndup(s, p-s-windows_eol), p-s-windows_eol, 0);
  678. s = ++p;
  679. } while ((p = memchr(p, eol_marker, (e-p))));
  680. }
  681. /* handle any left overs of files without new lines */
  682. if (s != e) {
  683. p = e;
  684. goto parse_eol;
  685. }
  686. }
  687. if (target_buf) {
  688. efree(target_buf);
  689. }
  690. php_stream_close(stream);
  691. }
  692. /* }}} */
  693. /* {{{ proto string tempnam(string dir, string prefix)
  694. Create a unique filename in a directory */
  695. PHP_FUNCTION(tempnam)
  696. {
  697. char *dir, *prefix;
  698. int dir_len, prefix_len;
  699. size_t p_len;
  700. char *opened_path;
  701. char *p;
  702. int fd;
  703. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "pp", &dir, &dir_len, &prefix, &prefix_len) == FAILURE) {
  704. return;
  705. }
  706. if (php_check_open_basedir(dir TSRMLS_CC)) {
  707. RETURN_FALSE;
  708. }
  709. php_basename(prefix, prefix_len, NULL, 0, &p, &p_len TSRMLS_CC);
  710. if (p_len > 64) {
  711. p[63] = '\0';
  712. }
  713. RETVAL_FALSE;
  714. if ((fd = php_open_temporary_fd_ex(dir, p, &opened_path, 1 TSRMLS_CC)) >= 0) {
  715. close(fd);
  716. RETVAL_STRING(opened_path, 0);
  717. }
  718. efree(p);
  719. }
  720. /* }}} */
  721. /* {{{ proto resource tmpfile(void)
  722. Create a temporary file that will be deleted automatically after use */
  723. PHP_NAMED_FUNCTION(php_if_tmpfile)
  724. {
  725. php_stream *stream;
  726. if (zend_parse_parameters_none() == FAILURE) {
  727. return;
  728. }
  729. stream = php_stream_fopen_tmpfile();
  730. if (stream) {
  731. php_stream_to_zval(stream, return_value);
  732. } else {
  733. RETURN_FALSE;
  734. }
  735. }
  736. /* }}} */
  737. /* {{{ proto resource fopen(string filename, string mode [, bool use_include_path [, resource context]])
  738. Open a file or a URL and return a file pointer */
  739. PHP_NAMED_FUNCTION(php_if_fopen)
  740. {
  741. char *filename, *mode;
  742. int filename_len, mode_len;
  743. zend_bool use_include_path = 0;
  744. zval *zcontext = NULL;
  745. php_stream *stream;
  746. php_stream_context *context = NULL;
  747. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ps|br", &filename, &filename_len, &mode, &mode_len, &use_include_path, &zcontext) == FAILURE) {
  748. RETURN_FALSE;
  749. }
  750. context = php_stream_context_from_zval(zcontext, 0);
  751. stream = php_stream_open_wrapper_ex(filename, mode, (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, NULL, context);
  752. if (stream == NULL) {
  753. RETURN_FALSE;
  754. }
  755. php_stream_to_zval(stream, return_value);
  756. }
  757. /* }}} */
  758. /* {{{ proto bool fclose(resource fp)
  759. Close an open file pointer */
  760. PHPAPI PHP_FUNCTION(fclose)
  761. {
  762. zval *res;
  763. php_stream *stream;
  764. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &res) == FAILURE) {
  765. RETURN_FALSE;
  766. }
  767. PHP_STREAM_TO_ZVAL(stream, &res);
  768. if ((stream->flags & PHP_STREAM_FLAG_NO_FCLOSE) != 0) {
  769. php_error_docref(NULL TSRMLS_CC, E_WARNING, "%d is not a valid stream resource", stream->rsrc_id);
  770. RETURN_FALSE;
  771. }
  772. if (!stream->is_persistent) {
  773. php_stream_close(stream);
  774. } else {
  775. php_stream_pclose(stream);
  776. }
  777. RETURN_TRUE;
  778. }
  779. /* }}} */
  780. /* {{{ proto resource popen(string command, string mode)
  781. Execute a command and open either a read or a write pipe to it */
  782. PHP_FUNCTION(popen)
  783. {
  784. char *command, *mode;
  785. int command_len, mode_len;
  786. FILE *fp;
  787. php_stream *stream;
  788. char *posix_mode;
  789. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ps", &command, &command_len, &mode, &mode_len) == FAILURE) {
  790. return;
  791. }
  792. posix_mode = estrndup(mode, mode_len);
  793. #ifndef PHP_WIN32
  794. {
  795. char *z = memchr(posix_mode, 'b', mode_len);
  796. if (z) {
  797. memmove(z, z + 1, mode_len - (z - posix_mode));
  798. }
  799. }
  800. #endif
  801. fp = VCWD_POPEN(command, posix_mode);
  802. if (!fp) {
  803. php_error_docref2(NULL TSRMLS_CC, command, posix_mode, E_WARNING, "%s", strerror(errno));
  804. efree(posix_mode);
  805. RETURN_FALSE;
  806. }
  807. stream = php_stream_fopen_from_pipe(fp, mode);
  808. if (stream == NULL) {
  809. php_error_docref2(NULL TSRMLS_CC, command, mode, E_WARNING, "%s", strerror(errno));
  810. RETVAL_FALSE;
  811. } else {
  812. php_stream_to_zval(stream, return_value);
  813. }
  814. efree(posix_mode);
  815. }
  816. /* }}} */
  817. /* {{{ proto int pclose(resource fp)
  818. Close a file pointer opened by popen() */
  819. PHP_FUNCTION(pclose)
  820. {
  821. zval *res;
  822. php_stream *stream;
  823. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &res) == FAILURE) {
  824. RETURN_FALSE;
  825. }
  826. PHP_STREAM_TO_ZVAL(stream, &res);
  827. FG(pclose_wait) = 1;
  828. zend_list_delete(stream->rsrc_id);
  829. FG(pclose_wait) = 0;
  830. RETURN_LONG(FG(pclose_ret));
  831. }
  832. /* }}} */
  833. /* {{{ proto bool feof(resource fp)
  834. Test for end-of-file on a file pointer */
  835. PHPAPI PHP_FUNCTION(feof)
  836. {
  837. zval *res;
  838. php_stream *stream;
  839. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &res) == FAILURE) {
  840. RETURN_FALSE;
  841. }
  842. PHP_STREAM_TO_ZVAL(stream, &res);
  843. if (php_stream_eof(stream)) {
  844. RETURN_TRUE;
  845. } else {
  846. RETURN_FALSE;
  847. }
  848. }
  849. /* }}} */
  850. /* {{{ proto string fgets(resource fp[, int length])
  851. Get a line from file pointer */
  852. PHPAPI PHP_FUNCTION(fgets)
  853. {
  854. zval *res;
  855. long len = 1024;
  856. char *buf = NULL;
  857. int argc = ZEND_NUM_ARGS();
  858. size_t line_len = 0;
  859. php_stream *stream;
  860. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|l", &res, &len) == FAILURE) {
  861. RETURN_FALSE;
  862. }
  863. PHP_STREAM_TO_ZVAL(stream, &res);
  864. if (argc == 1) {
  865. /* ask streams to give us a buffer of an appropriate size */
  866. buf = php_stream_get_line(stream, NULL, 0, &line_len);
  867. if (buf == NULL) {
  868. goto exit_failed;
  869. }
  870. } else if (argc > 1) {
  871. if (len <= 0) {
  872. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter must be greater than 0");
  873. RETURN_FALSE;
  874. }
  875. buf = ecalloc(len + 1, sizeof(char));
  876. if (php_stream_get_line(stream, buf, len, &line_len) == NULL) {
  877. goto exit_failed;
  878. }
  879. }
  880. RETVAL_STRINGL_CHECK(buf, line_len, 0);
  881. /* resize buffer if it's much larger than the result.
  882. * Only needed if the user requested a buffer size. */
  883. if (argc > 1 && Z_STRLEN_P(return_value) < len / 2) {
  884. Z_STRVAL_P(return_value) = erealloc(buf, line_len + 1);
  885. }
  886. return;
  887. exit_failed:
  888. RETVAL_FALSE;
  889. if (buf) {
  890. efree(buf);
  891. }
  892. }
  893. /* }}} */
  894. /* {{{ proto string fgetc(resource fp)
  895. Get a character from file pointer */
  896. PHPAPI PHP_FUNCTION(fgetc)
  897. {
  898. zval *res;
  899. char buf[2];
  900. int result;
  901. php_stream *stream;
  902. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &res) == FAILURE) {
  903. RETURN_FALSE;
  904. }
  905. PHP_STREAM_TO_ZVAL(stream, &res);
  906. result = php_stream_getc(stream);
  907. if (result == EOF) {
  908. RETVAL_FALSE;
  909. } else {
  910. buf[0] = result;
  911. buf[1] = '\0';
  912. RETURN_STRINGL(buf, 1, 1);
  913. }
  914. }
  915. /* }}} */
  916. /* {{{ proto string fgetss(resource fp [, int length [, string allowable_tags]])
  917. Get a line from file pointer and strip HTML tags */
  918. PHPAPI PHP_FUNCTION(fgetss)
  919. {
  920. zval *fd;
  921. long bytes = 0;
  922. size_t len = 0;
  923. size_t actual_len, retval_len;
  924. char *buf = NULL, *retval;
  925. php_stream *stream;
  926. char *allowed_tags=NULL;
  927. int allowed_tags_len=0;
  928. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|ls", &fd, &bytes, &allowed_tags, &allowed_tags_len) == FAILURE) {
  929. RETURN_FALSE;
  930. }
  931. PHP_STREAM_TO_ZVAL(stream, &fd);
  932. if (ZEND_NUM_ARGS() >= 2) {
  933. if (bytes <= 0) {
  934. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter must be greater than 0");
  935. RETURN_FALSE;
  936. }
  937. len = (size_t) bytes;
  938. buf = safe_emalloc(sizeof(char), (len + 1), 0);
  939. /*needed because recv doesnt set null char at end*/
  940. memset(buf, 0, len + 1);
  941. }
  942. if ((retval = php_stream_get_line(stream, buf, len, &actual_len)) == NULL) {
  943. if (buf != NULL) {
  944. efree(buf);
  945. }
  946. RETURN_FALSE;
  947. }
  948. retval_len = php_strip_tags(retval, actual_len, &stream->fgetss_state, allowed_tags, allowed_tags_len);
  949. RETVAL_STRINGL_CHECK(retval, retval_len, 0);
  950. }
  951. /* }}} */
  952. /* {{{ proto mixed fscanf(resource stream, string format [, string ...])
  953. Implements a mostly ANSI compatible fscanf() */
  954. PHP_FUNCTION(fscanf)
  955. {
  956. int result, format_len, type, argc = 0;
  957. zval ***args = NULL;
  958. zval *file_handle;
  959. char *buf, *format;
  960. size_t len;
  961. void *what;
  962. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs*", &file_handle, &format, &format_len, &args, &argc) == FAILURE) {
  963. return;
  964. }
  965. what = zend_fetch_resource(&file_handle TSRMLS_CC, -1, "File-Handle", &type, 2, php_file_le_stream(), php_file_le_pstream());
  966. /* we can't do a ZEND_VERIFY_RESOURCE(what), otherwise we end up
  967. * with a leak if we have an invalid filehandle. This needs changing
  968. * if the code behind ZEND_VERIFY_RESOURCE changed. - cc */
  969. if (!what) {
  970. if (args) {
  971. efree(args);
  972. }
  973. RETURN_FALSE;
  974. }
  975. buf = php_stream_get_line((php_stream *) what, NULL, 0, &len);
  976. if (buf == NULL) {
  977. if (args) {
  978. efree(args);
  979. }
  980. RETURN_FALSE;
  981. }
  982. result = php_sscanf_internal(buf, format, argc, args, 0, &return_value TSRMLS_CC);
  983. if (args) {
  984. efree(args);
  985. }
  986. efree(buf);
  987. if (SCAN_ERROR_WRONG_PARAM_COUNT == result) {
  988. WRONG_PARAM_COUNT;
  989. }
  990. }
  991. /* }}} */
  992. /* {{{ proto int fwrite(resource fp, string str [, int length])
  993. Binary-safe file write */
  994. PHPAPI PHP_FUNCTION(fwrite)
  995. {
  996. zval *res;
  997. char *input;
  998. int inputlen;
  999. int ret;
  1000. int num_bytes;
  1001. long maxlen = 0;
  1002. php_stream *stream;
  1003. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs|l", &res, &input, &inputlen, &maxlen) == FAILURE) {
  1004. RETURN_FALSE;
  1005. }
  1006. if (ZEND_NUM_ARGS() == 2) {
  1007. num_bytes = inputlen;
  1008. } else {
  1009. num_bytes = MAX(0, MIN((int) maxlen, inputlen));
  1010. }
  1011. if (!num_bytes) {
  1012. RETURN_LONG(0);
  1013. }
  1014. PHP_STREAM_TO_ZVAL(stream, &res);
  1015. ret = php_stream_write(stream, input, num_bytes);
  1016. RETURN_LONG(ret);
  1017. }
  1018. /* }}} */
  1019. /* {{{ proto bool fflush(resource fp)
  1020. Flushes output */
  1021. PHPAPI PHP_FUNCTION(fflush)
  1022. {
  1023. zval *res;
  1024. int ret;
  1025. php_stream *stream;
  1026. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &res) == FAILURE) {
  1027. RETURN_FALSE;
  1028. }
  1029. PHP_STREAM_TO_ZVAL(stream, &res);
  1030. ret = php_stream_flush(stream);
  1031. if (ret) {
  1032. RETURN_FALSE;
  1033. }
  1034. RETURN_TRUE;
  1035. }
  1036. /* }}} */
  1037. /* {{{ proto bool rewind(resource fp)
  1038. Rewind the position of a file pointer */
  1039. PHPAPI PHP_FUNCTION(rewind)
  1040. {
  1041. zval *res;
  1042. php_stream *stream;
  1043. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &res) == FAILURE) {
  1044. RETURN_FALSE;
  1045. }
  1046. PHP_STREAM_TO_ZVAL(stream, &res);
  1047. if (-1 == php_stream_rewind(stream)) {
  1048. RETURN_FALSE;
  1049. }
  1050. RETURN_TRUE;
  1051. }
  1052. /* }}} */
  1053. /* {{{ proto int ftell(resource fp)
  1054. Get file pointer's read/write position */
  1055. PHPAPI PHP_FUNCTION(ftell)
  1056. {
  1057. zval *res;
  1058. long ret;
  1059. php_stream *stream;
  1060. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &res) == FAILURE) {
  1061. RETURN_FALSE;
  1062. }
  1063. PHP_STREAM_TO_ZVAL(stream, &res);
  1064. ret = php_stream_tell(stream);
  1065. if (ret == -1) {
  1066. RETURN_FALSE;
  1067. }
  1068. RETURN_LONG(ret);
  1069. }
  1070. /* }}} */
  1071. /* {{{ proto int fseek(resource fp, int offset [, int whence])
  1072. Seek on a file pointer */
  1073. PHPAPI PHP_FUNCTION(fseek)
  1074. {
  1075. zval *res;
  1076. long offset, whence = SEEK_SET;
  1077. php_stream *stream;
  1078. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl|l", &res, &offset, &whence) == FAILURE) {
  1079. RETURN_FALSE;
  1080. }
  1081. PHP_STREAM_TO_ZVAL(stream, &res);
  1082. RETURN_LONG(php_stream_seek(stream, offset, whence));
  1083. }
  1084. /* }}} */
  1085. /* {{{ php_mkdir
  1086. */
  1087. /* DEPRECATED APIs: Use php_stream_mkdir() instead */
  1088. PHPAPI int php_mkdir_ex(const char *dir, long mode, int options TSRMLS_DC)
  1089. {
  1090. int ret;
  1091. if (php_check_open_basedir(dir TSRMLS_CC)) {
  1092. return -1;
  1093. }
  1094. if ((ret = VCWD_MKDIR(dir, (mode_t)mode)) < 0 && (options & REPORT_ERRORS)) {
  1095. php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", strerror(errno));
  1096. }
  1097. return ret;
  1098. }
  1099. PHPAPI int php_mkdir(const char *dir, long mode TSRMLS_DC)
  1100. {
  1101. return php_mkdir_ex(dir, mode, REPORT_ERRORS TSRMLS_CC);
  1102. }
  1103. /* }}} */
  1104. /* {{{ proto bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
  1105. Create a directory */
  1106. PHP_FUNCTION(mkdir)
  1107. {
  1108. char *dir;
  1109. int dir_len;
  1110. zval *zcontext = NULL;
  1111. long mode = 0777;
  1112. zend_bool recursive = 0;
  1113. php_stream_context *context;
  1114. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|lbr", &dir, &dir_len, &mode, &recursive, &zcontext) == FAILURE) {
  1115. RETURN_FALSE;
  1116. }
  1117. context = php_stream_context_from_zval(zcontext, 0);
  1118. RETURN_BOOL(php_stream_mkdir(dir, mode, (recursive ? PHP_STREAM_MKDIR_RECURSIVE : 0) | REPORT_ERRORS, context));
  1119. }
  1120. /* }}} */
  1121. /* {{{ proto bool rmdir(string dirname[, resource context])
  1122. Remove a directory */
  1123. PHP_FUNCTION(rmdir)
  1124. {
  1125. char *dir;
  1126. int dir_len;
  1127. zval *zcontext = NULL;
  1128. php_stream_context *context;
  1129. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|r", &dir, &dir_len, &zcontext) == FAILURE) {
  1130. RETURN_FALSE;
  1131. }
  1132. context = php_stream_context_from_zval(zcontext, 0);
  1133. RETURN_BOOL(php_stream_rmdir(dir, REPORT_ERRORS, context));
  1134. }
  1135. /* }}} */
  1136. /* {{{ proto int readfile(string filename [, bool use_include_path[, resource context]])
  1137. Output a file or a URL */
  1138. PHP_FUNCTION(readfile)
  1139. {
  1140. char *filename;
  1141. int filename_len;
  1142. int size = 0;
  1143. zend_bool use_include_path = 0;
  1144. zval *zcontext = NULL;
  1145. php_stream *stream;
  1146. php_stream_context *context = NULL;
  1147. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|br!", &filename, &filename_len, &use_include_path, &zcontext) == FAILURE) {
  1148. RETURN_FALSE;
  1149. }
  1150. context = php_stream_context_from_zval(zcontext, 0);
  1151. stream = php_stream_open_wrapper_ex(filename, "rb", (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, NULL, context);
  1152. if (stream) {
  1153. size = php_stream_passthru(stream);
  1154. php_stream_close(stream);
  1155. RETURN_LONG(size);
  1156. }
  1157. RETURN_FALSE;
  1158. }
  1159. /* }}} */
  1160. /* {{{ proto int umask([int mask])
  1161. Return or change the umask */
  1162. PHP_FUNCTION(umask)
  1163. {
  1164. long mask = 0;
  1165. int oldumask;
  1166. oldumask = umask(077);
  1167. if (BG(umask) == -1) {
  1168. BG(umask) = oldumask;
  1169. }
  1170. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|l", &mask) == FAILURE) {
  1171. RETURN_FALSE;
  1172. }
  1173. if (ZEND_NUM_ARGS() == 0) {
  1174. umask(oldumask);
  1175. } else {
  1176. umask(mask);
  1177. }
  1178. RETURN_LONG(oldumask);
  1179. }
  1180. /* }}} */
  1181. /* {{{ proto int fpassthru(resource fp)
  1182. Output all remaining data from a file pointer */
  1183. PHPAPI PHP_FUNCTION(fpassthru)
  1184. {
  1185. zval *res;
  1186. int size;
  1187. php_stream *stream;
  1188. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &res) == FAILURE) {
  1189. RETURN_FALSE;
  1190. }
  1191. PHP_STREAM_TO_ZVAL(stream, &res);
  1192. size = php_stream_passthru(stream);
  1193. RETURN_LONG(size);
  1194. }
  1195. /* }}} */
  1196. /* {{{ proto bool rename(string old_name, string new_name[, resource context])
  1197. Rename a file */
  1198. PHP_FUNCTION(rename)
  1199. {
  1200. char *old_name, *new_name;
  1201. int old_name_len, new_name_len;
  1202. zval *zcontext = NULL;
  1203. php_stream_wrapper *wrapper;
  1204. php_stream_context *context;
  1205. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "pp|r", &old_name, &old_name_len, &new_name, &new_name_len, &zcontext) == FAILURE) {
  1206. RETURN_FALSE;
  1207. }
  1208. wrapper = php_stream_locate_url_wrapper(old_name, NULL, 0 TSRMLS_CC);
  1209. if (!wrapper || !wrapper->wops) {
  1210. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to locate stream wrapper");
  1211. RETURN_FALSE;
  1212. }
  1213. if (!wrapper->wops->rename) {
  1214. php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s wrapper does not support renaming", wrapper->wops->label ? wrapper->wops->label : "Source");
  1215. RETURN_FALSE;
  1216. }
  1217. if (wrapper != php_stream_locate_url_wrapper(new_name, NULL, 0 TSRMLS_CC)) {
  1218. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot rename a file across wrapper types");
  1219. RETURN_FALSE;
  1220. }
  1221. context = php_stream_context_from_zval(zcontext, 0);
  1222. RETURN_BOOL(wrapper->wops->rename(wrapper, old_name, new_name, 0, context TSRMLS_CC));
  1223. }
  1224. /* }}} */
  1225. /* {{{ proto bool unlink(string filename[, context context])
  1226. Delete a file */
  1227. PHP_FUNCTION(unlink)
  1228. {
  1229. char *filename;
  1230. int filename_len;
  1231. php_stream_wrapper *wrapper;
  1232. zval *zcontext = NULL;
  1233. php_stream_context *context = NULL;
  1234. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|r", &filename, &filename_len, &zcontext) == FAILURE) {
  1235. RETURN_FALSE;
  1236. }
  1237. context = php_stream_context_from_zval(zcontext, 0);
  1238. wrapper = php_stream_locate_url_wrapper(filename, NULL, 0 TSRMLS_CC);
  1239. if (!wrapper || !wrapper->wops) {
  1240. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to locate stream wrapper");
  1241. RETURN_FALSE;
  1242. }
  1243. if (!wrapper->wops->unlink) {
  1244. php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s does not allow unlinking", wrapper->wops->label ? wrapper->wops->label : "Wrapper");
  1245. RETURN_FALSE;
  1246. }
  1247. RETURN_BOOL(wrapper->wops->unlink(wrapper, filename, REPORT_ERRORS, context TSRMLS_CC));
  1248. }
  1249. /* }}} */
  1250. /* {{{ proto bool ftruncate(resource fp, int size)
  1251. Truncate file to 'size' length */
  1252. PHP_NAMED_FUNCTION(php_if_ftruncate)
  1253. {
  1254. zval *fp;
  1255. long size;
  1256. php_stream *stream;
  1257. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &fp, &size) == FAILURE) {
  1258. RETURN_FALSE;
  1259. }
  1260. if (size < 0) {
  1261. /* php_error_docref(NULL TSRMLS_CC, E_WARNING, "Negative size is not supported"); */
  1262. RETURN_FALSE;
  1263. }
  1264. PHP_STREAM_TO_ZVAL(stream, &fp);
  1265. if (!php_stream_truncate_supported(stream)) {
  1266. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't truncate this stream!");
  1267. RETURN_FALSE;
  1268. }
  1269. RETURN_BOOL(0 == php_stream_truncate_set_size(stream, size));
  1270. }
  1271. /* }}} */
  1272. /* {{{ proto array fstat(resource fp)
  1273. Stat() on a filehandle */
  1274. PHP_NAMED_FUNCTION(php_if_fstat)
  1275. {
  1276. zval *fp;
  1277. zval *stat_dev, *stat_ino, *stat_mode, *stat_nlink, *stat_uid, *stat_gid, *stat_rdev,
  1278. *stat_size, *stat_atime, *stat_mtime, *stat_ctime, *stat_blksize, *stat_blocks;
  1279. php_stream *stream;
  1280. php_stream_statbuf stat_ssb;
  1281. char *stat_sb_names[13] = {
  1282. "dev", "ino", "mode", "nlink", "uid", "gid", "rdev",
  1283. "size", "atime", "mtime", "ctime", "blksize", "blocks"
  1284. };
  1285. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &fp) == FAILURE) {
  1286. RETURN_FALSE;
  1287. }
  1288. PHP_STREAM_TO_ZVAL(stream, &fp);
  1289. if (php_stream_stat(stream, &stat_ssb)) {
  1290. RETURN_FALSE;
  1291. }
  1292. array_init(return_value);
  1293. MAKE_LONG_ZVAL_INCREF(stat_dev, stat_ssb.sb.st_dev);
  1294. MAKE_LONG_ZVAL_INCREF(stat_ino, stat_ssb.sb.st_ino);
  1295. MAKE_LONG_ZVAL_INCREF(stat_mode, stat_ssb.sb.st_mode);
  1296. MAKE_LONG_ZVAL_INCREF(stat_nlink, stat_ssb.sb.st_nlink);
  1297. MAKE_LONG_ZVAL_INCREF(stat_uid, stat_ssb.sb.st_uid);
  1298. MAKE_LONG_ZVAL_INCREF(stat_gid, stat_ssb.sb.st_gid);
  1299. #ifdef HAVE_ST_RDEV
  1300. MAKE_LONG_ZVAL_INCREF(stat_rdev, stat_ssb.sb.st_rdev);
  1301. #else
  1302. MAKE_LONG_ZVAL_INCREF(stat_rdev, -1);
  1303. #endif
  1304. MAKE_LONG_ZVAL_INCREF(stat_size, stat_ssb.sb.st_size);
  1305. MAKE_LONG_ZVAL_INCREF(stat_atime, stat_ssb.sb.st_atime);
  1306. MAKE_LONG_ZVAL_INCREF(stat_mtime, stat_ssb.sb.st_mtime);
  1307. MAKE_LONG_ZVAL_INCREF(stat_ctime, stat_ssb.sb.st_ctime);
  1308. #ifdef HAVE_ST_BLKSIZE
  1309. MAKE_LONG_ZVAL_INCREF(stat_blksize, stat_ssb.sb.st_blksize);
  1310. #else
  1311. MAKE_LONG_ZVAL_INCREF(stat_blksize,-1);
  1312. #endif
  1313. #ifdef HAVE_ST_BLOCKS
  1314. MAKE_LONG_ZVAL_INCREF(stat_blocks, stat_ssb.sb.st_blocks);
  1315. #else
  1316. MAKE_LONG_ZVAL_INCREF(stat_blocks,-1);
  1317. #endif
  1318. /* Store numeric indexes in propper order */
  1319. zend_hash_next_index_insert(HASH_OF(return_value), (void *)&stat_dev, sizeof(zval *), NULL);
  1320. zend_hash_next_index_insert(HASH_OF(return_value), (void *)&stat_ino, sizeof(zval *), NULL);
  1321. zend_hash_next_index_insert(HASH_OF(return_value), (void *)&stat_mode, sizeof(zval *), NULL);
  1322. zend_hash_next_index_insert(HASH_OF(return_value), (void *)&stat_nlink, sizeof(zval *), NULL);
  1323. zend_hash_next_index_insert(HASH_OF(return_value), (void *)&stat_uid, sizeof(zval *), NULL);
  1324. zend_hash_next_index_insert(HASH_OF(return_value), (void *)&stat_gid, sizeof(zval *), NULL);
  1325. zend_hash_next_index_insert(HASH_OF(return_value), (void *)&stat_rdev, sizeof(zval *), NULL);
  1326. zend_hash_next_index_insert(HASH_OF(return_value), (void *)&stat_size, sizeof(zval *), NULL);
  1327. zend_hash_next_index_insert(HASH_OF(return_value), (void *)&stat_atime, sizeof(zval *), NULL);
  1328. zend_hash_next_index_insert(HASH_OF(return_value), (void *)&stat_mtime, sizeof(zval *), NULL);
  1329. zend_hash_next_index_insert(HASH_OF(return_value), (void *)&stat_ctime, sizeof(zval *), NULL);
  1330. zend_hash_next_index_insert(HASH_OF(return_value), (void *)&stat_blksize, sizeof(zval *), NULL);
  1331. zend_hash_next_index_insert(HASH_OF(return_value), (void *)&stat_blocks, sizeof(zval *), NULL);
  1332. /* Store string indexes referencing the same zval*/
  1333. zend_hash_update(HASH_OF(return_value), stat_sb_names[0], strlen(stat_sb_names[0])+1, (void *)&stat_dev, sizeof(zval *), NULL);
  1334. zend_hash_update(HASH_OF(return_value), stat_sb_names[1], strlen(stat_sb_names[1])+1, (void *)&stat_ino, sizeof(zval *), NULL);
  1335. zend_hash_update(HASH_OF(return_value), stat_sb_names[2], strlen(stat_sb_names[2])+1, (void *)&stat_mode, sizeof(zval *), NULL);
  1336. zend_hash_update(HASH_OF(return_value), stat_sb_names[3], strlen(stat_sb_names[3])+1, (void *)&stat_nlink, sizeof(zval *), NULL);
  1337. zend_hash_update(HASH_OF(return_value), stat_sb_names[4], strlen(stat_sb_names[4])+1, (void *)&stat_uid, sizeof(zval *), NULL);
  1338. zend_hash_update(HASH_OF(return_value), stat_sb_names[5], strlen(stat_sb_names[5])+1, (void *)&stat_gid, sizeof(zval *), NULL);
  1339. zend_hash_update(HASH_OF(return_value), stat_sb_names[6], strlen(stat_sb_names[6])+1, (void *)&stat_rdev, sizeof(zval *), NULL);
  1340. zend_hash_update(HASH_OF(return_value), stat_sb_names[7], strlen(stat_sb_names[7])+1, (void *)&stat_size, sizeof(zval *), NULL);
  1341. zend_hash_update(HASH_OF(return_value), stat_sb_names[8], strlen(stat_sb_names[8])+1, (void *)&stat_atime, sizeof(zval *), NULL);
  1342. zend_hash_update(HASH_OF(return_value), stat_sb_names[9], strlen(stat_sb_names[9])+1, (void *)&stat_mtime, sizeof(zval *), NULL);
  1343. zend_hash_update(HASH_OF(return_value), stat_sb_names[10], strlen(stat_sb_names[10])+1, (void *)&stat_ctime, sizeof(zval *), NULL);
  1344. zend_hash_update(HASH_OF(return_value), stat_sb_names[11], strlen(stat_sb_names[11])+1, (void *)&stat_blksize, sizeof(zval *), NULL);
  1345. zend_hash_update(HASH_OF(return_value), stat_sb_names[12], strlen(stat_sb_names[12])+1, (void *)&stat_blocks, sizeof(zval *), NULL);
  1346. }
  1347. /* }}} */
  1348. /* {{{ proto bool copy(string source_file, string destination_file [, resource context])
  1349. Copy a file */
  1350. PHP_FUNCTION(copy)
  1351. {
  1352. char *source, *target;
  1353. int source_len, target_len;
  1354. zval *zcontext = NULL;
  1355. php_stream_context *context;
  1356. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "pp|r", &source, &source_len, &target, &target_len, &zcontext) == FAILURE) {
  1357. return;
  1358. }
  1359. if (php_check_open_basedir(source TSRMLS_CC)) {
  1360. RETURN_FALSE;
  1361. }
  1362. context = php_stream_context_from_zval(zcontext, 0);
  1363. if (php_copy_file_ctx(source, target, 0, context TSRMLS_CC) == SUCCESS) {
  1364. RETURN_TRUE;
  1365. } else {
  1366. RETURN_FALSE;
  1367. }
  1368. }
  1369. /* }}} */
  1370. /* {{{ php_copy_file
  1371. */
  1372. PHPAPI int php_copy_file(const char *src, const char *dest TSRMLS_DC)
  1373. {
  1374. return php_copy_file_ctx(src, dest, 0, NULL TSRMLS_CC);
  1375. }
  1376. /* }}} */
  1377. /* {{{ php_copy_file_ex
  1378. */
  1379. PHPAPI int php_copy_file_ex(const char *src, const char *dest, int src_flg TSRMLS_DC)
  1380. {
  1381. return php_copy_file_ctx(src, dest, 0, NULL TSRMLS_CC);
  1382. }
  1383. /* }}} */
  1384. /* {{{ php_copy_file_ctx
  1385. */
  1386. PHPAPI int php_copy_file_ctx(const char *src, const char *dest, int src_flg, php_stream_context *ctx TSRMLS_DC)
  1387. {
  1388. php_stream *srcstream = NULL, *deststream = NULL;
  1389. int ret = FAILURE;
  1390. php_stream_statbuf src_s, dest_s;
  1391. switch (php_stream_stat_path_ex(src, 0, &src_s, ctx)) {
  1392. case -1:
  1393. /* non-statable stream */
  1394. goto safe_to_copy;
  1395. break;
  1396. case 0:
  1397. break;
  1398. default: /* failed to stat file, does not exist? */
  1399. return ret;
  1400. }
  1401. if (S_ISDIR(src_s.sb.st_mode)) {
  1402. php_error_docref(NULL TSRMLS_CC, E_WARNING, "The first argument to copy() function cannot be a directory");
  1403. return FAILURE;
  1404. }
  1405. switch (php_stream_stat_path_ex(dest, PHP_STREAM_URL_STAT_QUIET | PHP_STREAM_URL_STAT_NOCACHE, &dest_s, ctx)) {
  1406. case -1:
  1407. /* non-statable stream */
  1408. goto safe_to_copy;
  1409. break;
  1410. case 0:
  1411. break;
  1412. default: /* failed to stat file, does not exist? */
  1413. return ret;
  1414. }
  1415. if (S_ISDIR(dest_s.sb.st_mode)) {
  1416. php_error_docref(NULL TSRMLS_CC, E_WARNING, "The second argument to copy() function cannot be a directory");
  1417. return FAILURE;
  1418. }
  1419. if (!src_s.sb.st_ino || !dest_s.sb.st_ino) {
  1420. goto no_stat;
  1421. }
  1422. if (src_s.sb.st_ino == dest_s.sb.st_ino && src_s.sb.st_dev == dest_s.sb.st_dev) {
  1423. return ret;
  1424. } else {
  1425. goto safe_to_copy;
  1426. }
  1427. no_stat:
  1428. {
  1429. char *sp, *dp;
  1430. int res;
  1431. if ((sp = expand_filepath(src, NULL TSRMLS_CC)) == NULL) {
  1432. return ret;
  1433. }
  1434. if ((dp = expand_filepath(dest, NULL TSRMLS_CC)) == NULL) {
  1435. efree(sp);
  1436. goto safe_to_copy;
  1437. }
  1438. res =
  1439. #ifndef PHP_WIN32
  1440. !strcmp(sp, dp);
  1441. #else
  1442. !strcasecmp(sp, dp);
  1443. #endif
  1444. efree(sp);
  1445. efree(dp);
  1446. if (res) {
  1447. return ret;
  1448. }
  1449. }
  1450. safe_to_copy:
  1451. srcstream = php_stream_open_wrapper_ex(src, "rb", src_flg | REPORT_ERRORS, NULL, ctx);
  1452. if (!srcstream) {
  1453. return ret;
  1454. }
  1455. deststream = php_stream_open_wrapper_ex(dest, "wb", REPORT_ERRORS, NULL, ctx);
  1456. if (srcstream && deststream) {
  1457. ret = php_stream_copy_to_stream_ex(srcstream, deststream, PHP_STREAM_COPY_ALL, NULL);
  1458. }
  1459. if (srcstream) {
  1460. php_stream_close(srcstream);
  1461. }
  1462. if (deststream) {
  1463. php_stream_close(deststream);
  1464. }
  1465. return ret;
  1466. }
  1467. /* }}} */
  1468. /* {{{ proto string fread(resource fp, int length)
  1469. Binary-safe file read */
  1470. PHPAPI PHP_FUNCTION(fread)
  1471. {
  1472. zval *res;
  1473. long len;
  1474. php_stream *stream;
  1475. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &res, &len) == FAILURE) {
  1476. RETURN_FALSE;
  1477. }
  1478. PHP_STREAM_TO_ZVAL(stream, &res);
  1479. if (len <= 0) {
  1480. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter must be greater than 0");
  1481. RETURN_FALSE;
  1482. }
  1483. if (len > INT_MAX) {
  1484. /* string length is int in 5.x so we can not read more than int */
  1485. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter must be no more than %d", INT_MAX);
  1486. RETURN_FALSE;
  1487. }
  1488. Z_STRVAL_P(return_value) = emalloc(len + 1);
  1489. Z_STRLEN_P(return_value) = php_stream_read(stream, Z_STRVAL_P(return_value), len);
  1490. /* needed because recv/read/gzread doesnt put a null at the end*/
  1491. Z_STRVAL_P(return_value)[Z_STRLEN_P(return_value)] = 0;
  1492. Z_TYPE_P(return_value) = IS_STRING;
  1493. }
  1494. /* }}} */
  1495. static const char *php_fgetcsv_lookup_trailing_spaces(const char *ptr, size_t len, const char delimiter TSRMLS_DC) /* {{{ */
  1496. {
  1497. int inc_len;
  1498. unsigned char last_chars[2] = { 0, 0 };
  1499. while (len > 0) {
  1500. inc_len = (*ptr == '\0' ? 1: php_mblen(ptr, len));
  1501. switch (inc_len) {
  1502. case -2:
  1503. case -1:
  1504. inc_len = 1;
  1505. php_ignore_value(php_mblen(NULL, 0));
  1506. break;
  1507. case 0:
  1508. goto quit_loop;
  1509. case 1:
  1510. default:
  1511. last_chars[0] = last_chars[1];
  1512. last_chars[1] = *ptr;
  1513. break;
  1514. }
  1515. ptr += inc_len;
  1516. len -= inc_len;
  1517. }
  1518. quit_loop:
  1519. switch (last_chars[1]) {
  1520. case '\n':
  1521. if (last_chars[0] == '\r') {
  1522. return ptr - 2;
  1523. }
  1524. /* break is omitted intentionally */
  1525. case '\r':
  1526. return ptr - 1;
  1527. }
  1528. return ptr;
  1529. }
  1530. /* }}} */
  1531. #define FPUTCSV_FLD_CHK(c) memchr(Z_STRVAL(field), c, Z_STRLEN(field))
  1532. /* {{{ proto int fputcsv(resource fp, array fields [, string delimiter [, string enclosure [, string escape_char]]])
  1533. Format line as CSV and write to file pointer */
  1534. PHP_FUNCTION(fputcsv)
  1535. {
  1536. char delimiter = ','; /* allow this to be set as parameter */
  1537. char enclosure = '"'; /* allow this to be set as parameter */
  1538. char escape_char = '\\'; /* allow this to be set as parameter */
  1539. php_stream *stream;
  1540. zval *fp = NULL, *fields = NULL;
  1541. int ret;
  1542. char *delimiter_str = NULL, *enclosure_str = NULL, *escape_str = NULL;
  1543. int delimiter_str_len = 0, enclosure_str_len = 0, escape_str_len = 0;
  1544. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ra|sss",
  1545. &fp, &fields, &delimiter_str, &delimiter_str_len,
  1546. &enclosure_str, &enclosure_str_len,
  1547. &escape_str, &escape_str_len) == FAILURE) {
  1548. return;
  1549. }
  1550. if (delimiter_str != NULL) {
  1551. /* Make sure that there is at least one character in string */
  1552. if (delimiter_str_len < 1) {
  1553. php_error_docref(NULL TSRMLS_CC, E_WARNING, "delimiter must be a character");
  1554. RETURN_FALSE;
  1555. } else if (delimiter_str_len > 1) {
  1556. php_error_docref(NULL TSRMLS_CC, E_NOTICE, "delimiter must be a single character");
  1557. }
  1558. /* use first character from string */
  1559. delimiter = *delimiter_str;
  1560. }
  1561. if (enclosure_str != NULL) {
  1562. if (enclosure_str_len < 1) {
  1563. php_error_docref(NULL TSRMLS_CC, E_WARNING, "enclosure must be a character");
  1564. RETURN_FALSE;
  1565. } else if (enclosure_str_len > 1) {
  1566. php_error_docref(NULL TSRMLS_CC, E_NOTICE, "enclosure must be a single character");
  1567. }
  1568. /* use first character from string */
  1569. enclosure = *enclosure_str;
  1570. }
  1571. if (escape_str != NULL) {
  1572. if (escape_str_len < 1) {
  1573. php_error_docref(NULL TSRMLS_CC, E_WARNING, "escape must be a character");
  1574. RETURN_FALSE;
  1575. } else if (escape_str_len > 1) {
  1576. php_error_docref(NULL TSRMLS_CC, E_NOTICE, "escape must be a single character");
  1577. }
  1578. /* use first character from string */
  1579. escape_char = *escape_str;
  1580. }
  1581. PHP_STREAM_TO_ZVAL(stream, &fp);
  1582. ret = php_fputcsv(stream, fields, delimiter, enclosure, escape_char TSRMLS_CC);
  1583. RETURN_LONG(ret);
  1584. }
  1585. /* }}} */
  1586. /* {{{ PHPAPI int php_fputcsv(php_stream *stream, zval *fields, char delimiter, char enclosure, char escape_char TSRMLS_DC) */
  1587. PHPAPI int php_fputcsv(php_stream *stream, zval *fields, char delimiter, char enclosure, char escape_char TSRMLS_DC)
  1588. {
  1589. int count, i = 0, ret;
  1590. zval **field_tmp = NULL, field;
  1591. smart_str csvline = {0};
  1592. HashPosition pos;
  1593. count = zend_hash_num_elements(Z_ARRVAL_P(fields));
  1594. zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(fields), &pos);
  1595. while (zend_hash_get_current_data_ex(Z_ARRVAL_P(fields), (void **) &field_tmp, &pos) == SUCCESS) {
  1596. field = **field_tmp;
  1597. if (Z_TYPE_PP(field_tmp) != IS_STRING) {
  1598. zval_copy_ctor(&field);
  1599. convert_to_string(&field);
  1600. }
  1601. /* enclose a field that contains a delimiter, an enclosure character, or a newline */
  1602. if (FPUTCSV_FLD_CHK(delimiter) ||
  1603. FPUTCSV_FLD_CHK(enclosure) ||
  1604. FPUTCSV_FLD_CHK(escape_char) ||
  1605. FPUTCSV_FLD_CHK('\n') ||
  1606. FPUTCSV_FLD_CHK('\r') ||
  1607. FPUTCSV_FLD_CHK('\t') ||
  1608. FPUTCSV_FLD_CHK(' ')
  1609. ) {
  1610. char *ch = Z_STRVAL(field);
  1611. char *end = ch + Z_STRLEN(field);
  1612. int escaped = 0;
  1613. smart_str_appendc(&csvline, enclosure);
  1614. while (ch < end) {
  1615. if (*ch == escape_char) {
  1616. escaped = 1;
  1617. } else if (!escaped && *ch == enclosure) {
  1618. smart_str_appendc(&csvline, enclosure);
  1619. } else {
  1620. escaped = 0;
  1621. }
  1622. smart_str_appendc(&csvline, *ch);
  1623. ch++;
  1624. }
  1625. smart_str_appendc(&csvline, enclosure);
  1626. } else {
  1627. smart_str_appendl(&csvline, Z_STRVAL(field), Z_STRLEN(field));
  1628. }
  1629. if (++i != count) {
  1630. smart_str_appendl(&csvline, &delimiter, 1);
  1631. }
  1632. zend_hash_move_forward_ex(Z_ARRVAL_P(fields), &pos);
  1633. if (Z_TYPE_PP(field_tmp) != IS_STRING) {
  1634. zval_dtor(&field);
  1635. }
  1636. }
  1637. smart_str_appendc(&csvline, '\n');
  1638. smart_str_0(&csvline);
  1639. ret = php_stream_write(stream, csvline.c, csvline.len);
  1640. smart_str_free(&csvline);
  1641. return ret;
  1642. }
  1643. /* }}} */
  1644. /* {{{ proto array fgetcsv(resource fp [,int length [, string delimiter [, string enclosure [, string escape]]]])
  1645. Get line from file pointer and parse for CSV fields */
  1646. PHP_FUNCTION(fgetcsv)
  1647. {
  1648. char delimiter = ','; /* allow this to be set as parameter */
  1649. char enclosure = '"'; /* allow this to be set as parameter */
  1650. char escape = '\\';
  1651. /* first section exactly as php_fgetss */
  1652. long len = 0;
  1653. size_t buf_len;
  1654. char *buf;
  1655. php_stream *stream;
  1656. {
  1657. zval *fd, **len_zv = NULL;
  1658. char *delimiter_str = NULL;
  1659. int delimiter_str_len = 0;
  1660. char *enclosure_str = NULL;
  1661. int enclosure_str_len = 0;
  1662. char *escape_str = NULL;
  1663. int escape_str_len = 0;
  1664. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|Zsss",
  1665. &fd, &len_zv, &delimiter_str, &delimiter_str_len,
  1666. &enclosure_str, &enclosure_str_len,
  1667. &escape_str, &escape_str_len) == FAILURE
  1668. ) {
  1669. return;
  1670. }
  1671. if (delimiter_str != NULL) {
  1672. /* Make sure that there is at least one character in string */
  1673. if (delimiter_str_len < 1) {
  1674. php_error_docref(NULL TSRMLS_CC, E_WARNING, "delimiter must be a character");
  1675. RETURN_FALSE;
  1676. } else if (delimiter_str_len > 1) {
  1677. php_error_docref(NULL TSRMLS_CC, E_NOTICE, "delimiter must be a single character");
  1678. }
  1679. /* use first character from string */
  1680. delimiter = delimiter_str[0];
  1681. }
  1682. if (enclosure_str != NULL) {
  1683. if (enclosure_str_len < 1) {
  1684. php_error_docref(NULL TSRMLS_CC, E_WARNING, "enclosure must be a character");
  1685. RETURN_FALSE;
  1686. } else if (enclosure_str_len > 1) {
  1687. php_error_docref(NULL TSRMLS_CC, E_NOTICE, "enclosure must be a single character");
  1688. }
  1689. /* use first character from string */
  1690. enclosure = enclosure_str[0];
  1691. }
  1692. if (escape_str != NULL) {
  1693. if (escape_str_len < 1) {
  1694. php_error_docref(NULL TSRMLS_CC, E_WARNING, "escape must be character");
  1695. RETURN_FALSE;
  1696. } else if (escape_str_len > 1) {
  1697. php_error_docref(NULL TSRMLS_CC, E_NOTICE, "escape must be a single character");
  1698. }
  1699. escape = escape_str[0];
  1700. }
  1701. if (len_zv != NULL && Z_TYPE_PP(len_zv) != IS_NULL) {
  1702. convert_to_long_ex(len_zv);
  1703. len = Z_LVAL_PP(len_zv);
  1704. if (len < 0) {
  1705. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter may not be negative");
  1706. RETURN_FALSE;
  1707. } else if (len == 0) {
  1708. len = -1;
  1709. }
  1710. } else {
  1711. len = -1;
  1712. }
  1713. PHP_STREAM_TO_ZVAL(stream, &fd);
  1714. }
  1715. if (len < 0) {
  1716. if ((buf = php_stream_get_line(stream, NULL, 0, &buf_len)) == NULL) {
  1717. RETURN_FALSE;
  1718. }
  1719. } else {
  1720. buf = emalloc(len + 1);
  1721. if (php_stream_get_line(stream, buf, len + 1, &buf_len) == NULL) {
  1722. efree(buf);
  1723. RETURN_FALSE;
  1724. }
  1725. }
  1726. php_fgetcsv(stream, delimiter, enclosure, escape, buf_len, buf, return_value TSRMLS_CC);
  1727. }
  1728. /* }}} */
  1729. PHPAPI void php_fgetcsv(php_stream *stream, char delimiter, char enclosure, char escape_char, size_t buf_len, char *buf, zval *return_value TSRMLS_DC) /* {{{ */
  1730. {
  1731. char *temp, *tptr, *bptr, *line_end, *limit;
  1732. size_t temp_len, line_end_len;
  1733. int inc_len;
  1734. zend_bool first_field = 1;
  1735. /* initialize internal state */
  1736. php_ignore_value(php_mblen(NULL, 0));
  1737. /* Now into new section that parses buf for delimiter/enclosure fields */
  1738. /* Strip trailing space from buf, saving end of line in case required for enclosure field */
  1739. bptr = buf;
  1740. tptr = (char *)php_fgetcsv_lookup_trailing_spaces(buf, buf_len, delimiter TSRMLS_CC);
  1741. line_end_len = buf_len - (size_t)(tptr - buf);
  1742. line_end = limit = tptr;
  1743. /* reserve workspace for building each individual field */
  1744. temp_len = buf_len;
  1745. temp = emalloc(temp_len + line_end_len + 1);
  1746. /* Initialize return array */
  1747. array_init(return_value);
  1748. /* Main loop to read CSV fields */
  1749. /* NB this routine will return a single null entry for a blank line */
  1750. do {
  1751. char *comp_end, *hunk_begin;
  1752. tptr = temp;
  1753. inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0);
  1754. if (inc_len == 1) {
  1755. char *tmp = bptr;
  1756. while ((*tmp != delimiter) && isspace((int)*(unsigned char *)tmp)) {
  1757. tmp++;
  1758. }
  1759. if (*tmp == enclosure) {
  1760. bptr = tmp;
  1761. }
  1762. }
  1763. if (first_field && bptr == line_end) {
  1764. add_next_index_null(return_value);
  1765. break;
  1766. }
  1767. first_field = 0;
  1768. /* 2. Read field, leaving bptr pointing at start of next field */
  1769. if (inc_len != 0 && *bptr == enclosure) {
  1770. int state = 0;
  1771. bptr++; /* move on to first character in field */
  1772. hunk_begin = bptr;
  1773. /* 2A. handle enclosure delimited field */
  1774. for (;;) {
  1775. switch (inc_len) {
  1776. case 0:
  1777. switch (state) {
  1778. case 2:
  1779. memcpy(tptr, hunk_begin, bptr - hunk_begin - 1);
  1780. tptr += (bptr - hunk_begin - 1);
  1781. hunk_begin = bptr;
  1782. goto quit_loop_2;
  1783. case 1:
  1784. memcpy(tptr, hunk_begin, bptr - hunk_begin);
  1785. tptr += (bptr - hunk_begin);
  1786. hunk_begin = bptr;
  1787. /* break is omitted intentionally */
  1788. case 0: {
  1789. char *new_buf;
  1790. size_t new_len;
  1791. char *new_temp;
  1792. if (hunk_begin != line_end) {
  1793. memcpy(tptr, hunk_begin, bptr - hunk_begin);
  1794. tptr += (bptr - hunk_begin);
  1795. hunk_begin = bptr;
  1796. }
  1797. /* add the embedded line end to the field */
  1798. memcpy(tptr, line_end, line_end_len);
  1799. tptr += line_end_len;
  1800. if (stream == NULL) {
  1801. goto quit_loop_2;
  1802. } else if ((new_buf = php_stream_get_line(stream, NULL, 0, &new_len)) == NULL) {
  1803. /* we've got an unterminated enclosure,
  1804. * assign all the data from the start of
  1805. * the enclosure to end of data to the
  1806. * last element */
  1807. if ((size_t)temp_len > (size_t)(limit - buf)) {
  1808. goto quit_loop_2;
  1809. }
  1810. zval_dtor(return_value);
  1811. RETVAL_FALSE;
  1812. goto out;
  1813. }
  1814. temp_len += new_len;
  1815. new_temp = erealloc(temp, temp_len);
  1816. tptr = new_temp + (size_t)(tptr - temp);
  1817. temp = new_temp;
  1818. efree(buf);
  1819. buf_len = new_len;
  1820. bptr = buf = new_buf;
  1821. hunk_begin = buf;
  1822. line_end = limit = (char *)php_fgetcsv_lookup_trailing_spaces(buf, buf_len, delimiter TSRMLS_CC);
  1823. line_end_len = buf_len - (size_t)(limit - buf);
  1824. state = 0;
  1825. } break;
  1826. }
  1827. break;
  1828. case -2:
  1829. case -1:
  1830. php_ignore_value(php_mblen(NULL, 0));
  1831. /* break is omitted intentionally */
  1832. case 1:
  1833. /* we need to determine if the enclosure is
  1834. * 'real' or is it escaped */
  1835. switch (state) {
  1836. case 1: /* escaped */
  1837. bptr++;
  1838. state = 0;
  1839. break;
  1840. case 2: /* embedded enclosure ? let's check it */
  1841. if (*bptr != enclosure) {
  1842. /* real enclosure */
  1843. memcpy(tptr, hunk_begin, bptr - hunk_begin - 1);
  1844. tptr += (bptr - hunk_begin - 1);
  1845. hunk_begin = bptr;
  1846. goto quit_loop_2;
  1847. }
  1848. memcpy(tptr, hunk_begin, bptr - hunk_begin);
  1849. tptr += (bptr - hunk_begin);
  1850. bptr++;
  1851. hunk_begin = bptr;
  1852. state = 0;
  1853. break;
  1854. default:
  1855. if (*bptr == enclosure) {
  1856. state = 2;
  1857. } else if (*bptr == escape_char) {
  1858. state = 1;
  1859. }
  1860. bptr++;
  1861. break;
  1862. }
  1863. break;
  1864. default:
  1865. switch (state) {
  1866. case 2:
  1867. /* real enclosure */
  1868. memcpy(tptr, hunk_begin, bptr - hunk_begin - 1);
  1869. tptr += (bptr - hunk_begin - 1);
  1870. hunk_begin = bptr;
  1871. goto quit_loop_2;
  1872. case 1:
  1873. bptr += inc_len;
  1874. memcpy(tptr, hunk_begin, bptr - hunk_begin);
  1875. tptr += (bptr - hunk_begin);
  1876. hunk_begin = bptr;
  1877. state = 0;
  1878. break;
  1879. default:
  1880. bptr += inc_len;
  1881. break;
  1882. }
  1883. break;
  1884. }
  1885. inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0);
  1886. }
  1887. quit_loop_2:
  1888. /* look up for a delimiter */
  1889. for (;;) {
  1890. switch (inc_len) {
  1891. case 0:
  1892. goto quit_loop_3;
  1893. case -2:
  1894. case -1:
  1895. inc_len = 1;
  1896. php_ignore_value(php_mblen(NULL, 0));
  1897. /* break is omitted intentionally */
  1898. case 1:
  1899. if (*bptr == delimiter) {
  1900. goto quit_loop_3;
  1901. }
  1902. break;
  1903. default:
  1904. break;
  1905. }
  1906. bptr += inc_len;
  1907. inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0);
  1908. }
  1909. quit_loop_3:
  1910. memcpy(tptr, hunk_begin, bptr - hunk_begin);
  1911. tptr += (bptr - hunk_begin);
  1912. bptr += inc_len;
  1913. comp_end = tptr;
  1914. } else {
  1915. /* 2B. Handle non-enclosure field */
  1916. hunk_begin = bptr;
  1917. for (;;) {
  1918. switch (inc_len) {
  1919. case 0:
  1920. goto quit_loop_4;
  1921. case -2:
  1922. case -1:
  1923. inc_len = 1;
  1924. php_ignore_value(php_mblen(NULL, 0));
  1925. /* break is omitted intentionally */
  1926. case 1:
  1927. if (*bptr == delimiter) {
  1928. goto quit_loop_4;
  1929. }
  1930. break;
  1931. default:
  1932. break;
  1933. }
  1934. bptr += inc_len;
  1935. inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0);
  1936. }
  1937. quit_loop_4:
  1938. memcpy(tptr, hunk_begin, bptr - hunk_begin);
  1939. tptr += (bptr - hunk_begin);
  1940. comp_end = (char *)php_fgetcsv_lookup_trailing_spaces(temp, tptr - temp, delimiter TSRMLS_CC);
  1941. if (*bptr == delimiter) {
  1942. bptr++;
  1943. }
  1944. }
  1945. /* 3. Now pass our field back to php */
  1946. *comp_end = '\0';
  1947. if (UNEXPECTED((comp_end - temp) > INT_MAX)) {
  1948. zend_error_noreturn(E_WARNING, "String overflow, max size is %d", INT_MAX);
  1949. break;
  1950. }
  1951. add_next_index_stringl(return_value, temp, comp_end - temp, 1);
  1952. } while (inc_len > 0);
  1953. out:
  1954. efree(temp);
  1955. if (stream) {
  1956. efree(buf);
  1957. }
  1958. }
  1959. /* }}} */
  1960. #if (!defined(__BEOS__) && !defined(NETWARE) && HAVE_REALPATH) || defined(ZTS)
  1961. /* {{{ proto string realpath(string path)
  1962. Return the resolved path */
  1963. PHP_FUNCTION(realpath)
  1964. {
  1965. char *filename;
  1966. int filename_len;
  1967. char resolved_path_buff[MAXPATHLEN];
  1968. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p", &filename, &filename_len) == FAILURE) {
  1969. return;
  1970. }
  1971. if (VCWD_REALPATH(filename, resolved_path_buff)) {
  1972. if (php_check_open_basedir(resolved_path_buff TSRMLS_CC)) {
  1973. RETURN_FALSE;
  1974. }
  1975. #ifdef ZTS
  1976. if (VCWD_ACCESS(resolved_path_buff, F_OK)) {
  1977. RETURN_FALSE;
  1978. }
  1979. #endif
  1980. RETURN_STRING(resolved_path_buff, 1);
  1981. } else {
  1982. RETURN_FALSE;
  1983. }
  1984. }
  1985. /* }}} */
  1986. #endif
  1987. /* See http://www.w3.org/TR/html4/intro/sgmltut.html#h-3.2.2 */
  1988. #define PHP_META_HTML401_CHARS "-_.:"
  1989. /* {{{ php_next_meta_token
  1990. Tokenizes an HTML file for get_meta_tags */
  1991. php_meta_tags_token php_next_meta_token(php_meta_tags_data *md TSRMLS_DC)
  1992. {
  1993. int ch = 0, compliment;
  1994. char buff[META_DEF_BUFSIZE + 1];
  1995. memset((void *)buff, 0, META_DEF_BUFSIZE + 1);
  1996. while (md->ulc || (!php_stream_eof(md->stream) && (ch = php_stream_getc(md->stream)))) {
  1997. if (php_stream_eof(md->stream)) {
  1998. break;
  1999. }
  2000. if (md->ulc) {
  2001. ch = md->lc;
  2002. md->ulc = 0;
  2003. }
  2004. switch (ch) {
  2005. case '<':
  2006. return TOK_OPENTAG;
  2007. break;
  2008. case '>':
  2009. return TOK_CLOSETAG;
  2010. break;
  2011. case '=':
  2012. return TOK_EQUAL;
  2013. break;
  2014. case '/':
  2015. return TOK_SLASH;
  2016. break;
  2017. case '\'':
  2018. case '"':
  2019. compliment = ch;
  2020. md->token_len = 0;
  2021. while (!php_stream_eof(md->stream) && (ch = php_stream_getc(md->stream)) && ch != compliment && ch != '<' && ch != '>') {
  2022. buff[(md->token_len)++] = ch;
  2023. if (md->token_len == META_DEF_BUFSIZE) {
  2024. break;
  2025. }
  2026. }
  2027. if (ch == '<' || ch == '>') {
  2028. /* Was just an apostrohpe */
  2029. md->ulc = 1;
  2030. md->lc = ch;
  2031. }
  2032. /* We don't need to alloc unless we are in a meta tag */
  2033. if (md->in_meta) {
  2034. md->token_data = (char *) emalloc(md->token_len + 1);
  2035. memcpy(md->token_data, buff, md->token_len+1);
  2036. }
  2037. return TOK_STRING;
  2038. break;
  2039. case '\n':
  2040. case '\r':
  2041. case '\t':
  2042. break;
  2043. case ' ':
  2044. return TOK_SPACE;
  2045. break;
  2046. default:
  2047. if (isalnum(ch)) {
  2048. md->token_len = 0;
  2049. buff[(md->token_len)++] = ch;
  2050. while (!php_stream_eof(md->stream) && (ch = php_stream_getc(md->stream)) && (isalnum(ch) || strchr(PHP_META_HTML401_CHARS, ch))) {
  2051. buff[(md->token_len)++] = ch;
  2052. if (md->token_len == META_DEF_BUFSIZE) {
  2053. break;
  2054. }
  2055. }
  2056. /* This is ugly, but we have to replace ungetc */
  2057. if (!isalpha(ch) && ch != '-') {
  2058. md->ulc = 1;
  2059. md->lc = ch;
  2060. }
  2061. md->token_data = (char *) emalloc(md->token_len + 1);
  2062. memcpy(md->token_data, buff, md->token_len+1);
  2063. return TOK_ID;
  2064. } else {
  2065. return TOK_OTHER;
  2066. }
  2067. break;
  2068. }
  2069. }
  2070. return TOK_EOF;
  2071. }
  2072. /* }}} */
  2073. #ifdef HAVE_FNMATCH
  2074. /* {{{ proto bool fnmatch(string pattern, string filename [, int flags])
  2075. Match filename against pattern */
  2076. PHP_FUNCTION(fnmatch)
  2077. {
  2078. char *pattern, *filename;
  2079. int pattern_len, filename_len;
  2080. long flags = 0;
  2081. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "pp|l", &pattern, &pattern_len, &filename, &filename_len, &flags) == FAILURE) {
  2082. return;
  2083. }
  2084. if (filename_len >= MAXPATHLEN) {
  2085. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Filename exceeds the maximum allowed length of %d characters", MAXPATHLEN);
  2086. RETURN_FALSE;
  2087. }
  2088. if (pattern_len >= MAXPATHLEN) {
  2089. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Pattern exceeds the maximum allowed length of %d characters", MAXPATHLEN);
  2090. RETURN_FALSE;
  2091. }
  2092. RETURN_BOOL( ! fnmatch( pattern, filename, flags ));
  2093. }
  2094. /* }}} */
  2095. #endif
  2096. /* {{{ proto string sys_get_temp_dir()
  2097. Returns directory path used for temporary files */
  2098. PHP_FUNCTION(sys_get_temp_dir)
  2099. {
  2100. if (zend_parse_parameters_none() == FAILURE) {
  2101. return;
  2102. }
  2103. RETURN_STRING((char *)php_get_temporary_directory(TSRMLS_C), 1);
  2104. }
  2105. /* }}} */
  2106. /*
  2107. * Local variables:
  2108. * tab-width: 4
  2109. * c-basic-offset: 4
  2110. * End:
  2111. * vim600: noet sw=4 ts=4 fdm=marker
  2112. * vim<600: noet sw=4 ts=4
  2113. */