简体   繁体   English

使用linux-kernel模块发送UDP数据包而不使用套接字

[英]UDP packet send with linux-kernel module without using sockets

I am writing a kernel module which creates a IP packet. 我正在编写一个创建IP数据包的内核模块。 Now i want to send this packet but haven't created any socket for it's transmission. 现在我想发送这个数据包,但没有为它的传输创建任何套接字。

is there any way to send it directly with the help of kernel routines. 有没有办法在内核例程的帮助下直接发送它。

as i have tracked the linux kernel code for packet transmission there is a function defined in net/core/dev.c named as dev_hard_start_xmit() . 因为我已经跟踪了用于数据包传输的linux内核代码,所以在net / core / dev.c中定义了一个名为dev_hard_start_xmit()的函数。 can we use it? 我们可以用吗?

Actually i don't want to use sockets. 其实我不想使用套接字。

You don't need a socket to send a UDP packet in kernel, you just need to allocate an skb, and construct the IP header and UDP header by yourself, and finally send it out by dev_queue_xmit(). 您不需要套接字在内核中发送UDP数据包,您只需要分配一个skb,并自己构建IP头和UDP头,最后由dev_queue_xmit()发送出去。

skb = alloc_skb(len, GFP_ATOMIC);
if (!skb)
        return;

skb_put(skb, len);

skb_push(skb, sizeof(*udph));
skb_reset_transport_header(skb);
udph = udp_hdr(skb);
udph->source = htons(....);
udph->dest = htons(...);
udph->len = htons(udp_len);
udph->check = 0;
udph->check = csum_tcpudp_magic(local_ip,
                                remote_ip,
                                udp_len, IPPROTO_UDP,
                                csum_partial(udph, udp_len, 0));

if (udph->check == 0)
        udph->check = CSUM_MANGLED_0;

skb_push(skb, sizeof(*iph));
skb_reset_network_header(skb);
iph = ip_hdr(skb);

/* iph->version = 4; iph->ihl = 5; */
put_unaligned(0x45, (unsigned char *)iph);
iph->tos      = 0;
put_unaligned(htons(ip_len), &(iph->tot_len));
iph->id       = htons(atomic_inc_return(&ip_ident));
iph->frag_off = 0;
iph->ttl      = 64;
iph->protocol = IPPROTO_UDP;
iph->check    = 0;
put_unaligned(local_ip, &(iph->saddr));
put_unaligned(remote_ip, &(iph->daddr));
iph->check    = ip_fast_csum((unsigned char *)iph, iph->ihl);

eth = (struct ethhdr *) skb_push(skb, ETH_HLEN);
skb_reset_mac_header(skb);
skb->protocol = eth->h_proto = htons(ETH_P_IP);
memcpy(eth->h_source, dev->dev_addr, ETH_ALEN);
memcpy(eth->h_dest, remote_mac, ETH_ALEN);

skb->dev = dev;


dev_queue_xmit(skb);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM