]>
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> |
5b825c3a | 32 | #include <linux/cred.h> |
9e82cf6a EVH |
33 | #include <linux/parser.h> |
34 | #include <linux/idr.h> | |
5a0e3ad6 | 35 | #include <linux/slab.h> |
c4fac910 | 36 | #include <linux/seq_file.h> |
bd238fb4 | 37 | #include <net/9p/9p.h> |
bd238fb4 | 38 | #include <net/9p/client.h> |
8b81ef58 | 39 | #include <net/9p/transport.h> |
9e82cf6a | 40 | #include "v9fs.h" |
9e82cf6a | 41 | #include "v9fs_vfs.h" |
60e78d2c AK |
42 | #include "cache.h" |
43 | ||
44 | static DEFINE_SPINLOCK(v9fs_sessionlist_lock); | |
45 | static LIST_HEAD(v9fs_sessionlist); | |
a78ce05d | 46 | struct kmem_cache *v9fs_inode_cache; |
9e82cf6a EVH |
47 | |
48 | /* | |
60e78d2c AK |
49 | * Option Parsing (code inspired by NFS code) |
50 | * NOTE: each transport will parse its own options | |
51 | */ | |
9e82cf6a EVH |
52 | |
53 | enum { | |
54 | /* Options that take integer arguments */ | |
8a0dc95f | 55 | Opt_debug, Opt_dfltuid, Opt_dfltgid, Opt_afid, |
9e82cf6a | 56 | /* String options */ |
cb9af418 | 57 | Opt_uname, Opt_remotename, Opt_cache, Opt_cachetag, |
9e82cf6a | 58 | /* Options that take no arguments */ |
8a0dc95f | 59 | Opt_nodevmap, |
e03abc0c | 60 | /* Cache options */ |
fb89b45c | 61 | Opt_cache_loose, Opt_fscache, Opt_mmap, |
ba17674f | 62 | /* Access options */ |
e782ef71 | 63 | Opt_access, Opt_posixacl, |
9e82cf6a EVH |
64 | /* Error token */ |
65 | Opt_err | |
66 | }; | |
67 | ||
a447c093 | 68 | static const match_table_t tokens = { |
9e2f6688 | 69 | {Opt_debug, "debug=%x"}, |
bd32b82d LI |
70 | {Opt_dfltuid, "dfltuid=%u"}, |
71 | {Opt_dfltgid, "dfltgid=%u"}, | |
9e82cf6a | 72 | {Opt_afid, "afid=%u"}, |
67543e50 | 73 | {Opt_uname, "uname=%s"}, |
9e82cf6a | 74 | {Opt_remotename, "aname=%s"}, |
9e82cf6a | 75 | {Opt_nodevmap, "nodevmap"}, |
60e78d2c | 76 | {Opt_cache, "cache=%s"}, |
e03abc0c | 77 | {Opt_cache_loose, "loose"}, |
60e78d2c | 78 | {Opt_fscache, "fscache"}, |
fb89b45c | 79 | {Opt_mmap, "mmap"}, |
60e78d2c | 80 | {Opt_cachetag, "cachetag=%s"}, |
ba17674f | 81 | {Opt_access, "access=%s"}, |
e782ef71 | 82 | {Opt_posixacl, "posixacl"}, |
9e82cf6a EVH |
83 | {Opt_err, NULL} |
84 | }; | |
85 | ||
c4fac910 DH |
86 | static const char *const v9fs_cache_modes[nr__p9_cache_modes] = { |
87 | [CACHE_NONE] = "none", | |
88 | [CACHE_MMAP] = "mmap", | |
89 | [CACHE_LOOSE] = "loose", | |
90 | [CACHE_FSCACHE] = "fscache", | |
91 | }; | |
92 | ||
a2dd43bb PK |
93 | /* Interpret mount options for cache mode */ |
94 | static int get_cache_mode(char *s) | |
95 | { | |
96 | int version = -EINVAL; | |
97 | ||
98 | if (!strcmp(s, "loose")) { | |
99 | version = CACHE_LOOSE; | |
5d385153 | 100 | p9_debug(P9_DEBUG_9P, "Cache mode: loose\n"); |
a2dd43bb PK |
101 | } else if (!strcmp(s, "fscache")) { |
102 | version = CACHE_FSCACHE; | |
5d385153 | 103 | p9_debug(P9_DEBUG_9P, "Cache mode: fscache\n"); |
fb89b45c DM |
104 | } else if (!strcmp(s, "mmap")) { |
105 | version = CACHE_MMAP; | |
106 | p9_debug(P9_DEBUG_9P, "Cache mode: mmap\n"); | |
a2dd43bb PK |
107 | } else if (!strcmp(s, "none")) { |
108 | version = CACHE_NONE; | |
5d385153 | 109 | p9_debug(P9_DEBUG_9P, "Cache mode: none\n"); |
a2dd43bb | 110 | } else |
5d385153 | 111 | pr_info("Unknown Cache mode %s\n", s); |
a2dd43bb PK |
112 | return version; |
113 | } | |
114 | ||
c4fac910 DH |
115 | /* |
116 | * Display the mount options in /proc/mounts. | |
117 | */ | |
118 | int v9fs_show_options(struct seq_file *m, struct dentry *root) | |
119 | { | |
120 | struct v9fs_session_info *v9ses = root->d_sb->s_fs_info; | |
121 | ||
122 | if (v9ses->debug) | |
123 | seq_printf(m, ",debug=%x", v9ses->debug); | |
124 | if (!uid_eq(v9ses->dfltuid, V9FS_DEFUID)) | |
125 | seq_printf(m, ",dfltuid=%u", | |
126 | from_kuid_munged(&init_user_ns, v9ses->dfltuid)); | |
127 | if (!gid_eq(v9ses->dfltgid, V9FS_DEFGID)) | |
128 | seq_printf(m, ",dfltgid=%u", | |
129 | from_kgid_munged(&init_user_ns, v9ses->dfltgid)); | |
130 | if (v9ses->afid != ~0) | |
131 | seq_printf(m, ",afid=%u", v9ses->afid); | |
132 | if (strcmp(v9ses->uname, V9FS_DEFUSER) != 0) | |
133 | seq_printf(m, ",uname=%s", v9ses->uname); | |
134 | if (strcmp(v9ses->aname, V9FS_DEFANAME) != 0) | |
135 | seq_printf(m, ",aname=%s", v9ses->aname); | |
136 | if (v9ses->nodev) | |
137 | seq_puts(m, ",nodevmap"); | |
138 | if (v9ses->cache) | |
139 | seq_printf(m, ",%s", v9fs_cache_modes[v9ses->cache]); | |
140 | #ifdef CONFIG_9P_FSCACHE | |
141 | if (v9ses->cachetag && v9ses->cache == CACHE_FSCACHE) | |
142 | seq_printf(m, ",cachetag=%s", v9ses->cachetag); | |
143 | #endif | |
144 | ||
145 | switch (v9ses->flags & V9FS_ACCESS_MASK) { | |
146 | case V9FS_ACCESS_USER: | |
147 | seq_puts(m, ",access=user"); | |
148 | break; | |
149 | case V9FS_ACCESS_ANY: | |
150 | seq_puts(m, ",access=any"); | |
151 | break; | |
152 | case V9FS_ACCESS_CLIENT: | |
153 | seq_puts(m, ",access=client"); | |
154 | break; | |
155 | case V9FS_ACCESS_SINGLE: | |
156 | seq_printf(m, ",access=%u", | |
157 | from_kuid_munged(&init_user_ns, v9ses->uid)); | |
158 | break; | |
159 | } | |
160 | ||
161 | if (v9ses->flags & V9FS_POSIX_ACL) | |
162 | seq_puts(m, ",posixacl"); | |
163 | ||
164 | return p9_show_client_options(m, v9ses->clnt); | |
165 | } | |
166 | ||
9e82cf6a EVH |
167 | /** |
168 | * v9fs_parse_options - parse mount options into session structure | |
9e82cf6a EVH |
169 | * @v9ses: existing v9fs session information |
170 | * | |
ab31267d | 171 | * Return 0 upon success, -ERRNO upon failure. |
9e82cf6a EVH |
172 | */ |
173 | ||
4b53e4b5 | 174 | static int v9fs_parse_options(struct v9fs_session_info *v9ses, char *opts) |
9e82cf6a | 175 | { |
d8c8a9e3 | 176 | char *options, *tmp_options; |
9e82cf6a | 177 | substring_t args[MAX_OPT_ARGS]; |
a80d923e | 178 | char *p; |
8a0dc95f | 179 | int option = 0; |
ba17674f | 180 | char *s, *e; |
ab31267d | 181 | int ret = 0; |
9e82cf6a EVH |
182 | |
183 | /* setup defaults */ | |
9e82cf6a EVH |
184 | v9ses->afid = ~0; |
185 | v9ses->debug = 0; | |
a2dd43bb | 186 | v9ses->cache = CACHE_NONE; |
60e78d2c AK |
187 | #ifdef CONFIG_9P_FSCACHE |
188 | v9ses->cachetag = NULL; | |
189 | #endif | |
9e82cf6a | 190 | |
4b53e4b5 | 191 | if (!opts) |
ab31267d | 192 | return 0; |
9e82cf6a | 193 | |
d8c8a9e3 | 194 | tmp_options = kstrdup(opts, GFP_KERNEL); |
bf2d29c6 EVH |
195 | if (!tmp_options) { |
196 | ret = -ENOMEM; | |
60e78d2c | 197 | goto fail_option_alloc; |
bf2d29c6 | 198 | } |
d8c8a9e3 | 199 | options = tmp_options; |
ab31267d | 200 | |
9e82cf6a | 201 | while ((p = strsep(&options, ",")) != NULL) { |
4d5077f1 | 202 | int token, r; |
9e82cf6a EVH |
203 | if (!*p) |
204 | continue; | |
205 | token = match_token(p, tokens, args); | |
4d5077f1 AK |
206 | switch (token) { |
207 | case Opt_debug: | |
208 | r = match_int(&args[0], &option); | |
ab31267d | 209 | if (r < 0) { |
5d385153 JP |
210 | p9_debug(P9_DEBUG_ERROR, |
211 | "integer field, but no integer?\n"); | |
ab31267d | 212 | ret = r; |
478ae0ca CX |
213 | } else { |
214 | v9ses->debug = option; | |
10fa16e7 | 215 | #ifdef CONFIG_NET_9P_DEBUG |
478ae0ca | 216 | p9_debug_level = option; |
10fa16e7 | 217 | #endif |
478ae0ca | 218 | } |
9e2f6688 | 219 | break; |
8a0dc95f | 220 | |
bd32b82d | 221 | case Opt_dfltuid: |
4d5077f1 AK |
222 | r = match_int(&args[0], &option); |
223 | if (r < 0) { | |
5d385153 JP |
224 | p9_debug(P9_DEBUG_ERROR, |
225 | "integer field, but no integer?\n"); | |
4d5077f1 AK |
226 | ret = r; |
227 | continue; | |
228 | } | |
76ed23a5 EB |
229 | v9ses->dfltuid = make_kuid(current_user_ns(), option); |
230 | if (!uid_valid(v9ses->dfltuid)) { | |
231 | p9_debug(P9_DEBUG_ERROR, | |
232 | "uid field, but not a uid?\n"); | |
233 | ret = -EINVAL; | |
76ed23a5 | 234 | } |
9e82cf6a | 235 | break; |
bd32b82d | 236 | case Opt_dfltgid: |
4d5077f1 AK |
237 | r = match_int(&args[0], &option); |
238 | if (r < 0) { | |
5d385153 JP |
239 | p9_debug(P9_DEBUG_ERROR, |
240 | "integer field, but no integer?\n"); | |
4d5077f1 AK |
241 | ret = r; |
242 | continue; | |
243 | } | |
76ed23a5 EB |
244 | v9ses->dfltgid = make_kgid(current_user_ns(), option); |
245 | if (!gid_valid(v9ses->dfltgid)) { | |
246 | p9_debug(P9_DEBUG_ERROR, | |
247 | "gid field, but not a gid?\n"); | |
248 | ret = -EINVAL; | |
76ed23a5 | 249 | } |
9e82cf6a EVH |
250 | break; |
251 | case Opt_afid: | |
4d5077f1 AK |
252 | r = match_int(&args[0], &option); |
253 | if (r < 0) { | |
5d385153 JP |
254 | p9_debug(P9_DEBUG_ERROR, |
255 | "integer field, but no integer?\n"); | |
4d5077f1 | 256 | ret = r; |
478ae0ca CX |
257 | } else { |
258 | v9ses->afid = option; | |
4d5077f1 | 259 | } |
9e82cf6a | 260 | break; |
67543e50 | 261 | case Opt_uname: |
e549c133 JL |
262 | kfree(v9ses->uname); |
263 | v9ses->uname = match_strdup(&args[0]); | |
264 | if (!v9ses->uname) { | |
265 | ret = -ENOMEM; | |
266 | goto free_and_return; | |
267 | } | |
9e82cf6a EVH |
268 | break; |
269 | case Opt_remotename: | |
e549c133 JL |
270 | kfree(v9ses->aname); |
271 | v9ses->aname = match_strdup(&args[0]); | |
272 | if (!v9ses->aname) { | |
273 | ret = -ENOMEM; | |
274 | goto free_and_return; | |
275 | } | |
9e82cf6a | 276 | break; |
9e82cf6a EVH |
277 | case Opt_nodevmap: |
278 | v9ses->nodev = 1; | |
279 | break; | |
e03abc0c EVH |
280 | case Opt_cache_loose: |
281 | v9ses->cache = CACHE_LOOSE; | |
282 | break; | |
60e78d2c AK |
283 | case Opt_fscache: |
284 | v9ses->cache = CACHE_FSCACHE; | |
285 | break; | |
fb89b45c DM |
286 | case Opt_mmap: |
287 | v9ses->cache = CACHE_MMAP; | |
288 | break; | |
60e78d2c AK |
289 | case Opt_cachetag: |
290 | #ifdef CONFIG_9P_FSCACHE | |
c4fac910 | 291 | kfree(v9ses->cachetag); |
60e78d2c | 292 | v9ses->cachetag = match_strdup(&args[0]); |
a25c3657 CX |
293 | if (!v9ses->cachetag) { |
294 | ret = -ENOMEM; | |
295 | goto free_and_return; | |
296 | } | |
60e78d2c AK |
297 | #endif |
298 | break; | |
299 | case Opt_cache: | |
300 | s = match_strdup(&args[0]); | |
bf2d29c6 EVH |
301 | if (!s) { |
302 | ret = -ENOMEM; | |
5d385153 JP |
303 | p9_debug(P9_DEBUG_ERROR, |
304 | "problem allocating copy of cache arg\n"); | |
bf2d29c6 EVH |
305 | goto free_and_return; |
306 | } | |
478ae0ca CX |
307 | r = get_cache_mode(s); |
308 | if (r < 0) | |
309 | ret = r; | |
310 | else | |
311 | v9ses->cache = r; | |
60e78d2c | 312 | |
60e78d2c AK |
313 | kfree(s); |
314 | break; | |
ba17674f LI |
315 | |
316 | case Opt_access: | |
317 | s = match_strdup(&args[0]); | |
bf2d29c6 EVH |
318 | if (!s) { |
319 | ret = -ENOMEM; | |
5d385153 JP |
320 | p9_debug(P9_DEBUG_ERROR, |
321 | "problem allocating copy of access arg\n"); | |
bf2d29c6 EVH |
322 | goto free_and_return; |
323 | } | |
60e78d2c | 324 | |
ba17674f LI |
325 | v9ses->flags &= ~V9FS_ACCESS_MASK; |
326 | if (strcmp(s, "user") == 0) | |
327 | v9ses->flags |= V9FS_ACCESS_USER; | |
328 | else if (strcmp(s, "any") == 0) | |
329 | v9ses->flags |= V9FS_ACCESS_ANY; | |
76381a42 | 330 | else if (strcmp(s, "client") == 0) { |
76381a42 | 331 | v9ses->flags |= V9FS_ACCESS_CLIENT; |
76381a42 | 332 | } else { |
76ed23a5 | 333 | uid_t uid; |
ba17674f | 334 | v9ses->flags |= V9FS_ACCESS_SINGLE; |
76ed23a5 | 335 | uid = simple_strtoul(s, &e, 10); |
a2dd43bb PK |
336 | if (*e != '\0') { |
337 | ret = -EINVAL; | |
5d385153 JP |
338 | pr_info("Unknown access argument %s\n", |
339 | s); | |
a2dd43bb | 340 | kfree(s); |
478ae0ca | 341 | continue; |
a2dd43bb | 342 | } |
76ed23a5 EB |
343 | v9ses->uid = make_kuid(current_user_ns(), uid); |
344 | if (!uid_valid(v9ses->uid)) { | |
345 | ret = -EINVAL; | |
346 | pr_info("Uknown uid %s\n", s); | |
76ed23a5 | 347 | } |
ba17674f | 348 | } |
a2dd43bb | 349 | |
0a976297 | 350 | kfree(s); |
ba17674f LI |
351 | break; |
352 | ||
e782ef71 VJJ |
353 | case Opt_posixacl: |
354 | #ifdef CONFIG_9P_FS_POSIX_ACL | |
355 | v9ses->flags |= V9FS_POSIX_ACL; | |
356 | #else | |
5d385153 JP |
357 | p9_debug(P9_DEBUG_ERROR, |
358 | "Not defined CONFIG_9P_FS_POSIX_ACL. Ignoring posixacl option\n"); | |
e782ef71 VJJ |
359 | #endif |
360 | break; | |
361 | ||
9e82cf6a EVH |
362 | default: |
363 | continue; | |
364 | } | |
365 | } | |
d8c8a9e3 | 366 | |
bf2d29c6 | 367 | free_and_return: |
d8c8a9e3 | 368 | kfree(tmp_options); |
60e78d2c | 369 | fail_option_alloc: |
bf2d29c6 | 370 | return ret; |
9e82cf6a EVH |
371 | } |
372 | ||
9e82cf6a EVH |
373 | /** |
374 | * v9fs_session_init - initialize session | |
375 | * @v9ses: session information structure | |
376 | * @dev_name: device being mounted | |
377 | * @data: options | |
378 | * | |
379 | */ | |
380 | ||
bd238fb4 | 381 | struct p9_fid *v9fs_session_init(struct v9fs_session_info *v9ses, |
9e82cf6a EVH |
382 | const char *dev_name, char *data) |
383 | { | |
bd238fb4 | 384 | struct p9_fid *fid; |
412a19b6 | 385 | int rc = -ENOMEM; |
9e82cf6a | 386 | |
e549c133 | 387 | v9ses->uname = kstrdup(V9FS_DEFUSER, GFP_KERNEL); |
ba17674f | 388 | if (!v9ses->uname) |
412a19b6 | 389 | goto err_names; |
9e82cf6a | 390 | |
e549c133 | 391 | v9ses->aname = kstrdup(V9FS_DEFANAME, GFP_KERNEL); |
412a19b6 TH |
392 | if (!v9ses->aname) |
393 | goto err_names; | |
a534c8d1 | 394 | init_rwsem(&v9ses->rename_sem); |
9e82cf6a | 395 | |
76ed23a5 | 396 | v9ses->uid = INVALID_UID; |
bd32b82d LI |
397 | v9ses->dfltuid = V9FS_DEFUID; |
398 | v9ses->dfltgid = V9FS_DEFGID; | |
ab31267d | 399 | |
4b53e4b5 | 400 | v9ses->clnt = p9_client_create(dev_name, data); |
bd238fb4 | 401 | if (IS_ERR(v9ses->clnt)) { |
412a19b6 | 402 | rc = PTR_ERR(v9ses->clnt); |
5d385153 | 403 | p9_debug(P9_DEBUG_ERROR, "problem initializing 9p client\n"); |
71304feb | 404 | goto err_names; |
9e82cf6a EVH |
405 | } |
406 | ||
6752a1eb VJJ |
407 | v9ses->flags = V9FS_ACCESS_USER; |
408 | ||
409 | if (p9_is_proto_dotl(v9ses->clnt)) { | |
410 | v9ses->flags = V9FS_ACCESS_CLIENT; | |
476ada04 | 411 | v9ses->flags |= V9FS_PROTO_2000L; |
6752a1eb | 412 | } else if (p9_is_proto_dotu(v9ses->clnt)) { |
476ada04 | 413 | v9ses->flags |= V9FS_PROTO_2000U; |
6752a1eb VJJ |
414 | } |
415 | ||
416 | rc = v9fs_parse_options(v9ses, data); | |
412a19b6 TH |
417 | if (rc < 0) |
418 | goto err_clnt; | |
ba17674f | 419 | |
fbedadc1 | 420 | v9ses->maxdata = v9ses->clnt->msize - P9_IOHDRSZ; |
8a0dc95f | 421 | |
76381a42 AK |
422 | if (!v9fs_proto_dotl(v9ses) && |
423 | ((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_CLIENT)) { | |
424 | /* | |
425 | * We support ACCESS_CLIENT only for dotl. | |
426 | * Fall back to ACCESS_USER | |
427 | */ | |
428 | v9ses->flags &= ~V9FS_ACCESS_MASK; | |
429 | v9ses->flags |= V9FS_ACCESS_USER; | |
430 | } | |
431 | /*FIXME !! */ | |
ba17674f | 432 | /* for legacy mode, fall back to V9FS_ACCESS_ANY */ |
9ffaf63e | 433 | if (!(v9fs_proto_dotu(v9ses) || v9fs_proto_dotl(v9ses)) && |
ba17674f LI |
434 | ((v9ses->flags&V9FS_ACCESS_MASK) == V9FS_ACCESS_USER)) { |
435 | ||
436 | v9ses->flags &= ~V9FS_ACCESS_MASK; | |
437 | v9ses->flags |= V9FS_ACCESS_ANY; | |
76ed23a5 | 438 | v9ses->uid = INVALID_UID; |
ba17674f | 439 | } |
e782ef71 VJJ |
440 | if (!v9fs_proto_dotl(v9ses) || |
441 | !((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_CLIENT)) { | |
442 | /* | |
443 | * We support ACL checks on clinet only if the protocol is | |
444 | * 9P2000.L and access is V9FS_ACCESS_CLIENT. | |
445 | */ | |
446 | v9ses->flags &= ~V9FS_ACL_MASK; | |
447 | } | |
ba17674f | 448 | |
f791f7c5 | 449 | fid = p9_client_attach(v9ses->clnt, NULL, v9ses->uname, INVALID_UID, |
ba17674f | 450 | v9ses->aname); |
bd238fb4 | 451 | if (IS_ERR(fid)) { |
412a19b6 | 452 | rc = PTR_ERR(fid); |
5d385153 | 453 | p9_debug(P9_DEBUG_ERROR, "cannot attach\n"); |
412a19b6 | 454 | goto err_clnt; |
9e82cf6a EVH |
455 | } |
456 | ||
ba17674f LI |
457 | if ((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_SINGLE) |
458 | fid->uid = v9ses->uid; | |
459 | else | |
b4642556 | 460 | fid->uid = INVALID_UID; |
ba17674f | 461 | |
60e78d2c AK |
462 | #ifdef CONFIG_9P_FSCACHE |
463 | /* register the session for caching */ | |
464 | v9fs_cache_session_get_cookie(v9ses); | |
465 | #endif | |
412a19b6 TH |
466 | spin_lock(&v9fs_sessionlist_lock); |
467 | list_add(&v9ses->slist, &v9fs_sessionlist); | |
468 | spin_unlock(&v9fs_sessionlist_lock); | |
60e78d2c | 469 | |
bd238fb4 | 470 | return fid; |
9e82cf6a | 471 | |
412a19b6 | 472 | err_clnt: |
a25c3657 CX |
473 | #ifdef CONFIG_9P_FSCACHE |
474 | kfree(v9ses->cachetag); | |
475 | #endif | |
412a19b6 | 476 | p9_client_destroy(v9ses->clnt); |
412a19b6 TH |
477 | err_names: |
478 | kfree(v9ses->uname); | |
479 | kfree(v9ses->aname); | |
480 | return ERR_PTR(rc); | |
9e82cf6a EVH |
481 | } |
482 | ||
483 | /** | |
484 | * v9fs_session_close - shutdown a session | |
485 | * @v9ses: session information structure | |
486 | * | |
487 | */ | |
488 | ||
489 | void v9fs_session_close(struct v9fs_session_info *v9ses) | |
490 | { | |
bd238fb4 LI |
491 | if (v9ses->clnt) { |
492 | p9_client_destroy(v9ses->clnt); | |
493 | v9ses->clnt = NULL; | |
3cf6429a | 494 | } |
9e82cf6a | 495 | |
60e78d2c AK |
496 | #ifdef CONFIG_9P_FSCACHE |
497 | if (v9ses->fscache) { | |
498 | v9fs_cache_session_put_cookie(v9ses); | |
499 | kfree(v9ses->cachetag); | |
500 | } | |
501 | #endif | |
e549c133 JL |
502 | kfree(v9ses->uname); |
503 | kfree(v9ses->aname); | |
60e78d2c AK |
504 | |
505 | spin_lock(&v9fs_sessionlist_lock); | |
506 | list_del(&v9ses->slist); | |
507 | spin_unlock(&v9fs_sessionlist_lock); | |
9e82cf6a EVH |
508 | } |
509 | ||
322b329a | 510 | /** |
ee443996 EVH |
511 | * v9fs_session_cancel - terminate a session |
512 | * @v9ses: session to terminate | |
513 | * | |
514 | * mark transport as disconnected and cancel all pending requests. | |
322b329a | 515 | */ |
ee443996 | 516 | |
322b329a | 517 | void v9fs_session_cancel(struct v9fs_session_info *v9ses) { |
5d385153 | 518 | p9_debug(P9_DEBUG_ERROR, "cancel session %p\n", v9ses); |
bd238fb4 | 519 | p9_client_disconnect(v9ses->clnt); |
322b329a EVH |
520 | } |
521 | ||
6d96d3ab AK |
522 | /** |
523 | * v9fs_session_begin_cancel - Begin terminate of a session | |
524 | * @v9ses: session to terminate | |
525 | * | |
526 | * After this call we don't allow any request other than clunk. | |
527 | */ | |
528 | ||
529 | void v9fs_session_begin_cancel(struct v9fs_session_info *v9ses) | |
530 | { | |
5d385153 | 531 | p9_debug(P9_DEBUG_ERROR, "begin cancel session %p\n", v9ses); |
6d96d3ab AK |
532 | p9_client_begin_disconnect(v9ses->clnt); |
533 | } | |
534 | ||
9e82cf6a EVH |
535 | extern int v9fs_error_init(void); |
536 | ||
60e78d2c AK |
537 | static struct kobject *v9fs_kobj; |
538 | ||
539 | #ifdef CONFIG_9P_FSCACHE | |
9e82cf6a | 540 | /** |
60e78d2c AK |
541 | * caches_show - list caches associated with a session |
542 | * | |
543 | * Returns the size of buffer written. | |
544 | */ | |
545 | ||
546 | static ssize_t caches_show(struct kobject *kobj, | |
547 | struct kobj_attribute *attr, | |
548 | char *buf) | |
549 | { | |
550 | ssize_t n = 0, count = 0, limit = PAGE_SIZE; | |
551 | struct v9fs_session_info *v9ses; | |
552 | ||
553 | spin_lock(&v9fs_sessionlist_lock); | |
554 | list_for_each_entry(v9ses, &v9fs_sessionlist, slist) { | |
555 | if (v9ses->cachetag) { | |
556 | n = snprintf(buf, limit, "%s\n", v9ses->cachetag); | |
557 | if (n < 0) { | |
558 | count = n; | |
559 | break; | |
560 | } | |
561 | ||
562 | count += n; | |
563 | limit -= n; | |
564 | } | |
565 | } | |
566 | ||
567 | spin_unlock(&v9fs_sessionlist_lock); | |
568 | return count; | |
569 | } | |
570 | ||
571 | static struct kobj_attribute v9fs_attr_cache = __ATTR_RO(caches); | |
572 | #endif /* CONFIG_9P_FSCACHE */ | |
573 | ||
574 | static struct attribute *v9fs_attrs[] = { | |
575 | #ifdef CONFIG_9P_FSCACHE | |
576 | &v9fs_attr_cache.attr, | |
577 | #endif | |
578 | NULL, | |
579 | }; | |
580 | ||
581 | static struct attribute_group v9fs_attr_group = { | |
582 | .attrs = v9fs_attrs, | |
583 | }; | |
584 | ||
585 | /** | |
586 | * v9fs_sysfs_init - Initialize the v9fs sysfs interface | |
587 | * | |
588 | */ | |
589 | ||
bdbeacde | 590 | static int __init v9fs_sysfs_init(void) |
60e78d2c AK |
591 | { |
592 | v9fs_kobj = kobject_create_and_add("9p", fs_kobj); | |
593 | if (!v9fs_kobj) | |
594 | return -ENOMEM; | |
595 | ||
596 | if (sysfs_create_group(v9fs_kobj, &v9fs_attr_group)) { | |
597 | kobject_put(v9fs_kobj); | |
598 | return -ENOMEM; | |
599 | } | |
600 | ||
601 | return 0; | |
602 | } | |
603 | ||
604 | /** | |
605 | * v9fs_sysfs_cleanup - Unregister the v9fs sysfs interface | |
606 | * | |
607 | */ | |
608 | ||
609 | static void v9fs_sysfs_cleanup(void) | |
610 | { | |
611 | sysfs_remove_group(v9fs_kobj, &v9fs_attr_group); | |
612 | kobject_put(v9fs_kobj); | |
613 | } | |
614 | ||
a78ce05d AK |
615 | static void v9fs_inode_init_once(void *foo) |
616 | { | |
617 | struct v9fs_inode *v9inode = (struct v9fs_inode *)foo; | |
618 | #ifdef CONFIG_9P_FSCACHE | |
619 | v9inode->fscache = NULL; | |
a78ce05d | 620 | #endif |
fd2421f5 | 621 | memset(&v9inode->qid, 0, sizeof(v9inode->qid)); |
a78ce05d AK |
622 | inode_init_once(&v9inode->vfs_inode); |
623 | } | |
624 | ||
625 | /** | |
626 | * v9fs_init_inode_cache - initialize a cache for 9P | |
627 | * Returns 0 on success. | |
628 | */ | |
629 | static int v9fs_init_inode_cache(void) | |
630 | { | |
631 | v9fs_inode_cache = kmem_cache_create("v9fs_inode_cache", | |
632 | sizeof(struct v9fs_inode), | |
633 | 0, (SLAB_RECLAIM_ACCOUNT| | |
5d097056 | 634 | SLAB_MEM_SPREAD|SLAB_ACCOUNT), |
a78ce05d AK |
635 | v9fs_inode_init_once); |
636 | if (!v9fs_inode_cache) | |
637 | return -ENOMEM; | |
638 | ||
639 | return 0; | |
640 | } | |
641 | ||
642 | /** | |
643 | * v9fs_destroy_inode_cache - destroy the cache of 9P inode | |
644 | * | |
645 | */ | |
646 | static void v9fs_destroy_inode_cache(void) | |
647 | { | |
8c0a8537 KS |
648 | /* |
649 | * Make sure all delayed rcu free inodes are flushed before we | |
650 | * destroy cache. | |
651 | */ | |
652 | rcu_barrier(); | |
a78ce05d AK |
653 | kmem_cache_destroy(v9fs_inode_cache); |
654 | } | |
655 | ||
656 | static int v9fs_cache_register(void) | |
657 | { | |
658 | int ret; | |
659 | ret = v9fs_init_inode_cache(); | |
660 | if (ret < 0) | |
661 | return ret; | |
662 | #ifdef CONFIG_9P_FSCACHE | |
8061a6fa AV |
663 | ret = fscache_register_netfs(&v9fs_cache_netfs); |
664 | if (ret < 0) | |
665 | v9fs_destroy_inode_cache(); | |
a78ce05d | 666 | #endif |
8061a6fa | 667 | return ret; |
a78ce05d AK |
668 | } |
669 | ||
670 | static void v9fs_cache_unregister(void) | |
671 | { | |
672 | v9fs_destroy_inode_cache(); | |
673 | #ifdef CONFIG_9P_FSCACHE | |
674 | fscache_unregister_netfs(&v9fs_cache_netfs); | |
675 | #endif | |
676 | } | |
677 | ||
60e78d2c AK |
678 | /** |
679 | * init_v9fs - Initialize module | |
9e82cf6a EVH |
680 | * |
681 | */ | |
682 | ||
683 | static int __init init_v9fs(void) | |
684 | { | |
60e78d2c | 685 | int err; |
5d385153 | 686 | pr_info("Installing v9fs 9p2000 file system support\n"); |
a80d923e | 687 | /* TODO: Setup list of registered trasnport modules */ |
60e78d2c AK |
688 | |
689 | err = v9fs_cache_register(); | |
690 | if (err < 0) { | |
5d385153 | 691 | pr_err("Failed to register v9fs for caching\n"); |
2226a288 | 692 | return err; |
60e78d2c AK |
693 | } |
694 | ||
695 | err = v9fs_sysfs_init(); | |
696 | if (err < 0) { | |
5d385153 | 697 | pr_err("Failed to register with sysfs\n"); |
2226a288 AV |
698 | goto out_cache; |
699 | } | |
700 | err = register_filesystem(&v9fs_fs_type); | |
701 | if (err < 0) { | |
702 | pr_err("Failed to register filesystem\n"); | |
60e78d2c AK |
703 | goto out_sysfs_cleanup; |
704 | } | |
705 | ||
706 | return 0; | |
707 | ||
708 | out_sysfs_cleanup: | |
709 | v9fs_sysfs_cleanup(); | |
710 | ||
2226a288 AV |
711 | out_cache: |
712 | v9fs_cache_unregister(); | |
60e78d2c AK |
713 | |
714 | return err; | |
9e82cf6a EVH |
715 | } |
716 | ||
717 | /** | |
60e78d2c | 718 | * exit_v9fs - shutdown module |
9e82cf6a EVH |
719 | * |
720 | */ | |
721 | ||
722 | static void __exit exit_v9fs(void) | |
723 | { | |
60e78d2c AK |
724 | v9fs_sysfs_cleanup(); |
725 | v9fs_cache_unregister(); | |
9e82cf6a EVH |
726 | unregister_filesystem(&v9fs_fs_type); |
727 | } | |
728 | ||
729 | module_init(init_v9fs) | |
730 | module_exit(exit_v9fs) | |
731 | ||
bd238fb4 | 732 | MODULE_AUTHOR("Latchesar Ionkov <[email protected]>"); |
9e82cf6a EVH |
733 | MODULE_AUTHOR("Eric Van Hensbergen <[email protected]>"); |
734 | MODULE_AUTHOR("Ron Minnich <[email protected]>"); | |
735 | MODULE_LICENSE("GPL"); |