Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/9p/v9fs.c |
| 3 | * |
| 4 | * This file contains functions assisting in mapping VFS to 9P2000 |
| 5 | * |
Eric Van Hensbergen | 8a0dc95 | 2008-02-06 19:25:03 -0600 | [diff] [blame] | 6 | * Copyright (C) 2004-2008 by Eric Van Hensbergen <ericvh@gmail.com> |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 7 | * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov> |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
Eric Van Hensbergen | 42e8c50 | 2006-03-25 03:07:28 -0800 | [diff] [blame] | 10 | * it under the terms of the GNU General Public License version 2 |
| 11 | * as published by the Free Software Foundation. |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 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 | |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 26 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 27 | |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 28 | #include <linux/module.h> |
| 29 | #include <linux/errno.h> |
| 30 | #include <linux/fs.h> |
Al Viro | 914e263 | 2006-10-18 13:55:46 -0400 | [diff] [blame] | 31 | #include <linux/sched.h> |
Ingo Molnar | 5b825c3 | 2017-02-02 17:54:15 +0100 | [diff] [blame] | 32 | #include <linux/cred.h> |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 33 | #include <linux/parser.h> |
| 34 | #include <linux/idr.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 35 | #include <linux/slab.h> |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 36 | #include <net/9p/9p.h> |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 37 | #include <net/9p/client.h> |
Eric Van Hensbergen | 8b81ef5 | 2008-10-13 18:45:25 -0500 | [diff] [blame] | 38 | #include <net/9p/transport.h> |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 39 | #include "v9fs.h" |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 40 | #include "v9fs_vfs.h" |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 41 | #include "cache.h" |
| 42 | |
| 43 | static DEFINE_SPINLOCK(v9fs_sessionlist_lock); |
| 44 | static LIST_HEAD(v9fs_sessionlist); |
Aneesh Kumar K.V | a78ce05 | 2011-02-28 17:04:02 +0530 | [diff] [blame] | 45 | struct kmem_cache *v9fs_inode_cache; |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 46 | |
| 47 | /* |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 48 | * Option Parsing (code inspired by NFS code) |
| 49 | * NOTE: each transport will parse its own options |
| 50 | */ |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 51 | |
| 52 | enum { |
| 53 | /* Options that take integer arguments */ |
Eric Van Hensbergen | 8a0dc95 | 2008-02-06 19:25:03 -0600 | [diff] [blame] | 54 | Opt_debug, Opt_dfltuid, Opt_dfltgid, Opt_afid, |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 55 | /* String options */ |
Fabian Frederick | cb9af41 | 2015-06-05 19:09:35 +0200 | [diff] [blame] | 56 | Opt_uname, Opt_remotename, Opt_cache, Opt_cachetag, |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 57 | /* Options that take no arguments */ |
Eric Van Hensbergen | 8a0dc95 | 2008-02-06 19:25:03 -0600 | [diff] [blame] | 58 | Opt_nodevmap, |
Eric Van Hensbergen | e03abc0 | 2007-02-11 13:21:39 -0600 | [diff] [blame] | 59 | /* Cache options */ |
Dominique Martinet | fb89b45 | 2014-01-10 13:44:09 +0100 | [diff] [blame] | 60 | Opt_cache_loose, Opt_fscache, Opt_mmap, |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 61 | /* Access options */ |
Venkateswararao Jujjuri (JV) | e782ef7 | 2011-01-25 15:40:54 -0800 | [diff] [blame] | 62 | Opt_access, Opt_posixacl, |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 63 | /* Error token */ |
| 64 | Opt_err |
| 65 | }; |
| 66 | |
Steven Whitehouse | a447c09 | 2008-10-13 10:46:57 +0100 | [diff] [blame] | 67 | static const match_table_t tokens = { |
Eric Van Hensbergen | 9e2f668 | 2007-07-13 13:05:21 -0500 | [diff] [blame] | 68 | {Opt_debug, "debug=%x"}, |
Latchesar Ionkov | bd32b82 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 69 | {Opt_dfltuid, "dfltuid=%u"}, |
| 70 | {Opt_dfltgid, "dfltgid=%u"}, |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 71 | {Opt_afid, "afid=%u"}, |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 72 | {Opt_uname, "uname=%s"}, |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 73 | {Opt_remotename, "aname=%s"}, |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 74 | {Opt_nodevmap, "nodevmap"}, |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 75 | {Opt_cache, "cache=%s"}, |
Eric Van Hensbergen | e03abc0 | 2007-02-11 13:21:39 -0600 | [diff] [blame] | 76 | {Opt_cache_loose, "loose"}, |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 77 | {Opt_fscache, "fscache"}, |
Dominique Martinet | fb89b45 | 2014-01-10 13:44:09 +0100 | [diff] [blame] | 78 | {Opt_mmap, "mmap"}, |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 79 | {Opt_cachetag, "cachetag=%s"}, |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 80 | {Opt_access, "access=%s"}, |
Venkateswararao Jujjuri (JV) | e782ef7 | 2011-01-25 15:40:54 -0800 | [diff] [blame] | 81 | {Opt_posixacl, "posixacl"}, |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 82 | {Opt_err, NULL} |
| 83 | }; |
| 84 | |
Prem Karat | a2dd43b | 2011-05-06 18:24:18 +0530 | [diff] [blame] | 85 | /* Interpret mount options for cache mode */ |
| 86 | static int get_cache_mode(char *s) |
| 87 | { |
| 88 | int version = -EINVAL; |
| 89 | |
| 90 | if (!strcmp(s, "loose")) { |
| 91 | version = CACHE_LOOSE; |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 92 | p9_debug(P9_DEBUG_9P, "Cache mode: loose\n"); |
Prem Karat | a2dd43b | 2011-05-06 18:24:18 +0530 | [diff] [blame] | 93 | } else if (!strcmp(s, "fscache")) { |
| 94 | version = CACHE_FSCACHE; |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 95 | p9_debug(P9_DEBUG_9P, "Cache mode: fscache\n"); |
Dominique Martinet | fb89b45 | 2014-01-10 13:44:09 +0100 | [diff] [blame] | 96 | } else if (!strcmp(s, "mmap")) { |
| 97 | version = CACHE_MMAP; |
| 98 | p9_debug(P9_DEBUG_9P, "Cache mode: mmap\n"); |
Prem Karat | a2dd43b | 2011-05-06 18:24:18 +0530 | [diff] [blame] | 99 | } else if (!strcmp(s, "none")) { |
| 100 | version = CACHE_NONE; |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 101 | p9_debug(P9_DEBUG_9P, "Cache mode: none\n"); |
Prem Karat | a2dd43b | 2011-05-06 18:24:18 +0530 | [diff] [blame] | 102 | } else |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 103 | pr_info("Unknown Cache mode %s\n", s); |
Prem Karat | a2dd43b | 2011-05-06 18:24:18 +0530 | [diff] [blame] | 104 | return version; |
| 105 | } |
| 106 | |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 107 | /** |
| 108 | * v9fs_parse_options - parse mount options into session structure |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 109 | * @v9ses: existing v9fs session information |
| 110 | * |
Jim Meyering | ab31267 | 2008-03-06 17:10:28 -0600 | [diff] [blame] | 111 | * Return 0 upon success, -ERRNO upon failure. |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 112 | */ |
| 113 | |
Abhishek Kulkarni | 4b53e4b | 2009-08-17 16:42:28 -0500 | [diff] [blame] | 114 | static int v9fs_parse_options(struct v9fs_session_info *v9ses, char *opts) |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 115 | { |
Eric Van Hensbergen | d8c8a9e | 2010-02-08 16:23:23 -0600 | [diff] [blame] | 116 | char *options, *tmp_options; |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 117 | substring_t args[MAX_OPT_ARGS]; |
Eric Van Hensbergen | a80d923 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 118 | char *p; |
Eric Van Hensbergen | 8a0dc95 | 2008-02-06 19:25:03 -0600 | [diff] [blame] | 119 | int option = 0; |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 120 | char *s, *e; |
Jim Meyering | ab31267 | 2008-03-06 17:10:28 -0600 | [diff] [blame] | 121 | int ret = 0; |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 122 | |
| 123 | /* setup defaults */ |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 124 | v9ses->afid = ~0; |
| 125 | v9ses->debug = 0; |
Prem Karat | a2dd43b | 2011-05-06 18:24:18 +0530 | [diff] [blame] | 126 | v9ses->cache = CACHE_NONE; |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 127 | #ifdef CONFIG_9P_FSCACHE |
| 128 | v9ses->cachetag = NULL; |
| 129 | #endif |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 130 | |
Abhishek Kulkarni | 4b53e4b | 2009-08-17 16:42:28 -0500 | [diff] [blame] | 131 | if (!opts) |
Jim Meyering | ab31267 | 2008-03-06 17:10:28 -0600 | [diff] [blame] | 132 | return 0; |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 133 | |
Eric Van Hensbergen | d8c8a9e | 2010-02-08 16:23:23 -0600 | [diff] [blame] | 134 | tmp_options = kstrdup(opts, GFP_KERNEL); |
Eric Van Hensbergen | bf2d29c | 2010-02-08 17:59:34 -0600 | [diff] [blame] | 135 | if (!tmp_options) { |
| 136 | ret = -ENOMEM; |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 137 | goto fail_option_alloc; |
Eric Van Hensbergen | bf2d29c | 2010-02-08 17:59:34 -0600 | [diff] [blame] | 138 | } |
Eric Van Hensbergen | d8c8a9e | 2010-02-08 16:23:23 -0600 | [diff] [blame] | 139 | options = tmp_options; |
Jim Meyering | ab31267 | 2008-03-06 17:10:28 -0600 | [diff] [blame] | 140 | |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 141 | while ((p = strsep(&options, ",")) != NULL) { |
Aneesh Kumar K.V | 4d5077f | 2011-08-30 12:19:34 +0530 | [diff] [blame] | 142 | int token, r; |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 143 | if (!*p) |
| 144 | continue; |
| 145 | token = match_token(p, tokens, args); |
Aneesh Kumar K.V | 4d5077f | 2011-08-30 12:19:34 +0530 | [diff] [blame] | 146 | switch (token) { |
| 147 | case Opt_debug: |
| 148 | r = match_int(&args[0], &option); |
Jim Meyering | ab31267 | 2008-03-06 17:10:28 -0600 | [diff] [blame] | 149 | if (r < 0) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 150 | p9_debug(P9_DEBUG_ERROR, |
| 151 | "integer field, but no integer?\n"); |
Jim Meyering | ab31267 | 2008-03-06 17:10:28 -0600 | [diff] [blame] | 152 | ret = r; |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 153 | continue; |
| 154 | } |
Eric Van Hensbergen | 9e2f668 | 2007-07-13 13:05:21 -0500 | [diff] [blame] | 155 | v9ses->debug = option; |
Eric Van Hensbergen | 10fa16e | 2007-07-16 16:02:49 -0500 | [diff] [blame] | 156 | #ifdef CONFIG_NET_9P_DEBUG |
Eric Van Hensbergen | 9e2f668 | 2007-07-13 13:05:21 -0500 | [diff] [blame] | 157 | p9_debug_level = option; |
Eric Van Hensbergen | 10fa16e | 2007-07-16 16:02:49 -0500 | [diff] [blame] | 158 | #endif |
Eric Van Hensbergen | 9e2f668 | 2007-07-13 13:05:21 -0500 | [diff] [blame] | 159 | break; |
Eric Van Hensbergen | 8a0dc95 | 2008-02-06 19:25:03 -0600 | [diff] [blame] | 160 | |
Latchesar Ionkov | bd32b82 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 161 | case Opt_dfltuid: |
Aneesh Kumar K.V | 4d5077f | 2011-08-30 12:19:34 +0530 | [diff] [blame] | 162 | r = match_int(&args[0], &option); |
| 163 | if (r < 0) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 164 | p9_debug(P9_DEBUG_ERROR, |
| 165 | "integer field, but no integer?\n"); |
Aneesh Kumar K.V | 4d5077f | 2011-08-30 12:19:34 +0530 | [diff] [blame] | 166 | ret = r; |
| 167 | continue; |
| 168 | } |
Eric W. Biederman | 76ed23a | 2013-01-30 11:57:40 -0800 | [diff] [blame] | 169 | v9ses->dfltuid = make_kuid(current_user_ns(), option); |
| 170 | if (!uid_valid(v9ses->dfltuid)) { |
| 171 | p9_debug(P9_DEBUG_ERROR, |
| 172 | "uid field, but not a uid?\n"); |
| 173 | ret = -EINVAL; |
| 174 | continue; |
| 175 | } |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 176 | break; |
Latchesar Ionkov | bd32b82 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 177 | case Opt_dfltgid: |
Aneesh Kumar K.V | 4d5077f | 2011-08-30 12:19:34 +0530 | [diff] [blame] | 178 | r = match_int(&args[0], &option); |
| 179 | if (r < 0) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 180 | p9_debug(P9_DEBUG_ERROR, |
| 181 | "integer field, but no integer?\n"); |
Aneesh Kumar K.V | 4d5077f | 2011-08-30 12:19:34 +0530 | [diff] [blame] | 182 | ret = r; |
| 183 | continue; |
| 184 | } |
Eric W. Biederman | 76ed23a | 2013-01-30 11:57:40 -0800 | [diff] [blame] | 185 | v9ses->dfltgid = make_kgid(current_user_ns(), option); |
| 186 | if (!gid_valid(v9ses->dfltgid)) { |
| 187 | p9_debug(P9_DEBUG_ERROR, |
| 188 | "gid field, but not a gid?\n"); |
| 189 | ret = -EINVAL; |
| 190 | continue; |
| 191 | } |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 192 | break; |
| 193 | case Opt_afid: |
Aneesh Kumar K.V | 4d5077f | 2011-08-30 12:19:34 +0530 | [diff] [blame] | 194 | r = match_int(&args[0], &option); |
| 195 | if (r < 0) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 196 | p9_debug(P9_DEBUG_ERROR, |
| 197 | "integer field, but no integer?\n"); |
Aneesh Kumar K.V | 4d5077f | 2011-08-30 12:19:34 +0530 | [diff] [blame] | 198 | ret = r; |
| 199 | continue; |
| 200 | } |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 201 | v9ses->afid = option; |
| 202 | break; |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 203 | case Opt_uname: |
Jeff Layton | e549c13 | 2012-09-07 07:55:25 -0400 | [diff] [blame] | 204 | kfree(v9ses->uname); |
| 205 | v9ses->uname = match_strdup(&args[0]); |
| 206 | if (!v9ses->uname) { |
| 207 | ret = -ENOMEM; |
| 208 | goto free_and_return; |
| 209 | } |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 210 | break; |
| 211 | case Opt_remotename: |
Jeff Layton | e549c13 | 2012-09-07 07:55:25 -0400 | [diff] [blame] | 212 | kfree(v9ses->aname); |
| 213 | v9ses->aname = match_strdup(&args[0]); |
| 214 | if (!v9ses->aname) { |
| 215 | ret = -ENOMEM; |
| 216 | goto free_and_return; |
| 217 | } |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 218 | break; |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 219 | case Opt_nodevmap: |
| 220 | v9ses->nodev = 1; |
| 221 | break; |
Eric Van Hensbergen | e03abc0 | 2007-02-11 13:21:39 -0600 | [diff] [blame] | 222 | case Opt_cache_loose: |
| 223 | v9ses->cache = CACHE_LOOSE; |
| 224 | break; |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 225 | case Opt_fscache: |
| 226 | v9ses->cache = CACHE_FSCACHE; |
| 227 | break; |
Dominique Martinet | fb89b45 | 2014-01-10 13:44:09 +0100 | [diff] [blame] | 228 | case Opt_mmap: |
| 229 | v9ses->cache = CACHE_MMAP; |
| 230 | break; |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 231 | case Opt_cachetag: |
| 232 | #ifdef CONFIG_9P_FSCACHE |
| 233 | v9ses->cachetag = match_strdup(&args[0]); |
| 234 | #endif |
| 235 | break; |
| 236 | case Opt_cache: |
| 237 | s = match_strdup(&args[0]); |
Eric Van Hensbergen | bf2d29c | 2010-02-08 17:59:34 -0600 | [diff] [blame] | 238 | if (!s) { |
| 239 | ret = -ENOMEM; |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 240 | p9_debug(P9_DEBUG_ERROR, |
| 241 | "problem allocating copy of cache arg\n"); |
Eric Van Hensbergen | bf2d29c | 2010-02-08 17:59:34 -0600 | [diff] [blame] | 242 | goto free_and_return; |
| 243 | } |
Prem Karat | a2dd43b | 2011-05-06 18:24:18 +0530 | [diff] [blame] | 244 | ret = get_cache_mode(s); |
| 245 | if (ret == -EINVAL) { |
| 246 | kfree(s); |
| 247 | goto free_and_return; |
| 248 | } |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 249 | |
Prem Karat | a2dd43b | 2011-05-06 18:24:18 +0530 | [diff] [blame] | 250 | v9ses->cache = ret; |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 251 | kfree(s); |
| 252 | break; |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 253 | |
| 254 | case Opt_access: |
| 255 | s = match_strdup(&args[0]); |
Eric Van Hensbergen | bf2d29c | 2010-02-08 17:59:34 -0600 | [diff] [blame] | 256 | if (!s) { |
| 257 | ret = -ENOMEM; |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 258 | p9_debug(P9_DEBUG_ERROR, |
| 259 | "problem allocating copy of access arg\n"); |
Eric Van Hensbergen | bf2d29c | 2010-02-08 17:59:34 -0600 | [diff] [blame] | 260 | goto free_and_return; |
| 261 | } |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 262 | |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 263 | v9ses->flags &= ~V9FS_ACCESS_MASK; |
| 264 | if (strcmp(s, "user") == 0) |
| 265 | v9ses->flags |= V9FS_ACCESS_USER; |
| 266 | else if (strcmp(s, "any") == 0) |
| 267 | v9ses->flags |= V9FS_ACCESS_ANY; |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 268 | else if (strcmp(s, "client") == 0) { |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 269 | v9ses->flags |= V9FS_ACCESS_CLIENT; |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 270 | } else { |
Eric W. Biederman | 76ed23a | 2013-01-30 11:57:40 -0800 | [diff] [blame] | 271 | uid_t uid; |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 272 | v9ses->flags |= V9FS_ACCESS_SINGLE; |
Eric W. Biederman | 76ed23a | 2013-01-30 11:57:40 -0800 | [diff] [blame] | 273 | uid = simple_strtoul(s, &e, 10); |
Prem Karat | a2dd43b | 2011-05-06 18:24:18 +0530 | [diff] [blame] | 274 | if (*e != '\0') { |
| 275 | ret = -EINVAL; |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 276 | pr_info("Unknown access argument %s\n", |
| 277 | s); |
Prem Karat | a2dd43b | 2011-05-06 18:24:18 +0530 | [diff] [blame] | 278 | kfree(s); |
| 279 | goto free_and_return; |
| 280 | } |
Eric W. Biederman | 76ed23a | 2013-01-30 11:57:40 -0800 | [diff] [blame] | 281 | v9ses->uid = make_kuid(current_user_ns(), uid); |
| 282 | if (!uid_valid(v9ses->uid)) { |
| 283 | ret = -EINVAL; |
| 284 | pr_info("Uknown uid %s\n", s); |
| 285 | kfree(s); |
| 286 | goto free_and_return; |
| 287 | } |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 288 | } |
Prem Karat | a2dd43b | 2011-05-06 18:24:18 +0530 | [diff] [blame] | 289 | |
Adrian Bunk | 0a97629 | 2007-10-23 13:48:50 -0500 | [diff] [blame] | 290 | kfree(s); |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 291 | break; |
| 292 | |
Venkateswararao Jujjuri (JV) | e782ef7 | 2011-01-25 15:40:54 -0800 | [diff] [blame] | 293 | case Opt_posixacl: |
| 294 | #ifdef CONFIG_9P_FS_POSIX_ACL |
| 295 | v9ses->flags |= V9FS_POSIX_ACL; |
| 296 | #else |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 297 | p9_debug(P9_DEBUG_ERROR, |
| 298 | "Not defined CONFIG_9P_FS_POSIX_ACL. Ignoring posixacl option\n"); |
Venkateswararao Jujjuri (JV) | e782ef7 | 2011-01-25 15:40:54 -0800 | [diff] [blame] | 299 | #endif |
| 300 | break; |
| 301 | |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 302 | default: |
| 303 | continue; |
| 304 | } |
| 305 | } |
Eric Van Hensbergen | d8c8a9e | 2010-02-08 16:23:23 -0600 | [diff] [blame] | 306 | |
Eric Van Hensbergen | bf2d29c | 2010-02-08 17:59:34 -0600 | [diff] [blame] | 307 | free_and_return: |
Eric Van Hensbergen | d8c8a9e | 2010-02-08 16:23:23 -0600 | [diff] [blame] | 308 | kfree(tmp_options); |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 309 | fail_option_alloc: |
Eric Van Hensbergen | bf2d29c | 2010-02-08 17:59:34 -0600 | [diff] [blame] | 310 | return ret; |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | /** |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 314 | * v9fs_session_init - initialize session |
| 315 | * @v9ses: session information structure |
| 316 | * @dev_name: device being mounted |
| 317 | * @data: options |
| 318 | * |
| 319 | */ |
| 320 | |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 321 | struct p9_fid *v9fs_session_init(struct v9fs_session_info *v9ses, |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 322 | const char *dev_name, char *data) |
| 323 | { |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 324 | struct p9_fid *fid; |
Tejun Heo | 412a19b | 2015-06-08 14:57:31 +0900 | [diff] [blame] | 325 | int rc = -ENOMEM; |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 326 | |
Jeff Layton | e549c13 | 2012-09-07 07:55:25 -0400 | [diff] [blame] | 327 | v9ses->uname = kstrdup(V9FS_DEFUSER, GFP_KERNEL); |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 328 | if (!v9ses->uname) |
Tejun Heo | 412a19b | 2015-06-08 14:57:31 +0900 | [diff] [blame] | 329 | goto err_names; |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 330 | |
Jeff Layton | e549c13 | 2012-09-07 07:55:25 -0400 | [diff] [blame] | 331 | v9ses->aname = kstrdup(V9FS_DEFANAME, GFP_KERNEL); |
Tejun Heo | 412a19b | 2015-06-08 14:57:31 +0900 | [diff] [blame] | 332 | if (!v9ses->aname) |
| 333 | goto err_names; |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 334 | init_rwsem(&v9ses->rename_sem); |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 335 | |
Eric W. Biederman | 76ed23a | 2013-01-30 11:57:40 -0800 | [diff] [blame] | 336 | v9ses->uid = INVALID_UID; |
Latchesar Ionkov | bd32b82 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 337 | v9ses->dfltuid = V9FS_DEFUID; |
| 338 | v9ses->dfltgid = V9FS_DEFGID; |
Jim Meyering | ab31267 | 2008-03-06 17:10:28 -0600 | [diff] [blame] | 339 | |
Abhishek Kulkarni | 4b53e4b | 2009-08-17 16:42:28 -0500 | [diff] [blame] | 340 | v9ses->clnt = p9_client_create(dev_name, data); |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 341 | if (IS_ERR(v9ses->clnt)) { |
Tejun Heo | 412a19b | 2015-06-08 14:57:31 +0900 | [diff] [blame] | 342 | rc = PTR_ERR(v9ses->clnt); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 343 | p9_debug(P9_DEBUG_ERROR, "problem initializing 9p client\n"); |
Jan Kara | 71304fe | 2017-04-12 12:24:31 +0200 | [diff] [blame] | 344 | goto err_names; |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 345 | } |
| 346 | |
Venkateswararao Jujjuri (JV) | 6752a1e | 2011-01-26 16:20:35 -0800 | [diff] [blame] | 347 | v9ses->flags = V9FS_ACCESS_USER; |
| 348 | |
| 349 | if (p9_is_proto_dotl(v9ses->clnt)) { |
| 350 | v9ses->flags = V9FS_ACCESS_CLIENT; |
Sripathi Kodi | 476ada0 | 2010-03-17 17:02:38 +0000 | [diff] [blame] | 351 | v9ses->flags |= V9FS_PROTO_2000L; |
Venkateswararao Jujjuri (JV) | 6752a1e | 2011-01-26 16:20:35 -0800 | [diff] [blame] | 352 | } else if (p9_is_proto_dotu(v9ses->clnt)) { |
Sripathi Kodi | 476ada0 | 2010-03-17 17:02:38 +0000 | [diff] [blame] | 353 | v9ses->flags |= V9FS_PROTO_2000U; |
Venkateswararao Jujjuri (JV) | 6752a1e | 2011-01-26 16:20:35 -0800 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | rc = v9fs_parse_options(v9ses, data); |
Tejun Heo | 412a19b | 2015-06-08 14:57:31 +0900 | [diff] [blame] | 357 | if (rc < 0) |
| 358 | goto err_clnt; |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 359 | |
Eric Van Hensbergen | fbedadc | 2008-10-13 20:36:16 -0500 | [diff] [blame] | 360 | v9ses->maxdata = v9ses->clnt->msize - P9_IOHDRSZ; |
Eric Van Hensbergen | 8a0dc95 | 2008-02-06 19:25:03 -0600 | [diff] [blame] | 361 | |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 362 | if (!v9fs_proto_dotl(v9ses) && |
| 363 | ((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_CLIENT)) { |
| 364 | /* |
| 365 | * We support ACCESS_CLIENT only for dotl. |
| 366 | * Fall back to ACCESS_USER |
| 367 | */ |
| 368 | v9ses->flags &= ~V9FS_ACCESS_MASK; |
| 369 | v9ses->flags |= V9FS_ACCESS_USER; |
| 370 | } |
| 371 | /*FIXME !! */ |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 372 | /* for legacy mode, fall back to V9FS_ACCESS_ANY */ |
Aneesh Kumar K.V | 9ffaf63 | 2010-06-01 09:26:18 +0000 | [diff] [blame] | 373 | if (!(v9fs_proto_dotu(v9ses) || v9fs_proto_dotl(v9ses)) && |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 374 | ((v9ses->flags&V9FS_ACCESS_MASK) == V9FS_ACCESS_USER)) { |
| 375 | |
| 376 | v9ses->flags &= ~V9FS_ACCESS_MASK; |
| 377 | v9ses->flags |= V9FS_ACCESS_ANY; |
Eric W. Biederman | 76ed23a | 2013-01-30 11:57:40 -0800 | [diff] [blame] | 378 | v9ses->uid = INVALID_UID; |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 379 | } |
Venkateswararao Jujjuri (JV) | e782ef7 | 2011-01-25 15:40:54 -0800 | [diff] [blame] | 380 | if (!v9fs_proto_dotl(v9ses) || |
| 381 | !((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_CLIENT)) { |
| 382 | /* |
| 383 | * We support ACL checks on clinet only if the protocol is |
| 384 | * 9P2000.L and access is V9FS_ACCESS_CLIENT. |
| 385 | */ |
| 386 | v9ses->flags &= ~V9FS_ACL_MASK; |
| 387 | } |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 388 | |
Eric W. Biederman | f791f7c | 2013-01-29 16:09:41 -0800 | [diff] [blame] | 389 | fid = p9_client_attach(v9ses->clnt, NULL, v9ses->uname, INVALID_UID, |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 390 | v9ses->aname); |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 391 | if (IS_ERR(fid)) { |
Tejun Heo | 412a19b | 2015-06-08 14:57:31 +0900 | [diff] [blame] | 392 | rc = PTR_ERR(fid); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 393 | p9_debug(P9_DEBUG_ERROR, "cannot attach\n"); |
Tejun Heo | 412a19b | 2015-06-08 14:57:31 +0900 | [diff] [blame] | 394 | goto err_clnt; |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 395 | } |
| 396 | |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 397 | if ((v9ses->flags & V9FS_ACCESS_MASK) == V9FS_ACCESS_SINGLE) |
| 398 | fid->uid = v9ses->uid; |
| 399 | else |
Eric W. Biederman | b464255 | 2013-01-30 11:48:53 -0800 | [diff] [blame] | 400 | fid->uid = INVALID_UID; |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 401 | |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 402 | #ifdef CONFIG_9P_FSCACHE |
| 403 | /* register the session for caching */ |
| 404 | v9fs_cache_session_get_cookie(v9ses); |
| 405 | #endif |
Tejun Heo | 412a19b | 2015-06-08 14:57:31 +0900 | [diff] [blame] | 406 | spin_lock(&v9fs_sessionlist_lock); |
| 407 | list_add(&v9ses->slist, &v9fs_sessionlist); |
| 408 | spin_unlock(&v9fs_sessionlist_lock); |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 409 | |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 410 | return fid; |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 411 | |
Tejun Heo | 412a19b | 2015-06-08 14:57:31 +0900 | [diff] [blame] | 412 | err_clnt: |
| 413 | p9_client_destroy(v9ses->clnt); |
Tejun Heo | 412a19b | 2015-06-08 14:57:31 +0900 | [diff] [blame] | 414 | err_names: |
| 415 | kfree(v9ses->uname); |
| 416 | kfree(v9ses->aname); |
| 417 | return ERR_PTR(rc); |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 418 | } |
| 419 | |
| 420 | /** |
| 421 | * v9fs_session_close - shutdown a session |
| 422 | * @v9ses: session information structure |
| 423 | * |
| 424 | */ |
| 425 | |
| 426 | void v9fs_session_close(struct v9fs_session_info *v9ses) |
| 427 | { |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 428 | if (v9ses->clnt) { |
| 429 | p9_client_destroy(v9ses->clnt); |
| 430 | v9ses->clnt = NULL; |
Latchesar Ionkov | 3cf6429 | 2006-01-08 01:04:58 -0800 | [diff] [blame] | 431 | } |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 432 | |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 433 | #ifdef CONFIG_9P_FSCACHE |
| 434 | if (v9ses->fscache) { |
| 435 | v9fs_cache_session_put_cookie(v9ses); |
| 436 | kfree(v9ses->cachetag); |
| 437 | } |
| 438 | #endif |
Jeff Layton | e549c13 | 2012-09-07 07:55:25 -0400 | [diff] [blame] | 439 | kfree(v9ses->uname); |
| 440 | kfree(v9ses->aname); |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 441 | |
| 442 | spin_lock(&v9fs_sessionlist_lock); |
| 443 | list_del(&v9ses->slist); |
| 444 | spin_unlock(&v9fs_sessionlist_lock); |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 445 | } |
| 446 | |
Eric Van Hensbergen | 322b329 | 2005-09-09 13:04:23 -0700 | [diff] [blame] | 447 | /** |
Eric Van Hensbergen | ee44399 | 2008-03-05 07:08:09 -0600 | [diff] [blame] | 448 | * v9fs_session_cancel - terminate a session |
| 449 | * @v9ses: session to terminate |
| 450 | * |
| 451 | * mark transport as disconnected and cancel all pending requests. |
Eric Van Hensbergen | 322b329 | 2005-09-09 13:04:23 -0700 | [diff] [blame] | 452 | */ |
Eric Van Hensbergen | ee44399 | 2008-03-05 07:08:09 -0600 | [diff] [blame] | 453 | |
Eric Van Hensbergen | 322b329 | 2005-09-09 13:04:23 -0700 | [diff] [blame] | 454 | void v9fs_session_cancel(struct v9fs_session_info *v9ses) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 455 | p9_debug(P9_DEBUG_ERROR, "cancel session %p\n", v9ses); |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 456 | p9_client_disconnect(v9ses->clnt); |
Eric Van Hensbergen | 322b329 | 2005-09-09 13:04:23 -0700 | [diff] [blame] | 457 | } |
| 458 | |
Aneesh Kumar K.V | 6d96d3a | 2010-03-29 18:13:59 -0500 | [diff] [blame] | 459 | /** |
| 460 | * v9fs_session_begin_cancel - Begin terminate of a session |
| 461 | * @v9ses: session to terminate |
| 462 | * |
| 463 | * After this call we don't allow any request other than clunk. |
| 464 | */ |
| 465 | |
| 466 | void v9fs_session_begin_cancel(struct v9fs_session_info *v9ses) |
| 467 | { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 468 | p9_debug(P9_DEBUG_ERROR, "begin cancel session %p\n", v9ses); |
Aneesh Kumar K.V | 6d96d3a | 2010-03-29 18:13:59 -0500 | [diff] [blame] | 469 | p9_client_begin_disconnect(v9ses->clnt); |
| 470 | } |
| 471 | |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 472 | extern int v9fs_error_init(void); |
| 473 | |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 474 | static struct kobject *v9fs_kobj; |
| 475 | |
| 476 | #ifdef CONFIG_9P_FSCACHE |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 477 | /** |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 478 | * caches_show - list caches associated with a session |
| 479 | * |
| 480 | * Returns the size of buffer written. |
| 481 | */ |
| 482 | |
| 483 | static ssize_t caches_show(struct kobject *kobj, |
| 484 | struct kobj_attribute *attr, |
| 485 | char *buf) |
| 486 | { |
| 487 | ssize_t n = 0, count = 0, limit = PAGE_SIZE; |
| 488 | struct v9fs_session_info *v9ses; |
| 489 | |
| 490 | spin_lock(&v9fs_sessionlist_lock); |
| 491 | list_for_each_entry(v9ses, &v9fs_sessionlist, slist) { |
| 492 | if (v9ses->cachetag) { |
| 493 | n = snprintf(buf, limit, "%s\n", v9ses->cachetag); |
| 494 | if (n < 0) { |
| 495 | count = n; |
| 496 | break; |
| 497 | } |
| 498 | |
| 499 | count += n; |
| 500 | limit -= n; |
| 501 | } |
| 502 | } |
| 503 | |
| 504 | spin_unlock(&v9fs_sessionlist_lock); |
| 505 | return count; |
| 506 | } |
| 507 | |
| 508 | static struct kobj_attribute v9fs_attr_cache = __ATTR_RO(caches); |
| 509 | #endif /* CONFIG_9P_FSCACHE */ |
| 510 | |
| 511 | static struct attribute *v9fs_attrs[] = { |
| 512 | #ifdef CONFIG_9P_FSCACHE |
| 513 | &v9fs_attr_cache.attr, |
| 514 | #endif |
| 515 | NULL, |
| 516 | }; |
| 517 | |
| 518 | static struct attribute_group v9fs_attr_group = { |
| 519 | .attrs = v9fs_attrs, |
| 520 | }; |
| 521 | |
| 522 | /** |
| 523 | * v9fs_sysfs_init - Initialize the v9fs sysfs interface |
| 524 | * |
| 525 | */ |
| 526 | |
Fabian Frederick | bdbeacd | 2014-06-04 16:06:25 -0700 | [diff] [blame] | 527 | static int __init v9fs_sysfs_init(void) |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 528 | { |
| 529 | v9fs_kobj = kobject_create_and_add("9p", fs_kobj); |
| 530 | if (!v9fs_kobj) |
| 531 | return -ENOMEM; |
| 532 | |
| 533 | if (sysfs_create_group(v9fs_kobj, &v9fs_attr_group)) { |
| 534 | kobject_put(v9fs_kobj); |
| 535 | return -ENOMEM; |
| 536 | } |
| 537 | |
| 538 | return 0; |
| 539 | } |
| 540 | |
| 541 | /** |
| 542 | * v9fs_sysfs_cleanup - Unregister the v9fs sysfs interface |
| 543 | * |
| 544 | */ |
| 545 | |
| 546 | static void v9fs_sysfs_cleanup(void) |
| 547 | { |
| 548 | sysfs_remove_group(v9fs_kobj, &v9fs_attr_group); |
| 549 | kobject_put(v9fs_kobj); |
| 550 | } |
| 551 | |
Aneesh Kumar K.V | a78ce05 | 2011-02-28 17:04:02 +0530 | [diff] [blame] | 552 | static void v9fs_inode_init_once(void *foo) |
| 553 | { |
| 554 | struct v9fs_inode *v9inode = (struct v9fs_inode *)foo; |
| 555 | #ifdef CONFIG_9P_FSCACHE |
| 556 | v9inode->fscache = NULL; |
Aneesh Kumar K.V | a78ce05 | 2011-02-28 17:04:02 +0530 | [diff] [blame] | 557 | #endif |
Aneesh Kumar K.V | fd2421f | 2011-07-11 16:40:59 +0000 | [diff] [blame] | 558 | memset(&v9inode->qid, 0, sizeof(v9inode->qid)); |
Aneesh Kumar K.V | a78ce05 | 2011-02-28 17:04:02 +0530 | [diff] [blame] | 559 | inode_init_once(&v9inode->vfs_inode); |
| 560 | } |
| 561 | |
| 562 | /** |
| 563 | * v9fs_init_inode_cache - initialize a cache for 9P |
| 564 | * Returns 0 on success. |
| 565 | */ |
| 566 | static int v9fs_init_inode_cache(void) |
| 567 | { |
| 568 | v9fs_inode_cache = kmem_cache_create("v9fs_inode_cache", |
| 569 | sizeof(struct v9fs_inode), |
| 570 | 0, (SLAB_RECLAIM_ACCOUNT| |
Vladimir Davydov | 5d09705 | 2016-01-14 15:18:21 -0800 | [diff] [blame] | 571 | SLAB_MEM_SPREAD|SLAB_ACCOUNT), |
Aneesh Kumar K.V | a78ce05 | 2011-02-28 17:04:02 +0530 | [diff] [blame] | 572 | v9fs_inode_init_once); |
| 573 | if (!v9fs_inode_cache) |
| 574 | return -ENOMEM; |
| 575 | |
| 576 | return 0; |
| 577 | } |
| 578 | |
| 579 | /** |
| 580 | * v9fs_destroy_inode_cache - destroy the cache of 9P inode |
| 581 | * |
| 582 | */ |
| 583 | static void v9fs_destroy_inode_cache(void) |
| 584 | { |
Kirill A. Shutemov | 8c0a853 | 2012-09-26 11:33:07 +1000 | [diff] [blame] | 585 | /* |
| 586 | * Make sure all delayed rcu free inodes are flushed before we |
| 587 | * destroy cache. |
| 588 | */ |
| 589 | rcu_barrier(); |
Aneesh Kumar K.V | a78ce05 | 2011-02-28 17:04:02 +0530 | [diff] [blame] | 590 | kmem_cache_destroy(v9fs_inode_cache); |
| 591 | } |
| 592 | |
| 593 | static int v9fs_cache_register(void) |
| 594 | { |
| 595 | int ret; |
| 596 | ret = v9fs_init_inode_cache(); |
| 597 | if (ret < 0) |
| 598 | return ret; |
| 599 | #ifdef CONFIG_9P_FSCACHE |
Al Viro | 8061a6f | 2013-09-17 08:10:18 -0400 | [diff] [blame] | 600 | ret = fscache_register_netfs(&v9fs_cache_netfs); |
| 601 | if (ret < 0) |
| 602 | v9fs_destroy_inode_cache(); |
Aneesh Kumar K.V | a78ce05 | 2011-02-28 17:04:02 +0530 | [diff] [blame] | 603 | #endif |
Al Viro | 8061a6f | 2013-09-17 08:10:18 -0400 | [diff] [blame] | 604 | return ret; |
Aneesh Kumar K.V | a78ce05 | 2011-02-28 17:04:02 +0530 | [diff] [blame] | 605 | } |
| 606 | |
| 607 | static void v9fs_cache_unregister(void) |
| 608 | { |
| 609 | v9fs_destroy_inode_cache(); |
| 610 | #ifdef CONFIG_9P_FSCACHE |
| 611 | fscache_unregister_netfs(&v9fs_cache_netfs); |
| 612 | #endif |
| 613 | } |
| 614 | |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 615 | /** |
| 616 | * init_v9fs - Initialize module |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 617 | * |
| 618 | */ |
| 619 | |
| 620 | static int __init init_v9fs(void) |
| 621 | { |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 622 | int err; |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 623 | pr_info("Installing v9fs 9p2000 file system support\n"); |
Eric Van Hensbergen | a80d923 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 624 | /* TODO: Setup list of registered trasnport modules */ |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 625 | |
| 626 | err = v9fs_cache_register(); |
| 627 | if (err < 0) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 628 | pr_err("Failed to register v9fs for caching\n"); |
Al Viro | 2226a28 | 2012-03-17 02:37:05 -0400 | [diff] [blame] | 629 | return err; |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 630 | } |
| 631 | |
| 632 | err = v9fs_sysfs_init(); |
| 633 | if (err < 0) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 634 | pr_err("Failed to register with sysfs\n"); |
Al Viro | 2226a28 | 2012-03-17 02:37:05 -0400 | [diff] [blame] | 635 | goto out_cache; |
| 636 | } |
| 637 | err = register_filesystem(&v9fs_fs_type); |
| 638 | if (err < 0) { |
| 639 | pr_err("Failed to register filesystem\n"); |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 640 | goto out_sysfs_cleanup; |
| 641 | } |
| 642 | |
| 643 | return 0; |
| 644 | |
| 645 | out_sysfs_cleanup: |
| 646 | v9fs_sysfs_cleanup(); |
| 647 | |
Al Viro | 2226a28 | 2012-03-17 02:37:05 -0400 | [diff] [blame] | 648 | out_cache: |
| 649 | v9fs_cache_unregister(); |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 650 | |
| 651 | return err; |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 652 | } |
| 653 | |
| 654 | /** |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 655 | * exit_v9fs - shutdown module |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 656 | * |
| 657 | */ |
| 658 | |
| 659 | static void __exit exit_v9fs(void) |
| 660 | { |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 661 | v9fs_sysfs_cleanup(); |
| 662 | v9fs_cache_unregister(); |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 663 | unregister_filesystem(&v9fs_fs_type); |
| 664 | } |
| 665 | |
| 666 | module_init(init_v9fs) |
| 667 | module_exit(exit_v9fs) |
| 668 | |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 669 | MODULE_AUTHOR("Latchesar Ionkov <lucho@ionkov.net>"); |
Eric Van Hensbergen | 9e82cf6 | 2005-09-09 13:04:20 -0700 | [diff] [blame] | 670 | MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>"); |
| 671 | MODULE_AUTHOR("Ron Minnich <rminnich@lanl.gov>"); |
| 672 | MODULE_LICENSE("GPL"); |