这是我的场景......我有来自供应商的库,它作为我们使用的产品的一部分进行加密/解密(不知道它是如何工作的)。我构建了一个PHP扩展,一切都通过CLI工作得非常好。这是我为PHP扩展编写的raptor.c文件:
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
//#if HAVE_LIBRAPTOR
#include "php_raptor.h"
#include "raptor.h"
#include "ext/standard/info.h"
/* If you declare any globals in php_raptor.h uncomment this:
ZEND_DECLARE_MODULE_GLOBALS(raptor)
*/
/* True global resources - no need for thread safety here */
static int le_raptor;
/* {{{ raptor_functions[]
*
* Every user visible function must have an entry in raptor_functions[].
*/
const zend_function_entry raptor_functions[] = {
PHP_FE(raptor_decNK, NULL)
PHP_FE(raptor_encNK, NULL)
{NULL, NULL, NULL} /* Must be the last line in raptor_functions[] */
};
/* }}} */
/* {{{ raptor_module_entry
*/
zend_module_entry raptor_module_entry = {
#if ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
"raptor",
raptor_functions,
NULL,
NULL,
NULL,
NULL,
PHP_MINFO(raptor),
#if ZEND_MODULE_API_NO >= 20010901
"0.1", /* Replace with version number for your extension */
#endif
STANDARD_MODULE_PROPERTIES
};
/* }}} */
#ifdef COMPILE_DL_RAPTOR
ZEND_GET_MODULE(raptor)
#endif
/* {{{ PHP_MINFO_FUNCTION
*/
PHP_MINFO_FUNCTION(raptor)
{
php_info_print_table_start();
php_info_print_table_header(2, "raptor API support", "enabled");
php_info_print_table_end();
}
/* }}} */
PHP_FUNCTION(raptor_decNK) {
char * enctext;
unsigned char * dectext;
int enctextsize;
size_t dectextsize;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &enctext, &enctextsize) == FAILURE) {
RETURN_NULL();
}
dectext = decNK((unsigned char *) enctext, (size_t) enctextsize, &dectextsize);
if (dectext == NULL) {
RETURN_FALSE;
} else {
RETURN_STRINGL((char *) dectext, dectextsize, 1);
}
}
PHP_FUNCTION(raptor_encNK) {
char * dectext;
unsigned char * enctext;
int dectextsize;
size_t enctextsize;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &dectext, &dectextsize) == FAILURE) {
RETURN_NULL();
}
enctext = encNK((unsigned char *) dectext, (size_t) dectextsize, &enctextsize);
if (enctext == NULL) {
RETURN_FALSE;
} else {
RETURN_STRINGL((char *) enctext, enctextsize, 1);
}
}
//#endif
以及供应商的raptor.h文件的适用部分:
unsigned char *decNK(unsigned char * s, size_t inLen, size_t * outLen);
unsigned char *encNK(unsigned char * s, size_t inLen, size_t * outLen);
我的test.php文件包含非常简单的代码:
<?php
$x = 1;
echo "$x\n";
$y = raptor_encNK($x);
echo "$y\n";
$x = raptor_decNK($y);
echo "$x\n";
?>
从我获得的CLI(每次运行输出$ y更改,但最终输出始终正确)
# /usr/local/bin/php -f /usr/local/var/htdocs/test.php
1
FL//haHZgltG
1
通过浏览器获得相同的代码(再次输出$ y更改,最终输出始终为废话)
1
TgPw72NF9Zby
<binary crap>
所以我觉得有些东西在转移到Apache时会丢失...或者我已经搞砸了扩展而无法弄明白......或者两者兼而有之。我只是不明白为什么它可以通过CLI工作而不是通过Apache。
答案 0 :(得分:1)
所以最后这不是size_t的问题,而是代码中整数的大小。关于为什么它在CLI调用时使用Apache而不是使用Apache和Web浏览器仍然存在大量混淆......我可能永远都找不到。
答案 1 :(得分:0)
apache error_log报告了什么?几乎可以肯定,你会找到原因的线索。
就个人而言,我怀疑存在权限问题 - 请记住,apache用户的权限非常有限 - 当然比命令行更严格。