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 | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <asm/uaccess.h> |
| 18 | #include "internal.h" |
| 19 | |
| 20 | static struct proc_dir_entry *proc_afs; |
| 21 | |
| 22 | |
| 23 | static int afs_proc_cells_open(struct inode *inode, struct file *file); |
| 24 | static void *afs_proc_cells_start(struct seq_file *p, loff_t *pos); |
| 25 | static void *afs_proc_cells_next(struct seq_file *p, void *v, loff_t *pos); |
| 26 | static void afs_proc_cells_stop(struct seq_file *p, void *v); |
| 27 | static int afs_proc_cells_show(struct seq_file *m, void *v); |
| 28 | static ssize_t afs_proc_cells_write(struct file *file, const char __user *buf, |
| 29 | size_t size, loff_t *_pos); |
| 30 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 31 | static const struct seq_operations afs_proc_cells_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | .start = afs_proc_cells_start, |
| 33 | .next = afs_proc_cells_next, |
| 34 | .stop = afs_proc_cells_stop, |
| 35 | .show = afs_proc_cells_show, |
| 36 | }; |
| 37 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 38 | static const struct file_operations afs_proc_cells_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | .open = afs_proc_cells_open, |
| 40 | .read = seq_read, |
| 41 | .write = afs_proc_cells_write, |
| 42 | .llseek = seq_lseek, |
| 43 | .release = seq_release, |
Denis V. Lunev | 21ac295 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 44 | .owner = THIS_MODULE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | }; |
| 46 | |
| 47 | static int afs_proc_rootcell_open(struct inode *inode, struct file *file); |
| 48 | static int afs_proc_rootcell_release(struct inode *inode, struct file *file); |
| 49 | static ssize_t afs_proc_rootcell_read(struct file *file, char __user *buf, |
| 50 | size_t size, loff_t *_pos); |
| 51 | static ssize_t afs_proc_rootcell_write(struct file *file, |
| 52 | const char __user *buf, |
| 53 | size_t size, loff_t *_pos); |
| 54 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 55 | static const struct file_operations afs_proc_rootcell_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | .open = afs_proc_rootcell_open, |
| 57 | .read = afs_proc_rootcell_read, |
| 58 | .write = afs_proc_rootcell_write, |
| 59 | .llseek = no_llseek, |
Denis V. Lunev | 21ac295 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 60 | .release = afs_proc_rootcell_release, |
| 61 | .owner = THIS_MODULE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | }; |
| 63 | |
| 64 | static int afs_proc_cell_volumes_open(struct inode *inode, struct file *file); |
| 65 | static int afs_proc_cell_volumes_release(struct inode *inode, |
| 66 | struct file *file); |
| 67 | static void *afs_proc_cell_volumes_start(struct seq_file *p, loff_t *pos); |
| 68 | static void *afs_proc_cell_volumes_next(struct seq_file *p, void *v, |
| 69 | loff_t *pos); |
| 70 | static void afs_proc_cell_volumes_stop(struct seq_file *p, void *v); |
| 71 | static int afs_proc_cell_volumes_show(struct seq_file *m, void *v); |
| 72 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 73 | static const struct seq_operations afs_proc_cell_volumes_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | .start = afs_proc_cell_volumes_start, |
| 75 | .next = afs_proc_cell_volumes_next, |
| 76 | .stop = afs_proc_cell_volumes_stop, |
| 77 | .show = afs_proc_cell_volumes_show, |
| 78 | }; |
| 79 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 80 | static const struct file_operations afs_proc_cell_volumes_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | .open = afs_proc_cell_volumes_open, |
| 82 | .read = seq_read, |
| 83 | .llseek = seq_lseek, |
| 84 | .release = afs_proc_cell_volumes_release, |
Denis V. Lunev | 21ac295 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 85 | .owner = THIS_MODULE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | static int afs_proc_cell_vlservers_open(struct inode *inode, |
| 89 | struct file *file); |
| 90 | static int afs_proc_cell_vlservers_release(struct inode *inode, |
| 91 | struct file *file); |
| 92 | static void *afs_proc_cell_vlservers_start(struct seq_file *p, loff_t *pos); |
| 93 | static void *afs_proc_cell_vlservers_next(struct seq_file *p, void *v, |
| 94 | loff_t *pos); |
| 95 | static void afs_proc_cell_vlservers_stop(struct seq_file *p, void *v); |
| 96 | static int afs_proc_cell_vlservers_show(struct seq_file *m, void *v); |
| 97 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 98 | static const struct seq_operations afs_proc_cell_vlservers_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | .start = afs_proc_cell_vlservers_start, |
| 100 | .next = afs_proc_cell_vlservers_next, |
| 101 | .stop = afs_proc_cell_vlservers_stop, |
| 102 | .show = afs_proc_cell_vlservers_show, |
| 103 | }; |
| 104 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 105 | static const struct file_operations afs_proc_cell_vlservers_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | .open = afs_proc_cell_vlservers_open, |
| 107 | .read = seq_read, |
| 108 | .llseek = seq_lseek, |
| 109 | .release = afs_proc_cell_vlservers_release, |
Denis V. Lunev | 21ac295 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 110 | .owner = THIS_MODULE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | }; |
| 112 | |
| 113 | static int afs_proc_cell_servers_open(struct inode *inode, struct file *file); |
| 114 | static int afs_proc_cell_servers_release(struct inode *inode, |
| 115 | struct file *file); |
| 116 | static void *afs_proc_cell_servers_start(struct seq_file *p, loff_t *pos); |
| 117 | static void *afs_proc_cell_servers_next(struct seq_file *p, void *v, |
| 118 | loff_t *pos); |
| 119 | static void afs_proc_cell_servers_stop(struct seq_file *p, void *v); |
| 120 | static int afs_proc_cell_servers_show(struct seq_file *m, void *v); |
| 121 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 122 | static const struct seq_operations afs_proc_cell_servers_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | .start = afs_proc_cell_servers_start, |
| 124 | .next = afs_proc_cell_servers_next, |
| 125 | .stop = afs_proc_cell_servers_stop, |
| 126 | .show = afs_proc_cell_servers_show, |
| 127 | }; |
| 128 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 129 | static const struct file_operations afs_proc_cell_servers_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | .open = afs_proc_cell_servers_open, |
| 131 | .read = seq_read, |
| 132 | .llseek = seq_lseek, |
| 133 | .release = afs_proc_cell_servers_release, |
Denis V. Lunev | 21ac295 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 134 | .owner = THIS_MODULE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | }; |
| 136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | /* |
| 138 | * initialise the /proc/fs/afs/ directory |
| 139 | */ |
| 140 | int afs_proc_init(void) |
| 141 | { |
| 142 | struct proc_dir_entry *p; |
| 143 | |
| 144 | _enter(""); |
| 145 | |
| 146 | proc_afs = proc_mkdir("fs/afs", NULL); |
| 147 | if (!proc_afs) |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 148 | goto error_dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
Denis V. Lunev | 21ac295 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 150 | p = proc_create("cells", 0, proc_afs, &afs_proc_cells_fops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | if (!p) |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 152 | goto error_cells; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
Denis V. Lunev | 21ac295 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 154 | p = proc_create("rootcell", 0, proc_afs, &afs_proc_rootcell_fops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | if (!p) |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 156 | goto error_rootcell; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
| 158 | _leave(" = 0"); |
| 159 | return 0; |
| 160 | |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 161 | error_rootcell: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | remove_proc_entry("cells", proc_afs); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 163 | error_cells: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | remove_proc_entry("fs/afs", NULL); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 165 | error_dir: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | _leave(" = -ENOMEM"); |
| 167 | return -ENOMEM; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 168 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | /* |
| 171 | * clean up the /proc/fs/afs/ directory |
| 172 | */ |
| 173 | void afs_proc_cleanup(void) |
| 174 | { |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 175 | remove_proc_entry("rootcell", proc_afs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | remove_proc_entry("cells", proc_afs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | remove_proc_entry("fs/afs", NULL); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 178 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | /* |
| 181 | * open "/proc/fs/afs/cells" which provides a summary of extant cells |
| 182 | */ |
| 183 | static int afs_proc_cells_open(struct inode *inode, struct file *file) |
| 184 | { |
| 185 | struct seq_file *m; |
| 186 | int ret; |
| 187 | |
| 188 | ret = seq_open(file, &afs_proc_cells_ops); |
| 189 | if (ret < 0) |
| 190 | return ret; |
| 191 | |
| 192 | m = file->private_data; |
| 193 | m->private = PDE(inode)->data; |
| 194 | |
| 195 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 196 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | /* |
| 199 | * set up the iterator to start reading from the cells list and return the |
| 200 | * first item |
| 201 | */ |
| 202 | static void *afs_proc_cells_start(struct seq_file *m, loff_t *_pos) |
| 203 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | /* lock the list against modification */ |
| 205 | down_read(&afs_proc_cells_sem); |
Pavel Emelianov | a6a8bd6 | 2007-07-15 23:39:52 -0700 | [diff] [blame] | 206 | return seq_list_start_head(&afs_proc_cells, *_pos); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 207 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | /* |
| 210 | * move to next cell in cells list |
| 211 | */ |
| 212 | static void *afs_proc_cells_next(struct seq_file *p, void *v, loff_t *pos) |
| 213 | { |
Pavel Emelianov | a6a8bd6 | 2007-07-15 23:39:52 -0700 | [diff] [blame] | 214 | return seq_list_next(v, &afs_proc_cells, pos); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 215 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | /* |
| 218 | * clean up after reading from the cells list |
| 219 | */ |
| 220 | static void afs_proc_cells_stop(struct seq_file *p, void *v) |
| 221 | { |
| 222 | up_read(&afs_proc_cells_sem); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 223 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | /* |
| 226 | * display a header line followed by a load of cell lines |
| 227 | */ |
| 228 | static int afs_proc_cells_show(struct seq_file *m, void *v) |
| 229 | { |
| 230 | struct afs_cell *cell = list_entry(v, struct afs_cell, proc_link); |
| 231 | |
Pavel Emelianov | a6a8bd6 | 2007-07-15 23:39:52 -0700 | [diff] [blame] | 232 | if (v == &afs_proc_cells) { |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 233 | /* display header on line 1 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | seq_puts(m, "USE NAME\n"); |
| 235 | return 0; |
| 236 | } |
| 237 | |
| 238 | /* display one cell per line on subsequent lines */ |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 239 | seq_printf(m, "%3d %s\n", |
| 240 | atomic_read(&cell->usage), cell->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 242 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | /* |
| 245 | * handle writes to /proc/fs/afs/cells |
| 246 | * - to add cells: echo "add <cellname> <IP>[:<IP>][:<IP>]" |
| 247 | */ |
| 248 | static ssize_t afs_proc_cells_write(struct file *file, const char __user *buf, |
| 249 | size_t size, loff_t *_pos) |
| 250 | { |
| 251 | char *kbuf, *name, *args; |
| 252 | int ret; |
| 253 | |
| 254 | /* start by dragging the command into memory */ |
| 255 | if (size <= 1 || size >= PAGE_SIZE) |
| 256 | return -EINVAL; |
| 257 | |
| 258 | kbuf = kmalloc(size + 1, GFP_KERNEL); |
| 259 | if (!kbuf) |
| 260 | return -ENOMEM; |
| 261 | |
| 262 | ret = -EFAULT; |
| 263 | if (copy_from_user(kbuf, buf, size) != 0) |
| 264 | goto done; |
| 265 | kbuf[size] = 0; |
| 266 | |
| 267 | /* trim to first NL */ |
| 268 | name = memchr(kbuf, '\n', size); |
| 269 | if (name) |
| 270 | *name = 0; |
| 271 | |
| 272 | /* split into command, name and argslist */ |
| 273 | name = strchr(kbuf, ' '); |
| 274 | if (!name) |
| 275 | goto inval; |
| 276 | do { |
| 277 | *name++ = 0; |
| 278 | } while(*name == ' '); |
| 279 | if (!*name) |
| 280 | goto inval; |
| 281 | |
| 282 | args = strchr(name, ' '); |
| 283 | if (!args) |
| 284 | goto inval; |
| 285 | do { |
| 286 | *args++ = 0; |
| 287 | } while(*args == ' '); |
| 288 | if (!*args) |
| 289 | goto inval; |
| 290 | |
| 291 | /* determine command to perform */ |
| 292 | _debug("cmd=%s name=%s args=%s", kbuf, name, args); |
| 293 | |
| 294 | if (strcmp(kbuf, "add") == 0) { |
| 295 | struct afs_cell *cell; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
wanglei | bec5eb6 | 2010-08-11 09:38:04 +0100 | [diff] [blame] | 297 | cell = afs_cell_create(name, strlen(name), args, false); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 298 | if (IS_ERR(cell)) { |
| 299 | ret = PTR_ERR(cell); |
| 300 | goto done; |
| 301 | } |
| 302 | |
| 303 | afs_put_cell(cell); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | printk("kAFS: Added new cell '%s'\n", name); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 305 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | goto inval; |
| 307 | } |
| 308 | |
| 309 | ret = size; |
| 310 | |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 311 | done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | kfree(kbuf); |
| 313 | _leave(" = %d", ret); |
| 314 | return ret; |
| 315 | |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 316 | inval: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | ret = -EINVAL; |
| 318 | printk("kAFS: Invalid Command on /proc/fs/afs/cells file\n"); |
| 319 | goto done; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 320 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | /* |
| 323 | * Stubs for /proc/fs/afs/rootcell |
| 324 | */ |
| 325 | static int afs_proc_rootcell_open(struct inode *inode, struct file *file) |
| 326 | { |
| 327 | return 0; |
| 328 | } |
| 329 | |
| 330 | static int afs_proc_rootcell_release(struct inode *inode, struct file *file) |
| 331 | { |
| 332 | return 0; |
| 333 | } |
| 334 | |
| 335 | static ssize_t afs_proc_rootcell_read(struct file *file, char __user *buf, |
| 336 | size_t size, loff_t *_pos) |
| 337 | { |
| 338 | return 0; |
| 339 | } |
| 340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | /* |
| 342 | * handle writes to /proc/fs/afs/rootcell |
| 343 | * - to initialize rootcell: echo "cell.name:192.168.231.14" |
| 344 | */ |
| 345 | static ssize_t afs_proc_rootcell_write(struct file *file, |
| 346 | const char __user *buf, |
| 347 | size_t size, loff_t *_pos) |
| 348 | { |
| 349 | char *kbuf, *s; |
| 350 | int ret; |
| 351 | |
| 352 | /* start by dragging the command into memory */ |
| 353 | if (size <= 1 || size >= PAGE_SIZE) |
| 354 | return -EINVAL; |
| 355 | |
| 356 | ret = -ENOMEM; |
| 357 | kbuf = kmalloc(size + 1, GFP_KERNEL); |
| 358 | if (!kbuf) |
| 359 | goto nomem; |
| 360 | |
| 361 | ret = -EFAULT; |
| 362 | if (copy_from_user(kbuf, buf, size) != 0) |
| 363 | goto infault; |
| 364 | kbuf[size] = 0; |
| 365 | |
| 366 | /* trim to first NL */ |
| 367 | s = memchr(kbuf, '\n', size); |
| 368 | if (s) |
| 369 | *s = 0; |
| 370 | |
| 371 | /* determine command to perform */ |
| 372 | _debug("rootcell=%s", kbuf); |
| 373 | |
| 374 | ret = afs_cell_init(kbuf); |
| 375 | if (ret >= 0) |
| 376 | ret = size; /* consume everything, always */ |
| 377 | |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 378 | infault: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | kfree(kbuf); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 380 | nomem: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | _leave(" = %d", ret); |
| 382 | return ret; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 383 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | /* |
| 386 | * initialise /proc/fs/afs/<cell>/ |
| 387 | */ |
| 388 | int afs_proc_cell_setup(struct afs_cell *cell) |
| 389 | { |
| 390 | struct proc_dir_entry *p; |
| 391 | |
| 392 | _enter("%p{%s}", cell, cell->name); |
| 393 | |
| 394 | cell->proc_dir = proc_mkdir(cell->name, proc_afs); |
| 395 | if (!cell->proc_dir) |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 396 | goto error_dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
Denis V. Lunev | 21ac295 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 398 | p = proc_create_data("servers", 0, cell->proc_dir, |
| 399 | &afs_proc_cell_servers_fops, cell); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | if (!p) |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 401 | goto error_servers; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | |
Denis V. Lunev | 21ac295 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 403 | p = proc_create_data("vlservers", 0, cell->proc_dir, |
| 404 | &afs_proc_cell_vlservers_fops, cell); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | if (!p) |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 406 | goto error_vlservers; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | |
Denis V. Lunev | 21ac295 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 408 | p = proc_create_data("volumes", 0, cell->proc_dir, |
| 409 | &afs_proc_cell_volumes_fops, cell); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | if (!p) |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 411 | goto error_volumes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | |
| 413 | _leave(" = 0"); |
| 414 | return 0; |
| 415 | |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 416 | error_volumes: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | remove_proc_entry("vlservers", cell->proc_dir); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 418 | error_vlservers: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | remove_proc_entry("servers", cell->proc_dir); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 420 | error_servers: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | remove_proc_entry(cell->name, proc_afs); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 422 | error_dir: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | _leave(" = -ENOMEM"); |
| 424 | return -ENOMEM; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 425 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | /* |
| 428 | * remove /proc/fs/afs/<cell>/ |
| 429 | */ |
| 430 | void afs_proc_cell_remove(struct afs_cell *cell) |
| 431 | { |
| 432 | _enter(""); |
| 433 | |
| 434 | remove_proc_entry("volumes", cell->proc_dir); |
| 435 | remove_proc_entry("vlservers", cell->proc_dir); |
| 436 | remove_proc_entry("servers", cell->proc_dir); |
| 437 | remove_proc_entry(cell->name, proc_afs); |
| 438 | |
| 439 | _leave(""); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 440 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | /* |
| 443 | * open "/proc/fs/afs/<cell>/volumes" which provides a summary of extant cells |
| 444 | */ |
| 445 | static int afs_proc_cell_volumes_open(struct inode *inode, struct file *file) |
| 446 | { |
| 447 | struct afs_cell *cell; |
| 448 | struct seq_file *m; |
| 449 | int ret; |
| 450 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 451 | cell = PDE(inode)->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | if (!cell) |
| 453 | return -ENOENT; |
| 454 | |
| 455 | ret = seq_open(file, &afs_proc_cell_volumes_ops); |
| 456 | if (ret < 0) |
| 457 | return ret; |
| 458 | |
| 459 | m = file->private_data; |
| 460 | m->private = cell; |
| 461 | |
| 462 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 463 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | /* |
| 466 | * close the file and release the ref to the cell |
| 467 | */ |
| 468 | static int afs_proc_cell_volumes_release(struct inode *inode, struct file *file) |
| 469 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 470 | return seq_release(inode, file); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 471 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | /* |
| 474 | * set up the iterator to start reading from the cells list and return the |
| 475 | * first item |
| 476 | */ |
| 477 | static void *afs_proc_cell_volumes_start(struct seq_file *m, loff_t *_pos) |
| 478 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | struct afs_cell *cell = m->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | |
| 481 | _enter("cell=%p pos=%Ld", cell, *_pos); |
| 482 | |
| 483 | /* lock the list against modification */ |
| 484 | down_read(&cell->vl_sem); |
Pavel Emelianov | a6a8bd6 | 2007-07-15 23:39:52 -0700 | [diff] [blame] | 485 | return seq_list_start_head(&cell->vl_list, *_pos); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 486 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | /* |
| 489 | * move to next cell in cells list |
| 490 | */ |
| 491 | static void *afs_proc_cell_volumes_next(struct seq_file *p, void *v, |
| 492 | loff_t *_pos) |
| 493 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | struct afs_cell *cell = p->private; |
| 495 | |
| 496 | _enter("cell=%p pos=%Ld", cell, *_pos); |
Pavel Emelianov | a6a8bd6 | 2007-07-15 23:39:52 -0700 | [diff] [blame] | 497 | return seq_list_next(v, &cell->vl_list, _pos); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 498 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | /* |
| 501 | * clean up after reading from the cells list |
| 502 | */ |
| 503 | static void afs_proc_cell_volumes_stop(struct seq_file *p, void *v) |
| 504 | { |
| 505 | struct afs_cell *cell = p->private; |
| 506 | |
| 507 | up_read(&cell->vl_sem); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 508 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
Adrian Bunk | c1206a2 | 2007-10-16 23:26:41 -0700 | [diff] [blame] | 510 | static const char afs_vlocation_states[][4] = { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 511 | [AFS_VL_NEW] = "New", |
| 512 | [AFS_VL_CREATING] = "Crt", |
| 513 | [AFS_VL_VALID] = "Val", |
| 514 | [AFS_VL_NO_VOLUME] = "NoV", |
| 515 | [AFS_VL_UPDATING] = "Upd", |
| 516 | [AFS_VL_VOLUME_DELETED] = "Del", |
| 517 | [AFS_VL_UNCERTAIN] = "Unc", |
| 518 | }; |
| 519 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | /* |
| 521 | * display a header line followed by a load of volume lines |
| 522 | */ |
| 523 | static int afs_proc_cell_volumes_show(struct seq_file *m, void *v) |
| 524 | { |
Pavel Emelianov | a6a8bd6 | 2007-07-15 23:39:52 -0700 | [diff] [blame] | 525 | struct afs_cell *cell = m->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | struct afs_vlocation *vlocation = |
| 527 | list_entry(v, struct afs_vlocation, link); |
| 528 | |
| 529 | /* display header on line 1 */ |
Pavel Emelianov | a6a8bd6 | 2007-07-15 23:39:52 -0700 | [diff] [blame] | 530 | if (v == &cell->vl_list) { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 531 | seq_puts(m, "USE STT VLID[0] VLID[1] VLID[2] NAME\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | return 0; |
| 533 | } |
| 534 | |
| 535 | /* display one cell per line on subsequent lines */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 536 | seq_printf(m, "%3d %s %08x %08x %08x %s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | atomic_read(&vlocation->usage), |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 538 | afs_vlocation_states[vlocation->state], |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | vlocation->vldb.vid[0], |
| 540 | vlocation->vldb.vid[1], |
| 541 | vlocation->vldb.vid[2], |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 542 | vlocation->vldb.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
| 544 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 545 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | /* |
| 548 | * open "/proc/fs/afs/<cell>/vlservers" which provides a list of volume |
| 549 | * location server |
| 550 | */ |
| 551 | static int afs_proc_cell_vlservers_open(struct inode *inode, struct file *file) |
| 552 | { |
| 553 | struct afs_cell *cell; |
| 554 | struct seq_file *m; |
| 555 | int ret; |
| 556 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 557 | cell = PDE(inode)->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | if (!cell) |
| 559 | return -ENOENT; |
| 560 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 561 | ret = seq_open(file, &afs_proc_cell_vlservers_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | if (ret<0) |
| 563 | return ret; |
| 564 | |
| 565 | m = file->private_data; |
| 566 | m->private = cell; |
| 567 | |
| 568 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 569 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | /* |
| 572 | * close the file and release the ref to the cell |
| 573 | */ |
| 574 | static int afs_proc_cell_vlservers_release(struct inode *inode, |
| 575 | struct file *file) |
| 576 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 577 | return seq_release(inode, file); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 578 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | /* |
| 581 | * set up the iterator to start reading from the cells list and return the |
| 582 | * first item |
| 583 | */ |
| 584 | static void *afs_proc_cell_vlservers_start(struct seq_file *m, loff_t *_pos) |
| 585 | { |
| 586 | struct afs_cell *cell = m->private; |
| 587 | loff_t pos = *_pos; |
| 588 | |
| 589 | _enter("cell=%p pos=%Ld", cell, *_pos); |
| 590 | |
| 591 | /* lock the list against modification */ |
| 592 | down_read(&cell->vl_sem); |
| 593 | |
| 594 | /* allow for the header line */ |
| 595 | if (!pos) |
| 596 | return (void *) 1; |
| 597 | pos--; |
| 598 | |
| 599 | if (pos >= cell->vl_naddrs) |
| 600 | return NULL; |
| 601 | |
| 602 | return &cell->vl_addrs[pos]; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 603 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | /* |
| 606 | * move to next cell in cells list |
| 607 | */ |
| 608 | static void *afs_proc_cell_vlservers_next(struct seq_file *p, void *v, |
| 609 | loff_t *_pos) |
| 610 | { |
| 611 | struct afs_cell *cell = p->private; |
| 612 | loff_t pos; |
| 613 | |
| 614 | _enter("cell=%p{nad=%u} pos=%Ld", cell, cell->vl_naddrs, *_pos); |
| 615 | |
| 616 | pos = *_pos; |
| 617 | (*_pos)++; |
| 618 | if (pos >= cell->vl_naddrs) |
| 619 | return NULL; |
| 620 | |
| 621 | return &cell->vl_addrs[pos]; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 622 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | /* |
| 625 | * clean up after reading from the cells list |
| 626 | */ |
| 627 | static void afs_proc_cell_vlservers_stop(struct seq_file *p, void *v) |
| 628 | { |
| 629 | struct afs_cell *cell = p->private; |
| 630 | |
| 631 | up_read(&cell->vl_sem); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 632 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | /* |
| 635 | * display a header line followed by a load of volume lines |
| 636 | */ |
| 637 | static int afs_proc_cell_vlservers_show(struct seq_file *m, void *v) |
| 638 | { |
| 639 | struct in_addr *addr = v; |
| 640 | |
| 641 | /* display header on line 1 */ |
| 642 | if (v == (struct in_addr *) 1) { |
| 643 | seq_puts(m, "ADDRESS\n"); |
| 644 | return 0; |
| 645 | } |
| 646 | |
| 647 | /* display one cell per line on subsequent lines */ |
Harvey Harrison | be85940 | 2008-10-31 00:56:28 -0700 | [diff] [blame] | 648 | seq_printf(m, "%pI4\n", &addr->s_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 650 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | /* |
| 653 | * open "/proc/fs/afs/<cell>/servers" which provides a summary of active |
| 654 | * servers |
| 655 | */ |
| 656 | static int afs_proc_cell_servers_open(struct inode *inode, struct file *file) |
| 657 | { |
| 658 | struct afs_cell *cell; |
| 659 | struct seq_file *m; |
| 660 | int ret; |
| 661 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 662 | cell = PDE(inode)->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | if (!cell) |
| 664 | return -ENOENT; |
| 665 | |
| 666 | ret = seq_open(file, &afs_proc_cell_servers_ops); |
| 667 | if (ret < 0) |
| 668 | return ret; |
| 669 | |
| 670 | m = file->private_data; |
| 671 | m->private = cell; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 673 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | /* |
| 676 | * close the file and release the ref to the cell |
| 677 | */ |
| 678 | static int afs_proc_cell_servers_release(struct inode *inode, |
| 679 | struct file *file) |
| 680 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 681 | return seq_release(inode, file); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 682 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | /* |
| 685 | * set up the iterator to start reading from the cells list and return the |
| 686 | * first item |
| 687 | */ |
| 688 | static void *afs_proc_cell_servers_start(struct seq_file *m, loff_t *_pos) |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 689 | __acquires(m->private->servers_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | struct afs_cell *cell = m->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | |
| 693 | _enter("cell=%p pos=%Ld", cell, *_pos); |
| 694 | |
| 695 | /* lock the list against modification */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 696 | read_lock(&cell->servers_lock); |
Pavel Emelianov | a6a8bd6 | 2007-07-15 23:39:52 -0700 | [diff] [blame] | 697 | return seq_list_start_head(&cell->servers, *_pos); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 698 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | /* |
| 701 | * move to next cell in cells list |
| 702 | */ |
| 703 | static void *afs_proc_cell_servers_next(struct seq_file *p, void *v, |
| 704 | loff_t *_pos) |
| 705 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | struct afs_cell *cell = p->private; |
| 707 | |
| 708 | _enter("cell=%p pos=%Ld", cell, *_pos); |
Pavel Emelianov | a6a8bd6 | 2007-07-15 23:39:52 -0700 | [diff] [blame] | 709 | return seq_list_next(v, &cell->servers, _pos); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 710 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | /* |
| 713 | * clean up after reading from the cells list |
| 714 | */ |
| 715 | static void afs_proc_cell_servers_stop(struct seq_file *p, void *v) |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 716 | __releases(p->private->servers_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | { |
| 718 | struct afs_cell *cell = p->private; |
| 719 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 720 | read_unlock(&cell->servers_lock); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 721 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | /* |
| 724 | * display a header line followed by a load of volume lines |
| 725 | */ |
| 726 | static int afs_proc_cell_servers_show(struct seq_file *m, void *v) |
| 727 | { |
Pavel Emelianov | a6a8bd6 | 2007-07-15 23:39:52 -0700 | [diff] [blame] | 728 | struct afs_cell *cell = m->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | struct afs_server *server = list_entry(v, struct afs_server, link); |
| 730 | char ipaddr[20]; |
| 731 | |
| 732 | /* display header on line 1 */ |
Pavel Emelianov | a6a8bd6 | 2007-07-15 23:39:52 -0700 | [diff] [blame] | 733 | if (v == &cell->servers) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | seq_puts(m, "USE ADDR STATE\n"); |
| 735 | return 0; |
| 736 | } |
| 737 | |
| 738 | /* display one cell per line on subsequent lines */ |
Harvey Harrison | be85940 | 2008-10-31 00:56:28 -0700 | [diff] [blame] | 739 | sprintf(ipaddr, "%pI4", &server->addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | seq_printf(m, "%3d %-15.15s %5d\n", |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 741 | atomic_read(&server->usage), ipaddr, server->fs_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | |
| 743 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 744 | } |