- 论坛徽章:
- 0
|
写了一个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"); |
|