fault_inject.c 4.7 KB
Newer Older
B
Bryan Schumaker 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * Copyright (c) 2011 Bryan Schumaker <bjschuma@netapp.com>
 *
 * Uses debugfs to create fault injection points for client testing
 */

#include <linux/types.h>
#include <linux/fs.h>
#include <linux/debugfs.h>
#include <linux/module.h>
11
#include <linux/nsproxy.h>
12
#include <linux/sunrpc/addr.h>
13
#include <asm/uaccess.h>
B
Bryan Schumaker 已提交
14 15

#include "state.h"
16
#include "netns.h"
B
Bryan Schumaker 已提交
17 18 19

struct nfsd_fault_inject_op {
	char *file;
20 21 22 23
	u64 (*get)(struct nfsd_fault_inject_op *);
	u64 (*set_val)(struct nfsd_fault_inject_op *, u64);
	u64 (*set_clnt)(struct nfsd_fault_inject_op *,
			struct sockaddr_storage *, size_t);
24
	u64 (*forget)(struct nfs4_client *, u64);
25
	u64 (*print)(struct nfs4_client *, u64);
B
Bryan Schumaker 已提交
26 27 28 29
};

static struct dentry *debug_dir;

30
static u64 nfsd_inject_set(struct nfsd_fault_inject_op *op, u64 val)
B
Bryan Schumaker 已提交
31
{
32
	u64 count;
B
Bryan Schumaker 已提交
33

34
	nfs4_lock_state();
35
	count = nfsd_for_n_state(val, op->forget);
36
	nfs4_unlock_state();
37
	return count;
B
Bryan Schumaker 已提交
38 39
}

40
static u64 nfsd_inject_set_client(struct nfsd_fault_inject_op *op,
41 42 43 44
				   struct sockaddr_storage *addr,
				   size_t addr_size)
{
	struct nfs4_client *clp;
45
	u64 count = 0;
46 47 48

	nfs4_lock_state();
	clp = nfsd_find_client(addr, addr_size);
49
	if (clp)
50 51
		count = op->forget(clp, 0);
	nfs4_unlock_state();
52
	return count;
53 54
}

55
static u64 nfsd_inject_get(struct nfsd_fault_inject_op *op)
B
Bryan Schumaker 已提交
56
{
57 58
	u64 count;

59
	nfs4_lock_state();
60
	count = nfsd_for_n_state(0, op->print);
61
	nfs4_unlock_state();
62 63

	return count;
B
Bryan Schumaker 已提交
64 65
}

66 67 68 69 70
static ssize_t fault_inject_read(struct file *file, char __user *buf,
				 size_t len, loff_t *ppos)
{
	static u64 val;
	char read_buf[25];
71
	size_t size;
72
	loff_t pos = *ppos;
73
	struct nfsd_fault_inject_op *op = file_inode(file)->i_private;
74 75

	if (!pos)
76
		val = op->get(op);
77 78
	size = scnprintf(read_buf, sizeof(read_buf), "%llu\n", val);

79
	return simple_read_from_buffer(buf, len, ppos, read_buf, size);
80 81 82 83 84
}

static ssize_t fault_inject_write(struct file *file, const char __user *buf,
				  size_t len, loff_t *ppos)
{
85
	char write_buf[INET6_ADDRSTRLEN];
86
	size_t size = min(sizeof(write_buf) - 1, len);
87 88
	struct net *net = current->nsproxy->net_ns;
	struct sockaddr_storage sa;
89
	struct nfsd_fault_inject_op *op = file_inode(file)->i_private;
90
	u64 val;
91
	char *nl;
92 93 94

	if (copy_from_user(write_buf, buf, size))
		return -EFAULT;
95 96
	write_buf[size] = '\0';

97 98 99 100 101 102 103
	/* Deal with any embedded newlines in the string */
	nl = strchr(write_buf, '\n');
	if (nl) {
		size = nl - write_buf;
		*nl = '\0';
	}

104
	size = rpc_pton(net, write_buf, size, (struct sockaddr *)&sa, sizeof(sa));
105 106 107 108 109 110
	if (size > 0) {
		val = op->set_clnt(op, &sa, size);
		if (val)
			pr_info("NFSD [%s]: Client %s had %llu state object(s)\n",
				op->file, write_buf, val);
	} else {
111
		val = simple_strtoll(write_buf, NULL, 0);
112 113 114 115 116 117 118
		if (val == 0)
			pr_info("NFSD Fault Injection: %s (all)", op->file);
		else
			pr_info("NFSD Fault Injection: %s (n = %llu)",
				op->file, val);
		val = op->set_val(op, val);
		pr_info("NFSD: %s: found %llu", op->file, val);
119
	}
120 121 122 123 124 125 126 127
	return len; /* on success, claim we got the whole input */
}

static const struct file_operations fops_nfsd = {
	.owner   = THIS_MODULE,
	.read    = fault_inject_read,
	.write   = fault_inject_write,
};
B
Bryan Schumaker 已提交
128 129 130 131 132 133

void nfsd_fault_inject_cleanup(void)
{
	debugfs_remove_recursive(debug_dir);
}

134 135 136
static struct nfsd_fault_inject_op inject_ops[] = {
	{
		.file     = "forget_clients",
137
		.get	  = nfsd_inject_print_clients,
138
		.set_val  = nfsd_inject_forget_clients,
139
		.set_clnt = nfsd_inject_forget_client,
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
	},
	{
		.file     = "forget_locks",
		.get	  = nfsd_inject_get,
		.set_val  = nfsd_inject_set,
		.set_clnt = nfsd_inject_set_client,
		.forget   = nfsd_forget_client_locks,
		.print    = nfsd_print_client_locks,
	},
	{
		.file     = "forget_openowners",
		.get	  = nfsd_inject_get,
		.set_val  = nfsd_inject_set,
		.set_clnt = nfsd_inject_set_client,
		.forget   = nfsd_forget_client_openowners,
		.print    = nfsd_print_client_openowners,
	},
	{
		.file     = "forget_delegations",
		.get	  = nfsd_inject_get,
		.set_val  = nfsd_inject_set,
		.set_clnt = nfsd_inject_set_client,
		.forget   = nfsd_forget_client_delegations,
		.print    = nfsd_print_client_delegations,
	},
	{
		.file     = "recall_delegations",
		.get	  = nfsd_inject_get,
		.set_val  = nfsd_inject_set,
		.set_clnt = nfsd_inject_set_client,
		.forget   = nfsd_recall_client_delegations,
		.print    = nfsd_print_client_delegations,
	},
};

#define NUM_INJECT_OPS (sizeof(inject_ops)/sizeof(struct nfsd_fault_inject_op))

B
Bryan Schumaker 已提交
177 178 179 180
int nfsd_fault_inject_init(void)
{
	unsigned int i;
	struct nfsd_fault_inject_op *op;
A
Al Viro 已提交
181
	umode_t mode = S_IFREG | S_IRUSR | S_IWUSR;
B
Bryan Schumaker 已提交
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197

	debug_dir = debugfs_create_dir("nfsd", NULL);
	if (!debug_dir)
		goto fail;

	for (i = 0; i < NUM_INJECT_OPS; i++) {
		op = &inject_ops[i];
		if (!debugfs_create_file(op->file, mode, debug_dir, op, &fops_nfsd))
			goto fail;
	}
	return 0;

fail:
	nfsd_fault_inject_cleanup();
	return -ENOMEM;
}