[Devel] Re: [PATCH 11/11][v15]: Document sys_eclone

Albert Cahalan acahalan at gmail.com
Sun Jul 11 02:00:10 PDT 2010


On Tue, Jul 6, 2010 at 6:25 PM, Sukadev Bhattiprolu
<sukadev at linux.vnet.ibm.com> wrote:
> Arnd Bergmann [arnd at arndb.de] wrote:
> | On Monday 05 July 2010, Albert Cahalan wrote:
> | > On Sun, Jul 4, 2010 at 7:39 PM, Matt Helsley <matthltc at us.ibm.com> wrote:
> | > > On Sat, Jul 03, 2010 at 07:41:30PM -0400, Albert Cahalan wrote:
> | > >> <sukadev at linux.vnet.ibm.com> wrote:
> | > >> > +
> | > >> > +sys_eclone(u32 flags_low, struct clone_args * __user cargs, int cargs_size,
> | > >> > +               pid_t * __user pids)
> | > >>
> | > >> I don't see why cargs_size is needed for expansion if you have flags.
> | > >
> | > > I think it's cleaner this way. The alternative you seem to be hinting at
> | > > is:
> | > >
> | > > If we used a flag bit to indicate an expansion of the parameters then it
> | > > would only be able to specify one expansion before we'd have to start
> | > > using bits in the args structure itself. Using those extra bits is
> | > > quite gross -- we'd have to copy the initial portion of the struct, decode
> | > > the bit(s) describing the size, and then copy the rest. Also, do we have
> | > > any bits left in flags_low? I thought those were all used up...
>
> I think there is one bit (0x1000 before CLONE_PTRACE) left in clone_flags now.
> Not sure if it had any historical uses, but there was talk of trying to using
> that flag to extend the functionality of clone() without a new system call.
>
> IIUC, the conclusion of the discussion was that such approach would make the
> API messy and set a bad precedent. And the extra copy-from-user was not
> considered signficant.
>
> IOW, Albert, we have been through this before in [v7] or [v10] of the API :-)

I am not suggesting some foul abuse of the old clone syscall.
I assume there will be a new syscall. Not that one couldn't cram
things into the old system call, but that would involve changing
the meaning of at least one parameter based on a flag. (eeew)

I'm suggesting that you not copy the struct as one blob, or at
least not expect to do so for future extensions to eclone. You
can read the flags, use that to determine struct size, and then
read the rest of the struct. Alternately you can pass 32 more flags
as a 5th syscall argument.

I'm not so sure we need 96 flag bits, but OK. They can all go
in the struct if you like, or they can all go in the arguments.
FWIW, I happen to think that both kernel and user code will
be less ugly if all of the flags fit in 64 bits. C doesn't provide
a 96-bit integer type.

> | > You'd be copying from a struct in userspace to some random local
> | > variables in the kernel. There is no reason why the kernel would
> | > have to use a struct at all. You copy the flags, then see what else
> | > you need to copy.
> |
> | Exactly. The size argument is also my main criticism of the suggested
> | syscall, and I've been arguing the same as you.
> |
> | Note that you may still use copy the entire struct, provided that we
> | leave enough reserved fields at the end for future extensions. If
> | we run out of space ten years from now, we can still have a new syscall
> | number with a new structure.
>
> If we need the API to be extendible, to me specifying the size in the
> API seems more explicit than using the flags.

Is there any other system call with this sort of extendability?
You're going against history and IIRC policy.

Most explicit would be a version number, but even that is
forbidden AFAIK.
_______________________________________________
Containers mailing list
Containers at lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/containers




More information about the Devel mailing list