cap_get_file   Début   Suivant   Sommaire   Préc.page.lue   Accueil
Section: Linux Programmer's Manual (3)
Updated: 17th May 1998
Sommaire  



NAME   Début   Précédent   Suivant   Sommaire   Préc.page.lue   Accueil
cap_get_file, cap_set_file, cap_get_fd, cap_set_fd - capability manipulation on files

Note: support for file capabilities is anticipated in Linux 2.6.23+  




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

#include <sys/capability.h>

cap_t cap_get_file(const char *path_p);

int cap_set_file(const char *path_p, cap_t cap_p);

cap_t cap_get_fd(int fd);

int cap_set_fd(int fd, cap_t caps);  




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
cap_get_file and cap_get_fd allocate a capability state in working storage and set it to represent the capability state of the pathname pointed to by path_p or the file open on descriptor fd. These functions return a pointer to the newly created capability state. The effects of reading the capability state from any file other than a regular file is undefined. The caller should free any releasable memory, when the capability state in working storage is no longer required, by calling cap_free with the used cap_t as an argument.

cap_set_file and cap_set_fd set the values for all capability flags for all capabilities for the pathname pointed to by path_p or the file open on descriptor fd, with the capability state identified by cap_p. The new capability state of the file shall be completely determined by the contents of cap_p. A NULL value for cap_p is used to indicate that capabilities for the file should be deleted. For these functions to succeed, the calling process must have the CAP_SETFCAP capability enabled and either the effective user ID of the process must match the file owner or the calling process must have the effective flag of the CAP_FOWNER capability set. The effects of writing the capability state to any file type other than a regular file are undefined.  




RETURN VALUE   Début   Précédent   Suivant   Sommaire   Préc.page.lue   Accueil
cap_get_file and cap_get_fd return a non-NULL value on success, and NULL on failure.

cap_set_file and cap_set_fd return zero on success, and -1 on failure.

On failure, errno(3) is set to EACCES, EBADFD, ENAMETOOLONG, ENOENT, ENOMEM, ENOTDIR, EPERM, or EROFS.  




CONFORMING TO   Début   Précédent   Suivant   Sommaire   Préc.page.lue   Accueil
These functions are specified by POSIX.1e.  



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


 



Sommaire   Début   Suivant   Sommaire   Préc.page.lue   Accueil
NAME
SYNOPSIS
USAGE
DESCRIPTION
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