Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

avc_compute_create(3) [centos man page]

avc_compute_create(3)					     SELinux API documentation					     avc_compute_create(3)

NAME
avc_compute_create, avc_compute_member - obtain SELinux label for new object SYNOPSIS
#include <selinux/selinux.h> #include <selinux/avc.h> int avc_compute_create(security_id_t ssid, security_id_t tsid, security_class_t tclass, security_id_t *newsid); int avc_compute_member(security_id_t ssid, security_id_t tsid, security_class_t tclass, security_id_t *newsid); DESCRIPTION
avc_compute_create() is used to compute a SID to use for labeling a new object in a particular class based on a SID pair. This call is identical to security_compute_create(), but does not require converting from userspace SID's to contexts and back again. avc_compute_member() is used to compute a SID to use for labeling a polyinstantiated object instance of a particular class based on a SID pair. This call is identical to security_compute_member(), but does not require converting from userspace SID's to contexts and back again. These functions return a SID for the computed context in the memory referenced by sid. RETURN VALUE
On success, zero is returned. On error, -1 is returned and errno is set appropriately. ERRORS
EINVAL The tclass and/or the security contexts referenced by ssid and tsid are not recognized by the currently loaded policy. ENOMEM An attempt to allocate memory failed. AUTHOR
Eamon Walsh <ewalsh@tycho.nsa.gov> SEE ALSO
avc_init(3), avc_context_to_sid(3), security_compute_create(3), selinux(8) 30 Mar 2007 avc_compute_create(3)

Check Out this Related Man Page

avc_compute_create(3)					     SELinux API documentation					     avc_compute_create(3)

NAME
avc_compute_create, avc_compute_member - obtain SELinux label for new object SYNOPSIS
#include <selinux/selinux.h> #include <selinux/avc.h> int avc_compute_create(security_id_t ssid, security_id_t tsid, security_class_t tclass, security_id_t *newsid); int avc_compute_member(security_id_t ssid, security_id_t tsid, security_class_t tclass, security_id_t *newsid); DESCRIPTION
avc_compute_create() is used to compute a SID to use for labeling a new object in a particular class based on a SID pair. This call is identical to security_compute_create(), but does not require converting from userspace SID's to contexts and back again. avc_compute_member() is used to compute a SID to use for labeling a polyinstantiated object instance of a particular class based on a SID pair. This call is identical to security_compute_member(), but does not require converting from userspace SID's to contexts and back again. These functions return a SID for the computed context in the memory referenced by sid. RETURN VALUE
On success, zero is returned. On error, -1 is returned and errno is set appropriately. ERRORS
EINVAL The tclass and/or the security contexts referenced by ssid and tsid are not recognized by the currently loaded policy. ENOMEM An attempt to allocate memory failed. AUTHOR
Eamon Walsh <ewalsh@tycho.nsa.gov> SEE ALSO
avc_init(3), avc_context_to_sid(3), security_compute_create(3), selinux(8) 30 Mar 2007 avc_compute_create(3)
Man Page

3 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

SID=${ORACLE_SID:?"$TWO_TASK"}

Hi, if any one understand what does this mean : SID=${ORACLE_SID:?"$TWO_TASK"} I have it in a shell script. Many thanks in advance. (2 Replies)
Discussion started by: big123456
2 Replies

2. UNIX for Dummies Questions & Answers

Variable is not substituting values

Hi All, OS HPUX 11.11 I am using following script to take controlfile backup. I have used SID variable to hold "ffin1" value, which I again subsitute in "'/db/ffin1/home/oraffin1/$SID_$wdate.ctl'" command. Well, after running this, SID variable does not subsittue it's value, while wdate... (6 Replies)
Discussion started by: alok.behria
6 Replies

3. Shell Programming and Scripting

While ...loop

#!/usr/bin/ksh totalInstance=3 c=1 SID=SID SID_1=BOYISH SID_2=EAGALE SID_3=PLUNE while do BDUMP_DIR="${SID}_${c}" echo "$BDUMP_DIR" c=`expr $c + 1` echo "$c" done having problem printing the value of my var SID_1, SID_2, SID_3 (12 Replies)
Discussion started by: redologger
12 Replies