3

当通过 mod_php 启用 PHP 时,如何在 Apache 请求中覆盖从 PHP 脚本中调用的 connect() 系统调用?

我在custom-connect.c中定义了我的自定义 connect() 版本:

#define _GNU_SOURCE 1
#include <stdio.h>
#include <arpa/inet.h>
#include <dlfcn.h>

int (*real_connect)(int, const struct sockaddr *, socklen_t);
FILE *f;

void _init (void) {
    const char *err;

    f = fopen("/tmp/connect.log", "a");

    real_connect = dlsym (RTLD_NEXT, "connect");
    if ((err = dlerror()) != NULL) {
        fprintf (f, "dlsym (connect): %s\n", err);
    }
}

int connect(int fd, const struct sockaddr *sk, socklen_t sl) {
    static struct sockaddr_in *sk_in;
    sk_in = (struct sockaddr_in *)sk;

    fprintf(f, "Custom connect: %d %s:%d\n", fd, inet_ntoa(sk_in->sin_addr), ntohs(sk_in->sin_port));

    return real_connect(fd, sk, sl);
}

我编译它:

gcc -nostartfiles -fpic -shared custom-connect.c -o custom-connect.so -ldl

我有一个简单的脚本curl-test.php,它在内部调用了 connect():

<?php
$ch = curl_init("http://example.com");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($ch);
curl_close($ch);
echo 'Received length: ' . strlen($data) . "\n";

当我从命令行使用 LD_PRELOAD 运行我的脚本时:

LD_PRELOAD=./custom-connect.so php curl-test.php

然后看起来不错,我可以看到我的自定义 connect() 将某些内容记录到/tmp/connect.log

Custom connect: 4 192.168.178.1:53
Custom connect: 4 93.184.216.34:80

看起来它在命令行中工作正常。但是,当我从 Apache 运行脚本并通过 mod_php 启用 PHP 时,如何用我自己的版本覆盖 connect()?我还应该使用 LD_PRELOAD 吗?如果是,那么如何配置呢?

4

0 回答 0