blob: ddfc2c80af5e1da4870c855ad139e55030f63580 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110020#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_log_format.h"
22#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110025#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_inode_item.h"
David Chinnerdb7a19f2008-04-10 12:22:24 +100027#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000028#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110029#include "xfs_trans_priv.h"
Carlos Maiolinod3a304b2017-08-08 18:21:50 -070030#include "xfs_buf_item.h"
Christoph Hellwig12343512013-12-13 11:00:43 +110031#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33
34kmem_zone_t *xfs_ili_zone; /* inode log item zone */
35
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100036static inline struct xfs_inode_log_item *INODE_ITEM(struct xfs_log_item *lip)
37{
38 return container_of(lip, struct xfs_inode_log_item, ili_item);
39}
40
Christoph Hellwigce9641d2013-12-13 11:00:43 +110041STATIC void
42xfs_inode_item_data_fork_size(
43 struct xfs_inode_log_item *iip,
44 int *nvecs,
45 int *nbytes)
46{
47 struct xfs_inode *ip = iip->ili_inode;
48
49 switch (ip->i_d.di_format) {
50 case XFS_DINODE_FMT_EXTENTS:
51 if ((iip->ili_fields & XFS_ILOG_DEXT) &&
52 ip->i_d.di_nextents > 0 &&
53 ip->i_df.if_bytes > 0) {
54 /* worst case, doesn't subtract delalloc extents */
55 *nbytes += XFS_IFORK_DSIZE(ip);
56 *nvecs += 1;
57 }
58 break;
59 case XFS_DINODE_FMT_BTREE:
60 if ((iip->ili_fields & XFS_ILOG_DBROOT) &&
61 ip->i_df.if_broot_bytes > 0) {
62 *nbytes += ip->i_df.if_broot_bytes;
63 *nvecs += 1;
64 }
65 break;
66 case XFS_DINODE_FMT_LOCAL:
67 if ((iip->ili_fields & XFS_ILOG_DDATA) &&
68 ip->i_df.if_bytes > 0) {
69 *nbytes += roundup(ip->i_df.if_bytes, 4);
70 *nvecs += 1;
71 }
72 break;
73
74 case XFS_DINODE_FMT_DEV:
Christoph Hellwigce9641d2013-12-13 11:00:43 +110075 break;
76 default:
77 ASSERT(0);
78 break;
79 }
80}
81
82STATIC void
83xfs_inode_item_attr_fork_size(
84 struct xfs_inode_log_item *iip,
85 int *nvecs,
86 int *nbytes)
87{
88 struct xfs_inode *ip = iip->ili_inode;
89
90 switch (ip->i_d.di_aformat) {
91 case XFS_DINODE_FMT_EXTENTS:
92 if ((iip->ili_fields & XFS_ILOG_AEXT) &&
93 ip->i_d.di_anextents > 0 &&
94 ip->i_afp->if_bytes > 0) {
95 /* worst case, doesn't subtract unused space */
96 *nbytes += XFS_IFORK_ASIZE(ip);
97 *nvecs += 1;
98 }
99 break;
100 case XFS_DINODE_FMT_BTREE:
101 if ((iip->ili_fields & XFS_ILOG_ABROOT) &&
102 ip->i_afp->if_broot_bytes > 0) {
103 *nbytes += ip->i_afp->if_broot_bytes;
104 *nvecs += 1;
105 }
106 break;
107 case XFS_DINODE_FMT_LOCAL:
108 if ((iip->ili_fields & XFS_ILOG_ADATA) &&
109 ip->i_afp->if_bytes > 0) {
110 *nbytes += roundup(ip->i_afp->if_bytes, 4);
111 *nvecs += 1;
112 }
113 break;
114 default:
115 ASSERT(0);
116 break;
117 }
118}
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/*
121 * This returns the number of iovecs needed to log the given inode item.
122 *
123 * We need one iovec for the inode log format structure, one for the
124 * inode core, and possibly one for the inode data/extents/b-tree root
125 * and one for the inode attribute data/extents/b-tree root.
126 */
Dave Chinner166d1362013-08-12 20:50:04 +1000127STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128xfs_inode_item_size(
Dave Chinner166d1362013-08-12 20:50:04 +1000129 struct xfs_log_item *lip,
130 int *nvecs,
131 int *nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000133 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
134 struct xfs_inode *ip = iip->ili_inode;
Dave Chinner166d1362013-08-12 20:50:04 +1000135
136 *nvecs += 2;
137 *nbytes += sizeof(struct xfs_inode_log_format) +
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100138 xfs_log_dinode_size(ip->i_d.di_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Christoph Hellwigce9641d2013-12-13 11:00:43 +1100140 xfs_inode_item_data_fork_size(iip, nvecs, nbytes);
141 if (XFS_IFORK_Q(ip))
142 xfs_inode_item_attr_fork_size(iip, nvecs, nbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Christoph Hellwig12343512013-12-13 11:00:43 +1100145STATIC void
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100146xfs_inode_item_format_data_fork(
147 struct xfs_inode_log_item *iip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100148 struct xfs_inode_log_format *ilf,
149 struct xfs_log_vec *lv,
150 struct xfs_log_iovec **vecp)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100151{
152 struct xfs_inode *ip = iip->ili_inode;
153 size_t data_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 switch (ip->i_d.di_format) {
156 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000157 iip->ili_fields &=
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700158 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT | XFS_ILOG_DEV);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000159
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000160 if ((iip->ili_fields & XFS_ILOG_DEXT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000161 ip->i_d.di_nextents > 0 &&
162 ip->i_df.if_bytes > 0) {
Christoph Hellwigda776502013-12-13 11:34:04 +1100163 struct xfs_bmbt_rec *p;
164
Eric Sandeen5d829302016-11-08 12:59:42 +1100165 ASSERT(xfs_iext_count(&ip->i_df) > 0);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000166
Christoph Hellwigda776502013-12-13 11:34:04 +1100167 p = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_IEXT);
168 data_bytes = xfs_iextents_copy(ip, p, XFS_DATA_FORK);
169 xlog_finish_iovec(lv, *vecp, data_bytes);
170
171 ASSERT(data_bytes <= ip->i_df.if_bytes);
172
173 ilf->ilf_dsize = data_bytes;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100174 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000175 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000176 iip->ili_fields &= ~XFS_ILOG_DEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000180 iip->ili_fields &=
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700181 ~(XFS_ILOG_DDATA | XFS_ILOG_DEXT | XFS_ILOG_DEV);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000182
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000183 if ((iip->ili_fields & XFS_ILOG_DBROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000184 ip->i_df.if_broot_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 ASSERT(ip->i_df.if_broot != NULL);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100186 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_IBROOT,
Christoph Hellwig12343512013-12-13 11:00:43 +1100187 ip->i_df.if_broot,
188 ip->i_df.if_broot_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100189 ilf->ilf_dsize = ip->i_df.if_broot_bytes;
190 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000191 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000192 ASSERT(!(iip->ili_fields &
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000193 XFS_ILOG_DBROOT));
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000194 iip->ili_fields &= ~XFS_ILOG_DBROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000198 iip->ili_fields &=
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700199 ~(XFS_ILOG_DEXT | XFS_ILOG_DBROOT | XFS_ILOG_DEV);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000200 if ((iip->ili_fields & XFS_ILOG_DDATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000201 ip->i_df.if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /*
203 * Round i_bytes up to a word boundary.
204 * The underlying memory is guaranteed to
205 * to be there by xfs_idata_realloc().
206 */
207 data_bytes = roundup(ip->i_df.if_bytes, 4);
Christoph Hellwig12343512013-12-13 11:00:43 +1100208 ASSERT(ip->i_df.if_real_bytes == 0 ||
Christoph Hellwig30ee0522016-04-06 07:53:29 +1000209 ip->i_df.if_real_bytes >= data_bytes);
Christoph Hellwig12343512013-12-13 11:00:43 +1100210 ASSERT(ip->i_df.if_u1.if_data != NULL);
211 ASSERT(ip->i_d.di_size > 0);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100212 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_ILOCAL,
Christoph Hellwig12343512013-12-13 11:00:43 +1100213 ip->i_df.if_u1.if_data, data_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100214 ilf->ilf_dsize = (unsigned)data_bytes;
215 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000216 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000217 iip->ili_fields &= ~XFS_ILOG_DDATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 case XFS_DINODE_FMT_DEV:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000221 iip->ili_fields &=
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700222 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT | XFS_ILOG_DEXT);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100223 if (iip->ili_fields & XFS_ILOG_DEV)
Christoph Hellwig66f36462017-10-19 11:07:09 -0700224 ilf->ilf_u.ilfu_rdev = sysv_encode_dev(VFS_I(ip)->i_rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 default:
227 ASSERT(0);
228 break;
229 }
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100230}
231
Christoph Hellwig12343512013-12-13 11:00:43 +1100232STATIC void
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100233xfs_inode_item_format_attr_fork(
234 struct xfs_inode_log_item *iip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100235 struct xfs_inode_log_format *ilf,
236 struct xfs_log_vec *lv,
237 struct xfs_log_iovec **vecp)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100238{
239 struct xfs_inode *ip = iip->ili_inode;
240 size_t data_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 switch (ip->i_d.di_aformat) {
243 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000244 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000245 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT);
246
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000247 if ((iip->ili_fields & XFS_ILOG_AEXT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000248 ip->i_d.di_anextents > 0 &&
249 ip->i_afp->if_bytes > 0) {
Christoph Hellwigda776502013-12-13 11:34:04 +1100250 struct xfs_bmbt_rec *p;
251
Eric Sandeen5d829302016-11-08 12:59:42 +1100252 ASSERT(xfs_iext_count(ip->i_afp) ==
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000253 ip->i_d.di_anextents);
Christoph Hellwigda776502013-12-13 11:34:04 +1100254
255 p = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_IATTR_EXT);
256 data_bytes = xfs_iextents_copy(ip, p, XFS_ATTR_FORK);
257 xlog_finish_iovec(lv, *vecp, data_bytes);
258
259 ilf->ilf_asize = data_bytes;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100260 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000261 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000262 iip->ili_fields &= ~XFS_ILOG_AEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
264 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000266 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000267 ~(XFS_ILOG_ADATA | XFS_ILOG_AEXT);
268
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000269 if ((iip->ili_fields & XFS_ILOG_ABROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000270 ip->i_afp->if_broot_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 ASSERT(ip->i_afp->if_broot != NULL);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000272
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100273 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_IATTR_BROOT,
Christoph Hellwig12343512013-12-13 11:00:43 +1100274 ip->i_afp->if_broot,
275 ip->i_afp->if_broot_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100276 ilf->ilf_asize = ip->i_afp->if_broot_bytes;
277 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000278 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000279 iip->ili_fields &= ~XFS_ILOG_ABROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000283 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000284 ~(XFS_ILOG_AEXT | XFS_ILOG_ABROOT);
285
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000286 if ((iip->ili_fields & XFS_ILOG_ADATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000287 ip->i_afp->if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /*
289 * Round i_bytes up to a word boundary.
290 * The underlying memory is guaranteed to
291 * to be there by xfs_idata_realloc().
292 */
293 data_bytes = roundup(ip->i_afp->if_bytes, 4);
Christoph Hellwig12343512013-12-13 11:00:43 +1100294 ASSERT(ip->i_afp->if_real_bytes == 0 ||
Christoph Hellwig30ee0522016-04-06 07:53:29 +1000295 ip->i_afp->if_real_bytes >= data_bytes);
Christoph Hellwig12343512013-12-13 11:00:43 +1100296 ASSERT(ip->i_afp->if_u1.if_data != NULL);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100297 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_IATTR_LOCAL,
Christoph Hellwig12343512013-12-13 11:00:43 +1100298 ip->i_afp->if_u1.if_data,
299 data_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100300 ilf->ilf_asize = (unsigned)data_bytes;
301 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000302 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000303 iip->ili_fields &= ~XFS_ILOG_ADATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
305 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 default:
307 ASSERT(0);
308 break;
309 }
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100310}
311
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100312static void
Dave Chinner39878482016-02-09 16:54:58 +1100313xfs_inode_to_log_dinode(
314 struct xfs_inode *ip,
Dave Chinner93f958f2016-02-09 16:54:58 +1100315 struct xfs_log_dinode *to,
316 xfs_lsn_t lsn)
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100317{
Dave Chinner39878482016-02-09 16:54:58 +1100318 struct xfs_icdinode *from = &ip->i_d;
319 struct inode *inode = VFS_I(ip);
320
Dave Chinner93f958f2016-02-09 16:54:58 +1100321 to->di_magic = XFS_DINODE_MAGIC;
322
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100323 to->di_version = from->di_version;
324 to->di_format = from->di_format;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100325 to->di_uid = from->di_uid;
326 to->di_gid = from->di_gid;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100327 to->di_projid_lo = from->di_projid_lo;
328 to->di_projid_hi = from->di_projid_hi;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100329
Dave Chinner93f958f2016-02-09 16:54:58 +1100330 memset(to->di_pad, 0, sizeof(to->di_pad));
Dave Chinnerfaeb4e42016-02-09 16:54:58 +1100331 memset(to->di_pad3, 0, sizeof(to->di_pad3));
Dave Chinner39878482016-02-09 16:54:58 +1100332 to->di_atime.t_sec = inode->i_atime.tv_sec;
333 to->di_atime.t_nsec = inode->i_atime.tv_nsec;
334 to->di_mtime.t_sec = inode->i_mtime.tv_sec;
335 to->di_mtime.t_nsec = inode->i_mtime.tv_nsec;
336 to->di_ctime.t_sec = inode->i_ctime.tv_sec;
337 to->di_ctime.t_nsec = inode->i_ctime.tv_nsec;
Dave Chinner54d7b5c2016-02-09 16:54:58 +1100338 to->di_nlink = inode->i_nlink;
Dave Chinner9e9a2672016-02-09 16:54:58 +1100339 to->di_gen = inode->i_generation;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100340 to->di_mode = inode->i_mode;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100341
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100342 to->di_size = from->di_size;
343 to->di_nblocks = from->di_nblocks;
344 to->di_extsize = from->di_extsize;
345 to->di_nextents = from->di_nextents;
346 to->di_anextents = from->di_anextents;
347 to->di_forkoff = from->di_forkoff;
348 to->di_aformat = from->di_aformat;
349 to->di_dmevmask = from->di_dmevmask;
350 to->di_dmstate = from->di_dmstate;
351 to->di_flags = from->di_flags;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100352
Dave Chinner20413e372017-10-09 11:37:22 -0700353 /* log a dummy value to ensure log structure is fully initialised */
354 to->di_next_unlinked = NULLAGINO;
355
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100356 if (from->di_version == 3) {
Dave Chinner83e06f22016-02-09 16:54:58 +1100357 to->di_changecount = inode->i_version;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100358 to->di_crtime.t_sec = from->di_crtime.t_sec;
359 to->di_crtime.t_nsec = from->di_crtime.t_nsec;
360 to->di_flags2 = from->di_flags2;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700361 to->di_cowextsize = from->di_cowextsize;
Dave Chinner93f958f2016-02-09 16:54:58 +1100362 to->di_ino = ip->i_ino;
363 to->di_lsn = lsn;
364 memset(to->di_pad2, 0, sizeof(to->di_pad2));
365 uuid_copy(&to->di_uuid, &ip->i_mount->m_sb.sb_meta_uuid);
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100366 to->di_flushiter = 0;
367 } else {
368 to->di_flushiter = from->di_flushiter;
369 }
370}
371
372/*
373 * Format the inode core. Current timestamp data is only in the VFS inode
374 * fields, so we need to grab them from there. Hence rather than just copying
375 * the XFS inode core structure, format the fields directly into the iovec.
376 */
377static void
378xfs_inode_item_format_core(
379 struct xfs_inode *ip,
380 struct xfs_log_vec *lv,
381 struct xfs_log_iovec **vecp)
382{
383 struct xfs_log_dinode *dic;
384
385 dic = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_ICORE);
Dave Chinner93f958f2016-02-09 16:54:58 +1100386 xfs_inode_to_log_dinode(ip, dic, ip->i_itemp->ili_item.li_lsn);
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100387 xlog_finish_iovec(lv, *vecp, xfs_log_dinode_size(ip->i_d.di_version));
388}
389
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100390/*
391 * This is called to fill in the vector of log iovecs for the given inode
392 * log item. It fills the first item with an inode log format structure,
393 * the second with the on-disk inode structure, and a possible third and/or
394 * fourth with the inode data/extents/b-tree root and inode attributes
395 * data/extents/b-tree root.
Dave Chinner20413e372017-10-09 11:37:22 -0700396 *
397 * Note: Always use the 64 bit inode log format structure so we don't
398 * leave an uninitialised hole in the format item on 64 bit systems. Log
399 * recovery on 32 bit systems handles this just fine, so there's no reason
400 * for not using an initialising the properly padded structure all the time.
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100401 */
402STATIC void
403xfs_inode_item_format(
404 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100405 struct xfs_log_vec *lv)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100406{
407 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
408 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100409 struct xfs_log_iovec *vecp = NULL;
Dave Chinner20413e372017-10-09 11:37:22 -0700410 struct xfs_inode_log_format *ilf;
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100411
Dave Chinner263997a2014-05-20 07:46:40 +1000412 ASSERT(ip->i_d.di_version > 1);
413
Christoph Hellwig2f251292013-12-13 11:34:05 +1100414 ilf = xlog_prepare_iovec(lv, &vecp, XLOG_REG_TYPE_IFORMAT);
415 ilf->ilf_type = XFS_LI_INODE;
416 ilf->ilf_ino = ip->i_ino;
417 ilf->ilf_blkno = ip->i_imap.im_blkno;
418 ilf->ilf_len = ip->i_imap.im_len;
419 ilf->ilf_boffset = ip->i_imap.im_boffset;
420 ilf->ilf_fields = XFS_ILOG_CORE;
421 ilf->ilf_size = 2; /* format + core */
Dave Chinner20413e372017-10-09 11:37:22 -0700422
423 /*
424 * make sure we don't leak uninitialised data into the log in the case
425 * when we don't log every field in the inode.
426 */
427 ilf->ilf_dsize = 0;
428 ilf->ilf_asize = 0;
429 ilf->ilf_pad = 0;
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700430 memset(&ilf->ilf_u, 0, sizeof(ilf->ilf_u));
Dave Chinner20413e372017-10-09 11:37:22 -0700431
432 xlog_finish_iovec(lv, vecp, sizeof(*ilf));
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100433
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100434 xfs_inode_item_format_core(ip, lv, &vecp);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100435 xfs_inode_item_format_data_fork(iip, ilf, lv, &vecp);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100436 if (XFS_IFORK_Q(ip)) {
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100437 xfs_inode_item_format_attr_fork(iip, ilf, lv, &vecp);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100438 } else {
439 iip->ili_fields &=
440 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
441 }
442
Christoph Hellwig2f251292013-12-13 11:34:05 +1100443 /* update the format with the exact fields we actually logged */
444 ilf->ilf_fields |= (iip->ili_fields & ~XFS_ILOG_TIMESTAMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447/*
448 * This is called to pin the inode associated with the inode log
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000449 * item in memory so it cannot be written out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 */
451STATIC void
452xfs_inode_item_pin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000453 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000455 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000456
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000457 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
458
459 trace_xfs_inode_pin(ip, _RET_IP_);
460 atomic_inc(&ip->i_pincount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
463
464/*
465 * This is called to unpin the inode associated with the inode log
466 * item which was previously pinned with a call to xfs_inode_item_pin().
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000467 *
468 * Also wake up anyone in xfs_iunpin_wait() if the count goes to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470STATIC void
471xfs_inode_item_unpin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000472 struct xfs_log_item *lip,
Christoph Hellwig9412e312010-06-23 18:11:15 +1000473 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000475 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000476
Dave Chinner4aaf15d2010-03-08 11:24:07 +1100477 trace_xfs_inode_unpin(ip, _RET_IP_);
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000478 ASSERT(atomic_read(&ip->i_pincount) > 0);
479 if (atomic_dec_and_test(&ip->i_pincount))
Christoph Hellwigf392e632011-12-18 20:00:10 +0000480 wake_up_bit(&ip->i_flags, __XFS_IPINNED_BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700483/*
484 * Callback used to mark a buffer with XFS_LI_FAILED when items in the buffer
485 * have been failed during writeback
486 *
487 * This informs the AIL that the inode is already flush locked on the next push,
488 * and acquires a hold on the buffer to ensure that it isn't reclaimed before
489 * dirty data makes it to disk.
490 */
491STATIC void
492xfs_inode_item_error(
493 struct xfs_log_item *lip,
494 struct xfs_buf *bp)
495{
496 ASSERT(xfs_isiflocked(INODE_ITEM(lip)->ili_inode));
497 xfs_set_li_failed(lip, bp);
498}
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000501xfs_inode_item_push(
502 struct xfs_log_item *lip,
503 struct list_head *buffer_list)
Eryu Guan6e3e6d52016-04-06 09:47:21 +1000504 __releases(&lip->li_ailp->xa_lock)
505 __acquires(&lip->li_ailp->xa_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000507 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
508 struct xfs_inode *ip = iip->ili_inode;
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700509 struct xfs_buf *bp = lip->li_buf;
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000510 uint rval = XFS_ITEM_SUCCESS;
511 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000513 if (xfs_ipincount(ip) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700516 /*
517 * The buffer containing this item failed to be written back
518 * previously. Resubmit the buffer for IO.
519 */
520 if (lip->li_flags & XFS_LI_FAILED) {
521 if (!xfs_buf_trylock(bp))
522 return XFS_ITEM_LOCKED;
523
Carlos Maiolino643c8c02018-01-24 13:38:49 -0800524 if (!xfs_buf_resubmit_failed_buffers(bp, buffer_list))
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700525 rval = XFS_ITEM_FLUSHING;
526
527 xfs_buf_unlock(bp);
528 return rval;
529 }
530
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000531 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return XFS_ITEM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Christoph Hellwig4c468192012-04-23 15:58:36 +1000534 /*
535 * Re-check the pincount now that we stabilized the value by
536 * taking the ilock.
537 */
538 if (xfs_ipincount(ip) > 0) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000539 rval = XFS_ITEM_PINNED;
540 goto out_unlock;
Christoph Hellwig4c468192012-04-23 15:58:36 +1000541 }
542
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000543 /*
Brian Foster9a3a5da2012-06-11 10:39:43 -0400544 * Stale inode items should force out the iclog.
545 */
546 if (ip->i_flags & XFS_ISTALE) {
547 rval = XFS_ITEM_PINNED;
548 goto out_unlock;
549 }
550
551 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000552 * Someone else is already flushing the inode. Nothing we can do
553 * here but wait for the flush to finish and remove the item from
554 * the AIL.
555 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (!xfs_iflock_nowait(ip)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000557 rval = XFS_ITEM_FLUSHING;
558 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
560
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000561 ASSERT(iip->ili_fields != 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
562 ASSERT(iip->ili_logged == 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
563
564 spin_unlock(&lip->li_ailp->xa_lock);
565
566 error = xfs_iflush(ip, &bp);
567 if (!error) {
568 if (!xfs_buf_delwri_queue(bp, buffer_list))
569 rval = XFS_ITEM_FLUSHING;
570 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000572
573 spin_lock(&lip->li_ailp->xa_lock);
574out_unlock:
575 xfs_iunlock(ip, XFS_ILOCK_SHARED);
576 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
579/*
580 * Unlock the inode associated with the inode log item.
581 * Clear the fields of the inode and inode log item that
582 * are specific to the current transaction. If the
583 * hold flags is set, do not unlock the inode.
584 */
585STATIC void
586xfs_inode_item_unlock(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000587 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000589 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
590 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig898621d2010-06-24 11:36:58 +1000591 unsigned short lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200593 ASSERT(ip->i_itemp != NULL);
594 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Christoph Hellwig898621d2010-06-24 11:36:58 +1000596 lock_flags = iip->ili_lock_flags;
597 iip->ili_lock_flags = 0;
Christoph Hellwigddc34152011-09-19 15:00:54 +0000598 if (lock_flags)
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200599 xfs_iunlock(ip, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
602/*
Dave Chinnerde25c182010-11-30 15:15:46 +1100603 * This is called to find out where the oldest active copy of the inode log
604 * item in the on disk log resides now that the last log write of it completed
605 * at the given lsn. Since we always re-log all dirty data in an inode, the
606 * latest copy in the on disk log is the only one that matters. Therefore,
607 * simply return the given lsn.
608 *
609 * If the inode has been marked stale because the cluster is being freed, we
610 * don't want to (re-)insert this inode into the AIL. There is a race condition
611 * where the cluster buffer may be unpinned before the inode is inserted into
612 * the AIL during transaction committed processing. If the buffer is unpinned
613 * before the inode item has been committed and inserted, then it is possible
Dave Chinner1316d4d2011-07-04 05:27:36 +0000614 * for the buffer to be written and IO completes before the inode is inserted
Dave Chinnerde25c182010-11-30 15:15:46 +1100615 * into the AIL. In that case, we'd be inserting a clean, stale inode into the
616 * AIL which will never get removed. It will, however, get reclaimed which
617 * triggers an assert in xfs_inode_free() complaining about freein an inode
618 * still in the AIL.
619 *
Dave Chinner1316d4d2011-07-04 05:27:36 +0000620 * To avoid this, just unpin the inode directly and return a LSN of -1 so the
621 * transaction committed code knows that it does not need to do any further
622 * processing on the item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624STATIC xfs_lsn_t
625xfs_inode_item_committed(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000626 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 xfs_lsn_t lsn)
628{
Dave Chinnerde25c182010-11-30 15:15:46 +1100629 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
630 struct xfs_inode *ip = iip->ili_inode;
631
Dave Chinner1316d4d2011-07-04 05:27:36 +0000632 if (xfs_iflags_test(ip, XFS_ISTALE)) {
633 xfs_inode_item_unpin(lip, 0);
634 return -1;
635 }
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000636 return lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
639/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 * XXX rcc - this one really has to do something. Probably needs
641 * to stamp in a new field in the incore inode.
642 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643STATIC void
644xfs_inode_item_committing(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000645 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 xfs_lsn_t lsn)
647{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000648 INODE_ITEM(lip)->ili_last_lsn = lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
651/*
652 * This is the ops vector shared by all buf log items.
653 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000654static const struct xfs_item_ops xfs_inode_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000655 .iop_size = xfs_inode_item_size,
656 .iop_format = xfs_inode_item_format,
657 .iop_pin = xfs_inode_item_pin,
658 .iop_unpin = xfs_inode_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000659 .iop_unlock = xfs_inode_item_unlock,
660 .iop_committed = xfs_inode_item_committed,
661 .iop_push = xfs_inode_item_push,
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700662 .iop_committing = xfs_inode_item_committing,
663 .iop_error = xfs_inode_item_error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664};
665
666
667/*
668 * Initialize the inode log item for a newly allocated (in-core) inode.
669 */
670void
671xfs_inode_item_init(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000672 struct xfs_inode *ip,
673 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000675 struct xfs_inode_log_item *iip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 ASSERT(ip->i_itemp == NULL);
678 iip = ip->i_itemp = kmem_zone_zalloc(xfs_ili_zone, KM_SLEEP);
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 iip->ili_inode = ip;
Dave Chinner43f5efc2010-03-23 10:10:00 +1100681 xfs_log_item_init(mp, &iip->ili_item, XFS_LI_INODE,
682 &xfs_inode_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
685/*
686 * Free the inode log item and any memory hanging off of it.
687 */
688void
689xfs_inode_item_destroy(
690 xfs_inode_t *ip)
691{
Dave Chinnerb1c5ebb2016-07-22 09:52:35 +1000692 kmem_free(ip->i_itemp->ili_item.li_lv_shadow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 kmem_zone_free(xfs_ili_zone, ip->i_itemp);
694}
695
696
697/*
698 * This is the inode flushing I/O completion routine. It is called
699 * from interrupt level when the buffer containing the inode is
700 * flushed to disk. It is responsible for removing the inode item
701 * from the AIL if it has not been re-logged, and unlocking the inode's
702 * flush lock.
Dave Chinner30136832010-12-20 12:03:17 +1100703 *
704 * To reduce AIL lock traffic as much as possible, we scan the buffer log item
705 * list for other inodes that will run this function. We remove them from the
706 * buffer list so we can process all the inode IO completions in one AIL lock
707 * traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709void
710xfs_iflush_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000711 struct xfs_buf *bp,
712 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Dave Chinner30136832010-12-20 12:03:17 +1100714 struct xfs_inode_log_item *iip;
Carlos Maiolino643c8c02018-01-24 13:38:49 -0800715 struct xfs_log_item *blip, *n;
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000716 struct xfs_ail *ailp = lip->li_ailp;
Dave Chinner30136832010-12-20 12:03:17 +1100717 int need_ail = 0;
Carlos Maiolino643c8c02018-01-24 13:38:49 -0800718 LIST_HEAD(tmp);
Dave Chinner30136832010-12-20 12:03:17 +1100719
720 /*
721 * Scan the buffer IO completions for other inodes being completed and
722 * attach them to the current inode log item.
723 */
Carlos Maiolino643c8c02018-01-24 13:38:49 -0800724
725 list_add_tail(&lip->li_bio_list, &tmp);
726
727 list_for_each_entry_safe(blip, n, &bp->b_li_list, li_bio_list) {
728 if (lip->li_cb != xfs_iflush_done)
Dave Chinner30136832010-12-20 12:03:17 +1100729 continue;
Dave Chinner30136832010-12-20 12:03:17 +1100730
Carlos Maiolino643c8c02018-01-24 13:38:49 -0800731 list_move_tail(&blip->li_bio_list, &tmp);
Dave Chinner30136832010-12-20 12:03:17 +1100732 /*
733 * while we have the item, do the unlocked check for needing
734 * the AIL lock.
735 */
736 iip = INODE_ITEM(blip);
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700737 if ((iip->ili_logged && blip->li_lsn == iip->ili_flush_lsn) ||
Carlos Maiolino842f6e92017-09-22 11:47:46 -0700738 (blip->li_flags & XFS_LI_FAILED))
Dave Chinner30136832010-12-20 12:03:17 +1100739 need_ail++;
Dave Chinner30136832010-12-20 12:03:17 +1100740 }
741
742 /* make sure we capture the state of the initial inode. */
743 iip = INODE_ITEM(lip);
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700744 if ((iip->ili_logged && lip->li_lsn == iip->ili_flush_lsn) ||
745 lip->li_flags & XFS_LI_FAILED)
Dave Chinner30136832010-12-20 12:03:17 +1100746 need_ail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 /*
749 * We only want to pull the item from the AIL if it is
750 * actually there and its location in the log has not
751 * changed since we started the flush. Thus, we only bother
752 * if the ili_logged flag is set and the inode's lsn has not
753 * changed. First we check the lsn outside
754 * the lock since it's cheaper, and then we recheck while
755 * holding the lock before removing the inode from the AIL.
756 */
Dave Chinner30136832010-12-20 12:03:17 +1100757 if (need_ail) {
Christoph Hellwig27af1bb2017-04-21 11:24:42 -0700758 bool mlip_changed = false;
759
760 /* this is an opencoded batch version of xfs_trans_ail_delete */
David Chinner783a2f62008-10-30 17:39:58 +1100761 spin_lock(&ailp->xa_lock);
Carlos Maiolino643c8c02018-01-24 13:38:49 -0800762 list_for_each_entry(blip, &tmp, li_bio_list) {
Christoph Hellwig27af1bb2017-04-21 11:24:42 -0700763 if (INODE_ITEM(blip)->ili_logged &&
764 blip->li_lsn == INODE_ITEM(blip)->ili_flush_lsn)
765 mlip_changed |= xfs_ail_delete_one(ailp, blip);
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700766 else {
767 xfs_clear_li_failed(blip);
768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Christoph Hellwig27af1bb2017-04-21 11:24:42 -0700771 if (mlip_changed) {
772 if (!XFS_FORCED_SHUTDOWN(ailp->xa_mount))
773 xlog_assign_tail_lsn_locked(ailp->xa_mount);
774 if (list_empty(&ailp->xa_ail))
775 wake_up_all(&ailp->xa_empty);
776 }
777 spin_unlock(&ailp->xa_lock);
778
779 if (mlip_changed)
780 xfs_log_space_wake(ailp->xa_mount);
781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 /*
Dave Chinner30136832010-12-20 12:03:17 +1100784 * clean up and unlock the flush lock now we are done. We can clear the
785 * ili_last_fields bits now that we know that the data corresponding to
786 * them is safely on disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 */
Carlos Maiolino643c8c02018-01-24 13:38:49 -0800788 list_for_each_entry_safe(blip, n, &tmp, li_bio_list) {
789 list_del_init(&blip->li_bio_list);
Dave Chinner30136832010-12-20 12:03:17 +1100790 iip = INODE_ITEM(blip);
791 iip->ili_logged = 0;
792 iip->ili_last_fields = 0;
793 xfs_ifunlock(iip->ili_inode);
794 }
Carlos Maiolino643c8c02018-01-24 13:38:49 -0800795 list_del(&tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
798/*
Dave Chinner04913fd2012-04-23 15:58:41 +1000799 * This is the inode flushing abort routine. It is called from xfs_iflush when
800 * the filesystem is shutting down to clean up the inode state. It is
801 * responsible for removing the inode item from the AIL if it has not been
802 * re-logged, and unlocking the inode's flush lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 */
804void
805xfs_iflush_abort(
Dave Chinner04913fd2012-04-23 15:58:41 +1000806 xfs_inode_t *ip,
807 bool stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
David Chinner783a2f62008-10-30 17:39:58 +1100809 xfs_inode_log_item_t *iip = ip->i_itemp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (iip) {
812 if (iip->ili_item.li_flags & XFS_LI_IN_AIL) {
Brian Foster146e54b2015-08-19 10:01:08 +1000813 xfs_trans_ail_remove(&iip->ili_item,
814 stale ? SHUTDOWN_LOG_IO_ERROR :
Dave Chinner04913fd2012-04-23 15:58:41 +1000815 SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 }
817 iip->ili_logged = 0;
818 /*
819 * Clear the ili_last_fields bits now that we know that the
820 * data corresponding to them is safely on disk.
821 */
822 iip->ili_last_fields = 0;
823 /*
824 * Clear the inode logging fields so no more flushes are
825 * attempted.
826 */
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000827 iip->ili_fields = 0;
Dave Chinnerfc0561c2015-11-03 13:14:59 +1100828 iip->ili_fsync_fields = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
830 /*
831 * Release the inode's flush lock since we're done with it.
832 */
833 xfs_ifunlock(ip);
834}
835
836void
837xfs_istale_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000838 struct xfs_buf *bp,
839 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
Dave Chinner04913fd2012-04-23 15:58:41 +1000841 xfs_iflush_abort(INODE_ITEM(lip)->ili_inode, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
Tim Shimmin6d192a92006-06-09 14:55:38 +1000843
844/*
Dave Chinner20413e372017-10-09 11:37:22 -0700845 * convert an xfs_inode_log_format struct from the old 32 bit version
846 * (which can have different field alignments) to the native 64 bit version
Tim Shimmin6d192a92006-06-09 14:55:38 +1000847 */
848int
849xfs_inode_item_format_convert(
Dave Chinner20413e372017-10-09 11:37:22 -0700850 struct xfs_log_iovec *buf,
851 struct xfs_inode_log_format *in_f)
Tim Shimmin6d192a92006-06-09 14:55:38 +1000852{
Dave Chinner20413e372017-10-09 11:37:22 -0700853 struct xfs_inode_log_format_32 *in_f32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000854
Dave Chinner20413e372017-10-09 11:37:22 -0700855 if (buf->i_len != sizeof(*in_f32))
856 return -EFSCORRUPTED;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000857
Dave Chinner20413e372017-10-09 11:37:22 -0700858 in_f->ilf_type = in_f32->ilf_type;
859 in_f->ilf_size = in_f32->ilf_size;
860 in_f->ilf_fields = in_f32->ilf_fields;
861 in_f->ilf_asize = in_f32->ilf_asize;
862 in_f->ilf_dsize = in_f32->ilf_dsize;
863 in_f->ilf_ino = in_f32->ilf_ino;
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700864 memcpy(&in_f->ilf_u, &in_f32->ilf_u, sizeof(in_f->ilf_u));
Dave Chinner20413e372017-10-09 11:37:22 -0700865 in_f->ilf_blkno = in_f32->ilf_blkno;
866 in_f->ilf_len = in_f32->ilf_len;
867 in_f->ilf_boffset = in_f32->ilf_boffset;
868 return 0;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000869}