blob: 3ad997278869165c454142d253b66a4362c5898d [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"
Christoph Hellwig12343512013-12-13 11:00:43 +110030#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32
33kmem_zone_t *xfs_ili_zone; /* inode log item zone */
34
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +100035static inline struct xfs_inode_log_item *INODE_ITEM(struct xfs_log_item *lip)
36{
37 return container_of(lip, struct xfs_inode_log_item, ili_item);
38}
39
Christoph Hellwigce9641d2013-12-13 11:00:43 +110040STATIC void
41xfs_inode_item_data_fork_size(
42 struct xfs_inode_log_item *iip,
43 int *nvecs,
44 int *nbytes)
45{
46 struct xfs_inode *ip = iip->ili_inode;
47
48 switch (ip->i_d.di_format) {
49 case XFS_DINODE_FMT_EXTENTS:
50 if ((iip->ili_fields & XFS_ILOG_DEXT) &&
51 ip->i_d.di_nextents > 0 &&
52 ip->i_df.if_bytes > 0) {
53 /* worst case, doesn't subtract delalloc extents */
54 *nbytes += XFS_IFORK_DSIZE(ip);
55 *nvecs += 1;
56 }
57 break;
58 case XFS_DINODE_FMT_BTREE:
59 if ((iip->ili_fields & XFS_ILOG_DBROOT) &&
60 ip->i_df.if_broot_bytes > 0) {
61 *nbytes += ip->i_df.if_broot_bytes;
62 *nvecs += 1;
63 }
64 break;
65 case XFS_DINODE_FMT_LOCAL:
66 if ((iip->ili_fields & XFS_ILOG_DDATA) &&
67 ip->i_df.if_bytes > 0) {
68 *nbytes += roundup(ip->i_df.if_bytes, 4);
69 *nvecs += 1;
70 }
71 break;
72
73 case XFS_DINODE_FMT_DEV:
74 case XFS_DINODE_FMT_UUID:
75 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 Hellwig339a5f52012-02-29 09:53:53 +0000158 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
159 XFS_ILOG_DEV | XFS_ILOG_UUID);
160
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000161 if ((iip->ili_fields & XFS_ILOG_DEXT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000162 ip->i_d.di_nextents > 0 &&
163 ip->i_df.if_bytes > 0) {
Christoph Hellwigda776502013-12-13 11:34:04 +1100164 struct xfs_bmbt_rec *p;
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 ASSERT(ip->i_df.if_u1.if_extents != NULL);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000167 ASSERT(ip->i_df.if_bytes / sizeof(xfs_bmbt_rec_t) > 0);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000168
Christoph Hellwigda776502013-12-13 11:34:04 +1100169 p = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_IEXT);
170 data_bytes = xfs_iextents_copy(ip, p, XFS_DATA_FORK);
171 xlog_finish_iovec(lv, *vecp, data_bytes);
172
173 ASSERT(data_bytes <= ip->i_df.if_bytes);
174
175 ilf->ilf_dsize = data_bytes;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100176 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000177 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000178 iip->ili_fields &= ~XFS_ILOG_DEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000182 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000183 ~(XFS_ILOG_DDATA | XFS_ILOG_DEXT |
184 XFS_ILOG_DEV | XFS_ILOG_UUID);
185
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000186 if ((iip->ili_fields & XFS_ILOG_DBROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000187 ip->i_df.if_broot_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 ASSERT(ip->i_df.if_broot != NULL);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100189 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_IBROOT,
Christoph Hellwig12343512013-12-13 11:00:43 +1100190 ip->i_df.if_broot,
191 ip->i_df.if_broot_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100192 ilf->ilf_dsize = ip->i_df.if_broot_bytes;
193 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000194 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000195 ASSERT(!(iip->ili_fields &
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000196 XFS_ILOG_DBROOT));
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000197 iip->ili_fields &= ~XFS_ILOG_DBROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
199 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000201 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000202 ~(XFS_ILOG_DEXT | XFS_ILOG_DBROOT |
203 XFS_ILOG_DEV | XFS_ILOG_UUID);
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.
208 * The underlying memory is guaranteed to
209 * 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_real_bytes == 0 ||
213 ip->i_df.if_real_bytes == data_bytes);
214 ASSERT(ip->i_df.if_u1.if_data != NULL);
215 ASSERT(ip->i_d.di_size > 0);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100216 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_ILOCAL,
Christoph Hellwig12343512013-12-13 11:00:43 +1100217 ip->i_df.if_u1.if_data, data_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100218 ilf->ilf_dsize = (unsigned)data_bytes;
219 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000220 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000221 iip->ili_fields &= ~XFS_ILOG_DDATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 case XFS_DINODE_FMT_DEV:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000225 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000226 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
227 XFS_ILOG_DEXT | XFS_ILOG_UUID);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100228 if (iip->ili_fields & XFS_ILOG_DEV)
229 ilf->ilf_u.ilfu_rdev = ip->i_df.if_u2.if_rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 case XFS_DINODE_FMT_UUID:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000232 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000233 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
234 XFS_ILOG_DEXT | XFS_ILOG_DEV);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100235 if (iip->ili_fields & XFS_ILOG_UUID)
236 ilf->ilf_u.ilfu_uuid = ip->i_df.if_u2.if_uuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 default:
239 ASSERT(0);
240 break;
241 }
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100242}
243
Christoph Hellwig12343512013-12-13 11:00:43 +1100244STATIC void
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100245xfs_inode_item_format_attr_fork(
246 struct xfs_inode_log_item *iip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100247 struct xfs_inode_log_format *ilf,
248 struct xfs_log_vec *lv,
249 struct xfs_log_iovec **vecp)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100250{
251 struct xfs_inode *ip = iip->ili_inode;
252 size_t data_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 switch (ip->i_d.di_aformat) {
255 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000256 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000257 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT);
258
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000259 if ((iip->ili_fields & XFS_ILOG_AEXT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000260 ip->i_d.di_anextents > 0 &&
261 ip->i_afp->if_bytes > 0) {
Christoph Hellwigda776502013-12-13 11:34:04 +1100262 struct xfs_bmbt_rec *p;
263
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000264 ASSERT(ip->i_afp->if_bytes / sizeof(xfs_bmbt_rec_t) ==
265 ip->i_d.di_anextents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 ASSERT(ip->i_afp->if_u1.if_extents != NULL);
Christoph Hellwigda776502013-12-13 11:34:04 +1100267
268 p = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_IATTR_EXT);
269 data_bytes = xfs_iextents_copy(ip, p, XFS_ATTR_FORK);
270 xlog_finish_iovec(lv, *vecp, data_bytes);
271
272 ilf->ilf_asize = data_bytes;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100273 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000274 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000275 iip->ili_fields &= ~XFS_ILOG_AEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
277 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 case XFS_DINODE_FMT_BTREE:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000279 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000280 ~(XFS_ILOG_ADATA | XFS_ILOG_AEXT);
281
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000282 if ((iip->ili_fields & XFS_ILOG_ABROOT) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000283 ip->i_afp->if_broot_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 ASSERT(ip->i_afp->if_broot != NULL);
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000285
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100286 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_IATTR_BROOT,
Christoph Hellwig12343512013-12-13 11:00:43 +1100287 ip->i_afp->if_broot,
288 ip->i_afp->if_broot_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100289 ilf->ilf_asize = ip->i_afp->if_broot_bytes;
290 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000291 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000292 iip->ili_fields &= ~XFS_ILOG_ABROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 case XFS_DINODE_FMT_LOCAL:
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000296 iip->ili_fields &=
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000297 ~(XFS_ILOG_AEXT | XFS_ILOG_ABROOT);
298
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000299 if ((iip->ili_fields & XFS_ILOG_ADATA) &&
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000300 ip->i_afp->if_bytes > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /*
302 * Round i_bytes up to a word boundary.
303 * The underlying memory is guaranteed to
304 * to be there by xfs_idata_realloc().
305 */
306 data_bytes = roundup(ip->i_afp->if_bytes, 4);
Christoph Hellwig12343512013-12-13 11:00:43 +1100307 ASSERT(ip->i_afp->if_real_bytes == 0 ||
308 ip->i_afp->if_real_bytes == data_bytes);
309 ASSERT(ip->i_afp->if_u1.if_data != NULL);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100310 xlog_copy_iovec(lv, vecp, XLOG_REG_TYPE_IATTR_LOCAL,
Christoph Hellwig12343512013-12-13 11:00:43 +1100311 ip->i_afp->if_u1.if_data,
312 data_bytes);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100313 ilf->ilf_asize = (unsigned)data_bytes;
314 ilf->ilf_size++;
Christoph Hellwig339a5f52012-02-29 09:53:53 +0000315 } else {
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000316 iip->ili_fields &= ~XFS_ILOG_ADATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 default:
320 ASSERT(0);
321 break;
322 }
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100323}
324
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100325static void
326xfs_icdinode_to_log_dinode(
327 struct xfs_icdinode *from,
328 struct xfs_log_dinode *to)
329{
330 to->di_magic = from->di_magic;
331 to->di_mode = from->di_mode;
332 to->di_version = from->di_version;
333 to->di_format = from->di_format;
334 to->di_onlink = from->di_onlink;
335 to->di_uid = from->di_uid;
336 to->di_gid = from->di_gid;
337 to->di_nlink = from->di_nlink;
338 to->di_projid_lo = from->di_projid_lo;
339 to->di_projid_hi = from->di_projid_hi;
340 memcpy(to->di_pad, from->di_pad, sizeof(to->di_pad));
341 to->di_atime.t_sec = from->di_atime.t_sec;
342 to->di_atime.t_nsec = from->di_atime.t_nsec;
343 to->di_mtime.t_sec = from->di_mtime.t_sec;
344 to->di_mtime.t_nsec = from->di_mtime.t_nsec;
345 to->di_ctime.t_sec = from->di_ctime.t_sec;
346 to->di_ctime.t_nsec = from->di_ctime.t_nsec;
347 to->di_size = from->di_size;
348 to->di_nblocks = from->di_nblocks;
349 to->di_extsize = from->di_extsize;
350 to->di_nextents = from->di_nextents;
351 to->di_anextents = from->di_anextents;
352 to->di_forkoff = from->di_forkoff;
353 to->di_aformat = from->di_aformat;
354 to->di_dmevmask = from->di_dmevmask;
355 to->di_dmstate = from->di_dmstate;
356 to->di_flags = from->di_flags;
357 to->di_gen = from->di_gen;
358
359 if (from->di_version == 3) {
360 to->di_changecount = from->di_changecount;
361 to->di_crtime.t_sec = from->di_crtime.t_sec;
362 to->di_crtime.t_nsec = from->di_crtime.t_nsec;
363 to->di_flags2 = from->di_flags2;
364 to->di_ino = from->di_ino;
365 to->di_lsn = from->di_lsn;
366 memcpy(to->di_pad2, from->di_pad2, sizeof(to->di_pad2));
367 uuid_copy(&to->di_uuid, &from->di_uuid);
368 to->di_flushiter = 0;
369 } else {
370 to->di_flushiter = from->di_flushiter;
371 }
372}
373
374/*
375 * Recovery needs to be able to convert a log dinode back to a real dinode
376 * for writeback we do that by converting a log dinode to a icdinode, and
377 * then passing that to the formatting function.
378 */
379void
380xfs_log_dinode_to_icdinode(
381 struct xfs_log_dinode *from,
382 struct xfs_icdinode *to)
383{
384 to->di_magic = from->di_magic;
385 to->di_mode = from->di_mode;
386 to->di_version = from->di_version;
387 to->di_format = from->di_format;
388 to->di_onlink = from->di_onlink;
389 to->di_uid = from->di_uid;
390 to->di_gid = from->di_gid;
391 to->di_nlink = from->di_nlink;
392 to->di_projid_lo = from->di_projid_lo;
393 to->di_projid_hi = from->di_projid_hi;
394 memset(to->di_pad, 0, sizeof(to->di_pad));
395 to->di_atime.t_sec = from->di_atime.t_sec;
396 to->di_atime.t_nsec = from->di_atime.t_nsec;
397 to->di_mtime.t_sec = from->di_mtime.t_sec;
398 to->di_mtime.t_nsec = from->di_mtime.t_nsec;
399 to->di_ctime.t_sec = from->di_ctime.t_sec;
400 to->di_ctime.t_nsec = from->di_ctime.t_nsec;
401 to->di_size = from->di_size;
402 to->di_nblocks = from->di_nblocks;
403 to->di_extsize = from->di_extsize;
404 to->di_nextents = from->di_nextents;
405 to->di_anextents = from->di_anextents;
406 to->di_forkoff = from->di_forkoff;
407 to->di_aformat = from->di_aformat;
408 to->di_dmevmask = from->di_dmevmask;
409 to->di_dmstate = from->di_dmstate;
410 to->di_flags = from->di_flags;
411 to->di_gen = from->di_gen;
412
413 if (from->di_version == 3) {
414 to->di_changecount = from->di_changecount;
415 to->di_crtime.t_sec = from->di_crtime.t_sec;
416 to->di_crtime.t_nsec = from->di_crtime.t_nsec;
417 to->di_flags2 = from->di_flags2;
418 to->di_ino = from->di_ino;
419 to->di_lsn = from->di_lsn;
420 memcpy(to->di_pad2, from->di_pad2, sizeof(to->di_pad2));
421 uuid_copy(&to->di_uuid, &from->di_uuid);
422 to->di_flushiter = 0;
423 } else {
424 to->di_flushiter = from->di_flushiter;
425 }
426}
427
428/*
429 * Format the inode core. Current timestamp data is only in the VFS inode
430 * fields, so we need to grab them from there. Hence rather than just copying
431 * the XFS inode core structure, format the fields directly into the iovec.
432 */
433static void
434xfs_inode_item_format_core(
435 struct xfs_inode *ip,
436 struct xfs_log_vec *lv,
437 struct xfs_log_iovec **vecp)
438{
439 struct xfs_log_dinode *dic;
440
441 dic = xlog_prepare_iovec(lv, vecp, XLOG_REG_TYPE_ICORE);
442 xfs_icdinode_to_log_dinode(&ip->i_d, dic);
443 xlog_finish_iovec(lv, *vecp, xfs_log_dinode_size(ip->i_d.di_version));
444}
445
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100446/*
447 * This is called to fill in the vector of log iovecs for the given inode
448 * log item. It fills the first item with an inode log format structure,
449 * the second with the on-disk inode structure, and a possible third and/or
450 * fourth with the inode data/extents/b-tree root and inode attributes
451 * data/extents/b-tree root.
452 */
453STATIC void
454xfs_inode_item_format(
455 struct xfs_log_item *lip,
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100456 struct xfs_log_vec *lv)
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100457{
458 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
459 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100460 struct xfs_inode_log_format *ilf;
461 struct xfs_log_iovec *vecp = NULL;
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100462
Dave Chinner263997a2014-05-20 07:46:40 +1000463 ASSERT(ip->i_d.di_version > 1);
464
Christoph Hellwig2f251292013-12-13 11:34:05 +1100465 ilf = xlog_prepare_iovec(lv, &vecp, XLOG_REG_TYPE_IFORMAT);
466 ilf->ilf_type = XFS_LI_INODE;
467 ilf->ilf_ino = ip->i_ino;
468 ilf->ilf_blkno = ip->i_imap.im_blkno;
469 ilf->ilf_len = ip->i_imap.im_len;
470 ilf->ilf_boffset = ip->i_imap.im_boffset;
471 ilf->ilf_fields = XFS_ILOG_CORE;
472 ilf->ilf_size = 2; /* format + core */
473 xlog_finish_iovec(lv, vecp, sizeof(struct xfs_inode_log_format));
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100474
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +1100475 xfs_inode_item_format_core(ip, lv, &vecp);
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100476 xfs_inode_item_format_data_fork(iip, ilf, lv, &vecp);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100477 if (XFS_IFORK_Q(ip)) {
Christoph Hellwigbde7cff2013-12-13 11:34:02 +1100478 xfs_inode_item_format_attr_fork(iip, ilf, lv, &vecp);
Christoph Hellwig3de559fb2013-12-13 11:00:43 +1100479 } else {
480 iip->ili_fields &=
481 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
482 }
483
Christoph Hellwig2f251292013-12-13 11:34:05 +1100484 /* update the format with the exact fields we actually logged */
485 ilf->ilf_fields |= (iip->ili_fields & ~XFS_ILOG_TIMESTAMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488/*
489 * This is called to pin the inode associated with the inode log
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000490 * item in memory so it cannot be written out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 */
492STATIC void
493xfs_inode_item_pin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000494 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000496 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000497
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000498 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
499
500 trace_xfs_inode_pin(ip, _RET_IP_);
501 atomic_inc(&ip->i_pincount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
504
505/*
506 * This is called to unpin the inode associated with the inode log
507 * item which was previously pinned with a call to xfs_inode_item_pin().
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000508 *
509 * Also wake up anyone in xfs_iunpin_wait() if the count goes to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511STATIC void
512xfs_inode_item_unpin(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000513 struct xfs_log_item *lip,
Christoph Hellwig9412e312010-06-23 18:11:15 +1000514 int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000516 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000517
Dave Chinner4aaf15d2010-03-08 11:24:07 +1100518 trace_xfs_inode_unpin(ip, _RET_IP_);
Christoph Hellwiga14a5ab2010-02-18 12:43:22 +0000519 ASSERT(atomic_read(&ip->i_pincount) > 0);
520 if (atomic_dec_and_test(&ip->i_pincount))
Christoph Hellwigf392e632011-12-18 20:00:10 +0000521 wake_up_bit(&ip->i_flags, __XFS_IPINNED_BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524STATIC uint
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000525xfs_inode_item_push(
526 struct xfs_log_item *lip,
527 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000529 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
530 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000531 struct xfs_buf *bp = NULL;
532 uint rval = XFS_ITEM_SUCCESS;
533 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000535 if (xfs_ipincount(ip) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return XFS_ITEM_PINNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000538 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return XFS_ITEM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Christoph Hellwig4c468192012-04-23 15:58:36 +1000541 /*
542 * Re-check the pincount now that we stabilized the value by
543 * taking the ilock.
544 */
545 if (xfs_ipincount(ip) > 0) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000546 rval = XFS_ITEM_PINNED;
547 goto out_unlock;
Christoph Hellwig4c468192012-04-23 15:58:36 +1000548 }
549
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000550 /*
Brian Foster9a3a5da2012-06-11 10:39:43 -0400551 * Stale inode items should force out the iclog.
552 */
553 if (ip->i_flags & XFS_ISTALE) {
554 rval = XFS_ITEM_PINNED;
555 goto out_unlock;
556 }
557
558 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000559 * Someone else is already flushing the inode. Nothing we can do
560 * here but wait for the flush to finish and remove the item from
561 * the AIL.
562 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (!xfs_iflock_nowait(ip)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000564 rval = XFS_ITEM_FLUSHING;
565 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
567
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000568 ASSERT(iip->ili_fields != 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
569 ASSERT(iip->ili_logged == 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
570
571 spin_unlock(&lip->li_ailp->xa_lock);
572
573 error = xfs_iflush(ip, &bp);
574 if (!error) {
575 if (!xfs_buf_delwri_queue(bp, buffer_list))
576 rval = XFS_ITEM_FLUSHING;
577 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000579
580 spin_lock(&lip->li_ailp->xa_lock);
581out_unlock:
582 xfs_iunlock(ip, XFS_ILOCK_SHARED);
583 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
586/*
587 * Unlock the inode associated with the inode log item.
588 * Clear the fields of the inode and inode log item that
589 * are specific to the current transaction. If the
590 * hold flags is set, do not unlock the inode.
591 */
592STATIC void
593xfs_inode_item_unlock(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000594 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000596 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
597 struct xfs_inode *ip = iip->ili_inode;
Christoph Hellwig898621d2010-06-24 11:36:58 +1000598 unsigned short lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200600 ASSERT(ip->i_itemp != NULL);
601 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Christoph Hellwig898621d2010-06-24 11:36:58 +1000603 lock_flags = iip->ili_lock_flags;
604 iip->ili_lock_flags = 0;
Christoph Hellwigddc34152011-09-19 15:00:54 +0000605 if (lock_flags)
Christoph Hellwigf3ca87382011-07-08 14:34:47 +0200606 xfs_iunlock(ip, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
609/*
Dave Chinnerde25c182010-11-30 15:15:46 +1100610 * This is called to find out where the oldest active copy of the inode log
611 * item in the on disk log resides now that the last log write of it completed
612 * at the given lsn. Since we always re-log all dirty data in an inode, the
613 * latest copy in the on disk log is the only one that matters. Therefore,
614 * simply return the given lsn.
615 *
616 * If the inode has been marked stale because the cluster is being freed, we
617 * don't want to (re-)insert this inode into the AIL. There is a race condition
618 * where the cluster buffer may be unpinned before the inode is inserted into
619 * the AIL during transaction committed processing. If the buffer is unpinned
620 * before the inode item has been committed and inserted, then it is possible
Dave Chinner1316d4d2011-07-04 05:27:36 +0000621 * for the buffer to be written and IO completes before the inode is inserted
Dave Chinnerde25c182010-11-30 15:15:46 +1100622 * into the AIL. In that case, we'd be inserting a clean, stale inode into the
623 * AIL which will never get removed. It will, however, get reclaimed which
624 * triggers an assert in xfs_inode_free() complaining about freein an inode
625 * still in the AIL.
626 *
Dave Chinner1316d4d2011-07-04 05:27:36 +0000627 * To avoid this, just unpin the inode directly and return a LSN of -1 so the
628 * transaction committed code knows that it does not need to do any further
629 * processing on the item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631STATIC xfs_lsn_t
632xfs_inode_item_committed(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000633 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 xfs_lsn_t lsn)
635{
Dave Chinnerde25c182010-11-30 15:15:46 +1100636 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
637 struct xfs_inode *ip = iip->ili_inode;
638
Dave Chinner1316d4d2011-07-04 05:27:36 +0000639 if (xfs_iflags_test(ip, XFS_ISTALE)) {
640 xfs_inode_item_unpin(lip, 0);
641 return -1;
642 }
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000643 return lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
646/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 * XXX rcc - this one really has to do something. Probably needs
648 * to stamp in a new field in the incore inode.
649 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650STATIC void
651xfs_inode_item_committing(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000652 struct xfs_log_item *lip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 xfs_lsn_t lsn)
654{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000655 INODE_ITEM(lip)->ili_last_lsn = lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
658/*
659 * This is the ops vector shared by all buf log items.
660 */
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000661static const struct xfs_item_ops xfs_inode_item_ops = {
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000662 .iop_size = xfs_inode_item_size,
663 .iop_format = xfs_inode_item_format,
664 .iop_pin = xfs_inode_item_pin,
665 .iop_unpin = xfs_inode_item_unpin,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000666 .iop_unlock = xfs_inode_item_unlock,
667 .iop_committed = xfs_inode_item_committed,
668 .iop_push = xfs_inode_item_push,
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000669 .iop_committing = xfs_inode_item_committing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670};
671
672
673/*
674 * Initialize the inode log item for a newly allocated (in-core) inode.
675 */
676void
677xfs_inode_item_init(
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000678 struct xfs_inode *ip,
679 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Christoph Hellwig7bfa31d2010-06-23 18:11:15 +1000681 struct xfs_inode_log_item *iip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 ASSERT(ip->i_itemp == NULL);
684 iip = ip->i_itemp = kmem_zone_zalloc(xfs_ili_zone, KM_SLEEP);
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 iip->ili_inode = ip;
Dave Chinner43f5efc2010-03-23 10:10:00 +1100687 xfs_log_item_init(mp, &iip->ili_item, XFS_LI_INODE,
688 &xfs_inode_item_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
691/*
692 * Free the inode log item and any memory hanging off of it.
693 */
694void
695xfs_inode_item_destroy(
696 xfs_inode_t *ip)
697{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 kmem_zone_free(xfs_ili_zone, ip->i_itemp);
699}
700
701
702/*
703 * This is the inode flushing I/O completion routine. It is called
704 * from interrupt level when the buffer containing the inode is
705 * flushed to disk. It is responsible for removing the inode item
706 * from the AIL if it has not been re-logged, and unlocking the inode's
707 * flush lock.
Dave Chinner30136832010-12-20 12:03:17 +1100708 *
709 * To reduce AIL lock traffic as much as possible, we scan the buffer log item
710 * list for other inodes that will run this function. We remove them from the
711 * buffer list so we can process all the inode IO completions in one AIL lock
712 * traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714void
715xfs_iflush_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000716 struct xfs_buf *bp,
717 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
Dave Chinner30136832010-12-20 12:03:17 +1100719 struct xfs_inode_log_item *iip;
720 struct xfs_log_item *blip;
721 struct xfs_log_item *next;
722 struct xfs_log_item *prev;
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000723 struct xfs_ail *ailp = lip->li_ailp;
Dave Chinner30136832010-12-20 12:03:17 +1100724 int need_ail = 0;
725
726 /*
727 * Scan the buffer IO completions for other inodes being completed and
728 * attach them to the current inode log item.
729 */
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200730 blip = bp->b_fspriv;
Dave Chinner30136832010-12-20 12:03:17 +1100731 prev = NULL;
732 while (blip != NULL) {
Mark Tinguely52177932014-10-03 09:09:50 +1000733 if (blip->li_cb != xfs_iflush_done) {
Dave Chinner30136832010-12-20 12:03:17 +1100734 prev = blip;
735 blip = blip->li_bio_list;
736 continue;
737 }
738
739 /* remove from list */
740 next = blip->li_bio_list;
741 if (!prev) {
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200742 bp->b_fspriv = next;
Dave Chinner30136832010-12-20 12:03:17 +1100743 } else {
744 prev->li_bio_list = next;
745 }
746
747 /* add to current list */
748 blip->li_bio_list = lip->li_bio_list;
749 lip->li_bio_list = blip;
750
751 /*
752 * while we have the item, do the unlocked check for needing
753 * the AIL lock.
754 */
755 iip = INODE_ITEM(blip);
756 if (iip->ili_logged && blip->li_lsn == iip->ili_flush_lsn)
757 need_ail++;
758
759 blip = next;
760 }
761
762 /* make sure we capture the state of the initial inode. */
763 iip = INODE_ITEM(lip);
764 if (iip->ili_logged && lip->li_lsn == iip->ili_flush_lsn)
765 need_ail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 /*
768 * We only want to pull the item from the AIL if it is
769 * actually there and its location in the log has not
770 * changed since we started the flush. Thus, we only bother
771 * if the ili_logged flag is set and the inode's lsn has not
772 * changed. First we check the lsn outside
773 * the lock since it's cheaper, and then we recheck while
774 * holding the lock before removing the inode from the AIL.
775 */
Dave Chinner30136832010-12-20 12:03:17 +1100776 if (need_ail) {
777 struct xfs_log_item *log_items[need_ail];
778 int i = 0;
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) {
781 iip = INODE_ITEM(blip);
782 if (iip->ili_logged &&
783 blip->li_lsn == iip->ili_flush_lsn) {
784 log_items[i++] = blip;
785 }
786 ASSERT(i <= need_ail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
Dave Chinner30136832010-12-20 12:03:17 +1100788 /* xfs_trans_ail_delete_bulk() drops the AIL lock. */
Dave Chinner04913fd2012-04-23 15:58:41 +1000789 xfs_trans_ail_delete_bulk(ailp, log_items, i,
790 SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 }
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 /*
Dave Chinner30136832010-12-20 12:03:17 +1100795 * clean up and unlock the flush lock now we are done. We can clear the
796 * ili_last_fields bits now that we know that the data corresponding to
797 * them is safely on disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 */
Dave Chinner30136832010-12-20 12:03:17 +1100799 for (blip = lip; blip; blip = next) {
800 next = blip->li_bio_list;
801 blip->li_bio_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Dave Chinner30136832010-12-20 12:03:17 +1100803 iip = INODE_ITEM(blip);
804 iip->ili_logged = 0;
805 iip->ili_last_fields = 0;
806 xfs_ifunlock(iip->ili_inode);
807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
810/*
Dave Chinner04913fd2012-04-23 15:58:41 +1000811 * This is the inode flushing abort routine. It is called from xfs_iflush when
812 * the filesystem is shutting down to clean up the inode state. It is
813 * responsible for removing the inode item from the AIL if it has not been
814 * re-logged, and unlocking the inode's flush lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 */
816void
817xfs_iflush_abort(
Dave Chinner04913fd2012-04-23 15:58:41 +1000818 xfs_inode_t *ip,
819 bool stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
David Chinner783a2f62008-10-30 17:39:58 +1100821 xfs_inode_log_item_t *iip = ip->i_itemp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (iip) {
824 if (iip->ili_item.li_flags & XFS_LI_IN_AIL) {
Brian Foster146e54b2015-08-19 10:01:08 +1000825 xfs_trans_ail_remove(&iip->ili_item,
826 stale ? SHUTDOWN_LOG_IO_ERROR :
Dave Chinner04913fd2012-04-23 15:58:41 +1000827 SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
829 iip->ili_logged = 0;
830 /*
831 * Clear the ili_last_fields bits now that we know that the
832 * data corresponding to them is safely on disk.
833 */
834 iip->ili_last_fields = 0;
835 /*
836 * Clear the inode logging fields so no more flushes are
837 * attempted.
838 */
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +0000839 iip->ili_fields = 0;
Dave Chinnerfc0561c2015-11-03 13:14:59 +1100840 iip->ili_fsync_fields = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
842 /*
843 * Release the inode's flush lock since we're done with it.
844 */
845 xfs_ifunlock(ip);
846}
847
848void
849xfs_istale_done(
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000850 struct xfs_buf *bp,
851 struct xfs_log_item *lip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Dave Chinner04913fd2012-04-23 15:58:41 +1000853 xfs_iflush_abort(INODE_ITEM(lip)->ili_inode, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
Tim Shimmin6d192a92006-06-09 14:55:38 +1000855
856/*
857 * convert an xfs_inode_log_format struct from either 32 or 64 bit versions
858 * (which can have different field alignments) to the native version
859 */
860int
861xfs_inode_item_format_convert(
862 xfs_log_iovec_t *buf,
863 xfs_inode_log_format_t *in_f)
864{
865 if (buf->i_len == sizeof(xfs_inode_log_format_32_t)) {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000866 xfs_inode_log_format_32_t *in_f32 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000867
Tim Shimmin6d192a92006-06-09 14:55:38 +1000868 in_f->ilf_type = in_f32->ilf_type;
869 in_f->ilf_size = in_f32->ilf_size;
870 in_f->ilf_fields = in_f32->ilf_fields;
871 in_f->ilf_asize = in_f32->ilf_asize;
872 in_f->ilf_dsize = in_f32->ilf_dsize;
873 in_f->ilf_ino = in_f32->ilf_ino;
874 /* copy biggest field of ilf_u */
875 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
876 in_f32->ilf_u.ilfu_uuid.__u_bits,
877 sizeof(uuid_t));
878 in_f->ilf_blkno = in_f32->ilf_blkno;
879 in_f->ilf_len = in_f32->ilf_len;
880 in_f->ilf_boffset = in_f32->ilf_boffset;
881 return 0;
882 } else if (buf->i_len == sizeof(xfs_inode_log_format_64_t)){
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000883 xfs_inode_log_format_64_t *in_f64 = buf->i_addr;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000884
Tim Shimmin6d192a92006-06-09 14:55:38 +1000885 in_f->ilf_type = in_f64->ilf_type;
886 in_f->ilf_size = in_f64->ilf_size;
887 in_f->ilf_fields = in_f64->ilf_fields;
888 in_f->ilf_asize = in_f64->ilf_asize;
889 in_f->ilf_dsize = in_f64->ilf_dsize;
890 in_f->ilf_ino = in_f64->ilf_ino;
891 /* copy biggest field of ilf_u */
892 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
893 in_f64->ilf_u.ilfu_uuid.__u_bits,
894 sizeof(uuid_t));
895 in_f->ilf_blkno = in_f64->ilf_blkno;
896 in_f->ilf_len = in_f64->ilf_len;
897 in_f->ilf_boffset = in_f64->ilf_boffset;
898 return 0;
899 }
Dave Chinner24513372014-06-25 14:58:08 +1000900 return -EFSCORRUPTED;
Tim Shimmin6d192a92006-06-09 14:55:38 +1000901}