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