Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1220157 > unrolled thread
| Started by | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| First post | 2015-09-07 15:00 +0200 |
| Last post | 2015-09-15 23:00 +0200 |
| Articles | 8 — 6 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH] x86: Wire up 32-bit direct socket calls Arnd Bergmann <arnd@arndb.de> - 2015-09-07 15:00 +0200
Re: [PATCH] x86: Wire up 32-bit direct socket calls Heiko Carstens <heiko.carstens@de.ibm.com> - 2015-09-11 10:30 +0200
Re: [PATCH] x86: Wire up 32-bit direct socket calls Arnd Bergmann <arnd@arndb.de> - 2015-09-11 10:50 +0200
Re: [PATCH] x86: Wire up 32-bit direct socket calls Geert Uytterhoeven <geert@linux-m68k.org> - 2015-09-11 12:00 +0200
Re: [PATCH] x86: Wire up 32-bit direct socket calls Arnd Bergmann <arnd@arndb.de> - 2015-09-11 12:20 +0200
Re: [PATCH] x86: Wire up 32-bit direct socket calls Andy Lutomirski <luto@amacapital.net> - 2015-09-11 18:40 +0200
Re: [PATCH] x86: Wire up 32-bit direct socket calls Ingo Molnar <mingo@kernel.org> - 2015-09-14 15:40 +0200
Re: [PATCH] x86: Wire up 32-bit direct socket calls "H. Peter Anvin" <hpa@zytor.com> - 2015-09-15 23:00 +0200
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2015-09-07 15:00 +0200 |
| Subject | Re: [PATCH] x86: Wire up 32-bit direct socket calls |
| Message-ID | <q64bE-60R-21@gated-at.bofh.it> |
On Wednesday 02 September 2015 13:16:19 H. Peter Anvin wrote: > On 09/02/2015 02:48 AM, Geert Uytterhoeven wrote: > > > > Should all other architectures follow suit? > > Or should we follow the s390 approach: > > > > It is up to the maintainer(s), largely dependent on how likely you are > going to want to support this in your libc, but in general, socketcall > is an abomination which there is no reason not to bypass. > > So follow suit unless you have a strong reason not to. +1 In my y2038 syscall series, I'm adding a new recvmmsg64 call, and we may decide to add new setsockopt/getsockopt variants as well. This is probably not the last change to socketcall, and it would be made much easier if all architectures had separate calls here. It seems that there are very few architectures that don't already have the separate calls: $ git grep -l __NR_socketcall arch/*/include/uapi | xargs git grep -L recvmsg arch/cris/include/uapi/asm/unistd.h arch/frv/include/uapi/asm/unistd.h arch/m32r/include/uapi/asm/unistd.h arch/m68k/include/uapi/asm/unistd.h arch/mn10300/include/uapi/asm/unistd.h arch/s390/include/uapi/asm/unistd.h These are of course all examples of architectures that originally followed the i386 syscall scheme closely rather than trying to leave out obsolete calls. Arnd -- 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/
[toc] | [next] | [standalone]
| From | Heiko Carstens <heiko.carstens@de.ibm.com> |
|---|---|
| Date | 2015-09-11 10:30 +0200 |
| Message-ID | <q7rSy-4w9-25@gated-at.bofh.it> |
| In reply to | #1220157 |
On Mon, Sep 07, 2015 at 02:53:12PM +0200, Arnd Bergmann wrote: > On Wednesday 02 September 2015 13:16:19 H. Peter Anvin wrote: > > On 09/02/2015 02:48 AM, Geert Uytterhoeven wrote: > > > > > > Should all other architectures follow suit? > > > Or should we follow the s390 approach: > > > > > > > It is up to the maintainer(s), largely dependent on how likely you are > > going to want to support this in your libc, but in general, socketcall > > is an abomination which there is no reason not to bypass. > > > > So follow suit unless you have a strong reason not to. > > +1 > > In my y2038 syscall series, I'm adding a new recvmmsg64 call, and > we may decide to add new setsockopt/getsockopt variants as well. > This is probably not the last change to socketcall, and it would > be made much easier if all architectures had separate calls here. > > It seems that there are very few architectures that don't already have > the separate calls: > > $ git grep -l __NR_socketcall arch/*/include/uapi | xargs git grep -L recvmsg > arch/cris/include/uapi/asm/unistd.h > arch/frv/include/uapi/asm/unistd.h > arch/m32r/include/uapi/asm/unistd.h > arch/m68k/include/uapi/asm/unistd.h > arch/mn10300/include/uapi/asm/unistd.h > arch/s390/include/uapi/asm/unistd.h > > These are of course all examples of architectures that originally followed > the i386 syscall scheme closely rather than trying to leave out obsolete > calls. FWIW, the s390 approach (ignoring the "new" system calls) is only temporarily. I'll enable the seperate calls later when I have time to test everything, especially the glibc stuff. The same is true for the ipc system call. (any reason why the seperate system calls haven't been enabled on x86 now as well?) -- 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/
[toc] | [prev] | [next] | [standalone]
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2015-09-11 10:50 +0200 |
| Message-ID | <q7sbT-4SS-3@gated-at.bofh.it> |
| In reply to | #1222618 |
On Friday 11 September 2015 10:24:29 Heiko Carstens wrote: > > FWIW, the s390 approach (ignoring the "new" system calls) is only temporarily. > I'll enable the seperate calls later when I have time to test everything, > especially the glibc stuff. Ok, thanks for clarifying. > The same is true for the ipc system call. (any reason why the seperate system > calls haven't been enabled on x86 now as well?) Agreed, we should split that out on all architectures as well. Almost the same set of architectures that have sys_socketcall also have sys_ipc, and the reasons for changing are identical. I don't think we have any other system calls that are handled like this on some architectures but not on others. There are a couple of system calls (e.g. futex) that are also multiplexers, but at least they do it consistently. Arnd -- 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/
[toc] | [prev] | [next] | [standalone]
| From | Geert Uytterhoeven <geert@linux-m68k.org> |
|---|---|
| Date | 2015-09-11 12:00 +0200 |
| Message-ID | <q7thD-6pR-1@gated-at.bofh.it> |
| In reply to | #1222628 |
On Fri, Sep 11, 2015 at 10:46 AM, Arnd Bergmann <arnd@arndb.de> wrote:
> On Friday 11 September 2015 10:24:29 Heiko Carstens wrote:
>>
>> FWIW, the s390 approach (ignoring the "new" system calls) is only temporarily.
>> I'll enable the seperate calls later when I have time to test everything,
>> especially the glibc stuff.
>
> Ok, thanks for clarifying.
>
>> The same is true for the ipc system call. (any reason why the seperate system
>> calls haven't been enabled on x86 now as well?)
>
> Agreed, we should split that out on all architectures as well.
> Almost the same set of architectures that have sys_socketcall also
> have sys_ipc, and the reasons for changing are identical. I don't
> think we have any other system calls that are handled like this
> on some architectures but not on others. There are a couple of
> system calls (e.g. futex) that are also multiplexers, but at
> least they do it consistently.
To make sure I don't miss any (it seems I missed recvmmsg and sendmmsg for
the socketcall case, sigh), this is the list of ipc syscalls to implement?
sys_msgget
sys_msgctl
sys_msgrcv
sys_msgsnd
sys_semget
sys_semctl
sys_semtimedop
sys_shmget
sys_shmctl
sys_shmat
sys_shmdt
sys_semop() seems to be unneeded because it can be implemented using
sys_semtimedop()?
Thanks!
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
--
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/
[toc] | [prev] | [next] | [standalone]
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2015-09-11 12:20 +0200 |
| Message-ID | <q7tB0-71O-21@gated-at.bofh.it> |
| In reply to | #1222665 |
On Friday 11 September 2015 11:54:50 Geert Uytterhoeven wrote: > To make sure I don't miss any (it seems I missed recvmmsg and sendmmsg for > the socketcall case, sigh), this is the list of ipc syscalls to implement? > > sys_msgget > sys_msgctl > sys_msgrcv > sys_msgsnd > sys_semget > sys_semctl > sys_semtimedop > sys_shmget > sys_shmctl > sys_shmat > sys_shmdt > > sys_semop() seems to be unneeded because it can be implemented using > sys_semtimedop()? > Yes, that list looks right. IPC also includes a set of six sys_mq_* call, but I believe that everyone already has those as they are not covered by sys_ipc. For y2038 compatibility, we will likely add a new variant of semtimedop that takes a 64-bit timespec. While the argument passed there is a relative time that will never need to be longer than 68 years, we need to accommodate user space that defines timespec in a sane way, and converting the argument in libc would be awkward. Arnd -- 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/
[toc] | [prev] | [next] | [standalone]
| From | Andy Lutomirski <luto@amacapital.net> |
|---|---|
| Date | 2015-09-11 18:40 +0200 |
| Message-ID | <q7zwJ-78E-9@gated-at.bofh.it> |
| In reply to | #1222687 |
On Fri, Sep 11, 2015 at 3:14 AM, Arnd Bergmann <arnd@arndb.de> wrote: > On Friday 11 September 2015 11:54:50 Geert Uytterhoeven wrote: >> To make sure I don't miss any (it seems I missed recvmmsg and sendmmsg for >> the socketcall case, sigh), this is the list of ipc syscalls to implement? >> >> sys_msgget >> sys_msgctl >> sys_msgrcv >> sys_msgsnd >> sys_semget >> sys_semctl >> sys_semtimedop >> sys_shmget >> sys_shmctl >> sys_shmat >> sys_shmdt >> >> sys_semop() seems to be unneeded because it can be implemented using >> sys_semtimedop()? >> > > Yes, that list looks right. IPC also includes a set of six sys_mq_* > call, but I believe that everyone already has those as they are not > covered by sys_ipc. > > For y2038 compatibility, we will likely add a new variant of > semtimedop that takes a 64-bit timespec. While the argument passed > there is a relative time that will never need to be longer than 68 > years, we need to accommodate user space that defines timespec > in a sane way, and converting the argument in libc would be awkward. > I missed sys_ipc entirely. Ingo, Thomas, want to just wire those up, too? I can send a patch next week, but it'll be as trivial as the socket one. --Andy -- 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/
[toc] | [prev] | [next] | [standalone]
| From | Ingo Molnar <mingo@kernel.org> |
|---|---|
| Date | 2015-09-14 15:40 +0200 |
| Message-ID | <q8C9d-7DX-39@gated-at.bofh.it> |
| In reply to | #1222959 |
* Andy Lutomirski <luto@amacapital.net> wrote: > On Fri, Sep 11, 2015 at 3:14 AM, Arnd Bergmann <arnd@arndb.de> wrote: > > On Friday 11 September 2015 11:54:50 Geert Uytterhoeven wrote: > >> To make sure I don't miss any (it seems I missed recvmmsg and sendmmsg for > >> the socketcall case, sigh), this is the list of ipc syscalls to implement? > >> > >> sys_msgget > >> sys_msgctl > >> sys_msgrcv > >> sys_msgsnd > >> sys_semget > >> sys_semctl > >> sys_semtimedop > >> sys_shmget > >> sys_shmctl > >> sys_shmat > >> sys_shmdt > >> > >> sys_semop() seems to be unneeded because it can be implemented using > >> sys_semtimedop()? > >> > > > > Yes, that list looks right. IPC also includes a set of six sys_mq_* > > call, but I believe that everyone already has those as they are not > > covered by sys_ipc. > > > > For y2038 compatibility, we will likely add a new variant of > > semtimedop that takes a 64-bit timespec. While the argument passed > > there is a relative time that will never need to be longer than 68 > > years, we need to accommodate user space that defines timespec > > in a sane way, and converting the argument in libc would be awkward. > > > > I missed sys_ipc entirely. > > Ingo, Thomas, want to just wire those up, too? I can send a patch > next week, but it'll be as trivial as the socket one. Yeah, sure - split out system calls are so much better (and slightly faster) than omnibus demuxers. Thanks, Ingo -- 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/
[toc] | [prev] | [next] | [standalone]
| From | "H. Peter Anvin" <hpa@zytor.com> |
|---|---|
| Date | 2015-09-15 23:00 +0200 |
| Message-ID | <q95uy-8qK-9@gated-at.bofh.it> |
| In reply to | #1224154 |
On 09/14/2015 06:35 AM, Ingo Molnar wrote: >> >> I missed sys_ipc entirely. >> >> Ingo, Thomas, want to just wire those up, too? I can send a patch >> next week, but it'll be as trivial as the socket one. > > Yeah, sure - split out system calls are so much better (and slightly faster) than > omnibus demuxers. > Indeed. sys_socketcall and sys_ipc are legacy mistakes. -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/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web