/usr/include/poldiff/avrule_diff.h is in libpoldiff-dev 3.3.8-3ubuntu1.
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 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 | /**
* @file
* Public interface for computing semantic differences in av rules
* (allow, neverallow, auditallow, dontaudit).
*
* @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 POLDIFF_AVRULE_DIFF_H
#define POLDIFF_AVRULE_DIFF_H
#ifdef __cplusplus
extern "C"
{
#endif
#include <apol/vector.h>
#include <poldiff/poldiff.h>
typedef struct poldiff_avrule poldiff_avrule_t;
/**
* Get an array of statistics for the number of differences of each
* form for all AV rules.
*
* @param diff The policy difference structure from which to get the
* stats.
* @param stats Array into which to write the numbers (array must be
* pre-allocated). The order of the values written to the array is
* as follows: number of items of form POLDIFF_FORM_ADDED, number of
* POLDIFF_FORM_REMOVED, number of POLDIFF_FORM_MODIFIED, number of
* POLDIFF_FORM_ADD_TYPE, and number of POLDIFF_FORM_REMOVE_TYPE.
*/
extern void poldiff_avrule_get_stats_allow(const poldiff_t * diff, size_t stats[5]);
/**
* Get an array of statistics for the number of differences of each
* form for AV auditallow rules.
*
* @param diff The policy difference structure from which to get the
* stats.
* @param stats Array into which to write the numbers (array must be
* pre-allocated). The order of the values written to the array is
* as follows: number of items of form POLDIFF_FORM_ADDED, number of
* POLDIFF_FORM_REMOVED, number of POLDIFF_FORM_MODIFIED, number of
* POLDIFF_FORM_ADD_TYPE, and number of POLDIFF_FORM_REMOVE_TYPE.
*/
extern void poldiff_avrule_get_stats_auditallow(const poldiff_t * diff, size_t stats[5]);
/**
* Get an array of statistics for the number of differences of each
* form for AV dontaudit rules.
*
* @param diff The policy difference structure from which to get the
* stats.
* @param stats Array into which to write the numbers (array must be
* pre-allocated). The order of the values written to the array is
* as follows: number of items of form POLDIFF_FORM_ADDED, number of
* POLDIFF_FORM_REMOVED, number of POLDIFF_FORM_MODIFIED, number of
* POLDIFF_FORM_ADD_TYPE, and number of POLDIFF_FORM_REMOVE_TYPE.
*/
extern void poldiff_avrule_get_stats_dontaudit(const poldiff_t * diff, size_t stats[5]);
/**
* Get an array of statistics for the number of differences of each
* form for AV neverallow rules.
*
* @param diff The policy difference structure from which to get the
* stats.
* @param stats Array into which to write the numbers (array must be
* pre-allocated). The order of the values written to the array is
* as follows: number of items of form POLDIFF_FORM_ADDED, number of
* POLDIFF_FORM_REMOVED, number of POLDIFF_FORM_MODIFIED, number of
* POLDIFF_FORM_ADD_TYPE, and number of POLDIFF_FORM_REMOVE_TYPE.
*/
extern void poldiff_avrule_get_stats_neverallow(const poldiff_t * diff, size_t stats[5]);
/**
* Get the vector of av rule differences from the av rule difference
* summary for just allow rules.
*
* @param diff The policy difference structure associated with the av
* rule difference summary.
*
* @return A vector of elements of type poldiff_avrule_t, or NULL on
* error. The caller should <b>not</b> destroy the vector returned.
* If the call fails, errno will be set.
*/
extern const apol_vector_t *poldiff_get_avrule_vector_allow(const poldiff_t * diff);
/**
* Get the vector of av rule differences from the av rule difference
* summary for just auditallow rules.
*
* @param diff The policy difference structure associated with the av
* rule difference summary.
*
* @return A vector of elements of type poldiff_avrule_t, or NULL on
* error. The caller should <b>not</b> destroy the vector returned.
* If the call fails, errno will be set.
*/
extern const apol_vector_t *poldiff_get_avrule_vector_auditallow(const poldiff_t * diff);
/**
* Get the vector of av rule differences from the av rule difference
* summary for just dontaudit rules.
*
* @param diff The policy difference structure associated with the av
* rule difference summary.
*
* @return A vector of elements of type poldiff_avrule_t, or NULL on
* error. The caller should <b>not</b> destroy the vector returned.
* If the call fails, errno will be set.
*/
extern const apol_vector_t *poldiff_get_avrule_vector_dontaudit(const poldiff_t * diff);
/**
* Get the vector of av rule differences from the av rule difference
* summary for just neverallow rules.
*
* @param diff The policy difference structure associated with the av
* rule difference summary.
*
* @return A vector of elements of type poldiff_avrule_t, or NULL on
* error. The caller should <b>not</b> destroy the vector returned.
* If the call fails, errno will be set.
*/
extern const apol_vector_t *poldiff_get_avrule_vector_neverallow(const poldiff_t * diff);
/**
* Obtain a newly allocated string representation of a difference in
* any av rule.
*
* @param diff The policy difference structure associated with the av
* rule.
* @param avrule The av rule from which to generate the string.
*
* @return A string representation of av rule difference; the caller
* is responsible for free()ing this string. On error, return NULL
* and set errno.
*/
extern char *poldiff_avrule_to_string(const poldiff_t * diff, const void *avrule);
/**
* Get the form of difference from any av rule diff.
*
* @param avrule The av rule from which to get the difference form.
*
* @return The form of difference (one of POLDIFF_FORM_*) or
* POLDIFF_FORM_NONE on error.
*/
extern poldiff_form_e poldiff_avrule_get_form(const void *avrule);
/**
* Get the type of rule this is from an av rule diff.
*
* @param avrule The av rule from which to get the rule type.
*
* @return One of QPOL_RULE_ALLOW etc, suitable for printing via
* apol_rule_type_to_str().
*/
extern uint32_t poldiff_avrule_get_rule_type(const poldiff_avrule_t * avrule);
/**
* Get the source type from an av rule diff.
*
* @param avrule The av rule from which to get the type.
*
* @return A string for the type. <b>Do not free() this string.</b>
*/
extern const char *poldiff_avrule_get_source_type(const poldiff_avrule_t * avrule);
/**
* Get the target type from an av rule diff.
*
* @param avrule The av rule from which to get the type.
*
* @return A string for the type. <b>Do not free() this string.</b>
*/
extern const char *poldiff_avrule_get_target_type(const poldiff_avrule_t * avrule);
/**
* Get the object class from an av rule diff.
*
* @param avrule The av rule from which to get the class.
*
* @return A string for the class. <b>Do not free() this string.</b>
*/
extern const char *poldiff_avrule_get_object_class(const poldiff_avrule_t * avrule);
/**
* Get the conditional expression from an av rule diff. Note that
* this really returns a qpol_cond_t and an apol_policy_t, which may
* then be used in other routines such as apol_cond_expr_render().
*
* @param diff Difference structure from which the rule originated.
* @param avrule The av rule from which to get the conditional.
* @param cond Reference to the rule's conditional pointer, or NULL
* if the rule is not conditional. The caller must not free() this
* pointer.
* @param which_list Reference to which list the rule belongs, either
* 1 if in the true branch, 0 if in false. If the rule is not
* conditional then this value will be set to 1.
* @param p Reference to the policy from which the conditional
* originated, or NULL if the rule is not conditional. The caller
* must not destroy this pointer.
*/
extern void poldiff_avrule_get_cond(const poldiff_t * diff, const poldiff_avrule_t * avrule,
const qpol_cond_t ** cond, uint32_t * which_list, const apol_policy_t ** p);
/**
* Get a vector of permissions unmodified by the av rule. This
* vector will be non-empty only if the form is
* POLDIFF_FORM_MODIFIED.
*
* @param avrule The av rule diff from which to get the permissions
* vector.
*
* @return A vector of permissions strings (type char *) that both
* policies have. If no permissions are common to both policies then
* the size of of the returned vector will be 0. The caller must not
* destroy this vector.
*/
extern const apol_vector_t *poldiff_avrule_get_unmodified_perms(const poldiff_avrule_t * avrule);
/**
* Get a vector of permissions added to the av rule. If the rule was
* added by modified policy then this vector will hold all of the
* permissions.
*
* @param avrule The av rule diff from which to get the permissions
* vector.
*
* @return A vector of permissions strings (type char *) added to the
* rule in the modified policy. If no permissions were added the
* size of the returned vector will be 0. The caller must not
* destroy this vector.
*/
extern const apol_vector_t *poldiff_avrule_get_added_perms(const poldiff_avrule_t * avrule);
/**
* Get a vector of permissions removed from the av rule. If the rule
* was removed by modified policy then this vector will hold all of
* the permissions.
*
* @param avrule The av rule diff from which to get the permissions
* vector.
*
* @return A vector of permissions strings (type char *) removed from
* the rule in the original policy. If no permissions were removed
* the size of the returned vector will be 0. The caller must not
* destroy this vector.
*/
extern const apol_vector_t *poldiff_avrule_get_removed_perms(const poldiff_avrule_t * avrule);
/**
* Get a vector of line numbers (of type unsigned long) for this av rule
* difference from the original policy. Note that if the form is
* POLDIFF_FORM_ADDED or POLDIFF_FORM_ADD_TYPE then this will return NULL.
* Also, if the original policy is a binary policy or line numbers are not yet
* enabled then this returns NULL.
* @see poldiff_enable_line_numbers() to enable line numbers.
*
* @param avrule The av rule diff from which to get line numbers.
*
* @return A vector of line numbers (type unsigned long) for the rule
* in the original policy, or NULL if no numbers are available. Do
* not destroy or otherwise modify this vector.
*/
extern const apol_vector_t *poldiff_avrule_get_orig_line_numbers(const poldiff_avrule_t * avrule);
/**
* Get a vector of line numbers (of type unsigned long) for this av rule
* difference from the modified policy. Note that if the form is
* POLDIFF_FORM_REMOVED or POLDIFF_FORM_REMOVE_TYPE then this will return
* NULL. Also, if the modified policy is a binary policy or line numbers are
* not yet enabled then this returns NULL.
* @see poldiff_enable_line_numbers() to enable line numbers.
*
* @param avrule The av rule diff from which to get line numbers.
*
* @return A vector of line numbers (type unsigned long) for the rule
* in the modified policy, or NULL if no numbers are available. Do
* not destroy or otherwise modify this vector.
*/
extern const apol_vector_t *poldiff_avrule_get_mod_line_numbers(const poldiff_avrule_t * avrule);
/**
* Given an av rule difference and a permission name, return a vector
* of all line numbers (of type unsigned long) from the original
* policy; these line numbers correspond to rules that contributed to
* the av rule difference and have the given permission. Be aware
* that the vector could be empty if the permission was not found.
* Note that if the form is POLDIFF_FORM_ADDED or
* POLDIFF_FORM_ADD_TYPE then this will return NULL. Also, if the
* original policy is a binary policy or line numbers are not yet
* enabled then this returns NULL.
*
* @see poldiff_enable_line_numbers() to enable line numbers.
*
* @param diff Difference object containing policies to query.
* @param avrule The av rule diff from which to get line numbers.
* @param perm Permission to look up.
*
* @return A vector of sorted line numbers (type unsigned long) for
* the rule in the original policy, or NULL if no numbers are
* available. Note that the vector could be empty if the permission
* was not found. It is the caller's responsibility to call
* apol_vector_destroy() upon the returned value.
*/
extern apol_vector_t *poldiff_avrule_get_orig_line_numbers_for_perm(const poldiff_t * diff, const poldiff_avrule_t * avrule,
const char *perm);
/**
* Given an av rule difference and a permission name, return a vector
* of all line numbers (of type unsigned long) from the modified
* policy; these line numbers correspond to rules that contributed to
* the av rule difference and have the given permission. Be aware
* that the vector could be empty if the permission was not found.
* Note that if the form is POLDIFF_FORM_REMOVED or
* POLDIFF_FORM_REMOVE_TYPE then this will return NULL. Also, if the
* modified policy is a binary policy or line numbers are not yet
* enabled then this returns NULL.
*
* @see poldiff_enable_line_numbers() to enable line numbers.
*
* @param diff Difference object containing policies to query.
* @param avrule The av rule diff from which to get line numbers.
* @param perm Permission to look up.
*
* @return A vector of sorted line numbers (type unsigned long) for
* the rule in the modified policy, or NULL if no numbers are
* available. Note that the vector could be empty if the permission
* was not found. It is the caller's responsibility to call
* apol_vector_destroy() upon the returned value.
*/
extern apol_vector_t *poldiff_avrule_get_mod_line_numbers_for_perm(const poldiff_t * diff, const poldiff_avrule_t * avrule,
const char *perm);
#ifdef __cplusplus
}
#endif
#endif /* POLDIFF_AVRULE_DIFF_H */
|