免费注册 查看新帖 |

Chinaunix

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

急:在强制SELinux情况下,如何注册加载自己的LSM模块? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-07-30 19:56 |只看该作者 |倒序浏览
写了一个helloword类型的LSM,但是加载的时候出现问题,报错如下:
selinux_register_security:  There is already a secondary security module registered.          //使用mod_reg_security时报错
或者
There is already a security framework initialized, register_security failed.                             // 使用register_security时报错

MySELinux: Unable to register with kernel,error code:-22.

系统使用强制SELinux,内核版本是2.6.9-42.ELsmp。
请问:
1、如何查看系统中已经加载了哪些LSM?
2、如何解决上面这个加载问题?

我的代码如下:
static int new_security_inode_setattr(struct dentry *dentry, struct iattr *attr)
{
        return 0 ;
}
static struct security_operations my_ops = {
        .inode_setattr = new_security_inode_setattr
} ;

static int __init my_lsm_init (void)
{
       /* register ourselves with the security framework */
       printk ("MYLSM init\n");
      //if (error = register_security (&my_ops)) {
      if ((error = mod_reg_security("MyLSM",&my_ops)) != 0)
      {
                printk(KERN_EMERG"MYLSM : Unable to register with kernel,error code:%d.\n",error);
                return -1 ;
      }

       printk(KERN_INFO "MYLSM initialized\n");
       return 0;
}

static void __exit my_lsm_exit (void)
{
        //if (unregister_security (&lids_security_ops))
        if (mod_reg_security("MyLSM",&my_ops) != 0)
        {
                 printk(KERN_INFO "Failure unregistering MYLSM  with the kernel\n");
        }  
       printk(KERN_INFO "MYLSM  Quit\n");
}

module_init (my_lsm_init);
module_exit (my_lsm_exit);
MODULE_LICENSE("GPL");
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP