apparmor.h (2d8ad8719591fa803b0d589ed057fa46f49b7155) | apparmor.h (90ab5ee94171b3e28de6bb42ee30b527014e0be7) |
---|---|
1/* 2 * AppArmor security module 3 * 4 * This file contains AppArmor basic global and lib definitions 5 * 6 * Copyright (C) 1998-2008 Novell/SUSE 7 * Copyright 2009-2010 Canonical Ltd. 8 * --- 7 unchanged lines hidden (view full) --- 16#define __APPARMOR_H 17 18#include <linux/fs.h> 19 20#include "match.h" 21 22/* Control parameters settable through module/boot flags */ 23extern enum audit_mode aa_g_audit; | 1/* 2 * AppArmor security module 3 * 4 * This file contains AppArmor basic global and lib definitions 5 * 6 * Copyright (C) 1998-2008 Novell/SUSE 7 * Copyright 2009-2010 Canonical Ltd. 8 * --- 7 unchanged lines hidden (view full) --- 16#define __APPARMOR_H 17 18#include <linux/fs.h> 19 20#include "match.h" 21 22/* Control parameters settable through module/boot flags */ 23extern enum audit_mode aa_g_audit; |
24extern int aa_g_audit_header; 25extern int aa_g_debug; 26extern int aa_g_lock_policy; 27extern int aa_g_logsyscall; 28extern int aa_g_paranoid_load; | 24extern bool aa_g_audit_header; 25extern bool aa_g_debug; 26extern bool aa_g_lock_policy; 27extern bool aa_g_logsyscall; 28extern bool aa_g_paranoid_load; |
29extern unsigned int aa_g_path_max; 30 31/* 32 * DEBUG remains global (no per profile flag) since it is mostly used in sysctl 33 * which is not related to profile accesses. 34 */ 35 36#define AA_DEBUG(fmt, args...) \ --- 56 unchanged lines hidden --- | 29extern unsigned int aa_g_path_max; 30 31/* 32 * DEBUG remains global (no per profile flag) since it is mostly used in sysctl 33 * which is not related to profile accesses. 34 */ 35 36#define AA_DEBUG(fmt, args...) \ --- 56 unchanged lines hidden --- |