tg3: Fix single-vector MSI-X code
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / 9p / v9fs.c
blob1964f98e74bedf861d12950dda7f9382ec3f8093
1 /*
2 * linux/fs/9p/v9fs.c
4 * This file contains functions assisting in mapping VFS to 9P2000
6 * Copyright (C) 2004-2008 by Eric Van Hensbergen <ericvh@gmail.com>
7 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to:
20 * Free Software Foundation
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02111-1301 USA
26 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
28 #include <linux/module.h>
29 #include <linux/errno.h>
30 #include <linux/fs.h>
31 #include <linux/sched.h>
32 #include <linux/parser.h>
33 #include <linux/idr.h>
34 #include <linux/slab.h>
35 #include <net/9p/9p.h>
36 #include <net/9p/client.h>
37 #include <net/9p/transport.h>
38 #include "v9fs.h"
39 #include "v9fs_vfs.h"
40 #include "cache.h"
42 static DEFINE_SPINLOCK(v9fs_sessionlist_lock);
43 static LIST_HEAD(v9fs_sessionlist);
44 struct kmem_cache *v9fs_inode_cache;
47 * Option Parsing (code inspired by NFS code)
48 * NOTE: each transport will parse its own options
51 enum {
52 /* Options that take integer arguments */
53 Opt_debug, Opt_dfltuid, Opt_dfltgid, Opt_afid,
54 /* String options */
55 Opt_uname, Opt_remotename, Opt_trans, Opt_cache, Opt_cachetag,
56 /* Options that take no arguments */
57 Opt_nodevmap,
58 /* Cache options */
59 Opt_cache_loose, Opt_fscache,
60 /* Access options */
61 Opt_access, Opt_posixacl,
62 /* Error token */
63 Opt_err
66 static const match_table_t tokens = {
67 {Opt_debug, "debug=%x"},
68 {Opt_dfltuid, "dfltuid=%u"},
69 {Opt_dfltgid, "dfltgid=%u"},
70 {Opt_afid, "afid=%u"},
71 {Opt_uname, "uname=%s"},
72 {Opt_remotename, "aname=%s"},
73 {Opt_nodevmap, "nodevmap"},
74 {Opt_cache, "cache=%s"},
75 {Opt_cache_loose, "loose"},
76 {Opt_fscache, "fscache"},
77 {Opt_cachetag, "cachetag=%s"},
78 {Opt_access, "access=%s"},
79 {Opt_posixacl, "posixacl"},
80 {Opt_err, NULL}
83 /* Interpret mount options for cache mode */
84 static int get_cache_mode(char *s)
86 int version = -EINVAL;
88 if (!strcmp(s, "loose")) {
89 version = CACHE_LOOSE;
90 p9_debug(P9_DEBUG_9P, "Cache mode: loose\n");
91 } else if (!strcmp(s, "fscache")) {
92 version = CACHE_FSCACHE;
93 p9_debug(P9_DEBUG_9P, "Cache mode: fscache\n");
94 } else if (!strcmp(s, "none")) {
95 version = CACHE_NONE;
96 p9_debug(P9_DEBUG_9P, "Cache mode: none\n");
97 } else
98 pr_info("Unknown Cache mode %s\n", s);
99 return version;
103 * v9fs_parse_options - parse mount options into session structure
104 * @v9ses: existing v9fs session information
106 * Return 0 upon success, -ERRNO upon failure.
109 static int v9fs_parse_options(struct v9fs_session_info *v9ses, char *opts)
111 char *options, *tmp_options;
112 substring_t args[MAX_OPT_ARGS];
113 char *p;
114 int option = 0;
115 char *s, *e;
116 int ret = 0;
118 /* setup defaults */
119 v9ses->afid = ~0;
120 v9ses->debug = 0;
121 v9ses->cache = CACHE_NONE;
122 #ifdef CONFIG_9P_FSCACHE
123 v9ses->cachetag = NULL;
124 #endif
126 if (!opts)
127 return 0;
129 tmp_options = kstrdup(opts, GFP_KERNEL);
130 if (!tmp_options) {
131 ret = -ENOMEM;
132 goto fail_option_alloc;
134 options = tmp_options;
136 while ((p = strsep(&options, ",")) != NULL) {
137 int token, r;
138 if (!*p)
139 continue;
140 token = match_token(p, tokens, args);
141 switch (token) {
142 case Opt_debug:
143 r = match_int(&args[0], &option);
144 if (r < 0) {
145 p9_debug(P9_DEBUG_ERROR,
146 "integer field, but no integer?\n");
147 ret = r;
148 continue;
150 v9ses->debug = option;
151 #ifdef CONFIG_NET_9P_DEBUG
152 p9_debug_level = option;
153 #endif
154 break;
156 case Opt_dfltuid:
157 r = match_int(&args[0], &option);
158 if (r < 0) {
159 p9_debug(P9_DEBUG_ERROR,
160 "integer field, but no integer?\n");
161 ret = r;
162 continue;
164 v9ses->dfltuid = option;
165 break;
166 case Opt_dfltgid:
167 r = match_int(&args[0], &option);
168 if (r < 0) {
169 p9_debug(P9_DEBUG_ERROR,
170 "integer field, but no integer?\n");
171 ret = r;
172 continue;
174 v9ses->dfltgid = option;
175 break;
176 case Opt_afid:
177 r = match_int(&args[0], &option);
178 if (r < 0) {
179 p9_debug(P9_DEBUG_ERROR,
180 "integer field, but no integer?\n");
181 ret = r;
182 continue;
184 v9ses->afid = option;
185 break;
186 case Opt_uname:
187 match_strlcpy(v9ses->uname, &args[0], PATH_MAX);
188 break;
189 case Opt_remotename:
190 match_strlcpy(v9ses->aname, &args[0], PATH_MAX);
191 break;
192 case Opt_nodevmap:
193 v9ses->nodev = 1;
194 break;
195 case Opt_cache_loose:
196 v9ses->cache = CACHE_LOOSE;
197 break;
198 case Opt_fscache:
199 v9ses->cache = CACHE_FSCACHE;
200 break;
201 case Opt_cachetag:
202 #ifdef CONFIG_9P_FSCACHE
203 v9ses->cachetag = match_strdup(&args[0]);
204 #endif
205 break;
206 case Opt_cache:
207 s = match_strdup(&args[0]);
208 if (!s) {
209 ret = -ENOMEM;
210 p9_debug(P9_DEBUG_ERROR,
211 "problem allocating copy of cache arg\n");
212 goto free_and_return;
214 ret = get_cache_mode(s);
215 if (ret == -EINVAL) {
216 kfree(s);
217 goto free_and_return;
220 v9ses->cache = ret;
221 kfree(s);
222 break;
224 case Opt_access:
225 s = match_strdup(&args[0]);
226 if (!s) {
227 ret = -ENOMEM;
228 p9_debug(P9_DEBUG_ERROR,
229 "problem allocating copy of access arg\n");
230 goto free_and_return;
233 v9ses->flags &= ~V9FS_ACCESS_MASK;
234 if (strcmp(s, "user") == 0)
235 v9ses->flags |= V9FS_ACCESS_USER;
236 else if (strcmp(s, "any") == 0)
237 v9ses->flags |= V9FS_ACCESS_ANY;
238 else if (strcmp(s, "client") == 0) {
239 v9ses->flags |= V9FS_ACCESS_CLIENT;
240 } else {
241 v9ses->flags |= V9FS_ACCESS_SINGLE;
242 v9ses->uid = simple_strtoul(s, &e, 10);
243 if (*e != '\0') {
244 ret = -EINVAL;
245 pr_info("Unknown access argument %s\n",
247 kfree(s);
248 goto free_and_return;
252 kfree(s);
253 break;
255 case Opt_posixacl:
256 #ifdef CONFIG_9P_FS_POSIX_ACL
257 v9ses->flags |= V9FS_POSIX_ACL;
258 #else
259 p9_debug(P9_DEBUG_ERROR,
260 "Not defined CONFIG_9P_FS_POSIX_ACL. Ignoring posixacl option\n");
261 #endif
262 break;
264 default:
265 continue;
269 free_and_return:
270 kfree(tmp_options);
271 fail_option_alloc:
272 return ret;
276 * v9fs_session_init - initialize session
277 * @v9ses: session information structure
278 * @dev_name: device being mounted
279 * @data: options
283 struct p9_fid *v9fs_session_init(struct v9fs_session_info *v9ses,
284 const char *dev_name, char *data)
286 int retval = -EINVAL;
287 struct p9_fid *fid;
288 int rc;
290 v9ses->uname = __getname();
291 if (!v9ses->uname)
292 return ERR_PTR(-ENOMEM);
294 v9ses->aname = __getname();
295 if (!v9ses->aname) {
296 __putname(v9ses->uname);
297 return ERR_PTR(-ENOMEM);
299 init_rwsem(&v9ses->rename_sem);
301 rc = bdi_setup_and_register(&v9ses->bdi, "9p", BDI_CAP_MAP_COPY);
302 if (rc) {
303 __putname(v9ses->aname);
304 __putname(v9ses->uname);
305 return ERR_PTR(rc);
308 spin_lock(&v9fs_sessionlist_lock);
309 list_add(&v9ses->slist, &v9fs_sessionlist);
310 spin_unlock(&v9fs_sessionlist_lock);
312 strcpy(v9ses->uname, V9FS_DEFUSER);
313 strcpy(v9ses->aname, V9FS_DEFANAME);
314 v9ses->uid = ~0;
315 v9ses->dfltuid = V9FS_DEFUID;
316 v9ses->dfltgid = V9FS_DEFGID;
318 v9ses->clnt = p9_client_create(dev_name, data);
319 if (IS_ERR(v9ses->clnt)) {
320 retval = PTR_ERR(v9ses->clnt);
321 v9ses->clnt = NULL;
322 p9_debug(P9_DEBUG_ERROR, "problem initializing 9p client\n");
323 goto error;
326 v9ses->flags = V9FS_ACCESS_USER;
328 if (p9_is_proto_dotl(v9ses->clnt)) {
329 v9ses->flags = V9FS_ACCESS_CLIENT;
330 v9ses->flags |= V9FS_PROTO_2000L;
331 } else if (p9_is_proto_dotu(v9ses->clnt)) {
332 v9ses->flags |= V9FS_PROTO_2000U;
335 rc = v9fs_parse_options(v9ses, data);
336 if (rc < 0) {
337 retval = rc;
338 goto error;
341 v9ses->maxdata = v9ses->clnt->msize - P9_IOHDRSZ;
343 if (!v9fs_proto_dotl(v9ses) &&
344 ((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_CLIENT)) {
346 * We support ACCESS_CLIENT only for dotl.
347 * Fall back to ACCESS_USER
349 v9ses->flags &= ~V9FS_ACCESS_MASK;
350 v9ses->flags |= V9FS_ACCESS_USER;
352 /*FIXME !! */
353 /* for legacy mode, fall back to V9FS_ACCESS_ANY */
354 if (!(v9fs_proto_dotu(v9ses) || v9fs_proto_dotl(v9ses)) &&
355 ((v9ses->flags&V9FS_ACCESS_MASK) == V9FS_ACCESS_USER)) {
357 v9ses->flags &= ~V9FS_ACCESS_MASK;
358 v9ses->flags |= V9FS_ACCESS_ANY;
359 v9ses->uid = ~0;
361 if (!v9fs_proto_dotl(v9ses) ||
362 !((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_CLIENT)) {
364 * We support ACL checks on clinet only if the protocol is
365 * 9P2000.L and access is V9FS_ACCESS_CLIENT.
367 v9ses->flags &= ~V9FS_ACL_MASK;
370 fid = p9_client_attach(v9ses->clnt, NULL, v9ses->uname, ~0,
371 v9ses->aname);
372 if (IS_ERR(fid)) {
373 retval = PTR_ERR(fid);
374 fid = NULL;
375 p9_debug(P9_DEBUG_ERROR, "cannot attach\n");
376 goto error;
379 if ((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_SINGLE)
380 fid->uid = v9ses->uid;
381 else
382 fid->uid = ~0;
384 #ifdef CONFIG_9P_FSCACHE
385 /* register the session for caching */
386 v9fs_cache_session_get_cookie(v9ses);
387 #endif
389 return fid;
391 error:
392 bdi_destroy(&v9ses->bdi);
393 return ERR_PTR(retval);
397 * v9fs_session_close - shutdown a session
398 * @v9ses: session information structure
402 void v9fs_session_close(struct v9fs_session_info *v9ses)
404 if (v9ses->clnt) {
405 p9_client_destroy(v9ses->clnt);
406 v9ses->clnt = NULL;
409 #ifdef CONFIG_9P_FSCACHE
410 if (v9ses->fscache) {
411 v9fs_cache_session_put_cookie(v9ses);
412 kfree(v9ses->cachetag);
414 #endif
415 __putname(v9ses->uname);
416 __putname(v9ses->aname);
418 bdi_destroy(&v9ses->bdi);
420 spin_lock(&v9fs_sessionlist_lock);
421 list_del(&v9ses->slist);
422 spin_unlock(&v9fs_sessionlist_lock);
426 * v9fs_session_cancel - terminate a session
427 * @v9ses: session to terminate
429 * mark transport as disconnected and cancel all pending requests.
432 void v9fs_session_cancel(struct v9fs_session_info *v9ses) {
433 p9_debug(P9_DEBUG_ERROR, "cancel session %p\n", v9ses);
434 p9_client_disconnect(v9ses->clnt);
438 * v9fs_session_begin_cancel - Begin terminate of a session
439 * @v9ses: session to terminate
441 * After this call we don't allow any request other than clunk.
444 void v9fs_session_begin_cancel(struct v9fs_session_info *v9ses)
446 p9_debug(P9_DEBUG_ERROR, "begin cancel session %p\n", v9ses);
447 p9_client_begin_disconnect(v9ses->clnt);
450 extern int v9fs_error_init(void);
452 static struct kobject *v9fs_kobj;
454 #ifdef CONFIG_9P_FSCACHE
456 * caches_show - list caches associated with a session
458 * Returns the size of buffer written.
461 static ssize_t caches_show(struct kobject *kobj,
462 struct kobj_attribute *attr,
463 char *buf)
465 ssize_t n = 0, count = 0, limit = PAGE_SIZE;
466 struct v9fs_session_info *v9ses;
468 spin_lock(&v9fs_sessionlist_lock);
469 list_for_each_entry(v9ses, &v9fs_sessionlist, slist) {
470 if (v9ses->cachetag) {
471 n = snprintf(buf, limit, "%s\n", v9ses->cachetag);
472 if (n < 0) {
473 count = n;
474 break;
477 count += n;
478 limit -= n;
482 spin_unlock(&v9fs_sessionlist_lock);
483 return count;
486 static struct kobj_attribute v9fs_attr_cache = __ATTR_RO(caches);
487 #endif /* CONFIG_9P_FSCACHE */
489 static struct attribute *v9fs_attrs[] = {
490 #ifdef CONFIG_9P_FSCACHE
491 &v9fs_attr_cache.attr,
492 #endif
493 NULL,
496 static struct attribute_group v9fs_attr_group = {
497 .attrs = v9fs_attrs,
501 * v9fs_sysfs_init - Initialize the v9fs sysfs interface
505 static int v9fs_sysfs_init(void)
507 v9fs_kobj = kobject_create_and_add("9p", fs_kobj);
508 if (!v9fs_kobj)
509 return -ENOMEM;
511 if (sysfs_create_group(v9fs_kobj, &v9fs_attr_group)) {
512 kobject_put(v9fs_kobj);
513 return -ENOMEM;
516 return 0;
520 * v9fs_sysfs_cleanup - Unregister the v9fs sysfs interface
524 static void v9fs_sysfs_cleanup(void)
526 sysfs_remove_group(v9fs_kobj, &v9fs_attr_group);
527 kobject_put(v9fs_kobj);
530 static void v9fs_inode_init_once(void *foo)
532 struct v9fs_inode *v9inode = (struct v9fs_inode *)foo;
533 #ifdef CONFIG_9P_FSCACHE
534 v9inode->fscache = NULL;
535 #endif
536 memset(&v9inode->qid, 0, sizeof(v9inode->qid));
537 inode_init_once(&v9inode->vfs_inode);
541 * v9fs_init_inode_cache - initialize a cache for 9P
542 * Returns 0 on success.
544 static int v9fs_init_inode_cache(void)
546 v9fs_inode_cache = kmem_cache_create("v9fs_inode_cache",
547 sizeof(struct v9fs_inode),
548 0, (SLAB_RECLAIM_ACCOUNT|
549 SLAB_MEM_SPREAD),
550 v9fs_inode_init_once);
551 if (!v9fs_inode_cache)
552 return -ENOMEM;
554 return 0;
558 * v9fs_destroy_inode_cache - destroy the cache of 9P inode
561 static void v9fs_destroy_inode_cache(void)
563 kmem_cache_destroy(v9fs_inode_cache);
566 static int v9fs_cache_register(void)
568 int ret;
569 ret = v9fs_init_inode_cache();
570 if (ret < 0)
571 return ret;
572 #ifdef CONFIG_9P_FSCACHE
573 return fscache_register_netfs(&v9fs_cache_netfs);
574 #else
575 return ret;
576 #endif
579 static void v9fs_cache_unregister(void)
581 v9fs_destroy_inode_cache();
582 #ifdef CONFIG_9P_FSCACHE
583 fscache_unregister_netfs(&v9fs_cache_netfs);
584 #endif
588 * init_v9fs - Initialize module
592 static int __init init_v9fs(void)
594 int err;
595 pr_info("Installing v9fs 9p2000 file system support\n");
596 /* TODO: Setup list of registered trasnport modules */
597 err = register_filesystem(&v9fs_fs_type);
598 if (err < 0) {
599 pr_err("Failed to register filesystem\n");
600 return err;
603 err = v9fs_cache_register();
604 if (err < 0) {
605 pr_err("Failed to register v9fs for caching\n");
606 goto out_fs_unreg;
609 err = v9fs_sysfs_init();
610 if (err < 0) {
611 pr_err("Failed to register with sysfs\n");
612 goto out_sysfs_cleanup;
615 return 0;
617 out_sysfs_cleanup:
618 v9fs_sysfs_cleanup();
620 out_fs_unreg:
621 unregister_filesystem(&v9fs_fs_type);
623 return err;
627 * exit_v9fs - shutdown module
631 static void __exit exit_v9fs(void)
633 v9fs_sysfs_cleanup();
634 v9fs_cache_unregister();
635 unregister_filesystem(&v9fs_fs_type);
638 module_init(init_v9fs)
639 module_exit(exit_v9fs)
641 MODULE_AUTHOR("Latchesar Ionkov <lucho@ionkov.net>");
642 MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>");
643 MODULE_AUTHOR("Ron Minnich <rminnich@lanl.gov>");
644 MODULE_LICENSE("GPL");