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; |
Tuomas Tynkkynen | bccfffd | 2017-09-06 17:59:07 +0300 | [diff] [blame] | 90 | |
| 91 | if (v9inode->qid.path != st->qid.path) |
| 92 | return 0; |
Aneesh Kumar K.V | fd2421f | 2011-07-11 16:40:59 +0000 | [diff] [blame] | 93 | return 1; |
| 94 | } |
| 95 | |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 96 | /* Always get a new inode */ |
| 97 | static int v9fs_test_new_inode_dotl(struct inode *inode, void *data) |
| 98 | { |
| 99 | return 0; |
| 100 | } |
| 101 | |
Aneesh Kumar K.V | fd2421f | 2011-07-11 16:40:59 +0000 | [diff] [blame] | 102 | static int v9fs_set_inode_dotl(struct inode *inode, void *data) |
| 103 | { |
| 104 | struct v9fs_inode *v9inode = V9FS_I(inode); |
| 105 | struct p9_stat_dotl *st = (struct p9_stat_dotl *)data; |
| 106 | |
| 107 | memcpy(&v9inode->qid, &st->qid, sizeof(st->qid)); |
| 108 | inode->i_generation = st->st_gen; |
| 109 | return 0; |
| 110 | } |
| 111 | |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 112 | static struct inode *v9fs_qid_iget_dotl(struct super_block *sb, |
| 113 | struct p9_qid *qid, |
| 114 | struct p9_fid *fid, |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 115 | struct p9_stat_dotl *st, |
| 116 | int new) |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 117 | { |
| 118 | int retval; |
| 119 | unsigned long i_ino; |
| 120 | struct inode *inode; |
| 121 | struct v9fs_session_info *v9ses = sb->s_fs_info; |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 122 | int (*test)(struct inode *, void *); |
| 123 | |
| 124 | if (new) |
| 125 | test = v9fs_test_new_inode_dotl; |
| 126 | else |
| 127 | test = v9fs_test_inode_dotl; |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 128 | |
| 129 | i_ino = v9fs_qid2ino(qid); |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 130 | 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] | 131 | if (!inode) |
| 132 | return ERR_PTR(-ENOMEM); |
| 133 | if (!(inode->i_state & I_NEW)) |
| 134 | return inode; |
| 135 | /* |
| 136 | * initialize the inode with the stat info |
| 137 | * FIXME!! we may need support for stale inodes |
| 138 | * later. |
| 139 | */ |
Aneesh Kumar K.V | fd2421f | 2011-07-11 16:40:59 +0000 | [diff] [blame] | 140 | inode->i_ino = i_ino; |
Aneesh Kumar K.V | 4508914 | 2011-07-25 18:06:33 +0000 | [diff] [blame] | 141 | retval = v9fs_init_inode(v9ses, inode, |
| 142 | st->st_mode, new_decode_dev(st->st_rdev)); |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 143 | if (retval) |
| 144 | goto error; |
| 145 | |
| 146 | v9fs_stat2inode_dotl(st, inode); |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 147 | v9fs_cache_inode_get_cookie(inode); |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 148 | retval = v9fs_get_acl(inode, fid); |
| 149 | if (retval) |
| 150 | goto error; |
| 151 | |
| 152 | unlock_new_inode(inode); |
| 153 | return inode; |
| 154 | error: |
Al Viro | 0a73d0a | 2015-07-12 10:34:29 -0400 | [diff] [blame] | 155 | iget_failed(inode); |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 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 |
Fabian Frederick | fd2916b | 2014-06-04 16:06:26 -0700 | [diff] [blame] | 231 | * @omode: 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 | |
Al Viro | 00699ad | 2016-07-05 09:44:53 -0400 | [diff] [blame] | 260 | if (d_in_lookup(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 */ |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 270 | if (!(flags & O_CREAT) || d_really_is_positive(dentry)) |
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 | |
Al Viro | 77d5a6b | 2016-05-29 15:29:26 -0400 | [diff] [blame] | 279 | dfid = v9fs_parent_fid(dentry); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 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 */ |
Al Viro | 7d50a29 | 2016-08-03 11:12:12 -0400 | [diff] [blame] | 287 | ofid = clone_fid(dfid); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 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); |
Dominique Martinet | fb89b45 | 2014-01-10 13:44:09 +0100 | [diff] [blame] | 335 | if ((v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) && |
| 336 | !v9inode->writeback_fid && |
Aneesh Kumar K.V | 7add697 | 2011-03-08 16:39:49 +0530 | [diff] [blame] | 337 | ((flags & O_ACCMODE) != O_RDONLY)) { |
Aneesh Kumar K.V | 3cf387d | 2011-02-28 17:03:57 +0530 | [diff] [blame] | 338 | /* |
Aneesh Kumar K.V | 6b39f6d | 2011-02-28 17:04:03 +0530 | [diff] [blame] | 339 | * clone a fid and add it to writeback_fid |
Aneesh Kumar K.V | 3cf387d | 2011-02-28 17:03:57 +0530 | [diff] [blame] | 340 | * we do it during open time instead of |
| 341 | * page dirty time via write_begin/page_mkwrite |
| 342 | * because we want write after unlink usecase |
| 343 | * to work. |
| 344 | */ |
| 345 | inode_fid = v9fs_writeback_fid(dentry); |
| 346 | if (IS_ERR(inode_fid)) { |
| 347 | err = PTR_ERR(inode_fid); |
Aneesh Kumar K.V | 5a7e0a8 | 2011-03-08 16:39:46 +0530 | [diff] [blame] | 348 | mutex_unlock(&v9inode->v_mutex); |
Aneesh Kumar K.V | 398c4f0 | 2011-05-20 18:55:51 +0000 | [diff] [blame] | 349 | goto err_clunk_old_fid; |
Aneesh Kumar K.V | 3cf387d | 2011-02-28 17:03:57 +0530 | [diff] [blame] | 350 | } |
Aneesh Kumar K.V | 6b39f6d | 2011-02-28 17:04:03 +0530 | [diff] [blame] | 351 | v9inode->writeback_fid = (void *) inode_fid; |
Aneesh Kumar K.V | 3cf387d | 2011-02-28 17:03:57 +0530 | [diff] [blame] | 352 | } |
Aneesh Kumar K.V | 5a7e0a8 | 2011-03-08 16:39:46 +0530 | [diff] [blame] | 353 | mutex_unlock(&v9inode->v_mutex); |
Aneesh Kumar K.V | af7542f | 2011-01-10 14:22:21 -0600 | [diff] [blame] | 354 | /* 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] | 355 | err = finish_open(file, dentry, generic_file_open, opened); |
| 356 | if (err) |
Aneesh Kumar K.V | 398c4f0 | 2011-05-20 18:55:51 +0000 | [diff] [blame] | 357 | goto err_clunk_old_fid; |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 358 | file->private_data = ofid; |
Dominique Martinet | fb89b45 | 2014-01-10 13:44:09 +0100 | [diff] [blame] | 359 | if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 360 | v9fs_cache_inode_set_cookie(inode, file); |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 361 | *opened |= FILE_CREATED; |
Miklos Szeredi | e43ae79 | 2012-06-05 15:10:26 +0200 | [diff] [blame] | 362 | out: |
Al Viro | 5fa6300 | 2013-01-31 13:31:23 -0500 | [diff] [blame] | 363 | v9fs_put_acl(dacl, pacl); |
Miklos Szeredi | e43ae79 | 2012-06-05 15:10:26 +0200 | [diff] [blame] | 364 | dput(res); |
Al Viro | d958527 | 2012-06-22 12:39:14 +0400 | [diff] [blame] | 365 | return err; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 366 | |
| 367 | error: |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 368 | if (fid) |
| 369 | p9_client_clunk(fid); |
Aneesh Kumar K.V | 398c4f0 | 2011-05-20 18:55:51 +0000 | [diff] [blame] | 370 | err_clunk_old_fid: |
| 371 | if (ofid) |
| 372 | p9_client_clunk(ofid); |
Miklos Szeredi | e43ae79 | 2012-06-05 15:10:26 +0200 | [diff] [blame] | 373 | goto out; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | /** |
| 377 | * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory |
| 378 | * @dir: inode that is being unlinked |
| 379 | * @dentry: dentry that is being unlinked |
Fabian Frederick | fd2916b | 2014-06-04 16:06:26 -0700 | [diff] [blame] | 380 | * @omode: mode for new directory |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 381 | * |
| 382 | */ |
| 383 | |
| 384 | static int v9fs_vfs_mkdir_dotl(struct inode *dir, |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 385 | struct dentry *dentry, umode_t omode) |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 386 | { |
| 387 | int err; |
| 388 | struct v9fs_session_info *v9ses; |
| 389 | struct p9_fid *fid = NULL, *dfid = NULL; |
Eric W. Biederman | d4ef4e3 | 2013-01-30 12:08:21 -0800 | [diff] [blame] | 390 | kgid_t gid; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 391 | char *name; |
Al Viro | d3fb612 | 2011-07-23 18:37:50 -0400 | [diff] [blame] | 392 | umode_t mode; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 393 | struct inode *inode; |
| 394 | struct p9_qid qid; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 395 | struct posix_acl *dacl = NULL, *pacl = NULL; |
| 396 | |
Al Viro | 4b8e992 | 2014-08-19 20:17:38 -0400 | [diff] [blame] | 397 | p9_debug(P9_DEBUG_VFS, "name %pd\n", dentry); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 398 | err = 0; |
| 399 | v9ses = v9fs_inode2v9ses(dir); |
| 400 | |
| 401 | omode |= S_IFDIR; |
| 402 | if (dir->i_mode & S_ISGID) |
| 403 | omode |= S_ISGID; |
| 404 | |
Al Viro | 77d5a6b | 2016-05-29 15:29:26 -0400 | [diff] [blame] | 405 | dfid = v9fs_parent_fid(dentry); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 406 | if (IS_ERR(dfid)) { |
| 407 | err = PTR_ERR(dfid); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 408 | 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] | 409 | dfid = NULL; |
| 410 | goto error; |
| 411 | } |
| 412 | |
| 413 | gid = v9fs_get_fsgid_for_create(dir); |
| 414 | mode = omode; |
| 415 | /* Update mode based on ACL value */ |
| 416 | err = v9fs_acl_mode(dir, &mode, &dacl, &pacl); |
| 417 | if (err) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 418 | p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n", |
| 419 | err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 420 | goto error; |
| 421 | } |
| 422 | name = (char *) dentry->d_name.name; |
| 423 | err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid); |
| 424 | if (err < 0) |
| 425 | goto error; |
| 426 | |
Al Viro | 3592ac4 | 2013-01-31 13:45:39 -0500 | [diff] [blame] | 427 | fid = p9_client_walk(dfid, 1, &name, 1); |
| 428 | if (IS_ERR(fid)) { |
| 429 | err = PTR_ERR(fid); |
| 430 | p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", |
| 431 | err); |
| 432 | fid = NULL; |
| 433 | goto error; |
| 434 | } |
| 435 | |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 436 | /* instantiate inode and assign the unopened fid to the dentry */ |
| 437 | if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) { |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 438 | 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] | 439 | if (IS_ERR(inode)) { |
| 440 | err = PTR_ERR(inode); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 441 | p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", |
| 442 | err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 443 | goto error; |
| 444 | } |
Al Viro | 2ea03e1d | 2013-02-28 01:18:14 -0500 | [diff] [blame] | 445 | v9fs_fid_add(dentry, fid); |
Al Viro | 3592ac4 | 2013-01-31 13:45:39 -0500 | [diff] [blame] | 446 | v9fs_set_create_acl(inode, fid, dacl, pacl); |
Aneesh Kumar K.V | 5441ae5 | 2011-07-25 18:06:32 +0000 | [diff] [blame] | 447 | d_instantiate(dentry, inode); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 448 | fid = NULL; |
Al Viro | 2ea03e1d | 2013-02-28 01:18:14 -0500 | [diff] [blame] | 449 | err = 0; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 450 | } else { |
| 451 | /* |
| 452 | * Not in cached mode. No need to populate |
| 453 | * inode with stat. We need to get an inode |
| 454 | * so that we can set the acl with dentry |
| 455 | */ |
Aneesh Kumar K.V | 4508914 | 2011-07-25 18:06:33 +0000 | [diff] [blame] | 456 | inode = v9fs_get_inode(dir->i_sb, mode, 0); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 457 | if (IS_ERR(inode)) { |
| 458 | err = PTR_ERR(inode); |
| 459 | goto error; |
| 460 | } |
Al Viro | 3592ac4 | 2013-01-31 13:45:39 -0500 | [diff] [blame] | 461 | v9fs_set_create_acl(inode, fid, dacl, pacl); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 462 | d_instantiate(dentry, inode); |
| 463 | } |
Aneesh Kumar K.V | b271ec4 | 2011-02-28 17:04:05 +0530 | [diff] [blame] | 464 | inc_nlink(dir); |
Aneesh Kumar K.V | d28c61f | 2011-02-28 17:04:08 +0530 | [diff] [blame] | 465 | v9fs_invalidate_inode_attr(dir); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 466 | error: |
| 467 | if (fid) |
| 468 | p9_client_clunk(fid); |
Al Viro | 5fa6300 | 2013-01-31 13:31:23 -0500 | [diff] [blame] | 469 | v9fs_put_acl(dacl, pacl); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 470 | return err; |
| 471 | } |
| 472 | |
| 473 | static int |
| 474 | v9fs_vfs_getattr_dotl(struct vfsmount *mnt, struct dentry *dentry, |
| 475 | struct kstat *stat) |
| 476 | { |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 477 | struct v9fs_session_info *v9ses; |
| 478 | struct p9_fid *fid; |
| 479 | struct p9_stat_dotl *st; |
| 480 | |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 481 | p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry); |
Aneesh Kumar K.V | 42869c8 | 2011-03-08 16:39:50 +0530 | [diff] [blame] | 482 | v9ses = v9fs_dentry2v9ses(dentry); |
Aneesh Kumar K.V | a121190 | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 483 | if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 484 | generic_fillattr(d_inode(dentry), stat); |
Aneesh Kumar K.V | a121190 | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 485 | return 0; |
| 486 | } |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 487 | fid = v9fs_fid_lookup(dentry); |
| 488 | if (IS_ERR(fid)) |
| 489 | return PTR_ERR(fid); |
| 490 | |
| 491 | /* Ask for all the fields in stat structure. Server will return |
| 492 | * whatever it supports |
| 493 | */ |
| 494 | |
| 495 | st = p9_client_getattr_dotl(fid, P9_STATS_ALL); |
| 496 | if (IS_ERR(st)) |
| 497 | return PTR_ERR(st); |
| 498 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 499 | v9fs_stat2inode_dotl(st, d_inode(dentry)); |
| 500 | generic_fillattr(d_inode(dentry), stat); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 501 | /* Change block size to what the server returned */ |
| 502 | stat->blksize = st->st_blksize; |
| 503 | |
| 504 | kfree(st); |
| 505 | return 0; |
| 506 | } |
| 507 | |
Aneesh Kumar K.V | f766619 | 2011-12-18 23:03:13 +0530 | [diff] [blame] | 508 | /* |
| 509 | * Attribute flags. |
| 510 | */ |
| 511 | #define P9_ATTR_MODE (1 << 0) |
| 512 | #define P9_ATTR_UID (1 << 1) |
| 513 | #define P9_ATTR_GID (1 << 2) |
| 514 | #define P9_ATTR_SIZE (1 << 3) |
| 515 | #define P9_ATTR_ATIME (1 << 4) |
| 516 | #define P9_ATTR_MTIME (1 << 5) |
| 517 | #define P9_ATTR_CTIME (1 << 6) |
| 518 | #define P9_ATTR_ATIME_SET (1 << 7) |
| 519 | #define P9_ATTR_MTIME_SET (1 << 8) |
| 520 | |
| 521 | struct dotl_iattr_map { |
| 522 | int iattr_valid; |
| 523 | int p9_iattr_valid; |
| 524 | }; |
| 525 | |
| 526 | static int v9fs_mapped_iattr_valid(int iattr_valid) |
| 527 | { |
| 528 | int i; |
| 529 | int p9_iattr_valid = 0; |
| 530 | struct dotl_iattr_map dotl_iattr_map[] = { |
| 531 | { ATTR_MODE, P9_ATTR_MODE }, |
| 532 | { ATTR_UID, P9_ATTR_UID }, |
| 533 | { ATTR_GID, P9_ATTR_GID }, |
| 534 | { ATTR_SIZE, P9_ATTR_SIZE }, |
| 535 | { ATTR_ATIME, P9_ATTR_ATIME }, |
| 536 | { ATTR_MTIME, P9_ATTR_MTIME }, |
| 537 | { ATTR_CTIME, P9_ATTR_CTIME }, |
| 538 | { ATTR_ATIME_SET, P9_ATTR_ATIME_SET }, |
| 539 | { ATTR_MTIME_SET, P9_ATTR_MTIME_SET }, |
| 540 | }; |
| 541 | for (i = 0; i < ARRAY_SIZE(dotl_iattr_map); i++) { |
| 542 | if (iattr_valid & dotl_iattr_map[i].iattr_valid) |
| 543 | p9_iattr_valid |= dotl_iattr_map[i].p9_iattr_valid; |
| 544 | } |
| 545 | return p9_iattr_valid; |
| 546 | } |
| 547 | |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 548 | /** |
| 549 | * v9fs_vfs_setattr_dotl - set file metadata |
| 550 | * @dentry: file whose metadata to set |
| 551 | * @iattr: metadata assignment structure |
| 552 | * |
| 553 | */ |
| 554 | |
| 555 | int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr) |
| 556 | { |
| 557 | int retval; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 558 | struct p9_fid *fid; |
| 559 | struct p9_iattr_dotl p9attr; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 560 | struct inode *inode = d_inode(dentry); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 561 | |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 562 | p9_debug(P9_DEBUG_VFS, "\n"); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 563 | |
Jan Kara | 31051c8 | 2016-05-26 16:55:18 +0200 | [diff] [blame] | 564 | retval = setattr_prepare(dentry, iattr); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 565 | if (retval) |
| 566 | return retval; |
| 567 | |
Aneesh Kumar K.V | f766619 | 2011-12-18 23:03:13 +0530 | [diff] [blame] | 568 | p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 569 | p9attr.mode = iattr->ia_mode; |
| 570 | p9attr.uid = iattr->ia_uid; |
| 571 | p9attr.gid = iattr->ia_gid; |
| 572 | p9attr.size = iattr->ia_size; |
| 573 | p9attr.atime_sec = iattr->ia_atime.tv_sec; |
| 574 | p9attr.atime_nsec = iattr->ia_atime.tv_nsec; |
| 575 | p9attr.mtime_sec = iattr->ia_mtime.tv_sec; |
| 576 | p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec; |
| 577 | |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 578 | fid = v9fs_fid_lookup(dentry); |
| 579 | if (IS_ERR(fid)) |
| 580 | return PTR_ERR(fid); |
| 581 | |
Aneesh Kumar K.V | 3dc5436 | 2011-02-28 17:04:11 +0530 | [diff] [blame] | 582 | /* Write all dirty data */ |
Al Viro | be308f0 | 2013-01-31 12:58:16 -0500 | [diff] [blame] | 583 | if (S_ISREG(inode->i_mode)) |
| 584 | filemap_write_and_wait(inode->i_mapping); |
Aneesh Kumar K.V | 3dc5436 | 2011-02-28 17:04:11 +0530 | [diff] [blame] | 585 | |
Aneesh Kumar K.V | f10fc50 | 2011-02-28 17:04:10 +0530 | [diff] [blame] | 586 | retval = p9_client_setattr(fid, &p9attr); |
| 587 | if (retval < 0) |
| 588 | return retval; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 589 | |
Aneesh Kumar K.V | 059c138 | 2011-03-08 16:39:48 +0530 | [diff] [blame] | 590 | if ((iattr->ia_valid & ATTR_SIZE) && |
Al Viro | be308f0 | 2013-01-31 12:58:16 -0500 | [diff] [blame] | 591 | iattr->ia_size != i_size_read(inode)) |
| 592 | truncate_setsize(inode, iattr->ia_size); |
Aneesh Kumar K.V | 059c138 | 2011-03-08 16:39:48 +0530 | [diff] [blame] | 593 | |
Al Viro | be308f0 | 2013-01-31 12:58:16 -0500 | [diff] [blame] | 594 | v9fs_invalidate_inode_attr(inode); |
| 595 | setattr_copy(inode, iattr); |
| 596 | mark_inode_dirty(inode); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 597 | if (iattr->ia_valid & ATTR_MODE) { |
| 598 | /* We also want to update ACL when we update mode bits */ |
Al Viro | be308f0 | 2013-01-31 12:58:16 -0500 | [diff] [blame] | 599 | retval = v9fs_acl_chmod(inode, fid); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 600 | if (retval < 0) |
| 601 | return retval; |
| 602 | } |
| 603 | return 0; |
| 604 | } |
| 605 | |
| 606 | /** |
| 607 | * v9fs_stat2inode_dotl - populate an inode structure with stat info |
| 608 | * @stat: stat structure |
| 609 | * @inode: inode to populate |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 610 | * |
| 611 | */ |
| 612 | |
| 613 | void |
| 614 | v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode) |
| 615 | { |
Al Viro | 3eda0de | 2011-07-26 02:53:22 -0400 | [diff] [blame] | 616 | umode_t mode; |
Aneesh Kumar K.V | b3cbea0 | 2011-02-28 17:04:06 +0530 | [diff] [blame] | 617 | struct v9fs_inode *v9inode = V9FS_I(inode); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 618 | |
| 619 | if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) { |
| 620 | inode->i_atime.tv_sec = stat->st_atime_sec; |
| 621 | inode->i_atime.tv_nsec = stat->st_atime_nsec; |
| 622 | inode->i_mtime.tv_sec = stat->st_mtime_sec; |
| 623 | inode->i_mtime.tv_nsec = stat->st_mtime_nsec; |
| 624 | inode->i_ctime.tv_sec = stat->st_ctime_sec; |
| 625 | inode->i_ctime.tv_nsec = stat->st_ctime_nsec; |
| 626 | inode->i_uid = stat->st_uid; |
| 627 | inode->i_gid = stat->st_gid; |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 628 | set_nlink(inode, stat->st_nlink); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 629 | |
Aneesh Kumar K.V | 4508914 | 2011-07-25 18:06:33 +0000 | [diff] [blame] | 630 | mode = stat->st_mode & S_IALLUGO; |
| 631 | mode |= inode->i_mode & ~S_IALLUGO; |
| 632 | inode->i_mode = mode; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 633 | |
| 634 | i_size_write(inode, stat->st_size); |
| 635 | inode->i_blocks = stat->st_blocks; |
| 636 | } else { |
| 637 | if (stat->st_result_mask & P9_STATS_ATIME) { |
| 638 | inode->i_atime.tv_sec = stat->st_atime_sec; |
| 639 | inode->i_atime.tv_nsec = stat->st_atime_nsec; |
| 640 | } |
| 641 | if (stat->st_result_mask & P9_STATS_MTIME) { |
| 642 | inode->i_mtime.tv_sec = stat->st_mtime_sec; |
| 643 | inode->i_mtime.tv_nsec = stat->st_mtime_nsec; |
| 644 | } |
| 645 | if (stat->st_result_mask & P9_STATS_CTIME) { |
| 646 | inode->i_ctime.tv_sec = stat->st_ctime_sec; |
| 647 | inode->i_ctime.tv_nsec = stat->st_ctime_nsec; |
| 648 | } |
| 649 | if (stat->st_result_mask & P9_STATS_UID) |
| 650 | inode->i_uid = stat->st_uid; |
| 651 | if (stat->st_result_mask & P9_STATS_GID) |
| 652 | inode->i_gid = stat->st_gid; |
| 653 | if (stat->st_result_mask & P9_STATS_NLINK) |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 654 | set_nlink(inode, stat->st_nlink); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 655 | if (stat->st_result_mask & P9_STATS_MODE) { |
| 656 | inode->i_mode = stat->st_mode; |
| 657 | if ((S_ISBLK(inode->i_mode)) || |
| 658 | (S_ISCHR(inode->i_mode))) |
| 659 | init_special_inode(inode, inode->i_mode, |
| 660 | inode->i_rdev); |
| 661 | } |
| 662 | if (stat->st_result_mask & P9_STATS_RDEV) |
| 663 | inode->i_rdev = new_decode_dev(stat->st_rdev); |
| 664 | if (stat->st_result_mask & P9_STATS_SIZE) |
| 665 | i_size_write(inode, stat->st_size); |
| 666 | if (stat->st_result_mask & P9_STATS_BLOCKS) |
| 667 | inode->i_blocks = stat->st_blocks; |
| 668 | } |
| 669 | if (stat->st_result_mask & P9_STATS_GEN) |
Aneesh Kumar K.V | fd2421f | 2011-07-11 16:40:59 +0000 | [diff] [blame] | 670 | inode->i_generation = stat->st_gen; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 671 | |
| 672 | /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION |
| 673 | * because the inode structure does not have fields for them. |
| 674 | */ |
Aneesh Kumar K.V | b3cbea0 | 2011-02-28 17:04:06 +0530 | [diff] [blame] | 675 | v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 676 | } |
| 677 | |
| 678 | static int |
| 679 | v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry, |
| 680 | const char *symname) |
| 681 | { |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 682 | int err; |
Eric W. Biederman | d4ef4e3 | 2013-01-30 12:08:21 -0800 | [diff] [blame] | 683 | kgid_t gid; |
Aneesh Kumar K.V | d28c61f | 2011-02-28 17:04:08 +0530 | [diff] [blame] | 684 | char *name; |
| 685 | struct p9_qid qid; |
| 686 | struct inode *inode; |
| 687 | struct p9_fid *dfid; |
| 688 | struct p9_fid *fid = NULL; |
| 689 | struct v9fs_session_info *v9ses; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 690 | |
| 691 | name = (char *) dentry->d_name.name; |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 692 | 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] | 693 | v9ses = v9fs_inode2v9ses(dir); |
| 694 | |
Al Viro | 77d5a6b | 2016-05-29 15:29:26 -0400 | [diff] [blame] | 695 | dfid = v9fs_parent_fid(dentry); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 696 | if (IS_ERR(dfid)) { |
| 697 | err = PTR_ERR(dfid); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 698 | 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] | 699 | return err; |
| 700 | } |
| 701 | |
| 702 | gid = v9fs_get_fsgid_for_create(dir); |
| 703 | |
| 704 | /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */ |
| 705 | err = p9_client_symlink(dfid, name, (char *)symname, gid, &qid); |
| 706 | |
| 707 | if (err < 0) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 708 | 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] | 709 | goto error; |
| 710 | } |
| 711 | |
Aneesh Kumar K.V | d28c61f | 2011-02-28 17:04:08 +0530 | [diff] [blame] | 712 | v9fs_invalidate_inode_attr(dir); |
Dominique Martinet | fb89b45 | 2014-01-10 13:44:09 +0100 | [diff] [blame] | 713 | if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) { |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 714 | /* Now walk from the parent so we can get an unopened fid. */ |
| 715 | fid = p9_client_walk(dfid, 1, &name, 1); |
| 716 | if (IS_ERR(fid)) { |
| 717 | err = PTR_ERR(fid); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 718 | p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", |
| 719 | err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 720 | fid = NULL; |
| 721 | goto error; |
| 722 | } |
| 723 | |
| 724 | /* instantiate inode and assign the unopened fid to dentry */ |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 725 | 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] | 726 | if (IS_ERR(inode)) { |
| 727 | err = PTR_ERR(inode); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 728 | p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", |
| 729 | err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 730 | goto error; |
| 731 | } |
Al Viro | 2ea03e1d | 2013-02-28 01:18:14 -0500 | [diff] [blame] | 732 | v9fs_fid_add(dentry, fid); |
Aneesh Kumar K.V | 5441ae5 | 2011-07-25 18:06:32 +0000 | [diff] [blame] | 733 | d_instantiate(dentry, inode); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 734 | fid = NULL; |
Al Viro | 2ea03e1d | 2013-02-28 01:18:14 -0500 | [diff] [blame] | 735 | err = 0; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 736 | } else { |
| 737 | /* 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] | 738 | inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 739 | if (IS_ERR(inode)) { |
| 740 | err = PTR_ERR(inode); |
| 741 | goto error; |
| 742 | } |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 743 | d_instantiate(dentry, inode); |
| 744 | } |
| 745 | |
| 746 | error: |
| 747 | if (fid) |
| 748 | p9_client_clunk(fid); |
| 749 | |
| 750 | return err; |
| 751 | } |
| 752 | |
| 753 | /** |
| 754 | * v9fs_vfs_link_dotl - create a hardlink for dotl |
| 755 | * @old_dentry: dentry for file to link to |
| 756 | * @dir: inode destination for new link |
| 757 | * @dentry: dentry for link |
| 758 | * |
| 759 | */ |
| 760 | |
| 761 | static int |
| 762 | v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir, |
| 763 | struct dentry *dentry) |
| 764 | { |
| 765 | int err; |
Aneesh Kumar K.V | d28c61f | 2011-02-28 17:04:08 +0530 | [diff] [blame] | 766 | struct p9_fid *dfid, *oldfid; |
| 767 | struct v9fs_session_info *v9ses; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 768 | |
Al Viro | 4b8e992 | 2014-08-19 20:17:38 -0400 | [diff] [blame] | 769 | p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %pd, new_name: %pd\n", |
| 770 | dir->i_ino, old_dentry, dentry); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 771 | |
| 772 | v9ses = v9fs_inode2v9ses(dir); |
Al Viro | 77d5a6b | 2016-05-29 15:29:26 -0400 | [diff] [blame] | 773 | dfid = v9fs_parent_fid(dentry); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 774 | if (IS_ERR(dfid)) |
| 775 | return PTR_ERR(dfid); |
| 776 | |
| 777 | oldfid = v9fs_fid_lookup(old_dentry); |
| 778 | if (IS_ERR(oldfid)) |
| 779 | return PTR_ERR(oldfid); |
| 780 | |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 781 | err = p9_client_link(dfid, oldfid, (char *)dentry->d_name.name); |
| 782 | |
| 783 | if (err < 0) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 784 | 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] | 785 | return err; |
| 786 | } |
| 787 | |
Aneesh Kumar K.V | d28c61f | 2011-02-28 17:04:08 +0530 | [diff] [blame] | 788 | v9fs_invalidate_inode_attr(dir); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 789 | if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) { |
| 790 | /* Get the latest stat info from server. */ |
| 791 | struct p9_fid *fid; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 792 | fid = v9fs_fid_lookup(old_dentry); |
| 793 | if (IS_ERR(fid)) |
| 794 | return PTR_ERR(fid); |
| 795 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 796 | v9fs_refresh_inode_dotl(fid, d_inode(old_dentry)); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 797 | } |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 798 | ihold(d_inode(old_dentry)); |
| 799 | d_instantiate(dentry, d_inode(old_dentry)); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 800 | |
| 801 | return err; |
| 802 | } |
| 803 | |
| 804 | /** |
| 805 | * v9fs_vfs_mknod_dotl - create a special file |
| 806 | * @dir: inode destination for new link |
| 807 | * @dentry: dentry for file |
Fabian Frederick | fd2916b | 2014-06-04 16:06:26 -0700 | [diff] [blame] | 808 | * @omode: mode for creation |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 809 | * @rdev: device associated with special file |
| 810 | * |
| 811 | */ |
| 812 | static int |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 813 | 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] | 814 | dev_t rdev) |
| 815 | { |
| 816 | int err; |
Eric W. Biederman | d4ef4e3 | 2013-01-30 12:08:21 -0800 | [diff] [blame] | 817 | kgid_t gid; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 818 | char *name; |
Al Viro | d3fb612 | 2011-07-23 18:37:50 -0400 | [diff] [blame] | 819 | umode_t mode; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 820 | struct v9fs_session_info *v9ses; |
| 821 | struct p9_fid *fid = NULL, *dfid = NULL; |
| 822 | struct inode *inode; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 823 | struct p9_qid qid; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 824 | struct posix_acl *dacl = NULL, *pacl = NULL; |
| 825 | |
Al Viro | a455589 | 2014-10-21 20:11:25 -0400 | [diff] [blame] | 826 | p9_debug(P9_DEBUG_VFS, " %lu,%pd mode: %hx MAJOR: %u MINOR: %u\n", |
| 827 | dir->i_ino, dentry, omode, |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 828 | MAJOR(rdev), MINOR(rdev)); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 829 | |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 830 | v9ses = v9fs_inode2v9ses(dir); |
Al Viro | 77d5a6b | 2016-05-29 15:29:26 -0400 | [diff] [blame] | 831 | dfid = v9fs_parent_fid(dentry); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 832 | if (IS_ERR(dfid)) { |
| 833 | err = PTR_ERR(dfid); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 834 | 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] | 835 | dfid = NULL; |
| 836 | goto error; |
| 837 | } |
| 838 | |
| 839 | gid = v9fs_get_fsgid_for_create(dir); |
| 840 | mode = omode; |
| 841 | /* Update mode based on ACL value */ |
| 842 | err = v9fs_acl_mode(dir, &mode, &dacl, &pacl); |
| 843 | if (err) { |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 844 | p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n", |
| 845 | err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 846 | goto error; |
| 847 | } |
| 848 | name = (char *) dentry->d_name.name; |
| 849 | |
| 850 | err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid); |
| 851 | if (err < 0) |
| 852 | goto error; |
| 853 | |
Aneesh Kumar K.V | d28c61f | 2011-02-28 17:04:08 +0530 | [diff] [blame] | 854 | v9fs_invalidate_inode_attr(dir); |
Al Viro | 3592ac4 | 2013-01-31 13:45:39 -0500 | [diff] [blame] | 855 | fid = p9_client_walk(dfid, 1, &name, 1); |
| 856 | if (IS_ERR(fid)) { |
| 857 | err = PTR_ERR(fid); |
| 858 | p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", |
| 859 | err); |
| 860 | fid = NULL; |
| 861 | goto error; |
| 862 | } |
| 863 | |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 864 | /* instantiate inode and assign the unopened fid to the dentry */ |
| 865 | if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) { |
Aneesh Kumar K.V | ed80fcf | 2011-07-06 16:32:31 +0530 | [diff] [blame] | 866 | 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] | 867 | if (IS_ERR(inode)) { |
| 868 | err = PTR_ERR(inode); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 869 | p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", |
| 870 | err); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 871 | goto error; |
| 872 | } |
Al Viro | 3592ac4 | 2013-01-31 13:45:39 -0500 | [diff] [blame] | 873 | v9fs_set_create_acl(inode, fid, dacl, pacl); |
Al Viro | 2ea03e1d | 2013-02-28 01:18:14 -0500 | [diff] [blame] | 874 | v9fs_fid_add(dentry, fid); |
Aneesh Kumar K.V | 5441ae5 | 2011-07-25 18:06:32 +0000 | [diff] [blame] | 875 | d_instantiate(dentry, inode); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 876 | fid = NULL; |
Al Viro | 2ea03e1d | 2013-02-28 01:18:14 -0500 | [diff] [blame] | 877 | err = 0; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 878 | } else { |
| 879 | /* |
| 880 | * Not in cached mode. No need to populate inode with stat. |
| 881 | * socket syscall returns a fd, so we need instantiate |
| 882 | */ |
Aneesh Kumar K.V | 4508914 | 2011-07-25 18:06:33 +0000 | [diff] [blame] | 883 | inode = v9fs_get_inode(dir->i_sb, mode, rdev); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 884 | if (IS_ERR(inode)) { |
| 885 | err = PTR_ERR(inode); |
| 886 | goto error; |
| 887 | } |
Al Viro | 3592ac4 | 2013-01-31 13:45:39 -0500 | [diff] [blame] | 888 | v9fs_set_create_acl(inode, fid, dacl, pacl); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 889 | d_instantiate(dentry, inode); |
| 890 | } |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 891 | error: |
| 892 | if (fid) |
| 893 | p9_client_clunk(fid); |
Al Viro | 5fa6300 | 2013-01-31 13:31:23 -0500 | [diff] [blame] | 894 | v9fs_put_acl(dacl, pacl); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 895 | return err; |
| 896 | } |
| 897 | |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 898 | /** |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 899 | * v9fs_vfs_get_link_dotl - follow a symlink path |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 900 | * @dentry: dentry for symlink |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 901 | * @inode: inode for symlink |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 902 | * @done: destructor for return value |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 903 | */ |
| 904 | |
Al Viro | 680baac | 2015-05-02 13:32:22 -0400 | [diff] [blame] | 905 | static const char * |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 906 | v9fs_vfs_get_link_dotl(struct dentry *dentry, |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 907 | struct inode *inode, |
| 908 | struct delayed_call *done) |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 909 | { |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 910 | struct p9_fid *fid; |
M. Mohan Kumar | 31b6cea | 2011-01-08 07:28:46 +0530 | [diff] [blame] | 911 | char *target; |
Al Viro | 90e4fc8 | 2015-04-14 17:42:49 -0400 | [diff] [blame] | 912 | int retval; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 913 | |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 914 | if (!dentry) |
| 915 | return ERR_PTR(-ECHILD); |
| 916 | |
Al Viro | 4b8e992 | 2014-08-19 20:17:38 -0400 | [diff] [blame] | 917 | p9_debug(P9_DEBUG_VFS, "%pd\n", dentry); |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 918 | |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 919 | fid = v9fs_fid_lookup(dentry); |
Al Viro | 90e4fc8 | 2015-04-14 17:42:49 -0400 | [diff] [blame] | 920 | if (IS_ERR(fid)) |
| 921 | return ERR_CAST(fid); |
M. Mohan Kumar | 31b6cea | 2011-01-08 07:28:46 +0530 | [diff] [blame] | 922 | retval = p9_client_readlink(fid, &target); |
Al Viro | 90e4fc8 | 2015-04-14 17:42:49 -0400 | [diff] [blame] | 923 | if (retval) |
| 924 | return ERR_PTR(retval); |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 925 | set_delayed_call(done, kfree_link, target); |
| 926 | return target; |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 927 | } |
| 928 | |
Aneesh Kumar K.V | b3cbea0 | 2011-02-28 17:04:06 +0530 | [diff] [blame] | 929 | int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode) |
| 930 | { |
| 931 | loff_t i_size; |
| 932 | struct p9_stat_dotl *st; |
| 933 | struct v9fs_session_info *v9ses; |
| 934 | |
| 935 | v9ses = v9fs_inode2v9ses(inode); |
| 936 | st = p9_client_getattr_dotl(fid, P9_STATS_ALL); |
| 937 | if (IS_ERR(st)) |
| 938 | return PTR_ERR(st); |
Aneesh Kumar K.V | 4508914 | 2011-07-25 18:06:33 +0000 | [diff] [blame] | 939 | /* |
| 940 | * Don't update inode if the file type is different |
| 941 | */ |
| 942 | if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT)) |
| 943 | goto out; |
Aneesh Kumar K.V | b3cbea0 | 2011-02-28 17:04:06 +0530 | [diff] [blame] | 944 | |
| 945 | spin_lock(&inode->i_lock); |
| 946 | /* |
| 947 | * We don't want to refresh inode->i_size, |
| 948 | * because we may have cached data |
| 949 | */ |
| 950 | i_size = inode->i_size; |
| 951 | v9fs_stat2inode_dotl(st, inode); |
Dominique Martinet | fb89b45 | 2014-01-10 13:44:09 +0100 | [diff] [blame] | 952 | if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) |
Aneesh Kumar K.V | b3cbea0 | 2011-02-28 17:04:06 +0530 | [diff] [blame] | 953 | inode->i_size = i_size; |
| 954 | spin_unlock(&inode->i_lock); |
Aneesh Kumar K.V | 4508914 | 2011-07-25 18:06:33 +0000 | [diff] [blame] | 955 | out: |
Aneesh Kumar K.V | b3cbea0 | 2011-02-28 17:04:06 +0530 | [diff] [blame] | 956 | kfree(st); |
| 957 | return 0; |
| 958 | } |
| 959 | |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 960 | const struct inode_operations v9fs_dir_inode_operations_dotl = { |
| 961 | .create = v9fs_vfs_create_dotl, |
Miklos Szeredi | e43ae79 | 2012-06-05 15:10:26 +0200 | [diff] [blame] | 962 | .atomic_open = v9fs_vfs_atomic_open_dotl, |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 963 | .lookup = v9fs_vfs_lookup, |
| 964 | .link = v9fs_vfs_link_dotl, |
| 965 | .symlink = v9fs_vfs_symlink_dotl, |
| 966 | .unlink = v9fs_vfs_unlink, |
| 967 | .mkdir = v9fs_vfs_mkdir_dotl, |
| 968 | .rmdir = v9fs_vfs_rmdir, |
| 969 | .mknod = v9fs_vfs_mknod_dotl, |
| 970 | .rename = v9fs_vfs_rename, |
| 971 | .getattr = v9fs_vfs_getattr_dotl, |
| 972 | .setattr = v9fs_vfs_setattr_dotl, |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 973 | .listxattr = v9fs_listxattr, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 974 | .get_acl = v9fs_iop_get_acl, |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 975 | }; |
| 976 | |
| 977 | const struct inode_operations v9fs_file_inode_operations_dotl = { |
| 978 | .getattr = v9fs_vfs_getattr_dotl, |
| 979 | .setattr = v9fs_vfs_setattr_dotl, |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 980 | .listxattr = v9fs_listxattr, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 981 | .get_acl = v9fs_iop_get_acl, |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 982 | }; |
| 983 | |
| 984 | const struct inode_operations v9fs_symlink_inode_operations_dotl = { |
M. Mohan Kumar | 31b6cea | 2011-01-08 07:28:46 +0530 | [diff] [blame] | 985 | .readlink = generic_readlink, |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 986 | .get_link = v9fs_vfs_get_link_dotl, |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 987 | .getattr = v9fs_vfs_getattr_dotl, |
| 988 | .setattr = v9fs_vfs_setattr_dotl, |
Aneesh Kumar K.V | 53c06f4 | 2011-01-10 13:51:47 -0600 | [diff] [blame] | 989 | .listxattr = v9fs_listxattr, |
| 990 | }; |