blob: 8eedd20c44abdefa0f9155a8713469030800198e [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/*
Steve French099dd782021-09-13 14:51:10 -05003 * CIFS filesystem cache interface
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05304 *
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);
Shyam Prasad N18d04062021-08-10 10:22:28 +0000179 /* fscache_relinquish_cookie does not seem to update auxdata */
180 fscache_update_cookie(cifsi->fscache, &auxdata);
David Howells402cb8d2018-04-04 13:41:28 +0100181 fscache_relinquish_cookie(cifsi->fscache, &auxdata, false);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530182 cifsi->fscache = NULL;
183 }
184}
185
Shyam Prasad N18d04062021-08-10 10:22:28 +0000186void cifs_fscache_update_inode_cookie(struct inode *inode)
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530187{
Shyam Prasad N18d04062021-08-10 10:22:28 +0000188 struct cifs_fscache_inode_auxdata auxdata;
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530189 struct cifsInodeInfo *cifsi = CIFS_I(inode);
190
191 if (cifsi->fscache) {
Shyam Prasad N18d04062021-08-10 10:22:28 +0000192 memset(&auxdata, 0, sizeof(auxdata));
193 auxdata.eof = cifsi->server_eof;
194 auxdata.last_write_time_sec = cifsi->vfs_inode.i_mtime.tv_sec;
195 auxdata.last_change_time_sec = cifsi->vfs_inode.i_ctime.tv_sec;
196 auxdata.last_write_time_nsec = cifsi->vfs_inode.i_mtime.tv_nsec;
197 auxdata.last_change_time_nsec = cifsi->vfs_inode.i_ctime.tv_nsec;
198
Joe Perchesf96637b2013-05-04 22:12:25 -0500199 cifs_dbg(FYI, "%s: (0x%p)\n", __func__, cifsi->fscache);
Shyam Prasad N18d04062021-08-10 10:22:28 +0000200 fscache_update_cookie(cifsi->fscache, &auxdata);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530201 }
202}
203
204void cifs_fscache_set_inode_cookie(struct inode *inode, struct file *filp)
205{
Shyam Prasad N18d04062021-08-10 10:22:28 +0000206 cifs_fscache_enable_inode_cookie(inode);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530207}
208
209void cifs_fscache_reset_inode_cookie(struct inode *inode)
210{
211 struct cifsInodeInfo *cifsi = CIFS_I(inode);
212 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
David Howells402cb8d2018-04-04 13:41:28 +0100213 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530214 struct fscache_cookie *old = cifsi->fscache;
215
216 if (cifsi->fscache) {
217 /* retire the current fscache cache and get a new one */
David Howells402cb8d2018-04-04 13:41:28 +0100218 fscache_relinquish_cookie(cifsi->fscache, NULL, true);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530219
David Howells402cb8d2018-04-04 13:41:28 +0100220 cifs_fscache_acquire_inode_cookie(cifsi, tcon);
Joe Perchesf96637b2013-05-04 22:12:25 -0500221 cifs_dbg(FYI, "%s: new cookie 0x%p oldcookie 0x%p\n",
222 __func__, cifsi->fscache, old);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530223 }
224}
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +0530225
226int cifs_fscache_release_page(struct page *page, gfp_t gfp)
227{
228 if (PageFsCache(page)) {
229 struct inode *inode = page->mapping->host;
230 struct cifsInodeInfo *cifsi = CIFS_I(inode);
231
Joe Perchesf96637b2013-05-04 22:12:25 -0500232 cifs_dbg(FYI, "%s: (0x%p/0x%p)\n",
233 __func__, page, cifsi->fscache);
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +0530234 if (!fscache_maybe_release_page(cifsi->fscache, page, gfp))
235 return 0;
236 }
237
238 return 1;
239}
240
Suresh Jayaraman566982362010-07-05 18:13:25 +0530241static void cifs_readpage_from_fscache_complete(struct page *page, void *ctx,
242 int error)
243{
Joe Perchesf96637b2013-05-04 22:12:25 -0500244 cifs_dbg(FYI, "%s: (0x%p/%d)\n", __func__, page, error);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530245 if (!error)
246 SetPageUptodate(page);
247 unlock_page(page);
248}
249
250/*
251 * Retrieve a page from FS-Cache
252 */
253int __cifs_readpage_from_fscache(struct inode *inode, struct page *page)
254{
255 int ret;
256
Joe Perchesf96637b2013-05-04 22:12:25 -0500257 cifs_dbg(FYI, "%s: (fsc:%p, p:%p, i:0x%p\n",
258 __func__, CIFS_I(inode)->fscache, page, inode);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530259 ret = fscache_read_or_alloc_page(CIFS_I(inode)->fscache, page,
260 cifs_readpage_from_fscache_complete,
261 NULL,
262 GFP_KERNEL);
263 switch (ret) {
264
265 case 0: /* page found in fscache, read submitted */
Joe Perchesf96637b2013-05-04 22:12:25 -0500266 cifs_dbg(FYI, "%s: submitted\n", __func__);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530267 return ret;
268 case -ENOBUFS: /* page won't be cached */
269 case -ENODATA: /* page not in cache */
Joe Perchesf96637b2013-05-04 22:12:25 -0500270 cifs_dbg(FYI, "%s: %d\n", __func__, ret);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530271 return 1;
272
273 default:
Joe Perchesf96637b2013-05-04 22:12:25 -0500274 cifs_dbg(VFS, "unknown error ret = %d\n", ret);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530275 }
276 return ret;
277}
278
279/*
280 * Retrieve a set of pages from FS-Cache
281 */
282int __cifs_readpages_from_fscache(struct inode *inode,
283 struct address_space *mapping,
284 struct list_head *pages,
285 unsigned *nr_pages)
286{
287 int ret;
288
Joe Perchesf96637b2013-05-04 22:12:25 -0500289 cifs_dbg(FYI, "%s: (0x%p/%u/0x%p)\n",
290 __func__, CIFS_I(inode)->fscache, *nr_pages, inode);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530291 ret = fscache_read_or_alloc_pages(CIFS_I(inode)->fscache, mapping,
292 pages, nr_pages,
293 cifs_readpage_from_fscache_complete,
294 NULL,
295 mapping_gfp_mask(mapping));
296 switch (ret) {
297 case 0: /* read submitted to the cache for all pages */
Joe Perchesf96637b2013-05-04 22:12:25 -0500298 cifs_dbg(FYI, "%s: submitted\n", __func__);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530299 return ret;
300
301 case -ENOBUFS: /* some pages are not cached and can't be */
302 case -ENODATA: /* some pages are not cached */
Joe Perchesf96637b2013-05-04 22:12:25 -0500303 cifs_dbg(FYI, "%s: no page\n", __func__);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530304 return 1;
305
306 default:
Joe Perchesf96637b2013-05-04 22:12:25 -0500307 cifs_dbg(FYI, "unknown error ret = %d\n", ret);
Suresh Jayaraman566982362010-07-05 18:13:25 +0530308 }
309
310 return ret;
311}
312
Suresh Jayaraman9dc06552010-07-05 18:13:11 +0530313void __cifs_readpage_to_fscache(struct inode *inode, struct page *page)
314{
David Howellsee1235a2018-04-04 13:41:28 +0100315 struct cifsInodeInfo *cifsi = CIFS_I(inode);
Suresh Jayaraman9dc06552010-07-05 18:13:11 +0530316 int ret;
317
Shyam Prasad N18d04062021-08-10 10:22:28 +0000318 WARN_ON(!cifsi->fscache);
319
Joe Perchesf96637b2013-05-04 22:12:25 -0500320 cifs_dbg(FYI, "%s: (fsc: %p, p: %p, i: %p)\n",
David Howellsee1235a2018-04-04 13:41:28 +0100321 __func__, cifsi->fscache, page, inode);
322 ret = fscache_write_page(cifsi->fscache, page,
323 cifsi->vfs_inode.i_size, GFP_KERNEL);
Suresh Jayaraman9dc06552010-07-05 18:13:11 +0530324 if (ret != 0)
David Howellsee1235a2018-04-04 13:41:28 +0100325 fscache_uncache_page(cifsi->fscache, page);
Suresh Jayaraman9dc06552010-07-05 18:13:11 +0530326}
327
David Howells54afa992013-09-04 17:10:39 +0000328void __cifs_fscache_readpages_cancel(struct inode *inode, struct list_head *pages)
329{
330 cifs_dbg(FYI, "%s: (fsc: %p, i: %p)\n",
331 __func__, CIFS_I(inode)->fscache, inode);
332 fscache_readpages_cancel(CIFS_I(inode)->fscache, pages);
333}
334
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +0530335void __cifs_fscache_invalidate_page(struct page *page, struct inode *inode)
336{
337 struct cifsInodeInfo *cifsi = CIFS_I(inode);
338 struct fscache_cookie *cookie = cifsi->fscache;
339
Joe Perchesf96637b2013-05-04 22:12:25 -0500340 cifs_dbg(FYI, "%s: (0x%p/0x%p)\n", __func__, page, cookie);
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +0530341 fscache_wait_on_page_write(cookie, page);
342 fscache_uncache_page(cookie, page);
343}
Shyam Prasad N18d04062021-08-10 10:22:28 +0000344
345void __cifs_fscache_wait_on_page_write(struct inode *inode, struct page *page)
346{
347 struct cifsInodeInfo *cifsi = CIFS_I(inode);
348 struct fscache_cookie *cookie = cifsi->fscache;
349
350 cifs_dbg(FYI, "%s: (0x%p/0x%p)\n", __func__, page, cookie);
351 fscache_wait_on_page_write(cookie, page);
352}
353
354void __cifs_fscache_uncache_page(struct inode *inode, struct page *page)
355{
356 struct cifsInodeInfo *cifsi = CIFS_I(inode);
357 struct fscache_cookie *cookie = cifsi->fscache;
358
359 cifs_dbg(FYI, "%s: (0x%p/0x%p)\n", __func__, page, cookie);
360 fscache_uncache_page(cookie, page);
361}