시스템 콜 등록 테스트 중 에러입니다
시스템 콜을 등록하기 위해서
/usr/src/linux/arch/i386/kernel 에 있는
entry.S 파일을 편집해서 mysyscall을 테이블에 넣고
/usr/src/linux/include/asm-i386/unistd.h 를 편집해서
mysyscall을 등록하고
/usr/src/linux/arch/i386/kernel/mysyscall.c 파일을 만들고
Makefile을 편집해서 mysyscall.o를 추가했습니다.
그 후에 커널 컴파일을 하고
/usr/src/test.c를 만들어서 시스템 콜을 부르는 프로그램을 작성했는데요
#include
#include
_syscall0(int,mysyscall);
int main()
{
int i;
i=mysyscall();
return i;
}
위와 같은 프로그램을
gcc -o test test.c 로 컴파일을 하면 에러가 뜹니다
test.c : In function 'mysyscall' :
test.c:4: error: '__NR_mysyscall' undeclared (first use in this function)
test.c:4: error: (Each undeclared identifier is reported only once
test.c:4: error: for each function it appears in .)
커널 프로그래밍 경험이 아예 없어서 어디가 문제인지 감을 못 잡고 있습니다.
해결 방법 아시는 분은 좀 도와주세요
미봉책이지만...
인클루드하신 unistd파일의 경로를 수정하셨던 unistd파일의 절대경로를 줘보세요
#include
#include
_syscall0(int,mysyscall);
main()
{
int i;
i=mysyscall();
}
고수님들 답변이 없으시네요;;
적절한 헤더파일이 참조되지 않아서 그런 에러 메시지가 나옵니다.
include/asm-i386/unistd.h 헤더파일을 수정하였으나 사용자 프로그램 컴파일 시 참조되는 unistd.h 헤더파일과 커널 컴파일 시 참조되는 unistd.h 가 다를 수 있습니다.( /usr/include/asm/unistd.h )
따라서 이 파일에도 시스템 콜의 번호를 등록시켜주면 해결할 수 있습니다.
간단하게 커널 소스 디렉토리 내의 unistd.h 를 덮어 씌워주면 해결됩니다.
댓글 달기