2019-05-27 09:55:06 +03:00
// SPDX-License-Identifier: GPL-2.0-or-later
2015-08-05 23:29:36 +03:00
/* audit_fsnotify.c -- tracking inodes
*
* Copyright 2003 - 2009 , 2014 - 2015 Red Hat , Inc .
* Copyright 2005 Hewlett - Packard Development Company , L . P .
* Copyright 2005 IBM Corporation
*/
# include <linux/kernel.h>
# include <linux/audit.h>
# include <linux/kthread.h>
# include <linux/mutex.h>
# include <linux/fs.h>
# include <linux/fsnotify_backend.h>
# include <linux/namei.h>
# include <linux/netlink.h>
# include <linux/sched.h>
# include <linux/slab.h>
# include <linux/security.h>
# include "audit.h"
/*
* this mark lives on the parent directory of the inode in question .
* but dev , ino , and path are about the child
*/
struct audit_fsnotify_mark {
dev_t dev ; /* associated superblock device */
unsigned long ino ; /* associated inode number */
char * path ; /* insertion path */
struct fsnotify_mark mark ; /* fsnotify mark on the inode */
struct audit_krule * rule ;
} ;
/* fsnotify handle. */
static struct fsnotify_group * audit_fsnotify_group ;
/* fsnotify events we care about. */
# define AUDIT_FS_EVENTS (FS_MOVE | FS_CREATE | FS_DELETE | FS_DELETE_SELF |\
2020-07-22 15:58:43 +03:00
FS_MOVE_SELF )
2015-08-05 23:29:36 +03:00
static void audit_fsnotify_mark_free ( struct audit_fsnotify_mark * audit_mark )
{
kfree ( audit_mark - > path ) ;
kfree ( audit_mark ) ;
}
static void audit_fsnotify_free_mark ( struct fsnotify_mark * mark )
{
struct audit_fsnotify_mark * audit_mark ;
audit_mark = container_of ( mark , struct audit_fsnotify_mark , mark ) ;
audit_fsnotify_mark_free ( audit_mark ) ;
}
char * audit_mark_path ( struct audit_fsnotify_mark * mark )
{
return mark - > path ;
}
int audit_mark_compare ( struct audit_fsnotify_mark * mark , unsigned long ino , dev_t dev )
{
if ( mark - > ino = = AUDIT_INO_UNSET )
return 0 ;
return ( mark - > ino = = ino ) & & ( mark - > dev = = dev ) ;
}
static void audit_update_mark ( struct audit_fsnotify_mark * audit_mark ,
2016-11-21 04:19:09 +03:00
const struct inode * inode )
2015-08-05 23:29:36 +03:00
{
audit_mark - > dev = inode ? inode - > i_sb - > s_dev : AUDIT_DEV_UNSET ;
audit_mark - > ino = inode ? inode - > i_ino : AUDIT_INO_UNSET ;
}
struct audit_fsnotify_mark * audit_alloc_mark ( struct audit_krule * krule , char * pathname , int len )
{
struct audit_fsnotify_mark * audit_mark ;
struct path path ;
struct dentry * dentry ;
struct inode * inode ;
int ret ;
if ( pathname [ 0 ] ! = ' / ' | | pathname [ len - 1 ] = = ' / ' )
return ERR_PTR ( - EINVAL ) ;
dentry = kern_path_locked ( pathname , & path ) ;
if ( IS_ERR ( dentry ) )
2021-01-30 05:36:33 +03:00
return ERR_CAST ( dentry ) ; /* returning an error */
2015-08-05 23:29:36 +03:00
inode = path . dentry - > d_inode ;
2016-01-22 23:40:57 +03:00
inode_unlock ( inode ) ;
2015-08-05 23:29:36 +03:00
audit_mark = kzalloc ( sizeof ( * audit_mark ) , GFP_KERNEL ) ;
if ( unlikely ( ! audit_mark ) ) {
audit_mark = ERR_PTR ( - ENOMEM ) ;
goto out ;
}
2016-12-21 20:06:12 +03:00
fsnotify_init_mark ( & audit_mark - > mark , audit_fsnotify_group ) ;
2015-08-05 23:29:36 +03:00
audit_mark - > mark . mask = AUDIT_FS_EVENTS ;
audit_mark - > path = pathname ;
audit_update_mark ( audit_mark , dentry - > d_inode ) ;
audit_mark - > rule = krule ;
2018-04-21 02:10:55 +03:00
ret = fsnotify_add_inode_mark ( & audit_mark - > mark , inode , true ) ;
2015-08-05 23:29:36 +03:00
if ( ret < 0 ) {
2016-12-21 20:32:48 +03:00
fsnotify_put_mark ( & audit_mark - > mark ) ;
2015-08-05 23:29:36 +03:00
audit_mark = ERR_PTR ( ret ) ;
}
out :
dput ( dentry ) ;
path_put ( & path ) ;
return audit_mark ;
}
static void audit_mark_log_rule_change ( struct audit_fsnotify_mark * audit_mark , char * op )
{
struct audit_buffer * ab ;
struct audit_krule * rule = audit_mark - > rule ;
if ( ! audit_enabled )
return ;
2019-01-19 01:42:48 +03:00
ab = audit_log_start ( audit_context ( ) , GFP_NOFS , AUDIT_CONFIG_CHANGE ) ;
2015-08-05 23:29:36 +03:00
if ( unlikely ( ! ab ) )
return ;
2018-11-17 00:30:10 +03:00
audit_log_session_info ( ab ) ;
2018-08-03 00:56:50 +03:00
audit_log_format ( ab , " op=%s path= " , op ) ;
2015-08-05 23:29:36 +03:00
audit_log_untrustedstring ( ab , audit_mark - > path ) ;
audit_log_key ( ab , rule - > filterkey ) ;
audit_log_format ( ab , " list=%d res=1 " , rule - > listnr ) ;
audit_log_end ( ab ) ;
}
void audit_remove_mark ( struct audit_fsnotify_mark * audit_mark )
{
fsnotify_destroy_mark ( & audit_mark - > mark , audit_fsnotify_group ) ;
fsnotify_put_mark ( & audit_mark - > mark ) ;
}
void audit_remove_mark_rule ( struct audit_krule * krule )
{
struct audit_fsnotify_mark * mark = krule - > exe ;
audit_remove_mark ( mark ) ;
}
static void audit_autoremove_mark_rule ( struct audit_fsnotify_mark * audit_mark )
{
struct audit_krule * rule = audit_mark - > rule ;
struct audit_entry * entry = container_of ( rule , struct audit_entry , rule ) ;
audit_mark_log_rule_change ( audit_mark , " autoremove_rule " ) ;
audit_del_rule ( entry ) ;
}
/* Update mark data in audit rules based on fsnotify events. */
2020-07-22 15:58:48 +03:00
static int audit_mark_handle_event ( struct fsnotify_mark * inode_mark , u32 mask ,
struct inode * inode , struct inode * dir ,
2020-12-02 15:07:07 +03:00
const struct qstr * dname , u32 cookie )
2015-08-05 23:29:36 +03:00
{
struct audit_fsnotify_mark * audit_mark ;
audit_mark = container_of ( inode_mark , struct audit_fsnotify_mark , mark ) ;
2020-07-22 15:58:48 +03:00
if ( WARN_ON_ONCE ( inode_mark - > group ! = audit_fsnotify_group ) | |
WARN_ON_ONCE ( ! inode ) )
2015-08-05 23:29:36 +03:00
return 0 ;
if ( mask & ( FS_CREATE | FS_MOVED_TO | FS_DELETE | FS_MOVED_FROM ) ) {
2019-04-26 21:11:05 +03:00
if ( audit_compare_dname_path ( dname , audit_mark - > path , AUDIT_NAME_FULL ) )
2015-08-05 23:29:36 +03:00
return 0 ;
audit_update_mark ( audit_mark , inode ) ;
2020-07-22 15:58:48 +03:00
} else if ( mask & ( FS_DELETE_SELF | FS_UNMOUNT | FS_MOVE_SELF ) ) {
2015-08-05 23:29:36 +03:00
audit_autoremove_mark_rule ( audit_mark ) ;
2020-07-22 15:58:48 +03:00
}
2015-08-05 23:29:36 +03:00
return 0 ;
}
static const struct fsnotify_ops audit_mark_fsnotify_ops = {
2020-07-22 15:58:48 +03:00
. handle_inode_event = audit_mark_handle_event ,
2016-12-21 20:06:12 +03:00
. free_mark = audit_fsnotify_free_mark ,
2015-08-05 23:29:36 +03:00
} ;
static int __init audit_fsnotify_init ( void )
{
audit_fsnotify_group = fsnotify_alloc_group ( & audit_mark_fsnotify_ops ) ;
if ( IS_ERR ( audit_fsnotify_group ) ) {
audit_fsnotify_group = NULL ;
audit_panic ( " cannot create audit fsnotify group " ) ;
}
return 0 ;
}
device_initcall ( audit_fsnotify_init ) ;