]>
Commit | Line | Data |
---|---|---|
9e82cf6a EVH |
1 | /* |
2 | * linux/fs/9p/v9fs.c | |
3 | * | |
4 | * This file contains functions assisting in mapping VFS to 9P2000 | |
5 | * | |
8a0dc95f | 6 | * Copyright (C) 2004-2008 by Eric Van Hensbergen <[email protected]> |
9e82cf6a EVH |
7 | * Copyright (C) 2002 by Ron Minnich <[email protected]> |
8 | * | |
9 | * This program is free software; you can redistribute it and/or modify | |
42e8c509 EVH |
10 | * it under the terms of the GNU General Public License version 2 |
11 | * as published by the Free Software Foundation. | |
9e82cf6a EVH |
12 | * |
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. | |
17 | * | |
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 | |
23 | * | |
24 | */ | |
25 | ||
5d385153 JP |
26 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
27 | ||
9e82cf6a EVH |
28 | #include <linux/module.h> |
29 | #include <linux/errno.h> | |
30 | #include <linux/fs.h> | |
914e2637 | 31 | #include <linux/sched.h> |
9e82cf6a EVH |
32 | #include <linux/parser.h> |
33 | #include <linux/idr.h> | |
5a0e3ad6 | 34 | #include <linux/slab.h> |
bd238fb4 | 35 | #include <net/9p/9p.h> |
bd238fb4 | 36 | #include <net/9p/client.h> |
8b81ef58 | 37 | #include <net/9p/transport.h> |
9e82cf6a | 38 | #include "v9fs.h" |
9e82cf6a | 39 | #include "v9fs_vfs.h" |
60e78d2c AK |
40 | #include "cache.h" |
41 | ||
42 | static DEFINE_SPINLOCK(v9fs_sessionlist_lock); | |
43 | static LIST_HEAD(v9fs_sessionlist); | |
a78ce05d | 44 | struct kmem_cache *v9fs_inode_cache; |
9e82cf6a EVH |
45 | |
46 | /* | |
60e78d2c AK |
47 | * Option Parsing (code inspired by NFS code) |
48 | * NOTE: each transport will parse its own options | |
49 | */ | |
9e82cf6a EVH |
50 | |
51 | enum { | |
52 | /* Options that take integer arguments */ | |
8a0dc95f | 53 | Opt_debug, Opt_dfltuid, Opt_dfltgid, Opt_afid, |
9e82cf6a | 54 | /* String options */ |
60e78d2c | 55 | Opt_uname, Opt_remotename, Opt_trans, Opt_cache, Opt_cachetag, |
9e82cf6a | 56 | /* Options that take no arguments */ |
8a0dc95f | 57 | Opt_nodevmap, |
e03abc0c | 58 | /* Cache options */ |
60e78d2c | 59 | Opt_cache_loose, Opt_fscache, |
ba17674f | 60 | /* Access options */ |
e782ef71 | 61 | Opt_access, Opt_posixacl, |
9e82cf6a EVH |
62 | /* Error token */ |
63 | Opt_err | |
64 | }; | |
65 | ||
a447c093 | 66 | static const match_table_t tokens = { |
9e2f6688 | 67 | {Opt_debug, "debug=%x"}, |
bd32b82d LI |
68 | {Opt_dfltuid, "dfltuid=%u"}, |
69 | {Opt_dfltgid, "dfltgid=%u"}, | |
9e82cf6a | 70 | {Opt_afid, "afid=%u"}, |
67543e50 | 71 | {Opt_uname, "uname=%s"}, |
9e82cf6a | 72 | {Opt_remotename, "aname=%s"}, |
9e82cf6a | 73 | {Opt_nodevmap, "nodevmap"}, |
60e78d2c | 74 | {Opt_cache, "cache=%s"}, |
e03abc0c | 75 | {Opt_cache_loose, "loose"}, |
60e78d2c AK |
76 | {Opt_fscache, "fscache"}, |
77 | {Opt_cachetag, "cachetag=%s"}, | |
ba17674f | 78 | {Opt_access, "access=%s"}, |
e782ef71 | 79 | {Opt_posixacl, "posixacl"}, |
9e82cf6a EVH |
80 | {Opt_err, NULL} |
81 | }; | |
82 | ||
a2dd43bb PK |
83 | /* Interpret mount options for cache mode */ |
84 | static int get_cache_mode(char *s) | |
85 | { | |
86 | int version = -EINVAL; | |
87 | ||
88 | if (!strcmp(s, "loose")) { | |
89 | version = CACHE_LOOSE; | |
5d385153 | 90 | p9_debug(P9_DEBUG_9P, "Cache mode: loose\n"); |
a2dd43bb PK |
91 | } else if (!strcmp(s, "fscache")) { |
92 | version = CACHE_FSCACHE; | |
5d385153 | 93 | p9_debug(P9_DEBUG_9P, "Cache mode: fscache\n"); |
a2dd43bb PK |
94 | } else if (!strcmp(s, "none")) { |
95 | version = CACHE_NONE; | |
5d385153 | 96 | p9_debug(P9_DEBUG_9P, "Cache mode: none\n"); |
a2dd43bb | 97 | } else |
5d385153 | 98 | pr_info("Unknown Cache mode %s\n", s); |
a2dd43bb PK |
99 | return version; |
100 | } | |
101 | ||
9e82cf6a EVH |
102 | /** |
103 | * v9fs_parse_options - parse mount options into session structure | |
9e82cf6a EVH |
104 | * @v9ses: existing v9fs session information |
105 | * | |
ab31267d | 106 | * Return 0 upon success, -ERRNO upon failure. |
9e82cf6a EVH |
107 | */ |
108 | ||
4b53e4b5 | 109 | static int v9fs_parse_options(struct v9fs_session_info *v9ses, char *opts) |
9e82cf6a | 110 | { |
d8c8a9e3 | 111 | char *options, *tmp_options; |
9e82cf6a | 112 | substring_t args[MAX_OPT_ARGS]; |
a80d923e | 113 | char *p; |
8a0dc95f | 114 | int option = 0; |
ba17674f | 115 | char *s, *e; |
ab31267d | 116 | int ret = 0; |
9e82cf6a EVH |
117 | |
118 | /* setup defaults */ | |
9e82cf6a EVH |
119 | v9ses->afid = ~0; |
120 | v9ses->debug = 0; | |
a2dd43bb | 121 | v9ses->cache = CACHE_NONE; |
60e78d2c AK |
122 | #ifdef CONFIG_9P_FSCACHE |
123 | v9ses->cachetag = NULL; | |
124 | #endif | |
9e82cf6a | 125 | |
4b53e4b5 | 126 | if (!opts) |
ab31267d | 127 | return 0; |
9e82cf6a | 128 | |
d8c8a9e3 | 129 | tmp_options = kstrdup(opts, GFP_KERNEL); |
bf2d29c6 EVH |
130 | if (!tmp_options) { |
131 | ret = -ENOMEM; | |
60e78d2c | 132 | goto fail_option_alloc; |
bf2d29c6 | 133 | } |
d8c8a9e3 | 134 | options = tmp_options; |
ab31267d | 135 | |
9e82cf6a | 136 | while ((p = strsep(&options, ",")) != NULL) { |
4d5077f1 | 137 | int token, r; |
9e82cf6a EVH |
138 | if (!*p) |
139 | continue; | |
140 | token = match_token(p, tokens, args); | |
4d5077f1 AK |
141 | switch (token) { |
142 | case Opt_debug: | |
143 | r = match_int(&args[0], &option); | |
ab31267d | 144 | if (r < 0) { |
5d385153 JP |
145 | p9_debug(P9_DEBUG_ERROR, |
146 | "integer field, but no integer?\n"); | |
ab31267d | 147 | ret = r; |
9e82cf6a EVH |
148 | continue; |
149 | } | |
9e2f6688 | 150 | v9ses->debug = option; |
10fa16e7 | 151 | #ifdef CONFIG_NET_9P_DEBUG |
9e2f6688 | 152 | p9_debug_level = option; |
10fa16e7 | 153 | #endif |
9e2f6688 | 154 | break; |
8a0dc95f | 155 | |
bd32b82d | 156 | case Opt_dfltuid: |
4d5077f1 AK |
157 | r = match_int(&args[0], &option); |
158 | if (r < 0) { | |
5d385153 JP |
159 | p9_debug(P9_DEBUG_ERROR, |
160 | "integer field, but no integer?\n"); | |
4d5077f1 AK |
161 | ret = r; |
162 | continue; | |
163 | } | |
bd32b82d | 164 | v9ses->dfltuid = option; |
9e82cf6a | 165 | break; |
bd32b82d | 166 | case Opt_dfltgid: |
4d5077f1 AK |
167 | r = match_int(&args[0], &option); |
168 | if (r < 0) { | |
5d385153 JP |
169 | p9_debug(P9_DEBUG_ERROR, |
170 | "integer field, but no integer?\n"); | |
4d5077f1 AK |
171 | ret = r; |
172 | continue; | |
173 | } | |
bd32b82d | 174 | v9ses->dfltgid = option; |
9e82cf6a EVH |
175 | break; |
176 | case Opt_afid: | |
4d5077f1 AK |
177 | r = match_int(&args[0], &option); |
178 | if (r < 0) { | |
5d385153 JP |
179 | p9_debug(P9_DEBUG_ERROR, |
180 | "integer field, but no integer?\n"); | |
4d5077f1 AK |
181 | ret = r; |
182 | continue; | |
183 | } | |
9e82cf6a EVH |
184 | v9ses->afid = option; |
185 | break; | |
67543e50 | 186 | case Opt_uname: |
b32a09db | 187 | match_strlcpy(v9ses->uname, &args[0], PATH_MAX); |
9e82cf6a EVH |
188 | break; |
189 | case Opt_remotename: | |
b32a09db | 190 | match_strlcpy(v9ses->aname, &args[0], PATH_MAX); |
9e82cf6a | 191 | break; |
9e82cf6a EVH |
192 | case Opt_nodevmap: |
193 | v9ses->nodev = 1; | |
194 | break; | |
e03abc0c EVH |
195 | case Opt_cache_loose: |
196 | v9ses->cache = CACHE_LOOSE; | |
197 | break; | |
60e78d2c AK |
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]); | |
bf2d29c6 EVH |
208 | if (!s) { |
209 | ret = -ENOMEM; | |
5d385153 JP |
210 | p9_debug(P9_DEBUG_ERROR, |
211 | "problem allocating copy of cache arg\n"); | |
bf2d29c6 EVH |
212 | goto free_and_return; |
213 | } | |
a2dd43bb PK |
214 | ret = get_cache_mode(s); |
215 | if (ret == -EINVAL) { | |
216 | kfree(s); | |
217 | goto free_and_return; | |
218 | } | |
60e78d2c | 219 | |
a2dd43bb | 220 | v9ses->cache = ret; |
60e78d2c AK |
221 | kfree(s); |
222 | break; | |
ba17674f LI |
223 | |
224 | case Opt_access: | |
225 | s = match_strdup(&args[0]); | |
bf2d29c6 EVH |
226 | if (!s) { |
227 | ret = -ENOMEM; | |
5d385153 JP |
228 | p9_debug(P9_DEBUG_ERROR, |
229 | "problem allocating copy of access arg\n"); | |
bf2d29c6 EVH |
230 | goto free_and_return; |
231 | } | |
60e78d2c | 232 | |
ba17674f LI |
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; | |
76381a42 | 238 | else if (strcmp(s, "client") == 0) { |
76381a42 | 239 | v9ses->flags |= V9FS_ACCESS_CLIENT; |
76381a42 | 240 | } else { |
ba17674f | 241 | v9ses->flags |= V9FS_ACCESS_SINGLE; |
f1d9e458 | 242 | v9ses->uid = simple_strtoul(s, &e, 10); |
a2dd43bb PK |
243 | if (*e != '\0') { |
244 | ret = -EINVAL; | |
5d385153 JP |
245 | pr_info("Unknown access argument %s\n", |
246 | s); | |
a2dd43bb PK |
247 | kfree(s); |
248 | goto free_and_return; | |
249 | } | |
ba17674f | 250 | } |
a2dd43bb | 251 | |
0a976297 | 252 | kfree(s); |
ba17674f LI |
253 | break; |
254 | ||
e782ef71 VJJ |
255 | case Opt_posixacl: |
256 | #ifdef CONFIG_9P_FS_POSIX_ACL | |
257 | v9ses->flags |= V9FS_POSIX_ACL; | |
258 | #else | |
5d385153 JP |
259 | p9_debug(P9_DEBUG_ERROR, |
260 | "Not defined CONFIG_9P_FS_POSIX_ACL. Ignoring posixacl option\n"); | |
e782ef71 VJJ |
261 | #endif |
262 | break; | |
263 | ||
9e82cf6a EVH |
264 | default: |
265 | continue; | |
266 | } | |
267 | } | |
d8c8a9e3 | 268 | |
bf2d29c6 | 269 | free_and_return: |
d8c8a9e3 | 270 | kfree(tmp_options); |
60e78d2c | 271 | fail_option_alloc: |
bf2d29c6 | 272 | return ret; |
9e82cf6a EVH |
273 | } |
274 | ||
9e82cf6a EVH |
275 | /** |
276 | * v9fs_session_init - initialize session | |
277 | * @v9ses: session information structure | |
278 | * @dev_name: device being mounted | |
279 | * @data: options | |
280 | * | |
281 | */ | |
282 | ||
bd238fb4 | 283 | struct p9_fid *v9fs_session_init(struct v9fs_session_info *v9ses, |
9e82cf6a EVH |
284 | const char *dev_name, char *data) |
285 | { | |
9e82cf6a | 286 | int retval = -EINVAL; |
bd238fb4 | 287 | struct p9_fid *fid; |
ab31267d | 288 | int rc; |
9e82cf6a | 289 | |
ba17674f LI |
290 | v9ses->uname = __getname(); |
291 | if (!v9ses->uname) | |
bd238fb4 | 292 | return ERR_PTR(-ENOMEM); |
9e82cf6a | 293 | |
ba17674f LI |
294 | v9ses->aname = __getname(); |
295 | if (!v9ses->aname) { | |
296 | __putname(v9ses->uname); | |
bd238fb4 | 297 | return ERR_PTR(-ENOMEM); |
9e82cf6a | 298 | } |
a534c8d1 | 299 | init_rwsem(&v9ses->rename_sem); |
9e82cf6a | 300 | |
0ed07ddb JA |
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); | |
306 | } | |
307 | ||
60e78d2c AK |
308 | spin_lock(&v9fs_sessionlist_lock); |
309 | list_add(&v9ses->slist, &v9fs_sessionlist); | |
310 | spin_unlock(&v9fs_sessionlist_lock); | |
311 | ||
ba17674f LI |
312 | strcpy(v9ses->uname, V9FS_DEFUSER); |
313 | strcpy(v9ses->aname, V9FS_DEFANAME); | |
314 | v9ses->uid = ~0; | |
bd32b82d LI |
315 | v9ses->dfltuid = V9FS_DEFUID; |
316 | v9ses->dfltgid = V9FS_DEFGID; | |
ab31267d | 317 | |
4b53e4b5 | 318 | v9ses->clnt = p9_client_create(dev_name, data); |
bd238fb4 LI |
319 | if (IS_ERR(v9ses->clnt)) { |
320 | retval = PTR_ERR(v9ses->clnt); | |
321 | v9ses->clnt = NULL; | |
5d385153 | 322 | p9_debug(P9_DEBUG_ERROR, "problem initializing 9p client\n"); |
bd238fb4 | 323 | goto error; |
9e82cf6a EVH |
324 | } |
325 | ||
6752a1eb VJJ |
326 | v9ses->flags = V9FS_ACCESS_USER; |
327 | ||
328 | if (p9_is_proto_dotl(v9ses->clnt)) { | |
329 | v9ses->flags = V9FS_ACCESS_CLIENT; | |
476ada04 | 330 | v9ses->flags |= V9FS_PROTO_2000L; |
6752a1eb | 331 | } else if (p9_is_proto_dotu(v9ses->clnt)) { |
476ada04 | 332 | v9ses->flags |= V9FS_PROTO_2000U; |
6752a1eb VJJ |
333 | } |
334 | ||
335 | rc = v9fs_parse_options(v9ses, data); | |
336 | if (rc < 0) { | |
337 | retval = rc; | |
338 | goto error; | |
339 | } | |
ba17674f | 340 | |
fbedadc1 | 341 | v9ses->maxdata = v9ses->clnt->msize - P9_IOHDRSZ; |
8a0dc95f | 342 | |
76381a42 AK |
343 | if (!v9fs_proto_dotl(v9ses) && |
344 | ((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_CLIENT)) { | |
345 | /* | |
346 | * We support ACCESS_CLIENT only for dotl. | |
347 | * Fall back to ACCESS_USER | |
348 | */ | |
349 | v9ses->flags &= ~V9FS_ACCESS_MASK; | |
350 | v9ses->flags |= V9FS_ACCESS_USER; | |
351 | } | |
352 | /*FIXME !! */ | |
ba17674f | 353 | /* for legacy mode, fall back to V9FS_ACCESS_ANY */ |
9ffaf63e | 354 | if (!(v9fs_proto_dotu(v9ses) || v9fs_proto_dotl(v9ses)) && |
ba17674f LI |
355 | ((v9ses->flags&V9FS_ACCESS_MASK) == V9FS_ACCESS_USER)) { |
356 | ||
357 | v9ses->flags &= ~V9FS_ACCESS_MASK; | |
358 | v9ses->flags |= V9FS_ACCESS_ANY; | |
359 | v9ses->uid = ~0; | |
360 | } | |
e782ef71 VJJ |
361 | if (!v9fs_proto_dotl(v9ses) || |
362 | !((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_CLIENT)) { | |
363 | /* | |
364 | * We support ACL checks on clinet only if the protocol is | |
365 | * 9P2000.L and access is V9FS_ACCESS_CLIENT. | |
366 | */ | |
367 | v9ses->flags &= ~V9FS_ACL_MASK; | |
368 | } | |
ba17674f LI |
369 | |
370 | fid = p9_client_attach(v9ses->clnt, NULL, v9ses->uname, ~0, | |
371 | v9ses->aname); | |
bd238fb4 LI |
372 | if (IS_ERR(fid)) { |
373 | retval = PTR_ERR(fid); | |
374 | fid = NULL; | |
5d385153 | 375 | p9_debug(P9_DEBUG_ERROR, "cannot attach\n"); |
bd238fb4 | 376 | goto error; |
9e82cf6a EVH |
377 | } |
378 | ||
ba17674f LI |
379 | if ((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_SINGLE) |
380 | fid->uid = v9ses->uid; | |
381 | else | |
382 | fid->uid = ~0; | |
383 | ||
60e78d2c AK |
384 | #ifdef CONFIG_9P_FSCACHE |
385 | /* register the session for caching */ | |
386 | v9fs_cache_session_get_cookie(v9ses); | |
387 | #endif | |
388 | ||
bd238fb4 | 389 | return fid; |
9e82cf6a | 390 | |
bd238fb4 | 391 | error: |
0ed07ddb | 392 | bdi_destroy(&v9ses->bdi); |
bd238fb4 | 393 | return ERR_PTR(retval); |
9e82cf6a EVH |
394 | } |
395 | ||
396 | /** | |
397 | * v9fs_session_close - shutdown a session | |
398 | * @v9ses: session information structure | |
399 | * | |
400 | */ | |
401 | ||
402 | void v9fs_session_close(struct v9fs_session_info *v9ses) | |
403 | { | |
bd238fb4 LI |
404 | if (v9ses->clnt) { |
405 | p9_client_destroy(v9ses->clnt); | |
406 | v9ses->clnt = NULL; | |
3cf6429a | 407 | } |
9e82cf6a | 408 | |
60e78d2c AK |
409 | #ifdef CONFIG_9P_FSCACHE |
410 | if (v9ses->fscache) { | |
411 | v9fs_cache_session_put_cookie(v9ses); | |
412 | kfree(v9ses->cachetag); | |
413 | } | |
414 | #endif | |
ba17674f LI |
415 | __putname(v9ses->uname); |
416 | __putname(v9ses->aname); | |
60e78d2c | 417 | |
0ed07ddb JA |
418 | bdi_destroy(&v9ses->bdi); |
419 | ||
60e78d2c AK |
420 | spin_lock(&v9fs_sessionlist_lock); |
421 | list_del(&v9ses->slist); | |
422 | spin_unlock(&v9fs_sessionlist_lock); | |
9e82cf6a EVH |
423 | } |
424 | ||
322b329a | 425 | /** |
ee443996 EVH |
426 | * v9fs_session_cancel - terminate a session |
427 | * @v9ses: session to terminate | |
428 | * | |
429 | * mark transport as disconnected and cancel all pending requests. | |
322b329a | 430 | */ |
ee443996 | 431 | |
322b329a | 432 | void v9fs_session_cancel(struct v9fs_session_info *v9ses) { |
5d385153 | 433 | p9_debug(P9_DEBUG_ERROR, "cancel session %p\n", v9ses); |
bd238fb4 | 434 | p9_client_disconnect(v9ses->clnt); |
322b329a EVH |
435 | } |
436 | ||
6d96d3ab AK |
437 | /** |
438 | * v9fs_session_begin_cancel - Begin terminate of a session | |
439 | * @v9ses: session to terminate | |
440 | * | |
441 | * After this call we don't allow any request other than clunk. | |
442 | */ | |
443 | ||
444 | void v9fs_session_begin_cancel(struct v9fs_session_info *v9ses) | |
445 | { | |
5d385153 | 446 | p9_debug(P9_DEBUG_ERROR, "begin cancel session %p\n", v9ses); |
6d96d3ab AK |
447 | p9_client_begin_disconnect(v9ses->clnt); |
448 | } | |
449 | ||
9e82cf6a EVH |
450 | extern int v9fs_error_init(void); |
451 | ||
60e78d2c AK |
452 | static struct kobject *v9fs_kobj; |
453 | ||
454 | #ifdef CONFIG_9P_FSCACHE | |
9e82cf6a | 455 | /** |
60e78d2c AK |
456 | * caches_show - list caches associated with a session |
457 | * | |
458 | * Returns the size of buffer written. | |
459 | */ | |
460 | ||
461 | static ssize_t caches_show(struct kobject *kobj, | |
462 | struct kobj_attribute *attr, | |
463 | char *buf) | |
464 | { | |
465 | ssize_t n = 0, count = 0, limit = PAGE_SIZE; | |
466 | struct v9fs_session_info *v9ses; | |
467 | ||
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; | |
475 | } | |
476 | ||
477 | count += n; | |
478 | limit -= n; | |
479 | } | |
480 | } | |
481 | ||
482 | spin_unlock(&v9fs_sessionlist_lock); | |
483 | return count; | |
484 | } | |
485 | ||
486 | static struct kobj_attribute v9fs_attr_cache = __ATTR_RO(caches); | |
487 | #endif /* CONFIG_9P_FSCACHE */ | |
488 | ||
489 | static struct attribute *v9fs_attrs[] = { | |
490 | #ifdef CONFIG_9P_FSCACHE | |
491 | &v9fs_attr_cache.attr, | |
492 | #endif | |
493 | NULL, | |
494 | }; | |
495 | ||
496 | static struct attribute_group v9fs_attr_group = { | |
497 | .attrs = v9fs_attrs, | |
498 | }; | |
499 | ||
500 | /** | |
501 | * v9fs_sysfs_init - Initialize the v9fs sysfs interface | |
502 | * | |
503 | */ | |
504 | ||
505 | static int v9fs_sysfs_init(void) | |
506 | { | |
507 | v9fs_kobj = kobject_create_and_add("9p", fs_kobj); | |
508 | if (!v9fs_kobj) | |
509 | return -ENOMEM; | |
510 | ||
511 | if (sysfs_create_group(v9fs_kobj, &v9fs_attr_group)) { | |
512 | kobject_put(v9fs_kobj); | |
513 | return -ENOMEM; | |
514 | } | |
515 | ||
516 | return 0; | |
517 | } | |
518 | ||
519 | /** | |
520 | * v9fs_sysfs_cleanup - Unregister the v9fs sysfs interface | |
521 | * | |
522 | */ | |
523 | ||
524 | static void v9fs_sysfs_cleanup(void) | |
525 | { | |
526 | sysfs_remove_group(v9fs_kobj, &v9fs_attr_group); | |
527 | kobject_put(v9fs_kobj); | |
528 | } | |
529 | ||
a78ce05d AK |
530 | static void v9fs_inode_init_once(void *foo) |
531 | { | |
532 | struct v9fs_inode *v9inode = (struct v9fs_inode *)foo; | |
533 | #ifdef CONFIG_9P_FSCACHE | |
534 | v9inode->fscache = NULL; | |
a78ce05d | 535 | #endif |
fd2421f5 | 536 | memset(&v9inode->qid, 0, sizeof(v9inode->qid)); |
a78ce05d AK |
537 | inode_init_once(&v9inode->vfs_inode); |
538 | } | |
539 | ||
540 | /** | |
541 | * v9fs_init_inode_cache - initialize a cache for 9P | |
542 | * Returns 0 on success. | |
543 | */ | |
544 | static int v9fs_init_inode_cache(void) | |
545 | { | |
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; | |
553 | ||
554 | return 0; | |
555 | } | |
556 | ||
557 | /** | |
558 | * v9fs_destroy_inode_cache - destroy the cache of 9P inode | |
559 | * | |
560 | */ | |
561 | static void v9fs_destroy_inode_cache(void) | |
562 | { | |
563 | kmem_cache_destroy(v9fs_inode_cache); | |
564 | } | |
565 | ||
566 | static int v9fs_cache_register(void) | |
567 | { | |
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 | |
577 | } | |
578 | ||
579 | static void v9fs_cache_unregister(void) | |
580 | { | |
581 | v9fs_destroy_inode_cache(); | |
582 | #ifdef CONFIG_9P_FSCACHE | |
583 | fscache_unregister_netfs(&v9fs_cache_netfs); | |
584 | #endif | |
585 | } | |
586 | ||
60e78d2c AK |
587 | /** |
588 | * init_v9fs - Initialize module | |
9e82cf6a EVH |
589 | * |
590 | */ | |
591 | ||
592 | static int __init init_v9fs(void) | |
593 | { | |
60e78d2c | 594 | int err; |
5d385153 | 595 | pr_info("Installing v9fs 9p2000 file system support\n"); |
a80d923e | 596 | /* TODO: Setup list of registered trasnport modules */ |
60e78d2c AK |
597 | err = register_filesystem(&v9fs_fs_type); |
598 | if (err < 0) { | |
5d385153 | 599 | pr_err("Failed to register filesystem\n"); |
60e78d2c AK |
600 | return err; |
601 | } | |
602 | ||
603 | err = v9fs_cache_register(); | |
604 | if (err < 0) { | |
5d385153 | 605 | pr_err("Failed to register v9fs for caching\n"); |
60e78d2c AK |
606 | goto out_fs_unreg; |
607 | } | |
608 | ||
609 | err = v9fs_sysfs_init(); | |
610 | if (err < 0) { | |
5d385153 | 611 | pr_err("Failed to register with sysfs\n"); |
60e78d2c AK |
612 | goto out_sysfs_cleanup; |
613 | } | |
614 | ||
615 | return 0; | |
616 | ||
617 | out_sysfs_cleanup: | |
618 | v9fs_sysfs_cleanup(); | |
619 | ||
620 | out_fs_unreg: | |
621 | unregister_filesystem(&v9fs_fs_type); | |
622 | ||
623 | return err; | |
9e82cf6a EVH |
624 | } |
625 | ||
626 | /** | |
60e78d2c | 627 | * exit_v9fs - shutdown module |
9e82cf6a EVH |
628 | * |
629 | */ | |
630 | ||
631 | static void __exit exit_v9fs(void) | |
632 | { | |
60e78d2c AK |
633 | v9fs_sysfs_cleanup(); |
634 | v9fs_cache_unregister(); | |
9e82cf6a EVH |
635 | unregister_filesystem(&v9fs_fs_type); |
636 | } | |
637 | ||
638 | module_init(init_v9fs) | |
639 | module_exit(exit_v9fs) | |
640 | ||
bd238fb4 | 641 | MODULE_AUTHOR("Latchesar Ionkov <[email protected]>"); |
9e82cf6a EVH |
642 | MODULE_AUTHOR("Eric Van Hensbergen <[email protected]>"); |
643 | MODULE_AUTHOR("Ron Minnich <[email protected]>"); | |
644 | MODULE_LICENSE("GPL"); |