2019-06-11 03:21:35 +00:00
|
|
|
|
#include <linux/module.h>
|
|
|
|
|
#include <linux/netlink.h>
|
|
|
|
|
#include <linux/netfilter.h>
|
|
|
|
|
#include <linux/ip.h>
|
|
|
|
|
#include <uapi/linux/netfilter_ipv4.h>
|
|
|
|
|
#include <uapi/linux/ip.h>
|
|
|
|
|
#include <net/netlink.h>
|
|
|
|
|
#include <net/net_namespace.h>
|
|
|
|
|
|
|
|
|
|
#include "../netlink_api/libnetlink_k.h"
|
|
|
|
|
#include "../../../Common/commuapinl.h"
|
2019-06-25 08:16:20 +00:00
|
|
|
|
//#include "pdeliverynl_kinit.h"
|
2019-06-11 03:21:35 +00:00
|
|
|
|
|
2019-06-20 03:20:46 +00:00
|
|
|
|
//int nf_nlmsg_multicast(struct netlinkk_cfg *g_nlcfg, struct sk_buff *skb);
|
2019-06-11 03:21:35 +00:00
|
|
|
|
unsigned int pdelivery_hook_func(void *priv,
|
|
|
|
|
struct sk_buff *skb,
|
|
|
|
|
const struct nf_hook_state *state);
|
2019-06-20 03:20:46 +00:00
|
|
|
|
//int debugfs_pkt_num_stati(struct netlinkk_cfg *g_nlcfg, struct nlmsghdr *nlh);
|
2019-06-11 03:21:35 +00:00
|
|
|
|
|
2019-06-25 08:16:20 +00:00
|
|
|
|
int pdeliv_unicast(struct sk_buff *skb, u32 portid);
|
2019-06-11 03:21:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct netlinkk_cfg g_nlcfg = {0};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static struct nf_hook_ops upm_nfho = {
|
|
|
|
|
.hook = pdelivery_hook_func,
|
2019-06-20 03:20:46 +00:00
|
|
|
|
.hooknum = 1, /* should be NF_IP_FORWARD,use NF_IP_LOCAL_IN=1 for test */
|
2019-06-11 03:21:35 +00:00
|
|
|
|
.pf = PF_INET,
|
|
|
|
|
.priority = NF_IP_PRI_FILTER,
|
|
|
|
|
};
|
|
|
|
|
|
2019-06-21 09:02:36 +00:00
|
|
|
|
struct commnl_msgtype_process pdelivnl_msg_handlers[NLMGS_PDELIVERY_MAX_TYPE];
|
2019-06-11 03:21:35 +00:00
|
|
|
|
|
2019-06-25 08:16:20 +00:00
|
|
|
|
|
2019-06-21 02:35:43 +00:00
|
|
|
|
int pdeliv_rcv_stat(struct sk_buff *skb, struct nlmsghdr *nlh,struct netlink_ext_ack * ext_ack)
|
2019-06-11 03:21:35 +00:00
|
|
|
|
{
|
2019-06-21 02:35:43 +00:00
|
|
|
|
int ret = 0;
|
2019-06-14 09:14:06 +00:00
|
|
|
|
|
2019-06-20 03:20:46 +00:00
|
|
|
|
/**************************************************************************************************************/
|
|
|
|
|
|
|
|
|
|
switch(nlh->nlmsg_type)
|
|
|
|
|
{
|
2019-06-14 09:14:06 +00:00
|
|
|
|
//case COMMNMSG_POLICYCONF:/**/
|
2019-06-21 02:35:43 +00:00
|
|
|
|
case NLMSG_PDELIV_DEBUGFS:
|
|
|
|
|
|
|
|
|
|
#ifdef NLDEBUG_ACK_COOKIES
|
|
|
|
|
ret = debugfs_pkt_num_stati(&g_nlcfg, nlh, ext_ack);
|
|
|
|
|
#else
|
2019-06-21 09:02:36 +00:00
|
|
|
|
ret = debugfs_pkt_num_stati_witisend(&g_nlcfg, nlh,pdelivnl_msg_handlers);
|
2019-06-21 02:35:43 +00:00
|
|
|
|
#endif
|
2019-06-28 07:08:54 +00:00
|
|
|
|
NETLINK_DEBUG(g_nlcfg.debugfs_prk_enable, "*****************biduichengong********%d*******\n", nlh->nlmsg_type);
|
2019-06-21 02:35:43 +00:00
|
|
|
|
return ret;
|
|
|
|
|
break;
|
2019-06-28 07:08:54 +00:00
|
|
|
|
case NK_DEBUGFS_PRK_ONOFF:
|
|
|
|
|
ret = debugfs_prk_onoff(&g_nlcfg, nlh, ext_ack);
|
|
|
|
|
return ret;
|
|
|
|
|
break;
|
2019-06-14 09:14:06 +00:00
|
|
|
|
|
2019-06-20 03:20:46 +00:00
|
|
|
|
default:
|
2019-06-28 07:08:54 +00:00
|
|
|
|
NETLINK_DEBUG(g_nlcfg.debugfs_prk_enable, "libnetlink Unknow msgtype recieved!\n");
|
2019-06-14 09:14:06 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2019-06-20 03:20:46 +00:00
|
|
|
|
/**************************************************************************************************************/
|
2019-06-11 03:21:35 +00:00
|
|
|
|
|
2019-06-20 03:20:46 +00:00
|
|
|
|
return 0;
|
2019-06-11 03:21:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-21 09:02:36 +00:00
|
|
|
|
int nl_pdeliv_data_ready(struct sk_buff *skb, struct nlmsghdr *nlh, struct netlink_ext_ack *extack)
|
|
|
|
|
{
|
|
|
|
|
int ret = 0;
|
|
|
|
|
|
2019-06-28 07:08:54 +00:00
|
|
|
|
NETLINK_DEBUG(g_nlcfg.debugfs_prk_enable, "nl_pdeliv_data_ready() nlmsg_type = %d begin.\n",nlh->nlmsg_type);
|
2019-06-21 09:02:36 +00:00
|
|
|
|
g_nlcfg.dfs.rev_total++;
|
|
|
|
|
|
|
|
|
|
if(NULL != pdelivnl_msg_handlers[nlh->nlmsg_type].doit)
|
|
|
|
|
{
|
|
|
|
|
pdelivnl_msg_handlers[nlh->nlmsg_type].dfs.rev_total++;
|
|
|
|
|
ret = pdelivnl_msg_handlers[nlh->nlmsg_type].doit(skb, nlh,extack);
|
|
|
|
|
if(ret >= 0)
|
|
|
|
|
{
|
|
|
|
|
g_nlcfg.dfs.rev_cb_sucess++;
|
|
|
|
|
pdelivnl_msg_handlers[nlh->nlmsg_type].dfs.rev_cb_sucess++;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
g_nlcfg.dfs.rev_cb_fail++;
|
|
|
|
|
pdelivnl_msg_handlers[nlh->nlmsg_type].dfs.rev_cb_fail++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pdelivnl_msg_handlers[nlh->nlmsg_type].dfs.rev_drop_total++;
|
|
|
|
|
pdelivnl_msg_handlers[nlh->nlmsg_type].dfs.rev_drop_nodoit++;
|
|
|
|
|
g_nlcfg.dfs.rev_drop_total++;
|
|
|
|
|
g_nlcfg.dfs.rev_drop_nodoit++;
|
|
|
|
|
|
2019-06-28 07:08:54 +00:00
|
|
|
|
NETLINK_DEBUG(g_nlcfg.debugfs_prk_enable, "no doit fun register with nlmsg_type = %d .\n",nlh->nlmsg_type);
|
2019-06-21 09:02:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-28 07:08:54 +00:00
|
|
|
|
NETLINK_DEBUG(g_nlcfg.debugfs_prk_enable, "nl_pdeliv_data_ready() nlmsg_type = %d end.\n",nlh->nlmsg_type);
|
2019-06-21 09:02:36 +00:00
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void libpdelivnl_rcv(struct sk_buff *skb)
|
|
|
|
|
{
|
2019-06-28 07:08:54 +00:00
|
|
|
|
NETLINK_DEBUG(g_nlcfg.debugfs_prk_enable, "libpdelivnl_rcv:\n");
|
2019-06-21 09:02:36 +00:00
|
|
|
|
|
|
|
|
|
netlink_rcv_skb(skb, &nl_pdeliv_data_ready);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int pdeliv_msgtype_register( int msgtype,commnl_doit_func doit,
|
|
|
|
|
commnl_dumpit_func dumpit,commnl_calcit_func calcit)
|
|
|
|
|
{
|
|
|
|
|
if(msgtype >= NLMGS_PDELIVERY_MAX_TYPE )
|
|
|
|
|
{
|
|
|
|
|
printk(KERN_ERR"netlink.ko-msgtype register invalid msgtype %d,protocl pdeliv.\r\n",msgtype);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
commnl_register(pdelivnl_msg_handlers, msgtype,doit, dumpit,calcit);
|
|
|
|
|
|
|
|
|
|
printk(KERN_INFO"netlink.ko-msgtype register sucess msgtype %d,protocl comcfg.\r\n",msgtype);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int pdeliv_msgtype_unregister(int msgtype)
|
|
|
|
|
{
|
|
|
|
|
if(msgtype >= NETLINK_PDELIVERY )
|
|
|
|
|
{
|
|
|
|
|
printk(KERN_ERR"commnl_unregister invalid msgtype %d,protocl conncfg.\r\n",msgtype);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
commnl_unregister(pdelivnl_msg_handlers,msgtype);
|
|
|
|
|
|
|
|
|
|
printk(KERN_DEBUG"commnl_unregister sucess msgtype %d,protocl pdeliv.\r\n",msgtype);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2019-06-11 03:21:35 +00:00
|
|
|
|
|
|
|
|
|
int __init pdelivery_init(void)
|
|
|
|
|
{
|
|
|
|
|
int ret = -1;
|
|
|
|
|
|
2019-06-21 09:02:36 +00:00
|
|
|
|
printk(KERN_CRIT "pdeliv initialed!\n");
|
2019-06-11 03:21:35 +00:00
|
|
|
|
|
2019-06-25 06:42:36 +00:00
|
|
|
|
g_nlcfg.msg_processer = &(pdelivnl_msg_handlers[0]);
|
|
|
|
|
g_nlcfg.msg_processer_num = NLMGS_PDELIVERY_MAX_TYPE;
|
|
|
|
|
|
2019-06-11 03:21:35 +00:00
|
|
|
|
/*init for pdelivery module*/
|
|
|
|
|
g_nlcfg.groups = PDELIVERY_NLGRP_MAX;
|
|
|
|
|
g_nlcfg.subscriptions = NETLINK_PDELIVERY;
|
2019-06-21 09:02:36 +00:00
|
|
|
|
g_nlcfg.cfg.input = libpdelivnl_rcv;
|
2019-06-11 03:21:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ret = libnetlinkk_init_byproto(&g_nlcfg);
|
|
|
|
|
if(ret < 0)
|
|
|
|
|
{
|
|
|
|
|
printk (KERN_CRIT "pdelivery_init netlink init fail!.\n");
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*init the netfilter hook for upm*/
|
2019-06-21 09:02:36 +00:00
|
|
|
|
printk (KERN_INFO "pdeliv register netfilter module.\n");
|
2019-06-11 03:21:35 +00:00
|
|
|
|
nf_register_net_hook (&init_net,&upm_nfho);
|
|
|
|
|
|
|
|
|
|
/*do msg process register*/
|
|
|
|
|
pdeliv_msgtype_register(PDNLGRP_REQUEST,pdeliv_rcv_stat,NULL,NULL);
|
2019-06-21 02:35:43 +00:00
|
|
|
|
pdeliv_msgtype_register(NLMSG_PDELIV_DEBUGFS,pdeliv_rcv_stat,NULL,NULL);
|
2019-06-28 07:08:54 +00:00
|
|
|
|
pdeliv_msgtype_register(NK_DEBUGFS_PRK_ONOFF,pdeliv_rcv_stat,NULL,NULL);
|
|
|
|
|
|
2019-06-11 03:21:35 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void __exit pdelivery_exit(void)
|
|
|
|
|
{
|
2019-06-21 09:02:36 +00:00
|
|
|
|
printk(KERN_CRIT "pdeliv exit\n");
|
2019-06-11 03:21:35 +00:00
|
|
|
|
libnetlinkk_exit(&g_nlcfg);
|
|
|
|
|
|
|
|
|
|
/*init the netfilter hook for upm*/
|
2019-06-21 09:02:36 +00:00
|
|
|
|
printk (KERN_INFO "pdeliv unregister netfilter module.\n");
|
2019-06-11 03:21:35 +00:00
|
|
|
|
nf_unregister_net_hook (&init_net,&upm_nfho);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/****************************************************************/
|
|
|
|
|
/*函数功能:pdelivery模块注册的netfilter钩子回调函数,用于从 */
|
|
|
|
|
/*netfilter框架接收到报文,然后调用netlink发送接口将报文上送到*/
|
|
|
|
|
/*用户态。报文内容从链路层头开始。 */
|
|
|
|
|
/*输入参数:priv:优先级;skb 报文;state:netfilter钩子状态。 */
|
|
|
|
|
/*输出参数: 无*/
|
|
|
|
|
/*返回值:固定返回NF_ACCEPT表示放行报文。 */
|
|
|
|
|
/****************************************************************/
|
|
|
|
|
unsigned int pdelivery_hook_func(void *priv,
|
|
|
|
|
struct sk_buff *skb,
|
|
|
|
|
const struct nf_hook_state *state)
|
|
|
|
|
{
|
|
|
|
|
void *payload;
|
|
|
|
|
struct sk_buff *out_skb;
|
|
|
|
|
void *out_payload;
|
|
|
|
|
struct nlmsghdr *out_nlh;
|
|
|
|
|
int payload_len; // with padding, but ok for echo
|
|
|
|
|
struct iphdr *iph;
|
|
|
|
|
int ret = -1;
|
2019-06-26 08:05:01 +00:00
|
|
|
|
|
|
|
|
|
#if 0
|
2019-06-11 03:21:35 +00:00
|
|
|
|
iph = ip_hdr(skb);
|
|
|
|
|
printk(KERN_INFO "pdelivery_hook_func:pktlen=%d,mac_header = %d IP:",skb->len,skb->mac_len);
|
|
|
|
|
printk_ipaddress(iph->saddr);
|
|
|
|
|
printk(KERN_INFO "-->");
|
|
|
|
|
printk_ipaddress(iph->daddr);
|
2019-06-26 08:05:01 +00:00
|
|
|
|
#endif
|
2019-06-11 03:21:35 +00:00
|
|
|
|
|
|
|
|
|
payload = skb_mac_header(skb);
|
|
|
|
|
payload_len = skb->len + skb->mac_len;/**/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
out_skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); //分配足以存放默认大小的sk_buff
|
2019-06-21 09:02:36 +00:00
|
|
|
|
if (!out_skb)
|
|
|
|
|
{
|
|
|
|
|
goto failure;
|
|
|
|
|
}
|
2019-06-11 03:21:35 +00:00
|
|
|
|
|
2019-06-25 08:16:20 +00:00
|
|
|
|
out_nlh = nlmsg_put(out_skb, 0, 0, NLMSG_RECV_RAW_PKT, payload_len, 0); //payload_len is the user data total len填充协议头数据
|
2019-06-21 09:02:36 +00:00
|
|
|
|
if (!out_nlh)
|
|
|
|
|
{
|
|
|
|
|
goto failure;
|
|
|
|
|
}
|
2019-06-11 03:21:35 +00:00
|
|
|
|
|
|
|
|
|
out_payload = nlmsg_data(out_nlh);
|
|
|
|
|
memcpy(out_payload, payload,payload_len);/**/
|
2019-06-21 02:35:43 +00:00
|
|
|
|
|
|
|
|
|
/*example:use nla_put to add other attr here. ***********************************/
|
|
|
|
|
/*int nla_put(struct sk_buff *skb, int attrtype, int attrlen, const void *data);*/
|
|
|
|
|
/********************************************************************************/
|
2019-06-11 03:21:35 +00:00
|
|
|
|
|
2019-06-26 08:05:01 +00:00
|
|
|
|
#if 0
|
2019-06-21 09:02:36 +00:00
|
|
|
|
printk(KERN_DEBUG "%02x %02x %02x %02x %02x %02x %02x %02x\r\n",
|
2019-06-11 03:21:35 +00:00
|
|
|
|
*((char*)out_payload),*((char*)out_payload+1),
|
|
|
|
|
*((char*)out_payload+2),*((char*)out_payload+3),
|
|
|
|
|
*((char*)out_payload+4),*((char*)out_payload+5),
|
|
|
|
|
*((char*)out_payload+6),*((char*)out_payload+7));
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-06-14 09:14:06 +00:00
|
|
|
|
ret = nf_nlmsg_multicast(&g_nlcfg, out_skb);
|
2019-06-21 09:02:36 +00:00
|
|
|
|
if(ret < 0)
|
|
|
|
|
{
|
|
|
|
|
goto failure;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-26 08:05:01 +00:00
|
|
|
|
//printk(KERN_INFO "pdelivery_hook_func() end.\n");
|
2019-06-25 06:42:36 +00:00
|
|
|
|
g_nlcfg.dfs.send_succ ++;
|
|
|
|
|
g_nlcfg.msg_processer[NLMSG_RECV_RAW_PKT].dfs.send_succ++;
|
|
|
|
|
|
2019-06-11 03:21:35 +00:00
|
|
|
|
return NF_ACCEPT;/*must return a value*/
|
|
|
|
|
|
|
|
|
|
failure:
|
2019-06-26 10:03:24 +00:00
|
|
|
|
if(out_skb != NULL)
|
|
|
|
|
{
|
|
|
|
|
//kfree_skb(out_skb);
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-26 08:05:01 +00:00
|
|
|
|
//printk(KERN_INFO " failed in pdelivery_hook_func!\n");
|
2019-06-25 06:42:36 +00:00
|
|
|
|
g_nlcfg.dfs.send_fail ++;
|
|
|
|
|
g_nlcfg.msg_processer[NLMSG_RECV_RAW_PKT].dfs.send_fail++;
|
2019-06-11 03:21:35 +00:00
|
|
|
|
|
|
|
|
|
return NF_ACCEPT;/*must return a value*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2019-06-24 09:33:16 +00:00
|
|
|
|
int pdeliv_unicast(struct sk_buff *skb, u32 portid)
|
|
|
|
|
{
|
2019-06-25 08:16:20 +00:00
|
|
|
|
int ret = -1;
|
|
|
|
|
struct nlmsghdr *nlh = NULL;
|
|
|
|
|
int msgtype = 0;
|
|
|
|
|
|
|
|
|
|
ret = commnl_unicast(g_nlcfg.sk, skb, portid);
|
|
|
|
|
|
|
|
|
|
if(ret < 0)
|
|
|
|
|
{
|
|
|
|
|
g_nlcfg.dfs.send_fail++;
|
|
|
|
|
g_nlcfg.dfs.send_fail_reason = ret;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
g_nlcfg.dfs.send_succ++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nlh = (struct nlmsghdr *)skb->head;
|
|
|
|
|
msgtype = nlh->nlmsg_type;
|
|
|
|
|
if((msgtype > NLMGS_PDELIVERY_MAX_TYPE ) || (msgtype <= PDNL_BASE))
|
|
|
|
|
{
|
|
|
|
|
printk(KERN_ERR "pdeliv_unicast:msg type invalid.\r\n");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
//printk(KERN_DEBUG "pdeliv_unicast:msg type %d.\r\n",msgtype);
|
|
|
|
|
if(ret < 0)
|
|
|
|
|
{
|
|
|
|
|
pdelivnl_msg_handlers[msgtype].dfs.send_fail++;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pdelivnl_msg_handlers[msgtype].dfs.send_succ++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return(ret);
|
2019-06-24 09:33:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2019-06-21 09:02:36 +00:00
|
|
|
|
EXPORT_SYMBOL_GPL(pdeliv_msgtype_register);
|
|
|
|
|
EXPORT_SYMBOL_GPL(pdeliv_msgtype_unregister);
|
2019-06-24 09:33:16 +00:00
|
|
|
|
EXPORT_SYMBOL_GPL(pdeliv_unicast);
|
2019-06-11 03:21:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
module_init(pdelivery_init);
|
|
|
|
|
module_exit(pdelivery_exit);
|
|
|
|
|
|
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
MODULE_DESCRIPTION("a simple example for upm(user policy manage) netlink protocal family");
|
|
|
|
|
MODULE_AUTHOR("RSLjdkt");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|