[prev in list] [next in list] [prev in thread] [next in thread] 

List:       linux-newbie
Subject:    Re: linux kernel print to file problem
From:       simon <simon.guinot () laposte ! net>
Date:       2005-07-15 23:23:56
Message-ID: 42D8458C.2080905 () laposte ! net
[Download RAW message or body]

hello

Mukund JB. wrote:
> Dear Linux-lovers.
> 
> I am trying to build a 2.6.10 linux kernel module to print messages to a
> file. I have done this 2.4 and I was successful but I am failing here.
> 
> I am using the sys_open, sys_write calls to do so.
> I am getting a compilation warning and I find no .ko file created
> finally instead I find an .o.ko file.
> 
> *** WARNIG: "sys_write" [/home/cf.o.ko] undefined!
> Below is the module code. Please suggest me what could be the problem:-

system call are no longer export with 2.6 kernel...
you can find syscall address in your system.map...
if you intend to use lot of system call... you have best to find the 
sys_call_table address...

it can looks like :

#define SYS_CALL_TABLE "address_in_your_system.map"

void **sys_call_table;

int (*orig_write) (int, char *, size_t);

int init_module(void)
{
	[...]

	sys_call_table = (void **) SYS_CALL_TABLE;
	
	orig_write = sys_call_table[__NR_write];
	
	[...]
}

may be there is an other problem with your example code...
have you try to run it ?
system call should be used with parameters coming from userspace...

a way to perform that : http://www.ouah.org/LKM_HACKING.html#I.4.

regards

simon
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic