Thomas Gleixner | 1f32761 | 2019-05-28 09:57:16 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 2 | /* |
| 3 | * V9FS cache definitions. |
| 4 | * |
| 5 | * Copyright (C) 2009 by Abhishek Kulkarni <adkulkar@umail.iu.edu> |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/jiffies.h> |
| 9 | #include <linux/file.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 10 | #include <linux/slab.h> |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 11 | #include <linux/stat.h> |
| 12 | #include <linux/sched.h> |
| 13 | #include <linux/fs.h> |
| 14 | #include <net/9p/9p.h> |
| 15 | |
| 16 | #include "v9fs.h" |
| 17 | #include "cache.h" |
| 18 | |
David Howells | 24e42e3 | 2020-11-18 09:06:42 +0000 | [diff] [blame] | 19 | int v9fs_cache_session_get_cookie(struct v9fs_session_info *v9ses, |
| 20 | const char *dev_name) |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 21 | { |
David Howells | 24e42e3 | 2020-11-18 09:06:42 +0000 | [diff] [blame] | 22 | struct fscache_volume *vcookie; |
| 23 | char *name, *p; |
| 24 | |
| 25 | name = kasprintf(GFP_KERNEL, "9p,%s,%s", |
| 26 | dev_name, v9ses->cachetag ?: v9ses->aname); |
| 27 | if (!name) |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 28 | return -ENOMEM; |
| 29 | |
David Howells | 24e42e3 | 2020-11-18 09:06:42 +0000 | [diff] [blame] | 30 | for (p = name; *p; p++) |
| 31 | if (*p == '/') |
| 32 | *p = ';'; |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 33 | |
David Howells | 24e42e3 | 2020-11-18 09:06:42 +0000 | [diff] [blame] | 34 | vcookie = fscache_acquire_volume(name, NULL, NULL, 0); |
| 35 | p9_debug(P9_DEBUG_FSC, "session %p get volume %p (%s)\n", |
| 36 | v9ses, vcookie, name); |
| 37 | if (IS_ERR(vcookie)) { |
| 38 | if (vcookie != ERR_PTR(-EBUSY)) { |
| 39 | kfree(name); |
| 40 | return PTR_ERR(vcookie); |
David Howells | 402cb8d | 2018-04-04 13:41:28 +0100 | [diff] [blame] | 41 | } |
David Howells | 24e42e3 | 2020-11-18 09:06:42 +0000 | [diff] [blame] | 42 | pr_err("Cache volume key already in use (%s)\n", name); |
| 43 | vcookie = NULL; |
David Howells | 402cb8d | 2018-04-04 13:41:28 +0100 | [diff] [blame] | 44 | } |
David Howells | 24e42e3 | 2020-11-18 09:06:42 +0000 | [diff] [blame] | 45 | v9ses->fscache = vcookie; |
| 46 | kfree(name); |
| 47 | return 0; |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 48 | } |
| 49 | |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 50 | void v9fs_cache_inode_get_cookie(struct inode *inode) |
| 51 | { |
David Howells | bc899ee | 2021-06-29 22:37:05 +0100 | [diff] [blame] | 52 | struct v9fs_inode *v9inode = V9FS_I(inode); |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 53 | struct v9fs_session_info *v9ses; |
David Howells | 24e42e3 | 2020-11-18 09:06:42 +0000 | [diff] [blame] | 54 | __le32 version; |
| 55 | __le64 path; |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 56 | |
| 57 | if (!S_ISREG(inode->i_mode)) |
| 58 | return; |
David Howells | bc899ee | 2021-06-29 22:37:05 +0100 | [diff] [blame] | 59 | if (WARN_ON(v9fs_inode_cookie(v9inode))) |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 60 | return; |
| 61 | |
David Howells | 24e42e3 | 2020-11-18 09:06:42 +0000 | [diff] [blame] | 62 | version = cpu_to_le32(v9inode->qid.version); |
| 63 | path = cpu_to_le64(v9inode->qid.path); |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 64 | v9ses = v9fs_inode2v9ses(inode); |
David Howells | 874c8ca1 | 2022-06-09 21:46:04 +0100 | [diff] [blame] | 65 | v9inode->netfs.cache = |
David Howells | 24e42e3 | 2020-11-18 09:06:42 +0000 | [diff] [blame] | 66 | fscache_acquire_cookie(v9fs_session_cache(v9ses), |
| 67 | 0, |
| 68 | &path, sizeof(path), |
| 69 | &version, sizeof(version), |
David Howells | 874c8ca1 | 2022-06-09 21:46:04 +0100 | [diff] [blame] | 70 | i_size_read(&v9inode->netfs.inode)); |
David Howells | b4fa966 | 2023-06-28 11:48:52 +0100 | [diff] [blame] | 71 | if (v9inode->netfs.cache) |
| 72 | mapping_set_release_always(inode->i_mapping); |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 73 | |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 74 | p9_debug(P9_DEBUG_FSC, "inode %p get cookie %p\n", |
David Howells | bc899ee | 2021-06-29 22:37:05 +0100 | [diff] [blame] | 75 | inode, v9fs_inode_cookie(v9inode)); |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 76 | } |