blob: c637f01929760b7f0abce4f34a8750373f5912c4 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Christoph Hellwig52785112015-02-16 11:49:23 +11002/*
3 * Copyright (c) 2014 Christoph Hellwig.
4 */
5#include "xfs.h"
Darrick J. Wong5467b342019-06-28 19:25:35 -07006#include "xfs_shared.h"
Christoph Hellwig52785112015-02-16 11:49:23 +11007#include "xfs_format.h"
8#include "xfs_log_format.h"
9#include "xfs_trans_resv.h"
Christoph Hellwig52785112015-02-16 11:49:23 +110010#include "xfs_mount.h"
11#include "xfs_inode.h"
12#include "xfs_trans.h"
Christoph Hellwig52785112015-02-16 11:49:23 +110013#include "xfs_bmap.h"
Christoph Hellwig52785112015-02-16 11:49:23 +110014#include "xfs_iomap.h"
Ben Dooks (Codethink)1aa63002019-10-22 09:53:50 -070015#include "xfs_pnfs.h"
Christoph Hellwig52785112015-02-16 11:49:23 +110016
17/*
Christoph Hellwig781355c2015-02-16 11:59:50 +110018 * Ensure that we do not have any outstanding pNFS layouts that can be used by
19 * clients to directly read from or write to this inode. This must be called
20 * before every operation that can remove blocks from the extent map.
21 * Additionally we call it during the write operation, where aren't concerned
22 * about exposing unallocated blocks but just want to provide basic
23 * synchronization between a local writer and pNFS clients. mmap writes would
24 * also benefit from this sort of synchronization, but due to the tricky locking
25 * rules in the page fault path we don't bother.
26 */
27int
Dan Williams69eb5fa2018-03-20 14:42:38 -070028xfs_break_leased_layouts(
Christoph Hellwig781355c2015-02-16 11:59:50 +110029 struct inode *inode,
Dan Williams69eb5fa2018-03-20 14:42:38 -070030 uint *iolock,
31 bool *did_unlock)
Christoph Hellwig781355c2015-02-16 11:59:50 +110032{
33 struct xfs_inode *ip = XFS_I(inode);
34 int error;
35
Ira Weinyb6827162019-08-19 18:15:28 -070036 while ((error = break_layout(inode, false)) == -EWOULDBLOCK) {
Christoph Hellwig781355c2015-02-16 11:59:50 +110037 xfs_iunlock(ip, *iolock);
Dan Williams69eb5fa2018-03-20 14:42:38 -070038 *did_unlock = true;
Christoph Hellwig781355c2015-02-16 11:59:50 +110039 error = break_layout(inode, true);
Dan Williamsc63a8ea2018-03-12 14:12:29 -070040 *iolock &= ~XFS_IOLOCK_SHARED;
41 *iolock |= XFS_IOLOCK_EXCL;
Christoph Hellwig781355c2015-02-16 11:59:50 +110042 xfs_ilock(ip, *iolock);
43 }
44
45 return error;
46}
47
48/*
Christoph Hellwig52785112015-02-16 11:49:23 +110049 * Get a unique ID including its location so that the client can identify
50 * the exported device.
51 */
52int
53xfs_fs_get_uuid(
54 struct super_block *sb,
55 u8 *buf,
56 u32 *len,
57 u64 *offset)
58{
59 struct xfs_mount *mp = XFS_M(sb);
60
61 printk_once(KERN_NOTICE
62"XFS (%s): using experimental pNFS feature, use at your own risk!\n",
63 mp->m_fsname);
64
65 if (*len < sizeof(uuid_t))
66 return -EINVAL;
67
68 memcpy(buf, &mp->m_sb.sb_uuid, sizeof(uuid_t));
69 *len = sizeof(uuid_t);
70 *offset = offsetof(struct xfs_dsb, sb_uuid);
71 return 0;
72}
73
Christoph Hellwig52785112015-02-16 11:49:23 +110074/*
75 * Get a layout for the pNFS client.
76 */
77int
78xfs_fs_map_blocks(
79 struct inode *inode,
80 loff_t offset,
81 u64 length,
82 struct iomap *iomap,
83 bool write,
84 u32 *device_generation)
85{
86 struct xfs_inode *ip = XFS_I(inode);
87 struct xfs_mount *mp = ip->i_mount;
88 struct xfs_bmbt_irec imap;
89 xfs_fileoff_t offset_fsb, end_fsb;
90 loff_t limit;
91 int bmapi_flags = XFS_BMAPI_ENTIRE;
92 int nimaps = 1;
93 uint lock_flags;
94 int error = 0;
95
96 if (XFS_FORCED_SHUTDOWN(mp))
97 return -EIO;
98
99 /*
100 * We can't export inodes residing on the realtime device. The realtime
101 * device doesn't have a UUID to identify it, so the client has no way
102 * to find it.
103 */
104 if (XFS_IS_REALTIME_INODE(ip))
105 return -ENXIO;
106
107 /*
Darrick J. Wong46eeb522016-10-03 09:11:16 -0700108 * The pNFS block layout spec actually supports reflink like
109 * functionality, but the Linux pNFS server doesn't implement it yet.
110 */
111 if (xfs_is_reflink_inode(ip))
112 return -ENXIO;
113
114 /*
Christoph Hellwig52785112015-02-16 11:49:23 +1100115 * Lock out any other I/O before we flush and invalidate the pagecache,
116 * and then hand out a layout to the remote system. This is very
117 * similar to direct I/O, except that the synchronization is much more
Dan Williams69eb5fa2018-03-20 14:42:38 -0700118 * complicated. See the comment near xfs_break_leased_layouts
119 * for a detailed explanation.
Christoph Hellwig52785112015-02-16 11:49:23 +1100120 */
121 xfs_ilock(ip, XFS_IOLOCK_EXCL);
122
123 error = -EINVAL;
124 limit = mp->m_super->s_maxbytes;
125 if (!write)
126 limit = max(limit, round_up(i_size_read(inode),
127 inode->i_sb->s_blocksize));
128 if (offset > limit)
129 goto out_unlock;
130 if (offset > limit - length)
131 length = limit - offset;
132
133 error = filemap_write_and_wait(inode->i_mapping);
134 if (error)
135 goto out_unlock;
136 error = invalidate_inode_pages2(inode->i_mapping);
137 if (WARN_ON_ONCE(error))
138 return error;
139
140 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + length);
141 offset_fsb = XFS_B_TO_FSBT(mp, offset);
142
143 lock_flags = xfs_ilock_data_map_shared(ip);
144 error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb,
145 &imap, &nimaps, bmapi_flags);
146 xfs_iunlock(ip, lock_flags);
147
148 if (error)
149 goto out_unlock;
150
151 if (write) {
152 enum xfs_prealloc_flags flags = 0;
153
154 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
155
156 if (!nimaps || imap.br_startblock == HOLESTARTBLOCK) {
Brian Foster009c6e82015-10-12 15:34:20 +1100157 /*
158 * xfs_iomap_write_direct() expects to take ownership of
159 * the shared ilock.
160 */
161 xfs_ilock(ip, XFS_ILOCK_SHARED);
Christoph Hellwig52785112015-02-16 11:49:23 +1100162 error = xfs_iomap_write_direct(ip, offset, length,
163 &imap, nimaps);
164 if (error)
165 goto out_unlock;
166
167 /*
168 * Ensure the next transaction is committed
169 * synchronously so that the blocks allocated and
170 * handed out to the client are guaranteed to be
171 * present even after a server crash.
172 */
173 flags |= XFS_PREALLOC_SET | XFS_PREALLOC_SYNC;
174 }
175
176 error = xfs_update_prealloc_flags(ip, flags);
177 if (error)
178 goto out_unlock;
179 }
180 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
181
Christoph Hellwig2492a602019-10-17 13:12:02 -0700182 error = xfs_bmbt_to_iomap(ip, iomap, &imap, 0);
Christoph Hellwig52785112015-02-16 11:49:23 +1100183 *device_generation = mp->m_generation;
184 return error;
185out_unlock:
186 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
187 return error;
188}
189
190/*
191 * Ensure the size update falls into a valid allocated block.
192 */
193static int
194xfs_pnfs_validate_isize(
195 struct xfs_inode *ip,
196 xfs_off_t isize)
197{
198 struct xfs_bmbt_irec imap;
199 int nimaps = 1;
200 int error = 0;
201
202 xfs_ilock(ip, XFS_ILOCK_SHARED);
203 error = xfs_bmapi_read(ip, XFS_B_TO_FSBT(ip->i_mount, isize - 1), 1,
204 &imap, &nimaps, 0);
205 xfs_iunlock(ip, XFS_ILOCK_SHARED);
206 if (error)
207 return error;
208
209 if (imap.br_startblock == HOLESTARTBLOCK ||
210 imap.br_startblock == DELAYSTARTBLOCK ||
211 imap.br_state == XFS_EXT_UNWRITTEN)
212 return -EIO;
213 return 0;
214}
215
216/*
217 * Make sure the blocks described by maps are stable on disk. This includes
218 * converting any unwritten extents, flushing the disk cache and updating the
219 * time stamps.
220 *
221 * Note that we rely on the caller to always send us a timestamp update so that
222 * we always commit a transaction here. If that stops being true we will have
223 * to manually flush the cache here similar to what the fsync code path does
224 * for datasyncs on files that have no dirty metadata.
225 */
226int
227xfs_fs_commit_blocks(
228 struct inode *inode,
229 struct iomap *maps,
230 int nr_maps,
231 struct iattr *iattr)
232{
233 struct xfs_inode *ip = XFS_I(inode);
234 struct xfs_mount *mp = ip->i_mount;
235 struct xfs_trans *tp;
236 bool update_isize = false;
237 int error, i;
238 loff_t size;
239
240 ASSERT(iattr->ia_valid & (ATTR_ATIME|ATTR_CTIME|ATTR_MTIME));
241
242 xfs_ilock(ip, XFS_IOLOCK_EXCL);
243
244 size = i_size_read(inode);
245 if ((iattr->ia_valid & ATTR_SIZE) && iattr->ia_size > size) {
246 update_isize = true;
247 size = iattr->ia_size;
248 }
249
250 for (i = 0; i < nr_maps; i++) {
251 u64 start, length, end;
252
253 start = maps[i].offset;
254 if (start > size)
255 continue;
256
257 end = start + maps[i].length;
258 if (end > size)
259 end = size;
260
261 length = end - start;
262 if (!length)
263 continue;
264
265 /*
266 * Make sure reads through the pagecache see the new data.
267 */
268 error = invalidate_inode_pages2_range(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300269 start >> PAGE_SHIFT,
270 (end - 1) >> PAGE_SHIFT);
Christoph Hellwig52785112015-02-16 11:49:23 +1100271 WARN_ON_ONCE(error);
272
Eryu Guanee70daa2017-09-21 11:26:18 -0700273 error = xfs_iomap_write_unwritten(ip, start, length, false);
Christoph Hellwig52785112015-02-16 11:49:23 +1100274 if (error)
275 goto out_drop_iolock;
276 }
277
278 if (update_isize) {
279 error = xfs_pnfs_validate_isize(ip, size);
280 if (error)
281 goto out_drop_iolock;
282 }
283
Christoph Hellwig253f4912016-04-06 09:19:55 +1000284 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
285 if (error)
Christoph Hellwig52785112015-02-16 11:49:23 +1100286 goto out_drop_iolock;
Christoph Hellwig52785112015-02-16 11:49:23 +1100287
288 xfs_ilock(ip, XFS_ILOCK_EXCL);
289 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
290 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
291
292 xfs_setattr_time(ip, iattr);
293 if (update_isize) {
294 i_size_write(inode, iattr->ia_size);
295 ip->i_d.di_size = iattr->ia_size;
296 }
297
298 xfs_trans_set_sync(tp);
Christoph Hellwig70393312015-06-04 13:48:08 +1000299 error = xfs_trans_commit(tp);
Christoph Hellwig52785112015-02-16 11:49:23 +1100300
301out_drop_iolock:
302 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
303 return error;
304}