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