audit.c (513b046c96cc2fbce730a3474f6f7ff0c4fdd05c) | audit.c (7dfb71030f7636a0d65200158113c37764552f93) |
---|---|
1/* audit.c -- Auditing support 2 * Gateway between the kernel (e.g., selinux) and the user-space audit daemon. 3 * System-call specific features have moved to auditsc.c 4 * 5 * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina. 6 * All Rights Reserved. 7 * 8 * This program is free software; you can redistribute it and/or modify --- 43 unchanged lines hidden (view full) --- 52#include <linux/audit.h> 53 54#include <net/sock.h> 55#include <net/netlink.h> 56#include <linux/skbuff.h> 57#include <linux/netlink.h> 58#include <linux/selinux.h> 59#include <linux/inotify.h> | 1/* audit.c -- Auditing support 2 * Gateway between the kernel (e.g., selinux) and the user-space audit daemon. 3 * System-call specific features have moved to auditsc.c 4 * 5 * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina. 6 * All Rights Reserved. 7 * 8 * This program is free software; you can redistribute it and/or modify --- 43 unchanged lines hidden (view full) --- 52#include <linux/audit.h> 53 54#include <net/sock.h> 55#include <net/netlink.h> 56#include <linux/skbuff.h> 57#include <linux/netlink.h> 58#include <linux/selinux.h> 59#include <linux/inotify.h> |
60#include <linux/freezer.h> |
|
60 61#include "audit.h" 62 63/* No auditing will take place until audit_initialized != 0. 64 * (Initialization happens after skb_init is called.) */ 65static int audit_initialized; 66 67/* No syscall auditing will take place unless audit_enabled != 0. */ --- 1147 unchanged lines hidden --- | 61 62#include "audit.h" 63 64/* No auditing will take place until audit_initialized != 0. 65 * (Initialization happens after skb_init is called.) */ 66static int audit_initialized; 67 68/* No syscall auditing will take place unless audit_enabled != 0. */ --- 1147 unchanged lines hidden --- |