pdo_sql_parser.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719
  1. /* Generated by re2c 1.0.3 */
  2. /*
  3. +----------------------------------------------------------------------+
  4. | PHP Version 7 |
  5. +----------------------------------------------------------------------+
  6. | Copyright (c) 1997-2018 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. #include "php.h"
  20. #include "php_pdo_driver.h"
  21. #include "php_pdo_int.h"
  22. #define PDO_PARSER_TEXT 1
  23. #define PDO_PARSER_BIND 2
  24. #define PDO_PARSER_BIND_POS 3
  25. #define PDO_PARSER_EOI 4
  26. #define RET(i) {s->cur = cursor; return i; }
  27. #define SKIP_ONE(i) {s->cur = s->tok + 1; return i; }
  28. #define YYCTYPE unsigned char
  29. #define YYCURSOR cursor
  30. #define YYLIMIT s->end
  31. #define YYMARKER s->ptr
  32. #define YYFILL(n) { RET(PDO_PARSER_EOI); }
  33. typedef struct Scanner {
  34. char *ptr, *cur, *tok, *end;
  35. } Scanner;
  36. static int scan(Scanner *s)
  37. {
  38. char *cursor = s->cur;
  39. s->tok = cursor;
  40. {
  41. YYCTYPE yych;
  42. if ((YYLIMIT - YYCURSOR) < 2) YYFILL(2);
  43. yych = *YYCURSOR;
  44. switch (yych) {
  45. case 0x00: goto yy2;
  46. case '"': goto yy6;
  47. case '\'': goto yy8;
  48. case '(':
  49. case ')':
  50. case '*':
  51. case '+':
  52. case ',':
  53. case '.': goto yy9;
  54. case '-': goto yy10;
  55. case '/': goto yy11;
  56. case ':': goto yy12;
  57. case '?': goto yy13;
  58. default: goto yy3;
  59. }
  60. yy2:
  61. YYCURSOR = YYMARKER;
  62. goto yy7;
  63. yy3:
  64. ++YYCURSOR;
  65. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  66. yych = *YYCURSOR;
  67. switch (yych) {
  68. case 0x00:
  69. case '"':
  70. case '\'':
  71. case '(':
  72. case ')':
  73. case '*':
  74. case '+':
  75. case ',':
  76. case '-':
  77. case '.':
  78. case '/':
  79. case ':':
  80. case '?': goto yy5;
  81. default: goto yy3;
  82. }
  83. yy5:
  84. { RET(PDO_PARSER_TEXT); }
  85. yy6:
  86. yych = *(YYMARKER = ++YYCURSOR);
  87. if (yych >= 0x01) goto yy16;
  88. yy7:
  89. { SKIP_ONE(PDO_PARSER_TEXT); }
  90. yy8:
  91. yych = *(YYMARKER = ++YYCURSOR);
  92. if (yych <= 0x00) goto yy7;
  93. goto yy21;
  94. yy9:
  95. ++YYCURSOR;
  96. goto yy7;
  97. yy10:
  98. yych = *++YYCURSOR;
  99. switch (yych) {
  100. case '-': goto yy25;
  101. default: goto yy7;
  102. }
  103. yy11:
  104. yych = *++YYCURSOR;
  105. switch (yych) {
  106. case '*': goto yy28;
  107. default: goto yy7;
  108. }
  109. yy12:
  110. yych = *++YYCURSOR;
  111. switch (yych) {
  112. case '0':
  113. case '1':
  114. case '2':
  115. case '3':
  116. case '4':
  117. case '5':
  118. case '6':
  119. case '7':
  120. case '8':
  121. case '9':
  122. case 'A':
  123. case 'B':
  124. case 'C':
  125. case 'D':
  126. case 'E':
  127. case 'F':
  128. case 'G':
  129. case 'H':
  130. case 'I':
  131. case 'J':
  132. case 'K':
  133. case 'L':
  134. case 'M':
  135. case 'N':
  136. case 'O':
  137. case 'P':
  138. case 'Q':
  139. case 'R':
  140. case 'S':
  141. case 'T':
  142. case 'U':
  143. case 'V':
  144. case 'W':
  145. case 'X':
  146. case 'Y':
  147. case 'Z':
  148. case '_':
  149. case 'a':
  150. case 'b':
  151. case 'c':
  152. case 'd':
  153. case 'e':
  154. case 'f':
  155. case 'g':
  156. case 'h':
  157. case 'i':
  158. case 'j':
  159. case 'k':
  160. case 'l':
  161. case 'm':
  162. case 'n':
  163. case 'o':
  164. case 'p':
  165. case 'q':
  166. case 'r':
  167. case 's':
  168. case 't':
  169. case 'u':
  170. case 'v':
  171. case 'w':
  172. case 'x':
  173. case 'y':
  174. case 'z': goto yy30;
  175. case ':': goto yy33;
  176. default: goto yy7;
  177. }
  178. yy13:
  179. yych = *++YYCURSOR;
  180. switch (yych) {
  181. case '?': goto yy36;
  182. default: goto yy14;
  183. }
  184. yy14:
  185. { RET(PDO_PARSER_BIND_POS); }
  186. yy15:
  187. ++YYCURSOR;
  188. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  189. yych = *YYCURSOR;
  190. yy16:
  191. switch (yych) {
  192. case 0x00: goto yy2;
  193. case '"': goto yy17;
  194. case '\\': goto yy19;
  195. default: goto yy15;
  196. }
  197. yy17:
  198. ++YYCURSOR;
  199. { RET(PDO_PARSER_TEXT); }
  200. yy19:
  201. ++YYCURSOR;
  202. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  203. yych = *YYCURSOR;
  204. if (yych <= 0x00) goto yy2;
  205. goto yy15;
  206. yy20:
  207. ++YYCURSOR;
  208. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  209. yych = *YYCURSOR;
  210. yy21:
  211. switch (yych) {
  212. case 0x00: goto yy2;
  213. case '\'': goto yy22;
  214. case '\\': goto yy24;
  215. default: goto yy20;
  216. }
  217. yy22:
  218. ++YYCURSOR;
  219. { RET(PDO_PARSER_TEXT); }
  220. yy24:
  221. ++YYCURSOR;
  222. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  223. yych = *YYCURSOR;
  224. if (yych <= 0x00) goto yy2;
  225. goto yy20;
  226. yy25:
  227. ++YYCURSOR;
  228. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  229. yych = *YYCURSOR;
  230. switch (yych) {
  231. case '\n':
  232. case '\r': goto yy27;
  233. default: goto yy25;
  234. }
  235. yy27:
  236. { RET(PDO_PARSER_TEXT); }
  237. yy28:
  238. ++YYCURSOR;
  239. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  240. yych = *YYCURSOR;
  241. switch (yych) {
  242. case '*': goto yy38;
  243. default: goto yy28;
  244. }
  245. yy30:
  246. ++YYCURSOR;
  247. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  248. yych = *YYCURSOR;
  249. switch (yych) {
  250. case '0':
  251. case '1':
  252. case '2':
  253. case '3':
  254. case '4':
  255. case '5':
  256. case '6':
  257. case '7':
  258. case '8':
  259. case '9':
  260. case 'A':
  261. case 'B':
  262. case 'C':
  263. case 'D':
  264. case 'E':
  265. case 'F':
  266. case 'G':
  267. case 'H':
  268. case 'I':
  269. case 'J':
  270. case 'K':
  271. case 'L':
  272. case 'M':
  273. case 'N':
  274. case 'O':
  275. case 'P':
  276. case 'Q':
  277. case 'R':
  278. case 'S':
  279. case 'T':
  280. case 'U':
  281. case 'V':
  282. case 'W':
  283. case 'X':
  284. case 'Y':
  285. case 'Z':
  286. case '_':
  287. case 'a':
  288. case 'b':
  289. case 'c':
  290. case 'd':
  291. case 'e':
  292. case 'f':
  293. case 'g':
  294. case 'h':
  295. case 'i':
  296. case 'j':
  297. case 'k':
  298. case 'l':
  299. case 'm':
  300. case 'n':
  301. case 'o':
  302. case 'p':
  303. case 'q':
  304. case 'r':
  305. case 's':
  306. case 't':
  307. case 'u':
  308. case 'v':
  309. case 'w':
  310. case 'x':
  311. case 'y':
  312. case 'z': goto yy30;
  313. default: goto yy32;
  314. }
  315. yy32:
  316. { RET(PDO_PARSER_BIND); }
  317. yy33:
  318. ++YYCURSOR;
  319. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  320. yych = *YYCURSOR;
  321. switch (yych) {
  322. case ':': goto yy33;
  323. default: goto yy35;
  324. }
  325. yy35:
  326. { RET(PDO_PARSER_TEXT); }
  327. yy36:
  328. ++YYCURSOR;
  329. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  330. yych = *YYCURSOR;
  331. switch (yych) {
  332. case '?': goto yy36;
  333. default: goto yy35;
  334. }
  335. yy38:
  336. ++YYCURSOR;
  337. if (YYLIMIT <= YYCURSOR) YYFILL(1);
  338. yych = *YYCURSOR;
  339. switch (yych) {
  340. case '*': goto yy38;
  341. case '/': goto yy40;
  342. default: goto yy28;
  343. }
  344. yy40:
  345. ++YYCURSOR;
  346. goto yy27;
  347. }
  348. }
  349. struct placeholder {
  350. char *pos;
  351. size_t len;
  352. size_t qlen; /* quoted length of value */
  353. char *quoted; /* quoted value */
  354. int freeq;
  355. int bindno;
  356. struct placeholder *next;
  357. };
  358. static void free_param_name(zval *el) {
  359. efree(Z_PTR_P(el));
  360. }
  361. PDO_API int pdo_parse_params(pdo_stmt_t *stmt, char *inquery, size_t inquery_len,
  362. char **outquery, size_t *outquery_len)
  363. {
  364. Scanner s;
  365. char *ptr, *newbuffer;
  366. ptrdiff_t t;
  367. uint32_t bindno = 0;
  368. int ret = 0;
  369. size_t newbuffer_len;
  370. HashTable *params;
  371. struct pdo_bound_param_data *param;
  372. int query_type = PDO_PLACEHOLDER_NONE;
  373. struct placeholder *placeholders = NULL, *placetail = NULL, *plc = NULL;
  374. ptr = *outquery;
  375. s.cur = inquery;
  376. s.end = inquery + inquery_len + 1;
  377. /* phase 1: look for args */
  378. while((t = scan(&s)) != PDO_PARSER_EOI) {
  379. if (t == PDO_PARSER_BIND || t == PDO_PARSER_BIND_POS) {
  380. if (t == PDO_PARSER_BIND) {
  381. ptrdiff_t len = s.cur - s.tok;
  382. if ((inquery < (s.cur - len)) && isalnum(*(s.cur - len - 1))) {
  383. continue;
  384. }
  385. query_type |= PDO_PLACEHOLDER_NAMED;
  386. } else {
  387. query_type |= PDO_PLACEHOLDER_POSITIONAL;
  388. }
  389. plc = emalloc(sizeof(*plc));
  390. memset(plc, 0, sizeof(*plc));
  391. plc->next = NULL;
  392. plc->pos = s.tok;
  393. plc->len = s.cur - s.tok;
  394. plc->bindno = bindno++;
  395. if (placetail) {
  396. placetail->next = plc;
  397. } else {
  398. placeholders = plc;
  399. }
  400. placetail = plc;
  401. }
  402. }
  403. if (bindno == 0) {
  404. /* nothing to do; good! */
  405. return 0;
  406. }
  407. /* did the query make sense to me? */
  408. if (query_type == (PDO_PLACEHOLDER_NAMED|PDO_PLACEHOLDER_POSITIONAL)) {
  409. /* they mixed both types; punt */
  410. pdo_raise_impl_error(stmt->dbh, stmt, "HY093", "mixed named and positional parameters");
  411. ret = -1;
  412. goto clean_up;
  413. }
  414. if (stmt->supports_placeholders == query_type && !stmt->named_rewrite_template) {
  415. /* query matches native syntax */
  416. ret = 0;
  417. goto clean_up;
  418. }
  419. if (stmt->named_rewrite_template) {
  420. /* magic/hack.
  421. * We we pretend that the query was positional even if
  422. * it was named so that we fall into the
  423. * named rewrite case below. Not too pretty,
  424. * but it works. */
  425. query_type = PDO_PLACEHOLDER_POSITIONAL;
  426. }
  427. params = stmt->bound_params;
  428. /* Do we have placeholders but no bound params */
  429. if (bindno && !params && stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) {
  430. pdo_raise_impl_error(stmt->dbh, stmt, "HY093", "no parameters were bound");
  431. ret = -1;
  432. goto clean_up;
  433. }
  434. if (params && bindno != zend_hash_num_elements(params) && stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) {
  435. /* extra bit of validation for instances when same params are bound more than once */
  436. if (query_type != PDO_PLACEHOLDER_POSITIONAL && bindno > zend_hash_num_elements(params)) {
  437. int ok = 1;
  438. for (plc = placeholders; plc; plc = plc->next) {
  439. if ((param = zend_hash_str_find_ptr(params, plc->pos, plc->len)) == NULL) {
  440. ok = 0;
  441. break;
  442. }
  443. }
  444. if (ok) {
  445. goto safe;
  446. }
  447. }
  448. pdo_raise_impl_error(stmt->dbh, stmt, "HY093", "number of bound variables does not match number of tokens");
  449. ret = -1;
  450. goto clean_up;
  451. }
  452. safe:
  453. /* what are we going to do ? */
  454. if (stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) {
  455. /* query generation */
  456. newbuffer_len = inquery_len;
  457. /* let's quote all the values */
  458. for (plc = placeholders; plc; plc = plc->next) {
  459. if (query_type == PDO_PLACEHOLDER_POSITIONAL) {
  460. param = zend_hash_index_find_ptr(params, plc->bindno);
  461. } else {
  462. param = zend_hash_str_find_ptr(params, plc->pos, plc->len);
  463. }
  464. if (param == NULL) {
  465. /* parameter was not defined */
  466. ret = -1;
  467. pdo_raise_impl_error(stmt->dbh, stmt, "HY093", "parameter was not defined");
  468. goto clean_up;
  469. }
  470. if (stmt->dbh->methods->quoter) {
  471. zval *parameter;
  472. if (Z_ISREF(param->parameter)) {
  473. parameter = Z_REFVAL(param->parameter);
  474. } else {
  475. parameter = &param->parameter;
  476. }
  477. if (param->param_type == PDO_PARAM_LOB && Z_TYPE_P(parameter) == IS_RESOURCE) {
  478. php_stream *stm;
  479. php_stream_from_zval_no_verify(stm, parameter);
  480. if (stm) {
  481. zend_string *buf;
  482. buf = php_stream_copy_to_mem(stm, PHP_STREAM_COPY_ALL, 0);
  483. if (!buf) {
  484. buf = ZSTR_EMPTY_ALLOC();
  485. }
  486. if (!stmt->dbh->methods->quoter(stmt->dbh, ZSTR_VAL(buf), ZSTR_LEN(buf), &plc->quoted, &plc->qlen,
  487. param->param_type)) {
  488. /* bork */
  489. ret = -1;
  490. strncpy(stmt->error_code, stmt->dbh->error_code, 6);
  491. if (buf) {
  492. zend_string_release_ex(buf, 0);
  493. }
  494. goto clean_up;
  495. }
  496. if (buf) {
  497. zend_string_release_ex(buf, 0);
  498. }
  499. } else {
  500. pdo_raise_impl_error(stmt->dbh, stmt, "HY105", "Expected a stream resource");
  501. ret = -1;
  502. goto clean_up;
  503. }
  504. plc->freeq = 1;
  505. } else {
  506. enum pdo_param_type param_type = param->param_type;
  507. zend_string *buf = NULL;
  508. /* assume all types are nullable */
  509. if (Z_TYPE_P(parameter) == IS_NULL) {
  510. param_type = PDO_PARAM_NULL;
  511. }
  512. switch (param_type) {
  513. case PDO_PARAM_BOOL:
  514. plc->quoted = zend_is_true(parameter) ? "1" : "0";
  515. plc->qlen = sizeof("1")-1;
  516. plc->freeq = 0;
  517. break;
  518. case PDO_PARAM_INT:
  519. buf = zend_long_to_str(zval_get_long(parameter));
  520. plc->qlen = ZSTR_LEN(buf);
  521. plc->quoted = estrdup(ZSTR_VAL(buf));
  522. plc->freeq = 1;
  523. break;
  524. case PDO_PARAM_NULL:
  525. plc->quoted = "NULL";
  526. plc->qlen = sizeof("NULL")-1;
  527. plc->freeq = 0;
  528. break;
  529. default:
  530. buf = zval_get_string(parameter);
  531. if (!stmt->dbh->methods->quoter(stmt->dbh, ZSTR_VAL(buf),
  532. ZSTR_LEN(buf), &plc->quoted, &plc->qlen,
  533. param_type)) {
  534. /* bork */
  535. ret = -1;
  536. strncpy(stmt->error_code, stmt->dbh->error_code, 6);
  537. if (buf) {
  538. zend_string_release_ex(buf, 0);
  539. }
  540. goto clean_up;
  541. }
  542. plc->freeq = 1;
  543. }
  544. if (buf) {
  545. zend_string_release_ex(buf, 0);
  546. }
  547. }
  548. } else {
  549. zval *parameter;
  550. if (Z_ISREF(param->parameter)) {
  551. parameter = Z_REFVAL(param->parameter);
  552. } else {
  553. parameter = &param->parameter;
  554. }
  555. plc->quoted = Z_STRVAL_P(parameter);
  556. plc->qlen = Z_STRLEN_P(parameter);
  557. }
  558. newbuffer_len += plc->qlen;
  559. }
  560. rewrite:
  561. /* allocate output buffer */
  562. newbuffer = emalloc(newbuffer_len + 1);
  563. *outquery = newbuffer;
  564. /* and build the query */
  565. plc = placeholders;
  566. ptr = inquery;
  567. do {
  568. t = plc->pos - ptr;
  569. if (t) {
  570. memcpy(newbuffer, ptr, t);
  571. newbuffer += t;
  572. }
  573. memcpy(newbuffer, plc->quoted, plc->qlen);
  574. newbuffer += plc->qlen;
  575. ptr = plc->pos + plc->len;
  576. plc = plc->next;
  577. } while (plc);
  578. t = (inquery + inquery_len) - ptr;
  579. if (t) {
  580. memcpy(newbuffer, ptr, t);
  581. newbuffer += t;
  582. }
  583. *newbuffer = '\0';
  584. *outquery_len = newbuffer - *outquery;
  585. ret = 1;
  586. goto clean_up;
  587. } else if (query_type == PDO_PLACEHOLDER_POSITIONAL) {
  588. /* rewrite ? to :pdoX */
  589. char *name, *idxbuf;
  590. const char *tmpl = stmt->named_rewrite_template ? stmt->named_rewrite_template : ":pdo%d";
  591. int bind_no = 1;
  592. newbuffer_len = inquery_len;
  593. if (stmt->bound_param_map == NULL) {
  594. ALLOC_HASHTABLE(stmt->bound_param_map);
  595. zend_hash_init(stmt->bound_param_map, 13, NULL, free_param_name, 0);
  596. }
  597. for (plc = placeholders; plc; plc = plc->next) {
  598. int skip_map = 0;
  599. char *p;
  600. name = estrndup(plc->pos, plc->len);
  601. /* check if bound parameter is already available */
  602. if (!strcmp(name, "?") || (p = zend_hash_str_find_ptr(stmt->bound_param_map, name, plc->len)) == NULL) {
  603. spprintf(&idxbuf, 0, tmpl, bind_no++);
  604. } else {
  605. idxbuf = estrdup(p);
  606. skip_map = 1;
  607. }
  608. plc->quoted = idxbuf;
  609. plc->qlen = strlen(plc->quoted);
  610. plc->freeq = 1;
  611. newbuffer_len += plc->qlen;
  612. if (!skip_map && stmt->named_rewrite_template) {
  613. /* create a mapping */
  614. zend_hash_str_update_mem(stmt->bound_param_map, name, plc->len, idxbuf, plc->qlen + 1);
  615. }
  616. /* map number to name */
  617. zend_hash_index_update_mem(stmt->bound_param_map, plc->bindno, idxbuf, plc->qlen + 1);
  618. efree(name);
  619. }
  620. goto rewrite;
  621. } else {
  622. /* rewrite :name to ? */
  623. newbuffer_len = inquery_len;
  624. if (stmt->bound_param_map == NULL) {
  625. ALLOC_HASHTABLE(stmt->bound_param_map);
  626. zend_hash_init(stmt->bound_param_map, 13, NULL, free_param_name, 0);
  627. }
  628. for (plc = placeholders; plc; plc = plc->next) {
  629. char *name;
  630. name = estrndup(plc->pos, plc->len);
  631. zend_hash_index_update_mem(stmt->bound_param_map, plc->bindno, name, plc->len + 1);
  632. efree(name);
  633. plc->quoted = "?";
  634. plc->qlen = 1;
  635. }
  636. goto rewrite;
  637. }
  638. clean_up:
  639. while (placeholders) {
  640. plc = placeholders;
  641. placeholders = plc->next;
  642. if (plc->freeq) {
  643. efree(plc->quoted);
  644. }
  645. efree(plc);
  646. }
  647. return ret;
  648. }
  649. /*
  650. * Local variables:
  651. * tab-width: 4
  652. * c-basic-offset: 4
  653. * End:
  654. * vim600: noet sw=4 ts=4 fdm=marker ft=c
  655. * vim<600: noet sw=4 ts=4
  656. */