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-next>] [day] [month] [year] [list]
Date:	Tue, 27 Feb 2007 08:34:13 -0600
From:	Robert Hancock <hancockr@...w.ca>
To:	"remi.chateauneu@...il.com" <remi.chateauneu@...il.com>,
	linux-kernel <linux-kernel@...r.kernel.org>
Subject: Re: list.h , list_head and C++

remi.chateauneu@...il.com wrote:
> On Feb 26, 2:26 pm, Robert Hancock <hanco...@...w.ca> wrote:
>> remi.chateau...@...il.com wrote:
>>> My C++ program needs an intrusive list, possibly with RCU
>>> capabilities.The data structurelist_head, defined in /usr/include/
>>> linux/list.h , fits perfectly these needs.
>> You really shouldn't use kernel data structures in userspace.
>> The locking and other primitives they depend on are not guaranteed to work.
> The file starts with ' #ifdef KERNEL'  but what hurts me is
> duplicating code.
> Btw:
> - what are the fundamental reasons for not using C++ in the kernel ?

See the archives, this has been discussed before. Aside from some 
developers just not liking C++, the main problem area is that there are 
cases where C++ just does too much behind the programmer's back to be 
practical in a kernel, where things like stack usage are critical. Also, 
a number of C++ features like exceptions would be difficult to support.

> - what prevents the use of RCU lists in user mode ?

Some type of RCU list may be doable, but not with the same code. RCU 
needs to have a way of knowing that all old copies of a data structure 
are no longer in use. In the kernel this is done by checking if all CPUs 
have scheduled since accessing the structure, but that concept doesn't 
really exist in userspace.

-- 
Robert Hancock      Saskatoon, SK, Canada
To email, remove "nospam" from hancockr@...pamshaw.ca
Home Page: http://www.roberthancock.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