blob: 839a22280606e9472e8b237853fb232577685652 [file] [log] [blame]
David Howellsec268152007-04-26 15:49:28 -07001/* /proc interface for AFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/slab.h>
13#include <linux/module.h>
14#include <linux/proc_fs.h>
15#include <linux/seq_file.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040016#include <linux/sched.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080017#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "internal.h"
19
David Howellsf044c882017-11-02 15:27:45 +000020static inline struct afs_net *afs_proc2net(struct file *f)
21{
22 return &__afs_net;
23}
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
David Howellsf044c882017-11-02 15:27:45 +000025static inline struct afs_net *afs_seq2net(struct seq_file *m)
26{
27 return &__afs_net; // TODO: use seq_file_net(m)
28}
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30static int afs_proc_cells_open(struct inode *inode, struct file *file);
31static void *afs_proc_cells_start(struct seq_file *p, loff_t *pos);
32static void *afs_proc_cells_next(struct seq_file *p, void *v, loff_t *pos);
33static void afs_proc_cells_stop(struct seq_file *p, void *v);
34static int afs_proc_cells_show(struct seq_file *m, void *v);
35static ssize_t afs_proc_cells_write(struct file *file, const char __user *buf,
36 size_t size, loff_t *_pos);
37
James Morris88e9d342009-09-22 16:43:43 -070038static const struct seq_operations afs_proc_cells_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 .start = afs_proc_cells_start,
40 .next = afs_proc_cells_next,
41 .stop = afs_proc_cells_stop,
42 .show = afs_proc_cells_show,
43};
44
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080045static const struct file_operations afs_proc_cells_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 .open = afs_proc_cells_open,
47 .read = seq_read,
48 .write = afs_proc_cells_write,
49 .llseek = seq_lseek,
50 .release = seq_release,
51};
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static ssize_t afs_proc_rootcell_read(struct file *file, char __user *buf,
54 size_t size, loff_t *_pos);
55static ssize_t afs_proc_rootcell_write(struct file *file,
56 const char __user *buf,
57 size_t size, loff_t *_pos);
58
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080059static const struct file_operations afs_proc_rootcell_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 .read = afs_proc_rootcell_read,
61 .write = afs_proc_rootcell_write,
62 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
65static int afs_proc_cell_volumes_open(struct inode *inode, struct file *file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static void *afs_proc_cell_volumes_start(struct seq_file *p, loff_t *pos);
67static void *afs_proc_cell_volumes_next(struct seq_file *p, void *v,
68 loff_t *pos);
69static void afs_proc_cell_volumes_stop(struct seq_file *p, void *v);
70static int afs_proc_cell_volumes_show(struct seq_file *m, void *v);
71
James Morris88e9d342009-09-22 16:43:43 -070072static const struct seq_operations afs_proc_cell_volumes_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 .start = afs_proc_cell_volumes_start,
74 .next = afs_proc_cell_volumes_next,
75 .stop = afs_proc_cell_volumes_stop,
76 .show = afs_proc_cell_volumes_show,
77};
78
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080079static const struct file_operations afs_proc_cell_volumes_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 .open = afs_proc_cell_volumes_open,
81 .read = seq_read,
82 .llseek = seq_lseek,
Al Virob42d5702013-11-22 01:53:47 -050083 .release = seq_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
86static int afs_proc_cell_vlservers_open(struct inode *inode,
87 struct file *file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static void *afs_proc_cell_vlservers_start(struct seq_file *p, loff_t *pos);
89static void *afs_proc_cell_vlservers_next(struct seq_file *p, void *v,
90 loff_t *pos);
91static void afs_proc_cell_vlservers_stop(struct seq_file *p, void *v);
92static int afs_proc_cell_vlservers_show(struct seq_file *m, void *v);
93
James Morris88e9d342009-09-22 16:43:43 -070094static const struct seq_operations afs_proc_cell_vlservers_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 .start = afs_proc_cell_vlservers_start,
96 .next = afs_proc_cell_vlservers_next,
97 .stop = afs_proc_cell_vlservers_stop,
98 .show = afs_proc_cell_vlservers_show,
99};
100
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800101static const struct file_operations afs_proc_cell_vlservers_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 .open = afs_proc_cell_vlservers_open,
103 .read = seq_read,
104 .llseek = seq_lseek,
Al Virob42d5702013-11-22 01:53:47 -0500105 .release = seq_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106};
107
David Howellsd2ddc772017-11-02 15:27:50 +0000108static int afs_proc_servers_open(struct inode *inode, struct file *file);
109static void *afs_proc_servers_start(struct seq_file *p, loff_t *pos);
110static void *afs_proc_servers_next(struct seq_file *p, void *v,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 loff_t *pos);
David Howellsd2ddc772017-11-02 15:27:50 +0000112static void afs_proc_servers_stop(struct seq_file *p, void *v);
113static int afs_proc_servers_show(struct seq_file *m, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
David Howellsd2ddc772017-11-02 15:27:50 +0000115static const struct seq_operations afs_proc_servers_ops = {
116 .start = afs_proc_servers_start,
117 .next = afs_proc_servers_next,
118 .stop = afs_proc_servers_stop,
119 .show = afs_proc_servers_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
David Howellsd2ddc772017-11-02 15:27:50 +0000122static const struct file_operations afs_proc_servers_fops = {
123 .open = afs_proc_servers_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 .read = seq_read,
125 .llseek = seq_lseek,
Al Virob42d5702013-11-22 01:53:47 -0500126 .release = seq_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127};
128
David Howells6f8880d2018-04-09 21:12:31 +0100129static int afs_proc_sysname_open(struct inode *inode, struct file *file);
130static int afs_proc_sysname_release(struct inode *inode, struct file *file);
131static void *afs_proc_sysname_start(struct seq_file *p, loff_t *pos);
132static void *afs_proc_sysname_next(struct seq_file *p, void *v,
133 loff_t *pos);
134static void afs_proc_sysname_stop(struct seq_file *p, void *v);
135static int afs_proc_sysname_show(struct seq_file *m, void *v);
136static ssize_t afs_proc_sysname_write(struct file *file,
137 const char __user *buf,
138 size_t size, loff_t *_pos);
139
140static const struct seq_operations afs_proc_sysname_ops = {
141 .start = afs_proc_sysname_start,
142 .next = afs_proc_sysname_next,
143 .stop = afs_proc_sysname_stop,
144 .show = afs_proc_sysname_show,
145};
146
147static const struct file_operations afs_proc_sysname_fops = {
148 .open = afs_proc_sysname_open,
149 .read = seq_read,
150 .llseek = seq_lseek,
151 .release = afs_proc_sysname_release,
152 .write = afs_proc_sysname_write,
153};
154
David Howellsd55b4da2018-04-06 14:17:24 +0100155static const struct file_operations afs_proc_stats_fops;
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/*
158 * initialise the /proc/fs/afs/ directory
159 */
David Howellsf044c882017-11-02 15:27:45 +0000160int afs_proc_init(struct afs_net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 _enter("");
163
David Howellsf044c882017-11-02 15:27:45 +0000164 net->proc_afs = proc_mkdir("fs/afs", NULL);
165 if (!net->proc_afs)
David Howellsec268152007-04-26 15:49:28 -0700166 goto error_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
David Howellsf044c882017-11-02 15:27:45 +0000168 if (!proc_create("cells", 0644, net->proc_afs, &afs_proc_cells_fops) ||
David Howellsd2ddc772017-11-02 15:27:50 +0000169 !proc_create("rootcell", 0644, net->proc_afs, &afs_proc_rootcell_fops) ||
David Howells6f8880d2018-04-09 21:12:31 +0100170 !proc_create("servers", 0644, net->proc_afs, &afs_proc_servers_fops) ||
David Howellsd55b4da2018-04-06 14:17:24 +0100171 !proc_create("stats", 0644, net->proc_afs, &afs_proc_stats_fops) ||
David Howells6f8880d2018-04-09 21:12:31 +0100172 !proc_create("sysname", 0644, net->proc_afs, &afs_proc_sysname_fops))
Al Virob42d5702013-11-22 01:53:47 -0500173 goto error_tree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 _leave(" = 0");
176 return 0;
177
Al Virob42d5702013-11-22 01:53:47 -0500178error_tree:
David Howellsf044c882017-11-02 15:27:45 +0000179 proc_remove(net->proc_afs);
David Howellsec268152007-04-26 15:49:28 -0700180error_dir:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 _leave(" = -ENOMEM");
182 return -ENOMEM;
David Howellsec268152007-04-26 15:49:28 -0700183}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/*
186 * clean up the /proc/fs/afs/ directory
187 */
David Howellsf044c882017-11-02 15:27:45 +0000188void afs_proc_cleanup(struct afs_net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
David Howellsf044c882017-11-02 15:27:45 +0000190 proc_remove(net->proc_afs);
191 net->proc_afs = NULL;
David Howellsec268152007-04-26 15:49:28 -0700192}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/*
195 * open "/proc/fs/afs/cells" which provides a summary of extant cells
196 */
197static int afs_proc_cells_open(struct inode *inode, struct file *file)
198{
199 struct seq_file *m;
200 int ret;
201
202 ret = seq_open(file, &afs_proc_cells_ops);
203 if (ret < 0)
204 return ret;
205
206 m = file->private_data;
Al Virod9dda782013-03-31 18:16:14 -0400207 m->private = PDE_DATA(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return 0;
David Howellsec268152007-04-26 15:49:28 -0700209}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211/*
212 * set up the iterator to start reading from the cells list and return the
213 * first item
214 */
215static void *afs_proc_cells_start(struct seq_file *m, loff_t *_pos)
David Howellsfe342cf2018-04-09 21:12:31 +0100216 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
David Howellsf044c882017-11-02 15:27:45 +0000218 struct afs_net *net = afs_seq2net(m);
219
David Howells989782d2017-11-02 15:27:50 +0000220 rcu_read_lock();
David Howellsf044c882017-11-02 15:27:45 +0000221 return seq_list_start_head(&net->proc_cells, *_pos);
David Howellsec268152007-04-26 15:49:28 -0700222}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224/*
225 * move to next cell in cells list
226 */
David Howellsf044c882017-11-02 15:27:45 +0000227static void *afs_proc_cells_next(struct seq_file *m, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
David Howellsf044c882017-11-02 15:27:45 +0000229 struct afs_net *net = afs_seq2net(m);
230
231 return seq_list_next(v, &net->proc_cells, pos);
David Howellsec268152007-04-26 15:49:28 -0700232}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234/*
235 * clean up after reading from the cells list
236 */
David Howellsf044c882017-11-02 15:27:45 +0000237static void afs_proc_cells_stop(struct seq_file *m, void *v)
David Howellsfe342cf2018-04-09 21:12:31 +0100238 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
David Howells989782d2017-11-02 15:27:50 +0000240 rcu_read_unlock();
David Howellsec268152007-04-26 15:49:28 -0700241}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243/*
244 * display a header line followed by a load of cell lines
245 */
246static int afs_proc_cells_show(struct seq_file *m, void *v)
247{
248 struct afs_cell *cell = list_entry(v, struct afs_cell, proc_link);
David Howellsf044c882017-11-02 15:27:45 +0000249 struct afs_net *net = afs_seq2net(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
David Howellsf044c882017-11-02 15:27:45 +0000251 if (v == &net->proc_cells) {
David Howellsec268152007-04-26 15:49:28 -0700252 /* display header on line 1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 seq_puts(m, "USE NAME\n");
254 return 0;
255 }
256
257 /* display one cell per line on subsequent lines */
David Howells989782d2017-11-02 15:27:50 +0000258 seq_printf(m, "%3u %s\n", atomic_read(&cell->usage), cell->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return 0;
David Howellsec268152007-04-26 15:49:28 -0700260}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262/*
263 * handle writes to /proc/fs/afs/cells
264 * - to add cells: echo "add <cellname> <IP>[:<IP>][:<IP>]"
265 */
266static ssize_t afs_proc_cells_write(struct file *file, const char __user *buf,
267 size_t size, loff_t *_pos)
268{
David Howellsf044c882017-11-02 15:27:45 +0000269 struct afs_net *net = afs_proc2net(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 char *kbuf, *name, *args;
271 int ret;
272
273 /* start by dragging the command into memory */
274 if (size <= 1 || size >= PAGE_SIZE)
275 return -EINVAL;
276
Al Viro16e5c1f2015-12-24 00:06:05 -0500277 kbuf = memdup_user_nul(buf, size);
278 if (IS_ERR(kbuf))
279 return PTR_ERR(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 /* trim to first NL */
282 name = memchr(kbuf, '\n', size);
283 if (name)
284 *name = 0;
285
286 /* split into command, name and argslist */
287 name = strchr(kbuf, ' ');
288 if (!name)
289 goto inval;
290 do {
291 *name++ = 0;
292 } while(*name == ' ');
293 if (!*name)
294 goto inval;
295
296 args = strchr(name, ' ');
297 if (!args)
298 goto inval;
299 do {
300 *args++ = 0;
301 } while(*args == ' ');
302 if (!*args)
303 goto inval;
304
305 /* determine command to perform */
306 _debug("cmd=%s name=%s args=%s", kbuf, name, args);
307
308 if (strcmp(kbuf, "add") == 0) {
309 struct afs_cell *cell;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
David Howells989782d2017-11-02 15:27:50 +0000311 cell = afs_lookup_cell(net, name, strlen(name), args, true);
David Howells08e0e7c2007-04-26 15:55:03 -0700312 if (IS_ERR(cell)) {
313 ret = PTR_ERR(cell);
314 goto done;
315 }
316
David Howells17814ae2018-04-09 21:12:31 +0100317 if (test_and_set_bit(AFS_CELL_FL_NO_GC, &cell->flags))
318 afs_put_cell(net, cell);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 printk("kAFS: Added new cell '%s'\n", name);
David Howellsec268152007-04-26 15:49:28 -0700320 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 goto inval;
322 }
323
324 ret = size;
325
David Howellsec268152007-04-26 15:49:28 -0700326done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 kfree(kbuf);
328 _leave(" = %d", ret);
329 return ret;
330
David Howellsec268152007-04-26 15:49:28 -0700331inval:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 ret = -EINVAL;
333 printk("kAFS: Invalid Command on /proc/fs/afs/cells file\n");
334 goto done;
David Howellsec268152007-04-26 15:49:28 -0700335}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337static ssize_t afs_proc_rootcell_read(struct file *file, char __user *buf,
338 size_t size, loff_t *_pos)
339{
David Howells37ab6362018-04-06 14:17:23 +0100340 struct afs_cell *cell;
341 struct afs_net *net = afs_proc2net(file);
342 unsigned int seq = 0;
343 char name[AFS_MAXCELLNAME + 1];
344 int len;
345
346 if (*_pos > 0)
347 return 0;
348 if (!net->ws_cell)
349 return 0;
350
351 rcu_read_lock();
352 do {
353 read_seqbegin_or_lock(&net->cells_lock, &seq);
354 len = 0;
355 cell = rcu_dereference_raw(net->ws_cell);
356 if (cell) {
357 len = cell->name_len;
358 memcpy(name, cell->name, len);
359 }
360 } while (need_seqretry(&net->cells_lock, seq));
361 done_seqretry(&net->cells_lock, seq);
362 rcu_read_unlock();
363
364 if (!len)
365 return 0;
366
367 name[len++] = '\n';
368 if (len > size)
369 len = size;
370 if (copy_to_user(buf, name, len) != 0)
371 return -EFAULT;
372 *_pos = 1;
373 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/*
377 * handle writes to /proc/fs/afs/rootcell
378 * - to initialize rootcell: echo "cell.name:192.168.231.14"
379 */
380static ssize_t afs_proc_rootcell_write(struct file *file,
381 const char __user *buf,
382 size_t size, loff_t *_pos)
383{
David Howellsf044c882017-11-02 15:27:45 +0000384 struct afs_net *net = afs_proc2net(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 char *kbuf, *s;
386 int ret;
387
388 /* start by dragging the command into memory */
389 if (size <= 1 || size >= PAGE_SIZE)
390 return -EINVAL;
391
Al Viro16e5c1f2015-12-24 00:06:05 -0500392 kbuf = memdup_user_nul(buf, size);
393 if (IS_ERR(kbuf))
394 return PTR_ERR(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
David Howells6f8880d2018-04-09 21:12:31 +0100396 ret = -EINVAL;
397 if (kbuf[0] == '.')
398 goto out;
399 if (memchr(kbuf, '/', size))
400 goto out;
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 /* trim to first NL */
403 s = memchr(kbuf, '\n', size);
404 if (s)
405 *s = 0;
406
407 /* determine command to perform */
408 _debug("rootcell=%s", kbuf);
409
David Howellsf044c882017-11-02 15:27:45 +0000410 ret = afs_cell_init(net, kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (ret >= 0)
412 ret = size; /* consume everything, always */
413
David Howells6f8880d2018-04-09 21:12:31 +0100414out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 _leave(" = %d", ret);
417 return ret;
David Howellsec268152007-04-26 15:49:28 -0700418}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/*
421 * initialise /proc/fs/afs/<cell>/
422 */
David Howellsf044c882017-11-02 15:27:45 +0000423int afs_proc_cell_setup(struct afs_net *net, struct afs_cell *cell)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Al Virob42d5702013-11-22 01:53:47 -0500425 struct proc_dir_entry *dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
David Howells989782d2017-11-02 15:27:50 +0000427 _enter("%p{%s},%p", cell, cell->name, net->proc_afs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
David Howellsf044c882017-11-02 15:27:45 +0000429 dir = proc_mkdir(cell->name, net->proc_afs);
Al Virob42d5702013-11-22 01:53:47 -0500430 if (!dir)
David Howellsec268152007-04-26 15:49:28 -0700431 goto error_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
David Howellsd2ddc772017-11-02 15:27:50 +0000433 if (!proc_create_data("vlservers", 0, dir,
434 &afs_proc_cell_vlservers_fops, cell) ||
Al Virob42d5702013-11-22 01:53:47 -0500435 !proc_create_data("volumes", 0, dir,
David Howellsd2ddc772017-11-02 15:27:50 +0000436 &afs_proc_cell_volumes_fops, cell))
Al Virob42d5702013-11-22 01:53:47 -0500437 goto error_tree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 _leave(" = 0");
440 return 0;
441
Al Virob42d5702013-11-22 01:53:47 -0500442error_tree:
David Howellsf044c882017-11-02 15:27:45 +0000443 remove_proc_subtree(cell->name, net->proc_afs);
David Howellsec268152007-04-26 15:49:28 -0700444error_dir:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 _leave(" = -ENOMEM");
446 return -ENOMEM;
David Howellsec268152007-04-26 15:49:28 -0700447}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449/*
450 * remove /proc/fs/afs/<cell>/
451 */
David Howellsf044c882017-11-02 15:27:45 +0000452void afs_proc_cell_remove(struct afs_net *net, struct afs_cell *cell)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 _enter("");
455
David Howellsf044c882017-11-02 15:27:45 +0000456 remove_proc_subtree(cell->name, net->proc_afs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700459}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461/*
462 * open "/proc/fs/afs/<cell>/volumes" which provides a summary of extant cells
463 */
464static int afs_proc_cell_volumes_open(struct inode *inode, struct file *file)
465{
466 struct afs_cell *cell;
467 struct seq_file *m;
468 int ret;
469
Al Virod9dda782013-03-31 18:16:14 -0400470 cell = PDE_DATA(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (!cell)
472 return -ENOENT;
473
474 ret = seq_open(file, &afs_proc_cell_volumes_ops);
475 if (ret < 0)
476 return ret;
477
478 m = file->private_data;
479 m->private = cell;
480
481 return 0;
David Howellsec268152007-04-26 15:49:28 -0700482}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 * set up the iterator to start reading from the cells list and return the
486 * first item
487 */
488static void *afs_proc_cell_volumes_start(struct seq_file *m, loff_t *_pos)
David Howellsfe342cf2018-04-09 21:12:31 +0100489 __acquires(cell->proc_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 struct afs_cell *cell = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 _enter("cell=%p pos=%Ld", cell, *_pos);
494
David Howellsd2ddc772017-11-02 15:27:50 +0000495 read_lock(&cell->proc_lock);
496 return seq_list_start_head(&cell->proc_volumes, *_pos);
David Howellsec268152007-04-26 15:49:28 -0700497}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499/*
500 * move to next cell in cells list
501 */
502static void *afs_proc_cell_volumes_next(struct seq_file *p, void *v,
503 loff_t *_pos)
504{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 struct afs_cell *cell = p->private;
506
507 _enter("cell=%p pos=%Ld", cell, *_pos);
David Howellsd2ddc772017-11-02 15:27:50 +0000508 return seq_list_next(v, &cell->proc_volumes, _pos);
David Howellsec268152007-04-26 15:49:28 -0700509}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511/*
512 * clean up after reading from the cells list
513 */
514static void afs_proc_cell_volumes_stop(struct seq_file *p, void *v)
David Howellsfe342cf2018-04-09 21:12:31 +0100515 __releases(cell->proc_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
517 struct afs_cell *cell = p->private;
518
David Howellsd2ddc772017-11-02 15:27:50 +0000519 read_unlock(&cell->proc_lock);
David Howellsec268152007-04-26 15:49:28 -0700520}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
David Howellsd2ddc772017-11-02 15:27:50 +0000522static const char afs_vol_types[3][3] = {
523 [AFSVL_RWVOL] = "RW",
524 [AFSVL_ROVOL] = "RO",
525 [AFSVL_BACKVOL] = "BK",
David Howells08e0e7c2007-04-26 15:55:03 -0700526};
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528/*
529 * display a header line followed by a load of volume lines
530 */
531static int afs_proc_cell_volumes_show(struct seq_file *m, void *v)
532{
Pavel Emelianova6a8bd62007-07-15 23:39:52 -0700533 struct afs_cell *cell = m->private;
David Howellsd2ddc772017-11-02 15:27:50 +0000534 struct afs_volume *vol = list_entry(v, struct afs_volume, proc_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
David Howellsd2ddc772017-11-02 15:27:50 +0000536 /* Display header on line 1 */
537 if (v == &cell->proc_volumes) {
538 seq_puts(m, "USE VID TY\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return 0;
540 }
541
David Howellsd2ddc772017-11-02 15:27:50 +0000542 seq_printf(m, "%3d %08x %s\n",
543 atomic_read(&vol->usage), vol->vid,
544 afs_vol_types[vol->type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 return 0;
David Howellsec268152007-04-26 15:49:28 -0700547}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549/*
550 * open "/proc/fs/afs/<cell>/vlservers" which provides a list of volume
551 * location server
552 */
553static int afs_proc_cell_vlservers_open(struct inode *inode, struct file *file)
554{
555 struct afs_cell *cell;
556 struct seq_file *m;
557 int ret;
558
Al Virod9dda782013-03-31 18:16:14 -0400559 cell = PDE_DATA(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (!cell)
561 return -ENOENT;
562
David Howells08e0e7c2007-04-26 15:55:03 -0700563 ret = seq_open(file, &afs_proc_cell_vlservers_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (ret<0)
565 return ret;
566
567 m = file->private_data;
568 m->private = cell;
569
570 return 0;
David Howellsec268152007-04-26 15:49:28 -0700571}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 * set up the iterator to start reading from the cells list and return the
575 * first item
576 */
577static void *afs_proc_cell_vlservers_start(struct seq_file *m, loff_t *_pos)
David Howellsfe342cf2018-04-09 21:12:31 +0100578 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
David Howells8b2a4642017-11-02 15:27:50 +0000580 struct afs_addr_list *alist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 struct afs_cell *cell = m->private;
582 loff_t pos = *_pos;
583
David Howells8b2a4642017-11-02 15:27:50 +0000584 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
David Howells8b2a4642017-11-02 15:27:50 +0000586 alist = rcu_dereference(cell->vl_addrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 /* allow for the header line */
589 if (!pos)
590 return (void *) 1;
591 pos--;
592
David Howells8b2a4642017-11-02 15:27:50 +0000593 if (!alist || pos >= alist->nr_addrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 return NULL;
595
David Howells8b2a4642017-11-02 15:27:50 +0000596 return alist->addrs + pos;
David Howellsec268152007-04-26 15:49:28 -0700597}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599/*
600 * move to next cell in cells list
601 */
602static void *afs_proc_cell_vlservers_next(struct seq_file *p, void *v,
603 loff_t *_pos)
604{
David Howells8b2a4642017-11-02 15:27:50 +0000605 struct afs_addr_list *alist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 struct afs_cell *cell = p->private;
607 loff_t pos;
608
David Howells8b2a4642017-11-02 15:27:50 +0000609 alist = rcu_dereference(cell->vl_addrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 pos = *_pos;
612 (*_pos)++;
David Howells8b2a4642017-11-02 15:27:50 +0000613 if (!alist || pos >= alist->nr_addrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return NULL;
615
David Howells8b2a4642017-11-02 15:27:50 +0000616 return alist->addrs + pos;
David Howellsec268152007-04-26 15:49:28 -0700617}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619/*
620 * clean up after reading from the cells list
621 */
622static void afs_proc_cell_vlservers_stop(struct seq_file *p, void *v)
David Howellsfe342cf2018-04-09 21:12:31 +0100623 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
David Howells8b2a4642017-11-02 15:27:50 +0000625 rcu_read_unlock();
David Howellsec268152007-04-26 15:49:28 -0700626}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628/*
629 * display a header line followed by a load of volume lines
630 */
631static int afs_proc_cell_vlservers_show(struct seq_file *m, void *v)
632{
David Howells4d9df982017-11-02 15:27:47 +0000633 struct sockaddr_rxrpc *addr = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635 /* display header on line 1 */
David Howells4d9df982017-11-02 15:27:47 +0000636 if (v == (void *)1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 seq_puts(m, "ADDRESS\n");
638 return 0;
639 }
640
641 /* display one cell per line on subsequent lines */
David Howells4d9df982017-11-02 15:27:47 +0000642 seq_printf(m, "%pISp\n", &addr->transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return 0;
David Howellsec268152007-04-26 15:49:28 -0700644}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646/*
David Howellsd2ddc772017-11-02 15:27:50 +0000647 * open "/proc/fs/afs/servers" which provides a summary of active
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 * servers
649 */
David Howellsd2ddc772017-11-02 15:27:50 +0000650static int afs_proc_servers_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
David Howellsd2ddc772017-11-02 15:27:50 +0000652 return seq_open(file, &afs_proc_servers_ops);
David Howellsec268152007-04-26 15:49:28 -0700653}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655/*
David Howellsd2ddc772017-11-02 15:27:50 +0000656 * Set up the iterator to start reading from the server list and return the
657 * first item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 */
David Howellsd2ddc772017-11-02 15:27:50 +0000659static void *afs_proc_servers_start(struct seq_file *m, loff_t *_pos)
David Howellsfe342cf2018-04-09 21:12:31 +0100660 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
David Howellsd2ddc772017-11-02 15:27:50 +0000662 struct afs_net *net = afs_seq2net(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
David Howellsd2ddc772017-11-02 15:27:50 +0000664 rcu_read_lock();
665 return seq_hlist_start_head_rcu(&net->fs_proc, *_pos);
David Howellsec268152007-04-26 15:49:28 -0700666}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668/*
669 * move to next cell in cells list
670 */
David Howellsd2ddc772017-11-02 15:27:50 +0000671static void *afs_proc_servers_next(struct seq_file *m, void *v, loff_t *_pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
David Howellsd2ddc772017-11-02 15:27:50 +0000673 struct afs_net *net = afs_seq2net(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
David Howellsd2ddc772017-11-02 15:27:50 +0000675 return seq_hlist_next_rcu(v, &net->fs_proc, _pos);
David Howellsec268152007-04-26 15:49:28 -0700676}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678/*
679 * clean up after reading from the cells list
680 */
David Howellsd2ddc772017-11-02 15:27:50 +0000681static void afs_proc_servers_stop(struct seq_file *p, void *v)
David Howellsfe342cf2018-04-09 21:12:31 +0100682 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
David Howellsd2ddc772017-11-02 15:27:50 +0000684 rcu_read_unlock();
David Howellsec268152007-04-26 15:49:28 -0700685}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687/*
688 * display a header line followed by a load of volume lines
689 */
David Howellsd2ddc772017-11-02 15:27:50 +0000690static int afs_proc_servers_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
David Howellsd2ddc772017-11-02 15:27:50 +0000692 struct afs_server *server;
693 struct afs_addr_list *alist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
David Howellsd2ddc772017-11-02 15:27:50 +0000695 if (v == SEQ_START_TOKEN) {
696 seq_puts(m, "UUID USE ADDR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 return 0;
698 }
699
David Howellsd2ddc772017-11-02 15:27:50 +0000700 server = list_entry(v, struct afs_server, proc_link);
701 alist = rcu_dereference(server->addresses);
702 seq_printf(m, "%pU %3d %pISp\n",
703 &server->uuid,
704 atomic_read(&server->usage),
705 &alist->addrs[alist->index].transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return 0;
David Howellsec268152007-04-26 15:49:28 -0700707}
David Howells6f8880d2018-04-09 21:12:31 +0100708
709void afs_put_sysnames(struct afs_sysnames *sysnames)
710{
711 int i;
712
713 if (sysnames && refcount_dec_and_test(&sysnames->usage)) {
714 for (i = 0; i < sysnames->nr; i++)
715 if (sysnames->subs[i] != afs_init_sysname &&
716 sysnames->subs[i] != sysnames->blank)
717 kfree(sysnames->subs[i]);
718 }
719}
720
721/*
722 * Handle opening of /proc/fs/afs/sysname. If it is opened for writing, we
723 * assume the caller wants to change the substitution list and we allocate a
724 * buffer to hold the list.
725 */
726static int afs_proc_sysname_open(struct inode *inode, struct file *file)
727{
728 struct afs_sysnames *sysnames;
729 struct seq_file *m;
730 int ret;
731
732 ret = seq_open(file, &afs_proc_sysname_ops);
733 if (ret < 0)
734 return ret;
735
736 if (file->f_mode & FMODE_WRITE) {
737 sysnames = kzalloc(sizeof(*sysnames), GFP_KERNEL);
738 if (!sysnames) {
739 seq_release(inode, file);
740 return -ENOMEM;
741 }
742
743 refcount_set(&sysnames->usage, 1);
744 m = file->private_data;
745 m->private = sysnames;
746 }
747
748 return 0;
749}
750
751/*
752 * Handle writes to /proc/fs/afs/sysname to set the @sys substitution.
753 */
754static ssize_t afs_proc_sysname_write(struct file *file,
755 const char __user *buf,
756 size_t size, loff_t *_pos)
757{
758 struct afs_sysnames *sysnames;
759 struct seq_file *m = file->private_data;
760 char *kbuf = NULL, *s, *p, *sub;
761 int ret, len;
762
763 sysnames = m->private;
764 if (!sysnames)
765 return -EINVAL;
766 if (sysnames->error)
767 return sysnames->error;
768
769 if (size >= PAGE_SIZE - 1) {
770 sysnames->error = -EINVAL;
771 return -EINVAL;
772 }
773 if (size == 0)
774 return 0;
775
776 kbuf = memdup_user_nul(buf, size);
777 if (IS_ERR(kbuf))
778 return PTR_ERR(kbuf);
779
780 inode_lock(file_inode(file));
781
782 p = kbuf;
783 while ((s = strsep(&p, " \t\n"))) {
784 len = strlen(s);
785 if (len == 0)
786 continue;
787 ret = -ENAMETOOLONG;
788 if (len >= AFSNAMEMAX)
789 goto error;
790
791 if (len >= 4 &&
792 s[len - 4] == '@' &&
793 s[len - 3] == 's' &&
794 s[len - 2] == 'y' &&
795 s[len - 1] == 's')
796 /* Protect against recursion */
797 goto invalid;
798
799 if (s[0] == '.' &&
800 (len < 2 || (len == 2 && s[1] == '.')))
801 goto invalid;
802
803 if (memchr(s, '/', len))
804 goto invalid;
805
806 ret = -EFBIG;
807 if (sysnames->nr >= AFS_NR_SYSNAME)
808 goto out;
809
810 if (strcmp(s, afs_init_sysname) == 0) {
811 sub = (char *)afs_init_sysname;
812 } else {
813 ret = -ENOMEM;
814 sub = kmemdup(s, len + 1, GFP_KERNEL);
815 if (!sub)
816 goto out;
817 }
818
819 sysnames->subs[sysnames->nr] = sub;
820 sysnames->nr++;
821 }
822
823 ret = size; /* consume everything, always */
824out:
825 inode_unlock(file_inode(file));
826 kfree(kbuf);
827 return ret;
828
829invalid:
830 ret = -EINVAL;
831error:
832 sysnames->error = ret;
833 goto out;
834}
835
836static int afs_proc_sysname_release(struct inode *inode, struct file *file)
837{
838 struct afs_sysnames *sysnames, *kill = NULL;
839 struct seq_file *m = file->private_data;
840 struct afs_net *net = afs_seq2net(m);
841
842 sysnames = m->private;
843 if (sysnames) {
844 if (!sysnames->error) {
845 kill = sysnames;
846 if (sysnames->nr == 0) {
847 sysnames->subs[0] = sysnames->blank;
848 sysnames->nr++;
849 }
850 write_lock(&net->sysnames_lock);
851 kill = net->sysnames;
852 net->sysnames = sysnames;
853 write_unlock(&net->sysnames_lock);
854 }
855 afs_put_sysnames(kill);
856 }
857
858 return seq_release(inode, file);
859}
860
861static void *afs_proc_sysname_start(struct seq_file *m, loff_t *pos)
862 __acquires(&net->sysnames_lock)
863{
864 struct afs_net *net = afs_seq2net(m);
865 struct afs_sysnames *names = net->sysnames;
866
867 read_lock(&net->sysnames_lock);
868
869 if (*pos >= names->nr)
870 return NULL;
871 return (void *)(unsigned long)(*pos + 1);
872}
873
874static void *afs_proc_sysname_next(struct seq_file *m, void *v, loff_t *pos)
875{
876 struct afs_net *net = afs_seq2net(m);
877 struct afs_sysnames *names = net->sysnames;
878
879 *pos += 1;
880 if (*pos >= names->nr)
881 return NULL;
882 return (void *)(unsigned long)(*pos + 1);
883}
884
885static void afs_proc_sysname_stop(struct seq_file *m, void *v)
886 __releases(&net->sysnames_lock)
887{
888 struct afs_net *net = afs_seq2net(m);
889
890 read_unlock(&net->sysnames_lock);
891}
892
893static int afs_proc_sysname_show(struct seq_file *m, void *v)
894{
895 struct afs_net *net = afs_seq2net(m);
896 struct afs_sysnames *sysnames = net->sysnames;
897 unsigned int i = (unsigned long)v - 1;
898
899 if (i < sysnames->nr)
900 seq_printf(m, "%s\n", sysnames->subs[i]);
901 return 0;
902}
David Howellsd55b4da2018-04-06 14:17:24 +0100903
904/*
905 * Display general per-net namespace statistics
906 */
907static int afs_proc_stats_show(struct seq_file *m, void *v)
908{
909 struct afs_net *net = afs_seq2net(m);
910
911 seq_puts(m, "kAFS statistics\n");
912
David Howellsf3ddee82018-04-06 14:17:25 +0100913 seq_printf(m, "dir-mgmt: look=%u reval=%u inval=%u relpg=%u\n",
David Howellsd55b4da2018-04-06 14:17:24 +0100914 atomic_read(&net->n_lookup),
915 atomic_read(&net->n_reval),
David Howellsf3ddee82018-04-06 14:17:25 +0100916 atomic_read(&net->n_inval),
917 atomic_read(&net->n_relpg));
David Howellsd55b4da2018-04-06 14:17:24 +0100918
919 seq_printf(m, "dir-data: rdpg=%u\n",
920 atomic_read(&net->n_read_dir));
David Howells63a46812018-04-06 14:17:25 +0100921
922 seq_printf(m, "dir-edit: cr=%u rm=%u\n",
923 atomic_read(&net->n_dir_cr),
924 atomic_read(&net->n_dir_rm));
David Howells76a5cb62018-04-06 14:17:26 +0100925
926 seq_printf(m, "file-rd : n=%u nb=%lu\n",
927 atomic_read(&net->n_fetches),
928 atomic_long_read(&net->n_fetch_bytes));
929 seq_printf(m, "file-wr : n=%u nb=%lu\n",
930 atomic_read(&net->n_stores),
931 atomic_long_read(&net->n_store_bytes));
David Howellsd55b4da2018-04-06 14:17:24 +0100932 return 0;
933}
934
935/*
936 * Open "/proc/fs/afs/stats" to allow reading of the stat counters.
937 */
938static int afs_proc_stats_open(struct inode *inode, struct file *file)
939{
940 return single_open(file, afs_proc_stats_show, NULL);
941}
942
943static const struct file_operations afs_proc_stats_fops = {
944 .open = afs_proc_stats_open,
945 .read = seq_read,
946 .llseek = seq_lseek,
947 .release = single_release,
948};