mysqlnd_loaddata.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 2006-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Andrey Hristov <andrey@php.net> |
  16. | Ulf Wendel <uw@php.net> |
  17. | Georg Richter <georg@php.net> |
  18. +----------------------------------------------------------------------+
  19. */
  20. #include "php.h"
  21. #include "mysqlnd.h"
  22. #include "mysqlnd_wireprotocol.h"
  23. #include "mysqlnd_priv.h"
  24. #include "mysqlnd_debug.h"
  25. /* {{{ mysqlnd_local_infile_init */
  26. static
  27. int mysqlnd_local_infile_init(void ** ptr, const char * const filename)
  28. {
  29. MYSQLND_INFILE_INFO *info;
  30. php_stream_context *context = NULL;
  31. DBG_ENTER("mysqlnd_local_infile_init");
  32. info = ((MYSQLND_INFILE_INFO *)mnd_ecalloc(1, sizeof(MYSQLND_INFILE_INFO)));
  33. if (!info) {
  34. DBG_RETURN(1);
  35. }
  36. *ptr = info;
  37. /* check open_basedir */
  38. if (PG(open_basedir)) {
  39. if (php_check_open_basedir_ex(filename, 0) == -1) {
  40. strcpy(info->error_msg, "open_basedir restriction in effect. Unable to open file");
  41. info->error_no = CR_UNKNOWN_ERROR;
  42. DBG_RETURN(1);
  43. }
  44. }
  45. info->filename = filename;
  46. info->fd = php_stream_open_wrapper_ex((char *)filename, "r", 0, NULL, context);
  47. if (info->fd == NULL) {
  48. snprintf((char *)info->error_msg, sizeof(info->error_msg), "Can't find file '%-.64s'.", filename);
  49. info->error_no = MYSQLND_EE_FILENOTFOUND;
  50. DBG_RETURN(1);
  51. }
  52. DBG_RETURN(0);
  53. }
  54. /* }}} */
  55. /* {{{ mysqlnd_local_infile_read */
  56. static
  57. int mysqlnd_local_infile_read(void * ptr, zend_uchar * buf, unsigned int buf_len)
  58. {
  59. MYSQLND_INFILE_INFO *info = (MYSQLND_INFILE_INFO *)ptr;
  60. int count;
  61. DBG_ENTER("mysqlnd_local_infile_read");
  62. count = (int) php_stream_read(info->fd, (char *) buf, buf_len);
  63. if (count < 0) {
  64. strcpy(info->error_msg, "Error reading file");
  65. info->error_no = CR_UNKNOWN_ERROR;
  66. }
  67. DBG_RETURN(count);
  68. }
  69. /* }}} */
  70. /* {{{ mysqlnd_local_infile_error */
  71. static
  72. int mysqlnd_local_infile_error(void * ptr, char *error_buf, unsigned int error_buf_len)
  73. {
  74. MYSQLND_INFILE_INFO *info = (MYSQLND_INFILE_INFO *)ptr;
  75. DBG_ENTER("mysqlnd_local_infile_error");
  76. if (info) {
  77. strlcpy(error_buf, info->error_msg, error_buf_len);
  78. DBG_INF_FMT("have info, %d", info->error_no);
  79. DBG_RETURN(info->error_no);
  80. }
  81. strlcpy(error_buf, "Unknown error", error_buf_len);
  82. DBG_INF_FMT("no info, %d", CR_UNKNOWN_ERROR);
  83. DBG_RETURN(CR_UNKNOWN_ERROR);
  84. }
  85. /* }}} */
  86. /* {{{ mysqlnd_local_infile_end */
  87. static
  88. void mysqlnd_local_infile_end(void * ptr)
  89. {
  90. MYSQLND_INFILE_INFO *info = (MYSQLND_INFILE_INFO *)ptr;
  91. if (info) {
  92. /* php_stream_close segfaults on NULL */
  93. if (info->fd) {
  94. php_stream_close(info->fd);
  95. info->fd = NULL;
  96. }
  97. mnd_efree(info);
  98. }
  99. }
  100. /* }}} */
  101. /* {{{ mysqlnd_local_infile_default */
  102. PHPAPI void
  103. mysqlnd_local_infile_default(MYSQLND_CONN_DATA * conn)
  104. {
  105. conn->infile.local_infile_init = mysqlnd_local_infile_init;
  106. conn->infile.local_infile_read = mysqlnd_local_infile_read;
  107. conn->infile.local_infile_error = mysqlnd_local_infile_error;
  108. conn->infile.local_infile_end = mysqlnd_local_infile_end;
  109. }
  110. /* }}} */
  111. static const char *lost_conn = "Lost connection to MySQL server during LOAD DATA of a local file";
  112. /* {{{ mysqlnd_handle_local_infile */
  113. enum_func_status
  114. mysqlnd_handle_local_infile(MYSQLND_CONN_DATA * conn, const char * const filename, zend_bool * is_warning)
  115. {
  116. zend_uchar *buf = NULL;
  117. zend_uchar empty_packet[MYSQLND_HEADER_SIZE];
  118. enum_func_status result = FAIL;
  119. unsigned int buflen = 4096;
  120. void *info = NULL;
  121. int bufsize;
  122. size_t ret;
  123. MYSQLND_INFILE infile;
  124. MYSQLND_PFC * net = conn->protocol_frame_codec;
  125. MYSQLND_VIO * vio = conn->vio;
  126. DBG_ENTER("mysqlnd_handle_local_infile");
  127. if (!(conn->options->flags & CLIENT_LOCAL_FILES)) {
  128. php_error_docref(NULL, E_WARNING, "LOAD DATA LOCAL INFILE forbidden");
  129. SET_CLIENT_ERROR(conn->error_info, CR_UNKNOWN_ERROR, UNKNOWN_SQLSTATE,
  130. "LOAD DATA LOCAL INFILE is forbidden, check mysqli.allow_local_infile");
  131. /* write empty packet to server */
  132. ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info);
  133. *is_warning = TRUE;
  134. goto infile_error;
  135. }
  136. infile = conn->infile;
  137. /* allocate buffer for reading data */
  138. buf = (zend_uchar *) mnd_ecalloc(1, buflen);
  139. *is_warning = FALSE;
  140. /* init handler: allocate read buffer and open file */
  141. if (infile.local_infile_init(&info, (char *)filename)) {
  142. char tmp_buf[sizeof(conn->error_info->error)];
  143. int tmp_error_no;
  144. *is_warning = TRUE;
  145. /* error occurred */
  146. tmp_error_no = infile.local_infile_error(info, tmp_buf, sizeof(tmp_buf));
  147. SET_CLIENT_ERROR(conn->error_info, tmp_error_no, UNKNOWN_SQLSTATE, tmp_buf);
  148. /* write empty packet to server */
  149. ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info);
  150. goto infile_error;
  151. }
  152. /* read data */
  153. while ((bufsize = infile.local_infile_read (info, buf + MYSQLND_HEADER_SIZE, buflen - MYSQLND_HEADER_SIZE)) > 0) {
  154. if ((ret = net->data->m.send(net, vio, buf, bufsize, conn->stats, conn->error_info)) == 0) {
  155. DBG_ERR_FMT("Error during read : %d %s %s", CR_SERVER_LOST, UNKNOWN_SQLSTATE, lost_conn);
  156. SET_CLIENT_ERROR(conn->error_info, CR_SERVER_LOST, UNKNOWN_SQLSTATE, lost_conn);
  157. goto infile_error;
  158. }
  159. }
  160. /* send empty packet for eof */
  161. if ((ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info)) == 0) {
  162. SET_CLIENT_ERROR(conn->error_info, CR_SERVER_LOST, UNKNOWN_SQLSTATE, lost_conn);
  163. goto infile_error;
  164. }
  165. /* error during read occurred */
  166. if (bufsize < 0) {
  167. char tmp_buf[sizeof(conn->error_info->error)];
  168. int tmp_error_no;
  169. *is_warning = TRUE;
  170. DBG_ERR_FMT("Bufsize < 0, warning, %d %s %s", CR_SERVER_LOST, UNKNOWN_SQLSTATE, lost_conn);
  171. tmp_error_no = infile.local_infile_error(info, tmp_buf, sizeof(tmp_buf));
  172. SET_CLIENT_ERROR(conn->error_info, tmp_error_no, UNKNOWN_SQLSTATE, tmp_buf);
  173. goto infile_error;
  174. }
  175. result = PASS;
  176. infile_error:
  177. /* get response from server and update upsert values */
  178. if (FAIL == conn->payload_decoder_factory->m.send_command_handle_response(
  179. conn->payload_decoder_factory,
  180. PROT_OK_PACKET, FALSE, COM_QUERY, FALSE,
  181. conn->error_info,
  182. conn->upsert_status,
  183. &conn->last_message)) {
  184. result = FAIL;
  185. }
  186. (*conn->infile.local_infile_end)(info);
  187. if (buf) {
  188. mnd_efree(buf);
  189. }
  190. DBG_INF_FMT("%s", result == PASS? "PASS":"FAIL");
  191. DBG_RETURN(result);
  192. }
  193. /* }}} */
  194. /*
  195. * Local variables:
  196. * tab-width: 4
  197. * c-basic-offset: 4
  198. * End:
  199. * vim600: noet sw=4 ts=4 fdm=marker
  200. * vim<600: noet sw=4 ts=4
  201. */