interbase.c 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476
  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: Jouni Ahto <jouni.ahto@exdec.fi> |
  16. | Andrew Avdeev <andy@rsc.mv.ru> |
  17. | Ard Biesheuvel <a.k.biesheuvel@ewi.tudelft.nl> |
  18. +----------------------------------------------------------------------+
  19. */
  20. #ifdef HAVE_CONFIG_H
  21. #include "config.h"
  22. #endif
  23. #define _GNU_SOURCE
  24. #include "php.h"
  25. #if HAVE_IBASE
  26. #include "php_ini.h"
  27. #include "ext/standard/php_standard.h"
  28. #include "ext/standard/md5.h"
  29. #include "php_interbase.h"
  30. #include "php_ibase_includes.h"
  31. #include "SAPI.h"
  32. #include <time.h>
  33. #define ROLLBACK 0
  34. #define COMMIT 1
  35. #define RETAIN 2
  36. #define CHECK_LINK(link) { if (link==NULL) { php_error_docref(NULL, E_WARNING, "A link to the server could not be established"); RETURN_FALSE; } }
  37. ZEND_DECLARE_MODULE_GLOBALS(ibase)
  38. static PHP_GINIT_FUNCTION(ibase);
  39. /* {{{ arginfo */
  40. ZEND_BEGIN_ARG_INFO(arginfo_ibase_errmsg, 0)
  41. ZEND_END_ARG_INFO()
  42. ZEND_BEGIN_ARG_INFO(arginfo_ibase_errcode, 0)
  43. ZEND_END_ARG_INFO()
  44. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_connect, 0, 0, 0)
  45. ZEND_ARG_INFO(0, database)
  46. ZEND_ARG_INFO(0, username)
  47. ZEND_ARG_INFO(0, password)
  48. ZEND_ARG_INFO(0, charset)
  49. ZEND_ARG_INFO(0, buffers)
  50. ZEND_ARG_INFO(0, dialect)
  51. ZEND_ARG_INFO(0, role)
  52. ZEND_END_ARG_INFO()
  53. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_pconnect, 0, 0, 0)
  54. ZEND_ARG_INFO(0, database)
  55. ZEND_ARG_INFO(0, username)
  56. ZEND_ARG_INFO(0, password)
  57. ZEND_ARG_INFO(0, charset)
  58. ZEND_ARG_INFO(0, buffers)
  59. ZEND_ARG_INFO(0, dialect)
  60. ZEND_ARG_INFO(0, role)
  61. ZEND_END_ARG_INFO()
  62. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_close, 0, 0, 0)
  63. ZEND_ARG_INFO(0, link_identifier)
  64. ZEND_END_ARG_INFO()
  65. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_drop_db, 0, 0, 0)
  66. ZEND_ARG_INFO(0, link_identifier)
  67. ZEND_END_ARG_INFO()
  68. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_trans, 0, 0, 0)
  69. ZEND_ARG_INFO(0, trans_args)
  70. ZEND_ARG_INFO(0, link_identifier)
  71. ZEND_ARG_INFO(0, trans_args)
  72. ZEND_ARG_INFO(0, link_identifier)
  73. ZEND_END_ARG_INFO()
  74. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_commit, 0, 0, 1)
  75. ZEND_ARG_INFO(0, link_identifier)
  76. ZEND_END_ARG_INFO()
  77. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_rollback, 0, 0, 1)
  78. ZEND_ARG_INFO(0, link_identifier)
  79. ZEND_END_ARG_INFO()
  80. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_commit_ret, 0, 0, 1)
  81. ZEND_ARG_INFO(0, link_identifier)
  82. ZEND_END_ARG_INFO()
  83. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_rollback_ret, 0, 0, 1)
  84. ZEND_ARG_INFO(0, link_identifier)
  85. ZEND_END_ARG_INFO()
  86. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_gen_id, 0, 0, 1)
  87. ZEND_ARG_INFO(0, generator)
  88. ZEND_ARG_INFO(0, increment)
  89. ZEND_ARG_INFO(0, link_identifier)
  90. ZEND_END_ARG_INFO()
  91. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_blob_create, 0, 0, 0)
  92. ZEND_ARG_INFO(0, link_identifier)
  93. ZEND_END_ARG_INFO()
  94. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_blob_open, 0, 0, 0)
  95. ZEND_ARG_INFO(0, link_identifier)
  96. ZEND_ARG_INFO(0, blob_id)
  97. ZEND_END_ARG_INFO()
  98. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_blob_add, 0, 0, 2)
  99. ZEND_ARG_INFO(0, blob_handle)
  100. ZEND_ARG_INFO(0, data)
  101. ZEND_END_ARG_INFO()
  102. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_blob_get, 0, 0, 2)
  103. ZEND_ARG_INFO(0, blob_handle)
  104. ZEND_ARG_INFO(0, len)
  105. ZEND_END_ARG_INFO()
  106. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_blob_close, 0, 0, 1)
  107. ZEND_ARG_INFO(0, blob_handle)
  108. ZEND_END_ARG_INFO()
  109. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_blob_cancel, 0, 0, 1)
  110. ZEND_ARG_INFO(0, blob_handle)
  111. ZEND_END_ARG_INFO()
  112. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_blob_info, 0, 0, 0)
  113. ZEND_ARG_INFO(0, link_identifier)
  114. ZEND_ARG_INFO(0, blob_id)
  115. ZEND_END_ARG_INFO()
  116. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_blob_echo, 0, 0, 0)
  117. ZEND_ARG_INFO(0, link_identifier)
  118. ZEND_ARG_INFO(0, blob_id)
  119. ZEND_END_ARG_INFO()
  120. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_blob_import, 0, 0, 0)
  121. ZEND_ARG_INFO(0, link_identifier)
  122. ZEND_ARG_INFO(0, file)
  123. ZEND_END_ARG_INFO()
  124. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_query, 0, 0, 0)
  125. ZEND_ARG_INFO(0, link_identifier)
  126. ZEND_ARG_INFO(0, link_identifier)
  127. ZEND_ARG_INFO(0, query)
  128. ZEND_ARG_INFO(0, bind_arg)
  129. ZEND_ARG_INFO(0, bind_arg)
  130. ZEND_END_ARG_INFO()
  131. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_affected_rows, 0, 0, 0)
  132. ZEND_ARG_INFO(0, link_identifier)
  133. ZEND_END_ARG_INFO()
  134. #if abies_0
  135. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_num_rows, 0, 0, 1)
  136. ZEND_ARG_INFO(0, result_identifier)
  137. ZEND_END_ARG_INFO()
  138. #endif
  139. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_fetch_row, 0, 0, 1)
  140. ZEND_ARG_INFO(0, result)
  141. ZEND_ARG_INFO(0, fetch_flags)
  142. ZEND_END_ARG_INFO()
  143. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_fetch_assoc, 0, 0, 1)
  144. ZEND_ARG_INFO(0, result)
  145. ZEND_ARG_INFO(0, fetch_flags)
  146. ZEND_END_ARG_INFO()
  147. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_fetch_object, 0, 0, 1)
  148. ZEND_ARG_INFO(0, result)
  149. ZEND_ARG_INFO(0, fetch_flags)
  150. ZEND_END_ARG_INFO()
  151. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_name_result, 0, 0, 2)
  152. ZEND_ARG_INFO(0, result)
  153. ZEND_ARG_INFO(0, name)
  154. ZEND_END_ARG_INFO()
  155. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_free_result, 0, 0, 1)
  156. ZEND_ARG_INFO(0, result)
  157. ZEND_END_ARG_INFO()
  158. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_prepare, 0, 0, 0)
  159. ZEND_ARG_INFO(0, link_identifier)
  160. ZEND_ARG_INFO(0, query)
  161. ZEND_END_ARG_INFO()
  162. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_execute, 0, 0, 1)
  163. ZEND_ARG_INFO(0, query)
  164. ZEND_ARG_INFO(0, bind_arg)
  165. ZEND_ARG_INFO(0, bind_arg)
  166. ZEND_END_ARG_INFO()
  167. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_free_query, 0, 0, 1)
  168. ZEND_ARG_INFO(0, query)
  169. ZEND_END_ARG_INFO()
  170. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_num_fields, 0, 0, 1)
  171. ZEND_ARG_INFO(0, query_result)
  172. ZEND_END_ARG_INFO()
  173. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_field_info, 0, 0, 2)
  174. ZEND_ARG_INFO(0, query_result)
  175. ZEND_ARG_INFO(0, field_number)
  176. ZEND_END_ARG_INFO()
  177. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_num_params, 0, 0, 1)
  178. ZEND_ARG_INFO(0, query)
  179. ZEND_END_ARG_INFO()
  180. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_param_info, 0, 0, 2)
  181. ZEND_ARG_INFO(0, query)
  182. ZEND_ARG_INFO(0, field_number)
  183. ZEND_END_ARG_INFO()
  184. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_add_user, 0, 0, 3)
  185. ZEND_ARG_INFO(0, service_handle)
  186. ZEND_ARG_INFO(0, user_name)
  187. ZEND_ARG_INFO(0, password)
  188. ZEND_ARG_INFO(0, first_name)
  189. ZEND_ARG_INFO(0, middle_name)
  190. ZEND_ARG_INFO(0, last_name)
  191. ZEND_END_ARG_INFO()
  192. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_modify_user, 0, 0, 3)
  193. ZEND_ARG_INFO(0, service_handle)
  194. ZEND_ARG_INFO(0, user_name)
  195. ZEND_ARG_INFO(0, password)
  196. ZEND_ARG_INFO(0, first_name)
  197. ZEND_ARG_INFO(0, middle_name)
  198. ZEND_ARG_INFO(0, last_name)
  199. ZEND_END_ARG_INFO()
  200. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_delete_user, 0, 0, 3)
  201. ZEND_ARG_INFO(0, service_handle)
  202. ZEND_ARG_INFO(0, user_name)
  203. ZEND_ARG_INFO(0, password)
  204. ZEND_ARG_INFO(0, first_name)
  205. ZEND_ARG_INFO(0, middle_name)
  206. ZEND_ARG_INFO(0, last_name)
  207. ZEND_END_ARG_INFO()
  208. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_service_attach, 0, 0, 3)
  209. ZEND_ARG_INFO(0, host)
  210. ZEND_ARG_INFO(0, dba_username)
  211. ZEND_ARG_INFO(0, dba_password)
  212. ZEND_END_ARG_INFO()
  213. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_service_detach, 0, 0, 1)
  214. ZEND_ARG_INFO(0, service_handle)
  215. ZEND_END_ARG_INFO()
  216. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_backup, 0, 0, 3)
  217. ZEND_ARG_INFO(0, service_handle)
  218. ZEND_ARG_INFO(0, source_db)
  219. ZEND_ARG_INFO(0, dest_file)
  220. ZEND_ARG_INFO(0, options)
  221. ZEND_ARG_INFO(0, verbose)
  222. ZEND_END_ARG_INFO()
  223. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_restore, 0, 0, 3)
  224. ZEND_ARG_INFO(0, service_handle)
  225. ZEND_ARG_INFO(0, source_file)
  226. ZEND_ARG_INFO(0, dest_db)
  227. ZEND_ARG_INFO(0, options)
  228. ZEND_ARG_INFO(0, verbose)
  229. ZEND_END_ARG_INFO()
  230. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_maintain_db, 0, 0, 3)
  231. ZEND_ARG_INFO(0, service_handle)
  232. ZEND_ARG_INFO(0, db)
  233. ZEND_ARG_INFO(0, action)
  234. ZEND_ARG_INFO(0, argument)
  235. ZEND_END_ARG_INFO()
  236. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_db_info, 0, 0, 3)
  237. ZEND_ARG_INFO(0, service_handle)
  238. ZEND_ARG_INFO(0, db)
  239. ZEND_ARG_INFO(0, action)
  240. ZEND_ARG_INFO(0, argument)
  241. ZEND_END_ARG_INFO()
  242. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_server_info, 0, 0, 2)
  243. ZEND_ARG_INFO(0, service_handle)
  244. ZEND_ARG_INFO(0, action)
  245. ZEND_END_ARG_INFO()
  246. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_wait_event, 0, 0, 1)
  247. ZEND_ARG_INFO(0, link_identifier)
  248. ZEND_ARG_INFO(0, event)
  249. ZEND_ARG_INFO(0, event2)
  250. ZEND_END_ARG_INFO()
  251. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_set_event_handler, 0, 0, 2)
  252. ZEND_ARG_INFO(0, link_identifier)
  253. ZEND_ARG_INFO(0, handler)
  254. ZEND_ARG_INFO(0, event)
  255. ZEND_ARG_INFO(0, event2)
  256. ZEND_END_ARG_INFO()
  257. ZEND_BEGIN_ARG_INFO_EX(arginfo_ibase_free_event_handler, 0, 0, 1)
  258. ZEND_ARG_INFO(0, event)
  259. ZEND_END_ARG_INFO()
  260. /* }}} */
  261. /* {{{ extension definition structures */
  262. static const zend_function_entry ibase_functions[] = {
  263. PHP_FE(ibase_connect, arginfo_ibase_connect)
  264. PHP_FE(ibase_pconnect, arginfo_ibase_pconnect)
  265. PHP_FE(ibase_close, arginfo_ibase_close)
  266. PHP_FE(ibase_drop_db, arginfo_ibase_drop_db)
  267. PHP_FE(ibase_query, arginfo_ibase_query)
  268. PHP_FE(ibase_fetch_row, arginfo_ibase_fetch_row)
  269. PHP_FE(ibase_fetch_assoc, arginfo_ibase_fetch_assoc)
  270. PHP_FE(ibase_fetch_object, arginfo_ibase_fetch_object)
  271. PHP_FE(ibase_free_result, arginfo_ibase_free_result)
  272. PHP_FE(ibase_name_result, arginfo_ibase_name_result)
  273. PHP_FE(ibase_prepare, arginfo_ibase_prepare)
  274. PHP_FE(ibase_execute, arginfo_ibase_execute)
  275. PHP_FE(ibase_free_query, arginfo_ibase_free_query)
  276. PHP_FE(ibase_gen_id, arginfo_ibase_gen_id)
  277. PHP_FE(ibase_num_fields, arginfo_ibase_num_fields)
  278. PHP_FE(ibase_num_params, arginfo_ibase_num_params)
  279. #if abies_0
  280. PHP_FE(ibase_num_rows, arginfo_ibase_num_rows)
  281. #endif
  282. PHP_FE(ibase_affected_rows, arginfo_ibase_affected_rows)
  283. PHP_FE(ibase_field_info, arginfo_ibase_field_info)
  284. PHP_FE(ibase_param_info, arginfo_ibase_param_info)
  285. PHP_FE(ibase_trans, arginfo_ibase_trans)
  286. PHP_FE(ibase_commit, arginfo_ibase_commit)
  287. PHP_FE(ibase_rollback, arginfo_ibase_rollback)
  288. PHP_FE(ibase_commit_ret, arginfo_ibase_commit_ret)
  289. PHP_FE(ibase_rollback_ret, arginfo_ibase_rollback_ret)
  290. PHP_FE(ibase_blob_info, arginfo_ibase_blob_info)
  291. PHP_FE(ibase_blob_create, arginfo_ibase_blob_create)
  292. PHP_FE(ibase_blob_add, arginfo_ibase_blob_add)
  293. PHP_FE(ibase_blob_cancel, arginfo_ibase_blob_cancel)
  294. PHP_FE(ibase_blob_close, arginfo_ibase_blob_close)
  295. PHP_FE(ibase_blob_open, arginfo_ibase_blob_open)
  296. PHP_FE(ibase_blob_get, arginfo_ibase_blob_get)
  297. PHP_FE(ibase_blob_echo, arginfo_ibase_blob_echo)
  298. PHP_FE(ibase_blob_import, arginfo_ibase_blob_import)
  299. PHP_FE(ibase_errmsg, arginfo_ibase_errmsg)
  300. PHP_FE(ibase_errcode, arginfo_ibase_errcode)
  301. PHP_FE(ibase_add_user, arginfo_ibase_add_user)
  302. PHP_FE(ibase_modify_user, arginfo_ibase_modify_user)
  303. PHP_FE(ibase_delete_user, arginfo_ibase_delete_user)
  304. PHP_FE(ibase_service_attach, arginfo_ibase_service_attach)
  305. PHP_FE(ibase_service_detach, arginfo_ibase_service_detach)
  306. PHP_FE(ibase_backup, arginfo_ibase_backup)
  307. PHP_FE(ibase_restore, arginfo_ibase_restore)
  308. PHP_FE(ibase_maintain_db, arginfo_ibase_maintain_db)
  309. PHP_FE(ibase_db_info, arginfo_ibase_db_info)
  310. PHP_FE(ibase_server_info, arginfo_ibase_server_info)
  311. PHP_FE(ibase_wait_event, arginfo_ibase_wait_event)
  312. PHP_FE(ibase_set_event_handler, arginfo_ibase_set_event_handler)
  313. PHP_FE(ibase_free_event_handler, arginfo_ibase_free_event_handler)
  314. /**
  315. * These aliases are provided in order to maintain forward compatibility. As Firebird
  316. * and InterBase are developed independently, functionality might be different between
  317. * the two branches in future versions.
  318. * Firebird users should use the aliases, so future InterBase-specific changes will
  319. * not affect their code
  320. */
  321. PHP_FALIAS(fbird_connect, ibase_connect, arginfo_ibase_connect)
  322. PHP_FALIAS(fbird_pconnect, ibase_pconnect, arginfo_ibase_pconnect)
  323. PHP_FALIAS(fbird_close, ibase_close, arginfo_ibase_close)
  324. PHP_FALIAS(fbird_drop_db, ibase_drop_db, arginfo_ibase_drop_db)
  325. PHP_FALIAS(fbird_query, ibase_query, arginfo_ibase_query)
  326. PHP_FALIAS(fbird_fetch_row, ibase_fetch_row, arginfo_ibase_fetch_row)
  327. PHP_FALIAS(fbird_fetch_assoc, ibase_fetch_assoc, arginfo_ibase_fetch_assoc)
  328. PHP_FALIAS(fbird_fetch_object, ibase_fetch_object, arginfo_ibase_fetch_object)
  329. PHP_FALIAS(fbird_free_result, ibase_free_result, arginfo_ibase_free_result)
  330. PHP_FALIAS(fbird_name_result, ibase_name_result, arginfo_ibase_name_result)
  331. PHP_FALIAS(fbird_prepare, ibase_prepare, arginfo_ibase_prepare)
  332. PHP_FALIAS(fbird_execute, ibase_execute, arginfo_ibase_execute)
  333. PHP_FALIAS(fbird_free_query, ibase_free_query, arginfo_ibase_free_query)
  334. PHP_FALIAS(fbird_gen_id, ibase_gen_id, arginfo_ibase_gen_id)
  335. PHP_FALIAS(fbird_num_fields, ibase_num_fields, arginfo_ibase_num_fields)
  336. PHP_FALIAS(fbird_num_params, ibase_num_params, arginfo_ibase_num_params)
  337. #if abies_0
  338. PHP_FALIAS(fbird_num_rows, ibase_num_rows, arginfo_ibase_num_rows)
  339. #endif
  340. PHP_FALIAS(fbird_affected_rows, ibase_affected_rows, arginfo_ibase_affected_rows)
  341. PHP_FALIAS(fbird_field_info, ibase_field_info, arginfo_ibase_field_info)
  342. PHP_FALIAS(fbird_param_info, ibase_param_info, arginfo_ibase_param_info)
  343. PHP_FALIAS(fbird_trans, ibase_trans, arginfo_ibase_trans)
  344. PHP_FALIAS(fbird_commit, ibase_commit, arginfo_ibase_commit)
  345. PHP_FALIAS(fbird_rollback, ibase_rollback, arginfo_ibase_rollback)
  346. PHP_FALIAS(fbird_commit_ret, ibase_commit_ret, arginfo_ibase_commit_ret)
  347. PHP_FALIAS(fbird_rollback_ret, ibase_rollback_ret, arginfo_ibase_rollback_ret)
  348. PHP_FALIAS(fbird_blob_info, ibase_blob_info, arginfo_ibase_blob_info)
  349. PHP_FALIAS(fbird_blob_create, ibase_blob_create, arginfo_ibase_blob_create)
  350. PHP_FALIAS(fbird_blob_add, ibase_blob_add, arginfo_ibase_blob_add)
  351. PHP_FALIAS(fbird_blob_cancel, ibase_blob_cancel, arginfo_ibase_blob_cancel)
  352. PHP_FALIAS(fbird_blob_close, ibase_blob_close, arginfo_ibase_blob_close)
  353. PHP_FALIAS(fbird_blob_open, ibase_blob_open, arginfo_ibase_blob_open)
  354. PHP_FALIAS(fbird_blob_get, ibase_blob_get, arginfo_ibase_blob_get)
  355. PHP_FALIAS(fbird_blob_echo, ibase_blob_echo, arginfo_ibase_blob_echo)
  356. PHP_FALIAS(fbird_blob_import, ibase_blob_import, arginfo_ibase_blob_import)
  357. PHP_FALIAS(fbird_errmsg, ibase_errmsg, arginfo_ibase_errmsg)
  358. PHP_FALIAS(fbird_errcode, ibase_errcode, arginfo_ibase_errcode)
  359. PHP_FALIAS(fbird_add_user, ibase_add_user, arginfo_ibase_add_user)
  360. PHP_FALIAS(fbird_modify_user, ibase_modify_user, arginfo_ibase_modify_user)
  361. PHP_FALIAS(fbird_delete_user, ibase_delete_user, arginfo_ibase_delete_user)
  362. PHP_FALIAS(fbird_service_attach, ibase_service_attach, arginfo_ibase_service_attach)
  363. PHP_FALIAS(fbird_service_detach, ibase_service_detach, arginfo_ibase_service_detach)
  364. PHP_FALIAS(fbird_backup, ibase_backup, arginfo_ibase_backup)
  365. PHP_FALIAS(fbird_restore, ibase_restore, arginfo_ibase_restore)
  366. PHP_FALIAS(fbird_maintain_db, ibase_maintain_db, arginfo_ibase_maintain_db)
  367. PHP_FALIAS(fbird_db_info, ibase_db_info, arginfo_ibase_db_info)
  368. PHP_FALIAS(fbird_server_info, ibase_server_info, arginfo_ibase_server_info)
  369. PHP_FALIAS(fbird_wait_event, ibase_wait_event, arginfo_ibase_wait_event)
  370. PHP_FALIAS(fbird_set_event_handler, ibase_set_event_handler, arginfo_ibase_set_event_handler)
  371. PHP_FALIAS(fbird_free_event_handler, ibase_free_event_handler, arginfo_ibase_free_event_handler)
  372. PHP_FE_END
  373. };
  374. zend_module_entry ibase_module_entry = {
  375. STANDARD_MODULE_HEADER,
  376. "interbase",
  377. ibase_functions,
  378. PHP_MINIT(ibase),
  379. PHP_MSHUTDOWN(ibase),
  380. NULL,
  381. PHP_RSHUTDOWN(ibase),
  382. PHP_MINFO(ibase),
  383. PHP_INTERBASE_VERSION,
  384. PHP_MODULE_GLOBALS(ibase),
  385. PHP_GINIT(ibase),
  386. NULL,
  387. NULL,
  388. STANDARD_MODULE_PROPERTIES_EX
  389. };
  390. #ifdef COMPILE_DL_INTERBASE
  391. #ifdef ZTS
  392. ZEND_TSRMLS_CACHE_DEFINE()
  393. #endif
  394. ZEND_GET_MODULE(ibase)
  395. #endif
  396. /* True globals, no need for thread safety */
  397. int le_link, le_plink, le_trans;
  398. /* }}} */
  399. /* error handling ---------------------------- */
  400. /* {{{ proto string ibase_errmsg(void)
  401. Return error message */
  402. PHP_FUNCTION(ibase_errmsg)
  403. {
  404. if (zend_parse_parameters_none() == FAILURE) {
  405. return;
  406. }
  407. if (IBG(sql_code) != 0) {
  408. RETURN_STRING(IBG(errmsg));
  409. }
  410. RETURN_FALSE;
  411. }
  412. /* }}} */
  413. /* {{{ proto int ibase_errcode(void)
  414. Return error code */
  415. PHP_FUNCTION(ibase_errcode)
  416. {
  417. if (zend_parse_parameters_none() == FAILURE) {
  418. return;
  419. }
  420. if (IBG(sql_code) != 0) {
  421. RETURN_LONG(IBG(sql_code));
  422. }
  423. RETURN_FALSE;
  424. }
  425. /* }}} */
  426. /* print interbase error and save it for ibase_errmsg() */
  427. void _php_ibase_error(void) /* {{{ */
  428. {
  429. char *s = IBG(errmsg);
  430. const ISC_STATUS *statusp = IB_STATUS;
  431. IBG(sql_code) = isc_sqlcode(IB_STATUS);
  432. while ((s - IBG(errmsg)) < MAX_ERRMSG && fb_interpret(s, MAX_ERRMSG - strlen(IBG(errmsg)) - 1, &statusp)) {
  433. strcat(IBG(errmsg), " ");
  434. s = IBG(errmsg) + strlen(IBG(errmsg));
  435. }
  436. php_error_docref(NULL, E_WARNING, "%s", IBG(errmsg));
  437. }
  438. /* }}} */
  439. /* print php interbase module error and save it for ibase_errmsg() */
  440. void _php_ibase_module_error(char *msg, ...) /* {{{ */
  441. {
  442. va_list ap;
  443. va_start(ap, msg);
  444. /* vsnprintf NUL terminates the buf and writes at most n-1 chars+NUL */
  445. vsnprintf(IBG(errmsg), MAX_ERRMSG, msg, ap);
  446. va_end(ap);
  447. IBG(sql_code) = -999; /* no SQL error */
  448. php_error_docref(NULL, E_WARNING, "%s", IBG(errmsg));
  449. }
  450. /* }}} */
  451. /* {{{ internal macros, functions and structures */
  452. typedef struct {
  453. isc_db_handle *db_ptr;
  454. zend_long tpb_len;
  455. char *tpb_ptr;
  456. } ISC_TEB;
  457. /* }}} */
  458. /* Fill ib_link and trans with the correct database link and transaction. */
  459. void _php_ibase_get_link_trans(INTERNAL_FUNCTION_PARAMETERS, /* {{{ */
  460. zval *link_id, ibase_db_link **ib_link, ibase_trans **trans)
  461. {
  462. IBDEBUG("Transaction or database link?");
  463. if (Z_RES_P(link_id)->type == le_trans) {
  464. /* Transaction resource: make sure it refers to one link only, then
  465. fetch it; database link is stored in ib_trans->db_link[]. */
  466. IBDEBUG("Type is le_trans");
  467. *trans = (ibase_trans *)zend_fetch_resource_ex(link_id, LE_TRANS, le_trans);
  468. if ((*trans)->link_cnt > 1) {
  469. _php_ibase_module_error("Link id is ambiguous: transaction spans multiple connections."
  470. );
  471. return;
  472. }
  473. *ib_link = (*trans)->db_link[0];
  474. return;
  475. }
  476. IBDEBUG("Type is le_[p]link or id not found");
  477. /* Database link resource, use default transaction. */
  478. *trans = NULL;
  479. *ib_link = (ibase_db_link *)zend_fetch_resource2_ex(link_id, LE_LINK, le_link, le_plink);
  480. }
  481. /* }}} */
  482. /* destructors ---------------------- */
  483. static void _php_ibase_commit_link(ibase_db_link *link) /* {{{ */
  484. {
  485. unsigned short i = 0, j;
  486. ibase_tr_list *l;
  487. ibase_event *e;
  488. IBDEBUG("Checking transactions to close...");
  489. for (l = link->tr_list; l != NULL; ++i) {
  490. ibase_tr_list *p = l;
  491. if (p->trans != 0) {
  492. if (i == 0) {
  493. if (p->trans->handle != 0) {
  494. IBDEBUG("Committing default transaction...");
  495. if (isc_commit_transaction(IB_STATUS, &p->trans->handle)) {
  496. _php_ibase_error();
  497. }
  498. }
  499. efree(p->trans); /* default transaction is not a registered resource: clean up */
  500. } else {
  501. if (p->trans->handle != 0) {
  502. /* non-default trans might have been rolled back by other call of this dtor */
  503. IBDEBUG("Rolling back other transactions...");
  504. if (isc_rollback_transaction(IB_STATUS, &p->trans->handle)) {
  505. _php_ibase_error();
  506. }
  507. }
  508. /* set this link pointer to NULL in the transaction */
  509. for (j = 0; j < p->trans->link_cnt; ++j) {
  510. if (p->trans->db_link[j] == link) {
  511. p->trans->db_link[j] = NULL;
  512. break;
  513. }
  514. }
  515. }
  516. }
  517. l = l->next;
  518. efree(p);
  519. }
  520. link->tr_list = NULL;
  521. for (e = link->event_head; e; e = e->event_next) {
  522. _php_ibase_free_event(e);
  523. e->link = NULL;
  524. }
  525. }
  526. /* }}} */
  527. static void php_ibase_commit_link_rsrc(zend_resource *rsrc) /* {{{ */
  528. {
  529. ibase_db_link *link = (ibase_db_link *) rsrc->ptr;
  530. _php_ibase_commit_link(link);
  531. }
  532. /* }}} */
  533. static void _php_ibase_close_link(zend_resource *rsrc) /* {{{ */
  534. {
  535. ibase_db_link *link = (ibase_db_link *) rsrc->ptr;
  536. _php_ibase_commit_link(link);
  537. if (link->handle != 0) {
  538. IBDEBUG("Closing normal link...");
  539. isc_detach_database(IB_STATUS, &link->handle);
  540. }
  541. IBG(num_links)--;
  542. efree(link);
  543. }
  544. /* }}} */
  545. static void _php_ibase_close_plink(zend_resource *rsrc) /* {{{ */
  546. {
  547. ibase_db_link *link = (ibase_db_link *) rsrc->ptr;
  548. _php_ibase_commit_link(link);
  549. IBDEBUG("Closing permanent link...");
  550. if (link->handle != 0) {
  551. isc_detach_database(IB_STATUS, &link->handle);
  552. }
  553. IBG(num_persistent)--;
  554. IBG(num_links)--;
  555. free(link);
  556. }
  557. /* }}} */
  558. static void _php_ibase_free_trans(zend_resource *rsrc) /* {{{ */
  559. {
  560. ibase_trans *trans = (ibase_trans *)rsrc->ptr;
  561. unsigned short i;
  562. IBDEBUG("Cleaning up transaction resource...");
  563. if (trans->handle != 0) {
  564. IBDEBUG("Rolling back unhandled transaction...");
  565. if (isc_rollback_transaction(IB_STATUS, &trans->handle)) {
  566. _php_ibase_error();
  567. }
  568. }
  569. /* now remove this transaction from all the connection-transaction lists */
  570. for (i = 0; i < trans->link_cnt; ++i) {
  571. if (trans->db_link[i] != NULL) {
  572. ibase_tr_list **l;
  573. for (l = &trans->db_link[i]->tr_list; *l != NULL; l = &(*l)->next) {
  574. if ( (*l)->trans == trans) {
  575. ibase_tr_list *p = *l;
  576. *l = p->next;
  577. efree(p);
  578. break;
  579. }
  580. }
  581. }
  582. }
  583. efree(trans);
  584. }
  585. /* }}} */
  586. /* TODO this function should be part of either Zend or PHP API */
  587. static PHP_INI_DISP(php_ibase_password_displayer_cb)
  588. {
  589. if ((type == PHP_INI_DISPLAY_ORIG && ini_entry->orig_value)
  590. || (type == PHP_INI_DISPLAY_ACTIVE && ini_entry->value)) {
  591. PUTS("********");
  592. } else if (!sapi_module.phpinfo_as_text) {
  593. PUTS("<i>no value</i>");
  594. } else {
  595. PUTS("no value");
  596. }
  597. }
  598. /* {{{ startup, shutdown and info functions */
  599. PHP_INI_BEGIN()
  600. PHP_INI_ENTRY_EX("ibase.allow_persistent", "1", PHP_INI_SYSTEM, NULL, zend_ini_boolean_displayer_cb)
  601. PHP_INI_ENTRY_EX("ibase.max_persistent", "-1", PHP_INI_SYSTEM, NULL, display_link_numbers)
  602. PHP_INI_ENTRY_EX("ibase.max_links", "-1", PHP_INI_SYSTEM, NULL, display_link_numbers)
  603. PHP_INI_ENTRY("ibase.default_db", NULL, PHP_INI_SYSTEM, NULL)
  604. PHP_INI_ENTRY("ibase.default_user", NULL, PHP_INI_ALL, NULL)
  605. PHP_INI_ENTRY_EX("ibase.default_password", NULL, PHP_INI_ALL, NULL, php_ibase_password_displayer_cb)
  606. PHP_INI_ENTRY("ibase.default_charset", NULL, PHP_INI_ALL, NULL)
  607. PHP_INI_ENTRY("ibase.timestampformat", IB_DEF_DATE_FMT " " IB_DEF_TIME_FMT, PHP_INI_ALL, NULL)
  608. PHP_INI_ENTRY("ibase.dateformat", IB_DEF_DATE_FMT, PHP_INI_ALL, NULL)
  609. PHP_INI_ENTRY("ibase.timeformat", IB_DEF_TIME_FMT, PHP_INI_ALL, NULL)
  610. PHP_INI_END()
  611. static PHP_GINIT_FUNCTION(ibase)
  612. {
  613. #if defined(COMPILE_DL_INTERBASE) && defined(ZTS)
  614. ZEND_TSRMLS_CACHE_UPDATE();
  615. #endif
  616. ibase_globals->num_persistent = ibase_globals->num_links = 0;
  617. ibase_globals->sql_code = *ibase_globals->errmsg = 0;
  618. ibase_globals->default_link = NULL;
  619. }
  620. PHP_MINIT_FUNCTION(ibase)
  621. {
  622. REGISTER_INI_ENTRIES();
  623. le_link = zend_register_list_destructors_ex(_php_ibase_close_link, NULL, LE_LINK, module_number);
  624. le_plink = zend_register_list_destructors_ex(php_ibase_commit_link_rsrc, _php_ibase_close_plink, LE_PLINK, module_number);
  625. le_trans = zend_register_list_destructors_ex(_php_ibase_free_trans, NULL, LE_TRANS, module_number);
  626. REGISTER_LONG_CONSTANT("IBASE_DEFAULT", PHP_IBASE_DEFAULT, CONST_PERSISTENT);
  627. REGISTER_LONG_CONSTANT("IBASE_CREATE", PHP_IBASE_CREATE, CONST_PERSISTENT);
  628. REGISTER_LONG_CONSTANT("IBASE_TEXT", PHP_IBASE_FETCH_BLOBS, CONST_PERSISTENT); /* deprecated, for BC only */
  629. REGISTER_LONG_CONSTANT("IBASE_FETCH_BLOBS", PHP_IBASE_FETCH_BLOBS, CONST_PERSISTENT);
  630. REGISTER_LONG_CONSTANT("IBASE_FETCH_ARRAYS", PHP_IBASE_FETCH_ARRAYS, CONST_PERSISTENT);
  631. REGISTER_LONG_CONSTANT("IBASE_UNIXTIME", PHP_IBASE_UNIXTIME, CONST_PERSISTENT);
  632. /* transactions */
  633. REGISTER_LONG_CONSTANT("IBASE_WRITE", PHP_IBASE_WRITE, CONST_PERSISTENT);
  634. REGISTER_LONG_CONSTANT("IBASE_READ", PHP_IBASE_READ, CONST_PERSISTENT);
  635. REGISTER_LONG_CONSTANT("IBASE_COMMITTED", PHP_IBASE_COMMITTED, CONST_PERSISTENT);
  636. REGISTER_LONG_CONSTANT("IBASE_CONSISTENCY", PHP_IBASE_CONSISTENCY, CONST_PERSISTENT);
  637. REGISTER_LONG_CONSTANT("IBASE_CONCURRENCY", PHP_IBASE_CONCURRENCY, CONST_PERSISTENT);
  638. REGISTER_LONG_CONSTANT("IBASE_REC_VERSION", PHP_IBASE_REC_VERSION, CONST_PERSISTENT);
  639. REGISTER_LONG_CONSTANT("IBASE_REC_NO_VERSION", PHP_IBASE_REC_NO_VERSION, CONST_PERSISTENT);
  640. REGISTER_LONG_CONSTANT("IBASE_NOWAIT", PHP_IBASE_NOWAIT, CONST_PERSISTENT);
  641. REGISTER_LONG_CONSTANT("IBASE_WAIT", PHP_IBASE_WAIT, CONST_PERSISTENT);
  642. php_ibase_query_minit(INIT_FUNC_ARGS_PASSTHRU);
  643. php_ibase_blobs_minit(INIT_FUNC_ARGS_PASSTHRU);
  644. php_ibase_events_minit(INIT_FUNC_ARGS_PASSTHRU);
  645. php_ibase_service_minit(INIT_FUNC_ARGS_PASSTHRU);
  646. return SUCCESS;
  647. }
  648. PHP_MSHUTDOWN_FUNCTION(ibase)
  649. {
  650. #ifndef PHP_WIN32
  651. /**
  652. * When the Interbase client API library libgds.so is first loaded, it registers a call to
  653. * gds__cleanup() with atexit(), in order to clean up after itself when the process exits.
  654. * This means that the library is called at process shutdown, and cannot be unloaded beforehand.
  655. * PHP tries to unload modules after every request [dl()'ed modules], and right before the
  656. * process shuts down [modules loaded from php.ini]. This results in a segfault for this module.
  657. * By NULLing the dlopen() handle in the module entry, Zend omits the call to dlclose(),
  658. * ensuring that the module will remain present until the process exits. However, the functions
  659. * and classes exported by the module will not be available until the module is 'reloaded'.
  660. * When reloaded, dlopen() will return the handle of the already loaded module. The module will
  661. * be unloaded automatically when the process exits.
  662. */
  663. zend_module_entry *ibase_entry;
  664. if ((ibase_entry = zend_hash_str_find_ptr(&module_registry, ibase_module_entry.name,
  665. strlen(ibase_module_entry.name))) != NULL) {
  666. ibase_entry->handle = 0;
  667. }
  668. #endif
  669. UNREGISTER_INI_ENTRIES();
  670. return SUCCESS;
  671. }
  672. PHP_RSHUTDOWN_FUNCTION(ibase)
  673. {
  674. IBG(num_links) = IBG(num_persistent);
  675. IBG(default_link)= NULL;
  676. RESET_ERRMSG;
  677. return SUCCESS;
  678. }
  679. PHP_MINFO_FUNCTION(ibase)
  680. {
  681. char tmp[64], *s;
  682. php_info_print_table_start();
  683. php_info_print_table_row(2, "Firebird/InterBase Support",
  684. #ifdef COMPILE_DL_INTERBASE
  685. "dynamic");
  686. #else
  687. "static");
  688. #endif
  689. #ifdef FB_API_VER
  690. snprintf( (s = tmp), sizeof(tmp), "Firebird API version %d", FB_API_VER);
  691. #elif (SQLDA_CURRENT_VERSION > 1)
  692. s = "Interbase 7.0 and up";
  693. #endif
  694. php_info_print_table_row(2, "Compile-time Client Library Version", s);
  695. #if defined(__GNUC__) || defined(PHP_WIN32)
  696. do {
  697. info_func_t info_func = NULL;
  698. #ifdef __GNUC__
  699. info_func = (info_func_t)dlsym(RTLD_DEFAULT, "isc_get_client_version");
  700. #else
  701. HMODULE l = GetModuleHandle("fbclient");
  702. if (!l && !(l = GetModuleHandle("gds32"))) {
  703. break;
  704. }
  705. info_func = (info_func_t)GetProcAddress(l, "isc_get_client_version");
  706. #endif
  707. if (info_func) {
  708. info_func(s = tmp);
  709. }
  710. php_info_print_table_row(2, "Run-time Client Library Version", s);
  711. } while (0);
  712. #endif
  713. php_info_print_table_end();
  714. DISPLAY_INI_ENTRIES();
  715. }
  716. /* }}} */
  717. enum connect_args { DB = 0, USER = 1, PASS = 2, CSET = 3, ROLE = 4, BUF = 0, DLECT = 1, SYNC = 2 };
  718. static char const dpb_args[] = {
  719. 0, isc_dpb_user_name, isc_dpb_password, isc_dpb_lc_ctype, isc_dpb_sql_role_name, 0
  720. };
  721. int _php_ibase_attach_db(char **args, size_t *len, zend_long *largs, isc_db_handle *db) /* {{{ */
  722. {
  723. short i, dpb_len, buf_len = 257-2; /* version byte at the front, and a null at the end */
  724. char dpb_buffer[257] = { isc_dpb_version1, 0 }, *dpb;
  725. dpb = dpb_buffer + 1;
  726. for (i = 0; i < sizeof(dpb_args); ++i) {
  727. if (dpb_args[i] && args[i] && len[i] && buf_len > 0) {
  728. dpb_len = slprintf(dpb, buf_len, "%c%c%s", dpb_args[i],(unsigned char)len[i],args[i]);
  729. dpb += dpb_len;
  730. buf_len -= dpb_len;
  731. }
  732. }
  733. if (largs[BUF] && buf_len > 0) {
  734. dpb_len = slprintf(dpb, buf_len, "%c\2%c%c", isc_dpb_num_buffers,
  735. (char)(largs[BUF] >> 8), (char)(largs[BUF] & 0xff));
  736. dpb += dpb_len;
  737. buf_len -= dpb_len;
  738. }
  739. if (largs[SYNC] && buf_len > 0) {
  740. dpb_len = slprintf(dpb, buf_len, "%c\1%c", isc_dpb_force_write, largs[SYNC] == isc_spb_prp_wm_sync ? 1 : 0);
  741. dpb += dpb_len;
  742. buf_len -= dpb_len;
  743. }
  744. if (isc_attach_database(IB_STATUS, (short)len[DB], args[DB], db, (short)(dpb-dpb_buffer), dpb_buffer)) {
  745. _php_ibase_error();
  746. return FAILURE;
  747. }
  748. return SUCCESS;
  749. }
  750. /* }}} */
  751. static void _php_ibase_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent) /* {{{ */
  752. {
  753. char *c, hash[16], *args[] = { NULL, NULL, NULL, NULL, NULL };
  754. int i;
  755. size_t len[] = { 0, 0, 0, 0, 0 };
  756. zend_long largs[] = { 0, 0, 0 };
  757. PHP_MD5_CTX hash_context;
  758. zend_resource new_index_ptr, *le;
  759. isc_db_handle db_handle = 0;
  760. ibase_db_link *ib_link;
  761. RESET_ERRMSG;
  762. if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "|ssssllsl",
  763. &args[DB], &len[DB], &args[USER], &len[USER], &args[PASS], &len[PASS],
  764. &args[CSET], &len[CSET], &largs[BUF], &largs[DLECT], &args[ROLE], &len[ROLE],
  765. &largs[SYNC])) {
  766. RETURN_FALSE;
  767. }
  768. /* restrict to the server/db in the .ini if in safe mode */
  769. if (!len[DB] && (c = INI_STR("ibase.default_db"))) {
  770. args[DB] = c;
  771. len[DB] = strlen(c);
  772. }
  773. if (!len[USER] && (c = INI_STR("ibase.default_user"))) {
  774. args[USER] = c;
  775. len[USER] = strlen(c);
  776. }
  777. if (!len[PASS] && (c = INI_STR("ibase.default_password"))) {
  778. args[PASS] = c;
  779. len[PASS] = strlen(c);
  780. }
  781. if (!len[CSET] && (c = INI_STR("ibase.default_charset"))) {
  782. args[CSET] = c;
  783. len[CSET] = strlen(c);
  784. }
  785. /* don't want usernames and passwords floating around */
  786. PHP_MD5Init(&hash_context);
  787. for (i = 0; i < sizeof(args)/sizeof(char*); ++i) {
  788. PHP_MD5Update(&hash_context,args[i],len[i]);
  789. }
  790. for (i = 0; i < sizeof(largs)/sizeof(zend_long); ++i) {
  791. PHP_MD5Update(&hash_context,(char*)&largs[i],sizeof(zend_long));
  792. }
  793. PHP_MD5Final((unsigned char*)hash, &hash_context);
  794. /* try to reuse a connection */
  795. if ((le = zend_hash_str_find_ptr(&EG(regular_list), hash, sizeof(hash)-1)) != NULL) {
  796. zend_resource *xlink;
  797. if (le->type != le_index_ptr) {
  798. RETURN_FALSE;
  799. }
  800. xlink = (zend_resource*) le->ptr;
  801. if ((!persistent && xlink->type == le_link) || xlink->type == le_plink) {
  802. if (IBG(default_link) != xlink) {
  803. GC_ADDREF(xlink);
  804. if (IBG(default_link)) {
  805. zend_list_delete(IBG(default_link));
  806. }
  807. IBG(default_link) = xlink;
  808. }
  809. GC_ADDREF(xlink);
  810. RETURN_RES(xlink);
  811. } else {
  812. zend_hash_str_del(&EG(regular_list), hash, sizeof(hash)-1);
  813. }
  814. }
  815. /* ... or a persistent one */
  816. do {
  817. zend_long l;
  818. static char info[] = { isc_info_base_level, isc_info_end };
  819. char result[8];
  820. ISC_STATUS status[20];
  821. if ((le = zend_hash_str_find_ptr(&EG(persistent_list), hash, sizeof(hash)-1)) != NULL) {
  822. if (le->type != le_plink) {
  823. RETURN_FALSE;
  824. }
  825. /* check if connection has timed out */
  826. ib_link = (ibase_db_link *) le->ptr;
  827. if (!isc_database_info(status, &ib_link->handle, sizeof(info), info, sizeof(result), result)) {
  828. RETVAL_RES(zend_register_resource(ib_link, le_plink));
  829. break;
  830. }
  831. zend_hash_str_del(&EG(persistent_list), hash, sizeof(hash)-1);
  832. }
  833. /* no link found, so we have to open one */
  834. if ((l = INI_INT("ibase.max_links")) != -1 && IBG(num_links) >= l) {
  835. _php_ibase_module_error("Too many open links (%ld)", IBG(num_links));
  836. RETURN_FALSE;
  837. }
  838. /* create the ib_link */
  839. if (FAILURE == _php_ibase_attach_db(args, len, largs, &db_handle)) {
  840. RETURN_FALSE;
  841. }
  842. /* use non-persistent if allowed number of persistent links is exceeded */
  843. if (!persistent || ((l = INI_INT("ibase.max_persistent") != -1) && IBG(num_persistent) >= l)) {
  844. ib_link = (ibase_db_link *) emalloc(sizeof(ibase_db_link));
  845. RETVAL_RES(zend_register_resource(ib_link, le_link));
  846. } else {
  847. ib_link = (ibase_db_link *) malloc(sizeof(ibase_db_link));
  848. if (!ib_link) {
  849. RETURN_FALSE;
  850. }
  851. /* hash it up */
  852. if (zend_register_persistent_resource(hash, sizeof(hash)-1, ib_link, le_plink) == NULL) {
  853. free(ib_link);
  854. RETURN_FALSE;
  855. }
  856. RETVAL_RES(zend_register_resource(ib_link, le_plink));
  857. ++IBG(num_persistent);
  858. }
  859. ib_link->handle = db_handle;
  860. ib_link->dialect = largs[DLECT] ? (unsigned short)largs[DLECT] : SQL_DIALECT_CURRENT;
  861. ib_link->tr_list = NULL;
  862. ib_link->event_head = NULL;
  863. ++IBG(num_links);
  864. } while (0);
  865. /* add it to the hash */
  866. new_index_ptr.ptr = (void *) Z_RES_P(return_value);
  867. new_index_ptr.type = le_index_ptr;
  868. zend_hash_str_update_mem(&EG(regular_list), hash, sizeof(hash)-1,
  869. (void *) &new_index_ptr, sizeof(zend_resource));
  870. if (IBG(default_link)) {
  871. zend_list_delete(IBG(default_link));
  872. }
  873. IBG(default_link) = Z_RES_P(return_value);
  874. Z_TRY_ADDREF_P(return_value);
  875. Z_TRY_ADDREF_P(return_value);
  876. }
  877. /* }}} */
  878. /* {{{ proto resource ibase_connect([string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]]])
  879. Open a connection to an InterBase database */
  880. PHP_FUNCTION(ibase_connect)
  881. {
  882. _php_ibase_connect(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
  883. }
  884. /* }}} */
  885. /* {{{ proto resource ibase_pconnect([string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]]])
  886. Open a persistent connection to an InterBase database */
  887. PHP_FUNCTION(ibase_pconnect)
  888. {
  889. _php_ibase_connect(INTERNAL_FUNCTION_PARAM_PASSTHRU, INI_INT("ibase.allow_persistent"));
  890. }
  891. /* }}} */
  892. /* {{{ proto bool ibase_close([resource link_identifier])
  893. Close an InterBase connection */
  894. PHP_FUNCTION(ibase_close)
  895. {
  896. zval *link_arg = NULL;
  897. zend_resource *link_res;
  898. RESET_ERRMSG;
  899. if (zend_parse_parameters(ZEND_NUM_ARGS(), "|r", &link_arg) == FAILURE) {
  900. return;
  901. }
  902. if (ZEND_NUM_ARGS() == 0) {
  903. link_res = IBG(default_link);
  904. CHECK_LINK(link_res);
  905. IBG(default_link) = NULL;
  906. } else {
  907. link_res = Z_RES_P(link_arg);
  908. }
  909. /* we have at least 3 additional references to this resource ??? */
  910. if (GC_REFCOUNT(link_res) < 4) {
  911. zend_list_close(link_res);
  912. } else {
  913. zend_list_delete(link_res);
  914. }
  915. RETURN_TRUE;
  916. }
  917. /* }}} */
  918. /* {{{ proto bool ibase_drop_db([resource link_identifier])
  919. Drop an InterBase database */
  920. PHP_FUNCTION(ibase_drop_db)
  921. {
  922. zval *link_arg = NULL;
  923. ibase_db_link *ib_link;
  924. ibase_tr_list *l;
  925. zend_resource *link_res;
  926. RESET_ERRMSG;
  927. if (zend_parse_parameters(ZEND_NUM_ARGS(), "|r", &link_arg) == FAILURE) {
  928. return;
  929. }
  930. if (ZEND_NUM_ARGS() == 0) {
  931. link_res = IBG(default_link);
  932. CHECK_LINK(link_res);
  933. IBG(default_link) = NULL;
  934. } else {
  935. link_res = Z_RES_P(link_arg);
  936. }
  937. ib_link = (ibase_db_link *)zend_fetch_resource2(link_res, LE_LINK, le_link, le_plink);
  938. if (!ib_link) {
  939. RETURN_FALSE;
  940. }
  941. if (isc_drop_database(IB_STATUS, &ib_link->handle)) {
  942. _php_ibase_error();
  943. RETURN_FALSE;
  944. }
  945. /* isc_drop_database() doesn't invalidate the transaction handles */
  946. for (l = ib_link->tr_list; l != NULL; l = l->next) {
  947. if (l->trans != NULL) l->trans->handle = 0;
  948. }
  949. zend_list_delete(link_res);
  950. RETURN_TRUE;
  951. }
  952. /* }}} */
  953. /* {{{ proto resource ibase_trans([int trans_args [, resource link_identifier [, ... ], int trans_args [, resource link_identifier [, ... ]] [, ...]]])
  954. Start a transaction over one or several databases */
  955. #define TPB_MAX_SIZE (8*sizeof(char))
  956. PHP_FUNCTION(ibase_trans)
  957. {
  958. unsigned short i, link_cnt = 0, tpb_len = 0;
  959. int argn = ZEND_NUM_ARGS();
  960. char last_tpb[TPB_MAX_SIZE];
  961. ibase_db_link **ib_link = NULL;
  962. ibase_trans *ib_trans;
  963. isc_tr_handle tr_handle = 0;
  964. ISC_STATUS result;
  965. RESET_ERRMSG;
  966. /* (1+argn) is an upper bound for the number of links this trans connects to */
  967. ib_link = (ibase_db_link **) safe_emalloc(sizeof(ibase_db_link *),1+argn,0);
  968. if (argn > 0) {
  969. zend_long trans_argl = 0;
  970. char *tpb;
  971. ISC_TEB *teb;
  972. zval *args = NULL;
  973. if (zend_parse_parameters(argn, "+", &args, &argn) == FAILURE) {
  974. efree(ib_link);
  975. RETURN_FALSE;
  976. }
  977. teb = (ISC_TEB *) safe_emalloc(sizeof(ISC_TEB),argn,0);
  978. tpb = (char *) safe_emalloc(TPB_MAX_SIZE,argn,0);
  979. /* enumerate all the arguments: assume every non-resource argument
  980. specifies modifiers for the link ids that follow it */
  981. for (i = 0; i < argn; ++i) {
  982. if (Z_TYPE(args[i]) == IS_RESOURCE) {
  983. if ((ib_link[link_cnt] = (ibase_db_link *)zend_fetch_resource2_ex(&args[i], LE_LINK, le_link, le_plink)) == NULL) {
  984. efree(teb);
  985. efree(tpb);
  986. efree(ib_link);
  987. RETURN_FALSE;
  988. }
  989. /* copy the most recent modifier string into tbp[] */
  990. memcpy(&tpb[TPB_MAX_SIZE * link_cnt], last_tpb, TPB_MAX_SIZE);
  991. /* add a database handle to the TEB with the most recently specified set of modifiers */
  992. teb[link_cnt].db_ptr = &ib_link[link_cnt]->handle;
  993. teb[link_cnt].tpb_len = tpb_len;
  994. teb[link_cnt].tpb_ptr = &tpb[TPB_MAX_SIZE * link_cnt];
  995. ++link_cnt;
  996. } else {
  997. tpb_len = 0;
  998. convert_to_long_ex(&args[i]);
  999. trans_argl = Z_LVAL(args[i]);
  1000. if (trans_argl != PHP_IBASE_DEFAULT) {
  1001. last_tpb[tpb_len++] = isc_tpb_version3;
  1002. /* access mode */
  1003. if (PHP_IBASE_READ == (trans_argl & PHP_IBASE_READ)) {
  1004. last_tpb[tpb_len++] = isc_tpb_read;
  1005. } else if (PHP_IBASE_WRITE == (trans_argl & PHP_IBASE_WRITE)) {
  1006. last_tpb[tpb_len++] = isc_tpb_write;
  1007. }
  1008. /* isolation level */
  1009. if (PHP_IBASE_COMMITTED == (trans_argl & PHP_IBASE_COMMITTED)) {
  1010. last_tpb[tpb_len++] = isc_tpb_read_committed;
  1011. if (PHP_IBASE_REC_VERSION == (trans_argl & PHP_IBASE_REC_VERSION)) {
  1012. last_tpb[tpb_len++] = isc_tpb_rec_version;
  1013. } else if (PHP_IBASE_REC_NO_VERSION == (trans_argl & PHP_IBASE_REC_NO_VERSION)) {
  1014. last_tpb[tpb_len++] = isc_tpb_no_rec_version;
  1015. }
  1016. } else if (PHP_IBASE_CONSISTENCY == (trans_argl & PHP_IBASE_CONSISTENCY)) {
  1017. last_tpb[tpb_len++] = isc_tpb_consistency;
  1018. } else if (PHP_IBASE_CONCURRENCY == (trans_argl & PHP_IBASE_CONCURRENCY)) {
  1019. last_tpb[tpb_len++] = isc_tpb_concurrency;
  1020. }
  1021. /* lock resolution */
  1022. if (PHP_IBASE_NOWAIT == (trans_argl & PHP_IBASE_NOWAIT)) {
  1023. last_tpb[tpb_len++] = isc_tpb_nowait;
  1024. } else if (PHP_IBASE_WAIT == (trans_argl & PHP_IBASE_WAIT)) {
  1025. last_tpb[tpb_len++] = isc_tpb_wait;
  1026. }
  1027. }
  1028. }
  1029. }
  1030. if (link_cnt > 0) {
  1031. result = isc_start_multiple(IB_STATUS, &tr_handle, link_cnt, teb);
  1032. }
  1033. efree(tpb);
  1034. efree(teb);
  1035. }
  1036. if (link_cnt == 0) {
  1037. link_cnt = 1;
  1038. if ((ib_link[0] = (ibase_db_link *)zend_fetch_resource2(IBG(default_link), LE_LINK, le_link, le_plink)) == NULL) {
  1039. efree(ib_link);
  1040. RETURN_FALSE;
  1041. }
  1042. result = isc_start_transaction(IB_STATUS, &tr_handle, 1, &ib_link[0]->handle, tpb_len, last_tpb);
  1043. }
  1044. /* start the transaction */
  1045. if (result) {
  1046. _php_ibase_error();
  1047. efree(ib_link);
  1048. RETURN_FALSE;
  1049. }
  1050. /* register the transaction in our own data structures */
  1051. ib_trans = (ibase_trans *) safe_emalloc(link_cnt-1, sizeof(ibase_db_link *), sizeof(ibase_trans));
  1052. ib_trans->handle = tr_handle;
  1053. ib_trans->link_cnt = link_cnt;
  1054. ib_trans->affected_rows = 0;
  1055. for (i = 0; i < link_cnt; ++i) {
  1056. ibase_tr_list **l;
  1057. ib_trans->db_link[i] = ib_link[i];
  1058. /* the first item in the connection-transaction list is reserved for the default transaction */
  1059. if (ib_link[i]->tr_list == NULL) {
  1060. ib_link[i]->tr_list = (ibase_tr_list *) emalloc(sizeof(ibase_tr_list));
  1061. ib_link[i]->tr_list->trans = NULL;
  1062. ib_link[i]->tr_list->next = NULL;
  1063. }
  1064. /* link the transaction into the connection-transaction list */
  1065. for (l = &ib_link[i]->tr_list; *l != NULL; l = &(*l)->next);
  1066. *l = (ibase_tr_list *) emalloc(sizeof(ibase_tr_list));
  1067. (*l)->trans = ib_trans;
  1068. (*l)->next = NULL;
  1069. }
  1070. efree(ib_link);
  1071. RETVAL_RES(zend_register_resource(ib_trans, le_trans));
  1072. Z_TRY_ADDREF_P(return_value);
  1073. }
  1074. /* }}} */
  1075. int _php_ibase_def_trans(ibase_db_link *ib_link, ibase_trans **trans) /* {{{ */
  1076. {
  1077. if (ib_link == NULL) {
  1078. php_error_docref(NULL, E_WARNING, "Invalid database link");
  1079. return FAILURE;
  1080. }
  1081. /* the first item in the connection-transaction list is reserved for the default transaction */
  1082. if (ib_link->tr_list == NULL) {
  1083. ib_link->tr_list = (ibase_tr_list *) emalloc(sizeof(ibase_tr_list));
  1084. ib_link->tr_list->trans = NULL;
  1085. ib_link->tr_list->next = NULL;
  1086. }
  1087. if (*trans == NULL) {
  1088. ibase_trans *tr = ib_link->tr_list->trans;
  1089. if (tr == NULL) {
  1090. tr = (ibase_trans *) emalloc(sizeof(ibase_trans));
  1091. tr->handle = 0;
  1092. tr->link_cnt = 1;
  1093. tr->affected_rows = 0;
  1094. tr->db_link[0] = ib_link;
  1095. ib_link->tr_list->trans = tr;
  1096. }
  1097. if (tr->handle == 0) {
  1098. if (isc_start_transaction(IB_STATUS, &tr->handle, 1, &ib_link->handle, 0, NULL)) {
  1099. _php_ibase_error();
  1100. return FAILURE;
  1101. }
  1102. }
  1103. *trans = tr;
  1104. }
  1105. return SUCCESS;
  1106. }
  1107. /* }}} */
  1108. static void _php_ibase_trans_end(INTERNAL_FUNCTION_PARAMETERS, int commit) /* {{{ */
  1109. {
  1110. ibase_trans *trans = NULL;
  1111. int res_id = 0;
  1112. ISC_STATUS result;
  1113. ibase_db_link *ib_link;
  1114. zval *arg = NULL;
  1115. RESET_ERRMSG;
  1116. if (zend_parse_parameters(ZEND_NUM_ARGS(), "|r", &arg) == FAILURE) {
  1117. return;
  1118. }
  1119. if (ZEND_NUM_ARGS() == 0) {
  1120. ib_link = (ibase_db_link *)zend_fetch_resource2(IBG(default_link), LE_LINK, le_link, le_plink);
  1121. if (ib_link->tr_list == NULL || ib_link->tr_list->trans == NULL) {
  1122. /* this link doesn't have a default transaction */
  1123. _php_ibase_module_error("Default link has no default transaction");
  1124. RETURN_FALSE;
  1125. }
  1126. trans = ib_link->tr_list->trans;
  1127. } else {
  1128. /* one id was passed, could be db or trans id */
  1129. if (Z_RES_P(arg)->type == le_trans) {
  1130. trans = (ibase_trans *)zend_fetch_resource_ex(arg, LE_TRANS, le_trans);
  1131. res_id = Z_RES_P(arg)->handle;
  1132. } else {
  1133. ib_link = (ibase_db_link *)zend_fetch_resource2_ex(arg, LE_LINK, le_link, le_plink);
  1134. if (ib_link->tr_list == NULL || ib_link->tr_list->trans == NULL) {
  1135. /* this link doesn't have a default transaction */
  1136. _php_ibase_module_error("Link has no default transaction");
  1137. RETURN_FALSE;
  1138. }
  1139. trans = ib_link->tr_list->trans;
  1140. }
  1141. }
  1142. switch (commit) {
  1143. default: /* == case ROLLBACK: */
  1144. result = isc_rollback_transaction(IB_STATUS, &trans->handle);
  1145. break;
  1146. case COMMIT:
  1147. result = isc_commit_transaction(IB_STATUS, &trans->handle);
  1148. break;
  1149. case (ROLLBACK | RETAIN):
  1150. result = isc_rollback_retaining(IB_STATUS, &trans->handle);
  1151. break;
  1152. case (COMMIT | RETAIN):
  1153. result = isc_commit_retaining(IB_STATUS, &trans->handle);
  1154. break;
  1155. }
  1156. if (result) {
  1157. _php_ibase_error();
  1158. RETURN_FALSE;
  1159. }
  1160. /* Don't try to destroy implicitly opened transaction from list... */
  1161. if ((commit & RETAIN) == 0 && res_id != 0) {
  1162. zend_list_delete(Z_RES_P(arg));
  1163. }
  1164. RETURN_TRUE;
  1165. }
  1166. /* }}} */
  1167. /* {{{ proto bool ibase_commit( resource link_identifier )
  1168. Commit transaction */
  1169. PHP_FUNCTION(ibase_commit)
  1170. {
  1171. _php_ibase_trans_end(INTERNAL_FUNCTION_PARAM_PASSTHRU, COMMIT);
  1172. }
  1173. /* }}} */
  1174. /* {{{ proto bool ibase_rollback( resource link_identifier )
  1175. Rollback transaction */
  1176. PHP_FUNCTION(ibase_rollback)
  1177. {
  1178. _php_ibase_trans_end(INTERNAL_FUNCTION_PARAM_PASSTHRU, ROLLBACK);
  1179. }
  1180. /* }}} */
  1181. /* {{{ proto bool ibase_commit_ret( resource link_identifier )
  1182. Commit transaction and retain the transaction context */
  1183. PHP_FUNCTION(ibase_commit_ret)
  1184. {
  1185. _php_ibase_trans_end(INTERNAL_FUNCTION_PARAM_PASSTHRU, COMMIT | RETAIN);
  1186. }
  1187. /* }}} */
  1188. /* {{{ proto bool ibase_rollback_ret( resource link_identifier )
  1189. Rollback transaction and retain the transaction context */
  1190. PHP_FUNCTION(ibase_rollback_ret)
  1191. {
  1192. _php_ibase_trans_end(INTERNAL_FUNCTION_PARAM_PASSTHRU, ROLLBACK | RETAIN);
  1193. }
  1194. /* }}} */
  1195. /* {{{ proto int ibase_gen_id(string generator [, int increment [, resource link_identifier ]])
  1196. Increments the named generator and returns its new value */
  1197. PHP_FUNCTION(ibase_gen_id)
  1198. {
  1199. zval *link = NULL;
  1200. char query[128], *generator;
  1201. size_t gen_len;
  1202. zend_long inc = 1;
  1203. ibase_db_link *ib_link;
  1204. ibase_trans *trans = NULL;
  1205. XSQLDA out_sqlda;
  1206. ISC_INT64 result;
  1207. RESET_ERRMSG;
  1208. if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "s|lr", &generator, &gen_len,
  1209. &inc, &link)) {
  1210. RETURN_FALSE;
  1211. }
  1212. if (gen_len > 31) {
  1213. php_error_docref(NULL, E_WARNING, "Invalid generator name");
  1214. RETURN_FALSE;
  1215. }
  1216. PHP_IBASE_LINK_TRANS(link, ib_link, trans);
  1217. snprintf(query, sizeof(query), "SELECT GEN_ID(%s,%ld) FROM rdb$database", generator, inc);
  1218. /* allocate a minimal descriptor area */
  1219. out_sqlda.sqln = out_sqlda.sqld = 1;
  1220. out_sqlda.version = SQLDA_CURRENT_VERSION;
  1221. /* allocate the field for the result */
  1222. out_sqlda.sqlvar[0].sqltype = SQL_INT64;
  1223. out_sqlda.sqlvar[0].sqlscale = 0;
  1224. out_sqlda.sqlvar[0].sqllen = sizeof(result);
  1225. out_sqlda.sqlvar[0].sqldata = (void*) &result;
  1226. /* execute the query */
  1227. if (isc_dsql_exec_immed2(IB_STATUS, &ib_link->handle, &trans->handle, 0, query,
  1228. SQL_DIALECT_CURRENT, NULL, &out_sqlda)) {
  1229. _php_ibase_error();
  1230. RETURN_FALSE;
  1231. }
  1232. /* don't return the generator value as a string unless it doesn't fit in a long */
  1233. #if SIZEOF_ZEND_LONG < 8
  1234. if (result < ZEND_LONG_MIN || result > ZEND_LONG_MAX) {
  1235. char *res;
  1236. int l;
  1237. l = spprintf(&res, 0, "%" LL_MASK "d", result);
  1238. RETURN_STRINGL(res, l);
  1239. }
  1240. #endif
  1241. RETURN_LONG((zend_long)result);
  1242. }
  1243. /* }}} */
  1244. #endif /* HAVE_IBASE */
  1245. /*
  1246. * Local variables:
  1247. * tab-width: 4
  1248. * c-basic-offset: 4
  1249. * End:
  1250. * vim600: sw=4 ts=4 fdm=marker
  1251. * vim<600: sw=4 ts=4
  1252. */