pgsql_driver.c 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295
  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: Edin Kadribasic <edink@emini.dk> |
  16. | Ilia Alshanestsky <ilia@prohost.org> |
  17. | Wez Furlong <wez@php.net> |
  18. +----------------------------------------------------------------------+
  19. */
  20. /* $Id$ */
  21. #ifdef HAVE_CONFIG_H
  22. #include "config.h"
  23. #endif
  24. #include "php.h"
  25. #include "php_ini.h"
  26. #include "ext/standard/info.h"
  27. #include "ext/standard/php_string.h"
  28. #include "main/php_network.h"
  29. #include "pdo/php_pdo.h"
  30. #include "pdo/php_pdo_driver.h"
  31. #include "pdo/php_pdo_error.h"
  32. #include "ext/standard/file.h"
  33. #undef PACKAGE_BUGREPORT
  34. #undef PACKAGE_NAME
  35. #undef PACKAGE_STRING
  36. #undef PACKAGE_TARNAME
  37. #undef PACKAGE_VERSION
  38. #include "pg_config.h" /* needed for PG_VERSION */
  39. #include "php_pdo_pgsql.h"
  40. #include "php_pdo_pgsql_int.h"
  41. #include "zend_exceptions.h"
  42. static int pgsql_handle_in_transaction(pdo_dbh_t *dbh TSRMLS_DC);
  43. static char * _pdo_pgsql_trim_message(const char *message, int persistent)
  44. {
  45. register int i = strlen(message)-1;
  46. char *tmp;
  47. if (i>1 && (message[i-1] == '\r' || message[i-1] == '\n') && message[i] == '.') {
  48. --i;
  49. }
  50. while (i>0 && (message[i] == '\r' || message[i] == '\n')) {
  51. --i;
  52. }
  53. ++i;
  54. tmp = pemalloc(i + 1, persistent);
  55. memcpy(tmp, message, i);
  56. tmp[i] = '\0';
  57. return tmp;
  58. }
  59. static char * _pdo_pgsql_escape_credentials(char *str TSRMLS_DC)
  60. {
  61. int len;
  62. if (str) {
  63. return php_addcslashes(str, strlen(str), &len, 0, "\\'", sizeof("\\'") TSRMLS_CC);
  64. }
  65. return NULL;
  66. }
  67. int _pdo_pgsql_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, int errcode, const char *sqlstate, const char *msg, const char *file, int line TSRMLS_DC) /* {{{ */
  68. {
  69. pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
  70. pdo_error_type *pdo_err = stmt ? &stmt->error_code : &dbh->error_code;
  71. pdo_pgsql_error_info *einfo = &H->einfo;
  72. char *errmsg = PQerrorMessage(H->server);
  73. einfo->errcode = errcode;
  74. einfo->file = file;
  75. einfo->line = line;
  76. if (einfo->errmsg) {
  77. pefree(einfo->errmsg, dbh->is_persistent);
  78. einfo->errmsg = NULL;
  79. }
  80. if (sqlstate == NULL || strlen(sqlstate) >= sizeof(pdo_error_type)) {
  81. strcpy(*pdo_err, "HY000");
  82. }
  83. else {
  84. strcpy(*pdo_err, sqlstate);
  85. }
  86. if (msg) {
  87. einfo->errmsg = estrdup(msg);
  88. }
  89. else if (errmsg) {
  90. einfo->errmsg = _pdo_pgsql_trim_message(errmsg, dbh->is_persistent);
  91. }
  92. if (!dbh->methods) {
  93. zend_throw_exception_ex(php_pdo_get_exception(), einfo->errcode TSRMLS_CC, "SQLSTATE[%s] [%d] %s",
  94. *pdo_err, einfo->errcode, einfo->errmsg);
  95. }
  96. return errcode;
  97. }
  98. /* }}} */
  99. static void _pdo_pgsql_notice(pdo_dbh_t *dbh, const char *message) /* {{{ */
  100. {
  101. /* pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data; */
  102. }
  103. /* }}} */
  104. static int pdo_pgsql_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info TSRMLS_DC) /* {{{ */
  105. {
  106. pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
  107. pdo_pgsql_error_info *einfo = &H->einfo;
  108. if (einfo->errcode) {
  109. add_next_index_long(info, einfo->errcode);
  110. add_next_index_string(info, einfo->errmsg, 1);
  111. }
  112. return 1;
  113. }
  114. /* }}} */
  115. /* {{{ pdo_pgsql_create_lob_stream */
  116. static size_t pgsql_lob_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC)
  117. {
  118. struct pdo_pgsql_lob_self *self = (struct pdo_pgsql_lob_self*)stream->abstract;
  119. return lo_write(self->conn, self->lfd, (char*)buf, count);
  120. }
  121. static size_t pgsql_lob_read(php_stream *stream, char *buf, size_t count TSRMLS_DC)
  122. {
  123. struct pdo_pgsql_lob_self *self = (struct pdo_pgsql_lob_self*)stream->abstract;
  124. return lo_read(self->conn, self->lfd, buf, count);
  125. }
  126. static int pgsql_lob_close(php_stream *stream, int close_handle TSRMLS_DC)
  127. {
  128. struct pdo_pgsql_lob_self *self = (struct pdo_pgsql_lob_self*)stream->abstract;
  129. pdo_dbh_t *dbh = self->dbh;
  130. if (close_handle) {
  131. lo_close(self->conn, self->lfd);
  132. }
  133. efree(self);
  134. php_pdo_dbh_delref(dbh TSRMLS_CC);
  135. return 0;
  136. }
  137. static int pgsql_lob_flush(php_stream *stream TSRMLS_DC)
  138. {
  139. return 0;
  140. }
  141. static int pgsql_lob_seek(php_stream *stream, off_t offset, int whence,
  142. off_t *newoffset TSRMLS_DC)
  143. {
  144. struct pdo_pgsql_lob_self *self = (struct pdo_pgsql_lob_self*)stream->abstract;
  145. int pos = lo_lseek(self->conn, self->lfd, offset, whence);
  146. *newoffset = pos;
  147. return pos >= 0 ? 0 : -1;
  148. }
  149. php_stream_ops pdo_pgsql_lob_stream_ops = {
  150. pgsql_lob_write,
  151. pgsql_lob_read,
  152. pgsql_lob_close,
  153. pgsql_lob_flush,
  154. "pdo_pgsql lob stream",
  155. pgsql_lob_seek,
  156. NULL,
  157. NULL,
  158. NULL
  159. };
  160. php_stream *pdo_pgsql_create_lob_stream(pdo_dbh_t *dbh, int lfd, Oid oid TSRMLS_DC)
  161. {
  162. php_stream *stm;
  163. struct pdo_pgsql_lob_self *self = ecalloc(1, sizeof(*self));
  164. pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
  165. self->dbh = dbh;
  166. self->lfd = lfd;
  167. self->oid = oid;
  168. self->conn = H->server;
  169. stm = php_stream_alloc(&pdo_pgsql_lob_stream_ops, self, 0, "r+b");
  170. if (stm) {
  171. php_pdo_dbh_addref(dbh TSRMLS_CC);
  172. return stm;
  173. }
  174. efree(self);
  175. return NULL;
  176. }
  177. /* }}} */
  178. static int pgsql_handle_closer(pdo_dbh_t *dbh TSRMLS_DC) /* {{{ */
  179. {
  180. pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
  181. if (H) {
  182. if (H->server) {
  183. PQfinish(H->server);
  184. H->server = NULL;
  185. }
  186. if (H->einfo.errmsg) {
  187. pefree(H->einfo.errmsg, dbh->is_persistent);
  188. H->einfo.errmsg = NULL;
  189. }
  190. pefree(H, dbh->is_persistent);
  191. dbh->driver_data = NULL;
  192. }
  193. return 0;
  194. }
  195. /* }}} */
  196. static int pgsql_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, pdo_stmt_t *stmt, zval *driver_options TSRMLS_DC)
  197. {
  198. pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
  199. pdo_pgsql_stmt *S = ecalloc(1, sizeof(pdo_pgsql_stmt));
  200. int scrollable;
  201. int ret;
  202. char *nsql = NULL;
  203. int nsql_len = 0;
  204. int emulate = 0;
  205. int execute_only = 0;
  206. S->H = H;
  207. stmt->driver_data = S;
  208. stmt->methods = &pgsql_stmt_methods;
  209. scrollable = pdo_attr_lval(driver_options, PDO_ATTR_CURSOR,
  210. PDO_CURSOR_FWDONLY TSRMLS_CC) == PDO_CURSOR_SCROLL;
  211. if (scrollable) {
  212. if (S->cursor_name) {
  213. efree(S->cursor_name);
  214. }
  215. spprintf(&S->cursor_name, 0, "pdo_crsr_%08x", ++H->stmt_counter);
  216. emulate = 1;
  217. } else if (driver_options) {
  218. if (pdo_attr_lval(driver_options, PDO_PGSQL_ATTR_DISABLE_NATIVE_PREPARED_STATEMENT, H->disable_native_prepares TSRMLS_CC) == 1) {
  219. php_error_docref(NULL TSRMLS_CC, E_DEPRECATED, "PDO::PGSQL_ATTR_DISABLE_NATIVE_PREPARED_STATEMENT is deprecated, use PDO::ATTR_EMULATE_PREPARES instead");
  220. emulate = 1;
  221. }
  222. if (pdo_attr_lval(driver_options, PDO_ATTR_EMULATE_PREPARES, H->emulate_prepares TSRMLS_CC) == 1) {
  223. emulate = 1;
  224. }
  225. if (pdo_attr_lval(driver_options, PDO_PGSQL_ATTR_DISABLE_PREPARES, H->disable_prepares TSRMLS_CC) == 1) {
  226. execute_only = 1;
  227. }
  228. } else {
  229. emulate = H->disable_native_prepares || H->emulate_prepares;
  230. execute_only = H->disable_prepares;
  231. }
  232. if (!emulate && PQprotocolVersion(H->server) > 2) {
  233. stmt->supports_placeholders = PDO_PLACEHOLDER_NAMED;
  234. stmt->named_rewrite_template = "$%d";
  235. ret = pdo_parse_params(stmt, (char*)sql, sql_len, &nsql, &nsql_len TSRMLS_CC);
  236. if (ret == 1) {
  237. /* query was re-written */
  238. sql = nsql;
  239. } else if (ret == -1) {
  240. /* couldn't grok it */
  241. strcpy(dbh->error_code, stmt->error_code);
  242. return 0;
  243. }
  244. if (!execute_only) {
  245. /* prepared query: set the query name and defer the
  246. actual prepare until the first execute call */
  247. spprintf(&S->stmt_name, 0, "pdo_stmt_%08x", ++H->stmt_counter);
  248. }
  249. if (nsql) {
  250. S->query = nsql;
  251. } else {
  252. S->query = estrdup(sql);
  253. }
  254. return 1;
  255. }
  256. stmt->supports_placeholders = PDO_PLACEHOLDER_NONE;
  257. return 1;
  258. }
  259. static long pgsql_handle_doer(pdo_dbh_t *dbh, const char *sql, long sql_len TSRMLS_DC)
  260. {
  261. pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
  262. PGresult *res;
  263. long ret = 1;
  264. ExecStatusType qs;
  265. if (!(res = PQexec(H->server, sql))) {
  266. /* fatal error */
  267. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
  268. return -1;
  269. }
  270. qs = PQresultStatus(res);
  271. if (qs != PGRES_COMMAND_OK && qs != PGRES_TUPLES_OK) {
  272. pdo_pgsql_error(dbh, qs, pdo_pgsql_sqlstate(res));
  273. PQclear(res);
  274. return -1;
  275. }
  276. H->pgoid = PQoidValue(res);
  277. ret = (qs == PGRES_COMMAND_OK) ? atol(PQcmdTuples(res)) : 0L;
  278. PQclear(res);
  279. return ret;
  280. }
  281. static int pgsql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC)
  282. {
  283. unsigned char *escaped;
  284. pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
  285. size_t tmp_len;
  286. switch (paramtype) {
  287. case PDO_PARAM_LOB:
  288. /* escapedlen returned by PQescapeBytea() accounts for trailing 0 */
  289. escaped = PQescapeByteaConn(H->server, (unsigned char *)unquoted, (size_t)unquotedlen, &tmp_len);
  290. *quotedlen = (int)tmp_len + 1;
  291. *quoted = emalloc(*quotedlen + 1);
  292. memcpy((*quoted)+1, escaped, *quotedlen-2);
  293. (*quoted)[0] = '\'';
  294. (*quoted)[*quotedlen-1] = '\'';
  295. (*quoted)[*quotedlen] = '\0';
  296. PQfreemem(escaped);
  297. break;
  298. default:
  299. *quoted = safe_emalloc(2, unquotedlen, 3);
  300. (*quoted)[0] = '\'';
  301. *quotedlen = PQescapeStringConn(H->server, *quoted + 1, unquoted, (size_t)unquotedlen, NULL);
  302. (*quoted)[*quotedlen + 1] = '\'';
  303. (*quoted)[*quotedlen + 2] = '\0';
  304. *quotedlen += 2;
  305. }
  306. return 1;
  307. }
  308. static char *pdo_pgsql_last_insert_id(pdo_dbh_t *dbh, const char *name, unsigned int *len TSRMLS_DC)
  309. {
  310. pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
  311. char *id = NULL;
  312. PGresult *res;
  313. ExecStatusType status;
  314. zend_bool savepoint = 0;
  315. if (name == NULL) {
  316. savepoint = pgsql_handle_in_transaction(dbh TSRMLS_CC);
  317. if (savepoint) {
  318. /* The savepoint is overwritten every time. */
  319. (void)PQexec(H->server, "SAVEPOINT _php_lastid_savepoint");
  320. }
  321. res = PQexec(H->server, "SELECT LASTVAL()");
  322. } else {
  323. const char *q[1];
  324. q[0] = name;
  325. res = PQexecParams(H->server, "SELECT CURRVAL($1)", 1, NULL, q, NULL, NULL, 0);
  326. }
  327. status = PQresultStatus(res);
  328. if (res && (status == PGRES_TUPLES_OK)) {
  329. id = estrdup((char *)PQgetvalue(res, 0, 0));
  330. *len = PQgetlength(res, 0, 0);
  331. } else {
  332. if (savepoint) {
  333. (void)PQexec(H->server, "ROLLBACK TO SAVEPOINT _php_lastid_savepoint");
  334. }
  335. pdo_pgsql_error(dbh, status, pdo_pgsql_sqlstate(res));
  336. *len = spprintf(&id, 0, "%ld", (long) H->pgoid);
  337. }
  338. if (savepoint) {
  339. (void)PQexec(H->server, "RELEASE SAVEPOINT _php_lastid_savepoint");
  340. }
  341. if (res) {
  342. PQclear(res);
  343. }
  344. return id;
  345. }
  346. static int pdo_pgsql_get_attribute(pdo_dbh_t *dbh, long attr, zval *return_value TSRMLS_DC)
  347. {
  348. pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
  349. switch (attr) {
  350. case PDO_ATTR_EMULATE_PREPARES:
  351. ZVAL_BOOL(return_value, H->emulate_prepares);
  352. break;
  353. case PDO_PGSQL_ATTR_DISABLE_NATIVE_PREPARED_STATEMENT:
  354. php_error_docref(NULL TSRMLS_CC, E_DEPRECATED, "PDO::PGSQL_ATTR_DISABLE_NATIVE_PREPARED_STATEMENT is deprecated, use PDO::ATTR_EMULATE_PREPARES instead");
  355. ZVAL_BOOL(return_value, H->disable_native_prepares);
  356. break;
  357. case PDO_PGSQL_ATTR_DISABLE_PREPARES:
  358. ZVAL_BOOL(return_value, H->disable_prepares);
  359. break;
  360. case PDO_ATTR_CLIENT_VERSION:
  361. ZVAL_STRING(return_value, PG_VERSION, 1);
  362. break;
  363. case PDO_ATTR_SERVER_VERSION:
  364. if (PQprotocolVersion(H->server) >= 3) { /* PostgreSQL 7.4 or later */
  365. ZVAL_STRING(return_value, (char*)PQparameterStatus(H->server, "server_version"), 1);
  366. } else /* emulate above via a query */
  367. {
  368. PGresult *res = PQexec(H->server, "SELECT VERSION()");
  369. if (res && PQresultStatus(res) == PGRES_TUPLES_OK) {
  370. ZVAL_STRING(return_value, (char *)PQgetvalue(res, 0, 0), 1);
  371. }
  372. if (res) {
  373. PQclear(res);
  374. }
  375. }
  376. break;
  377. case PDO_ATTR_CONNECTION_STATUS:
  378. switch (PQstatus(H->server)) {
  379. case CONNECTION_STARTED:
  380. ZVAL_STRINGL(return_value, "Waiting for connection to be made.", sizeof("Waiting for connection to be made.")-1, 1);
  381. break;
  382. case CONNECTION_MADE:
  383. case CONNECTION_OK:
  384. ZVAL_STRINGL(return_value, "Connection OK; waiting to send.", sizeof("Connection OK; waiting to send.")-1, 1);
  385. break;
  386. case CONNECTION_AWAITING_RESPONSE:
  387. ZVAL_STRINGL(return_value, "Waiting for a response from the server.", sizeof("Waiting for a response from the server.")-1, 1);
  388. break;
  389. case CONNECTION_AUTH_OK:
  390. ZVAL_STRINGL(return_value, "Received authentication; waiting for backend start-up to finish.", sizeof("Received authentication; waiting for backend start-up to finish.")-1, 1);
  391. break;
  392. #ifdef CONNECTION_SSL_STARTUP
  393. case CONNECTION_SSL_STARTUP:
  394. ZVAL_STRINGL(return_value, "Negotiating SSL encryption.", sizeof("Negotiating SSL encryption.")-1, 1);
  395. break;
  396. #endif
  397. case CONNECTION_SETENV:
  398. ZVAL_STRINGL(return_value, "Negotiating environment-driven parameter settings.", sizeof("Negotiating environment-driven parameter settings.")-1, 1);
  399. break;
  400. case CONNECTION_BAD:
  401. default:
  402. ZVAL_STRINGL(return_value, "Bad connection.", sizeof("Bad connection.")-1, 1);
  403. break;
  404. }
  405. break;
  406. case PDO_ATTR_SERVER_INFO: {
  407. int spid = PQbackendPID(H->server);
  408. char *tmp;
  409. spprintf(&tmp, 0,
  410. "PID: %d; Client Encoding: %s; Is Superuser: %s; Session Authorization: %s; Date Style: %s",
  411. spid,
  412. (char*)PQparameterStatus(H->server, "client_encoding"),
  413. (char*)PQparameterStatus(H->server, "is_superuser"),
  414. (char*)PQparameterStatus(H->server, "session_authorization"),
  415. (char*)PQparameterStatus(H->server, "DateStyle"));
  416. ZVAL_STRING(return_value, tmp, 0);
  417. }
  418. break;
  419. default:
  420. return 0;
  421. }
  422. return 1;
  423. }
  424. /* {{{ */
  425. static int pdo_pgsql_check_liveness(pdo_dbh_t *dbh TSRMLS_DC)
  426. {
  427. pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
  428. if (PQstatus(H->server) == CONNECTION_BAD) {
  429. PQreset(H->server);
  430. }
  431. return (PQstatus(H->server) == CONNECTION_OK) ? SUCCESS : FAILURE;
  432. }
  433. /* }}} */
  434. static int pgsql_handle_in_transaction(pdo_dbh_t *dbh TSRMLS_DC)
  435. {
  436. pdo_pgsql_db_handle *H;
  437. H = (pdo_pgsql_db_handle *)dbh->driver_data;
  438. return PQtransactionStatus(H->server) > PQTRANS_IDLE;
  439. }
  440. static int pdo_pgsql_transaction_cmd(const char *cmd, pdo_dbh_t *dbh TSRMLS_DC)
  441. {
  442. pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
  443. PGresult *res;
  444. int ret = 1;
  445. res = PQexec(H->server, cmd);
  446. if (PQresultStatus(res) != PGRES_COMMAND_OK) {
  447. pdo_pgsql_error(dbh, PQresultStatus(res), pdo_pgsql_sqlstate(res));
  448. ret = 0;
  449. }
  450. PQclear(res);
  451. return ret;
  452. }
  453. static int pgsql_handle_begin(pdo_dbh_t *dbh TSRMLS_DC)
  454. {
  455. return pdo_pgsql_transaction_cmd("BEGIN", dbh TSRMLS_CC);
  456. }
  457. static int pgsql_handle_commit(pdo_dbh_t *dbh TSRMLS_DC)
  458. {
  459. int ret = pdo_pgsql_transaction_cmd("COMMIT", dbh TSRMLS_CC);
  460. /* When deferred constraints are used the commit could
  461. fail, and a ROLLBACK implicitly ran. See bug #67462 */
  462. if (!ret) {
  463. dbh->in_txn = pgsql_handle_in_transaction(dbh TSRMLS_CC);
  464. }
  465. return ret;
  466. }
  467. static int pgsql_handle_rollback(pdo_dbh_t *dbh TSRMLS_DC)
  468. {
  469. return pdo_pgsql_transaction_cmd("ROLLBACK", dbh TSRMLS_CC);
  470. }
  471. /* {{{ proto string PDO::pgsqlCopyFromArray(string $table_name , array $rows [, string $delimiter [, string $null_as ] [, string $fields])
  472. Returns true if the copy worked fine or false if error */
  473. static PHP_METHOD(PDO, pgsqlCopyFromArray)
  474. {
  475. pdo_dbh_t *dbh;
  476. pdo_pgsql_db_handle *H;
  477. zval *pg_rows;
  478. char *table_name, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL;
  479. int table_name_len, pg_delim_len = 0, pg_null_as_len = 0, pg_fields_len;
  480. char *query;
  481. PGresult *pgsql_result;
  482. ExecStatusType status;
  483. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s/a|sss",
  484. &table_name, &table_name_len, &pg_rows,
  485. &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) {
  486. return;
  487. }
  488. if (!zend_hash_num_elements(Z_ARRVAL_P(pg_rows))) {
  489. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot copy from an empty array");
  490. RETURN_FALSE;
  491. }
  492. dbh = zend_object_store_get_object(getThis() TSRMLS_CC);
  493. PDO_CONSTRUCT_CHECK;
  494. PDO_DBH_CLEAR_ERR();
  495. /* using pre-9.0 syntax as PDO_pgsql is 7.4+ compatible */
  496. if (pg_fields) {
  497. spprintf(&query, 0, "COPY %s (%s) FROM STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, pg_fields, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
  498. } else {
  499. spprintf(&query, 0, "COPY %s FROM STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
  500. }
  501. /* Obtain db Handle */
  502. H = (pdo_pgsql_db_handle *)dbh->driver_data;
  503. while ((pgsql_result = PQgetResult(H->server))) {
  504. PQclear(pgsql_result);
  505. }
  506. pgsql_result = PQexec(H->server, query);
  507. efree(query);
  508. query = NULL;
  509. if (pgsql_result) {
  510. status = PQresultStatus(pgsql_result);
  511. } else {
  512. status = (ExecStatusType) PQstatus(H->server);
  513. }
  514. if (status == PGRES_COPY_IN && pgsql_result) {
  515. int command_failed = 0;
  516. int buffer_len = 0;
  517. zval **tmp;
  518. HashPosition pos;
  519. PQclear(pgsql_result);
  520. zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(pg_rows), &pos);
  521. while (zend_hash_get_current_data_ex(Z_ARRVAL_P(pg_rows), (void **) &tmp, &pos) == SUCCESS) {
  522. int query_len;
  523. convert_to_string_ex(tmp);
  524. if (buffer_len < Z_STRLEN_PP(tmp)) {
  525. buffer_len = Z_STRLEN_PP(tmp);
  526. query = erealloc(query, buffer_len + 2); /* room for \n\0 */
  527. }
  528. memcpy(query, Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp));
  529. query_len = Z_STRLEN_PP(tmp);
  530. if (query[query_len - 1] != '\n') {
  531. query[query_len++] = '\n';
  532. }
  533. query[query_len] = '\0';
  534. if (PQputCopyData(H->server, query, query_len) != 1) {
  535. efree(query);
  536. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
  537. PDO_HANDLE_DBH_ERR();
  538. RETURN_FALSE;
  539. }
  540. zend_hash_move_forward_ex(Z_ARRVAL_P(pg_rows), &pos);
  541. }
  542. if (query) {
  543. efree(query);
  544. }
  545. if (PQputCopyEnd(H->server, NULL) != 1) {
  546. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
  547. PDO_HANDLE_DBH_ERR();
  548. RETURN_FALSE;
  549. }
  550. while ((pgsql_result = PQgetResult(H->server))) {
  551. if (PGRES_COMMAND_OK != PQresultStatus(pgsql_result)) {
  552. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, pdo_pgsql_sqlstate(pgsql_result));
  553. command_failed = 1;
  554. }
  555. PQclear(pgsql_result);
  556. }
  557. PDO_HANDLE_DBH_ERR();
  558. RETURN_BOOL(!command_failed);
  559. } else {
  560. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, pdo_pgsql_sqlstate(pgsql_result));
  561. PQclear(pgsql_result);
  562. PDO_HANDLE_DBH_ERR();
  563. RETURN_FALSE;
  564. }
  565. }
  566. /* }}} */
  567. /* {{{ proto string PDO::pgsqlCopyFromFile(string $table_name , string $filename [, string $delimiter [, string $null_as ] [, string $fields])
  568. Returns true if the copy worked fine or false if error */
  569. static PHP_METHOD(PDO, pgsqlCopyFromFile)
  570. {
  571. pdo_dbh_t *dbh;
  572. pdo_pgsql_db_handle *H;
  573. char *table_name, *filename, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL;
  574. int table_name_len, filename_len, pg_delim_len = 0, pg_null_as_len = 0, pg_fields_len;
  575. char *query;
  576. PGresult *pgsql_result;
  577. ExecStatusType status;
  578. php_stream *stream;
  579. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sp|sss",
  580. &table_name, &table_name_len, &filename, &filename_len,
  581. &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) {
  582. return;
  583. }
  584. /* Obtain db Handler */
  585. dbh = zend_object_store_get_object(getThis() TSRMLS_CC);
  586. PDO_CONSTRUCT_CHECK;
  587. PDO_DBH_CLEAR_ERR();
  588. stream = php_stream_open_wrapper_ex(filename, "rb", ENFORCE_SAFE_MODE, NULL, FG(default_context));
  589. if (!stream) {
  590. pdo_pgsql_error_msg(dbh, PGRES_FATAL_ERROR, "Unable to open the file");
  591. PDO_HANDLE_DBH_ERR();
  592. RETURN_FALSE;
  593. }
  594. /* using pre-9.0 syntax as PDO_pgsql is 7.4+ compatible */
  595. if (pg_fields) {
  596. spprintf(&query, 0, "COPY %s (%s) FROM STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, pg_fields, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
  597. } else {
  598. spprintf(&query, 0, "COPY %s FROM STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
  599. }
  600. H = (pdo_pgsql_db_handle *)dbh->driver_data;
  601. while ((pgsql_result = PQgetResult(H->server))) {
  602. PQclear(pgsql_result);
  603. }
  604. pgsql_result = PQexec(H->server, query);
  605. efree(query);
  606. if (pgsql_result) {
  607. status = PQresultStatus(pgsql_result);
  608. } else {
  609. status = (ExecStatusType) PQstatus(H->server);
  610. }
  611. if (status == PGRES_COPY_IN && pgsql_result) {
  612. char *buf;
  613. int command_failed = 0;
  614. size_t line_len = 0;
  615. PQclear(pgsql_result);
  616. while ((buf = php_stream_get_line(stream, NULL, 0, &line_len)) != NULL) {
  617. if (PQputCopyData(H->server, buf, line_len) != 1) {
  618. efree(buf);
  619. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
  620. php_stream_close(stream);
  621. PDO_HANDLE_DBH_ERR();
  622. RETURN_FALSE;
  623. }
  624. efree(buf);
  625. }
  626. php_stream_close(stream);
  627. if (PQputCopyEnd(H->server, NULL) != 1) {
  628. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
  629. PDO_HANDLE_DBH_ERR();
  630. RETURN_FALSE;
  631. }
  632. while ((pgsql_result = PQgetResult(H->server))) {
  633. if (PGRES_COMMAND_OK != PQresultStatus(pgsql_result)) {
  634. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, pdo_pgsql_sqlstate(pgsql_result));
  635. command_failed = 1;
  636. }
  637. PQclear(pgsql_result);
  638. }
  639. PDO_HANDLE_DBH_ERR();
  640. RETURN_BOOL(!command_failed);
  641. } else {
  642. php_stream_close(stream);
  643. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, pdo_pgsql_sqlstate(pgsql_result));
  644. PQclear(pgsql_result);
  645. PDO_HANDLE_DBH_ERR();
  646. RETURN_FALSE;
  647. }
  648. }
  649. /* }}} */
  650. /* {{{ proto string PDO::pgsqlCopyToFile(string $table_name , $filename, [string $delimiter [, string $null_as [, string $fields]]])
  651. Returns true if the copy worked fine or false if error */
  652. static PHP_METHOD(PDO, pgsqlCopyToFile)
  653. {
  654. pdo_dbh_t *dbh;
  655. pdo_pgsql_db_handle *H;
  656. char *table_name, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL, *filename = NULL;
  657. int table_name_len, pg_delim_len = 0, pg_null_as_len = 0, pg_fields_len, filename_len;
  658. char *query;
  659. PGresult *pgsql_result;
  660. ExecStatusType status;
  661. php_stream *stream;
  662. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sp|sss",
  663. &table_name, &table_name_len, &filename, &filename_len,
  664. &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) {
  665. return;
  666. }
  667. dbh = zend_object_store_get_object(getThis() TSRMLS_CC);
  668. PDO_CONSTRUCT_CHECK;
  669. PDO_DBH_CLEAR_ERR();
  670. H = (pdo_pgsql_db_handle *)dbh->driver_data;
  671. stream = php_stream_open_wrapper_ex(filename, "wb", ENFORCE_SAFE_MODE, NULL, FG(default_context));
  672. if (!stream) {
  673. pdo_pgsql_error_msg(dbh, PGRES_FATAL_ERROR, "Unable to open the file for writing");
  674. PDO_HANDLE_DBH_ERR();
  675. RETURN_FALSE;
  676. }
  677. while ((pgsql_result = PQgetResult(H->server))) {
  678. PQclear(pgsql_result);
  679. }
  680. /* using pre-9.0 syntax as PDO_pgsql is 7.4+ compatible */
  681. if (pg_fields) {
  682. spprintf(&query, 0, "COPY %s (%s) TO STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, pg_fields, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
  683. } else {
  684. spprintf(&query, 0, "COPY %s TO STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
  685. }
  686. pgsql_result = PQexec(H->server, query);
  687. efree(query);
  688. if (pgsql_result) {
  689. status = PQresultStatus(pgsql_result);
  690. } else {
  691. status = (ExecStatusType) PQstatus(H->server);
  692. }
  693. if (status == PGRES_COPY_OUT && pgsql_result) {
  694. PQclear(pgsql_result);
  695. while (1) {
  696. char *csv = NULL;
  697. int ret = PQgetCopyData(H->server, &csv, 0);
  698. if (ret == -1) {
  699. break; /* done */
  700. } else if (ret > 0) {
  701. if (php_stream_write(stream, csv, ret) != ret) {
  702. pdo_pgsql_error_msg(dbh, PGRES_FATAL_ERROR, "Unable to write to file");
  703. PQfreemem(csv);
  704. php_stream_close(stream);
  705. PDO_HANDLE_DBH_ERR();
  706. RETURN_FALSE;
  707. } else {
  708. PQfreemem(csv);
  709. }
  710. } else {
  711. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
  712. php_stream_close(stream);
  713. PDO_HANDLE_DBH_ERR();
  714. RETURN_FALSE;
  715. }
  716. }
  717. php_stream_close(stream);
  718. while ((pgsql_result = PQgetResult(H->server))) {
  719. PQclear(pgsql_result);
  720. }
  721. RETURN_TRUE;
  722. } else {
  723. php_stream_close(stream);
  724. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, pdo_pgsql_sqlstate(pgsql_result));
  725. PQclear(pgsql_result);
  726. PDO_HANDLE_DBH_ERR();
  727. RETURN_FALSE;
  728. }
  729. }
  730. /* }}} */
  731. /* {{{ proto string PDO::pgsqlCopyToArray(string $table_name , [string $delimiter [, string $null_as [, string $fields]]])
  732. Returns true if the copy worked fine or false if error */
  733. static PHP_METHOD(PDO, pgsqlCopyToArray)
  734. {
  735. pdo_dbh_t *dbh;
  736. pdo_pgsql_db_handle *H;
  737. char *table_name, *pg_delim = NULL, *pg_null_as = NULL, *pg_fields = NULL;
  738. int table_name_len, pg_delim_len = 0, pg_null_as_len = 0, pg_fields_len;
  739. char *query;
  740. PGresult *pgsql_result;
  741. ExecStatusType status;
  742. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|sss",
  743. &table_name, &table_name_len,
  744. &pg_delim, &pg_delim_len, &pg_null_as, &pg_null_as_len, &pg_fields, &pg_fields_len) == FAILURE) {
  745. return;
  746. }
  747. dbh = zend_object_store_get_object(getThis() TSRMLS_CC);
  748. PDO_CONSTRUCT_CHECK;
  749. PDO_DBH_CLEAR_ERR();
  750. H = (pdo_pgsql_db_handle *)dbh->driver_data;
  751. while ((pgsql_result = PQgetResult(H->server))) {
  752. PQclear(pgsql_result);
  753. }
  754. /* using pre-9.0 syntax as PDO_pgsql is 7.4+ compatible */
  755. if (pg_fields) {
  756. spprintf(&query, 0, "COPY %s (%s) TO STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, pg_fields, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
  757. } else {
  758. spprintf(&query, 0, "COPY %s TO STDIN WITH DELIMITER E'%c' NULL AS E'%s'", table_name, (pg_delim_len ? *pg_delim : '\t'), (pg_null_as_len ? pg_null_as : "\\\\N"));
  759. }
  760. pgsql_result = PQexec(H->server, query);
  761. efree(query);
  762. if (pgsql_result) {
  763. status = PQresultStatus(pgsql_result);
  764. } else {
  765. status = (ExecStatusType) PQstatus(H->server);
  766. }
  767. if (status == PGRES_COPY_OUT && pgsql_result) {
  768. PQclear(pgsql_result);
  769. array_init(return_value);
  770. while (1) {
  771. char *csv = NULL;
  772. int ret = PQgetCopyData(H->server, &csv, 0);
  773. if (ret == -1) {
  774. break; /* copy done */
  775. } else if (ret > 0) {
  776. add_next_index_stringl(return_value, csv, ret, 1);
  777. PQfreemem(csv);
  778. } else {
  779. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
  780. PDO_HANDLE_DBH_ERR();
  781. RETURN_FALSE;
  782. }
  783. }
  784. while ((pgsql_result = PQgetResult(H->server))) {
  785. PQclear(pgsql_result);
  786. }
  787. } else {
  788. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, pdo_pgsql_sqlstate(pgsql_result));
  789. PQclear(pgsql_result);
  790. PDO_HANDLE_DBH_ERR();
  791. RETURN_FALSE;
  792. }
  793. }
  794. /* }}} */
  795. /* {{{ proto string PDO::pgsqlLOBCreate()
  796. Creates a new large object, returning its identifier. Must be called inside a transaction. */
  797. static PHP_METHOD(PDO, pgsqlLOBCreate)
  798. {
  799. pdo_dbh_t *dbh;
  800. pdo_pgsql_db_handle *H;
  801. Oid lfd;
  802. dbh = zend_object_store_get_object(getThis() TSRMLS_CC);
  803. PDO_CONSTRUCT_CHECK;
  804. PDO_DBH_CLEAR_ERR();
  805. H = (pdo_pgsql_db_handle *)dbh->driver_data;
  806. lfd = lo_creat(H->server, INV_READ|INV_WRITE);
  807. if (lfd != InvalidOid) {
  808. char *buf;
  809. spprintf(&buf, 0, "%lu", (long) lfd);
  810. RETURN_STRING(buf, 0);
  811. }
  812. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
  813. PDO_HANDLE_DBH_ERR();
  814. RETURN_FALSE;
  815. }
  816. /* }}} */
  817. /* {{{ proto resource PDO::pgsqlLOBOpen(string oid [, string mode = 'rb'])
  818. Opens an existing large object stream. Must be called inside a transaction. */
  819. static PHP_METHOD(PDO, pgsqlLOBOpen)
  820. {
  821. pdo_dbh_t *dbh;
  822. pdo_pgsql_db_handle *H;
  823. Oid oid;
  824. int lfd;
  825. char *oidstr;
  826. int oidstrlen;
  827. char *modestr = "rb";
  828. int modestrlen;
  829. int mode = INV_READ;
  830. char *end_ptr;
  831. if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s",
  832. &oidstr, &oidstrlen, &modestr, &modestrlen)) {
  833. RETURN_FALSE;
  834. }
  835. oid = (Oid)strtoul(oidstr, &end_ptr, 10);
  836. if (oid == 0 && (errno == ERANGE || errno == EINVAL)) {
  837. RETURN_FALSE;
  838. }
  839. if (strpbrk(modestr, "+w")) {
  840. mode = INV_READ|INV_WRITE;
  841. }
  842. dbh = zend_object_store_get_object(getThis() TSRMLS_CC);
  843. PDO_CONSTRUCT_CHECK;
  844. PDO_DBH_CLEAR_ERR();
  845. H = (pdo_pgsql_db_handle *)dbh->driver_data;
  846. lfd = lo_open(H->server, oid, mode);
  847. if (lfd >= 0) {
  848. php_stream *stream = pdo_pgsql_create_lob_stream(dbh, lfd, oid TSRMLS_CC);
  849. if (stream) {
  850. php_stream_to_zval(stream, return_value);
  851. return;
  852. }
  853. } else {
  854. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
  855. }
  856. PDO_HANDLE_DBH_ERR();
  857. RETURN_FALSE;
  858. }
  859. /* }}} */
  860. /* {{{ proto bool PDO::pgsqlLOBUnlink(string oid)
  861. Deletes the large object identified by oid. Must be called inside a transaction. */
  862. static PHP_METHOD(PDO, pgsqlLOBUnlink)
  863. {
  864. pdo_dbh_t *dbh;
  865. pdo_pgsql_db_handle *H;
  866. Oid oid;
  867. char *oidstr, *end_ptr;
  868. int oidlen;
  869. if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s",
  870. &oidstr, &oidlen)) {
  871. RETURN_FALSE;
  872. }
  873. oid = (Oid)strtoul(oidstr, &end_ptr, 10);
  874. if (oid == 0 && (errno == ERANGE || errno == EINVAL)) {
  875. RETURN_FALSE;
  876. }
  877. dbh = zend_object_store_get_object(getThis() TSRMLS_CC);
  878. PDO_CONSTRUCT_CHECK;
  879. PDO_DBH_CLEAR_ERR();
  880. H = (pdo_pgsql_db_handle *)dbh->driver_data;
  881. if (1 == lo_unlink(H->server, oid)) {
  882. RETURN_TRUE;
  883. }
  884. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, NULL);
  885. PDO_HANDLE_DBH_ERR();
  886. RETURN_FALSE;
  887. }
  888. /* }}} */
  889. /* {{{ proto mixed PDO::pgsqlGetNotify([ int $result_type = PDO::FETCH_USE_DEFAULT] [, int $ms_timeout = 0 ]])
  890. Get asyncronous notification */
  891. static PHP_METHOD(PDO, pgsqlGetNotify)
  892. {
  893. pdo_dbh_t *dbh;
  894. pdo_pgsql_db_handle *H;
  895. long result_type = PDO_FETCH_USE_DEFAULT;
  896. long ms_timeout = 0;
  897. PGnotify *pgsql_notify;
  898. if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|ll",
  899. &result_type, &ms_timeout)) {
  900. RETURN_FALSE;
  901. }
  902. dbh = zend_object_store_get_object(getThis() TSRMLS_CC);
  903. PDO_CONSTRUCT_CHECK;
  904. if (result_type == PDO_FETCH_USE_DEFAULT) {
  905. result_type = dbh->default_fetch_type;
  906. }
  907. if (result_type != PDO_FETCH_BOTH && result_type != PDO_FETCH_ASSOC && result_type != PDO_FETCH_NUM) {
  908. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid result type");
  909. RETURN_FALSE;
  910. }
  911. if (ms_timeout < 0) {
  912. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid timeout");
  913. RETURN_FALSE;
  914. }
  915. H = (pdo_pgsql_db_handle *)dbh->driver_data;
  916. PQconsumeInput(H->server);
  917. pgsql_notify = PQnotifies(H->server);
  918. if (ms_timeout && !pgsql_notify) {
  919. php_pollfd_for_ms(PQsocket(H->server), PHP_POLLREADABLE, ms_timeout);
  920. PQconsumeInput(H->server);
  921. pgsql_notify = PQnotifies(H->server);
  922. }
  923. if (!pgsql_notify) {
  924. RETURN_FALSE;
  925. }
  926. array_init(return_value);
  927. if (result_type == PDO_FETCH_NUM || result_type == PDO_FETCH_BOTH) {
  928. add_index_string(return_value, 0, pgsql_notify->relname, 1);
  929. add_index_long(return_value, 1, pgsql_notify->be_pid);
  930. if (pgsql_notify->extra && pgsql_notify->extra[0]) {
  931. add_index_string(return_value, 2, pgsql_notify->extra, 1);
  932. }
  933. }
  934. if (result_type == PDO_FETCH_ASSOC || result_type == PDO_FETCH_BOTH) {
  935. add_assoc_string(return_value, "message", pgsql_notify->relname, 1);
  936. add_assoc_long(return_value, "pid", pgsql_notify->be_pid);
  937. if (pgsql_notify->extra && pgsql_notify->extra[0]) {
  938. add_assoc_string(return_value, "payload", pgsql_notify->extra, 1);
  939. }
  940. }
  941. PQfreemem(pgsql_notify);
  942. }
  943. /* }}} */
  944. /* {{{ proto int PDO::pgsqlGetPid()
  945. Get backend(server) pid */
  946. static PHP_METHOD(PDO, pgsqlGetPid)
  947. {
  948. pdo_dbh_t *dbh;
  949. pdo_pgsql_db_handle *H;
  950. dbh = zend_object_store_get_object(getThis() TSRMLS_CC);
  951. PDO_CONSTRUCT_CHECK;
  952. H = (pdo_pgsql_db_handle *)dbh->driver_data;
  953. RETURN_LONG(PQbackendPID(H->server));
  954. }
  955. /* }}} */
  956. static const zend_function_entry dbh_methods[] = {
  957. PHP_ME(PDO, pgsqlLOBCreate, NULL, ZEND_ACC_PUBLIC)
  958. PHP_ME(PDO, pgsqlLOBOpen, NULL, ZEND_ACC_PUBLIC)
  959. PHP_ME(PDO, pgsqlLOBUnlink, NULL, ZEND_ACC_PUBLIC)
  960. PHP_ME(PDO, pgsqlCopyFromArray, NULL, ZEND_ACC_PUBLIC)
  961. PHP_ME(PDO, pgsqlCopyFromFile, NULL, ZEND_ACC_PUBLIC)
  962. PHP_ME(PDO, pgsqlCopyToArray, NULL, ZEND_ACC_PUBLIC)
  963. PHP_ME(PDO, pgsqlCopyToFile, NULL, ZEND_ACC_PUBLIC)
  964. PHP_ME(PDO, pgsqlGetNotify, NULL, ZEND_ACC_PUBLIC)
  965. PHP_ME(PDO, pgsqlGetPid, NULL, ZEND_ACC_PUBLIC)
  966. PHP_FE_END
  967. };
  968. static const zend_function_entry *pdo_pgsql_get_driver_methods(pdo_dbh_t *dbh, int kind TSRMLS_DC)
  969. {
  970. switch (kind) {
  971. case PDO_DBH_DRIVER_METHOD_KIND_DBH:
  972. return dbh_methods;
  973. default:
  974. return NULL;
  975. }
  976. }
  977. static int pdo_pgsql_set_attr(pdo_dbh_t *dbh, long attr, zval *val TSRMLS_DC)
  978. {
  979. pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
  980. switch (attr) {
  981. case PDO_ATTR_EMULATE_PREPARES:
  982. H->emulate_prepares = Z_LVAL_P(val);
  983. return 1;
  984. case PDO_PGSQL_ATTR_DISABLE_NATIVE_PREPARED_STATEMENT:
  985. php_error_docref(NULL TSRMLS_CC, E_DEPRECATED, "PDO::PGSQL_ATTR_DISABLE_NATIVE_PREPARED_STATEMENT is deprecated, use PDO::ATTR_EMULATE_PREPARES instead");
  986. H->disable_native_prepares = Z_LVAL_P(val);
  987. return 1;
  988. case PDO_PGSQL_ATTR_DISABLE_PREPARES:
  989. H->disable_prepares = Z_LVAL_P(val);
  990. return 1;
  991. default:
  992. return 0;
  993. }
  994. }
  995. static struct pdo_dbh_methods pgsql_methods = {
  996. pgsql_handle_closer,
  997. pgsql_handle_preparer,
  998. pgsql_handle_doer,
  999. pgsql_handle_quoter,
  1000. pgsql_handle_begin,
  1001. pgsql_handle_commit,
  1002. pgsql_handle_rollback,
  1003. pdo_pgsql_set_attr,
  1004. pdo_pgsql_last_insert_id,
  1005. pdo_pgsql_fetch_error_func,
  1006. pdo_pgsql_get_attribute,
  1007. pdo_pgsql_check_liveness, /* check_liveness */
  1008. pdo_pgsql_get_driver_methods, /* get_driver_methods */
  1009. NULL,
  1010. pgsql_handle_in_transaction,
  1011. };
  1012. static int pdo_pgsql_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_DC) /* {{{ */
  1013. {
  1014. pdo_pgsql_db_handle *H;
  1015. int ret = 0;
  1016. char *conn_str, *p, *e;
  1017. char *tmp_user, *tmp_pass;
  1018. long connect_timeout = 30;
  1019. H = pecalloc(1, sizeof(pdo_pgsql_db_handle), dbh->is_persistent);
  1020. dbh->driver_data = H;
  1021. H->einfo.errcode = 0;
  1022. H->einfo.errmsg = NULL;
  1023. /* PostgreSQL wants params in the connect string to be separated by spaces,
  1024. * if the PDO standard semicolons are used, we convert them to spaces
  1025. */
  1026. e = (char *) dbh->data_source + strlen(dbh->data_source);
  1027. p = (char *) dbh->data_source;
  1028. while ((p = memchr(p, ';', (e - p)))) {
  1029. *p = ' ';
  1030. }
  1031. if (driver_options) {
  1032. connect_timeout = pdo_attr_lval(driver_options, PDO_ATTR_TIMEOUT, 30 TSRMLS_CC);
  1033. }
  1034. /* escape username and password, if provided */
  1035. tmp_user = _pdo_pgsql_escape_credentials(dbh->username TSRMLS_CC);
  1036. tmp_pass = _pdo_pgsql_escape_credentials(dbh->password TSRMLS_CC);
  1037. /* support both full connection string & connection string + login and/or password */
  1038. if (tmp_user && tmp_pass) {
  1039. spprintf(&conn_str, 0, "%s user='%s' password='%s' connect_timeout=%ld", dbh->data_source, tmp_user, tmp_pass, connect_timeout);
  1040. } else if (tmp_user) {
  1041. spprintf(&conn_str, 0, "%s user='%s' connect_timeout=%ld", dbh->data_source, tmp_user, connect_timeout);
  1042. } else if (tmp_pass) {
  1043. spprintf(&conn_str, 0, "%s password='%s' connect_timeout=%ld", dbh->data_source, tmp_pass, connect_timeout);
  1044. } else {
  1045. spprintf(&conn_str, 0, "%s connect_timeout=%ld", (char *) dbh->data_source, connect_timeout);
  1046. }
  1047. H->server = PQconnectdb(conn_str);
  1048. if (tmp_user) {
  1049. efree(tmp_user);
  1050. }
  1051. if (tmp_pass) {
  1052. efree(tmp_pass);
  1053. }
  1054. efree(conn_str);
  1055. if (PQstatus(H->server) != CONNECTION_OK) {
  1056. pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, PHP_PDO_PGSQL_CONNECTION_FAILURE_SQLSTATE);
  1057. goto cleanup;
  1058. }
  1059. PQsetNoticeProcessor(H->server, (void(*)(void*,const char*))_pdo_pgsql_notice, (void *)&dbh);
  1060. H->attached = 1;
  1061. H->pgoid = -1;
  1062. dbh->methods = &pgsql_methods;
  1063. dbh->alloc_own_columns = 1;
  1064. dbh->max_escaped_char_length = 2;
  1065. ret = 1;
  1066. cleanup:
  1067. dbh->methods = &pgsql_methods;
  1068. if (!ret) {
  1069. pgsql_handle_closer(dbh TSRMLS_CC);
  1070. }
  1071. return ret;
  1072. }
  1073. /* }}} */
  1074. pdo_driver_t pdo_pgsql_driver = {
  1075. PDO_DRIVER_HEADER(pgsql),
  1076. pdo_pgsql_handle_factory
  1077. };
  1078. /*
  1079. * Local variables:
  1080. * tab-width: 4
  1081. * c-basic-offset: 4
  1082. * End:
  1083. * vim600: noet sw=4 ts=4 fdm=marker
  1084. * vim<600: noet sw=4 ts=4
  1085. */