91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linux中生成testtcp.ko模塊代碼怎么寫

發布時間:2021-10-13 11:28:29 來源:億速云 閱讀:133 作者:柒染 欄目:編程語言

這期內容當中小編將會給大家帶來有關Linux中生成testtcp.ko模塊代碼怎么寫,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

生成testtcp.ko模塊,添加到內核。

添加該模塊后,每個由該機器發出的數據包,如果是TCP協議,且源端口為81,將其改為RST包發出。

一、代碼

1.1 文件:testtcp_main.c

#include <linux/netfilter.h>
#include <linux/netfilter_ipv4.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
#include <linux/inetdevice.h>
#include <linux/string.h>
#include <net/route.h>
#include <linux/inet.h>
#include <linux/ip.h>
#include <linux/tcp.h>
#include <net/checksum.h>
#include <net/tcp.h>
#include <net/ip.h>

unsigned int hook_mark1(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 sk_buff *sk = skb;

    u16 src_port,dst_port;
    u16 datalen;

    iph = ip_hdr(sk);
    tcph = (struct udphdr*)((u_int8_t*)iph + (iph->ihl << 2));
    src_port = ntohs(tcph->source);
    dst_port = ntohs(tcph->dest);
    
    if(src_port == 81 || dst_port == 81)
    	printk("<0>""src_port:%d, dst_port:%d, protocol:%d, rst:%d\n",src_port, dst_port, iph->protocol, tcph->rst);

    if (iph->protocol == 6 && src_port == 81)
    {  
        printk("<0>""---000---src_port:%d, dst_port:%d, protocol:%d, rst:%d\n",src_port, dst_port, iph->protocol, tcph->rst);

	tcph->rst = 1;

        iph->check = 0;
        iph->check = ip_fast_csum((unsigned char*)iph, iph->ihl);

        datalen = ntohs(iph->tot_len) - (iph->ihl << 2);
        tcph->check = 0;
        tcph->check = csum_tcpudp_magic(iph->saddr, iph->daddr, datalen,
                                            iph->protocol, csum_partial((unsigned char*)tcph,  datalen, 0));
        skb->ip_summed = CHECKSUM_NONE;
        
        return NF_ACCEPT;
    }

    return NF_ACCEPT;
}


static struct nf_hook_ops nfho_marker1;

static int init_marker(void)
{    
    nfho_marker1.hook=hook_mark1;
    nfho_marker1.hooknum=NF_INET_LOCAL_OUT;
    nfho_marker1.pf=PF_INET;
    nfho_marker1.priority=NF_IP_PRI_LAST;
    nf_register_hook(&nfho_marker1);

    return 0;
}

static void exit_marker(void)
{
    nf_unregister_hook(&nfho_marker1);       
}


module_init(init_marker);
module_exit(exit_marker);

1.2 文件Makefile:

obj-m := testtcp.o
testtcp-objs := testtcp_main.o

KERNELDIR = /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
default:
      $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
clean:  
      $(MAKE) -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
install:
      cp inerdns.ko ../

注意事項:

      1. 第一行的testtcp.o 與第二行的testtcp_main.o  不能重復。

      2. 第一行的testtcp.o 與第二行的testtcp-objs  前綴必須相同。

      3. “default:”、“clean:  ”、“install:” 下一行的內容,行前面必須有tab鍵。

二、編譯、添加模塊到內核

2.1 編譯

      執行make,即可編譯代碼,并生產模塊testtcp.ko。

2.2 添加模塊到內核

      lsmod                          查看linux內核模塊。

      insmod testtcp.ko     將testtcp.ko模塊添加到內核。

      (rmmod testtcp           從內核中刪除testtcp.ko模塊。)

三、測試模塊功能

3.1 測試代碼

     可以參照以下文章代碼修改:http://blog.csdn.net/guowenyan001/article/details/11742621

3.2 linux下訪問URL

      curl 192.168.9.200:81 

3.3 抓包查看

      用tcpdump抓包查看,相關數據包是否已經被修改為RST包。

四、注意事項

      內核模塊代碼,可能會造成系統崩潰,需要重啟,所以最好在測試機上測試內核代碼。

上述就是小編為大家分享的Linux中生成testtcp.ko模塊代碼怎么寫了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长春市| 丹寨县| 平山县| 阳曲县| 赣州市| 吉安市| 苍南县| 汾西县| 板桥市| 邵阳县| 文水县| 长寿区| 北辰区| 盐边县| 饶阳县| 永德县| 明溪县| 噶尔县| 遵化市| 荣成市| 潮安县| 栾城县| 大同市| 东阿县| 正阳县| 桃源县| 文登市| 玉环县| 饶河县| 呼玛县| 新巴尔虎右旗| 石台县| 弋阳县| 平原县| 建阳市| 马鞍山市| 赣榆县| 通道| 九龙坡区| 苍南县| 康马县|