blob: 90d8e591baf8299590036a82ca0c4fb95af02d2d [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scott7b718762005-11-02 14:58:39 +11003 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +11007#include "xfs_fs.h"
Darrick J. Wong5467b342019-06-28 19:25:35 -07008#include "xfs_shared.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +11009#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110010#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110014#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110015#include "xfs_inode_item.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000016#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110017#include "xfs_trans_priv.h"
Carlos Maiolinod3a304b2017-08-08 18:21:50 -070018#include "xfs_buf_item.h"
Christoph Hellwig12343512013-12-13 11:00:43 +110019#include "xfs_log.h"
Darrick J. Wonga5155b82019-11-02 09:40:53 -070020#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Jeff Laytonf0e28282017-12-11 06:35:19 -050022#include <linux/iversion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Darrick J. Wong182696f2021-10-12 11:09:23 -070024struct kmem_cache *xfs_ili_cache; /* inode log item */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100026static inline struct xfs_inode_log_item *INODE_ITEM(struct xfs_log_item *lip)
27{
28 return container_of(lip, struct xfs_inode_log_item, ili_item);
29}
30
Dave Chinner19f4e7c2021-06-18 08:21:51 -070031/*
32 * The logged size of an inode fork is always the current size of the inode
33 * fork. This means that when an inode fork is relogged, the size of the logged
34 * region is determined by the current state, not the combination of the
35 * previously logged state + the current state. This is different relogging
36 * behaviour to most other log items which will retain the size of the
37 * previously logged changes when smaller regions are relogged.
38 *
39 * Hence operations that remove data from the inode fork (e.g. shortform
40 * dir/attr remove, extent form extent removal, etc), the size of the relogged
41 * inode gets -smaller- rather than stays the same size as the previously logged
42 * size and this can result in the committing transaction reducing the amount of
43 * space being consumed by the CIL.
44 */
Christoph Hellwigce9641d2013-12-13 11:00:43 +110045STATIC void
46xfs_inode_item_data_fork_size(
47 struct xfs_inode_log_item *iip,
48 int *nvecs,
49 int *nbytes)
50{
51 struct xfs_inode *ip = iip->ili_inode;
52
Christoph Hellwigf7e67b22020-05-18 10:28:05 -070053 switch (ip->i_df.if_format) {
Christoph Hellwigce9641d2013-12-13 11:00:43 +110054 case XFS_DINODE_FMT_EXTENTS:
55 if ((iip->ili_fields & XFS_ILOG_DEXT) &&
Christoph Hellwigdaf83962020-05-18 10:27:22 -070056 ip->i_df.if_nextents > 0 &&
Christoph Hellwigce9641d2013-12-13 11:00:43 +110057 ip->i_df.if_bytes > 0) {
58 /* worst case, doesn't subtract delalloc extents */
59 *nbytes += XFS_IFORK_DSIZE(ip);
60 *nvecs += 1;
61 }
62 break;
63 case XFS_DINODE_FMT_BTREE:
64 if ((iip->ili_fields & XFS_ILOG_DBROOT) &&
65 ip->i_df.if_broot_bytes > 0) {
66 *nbytes += ip->i_df.if_broot_bytes;
67 *nvecs += 1;
68 }
69 break;
70 case XFS_DINODE_FMT_LOCAL:
71 if ((iip->ili_fields & XFS_ILOG_DDATA) &&
72 ip->i_df.if_bytes > 0) {
73 *nbytes += roundup(ip->i_df.if_bytes, 4);
74 *nvecs += 1;
75 }
76 break;
77
78 case XFS_DINODE_FMT_DEV:
Christoph Hellwigce9641d2013-12-13 11:00:43 +110079 break;
80 default:
81 ASSERT(0);
82 break;
83 }
84}
85
86STATIC void
87xfs_inode_item_attr_fork_size(
88 struct xfs_inode_log_item *iip,
89 int *nvecs,
90 int *nbytes)
91{
92 struct xfs_inode *ip = iip->ili_inode;
93
Christoph Hellwigf7e67b22020-05-18 10:28:05 -070094 switch (ip->i_afp->if_format) {
Christoph Hellwigce9641d2013-12-13 11:00:43 +110095 case XFS_DINODE_FMT_EXTENTS:
96 if ((iip->ili_fields & XFS_ILOG_AEXT) &&
Christoph Hellwigdaf83962020-05-18 10:27:22 -070097 ip->i_afp->if_nextents > 0 &&
Christoph Hellwigce9641d2013-12-13 11:00:43 +110098 ip->i_afp->if_bytes > 0) {
99 /* worst case, doesn't subtract unused space */
100 *nbytes += XFS_IFORK_ASIZE(ip);
101 *nvecs += 1;
102 }
103 break;
104 case XFS_DINODE_FMT_BTREE:
105 if ((iip->ili_fields & XFS_ILOG_ABROOT) &&
106 ip->i_afp->if_broot_bytes > 0) {
107 *nbytes += ip->i_afp->if_broot_bytes;
108 *nvecs += 1;
109 }
110 break;
111 case XFS_DINODE_FMT_LOCAL:
112 if ((iip->ili_fields & XFS_ILOG_ADATA) &&
113 ip->i_afp->if_bytes > 0) {
114 *nbytes += roundup(ip->i_afp->if_bytes, 4);
115 *nvecs += 1;
116 }
117 break;
118 default:
119 ASSERT(0);
120 break;
121 }
122}
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/*
125 * This returns the number of iovecs needed to log the given inode item.
126 *
127 * We need one iovec for the inode log format structure, one for the
128 * inode core, and possibly one for the inode data/extents/b-tree root
129 * and one for the inode attribute data/extents/b-tree root.
130 */
Dave Chinner166d1362013-08-12 20:50:04 +1000131STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132xfs_inode_item_size(
Dave Chinner166d1362013-08-12 20:50:04 +1000133 struct xfs_log_item *lip,
134 int *nvecs,
135 int *nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000137 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
138 struct xfs_inode *ip = iip->ili_inode;
Dave Chinner166d1362013-08-12 20:50:04 +1000139
140 *nvecs += 2;
141 *nbytes += sizeof(struct xfs_inode_log_format) +
Christoph Hellwige9e2eae2020-03-18 08:15:10 -0700142 xfs_log_dinode_size(ip->i_mount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Christoph Hellwigce9641d2013-12-13 11:00:43 +1100144 xfs_inode_item_data_fork_size(iip, nvecs, nbytes);
145 if (XFS_IFORK_Q(ip))
146 xfs_inode_item_attr_fork_size(iip, nvecs, nbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
Christoph Hellwig12343512013-12-13 11:00:43 +1100149STATIC void
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100150xfs_inode_item_format_data_fork(
151 struct xfs_inode_log_item *iip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100152 struct xfs_inode_log_format *ilf,
153 struct xfs_log_vec *lv,
154 struct xfs_log_iovec **vecp)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100155{
156 struct xfs_inode *ip = iip->ili_inode;
157 size_t data_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Christoph Hellwigf7e67b22020-05-18 10:28:05 -0700159 switch (ip->i_df.if_format) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000161 iip->ili_fields &=
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700162 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT | XFS_ILOG_DEV);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000163
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000164 if ((iip->ili_fields & XFS_ILOG_DEXT) &&
Christoph Hellwigdaf83962020-05-18 10:27:22 -0700165 ip->i_df.if_nextents > 0 &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000166 ip->i_df.if_bytes > 0) {
Christoph Hellwigda776502013-12-13 11:34:04 +1100167 struct xfs_bmbt_rec *p;
168
Eric Sandeen5d829302016-11-08 12:59:42 +1100169 ASSERT(xfs_iext_count(&ip->i_df) > 0);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000170
Christoph Hellwigda776502013-12-13 11:34:04 +1100171 p = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_IEXT);
172 data_bytes = xfs_iextents_copy(ip, p, XFS_DATA_FORK);
173 xlog_finish_iovec(lv, *vecp, data_bytes);
174
175 ASSERT(data_bytes <= ip->i_df.if_bytes);
176
177 ilf->ilf_dsize = data_bytes;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100178 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000179 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000180 iip->ili_fields &= ~XFS_ILOG_DEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
182 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000184 iip->ili_fields &=
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700185 ~(XFS_ILOG_DDATA | XFS_ILOG_DEXT | XFS_ILOG_DEV);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000186
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 Hellwig42b67dc2017-10-19 11:07:09 -0700203 ~(XFS_ILOG_DEXT | XFS_ILOG_DBROOT | XFS_ILOG_DEV);
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000204 if ((iip->ili_fields & XFS_ILOG_DDATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000205 ip->i_df.if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 /*
207 * Round i_bytes up to a word boundary.
Randy Dunlapb63da6c2020-08-05 08:49:58 -0700208 * The underlying memory is guaranteed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 * to be there by xfs_idata_realloc().
210 */
211 data_bytes = roundup(ip->i_df.if_bytes, 4);
Christoph Hellwig12343512013-12-13 11:00:43 +1100212 ASSERT(ip->i_df.if_u1.if_data != NULL);
Christoph Hellwig13d2c102021-03-29 11:11:40 -0700213 ASSERT(ip->i_disk_size > 0);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100214 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_ILOCAL,
Christoph Hellwig12343512013-12-13 11:00:43 +1100215 ip->i_df.if_u1.if_data, data_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100216 ilf->ilf_dsize = (unsigned)data_bytes;
217 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000218 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000219 iip->ili_fields &= ~XFS_ILOG_DDATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 case XFS_DINODE_FMT_DEV:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000223 iip->ili_fields &=
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700224 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT | XFS_ILOG_DEXT);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100225 if (iip->ili_fields & XFS_ILOG_DEV)
Christoph Hellwig66f36462017-10-19 11:07:09 -0700226 ilf->ilf_u.ilfu_rdev = sysv_encode_dev(VFS_I(ip)->i_rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 default:
229 ASSERT(0);
230 break;
231 }
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100232}
233
Christoph Hellwig12343512013-12-13 11:00:43 +1100234STATIC void
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100235xfs_inode_item_format_attr_fork(
236 struct xfs_inode_log_item *iip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100237 struct xfs_inode_log_format *ilf,
238 struct xfs_log_vec *lv,
239 struct xfs_log_iovec **vecp)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100240{
241 struct xfs_inode *ip = iip->ili_inode;
242 size_t data_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Christoph Hellwigf7e67b22020-05-18 10:28:05 -0700244 switch (ip->i_afp->if_format) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000246 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000247 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT);
248
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000249 if ((iip->ili_fields & XFS_ILOG_AEXT) &&
Christoph Hellwigdaf83962020-05-18 10:27:22 -0700250 ip->i_afp->if_nextents > 0 &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000251 ip->i_afp->if_bytes > 0) {
Christoph Hellwigda776502013-12-13 11:34:04 +1100252 struct xfs_bmbt_rec *p;
253
Eric Sandeen5d829302016-11-08 12:59:42 +1100254 ASSERT(xfs_iext_count(ip->i_afp) ==
Christoph Hellwigdaf83962020-05-18 10:27:22 -0700255 ip->i_afp->if_nextents);
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.
Randy Dunlapb63da6c2020-08-05 08:49:58 -0700292 * The underlying memory is guaranteed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 * 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_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
Darrick J. Wong30e05592020-08-24 16:01:34 -0700312/*
313 * Convert an incore timestamp to a log timestamp. Note that the log format
314 * specifies host endian format!
315 */
Christoph Hellwig6fc277c2021-04-21 13:48:27 -0700316static inline xfs_log_timestamp_t
Darrick J. Wong30e05592020-08-24 16:01:34 -0700317xfs_inode_to_log_dinode_ts(
Darrick J. Wongf93e54362020-08-17 09:59:07 -0700318 struct xfs_inode *ip,
Darrick J. Wong30e05592020-08-24 16:01:34 -0700319 const struct timespec64 tv)
320{
Christoph Hellwig732de7d2021-04-21 13:48:27 -0700321 struct xfs_log_legacy_timestamp *lits;
Christoph Hellwig6fc277c2021-04-21 13:48:27 -0700322 xfs_log_timestamp_t its;
Darrick J. Wong30e05592020-08-24 16:01:34 -0700323
Darrick J. Wongf93e54362020-08-17 09:59:07 -0700324 if (xfs_inode_has_bigtime(ip))
325 return xfs_inode_encode_bigtime(tv);
326
Christoph Hellwig732de7d2021-04-21 13:48:27 -0700327 lits = (struct xfs_log_legacy_timestamp *)&its;
Darrick J. Wong30e05592020-08-24 16:01:34 -0700328 lits->t_sec = tv.tv_sec;
329 lits->t_nsec = tv.tv_nsec;
330
331 return its;
332}
333
Christoph Hellwig9b3beb02021-03-29 11:11:38 -0700334/*
335 * The legacy DMAPI fields are only present in the on-disk and in-log inodes,
336 * but not in the in-memory one. But we are guaranteed to have an inode buffer
337 * in memory when logging an inode, so we can just copy it from the on-disk
338 * inode to the in-log inode here so that recovery of file system with these
339 * fields set to non-zero values doesn't lose them. For all other cases we zero
340 * the fields.
341 */
342static void
343xfs_copy_dm_fields_to_log_dinode(
344 struct xfs_inode *ip,
345 struct xfs_log_dinode *to)
346{
347 struct xfs_dinode *dip;
348
349 dip = xfs_buf_offset(ip->i_itemp->ili_item.li_buf,
350 ip->i_imap.im_boffset);
351
352 if (xfs_iflags_test(ip, XFS_IPRESERVE_DM_FIELDS)) {
353 to->di_dmevmask = be32_to_cpu(dip->di_dmevmask);
354 to->di_dmstate = be16_to_cpu(dip->di_dmstate);
355 } else {
356 to->di_dmevmask = 0;
357 to->di_dmstate = 0;
358 }
359}
360
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100361static void
Dave Chinner39878482016-02-09 16:54:58 +1100362xfs_inode_to_log_dinode(
363 struct xfs_inode *ip,
Dave Chinner93f958f2016-02-09 16:54:58 +1100364 struct xfs_log_dinode *to,
365 xfs_lsn_t lsn)
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100366{
Dave Chinner39878482016-02-09 16:54:58 +1100367 struct inode *inode = VFS_I(ip);
368
Dave Chinner93f958f2016-02-09 16:54:58 +1100369 to->di_magic = XFS_DINODE_MAGIC;
Christoph Hellwigf7e67b22020-05-18 10:28:05 -0700370 to->di_format = xfs_ifork_format(&ip->i_df);
Christoph Hellwigba8adad2020-02-21 08:31:27 -0800371 to->di_uid = i_uid_read(inode);
372 to->di_gid = i_gid_read(inode);
Christoph Hellwigceaf6032021-03-29 11:11:39 -0700373 to->di_projid_lo = ip->i_projid & 0xffff;
374 to->di_projid_hi = ip->i_projid >> 16;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100375
Dave Chinner93f958f2016-02-09 16:54:58 +1100376 memset(to->di_pad, 0, sizeof(to->di_pad));
Dave Chinnerfaeb4e42016-02-09 16:54:58 +1100377 memset(to->di_pad3, 0, sizeof(to->di_pad3));
Darrick J. Wongf93e54362020-08-17 09:59:07 -0700378 to->di_atime = xfs_inode_to_log_dinode_ts(ip, inode->i_atime);
379 to->di_mtime = xfs_inode_to_log_dinode_ts(ip, inode->i_mtime);
380 to->di_ctime = xfs_inode_to_log_dinode_ts(ip, inode->i_ctime);
Dave Chinner54d7b5c2016-02-09 16:54:58 +1100381 to->di_nlink = inode->i_nlink;
Dave Chinner9e9a2672016-02-09 16:54:58 +1100382 to->di_gen = inode->i_generation;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100383 to->di_mode = inode->i_mode;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100384
Christoph Hellwig13d2c102021-03-29 11:11:40 -0700385 to->di_size = ip->i_disk_size;
Christoph Hellwig6e73a542021-03-29 11:11:40 -0700386 to->di_nblocks = ip->i_nblocks;
Christoph Hellwig031474c2021-03-29 11:11:41 -0700387 to->di_extsize = ip->i_extsize;
Christoph Hellwigdaf83962020-05-18 10:27:22 -0700388 to->di_nextents = xfs_ifork_nextents(&ip->i_df);
389 to->di_anextents = xfs_ifork_nextents(ip->i_afp);
Christoph Hellwig7821ea32021-03-29 11:11:44 -0700390 to->di_forkoff = ip->i_forkoff;
Christoph Hellwigf7e67b22020-05-18 10:28:05 -0700391 to->di_aformat = xfs_ifork_format(ip->i_afp);
Christoph Hellwigdb073492021-03-29 11:11:44 -0700392 to->di_flags = ip->i_diflags;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100393
Christoph Hellwig9b3beb02021-03-29 11:11:38 -0700394 xfs_copy_dm_fields_to_log_dinode(ip, to);
395
Dave Chinner20413e372017-10-09 11:37:22 -0700396 /* log a dummy value to ensure log structure is fully initialised */
397 to->di_next_unlinked = NULLAGINO;
398
Dave Chinner38c26bf2021-08-18 18:46:37 -0700399 if (xfs_has_v3inodes(ip->i_mount)) {
Christoph Hellwig6471e9c2020-03-18 08:15:11 -0700400 to->di_version = 3;
Jeff Laytonf0e28282017-12-11 06:35:19 -0500401 to->di_changecount = inode_peek_iversion(inode);
Christoph Hellwige98d5e82021-03-29 11:11:45 -0700402 to->di_crtime = xfs_inode_to_log_dinode_ts(ip, ip->i_crtime);
Christoph Hellwig3e09ab82021-03-29 11:11:45 -0700403 to->di_flags2 = ip->i_diflags2;
Christoph Hellwigb33ce572021-03-29 11:11:42 -0700404 to->di_cowextsize = ip->i_cowextsize;
Dave Chinner93f958f2016-02-09 16:54:58 +1100405 to->di_ino = ip->i_ino;
406 to->di_lsn = lsn;
407 memset(to->di_pad2, 0, sizeof(to->di_pad2));
408 uuid_copy(&to->di_uuid, &ip->i_mount->m_sb.sb_meta_uuid);
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100409 to->di_flushiter = 0;
410 } else {
Christoph Hellwig6471e9c2020-03-18 08:15:11 -0700411 to->di_version = 2;
Christoph Hellwig965e0a12021-03-29 11:11:42 -0700412 to->di_flushiter = ip->i_flushiter;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100413 }
414}
415
416/*
417 * Format the inode core. Current timestamp data is only in the VFS inode
418 * fields, so we need to grab them from there. Hence rather than just copying
419 * the XFS inode core structure, format the fields directly into the iovec.
420 */
421static void
422xfs_inode_item_format_core(
423 struct xfs_inode *ip,
424 struct xfs_log_vec *lv,
425 struct xfs_log_iovec **vecp)
426{
427 struct xfs_log_dinode *dic;
428
429 dic = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_ICORE);
Dave Chinner93f958f2016-02-09 16:54:58 +1100430 xfs_inode_to_log_dinode(ip, dic, ip->i_itemp->ili_item.li_lsn);
Christoph Hellwige9e2eae2020-03-18 08:15:10 -0700431 xlog_finish_iovec(lv, *vecp, xfs_log_dinode_size(ip->i_mount));
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100432}
433
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100434/*
435 * This is called to fill in the vector of log iovecs for the given inode
436 * log item. It fills the first item with an inode log format structure,
437 * the second with the on-disk inode structure, and a possible third and/or
438 * fourth with the inode data/extents/b-tree root and inode attributes
439 * data/extents/b-tree root.
Dave Chinner20413e372017-10-09 11:37:22 -0700440 *
441 * Note: Always use the 64 bit inode log format structure so we don't
442 * leave an uninitialised hole in the format item on 64 bit systems. Log
443 * recovery on 32 bit systems handles this just fine, so there's no reason
444 * for not using an initialising the properly padded structure all the time.
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100445 */
446STATIC void
447xfs_inode_item_format(
448 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100449 struct xfs_log_vec *lv)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100450{
451 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
452 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100453 struct xfs_log_iovec *vecp = NULL;
Dave Chinner20413e372017-10-09 11:37:22 -0700454 struct xfs_inode_log_format *ilf;
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100455
Christoph Hellwig2f251292013-12-13 11:34:05 +1100456 ilf = xlog_prepare_iovec(lv, &vecp, XLOG_REG_TYPE_IFORMAT);
457 ilf->ilf_type = XFS_LI_INODE;
458 ilf->ilf_ino = ip->i_ino;
459 ilf->ilf_blkno = ip->i_imap.im_blkno;
460 ilf->ilf_len = ip->i_imap.im_len;
461 ilf->ilf_boffset = ip->i_imap.im_boffset;
462 ilf->ilf_fields = XFS_ILOG_CORE;
463 ilf->ilf_size = 2; /* format + core */
Dave Chinner20413e372017-10-09 11:37:22 -0700464
465 /*
466 * make sure we don't leak uninitialised data into the log in the case
467 * when we don't log every field in the inode.
468 */
469 ilf->ilf_dsize = 0;
470 ilf->ilf_asize = 0;
471 ilf->ilf_pad = 0;
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700472 memset(&ilf->ilf_u, 0, sizeof(ilf->ilf_u));
Dave Chinner20413e372017-10-09 11:37:22 -0700473
474 xlog_finish_iovec(lv, vecp, sizeof(*ilf));
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100475
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100476 xfs_inode_item_format_core(ip, lv, &vecp);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100477 xfs_inode_item_format_data_fork(iip, ilf, lv, &vecp);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100478 if (XFS_IFORK_Q(ip)) {
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100479 xfs_inode_item_format_attr_fork(iip, ilf, lv, &vecp);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100480 } else {
481 iip->ili_fields &=
482 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
483 }
484
Christoph Hellwig2f251292013-12-13 11:34:05 +1100485 /* update the format with the exact fields we actually logged */
486 ilf->ilf_fields |= (iip->ili_fields & ~XFS_ILOG_TIMESTAMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489/*
490 * This is called to pin the inode associated with the inode log
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000491 * item in memory so it cannot be written out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 */
493STATIC void
494xfs_inode_item_pin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000495 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000497 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000498
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000499 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Dave Chinner298f7be2020-06-29 14:49:15 -0700500 ASSERT(lip->li_buf);
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000501
502 trace_xfs_inode_pin(ip, _RET_IP_);
503 atomic_inc(&ip->i_pincount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
506
507/*
508 * This is called to unpin the inode associated with the inode log
509 * item which was previously pinned with a call to xfs_inode_item_pin().
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000510 *
511 * Also wake up anyone in xfs_iunpin_wait() if the count goes to 0.
Dave Chinner298f7be2020-06-29 14:49:15 -0700512 *
513 * Note that unpin can race with inode cluster buffer freeing marking the buffer
514 * stale. In that case, flush completions are run from the buffer unpin call,
515 * which may happen before the inode is unpinned. If we lose the race, there
516 * will be no buffer attached to the log item, but the inode will be marked
517 * XFS_ISTALE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519STATIC void
520xfs_inode_item_unpin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000521 struct xfs_log_item *lip,
Christoph Hellwig9412e312010-06-23 18:11:15 +1000522 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000524 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000525
Dave Chinner4aaf15d2010-03-08 11:24:07 +1100526 trace_xfs_inode_unpin(ip, _RET_IP_);
Dave Chinner298f7be2020-06-29 14:49:15 -0700527 ASSERT(lip->li_buf || xfs_iflags_test(ip, XFS_ISTALE));
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000528 ASSERT(atomic_read(&ip->i_pincount) > 0);
529 if (atomic_dec_and_test(&ip->i_pincount))
Christoph Hellwigf392e632011-12-18 20:00:10 +0000530 wake_up_bit(&ip->i_flags, __XFS_IPINNED_BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000534xfs_inode_item_push(
535 struct xfs_log_item *lip,
536 struct list_head *buffer_list)
Matthew Wilcox57e80952018-03-07 14:59:39 -0800537 __releases(&lip->li_ailp->ail_lock)
538 __acquires(&lip->li_ailp->ail_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000540 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
541 struct xfs_inode *ip = iip->ili_inode;
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700542 struct xfs_buf *bp = lip->li_buf;
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000543 uint rval = XFS_ITEM_SUCCESS;
544 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Dave Chinner90c60e12020-06-29 14:49:19 -0700546 ASSERT(iip->ili_item.li_buf);
547
548 if (xfs_ipincount(ip) > 0 || xfs_buf_ispinned(bp) ||
549 (ip->i_flags & XFS_ISTALE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Dave Chinner718ecc52020-08-17 16:41:01 -0700552 if (xfs_iflags_test(ip, XFS_IFLUSHING))
Dave Chinner90c60e12020-06-29 14:49:19 -0700553 return XFS_ITEM_FLUSHING;
554
555 if (!xfs_buf_trylock(bp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return XFS_ITEM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Matthew Wilcox57e80952018-03-07 14:59:39 -0800558 spin_unlock(&lip->li_ailp->ail_lock);
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000559
Dave Chinner90c60e12020-06-29 14:49:19 -0700560 /*
561 * We need to hold a reference for flushing the cluster buffer as it may
562 * fail the buffer without IO submission. In which case, we better get a
563 * reference for that completion because otherwise we don't get a
564 * reference for IO until we queue the buffer for delwri submission.
565 */
566 xfs_buf_hold(bp);
Dave Chinner5717ea42020-06-29 14:49:20 -0700567 error = xfs_iflush_cluster(bp);
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000568 if (!error) {
569 if (!xfs_buf_delwri_queue(bp, buffer_list))
570 rval = XFS_ITEM_FLUSHING;
571 xfs_buf_relse(bp);
Dave Chinner90c60e12020-06-29 14:49:19 -0700572 } else {
Dave Chinner5717ea42020-06-29 14:49:20 -0700573 /*
574 * Release the buffer if we were unable to flush anything. On
575 * any other error, the buffer has already been released.
576 */
577 if (error == -EAGAIN)
578 xfs_buf_relse(bp);
Brian Fosterd4bc4c52020-03-27 08:29:55 -0700579 rval = XFS_ITEM_LOCKED;
Dave Chinner90c60e12020-06-29 14:49:19 -0700580 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000581
Matthew Wilcox57e80952018-03-07 14:59:39 -0800582 spin_lock(&lip->li_ailp->ail_lock);
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000583 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
586/*
587 * Unlock the inode associated with the inode log item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 */
589STATIC void
Christoph Hellwigddf92052019-06-28 19:27:32 -0700590xfs_inode_item_release(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000591 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000593 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
594 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig898621d2010-06-24 11:36:58 +1000595 unsigned short lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200597 ASSERT(ip->i_itemp != NULL);
598 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Christoph Hellwig898621d2010-06-24 11:36:58 +1000600 lock_flags = iip->ili_lock_flags;
601 iip->ili_lock_flags = 0;
Christoph Hellwigddc34152011-09-19 15:00:54 +0000602 if (lock_flags)
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200603 xfs_iunlock(ip, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
606/*
Dave Chinnerde25c182010-11-30 15:15:46 +1100607 * This is called to find out where the oldest active copy of the inode log
608 * item in the on disk log resides now that the last log write of it completed
609 * at the given lsn. Since we always re-log all dirty data in an inode, the
610 * latest copy in the on disk log is the only one that matters. Therefore,
611 * simply return the given lsn.
612 *
613 * If the inode has been marked stale because the cluster is being freed, we
614 * don't want to (re-)insert this inode into the AIL. There is a race condition
615 * where the cluster buffer may be unpinned before the inode is inserted into
616 * the AIL during transaction committed processing. If the buffer is unpinned
617 * before the inode item has been committed and inserted, then it is possible
Dave Chinner1316d4d2011-07-04 05:27:36 +0000618 * for the buffer to be written and IO completes before the inode is inserted
Dave Chinnerde25c182010-11-30 15:15:46 +1100619 * into the AIL. In that case, we'd be inserting a clean, stale inode into the
620 * AIL which will never get removed. It will, however, get reclaimed which
621 * triggers an assert in xfs_inode_free() complaining about freein an inode
622 * still in the AIL.
623 *
Dave Chinner1316d4d2011-07-04 05:27:36 +0000624 * To avoid this, just unpin the inode directly and return a LSN of -1 so the
625 * transaction committed code knows that it does not need to do any further
626 * processing on the item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628STATIC xfs_lsn_t
629xfs_inode_item_committed(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000630 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 xfs_lsn_t lsn)
632{
Dave Chinnerde25c182010-11-30 15:15:46 +1100633 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
634 struct xfs_inode *ip = iip->ili_inode;
635
Dave Chinner1316d4d2011-07-04 05:27:36 +0000636 if (xfs_iflags_test(ip, XFS_ISTALE)) {
637 xfs_inode_item_unpin(lip, 0);
638 return -1;
639 }
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000640 return lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
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,
Dave Chinner5f9b4b02021-06-18 08:21:52 -0700646 xfs_csn_t seq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Dave Chinner5f9b4b02021-06-18 08:21:52 -0700648 INODE_ITEM(lip)->ili_commit_seq = seq;
Christoph Hellwigddf92052019-06-28 19:27:32 -0700649 return xfs_inode_item_release(lip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000652static const struct xfs_item_ops xfs_inode_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000653 .iop_size = xfs_inode_item_size,
654 .iop_format = xfs_inode_item_format,
655 .iop_pin = xfs_inode_item_pin,
656 .iop_unpin = xfs_inode_item_unpin,
Christoph Hellwigddf92052019-06-28 19:27:32 -0700657 .iop_release = xfs_inode_item_release,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000658 .iop_committed = xfs_inode_item_committed,
659 .iop_push = xfs_inode_item_push,
Christoph Hellwigddf92052019-06-28 19:27:32 -0700660 .iop_committing = xfs_inode_item_committing,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661};
662
663
664/*
665 * Initialize the inode log item for a newly allocated (in-core) inode.
666 */
667void
668xfs_inode_item_init(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000669 struct xfs_inode *ip,
670 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000672 struct xfs_inode_log_item *iip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 ASSERT(ip->i_itemp == NULL);
Darrick J. Wong182696f2021-10-12 11:09:23 -0700675 iip = ip->i_itemp = kmem_cache_zalloc(xfs_ili_cache,
Carlos Maiolino32a2b112020-07-22 09:23:10 -0700676 GFP_KERNEL | __GFP_NOFAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 iip->ili_inode = ip;
Dave Chinner1319ebe2020-06-29 14:48:46 -0700679 spin_lock_init(&iip->ili_lock);
Dave Chinner43f5efc2010-03-23 10:10:00 +1100680 xfs_log_item_init(mp, &iip->ili_item, XFS_LI_INODE,
681 &xfs_inode_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
684/*
685 * Free the inode log item and any memory hanging off of it.
686 */
687void
688xfs_inode_item_destroy(
Dave Chinner298f7be2020-06-29 14:49:15 -0700689 struct xfs_inode *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Dave Chinner298f7be2020-06-29 14:49:15 -0700691 struct xfs_inode_log_item *iip = ip->i_itemp;
692
693 ASSERT(iip->ili_item.li_buf == NULL);
694
695 ip->i_itemp = NULL;
696 kmem_free(iip->ili_item.li_lv_shadow);
Darrick J. Wong182696f2021-10-12 11:09:23 -0700697 kmem_cache_free(xfs_ili_cache, iip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
700
701/*
Dave Chinnera69a1dc2020-06-29 14:49:20 -0700702 * We only want to pull the item from the AIL if it is actually there
703 * and its location in the log has not changed since we started the
704 * flush. Thus, we only bother if the inode's lsn has not changed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 */
Dave Chinnera69a1dc2020-06-29 14:49:20 -0700706static void
707xfs_iflush_ail_updates(
708 struct xfs_ail *ailp,
709 struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Dave Chinnera69a1dc2020-06-29 14:49:20 -0700711 struct xfs_log_item *lip;
712 xfs_lsn_t tail_lsn = 0;
713
714 /* this is an opencoded batch version of xfs_trans_ail_delete */
715 spin_lock(&ailp->ail_lock);
716 list_for_each_entry(lip, list, li_bio_list) {
717 xfs_lsn_t lsn;
718
719 clear_bit(XFS_LI_FAILED, &lip->li_flags);
720 if (INODE_ITEM(lip)->ili_flush_lsn != lip->li_lsn)
721 continue;
722
723 lsn = xfs_ail_delete_one(ailp, lip);
724 if (!tail_lsn && lsn)
725 tail_lsn = lsn;
726 }
727 xfs_ail_update_finish(ailp, tail_lsn);
728}
729
730/*
731 * Walk the list of inodes that have completed their IOs. If they are clean
732 * remove them from the list and dissociate them from the buffer. Buffers that
733 * are still dirty remain linked to the buffer and on the list. Caller must
734 * handle them appropriately.
735 */
736static void
737xfs_iflush_finish(
738 struct xfs_buf *bp,
739 struct list_head *list)
740{
Dave Chinneraac855a2020-06-29 14:48:48 -0700741 struct xfs_log_item *lip, *n;
Dave Chinner30136832010-12-20 12:03:17 +1100742
Dave Chinnera69a1dc2020-06-29 14:49:20 -0700743 list_for_each_entry_safe(lip, n, list, li_bio_list) {
744 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
Dave Chinner298f7be2020-06-29 14:49:15 -0700745 bool drop_buffer = false;
746
Dave Chinner1319ebe2020-06-29 14:48:46 -0700747 spin_lock(&iip->ili_lock);
Dave Chinner1319ebe2020-06-29 14:48:46 -0700748
Dave Chinner298f7be2020-06-29 14:49:15 -0700749 /*
750 * Remove the reference to the cluster buffer if the inode is
Dave Chinnera69a1dc2020-06-29 14:49:20 -0700751 * clean in memory and drop the buffer reference once we've
752 * dropped the locks we hold.
Dave Chinner298f7be2020-06-29 14:49:15 -0700753 */
754 ASSERT(iip->ili_item.li_buf == bp);
755 if (!iip->ili_fields) {
756 iip->ili_item.li_buf = NULL;
Dave Chinnera69a1dc2020-06-29 14:49:20 -0700757 list_del_init(&lip->li_bio_list);
Dave Chinner298f7be2020-06-29 14:49:15 -0700758 drop_buffer = true;
759 }
760 iip->ili_last_fields = 0;
761 iip->ili_flush_lsn = 0;
762 spin_unlock(&iip->ili_lock);
Dave Chinner718ecc52020-08-17 16:41:01 -0700763 xfs_iflags_clear(iip->ili_inode, XFS_IFLUSHING);
Dave Chinner298f7be2020-06-29 14:49:15 -0700764 if (drop_buffer)
765 xfs_buf_rele(bp);
Dave Chinner30136832010-12-20 12:03:17 +1100766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
769/*
Dave Chinnera69a1dc2020-06-29 14:49:20 -0700770 * Inode buffer IO completion routine. It is responsible for removing inodes
Dave Chinner718ecc52020-08-17 16:41:01 -0700771 * attached to the buffer from the AIL if they have not been re-logged and
772 * completing the inode flush.
Dave Chinnera69a1dc2020-06-29 14:49:20 -0700773 */
774void
Christoph Hellwig664ffb82020-09-01 10:55:29 -0700775xfs_buf_inode_iodone(
Dave Chinnera69a1dc2020-06-29 14:49:20 -0700776 struct xfs_buf *bp)
777{
778 struct xfs_log_item *lip, *n;
779 LIST_HEAD(flushed_inodes);
780 LIST_HEAD(ail_updates);
781
782 /*
783 * Pull the attached inodes from the buffer one at a time and take the
784 * appropriate action on them.
785 */
786 list_for_each_entry_safe(lip, n, &bp->b_li_list, li_bio_list) {
787 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
788
789 if (xfs_iflags_test(iip->ili_inode, XFS_ISTALE)) {
790 xfs_iflush_abort(iip->ili_inode);
791 continue;
792 }
793 if (!iip->ili_last_fields)
794 continue;
795
796 /* Do an unlocked check for needing the AIL lock. */
797 if (iip->ili_flush_lsn == lip->li_lsn ||
798 test_bit(XFS_LI_FAILED, &lip->li_flags))
799 list_move_tail(&lip->li_bio_list, &ail_updates);
800 else
801 list_move_tail(&lip->li_bio_list, &flushed_inodes);
802 }
803
804 if (!list_empty(&ail_updates)) {
805 xfs_iflush_ail_updates(bp->b_mount->m_ail, &ail_updates);
806 list_splice_tail(&ail_updates, &flushed_inodes);
807 }
808
809 xfs_iflush_finish(bp, &flushed_inodes);
810 if (!list_empty(&flushed_inodes))
811 list_splice_tail(&flushed_inodes, &bp->b_li_list);
812}
813
Christoph Hellwig664ffb82020-09-01 10:55:29 -0700814void
815xfs_buf_inode_io_fail(
816 struct xfs_buf *bp)
817{
818 struct xfs_log_item *lip;
819
820 list_for_each_entry(lip, &bp->b_li_list, li_bio_list)
821 set_bit(XFS_LI_FAILED, &lip->li_flags);
822}
823
Dave Chinnera69a1dc2020-06-29 14:49:20 -0700824/*
Dave Chinner718ecc52020-08-17 16:41:01 -0700825 * This is the inode flushing abort routine. It is called when
Dave Chinner04913fd2012-04-23 15:58:41 +1000826 * the filesystem is shutting down to clean up the inode state. It is
827 * responsible for removing the inode item from the AIL if it has not been
Dave Chinner718ecc52020-08-17 16:41:01 -0700828 * re-logged and clearing the inode's flush state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
830void
831xfs_iflush_abort(
Dave Chinner298f7be2020-06-29 14:49:15 -0700832 struct xfs_inode *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Dave Chinner298f7be2020-06-29 14:49:15 -0700834 struct xfs_inode_log_item *iip = ip->i_itemp;
835 struct xfs_buf *bp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 if (iip) {
Dave Chinner298f7be2020-06-29 14:49:15 -0700838 /*
839 * Clear the failed bit before removing the item from the AIL so
840 * xfs_trans_ail_delete() doesn't try to clear and release the
841 * buffer attached to the log item before we are done with it.
842 */
843 clear_bit(XFS_LI_FAILED, &iip->ili_item.li_flags);
Brian Foster2b3cf092020-05-06 13:27:04 -0700844 xfs_trans_ail_delete(&iip->ili_item, 0);
Dave Chinner298f7be2020-06-29 14:49:15 -0700845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 /*
847 * Clear the inode logging fields so no more flushes are
848 * attempted.
849 */
Dave Chinner1319ebe2020-06-29 14:48:46 -0700850 spin_lock(&iip->ili_lock);
Dave Chinner1dfde682020-06-29 14:48:45 -0700851 iip->ili_last_fields = 0;
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000852 iip->ili_fields = 0;
Dave Chinnerfc0561c2015-11-03 13:14:59 +1100853 iip->ili_fsync_fields = 0;
Dave Chinner298f7be2020-06-29 14:49:15 -0700854 iip->ili_flush_lsn = 0;
855 bp = iip->ili_item.li_buf;
856 iip->ili_item.li_buf = NULL;
Dave Chinner48d55e22020-06-29 14:49:18 -0700857 list_del_init(&iip->ili_item.li_bio_list);
Dave Chinner1319ebe2020-06-29 14:48:46 -0700858 spin_unlock(&iip->ili_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
Dave Chinner718ecc52020-08-17 16:41:01 -0700860 xfs_iflags_clear(ip, XFS_IFLUSHING);
Dave Chinner298f7be2020-06-29 14:49:15 -0700861 if (bp)
862 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863}
864
Tim Shimmin6d192a92006-06-09 14:55:38 +1000865/*
Dave Chinner20413e372017-10-09 11:37:22 -0700866 * convert an xfs_inode_log_format struct from the old 32 bit version
867 * (which can have different field alignments) to the native 64 bit version
Tim Shimmin6d192a92006-06-09 14:55:38 +1000868 */
869int
870xfs_inode_item_format_convert(
Dave Chinner20413e372017-10-09 11:37:22 -0700871 struct xfs_log_iovec *buf,
872 struct xfs_inode_log_format *in_f)
Tim Shimmin6d192a92006-06-09 14:55:38 +1000873{
Dave Chinner20413e372017-10-09 11:37:22 -0700874 struct xfs_inode_log_format_32 *in_f32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000875
Darrick J. Wonga5155b82019-11-02 09:40:53 -0700876 if (buf->i_len != sizeof(*in_f32)) {
877 XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, NULL);
Dave Chinner20413e372017-10-09 11:37:22 -0700878 return -EFSCORRUPTED;
Darrick J. Wonga5155b82019-11-02 09:40:53 -0700879 }
Tim Shimmin6d192a92006-06-09 14:55:38 +1000880
Dave Chinner20413e372017-10-09 11:37:22 -0700881 in_f->ilf_type = in_f32->ilf_type;
882 in_f->ilf_size = in_f32->ilf_size;
883 in_f->ilf_fields = in_f32->ilf_fields;
884 in_f->ilf_asize = in_f32->ilf_asize;
885 in_f->ilf_dsize = in_f32->ilf_dsize;
886 in_f->ilf_ino = in_f32->ilf_ino;
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700887 memcpy(&in_f->ilf_u, &in_f32->ilf_u, sizeof(in_f->ilf_u));
Dave Chinner20413e372017-10-09 11:37:22 -0700888 in_f->ilf_blkno = in_f32->ilf_blkno;
889 in_f->ilf_len = in_f32->ilf_len;
890 in_f->ilf_boffset = in_f32->ilf_boffset;
891 return 0;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000892}