module 프로그램에러 한번더~..^^(변수명 충돌)

익명 사용자의 이미지

이제 막 깨닫기 시작한 모듈을 가지고 시스템콜을 wrapping하는 프로그램을 짜
봤습니다
하지만 역시나 에러가 뜨는군요...
변수 타입 충돌같은데 어떻게 해야할지 약간 난감합니다

----------------------------
/*module wrap.c
시스템 호출을 둘러싸고 정보를 수집하는 시스템 호출구현 */
#include
#include
#include
#include
#include
#include

extern void *sys_call_table[];
asmlinkage int(*original_call)(const char *, int, int);
asmlinkage int(*getuid_call)();

/*사용자가 무슨 파일을 열었는지 정보를 출력
그리고 원래의 sys_open을 호출*/
asmlinkage int sys_our_open(char *fname, int flags, int mode)
{
printk("%s file is opened by %d\n",fname,getuid_call());
return(original_call(fname, flags, mode));
}

/*sys_call_table에 등록되어었는 sys_open시스템 호출을 내가 구현한
sys_our_open으로 대치*/
int init_module()
{
original_call = sys_call_table[__NR_open];
sys_call_table[__NR_open] = sys_our_open;
getuid_call = sys_call_table[__NR_getuid];
printk("Module Init \n");
return 0;
}

void cleanup_module()
{
sys_call_table[__NR_open] = original_call;
}/*test_program for wrap.o module, test_wrap.c*/

#include
#include
#include

int main(void)
{
int fd;
fd = open("/root/privite_doc/study/kernel/wrap.c",O_RDWR);
return 0;
}
----------------------------------
여기까지가 제가 짠 소스이구요....
밑에부터가 에러입니다
에러라고 해서 별것은 아닌데
변수타입이 충돌하는 문제같군요....
왜 타입이 틀리죠?
내가 gcc를 업드레이드 해서 그런건가?
hancom 2.2를 쓰고 있구요...
gcc-2.96이 불안하다고 해서 gcc-2.95.4로 바꾸었습니다
그런데 얼마전에 모듈컴파일 에러를 잡다가
gcc를 3.0으로 바꾸었구요..
rpm은 전부 한컴의 자료실에 있는 철이님이 올려놓으신걸 사용했습니다
-------------------------------------
gcc -Wall -D__KERNEL__ -DMODULE -D_LINUX -O2 -c wrap.c
In file included from wrap.c33
/usr/include/sys/types.h40 conflicting types for `fsid_t'
/usr/include/asm/statfs.h8 previous declaration of `fsid_t'
/usr/include/sys/types.h61 conflicting types for `dev_t'
/usr/include/linux/types.h14 previous declaration of `dev_t'
/usr/include/sys/types.h71 conflicting types for `mode_t'
/usr/include/linux/types.h16 previous declaration of `mode_t'
/usr/include/sys/types.h76 conflicting types for `nlink_t'
/usr/include/linux/types.h17 previous declaration of `nlink_t'
In file included from /usr/include/sys/types.h215,
from wrap.c33
/usr/include/sys/select.h38 conflicting types for `sigset_t'
/usr/include/asm/signal.h21 previous declaration of `sigset_t'
In file included from /usr/include/sys/select.h44,
from /usr/include/sys/types.h215,
from wrap.c33
/usr/include/time.h107 redefinition of `struct timespec'
In file included from /usr/include/sys/select.h46,
from /usr/include/sys/types.h215,
from wrap.c33
/usr/include/bits/time.h68 redefinition of `struct timeval'
In file included from /usr/include/sys/types.h215,
from wrap.c33
/usr/include/sys/select.h74 conflicting types for `fd_set'
/usr/include/linux/types.h13 previous declaration of `fd_set'
In file included from /usr/include/sys/stat.h98,
from wrap.c34
/usr/include/bits/stat.h37 redefinition of `struct stat'
In file included from /usr/include/fcntl.h33,
from wrap.c35
/usr/include/bits/fcntl.h137 redefinition of `struct flock'
make *** [wrap.o] 오류 1
-----------------------------------------

익명 사용자의 이미지

쩝... 노파심이지만

#include
#include
#include
#include
#include
#include

extern void *sys_call_table[];
asmlinkage int(*original_call)(const char *, int, int);
asmlinkage int(*getuid_call)();

/*사용자가 무슨 파일을 열었는지 정보를 출력
그리고 원래의 sys_open을 호출*/
asmlinkage int sys_our_open(char *fname, int flags, int mode)
{
printk("%s file is opened by %d\n",fname,getuid_call());
return(original_call(fname, flags, mode));
}

/*sys_call_table에 등록되어었는 sys_open시스템 호출을 내가 구현한
sys_our_open으로 대치*/
int init_module()
{
original_call = sys_call_table[__NR_open];
sys_call_table[__NR_open] = sys_our_open;
getuid_call = sys_call_table[__NR_getuid];
printk("Module Init \n");
return 0;
}

void cleanup_module()
{
sys_call_table[__NR_open] = original_call;
}/*test_program for wrap.o module, test_wrap.c*/

///////////////////// 여기서 부터는 다른 파일이되어야 함 /////////
#include
#include
#include

int main(void)
{
int fd;
fd = open("/root/privite_doc/study/kernel/wrap.c",O_RDWR);
return 0;
}

이게 설마 전체가 다 한파일은 아니겠죠... 밑의 main 함수는 다른

파일에서 따로 만들어서 테스트를 하셔야 합니다.

그러니깐... wrap 함수를 컴파일 하시고

insmod 로 모듈 집어넣고

그 다음에 main 함수를 다른 파일에 짜서 테스트 해보시길 바랍니다.

그럼 고운 하루...( 앞부분 까지는 잘 컴파일되는군요... )

익명 사용자의 이미지

이야~ 됩니다..냐하하~~~
그렇군요...그것이 다른프로그램이 되어야 하는군요...
하긴 include가 떨어져 있어서 이상하다라고 생각했는데...
책에 그렇게 되어있어서 그냥 넘어갔나봅니다..
흠 책을 안믿을수도 없구 말야..^^;
어제 술을 넘 많이 먹어서 겔겔 한것두 크군요..
어쨌든 너무나 고맙네요...*^^*
가까우면 음료수라도 사 드리면서 프로그램 배우고 싶네요..헤헤~
즐거운 하루 되시길 바랍니다~

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.