mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	Add support for injecting ENOSPC or EIO errors.  This needs to be enabled
by CONFIG_CACHEFILES_ERROR_INJECTION=y.  Once enabled, ENOSPC on things
like write and mkdir can be triggered by:
        echo 1 >/proc/sys/cachefiles/error_injection
and EIO can be triggered on most operations by:
        echo 2 >/proc/sys/cachefiles/error_injection
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
cc: linux-cachefs@redhat.com
Link: https://lore.kernel.org/r/163819624706.215744.6911916249119962943.stgit@warthog.procyon.org.uk/ # v1
Link: https://lore.kernel.org/r/163906925343.143852.5465695512984025812.stgit@warthog.procyon.org.uk/ # v2
Link: https://lore.kernel.org/r/163967134412.1823006.7354285948280296595.stgit@warthog.procyon.org.uk/ # v3
Link: https://lore.kernel.org/r/164021532340.640689.18209494225772443698.stgit@warthog.procyon.org.uk/ # v4
		
	
			
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			992 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			992 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
						|
/* Error injection handling.
 | 
						|
 *
 | 
						|
 * Copyright (C) 2021 Red Hat, Inc. All Rights Reserved.
 | 
						|
 * Written by David Howells (dhowells@redhat.com)
 | 
						|
 */
 | 
						|
 | 
						|
#include <linux/sysctl.h>
 | 
						|
#include "internal.h"
 | 
						|
 | 
						|
unsigned int cachefiles_error_injection_state;
 | 
						|
 | 
						|
static struct ctl_table_header *cachefiles_sysctl;
 | 
						|
static struct ctl_table cachefiles_sysctls[] = {
 | 
						|
	{
 | 
						|
		.procname	= "error_injection",
 | 
						|
		.data		= &cachefiles_error_injection_state,
 | 
						|
		.maxlen		= sizeof(unsigned int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_douintvec,
 | 
						|
	},
 | 
						|
	{}
 | 
						|
};
 | 
						|
 | 
						|
static struct ctl_table cachefiles_sysctls_root[] = {
 | 
						|
	{
 | 
						|
		.procname	= "cachefiles",
 | 
						|
		.mode		= 0555,
 | 
						|
		.child		= cachefiles_sysctls,
 | 
						|
	},
 | 
						|
	{}
 | 
						|
};
 | 
						|
 | 
						|
int __init cachefiles_register_error_injection(void)
 | 
						|
{
 | 
						|
	cachefiles_sysctl = register_sysctl_table(cachefiles_sysctls_root);
 | 
						|
	if (!cachefiles_sysctl)
 | 
						|
		return -ENOMEM;
 | 
						|
	return 0;
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
void cachefiles_unregister_error_injection(void)
 | 
						|
{
 | 
						|
	unregister_sysctl_table(cachefiles_sysctl);
 | 
						|
}
 |