LSM 코딩 중에 문제점이 있어서 질문 해봅니다 @_@

singi의 이미지

#include
#include
#include
#include
#include

#define MY_NAME "LSM_TEST"

static struct security_operations *original_ops = NULL;
static struct security_operations *secondary_ops = NULL;
static int secondary;

static int rootplug_task_setuid (uid_t id0, uid_t id1, uid_t id2, int flags)
{
printk("%d %d %d %d\n",id0,id1,id2,flags);
return 0;
}

int t_register_security (const char *name, struct security_operations *ops)
{
if (secondary_ops != original_ops) {
printk("there is already a secondary security module registered.\n");
return -EINVAL;
}

secondary_ops = ops;

printk("registering secondary module %s.\n",name);

return 0;
}

int t_unregister_security (const char *name, struct security_operations *ops)
{
if (ops != secondary_ops) {
printk("someone tried to unregister a security module that is not registered.\n");
return -EINVAL;
}

secondary_ops = original_ops;

return 0;
}

static struct security_operations lsrc_security_ops = {
.task_setuid = rootplug_task_setuid,
.register_security = t_register_security,
.unregister_security = t_unregister_security,
};

static int __init rootplug_init (void)
{
if(register_security (&lsrc_security_ops))
{
printk("1\n");
if(mod_reg_security(MY_NAME, &lsrc_security_ops))
{
printk("test\n");
return -EINVAL;
}
secondary = 1;
printk("LSM Loaded No Problem!!\n");
return 0;
}
}

static void __exit rootplug_exit (void)
{
if(secondary)
{
if(mod_unreg_security(MY_NAME, &lsrc_security_ops))
{
printk("what the!\n");
}
}

if(unregister_security(&lsrc_security_ops))
{
printk("!!!\n");
}
}

module_init (rootplug_init);
module_exit (rootplug_exit);
MODULE_LICENSE("GPL");

일단 소스는 위와 같고요..인터넷에서 짜맞춰서 컴파일까진 되게 해봤습니다만.

insmod 로 하니

[root@security gg]# insmod gg.ko
insmod: error inserting 'gg.ko': -1 Invalid parameters
[root@security gg]#

라는 에러메시지가 나옵니다. /var/log/messages 를 보니

Apr 2 16:15:46 security kernel: 1
Apr 2 16:15:46 security kernel: test
[root@security gg]#

라는 메시지가 있구요..음음..몇일 삽질 해보다가 도저히 모르겠어서 질문 올립니다..

혹시 SElinux 가 on 되어 있어야 하는건가요?

고수님들의 답변 기다리겠습니다~

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.