Re: Recent changes to sysctl.h breaks glibc

From: H. Peter Anvin (hpa@zytor.com)
Date: Tue May 20 2003 - 02:24:19 EST


Eric W. Biederman wrote:
>
> Ugh. I now see both sides of this.
>
> ABI changes always require writing new code to take advantage
> of it but that code does not need to live in libc. And libc is expected
> to have the definitions necessary to compile the new code.
>

Bingo.

>>
>>I maintain the proposal I have given before:
>>
>><linux/abi/*.h> as the header file namespace;
>
> What about <linux-abi/*.h>
>
>><linux/*.h> <asm/*.h> namespaces reserved for compatibility (once the
>>migration is complete these are owned by the libc)
>
> I think removing the abi namespace totally from the legacy directories
> helps this to a small extent.
>

It might, but the <linux/abi/*.h> namespace hasn't been used, so it
isn't really legacy in the sense that you can have a possible conflict.
  Having said that, <linuxabi/*.h> is the least bleacherous nonlegacy
alternative I've seen (I'd like to skip the dash, though.) <abi/*.h> is
already taken.

>
>>Types use the __kernel_* namespace *only*; structures use struct __kernel_*.
>>
>>Some form of export of the expected syscall ABI as well as syscall
>>numbering.
>
>
> Prototypes for everything including ioctls.
>

Absolutely. As I said in another post, if this is done correctly, a
whole bunch of the ABI compatbility stuff like the 32-on-64 things
should be possible to generate automatically. If that isn't true, it's
done wrong.

>>
>>A bigger issue is if this really should be done in C. A worthwhile
>>thought: if this is done correctly then most or all of the 64/32 compat
>>code (or any other arch1-on-arch2 compatibility) should be able to be
>>automatically generated. If not, it almost certainly isn't done
>>correctly...
>
>
> Potentially. Certain things like type conversions may be a non-trivial
> exercise. It is certainly true that it should be possible to build
> the entire decoding logic for strace. Even in the mixed architecture
> cases.
>
> For cases that are hard to automate see: sys_old_mmap vs. sys_mmap2,
> on x86. Potentially it can be done but it requires a powerful stub
> generator.
>

That one is somewhat tricky, and probably needs some ad hoc code.
However, you get a long way toward the goal if you can express the
following:

void * sys_mmap(void *, size_t, int, struct { int, int, off32_t });
void * sys_mmap2(void *, size_t, int, int, int, off32_t);
void * sys_mmap64(void *, size_t, int, int, int, struct { off64_t });

(The latter doesn't exist at the moment AFAIK, but at some point it'll
be necessary.)

You can get even further if you can express the fact that the final
structure in sys_old_mmap are "memory arguments" -- ordinary arguments
spilled to memory because we ran out of registers ("prematurely" in the
case of sys_mmap, due to backwards compatibility constraints.)

>
>>>If Linus would approve a strategy for rearranging the headers such that
>>>people can work on it without suspecting that they're just wasting their
>>>time, I think it could get done for 2.6.
>>>
>>>It's not the kind of thing you do in private and present as a fait
>>>accomplis -- if it isn't quite right, you end up having to do the whole
>>>thing from scratch, afaict.
>>
>>Agreed.
>
> If it is done purely as headers certainly. For a header generator it
> might be something you can get away with. Because the core repository
> would not need to change just the world useable form. This may
> be the one good argument for doing this in something other than C.
>

On the other hand, Linus just released "sparse", which is a pretty nice
  C parser that might be useful for this, especially with some kind of
custom annotation capability. I talked to him about this a while ago,
actually.

        -hpa

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" 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.tux.org/lkml/



This archive was generated by hypermail 2b29 : Fri May 23 2003 - 22:00:39 EST