pdo_sql_parser.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817
  1. /* Generated by re2c 0.13.5 */
  2. /*
  3. +----------------------------------------------------------------------+
  4. | PHP Version 5 |
  5. +----------------------------------------------------------------------+
  6. | Copyright (c) 1997-2016 The PHP Group |
  7. +----------------------------------------------------------------------+
  8. | This source file is subject to version 3.01 of the PHP license, |
  9. | that is bundled with this package in the file LICENSE, and is |
  10. | available through the world-wide-web at the following url: |
  11. | http://www.php.net/license/3_01.txt |
  12. | If you did not receive a copy of the PHP license and are unable to |
  13. | obtain it through the world-wide-web, please send a note to |
  14. | license@php.net so we can mail you a copy immediately. |
  15. +----------------------------------------------------------------------+
  16. | Author: George Schlossnagle <george@omniti.com> |
  17. +----------------------------------------------------------------------+
  18. */
  19. /* $Id$ */
  20. #include "php.h"
  21. #include "php_pdo_driver.h"
  22. #include "php_pdo_int.h"
  23. #define PDO_PARSER_TEXT 1
  24. #define PDO_PARSER_BIND 2
  25. #define PDO_PARSER_BIND_POS 3
  26. #define PDO_PARSER_EOI 4
  27. #define RET(i) {s->cur = cursor; return i; }
  28. #define SKIP_ONE(i) {s->cur = s->tok + 1; return i; }
  29. #define YYCTYPE unsigned char
  30. #define YYCURSOR cursor
  31. #define YYLIMIT s->end
  32. #define YYMARKER s->ptr
  33. #define YYFILL(n) { RET(PDO_PARSER_EOI); }
  34. typedef struct Scanner {
  35. char *ptr, *cur, *tok, *end;
  36. } Scanner;
  37. static int scan(Scanner *s)
  38. {
  39. char *cursor = s->cur;
  40. s->tok = cursor;
  41. {
  42. YYCTYPE yych;
  43. if ((YYLIMIT - YYCURSOR) < 2) YYFILL(2);
  44. yych = *YYCURSOR;
  45. switch (yych) {
  46. case 0x00: goto yy2;
  47. case '"': goto yy3;
  48. case '\'': goto yy5;
  49. case '(':
  50. case ')':
  51. case '*':
  52. case '+':
  53. case ',':
  54. case '.': goto yy9;
  55. case '-': goto yy10;
  56. case '/': goto yy11;
  57. case ':': goto yy6;
  58. case '?': goto yy7;
  59. default: goto yy12;
  60. }
  61. yy2:
  62. YYCURSOR = YYMARKER;
  63. goto yy4;
  64. yy3:
  65. yych = *(YYMARKER = ++YYCURSOR);
  66. if (yych >= 0x01) goto yy37;
  67. yy4:
  68. { SKIP_ONE(PDO_PARSER_TEXT); }
  69. yy5:
  70. yych = *(YYMARKER = ++YYCURSOR);
  71. if (yych <= 0x00) goto yy4;
  72. goto yy32;
  73. yy6:
  74. yych = *++YYCURSOR;
  75. switch (yych) {
  76. case '0':
  77. case '1':
  78. case '2':
  79. case '3':
  80. case '4':
  81. case '5':
  82. case '6':
  83. case '7':
  84. case '8':
  85. case '9':
  86. case 'A':
  87. case 'B':
  88. case 'C':
  89. case 'D':
  90. case 'E':
  91. case 'F':
  92. case 'G':
  93. case 'H':
  94. case 'I':
  95. case 'J':
  96. case 'K':
  97. case 'L':
  98. case 'M':
  99. case 'N':
  100. case 'O':
  101. case 'P':
  102. case 'Q':
  103. case 'R':
  104. case 'S':
  105. case 'T':
  106. case 'U':
  107. case 'V':
  108. case 'W':
  109. case 'X':
  110. case 'Y':
  111. case 'Z':
  112. case '_':
  113. case 'a':
  114. case 'b':
  115. case 'c':
  116. case 'd':
  117. case 'e':
  118. case 'f':
  119. case 'g':
  120. case 'h':
  121. case 'i':
  122. case 'j':
  123. case 'k':
  124. case 'l':
  125. case 'm':
  126. case 'n':
  127. case 'o':
  128. case 'p':
  129. case 'q':
  130. case 'r':
  131. case 's':
  132. case 't':
  133. case 'u':
  134. case 'v':
  135. case 'w':
  136. case 'x':
  137. case 'y':
  138. case 'z': goto yy26;
  139. case ':': goto yy29;
  140. default: goto yy4;
  141. }
  142. yy7:
  143. ++YYCURSOR;
  144. switch ((yych = *YYCURSOR)) {
  145. case '?': goto yy23;
  146. default: goto yy8;
  147. }
  148. yy8:
  149. { RET(PDO_PARSER_BIND_POS); }
  150. yy9:
  151. yych = *++YYCURSOR;
  152. goto yy4;
  153. yy10:
  154. yych = *++YYCURSOR;
  155. switch (yych) {
  156. case '-': goto yy21;
  157. default: goto yy4;
  158. }
  159. yy11:
  160. yych = *(YYMARKER = ++YYCURSOR);
  161. switch (yych) {
  162. case '*': goto yy15;
  163. default: goto yy4;
  164. }
  165. yy12:
  166. ++YYCURSOR;
  167. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  168. yych = *YYCURSOR;
  169. switch (yych) {
  170. case 0x00:
  171. case '"':
  172. case '\'':
  173. case '(':
  174. case ')':
  175. case '*':
  176. case '+':
  177. case ',':
  178. case '-':
  179. case '.':
  180. case '/':
  181. case ':':
  182. case '?': goto yy14;
  183. default: goto yy12;
  184. }
  185. yy14:
  186. { RET(PDO_PARSER_TEXT); }
  187. yy15:
  188. ++YYCURSOR;
  189. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  190. yych = *YYCURSOR;
  191. switch (yych) {
  192. case '*': goto yy17;
  193. default: goto yy15;
  194. }
  195. yy17:
  196. ++YYCURSOR;
  197. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  198. yych = *YYCURSOR;
  199. switch (yych) {
  200. case '*': goto yy17;
  201. case '/': goto yy19;
  202. default: goto yy15;
  203. }
  204. yy19:
  205. ++YYCURSOR;
  206. yy20:
  207. { RET(PDO_PARSER_TEXT); }
  208. yy21:
  209. ++YYCURSOR;
  210. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  211. yych = *YYCURSOR;
  212. switch (yych) {
  213. case '\n':
  214. case '\r': goto yy20;
  215. default: goto yy21;
  216. }
  217. yy23:
  218. ++YYCURSOR;
  219. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  220. yych = *YYCURSOR;
  221. switch (yych) {
  222. case '?': goto yy23;
  223. default: goto yy25;
  224. }
  225. yy25:
  226. { RET(PDO_PARSER_TEXT); }
  227. yy26:
  228. ++YYCURSOR;
  229. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  230. yych = *YYCURSOR;
  231. switch (yych) {
  232. case '0':
  233. case '1':
  234. case '2':
  235. case '3':
  236. case '4':
  237. case '5':
  238. case '6':
  239. case '7':
  240. case '8':
  241. case '9':
  242. case 'A':
  243. case 'B':
  244. case 'C':
  245. case 'D':
  246. case 'E':
  247. case 'F':
  248. case 'G':
  249. case 'H':
  250. case 'I':
  251. case 'J':
  252. case 'K':
  253. case 'L':
  254. case 'M':
  255. case 'N':
  256. case 'O':
  257. case 'P':
  258. case 'Q':
  259. case 'R':
  260. case 'S':
  261. case 'T':
  262. case 'U':
  263. case 'V':
  264. case 'W':
  265. case 'X':
  266. case 'Y':
  267. case 'Z':
  268. case '_':
  269. case 'a':
  270. case 'b':
  271. case 'c':
  272. case 'd':
  273. case 'e':
  274. case 'f':
  275. case 'g':
  276. case 'h':
  277. case 'i':
  278. case 'j':
  279. case 'k':
  280. case 'l':
  281. case 'm':
  282. case 'n':
  283. case 'o':
  284. case 'p':
  285. case 'q':
  286. case 'r':
  287. case 's':
  288. case 't':
  289. case 'u':
  290. case 'v':
  291. case 'w':
  292. case 'x':
  293. case 'y':
  294. case 'z': goto yy26;
  295. default: goto yy28;
  296. }
  297. yy28:
  298. { RET(PDO_PARSER_BIND); }
  299. yy29:
  300. ++YYCURSOR;
  301. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  302. yych = *YYCURSOR;
  303. switch (yych) {
  304. case ':': goto yy29;
  305. default: goto yy25;
  306. }
  307. yy31:
  308. ++YYCURSOR;
  309. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  310. yych = *YYCURSOR;
  311. yy32:
  312. switch (yych) {
  313. case 0x00: goto yy2;
  314. case '\'': goto yy34;
  315. case '\\': goto yy33;
  316. default: goto yy31;
  317. }
  318. yy33:
  319. ++YYCURSOR;
  320. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  321. yych = *YYCURSOR;
  322. if (yych <= 0x00) goto yy2;
  323. goto yy31;
  324. yy34:
  325. ++YYCURSOR;
  326. { RET(PDO_PARSER_TEXT); }
  327. yy36:
  328. ++YYCURSOR;
  329. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  330. yych = *YYCURSOR;
  331. yy37:
  332. switch (yych) {
  333. case 0x00: goto yy2;
  334. case '"': goto yy39;
  335. case '\\': goto yy38;
  336. default: goto yy36;
  337. }
  338. yy38:
  339. ++YYCURSOR;
  340. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  341. yych = *YYCURSOR;
  342. if (yych <= 0x00) goto yy2;
  343. goto yy36;
  344. yy39:
  345. ++YYCURSOR;
  346. { RET(PDO_PARSER_TEXT); }
  347. }
  348. }
  349. struct placeholder {
  350. char *pos;
  351. int len;
  352. int bindno;
  353. int qlen; /* quoted length of value */
  354. char *quoted; /* quoted value */
  355. int freeq;
  356. struct placeholder *next;
  357. };
  358. PDO_API int pdo_parse_params(pdo_stmt_t *stmt, char *inquery, int inquery_len,
  359. char **outquery, int *outquery_len TSRMLS_DC)
  360. {
  361. Scanner s;
  362. char *ptr, *newbuffer;
  363. int t;
  364. int bindno = 0;
  365. int ret = 0;
  366. int newbuffer_len;
  367. HashTable *params;
  368. struct pdo_bound_param_data *param;
  369. int query_type = PDO_PLACEHOLDER_NONE;
  370. struct placeholder *placeholders = NULL, *placetail = NULL, *plc = NULL;
  371. ptr = *outquery;
  372. s.cur = inquery;
  373. s.end = inquery + inquery_len + 1;
  374. /* phase 1: look for args */
  375. while((t = scan(&s)) != PDO_PARSER_EOI) {
  376. if (t == PDO_PARSER_BIND || t == PDO_PARSER_BIND_POS) {
  377. if (t == PDO_PARSER_BIND) {
  378. int len = s.cur - s.tok;
  379. if ((inquery < (s.cur - len)) && isalnum(*(s.cur - len - 1))) {
  380. continue;
  381. }
  382. query_type |= PDO_PLACEHOLDER_NAMED;
  383. } else {
  384. query_type |= PDO_PLACEHOLDER_POSITIONAL;
  385. }
  386. plc = emalloc(sizeof(*plc));
  387. memset(plc, 0, sizeof(*plc));
  388. plc->next = NULL;
  389. plc->pos = s.tok;
  390. plc->len = s.cur - s.tok;
  391. plc->bindno = bindno++;
  392. if (placetail) {
  393. placetail->next = plc;
  394. } else {
  395. placeholders = plc;
  396. }
  397. placetail = plc;
  398. }
  399. }
  400. if (bindno == 0) {
  401. /* nothing to do; good! */
  402. return 0;
  403. }
  404. /* did the query make sense to me? */
  405. if (query_type == (PDO_PLACEHOLDER_NAMED|PDO_PLACEHOLDER_POSITIONAL)) {
  406. /* they mixed both types; punt */
  407. pdo_raise_impl_error(stmt->dbh, stmt, "HY093", "mixed named and positional parameters" TSRMLS_CC);
  408. ret = -1;
  409. goto clean_up;
  410. }
  411. if (stmt->supports_placeholders == query_type && !stmt->named_rewrite_template) {
  412. /* query matches native syntax */
  413. ret = 0;
  414. goto clean_up;
  415. }
  416. if (stmt->named_rewrite_template) {
  417. /* magic/hack.
  418. * We we pretend that the query was positional even if
  419. * it was named so that we fall into the
  420. * named rewrite case below. Not too pretty,
  421. * but it works. */
  422. query_type = PDO_PLACEHOLDER_POSITIONAL;
  423. }
  424. params = stmt->bound_params;
  425. /* Do we have placeholders but no bound params */
  426. if (bindno && !params && stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) {
  427. pdo_raise_impl_error(stmt->dbh, stmt, "HY093", "no parameters were bound" TSRMLS_CC);
  428. ret = -1;
  429. goto clean_up;
  430. }
  431. if (params && bindno != zend_hash_num_elements(params) && stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) {
  432. /* extra bit of validation for instances when same params are bound more then once */
  433. if (query_type != PDO_PLACEHOLDER_POSITIONAL && bindno > zend_hash_num_elements(params)) {
  434. int ok = 1;
  435. for (plc = placeholders; plc; plc = plc->next) {
  436. if (zend_hash_find(params, plc->pos, plc->len, (void**) &param) == FAILURE) {
  437. ok = 0;
  438. break;
  439. }
  440. }
  441. if (ok) {
  442. goto safe;
  443. }
  444. }
  445. pdo_raise_impl_error(stmt->dbh, stmt, "HY093", "number of bound variables does not match number of tokens" TSRMLS_CC);
  446. ret = -1;
  447. goto clean_up;
  448. }
  449. safe:
  450. /* what are we going to do ? */
  451. if (stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) {
  452. /* query generation */
  453. newbuffer_len = inquery_len;
  454. /* let's quote all the values */
  455. for (plc = placeholders; plc; plc = plc->next) {
  456. if (query_type == PDO_PLACEHOLDER_POSITIONAL) {
  457. ret = zend_hash_index_find(params, plc->bindno, (void**) &param);
  458. } else {
  459. ret = zend_hash_find(params, plc->pos, plc->len, (void**) &param);
  460. }
  461. if (ret == FAILURE) {
  462. /* parameter was not defined */
  463. ret = -1;
  464. pdo_raise_impl_error(stmt->dbh, stmt, "HY093", "parameter was not defined" TSRMLS_CC);
  465. goto clean_up;
  466. }
  467. if (stmt->dbh->methods->quoter) {
  468. if (param->param_type == PDO_PARAM_LOB && Z_TYPE_P(param->parameter) == IS_RESOURCE) {
  469. php_stream *stm;
  470. php_stream_from_zval_no_verify(stm, &param->parameter);
  471. if (stm) {
  472. size_t len;
  473. char *buf = NULL;
  474. len = php_stream_copy_to_mem(stm, &buf, PHP_STREAM_COPY_ALL, 0);
  475. if (!stmt->dbh->methods->quoter(stmt->dbh, buf, len, &plc->quoted, &plc->qlen,
  476. param->param_type TSRMLS_CC)) {
  477. /* bork */
  478. ret = -1;
  479. strncpy(stmt->error_code, stmt->dbh->error_code, 6);
  480. if (buf) {
  481. efree(buf);
  482. }
  483. goto clean_up;
  484. }
  485. if (buf) {
  486. efree(buf);
  487. }
  488. } else {
  489. pdo_raise_impl_error(stmt->dbh, stmt, "HY105", "Expected a stream resource" TSRMLS_CC);
  490. ret = -1;
  491. goto clean_up;
  492. }
  493. plc->freeq = 1;
  494. } else {
  495. zval tmp_param = *param->parameter;
  496. zval_copy_ctor(&tmp_param);
  497. switch (Z_TYPE(tmp_param)) {
  498. case IS_NULL:
  499. plc->quoted = "NULL";
  500. plc->qlen = sizeof("NULL")-1;
  501. plc->freeq = 0;
  502. break;
  503. case IS_BOOL:
  504. convert_to_long(&tmp_param);
  505. /* fall through */
  506. case IS_LONG:
  507. case IS_DOUBLE:
  508. convert_to_string(&tmp_param);
  509. plc->qlen = Z_STRLEN(tmp_param);
  510. plc->quoted = estrdup(Z_STRVAL(tmp_param));
  511. plc->freeq = 1;
  512. break;
  513. default:
  514. convert_to_string(&tmp_param);
  515. if (!stmt->dbh->methods->quoter(stmt->dbh, Z_STRVAL(tmp_param),
  516. Z_STRLEN(tmp_param), &plc->quoted, &plc->qlen,
  517. param->param_type TSRMLS_CC)) {
  518. /* bork */
  519. ret = -1;
  520. strncpy(stmt->error_code, stmt->dbh->error_code, 6);
  521. goto clean_up;
  522. }
  523. plc->freeq = 1;
  524. }
  525. zval_dtor(&tmp_param);
  526. }
  527. } else {
  528. plc->quoted = Z_STRVAL_P(param->parameter);
  529. plc->qlen = Z_STRLEN_P(param->parameter);
  530. }
  531. newbuffer_len += plc->qlen;
  532. }
  533. rewrite:
  534. /* allocate output buffer */
  535. newbuffer = emalloc(newbuffer_len + 1);
  536. *outquery = newbuffer;
  537. /* and build the query */
  538. plc = placeholders;
  539. ptr = inquery;
  540. do {
  541. t = plc->pos - ptr;
  542. if (t) {
  543. memcpy(newbuffer, ptr, t);
  544. newbuffer += t;
  545. }
  546. memcpy(newbuffer, plc->quoted, plc->qlen);
  547. newbuffer += plc->qlen;
  548. ptr = plc->pos + plc->len;
  549. plc = plc->next;
  550. } while (plc);
  551. t = (inquery + inquery_len) - ptr;
  552. if (t) {
  553. memcpy(newbuffer, ptr, t);
  554. newbuffer += t;
  555. }
  556. *newbuffer = '\0';
  557. *outquery_len = newbuffer - *outquery;
  558. ret = 1;
  559. goto clean_up;
  560. } else if (query_type == PDO_PLACEHOLDER_POSITIONAL) {
  561. /* rewrite ? to :pdoX */
  562. char *name, *idxbuf;
  563. const char *tmpl = stmt->named_rewrite_template ? stmt->named_rewrite_template : ":pdo%d";
  564. int bind_no = 1;
  565. newbuffer_len = inquery_len;
  566. if (stmt->bound_param_map == NULL) {
  567. ALLOC_HASHTABLE(stmt->bound_param_map);
  568. zend_hash_init(stmt->bound_param_map, 13, NULL, NULL, 0);
  569. }
  570. for (plc = placeholders; plc; plc = plc->next) {
  571. int skip_map = 0;
  572. char *p;
  573. name = estrndup(plc->pos, plc->len);
  574. /* check if bound parameter is already available */
  575. if (!strcmp(name, "?") || zend_hash_find(stmt->bound_param_map, name, plc->len + 1, (void**) &p) == FAILURE) {
  576. spprintf(&idxbuf, 0, tmpl, bind_no++);
  577. } else {
  578. idxbuf = estrdup(p);
  579. skip_map = 1;
  580. }
  581. plc->quoted = idxbuf;
  582. plc->qlen = strlen(plc->quoted);
  583. plc->freeq = 1;
  584. newbuffer_len += plc->qlen;
  585. if (!skip_map && stmt->named_rewrite_template) {
  586. /* create a mapping */
  587. zend_hash_update(stmt->bound_param_map, name, plc->len + 1, idxbuf, plc->qlen + 1, NULL);
  588. }
  589. /* map number to name */
  590. zend_hash_index_update(stmt->bound_param_map, plc->bindno, idxbuf, plc->qlen + 1, NULL);
  591. efree(name);
  592. }
  593. goto rewrite;
  594. } else {
  595. /* rewrite :name to ? */
  596. newbuffer_len = inquery_len;
  597. if (stmt->bound_param_map == NULL) {
  598. ALLOC_HASHTABLE(stmt->bound_param_map);
  599. zend_hash_init(stmt->bound_param_map, 13, NULL, NULL, 0);
  600. }
  601. for (plc = placeholders; plc; plc = plc->next) {
  602. char *name;
  603. name = estrndup(plc->pos, plc->len);
  604. zend_hash_index_update(stmt->bound_param_map, plc->bindno, name, plc->len + 1, NULL);
  605. efree(name);
  606. plc->quoted = "?";
  607. plc->qlen = 1;
  608. }
  609. goto rewrite;
  610. }
  611. clean_up:
  612. while (placeholders) {
  613. plc = placeholders;
  614. placeholders = plc->next;
  615. if (plc->freeq) {
  616. efree(plc->quoted);
  617. }
  618. efree(plc);
  619. }
  620. return ret;
  621. }
  622. #if 0
  623. int old_pdo_parse_params(pdo_stmt_t *stmt, char *inquery, int inquery_len, char **outquery,
  624. int *outquery_len TSRMLS_DC)
  625. {
  626. Scanner s;
  627. char *ptr;
  628. int t;
  629. int bindno = 0;
  630. int newbuffer_len;
  631. int padding;
  632. HashTable *params = stmt->bound_params;
  633. struct pdo_bound_param_data *param;
  634. /* allocate buffer for query with expanded binds, ptr is our writing pointer */
  635. newbuffer_len = inquery_len;
  636. /* calculate the possible padding factor due to quoting */
  637. if(stmt->dbh->max_escaped_char_length) {
  638. padding = stmt->dbh->max_escaped_char_length;
  639. } else {
  640. padding = 3;
  641. }
  642. if(params) {
  643. zend_hash_internal_pointer_reset(params);
  644. while (SUCCESS == zend_hash_get_current_data(params, (void**)&param)) {
  645. if(param->parameter) {
  646. convert_to_string(param->parameter);
  647. /* accommodate a string that needs to be fully quoted
  648. bind placeholders are at least 2 characters, so
  649. the accommodate their own "'s
  650. */
  651. newbuffer_len += padding * Z_STRLEN_P(param->parameter);
  652. }
  653. zend_hash_move_forward(params);
  654. }
  655. }
  656. *outquery = (char *) emalloc(newbuffer_len + 1);
  657. *outquery_len = 0;
  658. ptr = *outquery;
  659. s.cur = inquery;
  660. while((t = scan(&s)) != PDO_PARSER_EOI) {
  661. if(t == PDO_PARSER_TEXT) {
  662. memcpy(ptr, s.tok, s.cur - s.tok);
  663. ptr += (s.cur - s.tok);
  664. *outquery_len += (s.cur - s.tok);
  665. }
  666. else if(t == PDO_PARSER_BIND) {
  667. if(!params) {
  668. /* error */
  669. efree(*outquery);
  670. *outquery = NULL;
  671. return (int) (s.cur - inquery);
  672. }
  673. /* lookup bind first via hash and then index */
  674. /* stupid keys need to be null-terminated, even though we know their length */
  675. if((SUCCESS == zend_hash_find(params, s.tok, s.cur-s.tok,(void **)&param))
  676. ||
  677. (SUCCESS == zend_hash_index_find(params, bindno, (void **)&param)))
  678. {
  679. char *quotedstr;
  680. int quotedstrlen;
  681. /* restore the in-string key, doesn't need null-termination here */
  682. /* currently everything is a string here */
  683. /* quote the bind value if necessary */
  684. if(stmt->dbh->methods->quoter(stmt->dbh, Z_STRVAL_P(param->parameter),
  685. Z_STRLEN_P(param->parameter), &quotedstr, &quotedstrlen TSRMLS_CC))
  686. {
  687. memcpy(ptr, quotedstr, quotedstrlen);
  688. ptr += quotedstrlen;
  689. *outquery_len += quotedstrlen;
  690. efree(quotedstr);
  691. } else {
  692. memcpy(ptr, Z_STRVAL_P(param->parameter), Z_STRLEN_P(param->parameter));
  693. ptr += Z_STRLEN_P(param->parameter);
  694. *outquery_len += (Z_STRLEN_P(param->parameter));
  695. }
  696. }
  697. else {
  698. /* error and cleanup */
  699. efree(*outquery);
  700. *outquery = NULL;
  701. return (int) (s.cur - inquery);
  702. }
  703. bindno++;
  704. }
  705. else if(t == PDO_PARSER_BIND_POS) {
  706. if(!params) {
  707. /* error */
  708. efree(*outquery);
  709. *outquery = NULL;
  710. return (int) (s.cur - inquery);
  711. }
  712. /* lookup bind by index */
  713. if(SUCCESS == zend_hash_index_find(params, bindno, (void **)&param))
  714. {
  715. char *quotedstr;
  716. int quotedstrlen;
  717. /* currently everything is a string here */
  718. /* quote the bind value if necessary */
  719. if(stmt->dbh->methods->quoter(stmt->dbh, Z_STRVAL_P(param->parameter),
  720. Z_STRLEN_P(param->parameter), &quotedstr, &quotedstrlen TSRMLS_CC))
  721. {
  722. memcpy(ptr, quotedstr, quotedstrlen);
  723. ptr += quotedstrlen;
  724. *outquery_len += quotedstrlen;
  725. efree(quotedstr);
  726. } else {
  727. memcpy(ptr, Z_STRVAL_P(param->parameter), Z_STRLEN_P(param->parameter));
  728. ptr += Z_STRLEN_P(param->parameter);
  729. *outquery_len += (Z_STRLEN_P(param->parameter));
  730. }
  731. }
  732. else {
  733. /* error and cleanup */
  734. efree(*outquery);
  735. *outquery = NULL;
  736. return (int) (s.cur - inquery);
  737. }
  738. bindno++;
  739. }
  740. }
  741. *ptr = '\0';
  742. return 0;
  743. }
  744. #endif
  745. /*
  746. * Local variables:
  747. * tab-width: 4
  748. * c-basic-offset: 4
  749. * End:
  750. * vim600: noet sw=4 ts=4 fdm=marker ft=c
  751. * vim<600: noet sw=4 ts=4
  752. */