/* SPDX-License-Identifier: GPL-2.0 */1/*2* A constraint is a condition that must be satisfied in3* order for one or more permissions to be granted.4* Constraints are used to impose additional restrictions5* beyond the type-based rules in `te' or the role-based6* transition rules in `rbac'. Constraints are typically7* used to prevent a process from transitioning to a new user8* identity or role unless it is in a privileged type.9* Constraints are likewise typically used to prevent a10* process from labeling an object with a different user11* identity.12*13* Author : Stephen Smalley, <[email protected]>14*/1516#ifndef _SS_CONSTRAINT_H_17#define _SS_CONSTRAINT_H_1819#include "ebitmap.h"2021#define CEXPR_MAXDEPTH 52223struct constraint_expr {24#define CEXPR_NOT 1 /* not expr */25#define CEXPR_AND 2 /* expr and expr */26#define CEXPR_OR 3 /* expr or expr */27#define CEXPR_ATTR 4 /* attr op attr */28#define CEXPR_NAMES 5 /* attr op names */29u32 expr_type; /* expression type */3031#define CEXPR_USER 1 /* user */32#define CEXPR_ROLE 2 /* role */33#define CEXPR_TYPE 4 /* type */34#define CEXPR_TARGET 8 /* target if set, source otherwise */35#define CEXPR_XTARGET 16 /* special 3rd target for validatetrans rule */36#define CEXPR_L1L2 32 /* low level 1 vs. low level 2 */37#define CEXPR_L1H2 64 /* low level 1 vs. high level 2 */38#define CEXPR_H1L2 128 /* high level 1 vs. low level 2 */39#define CEXPR_H1H2 256 /* high level 1 vs. high level 2 */40#define CEXPR_L1H1 512 /* low level 1 vs. high level 1 */41#define CEXPR_L2H2 1024 /* low level 2 vs. high level 2 */42u32 attr; /* attribute */4344#define CEXPR_EQ 1 /* == or eq */45#define CEXPR_NEQ 2 /* != */46#define CEXPR_DOM 3 /* dom */47#define CEXPR_DOMBY 4 /* domby */48#define CEXPR_INCOMP 5 /* incomp */49u32 op; /* operator */5051struct ebitmap names; /* names */52struct type_set *type_names;5354struct constraint_expr *next; /* next expression */55};5657struct constraint_node {58u32 permissions; /* constrained permissions */59struct constraint_expr *expr; /* constraint on permissions */60struct constraint_node *next; /* next constraint */61};6263#endif /* _SS_CONSTRAINT_H_ */646566