亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

酒泉市| 西丰县| 望城县| 怀来县| 吴江市| 霍邱县| 上虞市| 丰镇市| 搜索| 乌鲁木齐县| SHOW| 峨眉山市| 高安市| 裕民县| 太原市| 安陆市| 大兴区| 铅山县| 马尔康县| 陇川县| 阿荣旗| 宜都市| 灌阳县| 丰都县| 梁平县| 孟津县| 沛县| 和平区| 修文县| 琼结县| 赤壁市| 盐边县| 清流县| 准格尔旗| 肥东县| 九台市| 平塘县| 小金县| 塘沽区| 密山市| 定边县|