All of lore.kernel.org
 help / color / mirror / Atom feed
* pkey_alloc/pkey_free semantics
@ 2017-11-05 11:39 Florian Weimer
       [not found] ` <53ca4117-3694-45ac-3433-c9d3456e096b-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Florian Weimer @ 2017-11-05 11:39 UTC (permalink / raw)
  To: linux-man-u79uwXL29TY76Z2rM5mHXA

I'm implementing the memory protection key interfaces for glibc and 
noticed that the pkey_alloc manpage in particular is a bit removed from 
reality.

Here's what I found:

The flags argument is reserved and currently must be zero.

The access_rights argument instructs the kernel to set the access rights 
for the new key for the current thread only (!).  It's a bitmask with 
bits PKEY_DISABLE_ACCESS and PKEY_DISABLE_WRITE.

So in essence, both arguments are not needed right now because the 
access rights of the current thread for the new key could easily be 
changed in user space.

To repeat, pkey_alloc affects the access rights of the current thread. 
Other threads retain their existing access rights.  The default rights 
for the process apparently can be set with the init_pkru parameter on 
recent kernels (I have not tried that).

The manpage mentions only the key leak related to pkey_mprotect 
(pkey_free while a page still is still associated with that key).  There 
is another one which affects a pkey_alloc/pthread_create/pkey_free 
sequence, where any created threads retain their access rights.  I 
raised this issue of key reuse in a recent thread (MPK: pkey_free and 
key reuse), so perhaps there will be a way

Anyway, the important manpage fix for now would be to fix the 
description of the flags and access_rights parameters.

Thanks,
Florian
--
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] 2+ messages in thread

* Re: pkey_alloc/pkey_free semantics
       [not found] ` <53ca4117-3694-45ac-3433-c9d3456e096b-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2017-11-07 14:04   ` Florian Weimer
  0 siblings, 0 replies; 2+ messages in thread
From: Florian Weimer @ 2017-11-07 14:04 UTC (permalink / raw)
  To: linux-man-u79uwXL29TY76Z2rM5mHXA

On 11/05/2017 12:39 PM, Florian Weimer wrote:

> Anyway, the important manpage fix for now would be to fix the 
> description of the flags and access_rights parameters.

One more thing:

The pkey_alloc system call returns EINVAL, not ENOSPC, if the system 
does not support memory protection keys (at least in the Intel 
implementation, have not checked POWER).

Thanks,
Florian
--
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] 2+ messages in thread

end of thread, other threads:[~2017-11-07 14:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-05 11:39 pkey_alloc/pkey_free semantics Florian Weimer
     [not found] ` <53ca4117-3694-45ac-3433-c9d3456e096b-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2017-11-07 14:04   ` Florian Weimer

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.