base64.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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. | Author: Jim Winstead <jimw@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #include <string.h>
  20. #include "php.h"
  21. #include "base64.h"
  22. /* {{{ base64 tables */
  23. static const char base64_table[] = {
  24. 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',
  25. 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
  26. 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
  27. 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
  28. '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/', '\0'
  29. };
  30. static const char base64_pad = '=';
  31. static const short base64_reverse_table[256] = {
  32. -2, -2, -2, -2, -2, -2, -2, -2, -2, -1, -1, -2, -2, -1, -2, -2,
  33. -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
  34. -1, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, 62, -2, -2, -2, 63,
  35. 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -2, -2, -2, -2, -2, -2,
  36. -2, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
  37. 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -2, -2, -2, -2, -2,
  38. -2, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
  39. 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -2, -2, -2, -2, -2,
  40. -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
  41. -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
  42. -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
  43. -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
  44. -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
  45. -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
  46. -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
  47. -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2
  48. };
  49. /* }}} */
  50. PHPAPI unsigned char *php_base64_encode(const unsigned char *str, int length, int *ret_length) /* {{{ */
  51. {
  52. const unsigned char *current = str;
  53. unsigned char *p;
  54. unsigned char *result;
  55. if (length < 0) {
  56. if (ret_length != NULL) {
  57. *ret_length = 0;
  58. }
  59. return NULL;
  60. }
  61. if (((size_t)length + 2) / 3 > INT_MAX/4 ) {
  62. TSRMLS_FETCH();
  63. php_error_docref(NULL TSRMLS_CC, E_WARNING, "String too long, maximum is %d", INT_MAX/4);
  64. return NULL;
  65. }
  66. result = (unsigned char *) safe_emalloc((length + 2) / 3, 4 * sizeof(char), 1);
  67. p = result;
  68. while (length > 2) { /* keep going until we have less than 24 bits */
  69. *p++ = base64_table[current[0] >> 2];
  70. *p++ = base64_table[((current[0] & 0x03) << 4) + (current[1] >> 4)];
  71. *p++ = base64_table[((current[1] & 0x0f) << 2) + (current[2] >> 6)];
  72. *p++ = base64_table[current[2] & 0x3f];
  73. current += 3;
  74. length -= 3; /* we just handle 3 octets of data */
  75. }
  76. /* now deal with the tail end of things */
  77. if (length != 0) {
  78. *p++ = base64_table[current[0] >> 2];
  79. if (length > 1) {
  80. *p++ = base64_table[((current[0] & 0x03) << 4) + (current[1] >> 4)];
  81. *p++ = base64_table[(current[1] & 0x0f) << 2];
  82. *p++ = base64_pad;
  83. } else {
  84. *p++ = base64_table[(current[0] & 0x03) << 4];
  85. *p++ = base64_pad;
  86. *p++ = base64_pad;
  87. }
  88. }
  89. if (ret_length != NULL) {
  90. *ret_length = (int)(p - result);
  91. }
  92. *p = '\0';
  93. return result;
  94. }
  95. /* }}} */
  96. /* {{{ */
  97. /* generate reverse table (do not set index 0 to 64)
  98. static unsigned short base64_reverse_table[256];
  99. #define rt base64_reverse_table
  100. void php_base64_init(void)
  101. {
  102. char *s = emalloc(10240), *sp;
  103. char *chp;
  104. short idx;
  105. for(ch = 0; ch < 256; ch++) {
  106. chp = strchr(base64_table, ch);
  107. if(ch && chp) {
  108. idx = chp - base64_table;
  109. if (idx >= 64) idx = -1;
  110. rt[ch] = idx;
  111. } else {
  112. rt[ch] = -1;
  113. }
  114. }
  115. sp = s;
  116. sprintf(sp, "static const short base64_reverse_table[256] = {\n");
  117. for(ch =0; ch < 256;) {
  118. sp = s+strlen(s);
  119. sprintf(sp, "\t% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,% 3d,\n", rt[ch+0], rt[ch+1], rt[ch+2], rt[ch+3], rt[ch+4], rt[ch+5], rt[ch+6], rt[ch+7], rt[ch+8], rt[ch+9], rt[ch+10], rt[ch+11], rt[ch+12], rt[ch+13], rt[ch+14], rt[ch+15]);
  120. ch += 16;
  121. }
  122. sprintf(sp, "};");
  123. php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Reverse_table:\n%s", s);
  124. efree(s);
  125. }
  126. */
  127. /* }}} */
  128. PHPAPI unsigned char *php_base64_decode(const unsigned char *str, int length, int *ret_length) /* {{{ */
  129. {
  130. return php_base64_decode_ex(str, length, ret_length, 0);
  131. }
  132. /* }}} */
  133. PHPAPI unsigned char *php_base64_decode_ex(const unsigned char *str, int length, int *ret_length, zend_bool strict) /* {{{ */
  134. {
  135. const unsigned char *current = str;
  136. int ch, i = 0, j = 0, k;
  137. /* this sucks for threaded environments */
  138. unsigned char *result;
  139. result = (unsigned char *)safe_emalloc(length, 1, 1);
  140. /* run through the whole string, converting as we go */
  141. while ((ch = *current++) != '\0' && length-- > 0) {
  142. if (ch == base64_pad) {
  143. if (*current != '=' && ((i % 4) == 1 || (strict && length > 0))) {
  144. if ((i % 4) != 1) {
  145. while (isspace(*(++current))) {
  146. continue;
  147. }
  148. if (*current == '\0') {
  149. continue;
  150. }
  151. }
  152. efree(result);
  153. return NULL;
  154. }
  155. continue;
  156. }
  157. ch = base64_reverse_table[ch];
  158. if ((!strict && ch < 0) || ch == -1) { /* a space or some other separator character, we simply skip over */
  159. continue;
  160. } else if (ch == -2) {
  161. efree(result);
  162. return NULL;
  163. }
  164. switch(i % 4) {
  165. case 0:
  166. result[j] = ch << 2;
  167. break;
  168. case 1:
  169. result[j++] |= ch >> 4;
  170. result[j] = (ch & 0x0f) << 4;
  171. break;
  172. case 2:
  173. result[j++] |= ch >>2;
  174. result[j] = (ch & 0x03) << 6;
  175. break;
  176. case 3:
  177. result[j++] |= ch;
  178. break;
  179. }
  180. i++;
  181. }
  182. k = j;
  183. /* mop things up if we ended on a boundary */
  184. if (ch == base64_pad) {
  185. switch(i % 4) {
  186. case 1:
  187. efree(result);
  188. return NULL;
  189. case 2:
  190. k++;
  191. case 3:
  192. result[k] = 0;
  193. }
  194. }
  195. if(ret_length) {
  196. *ret_length = j;
  197. }
  198. result[j] = '\0';
  199. return result;
  200. }
  201. /* }}} */
  202. /* {{{ proto string base64_encode(string str)
  203. Encodes string using MIME base64 algorithm */
  204. PHP_FUNCTION(base64_encode)
  205. {
  206. char *str;
  207. unsigned char *result;
  208. int str_len, ret_length;
  209. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &str, &str_len) == FAILURE) {
  210. return;
  211. }
  212. result = php_base64_encode((unsigned char*)str, str_len, &ret_length);
  213. if (result != NULL) {
  214. RETVAL_STRINGL((char*)result, ret_length, 0);
  215. } else {
  216. RETURN_FALSE;
  217. }
  218. }
  219. /* }}} */
  220. /* {{{ proto string base64_decode(string str[, bool strict])
  221. Decodes string using MIME base64 algorithm */
  222. PHP_FUNCTION(base64_decode)
  223. {
  224. char *str;
  225. unsigned char *result;
  226. zend_bool strict = 0;
  227. int str_len, ret_length;
  228. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|b", &str, &str_len, &strict) == FAILURE) {
  229. return;
  230. }
  231. result = php_base64_decode_ex((unsigned char*)str, str_len, &ret_length, strict);
  232. if (result != NULL) {
  233. RETVAL_STRINGL((char*)result, ret_length, 0);
  234. } else {
  235. RETURN_FALSE;
  236. }
  237. }
  238. /* }}} */
  239. /*
  240. * Local variables:
  241. * tab-width: 4
  242. * c-basic-offset: 4
  243. * End:
  244. * vim600: sw=4 ts=4 fdm=marker
  245. * vim<600: sw=4 ts=4
  246. */