Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/9p/vfs_inode_dotl.c |
| 3 | * |
| 4 | * This file contains vfs inode ops for the 9P2000.L protocol. |
| 5 | * |
| 6 | * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com> |
| 7 | * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov> |
| 8 | * |
| 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. |
| 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 | |
| 26 | #include <linux/module.h> |
| 27 | #include <linux/errno.h> |
| 28 | #include <linux/fs.h> |
| 29 | #include <linux/file.h> |
| 30 | #include <linux/pagemap.h> |
| 31 | #include <linux/stat.h> |
| 32 | #include <linux/string.h> |
| 33 | #include <linux/inet.h> |
| 34 | #include <linux/namei.h> |
| 35 | #include <linux/idr.h> |
| 36 | #include <linux/sched.h> |
| 37 | #include <linux/slab.h> |
| 38 | #include <linux/xattr.h> |
| 39 | #include <linux/posix_acl.h> |
| 40 | #include <net/9p/9p.h> |
| 41 | #include <net/9p/client.h> |
| 42 | |
| 43 | #include "v9fs.h" |
| 44 | #include "v9fs_vfs.h" |
| 45 | #include "fid.h" |
| 46 | #include "cache.h" |
| 47 | #include "xattr.h" |
| 48 | #include "acl.h" |
| 49 | |
| 50 | static int |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 51 | v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode, |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 52 | dev_t rdev); |
| 53 | |
| 54 | /** |
| 55 | * v9fs_get_fsgid_for_create - Helper function to get the gid for creating a |
| 56 | * new file system object. This checks the S_ISGID to determine the owning |
| 57 | * group of the new file system object. |
| 58 | */ |
| 59 | |
Eric W. Biederman | d4ef4e3 | 2013-01-30 12:08:21 -0800 | [diff] [blame] | 60 | static kgid_t v9fs_get_fsgid_for_create(struct inode *dir_inode) |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 61 | { |
| 62 | BUG_ON(dir_inode == NULL); |
| 63 | |
| 64 | if (dir_inode->i_mode & S_ISGID) { |
| 65 | /* set_gid bit is set.*/ |
| 66 | return dir_inode->i_gid; |
| 67 | } |
| 68 | return current_fsgid(); |
| 69 | } |
| 70 | |
Aneesh Kumar K.V | fd2421f | 2011-07-11 16:40:59 +0000 | [diff] [blame] | 71 | static int v9fs_test_inode_dotl(struct inode *inode, void *data) |
| 72 | { |
| 73 | struct v9fs_inode *v9inode = V9FS_I(inode); |
| 74 | struct p9_stat_dotl *st = (struct p9_stat_dotl *)data; |
| 75 | |
| 76 | /* don't match inode of different type */ |
| 77 | if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT)) |
| 78 | return 0; |
| 79 | |
| 80 | if (inode->i_generation != st->st_gen) |
| 81 | return 0; |
| 82 | |
| 83 | /* compare qid details */ |
| 84 | if (memcmp(&v9inode->qid.version, |
| 85 | &st->qid.version, sizeof(v9inode->qid.version))) |
| 86 | return 0; |
| 87 | |
| 88 | if (v9inode->qid.type != st->qid.type) |
| 89 | return 0; |
| 90 | return 1; |
| 91 | } |
| 92 | |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 93 | /* Always get a new inode */ |
| 94 | static int v9fs_test_new_inode_dotl(struct inode *inode, void *data) |
| 95 | { |
| 96 | return 0; |
| 97 | } |
| 98 | |
Aneesh Kumar K.V | fd2421f | 2011-07-11 16:40:59 +0000 | [diff] [blame] | 99 | static int v9fs_set_inode_dotl(struct inode *inode, void *data) |
| 100 | { |
| 101 | struct v9fs_inode *v9inode = V9FS_I(inode); |
| 102 | struct p9_stat_dotl *st = (struct p9_stat_dotl *)data; |
| 103 | |
| 104 | memcpy(&v9inode->qid, &st->qid, sizeof(st->qid)); |
| 105 | inode->i_generation = st->st_gen; |
| 106 | return 0; |
| 107 | } |
| 108 | |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 109 | static struct inode *v9fs_qid_iget_dotl(struct super_block *sb, |
| 110 | struct p9_qid *qid, |
| 111 | struct p9_fid *fid, |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 112 | struct p9_stat_dotl *st, |
| 113 | int new) |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 114 | { |
| 115 | int retval; |
| 116 | unsigned long i_ino; |
| 117 | struct inode *inode; |
| 118 | struct v9fs_session_info *v9ses = sb->s_fs_info; |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 119 | int (*test)(struct inode *, void *); |
| 120 | |
| 121 | if (new) |
| 122 | test = v9fs_test_new_inode_dotl; |
| 123 | else |
| 124 | test = v9fs_test_inode_dotl; |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 125 | |
| 126 | i_ino = v9fs_qid2ino(qid); |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 127 | inode = iget5_locked(sb, i_ino, test, v9fs_set_inode_dotl, st); |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 128 | if (!inode) |
| 129 | return ERR_PTR(-ENOMEM); |
| 130 | if (!(inode->i_state & I_NEW)) |
| 131 | return inode; |
| 132 | /* |
| 133 | * initialize the inode with the stat info |
| 134 | * FIXME!! we may need support for stale inodes |
| 135 | * later. |
| 136 | */ |
Aneesh Kumar K.V | fd2421f | 2011-07-11 16:40:59 +0000 | [diff] [blame] | 137 | inode->i_ino = i_ino; |
Aneesh Kumar K.V | 4508914 | 2011-07-25 18:06:33 +0000 | [diff] [blame] | 138 | retval = v9fs_init_inode(v9ses, inode, |
| 139 | st->st_mode, new_decode_dev(st->st_rdev)); |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 140 | if (retval) |
| 141 | goto error; |
| 142 | |
| 143 | v9fs_stat2inode_dotl(st, inode); |
| 144 | #ifdef CONFIG_9P_FSCACHE |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 145 | v9fs_cache_inode_get_cookie(inode); |
| 146 | #endif |
| 147 | retval = v9fs_get_acl(inode, fid); |
| 148 | if (retval) |
| 149 | goto error; |
| 150 | |
| 151 | unlock_new_inode(inode); |
| 152 | return inode; |
| 153 | error: |
| 154 | unlock_new_inode(inode); |
| 155 | iput(inode); |
| 156 | return ERR_PTR(retval); |
| 157 | |
| 158 | } |
| 159 | |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 160 | struct inode * |
Aneesh Kumar K.V | a78ce05 | 2011-02-28 17:04:02 +0530 | [diff] [blame] | 161 | v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid, |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 162 | struct super_block *sb, int new) |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 163 | { |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 164 | struct p9_stat_dotl *st; |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 165 | struct inode *inode = NULL; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 166 | |
Aneesh Kumar K.V | fd2421f | 2011-07-11 16:40:59 +0000 | [diff] [blame] | 167 | st = p9_client_getattr_dotl(fid, P9_STATS_BASIC | P9_STATS_GEN); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 168 | if (IS_ERR(st)) |
| 169 | return ERR_CAST(st); |
| 170 | |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 171 | inode = v9fs_qid_iget_dotl(sb, &st->qid, fid, st, new); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 172 | kfree(st); |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 173 | return inode; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 174 | } |
| 175 | |
Aneesh Kumar K.V | f88657c | 2011-08-03 19:55:32 +0530 | [diff] [blame] | 176 | struct dotl_openflag_map { |
| 177 | int open_flag; |
| 178 | int dotl_flag; |
| 179 | }; |
| 180 | |
| 181 | static int v9fs_mapped_dotl_flags(int flags) |
| 182 | { |
| 183 | int i; |
| 184 | int rflags = 0; |
| 185 | struct dotl_openflag_map dotl_oflag_map[] = { |
| 186 | { O_CREAT, P9_DOTL_CREATE }, |
| 187 | { O_EXCL, P9_DOTL_EXCL }, |
| 188 | { O_NOCTTY, P9_DOTL_NOCTTY }, |
Aneesh Kumar K.V | f88657c | 2011-08-03 19:55:32 +0530 | [diff] [blame] | 189 | { O_APPEND, P9_DOTL_APPEND }, |
| 190 | { O_NONBLOCK, P9_DOTL_NONBLOCK }, |
| 191 | { O_DSYNC, P9_DOTL_DSYNC }, |
| 192 | { FASYNC, P9_DOTL_FASYNC }, |
| 193 | { O_DIRECT, P9_DOTL_DIRECT }, |
| 194 | { O_LARGEFILE, P9_DOTL_LARGEFILE }, |
| 195 | { O_DIRECTORY, P9_DOTL_DIRECTORY }, |
| 196 | { O_NOFOLLOW, P9_DOTL_NOFOLLOW }, |
| 197 | { O_NOATIME, P9_DOTL_NOATIME }, |
| 198 | { O_CLOEXEC, P9_DOTL_CLOEXEC }, |
| 199 | { O_SYNC, P9_DOTL_SYNC}, |
| 200 | }; |
| 201 | for (i = 0; i < ARRAY_SIZE(dotl_oflag_map); i++) { |
| 202 | if (flags & dotl_oflag_map[i].open_flag) |
| 203 | rflags |= dotl_oflag_map[i].dotl_flag; |
| 204 | } |
| 205 | return rflags; |
| 206 | } |
| 207 | |
| 208 | /** |
| 209 | * v9fs_open_to_dotl_flags- convert Linux specific open flags to |
| 210 | * plan 9 open flag. |
| 211 | * @flags: flags to convert |
| 212 | */ |
| 213 | int v9fs_open_to_dotl_flags(int flags) |
| 214 | { |
| 215 | int rflags = 0; |
| 216 | |
| 217 | /* |
| 218 | * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY |
| 219 | * and P9_DOTL_NOACCESS |
| 220 | */ |
| 221 | rflags |= flags & O_ACCMODE; |
| 222 | rflags |= v9fs_mapped_dotl_flags(flags); |
| 223 | |
| 224 | return rflags; |
| 225 | } |
| 226 | |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 227 | /** |
| 228 | * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol. |
| 229 | * @dir: directory inode that is being created |
| 230 | * @dentry: dentry that is being deleted |
| 231 | * @mode: create permissions |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 232 | * |
| 233 | */ |
| 234 | |
| 235 | static int |
Al Viro | 4acdaf2 | 2011-07-26 01:42:34 -0400 | [diff] [blame] | 236 | v9fs_vfs_create_dotl(struct inode *dir, struct dentry *dentry, umode_t omode, |
Al Viro | ebfc3b4 | 2012-06-10 18:05:36 -0400 | [diff] [blame] | 237 | bool excl) |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 238 | { |
Miklos Szeredi | e43ae79 | 2012-06-05 15:10:26 +0200 | [diff] [blame] | 239 | return v9fs_vfs_mknod_dotl(dir, dentry, omode, 0); |
| 240 | } |
| 241 | |
Al Viro | d958527 | 2012-06-22 12:39:14 +0400 | [diff] [blame] | 242 | static int |
Miklos Szeredi | e43ae79 | 2012-06-05 15:10:26 +0200 | [diff] [blame] | 243 | v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry, |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 244 | struct file *file, unsigned flags, umode_t omode, |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 245 | int *opened) |
Miklos Szeredi | e43ae79 | 2012-06-05 15:10:26 +0200 | [diff] [blame] | 246 | { |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 247 | int err = 0; |
Eric W. Biederman | d4ef4e3 | 2013-01-30 12:08:21 -0800 | [diff] [blame] | 248 | kgid_t gid; |
Al Viro | d3fb612 | 2011-07-23 18:37:50 -0400 | [diff] [blame] | 249 | umode_t mode; |
Aneesh Kumar K.V | 6b39f6d | 2011-02-28 17:04:03 +0530 | [diff] [blame] | 250 | char *name = NULL; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 251 | struct p9_qid qid; |
| 252 | struct inode *inode; |
Aneesh Kumar K.V | 6b39f6d | 2011-02-28 17:04:03 +0530 | [diff] [blame] | 253 | struct p9_fid *fid = NULL; |
| 254 | struct v9fs_inode *v9inode; |
| 255 | struct p9_fid *dfid, *ofid, *inode_fid; |
| 256 | struct v9fs_session_info *v9ses; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 257 | struct posix_acl *pacl = NULL, *dacl = NULL; |
Miklos Szeredi | e43ae79 | 2012-06-05 15:10:26 +0200 | [diff] [blame] | 258 | struct dentry *res = NULL; |
| 259 | |
| 260 | if (d_unhashed(dentry)) { |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 261 | res = v9fs_vfs_lookup(dir, dentry, 0); |
Miklos Szeredi | e43ae79 | 2012-06-05 15:10:26 +0200 | [diff] [blame] | 262 | if (IS_ERR(res)) |
Al Viro | d958527 | 2012-06-22 12:39:14 +0400 | [diff] [blame] | 263 | return PTR_ERR(res); |
Miklos Szeredi | e43ae79 | 2012-06-05 15:10:26 +0200 | [diff] [blame] | 264 | |
| 265 | if (res) |
| 266 | dentry = res; |
| 267 | } |
| 268 | |
| 269 | /* Only creates */ |
Al Viro | 03da633 | 2013-09-16 19:22:33 -0400 | [diff] [blame^] | 270 | if (!(flags & O_CREAT) || dentry->d_inode) |
M. Mohan Kumar | b6f4bee | 2013-02-05 14:25:05 +0530 | [diff] [blame] | 271 | return finish_no_open(file, res); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 272 | |
| 273 | v9ses = v9fs_inode2v9ses(dir); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 274 | |
| 275 | name = (char *) dentry->d_name.name; |
Linus Torvalds | 609eac1 | 2012-01-10 15:09:01 -0800 | [diff] [blame] | 276 | p9_debug(P9_DEBUG_VFS, "name:%s flags:0x%x mode:0x%hx\n", |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 277 | name, flags, omode); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 278 | |
| 279 | dfid = v9fs_fid_lookup(dentry->d_parent); |
| 280 | if (IS_ERR(dfid)) { |
| 281 | err = PTR_ERR(dfid); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 282 | p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err); |
Al Viro | d958527 | 2012-06-22 12:39:14 +0400 | [diff] [blame] | 283 | goto out; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 284 | } |
| 285 | |
| 286 | /* clone a fid to use for creation */ |
| 287 | ofid = p9_client_walk(dfid, 0, NULL, 1); |
| 288 | if (IS_ERR(ofid)) { |
| 289 | err = PTR_ERR(ofid); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 290 | p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err); |
Al Viro | d958527 | 2012-06-22 12:39:14 +0400 | [diff] [blame] | 291 | goto out; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | gid = v9fs_get_fsgid_for_create(dir); |
| 295 | |
| 296 | mode = omode; |
| 297 | /* Update mode based on ACL value */ |
| 298 | err = v9fs_acl_mode(dir, &mode, &dacl, &pacl); |
| 299 | if (err) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 300 | p9_debug(P9_DEBUG_VFS, "Failed to get acl values in creat %d\n", |
| 301 | err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 302 | goto error; |
| 303 | } |
Aneesh Kumar K.V | f88657c | 2011-08-03 19:55:32 +0530 | [diff] [blame] | 304 | err = p9_client_create_dotl(ofid, name, v9fs_open_to_dotl_flags(flags), |
| 305 | mode, gid, &qid); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 306 | if (err < 0) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 307 | p9_debug(P9_DEBUG_VFS, "p9_client_open_dotl failed in creat %d\n", |
| 308 | err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 309 | goto error; |
| 310 | } |
Aneesh Kumar K.V | d28c61f | 2011-02-28 17:04:08 +0530 | [diff] [blame] | 311 | v9fs_invalidate_inode_attr(dir); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 312 | |
Aneesh Kumar K.V | af7542f | 2011-01-10 14:22:21 -0600 | [diff] [blame] | 313 | /* instantiate inode and assign the unopened fid to the dentry */ |
| 314 | fid = p9_client_walk(dfid, 1, &name, 1); |
| 315 | if (IS_ERR(fid)) { |
| 316 | err = PTR_ERR(fid); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 317 | p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 318 | fid = NULL; |
Aneesh Kumar K.V | af7542f | 2011-01-10 14:22:21 -0600 | [diff] [blame] | 319 | goto error; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 320 | } |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 321 | inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb); |
Aneesh Kumar K.V | af7542f | 2011-01-10 14:22:21 -0600 | [diff] [blame] | 322 | if (IS_ERR(inode)) { |
| 323 | err = PTR_ERR(inode); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 324 | p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", err); |
Aneesh Kumar K.V | af7542f | 2011-01-10 14:22:21 -0600 | [diff] [blame] | 325 | goto error; |
| 326 | } |
Al Viro | 3592ac4 | 2013-01-31 13:45:39 -0500 | [diff] [blame] | 327 | /* Now set the ACL based on the default value */ |
| 328 | v9fs_set_create_acl(inode, fid, dacl, pacl); |
| 329 | |
Al Viro | 2ea03e1d | 2013-02-28 01:18:14 -0500 | [diff] [blame] | 330 | v9fs_fid_add(dentry, fid); |
Aneesh Kumar K.V | 5441ae5 | 2011-07-25 18:06:32 +0000 | [diff] [blame] | 331 | d_instantiate(dentry, inode); |
Aneesh Kumar K.V | af7542f | 2011-01-10 14:22:21 -0600 | [diff] [blame] | 332 | |
Aneesh Kumar K.V | 6b39f6d | 2011-02-28 17:04:03 +0530 | [diff] [blame] | 333 | v9inode = V9FS_I(inode); |
Aneesh Kumar K.V | 5a7e0a8 | 2011-03-08 16:39:46 +0530 | [diff] [blame] | 334 | mutex_lock(&v9inode->v_mutex); |
Aneesh Kumar K.V | 7add697 | 2011-03-08 16:39:49 +0530 | [diff] [blame] | 335 | if (v9ses->cache && !v9inode->writeback_fid && |
| 336 | ((flags & O_ACCMODE) != O_RDONLY)) { |
Aneesh Kumar K.V | 3cf387d | 2011-02-28 17:03:57 +0530 | [diff] [blame] | 337 | /* |
Aneesh Kumar K.V | 6b39f6d | 2011-02-28 17:04:03 +0530 | [diff] [blame] | 338 | * clone a fid and add it to writeback_fid |
Aneesh Kumar K.V | 3cf387d | 2011-02-28 17:03:57 +0530 | [diff] [blame] | 339 | * we do it during open time instead of |
| 340 | * page dirty time via write_begin/page_mkwrite |
| 341 | * because we want write after unlink usecase |
| 342 | * to work. |
| 343 | */ |
| 344 | inode_fid = v9fs_writeback_fid(dentry); |
| 345 | if (IS_ERR(inode_fid)) { |
| 346 | err = PTR_ERR(inode_fid); |
Aneesh Kumar K.V | 5a7e0a8 | 2011-03-08 16:39:46 +0530 | [diff] [blame] | 347 | mutex_unlock(&v9inode->v_mutex); |
Aneesh Kumar K.V | 398c4f0 | 2011-05-20 18:55:51 +0000 | [diff] [blame] | 348 | goto err_clunk_old_fid; |
Aneesh Kumar K.V | 3cf387d | 2011-02-28 17:03:57 +0530 | [diff] [blame] | 349 | } |
Aneesh Kumar K.V | 6b39f6d | 2011-02-28 17:04:03 +0530 | [diff] [blame] | 350 | v9inode->writeback_fid = (void *) inode_fid; |
Aneesh Kumar K.V | 3cf387d | 2011-02-28 17:03:57 +0530 | [diff] [blame] | 351 | } |
Aneesh Kumar K.V | 5a7e0a8 | 2011-03-08 16:39:46 +0530 | [diff] [blame] | 352 | mutex_unlock(&v9inode->v_mutex); |
Aneesh Kumar K.V | af7542f | 2011-01-10 14:22:21 -0600 | [diff] [blame] | 353 | /* Since we are opening a file, assign the open fid to the file */ |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 354 | err = finish_open(file, dentry, generic_file_open, opened); |
| 355 | if (err) |
Aneesh Kumar K.V | 398c4f0 | 2011-05-20 18:55:51 +0000 | [diff] [blame] | 356 | goto err_clunk_old_fid; |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 357 | file->private_data = ofid; |
Aneesh Kumar K.V | 46848de | 2011-02-28 17:03:55 +0530 | [diff] [blame] | 358 | #ifdef CONFIG_9P_FSCACHE |
| 359 | if (v9ses->cache) |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 360 | v9fs_cache_inode_set_cookie(inode, file); |
Aneesh Kumar K.V | 46848de | 2011-02-28 17:03:55 +0530 | [diff] [blame] | 361 | #endif |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 362 | *opened |= FILE_CREATED; |
Miklos Szeredi | e43ae79 | 2012-06-05 15:10:26 +0200 | [diff] [blame] | 363 | out: |
Al Viro | 5fa6300 | 2013-01-31 13:31:23 -0500 | [diff] [blame] | 364 | v9fs_put_acl(dacl, pacl); |
Miklos Szeredi | e43ae79 | 2012-06-05 15:10:26 +0200 | [diff] [blame] | 365 | dput(res); |
Al Viro | d958527 | 2012-06-22 12:39:14 +0400 | [diff] [blame] | 366 | return err; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 367 | |
| 368 | error: |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 369 | if (fid) |
| 370 | p9_client_clunk(fid); |
Aneesh Kumar K.V | 398c4f0 | 2011-05-20 18:55:51 +0000 | [diff] [blame] | 371 | err_clunk_old_fid: |
| 372 | if (ofid) |
| 373 | p9_client_clunk(ofid); |
Miklos Szeredi | e43ae79 | 2012-06-05 15:10:26 +0200 | [diff] [blame] | 374 | goto out; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 375 | } |
| 376 | |
| 377 | /** |
| 378 | * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory |
| 379 | * @dir: inode that is being unlinked |
| 380 | * @dentry: dentry that is being unlinked |
| 381 | * @mode: mode for new directory |
| 382 | * |
| 383 | */ |
| 384 | |
| 385 | static int v9fs_vfs_mkdir_dotl(struct inode *dir, |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 386 | struct dentry *dentry, umode_t omode) |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 387 | { |
| 388 | int err; |
| 389 | struct v9fs_session_info *v9ses; |
| 390 | struct p9_fid *fid = NULL, *dfid = NULL; |
Eric W. Biederman | d4ef4e3 | 2013-01-30 12:08:21 -0800 | [diff] [blame] | 391 | kgid_t gid; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 392 | char *name; |
Al Viro | d3fb612 | 2011-07-23 18:37:50 -0400 | [diff] [blame] | 393 | umode_t mode; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 394 | struct inode *inode; |
| 395 | struct p9_qid qid; |
| 396 | struct dentry *dir_dentry; |
| 397 | struct posix_acl *dacl = NULL, *pacl = NULL; |
| 398 | |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 399 | p9_debug(P9_DEBUG_VFS, "name %s\n", dentry->d_name.name); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 400 | err = 0; |
| 401 | v9ses = v9fs_inode2v9ses(dir); |
| 402 | |
| 403 | omode |= S_IFDIR; |
| 404 | if (dir->i_mode & S_ISGID) |
| 405 | omode |= S_ISGID; |
| 406 | |
Al Viro | af56959 | 2012-04-02 20:02:53 -0400 | [diff] [blame] | 407 | dir_dentry = dentry->d_parent; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 408 | dfid = v9fs_fid_lookup(dir_dentry); |
| 409 | if (IS_ERR(dfid)) { |
| 410 | err = PTR_ERR(dfid); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 411 | p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 412 | dfid = NULL; |
| 413 | goto error; |
| 414 | } |
| 415 | |
| 416 | gid = v9fs_get_fsgid_for_create(dir); |
| 417 | mode = omode; |
| 418 | /* Update mode based on ACL value */ |
| 419 | err = v9fs_acl_mode(dir, &mode, &dacl, &pacl); |
| 420 | if (err) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 421 | p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n", |
| 422 | err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 423 | goto error; |
| 424 | } |
| 425 | name = (char *) dentry->d_name.name; |
| 426 | err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid); |
| 427 | if (err < 0) |
| 428 | goto error; |
| 429 | |
Al Viro | 3592ac4 | 2013-01-31 13:45:39 -0500 | [diff] [blame] | 430 | fid = p9_client_walk(dfid, 1, &name, 1); |
| 431 | if (IS_ERR(fid)) { |
| 432 | err = PTR_ERR(fid); |
| 433 | p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", |
| 434 | err); |
| 435 | fid = NULL; |
| 436 | goto error; |
| 437 | } |
| 438 | |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 439 | /* instantiate inode and assign the unopened fid to the dentry */ |
| 440 | if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) { |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 441 | inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 442 | if (IS_ERR(inode)) { |
| 443 | err = PTR_ERR(inode); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 444 | p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", |
| 445 | err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 446 | goto error; |
| 447 | } |
Al Viro | 2ea03e1d | 2013-02-28 01:18:14 -0500 | [diff] [blame] | 448 | v9fs_fid_add(dentry, fid); |
Al Viro | 3592ac4 | 2013-01-31 13:45:39 -0500 | [diff] [blame] | 449 | v9fs_set_create_acl(inode, fid, dacl, pacl); |
Aneesh Kumar K.V | 5441ae5 | 2011-07-25 18:06:32 +0000 | [diff] [blame] | 450 | d_instantiate(dentry, inode); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 451 | fid = NULL; |
Al Viro | 2ea03e1d | 2013-02-28 01:18:14 -0500 | [diff] [blame] | 452 | err = 0; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 453 | } else { |
| 454 | /* |
| 455 | * Not in cached mode. No need to populate |
| 456 | * inode with stat. We need to get an inode |
| 457 | * so that we can set the acl with dentry |
| 458 | */ |
Aneesh Kumar K.V | 4508914 | 2011-07-25 18:06:33 +0000 | [diff] [blame] | 459 | inode = v9fs_get_inode(dir->i_sb, mode, 0); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 460 | if (IS_ERR(inode)) { |
| 461 | err = PTR_ERR(inode); |
| 462 | goto error; |
| 463 | } |
Al Viro | 3592ac4 | 2013-01-31 13:45:39 -0500 | [diff] [blame] | 464 | v9fs_set_create_acl(inode, fid, dacl, pacl); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 465 | d_instantiate(dentry, inode); |
| 466 | } |
Aneesh Kumar K.V | b271ec4 | 2011-02-28 17:04:05 +0530 | [diff] [blame] | 467 | inc_nlink(dir); |
Aneesh Kumar K.V | d28c61f | 2011-02-28 17:04:08 +0530 | [diff] [blame] | 468 | v9fs_invalidate_inode_attr(dir); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 469 | error: |
| 470 | if (fid) |
| 471 | p9_client_clunk(fid); |
Al Viro | 5fa6300 | 2013-01-31 13:31:23 -0500 | [diff] [blame] | 472 | v9fs_put_acl(dacl, pacl); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 473 | return err; |
| 474 | } |
| 475 | |
| 476 | static int |
| 477 | v9fs_vfs_getattr_dotl(struct vfsmount *mnt, struct dentry *dentry, |
| 478 | struct kstat *stat) |
| 479 | { |
| 480 | int err; |
| 481 | struct v9fs_session_info *v9ses; |
| 482 | struct p9_fid *fid; |
| 483 | struct p9_stat_dotl *st; |
| 484 | |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 485 | p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 486 | err = -EPERM; |
Aneesh Kumar K.V | 42869c8 | 2011-03-08 16:39:50 +0530 | [diff] [blame] | 487 | v9ses = v9fs_dentry2v9ses(dentry); |
Aneesh Kumar K.V | a121190 | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 488 | if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) { |
| 489 | generic_fillattr(dentry->d_inode, stat); |
| 490 | return 0; |
| 491 | } |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 492 | fid = v9fs_fid_lookup(dentry); |
| 493 | if (IS_ERR(fid)) |
| 494 | return PTR_ERR(fid); |
| 495 | |
| 496 | /* Ask for all the fields in stat structure. Server will return |
| 497 | * whatever it supports |
| 498 | */ |
| 499 | |
| 500 | st = p9_client_getattr_dotl(fid, P9_STATS_ALL); |
| 501 | if (IS_ERR(st)) |
| 502 | return PTR_ERR(st); |
| 503 | |
| 504 | v9fs_stat2inode_dotl(st, dentry->d_inode); |
| 505 | generic_fillattr(dentry->d_inode, stat); |
| 506 | /* Change block size to what the server returned */ |
| 507 | stat->blksize = st->st_blksize; |
| 508 | |
| 509 | kfree(st); |
| 510 | return 0; |
| 511 | } |
| 512 | |
Aneesh Kumar K.V | f766619 | 2011-12-18 23:03:13 +0530 | [diff] [blame] | 513 | /* |
| 514 | * Attribute flags. |
| 515 | */ |
| 516 | #define P9_ATTR_MODE (1 << 0) |
| 517 | #define P9_ATTR_UID (1 << 1) |
| 518 | #define P9_ATTR_GID (1 << 2) |
| 519 | #define P9_ATTR_SIZE (1 << 3) |
| 520 | #define P9_ATTR_ATIME (1 << 4) |
| 521 | #define P9_ATTR_MTIME (1 << 5) |
| 522 | #define P9_ATTR_CTIME (1 << 6) |
| 523 | #define P9_ATTR_ATIME_SET (1 << 7) |
| 524 | #define P9_ATTR_MTIME_SET (1 << 8) |
| 525 | |
| 526 | struct dotl_iattr_map { |
| 527 | int iattr_valid; |
| 528 | int p9_iattr_valid; |
| 529 | }; |
| 530 | |
| 531 | static int v9fs_mapped_iattr_valid(int iattr_valid) |
| 532 | { |
| 533 | int i; |
| 534 | int p9_iattr_valid = 0; |
| 535 | struct dotl_iattr_map dotl_iattr_map[] = { |
| 536 | { ATTR_MODE, P9_ATTR_MODE }, |
| 537 | { ATTR_UID, P9_ATTR_UID }, |
| 538 | { ATTR_GID, P9_ATTR_GID }, |
| 539 | { ATTR_SIZE, P9_ATTR_SIZE }, |
| 540 | { ATTR_ATIME, P9_ATTR_ATIME }, |
| 541 | { ATTR_MTIME, P9_ATTR_MTIME }, |
| 542 | { ATTR_CTIME, P9_ATTR_CTIME }, |
| 543 | { ATTR_ATIME_SET, P9_ATTR_ATIME_SET }, |
| 544 | { ATTR_MTIME_SET, P9_ATTR_MTIME_SET }, |
| 545 | }; |
| 546 | for (i = 0; i < ARRAY_SIZE(dotl_iattr_map); i++) { |
| 547 | if (iattr_valid & dotl_iattr_map[i].iattr_valid) |
| 548 | p9_iattr_valid |= dotl_iattr_map[i].p9_iattr_valid; |
| 549 | } |
| 550 | return p9_iattr_valid; |
| 551 | } |
| 552 | |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 553 | /** |
| 554 | * v9fs_vfs_setattr_dotl - set file metadata |
| 555 | * @dentry: file whose metadata to set |
| 556 | * @iattr: metadata assignment structure |
| 557 | * |
| 558 | */ |
| 559 | |
| 560 | int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr) |
| 561 | { |
| 562 | int retval; |
| 563 | struct v9fs_session_info *v9ses; |
| 564 | struct p9_fid *fid; |
| 565 | struct p9_iattr_dotl p9attr; |
Al Viro | be308f0 | 2013-01-31 12:58:16 -0500 | [diff] [blame] | 566 | struct inode *inode = dentry->d_inode; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 567 | |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 568 | p9_debug(P9_DEBUG_VFS, "\n"); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 569 | |
Al Viro | be308f0 | 2013-01-31 12:58:16 -0500 | [diff] [blame] | 570 | retval = inode_change_ok(inode, iattr); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 571 | if (retval) |
| 572 | return retval; |
| 573 | |
Aneesh Kumar K.V | f766619 | 2011-12-18 23:03:13 +0530 | [diff] [blame] | 574 | p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 575 | p9attr.mode = iattr->ia_mode; |
| 576 | p9attr.uid = iattr->ia_uid; |
| 577 | p9attr.gid = iattr->ia_gid; |
| 578 | p9attr.size = iattr->ia_size; |
| 579 | p9attr.atime_sec = iattr->ia_atime.tv_sec; |
| 580 | p9attr.atime_nsec = iattr->ia_atime.tv_nsec; |
| 581 | p9attr.mtime_sec = iattr->ia_mtime.tv_sec; |
| 582 | p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec; |
| 583 | |
| 584 | retval = -EPERM; |
Aneesh Kumar K.V | 42869c8 | 2011-03-08 16:39:50 +0530 | [diff] [blame] | 585 | v9ses = v9fs_dentry2v9ses(dentry); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 586 | fid = v9fs_fid_lookup(dentry); |
| 587 | if (IS_ERR(fid)) |
| 588 | return PTR_ERR(fid); |
| 589 | |
Aneesh Kumar K.V | 3dc5436 | 2011-02-28 17:04:11 +0530 | [diff] [blame] | 590 | /* Write all dirty data */ |
Al Viro | be308f0 | 2013-01-31 12:58:16 -0500 | [diff] [blame] | 591 | if (S_ISREG(inode->i_mode)) |
| 592 | filemap_write_and_wait(inode->i_mapping); |
Aneesh Kumar K.V | 3dc5436 | 2011-02-28 17:04:11 +0530 | [diff] [blame] | 593 | |
Aneesh Kumar K.V | f10fc50 | 2011-02-28 17:04:10 +0530 | [diff] [blame] | 594 | retval = p9_client_setattr(fid, &p9attr); |
| 595 | if (retval < 0) |
| 596 | return retval; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 597 | |
Aneesh Kumar K.V | 059c138 | 2011-03-08 16:39:48 +0530 | [diff] [blame] | 598 | if ((iattr->ia_valid & ATTR_SIZE) && |
Al Viro | be308f0 | 2013-01-31 12:58:16 -0500 | [diff] [blame] | 599 | iattr->ia_size != i_size_read(inode)) |
| 600 | truncate_setsize(inode, iattr->ia_size); |
Aneesh Kumar K.V | 059c138 | 2011-03-08 16:39:48 +0530 | [diff] [blame] | 601 | |
Al Viro | be308f0 | 2013-01-31 12:58:16 -0500 | [diff] [blame] | 602 | v9fs_invalidate_inode_attr(inode); |
| 603 | setattr_copy(inode, iattr); |
| 604 | mark_inode_dirty(inode); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 605 | if (iattr->ia_valid & ATTR_MODE) { |
| 606 | /* We also want to update ACL when we update mode bits */ |
Al Viro | be308f0 | 2013-01-31 12:58:16 -0500 | [diff] [blame] | 607 | retval = v9fs_acl_chmod(inode, fid); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 608 | if (retval < 0) |
| 609 | return retval; |
| 610 | } |
| 611 | return 0; |
| 612 | } |
| 613 | |
| 614 | /** |
| 615 | * v9fs_stat2inode_dotl - populate an inode structure with stat info |
| 616 | * @stat: stat structure |
| 617 | * @inode: inode to populate |
| 618 | * @sb: superblock of filesystem |
| 619 | * |
| 620 | */ |
| 621 | |
| 622 | void |
| 623 | v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode) |
| 624 | { |
Al Viro | 3eda0de | 2011-07-26 02:53:22 -0400 | [diff] [blame] | 625 | umode_t mode; |
Aneesh Kumar K.V | b3cbea0 | 2011-02-28 17:04:06 +0530 | [diff] [blame] | 626 | struct v9fs_inode *v9inode = V9FS_I(inode); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 627 | |
| 628 | if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) { |
| 629 | inode->i_atime.tv_sec = stat->st_atime_sec; |
| 630 | inode->i_atime.tv_nsec = stat->st_atime_nsec; |
| 631 | inode->i_mtime.tv_sec = stat->st_mtime_sec; |
| 632 | inode->i_mtime.tv_nsec = stat->st_mtime_nsec; |
| 633 | inode->i_ctime.tv_sec = stat->st_ctime_sec; |
| 634 | inode->i_ctime.tv_nsec = stat->st_ctime_nsec; |
| 635 | inode->i_uid = stat->st_uid; |
| 636 | inode->i_gid = stat->st_gid; |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 637 | set_nlink(inode, stat->st_nlink); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 638 | |
Aneesh Kumar K.V | 4508914 | 2011-07-25 18:06:33 +0000 | [diff] [blame] | 639 | mode = stat->st_mode & S_IALLUGO; |
| 640 | mode |= inode->i_mode & ~S_IALLUGO; |
| 641 | inode->i_mode = mode; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 642 | |
| 643 | i_size_write(inode, stat->st_size); |
| 644 | inode->i_blocks = stat->st_blocks; |
| 645 | } else { |
| 646 | if (stat->st_result_mask & P9_STATS_ATIME) { |
| 647 | inode->i_atime.tv_sec = stat->st_atime_sec; |
| 648 | inode->i_atime.tv_nsec = stat->st_atime_nsec; |
| 649 | } |
| 650 | if (stat->st_result_mask & P9_STATS_MTIME) { |
| 651 | inode->i_mtime.tv_sec = stat->st_mtime_sec; |
| 652 | inode->i_mtime.tv_nsec = stat->st_mtime_nsec; |
| 653 | } |
| 654 | if (stat->st_result_mask & P9_STATS_CTIME) { |
| 655 | inode->i_ctime.tv_sec = stat->st_ctime_sec; |
| 656 | inode->i_ctime.tv_nsec = stat->st_ctime_nsec; |
| 657 | } |
| 658 | if (stat->st_result_mask & P9_STATS_UID) |
| 659 | inode->i_uid = stat->st_uid; |
| 660 | if (stat->st_result_mask & P9_STATS_GID) |
| 661 | inode->i_gid = stat->st_gid; |
| 662 | if (stat->st_result_mask & P9_STATS_NLINK) |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 663 | set_nlink(inode, stat->st_nlink); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 664 | if (stat->st_result_mask & P9_STATS_MODE) { |
| 665 | inode->i_mode = stat->st_mode; |
| 666 | if ((S_ISBLK(inode->i_mode)) || |
| 667 | (S_ISCHR(inode->i_mode))) |
| 668 | init_special_inode(inode, inode->i_mode, |
| 669 | inode->i_rdev); |
| 670 | } |
| 671 | if (stat->st_result_mask & P9_STATS_RDEV) |
| 672 | inode->i_rdev = new_decode_dev(stat->st_rdev); |
| 673 | if (stat->st_result_mask & P9_STATS_SIZE) |
| 674 | i_size_write(inode, stat->st_size); |
| 675 | if (stat->st_result_mask & P9_STATS_BLOCKS) |
| 676 | inode->i_blocks = stat->st_blocks; |
| 677 | } |
| 678 | if (stat->st_result_mask & P9_STATS_GEN) |
Aneesh Kumar K.V | fd2421f | 2011-07-11 16:40:59 +0000 | [diff] [blame] | 679 | inode->i_generation = stat->st_gen; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 680 | |
| 681 | /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION |
| 682 | * because the inode structure does not have fields for them. |
| 683 | */ |
Aneesh Kumar K.V | b3cbea0 | 2011-02-28 17:04:06 +0530 | [diff] [blame] | 684 | v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 685 | } |
| 686 | |
| 687 | static int |
| 688 | v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry, |
| 689 | const char *symname) |
| 690 | { |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 691 | int err; |
Eric W. Biederman | d4ef4e3 | 2013-01-30 12:08:21 -0800 | [diff] [blame] | 692 | kgid_t gid; |
Aneesh Kumar K.V | d28c61f | 2011-02-28 17:04:08 +0530 | [diff] [blame] | 693 | char *name; |
| 694 | struct p9_qid qid; |
| 695 | struct inode *inode; |
| 696 | struct p9_fid *dfid; |
| 697 | struct p9_fid *fid = NULL; |
| 698 | struct v9fs_session_info *v9ses; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 699 | |
| 700 | name = (char *) dentry->d_name.name; |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 701 | p9_debug(P9_DEBUG_VFS, "%lu,%s,%s\n", dir->i_ino, name, symname); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 702 | v9ses = v9fs_inode2v9ses(dir); |
| 703 | |
| 704 | dfid = v9fs_fid_lookup(dentry->d_parent); |
| 705 | if (IS_ERR(dfid)) { |
| 706 | err = PTR_ERR(dfid); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 707 | p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 708 | return err; |
| 709 | } |
| 710 | |
| 711 | gid = v9fs_get_fsgid_for_create(dir); |
| 712 | |
| 713 | /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */ |
| 714 | err = p9_client_symlink(dfid, name, (char *)symname, gid, &qid); |
| 715 | |
| 716 | if (err < 0) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 717 | p9_debug(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 718 | goto error; |
| 719 | } |
| 720 | |
Aneesh Kumar K.V | d28c61f | 2011-02-28 17:04:08 +0530 | [diff] [blame] | 721 | v9fs_invalidate_inode_attr(dir); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 722 | if (v9ses->cache) { |
| 723 | /* Now walk from the parent so we can get an unopened fid. */ |
| 724 | fid = p9_client_walk(dfid, 1, &name, 1); |
| 725 | if (IS_ERR(fid)) { |
| 726 | err = PTR_ERR(fid); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 727 | p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", |
| 728 | err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 729 | fid = NULL; |
| 730 | goto error; |
| 731 | } |
| 732 | |
| 733 | /* instantiate inode and assign the unopened fid to dentry */ |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 734 | inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 735 | if (IS_ERR(inode)) { |
| 736 | err = PTR_ERR(inode); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 737 | p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", |
| 738 | err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 739 | goto error; |
| 740 | } |
Al Viro | 2ea03e1d | 2013-02-28 01:18:14 -0500 | [diff] [blame] | 741 | v9fs_fid_add(dentry, fid); |
Aneesh Kumar K.V | 5441ae5 | 2011-07-25 18:06:32 +0000 | [diff] [blame] | 742 | d_instantiate(dentry, inode); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 743 | fid = NULL; |
Al Viro | 2ea03e1d | 2013-02-28 01:18:14 -0500 | [diff] [blame] | 744 | err = 0; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 745 | } else { |
| 746 | /* Not in cached mode. No need to populate inode with stat */ |
Aneesh Kumar K.V | 4508914 | 2011-07-25 18:06:33 +0000 | [diff] [blame] | 747 | inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 748 | if (IS_ERR(inode)) { |
| 749 | err = PTR_ERR(inode); |
| 750 | goto error; |
| 751 | } |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 752 | d_instantiate(dentry, inode); |
| 753 | } |
| 754 | |
| 755 | error: |
| 756 | if (fid) |
| 757 | p9_client_clunk(fid); |
| 758 | |
| 759 | return err; |
| 760 | } |
| 761 | |
| 762 | /** |
| 763 | * v9fs_vfs_link_dotl - create a hardlink for dotl |
| 764 | * @old_dentry: dentry for file to link to |
| 765 | * @dir: inode destination for new link |
| 766 | * @dentry: dentry for link |
| 767 | * |
| 768 | */ |
| 769 | |
| 770 | static int |
| 771 | v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir, |
| 772 | struct dentry *dentry) |
| 773 | { |
| 774 | int err; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 775 | char *name; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 776 | struct dentry *dir_dentry; |
Aneesh Kumar K.V | d28c61f | 2011-02-28 17:04:08 +0530 | [diff] [blame] | 777 | struct p9_fid *dfid, *oldfid; |
| 778 | struct v9fs_session_info *v9ses; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 779 | |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 780 | p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %s, new_name: %s\n", |
| 781 | dir->i_ino, old_dentry->d_name.name, dentry->d_name.name); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 782 | |
| 783 | v9ses = v9fs_inode2v9ses(dir); |
Al Viro | af56959 | 2012-04-02 20:02:53 -0400 | [diff] [blame] | 784 | dir_dentry = dentry->d_parent; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 785 | dfid = v9fs_fid_lookup(dir_dentry); |
| 786 | if (IS_ERR(dfid)) |
| 787 | return PTR_ERR(dfid); |
| 788 | |
| 789 | oldfid = v9fs_fid_lookup(old_dentry); |
| 790 | if (IS_ERR(oldfid)) |
| 791 | return PTR_ERR(oldfid); |
| 792 | |
| 793 | name = (char *) dentry->d_name.name; |
| 794 | |
| 795 | err = p9_client_link(dfid, oldfid, (char *)dentry->d_name.name); |
| 796 | |
| 797 | if (err < 0) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 798 | p9_debug(P9_DEBUG_VFS, "p9_client_link failed %d\n", err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 799 | return err; |
| 800 | } |
| 801 | |
Aneesh Kumar K.V | d28c61f | 2011-02-28 17:04:08 +0530 | [diff] [blame] | 802 | v9fs_invalidate_inode_attr(dir); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 803 | if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) { |
| 804 | /* Get the latest stat info from server. */ |
| 805 | struct p9_fid *fid; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 806 | fid = v9fs_fid_lookup(old_dentry); |
| 807 | if (IS_ERR(fid)) |
| 808 | return PTR_ERR(fid); |
| 809 | |
Aneesh Kumar K.V | c06c066 | 2011-02-28 17:04:09 +0530 | [diff] [blame] | 810 | v9fs_refresh_inode_dotl(fid, old_dentry->d_inode); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 811 | } |
Aneesh Kumar K.V | 20656a4 | 2011-02-28 17:03:55 +0530 | [diff] [blame] | 812 | ihold(old_dentry->d_inode); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 813 | d_instantiate(dentry, old_dentry->d_inode); |
| 814 | |
| 815 | return err; |
| 816 | } |
| 817 | |
| 818 | /** |
| 819 | * v9fs_vfs_mknod_dotl - create a special file |
| 820 | * @dir: inode destination for new link |
| 821 | * @dentry: dentry for file |
| 822 | * @mode: mode for creation |
| 823 | * @rdev: device associated with special file |
| 824 | * |
| 825 | */ |
| 826 | static int |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 827 | v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode, |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 828 | dev_t rdev) |
| 829 | { |
| 830 | int err; |
Eric W. Biederman | d4ef4e3 | 2013-01-30 12:08:21 -0800 | [diff] [blame] | 831 | kgid_t gid; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 832 | char *name; |
Al Viro | d3fb612 | 2011-07-23 18:37:50 -0400 | [diff] [blame] | 833 | umode_t mode; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 834 | struct v9fs_session_info *v9ses; |
| 835 | struct p9_fid *fid = NULL, *dfid = NULL; |
| 836 | struct inode *inode; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 837 | struct p9_qid qid; |
| 838 | struct dentry *dir_dentry; |
| 839 | struct posix_acl *dacl = NULL, *pacl = NULL; |
| 840 | |
Linus Torvalds | 609eac1 | 2012-01-10 15:09:01 -0800 | [diff] [blame] | 841 | p9_debug(P9_DEBUG_VFS, " %lu,%s mode: %hx MAJOR: %u MINOR: %u\n", |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 842 | dir->i_ino, dentry->d_name.name, omode, |
| 843 | MAJOR(rdev), MINOR(rdev)); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 844 | |
| 845 | if (!new_valid_dev(rdev)) |
| 846 | return -EINVAL; |
| 847 | |
| 848 | v9ses = v9fs_inode2v9ses(dir); |
Al Viro | af56959 | 2012-04-02 20:02:53 -0400 | [diff] [blame] | 849 | dir_dentry = dentry->d_parent; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 850 | dfid = v9fs_fid_lookup(dir_dentry); |
| 851 | if (IS_ERR(dfid)) { |
| 852 | err = PTR_ERR(dfid); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 853 | p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 854 | dfid = NULL; |
| 855 | goto error; |
| 856 | } |
| 857 | |
| 858 | gid = v9fs_get_fsgid_for_create(dir); |
| 859 | mode = omode; |
| 860 | /* Update mode based on ACL value */ |
| 861 | err = v9fs_acl_mode(dir, &mode, &dacl, &pacl); |
| 862 | if (err) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 863 | p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n", |
| 864 | err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 865 | goto error; |
| 866 | } |
| 867 | name = (char *) dentry->d_name.name; |
| 868 | |
| 869 | err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid); |
| 870 | if (err < 0) |
| 871 | goto error; |
| 872 | |
Aneesh Kumar K.V | d28c61f | 2011-02-28 17:04:08 +0530 | [diff] [blame] | 873 | v9fs_invalidate_inode_attr(dir); |
Al Viro | 3592ac4 | 2013-01-31 13:45:39 -0500 | [diff] [blame] | 874 | fid = p9_client_walk(dfid, 1, &name, 1); |
| 875 | if (IS_ERR(fid)) { |
| 876 | err = PTR_ERR(fid); |
| 877 | p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", |
| 878 | err); |
| 879 | fid = NULL; |
| 880 | goto error; |
| 881 | } |
| 882 | |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 883 | /* instantiate inode and assign the unopened fid to the dentry */ |
| 884 | if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) { |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 885 | inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 886 | if (IS_ERR(inode)) { |
| 887 | err = PTR_ERR(inode); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 888 | p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", |
| 889 | err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 890 | goto error; |
| 891 | } |
Al Viro | 3592ac4 | 2013-01-31 13:45:39 -0500 | [diff] [blame] | 892 | v9fs_set_create_acl(inode, fid, dacl, pacl); |
Al Viro | 2ea03e1d | 2013-02-28 01:18:14 -0500 | [diff] [blame] | 893 | v9fs_fid_add(dentry, fid); |
Aneesh Kumar K.V | 5441ae5 | 2011-07-25 18:06:32 +0000 | [diff] [blame] | 894 | d_instantiate(dentry, inode); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 895 | fid = NULL; |
Al Viro | 2ea03e1d | 2013-02-28 01:18:14 -0500 | [diff] [blame] | 896 | err = 0; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 897 | } else { |
| 898 | /* |
| 899 | * Not in cached mode. No need to populate inode with stat. |
| 900 | * socket syscall returns a fd, so we need instantiate |
| 901 | */ |
Aneesh Kumar K.V | 4508914 | 2011-07-25 18:06:33 +0000 | [diff] [blame] | 902 | inode = v9fs_get_inode(dir->i_sb, mode, rdev); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 903 | if (IS_ERR(inode)) { |
| 904 | err = PTR_ERR(inode); |
| 905 | goto error; |
| 906 | } |
Al Viro | 3592ac4 | 2013-01-31 13:45:39 -0500 | [diff] [blame] | 907 | v9fs_set_create_acl(inode, fid, dacl, pacl); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 908 | d_instantiate(dentry, inode); |
| 909 | } |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 910 | error: |
| 911 | if (fid) |
| 912 | p9_client_clunk(fid); |
Al Viro | 5fa6300 | 2013-01-31 13:31:23 -0500 | [diff] [blame] | 913 | v9fs_put_acl(dacl, pacl); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 914 | return err; |
| 915 | } |
| 916 | |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 917 | /** |
| 918 | * v9fs_vfs_follow_link_dotl - follow a symlink path |
| 919 | * @dentry: dentry for symlink |
| 920 | * @nd: nameidata |
| 921 | * |
| 922 | */ |
| 923 | |
| 924 | static void * |
| 925 | v9fs_vfs_follow_link_dotl(struct dentry *dentry, struct nameidata *nd) |
| 926 | { |
M. Mohan Kumar | 31b6cea | 2011-01-08 07:28:46 +0530 | [diff] [blame] | 927 | int retval; |
| 928 | struct p9_fid *fid; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 929 | char *link = __getname(); |
M. Mohan Kumar | 31b6cea | 2011-01-08 07:28:46 +0530 | [diff] [blame] | 930 | char *target; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 931 | |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 932 | p9_debug(P9_DEBUG_VFS, "%s\n", dentry->d_name.name); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 933 | |
M. Mohan Kumar | 31b6cea | 2011-01-08 07:28:46 +0530 | [diff] [blame] | 934 | if (!link) { |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 935 | link = ERR_PTR(-ENOMEM); |
M. Mohan Kumar | 31b6cea | 2011-01-08 07:28:46 +0530 | [diff] [blame] | 936 | goto ndset; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 937 | } |
M. Mohan Kumar | 31b6cea | 2011-01-08 07:28:46 +0530 | [diff] [blame] | 938 | fid = v9fs_fid_lookup(dentry); |
| 939 | if (IS_ERR(fid)) { |
| 940 | __putname(link); |
Aneesh Kumar K.V | 936bb2d | 2011-03-24 23:04:41 +0530 | [diff] [blame] | 941 | link = ERR_CAST(fid); |
M. Mohan Kumar | 31b6cea | 2011-01-08 07:28:46 +0530 | [diff] [blame] | 942 | goto ndset; |
| 943 | } |
| 944 | retval = p9_client_readlink(fid, &target); |
| 945 | if (!retval) { |
| 946 | strcpy(link, target); |
| 947 | kfree(target); |
| 948 | goto ndset; |
| 949 | } |
| 950 | __putname(link); |
| 951 | link = ERR_PTR(retval); |
| 952 | ndset: |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 953 | nd_set_link(nd, link); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 954 | return NULL; |
| 955 | } |
| 956 | |
Aneesh Kumar K.V | b3cbea0 | 2011-02-28 17:04:06 +0530 | [diff] [blame] | 957 | int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode) |
| 958 | { |
| 959 | loff_t i_size; |
| 960 | struct p9_stat_dotl *st; |
| 961 | struct v9fs_session_info *v9ses; |
| 962 | |
| 963 | v9ses = v9fs_inode2v9ses(inode); |
| 964 | st = p9_client_getattr_dotl(fid, P9_STATS_ALL); |
| 965 | if (IS_ERR(st)) |
| 966 | return PTR_ERR(st); |
Aneesh Kumar K.V | 4508914 | 2011-07-25 18:06:33 +0000 | [diff] [blame] | 967 | /* |
| 968 | * Don't update inode if the file type is different |
| 969 | */ |
| 970 | if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT)) |
| 971 | goto out; |
Aneesh Kumar K.V | b3cbea0 | 2011-02-28 17:04:06 +0530 | [diff] [blame] | 972 | |
| 973 | spin_lock(&inode->i_lock); |
| 974 | /* |
| 975 | * We don't want to refresh inode->i_size, |
| 976 | * because we may have cached data |
| 977 | */ |
| 978 | i_size = inode->i_size; |
| 979 | v9fs_stat2inode_dotl(st, inode); |
| 980 | if (v9ses->cache) |
| 981 | inode->i_size = i_size; |
| 982 | spin_unlock(&inode->i_lock); |
Aneesh Kumar K.V | 4508914 | 2011-07-25 18:06:33 +0000 | [diff] [blame] | 983 | out: |
Aneesh Kumar K.V | b3cbea0 | 2011-02-28 17:04:06 +0530 | [diff] [blame] | 984 | kfree(st); |
| 985 | return 0; |
| 986 | } |
| 987 | |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 988 | const struct inode_operations v9fs_dir_inode_operations_dotl = { |
| 989 | .create = v9fs_vfs_create_dotl, |
Miklos Szeredi | e43ae79 | 2012-06-05 15:10:26 +0200 | [diff] [blame] | 990 | .atomic_open = v9fs_vfs_atomic_open_dotl, |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 991 | .lookup = v9fs_vfs_lookup, |
| 992 | .link = v9fs_vfs_link_dotl, |
| 993 | .symlink = v9fs_vfs_symlink_dotl, |
| 994 | .unlink = v9fs_vfs_unlink, |
| 995 | .mkdir = v9fs_vfs_mkdir_dotl, |
| 996 | .rmdir = v9fs_vfs_rmdir, |
| 997 | .mknod = v9fs_vfs_mknod_dotl, |
| 998 | .rename = v9fs_vfs_rename, |
| 999 | .getattr = v9fs_vfs_getattr_dotl, |
| 1000 | .setattr = v9fs_vfs_setattr_dotl, |
| 1001 | .setxattr = generic_setxattr, |
| 1002 | .getxattr = generic_getxattr, |
| 1003 | .removexattr = generic_removexattr, |
| 1004 | .listxattr = v9fs_listxattr, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 1005 | .get_acl = v9fs_iop_get_acl, |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 1006 | }; |
| 1007 | |
| 1008 | const struct inode_operations v9fs_file_inode_operations_dotl = { |
| 1009 | .getattr = v9fs_vfs_getattr_dotl, |
| 1010 | .setattr = v9fs_vfs_setattr_dotl, |
| 1011 | .setxattr = generic_setxattr, |
| 1012 | .getxattr = generic_getxattr, |
| 1013 | .removexattr = generic_removexattr, |
| 1014 | .listxattr = v9fs_listxattr, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 1015 | .get_acl = v9fs_iop_get_acl, |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 1016 | }; |
| 1017 | |
| 1018 | const struct inode_operations v9fs_symlink_inode_operations_dotl = { |
M. Mohan Kumar | 31b6cea | 2011-01-08 07:28:46 +0530 | [diff] [blame] | 1019 | .readlink = generic_readlink, |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 1020 | .follow_link = v9fs_vfs_follow_link_dotl, |
| 1021 | .put_link = v9fs_vfs_put_link, |
| 1022 | .getattr = v9fs_vfs_getattr_dotl, |
| 1023 | .setattr = v9fs_vfs_setattr_dotl, |
| 1024 | .setxattr = generic_setxattr, |
| 1025 | .getxattr = generic_getxattr, |
| 1026 | .removexattr = generic_removexattr, |
| 1027 | .listxattr = v9fs_listxattr, |
| 1028 | }; |