Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

blminmax(3tsol) [opensolaris man page]

blminmax(3TSOL) 				       Trusted Extensions Library Functions					   blminmax(3TSOL)

NAME
blminmax, blmaximum, blminimum - bound of two labels SYNOPSIS
cc [flag...] file... -ltsol [library...] #include <tsol/label.h> void blmaximum(m_label_t *maximum_label, const m_label_t *bounding_label); void blminimum(m_label_t *minimum_label, const m_label_t *bounding_label); DESCRIPTION
The blmaximum() function replaces the contents of label maximum_label with the least upper bound of the labels maximum_label and bound- ing_label. The least upper bound is the greater of the classifications and all of the compartments of the two labels. This is the least label that dominates both of the original labels. The blminimum() function replaces the contents of label minimum_label with the greatest lower bound of the labels minimum_label and bound- ing_label. The greatest lower bound is the lower of the classifications and only the compartments that are contained in both labels. This is the greatest label that is dominated by both of the original labels. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Committed | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
label_to_str(3TSOL), libtsol(3LIB), sbltos(3TSOL), attributes(5) NOTES
The functionality described on this manual page is available only if the system is configured with Trusted Extensions. SunOS 5.11 20 Jul 2007 blminmax(3TSOL)

Check Out this Related Man Page

blcompare(3TSOL)				       Trusted Extensions Library Functions					  blcompare(3TSOL)

NAME
blcompare, blequal, bldominates, blstrictdom, blinrange - compare binary labels SYNOPSIS
cc [flag...] file... -ltsol [library...] #include <tsol/label.h> int blequal(const m_label_t *label1, const m_label_t *label2); int bldominates(const m_label_t *label1, const m_label_t *label2); int blstrictdom(const m_label_t *label1, const m_label_t *label2); int blinrange(const m_label_t *label, const brange_t *range); DESCRIPTION
These functions compare binary labels for meeting a particular condition. The blequal() function compares two labels for equality. The bldominates() function compares label label1 for dominance over label label2. The blstrictdom() function compares label label1 for strict dominance over label label2. The blinrange() function compares label label for dominance over range->lower_bound and range->upper_bound for dominance over level label. RETURN VALUES
These functions return non-zero if their respective conditions are met, otherwise zero is returned. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Committed | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
getplabel(3TSOL), label_to_str(3TSOL), libtsol(3LIB), ucred_getlabel(3C), label_encodings(4), attributes(5), labels(5) Determining the Relationship Between Two Labels in Solaris Trusted Extensions Developer's Guide NOTES
The functionality described on this manual page is available only if the system is configured with Trusted Extensions. SunOS 5.11 20 Jul 2007 blcompare(3TSOL)
Man Page