ibase_service.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629
  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: Ard Biesheuvel <a.k.biesheuvel@its.tudelft.nl> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifdef HAVE_CONFIG_H
  19. #include "config.h"
  20. #endif
  21. #include "php.h"
  22. #if HAVE_IBASE
  23. #include "php_interbase.h"
  24. #include "php_ibase_includes.h"
  25. typedef struct {
  26. isc_svc_handle handle;
  27. char *hostname;
  28. char *username;
  29. zend_resource *res;
  30. } ibase_service;
  31. static int le_service;
  32. static void _php_ibase_free_service(zend_resource *rsrc) /* {{{ */
  33. {
  34. ibase_service *sv = (ibase_service *) rsrc->ptr;
  35. if (isc_service_detach(IB_STATUS, &sv->handle)) {
  36. _php_ibase_error();
  37. }
  38. if (sv->hostname) {
  39. efree(sv->hostname);
  40. }
  41. if (sv->username) {
  42. efree(sv->username);
  43. }
  44. efree(sv);
  45. }
  46. /* }}} */
  47. /* the svc api seems to get confused after an error has occurred,
  48. so invalidate the handle on errors */
  49. #define IBASE_SVC_ERROR(svm) \
  50. do { zend_list_delete(svm->res); _php_ibase_error(); } while (0)
  51. void php_ibase_service_minit(INIT_FUNC_ARGS) /* {{{ */
  52. {
  53. le_service = zend_register_list_destructors_ex(_php_ibase_free_service, NULL,
  54. "interbase service manager handle", module_number);
  55. /* backup options */
  56. REGISTER_LONG_CONSTANT("IBASE_BKP_IGNORE_CHECKSUMS", isc_spb_bkp_ignore_checksums, CONST_PERSISTENT);
  57. REGISTER_LONG_CONSTANT("IBASE_BKP_IGNORE_LIMBO", isc_spb_bkp_ignore_limbo, CONST_PERSISTENT);
  58. REGISTER_LONG_CONSTANT("IBASE_BKP_METADATA_ONLY", isc_spb_bkp_metadata_only, CONST_PERSISTENT);
  59. REGISTER_LONG_CONSTANT("IBASE_BKP_NO_GARBAGE_COLLECT", isc_spb_bkp_no_garbage_collect, CONST_PERSISTENT);
  60. REGISTER_LONG_CONSTANT("IBASE_BKP_OLD_DESCRIPTIONS", isc_spb_bkp_old_descriptions, CONST_PERSISTENT);
  61. REGISTER_LONG_CONSTANT("IBASE_BKP_NON_TRANSPORTABLE", isc_spb_bkp_non_transportable, CONST_PERSISTENT);
  62. REGISTER_LONG_CONSTANT("IBASE_BKP_CONVERT", isc_spb_bkp_convert, CONST_PERSISTENT);
  63. /* restore options */
  64. REGISTER_LONG_CONSTANT("IBASE_RES_DEACTIVATE_IDX", isc_spb_res_deactivate_idx, CONST_PERSISTENT);
  65. REGISTER_LONG_CONSTANT("IBASE_RES_NO_SHADOW", isc_spb_res_no_shadow, CONST_PERSISTENT);
  66. REGISTER_LONG_CONSTANT("IBASE_RES_NO_VALIDITY", isc_spb_res_no_validity, CONST_PERSISTENT);
  67. REGISTER_LONG_CONSTANT("IBASE_RES_ONE_AT_A_TIME", isc_spb_res_one_at_a_time, CONST_PERSISTENT);
  68. REGISTER_LONG_CONSTANT("IBASE_RES_REPLACE", isc_spb_res_replace, CONST_PERSISTENT);
  69. REGISTER_LONG_CONSTANT("IBASE_RES_CREATE", isc_spb_res_create, CONST_PERSISTENT);
  70. REGISTER_LONG_CONSTANT("IBASE_RES_USE_ALL_SPACE", isc_spb_res_use_all_space, CONST_PERSISTENT);
  71. /* manage options */
  72. REGISTER_LONG_CONSTANT("IBASE_PRP_PAGE_BUFFERS", isc_spb_prp_page_buffers, CONST_PERSISTENT);
  73. REGISTER_LONG_CONSTANT("IBASE_PRP_SWEEP_INTERVAL", isc_spb_prp_sweep_interval, CONST_PERSISTENT);
  74. REGISTER_LONG_CONSTANT("IBASE_PRP_SHUTDOWN_DB", isc_spb_prp_shutdown_db, CONST_PERSISTENT);
  75. REGISTER_LONG_CONSTANT("IBASE_PRP_DENY_NEW_TRANSACTIONS", isc_spb_prp_deny_new_transactions, CONST_PERSISTENT);
  76. REGISTER_LONG_CONSTANT("IBASE_PRP_DENY_NEW_ATTACHMENTS", isc_spb_prp_deny_new_attachments, CONST_PERSISTENT);
  77. REGISTER_LONG_CONSTANT("IBASE_PRP_RESERVE_SPACE", isc_spb_prp_reserve_space, CONST_PERSISTENT);
  78. REGISTER_LONG_CONSTANT("IBASE_PRP_RES_USE_FULL", isc_spb_prp_res_use_full, CONST_PERSISTENT);
  79. REGISTER_LONG_CONSTANT("IBASE_PRP_RES", isc_spb_prp_res, CONST_PERSISTENT);
  80. REGISTER_LONG_CONSTANT("IBASE_PRP_WRITE_MODE", isc_spb_prp_write_mode, CONST_PERSISTENT);
  81. REGISTER_LONG_CONSTANT("IBASE_PRP_WM_ASYNC", isc_spb_prp_wm_async, CONST_PERSISTENT);
  82. REGISTER_LONG_CONSTANT("IBASE_PRP_WM_SYNC", isc_spb_prp_wm_sync, CONST_PERSISTENT);
  83. REGISTER_LONG_CONSTANT("IBASE_PRP_ACCESS_MODE", isc_spb_prp_access_mode, CONST_PERSISTENT);
  84. REGISTER_LONG_CONSTANT("IBASE_PRP_AM_READONLY", isc_spb_prp_am_readonly, CONST_PERSISTENT);
  85. REGISTER_LONG_CONSTANT("IBASE_PRP_AM_READWRITE", isc_spb_prp_am_readwrite, CONST_PERSISTENT);
  86. REGISTER_LONG_CONSTANT("IBASE_PRP_SET_SQL_DIALECT", isc_spb_prp_set_sql_dialect, CONST_PERSISTENT);
  87. REGISTER_LONG_CONSTANT("IBASE_PRP_ACTIVATE", isc_spb_prp_activate, CONST_PERSISTENT);
  88. REGISTER_LONG_CONSTANT("IBASE_PRP_DB_ONLINE", isc_spb_prp_db_online, CONST_PERSISTENT);
  89. /* repair options */
  90. REGISTER_LONG_CONSTANT("IBASE_RPR_CHECK_DB", isc_spb_rpr_check_db, CONST_PERSISTENT);
  91. REGISTER_LONG_CONSTANT("IBASE_RPR_IGNORE_CHECKSUM", isc_spb_rpr_ignore_checksum, CONST_PERSISTENT);
  92. REGISTER_LONG_CONSTANT("IBASE_RPR_KILL_SHADOWS", isc_spb_rpr_kill_shadows, CONST_PERSISTENT);
  93. REGISTER_LONG_CONSTANT("IBASE_RPR_MEND_DB", isc_spb_rpr_mend_db, CONST_PERSISTENT);
  94. REGISTER_LONG_CONSTANT("IBASE_RPR_VALIDATE_DB", isc_spb_rpr_validate_db, CONST_PERSISTENT);
  95. REGISTER_LONG_CONSTANT("IBASE_RPR_FULL", isc_spb_rpr_full, CONST_PERSISTENT);
  96. REGISTER_LONG_CONSTANT("IBASE_RPR_SWEEP_DB", isc_spb_rpr_sweep_db, CONST_PERSISTENT);
  97. /* db info arguments */
  98. REGISTER_LONG_CONSTANT("IBASE_STS_DATA_PAGES", isc_spb_sts_data_pages, CONST_PERSISTENT);
  99. REGISTER_LONG_CONSTANT("IBASE_STS_DB_LOG", isc_spb_sts_db_log, CONST_PERSISTENT);
  100. REGISTER_LONG_CONSTANT("IBASE_STS_HDR_PAGES", isc_spb_sts_hdr_pages, CONST_PERSISTENT);
  101. REGISTER_LONG_CONSTANT("IBASE_STS_IDX_PAGES", isc_spb_sts_idx_pages, CONST_PERSISTENT);
  102. REGISTER_LONG_CONSTANT("IBASE_STS_SYS_RELATIONS", isc_spb_sts_sys_relations, CONST_PERSISTENT);
  103. /* server info arguments */
  104. REGISTER_LONG_CONSTANT("IBASE_SVC_SERVER_VERSION", isc_info_svc_server_version, CONST_PERSISTENT);
  105. REGISTER_LONG_CONSTANT("IBASE_SVC_IMPLEMENTATION", isc_info_svc_implementation, CONST_PERSISTENT);
  106. REGISTER_LONG_CONSTANT("IBASE_SVC_GET_ENV", isc_info_svc_get_env, CONST_PERSISTENT);
  107. REGISTER_LONG_CONSTANT("IBASE_SVC_GET_ENV_LOCK", isc_info_svc_get_env_lock, CONST_PERSISTENT);
  108. REGISTER_LONG_CONSTANT("IBASE_SVC_GET_ENV_MSG", isc_info_svc_get_env_msg, CONST_PERSISTENT);
  109. REGISTER_LONG_CONSTANT("IBASE_SVC_USER_DBPATH", isc_info_svc_user_dbpath, CONST_PERSISTENT);
  110. REGISTER_LONG_CONSTANT("IBASE_SVC_SVR_DB_INFO", isc_info_svc_svr_db_info, CONST_PERSISTENT);
  111. REGISTER_LONG_CONSTANT("IBASE_SVC_GET_USERS", isc_info_svc_get_users, CONST_PERSISTENT);
  112. }
  113. /* }}} */
  114. static void _php_ibase_user(INTERNAL_FUNCTION_PARAMETERS, char operation) /* {{{ */
  115. {
  116. /* user = 0, password = 1, first_name = 2, middle_name = 3, last_name = 4 */
  117. static char const user_flags[] = { isc_spb_sec_username, isc_spb_sec_password,
  118. isc_spb_sec_firstname, isc_spb_sec_middlename, isc_spb_sec_lastname };
  119. char buf[128], *args[] = { NULL, NULL, NULL, NULL, NULL };
  120. int i, args_len[] = { 0, 0, 0, 0, 0 };
  121. unsigned short spb_len = 1;
  122. zval *res;
  123. ibase_service *svm;
  124. RESET_ERRMSG;
  125. if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(),
  126. (operation == isc_action_svc_delete_user) ? "rs" : "rss|sss",
  127. &res, &args[0], &args_len[0], &args[1], &args_len[1], &args[2], &args_len[2],
  128. &args[3], &args_len[3], &args[4], &args_len[4])) {
  129. RETURN_FALSE;
  130. }
  131. svm = (ibase_service *)zend_fetch_resource_ex(res, "Interbase service manager handle",
  132. le_service);
  133. buf[0] = operation;
  134. for (i = 0; i < sizeof(user_flags); ++i) {
  135. if (args[i] != NULL) {
  136. int chunk = slprintf(&buf[spb_len], sizeof(buf) - spb_len, "%c%c%c%s",
  137. user_flags[i], (char)args_len[i], (char)(args_len[i] >> 8), args[i]);
  138. if ((spb_len + chunk) > sizeof(buf) || chunk <= 0) {
  139. _php_ibase_module_error("Internal error: insufficient buffer space for SPB (%d)", spb_len);
  140. RETURN_FALSE;
  141. }
  142. spb_len += chunk;
  143. }
  144. }
  145. /* now start the job */
  146. if (isc_service_start(IB_STATUS, &svm->handle, NULL, spb_len, buf)) {
  147. IBASE_SVC_ERROR(svm);
  148. RETURN_FALSE;
  149. }
  150. RETURN_TRUE;
  151. }
  152. /* }}} */
  153. /* {{{ proto bool ibase_add_user(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])
  154. Add a user to security database */
  155. PHP_FUNCTION(ibase_add_user)
  156. {
  157. _php_ibase_user(INTERNAL_FUNCTION_PARAM_PASSTHRU, isc_action_svc_add_user);
  158. }
  159. /* }}} */
  160. /* {{{ proto bool ibase_modify_user(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])
  161. Modify a user in security database */
  162. PHP_FUNCTION(ibase_modify_user)
  163. {
  164. _php_ibase_user(INTERNAL_FUNCTION_PARAM_PASSTHRU, isc_action_svc_modify_user);
  165. }
  166. /* }}} */
  167. /* {{{ proto bool ibase_delete_user(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])
  168. Delete a user from security database */
  169. PHP_FUNCTION(ibase_delete_user)
  170. {
  171. _php_ibase_user(INTERNAL_FUNCTION_PARAM_PASSTHRU, isc_action_svc_delete_user);
  172. }
  173. /* }}} */
  174. /* {{{ proto resource ibase_service_attach(string host, string dba_username, string dba_password)
  175. Connect to the service manager */
  176. PHP_FUNCTION(ibase_service_attach)
  177. {
  178. size_t hlen, ulen, plen, spb_len;
  179. ibase_service *svm;
  180. char buf[128], *host, *user, *pass, *loc;
  181. isc_svc_handle handle = 0;
  182. RESET_ERRMSG;
  183. if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "sss",
  184. &host, &hlen, &user, &ulen, &pass, &plen)) {
  185. RETURN_FALSE;
  186. }
  187. /* construct the spb, hack the service name into it as well */
  188. spb_len = slprintf(buf, sizeof(buf), "%c%c%c%c%s%c%c%s" "%s:service_mgr",
  189. isc_spb_version, isc_spb_current_version, isc_spb_user_name, (char)ulen,
  190. user, isc_spb_password, (char)plen, pass, host);
  191. if (spb_len > sizeof(buf) || spb_len == -1) {
  192. _php_ibase_module_error("Internal error: insufficient buffer space for SPB (%zd)", spb_len);
  193. RETURN_FALSE;
  194. }
  195. spb_len -= hlen + 12;
  196. loc = buf + spb_len; /* points to %s:service_mgr part */
  197. /* attach to the service manager */
  198. if (isc_service_attach(IB_STATUS, 0, loc, &handle, (unsigned short)spb_len, buf)) {
  199. _php_ibase_error();
  200. RETURN_FALSE;
  201. }
  202. svm = (ibase_service*)emalloc(sizeof(ibase_service));
  203. svm->handle = handle;
  204. svm->hostname = estrdup(host);
  205. svm->username = estrdup(user);
  206. RETVAL_RES(zend_register_resource(svm, le_service));
  207. Z_TRY_ADDREF_P(return_value);
  208. svm->res = Z_RES_P(return_value);
  209. }
  210. /* }}} */
  211. /* {{{ proto bool ibase_service_detach(resource service_handle)
  212. Disconnect from the service manager */
  213. PHP_FUNCTION(ibase_service_detach)
  214. {
  215. zval *res;
  216. RESET_ERRMSG;
  217. if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "r", &res)) {
  218. RETURN_FALSE;
  219. }
  220. zend_list_delete(Z_RES_P(res));
  221. RETURN_TRUE;
  222. }
  223. /* }}} */
  224. static void _php_ibase_service_query(INTERNAL_FUNCTION_PARAMETERS, /* {{{ */
  225. ibase_service *svm, char info_action)
  226. {
  227. static char spb[] = { isc_info_svc_timeout, 10, 0, 0, 0 };
  228. char res_buf[400], *result, *heap_buf = NULL, *heap_p;
  229. zend_long heap_buf_size = 200, line_len;
  230. /* info about users requires an action first */
  231. if (info_action == isc_info_svc_get_users) {
  232. static char action[] = { isc_action_svc_display_user };
  233. if (isc_service_start(IB_STATUS, &svm->handle, NULL, sizeof(action), action)) {
  234. IBASE_SVC_ERROR(svm);
  235. RETURN_FALSE;
  236. }
  237. }
  238. query_loop:
  239. result = res_buf;
  240. if (isc_service_query(IB_STATUS, &svm->handle, NULL, sizeof(spb), spb,
  241. 1, &info_action, sizeof(res_buf), res_buf)) {
  242. IBASE_SVC_ERROR(svm);
  243. RETURN_FALSE;
  244. }
  245. while (*result != isc_info_end) {
  246. switch (*result++) {
  247. default:
  248. RETURN_FALSE;
  249. case isc_info_svc_line:
  250. if (! (line_len = isc_vax_integer(result, 2))) {
  251. /* done */
  252. if (heap_buf) {
  253. RETVAL_STRING(heap_buf);
  254. efree(heap_buf);
  255. return;
  256. } else {
  257. RETURN_TRUE;
  258. }
  259. }
  260. if (!heap_buf || (heap_p - heap_buf + line_len +2) > heap_buf_size) {
  261. zend_long res_size = heap_buf ? heap_p - heap_buf : 0;
  262. while (heap_buf_size < (res_size + line_len +2)) {
  263. heap_buf_size *= 2;
  264. }
  265. heap_buf = (char*) erealloc(heap_buf, heap_buf_size);
  266. heap_p = heap_buf + res_size;
  267. }
  268. result += 2;
  269. *(result+line_len) = 0;
  270. snprintf(heap_p, heap_buf_size - (heap_p - heap_buf), "%s\n", result);
  271. heap_p += line_len +1;
  272. goto query_loop; /* repeat until result is exhausted */
  273. case isc_info_svc_server_version:
  274. case isc_info_svc_implementation:
  275. case isc_info_svc_get_env:
  276. case isc_info_svc_get_env_lock:
  277. case isc_info_svc_get_env_msg:
  278. case isc_info_svc_user_dbpath:
  279. RETURN_STRINGL(result + 2, isc_vax_integer(result, 2));
  280. case isc_info_svc_svr_db_info:
  281. array_init(return_value);
  282. do {
  283. switch (*result++) {
  284. int len;
  285. case isc_spb_num_att:
  286. add_assoc_long(return_value, "attachments", isc_vax_integer(result,4));
  287. result += 4;
  288. break;
  289. case isc_spb_num_db:
  290. add_assoc_long(return_value, "databases", isc_vax_integer(result,4));
  291. result += 4;
  292. break;
  293. case isc_spb_dbname:
  294. len = isc_vax_integer(result,2);
  295. add_next_index_stringl(return_value, result +2, len);
  296. result += len+2;
  297. }
  298. } while (*result != isc_info_flag_end);
  299. return;
  300. case isc_info_svc_get_users: {
  301. zval user;
  302. array_init(return_value);
  303. while (*result != isc_info_end) {
  304. switch (*result++) {
  305. int len;
  306. case isc_spb_sec_username:
  307. /* it appears that the username is always first */
  308. array_init(&user);
  309. add_next_index_zval(return_value, &user);
  310. len = isc_vax_integer(result,2);
  311. add_assoc_stringl(&user, "user_name", result +2, len);
  312. result += len+2;
  313. break;
  314. case isc_spb_sec_firstname:
  315. len = isc_vax_integer(result,2);
  316. add_assoc_stringl(&user, "first_name", result +2, len);
  317. result += len+2;
  318. break;
  319. case isc_spb_sec_middlename:
  320. len = isc_vax_integer(result,2);
  321. add_assoc_stringl(&user, "middle_name", result +2, len);
  322. result += len+2;
  323. break;
  324. case isc_spb_sec_lastname:
  325. len = isc_vax_integer(result,2);
  326. add_assoc_stringl(&user, "last_name", result +2, len);
  327. result += len+2;
  328. break;
  329. case isc_spb_sec_userid:
  330. add_assoc_long(&user, "user_id", isc_vax_integer(result, 4));
  331. result += 4;
  332. break;
  333. case isc_spb_sec_groupid:
  334. add_assoc_long(&user, "group_id", isc_vax_integer(result, 4));
  335. result += 4;
  336. break;
  337. }
  338. }
  339. return;
  340. }
  341. }
  342. }
  343. }
  344. /* }}} */
  345. static void _php_ibase_backup_restore(INTERNAL_FUNCTION_PARAMETERS, char operation) /* {{{ */
  346. {
  347. /**
  348. * It appears that the service API is a little bit confused about which flag
  349. * to use for the source and destination in the case of a restore operation.
  350. * When passing the backup file as isc_spb_dbname and the destination db as
  351. * bpk_file, things work well.
  352. */
  353. zval *res;
  354. char *db, *bk, buf[200];
  355. size_t dblen, bklen, spb_len;
  356. zend_long opts = 0;
  357. zend_bool verbose = 0;
  358. ibase_service *svm;
  359. RESET_ERRMSG;
  360. if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "rss|lb",
  361. &res, &db, &dblen, &bk, &bklen, &opts, &verbose)) {
  362. RETURN_FALSE;
  363. }
  364. svm = (ibase_service *)zend_fetch_resource_ex(res,
  365. "Interbase service manager handle", le_service);
  366. /* fill the param buffer */
  367. spb_len = slprintf(buf, sizeof(buf), "%c%c%c%c%s%c%c%c%s%c%c%c%c%c",
  368. operation, isc_spb_dbname, (char)dblen, (char)(dblen >> 8), db,
  369. isc_spb_bkp_file, (char)bklen, (char)(bklen >> 8), bk, isc_spb_options,
  370. (char)opts,(char)(opts >> 8), (char)(opts >> 16), (char)(opts >> 24));
  371. if (verbose) {
  372. buf[spb_len++] = isc_spb_verbose;
  373. }
  374. if (spb_len > sizeof(buf) || spb_len <= 0) {
  375. _php_ibase_module_error("Internal error: insufficient buffer space for SPB (%zd)", spb_len);
  376. RETURN_FALSE;
  377. }
  378. /* now start the backup/restore job */
  379. if (isc_service_start(IB_STATUS, &svm->handle, NULL, (unsigned short)spb_len, buf)) {
  380. IBASE_SVC_ERROR(svm);
  381. RETURN_FALSE;
  382. }
  383. if (!verbose) {
  384. RETURN_TRUE;
  385. } else {
  386. _php_ibase_service_query(INTERNAL_FUNCTION_PARAM_PASSTHRU, svm, isc_info_svc_line);
  387. }
  388. }
  389. /* }}} */
  390. /* {{{ proto mixed ibase_backup(resource service_handle, string source_db, string dest_file [, int options [, bool verbose]])
  391. Initiates a backup task in the service manager and returns immediately */
  392. PHP_FUNCTION(ibase_backup)
  393. {
  394. _php_ibase_backup_restore(INTERNAL_FUNCTION_PARAM_PASSTHRU, isc_action_svc_backup);
  395. }
  396. /* }}} */
  397. /* {{{ proto mixed ibase_restore(resource service_handle, string source_file, string dest_db [, int options [, bool verbose]])
  398. Initiates a restore task in the service manager and returns immediately */
  399. PHP_FUNCTION(ibase_restore)
  400. {
  401. _php_ibase_backup_restore(INTERNAL_FUNCTION_PARAM_PASSTHRU, isc_action_svc_restore);
  402. }
  403. /* }}} */
  404. static void _php_ibase_service_action(INTERNAL_FUNCTION_PARAMETERS, char svc_action) /* {{{ */
  405. {
  406. zval *res;
  407. char buf[128], *db;
  408. size_t dblen;
  409. int spb_len;
  410. zend_long action, argument = 0;
  411. ibase_service *svm;
  412. RESET_ERRMSG;
  413. if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "rsl|l",
  414. &res, &db, &dblen, &action, &argument)) {
  415. RETURN_FALSE;
  416. }
  417. svm = (ibase_service *)zend_fetch_resource_ex(res,
  418. "Interbase service manager handle", le_service);
  419. if (svc_action == isc_action_svc_db_stats) {
  420. switch (action) {
  421. default:
  422. goto unknown_option;
  423. case isc_spb_sts_data_pages:
  424. case isc_spb_sts_db_log:
  425. case isc_spb_sts_hdr_pages:
  426. case isc_spb_sts_idx_pages:
  427. case isc_spb_sts_sys_relations:
  428. goto options_argument;
  429. }
  430. } else {
  431. /* these actions all expect different types of arguments */
  432. switch (action) {
  433. default:
  434. unknown_option:
  435. _php_ibase_module_error("Unrecognised option (" ZEND_LONG_FMT ")", action);
  436. RETURN_FALSE;
  437. case isc_spb_rpr_check_db:
  438. case isc_spb_rpr_ignore_checksum:
  439. case isc_spb_rpr_kill_shadows:
  440. case isc_spb_rpr_mend_db:
  441. case isc_spb_rpr_validate_db:
  442. case isc_spb_rpr_sweep_db:
  443. svc_action = isc_action_svc_repair;
  444. case isc_spb_prp_activate:
  445. case isc_spb_prp_db_online:
  446. options_argument:
  447. argument |= action;
  448. action = isc_spb_options;
  449. case isc_spb_prp_page_buffers:
  450. case isc_spb_prp_sweep_interval:
  451. case isc_spb_prp_shutdown_db:
  452. case isc_spb_prp_deny_new_transactions:
  453. case isc_spb_prp_deny_new_attachments:
  454. case isc_spb_prp_set_sql_dialect:
  455. spb_len = slprintf(buf, sizeof(buf), "%c%c%c%c%s%c%c%c%c%c",
  456. svc_action, isc_spb_dbname, (char)dblen, (char)(dblen >> 8), db,
  457. (char)action, (char)argument, (char)(argument >> 8), (char)(argument >> 16),
  458. (char)(argument >> 24));
  459. break;
  460. case isc_spb_prp_reserve_space:
  461. case isc_spb_prp_write_mode:
  462. case isc_spb_prp_access_mode:
  463. spb_len = slprintf(buf, sizeof(buf), "%c%c%c%c%s%c%c",
  464. isc_action_svc_properties, isc_spb_dbname, (char)dblen, (char)(dblen >> 8),
  465. db, (char)action, (char)argument);
  466. }
  467. }
  468. if (spb_len > sizeof(buf) || spb_len == -1) {
  469. _php_ibase_module_error("Internal error: insufficient buffer space for SPB (%d)", spb_len);
  470. RETURN_FALSE;
  471. }
  472. if (isc_service_start(IB_STATUS, &svm->handle, NULL, (unsigned short)spb_len, buf)) {
  473. IBASE_SVC_ERROR(svm);
  474. RETURN_FALSE;
  475. }
  476. if (svc_action == isc_action_svc_db_stats) {
  477. _php_ibase_service_query(INTERNAL_FUNCTION_PARAM_PASSTHRU, svm, isc_info_svc_line);
  478. } else {
  479. RETURN_TRUE;
  480. }
  481. }
  482. /* }}} */
  483. /* {{{ proto bool ibase_maintain_db(resource service_handle, string db, int action [, int argument])
  484. Execute a maintenance command on the database server */
  485. PHP_FUNCTION(ibase_maintain_db)
  486. {
  487. _php_ibase_service_action(INTERNAL_FUNCTION_PARAM_PASSTHRU, isc_action_svc_properties);
  488. }
  489. /* }}} */
  490. /* {{{ proto string ibase_db_info(resource service_handle, string db, int action [, int argument])
  491. Request statistics about a database */
  492. PHP_FUNCTION(ibase_db_info)
  493. {
  494. _php_ibase_service_action(INTERNAL_FUNCTION_PARAM_PASSTHRU, isc_action_svc_db_stats);
  495. }
  496. /* }}} */
  497. /* {{{ proto string ibase_server_info(resource service_handle, int action)
  498. Request information about a database server */
  499. PHP_FUNCTION(ibase_server_info)
  500. {
  501. zval *res;
  502. zend_long action;
  503. ibase_service *svm;
  504. RESET_ERRMSG;
  505. if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "rl", &res, &action)) {
  506. RETURN_FALSE;
  507. }
  508. svm = (ibase_service *)zend_fetch_resource_ex(res,
  509. "Interbase service manager handle", le_service);
  510. _php_ibase_service_query(INTERNAL_FUNCTION_PARAM_PASSTHRU, svm, (char)action);
  511. }
  512. /* }}} */
  513. #else
  514. void php_ibase_register_service_constants(INIT_FUNC_ARGS) { /* nop */ }
  515. #endif /* HAVE_IBASE */
  516. /*
  517. * Local variables:
  518. * tab-width: 4
  519. * c-basic-offset: 4
  520. * End:
  521. * vim600: sw=4 ts=4 fdm=marker
  522. * vim<600: sw=4 ts=4
  523. */