2002-02-22 21:17:23

by Dan Aloni

[permalink] [raw]
Subject: [RFC] [PATCH] C exceptions in kernel

The attached patch implements C exceptions in the kernel, which *don't*
depend on special support from the compiler. This is a 'request for
comments'. The patch is very initial, should not be applied.

I actually got this code to work in the kernel:

try {
printk("TEST: before throwing \n");
throw(1000);
printk("TEST: won't run\n");
}
catch(unsigned long, value) {
printk("TEST: caught: %ld\n", value);
} yrt;

I know it would a *hugh* task to get all existing code in the kernel
to use exceptions, but the design allows exceptions to be used locally
within the local call branches in *new* code. Basically, exception
handling needs to be added only to functions who call functions which
already use exceptions.

Although this patch is against 2.4, it should go to 2.5 (2.5.5-dj1
currently breaks here, so I am temporarily developing it using 2.4)

This patch implements only for i386 at the moment. Theoretically can be
ported to other archs. Of course, the arch dependant functions in this
code are separated for the ease of porting.

I haven't written it with interrupts and SMP in mind. I wonder what
are the race conditions and what should be protected there.

For unhandled exceptions, there's a possibility to add a function that
printk's the information about the unhandled exception (file, line
number, etc), and optionally calls panic() or BUG().

The code supports re-throwing from catches.

Last thing: I must get rid of that yrt closer macro. Suggestions?


Attachments:
exceptions.diff (6.90 kB)

2002-02-22 21:26:44

by Davide Libenzi

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

On 22 Feb 2002, Dan Aloni wrote:

> The attached patch implements C exceptions in the kernel, which *don't*
> depend on special support from the compiler. This is a 'request for
> comments'. The patch is very initial, should not be applied.
>
> I actually got this code to work in the kernel:
>
> try {
> printk("TEST: before throwing \n");
> throw(1000);
> printk("TEST: won't run\n");
> }
> catch(unsigned long, value) {
> printk("TEST: caught: %ld\n", value);
> } yrt;
>
> I know it would a *hugh* task to get all existing code in the kernel
> to use exceptions, but the design allows exceptions to be used locally
> within the local call branches in *new* code. Basically, exception
> handling needs to be added only to functions who call functions which
> already use exceptions.
>
> Although this patch is against 2.4, it should go to 2.5 (2.5.5-dj1
> currently breaks here, so I am temporarily developing it using 2.4)
>
> This patch implements only for i386 at the moment. Theoretically can be
> ported to other archs. Of course, the arch dependant functions in this
> code are separated for the ease of porting.
>
> I haven't written it with interrupts and SMP in mind. I wonder what
> are the race conditions and what should be protected there.
>
> For unhandled exceptions, there's a possibility to add a function that
> printk's the information about the unhandled exception (file, line
> number, etc), and optionally calls panic() or BUG().
>
> The code supports re-throwing from catches.
>
> Last thing: I must get rid of that yrt closer macro. Suggestions?

Is today the 1st of April ? You kidding, don't you ?



- Davide



2002-02-22 22:08:57

by Richard B. Johnson

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

On 22 Feb 2002, Dan Aloni wrote:

> The attached patch implements C exceptions in the kernel, which *don't*
> depend on special support from the compiler. This is a 'request for
> comments'. The patch is very initial, should not be applied.
>
> I actually got this code to work in the kernel:
>
> try {
> printk("TEST: before throwing \n");
> throw(1000);
> printk("TEST: won't run\n");
> }
> catch(unsigned long, value) {
> printk("TEST: caught: %ld\n", value);
> } yrt;
>

What is this supposed to do? Are these a bunch of solutions waiting
for a problem? Or is my Calendar wrong?


Cheers,

Dick Johnson

Penguin : Linux version 2.4.1 on an i686 machine (797.90 BogoMips).

111,111,111 * 111,111,111 = 12,345,678,987,654,321

2002-02-22 22:32:50

by David B. Stevens

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

Dan,

Don't let'em get to ya, they are having a time warp problem.

Finally a method of preventing oops'es.

Cheers,
Dave


Dan Aloni wrote:
>
> The attached patch implements C exceptions in the kernel, which *don't*
> depend on special support from the compiler. This is a 'request for
> comments'. The patch is very initial, should not be applied.
>
> I actually got this code to work in the kernel:
>
> try {
> printk("TEST: before throwing \n");
> throw(1000);
> printk("TEST: won't run\n");
> }
> catch(unsigned long, value) {
> printk("TEST: caught: %ld\n", value);
> } yrt;

2002-02-22 22:46:21

by Davide Libenzi

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

On Fri, 22 Feb 2002, David B. Stevens wrote:

> Dan,
>
> Don't let'em get to ya, they are having a time warp problem.

Yup, if exceptions inside kernel code is the current time, my time warp is
so huge that Spilberg could use me like 1st actor in Jurassic Park IV
Buf i've got to tell you, life in Jurassica is pretty fine ...




- Davide


2002-02-23 04:03:12

by Edgar Toernig

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

#include <setjmp.h>

struct _catch
{
struct _catch *next;
jmp_buf buf;
};

static struct _catch _catch_top[1];
struct _catch *_catch = _catch_top;

#define throw() \
do { \
_catch = _catch->next; \
longjmp(_catch->buf, 1); \
} while (0)


#define try \
if (setjmp(_catch->buf) == 0) { \
struct _catch _catch_new[1]; \
_catch_new->next = _catch; \
_catch = _catch_new;

#define catch \
_catch = _catch->next; \
} else


/**** example below ****/

#include <stdio.h>

int a = 1;

void
foo(int x)
{
a=2;
if (x & 1)
throw();
}

int
main(int argc, char **argv)
{
int i;

for (i = 0; i < 10; ++i)
{
a=i;
try
{
try foo(i); catch
{
printf("2: caught at %d (a=%d)\n", i, a);
if ((i&3)==1)
throw();
}
}
catch
{
printf("1: caught at %d (a=%d)\n", i, a);
}
printf("a=%d\n", a);
}
return 0;
}


Attachments:
try-n-catch.c (889.00 B)

2002-02-23 10:12:03

by Pete Zaitcev

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

>> The attached patch implements C exceptions in the kernel,
>
> Bad idea ...

Why is it bad? I can see a couple of reasons, but this does
not help me undestand your, unspecified, reasons.

>> which *don't* depend on special support from the compiler.
>
> ... which can be implemented in simple ANSI-C. See below.

Right, but the question is, do we support setjump/longjump
in kernel? The patch as I saw it does reimplement a similar thing
(check out its assembler fragments).

-- Pete

2002-02-23 12:27:23

by Keith Owens

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

On Sat, 23 Feb 2002 05:11:36 -0500,
Pete Zaitcev <[email protected]> wrote:
>>> The attached patch implements C exceptions in the kernel,

Kernel code already has exception tables to handle invalid addresses,
invalid opcodes etc. See copy_to_user and wrmsr_eio for examples.
Apart from that, the kernel code assumes that it knows what it is doing
and does not need exceptions, any unexpected exceptions quite correctly
fall into the oops handler.

The kernel model is "get it right the first time, so we don't need
exception handlers". You have not given any reason why the existing
mechanisms are failing.

>do we support setjump/longjump
>in kernel? The patch as I saw it does reimplement a similar thing
>(check out its assembler fragments).

Standard kernel code does not support setjmp/longjmp. AFAIK the only
code that does is the kdb patch where I need the extra protection, when
kdb is entered it is a fair bet that something has already gone wrong.

2002-02-23 12:50:38

by Pete Zaitcev

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

> From: Keith Owens <[email protected]>
> Date: Sat, 23 Feb 2002 23:26:52 +1100

> Kernel code already has exception tables to handle invalid addresses,
> invalid opcodes etc. See copy_to_user and wrmsr_eio for examples.

I think you confuse hardware interrupts or exceptions with
language exceptions (which are the topic of current discussion).
Language exceptions constitute a fancy equivalent of return
code checking. Every time you see the following code, an exception
is handled:

int foo () {
int rc;
bar_t *x;

if ((x = do_bar()) == NULL) { rc = -ENOMEM; goto out_nobar; }
if ((rc = quux()) != 0) goto out_noquux;
more_stuff();
return 0;

out_noquux;
undo_bar(x);
out_nobar:
return rc;
}

> The kernel model is "get it right the first time, so we don't need
> exception handlers". You have not given any reason why the existing
> mechanisms are failing.

If you understand that we are not talking about oopses here,
you will see that we emulate quite a bit of stuff with gotos.
The problem with current practice is that it takes a fair bit
of discipline to prevent it from growing into spaghetti [*].

Personally, I have no problem handling current practices.
But I may see the point of the guy with the try/catch patch.
Do not make me to defend him though. I am trying to learn
is those exceptions are actually helpful. BTW, we all know
where they come from (all of Cutler's NT is written that way),
but let it not cloud our judgement.

[*] List of subtlietes in the example, that a number of driver
monkeys get wrong:
1. rc must always be set right. Sometimes it's extracted from ERR_PTR,
sometimes other ways.
2. You must have the Russian Doll commit-uncommit order. If you
cannot fall into this rigid scheme, you must use more functions.
3. Names for labels correspond to what fails, not what has to be undone
(or else you cannot move stuff around).

-- Pete

2002-02-23 15:13:55

by Felix von Leitner

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

Thus spake Dan Aloni ([email protected]):
> The attached patch implements C exceptions in the kernel, which *don't*
> depend on special support from the compiler. This is a 'request for
> comments'. The patch is very initial, should not be applied.

First of all: setjmp/longjmp is quite inefficient.

But my real problem with this is that the point about exceptions in C++
is the automatic stack unwinding. You use local variables and if an
exception is thrown, they automatically self-destruct. In particular,
you could implement spin locks as a class, and an exception will release
the lock automatically. Since this is not there in C, this is no more
elegant than using explicit goto.

Also, it makes understanding the code (and correlating assembly output
with C code) less easy, because you also have to look at that exception
implementation.

Felix

2002-02-23 15:21:49

by bert hubert

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

On Fri, Feb 22, 2002 at 09:18:29PM +0000, Dan Aloni wrote:
> The attached patch implements C exceptions in the kernel, which *don't*
> depend on special support from the compiler. This is a 'request for
> comments'. The patch is very initial, should not be applied.
>
> I actually got this code to work in the kernel:
>
> try {
> printk("TEST: before throwing \n");
> throw(1000);
> printk("TEST: won't run\n");
> }
> catch(unsigned long, value) {
> printk("TEST: caught: %ld\n", value);
> } yrt;

Can they fall through multiple function calls? How do they jive with
preemtive scheduling? How much is the stack unwinding overhead?

Potentially this is very cool but I'm again appalled at the INSTANT
rejection seen here by kernel hackers, minor and major. Do NOT reject an
idea before you've thought it through. Do NOT reject an idea simply because
it is new.

Also, do not jump on the bandwagon BECAUSE it is new. But still - people
here should get a life if they get off on rejecting new stuff because it is
new.

Regards,

bert


--
http://www.PowerDNS.com Versatile DNS Software & Services
http://www.tk the dot in .tk
Netherlabs BV / Rent-a-Nerd.nl - Nerd Available -
Linux Advanced Routing & Traffic Control: http://ds9a.nl/lartc

2002-02-23 16:11:15

by Dan Aloni

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

On Sat, 2002-02-23 at 17:21, bert hubert wrote:
> On Fri, Feb 22, 2002 at 09:18:29PM +0000, Dan Aloni wrote:
> > The attached patch implements C exceptions in the kernel, which *don't*
> > depend on special support from the compiler. This is a 'request for
> > comments'. The patch is very initial, should not be applied.
> >
> > I actually got this code to work in the kernel:
> >
> > try {
> > printk("TEST: before throwing \n");
> > throw(1000);
> > printk("TEST: won't run\n");
> > }
> > catch(unsigned long, value) {
> > printk("TEST: caught: %ld\n", value);
> > } yrt;
>
> Can they fall through multiple function calls? How do they jive with
> preemtive scheduling? How much is the stack unwinding overhead?

They fall through several function calls like they should.

I don't see any problem with preemtive scheduling (every kernel thread
has its own seperated exception frames).

The overhead on the stack is 36 bytes for each exception frame (a
context of a try block). The unwinding procedure itself is short, the
throw macro calls a rather small asm function for an unwind.

> Potentially this is very cool but I'm again appalled at the INSTANT
> rejection seen here by kernel hackers, minor and major. Do NOT reject an
> idea before you've thought it through. Do NOT reject an idea simply because
> it is new.

> Also, do not jump on the bandwagon BECAUSE it is new. But still - people
> here should get a life if they get off on rejecting new stuff because it is
> new.

Whether it is accepted or not, I can't see it being used in the core
kernel code, just because there is too much code to rewrite for it to
happen. Maybe if this thing was proposed back in 1992/3 it would have
been different.

But, it CAN be used in *local* driver call branches. Writing a new
driver? have a lot of local nested calls? Hate goto's? You can use
exceptions.

The only problem is that because C is natively not object oriented, it's
hard to come up with an exception scheme for the C language that is
better than ye' old goto's, like in C++ when you have automatic
destruction during unwinding.

2002-02-23 16:22:37

by Larry McVoy

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

On Sat, Feb 23, 2002 at 06:05:48PM +0200, Dan Aloni wrote:
> But, it CAN be used in *local* driver call branches. Writing a new
> driver? have a lot of local nested calls? Hate goto's? You can use
> exceptions.

Is this really anything other than syntactic sugar? Maybe it's different
in drivers, but I find myself doing the following in user space all the time

#define unless(x) if (!(x)) /* perl/BCPL corrupted me */

function(...)
{
char *foo = 0, *bar = 0;
int locked = 0;
int rc = -1;

if (bad args or something) {
out: if (foo) free(foo);
if (bar) free(bar);
if (locked) unlock();
return (rc);
}

unless (locked = get_the_lock()) goto out;
unless (foo = allocate_foo()) goto out;
unless (bar = allocate_bar()) goto out;

more code....

rc = 0;
goto out;
}

It seems ugly at first but it has some nice attributes:

a) all the cleanup is in one place, for both the error path and the
non-error path. I could put it at the bottom, I like it at the
top because that's where I tend to have the list of things needed
to be cleaned.

b) all the error cases are branches, the normal path is straightline.

c) it's as dense as I can make it.

So how would you do the same thing with exceptions?
--
---
Larry McVoy lm at bitmover.com http://www.bitmover.com/lm

2002-02-23 17:05:32

by Dan Aloni

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

On Sat, 2002-02-23 at 18:22, Larry McVoy wrote:
> On Sat, Feb 23, 2002 at 06:05:48PM +0200, Dan Aloni wrote:
> > But, it CAN be used in *local* driver call branches. Writing a new
> > driver? have a lot of local nested calls? Hate goto's? You can use
> > exceptions.
>
> Is this really anything other than syntactic sugar? Maybe it's
> different in drivers, but I find myself doing the following in user
> space all the time
>
> #define unless(x) if (!(x)) /* perl/BCPL corrupted me */
>
> function(...)
> {
> char *foo = 0, *bar = 0;
> int locked = 0;
> int rc = -1;
>
> if (bad args or something) {
> out: if (foo) free(foo);
> if (bar) free(bar);
> if (locked) unlock();
> return (rc);
> }
>
> unless (locked = get_the_lock()) goto out;
> unless (foo = allocate_foo()) goto out;
> unless (bar = allocate_bar()) goto out;
>
> more code....
>
> rc = 0;
> goto out;
> }
>
> It seems ugly at first but it has some nice attributes:
>
> a) all the cleanup is in one place, for both the error path and
the
> non-error path. I could put it at the bottom, I like it at the
> top because that's where I tend to have the list of things
needed
> to be cleaned.
>
> b) all the error cases are branches, the normal path is
straightline.
>
> c) it's as dense as I can make it.
>
> So how would you do the same thing with exceptions?

Like this:

function(...)
{
char *foo = 0, *bar = 0;
int locked = 0;
int rc = -1;

try {
if (bad args or something)
throw;

locked = get_the_lock();
foo = allocate_foo();
bar = allocate_bar();

more code....

rc = 0;
}
cleanup {
if (foo) free(foo);
if (bar) free(bar);
if (locked) unlock();
}
return rc;
}

Looks much better, IMHO.

The cleanup() block will run after the try block even if an exception
did not occur, and will run also if the exception occured, passing the
exception to the next catch() or cleanup() block in stack.

2002-02-23 17:07:42

by bert hubert

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

On Sat, Feb 23, 2002 at 08:22:11AM -0800, Larry McVoy wrote:
> On Sat, Feb 23, 2002 at 06:05:48PM +0200, Dan Aloni wrote:
> > But, it CAN be used in *local* driver call branches. Writing a new
> > driver? have a lot of local nested calls? Hate goto's? You can use
> > exceptions.
>
> Is this really anything other than syntactic sugar? Maybe it's different
> in drivers, but I find myself doing the following in user space all the time

Exceptions provide implicit handling. You should see tham as an alternate
return path. And because of that implicitness, it is not syntactic sugar.

However, one thing which your example does emphasize, it the risk of
resource leaks. Bjarne Stroustrup, who is no mean architect himself, spends
a lot of pages discussing those leaks.

Basically, an exception may fall through several functions before being
caught. Any resources acquired by those intermediate functions will not be
released unless this is done automatically during stack unwinding, ie,
destroctors or alloca(3).

So while having an alternate return path is cool, it really needs
destructors in order to be useful in a real world.

This url documents the problem, which is solved by adopting the 'Resource
Acquisition is Initialization' paradigm:
http://sourceforge.net/docman/display_doc.php?docid=8673&group_id=9028

Regards,

bert

--
http://www.tk the dot in .tk
Netherlabs BV / Rent-a-Nerd.nl - Nerd Available -
Linux Advanced Routing & Traffic Control: http://ds9a.nl/lartc

2002-02-23 17:47:57

by Alexander Viro

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel



On Sat, 23 Feb 2002, bert hubert wrote:

> Potentially this is very cool but I'm again appalled at the INSTANT
> rejection seen here by kernel hackers, minor and major. Do NOT reject an
> idea before you've thought it through.

Quite a few of us _had_ thought it through.

> Do NOT reject an idea simply because
> it is new.

There was a new idea in this proposal? Where?

You know, there's a reason why most of letal mutations are recessive.
Namely, it's not the first time when they happen and mechanisms making
them recessive had been selected for.

Same story here. It's _not_ the first time this topic had been discussed
on l-k. It might be new for you, but it sure as hell _not_ new for quite
a few people here.

2002-02-23 17:52:37

by Francois Romieu

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

Dan Aloni <[email protected]> :
[...]
> cleanup {
> if (foo) free(foo);
^^
> if (bar) free(bar);
^^

> if (locked) unlock();
^^
> }
> return rc;
> }
>
> Looks much better, IMHO.
>
> The cleanup() block will run after the try block even if an exception
> did not occur, and will run also if the exception occured, passing the
> exception to the next catch() or cleanup() block in stack.

Three useless "if" if no exception occured.

--
Ueimor

2002-02-23 18:22:24

by bert hubert

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

On Sat, Feb 23, 2002 at 05:49:04PM +0000, Alexander Viro wrote:

> On Sat, 23 Feb 2002, bert hubert wrote:
>
> > Potentially this is very cool but I'm again appalled at the INSTANT
> > rejection seen here by kernel hackers, minor and major. Do NOT reject an
> > idea before you've thought it through.
>
> Quite a few of us _had_ thought it through.

Good.

> You know, there's a reason why most of letal mutations are recessive.
> Namely, it's not the first time when they happen and mechanisms making
> them recessive had been selected for.

An ostrich might reason that way too. And that is basically my main gripe.

> Same story here. It's _not_ the first time this topic had been discussed
> on l-k. It might be new for you, but it sure as hell _not_ new for quite
> a few people here.

Oh I've seen it. What I resent is the kneejerk reaction. Most people
replying obviously hadn't even looked at the source. Keith Owen's reaction
was wonderful:

The kernel model is "get it right the first time, so we don't need
exception handlers". You have not given any reason why the existing
mechanisms are failing.

Or Edgar Toernig, who also had an implementation and rejected Dan's in one
line:

Bad idea ...

Richard B. Johnson:

What is this supposed to do? Are these a bunch of solutions waiting
for a problem? Or is my Calendar wrong?

Davide Libenzi:

Is today the 1st of April ? You kidding, don't you ?

I mean, this is just pathetic. There is valid criticism to new ideas, but
this isn't it.

Regards,

bert

--
http://www.PowerDNS.com Versatile DNS Software & Services
http://www.tk the dot in .tk
Netherlabs BV / Rent-a-Nerd.nl - Nerd Available -
Linux Advanced Routing & Traffic Control: http://ds9a.nl/lartc

2002-02-23 18:31:25

by Larry McVoy

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

> I mean, this is just pathetic. There is valid criticism to new ideas, but
> this isn't it.

There are places to learn how to do basic programming and this isn't it.
There is no way that the kernel list can handle every bad idea over and
over again in a kind and gentle way. Doing so requires so much time that
noone would ever get any real work done. At some point, you just say
no. If we didn't, we'd still be arguing about STREAMS, redoing the kernel
in C++, etc.
--
---
Larry McVoy lm at bitmover.com http://www.bitmover.com/lm

2002-02-23 18:38:34

by bert hubert

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

On Sat, Feb 23, 2002 at 10:31:01AM -0800, Larry McVoy wrote:
> > I mean, this is just pathetic. There is valid criticism to new ideas, but
> > this isn't it.
>
> There are places to learn how to do basic programming and this isn't it.
> There is no way that the kernel list can handle every bad idea over and
> over again in a kind and gentle way. Doing so requires so much time that
> noone would ever get any real work done. At some point, you just say

Lots of people found the time to send derogative answers though - and how
well known are these in extinguising discussion and allowing us more time to
code!

Typing in the few reasons why this, or any idea, is so well rejected hardly
takes more time and *does* extinguish the thread rapidly.

Regards,

bert

--
http://www.PowerDNS.com Versatile DNS Software & Services
http://www.tk the dot in .tk
Netherlabs BV / Rent-a-Nerd.nl - Nerd Available -
Linux Advanced Routing & Traffic Control: http://ds9a.nl/lartc

2002-02-23 19:12:50

by Kurt Ferreira

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

Hello,

On Sat, 23 Feb 2002, bert hubert wrote:

> Lots of people found the time to send derogative answers though - and how
> well known are these in extinguising discussion and allowing us more time to
> code!
>
> Typing in the few reasons why this, or any idea, is so well rejected hardly
> takes more time and *does* extinguish the thread rapidly.
>

I think you might not being understanding. It has been discussed. In
some cases over and over. A search of the mailing list archives give the
reasons why these (and many like it) have been rejected. The terse 'no'
is most likley fustration that the poster did not do his/her homework by
searching archives before posting.

Kurt

2002-02-23 23:06:15

by Jes Sorensen

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

bert hubert <[email protected]> writes:

> On Sat, Feb 23, 2002 at 05:49:04PM +0000, Alexander Viro wrote:
> Davide Libenzi:
>
> Is today the 1st of April ? You kidding, don't you ?
>
> I mean, this is just pathetic. There is valid criticism to new ideas, but
> this isn't it.

When the idea is as broken as this, then the above is what you are to
expect.

Jes

2002-02-23 23:08:35

by Jes Sorensen

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

Pete Zaitcev <[email protected]> writes:

> Personally, I have no problem handling current practices.
> But I may see the point of the guy with the try/catch patch.
> Do not make me to defend him though. I am trying to learn
> is those exceptions are actually helpful. BTW, we all know
> where they come from (all of Cutler's NT is written that way),
> but let it not cloud our judgement.

The problem here is that when using exceptions, you stop thinking
about what is going on underneath at the low level which is really not
what one wants in the kernel.

After all, C is just and advanced assembly interface, which is exactly
why it's such a great language ;-)

Jes

2002-02-23 23:41:31

by Keith Owens

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

On 24 Feb 2002 00:07:13 +0100,
Jes Sorensen <[email protected]> wrote:
>Pete Zaitcev <[email protected]> writes:
>
>> Personally, I have no problem handling current practices.
>> But I may see the point of the guy with the try/catch patch.
>> Do not make me to defend him though. I am trying to learn
>> is those exceptions are actually helpful. BTW, we all know
>> where they come from (all of Cutler's NT is written that way),
>> but let it not cloud our judgement.
>
>The problem here is that when using exceptions, you stop thinking
>about what is going on underneath at the low level which is really not
>what one wants in the kernel.
>
>After all, C is just and advanced assembly interface, which is exactly
>why it's such a great language ;-)

What is worse is that the exceptions patch has to use assembler to walk
the stack frames. Exceptions are being touted as a replacement for
goto in new driver code but the sample patch only works for i386. No
arch independent code can use exceptions until you have arch specific
code that does the equivalent of longjmp for _all_ architectures.

Doing longjmp in the kernel is _hard_, I know because I had to do it
for kdb on i386 and ia64. The kernel does things differently from user
space and sometimes the arch maintainers decide to change the internal
register usage. They are allowed to do this because it only affects
the kernel, but any change to kernel register usage will probably
require a corresponding change to setjmp/longjmp.

So you have arch dependent code which has to be done for all
architectures before any driver can use it and the code has to be kept
up to date by each arch maintainer. Tell me again why the existing
mechanisms are not working and why we need exceptions? IOW, what
existing problem justifies all the extra arch work and maintenance?

2002-02-23 23:51:32

by Bill Huey

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

On Sat, Feb 23, 2002 at 07:50:02AM -0500, Pete Zaitcev wrote:
> Personally, I have no problem handling current practices.
> But I may see the point of the guy with the try/catch patch.
> Do not make me to defend him though. I am trying to learn
> is those exceptions are actually helpful. BTW, we all know
> where they come from (all of Cutler's NT is written that way),
> but let it not cloud our judgement.

Uh, that's probably not right. If I've been told/remember correctly,
it's a technique that certain old school mainframe OSes use to
implement sophisticate fault recovery of various sorts. As you know,
one basically rewinds to the original point before the block is
called so that you can recover/continue from it.

It's not clear if an OS like Linux could really benefit from it since
everything that is so inheritently hotwired in the kernel, nor is it
clear how something like exceptions would conceptual map onto that
kind of system. Maybe DB/FS stuff would be a good of that stuff if
you have a condition that prevents a write to a disk (etc.l.) and
because they are data structure intensive systems.

But what about the TCP/IP stack ? or things in the bottom half ?

Those things are a bit more sticky and seem less compatible with
exceptions it seems.

bill

2002-02-24 01:03:17

by Jes Sorensen

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

Keith Owens <[email protected]> writes:

> So you have arch dependent code which has to be done for all
> architectures before any driver can use it and the code has to be kept
> up to date by each arch maintainer. Tell me again why the existing
> mechanisms are not working and why we need exceptions? IOW, what
> existing problem justifies all the extra arch work and maintenance?

Sorry, can't tell you why as I agree wholeheartedly with you. My point
was that even if it was possible to implement exceptions 'for free' on
all architectures, then it's still not what we want in the
kernel. It's just too gross and makes people think about the code the
wrong way.

Cheers,
Jes

2002-02-24 01:29:33

by Davide Libenzi

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

On Sat, 23 Feb 2002, Bill Huey wrote:

> On Sat, Feb 23, 2002 at 07:50:02AM -0500, Pete Zaitcev wrote:
> > Personally, I have no problem handling current practices.
> > But I may see the point of the guy with the try/catch patch.
> > Do not make me to defend him though. I am trying to learn
> > is those exceptions are actually helpful. BTW, we all know
> > where they come from (all of Cutler's NT is written that way),
> > but let it not cloud our judgement.
>
> Uh, that's probably not right. If I've been told/remember correctly,
> it's a technique that certain old school mainframe OSes use to
> implement sophisticate fault recovery of various sorts. As you know,
> one basically rewinds to the original point before the block is
> called so that you can recover/continue from it.

You can't do that w/out an integrated resource allocation/deallocation
system. This because real code ends up by allocating resources ( or doing
whatever operation that needs an undo ) during its path and if you do not
have an automatic resource deallocation you're going to leak resources
more than Harleys engine oil. So w/out such system you've to catch
exceptions at every level where you actually own resources with the code
that is likely->surely to be way worse than the kernel gotos. Where you're
going to save is in cases where your code does not allocate any resource (
book's code ) and here you save the cost of multiple unwinding 'return's
against a single catch link. So, in case that an exception happen ( very
low probability compared to the common path ) and in case your code
underneath the catch point does not own resources, you're going to have a
'little' advantage. What is the cost ? You're going to push onto the
common path the exception code by slowing down the CPU's fast path.




- Davide



2002-02-24 02:56:04

by Bill Huey

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

On Sat, Feb 23, 2002 at 05:31:33PM -0800, Davide Libenzi wrote:
> You can't do that w/out an integrated resource allocation/deallocation
> system. This because real code ends up by allocating resources ( or doing
> whatever operation that needs an undo ) during its path and if you do not
> have an automatic resource deallocation you're going to leak resources
> more than Harleys engine oil. So w/out such system you've to catch
> exceptions at every level where you actually own resources with the code
> that is likely->surely to be way worse than the kernel gotos. Where you're

It's a different attitude to doing recoverable systems. I can't fault
nor praise it because I've never used a system like that.

> going to save is in cases where your code does not allocate any resource (
> book's code ) and here you save the cost of multiple unwinding 'return's
> against a single catch link. So, in case that an exception happen ( very

Right, not many systems inside a kernel are the kind that you need a
sophisticated resource allocation/deallocation system except for, maybe,
FSes and possibly long chains of IO operations. I'm not sure what else would
fit in this category, but it's generally counter to the coding attitude
in Unix.

The things that exception would work well for seem to typically be modular
and can function independently from other subsystems in the kernel. Unix, on
the other hand, is pretty tightly interconnected so each subsystem's state is
some what dependent on the others, which can be unwieldly or impossible to
unwind properly.

It's almost the same kind of design style issue as the classic dead lock
problem. Some OSs provide a facility to detect those circular allocation,
but others just bail on that heavy weight idea and make it intrinsic to the
system that dead locks shouldn't exist in the first place. Both solutions have
their advantages, but Unix prefers the latter and it seems to lead to a
much snappier system from my intuition of it.

> low probability compared to the common path ) and in case your code
> underneath the catch point does not own resources, you're going to have a
> 'little' advantage. What is the cost ? You're going to push onto the
> common path the exception code by slowing down the CPU's fast path.

Not sure, memory allocators are typically pretty primitive relative to
modern GCs. I guess you could apply generational techniques to memory
allocation (stack allocation of objects typical) and have it run pretty
fast, but certainly not as fast as the typical hotwired C path.

It's not the only resource that might need to be unwound. Like what do you do
about IO system commits ? I'm not sure here.

Just bored and babbling here. ;-)

bill

2002-02-24 23:45:43

by Richard Gooch

[permalink] [raw]
Subject: Re: [RFC] [PATCH] C exceptions in kernel

Jes Sorensen writes:
> Keith Owens <[email protected]> writes:
>
> > So you have arch dependent code which has to be done for all
> > architectures before any driver can use it and the code has to be kept
> > up to date by each arch maintainer. Tell me again why the existing
> > mechanisms are not working and why we need exceptions? IOW, what
> > existing problem justifies all the extra arch work and maintenance?
>
> Sorry, can't tell you why as I agree wholeheartedly with you. My
> point was that even if it was possible to implement exceptions 'for
> free' on all architectures, then it's still not what we want in the
> kernel. It's just too gross and makes people think about the code
> the wrong way.

This seems worthy of a new FAQ entry: http://www.tux.org/lkml/#s15-5
And while I was at it, I moved a bunch of these religious questions
into their own section. Section 1 is a bit of a hodge-podge.

Regards,

Richard....
Permanent: [email protected]
Current: [email protected]