blob: e1b863449296c32a93408d72ba1c88a0c7ddf944 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howellsec268152007-04-26 15:49:28 -07002/* /proc interface for AFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/slab.h>
9#include <linux/module.h>
10#include <linux/proc_fs.h>
11#include <linux/seq_file.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040012#include <linux/sched.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080013#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include "internal.h"
15
David Howells0a5143f2018-10-20 00:57:57 +010016struct afs_vl_seq_net_private {
17 struct seq_net_private seq; /* Must be first */
18 struct afs_vlserver_list *vllist;
19};
20
David Howellsf044c882017-11-02 15:27:45 +000021static inline struct afs_net *afs_seq2net(struct seq_file *m)
22{
David Howells5b86d4f2018-05-18 11:46:15 +010023 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));
David Howellsf044c882017-11-02 15:27:45 +000029}
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/*
David Howells5d9de252018-05-18 11:46:15 +010032 * Display the list of cells known to the namespace.
David Howellsf0691682018-05-18 11:46:14 +010033 */
34static int afs_proc_cells_show(struct seq_file *m, void *v)
35{
David Howellsded2f4c2018-10-20 00:57:57 +010036 struct afs_vlserver_list *vllist;
37 struct afs_cell *cell;
David Howellsf0691682018-05-18 11:46:14 +010038
David Howells6b3944e2018-10-11 22:45:49 +010039 if (v == SEQ_START_TOKEN) {
David Howellsf0691682018-05-18 11:46:14 +010040 /* display header on line 1 */
David Howells88c853c2019-07-23 11:24:59 +010041 seq_puts(m, "USE ACT TTL SV ST NAME\n");
David Howellsf0691682018-05-18 11:46:14 +010042 return 0;
43 }
44
David Howellsded2f4c2018-10-20 00:57:57 +010045 cell = list_entry(v, struct afs_cell, proc_link);
46 vllist = rcu_dereference(cell->vl_servers);
47
David Howellsf0691682018-05-18 11:46:14 +010048 /* display one cell per line on subsequent lines */
David Howells88c853c2019-07-23 11:24:59 +010049 seq_printf(m, "%3u %3u %6lld %2u %2u %s\n",
50 atomic_read(&cell->ref),
51 atomic_read(&cell->active),
David Howellsded2f4c2018-10-20 00:57:57 +010052 cell->dns_expiry - ktime_get_real_seconds(),
David Howells88c853c2019-07-23 11:24:59 +010053 vllist ? vllist->nr_servers : 0,
David Howells8a070a92020-04-25 10:26:02 +010054 cell->state,
David Howellsded2f4c2018-10-20 00:57:57 +010055 cell->name);
David Howellsf0691682018-05-18 11:46:14 +010056 return 0;
57}
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static void *afs_proc_cells_start(struct seq_file *m, loff_t *_pos)
David Howellsfe342cf2018-04-09 21:12:31 +010060 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
David Howells989782d2017-11-02 15:27:50 +000062 rcu_read_lock();
David Howells6b3944e2018-10-11 22:45:49 +010063 return seq_hlist_start_head_rcu(&afs_seq2net(m)->proc_cells, *_pos);
David Howellsec268152007-04-26 15:49:28 -070064}
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
David Howellsf044c882017-11-02 15:27:45 +000066static void *afs_proc_cells_next(struct seq_file *m, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
David Howells6b3944e2018-10-11 22:45:49 +010068 return seq_hlist_next_rcu(v, &afs_seq2net(m)->proc_cells, pos);
David Howellsec268152007-04-26 15:49:28 -070069}
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
David Howellsf044c882017-11-02 15:27:45 +000071static void afs_proc_cells_stop(struct seq_file *m, void *v)
David Howellsfe342cf2018-04-09 21:12:31 +010072 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
David Howells989782d2017-11-02 15:27:50 +000074 rcu_read_unlock();
David Howellsec268152007-04-26 15:49:28 -070075}
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
David Howells5d9de252018-05-18 11:46:15 +010077static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * handle writes to /proc/fs/afs/cells
86 * - to add cells: echo "add <cellname> <IP>[:<IP>][:<IP>]"
87 */
David Howells5b86d4f2018-05-18 11:46:15 +010088static int afs_proc_cells_write(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
David Howells5b86d4f2018-05-18 11:46:15 +010090 struct seq_file *m = file->private_data;
91 struct afs_net *net = afs_seq2net(m);
92 char *name, *args;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 int ret;
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 /* trim to first NL */
David Howells5b86d4f2018-05-18 11:46:15 +010096 name = memchr(buf, '\n', size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (name)
98 *name = 0;
99
100 /* split into command, name and argslist */
David Howells5b86d4f2018-05-18 11:46:15 +0100101 name = strchr(buf, ' ');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (!name)
103 goto inval;
104 do {
105 *name++ = 0;
106 } while(*name == ' ');
107 if (!*name)
108 goto inval;
109
110 args = strchr(name, ' ');
David Howellsecfe9512018-09-07 23:55:17 +0100111 if (args) {
112 do {
113 *args++ = 0;
114 } while(*args == ' ');
115 if (!*args)
116 goto inval;
117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 /* determine command to perform */
David Howells5b86d4f2018-05-18 11:46:15 +0100120 _debug("cmd=%s name=%s args=%s", buf, name, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
David Howells5b86d4f2018-05-18 11:46:15 +0100122 if (strcmp(buf, "add") == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 struct afs_cell *cell;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
David Howells989782d2017-11-02 15:27:50 +0000125 cell = afs_lookup_cell(net, name, strlen(name), args, true);
David Howells08e0e7c2007-04-26 15:55:03 -0700126 if (IS_ERR(cell)) {
127 ret = PTR_ERR(cell);
128 goto done;
129 }
130
David Howells17814ae2018-04-09 21:12:31 +0100131 if (test_and_set_bit(AFS_CELL_FL_NO_GC, &cell->flags))
David Howellsdca54a72020-10-13 20:51:59 +0100132 afs_unuse_cell(net, cell, afs_cell_trace_unuse_no_pin);
David Howellsec268152007-04-26 15:49:28 -0700133 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 goto inval;
135 }
136
David Howells5b86d4f2018-05-18 11:46:15 +0100137 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
David Howellsec268152007-04-26 15:49:28 -0700139done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 _leave(" = %d", ret);
141 return ret;
142
David Howellsec268152007-04-26 15:49:28 -0700143inval:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 ret = -EINVAL;
145 printk("kAFS: Invalid Command on /proc/fs/afs/cells file\n");
146 goto done;
David Howellsec268152007-04-26 15:49:28 -0700147}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
David Howells5d9de252018-05-18 11:46:15 +0100149/*
David Howells5b86d4f2018-05-18 11:46:15 +0100150 * Display the name of the current workstation cell.
David Howells5d9de252018-05-18 11:46:15 +0100151 */
David Howells5b86d4f2018-05-18 11:46:15 +0100152static int afs_proc_rootcell_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
David Howells37ab6362018-04-06 14:17:23 +0100154 struct afs_cell *cell;
David Howells5b86d4f2018-05-18 11:46:15 +0100155 struct afs_net *net;
David Howells37ab6362018-04-06 14:17:23 +0100156
David Howells5b86d4f2018-05-18 11:46:15 +0100157 net = afs_seq2net_single(m);
David Howells88c853c2019-07-23 11:24:59 +0100158 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);
David Howells5b86d4f2018-05-18 11:46:15 +0100163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
David Howells5d9de252018-05-18 11:46:15 +0100167 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 */
David Howells5b86d4f2018-05-18 11:46:15 +0100172static int afs_proc_rootcell_write(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
David Howells5b86d4f2018-05-18 11:46:15 +0100174 struct seq_file *m = file->private_data;
175 struct afs_net *net = afs_seq2net_single(m);
176 char *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 int ret;
178
David Howells6f8880d2018-04-09 21:12:31 +0100179 ret = -EINVAL;
David Howells5b86d4f2018-05-18 11:46:15 +0100180 if (buf[0] == '.')
David Howells6f8880d2018-04-09 21:12:31 +0100181 goto out;
David Howells5b86d4f2018-05-18 11:46:15 +0100182 if (memchr(buf, '/', size))
David Howells6f8880d2018-04-09 21:12:31 +0100183 goto out;
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 /* trim to first NL */
David Howells5b86d4f2018-05-18 11:46:15 +0100186 s = memchr(buf, '\n', size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (s)
188 *s = 0;
189
190 /* determine command to perform */
David Howells5b86d4f2018-05-18 11:46:15 +0100191 _debug("rootcell=%s", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
David Howells5b86d4f2018-05-18 11:46:15 +0100193 ret = afs_cell_init(net, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
David Howells6f8880d2018-04-09 21:12:31 +0100195out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 _leave(" = %d", ret);
197 return ret;
David Howellsec268152007-04-26 15:49:28 -0700198}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
David Howellsf0691682018-05-18 11:46:14 +0100200static const char afs_vol_types[3][3] = {
201 [AFSVL_RWVOL] = "RW",
202 [AFSVL_ROVOL] = "RO",
203 [AFSVL_BACKVOL] = "BK",
204};
205
206/*
David Howells5d9de252018-05-18 11:46:15 +0100207 * Display the list of volumes known to a cell.
David Howellsf0691682018-05-18 11:46:14 +0100208 */
209static int afs_proc_cell_volumes_show(struct seq_file *m, void *v)
210{
David Howells20325962020-04-30 01:03:49 +0100211 struct afs_volume *vol = hlist_entry(v, struct afs_volume, proc_link);
David Howellsf0691682018-05-18 11:46:14 +0100212
213 /* Display header on line 1 */
David Howells20325962020-04-30 01:03:49 +0100214 if (v == SEQ_START_TOKEN) {
David Howells50559802019-12-11 08:58:59 +0000215 seq_puts(m, "USE VID TY NAME\n");
David Howellsf0691682018-05-18 11:46:14 +0100216 return 0;
217 }
218
David Howells50559802019-12-11 08:58:59 +0000219 seq_printf(m, "%3d %08llx %s %s\n",
David Howellsf0691682018-05-18 11:46:14 +0100220 atomic_read(&vol->usage), vol->vid,
David Howells50559802019-12-11 08:58:59 +0000221 afs_vol_types[vol->type],
222 vol->name);
David Howellsf0691682018-05-18 11:46:14 +0100223
224 return 0;
225}
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227static void *afs_proc_cell_volumes_start(struct seq_file *m, loff_t *_pos)
David Howellsfe342cf2018-04-09 21:12:31 +0100228 __acquires(cell->proc_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Muchun Song359745d2022-01-21 22:14:23 -0800230 struct afs_cell *cell = pde_data(file_inode(m->file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
David Howells20325962020-04-30 01:03:49 +0100232 rcu_read_lock();
233 return seq_hlist_start_head_rcu(&cell->proc_volumes, *_pos);
David Howellsec268152007-04-26 15:49:28 -0700234}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
David Howells5b86d4f2018-05-18 11:46:15 +0100236static void *afs_proc_cell_volumes_next(struct seq_file *m, void *v,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 loff_t *_pos)
238{
Muchun Song359745d2022-01-21 22:14:23 -0800239 struct afs_cell *cell = pde_data(file_inode(m->file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
David Howells20325962020-04-30 01:03:49 +0100241 return seq_hlist_next_rcu(v, &cell->proc_volumes, _pos);
David Howellsec268152007-04-26 15:49:28 -0700242}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
David Howells5b86d4f2018-05-18 11:46:15 +0100244static void afs_proc_cell_volumes_stop(struct seq_file *m, void *v)
David Howellsfe342cf2018-04-09 21:12:31 +0100245 __releases(cell->proc_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
David Howells20325962020-04-30 01:03:49 +0100247 rcu_read_unlock();
David Howellsec268152007-04-26 15:49:28 -0700248}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
David Howells5d9de252018-05-18 11:46:15 +0100250static 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
David Howells0a5143f2018-10-20 00:57:57 +0100257static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279/*
David Howells5d9de252018-05-18 11:46:15 +0100280 * Display the list of Volume Location servers we're using for a cell.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 */
David Howellsf0691682018-05-18 11:46:14 +0100282static int afs_proc_cell_vlservers_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
David Howells0a5143f2018-10-20 00:57:57 +0100284 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
David Howells0a5143f2018-10-20 00:57:57 +0100291 if (v == SEQ_START_TOKEN) {
292 seq_printf(m, "# source %s, status %s\n",
David Howellsca1cbbd2019-05-07 15:30:34 +0100293 dns_record_sources[vllist ? vllist->source : 0],
294 dns_lookup_statuses[vllist ? vllist->status : 0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 return 0;
296 }
297
David Howells0a5143f2018-10-20 00:57:57 +0100298 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",
David Howells3bf0fb62018-10-20 00:57:59 +0100309 alist->preferred == i ? '>' : '-',
David Howells0a5143f2018-10-20 00:57:57 +0100310 &alist->addrs[i].transport);
311 }
David Howellsb95b3092020-08-19 15:27:17 +0100312 seq_printf(m, " info: fl=%lx rtt=%d\n", vlserver->flags, vlserver->rtt);
David Howellsfb72cd32020-08-20 15:01:54 +0100313 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));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return 0;
David Howellsec268152007-04-26 15:49:28 -0700318}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320static void *afs_proc_cell_vlservers_start(struct seq_file *m, loff_t *_pos)
David Howellsfe342cf2018-04-09 21:12:31 +0100321 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
David Howells0a5143f2018-10-20 00:57:57 +0100323 struct afs_vl_seq_net_private *priv = m->private;
324 struct afs_vlserver_list *vllist;
Muchun Song359745d2022-01-21 22:14:23 -0800325 struct afs_cell *cell = pde_data(file_inode(m->file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 loff_t pos = *_pos;
327
David Howells8b2a4642017-11-02 15:27:50 +0000328 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
David Howells0a5143f2018-10-20 00:57:57 +0100330 vllist = rcu_dereference(cell->vl_servers);
331 priv->vllist = vllist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
David Howells0a5143f2018-10-20 00:57:57 +0100333 if (pos < 0)
334 *_pos = pos = 0;
335 if (pos == 0)
336 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
David Howellsca1cbbd2019-05-07 15:30:34 +0100338 if (pos - 1 >= vllist->nr_servers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return NULL;
340
David Howells0a5143f2018-10-20 00:57:57 +0100341 return &vllist->servers[pos - 1];
David Howellsec268152007-04-26 15:49:28 -0700342}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
David Howells5b86d4f2018-05-18 11:46:15 +0100344static void *afs_proc_cell_vlservers_next(struct seq_file *m, void *v,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 loff_t *_pos)
346{
David Howells0a5143f2018-10-20 00:57:57 +0100347 struct afs_vl_seq_net_private *priv = m->private;
348 struct afs_vlserver_list *vllist = priv->vllist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 loff_t pos;
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 pos = *_pos;
David Howells0a5143f2018-10-20 00:57:57 +0100352 pos++;
353 *_pos = pos;
354 if (!vllist || pos - 1 >= vllist->nr_servers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return NULL;
356
David Howells0a5143f2018-10-20 00:57:57 +0100357 return &vllist->servers[pos - 1];
David Howellsec268152007-04-26 15:49:28 -0700358}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
David Howells5b86d4f2018-05-18 11:46:15 +0100360static void afs_proc_cell_vlservers_stop(struct seq_file *m, void *v)
David Howellsfe342cf2018-04-09 21:12:31 +0100361 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
David Howells8b2a4642017-11-02 15:27:50 +0000363 rcu_read_unlock();
David Howellsec268152007-04-26 15:49:28 -0700364}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
David Howells5d9de252018-05-18 11:46:15 +0100366static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373/*
David Howells5d9de252018-05-18 11:46:15 +0100374 * Display the list of fileservers we're using within a namespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 */
David Howellsf0691682018-05-18 11:46:14 +0100376static int afs_proc_servers_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
David Howellsf0691682018-05-18 11:46:14 +0100378 struct afs_server *server;
379 struct afs_addr_list *alist;
David Howells0aac4bce2018-06-02 22:20:31 +0100380 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
David Howellsf0691682018-05-18 11:46:14 +0100382 if (v == SEQ_START_TOKEN) {
David Howells6d043a52020-04-20 22:34:12 +0100383 seq_puts(m, "UUID REF ACT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return 0;
385 }
386
David Howellsf0691682018-05-18 11:46:14 +0100387 server = list_entry(v, struct afs_server, proc_link);
388 alist = rcu_dereference(server->addresses);
David Howells6d043a52020-04-20 22:34:12 +0100389 seq_printf(m, "%pU %3d %3d\n",
David Howellsf0691682018-05-18 11:46:14 +0100390 &server->uuid,
David Howells977e5f82020-04-17 17:31:26 +0100391 atomic_read(&server->ref),
David Howells6d043a52020-04-20 22:34:12 +0100392 atomic_read(&server->active));
David Howells32275d32020-05-02 13:44:50 +0100393 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);
David Howells6d043a52020-04-20 22:34:12 +0100400 for (i = 0; i < alist->nr_addrs; i++)
401 seq_printf(m, " [%x] %pISpc%s\n",
402 i, &alist->addrs[i].transport,
David Howells3bf0fb62018-10-20 00:57:59 +0100403 alist->preferred == i ? "*" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return 0;
David Howellsec268152007-04-26 15:49:28 -0700405}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
David Howellsd2ddc772017-11-02 15:27:50 +0000407static void *afs_proc_servers_start(struct seq_file *m, loff_t *_pos)
David Howellsfe342cf2018-04-09 21:12:31 +0100408 __acquires(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
David Howellsd2ddc772017-11-02 15:27:50 +0000410 rcu_read_lock();
David Howells5d9de252018-05-18 11:46:15 +0100411 return seq_hlist_start_head_rcu(&afs_seq2net(m)->fs_proc, *_pos);
David Howellsec268152007-04-26 15:49:28 -0700412}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
David Howellsd2ddc772017-11-02 15:27:50 +0000414static void *afs_proc_servers_next(struct seq_file *m, void *v, loff_t *_pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
David Howells5d9de252018-05-18 11:46:15 +0100416 return seq_hlist_next_rcu(v, &afs_seq2net(m)->fs_proc, _pos);
David Howellsec268152007-04-26 15:49:28 -0700417}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
David Howells5b86d4f2018-05-18 11:46:15 +0100419static void afs_proc_servers_stop(struct seq_file *m, void *v)
David Howellsfe342cf2018-04-09 21:12:31 +0100420 __releases(rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
David Howellsd2ddc772017-11-02 15:27:50 +0000422 rcu_read_unlock();
David Howellsec268152007-04-26 15:49:28 -0700423}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
David Howells5d9de252018-05-18 11:46:15 +0100425static 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};
David Howells6f8880d2018-04-09 21:12:31 +0100431
David Howells6f8880d2018-04-09 21:12:31 +0100432/*
David Howells5d9de252018-05-18 11:46:15 +0100433 * Display the list of strings that may be substituted for the @sys pathname
434 * macro.
David Howells6f8880d2018-04-09 21:12:31 +0100435 */
David Howells5d9de252018-05-18 11:46:15 +0100436static int afs_proc_sysname_show(struct seq_file *m, void *v)
David Howells6f8880d2018-04-09 21:12:31 +0100437{
David Howells5d9de252018-05-18 11:46:15 +0100438 struct afs_net *net = afs_seq2net(m);
439 struct afs_sysnames *sysnames = net->sysnames;
440 unsigned int i = (unsigned long)v - 1;
David Howells6f8880d2018-04-09 21:12:31 +0100441
David Howells5d9de252018-05-18 11:46:15 +0100442 if (i < sysnames->nr)
443 seq_printf(m, "%s\n", sysnames->subs[i]);
David Howells6f8880d2018-04-09 21:12:31 +0100444 return 0;
445}
446
David Howells5d9de252018-05-18 11:46:15 +0100447static 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);
David Howells5b86d4f2018-05-18 11:46:15 +0100451 struct afs_sysnames *names;
David Howells5d9de252018-05-18 11:46:15 +0100452
453 read_lock(&net->sysnames_lock);
454
David Howells5b86d4f2018-05-18 11:46:15 +0100455 names = net->sysnames;
David Howells5d9de252018-05-18 11:46:15 +0100456 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
David Howells6f8880d2018-04-09 21:12:31 +0100487/*
David Howells5d9de252018-05-18 11:46:15 +0100488 * Allow the @sys substitution to be configured.
David Howells6f8880d2018-04-09 21:12:31 +0100489 */
David Howells5b86d4f2018-05-18 11:46:15 +0100490static int afs_proc_sysname_write(struct file *file, char *buf, size_t size)
David Howells6f8880d2018-04-09 21:12:31 +0100491{
David Howells5b86d4f2018-05-18 11:46:15 +0100492 struct afs_sysnames *sysnames, *kill;
David Howells6f8880d2018-04-09 21:12:31 +0100493 struct seq_file *m = file->private_data;
David Howells5b86d4f2018-05-18 11:46:15 +0100494 struct afs_net *net = afs_seq2net(m);
495 char *s, *p, *sub;
David Howells6f8880d2018-04-09 21:12:31 +0100496 int ret, len;
497
David Howells5b86d4f2018-05-18 11:46:15 +0100498 sysnames = kzalloc(sizeof(*sysnames), GFP_KERNEL);
David Howells6f8880d2018-04-09 21:12:31 +0100499 if (!sysnames)
David Howells5b86d4f2018-05-18 11:46:15 +0100500 return -ENOMEM;
501 refcount_set(&sysnames->usage, 1);
502 kill = sysnames;
David Howells6f8880d2018-04-09 21:12:31 +0100503
David Howells5b86d4f2018-05-18 11:46:15 +0100504 p = buf;
David Howells6f8880d2018-04-09 21:12:31 +0100505 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
David Howells5b86d4f2018-05-18 11:46:15 +0100545 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;
David Howells6f8880d2018-04-09 21:12:31 +0100555out:
David Howells5b86d4f2018-05-18 11:46:15 +0100556 afs_put_sysnames(kill);
David Howells6f8880d2018-04-09 21:12:31 +0100557 return ret;
558
559invalid:
560 ret = -EINVAL;
561error:
David Howells6f8880d2018-04-09 21:12:31 +0100562 goto out;
563}
564
David Howells5d9de252018-05-18 11:46:15 +0100565void 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]);
Zhihao Cheng2ca068b2020-06-02 09:30:45 +0800574 kfree(sysnames);
David Howells5d9de252018-05-18 11:46:15 +0100575 }
576}
577
David Howellsd55b4da2018-04-06 14:17:24 +0100578/*
579 * Display general per-net namespace statistics
580 */
581static int afs_proc_stats_show(struct seq_file *m, void *v)
582{
David Howells5b86d4f2018-05-18 11:46:15 +0100583 struct afs_net *net = afs_seq2net_single(m);
David Howellsd55b4da2018-04-06 14:17:24 +0100584
585 seq_puts(m, "kAFS statistics\n");
586
David Howellsf3ddee82018-04-06 14:17:25 +0100587 seq_printf(m, "dir-mgmt: look=%u reval=%u inval=%u relpg=%u\n",
David Howellsd55b4da2018-04-06 14:17:24 +0100588 atomic_read(&net->n_lookup),
589 atomic_read(&net->n_reval),
David Howellsf3ddee82018-04-06 14:17:25 +0100590 atomic_read(&net->n_inval),
591 atomic_read(&net->n_relpg));
David Howellsd55b4da2018-04-06 14:17:24 +0100592
593 seq_printf(m, "dir-data: rdpg=%u\n",
594 atomic_read(&net->n_read_dir));
David Howells63a46812018-04-06 14:17:25 +0100595
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));
David Howells76a5cb62018-04-06 14:17:26 +0100599
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));
David Howellsd55b4da2018-04-06 14:17:24 +0100606 return 0;
607}
David Howells10495a02018-05-18 11:46:14 +0100608
609/*
610 * initialise /proc/fs/afs/<cell>/
611 */
David Howells5b86d4f2018-05-18 11:46:15 +0100612int afs_proc_cell_setup(struct afs_cell *cell)
David Howells10495a02018-05-18 11:46:14 +0100613{
614 struct proc_dir_entry *dir;
David Howells5b86d4f2018-05-18 11:46:15 +0100615 struct afs_net *net = cell->net;
David Howells10495a02018-05-18 11:46:14 +0100616
617 _enter("%p{%s},%p", cell, cell->name, net->proc_afs);
618
David Howells5b86d4f2018-05-18 11:46:15 +0100619 dir = proc_net_mkdir(net->net, cell->name, net->proc_afs);
David Howells10495a02018-05-18 11:46:14 +0100620 if (!dir)
621 goto error_dir;
622
David Howells5b86d4f2018-05-18 11:46:15 +0100623 if (!proc_create_net_data("vlservers", 0444, dir,
624 &afs_proc_cell_vlservers_ops,
David Howells0a5143f2018-10-20 00:57:57 +0100625 sizeof(struct afs_vl_seq_net_private),
David Howells5b86d4f2018-05-18 11:46:15 +0100626 cell) ||
627 !proc_create_net_data("volumes", 0444, dir,
628 &afs_proc_cell_volumes_ops,
629 sizeof(struct seq_net_private),
630 cell))
David Howells10495a02018-05-18 11:46:14 +0100631 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 */
David Howells5b86d4f2018-05-18 11:46:15 +0100646void afs_proc_cell_remove(struct afs_cell *cell)
David Howells10495a02018-05-18 11:46:14 +0100647{
David Howells5b86d4f2018-05-18 11:46:15 +0100648 struct afs_net *net = cell->net;
649
David Howells10495a02018-05-18 11:46:14 +0100650 _enter("");
David Howells10495a02018-05-18 11:46:14 +0100651 remove_proc_subtree(cell->name, net->proc_afs);
David Howells10495a02018-05-18 11:46:14 +0100652 _leave("");
653}
654
655/*
656 * initialise the /proc/fs/afs/ directory
657 */
658int afs_proc_init(struct afs_net *net)
659{
David Howells5b86d4f2018-05-18 11:46:15 +0100660 struct proc_dir_entry *p;
661
David Howells10495a02018-05-18 11:46:14 +0100662 _enter("");
663
David Howells5b86d4f2018-05-18 11:46:15 +0100664 p = proc_net_mkdir(net->net, "afs", net->net->proc_net);
665 if (!p)
David Howells10495a02018-05-18 11:46:14 +0100666 goto error_dir;
667
David Howells5b86d4f2018-05-18 11:46:15 +0100668 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))
David Howells10495a02018-05-18 11:46:14 +0100685 goto error_tree;
686
David Howells5b86d4f2018-05-18 11:46:15 +0100687 net->proc_afs = p;
David Howells10495a02018-05-18 11:46:14 +0100688 _leave(" = 0");
689 return 0;
690
691error_tree:
David Howells5b86d4f2018-05-18 11:46:15 +0100692 proc_remove(p);
David Howells10495a02018-05-18 11:46:14 +0100693error_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}