4 * This file contains functions assisting in mapping VFS to 9P2000
6 * Copyright (C) 2004 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 #include <linux/config.h>
27 #include <linux/module.h>
28 #include <linux/errno.h>
30 #include <linux/parser.h>
31 #include <linux/idr.h>
37 #include "transport.h"
40 /* TODO: sysfs or debugfs interface */
41 int v9fs_debug_level = 0; /* feature-rific global debug level */
44 * Option Parsing (code inspired by NFS code)
49 /* Options that take integer arguments */
50 Opt_port, Opt_msize, Opt_uid, Opt_gid, Opt_afid, Opt_debug,
53 Opt_uname, Opt_remotename,
54 /* Options that take no arguments */
55 Opt_legacy, Opt_nodevmap, Opt_unix, Opt_tcp, Opt_fd,
60 static match_table_t tokens = {
61 {Opt_port, "port=%u"},
62 {Opt_msize, "msize=%u"},
65 {Opt_afid, "afid=%u"},
66 {Opt_rfdno, "rfdno=%u"},
67 {Opt_wfdno, "wfdno=%u"},
68 {Opt_debug, "debug=%x"},
69 {Opt_uname, "uname=%s"},
70 {Opt_remotename, "aname=%s"},
71 {Opt_unix, "proto=unix"},
72 {Opt_tcp, "proto=tcp"},
77 {Opt_legacy, "noextend"},
78 {Opt_nodevmap, "nodevmap"},
83 * Parse option string.
87 * v9fs_parse_options - parse mount options into session structure
88 * @options: options string passed from mount
89 * @v9ses: existing v9fs session information
93 static void v9fs_parse_options(char *options, struct v9fs_session_info *v9ses)
96 substring_t args[MAX_OPT_ARGS];
101 v9ses->port = V9FS_PORT;
102 v9ses->maxdata = 9000;
103 v9ses->proto = PROTO_TCP;
113 while ((p = strsep(&options, ",")) != NULL) {
117 token = match_token(p, tokens, args);
118 if (token < Opt_uname) {
119 if ((ret = match_int(&args[0], &option)) < 0) {
121 "integer field, but no integer?\n");
128 v9ses->port = option;
131 v9ses->maxdata = option;
140 v9ses->afid = option;
143 v9ses->rfdno = option;
146 v9ses->wfdno = option;
149 v9ses->debug = option;
152 v9ses->proto = PROTO_TCP;
155 v9ses->proto = PROTO_UNIX;
158 v9ses->proto = PROTO_FD;
161 match_strcpy(v9ses->name, &args[0]);
164 match_strcpy(v9ses->remotename, &args[0]);
179 * v9fs_inode2v9ses - safely extract v9fs session info from super block
180 * @inode: inode to extract information from
182 * Paranoid function to extract v9ses information from superblock,
183 * if anything is missing it will report an error.
187 struct v9fs_session_info *v9fs_inode2v9ses(struct inode *inode)
189 return (inode->i_sb->s_fs_info);
193 * v9fs_get_idpool - allocate numeric id from pool
194 * @p - pool to allocate from
196 * XXX - This seems to be an awful generic function, should it be in idr.c with
197 * the lock included in struct idr?
200 int v9fs_get_idpool(struct v9fs_idpool *p)
206 if (idr_pre_get(&p->pool, GFP_KERNEL) == 0)
209 if (down_interruptible(&p->lock) == -EINTR) {
210 eprintk(KERN_WARNING, "Interrupted while locking\n");
214 /* no need to store exactly p, we just need something non-null */
215 error = idr_get_new(&p->pool, p, &i);
218 if (error == -EAGAIN)
227 * v9fs_put_idpool - release numeric id from pool
228 * @p - pool to allocate from
230 * XXX - This seems to be an awful generic function, should it be in idr.c with
231 * the lock included in struct idr?
234 void v9fs_put_idpool(int id, struct v9fs_idpool *p)
236 if (down_interruptible(&p->lock) == -EINTR) {
237 eprintk(KERN_WARNING, "Interrupted while locking\n");
240 idr_remove(&p->pool, id);
245 * v9fs_check_idpool - check if the specified id is available
249 int v9fs_check_idpool(int id, struct v9fs_idpool *p)
251 return idr_find(&p->pool, id) != NULL;
255 * v9fs_session_init - initialize session
256 * @v9ses: session information structure
257 * @dev_name: device being mounted
263 v9fs_session_init(struct v9fs_session_info *v9ses,
264 const char *dev_name, char *data)
266 struct v9fs_fcall *fcall = NULL;
267 struct v9fs_transport *trans_proto;
270 int retval = -EINVAL;
271 struct v9fs_str *version;
273 v9ses->name = __getname();
277 v9ses->remotename = __getname();
278 if (!v9ses->remotename) {
279 __putname(v9ses->name);
283 strcpy(v9ses->name, V9FS_DEFUSER);
284 strcpy(v9ses->remotename, V9FS_DEFANAME);
286 v9fs_parse_options(data, v9ses);
288 /* set global debug level */
289 v9fs_debug_level = v9ses->debug;
291 /* id pools that are session-dependent: fids and tags */
292 idr_init(&v9ses->fidpool.pool);
293 init_MUTEX(&v9ses->fidpool.lock);
295 switch (v9ses->proto) {
297 trans_proto = &v9fs_trans_tcp;
300 trans_proto = &v9fs_trans_unix;
301 *v9ses->remotename = 0;
304 trans_proto = &v9fs_trans_fd;
305 *v9ses->remotename = 0;
308 printk(KERN_ERR "v9fs: Bad mount protocol %d\n", v9ses->proto);
309 retval = -ENOPROTOOPT;
313 v9ses->transport = kmalloc(sizeof(*v9ses->transport), GFP_KERNEL);
314 if (!v9ses->transport) {
319 memmove(v9ses->transport, trans_proto, sizeof(*v9ses->transport));
321 if ((retval = v9ses->transport->init(v9ses, dev_name, data)) < 0) {
322 eprintk(KERN_ERR, "problem initializing transport\n");
326 v9ses->inprogress = 0;
328 v9ses->session_hung = 0;
330 v9ses->mux = v9fs_mux_init(v9ses->transport, v9ses->maxdata + V9FS_IOHDRSZ,
333 if (IS_ERR(v9ses->mux)) {
334 retval = PTR_ERR(v9ses->mux);
336 dprintk(DEBUG_ERROR, "problem initializing mux\n");
340 if (v9ses->afid == ~0) {
343 v9fs_t_version(v9ses, v9ses->maxdata, "9P2000.u",
346 retval = v9fs_t_version(v9ses, v9ses->maxdata, "9P2000",
350 dprintk(DEBUG_ERROR, "v9fs_t_version failed\n");
354 version = &fcall->params.rversion.version;
355 if (version->len==8 && !memcmp(version->str, "9P2000.u", 8)) {
356 dprintk(DEBUG_9P, "9P2000 UNIX extensions enabled\n");
358 } else if (version->len==6 && !memcmp(version->str, "9P2000", 6)) {
359 dprintk(DEBUG_9P, "9P2000 legacy mode enabled\n");
366 n = fcall->params.rversion.msize;
369 if (n < v9ses->maxdata)
373 newfid = v9fs_get_idpool(&v9ses->fidpool);
375 eprintk(KERN_WARNING, "couldn't allocate FID\n");
379 /* it is a little bit ugly, but we have to prevent newfid */
380 /* being the same as afid, so if it is, get a new fid */
381 if (v9ses->afid != ~0 && newfid == v9ses->afid) {
382 newfid = v9fs_get_idpool(&v9ses->fidpool);
384 eprintk(KERN_WARNING, "couldn't allocate FID\n");
391 v9fs_t_attach(v9ses, v9ses->name, v9ses->remotename, newfid,
394 dprintk(DEBUG_ERROR, "cannot attach\n");
398 if (v9ses->afid != ~0) {
399 dprintk(DEBUG_ERROR, "afid not equal to ~0\n");
400 if (v9fs_t_clunk(v9ses, v9ses->afid))
401 dprintk(DEBUG_ERROR, "clunk failed\n");
410 v9fs_session_close(v9ses);
415 * v9fs_session_close - shutdown a session
416 * @v9ses: session information structure
420 void v9fs_session_close(struct v9fs_session_info *v9ses)
423 v9fs_mux_destroy(v9ses->mux);
427 if (v9ses->transport) {
428 v9ses->transport->close(v9ses->transport);
429 kfree(v9ses->transport);
430 v9ses->transport = NULL;
433 __putname(v9ses->name);
434 __putname(v9ses->remotename);
438 * v9fs_session_cancel - mark transport as disconnected
439 * and cancel all pending requests.
441 void v9fs_session_cancel(struct v9fs_session_info *v9ses) {
442 dprintk(DEBUG_ERROR, "cancel session %p\n", v9ses);
443 v9ses->transport->status = Disconnected;
444 v9fs_mux_cancel(v9ses->mux, -EIO);
447 extern int v9fs_error_init(void);
450 * v9fs_init - Initialize module
454 static int __init init_v9fs(void)
460 printk(KERN_INFO "Installing v9fs 9P2000 file system support\n");
462 ret = v9fs_mux_global_init();
464 ret = register_filesystem(&v9fs_fs_type);
470 * v9fs_init - shutdown module
474 static void __exit exit_v9fs(void)
476 v9fs_mux_global_exit();
477 unregister_filesystem(&v9fs_fs_type);
480 module_init(init_v9fs)
481 module_exit(exit_v9fs)
483 MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>");
484 MODULE_AUTHOR("Ron Minnich <rminnich@lanl.gov>");
485 MODULE_LICENSE("GPL");