David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 1 | /* /proc interface for AFS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/slab.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/proc_fs.h> |
| 15 | #include <linux/seq_file.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 16 | #include <linux/sched.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 17 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "internal.h" |
| 19 | |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 20 | static inline struct afs_net *afs_proc2net(struct file *f) |
| 21 | { |
| 22 | return &__afs_net; |
| 23 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 25 | static inline struct afs_net *afs_seq2net(struct seq_file *m) |
| 26 | { |
| 27 | return &__afs_net; // TODO: use seq_file_net(m) |
| 28 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | static int afs_proc_cells_open(struct inode *inode, struct file *file); |
| 31 | static void *afs_proc_cells_start(struct seq_file *p, loff_t *pos); |
| 32 | static void *afs_proc_cells_next(struct seq_file *p, void *v, loff_t *pos); |
| 33 | static void afs_proc_cells_stop(struct seq_file *p, void *v); |
| 34 | static int afs_proc_cells_show(struct seq_file *m, void *v); |
| 35 | static ssize_t afs_proc_cells_write(struct file *file, const char __user *buf, |
| 36 | size_t size, loff_t *_pos); |
| 37 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 38 | static const struct seq_operations afs_proc_cells_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | .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 Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 45 | static const struct file_operations afs_proc_cells_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | .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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | static ssize_t afs_proc_rootcell_read(struct file *file, char __user *buf, |
| 54 | size_t size, loff_t *_pos); |
| 55 | static 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 Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 59 | static const struct file_operations afs_proc_rootcell_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | .read = afs_proc_rootcell_read, |
| 61 | .write = afs_proc_rootcell_write, |
| 62 | .llseek = no_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | }; |
| 64 | |
| 65 | static int afs_proc_cell_volumes_open(struct inode *inode, struct file *file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | static void *afs_proc_cell_volumes_start(struct seq_file *p, loff_t *pos); |
| 67 | static void *afs_proc_cell_volumes_next(struct seq_file *p, void *v, |
| 68 | loff_t *pos); |
| 69 | static void afs_proc_cell_volumes_stop(struct seq_file *p, void *v); |
| 70 | static int afs_proc_cell_volumes_show(struct seq_file *m, void *v); |
| 71 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 72 | static const struct seq_operations afs_proc_cell_volumes_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | .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 Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 79 | static const struct file_operations afs_proc_cell_volumes_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | .open = afs_proc_cell_volumes_open, |
| 81 | .read = seq_read, |
| 82 | .llseek = seq_lseek, |
Al Viro | b42d570 | 2013-11-22 01:53:47 -0500 | [diff] [blame] | 83 | .release = seq_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | static int afs_proc_cell_vlservers_open(struct inode *inode, |
| 87 | struct file *file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | static void *afs_proc_cell_vlservers_start(struct seq_file *p, loff_t *pos); |
| 89 | static void *afs_proc_cell_vlservers_next(struct seq_file *p, void *v, |
| 90 | loff_t *pos); |
| 91 | static void afs_proc_cell_vlservers_stop(struct seq_file *p, void *v); |
| 92 | static int afs_proc_cell_vlservers_show(struct seq_file *m, void *v); |
| 93 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 94 | static const struct seq_operations afs_proc_cell_vlservers_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | .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 Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 101 | static const struct file_operations afs_proc_cell_vlservers_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | .open = afs_proc_cell_vlservers_open, |
| 103 | .read = seq_read, |
| 104 | .llseek = seq_lseek, |
Al Viro | b42d570 | 2013-11-22 01:53:47 -0500 | [diff] [blame] | 105 | .release = seq_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | }; |
| 107 | |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 108 | static int afs_proc_servers_open(struct inode *inode, struct file *file); |
| 109 | static void *afs_proc_servers_start(struct seq_file *p, loff_t *pos); |
| 110 | static void *afs_proc_servers_next(struct seq_file *p, void *v, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | loff_t *pos); |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 112 | static void afs_proc_servers_stop(struct seq_file *p, void *v); |
| 113 | static int afs_proc_servers_show(struct seq_file *m, void *v); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 115 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | }; |
| 121 | |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 122 | static const struct file_operations afs_proc_servers_fops = { |
| 123 | .open = afs_proc_servers_open, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | .read = seq_read, |
| 125 | .llseek = seq_lseek, |
Al Viro | b42d570 | 2013-11-22 01:53:47 -0500 | [diff] [blame] | 126 | .release = seq_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | }; |
| 128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | /* |
| 130 | * initialise the /proc/fs/afs/ directory |
| 131 | */ |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 132 | int afs_proc_init(struct afs_net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | _enter(""); |
| 135 | |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 136 | net->proc_afs = proc_mkdir("fs/afs", NULL); |
| 137 | if (!net->proc_afs) |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 138 | goto error_dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 140 | if (!proc_create("cells", 0644, net->proc_afs, &afs_proc_cells_fops) || |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 141 | !proc_create("rootcell", 0644, net->proc_afs, &afs_proc_rootcell_fops) || |
| 142 | !proc_create("servers", 0644, net->proc_afs, &afs_proc_servers_fops)) |
Al Viro | b42d570 | 2013-11-22 01:53:47 -0500 | [diff] [blame] | 143 | goto error_tree; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
| 145 | _leave(" = 0"); |
| 146 | return 0; |
| 147 | |
Al Viro | b42d570 | 2013-11-22 01:53:47 -0500 | [diff] [blame] | 148 | error_tree: |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 149 | proc_remove(net->proc_afs); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 150 | error_dir: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | _leave(" = -ENOMEM"); |
| 152 | return -ENOMEM; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 153 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | /* |
| 156 | * clean up the /proc/fs/afs/ directory |
| 157 | */ |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 158 | void afs_proc_cleanup(struct afs_net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | { |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 160 | proc_remove(net->proc_afs); |
| 161 | net->proc_afs = NULL; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 162 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | /* |
| 165 | * open "/proc/fs/afs/cells" which provides a summary of extant cells |
| 166 | */ |
| 167 | static int afs_proc_cells_open(struct inode *inode, struct file *file) |
| 168 | { |
| 169 | struct seq_file *m; |
| 170 | int ret; |
| 171 | |
| 172 | ret = seq_open(file, &afs_proc_cells_ops); |
| 173 | if (ret < 0) |
| 174 | return ret; |
| 175 | |
| 176 | m = file->private_data; |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 177 | m->private = PDE_DATA(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 179 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | /* |
| 182 | * set up the iterator to start reading from the cells list and return the |
| 183 | * first item |
| 184 | */ |
| 185 | static void *afs_proc_cells_start(struct seq_file *m, loff_t *_pos) |
| 186 | { |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 187 | struct afs_net *net = afs_seq2net(m); |
| 188 | |
David Howells | 989782d | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 189 | rcu_read_lock(); |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 190 | return seq_list_start_head(&net->proc_cells, *_pos); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 191 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | /* |
| 194 | * move to next cell in cells list |
| 195 | */ |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 196 | static void *afs_proc_cells_next(struct seq_file *m, void *v, loff_t *pos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | { |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 198 | struct afs_net *net = afs_seq2net(m); |
| 199 | |
| 200 | return seq_list_next(v, &net->proc_cells, pos); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 201 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | /* |
| 204 | * clean up after reading from the cells list |
| 205 | */ |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 206 | static void afs_proc_cells_stop(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | { |
David Howells | 989782d | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 208 | rcu_read_unlock(); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 209 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | /* |
| 212 | * display a header line followed by a load of cell lines |
| 213 | */ |
| 214 | static int afs_proc_cells_show(struct seq_file *m, void *v) |
| 215 | { |
| 216 | struct afs_cell *cell = list_entry(v, struct afs_cell, proc_link); |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 217 | struct afs_net *net = afs_seq2net(m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 219 | if (v == &net->proc_cells) { |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 220 | /* display header on line 1 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | seq_puts(m, "USE NAME\n"); |
| 222 | return 0; |
| 223 | } |
| 224 | |
| 225 | /* display one cell per line on subsequent lines */ |
David Howells | 989782d | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 226 | seq_printf(m, "%3u %s\n", atomic_read(&cell->usage), cell->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 228 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | /* |
| 231 | * handle writes to /proc/fs/afs/cells |
| 232 | * - to add cells: echo "add <cellname> <IP>[:<IP>][:<IP>]" |
| 233 | */ |
| 234 | static ssize_t afs_proc_cells_write(struct file *file, const char __user *buf, |
| 235 | size_t size, loff_t *_pos) |
| 236 | { |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 237 | struct afs_net *net = afs_proc2net(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | char *kbuf, *name, *args; |
| 239 | int ret; |
| 240 | |
| 241 | /* start by dragging the command into memory */ |
| 242 | if (size <= 1 || size >= PAGE_SIZE) |
| 243 | return -EINVAL; |
| 244 | |
Al Viro | 16e5c1f | 2015-12-24 00:06:05 -0500 | [diff] [blame] | 245 | kbuf = memdup_user_nul(buf, size); |
| 246 | if (IS_ERR(kbuf)) |
| 247 | return PTR_ERR(kbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
| 249 | /* trim to first NL */ |
| 250 | name = memchr(kbuf, '\n', size); |
| 251 | if (name) |
| 252 | *name = 0; |
| 253 | |
| 254 | /* split into command, name and argslist */ |
| 255 | name = strchr(kbuf, ' '); |
| 256 | if (!name) |
| 257 | goto inval; |
| 258 | do { |
| 259 | *name++ = 0; |
| 260 | } while(*name == ' '); |
| 261 | if (!*name) |
| 262 | goto inval; |
| 263 | |
| 264 | args = strchr(name, ' '); |
| 265 | if (!args) |
| 266 | goto inval; |
| 267 | do { |
| 268 | *args++ = 0; |
| 269 | } while(*args == ' '); |
| 270 | if (!*args) |
| 271 | goto inval; |
| 272 | |
| 273 | /* determine command to perform */ |
| 274 | _debug("cmd=%s name=%s args=%s", kbuf, name, args); |
| 275 | |
| 276 | if (strcmp(kbuf, "add") == 0) { |
| 277 | struct afs_cell *cell; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
David Howells | 989782d | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 279 | cell = afs_lookup_cell(net, name, strlen(name), args, true); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 280 | if (IS_ERR(cell)) { |
| 281 | ret = PTR_ERR(cell); |
| 282 | goto done; |
| 283 | } |
| 284 | |
David Howells | 989782d | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 285 | set_bit(AFS_CELL_FL_NO_GC, &cell->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | printk("kAFS: Added new cell '%s'\n", name); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 287 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | goto inval; |
| 289 | } |
| 290 | |
| 291 | ret = size; |
| 292 | |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 293 | done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | kfree(kbuf); |
| 295 | _leave(" = %d", ret); |
| 296 | return ret; |
| 297 | |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 298 | inval: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | ret = -EINVAL; |
| 300 | printk("kAFS: Invalid Command on /proc/fs/afs/cells file\n"); |
| 301 | goto done; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 302 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | static ssize_t afs_proc_rootcell_read(struct file *file, char __user *buf, |
| 305 | size_t size, loff_t *_pos) |
| 306 | { |
| 307 | return 0; |
| 308 | } |
| 309 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | /* |
| 311 | * handle writes to /proc/fs/afs/rootcell |
| 312 | * - to initialize rootcell: echo "cell.name:192.168.231.14" |
| 313 | */ |
| 314 | static ssize_t afs_proc_rootcell_write(struct file *file, |
| 315 | const char __user *buf, |
| 316 | size_t size, loff_t *_pos) |
| 317 | { |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 318 | struct afs_net *net = afs_proc2net(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | char *kbuf, *s; |
| 320 | int ret; |
| 321 | |
| 322 | /* start by dragging the command into memory */ |
| 323 | if (size <= 1 || size >= PAGE_SIZE) |
| 324 | return -EINVAL; |
| 325 | |
Al Viro | 16e5c1f | 2015-12-24 00:06:05 -0500 | [diff] [blame] | 326 | kbuf = memdup_user_nul(buf, size); |
| 327 | if (IS_ERR(kbuf)) |
| 328 | return PTR_ERR(kbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | |
| 330 | /* trim to first NL */ |
| 331 | s = memchr(kbuf, '\n', size); |
| 332 | if (s) |
| 333 | *s = 0; |
| 334 | |
| 335 | /* determine command to perform */ |
| 336 | _debug("rootcell=%s", kbuf); |
| 337 | |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 338 | ret = afs_cell_init(net, kbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | if (ret >= 0) |
| 340 | ret = size; /* consume everything, always */ |
| 341 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | kfree(kbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | _leave(" = %d", ret); |
| 344 | return ret; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 345 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | /* |
| 348 | * initialise /proc/fs/afs/<cell>/ |
| 349 | */ |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 350 | int afs_proc_cell_setup(struct afs_net *net, struct afs_cell *cell) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | { |
Al Viro | b42d570 | 2013-11-22 01:53:47 -0500 | [diff] [blame] | 352 | struct proc_dir_entry *dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
David Howells | 989782d | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 354 | _enter("%p{%s},%p", cell, cell->name, net->proc_afs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 356 | dir = proc_mkdir(cell->name, net->proc_afs); |
Al Viro | b42d570 | 2013-11-22 01:53:47 -0500 | [diff] [blame] | 357 | if (!dir) |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 358 | goto error_dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 360 | if (!proc_create_data("vlservers", 0, dir, |
| 361 | &afs_proc_cell_vlservers_fops, cell) || |
Al Viro | b42d570 | 2013-11-22 01:53:47 -0500 | [diff] [blame] | 362 | !proc_create_data("volumes", 0, dir, |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 363 | &afs_proc_cell_volumes_fops, cell)) |
Al Viro | b42d570 | 2013-11-22 01:53:47 -0500 | [diff] [blame] | 364 | goto error_tree; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
| 366 | _leave(" = 0"); |
| 367 | return 0; |
| 368 | |
Al Viro | b42d570 | 2013-11-22 01:53:47 -0500 | [diff] [blame] | 369 | error_tree: |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 370 | remove_proc_subtree(cell->name, net->proc_afs); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 371 | error_dir: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | _leave(" = -ENOMEM"); |
| 373 | return -ENOMEM; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 374 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | /* |
| 377 | * remove /proc/fs/afs/<cell>/ |
| 378 | */ |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 379 | void afs_proc_cell_remove(struct afs_net *net, struct afs_cell *cell) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | { |
| 381 | _enter(""); |
| 382 | |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 383 | remove_proc_subtree(cell->name, net->proc_afs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | |
| 385 | _leave(""); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 386 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | /* |
| 389 | * open "/proc/fs/afs/<cell>/volumes" which provides a summary of extant cells |
| 390 | */ |
| 391 | static int afs_proc_cell_volumes_open(struct inode *inode, struct file *file) |
| 392 | { |
| 393 | struct afs_cell *cell; |
| 394 | struct seq_file *m; |
| 395 | int ret; |
| 396 | |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 397 | cell = PDE_DATA(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | if (!cell) |
| 399 | return -ENOENT; |
| 400 | |
| 401 | ret = seq_open(file, &afs_proc_cell_volumes_ops); |
| 402 | if (ret < 0) |
| 403 | return ret; |
| 404 | |
| 405 | m = file->private_data; |
| 406 | m->private = cell; |
| 407 | |
| 408 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 409 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | * set up the iterator to start reading from the cells list and return the |
| 413 | * first item |
| 414 | */ |
| 415 | static void *afs_proc_cell_volumes_start(struct seq_file *m, loff_t *_pos) |
| 416 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | struct afs_cell *cell = m->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | |
| 419 | _enter("cell=%p pos=%Ld", cell, *_pos); |
| 420 | |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 421 | read_lock(&cell->proc_lock); |
| 422 | return seq_list_start_head(&cell->proc_volumes, *_pos); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 423 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | /* |
| 426 | * move to next cell in cells list |
| 427 | */ |
| 428 | static void *afs_proc_cell_volumes_next(struct seq_file *p, void *v, |
| 429 | loff_t *_pos) |
| 430 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | struct afs_cell *cell = p->private; |
| 432 | |
| 433 | _enter("cell=%p pos=%Ld", cell, *_pos); |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 434 | return seq_list_next(v, &cell->proc_volumes, _pos); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 435 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | /* |
| 438 | * clean up after reading from the cells list |
| 439 | */ |
| 440 | static void afs_proc_cell_volumes_stop(struct seq_file *p, void *v) |
| 441 | { |
| 442 | struct afs_cell *cell = p->private; |
| 443 | |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 444 | read_unlock(&cell->proc_lock); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 445 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 447 | static const char afs_vol_types[3][3] = { |
| 448 | [AFSVL_RWVOL] = "RW", |
| 449 | [AFSVL_ROVOL] = "RO", |
| 450 | [AFSVL_BACKVOL] = "BK", |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 451 | }; |
| 452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | /* |
| 454 | * display a header line followed by a load of volume lines |
| 455 | */ |
| 456 | static int afs_proc_cell_volumes_show(struct seq_file *m, void *v) |
| 457 | { |
Pavel Emelianov | a6a8bd6 | 2007-07-15 23:39:52 -0700 | [diff] [blame] | 458 | struct afs_cell *cell = m->private; |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 459 | struct afs_volume *vol = list_entry(v, struct afs_volume, proc_link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 461 | /* Display header on line 1 */ |
| 462 | if (v == &cell->proc_volumes) { |
| 463 | seq_puts(m, "USE VID TY\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | return 0; |
| 465 | } |
| 466 | |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 467 | seq_printf(m, "%3d %08x %s\n", |
| 468 | atomic_read(&vol->usage), vol->vid, |
| 469 | afs_vol_types[vol->type]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
| 471 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 472 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | /* |
| 475 | * open "/proc/fs/afs/<cell>/vlservers" which provides a list of volume |
| 476 | * location server |
| 477 | */ |
| 478 | static int afs_proc_cell_vlservers_open(struct inode *inode, struct file *file) |
| 479 | { |
| 480 | struct afs_cell *cell; |
| 481 | struct seq_file *m; |
| 482 | int ret; |
| 483 | |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 484 | cell = PDE_DATA(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | if (!cell) |
| 486 | return -ENOENT; |
| 487 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 488 | ret = seq_open(file, &afs_proc_cell_vlservers_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | if (ret<0) |
| 490 | return ret; |
| 491 | |
| 492 | m = file->private_data; |
| 493 | m->private = cell; |
| 494 | |
| 495 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 496 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | * set up the iterator to start reading from the cells list and return the |
| 500 | * first item |
| 501 | */ |
| 502 | static void *afs_proc_cell_vlservers_start(struct seq_file *m, loff_t *_pos) |
| 503 | { |
David Howells | 8b2a464 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 504 | struct afs_addr_list *alist; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | struct afs_cell *cell = m->private; |
| 506 | loff_t pos = *_pos; |
| 507 | |
David Howells | 8b2a464 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 508 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
David Howells | 8b2a464 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 510 | alist = rcu_dereference(cell->vl_addrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | |
| 512 | /* allow for the header line */ |
| 513 | if (!pos) |
| 514 | return (void *) 1; |
| 515 | pos--; |
| 516 | |
David Howells | 8b2a464 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 517 | if (!alist || pos >= alist->nr_addrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | return NULL; |
| 519 | |
David Howells | 8b2a464 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 520 | return alist->addrs + pos; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 521 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | /* |
| 524 | * move to next cell in cells list |
| 525 | */ |
| 526 | static void *afs_proc_cell_vlservers_next(struct seq_file *p, void *v, |
| 527 | loff_t *_pos) |
| 528 | { |
David Howells | 8b2a464 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 529 | struct afs_addr_list *alist; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | struct afs_cell *cell = p->private; |
| 531 | loff_t pos; |
| 532 | |
David Howells | 8b2a464 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 533 | alist = rcu_dereference(cell->vl_addrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | |
| 535 | pos = *_pos; |
| 536 | (*_pos)++; |
David Howells | 8b2a464 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 537 | if (!alist || pos >= alist->nr_addrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | return NULL; |
| 539 | |
David Howells | 8b2a464 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 540 | return alist->addrs + pos; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 541 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | /* |
| 544 | * clean up after reading from the cells list |
| 545 | */ |
| 546 | static void afs_proc_cell_vlservers_stop(struct seq_file *p, void *v) |
| 547 | { |
David Howells | 8b2a464 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 548 | rcu_read_unlock(); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 549 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | /* |
| 552 | * display a header line followed by a load of volume lines |
| 553 | */ |
| 554 | static int afs_proc_cell_vlservers_show(struct seq_file *m, void *v) |
| 555 | { |
David Howells | 4d9df98 | 2017-11-02 15:27:47 +0000 | [diff] [blame] | 556 | struct sockaddr_rxrpc *addr = v; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | |
| 558 | /* display header on line 1 */ |
David Howells | 4d9df98 | 2017-11-02 15:27:47 +0000 | [diff] [blame] | 559 | if (v == (void *)1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | seq_puts(m, "ADDRESS\n"); |
| 561 | return 0; |
| 562 | } |
| 563 | |
| 564 | /* display one cell per line on subsequent lines */ |
David Howells | 4d9df98 | 2017-11-02 15:27:47 +0000 | [diff] [blame] | 565 | seq_printf(m, "%pISp\n", &addr->transport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 567 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | /* |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 570 | * open "/proc/fs/afs/servers" which provides a summary of active |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | * servers |
| 572 | */ |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 573 | static int afs_proc_servers_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | { |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 575 | return seq_open(file, &afs_proc_servers_ops); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 576 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | /* |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 579 | * Set up the iterator to start reading from the server list and return the |
| 580 | * first item. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | */ |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 582 | static void *afs_proc_servers_start(struct seq_file *m, loff_t *_pos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | { |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 584 | struct afs_net *net = afs_seq2net(m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 586 | rcu_read_lock(); |
| 587 | return seq_hlist_start_head_rcu(&net->fs_proc, *_pos); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 588 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | /* |
| 591 | * move to next cell in cells list |
| 592 | */ |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 593 | static void *afs_proc_servers_next(struct seq_file *m, void *v, loff_t *_pos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | { |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 595 | struct afs_net *net = afs_seq2net(m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 597 | return seq_hlist_next_rcu(v, &net->fs_proc, _pos); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 598 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | /* |
| 601 | * clean up after reading from the cells list |
| 602 | */ |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 603 | static void afs_proc_servers_stop(struct seq_file *p, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | { |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 605 | rcu_read_unlock(); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 606 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | /* |
| 609 | * display a header line followed by a load of volume lines |
| 610 | */ |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 611 | static int afs_proc_servers_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | { |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 613 | struct afs_server *server; |
| 614 | struct afs_addr_list *alist; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 616 | if (v == SEQ_START_TOKEN) { |
| 617 | seq_puts(m, "UUID USE ADDR\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | return 0; |
| 619 | } |
| 620 | |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 621 | server = list_entry(v, struct afs_server, proc_link); |
| 622 | alist = rcu_dereference(server->addresses); |
| 623 | seq_printf(m, "%pU %3d %pISp\n", |
| 624 | &server->uuid, |
| 625 | atomic_read(&server->usage), |
| 626 | &alist->addrs[alist->index].transport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 628 | } |