/usr/include/qpol/syn_rule_query.h is in libqpol-dev 3.3.6.ds-7.2ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 | /**
* @file
* Public interface for querying syntactic rules from the extended
* policy image.
*
* @author Jeremy A. Mowery jmowery@tresys.com
* @author Jason Tang jtang@tresys.com
*
* Copyright (C) 2006-2007 Tresys Technology, LLC
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef QPOL_SYN_RULE_QUERY_H
#define QPOL_SYN_RULE_QUERY_H
#ifdef __cplusplus
extern "C"
{
#endif
#include <qpol/policy.h>
#include <qpol/cond_query.h>
#include <qpol/iterator.h>
#include <stdint.h>
typedef struct qpol_type_set qpol_type_set_t;
typedef struct qpol_syn_avrule qpol_syn_avrule_t;
typedef struct qpol_syn_terule qpol_syn_terule_t;
/**
* Get an iterator of the included types in a type set.
* @param policy Policy associated with the type set.
* @param ts Type set from which to get the included types.
* @param iter Iterator over items of type qpol_type_t returned.
* The caller is responsible for calling qpol_iterator_destroy()
* to free memory used by this iterator.
* It is important to note that this iterator is only valid as long as
* the policy is unmodifed.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *iter will be NULL.
*/
extern int qpol_type_set_get_included_types_iter(const qpol_policy_t * policy, const qpol_type_set_t * ts,
qpol_iterator_t ** iter);
/**
* Get an iterator of the subtracted types in a type set.
* @param policy Policy associated with the type set.
* @param ts Type set from which to get the subtracted types.
* @param iter Iterator over items of type qpol_type_t returned.
* The caller is responsible for calling qpol_iterator_destroy()
* to free memory used by this iterator.
* It is important to note that this iterator is only valid as long as
* the policy is unmodifed.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *iter will be NULL.
*/
extern int qpol_type_set_get_subtracted_types_iter(const qpol_policy_t * policy, const qpol_type_set_t * ts,
qpol_iterator_t ** iter);
/**
* Determine if a type set includes '*'.
* @param policy Policy associated with the type set.
* @param ts Type set to check for '*'.
* @param is_star Pointer to integer to set.
* Will be set to 1 if ts contains '*' or 0 otherwise.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *is_star will be 0.
*/
extern int qpol_type_set_get_is_star(const qpol_policy_t * policy, const qpol_type_set_t * ts, uint32_t * is_star);
/**
* Determine if a type set is complemented (contains '~').
* @param policy Policy associated with the type set.
* @param ts Type set to check for complement.
* @param is_comp Pointer to integer to set.
* Will be set to 1 if ts is complemented or 0 otherwise.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *is_comp will be 0.
*/
extern int qpol_type_set_get_is_comp(const qpol_policy_t * policy, const qpol_type_set_t * ts, uint32_t * is_comp);
/**
* Get the rule type of a syntactic avrule.
* @param policy Policy associated with the rule.
* @param rule Avrule from which to get the type.
* @param rule_type Pointer to integer to set.
* Will be one of QPOL_RULE_* (see qpol/avrule_query.h).
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *rule_type will be 0.
*/
extern int qpol_syn_avrule_get_rule_type(const qpol_policy_t * policy, const qpol_syn_avrule_t * rule,
uint32_t * rule_type);
/**
* Get the set of types specified for a syntatic rule's source field.
* @param policy Policy associated with the rule.
* @param rule Avrule from which to get the source type set.
* @param source_set Type set returned; the caller <b>should not</b>
* free this pointer.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *source_set will be NULL.
*/
extern int qpol_syn_avrule_get_source_type_set(const qpol_policy_t * policy, const qpol_syn_avrule_t * rule,
const qpol_type_set_t ** source_set);
/**
* Get the set of types specified for a syntactic rule's target field.
* @param policy Policy associated with the rule.
* @param rule Avrule from which to get the target type set.
* @param target_set Type set returned; the caller <b>should not</b>
* free this pointer.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *target_set will be NULL.
*/
extern int qpol_syn_avrule_get_target_type_set(const qpol_policy_t * policy, const qpol_syn_avrule_t * rule,
const qpol_type_set_t ** target_set);
/**
* Determine if a syntactic rule includes the self flag in the target set.
* @param policy Policy associated with the rule.
* @param rule Avrule to check for the self flag.
* @param is_self Pointer to the integer to set; if the rule includes self,
* this will be set to 1, otherwise it will be set to 0.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *is_self will be 0.
*/
extern int qpol_syn_avrule_get_is_target_self(const qpol_policy_t * policy, const qpol_syn_avrule_t * rule,
uint32_t * is_self);
/**
* Get an iterator over all classes specified in a syntactic rule.
* @param policy Policy associated with the rule.
* @param rule The rule from which to get the classes.
* @param classes Iterator over items of type qpol_class_t* returned.
* The caller is responsible for calling qpol_iterator_destroy()
* to free memory used by this iterator.
* It is important to note that this iterator is only valid as long as
* the policy is unmodifed.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *classes will be NULL.
*/
extern int qpol_syn_avrule_get_class_iter(const qpol_policy_t * policy, const qpol_syn_avrule_t * rule,
qpol_iterator_t ** classes);
/**
* Get an iterator over all permissions specified in a syntactic rule.
* @param policy Policy associated with the
* @param rule The rule from which to get the permissions.
* @param perms Iterator over items of type char* returned.
* The caller is responsible for calling qpol_iterator_destroy()
* to free memory used by this iterator.
* It is important to note that this iterator is only valid as long as
* the policy is unmodifed.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *perms will be NULL.
*/
extern int qpol_syn_avrule_get_perm_iter(const qpol_policy_t * policy, const qpol_syn_avrule_t * rule,
qpol_iterator_t ** perms);
/**
* Get the line number of a syntactic rule.
* @param policy Policy associated with the rule
* @param rule The rule for which to get the line number.
* @param lineno Pointer to set to the line number.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *lineno will be 0.
*/
extern int qpol_syn_avrule_get_lineno(const qpol_policy_t * policy, const qpol_syn_avrule_t * rule, unsigned long *lineno);
/**
* If the syntactic rule is within a conditional, then get that
* conditional and assign it to cond. Otherwise assign to cond NULL.
* @param policy Policy associated with the rule.
* @param rule The rule for which to get the conditional.
* @param cond Reference pointer to this rule's conditional
* expression, or NULL if the rule is unconditional.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *lineno will be 0.
*/
extern int qpol_syn_avrule_get_cond(const qpol_policy_t * policy, const qpol_syn_avrule_t * rule,
const qpol_cond_t ** cond);
/**
* Determine if the syntactic rule is enabled. Unconditional rules
* are always enabled.
* @param policy Policy associated with the rule.
* @param rule The rule for which to get the conditional.
* @param is_enabled Integer in which to store the result: set to 1
* if enabled and 0 otherwise.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *lineno will be 0.
*/
extern int qpol_syn_avrule_get_is_enabled(const qpol_policy_t * policy, const qpol_syn_avrule_t * rule,
uint32_t * is_enabled);
/**
* Get the rule type of a syntactic terule.
* @param policy Policy associated with the rule.
* @param rule Terule from which to get the type.
* @param rule_type Pointer to integer to set.
* Will be one of QPOL_RULE_TYPE_* (see qpol/terule_query.h).
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *rule_type will be 0.
*/
extern int qpol_syn_terule_get_rule_type(const qpol_policy_t * policy, const qpol_syn_terule_t * rule,
uint32_t * rule_type);
/**
* Bet the set of types specified for a syntactic rule's source field.
* @param policy Policy associated with the rule.
* @param rule Terule from which to get the source type set.
* @param source_set Type set returned; the caller <b>shoule not</b>
* free this pointer.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *source_set will be NULL.
*/
extern int qpol_syn_terule_get_source_type_set(const qpol_policy_t * policy, const qpol_syn_terule_t * rule,
const qpol_type_set_t ** source_set);
/**
* Get the set of types specified for a syntactic rule's target field.
* @param policy Policy associated with the rule.
* @param rule Terule from which to get the target types et.
* @param target_set Type set returned; ther caller <b>should not</b>
* free this pointer.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *target_set will be NULL.
*/
extern int qpol_syn_terule_get_target_type_set(const qpol_policy_t * policy, const qpol_syn_terule_t * rule,
const qpol_type_set_t ** target_set);
/**
* Get an iterator over all classes specified in a syntactic rule.
* @param policy Policy associated with the rule.
* @param rule The rule from which to get the classes.
* @param classes Iterator over items of type qpol_class_t* returned.
* The caller is responsible for calling qpol_iterator_destroy()
* to free memory used by this iterator.
* It is important to note that this iterator is only valid as long as
* the policy is unmodifed.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *classes will be NULL.
*/
extern int qpol_syn_terule_get_class_iter(const qpol_policy_t * policy, const qpol_syn_terule_t * rule,
qpol_iterator_t ** classes);
/* forward declaration */
struct qpol_type;
/**
* Get the default type of a syntactic terule.
* @param policy Policy associated with the rule.
* @param rule Terule from which to et the default type.
* @param dflt Reference pointer to the type to return.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *dflt will be NULL.
*/
extern int qpol_syn_terule_get_default_type(const qpol_policy_t * policy, const qpol_syn_terule_t * rule,
const struct qpol_type **dflt);
/**
* Get the line number of a syntactic rule.
* @param policy Policy associated with the rule.
* @param rule The rule for which to get the line number.
* @param lineno Pointer to set to the line number.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *lineno will be 0.
*/
extern int qpol_syn_terule_get_lineno(const qpol_policy_t * policy, const qpol_syn_terule_t * rule, unsigned long *lineno);
/**
* If the syntactic rule is within a conditional, then get that
* conditional and assign it to cond. Otherwise assign to cond NULL.
* @param policy Policy associated with the rule.
* @param rule The rule for which to get the conditional.
* @param cond Reference pointer to this rule's conditional
* expression, or NULL if the rule is unconditional.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *lineno will be 0.
*/
extern int qpol_syn_terule_get_cond(const qpol_policy_t * policy, const qpol_syn_terule_t * rule,
const qpol_cond_t ** cond);
/**
* Determine if the syntactic rule is enabled. Unconditional rules
* are always enabled.
* @param policy Policy associated with the rule.
* @param rule The rule for which to get the conditional.
* @param is_enabled Integer in which to store the result: set to 1
* if enabled and 0 otherwise.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and *lineno will be 0.
*/
extern int qpol_syn_terule_get_is_enabled(const qpol_policy_t * policy, const qpol_syn_terule_t * rule,
uint32_t * is_enabled);
#ifdef __cplusplus
}
#endif
#endif /* QPOL_SYN_RULE_QUERY_H */
|