- 论坛徽章:
- 0
|
下面是hook的代码
麻烦各位帮忙看下,怎么做
static unsigned int hook_func_postrouting(unsigned int hooknum,
struct sk_buff *skb,
const struct net_device *in,
const struct net_device *out,
int (*okfn)(struct sk_buff *))
{
struct iphdr *iph;
struct tcphdr *tcph;
struct rtable *rt;
int dest_port;
int orig_ip;
int datalen;
if (!skb) {
return NF_ACCEPT;
} else {
rt = skb_rtable(skb);
iph = ip_hdr(skb);
if (!iph) {
return NF_ACCEPT;
} else {
if ( skb_linearize(skb) != 0 ) {
printk(KERN_INFO "skb not liner\n");
return NF_ACCEPT;
}
if ( iph->protocol == IPPROTO_TCP ) {
tcph = (struct tcphdr*) (((char*) iph) + iph->ihl * 4);
if ( !tcph ) {
return NF_ACCEPT;
}
dest_port = ntohs(tcph->dest);
// printk(KERN_INFO "[FILTER]: from %pI4:%d to %pI4:%d\n", &iph->saddr, ntohs(tcph->source), &iph->daddr, ntohs(tcph->dest));
if ( dest_port == 80 ) {
orig_ip = iph->daddr;
iph->daddr = in_aton("192.168.2.116");
// printk(KERN_INFO "[FILTER]: modify dest ip from %pI4:%d to %pI4:%d\n", &orig_ip, dest_port, &iph->daddr, 80);
iph->check = 0;
ip_send_check(iph);
datalen = skb->len - iph->ihl * 4;
tcph->check = 0;
tcph->check = tcp_v4_check(datalen, iph->saddr, iph->daddr, csum_partial(tcph, datalen, 0));
}
}
return NF_ACCEPT;
}
}
}
|
|