from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites:gentoo.linuxhowtos.org



Last additions:
using iotop to find disk usage hogs

using iotop to find disk usage hogs

words:

887

views:

210143

userrating:


May 25th. 2007:
Words

486

Views

259134

why adblockers are bad


Workaround and fixes for the current Core Dump Handling vulnerability affected kernels

Workaround and fixes for the current Core Dump Handling vulnerability affected kernels

words:

161

views:

150473

userrating:


April, 26th. 2006:

Druckversion
You are here: manpages





pkey_alloc

Section: System Calls (2)
Updated: 202-0-08
Index Return to Main Contents
 

NAME

pkey_alloc, pkey_free - allocate or free a protection key  

LIBRARY

Standard C library (libc,~-lc)  

SYNOPSIS

#define _GNU_SOURCE             /* See feature_test_macros(7) */
#include <sys/mman.h>
int pkey_alloc(unsigned int flags, unsigned int access_rights);
int pkey_free(int pkey);
 

DESCRIPTION

pkey_alloc() allocates a protection key (pkey) and allows it to be passed to pkey_mprotect(2). The pkey_alloc() flags is reserved for future use and currently must always be specified as 0. The pkey_alloc() access_rights argument may contain zero or more disable operations:
PKEY_DISABLE_ACCESS
Disable all data access to memory covered by the returned protection key.
PKEY_DISABLE_WRITE
Disable write access to memory covered by the returned protection key. pkey_free() frees a protection key and makes it available for later allocations. After a protection key has been freed, it may no longer be used in any protectio-ke-related operations. An application should not call pkey_free() on any protection key which has been assigned to an address range by pkey_mprotect(2) and which is still in use. The behavior in this case is undefined and may result in an error.
 

RETURN VALUE

On success, pkey_alloc() returns a positive protection key value. On success, pkey_free() returns zero. On error, -1 is returned, and errno is set to indicate the error.  

ERRORS

EINVAL
pkey, flags, or access_rights is invalid.
ENOSPC
(pkey_alloc()) All protection keys available for the current process have been allocated. The number of keys available is architectur-specific and implementatio-specific and may be reduced by kerne-internal use of certain keys. There are currently 15 keys available to user programs on x86.
This error will also be returned if the processor or operating system does not support protection keys. Applications should always be prepared to handle this error, since factors outside of the application's control can reduce the number of available pkeys.
 

STANDARDS

Linux.  

HISTORY

Linux 4.9, glibc 2.27.  

NOTES

pkey_alloc() is always safe to call regardless of whether or not the operating system supports protection keys. It can be used in lieu of any other mechanism for detecting pkey support and will simply fail with the error ENOSPC if the operating system has no pkey support. The kernel guarantees that the contents of the hardware rights register (PKRU) will be preserved only for allocated protection keys. Any time a key is unallocated (either before the first call returning that key from pkey_alloc() or after it is freed via pkey_free()), the kernel may make arbitrary changes to the parts of the rights register affecting access to that key.  

EXAMPLES

See pkeys(7).  

SEE ALSO

pkey_mprotect(2), pkeys(7)


 

Index

NAME
LIBRARY
SYNOPSIS
DESCRIPTION
RETURN VALUE
ERRORS
STANDARDS
HISTORY
NOTES
EXAMPLES
SEE ALSO





Support us on Content Nation
rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 12.6 ms