lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Sun, 11 Jan 2009 13:44:22 +0800
From:	"Cooper Yuan" <cooperyuan@...il.com>
To:	joseluismarchetti@...oo.com.br
Cc:	linux-kernel@...r.kernel.org
Subject: Re:

try following code, hope it helpful:

unsigned long old_fs;
orig_open=sys_call_table(__NR_open);
orig_read=sys_call_table(__NR_read);
orig_close=sys_call_table(__NR_close);
old_fs = get_fs();
set_fs(get_ds());
fd=orig_open(pathname,O_RDWR,"rwx-rwx-rwx");
orig_read(fd,buffer,size);
orig_close(fd);
set_fs(old_fs);


On Sun, Jan 11, 2009 at 11:41 AM, Jose Luis Marchetti
<joseluismarchetti@...oo.com.br> wrote:
> Hi,
>
> I would like to open/read/write/close a regular file from my device
> driver.
> I think it would be possible, but I am confused, the "The Linux Kernel
> Module Programming Guide" states that I can not use standard libraries
> from within a module, I know the standard library ends up calling
> system calls, but which calls should I use to deal with regular
> files ?
> I am developing a Ethernet driver and the Mac address configuration
>
> Thanks in advance!
>
> José Luís Marchetti
>
>
>      Veja quais são os assuntos do momento no Yahoo! +Buscados
> http://br.maisbuscados.yahoo.com
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ