Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

CentOS 4.8

i386

getpidcon(3)


getcon

getcon

NAME
SYNOPSIS
DESCRIPTION
RETURN VALUE
SEE ALSO

NAME

getcon, getprevcon, getpidcon − get SE Linux security context of a process.

SYNOPSIS

#include <selinux/selinux.h>

int getcon(security_context_t *context);
int getprevcon(security_context_t *
context);
int getpidcon(pid_t
pid, security_context_t *context);
int getpeercon(int
fd, security_context_t *context);

DESCRIPTION

getcon retrieves the context of the current process, which must be free’d with freecon.

getprevcon same as getcon but gets the context before the last exec.

getpidcon returns the process context for the specified PID.

getpeercon retrieves context of peer socket, and set *context to refer to it, which must be free’d with freecon.

RETURN VALUE

On error -1 is returned. On success 0 is returned.

SEE ALSO

freecon(3), setexeccon(3)



getpidcon(3)