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 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
|
/**
* @file
*
* Public interface to a seaudit_filter. A filter is used to modify
* the list of messages returned from a seaudit_model.
*
* @author Jeremy A. Mowery jmowery@tresys.com
* @author Jason Tang jtang@tresys.com
* @author Jeremy Solt jsolt@tresys.com
*
* Copyright (C) 2004-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 SEAUDIT_FILTER_H
#define SEAUDIT_FILTER_H
#ifdef __cplusplus
extern "C"
{
#endif
#include <seaudit/avc_message.h>
#include <apol/vector.h>
#include <stdbool.h>
#include <stdio.h>
#include <time.h>
typedef struct seaudit_filter seaudit_filter_t;
/**
* By default, all criteria of a filter must be met for a message to
* be accepted. This behavior can be changed such that a message is
* accepted if any of the criteria pass.
*/
typedef enum seaudit_filter_match
{
SEAUDIT_FILTER_MATCH_ALL = 0,
SEAUDIT_FILTER_MATCH_ANY
} seaudit_filter_match_e;
/**
* By default, only messages accepted by filters will be shown by the
* model. This behavior can be changed such that filters are used to
* select messages to hide.
*/
typedef enum seaudit_filter_visible
{
SEAUDIT_FILTER_VISIBLE_SHOW = 0,
SEAUDIT_FILTER_VISIBLE_HIDE
} seaudit_filter_visible_e;
/**
* When specifying a date/time for the filter, one must also give how
* to match the date and time.
*/
typedef enum seaudit_filter_date_match
{
SEAUDIT_FILTER_DATE_MATCH_BEFORE = 0,
SEAUDIT_FILTER_DATE_MATCH_AFTER,
SEAUDIT_FILTER_DATE_MATCH_BETWEEN
} seaudit_filter_date_match_e;
/**
* Create a new filter object. The default matching behavior is to
* accept all messages.
*
* @param name Name for the filter; the string will be duplicated. If
* NULL then the filter will be assigned a default name.
*
* @return A newly allocated filter. The caller is responsible for
* calling seaudit_filter_destroy() afterwards.
*/
extern seaudit_filter_t *seaudit_filter_create(const char *name);
/**
* Create a new filter object, initialized with the data from an
* existing filter. This will do a deep copy of the original filter.
* The new filter will not be attached to any model.
*
* @param filter Filter to clone.
*
* @return A cloned filter, or NULL upon error. The caller is
* responsible for calling seaudit_filter_destroy() afterwards.
*/
extern seaudit_filter_t *seaudit_filter_create_from_filter(const seaudit_filter_t * filter);
/**
* Create and return a vector of filters (type seaudit_filter),
* initialized from the contents of a XML configuration file.
*
* @param filename File containing one or more filter data.
*
* @return Vector of filters created from that file, or NULL upon
* error. The caller is responsible for apol_vector_destroy().
*
* @see seaudit_filter_save_to_file()
*/
extern apol_vector_t *seaudit_filter_create_from_file(const char *filename);
/**
* Destroy the referenced seaudit_filter object.
*
* @param filter Filter object to destroy. The pointer will be set to
* NULL afterwards. (If pointer is already NULL then do nothing.)
*/
extern void seaudit_filter_destroy(seaudit_filter_t ** filter);
/**
* Save to disk, in XML format, the given filter's values. This
* includes the filter's criteria.
*
* @param filter Filter to save.
* @param filename Name of the file to write. If the file already
* exists it will be overwritten.
*
* @return 0 on success, < 0 on error.
*
* @see seaudit_filter_create_from_file()
*/
extern int seaudit_filter_save_to_file(const seaudit_filter_t * filter, const char *filename);
/**
* Set a filter to accept a message if all criteria are met (default
* behavior) or if any criterion is met.
*
* @param filter Filter to modify.
* @param match Matching behavior if filter has multiple criteria.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_match(seaudit_filter_t * filter, seaudit_filter_match_e match);
/**
* Get the current match value for a filter.
*
* @param filter Filter containing match value.
*
* @return One of SEAUDIT_FILTER_MATCH_ALL or SEAUDIT_FILTER_MATCH_ANY.
*/
extern seaudit_filter_match_e seaudit_filter_get_match(const seaudit_filter_t * filter);
/**
* Set the name of this filter, overwriting any previous name.
*
* @param filter Filter to modify.
* @param name New name for this filter. This function will duplicate
* the string. If this is NULL then clear the existing name.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_name(seaudit_filter_t * filter, const char *name);
/**
* Get the name of this filter.
*
* @param filter Filter from which to get name.
*
* @return Name of the filter, or NULL if no name has been set. Do
* not free() or otherwise modify this string.
*/
extern const char *seaudit_filter_get_name(const seaudit_filter_t * filter);
/**
* Set the description of this filter, overwriting any previous
* description.
*
* @param filter Filter to modify.
* @param desc New description for this filter. This function will
* duplicate the string. If this is NULL then clear the existing
* description.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_description(seaudit_filter_t * filter, const char *desc);
/**
* Get the description of this filter.
*
* @param filter Filter from which to get description.
*
* @return Description of the filter, or NULL if no description has
* been set. Do not free() or otherwise modify this string.
*/
extern const char *seaudit_filter_get_description(const seaudit_filter_t * filter);
/**
* Set the strictness of this filter. By default, the filter's
* criteria are not "strict", meaning if a message does not have a
* field then the criterion will match it. For example, an AVC denied
* message might not have an 'laddr' field in it. If a filter was
* created with seaudit_filter_set_laddr(), the filter would still
* accept the message.
*
* If instead a filter is set as strict, then messages that do not
* have the field in question will be rejected. For the example
* above, a strict filter would eliminate that AVC message. In
* addition, an empty filter (i.e., one without any criterion set)
* does not match any messages if it is set to strict.
*
* @param filter Filter to modify.
* @param strict If true, enable strict matching.
*
* @return Always 0.
*/
extern int seaudit_filter_set_strict(seaudit_filter_t * filter, bool is_strict);
/**
* Get the strictness of this filter.
*
* @param filter Filter from which to get strictness.
*
* @return True if the filter will reject messages that do not contain
* fields being filtered, false if they are accepted.
*/
extern bool seaudit_filter_get_strict(const seaudit_filter_t * filter);
/**
* Set the list of source users. A message is accepted if its source
* user is within this list. The filter will duplicate the vector and
* the strings within.
*
* @param filter Filter to modify.
* @param v Vector of strings, or NULL to clear current settings.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_source_user(seaudit_filter_t * filter, const apol_vector_t * v);
/**
* Return the current list of source users for a filter. This will be
* a vector of strings. Treat the vector and its contents as const.
*
* @param filter Filter to get values.
*
* @return Vector of strings, or NULL if no value has been set.
*/
extern const apol_vector_t *seaudit_filter_get_source_user(const seaudit_filter_t * filter);
/**
* Set the list of source roles. A message is accepted if its source
* role is within this list. The filter will duplicate the vector and
* the strings within.
*
* @param filter Filter to modify.
* @param v Vector of strings, or NULL to clear current settings.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_source_role(seaudit_filter_t * filter, const apol_vector_t * v);
/**
* Return the current list of source roles for a filter. This will be
* a vector of strings. Treat the vector and its contents as const.
*
* @param filter Filter to get values.
*
* @return Vector of strings, or NULL if no value has been set.
*/
extern const apol_vector_t *seaudit_filter_get_source_role(const seaudit_filter_t * filter);
/**
* Set the list of source types. A message is accepted if its source
* type is within this list. The filter will duplicate the vector and
* the strings within.
*
* @param filter Filter to modify.
* @param v Vector of strings, or NULL to clear current settings.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_source_type(seaudit_filter_t * filter, const apol_vector_t * v);
/**
* Return the current list of source types for a filter. This will be
* a vector of strings. Treat the vector and its contents as const.
*
* @param filter Filter to get values.
*
* @return Vector of strings, or NULL if no value has been set.
*/
extern const apol_vector_t *seaudit_filter_get_source_type(const seaudit_filter_t * filter);
/**
* Set the list of source mls levels. A message is accepted if its source
* mls level is within this list. The filter will duplicate the vector and
* the strings within.
*
* @param filter Filter to modify.
* @param v Vector of strings, or NULL to clear current settings.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_source_mls_lvl(seaudit_filter_t * filter, const apol_vector_t * v);
/**
* Return the current list of source mls levels for a filter. This will be
* a vector of strings. Treat the vector and its contents as const.
*
* @param filter Filter to get values.
*
* @return Vector of strings, or NULL if no value has been set.
*/
extern const apol_vector_t *seaudit_filter_get_source_mls_lvl(const seaudit_filter_t * filter);
/**
* Set the list of source mls clearance. A message is accepted if its source
* mls clearance is within this list. The filter will duplicate the vector and
* the strings within.
*
* @param filter Filter to modify.
* @param v Vector of strings, or NULL to clear current settings.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_source_mls_clr(seaudit_filter_t * filter, const apol_vector_t * v);
/**
* Return the current list of source mls clearance for a filter. This will be
* a vector of strings. Treat the vector and its contents as const.
*
* @param filter Filter to get values.
*
* @return Vector of strings, or NULL if no value has been set.
*/
extern const apol_vector_t *seaudit_filter_get_source_mls_clr(const seaudit_filter_t * filter);
/**
* Set the list of target users. A message is accepted if its target
* user is within this list. The filter will duplicate the vector and
* the strings within.
*
* @param filter Filter to modify.
* @param v Vector of strings, or NULL to clear current settings.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_target_user(seaudit_filter_t * filter, const apol_vector_t * v);
/**
* Return the current list of target users for a filter. This will be
* a vector of strings. Treat the vector and its contents as const.
*
* @param filter Filter to get values.
*
* @return Vector of strings, or NULL if no value has been set.
*/
extern const apol_vector_t *seaudit_filter_get_target_user(const seaudit_filter_t * filter);
/**
* Set the list of target roles. A message is accepted if its target
* role is within this list. The filter will duplicate the vector and
* the strings within.
*
* @param filter Filter to modify.
* @param v Vector of strings, or NULL to clear current settings.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_target_role(seaudit_filter_t * filter, const apol_vector_t * v);
/**
* Return the current list of target roles for a filter. This will be
* a vector of strings. Treat the vector and its contents as const.
*
* @param filter Filter to get values.
*
* @return Vector of strings, or NULL if no value has been set.
*/
extern const apol_vector_t *seaudit_filter_get_target_role(const seaudit_filter_t * filter);
/**
* Set the list of target types. A message is accepted if its target
* type is within this list. The filter will duplicate the vector and
* the strings within.
*
* @param filter Filter to modify.
* @param v Vector of strings, or NULL to clear current settings.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_target_type(seaudit_filter_t * filter, const apol_vector_t * v);
/**
* Return the current list of target types for a filter. This will be
* a vector of strings. Treat the vector and its contents as const.
*
* @param filter Filter to get values.
*
* @return Vector of strings, or NULL if no value has been set.
*/
extern const apol_vector_t *seaudit_filter_get_target_type(const seaudit_filter_t * filter);
/**
* Set the list of target mls levels. A message is accepted if its target
* mls level is within this list. The filter will duplicate the vector and
* the strings within.
*
* @param filter Filter to modify.
* @param v Vector of strings, or NULL to clear current settings.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_target_mls_lvl(seaudit_filter_t * filter, const apol_vector_t * v);
/**
* Return the current list of target mls levels for a filter. This will be
* a vector of strings. Treat the vector and its contents as const.
*
* @param filter Filter to get values.
*
* @return Vector of strings, or NULL if no value has been set.
*/
extern const apol_vector_t *seaudit_filter_get_target_mls_lvl(const seaudit_filter_t * filter);
/**
* Set the list of target mls clearance. A message is accepted if its target
* mls clearance is within this list. The filter will duplicate the vector and
* the strings within.
*
* @param filter Filter to modify.
* @param v Vector of strings, or NULL to clear current settings.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_target_mls_clr(seaudit_filter_t * filter, const apol_vector_t * v);
/**
* Return the current list of target mls clearance for a filter. This will be
* a vector of strings. Treat the vector and its contents as const.
*
* @param filter Filter to get values.
*
* @return Vector of strings, or NULL if no value has been set.
*/
extern const apol_vector_t *seaudit_filter_get_target_mls_clr(const seaudit_filter_t * filter);
/**
* Set the list of target object classes. A message is accepted if
* its target class is within this list. The filter will duplicate
* the vector and the strings within.
*
* @param filter Filter to modify.
* @param v Vector of strings, or NULL to clear current settings.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_target_class(seaudit_filter_t * filter, const apol_vector_t * v);
/**
* Return the current list of target object classes for a filter.
* This will be a vector of strings. Treat the vector and its
* contents as const.
*
* @param filter Filter to get values.
*
* @return Vector of strings, or NULL if no value has been set.
*/
extern const apol_vector_t *seaudit_filter_get_target_class(const seaudit_filter_t * filter);
/**
* Set the permission criterion, as a glob expression. A message is
* accepted if at least one of its AVC permissions match the
* criterion.
*
* @param filter Filter to modify.
* @param perm Glob expression for permission. This function will
* duplicate the string. If this is NULL then clear the existing
* permission.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_permission(seaudit_filter_t * filter, const char *perm);
/**
* Return the current permission for a filter. Treat this string as
* const.
*
* @param filter Filter to get value.
*
* @return Glob expression for permission, or NULL if none set.
*/
extern const char *seaudit_filter_get_permission(const seaudit_filter_t * filter);
/**
* Set the executable criterion, as a glob expression. A message is
* accepted if its executable matches this expression.
*
* @param filter Filter to modify.
* @param exe Glob expression for executable. This function will
* duplicate the string. If this is NULL then clear the existing
* executable.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_executable(seaudit_filter_t * filter, const char *exe);
/**
* Return the current executable for a filter. Treat this string as
* const.
*
* @param filter Filter to get value.
*
* @return Glob expression for executable, or NULL if none set.
*/
extern const char *seaudit_filter_get_executable(const seaudit_filter_t * filter);
/**
* Set the host criterion, as a glob expression. A message is
* accepted if its host matches this expression.
*
* @param filter Filter to modify.
* @param host Glob expression for host. This function will duplicate
* the string. If this is NULL then clear the existing host.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_host(seaudit_filter_t * filter, const char *host);
/**
* Return the current host for a filter. Treat this string as const.
*
* @param filter Filter to get value.
*
* @return Glob expression for host, or NULL if none set.
*/
extern const char *seaudit_filter_get_host(const seaudit_filter_t * filter);
/**
* Set the path criterion, as a glob expression. A message is
* accepted if its path matches this expression.
*
* @param filter Filter to modify.
* @param path Glob expression for path. This function will duplicate
* the string. If this is NULL then clear the existing path.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_path(seaudit_filter_t * filter, const char *path);
/**
* Return the current path for a filter. Treat this string as const.
*
* @param filter Filter to get value.
*
* @return Glob expression for path, or NULL if none set.
*/
extern const char *seaudit_filter_get_path(const seaudit_filter_t * filter);
/**
* Set the inode criterion. A message is accepted if its inode
* exactly matches this inode value.
*
* @param filter Filter to modify.
* @param inode inode value to match. If this is 0 then clear the
* existing inode.
*
* @return Always 0.
*/
extern int seaudit_filter_set_inode(seaudit_filter_t * filter, unsigned long inode);
/**
* Return the current inode for a filter.
*
* @param filter Filter to get value.
*
* @return Current inode value, or 0 if none set.
*/
extern unsigned long seaudit_filter_get_inode(const seaudit_filter_t * filter);
/**
* Set the pid criterion. A message is accepted if its pid value
* exactly matches this pid value.
*
* @param filter Filter to modify.
* @param pid value to match. If this is 0 then clear the existing pid.
*
* @return Always 0.
*/
extern int seaudit_filter_set_pid(seaudit_filter_t * filter, unsigned int pid);
/**
* Return the current pid for a filter.
*
* @param filter Filter to get value.
*
* @return Current pid value, or 0 if none set.
*/
extern unsigned int seaudit_filter_get_pid(const seaudit_filter_t * filter);
/**
* Set the command criterion, as a glob expression. A message is
* accepted if its command matches this expression.
*
* @param filter Filter to modify.
* @param command Glob expression for command. This function will
* duplicate the string. If this is NULL then clear the existing
* command.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_command(seaudit_filter_t * filter, const char *command);
/**
* Return the current command for a filter. Treat this string as const.
*
* @param filter Filter to get value.
*
* @return Glob expression for command, or NULL if none set.
*/
extern const char *seaudit_filter_get_command(const seaudit_filter_t * filter);
/**
* Set the IP address criterion, as a glob expression. A message is
* accepted if any of its IP addresses (ipaddr, saddr, daddr, faddr,
* or laddr) matches this expression.
*
* @param filter Filter to modify.
* @param ipaddr Glob expression for IP address. This function will
* duplicate the string. If this is NULL then clear the existing
* address.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_anyaddr(seaudit_filter_t * filter, const char *ipaddr);
/**
* Return the current IP address for a filter. Treat this string as
* const.
*
* @param filter Filter to get value.
*
* @return Glob expression for address, or NULL if none set.
*/
extern const char *seaudit_filter_get_anyaddr(const seaudit_filter_t * filter);
/**
* Set the port criterion. A message is accepted if any of its ports
* (port, source, dest, fport, or lport) matches this port.
*
* @param filter Filter to modify.
* @param port Port criterion. If this is zero or negative then clear
* the existing port.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_anyport(seaudit_filter_t * filter, const int port);
/**
* Return the current port for a filter.
*
* @param filter Filter to get value.
*
* @return Current port criterion, or 0 if none set.
*/
extern int seaudit_filter_get_anyport(const seaudit_filter_t * filter);
/**
* Set the local address criterion, as a glob expression. A message
* is accepted if its local address (laddr) matches this expression.
* Note that if seaudit_filter_set_anyaddr() is also set, then the
* message must match both ipaddr and laddr for it to be accepted
* (assuming that the match is set to SEAUDIT_FILTER_MATCH_ALL).
*
* @param filter Filter to modify.
* @param laddr Glob expression for local address. This function will
* duplicate the string. If this is NULL then clear the existing
* address.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_laddr(seaudit_filter_t * filter, const char *laddr);
/**
* Return the current local address for a filter. Treat this string
* as const.
*
* @param filter Filter to get value.
*
* @return Glob expression for address, or NULL if none set.
*/
extern const char *seaudit_filter_get_laddr(const seaudit_filter_t * filter);
/**
* Set the local port criterion. A message is accepted if its local
* port (lport) matches this port. Note that if
* seaudit_filter_set_anyport() is also set, then the message must
* match both anyport and lport for it to be accepted (assuming that
* the match is set to SEAUDIT_FILTER_MATCH_ALL).
*
* @param filter Filter to modify.
* @param lport Local port criterion. If this is zero or negative
* then clear the existing port.
*
* @return Always 0.
*/
extern int seaudit_filter_set_lport(seaudit_filter_t * filter, const int lport);
/**
* Return the current local port for a filter.
*
* @param filter Filter to get value.
*
* @return Current port criterion, or 0 if none set.
*/
extern int seaudit_filter_get_lport(const seaudit_filter_t * filter);
/**
* Set the foreign address criterion, as a glob expression. A message
* is accepted if its foreign address (faddr) matches this expression.
* Note that if seaudit_filter_set_anyaddr() is also set, then the
* message must match both ipaddr and faddr for it to be accepted
* (assuming that the match is set to SEAUDIT_FILTER_MATCH_ALL).
*
* @param filter Filter to modify.
* @param faddr Glob expression for foreign address. This function
* will duplicate the string. If this is NULL then clear the existing
* address.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_faddr(seaudit_filter_t * filter, const char *faddr);
/**
* Return the current foreign address for a filter. Treat this string
* as const.
*
* @param filter Filter to get value.
*
* @return Glob expression for address, or NULL if none set.
*/
extern const char *seaudit_filter_get_faddr(const seaudit_filter_t * filter);
/**
* Set the foreign port criterion. A message is accepted if its
* foreign port (fport) matches this port. Note that if
* seaudit_filter_set_anyport() is also set, then the message must
* match both anyport and fport for it to be accepted (assuming that
* the match is set to SEAUDIT_FILTER_MATCH_ALL).
*
* @param filter Filter to modify.
* @param fport Foreign port criterion. If this is zero or negative
* then clear the existing port.
*
* @return Always 0.
*/
extern int seaudit_filter_set_fport(seaudit_filter_t * filter, const int fport);
/**
* Return the current foreign port for a filter.
*
* @param filter Filter to get value.
*
* @return Current port criterion, or 0 if none set.
*/
extern int seaudit_filter_get_fport(const seaudit_filter_t * filter);
/**
* Set the source address criterion, as a glob expression. A message
* is accepted if its source address (saddr) matches this expression.
* Note that if seaudit_filter_set_anyaddr() is also set, then the
* message must match both ipaddr and saddr for it to be accepted
* (assuming that the match is set to SEAUDIT_FILTER_MATCH_ALL).
*
* @param filter Filter to modify.
* @param saddr Glob expression for source address. This function
* will duplicate the string. If this is NULL then clear the existing
* address.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_saddr(seaudit_filter_t * filter, const char *saddr);
/**
* Return the current source address for a filter. Treat this string
* as const.
*
* @param filter Filter to get value.
*
* @return Glob expression for address, or NULL if none set.
*/
extern const char *seaudit_filter_get_saddr(const seaudit_filter_t * filter);
/**
* Set the source port criterion. A message is accepted if its source
* port (sport) matches this port. Note that if
* seaudit_filter_set_anyport() is also set, then the message must
* match both anyport and sport for it to be accepted (assuming that
* the match is set to SEAUDIT_FILTER_MATCH_ALL).
*
* @param filter Filter to modify.
* @param sport Source port criterion. If this is zero or negative
* then clear the existing port.
*
* @return Always 0.
*/
extern int seaudit_filter_set_sport(seaudit_filter_t * filter, const int sport);
/**
* Return the current source port for a filter.
*
* @param filter Filter to get value.
*
* @return Current port criterion, or 0 if none set.
*/
extern int seaudit_filter_get_sport(const seaudit_filter_t * filter);
/**
* Set the destination address criterion, as a glob expression. A
* message is accepted if its destination address (daddr) matches this
* expression. Note that if seaudit_filter_set_anyaddr() is also set,
* then the message must match both ipaddr and daddr for it to be
* accepted (assuming that the match is set to
* SEAUDIT_FILTER_MATCH_ALL).
*
* @param filter Filter to modify.
* @param daddr Glob expression for destination address. This
* function will duplicate the string. If this is NULL then clear the
* existing address.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_daddr(seaudit_filter_t * filter, const char *daddr);
/**
* Return the current destination address for a filter. Treat this
* string as const.
*
* @param filter Filter to get value.
*
* @return Glob expression for address, or NULL if none set.
*/
extern const char *seaudit_filter_get_daddr(const seaudit_filter_t * filter);
/**
* Set the destination port criterion. A message is accepted if its
* destination port (dport) matches this port. Note that if
* seaudit_filter_set_anyport() is also set, then the message must
* match both anyport and dport for it to be accepted (assuming that
* the match is set to SEAUDIT_FILTER_MATCH_ALL).
*
* @param filter Filter to modify.
* @param dport Destination port criterion. If this is zero or
* negative then clear the existing port.
*
* @return Always 0.
*/
extern int seaudit_filter_set_dport(seaudit_filter_t * filter, const int dport);
/**
* Return the current destination port for a filter.
*
* @param filter Filter to get value.
*
* @return Current port criterion, or 0 if none set.
*/
extern int seaudit_filter_get_dport(const seaudit_filter_t * filter);
/**
* Set the port criterion. A message is accepted if its port matches
* this port value exactly. Note that if seaudit_filter_set_anyport()
* is also set, then the message must match both anyport and port for
* it to be accepted (assuming that the match is set to
* SEAUDIT_FILTER_MATCH_ALL).
*
* @param filter Filter to modify.
* @param port Port criterion. If this is zero or negative then clear
* the existing port.
*
* @return Always 0.
*/
extern int seaudit_filter_set_port(seaudit_filter_t * filter, const int port);
/**
* Return the current port for a filter.
*
* @param filter Filter to get value.
*
* @return Current port criterion, or 0 if none set.
*/
extern int seaudit_filter_get_port(const seaudit_filter_t * filter);
/**
* Set the network interface criterion. A message is accepted if its
* interface matches exactly with this string.
*
* @param filter Filter to modify.
* @param netif Network interface criterion. This function will
* duplicate the string. If this is NULL then clear the existing
* criterion.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_netif(seaudit_filter_t * filter, const char *netif);
/**
* Return the current network interface for a filter. Treat this
* string as const.
*
* @param filter Filter to get value.
*
* @return String for netif, or NULL if none set.
*/
extern const char *seaudit_filter_get_netif(const seaudit_filter_t * filter);
/**
* Set the key criterion. A message is accepted if its IPC key
* matches exactly with this value.
*
* @param filter Filter to modify.
* @param key Key criterion. If this is zero or negative then clear
* the existing key.
*
* @return Always 0.
*/
extern int seaudit_filter_set_key(seaudit_filter_t * filter, const int key);
/**
* Return the current key for a filter.
*
* @param filter Filter to get value.
*
* @return Current key criterion, or 0 if none set.
*/
extern int seaudit_filter_get_key(const seaudit_filter_t * filter);
/**
* Set the capability criterion. A message is accepted if its
* capability matches exactly with this value.
*
* @param filter Filter to modify.
* @param cap Capability criterion. If this is zero or negative then
* clear the existing capability.
*
* @return Always 0.
*/
extern int seaudit_filter_set_cap(seaudit_filter_t * filter, const int cap);
/**
* Return the current capability for a filter.
*
* @param filter Filter to get value.
*
* @return Current capability criterion, or 0 if none set.
*/
extern int seaudit_filter_get_cap(const seaudit_filter_t * filter);
/**
* Set the type of AVC criterion. A message is accepted if it matches
* this value exactly. If the message type is not SEAUDIT_AVC_UNKNOWN
* and the message is not an AVC then it will be rejected.
*
* @param filter Filter to modify.
* @param message_type One of SEAUDIT_AVC_DENIED, SEAUDIT_AVC_GRANTED,
* SEAUDIT_AVC_UNKNOWN. If SEAUDIT_AVC_UNKNOWN then unset this
* criterion.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_message_type(seaudit_filter_t * filter, const seaudit_avc_message_type_e message_type);
/**
* Return the current message type for a filter.
*
* @param filter Filter to get value.
*
* @return Type of AVC message to filter, or SEAUDIT_AVC_UNKNOWN if
* none set.
*/
extern seaudit_avc_message_type_e seaudit_filter_get_message_type(const seaudit_filter_t * filter);
/**
* Set the date/time criterion. A message is accepted if its
* date/time falls within the allowable range.
*
* @param filter Filter to modify.
* @param start Starting time. This structure will be duplicated. If
* NULL, then do not filter by dates.
* @param end Ending time. This structure will be duplicated. It
* will be ignored (and hence may be NULL) if date_match is not
* SEAUDIT_FILTER_DATE_MATCH_BETWEEN.
* @param date_match How to match dates, either ones falling before
* start, ones falling after start, or ones between start and end.
*
* @return 0 on success, < 0 on error.
*/
extern int seaudit_filter_set_date(seaudit_filter_t * filter, const struct tm *start, const struct tm *end,
seaudit_filter_date_match_e match);
/**
* Return the current date/time for a filter. Note that if no
* date/time has been set then both reference pointers will be set to
* NULL (match will be set to an invalid value).
*
* @param filter Filter to get value.
* @param start Pointer to location to store starting time. Do not
* free() or otherwise modify this pointer.
* @param end Pointer to location to store ending time. Do not free()
* or otherwise modify this pointer. If match is not
* SEAUDIT_FILTER_DATE_MATCH_BETWEEN then the contents of this
* structure are invalid.
* @param date_match Pointer to location to set date matching option.
*/
extern void seaudit_filter_get_date(const seaudit_filter_t * filter, const struct tm **start, const struct tm **end,
seaudit_filter_date_match_e * match);
#ifdef __cplusplus
}
#endif
#endif
|