Char: cyclades, mark cyy_init_card as __devinit, not __init
[linux-2.6/kvm.git] / fs / 9p / v9fs.c
blob6ad6f192b6e45db7c66df77a170779512c34c29f
1 /*
2 * linux/fs/9p/v9fs.c
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/module.h>
27 #include <linux/errno.h>
28 #include <linux/fs.h>
29 #include <linux/sched.h>
30 #include <linux/parser.h>
31 #include <linux/idr.h>
33 #include "debug.h"
34 #include "v9fs.h"
35 #include "9p.h"
36 #include "v9fs_vfs.h"
37 #include "transport.h"
38 #include "mux.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)
48 enum {
49 /* Options that take integer arguments */
50 Opt_port, Opt_msize, Opt_uid, Opt_gid, Opt_afid, Opt_debug,
51 Opt_rfdno, Opt_wfdno,
52 /* String options */
53 Opt_uname, Opt_remotename,
54 /* Options that take no arguments */
55 Opt_legacy, Opt_nodevmap, Opt_unix, Opt_tcp, Opt_fd,
56 /* Cache options */
57 Opt_cache_loose,
58 /* Error token */
59 Opt_err
62 static match_table_t tokens = {
63 {Opt_port, "port=%u"},
64 {Opt_msize, "msize=%u"},
65 {Opt_uid, "uid=%u"},
66 {Opt_gid, "gid=%u"},
67 {Opt_afid, "afid=%u"},
68 {Opt_rfdno, "rfdno=%u"},
69 {Opt_wfdno, "wfdno=%u"},
70 {Opt_debug, "debug=%x"},
71 {Opt_uname, "uname=%s"},
72 {Opt_remotename, "aname=%s"},
73 {Opt_unix, "proto=unix"},
74 {Opt_tcp, "proto=tcp"},
75 {Opt_fd, "proto=fd"},
76 {Opt_tcp, "tcp"},
77 {Opt_unix, "unix"},
78 {Opt_fd, "fd"},
79 {Opt_legacy, "noextend"},
80 {Opt_nodevmap, "nodevmap"},
81 {Opt_cache_loose, "cache=loose"},
82 {Opt_cache_loose, "loose"},
83 {Opt_err, NULL}
87 * Parse option string.
90 /**
91 * v9fs_parse_options - parse mount options into session structure
92 * @options: options string passed from mount
93 * @v9ses: existing v9fs session information
97 static void v9fs_parse_options(char *options, struct v9fs_session_info *v9ses)
99 char *p;
100 substring_t args[MAX_OPT_ARGS];
101 int option;
102 int ret;
104 /* setup defaults */
105 v9ses->port = V9FS_PORT;
106 v9ses->maxdata = 9000;
107 v9ses->proto = PROTO_TCP;
108 v9ses->extended = 1;
109 v9ses->afid = ~0;
110 v9ses->debug = 0;
111 v9ses->rfdno = ~0;
112 v9ses->wfdno = ~0;
113 v9ses->cache = 0;
115 if (!options)
116 return;
118 while ((p = strsep(&options, ",")) != NULL) {
119 int token;
120 if (!*p)
121 continue;
122 token = match_token(p, tokens, args);
123 if (token < Opt_uname) {
124 if ((ret = match_int(&args[0], &option)) < 0) {
125 dprintk(DEBUG_ERROR,
126 "integer field, but no integer?\n");
127 continue;
130 switch (token) {
131 case Opt_port:
132 v9ses->port = option;
133 break;
134 case Opt_msize:
135 v9ses->maxdata = option;
136 break;
137 case Opt_uid:
138 v9ses->uid = option;
139 break;
140 case Opt_gid:
141 v9ses->gid = option;
142 break;
143 case Opt_afid:
144 v9ses->afid = option;
145 break;
146 case Opt_rfdno:
147 v9ses->rfdno = option;
148 break;
149 case Opt_wfdno:
150 v9ses->wfdno = option;
151 break;
152 case Opt_debug:
153 v9ses->debug = option;
154 break;
155 case Opt_tcp:
156 v9ses->proto = PROTO_TCP;
157 break;
158 case Opt_unix:
159 v9ses->proto = PROTO_UNIX;
160 break;
161 case Opt_fd:
162 v9ses->proto = PROTO_FD;
163 break;
164 case Opt_uname:
165 match_strcpy(v9ses->name, &args[0]);
166 break;
167 case Opt_remotename:
168 match_strcpy(v9ses->remotename, &args[0]);
169 break;
170 case Opt_legacy:
171 v9ses->extended = 0;
172 break;
173 case Opt_nodevmap:
174 v9ses->nodev = 1;
175 break;
176 case Opt_cache_loose:
177 v9ses->cache = CACHE_LOOSE;
178 break;
179 default:
180 continue;
186 * v9fs_inode2v9ses - safely extract v9fs session info from super block
187 * @inode: inode to extract information from
189 * Paranoid function to extract v9ses information from superblock,
190 * if anything is missing it will report an error.
194 struct v9fs_session_info *v9fs_inode2v9ses(struct inode *inode)
196 return (inode->i_sb->s_fs_info);
200 * v9fs_get_idpool - allocate numeric id from pool
201 * @p - pool to allocate from
203 * XXX - This seems to be an awful generic function, should it be in idr.c with
204 * the lock included in struct idr?
207 int v9fs_get_idpool(struct v9fs_idpool *p)
209 int i = 0;
210 int error;
212 retry:
213 if (idr_pre_get(&p->pool, GFP_KERNEL) == 0)
214 return 0;
216 if (down_interruptible(&p->lock) == -EINTR) {
217 eprintk(KERN_WARNING, "Interrupted while locking\n");
218 return -1;
221 /* no need to store exactly p, we just need something non-null */
222 error = idr_get_new(&p->pool, p, &i);
223 up(&p->lock);
225 if (error == -EAGAIN)
226 goto retry;
227 else if (error)
228 return -1;
230 return i;
234 * v9fs_put_idpool - release numeric id from pool
235 * @p - pool to allocate from
237 * XXX - This seems to be an awful generic function, should it be in idr.c with
238 * the lock included in struct idr?
241 void v9fs_put_idpool(int id, struct v9fs_idpool *p)
243 if (down_interruptible(&p->lock) == -EINTR) {
244 eprintk(KERN_WARNING, "Interrupted while locking\n");
245 return;
247 idr_remove(&p->pool, id);
248 up(&p->lock);
252 * v9fs_check_idpool - check if the specified id is available
253 * @id - id to check
254 * @p - pool
256 int v9fs_check_idpool(int id, struct v9fs_idpool *p)
258 return idr_find(&p->pool, id) != NULL;
262 * v9fs_session_init - initialize session
263 * @v9ses: session information structure
264 * @dev_name: device being mounted
265 * @data: options
270 v9fs_session_init(struct v9fs_session_info *v9ses,
271 const char *dev_name, char *data)
273 struct v9fs_fcall *fcall = NULL;
274 struct v9fs_transport *trans_proto;
275 int n = 0;
276 int newfid = -1;
277 int retval = -EINVAL;
278 struct v9fs_str *version;
280 v9ses->name = __getname();
281 if (!v9ses->name)
282 return -ENOMEM;
284 v9ses->remotename = __getname();
285 if (!v9ses->remotename) {
286 __putname(v9ses->name);
287 return -ENOMEM;
290 strcpy(v9ses->name, V9FS_DEFUSER);
291 strcpy(v9ses->remotename, V9FS_DEFANAME);
293 v9fs_parse_options(data, v9ses);
295 /* set global debug level */
296 v9fs_debug_level = v9ses->debug;
298 /* id pools that are session-dependent: fids and tags */
299 idr_init(&v9ses->fidpool.pool);
300 init_MUTEX(&v9ses->fidpool.lock);
302 switch (v9ses->proto) {
303 case PROTO_TCP:
304 trans_proto = &v9fs_trans_tcp;
305 break;
306 case PROTO_UNIX:
307 trans_proto = &v9fs_trans_unix;
308 *v9ses->remotename = 0;
309 break;
310 case PROTO_FD:
311 trans_proto = &v9fs_trans_fd;
312 *v9ses->remotename = 0;
313 break;
314 default:
315 printk(KERN_ERR "v9fs: Bad mount protocol %d\n", v9ses->proto);
316 retval = -ENOPROTOOPT;
317 goto SessCleanUp;
320 v9ses->transport = kmalloc(sizeof(*v9ses->transport), GFP_KERNEL);
321 if (!v9ses->transport) {
322 retval = -ENOMEM;
323 goto SessCleanUp;
326 memmove(v9ses->transport, trans_proto, sizeof(*v9ses->transport));
328 if ((retval = v9ses->transport->init(v9ses, dev_name, data)) < 0) {
329 eprintk(KERN_ERR, "problem initializing transport\n");
330 goto SessCleanUp;
333 v9ses->inprogress = 0;
334 v9ses->shutdown = 0;
335 v9ses->session_hung = 0;
337 v9ses->mux = v9fs_mux_init(v9ses->transport, v9ses->maxdata + V9FS_IOHDRSZ,
338 &v9ses->extended);
340 if (IS_ERR(v9ses->mux)) {
341 retval = PTR_ERR(v9ses->mux);
342 v9ses->mux = NULL;
343 dprintk(DEBUG_ERROR, "problem initializing mux\n");
344 goto SessCleanUp;
347 if (v9ses->afid == ~0) {
348 if (v9ses->extended)
349 retval =
350 v9fs_t_version(v9ses, v9ses->maxdata, "9P2000.u",
351 &fcall);
352 else
353 retval = v9fs_t_version(v9ses, v9ses->maxdata, "9P2000",
354 &fcall);
356 if (retval < 0) {
357 dprintk(DEBUG_ERROR, "v9fs_t_version failed\n");
358 goto FreeFcall;
361 version = &fcall->params.rversion.version;
362 if (version->len==8 && !memcmp(version->str, "9P2000.u", 8)) {
363 dprintk(DEBUG_9P, "9P2000 UNIX extensions enabled\n");
364 v9ses->extended = 1;
365 } else if (version->len==6 && !memcmp(version->str, "9P2000", 6)) {
366 dprintk(DEBUG_9P, "9P2000 legacy mode enabled\n");
367 v9ses->extended = 0;
368 } else {
369 retval = -EREMOTEIO;
370 goto FreeFcall;
373 n = fcall->params.rversion.msize;
374 kfree(fcall);
376 if (n < v9ses->maxdata)
377 v9ses->maxdata = n;
380 newfid = v9fs_get_idpool(&v9ses->fidpool);
381 if (newfid < 0) {
382 eprintk(KERN_WARNING, "couldn't allocate FID\n");
383 retval = -ENOMEM;
384 goto SessCleanUp;
386 /* it is a little bit ugly, but we have to prevent newfid */
387 /* being the same as afid, so if it is, get a new fid */
388 if (v9ses->afid != ~0 && newfid == v9ses->afid) {
389 newfid = v9fs_get_idpool(&v9ses->fidpool);
390 if (newfid < 0) {
391 eprintk(KERN_WARNING, "couldn't allocate FID\n");
392 retval = -ENOMEM;
393 goto SessCleanUp;
397 if ((retval =
398 v9fs_t_attach(v9ses, v9ses->name, v9ses->remotename, newfid,
399 v9ses->afid, NULL))
400 < 0) {
401 dprintk(DEBUG_ERROR, "cannot attach\n");
402 goto SessCleanUp;
405 if (v9ses->afid != ~0) {
406 dprintk(DEBUG_ERROR, "afid not equal to ~0\n");
407 if (v9fs_t_clunk(v9ses, v9ses->afid))
408 dprintk(DEBUG_ERROR, "clunk failed\n");
411 return newfid;
413 FreeFcall:
414 kfree(fcall);
416 SessCleanUp:
417 v9fs_session_close(v9ses);
418 return retval;
422 * v9fs_session_close - shutdown a session
423 * @v9ses: session information structure
427 void v9fs_session_close(struct v9fs_session_info *v9ses)
429 if (v9ses->mux) {
430 v9fs_mux_destroy(v9ses->mux);
431 v9ses->mux = NULL;
434 if (v9ses->transport) {
435 v9ses->transport->close(v9ses->transport);
436 kfree(v9ses->transport);
437 v9ses->transport = NULL;
440 __putname(v9ses->name);
441 __putname(v9ses->remotename);
445 * v9fs_session_cancel - mark transport as disconnected
446 * and cancel all pending requests.
448 void v9fs_session_cancel(struct v9fs_session_info *v9ses) {
449 dprintk(DEBUG_ERROR, "cancel session %p\n", v9ses);
450 v9ses->transport->status = Disconnected;
451 v9fs_mux_cancel(v9ses->mux, -EIO);
454 extern int v9fs_error_init(void);
457 * v9fs_init - Initialize module
461 static int __init init_v9fs(void)
463 int ret;
465 v9fs_error_init();
467 printk(KERN_INFO "Installing v9fs 9p2000 file system support\n");
469 ret = v9fs_mux_global_init();
470 if (ret) {
471 printk(KERN_WARNING "v9fs: starting mux failed\n");
472 return ret;
474 ret = register_filesystem(&v9fs_fs_type);
475 if (ret) {
476 printk(KERN_WARNING "v9fs: registering file system failed\n");
477 v9fs_mux_global_exit();
480 return ret;
484 * v9fs_init - shutdown module
488 static void __exit exit_v9fs(void)
490 v9fs_mux_global_exit();
491 unregister_filesystem(&v9fs_fs_type);
494 module_init(init_v9fs)
495 module_exit(exit_v9fs)
497 MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>");
498 MODULE_AUTHOR("Ron Minnich <rminnich@lanl.gov>");
499 MODULE_LICENSE("GPL");