- 论坛徽章:
- 0
|
如题:
为什么,挂载在NF_INET_LOCAL_OUT,为什么 skb->csum 一赋值就死机
另外利用下面的代码也获取不到mac地址,他和NF_INET_LOCAL_IN 有什么不同。
if((skb)->mac_header >= (skb)->head && ((skb)->mac_header + ETH_HLEN) <= (skb)->data)
{
eth_hdr1 = eth_hdr(skb);
//获得网卡
}
以下是测试代码
#include <linux/init.h>
#include <linux/module.h>
#include <linux/netfilter.h>
#include <linux/socket.h>
#include <linux/netfilter_ipv4.h>
#include <linux/skbuff.h>
#include <linux/netdevice.h>
#include <linux/inet.h>
#include <net/ip.h>
#include <net/tcp.h>
#include <linux/if_ether.h>
#include <linux/string.h>
MODULE_LICENSE("GPL");
MODULE_AUTHOR("fqb");
static struct nf_hook_ops nfho;
unsigned int window(unsigned int hooknum,
struct sk_buff *__skb,
const struct net_device *in,
const struct net_device *out,
int (*okfn)(struct sk_buff *))
{
struct sk_buff *skb;
struct iphdr *iph;
struct tcphdr *tcph;
int tot_len;
int iph_len;
int tcph_len;
skb = __skb;
if(skb == NULL)
return NF_ACCEPT;
iph = ip_hdr(skb);
if(iph == NULL)
return NF_ACCEPT;
tot_len = ntohs(iph->tot_len);
iph_len = ip_hdrlen(skb);
if(iph->protocol == IPPROTO_TCP)
{
skb_pull(skb,iph_len);
skb_reset_transport_header(skb);
tcph = tcp_hdr(skb);
tcph_len = tcp_hdrlen(skb);
printk("The origin window = %d\n",ntohs(tcph->window));
tcph->window = htons(ntohs(tcph->window) >> 3);
printk("The adjusted window = %u\n",ntohs(tcph->window));
tcph->check = 0;
skb->csum = csum_partial((unsigned char *)tcph, tot_len - iph_len,0); //skb->csum=0 也会死机
tcph->check = csum_tcpudp_magic(iph->saddr,
iph->daddr,
ntohs(iph->tot_len) - iph_len,iph->protocol,
skb->csum);
iph->check = 0;
iph->check = ip_fast_csum(iph,iph->ihl);
skb_push(skb,iph_len);
skb_reset_network_header(skb);
return NF_ACCEPT;
}
return NF_ACCEPT;
}
static int __init modify_init(void)
{
int ret;
nfho.hook = window;
nfho.pf = AF_INET;
nfho.hooknum = NF_INET_LOCAL_OUT;
nfho.priority = NF_IP_PRI_FIRST;
ret = nf_register_hook(&nfho);
if(ret < 0)
{
printk("%s\n", "can't modify skb hook!");
return ret;
}
return 0;
}
static void modify_exit(void)
{
nf_unregister_hook(&nfho);
}
module_init(modify_init);
module_exit(modify_exit); |
|