Scroll to navigation

KEYCTL(2) Linux Key Management Calls KEYCTL(2)

NAME

keyctl - Manipulate the kernel's key management facility

SYNOPSIS

#include <keyutils.h>

long keyctl(int cmd, ...);

DESCRIPTION

keyctl() has a number of functions available:

Ask for a keyring's ID.
Join or start named session keyring.
Update a key.
Revoke a key.
Set ownership of a key.
Set perms on a key.
Describe a key.
Clear contents of a keyring.
Link a key into a keyring.
Unlink a key from a keyring.
Search for a key in a keyring.
Read a key or keyring's contents.
Instantiate a partially constructed key.
Negate a partially constructed key.
Set default request-key keyring.
Set timeout on a key.
Assume authority to instantiate key.

These are wrapped by libkeyutils into individual functions to permit compiler the compiler to check types. See the See Also section at the bottom.

RETURN VALUE

On success keyctl() returns the serial number of the key it found. On error, the value -1 will be returned and errno will have been set to an appropriate error.

ERRORS

No matching key was found or an invalid key was specified.
An expired key was found or specified.
A revoked key was found or specified.
A rejected key was found or specified.
The key quota for the caller's user would be exceeded by creating a key or linking it to the keyring.
A key operation wasn't permitted.

LINKING

Although this is a Linux system call, it is not present in libc but can be found rather in libkeyutils. When linking, -lkeyutils should be specified to the linker.

SEE ALSO

keyctl(1),
add_key(2),
request_key(2),
keyctl_get_keyring_ID(3),
keyctl_join_session_keyring(3),
keyctl_update(3),
keyctl_revoke(3),
keyctl_chown(3),
keyctl_setperm(3),
keyctl_describe(3),
keyctl_clear(3),
keyctl_link(3),
keyctl_unlink(3),
keyctl_search(3),
keyctl_read(3),
keyctl_instantiate(3),
keyctl_negate(3),
keyctl_set_reqkey_keyring(3),
keyctl_set_timeout(3),
keyctl_assume_authority(3),
keyctl_describe_alloc(3),
keyctl_read_alloc(3),
request-key(8)

4 May 2006 Linux