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]
Message-ID: <Pine.LNX.4.64.0801191526200.27831@fbirervta.pbzchgretzou.qr>
Date:	Sat, 19 Jan 2008 15:30:24 +0100 (CET)
From:	Jan Engelhardt <jengelh@...putergmbh.de>
To:	Rafael Sisto <rafael.sisto@...il.com>
cc:	Linux kernel <linux-kernel@...r.kernel.org>
Subject: Re: new file in kernel.


On Jan 19 2008 11:08, Rafael Sisto wrote:
>
>I had already read that webpage, but I dont need to change the data on
>that file. I just want to create a new file and then close it, so I
>can use it later in another system call, to mmap it to a user space.
>Is it clearer now?
>Can you please give me some code snippet?

I don't get what your indirection is supposed to do.

 userspace -> sys_open -> kernel space -> create file
           -> sys_close -> kernel space -> close it

vs

 userspace -> sys_mycall -> kernelspace -> sys_open -> create_file
                                        -> sys_close -> create_file

As for code snippets:

asmlinkage logn sys_mycall(const char __user *filename,
    unsigned int flags, unsigned int mode)
{
	long ret;

	ret = sys_open(filename, flags, mode);
	if (ret < 0)
		return ret;

	return sys_close(fd);
}

You see, this is currently just too trivial to make sense, but if
it helps you, no problem.

>Sorry for the last mail, I answered to your personal mail only)

Here, we use Reply-to-all.

--
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