dba_db4.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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: Marcus Boerger <helly@php.net> |
  16. | Sascha Schumann <sascha@schumann.cx> |
  17. +----------------------------------------------------------------------+
  18. */
  19. /* $Id$ */
  20. #ifdef HAVE_CONFIG_H
  21. #include "config.h"
  22. #endif
  23. #include "php.h"
  24. #if DBA_DB4
  25. #include "php_db4.h"
  26. #include <sys/stat.h>
  27. #include <string.h>
  28. #ifdef DB4_INCLUDE_FILE
  29. #include DB4_INCLUDE_FILE
  30. #else
  31. #include <db.h>
  32. #endif
  33. static void php_dba_db4_errcall_fcn(
  34. #if (DB_VERSION_MAJOR > 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 3))
  35. const DB_ENV *dbenv,
  36. #endif
  37. const char *errpfx, const char *msg)
  38. {
  39. TSRMLS_FETCH();
  40. #if (DB_VERSION_MAJOR == 5 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR == 8))
  41. /* Bug 51086, Berkeley DB 4.8.26 */
  42. /* This code suppresses a BDB 4.8+ error message, thus keeping PHP test compatibility */
  43. {
  44. const char *function = get_active_function_name(TSRMLS_C);
  45. if (function && (!strcmp(function,"dba_popen") || !strcmp(function,"dba_open"))
  46. && (!strncmp(msg, "fop_read_meta", sizeof("fop_read_meta")-1)
  47. || !strncmp(msg, "BDB0004 fop_read_meta", sizeof("BDB0004 fop_read_meta")-1))) {
  48. return;
  49. }
  50. }
  51. #endif
  52. php_error_docref(NULL TSRMLS_CC, E_NOTICE, "%s%s", errpfx?errpfx:"", msg);
  53. }
  54. #define DB4_DATA dba_db4_data *dba = info->dbf
  55. #define DB4_GKEY \
  56. DBT gkey; \
  57. memset(&gkey, 0, sizeof(gkey)); \
  58. gkey.data = (char *) key; gkey.size = keylen
  59. typedef struct {
  60. DB *dbp;
  61. DBC *cursor;
  62. } dba_db4_data;
  63. DBA_OPEN_FUNC(db4)
  64. {
  65. DB *dbp = NULL;
  66. DBTYPE type;
  67. int gmode = 0, err;
  68. int filemode = 0644;
  69. struct stat check_stat;
  70. int s = VCWD_STAT(info->path, &check_stat);
  71. #if (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR <= 7) /* Bug 51086 */
  72. if (!s && !check_stat.st_size) {
  73. info->mode = DBA_TRUNC; /* force truncate */
  74. }
  75. type = info->mode == DBA_READER ? DB_UNKNOWN :
  76. info->mode == DBA_TRUNC ? DB_BTREE :
  77. s ? DB_BTREE : DB_UNKNOWN;
  78. gmode = info->mode == DBA_READER ? DB_RDONLY :
  79. (info->mode == DBA_CREAT && s) ? DB_CREATE :
  80. (info->mode == DBA_CREAT && !s) ? 0 :
  81. info->mode == DBA_WRITER ? 0 :
  82. info->mode == DBA_TRUNC ? DB_CREATE | DB_TRUNCATE : -1;
  83. #else
  84. if (!s && !check_stat.st_size) {
  85. info->mode = DBA_CREAT; /* force creation */
  86. }
  87. type = info->mode == DBA_READER ? DB_UNKNOWN :
  88. (info->mode == DBA_TRUNC || info->mode == DBA_CREAT) ? DB_BTREE :
  89. s ? DB_BTREE : DB_UNKNOWN;
  90. gmode = info->mode == DBA_READER ? DB_RDONLY :
  91. info->mode == DBA_CREAT ? DB_CREATE :
  92. info->mode == DBA_WRITER ? 0 :
  93. info->mode == DBA_TRUNC ? DB_CREATE | DB_TRUNCATE : -1;
  94. #endif
  95. if (gmode == -1) {
  96. return FAILURE; /* not possible */
  97. }
  98. if (info->flags & DBA_PERSISTENT) {
  99. gmode |= DB_THREAD;
  100. }
  101. if (info->argc > 0) {
  102. convert_to_long_ex(info->argv[0]);
  103. filemode = Z_LVAL_PP(info->argv[0]);
  104. }
  105. if ((err=db_create(&dbp, NULL, 0)) == 0) {
  106. dbp->set_errcall(dbp, php_dba_db4_errcall_fcn);
  107. if (
  108. #if (DB_VERSION_MAJOR > 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1))
  109. (err=dbp->open(dbp, 0, info->path, NULL, type, gmode, filemode)) == 0) {
  110. #else
  111. (err=dbp->open(dbp, info->path, NULL, type, gmode, filemode)) == 0) {
  112. #endif
  113. dba_db4_data *data;
  114. data = pemalloc(sizeof(*data), info->flags&DBA_PERSISTENT);
  115. data->dbp = dbp;
  116. data->cursor = NULL;
  117. info->dbf = data;
  118. return SUCCESS;
  119. } else {
  120. dbp->close(dbp, 0);
  121. *error = db_strerror(err);
  122. }
  123. } else {
  124. *error = db_strerror(err);
  125. }
  126. return FAILURE;
  127. }
  128. DBA_CLOSE_FUNC(db4)
  129. {
  130. DB4_DATA;
  131. if (dba->cursor) dba->cursor->c_close(dba->cursor);
  132. dba->dbp->close(dba->dbp, 0);
  133. pefree(dba, info->flags&DBA_PERSISTENT);
  134. }
  135. DBA_FETCH_FUNC(db4)
  136. {
  137. DBT gval;
  138. char *new = NULL;
  139. DB4_DATA;
  140. DB4_GKEY;
  141. memset(&gval, 0, sizeof(gval));
  142. if (info->flags & DBA_PERSISTENT) {
  143. gval.flags |= DB_DBT_MALLOC;
  144. }
  145. if (!dba->dbp->get(dba->dbp, NULL, &gkey, &gval, 0)) {
  146. if (newlen) *newlen = gval.size;
  147. new = estrndup(gval.data, gval.size);
  148. if (info->flags & DBA_PERSISTENT) {
  149. free(gval.data);
  150. }
  151. }
  152. return new;
  153. }
  154. DBA_UPDATE_FUNC(db4)
  155. {
  156. DBT gval;
  157. DB4_DATA;
  158. DB4_GKEY;
  159. memset(&gval, 0, sizeof(gval));
  160. gval.data = (char *) val;
  161. gval.size = vallen;
  162. if (!dba->dbp->put(dba->dbp, NULL, &gkey, &gval,
  163. mode == 1 ? DB_NOOVERWRITE : 0)) {
  164. return SUCCESS;
  165. }
  166. return FAILURE;
  167. }
  168. DBA_EXISTS_FUNC(db4)
  169. {
  170. DBT gval;
  171. DB4_DATA;
  172. DB4_GKEY;
  173. memset(&gval, 0, sizeof(gval));
  174. if (info->flags & DBA_PERSISTENT) {
  175. gval.flags |= DB_DBT_MALLOC;
  176. }
  177. if (!dba->dbp->get(dba->dbp, NULL, &gkey, &gval, 0)) {
  178. if (info->flags & DBA_PERSISTENT) {
  179. free(gval.data);
  180. }
  181. return SUCCESS;
  182. }
  183. return FAILURE;
  184. }
  185. DBA_DELETE_FUNC(db4)
  186. {
  187. DB4_DATA;
  188. DB4_GKEY;
  189. return dba->dbp->del(dba->dbp, NULL, &gkey, 0) ? FAILURE : SUCCESS;
  190. }
  191. DBA_FIRSTKEY_FUNC(db4)
  192. {
  193. DB4_DATA;
  194. if (dba->cursor) {
  195. dba->cursor->c_close(dba->cursor);
  196. }
  197. dba->cursor = NULL;
  198. if (dba->dbp->cursor(dba->dbp, NULL, &dba->cursor, 0) != 0) {
  199. return NULL;
  200. }
  201. /* we should introduce something like PARAM_PASSTHRU... */
  202. return dba_nextkey_db4(info, newlen TSRMLS_CC);
  203. }
  204. DBA_NEXTKEY_FUNC(db4)
  205. {
  206. DB4_DATA;
  207. DBT gkey, gval;
  208. char *nkey = NULL;
  209. memset(&gkey, 0, sizeof(gkey));
  210. memset(&gval, 0, sizeof(gval));
  211. if (info->flags & DBA_PERSISTENT) {
  212. gkey.flags |= DB_DBT_MALLOC;
  213. gval.flags |= DB_DBT_MALLOC;
  214. }
  215. if (dba->cursor && dba->cursor->c_get(dba->cursor, &gkey, &gval, DB_NEXT) == 0) {
  216. if (gkey.data) {
  217. nkey = estrndup(gkey.data, gkey.size);
  218. if (newlen) *newlen = gkey.size;
  219. }
  220. if (info->flags & DBA_PERSISTENT) {
  221. if (gkey.data) {
  222. free(gkey.data);
  223. }
  224. if (gval.data) {
  225. free(gval.data);
  226. }
  227. }
  228. }
  229. return nkey;
  230. }
  231. DBA_OPTIMIZE_FUNC(db4)
  232. {
  233. return SUCCESS;
  234. }
  235. DBA_SYNC_FUNC(db4)
  236. {
  237. DB4_DATA;
  238. return dba->dbp->sync(dba->dbp, 0) ? FAILURE : SUCCESS;
  239. }
  240. DBA_INFO_FUNC(db4)
  241. {
  242. return estrdup(DB_VERSION_STRING);
  243. }
  244. #endif
  245. /*
  246. * Local variables:
  247. * tab-width: 4
  248. * c-basic-offset: 4
  249. * End:
  250. * vim600: sw=4 ts=4 fdm=marker
  251. * vim<600: sw=4 ts=4
  252. */