cap_from_text   Début   Suivant   Sommaire   Préc.page.lue   Accueil
Section: Linux Programmer's Manual (3)
Updated: 21th Jan 2008
Sommaire  



NAME   Début   Précédent   Suivant   Sommaire   Préc.page.lue   Accueil
cap_from_text, cap_to_text, cap_to_name, cap_from_name - capability state textual representation translation  



SYNOPSIS   Début   Précédent   Suivant   Sommaire   Préc.page.lue   Accueil
#include <sys/capability.h>

cap_t cap_from_text(const char *buf_p);

char *cap_to_text(cap_t caps, ssize_t *length_p);

int cap_from_text(const char *name, cap_value_t *cap_p);

char *cap_to_text(cap_value_t cap);  




USAGE   Début   Précédent   Suivant   Sommaire   Préc.page.lue   Accueil

cc ... -lcap  



DESCRIPTION   Début   Précédent   Suivant   Sommaire   Préc.page.lue   Accueil
These functions translate a capability state from an internal representation into a textual one. The internal representation is managed by the capability functions in working storage. The textual representation is a structured, human-readable, string suitable for display.

cap_from_text allocates and initializes a capability state in working storage. It then sets the contents of this newly-created capability state to the state represented by human-readable, null terminated character string pointed to by buf_p. It returns a pointer to the newly created capability state. The caller should free any releasable memory, when the capability state in working storage is no longer required, by calling cap_free with cap_t as an argument. The function returns an error if it cannot parse the contents of the string pointed to by buf_p or does not recognize any capability_name or flag character as valid. The function also returns an error if any flag is both set and cleared within a single clause.

cap_to_text converts the capability state in working storage identified by cap_p into a null terminated human-readable string. This function allocates any memory necessary to contain the string, and returns a pointer to the string. If the pointer len_p is not NULL, the function shall also return the full length of the string (not including the null terminator) in the location pointed to by len_p. The capability state in working storage, identified by cap_p, is completely represented in the character string. The caller should free any releasable memory, when the capability state in working storage is no longer required, by calling cap_free with cap_p as an argument.

cap_from_name converts a text representation of a capability, such as "cap_chown", to its numerical representation ( CAP_CHOWN=0 ). Writing the decoded value into *cap_p. If cap_p is NULL no result is written, but the return code of the function indicates whether or not the specified capability can be represented by the library.

cap_to_text converts a capability index value, cap , to a libcap allocated textual string. This string should be deallocated with cap_free .  




TEXTUAL REPRESENTATION   Début   Précédent   Suivant   Sommaire   Préc.page.lue   Accueil
A textual representation of capability sets consists of one or more whitespace-separated clauses. Each clause specifies some operations to a capability set; the set starts out with all capabilities lowered, and the meaning of the string is the state of the capability set after all the clauses have been applied in order.

Each clause consists of a list of comma-separated capability names (or the word `all'), followed by an action-list. An action-list consists of a sequence of operator flag pairs. Legal operators are: `=', '+', and `-'. Legal flags are: `e', `i', and `p'. These flags are case-sensitive and specify the Effective, Inheritable and Permitted sets respectively.

In the capability name lists, all names are case-insensitive. The special name `all' specifies all capabilities; it is equivalent to a list naming every capability individually.

Unnamed capabilities can also be specified by number. This feature ensures that libcap can support capabilities that were not allocated at the time libcap was compiled. However, generally upgrading libcap will add names for recently allocated capabilities.

The `=' operator indicates that the listed capabilities are first reset in all three capability sets. The subsequent flags (which are optional when associated with this operator) indicate that the listed capabilities for the corresponding set are to be raised. For example: "all=p" means lower every capability in the Effective and Inheritable sets but raise all of the Permitted capabilities; or, "cap_fowner=ep" means raise the Effective and Permitted override-file-ownership capability, while lowering this Inheritable capability.

In the case that the leading operator is `=', and no list of capabilities is provided, the action-list is assumed to refer to `all' capabilities. For example, the following three clauses are equivalent to each other (and indicate a completely empty capability set): "all="; "="; "cap_chown,<every-other-capability>=".

The operators, `+' and `-' both require an explicit preceding capability list and one or more explicit trailing flags. The `+' operator will raise all of the listed capabilities in the flagged capability sets. The `-' operator will lower all of the listed capabilities in the flagged capability sets. For example: "all+p" will raise all of the Permitted capabilities; "cap_fowner+p-i" will raise the override-file-ownership capability in the Permitted capability set and lower this Inheritable capability; "cap_fowner+pe-i" and "cap_fowner=+pe" are equivalent.  




RETURN VALUE   Début   Précédent   Suivant   Sommaire   Préc.page.lue   Accueil
cap_from_text , cap_to_text and cap_to_text return a non-NULL value on success, and NULL on failure. cap_from_text returns 0 for success, and -1 on failure (unknown capability).

On failure, errno(3) is set to EINVAL, or ENOMEM.  




CONFORMING TO   Début   Précédent   Suivant   Sommaire   Préc.page.lue   Accueil
cap_from_text and cap_to_text are specified by the withdrawn POSIX.1e draft. cap_from_name and cap_to_name are a Linux extension.  



SEE ALSO   Début   Précédent   Suivant   Sommaire   Préc.page.lue   Accueil
cap_clear(3), cap_copy_ext(3), cap_get_file(3), cap_get_proc(3), cap_init(3)


 



Sommaire   Début   Suivant   Sommaire   Préc.page.lue   Accueil
NAME
SYNOPSIS
USAGE
DESCRIPTION
TEXTUAL REPRESENTATION
RETURN VALUE
CONFORMING TO
SEE ALSO

Ce document a été créé par man2html suivi de man2html.pl, le 17/10/2008 17:52:03, en utilisant les pages de 'man'.
 

Valid HTML 4.01 Transitional