Linux Audio

Check our new training course

Embedded Linux training

Mar 10-20, 2025, special US time zones
Register
Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/* /proc interface for AFS
  3 *
  4 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
  5 * Written by David Howells (dhowells@redhat.com)
  6 */
  7
  8#include <linux/slab.h>
  9#include <linux/module.h>
 10#include <linux/proc_fs.h>
 11#include <linux/seq_file.h>
 12#include <linux/sched.h>
 13#include <linux/uaccess.h>
 14#include "internal.h"
 15
 16struct afs_vl_seq_net_private {
 17	struct seq_net_private		seq;	/* Must be first */
 18	struct afs_vlserver_list	*vllist;
 19};
 20
 21static inline struct afs_net *afs_seq2net(struct seq_file *m)
 22{
 23	return afs_net(seq_file_net(m));
 24}
 25
 26static inline struct afs_net *afs_seq2net_single(struct seq_file *m)
 27{
 28	return afs_net(seq_file_single_net(m));
 29}
 30
 31/*
 32 * Display the list of cells known to the namespace.
 33 */
 34static int afs_proc_cells_show(struct seq_file *m, void *v)
 35{
 36	struct afs_vlserver_list *vllist;
 37	struct afs_cell *cell;
 38
 39	if (v == SEQ_START_TOKEN) {
 40		/* display header on line 1 */
 41		seq_puts(m, "USE ACT    TTL SV ST NAME\n");
 42		return 0;
 43	}
 44
 45	cell = list_entry(v, struct afs_cell, proc_link);
 46	vllist = rcu_dereference(cell->vl_servers);
 47
 48	/* display one cell per line on subsequent lines */
 49	seq_printf(m, "%3u %3u %6lld %2u %2u %s\n",
 50		   refcount_read(&cell->ref),
 51		   atomic_read(&cell->active),
 52		   cell->dns_expiry - ktime_get_real_seconds(),
 53		   vllist ? vllist->nr_servers : 0,
 54		   cell->state,
 55		   cell->name);
 56	return 0;
 57}
 58
 59static void *afs_proc_cells_start(struct seq_file *m, loff_t *_pos)
 60	__acquires(rcu)
 61{
 62	rcu_read_lock();
 63	return seq_hlist_start_head_rcu(&afs_seq2net(m)->proc_cells, *_pos);
 64}
 65
 66static void *afs_proc_cells_next(struct seq_file *m, void *v, loff_t *pos)
 67{
 68	return seq_hlist_next_rcu(v, &afs_seq2net(m)->proc_cells, pos);
 69}
 70
 71static void afs_proc_cells_stop(struct seq_file *m, void *v)
 72	__releases(rcu)
 73{
 74	rcu_read_unlock();
 75}
 76
 77static const struct seq_operations afs_proc_cells_ops = {
 78	.start	= afs_proc_cells_start,
 79	.next	= afs_proc_cells_next,
 80	.stop	= afs_proc_cells_stop,
 81	.show	= afs_proc_cells_show,
 82};
 83
 84/*
 85 * handle writes to /proc/fs/afs/cells
 86 * - to add cells: echo "add <cellname> <IP>[:<IP>][:<IP>]"
 87 */
 88static int afs_proc_cells_write(struct file *file, char *buf, size_t size)
 89{
 90	struct seq_file *m = file->private_data;
 91	struct afs_net *net = afs_seq2net(m);
 92	char *name, *args;
 93	int ret;
 94
 95	/* trim to first NL */
 96	name = memchr(buf, '\n', size);
 97	if (name)
 98		*name = 0;
 99
100	/* split into command, name and argslist */
101	name = strchr(buf, ' ');
102	if (!name)
103		goto inval;
104	do {
105		*name++ = 0;
106	} while(*name == ' ');
107	if (!*name)
108		goto inval;
109
110	args = strchr(name, ' ');
111	if (args) {
112		do {
113			*args++ = 0;
114		} while(*args == ' ');
115		if (!*args)
116			goto inval;
117	}
118
119	/* determine command to perform */
120	_debug("cmd=%s name=%s args=%s", buf, name, args);
121
122	if (strcmp(buf, "add") == 0) {
123		struct afs_cell *cell;
124
125		cell = afs_lookup_cell(net, name, strlen(name), args, true);
126		if (IS_ERR(cell)) {
127			ret = PTR_ERR(cell);
128			goto done;
129		}
130
131		if (test_and_set_bit(AFS_CELL_FL_NO_GC, &cell->flags))
132			afs_unuse_cell(net, cell, afs_cell_trace_unuse_no_pin);
133	} else {
134		goto inval;
135	}
136
137	ret = 0;
138
139done:
140	_leave(" = %d", ret);
141	return ret;
142
143inval:
144	ret = -EINVAL;
145	printk("kAFS: Invalid Command on /proc/fs/afs/cells file\n");
146	goto done;
147}
148
149/*
150 * Display the name of the current workstation cell.
151 */
152static int afs_proc_rootcell_show(struct seq_file *m, void *v)
153{
154	struct afs_cell *cell;
155	struct afs_net *net;
156
157	net = afs_seq2net_single(m);
158	down_read(&net->cells_lock);
159	cell = net->ws_cell;
160	if (cell)
161		seq_printf(m, "%s\n", cell->name);
162	up_read(&net->cells_lock);
 
 
163	return 0;
164}
165
166/*
167 * Set the current workstation cell and optionally supply its list of volume
168 * location servers.
169 *
170 *	echo "cell.name:192.168.231.14" >/proc/fs/afs/rootcell
171 */
172static int afs_proc_rootcell_write(struct file *file, char *buf, size_t size)
173{
174	struct seq_file *m = file->private_data;
175	struct afs_net *net = afs_seq2net_single(m);
176	char *s;
177	int ret;
178
179	ret = -EINVAL;
180	if (buf[0] == '.')
181		goto out;
182	if (memchr(buf, '/', size))
183		goto out;
184
185	/* trim to first NL */
186	s = memchr(buf, '\n', size);
187	if (s)
188		*s = 0;
189
190	/* determine command to perform */
191	_debug("rootcell=%s", buf);
192
193	ret = afs_cell_init(net, buf);
194
195out:
196	_leave(" = %d", ret);
197	return ret;
198}
199
200static const char afs_vol_types[3][3] = {
201	[AFSVL_RWVOL]	= "RW",
202	[AFSVL_ROVOL]	= "RO",
203	[AFSVL_BACKVOL]	= "BK",
204};
205
206/*
207 * Display the list of volumes known to a cell.
208 */
209static int afs_proc_cell_volumes_show(struct seq_file *m, void *v)
210{
211	struct afs_volume *vol = hlist_entry(v, struct afs_volume, proc_link);
212
213	/* Display header on line 1 */
214	if (v == SEQ_START_TOKEN) {
215		seq_puts(m, "USE VID      TY NAME\n");
216		return 0;
217	}
218
219	seq_printf(m, "%3d %08llx %s %s\n",
220		   refcount_read(&vol->ref), vol->vid,
221		   afs_vol_types[vol->type],
222		   vol->name);
223
224	return 0;
225}
226
227static void *afs_proc_cell_volumes_start(struct seq_file *m, loff_t *_pos)
228	__acquires(cell->proc_lock)
229{
230	struct afs_cell *cell = pde_data(file_inode(m->file));
231
232	rcu_read_lock();
233	return seq_hlist_start_head_rcu(&cell->proc_volumes, *_pos);
234}
235
236static void *afs_proc_cell_volumes_next(struct seq_file *m, void *v,
237					loff_t *_pos)
238{
239	struct afs_cell *cell = pde_data(file_inode(m->file));
240
241	return seq_hlist_next_rcu(v, &cell->proc_volumes, _pos);
242}
243
244static void afs_proc_cell_volumes_stop(struct seq_file *m, void *v)
245	__releases(cell->proc_lock)
246{
247	rcu_read_unlock();
248}
249
250static const struct seq_operations afs_proc_cell_volumes_ops = {
251	.start	= afs_proc_cell_volumes_start,
252	.next	= afs_proc_cell_volumes_next,
253	.stop	= afs_proc_cell_volumes_stop,
254	.show	= afs_proc_cell_volumes_show,
255};
256
257static const char *const dns_record_sources[NR__dns_record_source + 1] = {
258	[DNS_RECORD_UNAVAILABLE]	= "unav",
259	[DNS_RECORD_FROM_CONFIG]	= "cfg",
260	[DNS_RECORD_FROM_DNS_A]		= "A",
261	[DNS_RECORD_FROM_DNS_AFSDB]	= "AFSDB",
262	[DNS_RECORD_FROM_DNS_SRV]	= "SRV",
263	[DNS_RECORD_FROM_NSS]		= "nss",
264	[NR__dns_record_source]		= "[weird]"
265};
266
267static const char *const dns_lookup_statuses[NR__dns_lookup_status + 1] = {
268	[DNS_LOOKUP_NOT_DONE]		= "no-lookup",
269	[DNS_LOOKUP_GOOD]		= "good",
270	[DNS_LOOKUP_GOOD_WITH_BAD]	= "good/bad",
271	[DNS_LOOKUP_BAD]		= "bad",
272	[DNS_LOOKUP_GOT_NOT_FOUND]	= "not-found",
273	[DNS_LOOKUP_GOT_LOCAL_FAILURE]	= "local-failure",
274	[DNS_LOOKUP_GOT_TEMP_FAILURE]	= "temp-failure",
275	[DNS_LOOKUP_GOT_NS_FAILURE]	= "ns-failure",
276	[NR__dns_lookup_status]		= "[weird]"
277};
278
279/*
280 * Display the list of Volume Location servers we're using for a cell.
281 */
282static int afs_proc_cell_vlservers_show(struct seq_file *m, void *v)
283{
284	const struct afs_vl_seq_net_private *priv = m->private;
285	const struct afs_vlserver_list *vllist = priv->vllist;
286	const struct afs_vlserver_entry *entry;
287	const struct afs_vlserver *vlserver;
288	const struct afs_addr_list *alist;
289	int i;
290
291	if (v == SEQ_START_TOKEN) {
292		seq_printf(m, "# source %s, status %s\n",
293			   dns_record_sources[vllist ? vllist->source : 0],
294			   dns_lookup_statuses[vllist ? vllist->status : 0]);
295		return 0;
296	}
297
298	entry = v;
299	vlserver = entry->server;
300	alist = rcu_dereference(vlserver->addresses);
301
302	seq_printf(m, "%s [p=%hu w=%hu s=%s,%s]:\n",
303		   vlserver->name, entry->priority, entry->weight,
304		   dns_record_sources[alist ? alist->source : entry->source],
305		   dns_lookup_statuses[alist ? alist->status : entry->status]);
306	if (alist) {
307		for (i = 0; i < alist->nr_addrs; i++)
308			seq_printf(m, " %c %pISpc\n",
309				   alist->preferred == i ? '>' : '-',
310				   &alist->addrs[i].transport);
311	}
312	seq_printf(m, " info: fl=%lx rtt=%d\n", vlserver->flags, vlserver->rtt);
313	seq_printf(m, " probe: fl=%x e=%d ac=%d out=%d\n",
314		   vlserver->probe.flags, vlserver->probe.error,
315		   vlserver->probe.abort_code,
316		   atomic_read(&vlserver->probe_outstanding));
317	return 0;
318}
319
320static void *afs_proc_cell_vlservers_start(struct seq_file *m, loff_t *_pos)
321	__acquires(rcu)
322{
323	struct afs_vl_seq_net_private *priv = m->private;
324	struct afs_vlserver_list *vllist;
325	struct afs_cell *cell = pde_data(file_inode(m->file));
326	loff_t pos = *_pos;
327
328	rcu_read_lock();
329
330	vllist = rcu_dereference(cell->vl_servers);
331	priv->vllist = vllist;
332
333	if (pos < 0)
334		*_pos = pos = 0;
335	if (pos == 0)
336		return SEQ_START_TOKEN;
337
338	if (pos - 1 >= vllist->nr_servers)
339		return NULL;
340
341	return &vllist->servers[pos - 1];
342}
343
344static void *afs_proc_cell_vlservers_next(struct seq_file *m, void *v,
345					  loff_t *_pos)
346{
347	struct afs_vl_seq_net_private *priv = m->private;
348	struct afs_vlserver_list *vllist = priv->vllist;
349	loff_t pos;
350
351	pos = *_pos;
352	pos++;
353	*_pos = pos;
354	if (!vllist || pos - 1 >= vllist->nr_servers)
355		return NULL;
356
357	return &vllist->servers[pos - 1];
358}
359
360static void afs_proc_cell_vlservers_stop(struct seq_file *m, void *v)
361	__releases(rcu)
362{
363	rcu_read_unlock();
364}
365
366static const struct seq_operations afs_proc_cell_vlservers_ops = {
367	.start	= afs_proc_cell_vlservers_start,
368	.next	= afs_proc_cell_vlservers_next,
369	.stop	= afs_proc_cell_vlservers_stop,
370	.show	= afs_proc_cell_vlservers_show,
371};
372
373/*
374 * Display the list of fileservers we're using within a namespace.
375 */
376static int afs_proc_servers_show(struct seq_file *m, void *v)
377{
378	struct afs_server *server;
379	struct afs_addr_list *alist;
380	int i;
381
382	if (v == SEQ_START_TOKEN) {
383		seq_puts(m, "UUID                                 REF ACT\n");
384		return 0;
385	}
386
387	server = list_entry(v, struct afs_server, proc_link);
388	alist = rcu_dereference(server->addresses);
389	seq_printf(m, "%pU %3d %3d\n",
390		   &server->uuid,
391		   refcount_read(&server->ref),
392		   atomic_read(&server->active));
393	seq_printf(m, "  - info: fl=%lx rtt=%u brk=%x\n",
394		   server->flags, server->rtt, server->cb_s_break);
395	seq_printf(m, "  - probe: last=%d out=%d\n",
396		   (int)(jiffies - server->probed_at) / HZ,
397		   atomic_read(&server->probe_outstanding));
398	seq_printf(m, "  - ALIST v=%u rsp=%lx f=%lx\n",
399		   alist->version, alist->responded, alist->failed);
400	for (i = 0; i < alist->nr_addrs; i++)
401		seq_printf(m, "    [%x] %pISpc%s\n",
402			   i, &alist->addrs[i].transport,
403			   alist->preferred == i ? "*" : "");
404	return 0;
405}
406
407static void *afs_proc_servers_start(struct seq_file *m, loff_t *_pos)
408	__acquires(rcu)
409{
410	rcu_read_lock();
411	return seq_hlist_start_head_rcu(&afs_seq2net(m)->fs_proc, *_pos);
412}
413
414static void *afs_proc_servers_next(struct seq_file *m, void *v, loff_t *_pos)
415{
416	return seq_hlist_next_rcu(v, &afs_seq2net(m)->fs_proc, _pos);
417}
418
419static void afs_proc_servers_stop(struct seq_file *m, void *v)
420	__releases(rcu)
421{
422	rcu_read_unlock();
423}
424
425static const struct seq_operations afs_proc_servers_ops = {
426	.start	= afs_proc_servers_start,
427	.next	= afs_proc_servers_next,
428	.stop	= afs_proc_servers_stop,
429	.show	= afs_proc_servers_show,
430};
431
432/*
433 * Display the list of strings that may be substituted for the @sys pathname
434 * macro.
435 */
436static int afs_proc_sysname_show(struct seq_file *m, void *v)
437{
438	struct afs_net *net = afs_seq2net(m);
439	struct afs_sysnames *sysnames = net->sysnames;
440	unsigned int i = (unsigned long)v - 1;
441
442	if (i < sysnames->nr)
443		seq_printf(m, "%s\n", sysnames->subs[i]);
444	return 0;
445}
446
447static void *afs_proc_sysname_start(struct seq_file *m, loff_t *pos)
448	__acquires(&net->sysnames_lock)
449{
450	struct afs_net *net = afs_seq2net(m);
451	struct afs_sysnames *names;
452
453	read_lock(&net->sysnames_lock);
454
455	names = net->sysnames;
456	if (*pos >= names->nr)
457		return NULL;
458	return (void *)(unsigned long)(*pos + 1);
459}
460
461static void *afs_proc_sysname_next(struct seq_file *m, void *v, loff_t *pos)
462{
463	struct afs_net *net = afs_seq2net(m);
464	struct afs_sysnames *names = net->sysnames;
465
466	*pos += 1;
467	if (*pos >= names->nr)
468		return NULL;
469	return (void *)(unsigned long)(*pos + 1);
470}
471
472static void afs_proc_sysname_stop(struct seq_file *m, void *v)
473	__releases(&net->sysnames_lock)
474{
475	struct afs_net *net = afs_seq2net(m);
476
477	read_unlock(&net->sysnames_lock);
478}
479
480static const struct seq_operations afs_proc_sysname_ops = {
481	.start	= afs_proc_sysname_start,
482	.next	= afs_proc_sysname_next,
483	.stop	= afs_proc_sysname_stop,
484	.show	= afs_proc_sysname_show,
485};
486
487/*
488 * Allow the @sys substitution to be configured.
489 */
490static int afs_proc_sysname_write(struct file *file, char *buf, size_t size)
491{
492	struct afs_sysnames *sysnames, *kill;
493	struct seq_file *m = file->private_data;
494	struct afs_net *net = afs_seq2net(m);
495	char *s, *p, *sub;
496	int ret, len;
497
498	sysnames = kzalloc(sizeof(*sysnames), GFP_KERNEL);
499	if (!sysnames)
500		return -ENOMEM;
501	refcount_set(&sysnames->usage, 1);
502	kill = sysnames;
503
504	p = buf;
505	while ((s = strsep(&p, " \t\n"))) {
506		len = strlen(s);
507		if (len == 0)
508			continue;
509		ret = -ENAMETOOLONG;
510		if (len >= AFSNAMEMAX)
511			goto error;
512
513		if (len >= 4 &&
514		    s[len - 4] == '@' &&
515		    s[len - 3] == 's' &&
516		    s[len - 2] == 'y' &&
517		    s[len - 1] == 's')
518			/* Protect against recursion */
519			goto invalid;
520
521		if (s[0] == '.' &&
522		    (len < 2 || (len == 2 && s[1] == '.')))
523			goto invalid;
524
525		if (memchr(s, '/', len))
526			goto invalid;
527
528		ret = -EFBIG;
529		if (sysnames->nr >= AFS_NR_SYSNAME)
530			goto out;
531
532		if (strcmp(s, afs_init_sysname) == 0) {
533			sub = (char *)afs_init_sysname;
534		} else {
535			ret = -ENOMEM;
536			sub = kmemdup(s, len + 1, GFP_KERNEL);
537			if (!sub)
538				goto out;
539		}
540
541		sysnames->subs[sysnames->nr] = sub;
542		sysnames->nr++;
543	}
544
545	if (sysnames->nr == 0) {
546		sysnames->subs[0] = sysnames->blank;
547		sysnames->nr++;
548	}
549
550	write_lock(&net->sysnames_lock);
551	kill = net->sysnames;
552	net->sysnames = sysnames;
553	write_unlock(&net->sysnames_lock);
554	ret = 0;
555out:
556	afs_put_sysnames(kill);
557	return ret;
558
559invalid:
560	ret = -EINVAL;
561error:
562	goto out;
563}
564
565void afs_put_sysnames(struct afs_sysnames *sysnames)
566{
567	int i;
568
569	if (sysnames && refcount_dec_and_test(&sysnames->usage)) {
570		for (i = 0; i < sysnames->nr; i++)
571			if (sysnames->subs[i] != afs_init_sysname &&
572			    sysnames->subs[i] != sysnames->blank)
573				kfree(sysnames->subs[i]);
574		kfree(sysnames);
575	}
576}
577
578/*
579 * Display general per-net namespace statistics
580 */
581static int afs_proc_stats_show(struct seq_file *m, void *v)
582{
583	struct afs_net *net = afs_seq2net_single(m);
584
585	seq_puts(m, "kAFS statistics\n");
586
587	seq_printf(m, "dir-mgmt: look=%u reval=%u inval=%u relpg=%u\n",
588		   atomic_read(&net->n_lookup),
589		   atomic_read(&net->n_reval),
590		   atomic_read(&net->n_inval),
591		   atomic_read(&net->n_relpg));
592
593	seq_printf(m, "dir-data: rdpg=%u\n",
594		   atomic_read(&net->n_read_dir));
595
596	seq_printf(m, "dir-edit: cr=%u rm=%u\n",
597		   atomic_read(&net->n_dir_cr),
598		   atomic_read(&net->n_dir_rm));
599
600	seq_printf(m, "file-rd : n=%u nb=%lu\n",
601		   atomic_read(&net->n_fetches),
602		   atomic_long_read(&net->n_fetch_bytes));
603	seq_printf(m, "file-wr : n=%u nb=%lu\n",
604		   atomic_read(&net->n_stores),
605		   atomic_long_read(&net->n_store_bytes));
606	return 0;
607}
608
609/*
610 * initialise /proc/fs/afs/<cell>/
611 */
612int afs_proc_cell_setup(struct afs_cell *cell)
613{
614	struct proc_dir_entry *dir;
615	struct afs_net *net = cell->net;
616
617	_enter("%p{%s},%p", cell, cell->name, net->proc_afs);
618
619	dir = proc_net_mkdir(net->net, cell->name, net->proc_afs);
620	if (!dir)
621		goto error_dir;
622
623	if (!proc_create_net_data("vlservers", 0444, dir,
624				  &afs_proc_cell_vlservers_ops,
625				  sizeof(struct afs_vl_seq_net_private),
626				  cell) ||
627	    !proc_create_net_data("volumes", 0444, dir,
628				  &afs_proc_cell_volumes_ops,
629				  sizeof(struct seq_net_private),
630				  cell))
631		goto error_tree;
632
633	_leave(" = 0");
634	return 0;
635
636error_tree:
637	remove_proc_subtree(cell->name, net->proc_afs);
638error_dir:
639	_leave(" = -ENOMEM");
640	return -ENOMEM;
641}
642
643/*
644 * remove /proc/fs/afs/<cell>/
645 */
646void afs_proc_cell_remove(struct afs_cell *cell)
647{
648	struct afs_net *net = cell->net;
649
650	_enter("");
651	remove_proc_subtree(cell->name, net->proc_afs);
652	_leave("");
653}
654
655/*
656 * initialise the /proc/fs/afs/ directory
657 */
658int afs_proc_init(struct afs_net *net)
659{
660	struct proc_dir_entry *p;
661
662	_enter("");
663
664	p = proc_net_mkdir(net->net, "afs", net->net->proc_net);
665	if (!p)
666		goto error_dir;
667
668	if (!proc_create_net_data_write("cells", 0644, p,
669					&afs_proc_cells_ops,
670					afs_proc_cells_write,
671					sizeof(struct seq_net_private),
672					NULL) ||
673	    !proc_create_net_single_write("rootcell", 0644, p,
674					  afs_proc_rootcell_show,
675					  afs_proc_rootcell_write,
676					  NULL) ||
677	    !proc_create_net("servers", 0444, p, &afs_proc_servers_ops,
678			     sizeof(struct seq_net_private)) ||
679	    !proc_create_net_single("stats", 0444, p, afs_proc_stats_show, NULL) ||
680	    !proc_create_net_data_write("sysname", 0644, p,
681					&afs_proc_sysname_ops,
682					afs_proc_sysname_write,
683					sizeof(struct seq_net_private),
684					NULL))
685		goto error_tree;
686
687	net->proc_afs = p;
688	_leave(" = 0");
689	return 0;
690
691error_tree:
692	proc_remove(p);
693error_dir:
694	_leave(" = -ENOMEM");
695	return -ENOMEM;
696}
697
698/*
699 * clean up the /proc/fs/afs/ directory
700 */
701void afs_proc_cleanup(struct afs_net *net)
702{
703	proc_remove(net->proc_afs);
704	net->proc_afs = NULL;
705}
v5.9
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/* /proc interface for AFS
  3 *
  4 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
  5 * Written by David Howells (dhowells@redhat.com)
  6 */
  7
  8#include <linux/slab.h>
  9#include <linux/module.h>
 10#include <linux/proc_fs.h>
 11#include <linux/seq_file.h>
 12#include <linux/sched.h>
 13#include <linux/uaccess.h>
 14#include "internal.h"
 15
 16struct afs_vl_seq_net_private {
 17	struct seq_net_private		seq;	/* Must be first */
 18	struct afs_vlserver_list	*vllist;
 19};
 20
 21static inline struct afs_net *afs_seq2net(struct seq_file *m)
 22{
 23	return afs_net(seq_file_net(m));
 24}
 25
 26static inline struct afs_net *afs_seq2net_single(struct seq_file *m)
 27{
 28	return afs_net(seq_file_single_net(m));
 29}
 30
 31/*
 32 * Display the list of cells known to the namespace.
 33 */
 34static int afs_proc_cells_show(struct seq_file *m, void *v)
 35{
 36	struct afs_vlserver_list *vllist;
 37	struct afs_cell *cell;
 38
 39	if (v == SEQ_START_TOKEN) {
 40		/* display header on line 1 */
 41		seq_puts(m, "USE    TTL SV ST NAME\n");
 42		return 0;
 43	}
 44
 45	cell = list_entry(v, struct afs_cell, proc_link);
 46	vllist = rcu_dereference(cell->vl_servers);
 47
 48	/* display one cell per line on subsequent lines */
 49	seq_printf(m, "%3u %6lld %2u %2u %s\n",
 50		   atomic_read(&cell->usage),
 
 51		   cell->dns_expiry - ktime_get_real_seconds(),
 52		   vllist->nr_servers,
 53		   cell->state,
 54		   cell->name);
 55	return 0;
 56}
 57
 58static void *afs_proc_cells_start(struct seq_file *m, loff_t *_pos)
 59	__acquires(rcu)
 60{
 61	rcu_read_lock();
 62	return seq_hlist_start_head_rcu(&afs_seq2net(m)->proc_cells, *_pos);
 63}
 64
 65static void *afs_proc_cells_next(struct seq_file *m, void *v, loff_t *pos)
 66{
 67	return seq_hlist_next_rcu(v, &afs_seq2net(m)->proc_cells, pos);
 68}
 69
 70static void afs_proc_cells_stop(struct seq_file *m, void *v)
 71	__releases(rcu)
 72{
 73	rcu_read_unlock();
 74}
 75
 76static const struct seq_operations afs_proc_cells_ops = {
 77	.start	= afs_proc_cells_start,
 78	.next	= afs_proc_cells_next,
 79	.stop	= afs_proc_cells_stop,
 80	.show	= afs_proc_cells_show,
 81};
 82
 83/*
 84 * handle writes to /proc/fs/afs/cells
 85 * - to add cells: echo "add <cellname> <IP>[:<IP>][:<IP>]"
 86 */
 87static int afs_proc_cells_write(struct file *file, char *buf, size_t size)
 88{
 89	struct seq_file *m = file->private_data;
 90	struct afs_net *net = afs_seq2net(m);
 91	char *name, *args;
 92	int ret;
 93
 94	/* trim to first NL */
 95	name = memchr(buf, '\n', size);
 96	if (name)
 97		*name = 0;
 98
 99	/* split into command, name and argslist */
100	name = strchr(buf, ' ');
101	if (!name)
102		goto inval;
103	do {
104		*name++ = 0;
105	} while(*name == ' ');
106	if (!*name)
107		goto inval;
108
109	args = strchr(name, ' ');
110	if (args) {
111		do {
112			*args++ = 0;
113		} while(*args == ' ');
114		if (!*args)
115			goto inval;
116	}
117
118	/* determine command to perform */
119	_debug("cmd=%s name=%s args=%s", buf, name, args);
120
121	if (strcmp(buf, "add") == 0) {
122		struct afs_cell *cell;
123
124		cell = afs_lookup_cell(net, name, strlen(name), args, true);
125		if (IS_ERR(cell)) {
126			ret = PTR_ERR(cell);
127			goto done;
128		}
129
130		if (test_and_set_bit(AFS_CELL_FL_NO_GC, &cell->flags))
131			afs_put_cell(net, cell);
132	} else {
133		goto inval;
134	}
135
136	ret = 0;
137
138done:
139	_leave(" = %d", ret);
140	return ret;
141
142inval:
143	ret = -EINVAL;
144	printk("kAFS: Invalid Command on /proc/fs/afs/cells file\n");
145	goto done;
146}
147
148/*
149 * Display the name of the current workstation cell.
150 */
151static int afs_proc_rootcell_show(struct seq_file *m, void *v)
152{
153	struct afs_cell *cell;
154	struct afs_net *net;
155
156	net = afs_seq2net_single(m);
157	if (rcu_access_pointer(net->ws_cell)) {
158		rcu_read_lock();
159		cell = rcu_dereference(net->ws_cell);
160		if (cell)
161			seq_printf(m, "%s\n", cell->name);
162		rcu_read_unlock();
163	}
164	return 0;
165}
166
167/*
168 * Set the current workstation cell and optionally supply its list of volume
169 * location servers.
170 *
171 *	echo "cell.name:192.168.231.14" >/proc/fs/afs/rootcell
172 */
173static int afs_proc_rootcell_write(struct file *file, char *buf, size_t size)
174{
175	struct seq_file *m = file->private_data;
176	struct afs_net *net = afs_seq2net_single(m);
177	char *s;
178	int ret;
179
180	ret = -EINVAL;
181	if (buf[0] == '.')
182		goto out;
183	if (memchr(buf, '/', size))
184		goto out;
185
186	/* trim to first NL */
187	s = memchr(buf, '\n', size);
188	if (s)
189		*s = 0;
190
191	/* determine command to perform */
192	_debug("rootcell=%s", buf);
193
194	ret = afs_cell_init(net, buf);
195
196out:
197	_leave(" = %d", ret);
198	return ret;
199}
200
201static const char afs_vol_types[3][3] = {
202	[AFSVL_RWVOL]	= "RW",
203	[AFSVL_ROVOL]	= "RO",
204	[AFSVL_BACKVOL]	= "BK",
205};
206
207/*
208 * Display the list of volumes known to a cell.
209 */
210static int afs_proc_cell_volumes_show(struct seq_file *m, void *v)
211{
212	struct afs_volume *vol = hlist_entry(v, struct afs_volume, proc_link);
213
214	/* Display header on line 1 */
215	if (v == SEQ_START_TOKEN) {
216		seq_puts(m, "USE VID      TY NAME\n");
217		return 0;
218	}
219
220	seq_printf(m, "%3d %08llx %s %s\n",
221		   atomic_read(&vol->usage), vol->vid,
222		   afs_vol_types[vol->type],
223		   vol->name);
224
225	return 0;
226}
227
228static void *afs_proc_cell_volumes_start(struct seq_file *m, loff_t *_pos)
229	__acquires(cell->proc_lock)
230{
231	struct afs_cell *cell = PDE_DATA(file_inode(m->file));
232
233	rcu_read_lock();
234	return seq_hlist_start_head_rcu(&cell->proc_volumes, *_pos);
235}
236
237static void *afs_proc_cell_volumes_next(struct seq_file *m, void *v,
238					loff_t *_pos)
239{
240	struct afs_cell *cell = PDE_DATA(file_inode(m->file));
241
242	return seq_hlist_next_rcu(v, &cell->proc_volumes, _pos);
243}
244
245static void afs_proc_cell_volumes_stop(struct seq_file *m, void *v)
246	__releases(cell->proc_lock)
247{
248	rcu_read_unlock();
249}
250
251static const struct seq_operations afs_proc_cell_volumes_ops = {
252	.start	= afs_proc_cell_volumes_start,
253	.next	= afs_proc_cell_volumes_next,
254	.stop	= afs_proc_cell_volumes_stop,
255	.show	= afs_proc_cell_volumes_show,
256};
257
258static const char *const dns_record_sources[NR__dns_record_source + 1] = {
259	[DNS_RECORD_UNAVAILABLE]	= "unav",
260	[DNS_RECORD_FROM_CONFIG]	= "cfg",
261	[DNS_RECORD_FROM_DNS_A]		= "A",
262	[DNS_RECORD_FROM_DNS_AFSDB]	= "AFSDB",
263	[DNS_RECORD_FROM_DNS_SRV]	= "SRV",
264	[DNS_RECORD_FROM_NSS]		= "nss",
265	[NR__dns_record_source]		= "[weird]"
266};
267
268static const char *const dns_lookup_statuses[NR__dns_lookup_status + 1] = {
269	[DNS_LOOKUP_NOT_DONE]		= "no-lookup",
270	[DNS_LOOKUP_GOOD]		= "good",
271	[DNS_LOOKUP_GOOD_WITH_BAD]	= "good/bad",
272	[DNS_LOOKUP_BAD]		= "bad",
273	[DNS_LOOKUP_GOT_NOT_FOUND]	= "not-found",
274	[DNS_LOOKUP_GOT_LOCAL_FAILURE]	= "local-failure",
275	[DNS_LOOKUP_GOT_TEMP_FAILURE]	= "temp-failure",
276	[DNS_LOOKUP_GOT_NS_FAILURE]	= "ns-failure",
277	[NR__dns_lookup_status]		= "[weird]"
278};
279
280/*
281 * Display the list of Volume Location servers we're using for a cell.
282 */
283static int afs_proc_cell_vlservers_show(struct seq_file *m, void *v)
284{
285	const struct afs_vl_seq_net_private *priv = m->private;
286	const struct afs_vlserver_list *vllist = priv->vllist;
287	const struct afs_vlserver_entry *entry;
288	const struct afs_vlserver *vlserver;
289	const struct afs_addr_list *alist;
290	int i;
291
292	if (v == SEQ_START_TOKEN) {
293		seq_printf(m, "# source %s, status %s\n",
294			   dns_record_sources[vllist ? vllist->source : 0],
295			   dns_lookup_statuses[vllist ? vllist->status : 0]);
296		return 0;
297	}
298
299	entry = v;
300	vlserver = entry->server;
301	alist = rcu_dereference(vlserver->addresses);
302
303	seq_printf(m, "%s [p=%hu w=%hu s=%s,%s]:\n",
304		   vlserver->name, entry->priority, entry->weight,
305		   dns_record_sources[alist ? alist->source : entry->source],
306		   dns_lookup_statuses[alist ? alist->status : entry->status]);
307	if (alist) {
308		for (i = 0; i < alist->nr_addrs; i++)
309			seq_printf(m, " %c %pISpc\n",
310				   alist->preferred == i ? '>' : '-',
311				   &alist->addrs[i].transport);
312	}
313	seq_printf(m, " info: fl=%lx rtt=%d\n", vlserver->flags, vlserver->rtt);
314	seq_printf(m, " probe: fl=%x e=%d ac=%d out=%d\n",
315		   vlserver->probe.flags, vlserver->probe.error,
316		   vlserver->probe.abort_code,
317		   atomic_read(&vlserver->probe_outstanding));
318	return 0;
319}
320
321static void *afs_proc_cell_vlservers_start(struct seq_file *m, loff_t *_pos)
322	__acquires(rcu)
323{
324	struct afs_vl_seq_net_private *priv = m->private;
325	struct afs_vlserver_list *vllist;
326	struct afs_cell *cell = PDE_DATA(file_inode(m->file));
327	loff_t pos = *_pos;
328
329	rcu_read_lock();
330
331	vllist = rcu_dereference(cell->vl_servers);
332	priv->vllist = vllist;
333
334	if (pos < 0)
335		*_pos = pos = 0;
336	if (pos == 0)
337		return SEQ_START_TOKEN;
338
339	if (pos - 1 >= vllist->nr_servers)
340		return NULL;
341
342	return &vllist->servers[pos - 1];
343}
344
345static void *afs_proc_cell_vlservers_next(struct seq_file *m, void *v,
346					  loff_t *_pos)
347{
348	struct afs_vl_seq_net_private *priv = m->private;
349	struct afs_vlserver_list *vllist = priv->vllist;
350	loff_t pos;
351
352	pos = *_pos;
353	pos++;
354	*_pos = pos;
355	if (!vllist || pos - 1 >= vllist->nr_servers)
356		return NULL;
357
358	return &vllist->servers[pos - 1];
359}
360
361static void afs_proc_cell_vlservers_stop(struct seq_file *m, void *v)
362	__releases(rcu)
363{
364	rcu_read_unlock();
365}
366
367static const struct seq_operations afs_proc_cell_vlservers_ops = {
368	.start	= afs_proc_cell_vlservers_start,
369	.next	= afs_proc_cell_vlservers_next,
370	.stop	= afs_proc_cell_vlservers_stop,
371	.show	= afs_proc_cell_vlservers_show,
372};
373
374/*
375 * Display the list of fileservers we're using within a namespace.
376 */
377static int afs_proc_servers_show(struct seq_file *m, void *v)
378{
379	struct afs_server *server;
380	struct afs_addr_list *alist;
381	int i;
382
383	if (v == SEQ_START_TOKEN) {
384		seq_puts(m, "UUID                                 REF ACT\n");
385		return 0;
386	}
387
388	server = list_entry(v, struct afs_server, proc_link);
389	alist = rcu_dereference(server->addresses);
390	seq_printf(m, "%pU %3d %3d\n",
391		   &server->uuid,
392		   atomic_read(&server->ref),
393		   atomic_read(&server->active));
394	seq_printf(m, "  - info: fl=%lx rtt=%u brk=%x\n",
395		   server->flags, server->rtt, server->cb_s_break);
396	seq_printf(m, "  - probe: last=%d out=%d\n",
397		   (int)(jiffies - server->probed_at) / HZ,
398		   atomic_read(&server->probe_outstanding));
399	seq_printf(m, "  - ALIST v=%u rsp=%lx f=%lx\n",
400		   alist->version, alist->responded, alist->failed);
401	for (i = 0; i < alist->nr_addrs; i++)
402		seq_printf(m, "    [%x] %pISpc%s\n",
403			   i, &alist->addrs[i].transport,
404			   alist->preferred == i ? "*" : "");
405	return 0;
406}
407
408static void *afs_proc_servers_start(struct seq_file *m, loff_t *_pos)
409	__acquires(rcu)
410{
411	rcu_read_lock();
412	return seq_hlist_start_head_rcu(&afs_seq2net(m)->fs_proc, *_pos);
413}
414
415static void *afs_proc_servers_next(struct seq_file *m, void *v, loff_t *_pos)
416{
417	return seq_hlist_next_rcu(v, &afs_seq2net(m)->fs_proc, _pos);
418}
419
420static void afs_proc_servers_stop(struct seq_file *m, void *v)
421	__releases(rcu)
422{
423	rcu_read_unlock();
424}
425
426static const struct seq_operations afs_proc_servers_ops = {
427	.start	= afs_proc_servers_start,
428	.next	= afs_proc_servers_next,
429	.stop	= afs_proc_servers_stop,
430	.show	= afs_proc_servers_show,
431};
432
433/*
434 * Display the list of strings that may be substituted for the @sys pathname
435 * macro.
436 */
437static int afs_proc_sysname_show(struct seq_file *m, void *v)
438{
439	struct afs_net *net = afs_seq2net(m);
440	struct afs_sysnames *sysnames = net->sysnames;
441	unsigned int i = (unsigned long)v - 1;
442
443	if (i < sysnames->nr)
444		seq_printf(m, "%s\n", sysnames->subs[i]);
445	return 0;
446}
447
448static void *afs_proc_sysname_start(struct seq_file *m, loff_t *pos)
449	__acquires(&net->sysnames_lock)
450{
451	struct afs_net *net = afs_seq2net(m);
452	struct afs_sysnames *names;
453
454	read_lock(&net->sysnames_lock);
455
456	names = net->sysnames;
457	if (*pos >= names->nr)
458		return NULL;
459	return (void *)(unsigned long)(*pos + 1);
460}
461
462static void *afs_proc_sysname_next(struct seq_file *m, void *v, loff_t *pos)
463{
464	struct afs_net *net = afs_seq2net(m);
465	struct afs_sysnames *names = net->sysnames;
466
467	*pos += 1;
468	if (*pos >= names->nr)
469		return NULL;
470	return (void *)(unsigned long)(*pos + 1);
471}
472
473static void afs_proc_sysname_stop(struct seq_file *m, void *v)
474	__releases(&net->sysnames_lock)
475{
476	struct afs_net *net = afs_seq2net(m);
477
478	read_unlock(&net->sysnames_lock);
479}
480
481static const struct seq_operations afs_proc_sysname_ops = {
482	.start	= afs_proc_sysname_start,
483	.next	= afs_proc_sysname_next,
484	.stop	= afs_proc_sysname_stop,
485	.show	= afs_proc_sysname_show,
486};
487
488/*
489 * Allow the @sys substitution to be configured.
490 */
491static int afs_proc_sysname_write(struct file *file, char *buf, size_t size)
492{
493	struct afs_sysnames *sysnames, *kill;
494	struct seq_file *m = file->private_data;
495	struct afs_net *net = afs_seq2net(m);
496	char *s, *p, *sub;
497	int ret, len;
498
499	sysnames = kzalloc(sizeof(*sysnames), GFP_KERNEL);
500	if (!sysnames)
501		return -ENOMEM;
502	refcount_set(&sysnames->usage, 1);
503	kill = sysnames;
504
505	p = buf;
506	while ((s = strsep(&p, " \t\n"))) {
507		len = strlen(s);
508		if (len == 0)
509			continue;
510		ret = -ENAMETOOLONG;
511		if (len >= AFSNAMEMAX)
512			goto error;
513
514		if (len >= 4 &&
515		    s[len - 4] == '@' &&
516		    s[len - 3] == 's' &&
517		    s[len - 2] == 'y' &&
518		    s[len - 1] == 's')
519			/* Protect against recursion */
520			goto invalid;
521
522		if (s[0] == '.' &&
523		    (len < 2 || (len == 2 && s[1] == '.')))
524			goto invalid;
525
526		if (memchr(s, '/', len))
527			goto invalid;
528
529		ret = -EFBIG;
530		if (sysnames->nr >= AFS_NR_SYSNAME)
531			goto out;
532
533		if (strcmp(s, afs_init_sysname) == 0) {
534			sub = (char *)afs_init_sysname;
535		} else {
536			ret = -ENOMEM;
537			sub = kmemdup(s, len + 1, GFP_KERNEL);
538			if (!sub)
539				goto out;
540		}
541
542		sysnames->subs[sysnames->nr] = sub;
543		sysnames->nr++;
544	}
545
546	if (sysnames->nr == 0) {
547		sysnames->subs[0] = sysnames->blank;
548		sysnames->nr++;
549	}
550
551	write_lock(&net->sysnames_lock);
552	kill = net->sysnames;
553	net->sysnames = sysnames;
554	write_unlock(&net->sysnames_lock);
555	ret = 0;
556out:
557	afs_put_sysnames(kill);
558	return ret;
559
560invalid:
561	ret = -EINVAL;
562error:
563	goto out;
564}
565
566void afs_put_sysnames(struct afs_sysnames *sysnames)
567{
568	int i;
569
570	if (sysnames && refcount_dec_and_test(&sysnames->usage)) {
571		for (i = 0; i < sysnames->nr; i++)
572			if (sysnames->subs[i] != afs_init_sysname &&
573			    sysnames->subs[i] != sysnames->blank)
574				kfree(sysnames->subs[i]);
575		kfree(sysnames);
576	}
577}
578
579/*
580 * Display general per-net namespace statistics
581 */
582static int afs_proc_stats_show(struct seq_file *m, void *v)
583{
584	struct afs_net *net = afs_seq2net_single(m);
585
586	seq_puts(m, "kAFS statistics\n");
587
588	seq_printf(m, "dir-mgmt: look=%u reval=%u inval=%u relpg=%u\n",
589		   atomic_read(&net->n_lookup),
590		   atomic_read(&net->n_reval),
591		   atomic_read(&net->n_inval),
592		   atomic_read(&net->n_relpg));
593
594	seq_printf(m, "dir-data: rdpg=%u\n",
595		   atomic_read(&net->n_read_dir));
596
597	seq_printf(m, "dir-edit: cr=%u rm=%u\n",
598		   atomic_read(&net->n_dir_cr),
599		   atomic_read(&net->n_dir_rm));
600
601	seq_printf(m, "file-rd : n=%u nb=%lu\n",
602		   atomic_read(&net->n_fetches),
603		   atomic_long_read(&net->n_fetch_bytes));
604	seq_printf(m, "file-wr : n=%u nb=%lu\n",
605		   atomic_read(&net->n_stores),
606		   atomic_long_read(&net->n_store_bytes));
607	return 0;
608}
609
610/*
611 * initialise /proc/fs/afs/<cell>/
612 */
613int afs_proc_cell_setup(struct afs_cell *cell)
614{
615	struct proc_dir_entry *dir;
616	struct afs_net *net = cell->net;
617
618	_enter("%p{%s},%p", cell, cell->name, net->proc_afs);
619
620	dir = proc_net_mkdir(net->net, cell->name, net->proc_afs);
621	if (!dir)
622		goto error_dir;
623
624	if (!proc_create_net_data("vlservers", 0444, dir,
625				  &afs_proc_cell_vlservers_ops,
626				  sizeof(struct afs_vl_seq_net_private),
627				  cell) ||
628	    !proc_create_net_data("volumes", 0444, dir,
629				  &afs_proc_cell_volumes_ops,
630				  sizeof(struct seq_net_private),
631				  cell))
632		goto error_tree;
633
634	_leave(" = 0");
635	return 0;
636
637error_tree:
638	remove_proc_subtree(cell->name, net->proc_afs);
639error_dir:
640	_leave(" = -ENOMEM");
641	return -ENOMEM;
642}
643
644/*
645 * remove /proc/fs/afs/<cell>/
646 */
647void afs_proc_cell_remove(struct afs_cell *cell)
648{
649	struct afs_net *net = cell->net;
650
651	_enter("");
652	remove_proc_subtree(cell->name, net->proc_afs);
653	_leave("");
654}
655
656/*
657 * initialise the /proc/fs/afs/ directory
658 */
659int afs_proc_init(struct afs_net *net)
660{
661	struct proc_dir_entry *p;
662
663	_enter("");
664
665	p = proc_net_mkdir(net->net, "afs", net->net->proc_net);
666	if (!p)
667		goto error_dir;
668
669	if (!proc_create_net_data_write("cells", 0644, p,
670					&afs_proc_cells_ops,
671					afs_proc_cells_write,
672					sizeof(struct seq_net_private),
673					NULL) ||
674	    !proc_create_net_single_write("rootcell", 0644, p,
675					  afs_proc_rootcell_show,
676					  afs_proc_rootcell_write,
677					  NULL) ||
678	    !proc_create_net("servers", 0444, p, &afs_proc_servers_ops,
679			     sizeof(struct seq_net_private)) ||
680	    !proc_create_net_single("stats", 0444, p, afs_proc_stats_show, NULL) ||
681	    !proc_create_net_data_write("sysname", 0644, p,
682					&afs_proc_sysname_ops,
683					afs_proc_sysname_write,
684					sizeof(struct seq_net_private),
685					NULL))
686		goto error_tree;
687
688	net->proc_afs = p;
689	_leave(" = 0");
690	return 0;
691
692error_tree:
693	proc_remove(p);
694error_dir:
695	_leave(" = -ENOMEM");
696	return -ENOMEM;
697}
698
699/*
700 * clean up the /proc/fs/afs/ directory
701 */
702void afs_proc_cleanup(struct afs_net *net)
703{
704	proc_remove(net->proc_afs);
705	net->proc_afs = NULL;
706}