免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1485 | 回复: 0
打印 上一主题 下一主题

[内核入门] 求助:netlink 中 netlink_kernel_create()中的回调INPUT [复制链接]

论坛徽章:
1
天蝎座
日期:2015-03-09 10:14:22
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-08-26 09:21 |只看该作者 |倒序浏览
这个回调函数总是不调用 netlink_kernel_create()函数已经返回socket成功。
但挂载模块后 INPUT这个回调 总不调用。

代码:

void input(struct sock *sk, int nlen)
{
        printk("\n\nIs Enter CALLBACK FUNCTION \n");
        if ( !p_content )
        {
                printk("p_content is null \n");
                return;
        }
        struct sk_buff *skb;
  struct nlmsghdr *nlh;
  u32 pid;
  int rc, err;
  int len = NLMSG_SPACE(1200);
  char str[100];
  printk("net_link: data is ready to read.\n");
  skb = skb_recv_datagram(nl_sk, 0, 0, &err);
  if (skb->len >= NLMSG_SPACE(0)) {
    nlh = nlmsg_hdr(skb);
    printk("net_link: recv %s.\n", (char *)NLMSG_DATA(nlh));
    memcpy(str,NLMSG_DATA(nlh), sizeof(str));
    pid = nlh->nlmsg_pid;    //pid of sending process
    printk("net_link: pid is %d\n", pid);
    kfree_skb(skb);
    skb = alloc_skb(len, GFP_ATOMIC);
    if (!skb){
      printk(KERN_ERR "net_link: allocate failed.\n");
      return;
    }
    nlh = nlmsg_put(skb,0,0,0,1200,0);
    NETLINK_CB(skb).pid = 0; // from kernel
    memcpy(NLMSG_DATA(nlh), p_content, sizeof(p_content));
   
    printk("net_link: going to send.\n");
    rc = netlink_unicast(nl_sk, skb, pid, MSG_DONTWAIT);
    memset(p_content, 0, 1024);
    if (rc < 0) {
      printk(KERN_ERR "net_link: can not unicast skb (%d)\n", rc);
    }
    printk("net_link: send is ok.\n");
  }
}


static int test_netlink(void) {
  nl_sk = netlink_kernel_create( &init_net, NETLINK_TEST, 0, input, NULL, THIS_MODULE);
  if (!nl_sk) {
    printk(KERN_ERR "net_link: Cannot create netlink socket.\n");
    return -EIO;
  }
  printk("net_link: create socket ok.\n");
  return 0;
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP