blob: dd625033cd6b70b08abe1d389832f0c438ce4aa6 [file] [log] [blame]
Steve French929be902021-06-18 00:31:49 -05001// SPDX-License-Identifier: LGPL-2.1
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05302/*
3 * fs/cifs/fscache.c - CIFS filesystem cache interface
4 *
5 * Copyright (c) 2010 Novell, Inc.
Suresh Jayaramanb81209d2010-11-24 17:49:06 +05306 * Author(s): Suresh Jayaraman <sjayaraman@suse.de>
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05307 *
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05308 */
9#include "fscache.h"
10#include "cifsglob.h"
11#include "cifs_debug.h"
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +053012#include "cifs_fs_sb.h"
Samuel Cabreroe73a42e2020-11-30 19:02:48 +010013#include "cifsproto.h"
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +053014
David Howells402cb8d2018-04-04 13:41:28 +010015/*
16 * Key layout of CIFS server cache index object
17 */
18struct cifs_server_key {
19 struct {
20 uint16_t family; /* address family */
21 __be16 port; /* IP port */
22 } hdr;
23 union {
24 struct in_addr ipv4_addr;
25 struct in6_addr ipv6_addr;
26 };
27} __packed;
28
29/*
30 * Get a cookie for a server object keyed by {IPaddress,port,family} tuple
31 */
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +053032void cifs_fscache_get_client_cookie(struct TCP_Server_Info *server)
33{
David Howells402cb8d2018-04-04 13:41:28 +010034 const struct sockaddr *sa = (struct sockaddr *) &server->dstaddr;
35 const struct sockaddr_in *addr = (struct sockaddr_in *) sa;
36 const struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *) sa;
37 struct cifs_server_key key;
38 uint16_t key_len = sizeof(key.hdr);
39
40 memset(&key, 0, sizeof(key));
41
42 /*
43 * Should not be a problem as sin_family/sin6_family overlays
44 * sa_family field
45 */
46 key.hdr.family = sa->sa_family;
47 switch (sa->sa_family) {
48 case AF_INET:
49 key.hdr.port = addr->sin_port;
50 key.ipv4_addr = addr->sin_addr;
51 key_len += sizeof(key.ipv4_addr);
52 break;
53
54 case AF_INET6:
55 key.hdr.port = addr6->sin6_port;
56 key.ipv6_addr = addr6->sin6_addr;
57 key_len += sizeof(key.ipv6_addr);
58 break;
59
60 default:
61 cifs_dbg(VFS, "Unknown network family '%d'\n", sa->sa_family);
62 server->fscache = NULL;
63 return;
64 }
65
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +053066 server->fscache =
67 fscache_acquire_cookie(cifs_fscache_netfs.primary_index,
David Howells402cb8d2018-04-04 13:41:28 +010068 &cifs_fscache_server_index_def,
69 &key, key_len,
70 NULL, 0,
David Howellsee1235a2018-04-04 13:41:28 +010071 server, 0, true);
Joe Perchesf96637b2013-05-04 22:12:25 -050072 cifs_dbg(FYI, "%s: (0x%p/0x%p)\n",
73 __func__, server, server->fscache);
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +053074}
75
76void cifs_fscache_release_client_cookie(struct TCP_Server_Info *server)
77{
Joe Perchesf96637b2013-05-04 22:12:25 -050078 cifs_dbg(FYI, "%s: (0x%p/0x%p)\n",
79 __func__, server, server->fscache);
David Howells402cb8d2018-04-04 13:41:28 +010080 fscache_relinquish_cookie(server->fscache, NULL, false);
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +053081 server->fscache = NULL;
82}
83
Steve French96daf2b2011-05-27 04:34:02 +000084void cifs_fscache_get_super_cookie(struct cifs_tcon *tcon)
Suresh Jayaramand03382c2010-07-05 18:12:27 +053085{
86 struct TCP_Server_Info *server = tcon->ses->server;
David Howells402cb8d2018-04-04 13:41:28 +010087 char *sharename;
Steve French58659852020-06-05 17:19:46 -050088 struct cifs_fscache_super_auxdata auxdata;
David Howells402cb8d2018-04-04 13:41:28 +010089
90 sharename = extract_sharename(tcon->treeName);
91 if (IS_ERR(sharename)) {
92 cifs_dbg(FYI, "%s: couldn't extract sharename\n", __func__);
93 tcon->fscache = NULL;
94 return;
95 }
Suresh Jayaramand03382c2010-07-05 18:12:27 +053096
Steve French58659852020-06-05 17:19:46 -050097 memset(&auxdata, 0, sizeof(auxdata));
98 auxdata.resource_id = tcon->resource_id;
99 auxdata.vol_create_time = tcon->vol_create_time;
100 auxdata.vol_serial_number = tcon->vol_serial_number;
101
Suresh Jayaramand03382c2010-07-05 18:12:27 +0530102 tcon->fscache =
103 fscache_acquire_cookie(server->fscache,
David Howells402cb8d2018-04-04 13:41:28 +0100104 &cifs_fscache_super_index_def,
105 sharename, strlen(sharename),
Steve French58659852020-06-05 17:19:46 -0500106 &auxdata, sizeof(auxdata),
David Howellsee1235a2018-04-04 13:41:28 +0100107 tcon, 0, true);
David Howells402cb8d2018-04-04 13:41:28 +0100108 kfree(sharename);
Joe Perchesf96637b2013-05-04 22:12:25 -0500109 cifs_dbg(FYI, "%s: (0x%p/0x%p)\n",
110 __func__, server->fscache, tcon->fscache);
Suresh Jayaramand03382c2010-07-05 18:12:27 +0530111}
112
Steve French96daf2b2011-05-27 04:34:02 +0000113void cifs_fscache_release_super_cookie(struct cifs_tcon *tcon)
Suresh Jayaramand03382c2010-07-05 18:12:27 +0530114{
Steve French58659852020-06-05 17:19:46 -0500115 struct cifs_fscache_super_auxdata auxdata;
116
117 memset(&auxdata, 0, sizeof(auxdata));
118 auxdata.resource_id = tcon->resource_id;
119 auxdata.vol_create_time = tcon->vol_create_time;
120 auxdata.vol_serial_number = tcon->vol_serial_number;
121
Joe Perchesf96637b2013-05-04 22:12:25 -0500122 cifs_dbg(FYI, "%s: (0x%p)\n", __func__, tcon->fscache);
Steve French58659852020-06-05 17:19:46 -0500123 fscache_relinquish_cookie(tcon->fscache, &auxdata, false);
Suresh Jayaramand03382c2010-07-05 18:12:27 +0530124 tcon->fscache = NULL;
125}
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530126
David Howells402cb8d2018-04-04 13:41:28 +0100127static void cifs_fscache_acquire_inode_cookie(struct cifsInodeInfo *cifsi,
128 struct cifs_tcon *tcon)
129{
130 struct cifs_fscache_inode_auxdata auxdata;
131
132 memset(&auxdata, 0, sizeof(auxdata));
133 auxdata.eof = cifsi->server_eof;
Arnd Bergmanncbedead2018-06-19 17:27:59 +0200134 auxdata.last_write_time_sec = cifsi->vfs_inode.i_mtime.tv_sec;
135 auxdata.last_change_time_sec = cifsi->vfs_inode.i_ctime.tv_sec;
136 auxdata.last_write_time_nsec = cifsi->vfs_inode.i_mtime.tv_nsec;
137 auxdata.last_change_time_nsec = cifsi->vfs_inode.i_ctime.tv_nsec;
David Howells402cb8d2018-04-04 13:41:28 +0100138
139 cifsi->fscache =
140 fscache_acquire_cookie(tcon->fscache,
141 &cifs_fscache_inode_object_def,
142 &cifsi->uniqueid, sizeof(cifsi->uniqueid),
143 &auxdata, sizeof(auxdata),
David Howellsee1235a2018-04-04 13:41:28 +0100144 cifsi, cifsi->vfs_inode.i_size, true);
David Howells402cb8d2018-04-04 13:41:28 +0100145}
146
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530147static void cifs_fscache_enable_inode_cookie(struct inode *inode)
148{
149 struct cifsInodeInfo *cifsi = CIFS_I(inode);
150 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Steve French96daf2b2011-05-27 04:34:02 +0000151 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530152
153 if (cifsi->fscache)
154 return;
155
David Howells402cb8d2018-04-04 13:41:28 +0100156 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE))
157 return;
158
159 cifs_fscache_acquire_inode_cookie(cifsi, tcon);
160
161 cifs_dbg(FYI, "%s: got FH cookie (0x%p/0x%p)\n",
162 __func__, tcon->fscache, cifsi->fscache);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530163}
164
165void cifs_fscache_release_inode_cookie(struct inode *inode)
166{
David Howells402cb8d2018-04-04 13:41:28 +0100167 struct cifs_fscache_inode_auxdata auxdata;
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530168 struct cifsInodeInfo *cifsi = CIFS_I(inode);
169
170 if (cifsi->fscache) {
David Howells402cb8d2018-04-04 13:41:28 +0100171 memset(&auxdata, 0, sizeof(auxdata));
172 auxdata.eof = cifsi->server_eof;
Arnd Bergmanncbedead2018-06-19 17:27:59 +0200173 auxdata.last_write_time_sec = cifsi->vfs_inode.i_mtime.tv_sec;
174 auxdata.last_change_time_sec = cifsi->vfs_inode.i_ctime.tv_sec;
175 auxdata.last_write_time_nsec = cifsi->vfs_inode.i_mtime.tv_nsec;
176 auxdata.last_change_time_nsec = cifsi->vfs_inode.i_ctime.tv_nsec;
David Howells402cb8d2018-04-04 13:41:28 +0100177
Joe Perchesf96637b2013-05-04 22:12:25 -0500178 cifs_dbg(FYI, "%s: (0x%p)\n", __func__, cifsi->fscache);
David Howells402cb8d2018-04-04 13:41:28 +0100179 fscache_relinquish_cookie(cifsi->fscache, &auxdata, false);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530180 cifsi->fscache = NULL;
181 }
182}
183
184static void cifs_fscache_disable_inode_cookie(struct inode *inode)
185{
186 struct cifsInodeInfo *cifsi = CIFS_I(inode);
187
188 if (cifsi->fscache) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500189 cifs_dbg(FYI, "%s: (0x%p)\n", __func__, cifsi->fscache);
David Howellsc902ce12011-07-07 12:19:48 +0100190 fscache_uncache_all_inode_pages(cifsi->fscache, inode);
David Howells402cb8d2018-04-04 13:41:28 +0100191 fscache_relinquish_cookie(cifsi->fscache, NULL, true);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530192 cifsi->fscache = NULL;
193 }
194}
195
196void cifs_fscache_set_inode_cookie(struct inode *inode, struct file *filp)
197{
198 if ((filp->f_flags & O_ACCMODE) != O_RDONLY)
199 cifs_fscache_disable_inode_cookie(inode);
Suresh Jayaramanb81209d2010-11-24 17:49:06 +0530200 else
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530201 cifs_fscache_enable_inode_cookie(inode);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530202}
203
204void cifs_fscache_reset_inode_cookie(struct inode *inode)
205{
206 struct cifsInodeInfo *cifsi = CIFS_I(inode);
207 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
David Howells402cb8d2018-04-04 13:41:28 +0100208 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530209 struct fscache_cookie *old = cifsi->fscache;
210
211 if (cifsi->fscache) {
212 /* retire the current fscache cache and get a new one */
David Howells402cb8d2018-04-04 13:41:28 +0100213 fscache_relinquish_cookie(cifsi->fscache, NULL, true);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530214
David Howells402cb8d2018-04-04 13:41:28 +0100215 cifs_fscache_acquire_inode_cookie(cifsi, tcon);
Joe Perchesf96637b2013-05-04 22:12:25 -0500216 cifs_dbg(FYI, "%s: new cookie 0x%p oldcookie 0x%p\n",
217 __func__, cifsi->fscache, old);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530218 }
219}
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +0530220
221int cifs_fscache_release_page(struct page *page, gfp_t gfp)
222{
223 if (PageFsCache(page)) {
224 struct inode *inode = page->mapping->host;
225 struct cifsInodeInfo *cifsi = CIFS_I(inode);
226
Joe Perchesf96637b2013-05-04 22:12:25 -0500227 cifs_dbg(FYI, "%s: (0x%p/0x%p)\n",
228 __func__, page, cifsi->fscache);
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +0530229 if (!fscache_maybe_release_page(cifsi->fscache, page, gfp))
230 return 0;
231 }
232
233 return 1;
234}
235
Suresh Jayaraman566982362010-07-05 18:13:25 +0530236static void cifs_readpage_from_fscache_complete(struct page *page, void *ctx,
237 int error)
238{
Joe Perchesf96637b2013-05-04 22:12:25 -0500239 cifs_dbg(FYI, "%s: (0x%p/%d)\n", __func__, page, error);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530240 if (!error)
241 SetPageUptodate(page);
242 unlock_page(page);
243}
244
245/*
246 * Retrieve a page from FS-Cache
247 */
248int __cifs_readpage_from_fscache(struct inode *inode, struct page *page)
249{
250 int ret;
251
Joe Perchesf96637b2013-05-04 22:12:25 -0500252 cifs_dbg(FYI, "%s: (fsc:%p, p:%p, i:0x%p\n",
253 __func__, CIFS_I(inode)->fscache, page, inode);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530254 ret = fscache_read_or_alloc_page(CIFS_I(inode)->fscache, page,
255 cifs_readpage_from_fscache_complete,
256 NULL,
257 GFP_KERNEL);
258 switch (ret) {
259
260 case 0: /* page found in fscache, read submitted */
Joe Perchesf96637b2013-05-04 22:12:25 -0500261 cifs_dbg(FYI, "%s: submitted\n", __func__);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530262 return ret;
263 case -ENOBUFS: /* page won't be cached */
264 case -ENODATA: /* page not in cache */
Joe Perchesf96637b2013-05-04 22:12:25 -0500265 cifs_dbg(FYI, "%s: %d\n", __func__, ret);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530266 return 1;
267
268 default:
Joe Perchesf96637b2013-05-04 22:12:25 -0500269 cifs_dbg(VFS, "unknown error ret = %d\n", ret);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530270 }
271 return ret;
272}
273
274/*
275 * Retrieve a set of pages from FS-Cache
276 */
277int __cifs_readpages_from_fscache(struct inode *inode,
278 struct address_space *mapping,
279 struct list_head *pages,
280 unsigned *nr_pages)
281{
282 int ret;
283
Joe Perchesf96637b2013-05-04 22:12:25 -0500284 cifs_dbg(FYI, "%s: (0x%p/%u/0x%p)\n",
285 __func__, CIFS_I(inode)->fscache, *nr_pages, inode);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530286 ret = fscache_read_or_alloc_pages(CIFS_I(inode)->fscache, mapping,
287 pages, nr_pages,
288 cifs_readpage_from_fscache_complete,
289 NULL,
290 mapping_gfp_mask(mapping));
291 switch (ret) {
292 case 0: /* read submitted to the cache for all pages */
Joe Perchesf96637b2013-05-04 22:12:25 -0500293 cifs_dbg(FYI, "%s: submitted\n", __func__);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530294 return ret;
295
296 case -ENOBUFS: /* some pages are not cached and can't be */
297 case -ENODATA: /* some pages are not cached */
Joe Perchesf96637b2013-05-04 22:12:25 -0500298 cifs_dbg(FYI, "%s: no page\n", __func__);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530299 return 1;
300
301 default:
Joe Perchesf96637b2013-05-04 22:12:25 -0500302 cifs_dbg(FYI, "unknown error ret = %d\n", ret);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530303 }
304
305 return ret;
306}
307
Suresh Jayaraman9dc06552010-07-05 18:13:11 +0530308void __cifs_readpage_to_fscache(struct inode *inode, struct page *page)
309{
David Howellsee1235a2018-04-04 13:41:28 +0100310 struct cifsInodeInfo *cifsi = CIFS_I(inode);
Suresh Jayaraman9dc06552010-07-05 18:13:11 +0530311 int ret;
312
Joe Perchesf96637b2013-05-04 22:12:25 -0500313 cifs_dbg(FYI, "%s: (fsc: %p, p: %p, i: %p)\n",
David Howellsee1235a2018-04-04 13:41:28 +0100314 __func__, cifsi->fscache, page, inode);
315 ret = fscache_write_page(cifsi->fscache, page,
316 cifsi->vfs_inode.i_size, GFP_KERNEL);
Suresh Jayaraman9dc06552010-07-05 18:13:11 +0530317 if (ret != 0)
David Howellsee1235a2018-04-04 13:41:28 +0100318 fscache_uncache_page(cifsi->fscache, page);
Suresh Jayaraman9dc06552010-07-05 18:13:11 +0530319}
320
David Howells54afa992013-09-04 17:10:39 +0000321void __cifs_fscache_readpages_cancel(struct inode *inode, struct list_head *pages)
322{
323 cifs_dbg(FYI, "%s: (fsc: %p, i: %p)\n",
324 __func__, CIFS_I(inode)->fscache, inode);
325 fscache_readpages_cancel(CIFS_I(inode)->fscache, pages);
326}
327
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +0530328void __cifs_fscache_invalidate_page(struct page *page, struct inode *inode)
329{
330 struct cifsInodeInfo *cifsi = CIFS_I(inode);
331 struct fscache_cookie *cookie = cifsi->fscache;
332
Joe Perchesf96637b2013-05-04 22:12:25 -0500333 cifs_dbg(FYI, "%s: (0x%p/0x%p)\n", __func__, page, cookie);
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +0530334 fscache_wait_on_page_write(cookie, page);
335 fscache_uncache_page(cookie, page);
336}