`
yangzb
  • 浏览: 3518377 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

DSO开发指南晋级(APACHE2.0 MOD 模块开发)

    博客分类:
  • C++
阅读更多

APACHE2.0 MOD 模块开发 STEP 1

一. 目的

写一个 APACHE2.0 MOD 模块,读取配置,并对所有后缀为 .hello 的请求进行处理。

二. 步骤

创建一个 mod_hello.c 文件

1. 定义一个模块。

#include "httpd.h"

#include "http_config.h"

module AP_MODULE_DECLARE_DATA hello_module;

2. 定义接口。

module AP_MODULE_DECLARE_DATA hello_module =

{

        STANDARD20_MODULE_STUFF, // standard stuff; no need to mess with this.

        NULL, // create per-directory configuration structures - we do not.

        NULL, // merge per-directory - no need to merge if we are not creating anything.

        create_modhello_config, // create per-server configuration structures.

        NULL, // merge per-server - hrm - examples I have been reading don't bother with this for trivial cases.

        mod_hello_cmds, // configuration directive handlers

        mod_hello_register_hooks, // request handlers

};

说明:

其中 create_modhello_config 函数为用来为自定义的结构分配空间, mod_hello_cmds 定义了参数序列和参数的读取函数。 mod_hello_register_hooks 定义了请求处理函数

3. 初始化配置,读取配置。

配置结构的定义:

typedef struct {

        char   *welcome;

        int    max_process;

} modhello_config;

参数的定义:

static const command_rec mod_hello_cmds[] =

{

        AP_INIT_TAKE1(

                "welcome",

                set_modhello_string,

                NULL,

                RSRC_CONF,

                "hello,apache"

        ),

        AP_INIT_TAKE1(

                 "ModuleMaxProcess",

                set_modhello_string,

                NULL,

                RSRC_CONF,

                NULL

        ),

        {NULL}

};

参数结构的创建,由 apache 在装载模块时候调用。

static void *create_modhello_config(apr_pool_t *p, server_rec *s)

{

        modhello_config *newcfg;

        // allocate space for the configuration structure from the provided pool p.

        newcfg = (modhello_config *) apr_pcalloc(p, sizeof(modhello_config));

        // return the new server configuration structure.

        return (void *) newcfg;

}

参数读取函数

static const char *set_modhello_string(cmd_parms *parms, void *mconfig, const char *arg)

{

        modhello_config *s_cfg = ap_get_module_config(parms->server->module_config, &hello_module);

         if(!strcmp(parms->cmd->name,"welcome")){

                 s_cfg->welcome= (char *) arg;

        }else if(!strcmp(parms->cmd->name,"ModuleMaxProcess")){

                s_cfg->max_process=atoi(arg);

        }

        // success

        return NULL;

}

4. 处理请求。

注册请求。

static void mod_hello_register_hooks (apr_pool_t *p)

{

ap_hook_handler(mod_hello_method_handler, NULL, NULL, APR_HOOK_LAST);

}

请求处理函数

static int mod_hello_method_handler (request_rec *r)

{

        modhello_config *s_cfg ;

        if(strcmp("hello-script",r->handler)) return DECLINED;

         s_cfg= ap_get_module_config(r->server->module_config, &hello_module);

        fprintf(stderr,"%s,%s,%d\n",r->content_type,r->handler,s_cfg->max_process);

        ap_rputs("hello,world!",r);

        return 0;

}

三. 安装。

1.       编译。

Makefile.

all:    mod_hello.c

         gcc -g -I/home/wee/apache2/include/ -fPIC -o mod_hello.o -c mod_hello.c

        gcc -shared -I/home/wee/apache2/include/ -o libmodhello.so -lc mod_hello.o

        cp *.so /home/wee/apache2/modules/

clean:

        rm *.o *.so

2.       配置。

修改 Httpd.conf

增加处理:

LoadModule hello_module        modules/libmodhello.so

AddHandler hello-script .hello

          增加参数:

              welcome "hello,world"

ModuleMaxProcess   5

3.       安装

gcc -v

Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs

gcc version 2.96 20000731 (Red Hat Linux 7.3 2.96-110)

make.

四. 测试。

访问 http://xxx.xxx.xxx.xxx/a.hello, 屏幕上打印出 “hello,world”, 同时 LOG 中也有打印信息。

五. 参考资料

1. http://threebit.net/tutorials/apache2_modules/tut1/tutorial1.html

2. Writing.Apache Modules with Perl and C Lincoln Stein and Doug MacEachern

3. http://apache-modules.com/

4. http://www.apache.org/

分享到:
评论

相关推荐

    APACHE2.0_MOD_模块开发(C语言)

    ### Apache 2.0 MOD 模块开发:处理 .hello 请求 #### 一、概述 本文将详细介绍如何为Apache 2.0开发一个名为 `mod_hello` 的自定义模块,该模块的功能是读取配置文件中的特定设置,并针对URL路径中以 `.hello` ...

    Apache2.0中文手册

    认证(Authentication) 对诸如服务器、客户端或...这是一个perl脚本,用于编译模块源代码为动态共享对象(Dynamic Shared Objects)(DSO),并帮助安装到Apache网络服务器中。 见: Manual Page: apxs 证书(Certificate)

    Apache HTTP服务器2.0中文说明

    15. **模块管理**:Apache 2.0的动态模块加载功能(DSO,Dynamic Shared Object)使得服务器可以在运行时加载或卸载模块,提高灵活性。 了解并熟练掌握这些Apache 2.0的关键知识点,可以帮助你更好地管理和维护Web...

    ApacheV2.0中文手册

    Apache 2.0 版本的新特性 从 2.0 升级到 2.2 Apache许可证 参考手册 编译与安装 启动 停止与重新启动 运行时配置指令 指令速查 模块索引 多路处理模块(MPM) 过滤器 处理器 服务器与工具 词汇表 用户...

    Apache HTTP Server Version 2.2 文档(2013.4.10最新)

    将模块从Apache1.3转化到Apache2.0 Apache 2.0 对请求的处理 Apache 2.0 线程安全问题 经常问到的问题 认证、授权、访问控制 CGI动态页面 .htaccess文件 如何.../指南 用户网站目录 服务器端包含入门 关于DNS和...

    关于Delphi7的IntraWeb编译的Apache(DSO)模块

    当使用Apache发布由IntraWeb开发的应用时,我们需要创建一个特定的DSO模块,即“IWDSOProject_module”,这个模块将作为桥梁连接Apache与IntraWeb应用程序。 #### 配置步骤详解 1. **创建IntraWeb项目**: - 使用...

    dso dso开发资料

    而"webdemo"可能是一个Web应用程序的示例,演示了如何在Web服务环境中使用DSO,例如Apache服务器可能会使用DSO模块来扩展其功能。 学习DSO开发,需要理解Linux系统编程基础,包括进程、内存管理和文件I/O。此外,...

    apache中文手册(html)

    Apache 2.0 版本的新特性 从 2.0 升级到 2.2 Apache许可证 参考手册 编译与安装 启动 停止与重新启动 运行时配置指令 指令速查 模块索引 多路处理模块(MPM) 过滤器 处理器 服务器与工具 词汇表 用户...

    Apache2.2中文版参考手册

    Apache 2.0 版本的新特性 从 2.0 升级到 2.2 Apache许可证 参考手册 编译与安装 启动 停止与重新启动 运行时配置指令 指令速查 模块索引 多路处理模块(MPM) 过滤器 处理器 服务器与工具 词汇表 用户...

    Apache:Apache模块:Apache模块的版本控制与升级策略.pdf

    其中,动态模块(DSO)和静态模块是两种常见的模块类型,动态模块提供了运行时的灵活性,而静态模块则可能提供更好的性能。Apache模块根据功能可以分为核心模块、MPM模块、SSL模块、URL重写模块、缓存模块、日志模块...

    Apache2.2中文手册

    Apache 2.0 版本的新特性 从 2.0 升级到 2.2 Apache许可证 参考手册 编译与安装 启动 停止与重新启动 运行时配置指令 指令速查 模块索引 多路处理模块(MPM) 过滤器 处理器 服务器与工具 词汇表 用户...

    Apache2.2中文参考.chm

    Apache 2.0 版本的新特性 从 2.0 升级到 2.2 Apache许可证 参考手册 编译与安装 启动 停止与重新启动 运行时配置指令 指令速查 模块索引 多路处理模块(MPM) 过滤器 处理器 服务器与工具 词汇表 用户...

    Apache 2.2 中文手册

    * Apache 2.0 版本的新特性 * 从 2.0 升级到 2.2 * Apache许可证 参考手册 * 编译与安装 * 启动 * 停止与重新启动 * 运行时配置指令 * 指令速查 * 模块索引 * 多路处理模块(MPM) * 过滤器 * 处理器 *...

    Linux系统上把PHP编译进Apache静态内核

    在编译Apache时,需要使用`./configure`命令,并通过`--disable-module=all`禁用所有默认模块,然后启用基本模块如access、log_config、dir和mime。若选择DSO模式,应添加`--enable-module=so`选项。但在这里,我们...

    apache2.28

    安装Apache1.2.28。我没有选择安装Apache2.0是我对他还是不放心,因为网上最新公布的apache的漏洞基本上是针对2.0,当然大家可以自己选择安装相应的版本。我这里讲的都是采用DSO动态编译的方法编译Apache.

    DSO138源码

    【DSO138源码】是一个开源项目,主要用于学习和理解数字存储示波器(Digital Storage Oscilloscope,简称DSO)的工作原理及其软件实现。这个项目为电子工程爱好者和学生提供了一个动手实践的机会,可以尝试将源码...

    linux下集成Apache与weblogic.pdf

    确保Apache支持DSO(Dynamic Shared Object)是安装此模块的前提,你可以通过执行`APACHE_HOME/bin/httpd -l`检查Apache是否已启用`mod_so.c`模块。 若Apache不支持DSO,你需要重新编译Apache,添加`--enable-...

    缺失的OpenGL ES 2.0 lib和dso文件

    libglesv2.lib是Windows环境下链接OpenGL ES 2.0动态链接库(Dynamic Shared Object,简称dso)的文件,它包含了OpenGL ES的函数定义和实现。 在Android系统中,对应的库文件通常是libGLESv2.so,这是Android系统的...

Global site tag (gtag.js) - Google Analytics