blob: bd60ad31317300dca6fd28f0ae193635ae336be2 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 ASSERT(ip->i_df.if_u1.if_extents != NULL);
Eric Sandeen5d829302016-11-08 12:59:42 +1100166 ASSERT(xfs_iext_count(&ip->i_df) > 0);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000167
Christoph Hellwigda776502013-12-13 11:34:04 +1100168 p = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_IEXT);
169 data_bytes = xfs_iextents_copy(ip, p, XFS_DATA_FORK);
170 xlog_finish_iovec(lv, *vecp, data_bytes);
171
172 ASSERT(data_bytes <= ip->i_df.if_bytes);
173
174 ilf->ilf_dsize = data_bytes;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100175 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000176 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000177 iip->ili_fields &= ~XFS_ILOG_DEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000181 iip->ili_fields &=
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700182 ~(XFS_ILOG_DDATA | XFS_ILOG_DEXT | XFS_ILOG_DEV);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000183
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000184 if ((iip->ili_fields & XFS_ILOG_DBROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000185 ip->i_df.if_broot_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 ASSERT(ip->i_df.if_broot != NULL);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100187 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_IBROOT,
Christoph Hellwig12343512013-12-13 11:00:43 +1100188 ip->i_df.if_broot,
189 ip->i_df.if_broot_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100190 ilf->ilf_dsize = ip->i_df.if_broot_bytes;
191 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000192 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000193 ASSERT(!(iip->ili_fields &
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000194 XFS_ILOG_DBROOT));
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000195 iip->ili_fields &= ~XFS_ILOG_DBROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000199 iip->ili_fields &=
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700200 ~(XFS_ILOG_DEXT | XFS_ILOG_DBROOT | XFS_ILOG_DEV);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000201 if ((iip->ili_fields & XFS_ILOG_DDATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000202 ip->i_df.if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 /*
204 * Round i_bytes up to a word boundary.
205 * The underlying memory is guaranteed to
206 * to be there by xfs_idata_realloc().
207 */
208 data_bytes = roundup(ip->i_df.if_bytes, 4);
Christoph Hellwig12343512013-12-13 11:00:43 +1100209 ASSERT(ip->i_df.if_real_bytes == 0 ||
Christoph Hellwig30ee0522016-04-06 07:53:29 +1000210 ip->i_df.if_real_bytes >= data_bytes);
Christoph Hellwig12343512013-12-13 11:00:43 +1100211 ASSERT(ip->i_df.if_u1.if_data != NULL);
212 ASSERT(ip->i_d.di_size > 0);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100213 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_ILOCAL,
Christoph Hellwig12343512013-12-13 11:00:43 +1100214 ip->i_df.if_u1.if_data, data_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100215 ilf->ilf_dsize = (unsigned)data_bytes;
216 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000217 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000218 iip->ili_fields &= ~XFS_ILOG_DDATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
220 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 case XFS_DINODE_FMT_DEV:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000222 iip->ili_fields &=
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700223 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT | XFS_ILOG_DEXT);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100224 if (iip->ili_fields & XFS_ILOG_DEV)
225 ilf->ilf_u.ilfu_rdev = ip->i_df.if_u2.if_rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 default:
228 ASSERT(0);
229 break;
230 }
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100231}
232
Christoph Hellwig12343512013-12-13 11:00:43 +1100233STATIC void
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100234xfs_inode_item_format_attr_fork(
235 struct xfs_inode_log_item *iip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100236 struct xfs_inode_log_format *ilf,
237 struct xfs_log_vec *lv,
238 struct xfs_log_iovec **vecp)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100239{
240 struct xfs_inode *ip = iip->ili_inode;
241 size_t data_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 switch (ip->i_d.di_aformat) {
244 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000245 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000246 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT);
247
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000248 if ((iip->ili_fields & XFS_ILOG_AEXT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000249 ip->i_d.di_anextents > 0 &&
250 ip->i_afp->if_bytes > 0) {
Christoph Hellwigda776502013-12-13 11:34:04 +1100251 struct xfs_bmbt_rec *p;
252
Eric Sandeen5d829302016-11-08 12:59:42 +1100253 ASSERT(xfs_iext_count(ip->i_afp) ==
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000254 ip->i_d.di_anextents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 ASSERT(ip->i_afp->if_u1.if_extents != NULL);
Christoph Hellwigda776502013-12-13 11:34:04 +1100256
257 p = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_IATTR_EXT);
258 data_bytes = xfs_iextents_copy(ip, p, XFS_ATTR_FORK);
259 xlog_finish_iovec(lv, *vecp, data_bytes);
260
261 ilf->ilf_asize = data_bytes;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100262 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000263 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000264 iip->ili_fields &= ~XFS_ILOG_AEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
266 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000268 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000269 ~(XFS_ILOG_ADATA | XFS_ILOG_AEXT);
270
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000271 if ((iip->ili_fields & XFS_ILOG_ABROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000272 ip->i_afp->if_broot_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 ASSERT(ip->i_afp->if_broot != NULL);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000274
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100275 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_IATTR_BROOT,
Christoph Hellwig12343512013-12-13 11:00:43 +1100276 ip->i_afp->if_broot,
277 ip->i_afp->if_broot_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100278 ilf->ilf_asize = ip->i_afp->if_broot_bytes;
279 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000280 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000281 iip->ili_fields &= ~XFS_ILOG_ABROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
283 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000285 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000286 ~(XFS_ILOG_AEXT | XFS_ILOG_ABROOT);
287
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000288 if ((iip->ili_fields & XFS_ILOG_ADATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000289 ip->i_afp->if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 /*
291 * Round i_bytes up to a word boundary.
292 * The underlying memory is guaranteed to
293 * to be there by xfs_idata_realloc().
294 */
295 data_bytes = roundup(ip->i_afp->if_bytes, 4);
Christoph Hellwig12343512013-12-13 11:00:43 +1100296 ASSERT(ip->i_afp->if_real_bytes == 0 ||
Christoph Hellwig30ee0522016-04-06 07:53:29 +1000297 ip->i_afp->if_real_bytes >= data_bytes);
Christoph Hellwig12343512013-12-13 11:00:43 +1100298 ASSERT(ip->i_afp->if_u1.if_data != NULL);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100299 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_IATTR_LOCAL,
Christoph Hellwig12343512013-12-13 11:00:43 +1100300 ip->i_afp->if_u1.if_data,
301 data_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100302 ilf->ilf_asize = (unsigned)data_bytes;
303 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000304 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000305 iip->ili_fields &= ~XFS_ILOG_ADATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 default:
309 ASSERT(0);
310 break;
311 }
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100312}
313
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100314static void
Dave Chinner39878482016-02-09 16:54:58 +1100315xfs_inode_to_log_dinode(
316 struct xfs_inode *ip,
Dave Chinner93f958f2016-02-09 16:54:58 +1100317 struct xfs_log_dinode *to,
318 xfs_lsn_t lsn)
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100319{
Dave Chinner39878482016-02-09 16:54:58 +1100320 struct xfs_icdinode *from = &ip->i_d;
321 struct inode *inode = VFS_I(ip);
322
Dave Chinner93f958f2016-02-09 16:54:58 +1100323 to->di_magic = XFS_DINODE_MAGIC;
324
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100325 to->di_version = from->di_version;
326 to->di_format = from->di_format;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100327 to->di_uid = from->di_uid;
328 to->di_gid = from->di_gid;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100329 to->di_projid_lo = from->di_projid_lo;
330 to->di_projid_hi = from->di_projid_hi;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100331
Dave Chinner93f958f2016-02-09 16:54:58 +1100332 memset(to->di_pad, 0, sizeof(to->di_pad));
Dave Chinnerfaeb4e42016-02-09 16:54:58 +1100333 memset(to->di_pad3, 0, sizeof(to->di_pad3));
Dave Chinner39878482016-02-09 16:54:58 +1100334 to->di_atime.t_sec = inode->i_atime.tv_sec;
335 to->di_atime.t_nsec = inode->i_atime.tv_nsec;
336 to->di_mtime.t_sec = inode->i_mtime.tv_sec;
337 to->di_mtime.t_nsec = inode->i_mtime.tv_nsec;
338 to->di_ctime.t_sec = inode->i_ctime.tv_sec;
339 to->di_ctime.t_nsec = inode->i_ctime.tv_nsec;
Dave Chinner54d7b5c2016-02-09 16:54:58 +1100340 to->di_nlink = inode->i_nlink;
Dave Chinner9e9a2672016-02-09 16:54:58 +1100341 to->di_gen = inode->i_generation;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100342 to->di_mode = inode->i_mode;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100343
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100344 to->di_size = from->di_size;
345 to->di_nblocks = from->di_nblocks;
346 to->di_extsize = from->di_extsize;
347 to->di_nextents = from->di_nextents;
348 to->di_anextents = from->di_anextents;
349 to->di_forkoff = from->di_forkoff;
350 to->di_aformat = from->di_aformat;
351 to->di_dmevmask = from->di_dmevmask;
352 to->di_dmstate = from->di_dmstate;
353 to->di_flags = from->di_flags;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100354
Dave Chinner20413e372017-10-09 11:37:22 -0700355 /* log a dummy value to ensure log structure is fully initialised */
356 to->di_next_unlinked = NULLAGINO;
357
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100358 if (from->di_version == 3) {
Dave Chinner83e06f22016-02-09 16:54:58 +1100359 to->di_changecount = inode->i_version;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100360 to->di_crtime.t_sec = from->di_crtime.t_sec;
361 to->di_crtime.t_nsec = from->di_crtime.t_nsec;
362 to->di_flags2 = from->di_flags2;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700363 to->di_cowextsize = from->di_cowextsize;
Dave Chinner93f958f2016-02-09 16:54:58 +1100364 to->di_ino = ip->i_ino;
365 to->di_lsn = lsn;
366 memset(to->di_pad2, 0, sizeof(to->di_pad2));
367 uuid_copy(&to->di_uuid, &ip->i_mount->m_sb.sb_meta_uuid);
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100368 to->di_flushiter = 0;
369 } else {
370 to->di_flushiter = from->di_flushiter;
371 }
372}
373
374/*
375 * Format the inode core. Current timestamp data is only in the VFS inode
376 * fields, so we need to grab them from there. Hence rather than just copying
377 * the XFS inode core structure, format the fields directly into the iovec.
378 */
379static void
380xfs_inode_item_format_core(
381 struct xfs_inode *ip,
382 struct xfs_log_vec *lv,
383 struct xfs_log_iovec **vecp)
384{
385 struct xfs_log_dinode *dic;
386
387 dic = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_ICORE);
Dave Chinner93f958f2016-02-09 16:54:58 +1100388 xfs_inode_to_log_dinode(ip, dic, ip->i_itemp->ili_item.li_lsn);
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100389 xlog_finish_iovec(lv, *vecp, xfs_log_dinode_size(ip->i_d.di_version));
390}
391
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100392/*
393 * This is called to fill in the vector of log iovecs for the given inode
394 * log item. It fills the first item with an inode log format structure,
395 * the second with the on-disk inode structure, and a possible third and/or
396 * fourth with the inode data/extents/b-tree root and inode attributes
397 * data/extents/b-tree root.
Dave Chinner20413e372017-10-09 11:37:22 -0700398 *
399 * Note: Always use the 64 bit inode log format structure so we don't
400 * leave an uninitialised hole in the format item on 64 bit systems. Log
401 * recovery on 32 bit systems handles this just fine, so there's no reason
402 * for not using an initialising the properly padded structure all the time.
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100403 */
404STATIC void
405xfs_inode_item_format(
406 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100407 struct xfs_log_vec *lv)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100408{
409 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
410 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100411 struct xfs_log_iovec *vecp = NULL;
Dave Chinner20413e372017-10-09 11:37:22 -0700412 struct xfs_inode_log_format *ilf;
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100413
Dave Chinner263997a2014-05-20 07:46:40 +1000414 ASSERT(ip->i_d.di_version > 1);
415
Christoph Hellwig2f251292013-12-13 11:34:05 +1100416 ilf = xlog_prepare_iovec(lv, &vecp, XLOG_REG_TYPE_IFORMAT);
417 ilf->ilf_type = XFS_LI_INODE;
418 ilf->ilf_ino = ip->i_ino;
419 ilf->ilf_blkno = ip->i_imap.im_blkno;
420 ilf->ilf_len = ip->i_imap.im_len;
421 ilf->ilf_boffset = ip->i_imap.im_boffset;
422 ilf->ilf_fields = XFS_ILOG_CORE;
423 ilf->ilf_size = 2; /* format + core */
Dave Chinner20413e372017-10-09 11:37:22 -0700424
425 /*
426 * make sure we don't leak uninitialised data into the log in the case
427 * when we don't log every field in the inode.
428 */
429 ilf->ilf_dsize = 0;
430 ilf->ilf_asize = 0;
431 ilf->ilf_pad = 0;
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700432 memset(&ilf->ilf_u, 0, sizeof(ilf->ilf_u));
Dave Chinner20413e372017-10-09 11:37:22 -0700433
434 xlog_finish_iovec(lv, vecp, sizeof(*ilf));
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100435
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100436 xfs_inode_item_format_core(ip, lv, &vecp);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100437 xfs_inode_item_format_data_fork(iip, ilf, lv, &vecp);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100438 if (XFS_IFORK_Q(ip)) {
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100439 xfs_inode_item_format_attr_fork(iip, ilf, lv, &vecp);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100440 } else {
441 iip->ili_fields &=
442 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
443 }
444
Christoph Hellwig2f251292013-12-13 11:34:05 +1100445 /* update the format with the exact fields we actually logged */
446 ilf->ilf_fields |= (iip->ili_fields & ~XFS_ILOG_TIMESTAMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449/*
450 * This is called to pin the inode associated with the inode log
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000451 * item in memory so it cannot be written out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 */
453STATIC void
454xfs_inode_item_pin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000455 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000457 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000458
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000459 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
460
461 trace_xfs_inode_pin(ip, _RET_IP_);
462 atomic_inc(&ip->i_pincount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
465
466/*
467 * This is called to unpin the inode associated with the inode log
468 * item which was previously pinned with a call to xfs_inode_item_pin().
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000469 *
470 * Also wake up anyone in xfs_iunpin_wait() if the count goes to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472STATIC void
473xfs_inode_item_unpin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000474 struct xfs_log_item *lip,
Christoph Hellwig9412e312010-06-23 18:11:15 +1000475 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000477 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000478
Dave Chinner4aaf15d2010-03-08 11:24:07 +1100479 trace_xfs_inode_unpin(ip, _RET_IP_);
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000480 ASSERT(atomic_read(&ip->i_pincount) > 0);
481 if (atomic_dec_and_test(&ip->i_pincount))
Christoph Hellwigf392e632011-12-18 20:00:10 +0000482 wake_up_bit(&ip->i_flags, __XFS_IPINNED_BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700485/*
486 * Callback used to mark a buffer with XFS_LI_FAILED when items in the buffer
487 * have been failed during writeback
488 *
489 * This informs the AIL that the inode is already flush locked on the next push,
490 * and acquires a hold on the buffer to ensure that it isn't reclaimed before
491 * dirty data makes it to disk.
492 */
493STATIC void
494xfs_inode_item_error(
495 struct xfs_log_item *lip,
496 struct xfs_buf *bp)
497{
498 ASSERT(xfs_isiflocked(INODE_ITEM(lip)->ili_inode));
499 xfs_set_li_failed(lip, bp);
500}
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000503xfs_inode_item_push(
504 struct xfs_log_item *lip,
505 struct list_head *buffer_list)
Eryu Guan6e3e6d52016-04-06 09:47:21 +1000506 __releases(&lip->li_ailp->xa_lock)
507 __acquires(&lip->li_ailp->xa_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000509 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
510 struct xfs_inode *ip = iip->ili_inode;
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700511 struct xfs_buf *bp = lip->li_buf;
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000512 uint rval = XFS_ITEM_SUCCESS;
513 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000515 if (xfs_ipincount(ip) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700518 /*
519 * The buffer containing this item failed to be written back
520 * previously. Resubmit the buffer for IO.
521 */
522 if (lip->li_flags & XFS_LI_FAILED) {
523 if (!xfs_buf_trylock(bp))
524 return XFS_ITEM_LOCKED;
525
526 if (!xfs_buf_resubmit_failed_buffers(bp, lip, buffer_list))
527 rval = XFS_ITEM_FLUSHING;
528
529 xfs_buf_unlock(bp);
530 return rval;
531 }
532
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000533 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 return XFS_ITEM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Christoph Hellwig4c468192012-04-23 15:58:36 +1000536 /*
537 * Re-check the pincount now that we stabilized the value by
538 * taking the ilock.
539 */
540 if (xfs_ipincount(ip) > 0) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000541 rval = XFS_ITEM_PINNED;
542 goto out_unlock;
Christoph Hellwig4c468192012-04-23 15:58:36 +1000543 }
544
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000545 /*
Brian Foster9a3a5da2012-06-11 10:39:43 -0400546 * Stale inode items should force out the iclog.
547 */
548 if (ip->i_flags & XFS_ISTALE) {
549 rval = XFS_ITEM_PINNED;
550 goto out_unlock;
551 }
552
553 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000554 * Someone else is already flushing the inode. Nothing we can do
555 * here but wait for the flush to finish and remove the item from
556 * the AIL.
557 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (!xfs_iflock_nowait(ip)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000559 rval = XFS_ITEM_FLUSHING;
560 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
562
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000563 ASSERT(iip->ili_fields != 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
564 ASSERT(iip->ili_logged == 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
565
566 spin_unlock(&lip->li_ailp->xa_lock);
567
568 error = xfs_iflush(ip, &bp);
569 if (!error) {
570 if (!xfs_buf_delwri_queue(bp, buffer_list))
571 rval = XFS_ITEM_FLUSHING;
572 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000574
575 spin_lock(&lip->li_ailp->xa_lock);
576out_unlock:
577 xfs_iunlock(ip, XFS_ILOCK_SHARED);
578 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
581/*
582 * Unlock the inode associated with the inode log item.
583 * Clear the fields of the inode and inode log item that
584 * are specific to the current transaction. If the
585 * hold flags is set, do not unlock the inode.
586 */
587STATIC void
588xfs_inode_item_unlock(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000589 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000591 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
592 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig898621d2010-06-24 11:36:58 +1000593 unsigned short lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200595 ASSERT(ip->i_itemp != NULL);
596 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Christoph Hellwig898621d2010-06-24 11:36:58 +1000598 lock_flags = iip->ili_lock_flags;
599 iip->ili_lock_flags = 0;
Christoph Hellwigddc34152011-09-19 15:00:54 +0000600 if (lock_flags)
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200601 xfs_iunlock(ip, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
604/*
Dave Chinnerde25c182010-11-30 15:15:46 +1100605 * This is called to find out where the oldest active copy of the inode log
606 * item in the on disk log resides now that the last log write of it completed
607 * at the given lsn. Since we always re-log all dirty data in an inode, the
608 * latest copy in the on disk log is the only one that matters. Therefore,
609 * simply return the given lsn.
610 *
611 * If the inode has been marked stale because the cluster is being freed, we
612 * don't want to (re-)insert this inode into the AIL. There is a race condition
613 * where the cluster buffer may be unpinned before the inode is inserted into
614 * the AIL during transaction committed processing. If the buffer is unpinned
615 * before the inode item has been committed and inserted, then it is possible
Dave Chinner1316d4d2011-07-04 05:27:36 +0000616 * for the buffer to be written and IO completes before the inode is inserted
Dave Chinnerde25c182010-11-30 15:15:46 +1100617 * into the AIL. In that case, we'd be inserting a clean, stale inode into the
618 * AIL which will never get removed. It will, however, get reclaimed which
619 * triggers an assert in xfs_inode_free() complaining about freein an inode
620 * still in the AIL.
621 *
Dave Chinner1316d4d2011-07-04 05:27:36 +0000622 * To avoid this, just unpin the inode directly and return a LSN of -1 so the
623 * transaction committed code knows that it does not need to do any further
624 * processing on the item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626STATIC xfs_lsn_t
627xfs_inode_item_committed(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000628 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 xfs_lsn_t lsn)
630{
Dave Chinnerde25c182010-11-30 15:15:46 +1100631 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
632 struct xfs_inode *ip = iip->ili_inode;
633
Dave Chinner1316d4d2011-07-04 05:27:36 +0000634 if (xfs_iflags_test(ip, XFS_ISTALE)) {
635 xfs_inode_item_unpin(lip, 0);
636 return -1;
637 }
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000638 return lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
641/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 * XXX rcc - this one really has to do something. Probably needs
643 * to stamp in a new field in the incore inode.
644 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645STATIC void
646xfs_inode_item_committing(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000647 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 xfs_lsn_t lsn)
649{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000650 INODE_ITEM(lip)->ili_last_lsn = lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
653/*
654 * This is the ops vector shared by all buf log items.
655 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000656static const struct xfs_item_ops xfs_inode_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000657 .iop_size = xfs_inode_item_size,
658 .iop_format = xfs_inode_item_format,
659 .iop_pin = xfs_inode_item_pin,
660 .iop_unpin = xfs_inode_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000661 .iop_unlock = xfs_inode_item_unlock,
662 .iop_committed = xfs_inode_item_committed,
663 .iop_push = xfs_inode_item_push,
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700664 .iop_committing = xfs_inode_item_committing,
665 .iop_error = xfs_inode_item_error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666};
667
668
669/*
670 * Initialize the inode log item for a newly allocated (in-core) inode.
671 */
672void
673xfs_inode_item_init(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000674 struct xfs_inode *ip,
675 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000677 struct xfs_inode_log_item *iip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 ASSERT(ip->i_itemp == NULL);
680 iip = ip->i_itemp = kmem_zone_zalloc(xfs_ili_zone, KM_SLEEP);
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 iip->ili_inode = ip;
Dave Chinner43f5efc2010-03-23 10:10:00 +1100683 xfs_log_item_init(mp, &iip->ili_item, XFS_LI_INODE,
684 &xfs_inode_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
687/*
688 * Free the inode log item and any memory hanging off of it.
689 */
690void
691xfs_inode_item_destroy(
692 xfs_inode_t *ip)
693{
Dave Chinnerb1c5ebb2016-07-22 09:52:35 +1000694 kmem_free(ip->i_itemp->ili_item.li_lv_shadow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 kmem_zone_free(xfs_ili_zone, ip->i_itemp);
696}
697
698
699/*
700 * This is the inode flushing I/O completion routine. It is called
701 * from interrupt level when the buffer containing the inode is
702 * flushed to disk. It is responsible for removing the inode item
703 * from the AIL if it has not been re-logged, and unlocking the inode's
704 * flush lock.
Dave Chinner30136832010-12-20 12:03:17 +1100705 *
706 * To reduce AIL lock traffic as much as possible, we scan the buffer log item
707 * list for other inodes that will run this function. We remove them from the
708 * buffer list so we can process all the inode IO completions in one AIL lock
709 * traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711void
712xfs_iflush_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000713 struct xfs_buf *bp,
714 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Dave Chinner30136832010-12-20 12:03:17 +1100716 struct xfs_inode_log_item *iip;
717 struct xfs_log_item *blip;
718 struct xfs_log_item *next;
719 struct xfs_log_item *prev;
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000720 struct xfs_ail *ailp = lip->li_ailp;
Dave Chinner30136832010-12-20 12:03:17 +1100721 int need_ail = 0;
722
723 /*
724 * Scan the buffer IO completions for other inodes being completed and
725 * attach them to the current inode log item.
726 */
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200727 blip = bp->b_fspriv;
Dave Chinner30136832010-12-20 12:03:17 +1100728 prev = NULL;
729 while (blip != NULL) {
Mark Tinguely52177932014-10-03 09:09:50 +1000730 if (blip->li_cb != xfs_iflush_done) {
Dave Chinner30136832010-12-20 12:03:17 +1100731 prev = blip;
732 blip = blip->li_bio_list;
733 continue;
734 }
735
736 /* remove from list */
737 next = blip->li_bio_list;
738 if (!prev) {
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200739 bp->b_fspriv = next;
Dave Chinner30136832010-12-20 12:03:17 +1100740 } else {
741 prev->li_bio_list = next;
742 }
743
744 /* add to current list */
745 blip->li_bio_list = lip->li_bio_list;
746 lip->li_bio_list = blip;
747
748 /*
749 * while we have the item, do the unlocked check for needing
750 * the AIL lock.
751 */
752 iip = INODE_ITEM(blip);
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700753 if ((iip->ili_logged && blip->li_lsn == iip->ili_flush_lsn) ||
Carlos Maiolino842f6e92017-09-22 11:47:46 -0700754 (blip->li_flags & XFS_LI_FAILED))
Dave Chinner30136832010-12-20 12:03:17 +1100755 need_ail++;
756
757 blip = next;
758 }
759
760 /* make sure we capture the state of the initial inode. */
761 iip = INODE_ITEM(lip);
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700762 if ((iip->ili_logged && lip->li_lsn == iip->ili_flush_lsn) ||
763 lip->li_flags & XFS_LI_FAILED)
Dave Chinner30136832010-12-20 12:03:17 +1100764 need_ail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 /*
767 * We only want to pull the item from the AIL if it is
768 * actually there and its location in the log has not
769 * changed since we started the flush. Thus, we only bother
770 * if the ili_logged flag is set and the inode's lsn has not
771 * changed. First we check the lsn outside
772 * the lock since it's cheaper, and then we recheck while
773 * holding the lock before removing the inode from the AIL.
774 */
Dave Chinner30136832010-12-20 12:03:17 +1100775 if (need_ail) {
Christoph Hellwig27af1bb2017-04-21 11:24:42 -0700776 bool mlip_changed = false;
777
778 /* this is an opencoded batch version of xfs_trans_ail_delete */
David Chinner783a2f62008-10-30 17:39:58 +1100779 spin_lock(&ailp->xa_lock);
Dave Chinner30136832010-12-20 12:03:17 +1100780 for (blip = lip; blip; blip = blip->li_bio_list) {
Christoph Hellwig27af1bb2017-04-21 11:24:42 -0700781 if (INODE_ITEM(blip)->ili_logged &&
782 blip->li_lsn == INODE_ITEM(blip)->ili_flush_lsn)
783 mlip_changed |= xfs_ail_delete_one(ailp, blip);
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700784 else {
785 xfs_clear_li_failed(blip);
786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Christoph Hellwig27af1bb2017-04-21 11:24:42 -0700789 if (mlip_changed) {
790 if (!XFS_FORCED_SHUTDOWN(ailp->xa_mount))
791 xlog_assign_tail_lsn_locked(ailp->xa_mount);
792 if (list_empty(&ailp->xa_ail))
793 wake_up_all(&ailp->xa_empty);
794 }
795 spin_unlock(&ailp->xa_lock);
796
797 if (mlip_changed)
798 xfs_log_space_wake(ailp->xa_mount);
799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 /*
Dave Chinner30136832010-12-20 12:03:17 +1100802 * clean up and unlock the flush lock now we are done. We can clear the
803 * ili_last_fields bits now that we know that the data corresponding to
804 * them is safely on disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 */
Dave Chinner30136832010-12-20 12:03:17 +1100806 for (blip = lip; blip; blip = next) {
807 next = blip->li_bio_list;
808 blip->li_bio_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Dave Chinner30136832010-12-20 12:03:17 +1100810 iip = INODE_ITEM(blip);
811 iip->ili_logged = 0;
812 iip->ili_last_fields = 0;
813 xfs_ifunlock(iip->ili_inode);
814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
817/*
Dave Chinner04913fd2012-04-23 15:58:41 +1000818 * This is the inode flushing abort routine. It is called from xfs_iflush when
819 * the filesystem is shutting down to clean up the inode state. It is
820 * responsible for removing the inode item from the AIL if it has not been
821 * re-logged, and unlocking the inode's flush lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 */
823void
824xfs_iflush_abort(
Dave Chinner04913fd2012-04-23 15:58:41 +1000825 xfs_inode_t *ip,
826 bool stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
David Chinner783a2f62008-10-30 17:39:58 +1100828 xfs_inode_log_item_t *iip = ip->i_itemp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (iip) {
831 if (iip->ili_item.li_flags & XFS_LI_IN_AIL) {
Brian Foster146e54b2015-08-19 10:01:08 +1000832 xfs_trans_ail_remove(&iip->ili_item,
833 stale ? SHUTDOWN_LOG_IO_ERROR :
Dave Chinner04913fd2012-04-23 15:58:41 +1000834 SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836 iip->ili_logged = 0;
837 /*
838 * Clear the ili_last_fields bits now that we know that the
839 * data corresponding to them is safely on disk.
840 */
841 iip->ili_last_fields = 0;
842 /*
843 * Clear the inode logging fields so no more flushes are
844 * attempted.
845 */
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000846 iip->ili_fields = 0;
Dave Chinnerfc0561c2015-11-03 13:14:59 +1100847 iip->ili_fsync_fields = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849 /*
850 * Release the inode's flush lock since we're done with it.
851 */
852 xfs_ifunlock(ip);
853}
854
855void
856xfs_istale_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000857 struct xfs_buf *bp,
858 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Dave Chinner04913fd2012-04-23 15:58:41 +1000860 xfs_iflush_abort(INODE_ITEM(lip)->ili_inode, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
Tim Shimmin6d192a92006-06-09 14:55:38 +1000862
863/*
Dave Chinner20413e372017-10-09 11:37:22 -0700864 * convert an xfs_inode_log_format struct from the old 32 bit version
865 * (which can have different field alignments) to the native 64 bit version
Tim Shimmin6d192a92006-06-09 14:55:38 +1000866 */
867int
868xfs_inode_item_format_convert(
Dave Chinner20413e372017-10-09 11:37:22 -0700869 struct xfs_log_iovec *buf,
870 struct xfs_inode_log_format *in_f)
Tim Shimmin6d192a92006-06-09 14:55:38 +1000871{
Dave Chinner20413e372017-10-09 11:37:22 -0700872 struct xfs_inode_log_format_32 *in_f32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000873
Dave Chinner20413e372017-10-09 11:37:22 -0700874 if (buf->i_len != sizeof(*in_f32))
875 return -EFSCORRUPTED;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000876
Dave Chinner20413e372017-10-09 11:37:22 -0700877 in_f->ilf_type = in_f32->ilf_type;
878 in_f->ilf_size = in_f32->ilf_size;
879 in_f->ilf_fields = in_f32->ilf_fields;
880 in_f->ilf_asize = in_f32->ilf_asize;
881 in_f->ilf_dsize = in_f32->ilf_dsize;
882 in_f->ilf_ino = in_f32->ilf_ino;
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700883 memcpy(&in_f->ilf_u, &in_f32->ilf_u, sizeof(in_f->ilf_u));
Dave Chinner20413e372017-10-09 11:37:22 -0700884 in_f->ilf_blkno = in_f32->ilf_blkno;
885 in_f->ilf_len = in_f32->ilf_len;
886 in_f->ilf_boffset = in_f32->ilf_boffset;
887 return 0;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000888}