blob: 3e49a41ca9603536c0ed22690d9cdaa3f157ad26 [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 Maiolino08003562017-09-17 14:06: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:
75 case XFS_DINODE_FMT_UUID:
76 break;
77 default:
78 ASSERT(0);
79 break;
80 }
81}
82
83STATIC void
84xfs_inode_item_attr_fork_size(
85 struct xfs_inode_log_item *iip,
86 int *nvecs,
87 int *nbytes)
88{
89 struct xfs_inode *ip = iip->ili_inode;
90
91 switch (ip->i_d.di_aformat) {
92 case XFS_DINODE_FMT_EXTENTS:
93 if ((iip->ili_fields & XFS_ILOG_AEXT) &&
94 ip->i_d.di_anextents > 0 &&
95 ip->i_afp->if_bytes > 0) {
96 /* worst case, doesn't subtract unused space */
97 *nbytes += XFS_IFORK_ASIZE(ip);
98 *nvecs += 1;
99 }
100 break;
101 case XFS_DINODE_FMT_BTREE:
102 if ((iip->ili_fields & XFS_ILOG_ABROOT) &&
103 ip->i_afp->if_broot_bytes > 0) {
104 *nbytes += ip->i_afp->if_broot_bytes;
105 *nvecs += 1;
106 }
107 break;
108 case XFS_DINODE_FMT_LOCAL:
109 if ((iip->ili_fields & XFS_ILOG_ADATA) &&
110 ip->i_afp->if_bytes > 0) {
111 *nbytes += roundup(ip->i_afp->if_bytes, 4);
112 *nvecs += 1;
113 }
114 break;
115 default:
116 ASSERT(0);
117 break;
118 }
119}
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/*
122 * This returns the number of iovecs needed to log the given inode item.
123 *
124 * We need one iovec for the inode log format structure, one for the
125 * inode core, and possibly one for the inode data/extents/b-tree root
126 * and one for the inode attribute data/extents/b-tree root.
127 */
Dave Chinner166d1362013-08-12 20:50:04 +1000128STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129xfs_inode_item_size(
Dave Chinner166d1362013-08-12 20:50:04 +1000130 struct xfs_log_item *lip,
131 int *nvecs,
132 int *nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000134 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
135 struct xfs_inode *ip = iip->ili_inode;
Dave Chinner166d1362013-08-12 20:50:04 +1000136
137 *nvecs += 2;
138 *nbytes += sizeof(struct xfs_inode_log_format) +
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100139 xfs_log_dinode_size(ip->i_d.di_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Christoph Hellwigce9641d2013-12-13 11:00:43 +1100141 xfs_inode_item_data_fork_size(iip, nvecs, nbytes);
142 if (XFS_IFORK_Q(ip))
143 xfs_inode_item_attr_fork_size(iip, nvecs, nbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Christoph Hellwig12343512013-12-13 11:00:43 +1100146STATIC void
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100147xfs_inode_item_format_data_fork(
148 struct xfs_inode_log_item *iip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100149 struct xfs_inode_log_format *ilf,
150 struct xfs_log_vec *lv,
151 struct xfs_log_iovec **vecp)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100152{
153 struct xfs_inode *ip = iip->ili_inode;
154 size_t data_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 switch (ip->i_d.di_format) {
157 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000158 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000159 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
160 XFS_ILOG_DEV | XFS_ILOG_UUID);
161
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000162 if ((iip->ili_fields & XFS_ILOG_DEXT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000163 ip->i_d.di_nextents > 0 &&
164 ip->i_df.if_bytes > 0) {
Christoph Hellwigda776502013-12-13 11:34:04 +1100165 struct xfs_bmbt_rec *p;
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 ASSERT(ip->i_df.if_u1.if_extents != NULL);
Eric Sandeenf380ee72017-01-09 16:38:36 +0100168 ASSERT(xfs_iext_count(&ip->i_df) > 0);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000169
Christoph Hellwigda776502013-12-13 11:34:04 +1100170 p = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_IEXT);
171 data_bytes = xfs_iextents_copy(ip, p, XFS_DATA_FORK);
172 xlog_finish_iovec(lv, *vecp, data_bytes);
173
174 ASSERT(data_bytes <= ip->i_df.if_bytes);
175
176 ilf->ilf_dsize = data_bytes;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100177 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000178 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000179 iip->ili_fields &= ~XFS_ILOG_DEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000183 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000184 ~(XFS_ILOG_DDATA | XFS_ILOG_DEXT |
185 XFS_ILOG_DEV | XFS_ILOG_UUID);
186
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000187 if ((iip->ili_fields & XFS_ILOG_DBROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000188 ip->i_df.if_broot_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 ASSERT(ip->i_df.if_broot != NULL);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100190 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_IBROOT,
Christoph Hellwig12343512013-12-13 11:00:43 +1100191 ip->i_df.if_broot,
192 ip->i_df.if_broot_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100193 ilf->ilf_dsize = ip->i_df.if_broot_bytes;
194 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000195 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000196 ASSERT(!(iip->ili_fields &
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000197 XFS_ILOG_DBROOT));
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000198 iip->ili_fields &= ~XFS_ILOG_DBROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000202 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000203 ~(XFS_ILOG_DEXT | XFS_ILOG_DBROOT |
204 XFS_ILOG_DEV | XFS_ILOG_UUID);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000205 if ((iip->ili_fields & XFS_ILOG_DDATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000206 ip->i_df.if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 /*
208 * Round i_bytes up to a word boundary.
209 * The underlying memory is guaranteed to
210 * to be there by xfs_idata_realloc().
211 */
212 data_bytes = roundup(ip->i_df.if_bytes, 4);
Christoph Hellwig12343512013-12-13 11:00:43 +1100213 ASSERT(ip->i_df.if_real_bytes == 0 ||
Christoph Hellwig30ee0522016-04-06 07:53:29 +1000214 ip->i_df.if_real_bytes >= data_bytes);
Christoph Hellwig12343512013-12-13 11:00:43 +1100215 ASSERT(ip->i_df.if_u1.if_data != NULL);
216 ASSERT(ip->i_d.di_size > 0);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100217 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_ILOCAL,
Christoph Hellwig12343512013-12-13 11:00:43 +1100218 ip->i_df.if_u1.if_data, data_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100219 ilf->ilf_dsize = (unsigned)data_bytes;
220 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000221 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000222 iip->ili_fields &= ~XFS_ILOG_DDATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 case XFS_DINODE_FMT_DEV:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000226 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000227 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
228 XFS_ILOG_DEXT | XFS_ILOG_UUID);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100229 if (iip->ili_fields & XFS_ILOG_DEV)
230 ilf->ilf_u.ilfu_rdev = ip->i_df.if_u2.if_rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 case XFS_DINODE_FMT_UUID:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000233 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000234 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
235 XFS_ILOG_DEXT | XFS_ILOG_DEV);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100236 if (iip->ili_fields & XFS_ILOG_UUID)
237 ilf->ilf_u.ilfu_uuid = ip->i_df.if_u2.if_uuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 default:
240 ASSERT(0);
241 break;
242 }
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100243}
244
Christoph Hellwig12343512013-12-13 11:00:43 +1100245STATIC void
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100246xfs_inode_item_format_attr_fork(
247 struct xfs_inode_log_item *iip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100248 struct xfs_inode_log_format *ilf,
249 struct xfs_log_vec *lv,
250 struct xfs_log_iovec **vecp)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100251{
252 struct xfs_inode *ip = iip->ili_inode;
253 size_t data_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 switch (ip->i_d.di_aformat) {
256 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000257 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000258 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT);
259
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000260 if ((iip->ili_fields & XFS_ILOG_AEXT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000261 ip->i_d.di_anextents > 0 &&
262 ip->i_afp->if_bytes > 0) {
Christoph Hellwigda776502013-12-13 11:34:04 +1100263 struct xfs_bmbt_rec *p;
264
Eric Sandeenf380ee72017-01-09 16:38:36 +0100265 ASSERT(xfs_iext_count(ip->i_afp) ==
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000266 ip->i_d.di_anextents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 ASSERT(ip->i_afp->if_u1.if_extents != NULL);
Christoph Hellwigda776502013-12-13 11:34:04 +1100268
269 p = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_IATTR_EXT);
270 data_bytes = xfs_iextents_copy(ip, p, XFS_ATTR_FORK);
271 xlog_finish_iovec(lv, *vecp, data_bytes);
272
273 ilf->ilf_asize = data_bytes;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100274 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000275 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000276 iip->ili_fields &= ~XFS_ILOG_AEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
278 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000280 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000281 ~(XFS_ILOG_ADATA | XFS_ILOG_AEXT);
282
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000283 if ((iip->ili_fields & XFS_ILOG_ABROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000284 ip->i_afp->if_broot_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 ASSERT(ip->i_afp->if_broot != NULL);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000286
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100287 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_IATTR_BROOT,
Christoph Hellwig12343512013-12-13 11:00:43 +1100288 ip->i_afp->if_broot,
289 ip->i_afp->if_broot_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100290 ilf->ilf_asize = ip->i_afp->if_broot_bytes;
291 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000292 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000293 iip->ili_fields &= ~XFS_ILOG_ABROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000297 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000298 ~(XFS_ILOG_AEXT | XFS_ILOG_ABROOT);
299
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000300 if ((iip->ili_fields & XFS_ILOG_ADATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000301 ip->i_afp->if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 /*
303 * Round i_bytes up to a word boundary.
304 * The underlying memory is guaranteed to
305 * to be there by xfs_idata_realloc().
306 */
307 data_bytes = roundup(ip->i_afp->if_bytes, 4);
Christoph Hellwig12343512013-12-13 11:00:43 +1100308 ASSERT(ip->i_afp->if_real_bytes == 0 ||
Christoph Hellwig30ee0522016-04-06 07:53:29 +1000309 ip->i_afp->if_real_bytes >= data_bytes);
Christoph Hellwig12343512013-12-13 11:00:43 +1100310 ASSERT(ip->i_afp->if_u1.if_data != NULL);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100311 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_IATTR_LOCAL,
Christoph Hellwig12343512013-12-13 11:00:43 +1100312 ip->i_afp->if_u1.if_data,
313 data_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100314 ilf->ilf_asize = (unsigned)data_bytes;
315 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000316 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000317 iip->ili_fields &= ~XFS_ILOG_ADATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 default:
321 ASSERT(0);
322 break;
323 }
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100324}
325
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100326static void
Dave Chinner39878482016-02-09 16:54:58 +1100327xfs_inode_to_log_dinode(
328 struct xfs_inode *ip,
Dave Chinner93f958f2016-02-09 16:54:58 +1100329 struct xfs_log_dinode *to,
330 xfs_lsn_t lsn)
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100331{
Dave Chinner39878482016-02-09 16:54:58 +1100332 struct xfs_icdinode *from = &ip->i_d;
333 struct inode *inode = VFS_I(ip);
334
Dave Chinner93f958f2016-02-09 16:54:58 +1100335 to->di_magic = XFS_DINODE_MAGIC;
336
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100337 to->di_version = from->di_version;
338 to->di_format = from->di_format;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100339 to->di_uid = from->di_uid;
340 to->di_gid = from->di_gid;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100341 to->di_projid_lo = from->di_projid_lo;
342 to->di_projid_hi = from->di_projid_hi;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100343
Dave Chinner93f958f2016-02-09 16:54:58 +1100344 memset(to->di_pad, 0, sizeof(to->di_pad));
Dave Chinnerfaeb4e42016-02-09 16:54:58 +1100345 memset(to->di_pad3, 0, sizeof(to->di_pad3));
Dave Chinner39878482016-02-09 16:54:58 +1100346 to->di_atime.t_sec = inode->i_atime.tv_sec;
347 to->di_atime.t_nsec = inode->i_atime.tv_nsec;
348 to->di_mtime.t_sec = inode->i_mtime.tv_sec;
349 to->di_mtime.t_nsec = inode->i_mtime.tv_nsec;
350 to->di_ctime.t_sec = inode->i_ctime.tv_sec;
351 to->di_ctime.t_nsec = inode->i_ctime.tv_nsec;
Dave Chinner54d7b5c2016-02-09 16:54:58 +1100352 to->di_nlink = inode->i_nlink;
Dave Chinner9e9a2672016-02-09 16:54:58 +1100353 to->di_gen = inode->i_generation;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100354 to->di_mode = inode->i_mode;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100355
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100356 to->di_size = from->di_size;
357 to->di_nblocks = from->di_nblocks;
358 to->di_extsize = from->di_extsize;
359 to->di_nextents = from->di_nextents;
360 to->di_anextents = from->di_anextents;
361 to->di_forkoff = from->di_forkoff;
362 to->di_aformat = from->di_aformat;
363 to->di_dmevmask = from->di_dmevmask;
364 to->di_dmstate = from->di_dmstate;
365 to->di_flags = from->di_flags;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100366
367 if (from->di_version == 3) {
Dave Chinner83e06f22016-02-09 16:54:58 +1100368 to->di_changecount = inode->i_version;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100369 to->di_crtime.t_sec = from->di_crtime.t_sec;
370 to->di_crtime.t_nsec = from->di_crtime.t_nsec;
371 to->di_flags2 = from->di_flags2;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700372 to->di_cowextsize = from->di_cowextsize;
Dave Chinner93f958f2016-02-09 16:54:58 +1100373 to->di_ino = ip->i_ino;
374 to->di_lsn = lsn;
375 memset(to->di_pad2, 0, sizeof(to->di_pad2));
376 uuid_copy(&to->di_uuid, &ip->i_mount->m_sb.sb_meta_uuid);
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100377 to->di_flushiter = 0;
378 } else {
379 to->di_flushiter = from->di_flushiter;
380 }
381}
382
383/*
384 * Format the inode core. Current timestamp data is only in the VFS inode
385 * fields, so we need to grab them from there. Hence rather than just copying
386 * the XFS inode core structure, format the fields directly into the iovec.
387 */
388static void
389xfs_inode_item_format_core(
390 struct xfs_inode *ip,
391 struct xfs_log_vec *lv,
392 struct xfs_log_iovec **vecp)
393{
394 struct xfs_log_dinode *dic;
395
396 dic = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_ICORE);
Dave Chinner93f958f2016-02-09 16:54:58 +1100397 xfs_inode_to_log_dinode(ip, dic, ip->i_itemp->ili_item.li_lsn);
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100398 xlog_finish_iovec(lv, *vecp, xfs_log_dinode_size(ip->i_d.di_version));
399}
400
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100401/*
402 * This is called to fill in the vector of log iovecs for the given inode
403 * log item. It fills the first item with an inode log format structure,
404 * the second with the on-disk inode structure, and a possible third and/or
405 * fourth with the inode data/extents/b-tree root and inode attributes
406 * data/extents/b-tree root.
407 */
408STATIC void
409xfs_inode_item_format(
410 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100411 struct xfs_log_vec *lv)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100412{
413 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
414 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100415 struct xfs_inode_log_format *ilf;
416 struct xfs_log_iovec *vecp = NULL;
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100417
Dave Chinner263997a2014-05-20 07:46:40 +1000418 ASSERT(ip->i_d.di_version > 1);
419
Christoph Hellwig2f251292013-12-13 11:34:05 +1100420 ilf = xlog_prepare_iovec(lv, &vecp, XLOG_REG_TYPE_IFORMAT);
421 ilf->ilf_type = XFS_LI_INODE;
422 ilf->ilf_ino = ip->i_ino;
423 ilf->ilf_blkno = ip->i_imap.im_blkno;
424 ilf->ilf_len = ip->i_imap.im_len;
425 ilf->ilf_boffset = ip->i_imap.im_boffset;
426 ilf->ilf_fields = XFS_ILOG_CORE;
427 ilf->ilf_size = 2; /* format + core */
428 xlog_finish_iovec(lv, vecp, sizeof(struct xfs_inode_log_format));
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100429
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100430 xfs_inode_item_format_core(ip, lv, &vecp);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100431 xfs_inode_item_format_data_fork(iip, ilf, lv, &vecp);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100432 if (XFS_IFORK_Q(ip)) {
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100433 xfs_inode_item_format_attr_fork(iip, ilf, lv, &vecp);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100434 } else {
435 iip->ili_fields &=
436 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
437 }
438
Christoph Hellwig2f251292013-12-13 11:34:05 +1100439 /* update the format with the exact fields we actually logged */
440 ilf->ilf_fields |= (iip->ili_fields & ~XFS_ILOG_TIMESTAMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443/*
444 * This is called to pin the inode associated with the inode log
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000445 * item in memory so it cannot be written out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 */
447STATIC void
448xfs_inode_item_pin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000449 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000451 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000452
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000453 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
454
455 trace_xfs_inode_pin(ip, _RET_IP_);
456 atomic_inc(&ip->i_pincount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
459
460/*
461 * This is called to unpin the inode associated with the inode log
462 * item which was previously pinned with a call to xfs_inode_item_pin().
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000463 *
464 * Also wake up anyone in xfs_iunpin_wait() if the count goes to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466STATIC void
467xfs_inode_item_unpin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000468 struct xfs_log_item *lip,
Christoph Hellwig9412e312010-06-23 18:11:15 +1000469 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000471 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000472
Dave Chinner4aaf15d2010-03-08 11:24:07 +1100473 trace_xfs_inode_unpin(ip, _RET_IP_);
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000474 ASSERT(atomic_read(&ip->i_pincount) > 0);
475 if (atomic_dec_and_test(&ip->i_pincount))
Christoph Hellwigf392e632011-12-18 20:00:10 +0000476 wake_up_bit(&ip->i_flags, __XFS_IPINNED_BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Carlos Maiolino08003562017-09-17 14:06:50 -0700479/*
480 * Callback used to mark a buffer with XFS_LI_FAILED when items in the buffer
481 * have been failed during writeback
482 *
483 * This informs the AIL that the inode is already flush locked on the next push,
484 * and acquires a hold on the buffer to ensure that it isn't reclaimed before
485 * dirty data makes it to disk.
486 */
487STATIC void
488xfs_inode_item_error(
489 struct xfs_log_item *lip,
490 struct xfs_buf *bp)
491{
492 ASSERT(xfs_isiflocked(INODE_ITEM(lip)->ili_inode));
493 xfs_set_li_failed(lip, bp);
494}
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000497xfs_inode_item_push(
498 struct xfs_log_item *lip,
499 struct list_head *buffer_list)
Eryu Guan6e3e6d52016-04-06 09:47:21 +1000500 __releases(&lip->li_ailp->xa_lock)
501 __acquires(&lip->li_ailp->xa_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000503 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
504 struct xfs_inode *ip = iip->ili_inode;
Carlos Maiolino08003562017-09-17 14:06:50 -0700505 struct xfs_buf *bp = lip->li_buf;
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000506 uint rval = XFS_ITEM_SUCCESS;
507 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000509 if (xfs_ipincount(ip) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Carlos Maiolino08003562017-09-17 14:06:50 -0700512 /*
513 * The buffer containing this item failed to be written back
514 * previously. Resubmit the buffer for IO.
515 */
516 if (lip->li_flags & XFS_LI_FAILED) {
517 if (!xfs_buf_trylock(bp))
518 return XFS_ITEM_LOCKED;
519
520 if (!xfs_buf_resubmit_failed_buffers(bp, lip, buffer_list))
521 rval = XFS_ITEM_FLUSHING;
522
523 xfs_buf_unlock(bp);
524 return rval;
525 }
526
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000527 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return XFS_ITEM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Christoph Hellwig4c468192012-04-23 15:58:36 +1000530 /*
531 * Re-check the pincount now that we stabilized the value by
532 * taking the ilock.
533 */
534 if (xfs_ipincount(ip) > 0) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000535 rval = XFS_ITEM_PINNED;
536 goto out_unlock;
Christoph Hellwig4c468192012-04-23 15:58:36 +1000537 }
538
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000539 /*
Brian Foster9a3a5da2012-06-11 10:39:43 -0400540 * Stale inode items should force out the iclog.
541 */
542 if (ip->i_flags & XFS_ISTALE) {
543 rval = XFS_ITEM_PINNED;
544 goto out_unlock;
545 }
546
547 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000548 * Someone else is already flushing the inode. Nothing we can do
549 * here but wait for the flush to finish and remove the item from
550 * the AIL.
551 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (!xfs_iflock_nowait(ip)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000553 rval = XFS_ITEM_FLUSHING;
554 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000557 ASSERT(iip->ili_fields != 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
558 ASSERT(iip->ili_logged == 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
559
560 spin_unlock(&lip->li_ailp->xa_lock);
561
562 error = xfs_iflush(ip, &bp);
563 if (!error) {
564 if (!xfs_buf_delwri_queue(bp, buffer_list))
565 rval = XFS_ITEM_FLUSHING;
566 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000568
569 spin_lock(&lip->li_ailp->xa_lock);
570out_unlock:
571 xfs_iunlock(ip, XFS_ILOCK_SHARED);
572 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
575/*
576 * Unlock the inode associated with the inode log item.
577 * Clear the fields of the inode and inode log item that
578 * are specific to the current transaction. If the
579 * hold flags is set, do not unlock the inode.
580 */
581STATIC void
582xfs_inode_item_unlock(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000583 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000585 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
586 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig898621d2010-06-24 11:36:58 +1000587 unsigned short lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200589 ASSERT(ip->i_itemp != NULL);
590 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Christoph Hellwig898621d2010-06-24 11:36:58 +1000592 lock_flags = iip->ili_lock_flags;
593 iip->ili_lock_flags = 0;
Christoph Hellwigddc34152011-09-19 15:00:54 +0000594 if (lock_flags)
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200595 xfs_iunlock(ip, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597
598/*
Dave Chinnerde25c182010-11-30 15:15:46 +1100599 * This is called to find out where the oldest active copy of the inode log
600 * item in the on disk log resides now that the last log write of it completed
601 * at the given lsn. Since we always re-log all dirty data in an inode, the
602 * latest copy in the on disk log is the only one that matters. Therefore,
603 * simply return the given lsn.
604 *
605 * If the inode has been marked stale because the cluster is being freed, we
606 * don't want to (re-)insert this inode into the AIL. There is a race condition
607 * where the cluster buffer may be unpinned before the inode is inserted into
608 * the AIL during transaction committed processing. If the buffer is unpinned
609 * before the inode item has been committed and inserted, then it is possible
Dave Chinner1316d4d2011-07-04 05:27:36 +0000610 * for the buffer to be written and IO completes before the inode is inserted
Dave Chinnerde25c182010-11-30 15:15:46 +1100611 * into the AIL. In that case, we'd be inserting a clean, stale inode into the
612 * AIL which will never get removed. It will, however, get reclaimed which
613 * triggers an assert in xfs_inode_free() complaining about freein an inode
614 * still in the AIL.
615 *
Dave Chinner1316d4d2011-07-04 05:27:36 +0000616 * To avoid this, just unpin the inode directly and return a LSN of -1 so the
617 * transaction committed code knows that it does not need to do any further
618 * processing on the item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620STATIC xfs_lsn_t
621xfs_inode_item_committed(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000622 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 xfs_lsn_t lsn)
624{
Dave Chinnerde25c182010-11-30 15:15:46 +1100625 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
626 struct xfs_inode *ip = iip->ili_inode;
627
Dave Chinner1316d4d2011-07-04 05:27:36 +0000628 if (xfs_iflags_test(ip, XFS_ISTALE)) {
629 xfs_inode_item_unpin(lip, 0);
630 return -1;
631 }
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000632 return lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
635/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 * XXX rcc - this one really has to do something. Probably needs
637 * to stamp in a new field in the incore inode.
638 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639STATIC void
640xfs_inode_item_committing(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000641 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 xfs_lsn_t lsn)
643{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000644 INODE_ITEM(lip)->ili_last_lsn = lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
647/*
648 * This is the ops vector shared by all buf log items.
649 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000650static const struct xfs_item_ops xfs_inode_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000651 .iop_size = xfs_inode_item_size,
652 .iop_format = xfs_inode_item_format,
653 .iop_pin = xfs_inode_item_pin,
654 .iop_unpin = xfs_inode_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000655 .iop_unlock = xfs_inode_item_unlock,
656 .iop_committed = xfs_inode_item_committed,
657 .iop_push = xfs_inode_item_push,
Carlos Maiolino08003562017-09-17 14:06:50 -0700658 .iop_committing = xfs_inode_item_committing,
659 .iop_error = xfs_inode_item_error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660};
661
662
663/*
664 * Initialize the inode log item for a newly allocated (in-core) inode.
665 */
666void
667xfs_inode_item_init(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000668 struct xfs_inode *ip,
669 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000671 struct xfs_inode_log_item *iip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 ASSERT(ip->i_itemp == NULL);
674 iip = ip->i_itemp = kmem_zone_zalloc(xfs_ili_zone, KM_SLEEP);
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 iip->ili_inode = ip;
Dave Chinner43f5efc2010-03-23 10:10:00 +1100677 xfs_log_item_init(mp, &iip->ili_item, XFS_LI_INODE,
678 &xfs_inode_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
681/*
682 * Free the inode log item and any memory hanging off of it.
683 */
684void
685xfs_inode_item_destroy(
686 xfs_inode_t *ip)
687{
Dave Chinnerb1c5ebb2016-07-22 09:52:35 +1000688 kmem_free(ip->i_itemp->ili_item.li_lv_shadow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 kmem_zone_free(xfs_ili_zone, ip->i_itemp);
690}
691
692
693/*
694 * This is the inode flushing I/O completion routine. It is called
695 * from interrupt level when the buffer containing the inode is
696 * flushed to disk. It is responsible for removing the inode item
697 * from the AIL if it has not been re-logged, and unlocking the inode's
698 * flush lock.
Dave Chinner30136832010-12-20 12:03:17 +1100699 *
700 * To reduce AIL lock traffic as much as possible, we scan the buffer log item
701 * list for other inodes that will run this function. We remove them from the
702 * buffer list so we can process all the inode IO completions in one AIL lock
703 * traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705void
706xfs_iflush_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000707 struct xfs_buf *bp,
708 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Dave Chinner30136832010-12-20 12:03:17 +1100710 struct xfs_inode_log_item *iip;
711 struct xfs_log_item *blip;
712 struct xfs_log_item *next;
713 struct xfs_log_item *prev;
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000714 struct xfs_ail *ailp = lip->li_ailp;
Dave Chinner30136832010-12-20 12:03:17 +1100715 int need_ail = 0;
716
717 /*
718 * Scan the buffer IO completions for other inodes being completed and
719 * attach them to the current inode log item.
720 */
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200721 blip = bp->b_fspriv;
Dave Chinner30136832010-12-20 12:03:17 +1100722 prev = NULL;
723 while (blip != NULL) {
Mark Tinguely52177932014-10-03 09:09:50 +1000724 if (blip->li_cb != xfs_iflush_done) {
Dave Chinner30136832010-12-20 12:03:17 +1100725 prev = blip;
726 blip = blip->li_bio_list;
727 continue;
728 }
729
730 /* remove from list */
731 next = blip->li_bio_list;
732 if (!prev) {
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200733 bp->b_fspriv = next;
Dave Chinner30136832010-12-20 12:03:17 +1100734 } else {
735 prev->li_bio_list = next;
736 }
737
738 /* add to current list */
739 blip->li_bio_list = lip->li_bio_list;
740 lip->li_bio_list = blip;
741
742 /*
743 * while we have the item, do the unlocked check for needing
744 * the AIL lock.
745 */
746 iip = INODE_ITEM(blip);
Carlos Maiolino08003562017-09-17 14:06:50 -0700747 if ((iip->ili_logged && blip->li_lsn == iip->ili_flush_lsn) ||
Carlos Maiolinod59a3f72017-09-22 11:47:46 -0700748 (blip->li_flags & XFS_LI_FAILED))
Dave Chinner30136832010-12-20 12:03:17 +1100749 need_ail++;
750
751 blip = next;
752 }
753
754 /* make sure we capture the state of the initial inode. */
755 iip = INODE_ITEM(lip);
Carlos Maiolino08003562017-09-17 14:06:50 -0700756 if ((iip->ili_logged && lip->li_lsn == iip->ili_flush_lsn) ||
757 lip->li_flags & XFS_LI_FAILED)
Dave Chinner30136832010-12-20 12:03:17 +1100758 need_ail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 /*
761 * We only want to pull the item from the AIL if it is
762 * actually there and its location in the log has not
763 * changed since we started the flush. Thus, we only bother
764 * if the ili_logged flag is set and the inode's lsn has not
765 * changed. First we check the lsn outside
766 * the lock since it's cheaper, and then we recheck while
767 * holding the lock before removing the inode from the AIL.
768 */
Dave Chinner30136832010-12-20 12:03:17 +1100769 if (need_ail) {
Christoph Hellwig1ba04932017-09-17 14:06:48 -0700770 bool mlip_changed = false;
771
772 /* this is an opencoded batch version of xfs_trans_ail_delete */
David Chinner783a2f62008-10-30 17:39:58 +1100773 spin_lock(&ailp->xa_lock);
Dave Chinner30136832010-12-20 12:03:17 +1100774 for (blip = lip; blip; blip = blip->li_bio_list) {
Christoph Hellwig1ba04932017-09-17 14:06:48 -0700775 if (INODE_ITEM(blip)->ili_logged &&
776 blip->li_lsn == INODE_ITEM(blip)->ili_flush_lsn)
777 mlip_changed |= xfs_ail_delete_one(ailp, blip);
Carlos Maiolino08003562017-09-17 14:06:50 -0700778 else {
779 xfs_clear_li_failed(blip);
780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Christoph Hellwig1ba04932017-09-17 14:06:48 -0700783 if (mlip_changed) {
784 if (!XFS_FORCED_SHUTDOWN(ailp->xa_mount))
785 xlog_assign_tail_lsn_locked(ailp->xa_mount);
786 if (list_empty(&ailp->xa_ail))
787 wake_up_all(&ailp->xa_empty);
788 }
789 spin_unlock(&ailp->xa_lock);
790
791 if (mlip_changed)
792 xfs_log_space_wake(ailp->xa_mount);
793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 /*
Dave Chinner30136832010-12-20 12:03:17 +1100796 * clean up and unlock the flush lock now we are done. We can clear the
797 * ili_last_fields bits now that we know that the data corresponding to
798 * them is safely on disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 */
Dave Chinner30136832010-12-20 12:03:17 +1100800 for (blip = lip; blip; blip = next) {
801 next = blip->li_bio_list;
802 blip->li_bio_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Dave Chinner30136832010-12-20 12:03:17 +1100804 iip = INODE_ITEM(blip);
805 iip->ili_logged = 0;
806 iip->ili_last_fields = 0;
807 xfs_ifunlock(iip->ili_inode);
808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810
811/*
Dave Chinner04913fd2012-04-23 15:58:41 +1000812 * This is the inode flushing abort routine. It is called from xfs_iflush when
813 * the filesystem is shutting down to clean up the inode state. It is
814 * responsible for removing the inode item from the AIL if it has not been
815 * re-logged, and unlocking the inode's flush lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 */
817void
818xfs_iflush_abort(
Dave Chinner04913fd2012-04-23 15:58:41 +1000819 xfs_inode_t *ip,
820 bool stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
David Chinner783a2f62008-10-30 17:39:58 +1100822 xfs_inode_log_item_t *iip = ip->i_itemp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (iip) {
825 if (iip->ili_item.li_flags & XFS_LI_IN_AIL) {
Brian Foster146e54b2015-08-19 10:01:08 +1000826 xfs_trans_ail_remove(&iip->ili_item,
827 stale ? SHUTDOWN_LOG_IO_ERROR :
Dave Chinner04913fd2012-04-23 15:58:41 +1000828 SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
830 iip->ili_logged = 0;
831 /*
832 * Clear the ili_last_fields bits now that we know that the
833 * data corresponding to them is safely on disk.
834 */
835 iip->ili_last_fields = 0;
836 /*
837 * Clear the inode logging fields so no more flushes are
838 * attempted.
839 */
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000840 iip->ili_fields = 0;
Dave Chinnerfc0561c2015-11-03 13:14:59 +1100841 iip->ili_fsync_fields = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
843 /*
844 * Release the inode's flush lock since we're done with it.
845 */
846 xfs_ifunlock(ip);
847}
848
849void
850xfs_istale_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000851 struct xfs_buf *bp,
852 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Dave Chinner04913fd2012-04-23 15:58:41 +1000854 xfs_iflush_abort(INODE_ITEM(lip)->ili_inode, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
Tim Shimmin6d192a92006-06-09 14:55:38 +1000856
857/*
858 * convert an xfs_inode_log_format struct from either 32 or 64 bit versions
859 * (which can have different field alignments) to the native version
860 */
861int
862xfs_inode_item_format_convert(
863 xfs_log_iovec_t *buf,
864 xfs_inode_log_format_t *in_f)
865{
866 if (buf->i_len == sizeof(xfs_inode_log_format_32_t)) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000867 xfs_inode_log_format_32_t *in_f32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000868
Tim Shimmin6d192a92006-06-09 14:55:38 +1000869 in_f->ilf_type = in_f32->ilf_type;
870 in_f->ilf_size = in_f32->ilf_size;
871 in_f->ilf_fields = in_f32->ilf_fields;
872 in_f->ilf_asize = in_f32->ilf_asize;
873 in_f->ilf_dsize = in_f32->ilf_dsize;
874 in_f->ilf_ino = in_f32->ilf_ino;
875 /* copy biggest field of ilf_u */
876 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
877 in_f32->ilf_u.ilfu_uuid.__u_bits,
878 sizeof(uuid_t));
879 in_f->ilf_blkno = in_f32->ilf_blkno;
880 in_f->ilf_len = in_f32->ilf_len;
881 in_f->ilf_boffset = in_f32->ilf_boffset;
882 return 0;
883 } else if (buf->i_len == sizeof(xfs_inode_log_format_64_t)){
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000884 xfs_inode_log_format_64_t *in_f64 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000885
Tim Shimmin6d192a92006-06-09 14:55:38 +1000886 in_f->ilf_type = in_f64->ilf_type;
887 in_f->ilf_size = in_f64->ilf_size;
888 in_f->ilf_fields = in_f64->ilf_fields;
889 in_f->ilf_asize = in_f64->ilf_asize;
890 in_f->ilf_dsize = in_f64->ilf_dsize;
891 in_f->ilf_ino = in_f64->ilf_ino;
892 /* copy biggest field of ilf_u */
893 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
894 in_f64->ilf_u.ilfu_uuid.__u_bits,
895 sizeof(uuid_t));
896 in_f->ilf_blkno = in_f64->ilf_blkno;
897 in_f->ilf_len = in_f64->ilf_len;
898 in_f->ilf_boffset = in_f64->ilf_boffset;
899 return 0;
900 }
Dave Chinner24513372014-06-25 14:58:08 +1000901 return -EFSCORRUPTED;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000902}