Apache模块开发/用C语言扩展apache(3:一个非常简单的apache module)

Apache模块开发/用C语言扩展apache(3:一个非常简单的apache module)
by linux_prog
    有了上面几篇文章的基础,大家自己再下点功夫,应该可以去写一些简单的模块了,
下面贴出一个很简单的apache module,大家一起分析一下。
    $ cd /usr/local/apache2.2.4
    $ vi mod_c.c
 

#include <time.h>
#include <stdlib.h>
#include "apr.h"
#include "apr_lib.h"
#include "apr_strings.h"

#define APR_WANT_STRFUNC
#include "apr_want.h"

#include "httpd.h"
#include "http_config.h"
#include "http_core.h"
#include "http_request.h"

module AP_MODULE_DECLARE_DATA c_module;

static int c_handler(request_rec *r)
{
 r->content_type="text/plain";
 ap_rprintf(r,"handler:%s\n",r->handler);
 ap_rprintf(r,"query string:%s\n",r->args);
 ap_rprintf(r,"filename:%s\n",r->filename);
 return OK;
}
static void register_hooks(apr_pool_t *p)
{
 ap_hook_handler(c_handler, NULL, NULL, APR_HOOK_MIDDLE);
}

/* module structure */
module AP_MODULE_DECLARE_DATA c_module = {
    STANDARD20_MODULE_STUFF,
    NULL, /* dir config creater */
    NULL, /* dir merger — default is to override */
    NULL, /* server config */
    NULL, /* merge server configs */
    NULL, /* command apr_table_t */
    register_hooks /* register hooks */
};

编译并安装这个模块(apache提供的apxs非常好):
     $ ./bin/apxs -c ./mod_c.c
     $ ./bin/apxs -a -i -n c mod_c.la
     这时apxs会自动帮我们把编译好的mod_c.so安装到modules/目录中,而且httpd.conf中已经把这个module load进去了:
     [root@cn-weblog apache2.2.4]# grep mod_c conf/httpd.conf     
      LoadModule c_module           modules/mod_c.so
    
     测试这个模块:
     $ ./bin/apachectl stop
     $ ./bin/apachectl start

     在IE中访问

    ap_hook_handler(c_handler, NULL, NULL, APR_HOOK_MIDDLE);


    表示在处理内容请求时调用我们函数–c_handler


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
<br>我在改造APACHE服务器授权访问时,需要对不合法的客户端请求进行过滤。对不合法请求需要立即发送一个错误提示页面给客户端。<br>发送错误提示页面的程序片断如下:<br> //非法请求作错误跳转<br> char *location = "/error/error.jsp";<br> r->status = HTTP_OK;<br> r->method = apr_pstrdup(r->pool, "GET");<br> r->method_number = M_GET;<br> ap_internal_redirect_handler(location, r);<br> //杀死子请求<br> ap_update_child_status(r->connection->sbh, SERVER_IDLE_KILL, r);<br>后来发现这样写有问题,以上代码对于没有启用mod_proxy的HTTP或HTTPS请求都是可以正确处理的。但是如果启用了mod_proxy功能后,就不会正确执行了。<br><br>于是我做了如下修改:<br> apr_table_setn(r->headers_out, "Http", "302");<br> //我们设置这个错误跳转到http://www.yahoo.com。<br> apr_table_setn(r->headers_out, "Location", "http://www.yahoo.com");<br> r->status = HTTP_TEMPORARY_REDIRECT; <br> //ap_send_error_response函数第二个参数设置为NULL(既0)<br> ap_send_error_response(r, 0); <br> //处理掉子请求<br> ap_update_child_status(r->connection->sbh, SERVER_IDLE_KILL, r);<br>就可以正确跳转了。<br>ap_send_error_response()在http_protocol.h定义为:<br>/**<br> * Send error back to client.<br> * @param r The current request<br> * @param recursive_error last arg indicates error status in case we get <br> * an error in the process of trying to deal with an ErrorDocument <br> * to handle some other error. In that case, we print the default <br> * report for the first thing that went wrong, and more briefly report <br> * on the problem with the ErrorDocument.<br> * @deffunc void ap_send_error_response(request_rec *r, int recursive_error)<br> */<br>AP_DECLARE(void) ap_send_error_response(request_rec *r, int recursive_error);<br><br>其实ap_send_error_response函数也可以向客户端发送一个指定的页面。设置好<br>apr_table_setn(r->headers_out, "Http", "302");<br>apr_table_setn(r->headers_out, "Location", "http://www.yahoo.com");<br>ap_send_error_response的第二个参数设为"NULL",他就跳转到"http://www.yahoo.com"了。<br>这是我看了ap_send_error_response函数源代码后发现的。<br><br><br>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值