All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] prctl.2: Add note regarding the size of the output user space buffer for PR_GET_TID_ADDRESS operation on x32/n32
@ 2016-12-12  3:54 Eugene Syromyatnikov
  2016-12-12  6:21 ` Michael Kerrisk (man-pages)
  2016-12-12  6:22 ` Michael Kerrisk (man-pages)
  0 siblings, 2 replies; 3+ messages in thread
From: Eugene Syromyatnikov @ 2016-12-12  3:54 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

---
 man2/prctl.2 | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/man2/prctl.2 b/man2/prctl.2
index 5f84bb7..39b3e9a 100644
--- a/man2/prctl.2
+++ b/man2/prctl.2
@@ -988,7 +988,10 @@ flag, in the location pointed to by
 .IR "(int\ **)\ arg2" .
 This feature is available only if the kernel is built with the
 .BR CONFIG_CHECKPOINT_RESTORE
-option enabled.
+option enabled. Note that since the prctl() syscall does not have compat
+implementation for AMD64 x32 and MIPS n32 ABIs, and the kernel writes out
+pointer of kernel's pointer size, this operation expects a user space buffer
+of 8 (not 4) bytes on these ABIs.
 .TP
 .BR PR_SET_TIMERSLACK " (since Linux 2.6.28)"
 .\" See https://lwn.net/Articles/369549/
-- 
2.10.2

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] prctl.2: Add note regarding the size of the output user space buffer for PR_GET_TID_ADDRESS operation on x32/n32
  2016-12-12  3:54 [PATCH] prctl.2: Add note regarding the size of the output user space buffer for PR_GET_TID_ADDRESS operation on x32/n32 Eugene Syromyatnikov
@ 2016-12-12  6:21 ` Michael Kerrisk (man-pages)
  2016-12-12  6:22 ` Michael Kerrisk (man-pages)
  1 sibling, 0 replies; 3+ messages in thread
From: Michael Kerrisk (man-pages) @ 2016-12-12  6:21 UTC (permalink / raw)
  To: Eugene Syromyatnikov
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA

On 12/12/2016 04:54 AM, Eugene Syromyatnikov wrote:

Thanks, Eugene. Applied.

Cheers,

Michael

> ---
>  man2/prctl.2 | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/man2/prctl.2 b/man2/prctl.2
> index 5f84bb7..39b3e9a 100644
> --- a/man2/prctl.2
> +++ b/man2/prctl.2
> @@ -988,7 +988,10 @@ flag, in the location pointed to by
>  .IR "(int\ **)\ arg2" .
>  This feature is available only if the kernel is built with the
>  .BR CONFIG_CHECKPOINT_RESTORE
> -option enabled.
> +option enabled. Note that since the prctl() syscall does not have compat
> +implementation for AMD64 x32 and MIPS n32 ABIs, and the kernel writes out
> +pointer of kernel's pointer size, this operation expects a user space buffer
> +of 8 (not 4) bytes on these ABIs.
>  .TP
>  .BR PR_SET_TIMERSLACK " (since Linux 2.6.28)"
>  .\" See https://lwn.net/Articles/369549/
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] prctl.2: Add note regarding the size of the output user space buffer for PR_GET_TID_ADDRESS operation on x32/n32
  2016-12-12  3:54 [PATCH] prctl.2: Add note regarding the size of the output user space buffer for PR_GET_TID_ADDRESS operation on x32/n32 Eugene Syromyatnikov
  2016-12-12  6:21 ` Michael Kerrisk (man-pages)
@ 2016-12-12  6:22 ` Michael Kerrisk (man-pages)
  1 sibling, 0 replies; 3+ messages in thread
From: Michael Kerrisk (man-pages) @ 2016-12-12  6:22 UTC (permalink / raw)
  To: Eugene Syromyatnikov
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA

On 12/12/2016 04:54 AM, Eugene Syromyatnikov wrote:
> ---
>  man2/prctl.2 | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)

Thanks, Eugene. Applied. (And fantastic to get patches with this
level of detail!)

Cheers,

Michael

> diff --git a/man2/prctl.2 b/man2/prctl.2
> index 5f84bb7..39b3e9a 100644
> --- a/man2/prctl.2
> +++ b/man2/prctl.2
> @@ -988,7 +988,10 @@ flag, in the location pointed to by
>  .IR "(int\ **)\ arg2" .
>  This feature is available only if the kernel is built with the
>  .BR CONFIG_CHECKPOINT_RESTORE
> -option enabled.
> +option enabled. Note that since the prctl() syscall does not have compat
> +implementation for AMD64 x32 and MIPS n32 ABIs, and the kernel writes out
> +pointer of kernel's pointer size, this operation expects a user space buffer
> +of 8 (not 4) bytes on these ABIs.
>  .TP
>  .BR PR_SET_TIMERSLACK " (since Linux 2.6.28)"
>  .\" See https://lwn.net/Articles/369549/
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-12-12  6:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-12  3:54 [PATCH] prctl.2: Add note regarding the size of the output user space buffer for PR_GET_TID_ADDRESS operation on x32/n32 Eugene Syromyatnikov
2016-12-12  6:21 ` Michael Kerrisk (man-pages)
2016-12-12  6:22 ` Michael Kerrisk (man-pages)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.