]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/xfs/xfs_inode_item.c
xfs: refactor xfs_buf_item_format_segment
[mirror_ubuntu-zesty-kernel.git] / fs / xfs / xfs_inode_item.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * 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.
1da177e4 13 *
7b718769
NS
14 * 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
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
a4fbe6ab 20#include "xfs_format.h"
239880ef
DC
21#include "xfs_log_format.h"
22#include "xfs_trans_resv.h"
1da177e4 23#include "xfs_sb.h"
a844f451 24#include "xfs_ag.h"
1da177e4 25#include "xfs_mount.h"
1da177e4 26#include "xfs_inode.h"
239880ef 27#include "xfs_trans.h"
a844f451 28#include "xfs_inode_item.h"
db7a19f2 29#include "xfs_error.h"
0b1b213f 30#include "xfs_trace.h"
239880ef 31#include "xfs_trans_priv.h"
a4fbe6ab 32#include "xfs_dinode.h"
1da177e4
LT
33
34
35kmem_zone_t *xfs_ili_zone; /* inode log item zone */
36
7bfa31d8
CH
37static inline struct xfs_inode_log_item *INODE_ITEM(struct xfs_log_item *lip)
38{
39 return container_of(lip, struct xfs_inode_log_item, ili_item);
40}
41
42
1da177e4
LT
43/*
44 * This returns the number of iovecs needed to log the given inode item.
45 *
46 * We need one iovec for the inode log format structure, one for the
47 * inode core, and possibly one for the inode data/extents/b-tree root
48 * and one for the inode attribute data/extents/b-tree root.
49 */
166d1368 50STATIC void
1da177e4 51xfs_inode_item_size(
166d1368
DC
52 struct xfs_log_item *lip,
53 int *nvecs,
54 int *nbytes)
1da177e4 55{
7bfa31d8
CH
56 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
57 struct xfs_inode *ip = iip->ili_inode;
166d1368
DC
58
59 *nvecs += 2;
60 *nbytes += sizeof(struct xfs_inode_log_format) +
61 xfs_icdinode_size(ip->i_d.di_version);
1da177e4 62
1da177e4
LT
63 switch (ip->i_d.di_format) {
64 case XFS_DINODE_FMT_EXTENTS:
f5d8d5c4 65 if ((iip->ili_fields & XFS_ILOG_DEXT) &&
339a5f5d 66 ip->i_d.di_nextents > 0 &&
166d1368
DC
67 ip->i_df.if_bytes > 0) {
68 /* worst case, doesn't subtract delalloc extents */
69 *nbytes += XFS_IFORK_DSIZE(ip);
70 *nvecs += 1;
71 }
1da177e4
LT
72 break;
73
74 case XFS_DINODE_FMT_BTREE:
f5d8d5c4 75 if ((iip->ili_fields & XFS_ILOG_DBROOT) &&
166d1368
DC
76 ip->i_df.if_broot_bytes > 0) {
77 *nbytes += ip->i_df.if_broot_bytes;
78 *nvecs += 1;
79 }
1da177e4
LT
80 break;
81
82 case XFS_DINODE_FMT_LOCAL:
f5d8d5c4 83 if ((iip->ili_fields & XFS_ILOG_DDATA) &&
166d1368
DC
84 ip->i_df.if_bytes > 0) {
85 *nbytes += roundup(ip->i_df.if_bytes, 4);
86 *nvecs += 1;
87 }
1da177e4
LT
88 break;
89
90 case XFS_DINODE_FMT_DEV:
1da177e4 91 case XFS_DINODE_FMT_UUID:
1da177e4
LT
92 break;
93
94 default:
95 ASSERT(0);
96 break;
97 }
98
339a5f5d 99 if (!XFS_IFORK_Q(ip))
166d1368 100 return;
339a5f5d 101
1da177e4
LT
102
103 /*
104 * Log any necessary attribute data.
105 */
106 switch (ip->i_d.di_aformat) {
107 case XFS_DINODE_FMT_EXTENTS:
f5d8d5c4 108 if ((iip->ili_fields & XFS_ILOG_AEXT) &&
339a5f5d 109 ip->i_d.di_anextents > 0 &&
166d1368
DC
110 ip->i_afp->if_bytes > 0) {
111 /* worst case, doesn't subtract unused space */
112 *nbytes += XFS_IFORK_ASIZE(ip);
113 *nvecs += 1;
114 }
1da177e4
LT
115 break;
116
117 case XFS_DINODE_FMT_BTREE:
f5d8d5c4 118 if ((iip->ili_fields & XFS_ILOG_ABROOT) &&
166d1368
DC
119 ip->i_afp->if_broot_bytes > 0) {
120 *nbytes += ip->i_afp->if_broot_bytes;
121 *nvecs += 1;
122 }
1da177e4
LT
123 break;
124
125 case XFS_DINODE_FMT_LOCAL:
f5d8d5c4 126 if ((iip->ili_fields & XFS_ILOG_ADATA) &&
166d1368
DC
127 ip->i_afp->if_bytes > 0) {
128 *nbytes += roundup(ip->i_afp->if_bytes, 4);
129 *nvecs += 1;
130 }
1da177e4
LT
131 break;
132
133 default:
134 ASSERT(0);
135 break;
136 }
1da177e4
LT
137}
138
e828776a
DC
139/*
140 * xfs_inode_item_format_extents - convert in-core extents to on-disk form
141 *
142 * For either the data or attr fork in extent format, we need to endian convert
143 * the in-core extent as we place them into the on-disk inode. In this case, we
144 * need to do this conversion before we write the extents into the log. Because
145 * we don't have the disk inode to write into here, we allocate a buffer and
146 * format the extents into it via xfs_iextents_copy(). We free the buffer in
147 * the unlock routine after the copy for the log has been made.
148 *
149 * In the case of the data fork, the in-core and on-disk fork sizes can be
150 * different due to delayed allocation extents. We only log on-disk extents
151 * here, so always use the physical fork size to determine the size of the
152 * buffer we need to allocate.
153 */
154STATIC void
155xfs_inode_item_format_extents(
156 struct xfs_inode *ip,
157 struct xfs_log_iovec *vecp,
158 int whichfork,
159 int type)
160{
161 xfs_bmbt_rec_t *ext_buffer;
162
163 ext_buffer = kmem_alloc(XFS_IFORK_SIZE(ip, whichfork), KM_SLEEP);
164 if (whichfork == XFS_DATA_FORK)
165 ip->i_itemp->ili_extents_buf = ext_buffer;
166 else
167 ip->i_itemp->ili_aextents_buf = ext_buffer;
168
169 vecp->i_addr = ext_buffer;
170 vecp->i_len = xfs_iextents_copy(ip, ext_buffer, whichfork);
171 vecp->i_type = type;
172}
173
1da177e4
LT
174/*
175 * This is called to fill in the vector of log iovecs for the
176 * given inode log item. It fills the first item with an inode
177 * log format structure, the second with the on-disk inode structure,
178 * and a possible third and/or fourth with the inode data/extents/b-tree
179 * root and inode attributes data/extents/b-tree root.
180 */
181STATIC void
182xfs_inode_item_format(
7bfa31d8
CH
183 struct xfs_log_item *lip,
184 struct xfs_log_iovec *vecp)
1da177e4 185{
7bfa31d8
CH
186 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
187 struct xfs_inode *ip = iip->ili_inode;
1da177e4 188 uint nvecs;
1da177e4 189 size_t data_bytes;
1da177e4
LT
190 xfs_mount_t *mp;
191
4e0d5f92 192 vecp->i_addr = &iip->ili_format;
1da177e4 193 vecp->i_len = sizeof(xfs_inode_log_format_t);
4139b3b3 194 vecp->i_type = XLOG_REG_TYPE_IFORMAT;
1da177e4
LT
195 vecp++;
196 nvecs = 1;
197
4e0d5f92 198 vecp->i_addr = &ip->i_d;
93848a99 199 vecp->i_len = xfs_icdinode_size(ip->i_d.di_version);
4139b3b3 200 vecp->i_type = XLOG_REG_TYPE_ICORE;
1da177e4
LT
201 vecp++;
202 nvecs++;
1da177e4
LT
203
204 /*
205 * If this is really an old format inode, then we need to
206 * log it as such. This means that we have to copy the link
207 * count from the new field to the old. We don't have to worry
208 * about the new fields, because nothing trusts them as long as
209 * the old inode version number is there. If the superblock already
210 * has a new version number, then we don't bother converting back.
211 */
212 mp = ip->i_mount;
51ce16d5
CH
213 ASSERT(ip->i_d.di_version == 1 || xfs_sb_version_hasnlink(&mp->m_sb));
214 if (ip->i_d.di_version == 1) {
62118709 215 if (!xfs_sb_version_hasnlink(&mp->m_sb)) {
1da177e4
LT
216 /*
217 * Convert it back.
218 */
219 ASSERT(ip->i_d.di_nlink <= XFS_MAXLINK_1);
220 ip->i_d.di_onlink = ip->i_d.di_nlink;
221 } else {
222 /*
223 * The superblock version has already been bumped,
224 * so just make the conversion to the new inode
225 * format permanent.
226 */
51ce16d5 227 ip->i_d.di_version = 2;
1da177e4
LT
228 ip->i_d.di_onlink = 0;
229 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
230 }
231 }
232
233 switch (ip->i_d.di_format) {
234 case XFS_DINODE_FMT_EXTENTS:
f5d8d5c4 235 iip->ili_fields &=
339a5f5d
CH
236 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
237 XFS_ILOG_DEV | XFS_ILOG_UUID);
238
f5d8d5c4 239 if ((iip->ili_fields & XFS_ILOG_DEXT) &&
339a5f5d
CH
240 ip->i_d.di_nextents > 0 &&
241 ip->i_df.if_bytes > 0) {
1da177e4 242 ASSERT(ip->i_df.if_u1.if_extents != NULL);
339a5f5d 243 ASSERT(ip->i_df.if_bytes / sizeof(xfs_bmbt_rec_t) > 0);
1da177e4 244 ASSERT(iip->ili_extents_buf == NULL);
339a5f5d 245
f016bad6 246#ifdef XFS_NATIVE_HOST
696123fc
DC
247 if (ip->i_d.di_nextents == ip->i_df.if_bytes /
248 (uint)sizeof(xfs_bmbt_rec_t)) {
1da177e4
LT
249 /*
250 * There are no delayed allocation
251 * extents, so just point to the
252 * real extents array.
253 */
4e0d5f92 254 vecp->i_addr = ip->i_df.if_u1.if_extents;
1da177e4 255 vecp->i_len = ip->i_df.if_bytes;
4139b3b3 256 vecp->i_type = XLOG_REG_TYPE_IEXT;
1da177e4
LT
257 } else
258#endif
259 {
e828776a
DC
260 xfs_inode_item_format_extents(ip, vecp,
261 XFS_DATA_FORK, XLOG_REG_TYPE_IEXT);
1da177e4
LT
262 }
263 ASSERT(vecp->i_len <= ip->i_df.if_bytes);
264 iip->ili_format.ilf_dsize = vecp->i_len;
265 vecp++;
266 nvecs++;
339a5f5d 267 } else {
f5d8d5c4 268 iip->ili_fields &= ~XFS_ILOG_DEXT;
1da177e4
LT
269 }
270 break;
271
272 case XFS_DINODE_FMT_BTREE:
f5d8d5c4 273 iip->ili_fields &=
339a5f5d
CH
274 ~(XFS_ILOG_DDATA | XFS_ILOG_DEXT |
275 XFS_ILOG_DEV | XFS_ILOG_UUID);
276
f5d8d5c4 277 if ((iip->ili_fields & XFS_ILOG_DBROOT) &&
339a5f5d 278 ip->i_df.if_broot_bytes > 0) {
1da177e4 279 ASSERT(ip->i_df.if_broot != NULL);
4e0d5f92 280 vecp->i_addr = ip->i_df.if_broot;
1da177e4 281 vecp->i_len = ip->i_df.if_broot_bytes;
4139b3b3 282 vecp->i_type = XLOG_REG_TYPE_IBROOT;
1da177e4
LT
283 vecp++;
284 nvecs++;
285 iip->ili_format.ilf_dsize = ip->i_df.if_broot_bytes;
339a5f5d 286 } else {
f5d8d5c4 287 ASSERT(!(iip->ili_fields &
339a5f5d 288 XFS_ILOG_DBROOT));
f5d8d5c4 289 iip->ili_fields &= ~XFS_ILOG_DBROOT;
1da177e4
LT
290 }
291 break;
292
293 case XFS_DINODE_FMT_LOCAL:
f5d8d5c4 294 iip->ili_fields &=
339a5f5d
CH
295 ~(XFS_ILOG_DEXT | XFS_ILOG_DBROOT |
296 XFS_ILOG_DEV | XFS_ILOG_UUID);
f5d8d5c4 297 if ((iip->ili_fields & XFS_ILOG_DDATA) &&
339a5f5d 298 ip->i_df.if_bytes > 0) {
1da177e4
LT
299 ASSERT(ip->i_df.if_u1.if_data != NULL);
300 ASSERT(ip->i_d.di_size > 0);
301
4e0d5f92 302 vecp->i_addr = ip->i_df.if_u1.if_data;
1da177e4
LT
303 /*
304 * Round i_bytes up to a word boundary.
305 * The underlying memory is guaranteed to
306 * to be there by xfs_idata_realloc().
307 */
308 data_bytes = roundup(ip->i_df.if_bytes, 4);
309 ASSERT((ip->i_df.if_real_bytes == 0) ||
310 (ip->i_df.if_real_bytes == data_bytes));
311 vecp->i_len = (int)data_bytes;
4139b3b3 312 vecp->i_type = XLOG_REG_TYPE_ILOCAL;
1da177e4
LT
313 vecp++;
314 nvecs++;
315 iip->ili_format.ilf_dsize = (unsigned)data_bytes;
339a5f5d 316 } else {
f5d8d5c4 317 iip->ili_fields &= ~XFS_ILOG_DDATA;
1da177e4
LT
318 }
319 break;
320
321 case XFS_DINODE_FMT_DEV:
f5d8d5c4 322 iip->ili_fields &=
339a5f5d
CH
323 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
324 XFS_ILOG_DEXT | XFS_ILOG_UUID);
f5d8d5c4 325 if (iip->ili_fields & XFS_ILOG_DEV) {
1da177e4
LT
326 iip->ili_format.ilf_u.ilfu_rdev =
327 ip->i_df.if_u2.if_rdev;
328 }
329 break;
330
331 case XFS_DINODE_FMT_UUID:
f5d8d5c4 332 iip->ili_fields &=
339a5f5d
CH
333 ~(XFS_ILOG_DDATA | XFS_ILOG_DBROOT |
334 XFS_ILOG_DEXT | XFS_ILOG_DEV);
f5d8d5c4 335 if (iip->ili_fields & XFS_ILOG_UUID) {
1da177e4
LT
336 iip->ili_format.ilf_u.ilfu_uuid =
337 ip->i_df.if_u2.if_uuid;
338 }
339 break;
340
341 default:
342 ASSERT(0);
343 break;
344 }
345
346 /*
339a5f5d 347 * If there are no attributes associated with the file, then we're done.
1da177e4
LT
348 */
349 if (!XFS_IFORK_Q(ip)) {
f5d8d5c4 350 iip->ili_fields &=
339a5f5d 351 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT | XFS_ILOG_AEXT);
f5d8d5c4 352 goto out;
1da177e4
LT
353 }
354
355 switch (ip->i_d.di_aformat) {
356 case XFS_DINODE_FMT_EXTENTS:
f5d8d5c4 357 iip->ili_fields &=
339a5f5d
CH
358 ~(XFS_ILOG_ADATA | XFS_ILOG_ABROOT);
359
f5d8d5c4 360 if ((iip->ili_fields & XFS_ILOG_AEXT) &&
339a5f5d
CH
361 ip->i_d.di_anextents > 0 &&
362 ip->i_afp->if_bytes > 0) {
363 ASSERT(ip->i_afp->if_bytes / sizeof(xfs_bmbt_rec_t) ==
364 ip->i_d.di_anextents);
73523a2e 365 ASSERT(ip->i_afp->if_u1.if_extents != NULL);
f016bad6 366#ifdef XFS_NATIVE_HOST
1da177e4
LT
367 /*
368 * There are not delayed allocation extents
369 * for attributes, so just point at the array.
370 */
4e0d5f92 371 vecp->i_addr = ip->i_afp->if_u1.if_extents;
1da177e4 372 vecp->i_len = ip->i_afp->if_bytes;
e828776a 373 vecp->i_type = XLOG_REG_TYPE_IATTR_EXT;
1da177e4
LT
374#else
375 ASSERT(iip->ili_aextents_buf == NULL);
e828776a
DC
376 xfs_inode_item_format_extents(ip, vecp,
377 XFS_ATTR_FORK, XLOG_REG_TYPE_IATTR_EXT);
1da177e4
LT
378#endif
379 iip->ili_format.ilf_asize = vecp->i_len;
380 vecp++;
381 nvecs++;
339a5f5d 382 } else {
f5d8d5c4 383 iip->ili_fields &= ~XFS_ILOG_AEXT;
1da177e4
LT
384 }
385 break;
386
387 case XFS_DINODE_FMT_BTREE:
f5d8d5c4 388 iip->ili_fields &=
339a5f5d
CH
389 ~(XFS_ILOG_ADATA | XFS_ILOG_AEXT);
390
f5d8d5c4 391 if ((iip->ili_fields & XFS_ILOG_ABROOT) &&
339a5f5d 392 ip->i_afp->if_broot_bytes > 0) {
1da177e4 393 ASSERT(ip->i_afp->if_broot != NULL);
339a5f5d 394
4e0d5f92 395 vecp->i_addr = ip->i_afp->if_broot;
1da177e4 396 vecp->i_len = ip->i_afp->if_broot_bytes;
4139b3b3 397 vecp->i_type = XLOG_REG_TYPE_IATTR_BROOT;
1da177e4
LT
398 vecp++;
399 nvecs++;
400 iip->ili_format.ilf_asize = ip->i_afp->if_broot_bytes;
339a5f5d 401 } else {
f5d8d5c4 402 iip->ili_fields &= ~XFS_ILOG_ABROOT;
1da177e4
LT
403 }
404 break;
405
406 case XFS_DINODE_FMT_LOCAL:
f5d8d5c4 407 iip->ili_fields &=
339a5f5d
CH
408 ~(XFS_ILOG_AEXT | XFS_ILOG_ABROOT);
409
f5d8d5c4 410 if ((iip->ili_fields & XFS_ILOG_ADATA) &&
339a5f5d 411 ip->i_afp->if_bytes > 0) {
1da177e4
LT
412 ASSERT(ip->i_afp->if_u1.if_data != NULL);
413
4e0d5f92 414 vecp->i_addr = ip->i_afp->if_u1.if_data;
1da177e4
LT
415 /*
416 * Round i_bytes up to a word boundary.
417 * The underlying memory is guaranteed to
418 * to be there by xfs_idata_realloc().
419 */
420 data_bytes = roundup(ip->i_afp->if_bytes, 4);
421 ASSERT((ip->i_afp->if_real_bytes == 0) ||
422 (ip->i_afp->if_real_bytes == data_bytes));
423 vecp->i_len = (int)data_bytes;
4139b3b3 424 vecp->i_type = XLOG_REG_TYPE_IATTR_LOCAL;
1da177e4
LT
425 vecp++;
426 nvecs++;
427 iip->ili_format.ilf_asize = (unsigned)data_bytes;
339a5f5d 428 } else {
f5d8d5c4 429 iip->ili_fields &= ~XFS_ILOG_ADATA;
1da177e4
LT
430 }
431 break;
432
433 default:
434 ASSERT(0);
435 break;
436 }
437
f5d8d5c4
CH
438out:
439 /*
440 * Now update the log format that goes out to disk from the in-core
441 * values. We always write the inode core to make the arithmetic
442 * games in recovery easier, which isn't a big deal as just about any
443 * transaction would dirty it anyway.
444 */
8f639dde
CH
445 iip->ili_format.ilf_fields = XFS_ILOG_CORE |
446 (iip->ili_fields & ~XFS_ILOG_TIMESTAMP);
1da177e4
LT
447 iip->ili_format.ilf_size = nvecs;
448}
449
450
451/*
452 * This is called to pin the inode associated with the inode log
a14a5ab5 453 * item in memory so it cannot be written out.
1da177e4
LT
454 */
455STATIC void
456xfs_inode_item_pin(
7bfa31d8 457 struct xfs_log_item *lip)
1da177e4 458{
7bfa31d8 459 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
a14a5ab5 460
7bfa31d8
CH
461 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
462
463 trace_xfs_inode_pin(ip, _RET_IP_);
464 atomic_inc(&ip->i_pincount);
1da177e4
LT
465}
466
467
468/*
469 * This is called to unpin the inode associated with the inode log
470 * item which was previously pinned with a call to xfs_inode_item_pin().
a14a5ab5
CH
471 *
472 * Also wake up anyone in xfs_iunpin_wait() if the count goes to 0.
1da177e4 473 */
1da177e4
LT
474STATIC void
475xfs_inode_item_unpin(
7bfa31d8 476 struct xfs_log_item *lip,
9412e318 477 int remove)
1da177e4 478{
7bfa31d8 479 struct xfs_inode *ip = INODE_ITEM(lip)->ili_inode;
a14a5ab5 480
4aaf15d1 481 trace_xfs_inode_unpin(ip, _RET_IP_);
a14a5ab5
CH
482 ASSERT(atomic_read(&ip->i_pincount) > 0);
483 if (atomic_dec_and_test(&ip->i_pincount))
f392e631 484 wake_up_bit(&ip->i_flags, __XFS_IPINNED_BIT);
1da177e4
LT
485}
486
1da177e4 487STATIC uint
43ff2122
CH
488xfs_inode_item_push(
489 struct xfs_log_item *lip,
490 struct list_head *buffer_list)
1da177e4 491{
7bfa31d8
CH
492 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
493 struct xfs_inode *ip = iip->ili_inode;
43ff2122
CH
494 struct xfs_buf *bp = NULL;
495 uint rval = XFS_ITEM_SUCCESS;
496 int error;
1da177e4 497
7bfa31d8 498 if (xfs_ipincount(ip) > 0)
1da177e4 499 return XFS_ITEM_PINNED;
1da177e4 500
7bfa31d8 501 if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED))
1da177e4 502 return XFS_ITEM_LOCKED;
1da177e4 503
4c46819a
CH
504 /*
505 * Re-check the pincount now that we stabilized the value by
506 * taking the ilock.
507 */
508 if (xfs_ipincount(ip) > 0) {
43ff2122
CH
509 rval = XFS_ITEM_PINNED;
510 goto out_unlock;
4c46819a
CH
511 }
512
9a3a5dab
BF
513 /*
514 * Stale inode items should force out the iclog.
515 */
516 if (ip->i_flags & XFS_ISTALE) {
517 rval = XFS_ITEM_PINNED;
518 goto out_unlock;
519 }
520
43ff2122
CH
521 /*
522 * Someone else is already flushing the inode. Nothing we can do
523 * here but wait for the flush to finish and remove the item from
524 * the AIL.
525 */
1da177e4 526 if (!xfs_iflock_nowait(ip)) {
43ff2122
CH
527 rval = XFS_ITEM_FLUSHING;
528 goto out_unlock;
1da177e4
LT
529 }
530
43ff2122
CH
531 ASSERT(iip->ili_fields != 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
532 ASSERT(iip->ili_logged == 0 || XFS_FORCED_SHUTDOWN(ip->i_mount));
533
534 spin_unlock(&lip->li_ailp->xa_lock);
535
536 error = xfs_iflush(ip, &bp);
537 if (!error) {
538 if (!xfs_buf_delwri_queue(bp, buffer_list))
539 rval = XFS_ITEM_FLUSHING;
540 xfs_buf_relse(bp);
1da177e4 541 }
43ff2122
CH
542
543 spin_lock(&lip->li_ailp->xa_lock);
544out_unlock:
545 xfs_iunlock(ip, XFS_ILOCK_SHARED);
546 return rval;
1da177e4
LT
547}
548
549/*
550 * Unlock the inode associated with the inode log item.
551 * Clear the fields of the inode and inode log item that
552 * are specific to the current transaction. If the
553 * hold flags is set, do not unlock the inode.
554 */
555STATIC void
556xfs_inode_item_unlock(
7bfa31d8 557 struct xfs_log_item *lip)
1da177e4 558{
7bfa31d8
CH
559 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
560 struct xfs_inode *ip = iip->ili_inode;
898621d5 561 unsigned short lock_flags;
1da177e4 562
f3ca8738
CH
563 ASSERT(ip->i_itemp != NULL);
564 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1da177e4
LT
565
566 /*
567 * If the inode needed a separate buffer with which to log
568 * its extents, then free it now.
569 */
570 if (iip->ili_extents_buf != NULL) {
571 ASSERT(ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS);
572 ASSERT(ip->i_d.di_nextents > 0);
f5d8d5c4 573 ASSERT(iip->ili_fields & XFS_ILOG_DEXT);
1da177e4 574 ASSERT(ip->i_df.if_bytes > 0);
f0e2d93c 575 kmem_free(iip->ili_extents_buf);
1da177e4
LT
576 iip->ili_extents_buf = NULL;
577 }
578 if (iip->ili_aextents_buf != NULL) {
579 ASSERT(ip->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS);
580 ASSERT(ip->i_d.di_anextents > 0);
f5d8d5c4 581 ASSERT(iip->ili_fields & XFS_ILOG_AEXT);
1da177e4 582 ASSERT(ip->i_afp->if_bytes > 0);
f0e2d93c 583 kmem_free(iip->ili_aextents_buf);
1da177e4
LT
584 iip->ili_aextents_buf = NULL;
585 }
586
898621d5
CH
587 lock_flags = iip->ili_lock_flags;
588 iip->ili_lock_flags = 0;
ddc3415a 589 if (lock_flags)
f3ca8738 590 xfs_iunlock(ip, lock_flags);
1da177e4
LT
591}
592
593/*
de25c181
DC
594 * This is called to find out where the oldest active copy of the inode log
595 * item in the on disk log resides now that the last log write of it completed
596 * at the given lsn. Since we always re-log all dirty data in an inode, the
597 * latest copy in the on disk log is the only one that matters. Therefore,
598 * simply return the given lsn.
599 *
600 * If the inode has been marked stale because the cluster is being freed, we
601 * don't want to (re-)insert this inode into the AIL. There is a race condition
602 * where the cluster buffer may be unpinned before the inode is inserted into
603 * the AIL during transaction committed processing. If the buffer is unpinned
604 * before the inode item has been committed and inserted, then it is possible
1316d4da 605 * for the buffer to be written and IO completes before the inode is inserted
de25c181
DC
606 * into the AIL. In that case, we'd be inserting a clean, stale inode into the
607 * AIL which will never get removed. It will, however, get reclaimed which
608 * triggers an assert in xfs_inode_free() complaining about freein an inode
609 * still in the AIL.
610 *
1316d4da
DC
611 * To avoid this, just unpin the inode directly and return a LSN of -1 so the
612 * transaction committed code knows that it does not need to do any further
613 * processing on the item.
1da177e4 614 */
1da177e4
LT
615STATIC xfs_lsn_t
616xfs_inode_item_committed(
7bfa31d8 617 struct xfs_log_item *lip,
1da177e4
LT
618 xfs_lsn_t lsn)
619{
de25c181
DC
620 struct xfs_inode_log_item *iip = INODE_ITEM(lip);
621 struct xfs_inode *ip = iip->ili_inode;
622
1316d4da
DC
623 if (xfs_iflags_test(ip, XFS_ISTALE)) {
624 xfs_inode_item_unpin(lip, 0);
625 return -1;
626 }
7bfa31d8 627 return lsn;
1da177e4
LT
628}
629
1da177e4
LT
630/*
631 * XXX rcc - this one really has to do something. Probably needs
632 * to stamp in a new field in the incore inode.
633 */
1da177e4
LT
634STATIC void
635xfs_inode_item_committing(
7bfa31d8 636 struct xfs_log_item *lip,
1da177e4
LT
637 xfs_lsn_t lsn)
638{
7bfa31d8 639 INODE_ITEM(lip)->ili_last_lsn = lsn;
1da177e4
LT
640}
641
642/*
643 * This is the ops vector shared by all buf log items.
644 */
272e42b2 645static const struct xfs_item_ops xfs_inode_item_ops = {
7bfa31d8
CH
646 .iop_size = xfs_inode_item_size,
647 .iop_format = xfs_inode_item_format,
648 .iop_pin = xfs_inode_item_pin,
649 .iop_unpin = xfs_inode_item_unpin,
7bfa31d8
CH
650 .iop_unlock = xfs_inode_item_unlock,
651 .iop_committed = xfs_inode_item_committed,
652 .iop_push = xfs_inode_item_push,
7bfa31d8 653 .iop_committing = xfs_inode_item_committing
1da177e4
LT
654};
655
656
657/*
658 * Initialize the inode log item for a newly allocated (in-core) inode.
659 */
660void
661xfs_inode_item_init(
7bfa31d8
CH
662 struct xfs_inode *ip,
663 struct xfs_mount *mp)
1da177e4 664{
7bfa31d8 665 struct xfs_inode_log_item *iip;
1da177e4
LT
666
667 ASSERT(ip->i_itemp == NULL);
668 iip = ip->i_itemp = kmem_zone_zalloc(xfs_ili_zone, KM_SLEEP);
669
1da177e4 670 iip->ili_inode = ip;
43f5efc5
DC
671 xfs_log_item_init(mp, &iip->ili_item, XFS_LI_INODE,
672 &xfs_inode_item_ops);
1da177e4
LT
673 iip->ili_format.ilf_type = XFS_LI_INODE;
674 iip->ili_format.ilf_ino = ip->i_ino;
92bfc6e7
CH
675 iip->ili_format.ilf_blkno = ip->i_imap.im_blkno;
676 iip->ili_format.ilf_len = ip->i_imap.im_len;
677 iip->ili_format.ilf_boffset = ip->i_imap.im_boffset;
1da177e4
LT
678}
679
680/*
681 * Free the inode log item and any memory hanging off of it.
682 */
683void
684xfs_inode_item_destroy(
685 xfs_inode_t *ip)
686{
1da177e4
LT
687 kmem_zone_free(xfs_ili_zone, ip->i_itemp);
688}
689
690
691/*
692 * This is the inode flushing I/O completion routine. It is called
693 * from interrupt level when the buffer containing the inode is
694 * flushed to disk. It is responsible for removing the inode item
695 * from the AIL if it has not been re-logged, and unlocking the inode's
696 * flush lock.
30136832
DC
697 *
698 * To reduce AIL lock traffic as much as possible, we scan the buffer log item
699 * list for other inodes that will run this function. We remove them from the
700 * buffer list so we can process all the inode IO completions in one AIL lock
701 * traversal.
1da177e4 702 */
1da177e4
LT
703void
704xfs_iflush_done(
ca30b2a7
CH
705 struct xfs_buf *bp,
706 struct xfs_log_item *lip)
1da177e4 707{
30136832
DC
708 struct xfs_inode_log_item *iip;
709 struct xfs_log_item *blip;
710 struct xfs_log_item *next;
711 struct xfs_log_item *prev;
ca30b2a7 712 struct xfs_ail *ailp = lip->li_ailp;
30136832
DC
713 int need_ail = 0;
714
715 /*
716 * Scan the buffer IO completions for other inodes being completed and
717 * attach them to the current inode log item.
718 */
adadbeef 719 blip = bp->b_fspriv;
30136832
DC
720 prev = NULL;
721 while (blip != NULL) {
722 if (lip->li_cb != xfs_iflush_done) {
723 prev = blip;
724 blip = blip->li_bio_list;
725 continue;
726 }
727
728 /* remove from list */
729 next = blip->li_bio_list;
730 if (!prev) {
adadbeef 731 bp->b_fspriv = next;
30136832
DC
732 } else {
733 prev->li_bio_list = next;
734 }
735
736 /* add to current list */
737 blip->li_bio_list = lip->li_bio_list;
738 lip->li_bio_list = blip;
739
740 /*
741 * while we have the item, do the unlocked check for needing
742 * the AIL lock.
743 */
744 iip = INODE_ITEM(blip);
745 if (iip->ili_logged && blip->li_lsn == iip->ili_flush_lsn)
746 need_ail++;
747
748 blip = next;
749 }
750
751 /* make sure we capture the state of the initial inode. */
752 iip = INODE_ITEM(lip);
753 if (iip->ili_logged && lip->li_lsn == iip->ili_flush_lsn)
754 need_ail++;
1da177e4
LT
755
756 /*
757 * We only want to pull the item from the AIL if it is
758 * actually there and its location in the log has not
759 * changed since we started the flush. Thus, we only bother
760 * if the ili_logged flag is set and the inode's lsn has not
761 * changed. First we check the lsn outside
762 * the lock since it's cheaper, and then we recheck while
763 * holding the lock before removing the inode from the AIL.
764 */
30136832
DC
765 if (need_ail) {
766 struct xfs_log_item *log_items[need_ail];
767 int i = 0;
783a2f65 768 spin_lock(&ailp->xa_lock);
30136832
DC
769 for (blip = lip; blip; blip = blip->li_bio_list) {
770 iip = INODE_ITEM(blip);
771 if (iip->ili_logged &&
772 blip->li_lsn == iip->ili_flush_lsn) {
773 log_items[i++] = blip;
774 }
775 ASSERT(i <= need_ail);
1da177e4 776 }
30136832 777 /* xfs_trans_ail_delete_bulk() drops the AIL lock. */
04913fdd
DC
778 xfs_trans_ail_delete_bulk(ailp, log_items, i,
779 SHUTDOWN_CORRUPT_INCORE);
1da177e4
LT
780 }
781
1da177e4
LT
782
783 /*
30136832
DC
784 * clean up and unlock the flush lock now we are done. We can clear the
785 * ili_last_fields bits now that we know that the data corresponding to
786 * them is safely on disk.
1da177e4 787 */
30136832
DC
788 for (blip = lip; blip; blip = next) {
789 next = blip->li_bio_list;
790 blip->li_bio_list = NULL;
791
792 iip = INODE_ITEM(blip);
793 iip->ili_logged = 0;
794 iip->ili_last_fields = 0;
795 xfs_ifunlock(iip->ili_inode);
796 }
1da177e4
LT
797}
798
799/*
04913fdd
DC
800 * This is the inode flushing abort routine. It is called from xfs_iflush when
801 * the filesystem is shutting down to clean up the inode state. It is
802 * responsible for removing the inode item from the AIL if it has not been
803 * re-logged, and unlocking the inode's flush lock.
1da177e4
LT
804 */
805void
806xfs_iflush_abort(
04913fdd
DC
807 xfs_inode_t *ip,
808 bool stale)
1da177e4 809{
783a2f65 810 xfs_inode_log_item_t *iip = ip->i_itemp;
1da177e4 811
1da177e4 812 if (iip) {
783a2f65 813 struct xfs_ail *ailp = iip->ili_item.li_ailp;
1da177e4 814 if (iip->ili_item.li_flags & XFS_LI_IN_AIL) {
783a2f65 815 spin_lock(&ailp->xa_lock);
1da177e4 816 if (iip->ili_item.li_flags & XFS_LI_IN_AIL) {
783a2f65 817 /* xfs_trans_ail_delete() drops the AIL lock. */
04913fdd
DC
818 xfs_trans_ail_delete(ailp, &iip->ili_item,
819 stale ?
820 SHUTDOWN_LOG_IO_ERROR :
821 SHUTDOWN_CORRUPT_INCORE);
1da177e4 822 } else
783a2f65 823 spin_unlock(&ailp->xa_lock);
1da177e4
LT
824 }
825 iip->ili_logged = 0;
826 /*
827 * Clear the ili_last_fields bits now that we know that the
828 * data corresponding to them is safely on disk.
829 */
830 iip->ili_last_fields = 0;
831 /*
832 * Clear the inode logging fields so no more flushes are
833 * attempted.
834 */
f5d8d5c4 835 iip->ili_fields = 0;
1da177e4
LT
836 }
837 /*
838 * Release the inode's flush lock since we're done with it.
839 */
840 xfs_ifunlock(ip);
841}
842
843void
844xfs_istale_done(
ca30b2a7
CH
845 struct xfs_buf *bp,
846 struct xfs_log_item *lip)
1da177e4 847{
04913fdd 848 xfs_iflush_abort(INODE_ITEM(lip)->ili_inode, true);
1da177e4 849}
6d192a9b
TS
850
851/*
852 * convert an xfs_inode_log_format struct from either 32 or 64 bit versions
853 * (which can have different field alignments) to the native version
854 */
855int
856xfs_inode_item_format_convert(
857 xfs_log_iovec_t *buf,
858 xfs_inode_log_format_t *in_f)
859{
860 if (buf->i_len == sizeof(xfs_inode_log_format_32_t)) {
4e0d5f92 861 xfs_inode_log_format_32_t *in_f32 = buf->i_addr;
6d192a9b 862
6d192a9b
TS
863 in_f->ilf_type = in_f32->ilf_type;
864 in_f->ilf_size = in_f32->ilf_size;
865 in_f->ilf_fields = in_f32->ilf_fields;
866 in_f->ilf_asize = in_f32->ilf_asize;
867 in_f->ilf_dsize = in_f32->ilf_dsize;
868 in_f->ilf_ino = in_f32->ilf_ino;
869 /* copy biggest field of ilf_u */
870 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
871 in_f32->ilf_u.ilfu_uuid.__u_bits,
872 sizeof(uuid_t));
873 in_f->ilf_blkno = in_f32->ilf_blkno;
874 in_f->ilf_len = in_f32->ilf_len;
875 in_f->ilf_boffset = in_f32->ilf_boffset;
876 return 0;
877 } else if (buf->i_len == sizeof(xfs_inode_log_format_64_t)){
4e0d5f92 878 xfs_inode_log_format_64_t *in_f64 = buf->i_addr;
6d192a9b 879
6d192a9b
TS
880 in_f->ilf_type = in_f64->ilf_type;
881 in_f->ilf_size = in_f64->ilf_size;
882 in_f->ilf_fields = in_f64->ilf_fields;
883 in_f->ilf_asize = in_f64->ilf_asize;
884 in_f->ilf_dsize = in_f64->ilf_dsize;
885 in_f->ilf_ino = in_f64->ilf_ino;
886 /* copy biggest field of ilf_u */
887 memcpy(in_f->ilf_u.ilfu_uuid.__u_bits,
888 in_f64->ilf_u.ilfu_uuid.__u_bits,
889 sizeof(uuid_t));
890 in_f->ilf_blkno = in_f64->ilf_blkno;
891 in_f->ilf_len = in_f64->ilf_len;
892 in_f->ilf_boffset = in_f64->ilf_boffset;
893 return 0;
894 }
895 return EFSCORRUPTED;
896}