Home
last modified time | relevance | path

Searched refs:audit (Results 1 - 25 of 338) sorted by relevance

12345678910>>...14

/kernel/linux/linux-6.6/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DUtil.py54 import audit namespace
56 'x86_64': audit.MACH_86_64,
57 'aarch64': audit.MACH_AARCH64,
58 'alpha' : audit.MACH_ALPHA,
59 'ia64' : audit.MACH_IA64,
60 'ppc' : audit.MACH_PPC,
61 'ppc64' : audit.MACH_PPC64,
62 'ppc64le' : audit.MACH_PPC64LE,
63 's390' : audit.MACH_S390,
64 's390x' : audit
[all...]
/kernel/linux/linux-5.10/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DUtil.py54 import audit namespace
56 'x86_64': audit.MACH_86_64,
57 'alpha' : audit.MACH_ALPHA,
58 'ia64' : audit.MACH_IA64,
59 'ppc' : audit.MACH_PPC,
60 'ppc64' : audit.MACH_PPC64,
61 'ppc64le' : audit.MACH_PPC64LE,
62 's390' : audit.MACH_S390,
63 's390x' : audit.MACH_S390X,
64 'i386' : audit
[all...]
/kernel/linux/linux-5.10/security/integrity/
H A Dintegrity_audit.c12 #include <linux/audit.h>
20 unsigned long audit; in integrity_audit_setup() local
22 if (!kstrtoul(str, 0, &audit)) in integrity_audit_setup()
23 integrity_audit_info = audit ? 1 : 0; in integrity_audit_setup()
/kernel/linux/linux-6.6/security/integrity/
H A Dintegrity_audit.c12 #include <linux/audit.h>
20 unsigned long audit; in integrity_audit_setup() local
22 if (!kstrtoul(str, 0, &audit)) in integrity_audit_setup()
23 integrity_audit_info = audit ? 1 : 0; in integrity_audit_setup()
/kernel/linux/linux-5.10/security/apparmor/
H A Dmount.c17 #include "include/audit.h"
82 * audit_cb - call back for mount specific audit fields
84 * @va: audit struct to audit values of (NOT NULL)
140 u32 mask = perms->audit; in audit_mount()
173 if (data && (perms->audit & AA_AUDIT_DATA)) in audit_mount()
218 .audit = dfa_user_audit(dfa, state), in compute_mnt_perms()
336 goto audit; in match_mnt_path_str()
341 goto audit; in match_mnt_path_str()
350 goto audit; in match_mnt_path_str()
[all...]
H A Dfile.c16 #include "include/audit.h"
38 * file_audit_cb - call back for file specific audit fields
40 * @va: audit struct to audit values of (NOT NULL)
109 u32 mask = perms->audit; in aa_audit_file()
225 perms.audit = map_old_perms(dfa_user_audit(dfa, state)); in aa_compute_fperms()
230 perms.audit = map_old_perms(dfa_other_audit(dfa, state)); in aa_compute_fperms()
303 * aa_path_perm - do permissions check & audit for @path
371 goto audit; in profile_path_link()
377 goto audit; in profile_path_link()
[all...]
H A Dlib.c17 #include "include/audit.h"
259 * @ab: audit buffer (NOT NULL)
260 * @va: audit struct to audit values of (NOT NULL)
294 perms->audit = ALL_PERMS_MASK; in aa_apply_modes_to_perms()
300 perms->audit = 0; in aa_apply_modes_to_perms()
330 .audit = dfa_user_audit(dfa, state), in aa_compute_perms()
338 perms->audit |= map_other(dfa_other_audit(dfa, state)); in aa_compute_perms()
352 accum->audit |= addend->audit in aa_perms_accum_raw()
[all...]
H A Ddomain.c20 #include "include/audit.h"
293 perms->audit = perms->quiet = perms->kill = 0; in change_profile_perms()
648 goto audit; in profile_transition()
670 goto audit; in profile_transition()
674 /* remove MAY_EXEC to audit as failure */ in profile_transition()
696 goto audit; in profile_transition()
709 audit: in profile_transition()
754 goto audit; in profile_onexec()
761 goto audit; in profile_onexec()
772 goto audit; in profile_onexec()
[all...]
/kernel/linux/linux-6.6/security/apparmor/
H A Dmount.c17 #include "include/audit.h"
82 * audit_cb - call back for mount specific audit fields
84 * @va: audit struct to audit values of (NOT NULL)
143 u32 mask = perms->audit; in audit_mount()
177 if (data && (perms->audit & AA_AUDIT_DATA)) in audit_mount()
326 goto audit; in match_mnt_path_str()
331 goto audit; in match_mnt_path_str()
340 goto audit; in match_mnt_path_str()
344 audit in match_mnt_path_str()
[all...]
H A Ddomain.c21 #include "include/audit.h"
289 perms->audit = perms->quiet = perms->kill = 0; in change_profile_perms()
658 goto audit; in profile_transition()
680 goto audit; in profile_transition()
684 /* remove MAY_EXEC to audit as failure */ in profile_transition()
706 goto audit; in profile_transition()
719 audit: in profile_transition()
768 goto audit; in profile_onexec()
775 goto audit; in profile_onexec()
786 goto audit; in profile_onexec()
[all...]
H A Dfile.c18 #include "include/audit.h"
40 * file_audit_cb - call back for file specific audit fields
42 * @va: audit struct to audit values of (NOT NULL)
114 u32 mask = perms->audit; in aa_audit_file()
271 * aa_path_perm - do permissions check & audit for @path
345 goto audit; in profile_path_link()
352 goto audit; in profile_path_link()
361 goto audit; in profile_path_link()
367 /* force audit/quie in profile_path_link()
[all...]
H A Dpolicy_compat.c118 perms.audit = map_old_perms(dfa_user_audit(dfa, state)); in compute_fperms_user()
133 perms.audit = map_old_perms(dfa_other_audit(dfa, state)); in compute_fperms_other()
216 perms.audit = dfa_user_audit(dfa, state); in compute_perms_entry()
240 perms.audit |= map_other(dfa_other_audit(dfa, state)); in compute_perms_entry()
/kernel/linux/linux-6.6/security/apparmor/include/
H A Dperms.h77 u32 audit; /* set only when allow is set */ member
109 accum->audit |= addend->audit & addend->allow; in aa_perms_accum_raw()
136 accum->audit |= addend->audit & accum->allow; in aa_perms_accum()
/kernel/linux/linux-5.10/arch/x86/kernel/
H A Daudit_64.c4 #include <linux/audit.h>
6 #include <asm/audit.h>
/kernel/linux/linux-6.6/arch/x86/kernel/
H A Daudit_64.c4 #include <linux/audit.h>
6 #include <asm/audit.h>
/kernel/linux/linux-5.10/arch/sparc/kernel/
H A DMakefile114 obj-$(CONFIG_AUDIT) += audit.o
115 audit--$(CONFIG_AUDIT) := compat_audit.o
116 obj-$(CONFIG_COMPAT) += $(audit--y)
/kernel/linux/linux-6.6/arch/sparc/kernel/
H A DMakefile115 obj-$(CONFIG_AUDIT) += audit.o
116 audit--$(CONFIG_AUDIT) := compat_audit.o
117 obj-$(CONFIG_COMPAT) += $(audit--y)
/kernel/linux/linux-5.10/arch/alpha/include/asm/
H A Dsyscall.h5 #include <uapi/linux/audit.h>
/kernel/linux/linux-5.10/arch/m68k/include/asm/
H A Dsyscall.h5 #include <uapi/linux/audit.h>
/kernel/linux/linux-5.10/arch/x86/um/asm/
H A Dsyscall.h6 #include <uapi/linux/audit.h>
/kernel/linux/linux-6.6/arch/alpha/include/asm/
H A Dsyscall.h5 #include <uapi/linux/audit.h>
/kernel/linux/linux-6.6/arch/x86/um/asm/
H A Dsyscall.h6 #include <uapi/linux/audit.h>
/kernel/linux/linux-6.6/security/selinux/include/
H A Daudit.h15 #include <linux/audit.h>
19 * selinux_audit_rule_init - alloc/init an selinux audit rule structure.
32 * selinux_audit_rule_free - free an selinux audit rule structure.
33 * @rule: pointer to the audit rule to be freed
45 * @rule: pointer to the audit rule to check against
/kernel/linux/linux-5.10/arch/x86/ia32/
H A Daudit.c3 #include <asm/audit.h>
/kernel/linux/linux-5.10/security/apparmor/include/
H A Dcapability.h22 * @audit: caps that are to be audited
30 kernel_cap_t audit; member

Completed in 11 milliseconds

12345678910>>...14