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 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
|
// Author: Thomas Liu <tliu@redhat.com>
/**
* @file
* Command line tool to search TE rules.
*
* @author Frank Mayer mayerf@tresys.com
* @author Jeremy A. Mowery jmowery@tresys.com
* @author Paul Rosenfeld prosenfeld@tresys.com
* @author Thomas Liu <tliu@redhat.com>
*
* Copyright (C) 2003-2008 Tresys Technology, LLC
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* This is a modified version of sesearch to be used as part of a library for
* Python bindings.
*/
#include "Python.h"
/* libapol */
#include <apol/policy.h>
#include <apol/policy-query.h>
#include <apol/render.h>
#include <apol/util.h>
#include <apol/vector.h>
/* libqpol*/
#include <qpol/policy.h>
#include <qpol/policy_extend.h>
#include <qpol/syn_rule_query.h>
#include <qpol/util.h>
/* other */
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include <getopt.h>
#include <string.h>
#include <stdbool.h>
#define COPYRIGHT_INFO "Copyright (C) 2003-2007 Tresys Technology, LLC"
static char *policy_file = NULL;
enum opt_values
{
RULE_NEVERALLOW = 256, RULE_AUDIT, RULE_AUDITALLOW, RULE_DONTAUDIT,
RULE_ROLE_ALLOW, RULE_ROLE_TRANS, RULE_RANGE_TRANS, RULE_ALL,
EXPR_ROLE_SOURCE, EXPR_ROLE_TARGET
};
;
typedef struct options
{
char *src_name;
char *tgt_name;
char *src_role_name;
char *tgt_role_name;
char *class_name;
char *permlist;
char *bool_name;
apol_vector_t *class_vector;
bool all;
bool lineno;
bool semantic;
bool indirect;
bool allow;
bool nallow;
bool auditallow;
bool dontaudit;
bool type;
bool rtrans;
bool role_allow;
bool role_trans;
bool useregex;
bool show_cond;
apol_vector_t *perm_vector;
} options_t;
static int perform_av_query(const apol_policy_t * policy, const options_t * opt, apol_vector_t ** v)
{
apol_avrule_query_t *avq = NULL;
unsigned int rules = 0;
int error = 0;
char *tmp = NULL, *tok = NULL, *s = NULL;
if (!policy || !opt || !v) {
PyErr_SetString(PyExc_RuntimeError,strerror(EINVAL));
errno = EINVAL;
return -1;
}
if (!opt->all && !opt->allow && !opt->nallow && !opt->auditallow && !opt->dontaudit) {
*v = NULL;
return 0; /* no search to do */
}
avq = apol_avrule_query_create();
if (!avq) {
PyErr_SetString(PyExc_RuntimeError,strerror(ENOMEM));
errno = ENOMEM;
return -1;
}
if (opt->allow || opt->all)
rules |= QPOL_RULE_ALLOW;
if ((opt->nallow || opt->all) && qpol_policy_has_capability(apol_policy_get_qpol(policy), QPOL_CAP_NEVERALLOW))
rules |= QPOL_RULE_NEVERALLOW;
if (opt->auditallow || opt->all)
rules |= QPOL_RULE_AUDITALLOW;
if (opt->dontaudit || opt->all)
rules |= QPOL_RULE_DONTAUDIT;
apol_avrule_query_set_rules(policy, avq, rules);
apol_avrule_query_set_regex(policy, avq, opt->useregex);
if (opt->src_name)
apol_avrule_query_set_source(policy, avq, opt->src_name, opt->indirect);
if (opt->tgt_name)
apol_avrule_query_set_target(policy, avq, opt->tgt_name, opt->indirect);
if (opt->bool_name)
apol_avrule_query_set_bool(policy, avq, opt->bool_name);
if (opt->class_name) {
if (opt->class_vector == NULL) {
if (apol_avrule_query_append_class(policy, avq, opt->class_name)) {
error = errno;
goto err;
}
} else {
size_t i;
for (i = 0; i < apol_vector_get_size(opt->class_vector); ++i) {
char *class_name;
class_name = apol_vector_get_element(opt->class_vector, i);
if (!class_name)
continue;
if (apol_avrule_query_append_class(policy, avq, class_name)) {
error = errno;
goto err;
}
}
}
}
if (opt->permlist) {
tmp = strdup(opt->permlist);
for (tok = strtok(tmp, ","); tok; tok = strtok(NULL, ",")) {
if (apol_avrule_query_append_perm(policy, avq, tok)) {
error = errno;
goto err;
}
if ((s = strdup(tok)) == NULL || apol_vector_append(opt->perm_vector, s) < 0) {
error = errno;
goto err;
}
s = NULL;
}
free(tmp);
}
if (!(opt->semantic) && qpol_policy_has_capability(apol_policy_get_qpol(policy), QPOL_CAP_SYN_RULES)) {
if (apol_syn_avrule_get_by_query(policy, avq, v)) {
error = errno;
goto err;
}
} else {
if (apol_avrule_get_by_query(policy, avq, v)) {
error = errno;
goto err;
}
}
apol_avrule_query_destroy(&avq);
return 0;
err:
apol_vector_destroy(v);
apol_avrule_query_destroy(&avq);
free(tmp);
free(s);
PyErr_SetString(PyExc_RuntimeError,strerror(error));
errno = error;
return -1;
}
static PyObject* get_av_results(const apol_policy_t * policy, const options_t * opt, const apol_vector_t * v)
{
int retval = -1;
PyObject *list = PyList_New(0);
qpol_policy_t *q = apol_policy_get_qpol(policy);
size_t i, num_rules = 0;
const qpol_avrule_t *rule = NULL;
char *tmp = NULL, *rule_str = NULL, *expr = NULL;
char enable_char = ' ', branch_char = ' ';
qpol_iterator_t *iter = NULL;
uint32_t enabled = 0;
if (!policy || !v)
return NULL;
if (!(num_rules = apol_vector_get_size(v)))
return NULL;
for (i = 0; i < num_rules; i++) {
enable_char = branch_char = ' ';
if (!(rule = apol_vector_get_element(v, i)))
goto cleanup;
if (qpol_avrule_get_is_enabled(q, rule, &enabled))
goto cleanup;
if (!enabled)
continue;
const qpol_type_t *type;
const char *tmp_name;
uint32_t rule_type = 0;
const qpol_class_t *obj_class = NULL;
PyObject *dict = PyDict_New();
qpol_avrule_get_rule_type(q, rule, &rule_type);
tmp_name = apol_rule_type_to_str(rule_type);
PyObject *obj = PyString_FromString(tmp_name);
PyDict_SetItemString(dict, "type", obj);
Py_DECREF(obj);
// source
qpol_avrule_get_source_type(q, rule, &type);
qpol_type_get_name(q, type, &tmp_name);
obj = PyString_FromString(tmp_name);
PyDict_SetItemString(dict, "scontext", obj);
Py_DECREF(obj);
qpol_avrule_get_target_type(q, rule, &type);
qpol_type_get_name(q, type, &tmp_name);
obj = PyString_FromString(tmp_name);
PyDict_SetItemString(dict, "tcontext", obj);
Py_DECREF(obj);
qpol_avrule_get_object_class(q, rule, &obj_class);
qpol_type_get_name(q, type, &tmp_name);
obj = PyString_FromString(tmp_name);
PyDict_SetItemString(dict, "class", obj);
Py_DECREF(obj);
qpol_avrule_get_perm_iter(q, rule, &iter);
PyObject *permlist = PyList_New(0);
for (; !qpol_iterator_end(iter); qpol_iterator_next(iter)) {
const char *perm_name = NULL;
qpol_iterator_get_item(iter, (void **)&perm_name);
obj = PyString_FromString(perm_name);
PyList_Append(permlist, obj);
Py_DECREF(obj);
}
PyDict_SetItemString(dict, "permlist", permlist);
Py_DECREF(permlist);
PyList_Append(list, dict);
Py_DECREF(dict);
free(rule_str);
rule_str = NULL;
free(expr);
expr = NULL;
}
retval = 0;
cleanup:
free(tmp);
free(rule_str);
free(expr);
if (retval) {
Py_DECREF(list);
return NULL;
}
return list;
}
PyObject* sesearch(bool allow,
bool neverallow,
bool auditallow,
bool dontaudit,
const char *src_name,
const char *tgt_name,
const char *class_name,
const char *permlist
)
{
options_t cmd_opts;
int rt = -1;
PyObject *output = NULL;
apol_policy_t *policy = NULL;
apol_vector_t *v = NULL;
apol_policy_path_t *pol_path = NULL;
apol_vector_t *mod_paths = NULL;
apol_policy_path_type_e path_type = APOL_POLICY_PATH_TYPE_MONOLITHIC;
memset(&cmd_opts, 0, sizeof(cmd_opts));
cmd_opts.indirect = true;
cmd_opts.allow = allow;
cmd_opts.nallow = neverallow;
cmd_opts.auditallow = auditallow;
cmd_opts.dontaudit = dontaudit;
if (src_name)
cmd_opts.src_name = strdup(src_name);
if (tgt_name)
cmd_opts.tgt_name = strdup(tgt_name);
if (class_name)
cmd_opts.class_name = strdup(class_name);
if (permlist){
cmd_opts.perm_vector = apol_vector_create(free);
cmd_opts.permlist = strdup(permlist);
}
int pol_opt = 0;
if (!(cmd_opts.nallow || cmd_opts.all))
pol_opt |= QPOL_POLICY_OPTION_NO_NEVERALLOWS;
rt = qpol_default_policy_find(&policy_file);
if (rt) {
PyErr_SetString(PyExc_RuntimeError,"No default policy found.");
return NULL;
}
pol_opt |= QPOL_POLICY_OPTION_MATCH_SYSTEM;
if (apol_file_is_policy_path_list(policy_file) > 0) {
pol_path = apol_policy_path_create_from_file(policy_file);
if (!pol_path) {
free(policy_file);
PyErr_SetString(PyExc_RuntimeError,"invalid policy list");
return NULL;
}
}
if (!pol_path)
pol_path = apol_policy_path_create(path_type, policy_file, mod_paths);
if (!pol_path) {
free(policy_file);
PyErr_SetString(PyExc_RuntimeError,strerror(ENOMEM));
return NULL;
}
free(policy_file);
apol_vector_destroy(&mod_paths);
policy = apol_policy_create_from_policy_path(pol_path, pol_opt, NULL, NULL);
if (!policy) {
apol_policy_path_destroy(&pol_path);
PyErr_SetString(PyExc_RuntimeError,strerror(errno));
return NULL;
}
/* handle regex for class name */
if (cmd_opts.useregex && cmd_opts.class_name != NULL) {
cmd_opts.class_vector = apol_vector_create(NULL);
apol_vector_t *qpol_matching_classes = NULL;
apol_class_query_t *regex_match_query = apol_class_query_create();
apol_class_query_set_regex(policy, regex_match_query, 1);
apol_class_query_set_class(policy, regex_match_query, cmd_opts.class_name);
if (apol_class_get_by_query(policy, regex_match_query, &qpol_matching_classes)) {
apol_class_query_destroy(®ex_match_query);
PyErr_SetString(PyExc_RuntimeError,"Query failed");
goto cleanup;
}
const qpol_class_t *class = NULL;
size_t i;
for (i = 0; i < apol_vector_get_size(qpol_matching_classes); ++i) {
const char *class_name;
class = apol_vector_get_element(qpol_matching_classes, i);
if (!class)
break;
qpol_class_get_name(apol_policy_get_qpol(policy), class, &class_name);
apol_vector_append(cmd_opts.class_vector, (void *)class_name);
}
if (!apol_vector_get_size(qpol_matching_classes)) {
apol_vector_destroy(&qpol_matching_classes);
apol_class_query_destroy(®ex_match_query);
PyErr_SetString(PyExc_RuntimeError,"No classes match expression");
goto cleanup;
}
apol_vector_destroy(&qpol_matching_classes);
apol_class_query_destroy(®ex_match_query);
}
if (!cmd_opts.semantic && qpol_policy_has_capability(apol_policy_get_qpol(policy), QPOL_CAP_SYN_RULES)) {
if (qpol_policy_build_syn_rule_table(apol_policy_get_qpol(policy))) {
apol_policy_destroy(&policy);
PyErr_SetString(PyExc_RuntimeError,"Query failed");
goto cleanup;
}
}
/* if syntactic rules are not available always do semantic search */
if (!qpol_policy_has_capability(apol_policy_get_qpol(policy), QPOL_CAP_SYN_RULES)) {
cmd_opts.semantic = 1;
}
/* supress line numbers if doing semantic search or not available */
if (cmd_opts.semantic || !qpol_policy_has_capability(apol_policy_get_qpol(policy), QPOL_CAP_LINE_NUMBERS)) {
cmd_opts.lineno = 0;
}
if (perform_av_query(policy, &cmd_opts, &v)) {
goto cleanup;
}
if (v) {
output = get_av_results(policy, &cmd_opts, v);
}
apol_vector_destroy(&v);
cleanup:
apol_policy_destroy(&policy);
apol_policy_path_destroy(&pol_path);
free(cmd_opts.src_name);
free(cmd_opts.tgt_name);
free(cmd_opts.class_name);
free(cmd_opts.permlist);
free(cmd_opts.bool_name);
free(cmd_opts.src_role_name);
free(cmd_opts.tgt_role_name);
apol_vector_destroy(&cmd_opts.perm_vector);
apol_vector_destroy(&cmd_opts.class_vector);
if (output) return output;
return Py_None;
}
static int Dict_ContainsInt(PyObject *dict, const char *key){
PyObject *item = PyDict_GetItemString(dict, key);
if (item)
return PyInt_AsLong(item);
return false;
}
static const char *Dict_ContainsString(PyObject *dict, const char *key){
PyObject *item = PyDict_GetItemString(dict, key);
if (item)
return PyString_AsString(item);
return NULL;
}
PyObject *wrap_sesearch(PyObject *self, PyObject *args){
PyObject *dict;
if (!PyArg_ParseTuple(args, "O", &dict))
return NULL;
int allow = Dict_ContainsInt(dict, "allow");
int neverallow = Dict_ContainsInt(dict, "neverallow");
int auditallow = Dict_ContainsInt(dict, "auditallow");
int dontaudit = Dict_ContainsInt(dict, "dontaudit");
const char *src_name = Dict_ContainsString(dict, "scontext");
const char *tgt_name = Dict_ContainsString(dict, "tcontext");
const char *class_name = Dict_ContainsString(dict, "class");
const char *permlist = Dict_ContainsString(dict, "permlist");
return Py_BuildValue("O",sesearch(allow, neverallow, auditallow, dontaudit, src_name, tgt_name, class_name, permlist));
}
static PyMethodDef methods[] = {
{"sesearch", (PyCFunction) wrap_sesearch, METH_VARARGS},
{NULL, NULL, 0, NULL}
};
void init_sesearch(){
PyObject *m;
m = Py_InitModule("_sesearch", methods);
}
|