Apache用户编写的模块中的未定义引用

时间:2019-01-24 16:42:41

标签: apache

我在Apache模块中有一些未定义的参考错误。我已将源代码缩减到可以重现该错误的最低限度。以下是“ mod_test.c”的来源...

#include "httpd.h"
#include "http_config.h"
#include "http_request.h"
#include "http_protocol.h"
#include "http_core.h"
#include "http_main.h"
#include "http_log.h"
#include "ap_mpm.h"
#include "apr_strings.h"
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include <netdb.h>

module AP_MODULE_DECLARE_DATA test_module;

static int test_handler(request_rec *r);
static int test_init(apr_pool_t *p, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *s);

/* Structure containing state information for the module */

typedef struct {
} ns_mod_config;


static int ns_typematch(request_rec *r) {

  ns_mod_config *ns_scfg = ap_get_module_config(r->server->module_config,
                                          &test_module);

  core_request_config *creq_cfg;
  creq_cfg = ap_get_core_module_config(r->request_config);

  return 0;
}


module AP_MODULE_DECLARE_DATA test_module = {
        STANDARD20_MODULE_STUFF,NULL,NULL,NULL,NULL,NULL,NULL};

我正在使用或多或少的标准Makefile来编译模块(请注意,已删除了install选项,因为这是一个演示该问题的测试。)

APXS=/usr/local/apache2/bin/apxs
APXS_OPTS=-Wc, -Wc,-DDST_CLASS=3
SRC=src/mod_test.c
OBJ=src/.libs/mod_test.so

$(OBJ): $(SRC)
        @echo
        $(APXS) $(APXS_OPTS) -c $(SRC)
        @echo
        @echo write '"make install"' to install module
        @echo

clean:
        rm -f src/.libs/*
        rm -f src/*.o
        rm -f src/*.lo
        rm -f src/*.la
        rm -f src/*.slo
        rmdir src/.libs

编译失败如下:

/usr/local/apache2/bin/apxs -Wc, -Wc,-DDST_CLASS=3 -c src/mod_test.c
/usr/local/apache2/build/libtool --silent --mode=compile gcc -prefer-pic   -DLINUX -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -g -O2 -pthread -I/usr/local/apache2/include  -I/usr/local/apache2/include   -I/usr/local/apache2/include   -DDST_CLASS=3  -c -o src/mod_test.lo src/mod_test.c && touch src/mod_test.slo
src/mod_test.c: In function âns_typematchâ:
src/mod_test.c:34:3: error: unknown type name âcore_request_configâ
   core_request_config *creq_cfg;
   ^~~~~~~~~~~~~~~~~~~
src/mod_test.c:35:14: warning: implicit declaration of function âap_get_core_module_configâ [-Wimplicit-function-declaration]
   creq_cfg = ap_get_core_module_config(r->request_config);
              ^~~~~~~~~~~~~~~~~~~~~~~~~
src/mod_test.c:35:12: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
   creq_cfg = ap_get_core_module_config(r->request_config);
            ^
apxs:Error: Command failed with rc=65536
.
Makefile:23: recipe for target 'src/.libs/mod_test.so' failed
make: *** [src/.libs/mod_test.so] Error 1

我不确定这种情况如何发生。 http_core.h存在于/ usr / local / apache2 / include中,并且确实包含编译声称缺少的定义。同一系统上的其他六个模块编译没有错误,尽管它们都不使用对核心数据结构的特定引用。

将非常感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

发布到Apache模块邮件列表后,它会发现问题分为两部分。

  1. 在Apache 2.2中需要定义CORE_PRIVATE才能访问核心数据结构。

  2. ap_get_core_module_config是Apache 2.4构造。