]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/xfs/xfs_log.c
xfs: rework log grant space calculations
[mirror_ubuntu-zesty-kernel.git] / fs / xfs / xfs_log.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-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"
1da177e4 20#include "xfs_types.h"
a844f451 21#include "xfs_bit.h"
1da177e4 22#include "xfs_log.h"
a844f451 23#include "xfs_inum.h"
1da177e4 24#include "xfs_trans.h"
a844f451
NS
25#include "xfs_sb.h"
26#include "xfs_ag.h"
1da177e4
LT
27#include "xfs_mount.h"
28#include "xfs_error.h"
29#include "xfs_log_priv.h"
30#include "xfs_buf_item.h"
a844f451 31#include "xfs_bmap_btree.h"
1da177e4 32#include "xfs_alloc_btree.h"
a844f451 33#include "xfs_ialloc_btree.h"
1da177e4 34#include "xfs_log_recover.h"
1da177e4 35#include "xfs_trans_priv.h"
a844f451
NS
36#include "xfs_dinode.h"
37#include "xfs_inode.h"
38#include "xfs_rw.h"
0b1b213f 39#include "xfs_trace.h"
1da177e4 40
eb01c9cd 41kmem_zone_t *xfs_log_ticket_zone;
1da177e4 42
1da177e4 43/* Local miscellaneous function prototypes */
55b66332 44STATIC int xlog_commit_record(struct log *log, struct xlog_ticket *ticket,
1da177e4
LT
45 xlog_in_core_t **, xfs_lsn_t *);
46STATIC xlog_t * xlog_alloc_log(xfs_mount_t *mp,
47 xfs_buftarg_t *log_target,
48 xfs_daddr_t blk_offset,
49 int num_bblks);
50STATIC int xlog_space_left(xlog_t *log, int cycle, int bytes);
51STATIC int xlog_sync(xlog_t *log, xlog_in_core_t *iclog);
c41564b5 52STATIC void xlog_dealloc_log(xlog_t *log);
1da177e4
LT
53
54/* local state machine functions */
55STATIC void xlog_state_done_syncing(xlog_in_core_t *iclog, int);
56STATIC void xlog_state_do_callback(xlog_t *log,int aborted, xlog_in_core_t *iclog);
57STATIC int xlog_state_get_iclog_space(xlog_t *log,
58 int len,
59 xlog_in_core_t **iclog,
60 xlog_ticket_t *ticket,
61 int *continued_write,
62 int *logoffsetp);
1da177e4
LT
63STATIC int xlog_state_release_iclog(xlog_t *log,
64 xlog_in_core_t *iclog);
65STATIC void xlog_state_switch_iclogs(xlog_t *log,
66 xlog_in_core_t *iclog,
67 int eventual_size);
1da177e4
LT
68STATIC void xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog);
69
70/* local functions to manipulate grant head */
71STATIC int xlog_grant_log_space(xlog_t *log,
72 xlog_ticket_t *xtic);
73STATIC void xlog_grant_push_ail(xfs_mount_t *mp,
74 int need_bytes);
75STATIC void xlog_regrant_reserve_log_space(xlog_t *log,
76 xlog_ticket_t *ticket);
77STATIC int xlog_regrant_write_log_space(xlog_t *log,
78 xlog_ticket_t *ticket);
79STATIC void xlog_ungrant_log_space(xlog_t *log,
80 xlog_ticket_t *ticket);
81
cfcbbbd0 82#if defined(DEBUG)
e6b1f273 83STATIC void xlog_verify_dest_ptr(xlog_t *log, char *ptr);
1da177e4 84STATIC void xlog_verify_grant_head(xlog_t *log, int equals);
3f336c6f 85STATIC void xlog_verify_grant_tail(struct log *log);
1da177e4
LT
86STATIC void xlog_verify_iclog(xlog_t *log, xlog_in_core_t *iclog,
87 int count, boolean_t syncing);
88STATIC void xlog_verify_tail_lsn(xlog_t *log, xlog_in_core_t *iclog,
89 xfs_lsn_t tail_lsn);
90#else
91#define xlog_verify_dest_ptr(a,b)
92#define xlog_verify_grant_head(a,b)
3f336c6f 93#define xlog_verify_grant_tail(a)
1da177e4
LT
94#define xlog_verify_iclog(a,b,c,d)
95#define xlog_verify_tail_lsn(a,b,c)
96#endif
97
ba0f32d4 98STATIC int xlog_iclogs_empty(xlog_t *log);
1da177e4 99
dd954c69 100static void
663e496a
DC
101xlog_grant_sub_space(
102 struct log *log,
103 int *cycle,
104 int *space,
105 int bytes)
dd954c69 106{
663e496a
DC
107 *space -= bytes;
108 if (*space < 0) {
109 *space += log->l_logsize;
110 (*cycle)--;
dd954c69
CH
111 }
112}
113
114static void
663e496a
DC
115xlog_grant_add_space(
116 struct log *log,
117 int *cycle,
118 int *space,
119 int bytes)
dd954c69 120{
663e496a 121 int tmp = log->l_logsize - *space;
d729eae8 122 if (tmp > bytes)
663e496a 123 *space += bytes;
d729eae8 124 else {
663e496a
DC
125 *space = bytes - tmp;
126 (*cycle)++;
dd954c69
CH
127 }
128}
0adba536
CH
129static void
130xlog_tic_reset_res(xlog_ticket_t *tic)
131{
132 tic->t_res_num = 0;
133 tic->t_res_arr_sum = 0;
134 tic->t_res_num_ophdrs = 0;
135}
136
137static void
138xlog_tic_add_region(xlog_ticket_t *tic, uint len, uint type)
139{
140 if (tic->t_res_num == XLOG_TIC_LEN_MAX) {
141 /* add to overflow and start again */
142 tic->t_res_o_flow += tic->t_res_arr_sum;
143 tic->t_res_num = 0;
144 tic->t_res_arr_sum = 0;
145 }
146
147 tic->t_res_arr[tic->t_res_num].r_len = len;
148 tic->t_res_arr[tic->t_res_num].r_type = type;
149 tic->t_res_arr_sum += len;
150 tic->t_res_num++;
151}
dd954c69 152
1da177e4
LT
153/*
154 * NOTES:
155 *
156 * 1. currblock field gets updated at startup and after in-core logs
157 * marked as with WANT_SYNC.
158 */
159
160/*
161 * This routine is called when a user of a log manager ticket is done with
162 * the reservation. If the ticket was ever used, then a commit record for
163 * the associated transaction is written out as a log operation header with
164 * no data. The flag XLOG_TIC_INITED is set when the first write occurs with
165 * a given ticket. If the ticket was one with a permanent reservation, then
166 * a few operations are done differently. Permanent reservation tickets by
167 * default don't release the reservation. They just commit the current
168 * transaction with the belief that the reservation is still needed. A flag
169 * must be passed in before permanent reservations are actually released.
170 * When these type of tickets are not released, they need to be set into
171 * the inited state again. By doing this, a start record will be written
172 * out when the next write occurs.
173 */
174xfs_lsn_t
35a8a72f
CH
175xfs_log_done(
176 struct xfs_mount *mp,
177 struct xlog_ticket *ticket,
178 struct xlog_in_core **iclog,
179 uint flags)
1da177e4 180{
35a8a72f
CH
181 struct log *log = mp->m_log;
182 xfs_lsn_t lsn = 0;
1da177e4 183
1da177e4
LT
184 if (XLOG_FORCED_SHUTDOWN(log) ||
185 /*
186 * If nothing was ever written, don't write out commit record.
187 * If we get an error, just continue and give back the log ticket.
188 */
189 (((ticket->t_flags & XLOG_TIC_INITED) == 0) &&
55b66332 190 (xlog_commit_record(log, ticket, iclog, &lsn)))) {
1da177e4
LT
191 lsn = (xfs_lsn_t) -1;
192 if (ticket->t_flags & XLOG_TIC_PERM_RESERV) {
193 flags |= XFS_LOG_REL_PERM_RESERV;
194 }
195 }
196
197
198 if ((ticket->t_flags & XLOG_TIC_PERM_RESERV) == 0 ||
199 (flags & XFS_LOG_REL_PERM_RESERV)) {
0b1b213f
CH
200 trace_xfs_log_done_nonperm(log, ticket);
201
1da177e4 202 /*
c41564b5 203 * Release ticket if not permanent reservation or a specific
1da177e4
LT
204 * request has been made to release a permanent reservation.
205 */
206 xlog_ungrant_log_space(log, ticket);
cc09c0dc 207 xfs_log_ticket_put(ticket);
1da177e4 208 } else {
0b1b213f
CH
209 trace_xfs_log_done_perm(log, ticket);
210
1da177e4 211 xlog_regrant_reserve_log_space(log, ticket);
c6a7b0f8
LM
212 /* If this ticket was a permanent reservation and we aren't
213 * trying to release it, reset the inited flags; so next time
214 * we write, a start record will be written out.
215 */
1da177e4 216 ticket->t_flags |= XLOG_TIC_INITED;
c6a7b0f8 217 }
1da177e4
LT
218
219 return lsn;
35a8a72f 220}
1da177e4 221
1da177e4
LT
222/*
223 * Attaches a new iclog I/O completion callback routine during
224 * transaction commit. If the log is in error state, a non-zero
225 * return code is handed back and the caller is responsible for
226 * executing the callback at an appropriate time.
227 */
228int
35a8a72f
CH
229xfs_log_notify(
230 struct xfs_mount *mp,
231 struct xlog_in_core *iclog,
232 xfs_log_callback_t *cb)
1da177e4 233{
b22cd72c 234 int abortflg;
1da177e4 235
114d23aa 236 spin_lock(&iclog->ic_callback_lock);
1da177e4
LT
237 abortflg = (iclog->ic_state & XLOG_STATE_IOERROR);
238 if (!abortflg) {
239 ASSERT_ALWAYS((iclog->ic_state == XLOG_STATE_ACTIVE) ||
240 (iclog->ic_state == XLOG_STATE_WANT_SYNC));
241 cb->cb_next = NULL;
242 *(iclog->ic_callback_tail) = cb;
243 iclog->ic_callback_tail = &(cb->cb_next);
244 }
114d23aa 245 spin_unlock(&iclog->ic_callback_lock);
1da177e4 246 return abortflg;
35a8a72f 247}
1da177e4
LT
248
249int
35a8a72f
CH
250xfs_log_release_iclog(
251 struct xfs_mount *mp,
252 struct xlog_in_core *iclog)
1da177e4 253{
35a8a72f 254 if (xlog_state_release_iclog(mp->m_log, iclog)) {
7d04a335 255 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
014c2544 256 return EIO;
1da177e4
LT
257 }
258
259 return 0;
260}
261
262/*
263 * 1. Reserve an amount of on-disk log space and return a ticket corresponding
264 * to the reservation.
265 * 2. Potentially, push buffers at tail of log to disk.
266 *
267 * Each reservation is going to reserve extra space for a log record header.
268 * When writes happen to the on-disk log, we don't subtract the length of the
269 * log record header from any reservation. By wasting space in each
270 * reservation, we prevent over allocation problems.
271 */
272int
35a8a72f
CH
273xfs_log_reserve(
274 struct xfs_mount *mp,
275 int unit_bytes,
276 int cnt,
277 struct xlog_ticket **ticket,
278 __uint8_t client,
279 uint flags,
280 uint t_type)
1da177e4 281{
35a8a72f
CH
282 struct log *log = mp->m_log;
283 struct xlog_ticket *internal_ticket;
284 int retval = 0;
1da177e4 285
1da177e4 286 ASSERT(client == XFS_TRANSACTION || client == XFS_LOG);
1da177e4
LT
287
288 if (XLOG_FORCED_SHUTDOWN(log))
289 return XFS_ERROR(EIO);
290
291 XFS_STATS_INC(xs_try_logspace);
292
0b1b213f 293
1da177e4
LT
294 if (*ticket != NULL) {
295 ASSERT(flags & XFS_LOG_PERM_RESERV);
35a8a72f 296 internal_ticket = *ticket;
0b1b213f 297
524ee36f
DC
298 /*
299 * this is a new transaction on the ticket, so we need to
300 * change the transaction ID so that the next transaction has a
301 * different TID in the log. Just add one to the existing tid
302 * so that we can see chains of rolling transactions in the log
303 * easily.
304 */
305 internal_ticket->t_tid++;
306
0b1b213f
CH
307 trace_xfs_log_reserve(log, internal_ticket);
308
1da177e4
LT
309 xlog_grant_push_ail(mp, internal_ticket->t_unit_res);
310 retval = xlog_regrant_write_log_space(log, internal_ticket);
311 } else {
312 /* may sleep if need to allocate more tickets */
cc09c0dc 313 internal_ticket = xlog_ticket_alloc(log, unit_bytes, cnt,
3383ca57
DC
314 client, flags,
315 KM_SLEEP|KM_MAYFAIL);
eb01c9cd
DC
316 if (!internal_ticket)
317 return XFS_ERROR(ENOMEM);
7e9c6396 318 internal_ticket->t_trans_type = t_type;
1da177e4 319 *ticket = internal_ticket;
0b1b213f
CH
320
321 trace_xfs_log_reserve(log, internal_ticket);
322
1da177e4
LT
323 xlog_grant_push_ail(mp,
324 (internal_ticket->t_unit_res *
325 internal_ticket->t_cnt));
326 retval = xlog_grant_log_space(log, internal_ticket);
327 }
328
329 return retval;
330} /* xfs_log_reserve */
331
332
333/*
334 * Mount a log filesystem
335 *
336 * mp - ubiquitous xfs mount point structure
337 * log_target - buftarg of on-disk log device
338 * blk_offset - Start block # where block size is 512 bytes (BBSIZE)
339 * num_bblocks - Number of BBSIZE blocks in on-disk log
340 *
341 * Return error or zero.
342 */
343int
249a8c11
DC
344xfs_log_mount(
345 xfs_mount_t *mp,
346 xfs_buftarg_t *log_target,
347 xfs_daddr_t blk_offset,
348 int num_bblks)
1da177e4 349{
249a8c11
DC
350 int error;
351
1da177e4
LT
352 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
353 cmn_err(CE_NOTE, "XFS mounting filesystem %s", mp->m_fsname);
354 else {
355 cmn_err(CE_NOTE,
356 "!Mounting filesystem \"%s\" in no-recovery mode. Filesystem will be inconsistent.",
357 mp->m_fsname);
bd186aa9 358 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
1da177e4
LT
359 }
360
361 mp->m_log = xlog_alloc_log(mp, log_target, blk_offset, num_bblks);
a6cb767e
DC
362 if (IS_ERR(mp->m_log)) {
363 error = -PTR_ERR(mp->m_log);
644c3567
DC
364 goto out;
365 }
1da177e4 366
249a8c11
DC
367 /*
368 * Initialize the AIL now we have a log.
369 */
249a8c11
DC
370 error = xfs_trans_ail_init(mp);
371 if (error) {
372 cmn_err(CE_WARN, "XFS: AIL initialisation failed: error %d", error);
26430752 373 goto out_free_log;
249a8c11 374 }
a9c21c1b 375 mp->m_log->l_ailp = mp->m_ail;
249a8c11 376
1da177e4
LT
377 /*
378 * skip log recovery on a norecovery mount. pretend it all
379 * just worked.
380 */
381 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) {
249a8c11 382 int readonly = (mp->m_flags & XFS_MOUNT_RDONLY);
1da177e4
LT
383
384 if (readonly)
bd186aa9 385 mp->m_flags &= ~XFS_MOUNT_RDONLY;
1da177e4 386
65be6054 387 error = xlog_recover(mp->m_log);
1da177e4
LT
388
389 if (readonly)
bd186aa9 390 mp->m_flags |= XFS_MOUNT_RDONLY;
1da177e4
LT
391 if (error) {
392 cmn_err(CE_WARN, "XFS: log mount/recovery failed: error %d", error);
26430752 393 goto out_destroy_ail;
1da177e4
LT
394 }
395 }
396
397 /* Normal transactions can now occur */
398 mp->m_log->l_flags &= ~XLOG_ACTIVE_RECOVERY;
399
71e330b5
DC
400 /*
401 * Now the log has been fully initialised and we know were our
402 * space grant counters are, we can initialise the permanent ticket
403 * needed for delayed logging to work.
404 */
405 xlog_cil_init_post_recovery(mp->m_log);
406
1da177e4 407 return 0;
26430752
CH
408
409out_destroy_ail:
410 xfs_trans_ail_destroy(mp);
411out_free_log:
412 xlog_dealloc_log(mp->m_log);
644c3567 413out:
249a8c11 414 return error;
26430752 415}
1da177e4
LT
416
417/*
418 * Finish the recovery of the file system. This is separate from
419 * the xfs_log_mount() call, because it depends on the code in
420 * xfs_mountfs() to read in the root and real-time bitmap inodes
421 * between calling xfs_log_mount() and here.
422 *
423 * mp - ubiquitous xfs mount point structure
424 */
425int
4249023a 426xfs_log_mount_finish(xfs_mount_t *mp)
1da177e4
LT
427{
428 int error;
429
430 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
4249023a 431 error = xlog_recover_finish(mp->m_log);
1da177e4
LT
432 else {
433 error = 0;
bd186aa9 434 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
1da177e4
LT
435 }
436
437 return error;
438}
439
1da177e4
LT
440/*
441 * Final log writes as part of unmount.
442 *
443 * Mark the filesystem clean as unmount happens. Note that during relocation
444 * this routine needs to be executed as part of source-bag while the
445 * deallocation must not be done until source-end.
446 */
447
448/*
449 * Unmount record used to have a string "Unmount filesystem--" in the
450 * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
451 * We just write the magic number now since that particular field isn't
452 * currently architecture converted and "nUmount" is a bit foo.
453 * As far as I know, there weren't any dependencies on the old behaviour.
454 */
455
456int
457xfs_log_unmount_write(xfs_mount_t *mp)
458{
459 xlog_t *log = mp->m_log;
460 xlog_in_core_t *iclog;
461#ifdef DEBUG
462 xlog_in_core_t *first_iclog;
463#endif
35a8a72f 464 xlog_ticket_t *tic = NULL;
1da177e4
LT
465 xfs_lsn_t lsn;
466 int error;
1da177e4 467
1da177e4
LT
468 /*
469 * Don't write out unmount record on read-only mounts.
470 * Or, if we are doing a forced umount (typically because of IO errors).
471 */
bd186aa9 472 if (mp->m_flags & XFS_MOUNT_RDONLY)
1da177e4
LT
473 return 0;
474
a14a348b 475 error = _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
b911ca04 476 ASSERT(error || !(XLOG_FORCED_SHUTDOWN(log)));
1da177e4
LT
477
478#ifdef DEBUG
479 first_iclog = iclog = log->l_iclog;
480 do {
481 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
482 ASSERT(iclog->ic_state & XLOG_STATE_ACTIVE);
483 ASSERT(iclog->ic_offset == 0);
484 }
485 iclog = iclog->ic_next;
486 } while (iclog != first_iclog);
487#endif
488 if (! (XLOG_FORCED_SHUTDOWN(log))) {
955e47ad
TS
489 error = xfs_log_reserve(mp, 600, 1, &tic,
490 XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE);
1da177e4 491 if (!error) {
55b66332
DC
492 /* the data section must be 32 bit size aligned */
493 struct {
494 __uint16_t magic;
495 __uint16_t pad1;
496 __uint32_t pad2; /* may as well make it 64 bits */
497 } magic = {
498 .magic = XLOG_UNMOUNT_TYPE,
499 };
500 struct xfs_log_iovec reg = {
4e0d5f92 501 .i_addr = &magic,
55b66332
DC
502 .i_len = sizeof(magic),
503 .i_type = XLOG_REG_TYPE_UNMOUNT,
504 };
505 struct xfs_log_vec vec = {
506 .lv_niovecs = 1,
507 .lv_iovecp = &reg,
508 };
509
1da177e4 510 /* remove inited flag */
55b66332
DC
511 tic->t_flags = 0;
512 error = xlog_write(log, &vec, tic, &lsn,
1da177e4
LT
513 NULL, XLOG_UNMOUNT_TRANS);
514 /*
515 * At this point, we're umounting anyway,
516 * so there's no point in transitioning log state
517 * to IOERROR. Just continue...
518 */
519 }
520
521 if (error) {
522 xfs_fs_cmn_err(CE_ALERT, mp,
523 "xfs_log_unmount: unmount record failed");
524 }
525
526
b22cd72c 527 spin_lock(&log->l_icloglock);
1da177e4 528 iclog = log->l_iclog;
155cc6b7 529 atomic_inc(&iclog->ic_refcnt);
1da177e4 530 xlog_state_want_sync(log, iclog);
39e2defe 531 spin_unlock(&log->l_icloglock);
1bb7d6b5 532 error = xlog_state_release_iclog(log, iclog);
1da177e4 533
b22cd72c 534 spin_lock(&log->l_icloglock);
1da177e4
LT
535 if (!(iclog->ic_state == XLOG_STATE_ACTIVE ||
536 iclog->ic_state == XLOG_STATE_DIRTY)) {
537 if (!XLOG_FORCED_SHUTDOWN(log)) {
12017faf 538 sv_wait(&iclog->ic_force_wait, PMEM,
1da177e4
LT
539 &log->l_icloglock, s);
540 } else {
b22cd72c 541 spin_unlock(&log->l_icloglock);
1da177e4
LT
542 }
543 } else {
b22cd72c 544 spin_unlock(&log->l_icloglock);
1da177e4 545 }
955e47ad 546 if (tic) {
0b1b213f 547 trace_xfs_log_umount_write(log, tic);
955e47ad 548 xlog_ungrant_log_space(log, tic);
cc09c0dc 549 xfs_log_ticket_put(tic);
955e47ad 550 }
1da177e4
LT
551 } else {
552 /*
553 * We're already in forced_shutdown mode, couldn't
554 * even attempt to write out the unmount transaction.
555 *
556 * Go through the motions of sync'ing and releasing
557 * the iclog, even though no I/O will actually happen,
c41564b5 558 * we need to wait for other log I/Os that may already
1da177e4
LT
559 * be in progress. Do this as a separate section of
560 * code so we'll know if we ever get stuck here that
561 * we're in this odd situation of trying to unmount
562 * a file system that went into forced_shutdown as
563 * the result of an unmount..
564 */
b22cd72c 565 spin_lock(&log->l_icloglock);
1da177e4 566 iclog = log->l_iclog;
155cc6b7 567 atomic_inc(&iclog->ic_refcnt);
1da177e4
LT
568
569 xlog_state_want_sync(log, iclog);
39e2defe 570 spin_unlock(&log->l_icloglock);
1bb7d6b5 571 error = xlog_state_release_iclog(log, iclog);
1da177e4 572
b22cd72c 573 spin_lock(&log->l_icloglock);
1da177e4
LT
574
575 if ( ! ( iclog->ic_state == XLOG_STATE_ACTIVE
576 || iclog->ic_state == XLOG_STATE_DIRTY
577 || iclog->ic_state == XLOG_STATE_IOERROR) ) {
578
12017faf 579 sv_wait(&iclog->ic_force_wait, PMEM,
1da177e4
LT
580 &log->l_icloglock, s);
581 } else {
b22cd72c 582 spin_unlock(&log->l_icloglock);
1da177e4
LT
583 }
584 }
585
1bb7d6b5 586 return error;
1da177e4
LT
587} /* xfs_log_unmount_write */
588
589/*
590 * Deallocate log structures for unmount/relocation.
249a8c11
DC
591 *
592 * We need to stop the aild from running before we destroy
593 * and deallocate the log as the aild references the log.
1da177e4
LT
594 */
595void
21b699c8 596xfs_log_unmount(xfs_mount_t *mp)
1da177e4 597{
249a8c11 598 xfs_trans_ail_destroy(mp);
c41564b5 599 xlog_dealloc_log(mp->m_log);
1da177e4
LT
600}
601
43f5efc5
DC
602void
603xfs_log_item_init(
604 struct xfs_mount *mp,
605 struct xfs_log_item *item,
606 int type,
607 struct xfs_item_ops *ops)
608{
609 item->li_mountp = mp;
610 item->li_ailp = mp->m_ail;
611 item->li_type = type;
612 item->li_ops = ops;
71e330b5
DC
613 item->li_lv = NULL;
614
615 INIT_LIST_HEAD(&item->li_ail);
616 INIT_LIST_HEAD(&item->li_cil);
43f5efc5
DC
617}
618
1da177e4
LT
619/*
620 * Write region vectors to log. The write happens using the space reservation
621 * of the ticket (tic). It is not a requirement that all writes for a given
9b9fc2b7
DC
622 * transaction occur with one call to xfs_log_write(). However, it is important
623 * to note that the transaction reservation code makes an assumption about the
624 * number of log headers a transaction requires that may be violated if you
625 * don't pass all the transaction vectors in one call....
1da177e4
LT
626 */
627int
35a8a72f
CH
628xfs_log_write(
629 struct xfs_mount *mp,
630 struct xfs_log_iovec reg[],
631 int nentries,
632 struct xlog_ticket *tic,
633 xfs_lsn_t *start_lsn)
1da177e4 634{
35a8a72f
CH
635 struct log *log = mp->m_log;
636 int error;
55b66332
DC
637 struct xfs_log_vec vec = {
638 .lv_niovecs = nentries,
639 .lv_iovecp = reg,
640 };
1da177e4 641
1da177e4
LT
642 if (XLOG_FORCED_SHUTDOWN(log))
643 return XFS_ERROR(EIO);
644
55b66332 645 error = xlog_write(log, &vec, tic, start_lsn, NULL, 0);
35a8a72f 646 if (error)
7d04a335 647 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
014c2544 648 return error;
35a8a72f 649}
1da177e4
LT
650
651void
652xfs_log_move_tail(xfs_mount_t *mp,
653 xfs_lsn_t tail_lsn)
654{
655 xlog_ticket_t *tic;
656 xlog_t *log = mp->m_log;
657 int need_bytes, free_bytes, cycle, bytes;
1da177e4 658
1da177e4
LT
659 if (XLOG_FORCED_SHUTDOWN(log))
660 return;
1da177e4
LT
661
662 if (tail_lsn == 0) {
663 /* needed since sync_lsn is 64 bits */
b22cd72c 664 spin_lock(&log->l_icloglock);
1da177e4 665 tail_lsn = log->l_last_sync_lsn;
b22cd72c 666 spin_unlock(&log->l_icloglock);
1da177e4
LT
667 }
668
c8b5ea28 669 spin_lock(&log->l_grant_lock);
1da177e4
LT
670
671 /* Also an invalid lsn. 1 implies that we aren't passing in a valid
672 * tail_lsn.
673 */
674 if (tail_lsn != 1) {
675 log->l_tail_lsn = tail_lsn;
676 }
677
10547941 678 if (!list_empty(&log->l_writeq)) {
1da177e4
LT
679#ifdef DEBUG
680 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
681 panic("Recovery problem");
682#endif
683 cycle = log->l_grant_write_cycle;
684 bytes = log->l_grant_write_bytes;
685 free_bytes = xlog_space_left(log, cycle, bytes);
10547941 686 list_for_each_entry(tic, &log->l_writeq, t_queue) {
1da177e4
LT
687 ASSERT(tic->t_flags & XLOG_TIC_PERM_RESERV);
688
689 if (free_bytes < tic->t_unit_res && tail_lsn != 1)
690 break;
691 tail_lsn = 0;
692 free_bytes -= tic->t_unit_res;
12017faf 693 sv_signal(&tic->t_wait);
10547941 694 }
1da177e4 695 }
10547941
DC
696
697 if (!list_empty(&log->l_reserveq)) {
1da177e4
LT
698#ifdef DEBUG
699 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
700 panic("Recovery problem");
701#endif
702 cycle = log->l_grant_reserve_cycle;
703 bytes = log->l_grant_reserve_bytes;
704 free_bytes = xlog_space_left(log, cycle, bytes);
10547941 705 list_for_each_entry(tic, &log->l_reserveq, t_queue) {
1da177e4
LT
706 if (tic->t_flags & XLOG_TIC_PERM_RESERV)
707 need_bytes = tic->t_unit_res*tic->t_cnt;
708 else
709 need_bytes = tic->t_unit_res;
710 if (free_bytes < need_bytes && tail_lsn != 1)
711 break;
712 tail_lsn = 0;
713 free_bytes -= need_bytes;
12017faf 714 sv_signal(&tic->t_wait);
10547941 715 }
1da177e4 716 }
c8b5ea28 717 spin_unlock(&log->l_grant_lock);
1da177e4
LT
718} /* xfs_log_move_tail */
719
720/*
721 * Determine if we have a transaction that has gone to disk
b6f8dd49
DC
722 * that needs to be covered. To begin the transition to the idle state
723 * firstly the log needs to be idle (no AIL and nothing in the iclogs).
724 * If we are then in a state where covering is needed, the caller is informed
725 * that dummy transactions are required to move the log into the idle state.
726 *
727 * Because this is called as part of the sync process, we should also indicate
728 * that dummy transactions should be issued in anything but the covered or
729 * idle states. This ensures that the log tail is accurately reflected in
730 * the log at the end of the sync, hence if a crash occurrs avoids replay
731 * of transactions where the metadata is already on disk.
1da177e4
LT
732 */
733int
734xfs_log_need_covered(xfs_mount_t *mp)
735{
27d8d5fe 736 int needed = 0;
1da177e4 737 xlog_t *log = mp->m_log;
1da177e4 738
92821e2b 739 if (!xfs_fs_writable(mp))
1da177e4
LT
740 return 0;
741
b22cd72c 742 spin_lock(&log->l_icloglock);
b6f8dd49
DC
743 switch (log->l_covered_state) {
744 case XLOG_STATE_COVER_DONE:
745 case XLOG_STATE_COVER_DONE2:
746 case XLOG_STATE_COVER_IDLE:
747 break;
748 case XLOG_STATE_COVER_NEED:
749 case XLOG_STATE_COVER_NEED2:
750 if (!xfs_trans_ail_tail(log->l_ailp) &&
751 xlog_iclogs_empty(log)) {
752 if (log->l_covered_state == XLOG_STATE_COVER_NEED)
753 log->l_covered_state = XLOG_STATE_COVER_DONE;
754 else
755 log->l_covered_state = XLOG_STATE_COVER_DONE2;
1da177e4 756 }
b6f8dd49
DC
757 /* FALLTHRU */
758 default:
1da177e4 759 needed = 1;
b6f8dd49 760 break;
1da177e4 761 }
b22cd72c 762 spin_unlock(&log->l_icloglock);
014c2544 763 return needed;
1da177e4
LT
764}
765
766/******************************************************************************
767 *
768 * local routines
769 *
770 ******************************************************************************
771 */
772
773/* xfs_trans_tail_ail returns 0 when there is nothing in the list.
774 * The log manager must keep track of the last LR which was committed
775 * to disk. The lsn of this LR will become the new tail_lsn whenever
776 * xfs_trans_tail_ail returns 0. If we don't do this, we run into
777 * the situation where stuff could be written into the log but nothing
778 * was ever in the AIL when asked. Eventually, we panic since the
779 * tail hits the head.
780 *
781 * We may be holding the log iclog lock upon entering this routine.
782 */
783xfs_lsn_t
784xlog_assign_tail_lsn(xfs_mount_t *mp)
785{
786 xfs_lsn_t tail_lsn;
1da177e4
LT
787 xlog_t *log = mp->m_log;
788
5b00f14f 789 tail_lsn = xfs_trans_ail_tail(mp->m_ail);
c8b5ea28 790 spin_lock(&log->l_grant_lock);
1da177e4
LT
791 if (tail_lsn != 0) {
792 log->l_tail_lsn = tail_lsn;
793 } else {
794 tail_lsn = log->l_tail_lsn = log->l_last_sync_lsn;
795 }
c8b5ea28 796 spin_unlock(&log->l_grant_lock);
1da177e4
LT
797
798 return tail_lsn;
799} /* xlog_assign_tail_lsn */
800
801
802/*
803 * Return the space in the log between the tail and the head. The head
804 * is passed in the cycle/bytes formal parms. In the special case where
805 * the reserve head has wrapped passed the tail, this calculation is no
806 * longer valid. In this case, just return 0 which means there is no space
807 * in the log. This works for all places where this function is called
808 * with the reserve head. Of course, if the write head were to ever
809 * wrap the tail, we should blow up. Rather than catch this case here,
810 * we depend on other ASSERTions in other parts of the code. XXXmiken
811 *
812 * This code also handles the case where the reservation head is behind
813 * the tail. The details of this case are described below, but the end
814 * result is that we return the size of the log as the amount of space left.
815 */
a8272ce0 816STATIC int
1da177e4
LT
817xlog_space_left(xlog_t *log, int cycle, int bytes)
818{
819 int free_bytes;
820 int tail_bytes;
821 int tail_cycle;
822
823 tail_bytes = BBTOB(BLOCK_LSN(log->l_tail_lsn));
824 tail_cycle = CYCLE_LSN(log->l_tail_lsn);
825 if ((tail_cycle == cycle) && (bytes >= tail_bytes)) {
826 free_bytes = log->l_logsize - (bytes - tail_bytes);
827 } else if ((tail_cycle + 1) < cycle) {
828 return 0;
829 } else if (tail_cycle < cycle) {
830 ASSERT(tail_cycle == (cycle - 1));
831 free_bytes = tail_bytes - bytes;
832 } else {
833 /*
834 * The reservation head is behind the tail.
835 * In this case we just want to return the size of the
836 * log as the amount of space left.
837 */
838 xfs_fs_cmn_err(CE_ALERT, log->l_mp,
839 "xlog_space_left: head behind tail\n"
840 " tail_cycle = %d, tail_bytes = %d\n"
841 " GH cycle = %d, GH bytes = %d",
842 tail_cycle, tail_bytes, cycle, bytes);
843 ASSERT(0);
844 free_bytes = log->l_logsize;
845 }
846 return free_bytes;
847} /* xlog_space_left */
848
849
850/*
851 * Log function which is called when an io completes.
852 *
853 * The log manager needs its own routine, in order to control what
854 * happens with the buffer after the write completes.
855 */
856void
857xlog_iodone(xfs_buf_t *bp)
858{
859 xlog_in_core_t *iclog;
860 xlog_t *l;
861 int aborted;
862
863 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
864 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long) 2);
865 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
866 aborted = 0;
1da177e4
LT
867 l = iclog->ic_log;
868
869 /*
870 * Race to shutdown the filesystem if we see an error.
871 */
872 if (XFS_TEST_ERROR((XFS_BUF_GETERROR(bp)), l->l_mp,
873 XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) {
874 xfs_ioerror_alert("xlog_iodone", l->l_mp, bp, XFS_BUF_ADDR(bp));
875 XFS_BUF_STALE(bp);
7d04a335 876 xfs_force_shutdown(l->l_mp, SHUTDOWN_LOG_IO_ERROR);
1da177e4
LT
877 /*
878 * This flag will be propagated to the trans-committed
879 * callback routines to let them know that the log-commit
880 * didn't succeed.
881 */
882 aborted = XFS_LI_ABORTED;
883 } else if (iclog->ic_state & XLOG_STATE_IOERROR) {
884 aborted = XFS_LI_ABORTED;
885 }
3db296f3
DC
886
887 /* log I/O is always issued ASYNC */
888 ASSERT(XFS_BUF_ISASYNC(bp));
1da177e4 889 xlog_state_done_syncing(iclog, aborted);
3db296f3
DC
890 /*
891 * do not reference the buffer (bp) here as we could race
892 * with it being freed after writing the unmount record to the
893 * log.
894 */
895
1da177e4
LT
896} /* xlog_iodone */
897
1da177e4
LT
898/*
899 * Return size of each in-core log record buffer.
900 *
9da096fd 901 * All machines get 8 x 32kB buffers by default, unless tuned otherwise.
1da177e4
LT
902 *
903 * If the filesystem blocksize is too large, we may need to choose a
904 * larger size since the directory code currently logs entire blocks.
905 */
906
907STATIC void
908xlog_get_iclog_buffer_size(xfs_mount_t *mp,
909 xlog_t *log)
910{
911 int size;
912 int xhdrs;
913
1cb51258
ES
914 if (mp->m_logbufs <= 0)
915 log->l_iclog_bufs = XLOG_MAX_ICLOGS;
916 else
cfcbbbd0 917 log->l_iclog_bufs = mp->m_logbufs;
1da177e4
LT
918
919 /*
920 * Buffer size passed in from mount system call.
921 */
cfcbbbd0 922 if (mp->m_logbsize > 0) {
1da177e4
LT
923 size = log->l_iclog_size = mp->m_logbsize;
924 log->l_iclog_size_log = 0;
925 while (size != 1) {
926 log->l_iclog_size_log++;
927 size >>= 1;
928 }
929
62118709 930 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
9da096fd
MP
931 /* # headers = size / 32k
932 * one header holds cycles from 32k of data
1da177e4
LT
933 */
934
935 xhdrs = mp->m_logbsize / XLOG_HEADER_CYCLE_SIZE;
936 if (mp->m_logbsize % XLOG_HEADER_CYCLE_SIZE)
937 xhdrs++;
938 log->l_iclog_hsize = xhdrs << BBSHIFT;
939 log->l_iclog_heads = xhdrs;
940 } else {
941 ASSERT(mp->m_logbsize <= XLOG_BIG_RECORD_BSIZE);
942 log->l_iclog_hsize = BBSIZE;
943 log->l_iclog_heads = 1;
944 }
cfcbbbd0 945 goto done;
1da177e4
LT
946 }
947
9da096fd 948 /* All machines use 32kB buffers by default. */
1cb51258
ES
949 log->l_iclog_size = XLOG_BIG_RECORD_BSIZE;
950 log->l_iclog_size_log = XLOG_BIG_RECORD_BSHIFT;
1da177e4
LT
951
952 /* the default log size is 16k or 32k which is one header sector */
953 log->l_iclog_hsize = BBSIZE;
954 log->l_iclog_heads = 1;
955
7153f8ba
CH
956done:
957 /* are we being asked to make the sizes selected above visible? */
cfcbbbd0
NS
958 if (mp->m_logbufs == 0)
959 mp->m_logbufs = log->l_iclog_bufs;
960 if (mp->m_logbsize == 0)
961 mp->m_logbsize = log->l_iclog_size;
1da177e4
LT
962} /* xlog_get_iclog_buffer_size */
963
964
965/*
966 * This routine initializes some of the log structure for a given mount point.
967 * Its primary purpose is to fill in enough, so recovery can occur. However,
968 * some other stuff may be filled in too.
969 */
970STATIC xlog_t *
971xlog_alloc_log(xfs_mount_t *mp,
972 xfs_buftarg_t *log_target,
973 xfs_daddr_t blk_offset,
974 int num_bblks)
975{
976 xlog_t *log;
977 xlog_rec_header_t *head;
978 xlog_in_core_t **iclogp;
979 xlog_in_core_t *iclog, *prev_iclog=NULL;
980 xfs_buf_t *bp;
981 int i;
a6cb767e 982 int error = ENOMEM;
69ce58f0 983 uint log2_size = 0;
1da177e4 984
644c3567 985 log = kmem_zalloc(sizeof(xlog_t), KM_MAYFAIL);
a6cb767e
DC
986 if (!log) {
987 xlog_warn("XFS: Log allocation failed: No memory!");
988 goto out;
989 }
1da177e4
LT
990
991 log->l_mp = mp;
992 log->l_targ = log_target;
993 log->l_logsize = BBTOB(num_bblks);
994 log->l_logBBstart = blk_offset;
995 log->l_logBBsize = num_bblks;
996 log->l_covered_state = XLOG_STATE_COVER_IDLE;
997 log->l_flags |= XLOG_ACTIVE_RECOVERY;
998
999 log->l_prev_block = -1;
03bea6fe 1000 log->l_tail_lsn = xlog_assign_lsn(1, 0);
1da177e4
LT
1001 /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
1002 log->l_last_sync_lsn = log->l_tail_lsn;
1003 log->l_curr_cycle = 1; /* 0 is bad since this is initial value */
1004 log->l_grant_reserve_cycle = 1;
1005 log->l_grant_write_cycle = 1;
10547941
DC
1006 INIT_LIST_HEAD(&log->l_reserveq);
1007 INIT_LIST_HEAD(&log->l_writeq);
1da177e4 1008
a6cb767e 1009 error = EFSCORRUPTED;
62118709 1010 if (xfs_sb_version_hassector(&mp->m_sb)) {
69ce58f0
AE
1011 log2_size = mp->m_sb.sb_logsectlog;
1012 if (log2_size < BBSHIFT) {
1013 xlog_warn("XFS: Log sector size too small "
1014 "(0x%x < 0x%x)", log2_size, BBSHIFT);
a6cb767e
DC
1015 goto out_free_log;
1016 }
1017
69ce58f0
AE
1018 log2_size -= BBSHIFT;
1019 if (log2_size > mp->m_sectbb_log) {
1020 xlog_warn("XFS: Log sector size too large "
1021 "(0x%x > 0x%x)", log2_size, mp->m_sectbb_log);
a6cb767e
DC
1022 goto out_free_log;
1023 }
69ce58f0
AE
1024
1025 /* for larger sector sizes, must have v2 or external log */
1026 if (log2_size && log->l_logBBstart > 0 &&
1027 !xfs_sb_version_haslogv2(&mp->m_sb)) {
1028
1029 xlog_warn("XFS: log sector size (0x%x) invalid "
1030 "for configuration.", log2_size);
a6cb767e
DC
1031 goto out_free_log;
1032 }
1da177e4 1033 }
69ce58f0 1034 log->l_sectBBsize = 1 << log2_size;
1da177e4
LT
1035
1036 xlog_get_iclog_buffer_size(mp, log);
1037
a6cb767e 1038 error = ENOMEM;
1da177e4 1039 bp = xfs_buf_get_empty(log->l_iclog_size, mp->m_logdev_targp);
644c3567
DC
1040 if (!bp)
1041 goto out_free_log;
1da177e4 1042 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
1da177e4
LT
1043 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1044 ASSERT(XFS_BUF_ISBUSY(bp));
1045 ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
1046 log->l_xbuf = bp;
1047
007c61c6
ES
1048 spin_lock_init(&log->l_icloglock);
1049 spin_lock_init(&log->l_grant_lock);
d748c623 1050 sv_init(&log->l_flush_wait, 0, "flush_wait");
1da177e4
LT
1051
1052 /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */
1053 ASSERT((XFS_BUF_SIZE(bp) & BBMASK) == 0);
1054
1055 iclogp = &log->l_iclog;
1056 /*
1057 * The amount of memory to allocate for the iclog structure is
1058 * rather funky due to the way the structure is defined. It is
1059 * done this way so that we can use different sizes for machines
1060 * with different amounts of memory. See the definition of
1061 * xlog_in_core_t in xfs_log_priv.h for details.
1062 */
1da177e4
LT
1063 ASSERT(log->l_iclog_size >= 4096);
1064 for (i=0; i < log->l_iclog_bufs; i++) {
644c3567
DC
1065 *iclogp = kmem_zalloc(sizeof(xlog_in_core_t), KM_MAYFAIL);
1066 if (!*iclogp)
1067 goto out_free_iclog;
1068
1da177e4 1069 iclog = *iclogp;
1da177e4
LT
1070 iclog->ic_prev = prev_iclog;
1071 prev_iclog = iclog;
1fa40b01 1072
686865f7
DC
1073 bp = xfs_buf_get_uncached(mp->m_logdev_targp,
1074 log->l_iclog_size, 0);
644c3567
DC
1075 if (!bp)
1076 goto out_free_iclog;
1fa40b01
CH
1077 if (!XFS_BUF_CPSEMA(bp))
1078 ASSERT(0);
1079 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
1fa40b01
CH
1080 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1081 iclog->ic_bp = bp;
b28708d6 1082 iclog->ic_data = bp->b_addr;
4679b2d3 1083#ifdef DEBUG
1da177e4 1084 log->l_iclog_bak[i] = (xfs_caddr_t)&(iclog->ic_header);
4679b2d3 1085#endif
1da177e4
LT
1086 head = &iclog->ic_header;
1087 memset(head, 0, sizeof(xlog_rec_header_t));
b53e675d
CH
1088 head->h_magicno = cpu_to_be32(XLOG_HEADER_MAGIC_NUM);
1089 head->h_version = cpu_to_be32(
62118709 1090 xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? 2 : 1);
b53e675d 1091 head->h_size = cpu_to_be32(log->l_iclog_size);
1da177e4 1092 /* new fields */
b53e675d 1093 head->h_fmt = cpu_to_be32(XLOG_FMT);
1da177e4
LT
1094 memcpy(&head->h_fs_uuid, &mp->m_sb.sb_uuid, sizeof(uuid_t));
1095
1da177e4
LT
1096 iclog->ic_size = XFS_BUF_SIZE(bp) - log->l_iclog_hsize;
1097 iclog->ic_state = XLOG_STATE_ACTIVE;
1098 iclog->ic_log = log;
114d23aa
DC
1099 atomic_set(&iclog->ic_refcnt, 0);
1100 spin_lock_init(&iclog->ic_callback_lock);
1da177e4 1101 iclog->ic_callback_tail = &(iclog->ic_callback);
b28708d6 1102 iclog->ic_datap = (char *)iclog->ic_data + log->l_iclog_hsize;
1da177e4
LT
1103
1104 ASSERT(XFS_BUF_ISBUSY(iclog->ic_bp));
1105 ASSERT(XFS_BUF_VALUSEMA(iclog->ic_bp) <= 0);
12017faf
DC
1106 sv_init(&iclog->ic_force_wait, SV_DEFAULT, "iclog-force");
1107 sv_init(&iclog->ic_write_wait, SV_DEFAULT, "iclog-write");
1da177e4
LT
1108
1109 iclogp = &iclog->ic_next;
1110 }
1111 *iclogp = log->l_iclog; /* complete ring */
1112 log->l_iclog->ic_prev = prev_iclog; /* re-write 1st prev ptr */
1113
71e330b5
DC
1114 error = xlog_cil_init(log);
1115 if (error)
1116 goto out_free_iclog;
1da177e4 1117 return log;
644c3567
DC
1118
1119out_free_iclog:
1120 for (iclog = log->l_iclog; iclog; iclog = prev_iclog) {
1121 prev_iclog = iclog->ic_next;
1122 if (iclog->ic_bp) {
1123 sv_destroy(&iclog->ic_force_wait);
1124 sv_destroy(&iclog->ic_write_wait);
1125 xfs_buf_free(iclog->ic_bp);
644c3567
DC
1126 }
1127 kmem_free(iclog);
1128 }
1129 spinlock_destroy(&log->l_icloglock);
1130 spinlock_destroy(&log->l_grant_lock);
644c3567
DC
1131 xfs_buf_free(log->l_xbuf);
1132out_free_log:
1133 kmem_free(log);
a6cb767e
DC
1134out:
1135 return ERR_PTR(-error);
1da177e4
LT
1136} /* xlog_alloc_log */
1137
1138
1139/*
1140 * Write out the commit record of a transaction associated with the given
1141 * ticket. Return the lsn of the commit record.
1142 */
1143STATIC int
55b66332
DC
1144xlog_commit_record(
1145 struct log *log,
1146 struct xlog_ticket *ticket,
1147 struct xlog_in_core **iclog,
1148 xfs_lsn_t *commitlsnp)
1da177e4 1149{
55b66332
DC
1150 struct xfs_mount *mp = log->l_mp;
1151 int error;
1152 struct xfs_log_iovec reg = {
1153 .i_addr = NULL,
1154 .i_len = 0,
1155 .i_type = XLOG_REG_TYPE_COMMIT,
1156 };
1157 struct xfs_log_vec vec = {
1158 .lv_niovecs = 1,
1159 .lv_iovecp = &reg,
1160 };
1da177e4
LT
1161
1162 ASSERT_ALWAYS(iclog);
55b66332
DC
1163 error = xlog_write(log, &vec, ticket, commitlsnp, iclog,
1164 XLOG_COMMIT_TRANS);
1165 if (error)
7d04a335 1166 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
014c2544 1167 return error;
55b66332 1168}
1da177e4
LT
1169
1170/*
1171 * Push on the buffer cache code if we ever use more than 75% of the on-disk
1172 * log space. This code pushes on the lsn which would supposedly free up
1173 * the 25% which we want to leave free. We may need to adopt a policy which
1174 * pushes on an lsn which is further along in the log once we reach the high
1175 * water mark. In this manner, we would be creating a low water mark.
1176 */
a8272ce0 1177STATIC void
1da177e4
LT
1178xlog_grant_push_ail(xfs_mount_t *mp,
1179 int need_bytes)
1180{
1181 xlog_t *log = mp->m_log; /* pointer to the log */
1182 xfs_lsn_t tail_lsn; /* lsn of the log tail */
1183 xfs_lsn_t threshold_lsn = 0; /* lsn we'd like to be at */
1184 int free_blocks; /* free blocks left to write to */
1185 int free_bytes; /* free bytes left to write to */
1186 int threshold_block; /* block in lsn we'd like to be at */
1187 int threshold_cycle; /* lsn cycle we'd like to be at */
1188 int free_threshold;
1da177e4
LT
1189
1190 ASSERT(BTOBB(need_bytes) < log->l_logBBsize);
1191
c8b5ea28 1192 spin_lock(&log->l_grant_lock);
1da177e4
LT
1193 free_bytes = xlog_space_left(log,
1194 log->l_grant_reserve_cycle,
1195 log->l_grant_reserve_bytes);
1196 tail_lsn = log->l_tail_lsn;
1197 free_blocks = BTOBBT(free_bytes);
1198
1199 /*
1200 * Set the threshold for the minimum number of free blocks in the
1201 * log to the maximum of what the caller needs, one quarter of the
1202 * log, and 256 blocks.
1203 */
1204 free_threshold = BTOBB(need_bytes);
1205 free_threshold = MAX(free_threshold, (log->l_logBBsize >> 2));
1206 free_threshold = MAX(free_threshold, 256);
1207 if (free_blocks < free_threshold) {
1208 threshold_block = BLOCK_LSN(tail_lsn) + free_threshold;
1209 threshold_cycle = CYCLE_LSN(tail_lsn);
1210 if (threshold_block >= log->l_logBBsize) {
1211 threshold_block -= log->l_logBBsize;
1212 threshold_cycle += 1;
1213 }
03bea6fe 1214 threshold_lsn = xlog_assign_lsn(threshold_cycle, threshold_block);
1da177e4
LT
1215
1216 /* Don't pass in an lsn greater than the lsn of the last
1217 * log record known to be on disk.
1218 */
1219 if (XFS_LSN_CMP(threshold_lsn, log->l_last_sync_lsn) > 0)
1220 threshold_lsn = log->l_last_sync_lsn;
1221 }
c8b5ea28 1222 spin_unlock(&log->l_grant_lock);
1da177e4
LT
1223
1224 /*
1225 * Get the transaction layer to kick the dirty buffers out to
1226 * disk asynchronously. No point in trying to do this if
1227 * the filesystem is shutting down.
1228 */
1229 if (threshold_lsn &&
1230 !XLOG_FORCED_SHUTDOWN(log))
783a2f65 1231 xfs_trans_ail_push(log->l_ailp, threshold_lsn);
1da177e4
LT
1232} /* xlog_grant_push_ail */
1233
873ff550
CH
1234/*
1235 * The bdstrat callback function for log bufs. This gives us a central
1236 * place to trap bufs in case we get hit by a log I/O error and need to
1237 * shutdown. Actually, in practice, even when we didn't get a log error,
1238 * we transition the iclogs to IOERROR state *after* flushing all existing
1239 * iclogs to disk. This is because we don't want anymore new transactions to be
1240 * started or completed afterwards.
1241 */
1242STATIC int
1243xlog_bdstrat(
1244 struct xfs_buf *bp)
1245{
1246 struct xlog_in_core *iclog;
1247
1248 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
1249 if (iclog->ic_state & XLOG_STATE_IOERROR) {
1250 XFS_BUF_ERROR(bp, EIO);
1251 XFS_BUF_STALE(bp);
1a1a3e97 1252 xfs_buf_ioend(bp, 0);
873ff550
CH
1253 /*
1254 * It would seem logical to return EIO here, but we rely on
1255 * the log state machine to propagate I/O errors instead of
1256 * doing it here.
1257 */
1258 return 0;
1259 }
1260
1261 bp->b_flags |= _XBF_RUN_QUEUES;
1262 xfs_buf_iorequest(bp);
1263 return 0;
1264}
1da177e4
LT
1265
1266/*
1267 * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
1268 * fashion. Previously, we should have moved the current iclog
1269 * ptr in the log to point to the next available iclog. This allows further
1270 * write to continue while this code syncs out an iclog ready to go.
1271 * Before an in-core log can be written out, the data section must be scanned
1272 * to save away the 1st word of each BBSIZE block into the header. We replace
1273 * it with the current cycle count. Each BBSIZE block is tagged with the
1274 * cycle count because there in an implicit assumption that drives will
1275 * guarantee that entire 512 byte blocks get written at once. In other words,
1276 * we can't have part of a 512 byte block written and part not written. By
1277 * tagging each block, we will know which blocks are valid when recovering
1278 * after an unclean shutdown.
1279 *
1280 * This routine is single threaded on the iclog. No other thread can be in
1281 * this routine with the same iclog. Changing contents of iclog can there-
1282 * fore be done without grabbing the state machine lock. Updating the global
1283 * log will require grabbing the lock though.
1284 *
1285 * The entire log manager uses a logical block numbering scheme. Only
1286 * log_sync (and then only bwrite()) know about the fact that the log may
1287 * not start with block zero on a given device. The log block start offset
1288 * is added immediately before calling bwrite().
1289 */
1290
a8272ce0 1291STATIC int
1da177e4
LT
1292xlog_sync(xlog_t *log,
1293 xlog_in_core_t *iclog)
1294{
1295 xfs_caddr_t dptr; /* pointer to byte sized element */
1296 xfs_buf_t *bp;
b53e675d 1297 int i;
1da177e4
LT
1298 uint count; /* byte count of bwrite */
1299 uint count_init; /* initial count before roundup */
1300 int roundoff; /* roundoff to BB or stripe */
1301 int split = 0; /* split write into two regions */
1302 int error;
62118709 1303 int v2 = xfs_sb_version_haslogv2(&log->l_mp->m_sb);
1da177e4
LT
1304
1305 XFS_STATS_INC(xs_log_writes);
155cc6b7 1306 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
1da177e4
LT
1307
1308 /* Add for LR header */
1309 count_init = log->l_iclog_hsize + iclog->ic_offset;
1310
1311 /* Round out the log write size */
1312 if (v2 && log->l_mp->m_sb.sb_logsunit > 1) {
1313 /* we have a v2 stripe unit to use */
1314 count = XLOG_LSUNITTOB(log, XLOG_BTOLSUNIT(log, count_init));
1315 } else {
1316 count = BBTOB(BTOBB(count_init));
1317 }
1318 roundoff = count - count_init;
1319 ASSERT(roundoff >= 0);
1320 ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 &&
1321 roundoff < log->l_mp->m_sb.sb_logsunit)
1322 ||
1323 (log->l_mp->m_sb.sb_logsunit <= 1 &&
1324 roundoff < BBTOB(1)));
1325
1326 /* move grant heads by roundoff in sync */
c8b5ea28 1327 spin_lock(&log->l_grant_lock);
663e496a
DC
1328 xlog_grant_add_space(log, &log->l_grant_reserve_cycle,
1329 &log->l_grant_reserve_bytes, roundoff);
1330 xlog_grant_add_space(log, &log->l_grant_write_cycle,
1331 &log->l_grant_write_bytes, roundoff);
c8b5ea28 1332 spin_unlock(&log->l_grant_lock);
1da177e4
LT
1333
1334 /* put cycle number in every block */
1335 xlog_pack_data(log, iclog, roundoff);
1336
1337 /* real byte length */
1338 if (v2) {
b53e675d
CH
1339 iclog->ic_header.h_len =
1340 cpu_to_be32(iclog->ic_offset + roundoff);
1da177e4 1341 } else {
b53e675d
CH
1342 iclog->ic_header.h_len =
1343 cpu_to_be32(iclog->ic_offset);
1da177e4
LT
1344 }
1345
f5faad79 1346 bp = iclog->ic_bp;
1da177e4
LT
1347 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long)1);
1348 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
b53e675d 1349 XFS_BUF_SET_ADDR(bp, BLOCK_LSN(be64_to_cpu(iclog->ic_header.h_lsn)));
1da177e4
LT
1350
1351 XFS_STATS_ADD(xs_log_blocks, BTOBB(count));
1352
1353 /* Do we need to split this write into 2 parts? */
1354 if (XFS_BUF_ADDR(bp) + BTOBB(count) > log->l_logBBsize) {
1355 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp)));
1356 count = BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp));
1357 iclog->ic_bwritecnt = 2; /* split into 2 writes */
1358 } else {
1359 iclog->ic_bwritecnt = 1;
1360 }
511105b3 1361 XFS_BUF_SET_COUNT(bp, count);
1da177e4 1362 XFS_BUF_SET_FSPRIVATE(bp, iclog); /* save for later */
f5faad79 1363 XFS_BUF_ZEROFLAGS(bp);
1da177e4
LT
1364 XFS_BUF_BUSY(bp);
1365 XFS_BUF_ASYNC(bp);
2ee1abad 1366 bp->b_flags |= XBF_LOG_BUFFER;
651701d7
CH
1367
1368 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
f538d4da 1369 XFS_BUF_ORDERED(bp);
1da177e4
LT
1370
1371 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1372 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1373
1374 xlog_verify_iclog(log, iclog, count, B_TRUE);
1375
1376 /* account for log which doesn't start at block #0 */
1377 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1378 /*
1379 * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1380 * is shutting down.
1381 */
1382 XFS_BUF_WRITE(bp);
1383
873ff550 1384 if ((error = xlog_bdstrat(bp))) {
1da177e4
LT
1385 xfs_ioerror_alert("xlog_sync", log->l_mp, bp,
1386 XFS_BUF_ADDR(bp));
014c2544 1387 return error;
1da177e4
LT
1388 }
1389 if (split) {
f5faad79 1390 bp = iclog->ic_log->l_xbuf;
1da177e4
LT
1391 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) ==
1392 (unsigned long)1);
1393 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
1394 XFS_BUF_SET_ADDR(bp, 0); /* logical 0 */
1395 XFS_BUF_SET_PTR(bp, (xfs_caddr_t)((__psint_t)&(iclog->ic_header)+
1396 (__psint_t)count), split);
1397 XFS_BUF_SET_FSPRIVATE(bp, iclog);
f5faad79 1398 XFS_BUF_ZEROFLAGS(bp);
1da177e4
LT
1399 XFS_BUF_BUSY(bp);
1400 XFS_BUF_ASYNC(bp);
2ee1abad 1401 bp->b_flags |= XBF_LOG_BUFFER;
f538d4da
CH
1402 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
1403 XFS_BUF_ORDERED(bp);
1da177e4
LT
1404 dptr = XFS_BUF_PTR(bp);
1405 /*
1406 * Bump the cycle numbers at the start of each block
1407 * since this part of the buffer is at the start of
1408 * a new cycle. Watch out for the header magic number
1409 * case, though.
1410 */
b53e675d 1411 for (i = 0; i < split; i += BBSIZE) {
413d57c9 1412 be32_add_cpu((__be32 *)dptr, 1);
b53e675d 1413 if (be32_to_cpu(*(__be32 *)dptr) == XLOG_HEADER_MAGIC_NUM)
413d57c9 1414 be32_add_cpu((__be32 *)dptr, 1);
1da177e4
LT
1415 dptr += BBSIZE;
1416 }
1417
1418 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1419 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1420
c41564b5 1421 /* account for internal log which doesn't start at block #0 */
1da177e4
LT
1422 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1423 XFS_BUF_WRITE(bp);
873ff550 1424 if ((error = xlog_bdstrat(bp))) {
1da177e4
LT
1425 xfs_ioerror_alert("xlog_sync (split)", log->l_mp,
1426 bp, XFS_BUF_ADDR(bp));
014c2544 1427 return error;
1da177e4
LT
1428 }
1429 }
014c2544 1430 return 0;
1da177e4
LT
1431} /* xlog_sync */
1432
1433
1434/*
c41564b5 1435 * Deallocate a log structure
1da177e4 1436 */
a8272ce0 1437STATIC void
c41564b5 1438xlog_dealloc_log(xlog_t *log)
1da177e4
LT
1439{
1440 xlog_in_core_t *iclog, *next_iclog;
1da177e4
LT
1441 int i;
1442
71e330b5
DC
1443 xlog_cil_destroy(log);
1444
1da177e4
LT
1445 iclog = log->l_iclog;
1446 for (i=0; i<log->l_iclog_bufs; i++) {
12017faf
DC
1447 sv_destroy(&iclog->ic_force_wait);
1448 sv_destroy(&iclog->ic_write_wait);
1da177e4 1449 xfs_buf_free(iclog->ic_bp);
1da177e4 1450 next_iclog = iclog->ic_next;
f0e2d93c 1451 kmem_free(iclog);
1da177e4
LT
1452 iclog = next_iclog;
1453 }
1da177e4
LT
1454 spinlock_destroy(&log->l_icloglock);
1455 spinlock_destroy(&log->l_grant_lock);
1456
1da177e4 1457 xfs_buf_free(log->l_xbuf);
1da177e4 1458 log->l_mp->m_log = NULL;
f0e2d93c 1459 kmem_free(log);
c41564b5 1460} /* xlog_dealloc_log */
1da177e4
LT
1461
1462/*
1463 * Update counters atomically now that memcpy is done.
1464 */
1465/* ARGSUSED */
1466static inline void
1467xlog_state_finish_copy(xlog_t *log,
1468 xlog_in_core_t *iclog,
1469 int record_cnt,
1470 int copy_bytes)
1471{
b22cd72c 1472 spin_lock(&log->l_icloglock);
1da177e4 1473
413d57c9 1474 be32_add_cpu(&iclog->ic_header.h_num_logops, record_cnt);
1da177e4
LT
1475 iclog->ic_offset += copy_bytes;
1476
b22cd72c 1477 spin_unlock(&log->l_icloglock);
1da177e4
LT
1478} /* xlog_state_finish_copy */
1479
1480
1481
1482
7e9c6396
TS
1483/*
1484 * print out info relating to regions written which consume
1485 * the reservation
1486 */
71e330b5
DC
1487void
1488xlog_print_tic_res(
1489 struct xfs_mount *mp,
1490 struct xlog_ticket *ticket)
7e9c6396
TS
1491{
1492 uint i;
1493 uint ophdr_spc = ticket->t_res_num_ophdrs * (uint)sizeof(xlog_op_header_t);
1494
1495 /* match with XLOG_REG_TYPE_* in xfs_log.h */
1496 static char *res_type_str[XLOG_REG_TYPE_MAX] = {
1497 "bformat",
1498 "bchunk",
1499 "efi_format",
1500 "efd_format",
1501 "iformat",
1502 "icore",
1503 "iext",
1504 "ibroot",
1505 "ilocal",
1506 "iattr_ext",
1507 "iattr_broot",
1508 "iattr_local",
1509 "qformat",
1510 "dquot",
1511 "quotaoff",
1512 "LR header",
1513 "unmount",
1514 "commit",
1515 "trans header"
1516 };
1517 static char *trans_type_str[XFS_TRANS_TYPE_MAX] = {
1518 "SETATTR_NOT_SIZE",
1519 "SETATTR_SIZE",
1520 "INACTIVE",
1521 "CREATE",
1522 "CREATE_TRUNC",
1523 "TRUNCATE_FILE",
1524 "REMOVE",
1525 "LINK",
1526 "RENAME",
1527 "MKDIR",
1528 "RMDIR",
1529 "SYMLINK",
1530 "SET_DMATTRS",
1531 "GROWFS",
1532 "STRAT_WRITE",
1533 "DIOSTRAT",
1534 "WRITE_SYNC",
1535 "WRITEID",
1536 "ADDAFORK",
1537 "ATTRINVAL",
1538 "ATRUNCATE",
1539 "ATTR_SET",
1540 "ATTR_RM",
1541 "ATTR_FLAG",
1542 "CLEAR_AGI_BUCKET",
1543 "QM_SBCHANGE",
1544 "DUMMY1",
1545 "DUMMY2",
1546 "QM_QUOTAOFF",
1547 "QM_DQALLOC",
1548 "QM_SETQLIM",
1549 "QM_DQCLUSTER",
1550 "QM_QINOCREATE",
1551 "QM_QUOTAOFF_END",
1552 "SB_UNIT",
1553 "FSYNC_TS",
1554 "GROWFSRT_ALLOC",
1555 "GROWFSRT_ZERO",
1556 "GROWFSRT_FREE",
1557 "SWAPEXT"
1558 };
1559
1560 xfs_fs_cmn_err(CE_WARN, mp,
1561 "xfs_log_write: reservation summary:\n"
1562 " trans type = %s (%u)\n"
1563 " unit res = %d bytes\n"
1564 " current res = %d bytes\n"
1565 " total reg = %u bytes (o/flow = %u bytes)\n"
1566 " ophdrs = %u (ophdr space = %u bytes)\n"
1567 " ophdr + reg = %u bytes\n"
1568 " num regions = %u\n",
1569 ((ticket->t_trans_type <= 0 ||
1570 ticket->t_trans_type > XFS_TRANS_TYPE_MAX) ?
1571 "bad-trans-type" : trans_type_str[ticket->t_trans_type-1]),
1572 ticket->t_trans_type,
1573 ticket->t_unit_res,
1574 ticket->t_curr_res,
1575 ticket->t_res_arr_sum, ticket->t_res_o_flow,
1576 ticket->t_res_num_ophdrs, ophdr_spc,
1577 ticket->t_res_arr_sum +
1259845d 1578 ticket->t_res_o_flow + ophdr_spc,
7e9c6396
TS
1579 ticket->t_res_num);
1580
1581 for (i = 0; i < ticket->t_res_num; i++) {
1259845d 1582 uint r_type = ticket->t_res_arr[i].r_type;
7e9c6396
TS
1583 cmn_err(CE_WARN,
1584 "region[%u]: %s - %u bytes\n",
1585 i,
1586 ((r_type <= 0 || r_type > XLOG_REG_TYPE_MAX) ?
1587 "bad-rtype" : res_type_str[r_type-1]),
1588 ticket->t_res_arr[i].r_len);
1589 }
169a7b07
DC
1590
1591 xfs_cmn_err(XFS_PTAG_LOGRES, CE_ALERT, mp,
1592 "xfs_log_write: reservation ran out. Need to up reservation");
1593 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
7e9c6396 1594}
7e9c6396 1595
b5203cd0
DC
1596/*
1597 * Calculate the potential space needed by the log vector. Each region gets
1598 * its own xlog_op_header_t and may need to be double word aligned.
1599 */
1600static int
1601xlog_write_calc_vec_length(
1602 struct xlog_ticket *ticket,
55b66332 1603 struct xfs_log_vec *log_vector)
b5203cd0 1604{
55b66332 1605 struct xfs_log_vec *lv;
b5203cd0
DC
1606 int headers = 0;
1607 int len = 0;
1608 int i;
1609
1610 /* acct for start rec of xact */
1611 if (ticket->t_flags & XLOG_TIC_INITED)
1612 headers++;
1613
55b66332
DC
1614 for (lv = log_vector; lv; lv = lv->lv_next) {
1615 headers += lv->lv_niovecs;
1616
1617 for (i = 0; i < lv->lv_niovecs; i++) {
1618 struct xfs_log_iovec *vecp = &lv->lv_iovecp[i];
b5203cd0 1619
55b66332
DC
1620 len += vecp->i_len;
1621 xlog_tic_add_region(ticket, vecp->i_len, vecp->i_type);
1622 }
b5203cd0
DC
1623 }
1624
1625 ticket->t_res_num_ophdrs += headers;
1626 len += headers * sizeof(struct xlog_op_header);
1627
1628 return len;
1629}
1630
1631/*
1632 * If first write for transaction, insert start record We can't be trying to
1633 * commit if we are inited. We can't have any "partial_copy" if we are inited.
1634 */
1635static int
1636xlog_write_start_rec(
e6b1f273 1637 struct xlog_op_header *ophdr,
b5203cd0
DC
1638 struct xlog_ticket *ticket)
1639{
b5203cd0
DC
1640 if (!(ticket->t_flags & XLOG_TIC_INITED))
1641 return 0;
1642
1643 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1644 ophdr->oh_clientid = ticket->t_clientid;
1645 ophdr->oh_len = 0;
1646 ophdr->oh_flags = XLOG_START_TRANS;
1647 ophdr->oh_res2 = 0;
1648
1649 ticket->t_flags &= ~XLOG_TIC_INITED;
1650
1651 return sizeof(struct xlog_op_header);
1652}
1653
1654static xlog_op_header_t *
1655xlog_write_setup_ophdr(
1656 struct log *log,
e6b1f273 1657 struct xlog_op_header *ophdr,
b5203cd0
DC
1658 struct xlog_ticket *ticket,
1659 uint flags)
1660{
b5203cd0
DC
1661 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1662 ophdr->oh_clientid = ticket->t_clientid;
1663 ophdr->oh_res2 = 0;
1664
1665 /* are we copying a commit or unmount record? */
1666 ophdr->oh_flags = flags;
1667
1668 /*
1669 * We've seen logs corrupted with bad transaction client ids. This
1670 * makes sure that XFS doesn't generate them on. Turn this into an EIO
1671 * and shut down the filesystem.
1672 */
1673 switch (ophdr->oh_clientid) {
1674 case XFS_TRANSACTION:
1675 case XFS_VOLUME:
1676 case XFS_LOG:
1677 break;
1678 default:
1679 xfs_fs_cmn_err(CE_WARN, log->l_mp,
1680 "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1681 ophdr->oh_clientid, ticket);
1682 return NULL;
1683 }
1684
1685 return ophdr;
1686}
1687
1688/*
1689 * Set up the parameters of the region copy into the log. This has
1690 * to handle region write split across multiple log buffers - this
1691 * state is kept external to this function so that this code can
1692 * can be written in an obvious, self documenting manner.
1693 */
1694static int
1695xlog_write_setup_copy(
1696 struct xlog_ticket *ticket,
1697 struct xlog_op_header *ophdr,
1698 int space_available,
1699 int space_required,
1700 int *copy_off,
1701 int *copy_len,
1702 int *last_was_partial_copy,
1703 int *bytes_consumed)
1704{
1705 int still_to_copy;
1706
1707 still_to_copy = space_required - *bytes_consumed;
1708 *copy_off = *bytes_consumed;
1709
1710 if (still_to_copy <= space_available) {
1711 /* write of region completes here */
1712 *copy_len = still_to_copy;
1713 ophdr->oh_len = cpu_to_be32(*copy_len);
1714 if (*last_was_partial_copy)
1715 ophdr->oh_flags |= (XLOG_END_TRANS|XLOG_WAS_CONT_TRANS);
1716 *last_was_partial_copy = 0;
1717 *bytes_consumed = 0;
1718 return 0;
1719 }
1720
1721 /* partial write of region, needs extra log op header reservation */
1722 *copy_len = space_available;
1723 ophdr->oh_len = cpu_to_be32(*copy_len);
1724 ophdr->oh_flags |= XLOG_CONTINUE_TRANS;
1725 if (*last_was_partial_copy)
1726 ophdr->oh_flags |= XLOG_WAS_CONT_TRANS;
1727 *bytes_consumed += *copy_len;
1728 (*last_was_partial_copy)++;
1729
1730 /* account for new log op header */
1731 ticket->t_curr_res -= sizeof(struct xlog_op_header);
1732 ticket->t_res_num_ophdrs++;
1733
1734 return sizeof(struct xlog_op_header);
1735}
1736
1737static int
1738xlog_write_copy_finish(
1739 struct log *log,
1740 struct xlog_in_core *iclog,
1741 uint flags,
1742 int *record_cnt,
1743 int *data_cnt,
1744 int *partial_copy,
1745 int *partial_copy_len,
1746 int log_offset,
1747 struct xlog_in_core **commit_iclog)
1748{
1749 if (*partial_copy) {
1750 /*
1751 * This iclog has already been marked WANT_SYNC by
1752 * xlog_state_get_iclog_space.
1753 */
1754 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1755 *record_cnt = 0;
1756 *data_cnt = 0;
1757 return xlog_state_release_iclog(log, iclog);
1758 }
1759
1760 *partial_copy = 0;
1761 *partial_copy_len = 0;
1762
1763 if (iclog->ic_size - log_offset <= sizeof(xlog_op_header_t)) {
1764 /* no more space in this iclog - push it. */
1765 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1766 *record_cnt = 0;
1767 *data_cnt = 0;
1768
1769 spin_lock(&log->l_icloglock);
1770 xlog_state_want_sync(log, iclog);
1771 spin_unlock(&log->l_icloglock);
1772
1773 if (!commit_iclog)
1774 return xlog_state_release_iclog(log, iclog);
1775 ASSERT(flags & XLOG_COMMIT_TRANS);
1776 *commit_iclog = iclog;
1777 }
1778
1779 return 0;
1780}
1781
1da177e4
LT
1782/*
1783 * Write some region out to in-core log
1784 *
1785 * This will be called when writing externally provided regions or when
1786 * writing out a commit record for a given transaction.
1787 *
1788 * General algorithm:
1789 * 1. Find total length of this write. This may include adding to the
1790 * lengths passed in.
1791 * 2. Check whether we violate the tickets reservation.
1792 * 3. While writing to this iclog
1793 * A. Reserve as much space in this iclog as can get
1794 * B. If this is first write, save away start lsn
1795 * C. While writing this region:
1796 * 1. If first write of transaction, write start record
1797 * 2. Write log operation header (header per region)
1798 * 3. Find out if we can fit entire region into this iclog
1799 * 4. Potentially, verify destination memcpy ptr
1800 * 5. Memcpy (partial) region
1801 * 6. If partial copy, release iclog; otherwise, continue
1802 * copying more regions into current iclog
1803 * 4. Mark want sync bit (in simulation mode)
1804 * 5. Release iclog for potential flush to on-disk log.
1805 *
1806 * ERRORS:
1807 * 1. Panic if reservation is overrun. This should never happen since
1808 * reservation amounts are generated internal to the filesystem.
1809 * NOTES:
1810 * 1. Tickets are single threaded data structures.
1811 * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1812 * syncing routine. When a single log_write region needs to span
1813 * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1814 * on all log operation writes which don't contain the end of the
1815 * region. The XLOG_END_TRANS bit is used for the in-core log
1816 * operation which contains the end of the continued log_write region.
1817 * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1818 * we don't really know exactly how much space will be used. As a result,
1819 * we don't update ic_offset until the end when we know exactly how many
1820 * bytes have been written out.
1821 */
71e330b5 1822int
35a8a72f 1823xlog_write(
55b66332
DC
1824 struct log *log,
1825 struct xfs_log_vec *log_vector,
35a8a72f
CH
1826 struct xlog_ticket *ticket,
1827 xfs_lsn_t *start_lsn,
1828 struct xlog_in_core **commit_iclog,
1829 uint flags)
1da177e4 1830{
99428ad0 1831 struct xlog_in_core *iclog = NULL;
55b66332
DC
1832 struct xfs_log_iovec *vecp;
1833 struct xfs_log_vec *lv;
99428ad0
CH
1834 int len;
1835 int index;
1836 int partial_copy = 0;
1837 int partial_copy_len = 0;
1838 int contwr = 0;
1839 int record_cnt = 0;
1840 int data_cnt = 0;
1841 int error;
1842
1843 *start_lsn = 0;
1844
55b66332 1845 len = xlog_write_calc_vec_length(ticket, log_vector);
71e330b5
DC
1846 if (log->l_cilp) {
1847 /*
1848 * Region headers and bytes are already accounted for.
1849 * We only need to take into account start records and
1850 * split regions in this function.
1851 */
1852 if (ticket->t_flags & XLOG_TIC_INITED)
1853 ticket->t_curr_res -= sizeof(xlog_op_header_t);
1854
1855 /*
1856 * Commit record headers need to be accounted for. These
1857 * come in as separate writes so are easy to detect.
1858 */
1859 if (flags & (XLOG_COMMIT_TRANS | XLOG_UNMOUNT_TRANS))
1860 ticket->t_curr_res -= sizeof(xlog_op_header_t);
1861 } else
1862 ticket->t_curr_res -= len;
1863
1864 if (ticket->t_curr_res < 0)
55b66332 1865 xlog_print_tic_res(log->l_mp, ticket);
1da177e4 1866
55b66332
DC
1867 index = 0;
1868 lv = log_vector;
1869 vecp = lv->lv_iovecp;
1870 while (lv && index < lv->lv_niovecs) {
e6b1f273 1871 void *ptr;
99428ad0 1872 int log_offset;
1da177e4 1873
99428ad0
CH
1874 error = xlog_state_get_iclog_space(log, len, &iclog, ticket,
1875 &contwr, &log_offset);
1876 if (error)
1877 return error;
1da177e4 1878
99428ad0 1879 ASSERT(log_offset <= iclog->ic_size - 1);
e6b1f273 1880 ptr = iclog->ic_datap + log_offset;
1da177e4 1881
99428ad0
CH
1882 /* start_lsn is the first lsn written to. That's all we need. */
1883 if (!*start_lsn)
1884 *start_lsn = be64_to_cpu(iclog->ic_header.h_lsn);
b5203cd0 1885
99428ad0
CH
1886 /*
1887 * This loop writes out as many regions as can fit in the amount
1888 * of space which was allocated by xlog_state_get_iclog_space().
1889 */
55b66332
DC
1890 while (lv && index < lv->lv_niovecs) {
1891 struct xfs_log_iovec *reg = &vecp[index];
99428ad0
CH
1892 struct xlog_op_header *ophdr;
1893 int start_rec_copy;
1894 int copy_len;
1895 int copy_off;
1896
55b66332 1897 ASSERT(reg->i_len % sizeof(__int32_t) == 0);
e6b1f273 1898 ASSERT((unsigned long)ptr % sizeof(__int32_t) == 0);
99428ad0
CH
1899
1900 start_rec_copy = xlog_write_start_rec(ptr, ticket);
1901 if (start_rec_copy) {
1902 record_cnt++;
e6b1f273 1903 xlog_write_adv_cnt(&ptr, &len, &log_offset,
99428ad0
CH
1904 start_rec_copy);
1905 }
b5203cd0 1906
99428ad0
CH
1907 ophdr = xlog_write_setup_ophdr(log, ptr, ticket, flags);
1908 if (!ophdr)
1909 return XFS_ERROR(EIO);
1910
e6b1f273 1911 xlog_write_adv_cnt(&ptr, &len, &log_offset,
99428ad0
CH
1912 sizeof(struct xlog_op_header));
1913
1914 len += xlog_write_setup_copy(ticket, ophdr,
1915 iclog->ic_size-log_offset,
55b66332 1916 reg->i_len,
99428ad0
CH
1917 &copy_off, &copy_len,
1918 &partial_copy,
1919 &partial_copy_len);
1920 xlog_verify_dest_ptr(log, ptr);
1921
1922 /* copy region */
1923 ASSERT(copy_len >= 0);
e6b1f273
CH
1924 memcpy(ptr, reg->i_addr + copy_off, copy_len);
1925 xlog_write_adv_cnt(&ptr, &len, &log_offset, copy_len);
99428ad0
CH
1926
1927 copy_len += start_rec_copy + sizeof(xlog_op_header_t);
1928 record_cnt++;
1929 data_cnt += contwr ? copy_len : 0;
1930
1931 error = xlog_write_copy_finish(log, iclog, flags,
1932 &record_cnt, &data_cnt,
1933 &partial_copy,
1934 &partial_copy_len,
1935 log_offset,
1936 commit_iclog);
1937 if (error)
1938 return error;
1939
1940 /*
1941 * if we had a partial copy, we need to get more iclog
1942 * space but we don't want to increment the region
1943 * index because there is still more is this region to
1944 * write.
1945 *
1946 * If we completed writing this region, and we flushed
1947 * the iclog (indicated by resetting of the record
1948 * count), then we also need to get more log space. If
1949 * this was the last record, though, we are done and
1950 * can just return.
1951 */
1952 if (partial_copy)
1953 break;
1954
55b66332
DC
1955 if (++index == lv->lv_niovecs) {
1956 lv = lv->lv_next;
1957 index = 0;
1958 if (lv)
1959 vecp = lv->lv_iovecp;
1960 }
99428ad0 1961 if (record_cnt == 0) {
55b66332 1962 if (!lv)
99428ad0
CH
1963 return 0;
1964 break;
1965 }
1966 }
1967 }
1968
1969 ASSERT(len == 0);
1970
1971 xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
1972 if (!commit_iclog)
1973 return xlog_state_release_iclog(log, iclog);
1da177e4 1974
1da177e4
LT
1975 ASSERT(flags & XLOG_COMMIT_TRANS);
1976 *commit_iclog = iclog;
1977 return 0;
99428ad0 1978}
1da177e4
LT
1979
1980
1981/*****************************************************************************
1982 *
1983 * State Machine functions
1984 *
1985 *****************************************************************************
1986 */
1987
1988/* Clean iclogs starting from the head. This ordering must be
1989 * maintained, so an iclog doesn't become ACTIVE beyond one that
1990 * is SYNCING. This is also required to maintain the notion that we use
12017faf 1991 * a ordered wait queue to hold off would be writers to the log when every
1da177e4
LT
1992 * iclog is trying to sync to disk.
1993 *
1994 * State Change: DIRTY -> ACTIVE
1995 */
ba0f32d4 1996STATIC void
1da177e4
LT
1997xlog_state_clean_log(xlog_t *log)
1998{
1999 xlog_in_core_t *iclog;
2000 int changed = 0;
2001
2002 iclog = log->l_iclog;
2003 do {
2004 if (iclog->ic_state == XLOG_STATE_DIRTY) {
2005 iclog->ic_state = XLOG_STATE_ACTIVE;
2006 iclog->ic_offset = 0;
114d23aa 2007 ASSERT(iclog->ic_callback == NULL);
1da177e4
LT
2008 /*
2009 * If the number of ops in this iclog indicate it just
2010 * contains the dummy transaction, we can
2011 * change state into IDLE (the second time around).
2012 * Otherwise we should change the state into
2013 * NEED a dummy.
2014 * We don't need to cover the dummy.
2015 */
2016 if (!changed &&
b53e675d
CH
2017 (be32_to_cpu(iclog->ic_header.h_num_logops) ==
2018 XLOG_COVER_OPS)) {
1da177e4
LT
2019 changed = 1;
2020 } else {
2021 /*
2022 * We have two dirty iclogs so start over
2023 * This could also be num of ops indicates
2024 * this is not the dummy going out.
2025 */
2026 changed = 2;
2027 }
2028 iclog->ic_header.h_num_logops = 0;
2029 memset(iclog->ic_header.h_cycle_data, 0,
2030 sizeof(iclog->ic_header.h_cycle_data));
2031 iclog->ic_header.h_lsn = 0;
2032 } else if (iclog->ic_state == XLOG_STATE_ACTIVE)
2033 /* do nothing */;
2034 else
2035 break; /* stop cleaning */
2036 iclog = iclog->ic_next;
2037 } while (iclog != log->l_iclog);
2038
2039 /* log is locked when we are called */
2040 /*
2041 * Change state for the dummy log recording.
2042 * We usually go to NEED. But we go to NEED2 if the changed indicates
2043 * we are done writing the dummy record.
2044 * If we are done with the second dummy recored (DONE2), then
2045 * we go to IDLE.
2046 */
2047 if (changed) {
2048 switch (log->l_covered_state) {
2049 case XLOG_STATE_COVER_IDLE:
2050 case XLOG_STATE_COVER_NEED:
2051 case XLOG_STATE_COVER_NEED2:
2052 log->l_covered_state = XLOG_STATE_COVER_NEED;
2053 break;
2054
2055 case XLOG_STATE_COVER_DONE:
2056 if (changed == 1)
2057 log->l_covered_state = XLOG_STATE_COVER_NEED2;
2058 else
2059 log->l_covered_state = XLOG_STATE_COVER_NEED;
2060 break;
2061
2062 case XLOG_STATE_COVER_DONE2:
2063 if (changed == 1)
2064 log->l_covered_state = XLOG_STATE_COVER_IDLE;
2065 else
2066 log->l_covered_state = XLOG_STATE_COVER_NEED;
2067 break;
2068
2069 default:
2070 ASSERT(0);
2071 }
2072 }
2073} /* xlog_state_clean_log */
2074
2075STATIC xfs_lsn_t
2076xlog_get_lowest_lsn(
2077 xlog_t *log)
2078{
2079 xlog_in_core_t *lsn_log;
2080 xfs_lsn_t lowest_lsn, lsn;
2081
2082 lsn_log = log->l_iclog;
2083 lowest_lsn = 0;
2084 do {
2085 if (!(lsn_log->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY))) {
b53e675d 2086 lsn = be64_to_cpu(lsn_log->ic_header.h_lsn);
1da177e4
LT
2087 if ((lsn && !lowest_lsn) ||
2088 (XFS_LSN_CMP(lsn, lowest_lsn) < 0)) {
2089 lowest_lsn = lsn;
2090 }
2091 }
2092 lsn_log = lsn_log->ic_next;
2093 } while (lsn_log != log->l_iclog);
014c2544 2094 return lowest_lsn;
1da177e4
LT
2095}
2096
2097
2098STATIC void
2099xlog_state_do_callback(
2100 xlog_t *log,
2101 int aborted,
2102 xlog_in_core_t *ciclog)
2103{
2104 xlog_in_core_t *iclog;
2105 xlog_in_core_t *first_iclog; /* used to know when we've
2106 * processed all iclogs once */
2107 xfs_log_callback_t *cb, *cb_next;
2108 int flushcnt = 0;
2109 xfs_lsn_t lowest_lsn;
2110 int ioerrors; /* counter: iclogs with errors */
2111 int loopdidcallbacks; /* flag: inner loop did callbacks*/
2112 int funcdidcallbacks; /* flag: function did callbacks */
2113 int repeats; /* for issuing console warnings if
2114 * looping too many times */
d748c623 2115 int wake = 0;
1da177e4 2116
b22cd72c 2117 spin_lock(&log->l_icloglock);
1da177e4
LT
2118 first_iclog = iclog = log->l_iclog;
2119 ioerrors = 0;
2120 funcdidcallbacks = 0;
2121 repeats = 0;
2122
2123 do {
2124 /*
2125 * Scan all iclogs starting with the one pointed to by the
2126 * log. Reset this starting point each time the log is
2127 * unlocked (during callbacks).
2128 *
2129 * Keep looping through iclogs until one full pass is made
2130 * without running any callbacks.
2131 */
2132 first_iclog = log->l_iclog;
2133 iclog = log->l_iclog;
2134 loopdidcallbacks = 0;
2135 repeats++;
2136
2137 do {
2138
2139 /* skip all iclogs in the ACTIVE & DIRTY states */
2140 if (iclog->ic_state &
2141 (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY)) {
2142 iclog = iclog->ic_next;
2143 continue;
2144 }
2145
2146 /*
2147 * Between marking a filesystem SHUTDOWN and stopping
2148 * the log, we do flush all iclogs to disk (if there
2149 * wasn't a log I/O error). So, we do want things to
2150 * go smoothly in case of just a SHUTDOWN w/o a
2151 * LOG_IO_ERROR.
2152 */
2153 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
2154 /*
2155 * Can only perform callbacks in order. Since
2156 * this iclog is not in the DONE_SYNC/
2157 * DO_CALLBACK state, we skip the rest and
2158 * just try to clean up. If we set our iclog
2159 * to DO_CALLBACK, we will not process it when
2160 * we retry since a previous iclog is in the
2161 * CALLBACK and the state cannot change since
b22cd72c 2162 * we are holding the l_icloglock.
1da177e4
LT
2163 */
2164 if (!(iclog->ic_state &
2165 (XLOG_STATE_DONE_SYNC |
2166 XLOG_STATE_DO_CALLBACK))) {
2167 if (ciclog && (ciclog->ic_state ==
2168 XLOG_STATE_DONE_SYNC)) {
2169 ciclog->ic_state = XLOG_STATE_DO_CALLBACK;
2170 }
2171 break;
2172 }
2173 /*
2174 * We now have an iclog that is in either the
2175 * DO_CALLBACK or DONE_SYNC states. The other
2176 * states (WANT_SYNC, SYNCING, or CALLBACK were
2177 * caught by the above if and are going to
2178 * clean (i.e. we aren't doing their callbacks)
2179 * see the above if.
2180 */
2181
2182 /*
2183 * We will do one more check here to see if we
2184 * have chased our tail around.
2185 */
2186
2187 lowest_lsn = xlog_get_lowest_lsn(log);
b53e675d
CH
2188 if (lowest_lsn &&
2189 XFS_LSN_CMP(lowest_lsn,
2190 be64_to_cpu(iclog->ic_header.h_lsn)) < 0) {
1da177e4
LT
2191 iclog = iclog->ic_next;
2192 continue; /* Leave this iclog for
2193 * another thread */
2194 }
2195
2196 iclog->ic_state = XLOG_STATE_CALLBACK;
2197
b22cd72c 2198 spin_unlock(&log->l_icloglock);
1da177e4
LT
2199
2200 /* l_last_sync_lsn field protected by
c8b5ea28 2201 * l_grant_lock. Don't worry about iclog's lsn.
1da177e4
LT
2202 * No one else can be here except us.
2203 */
c8b5ea28 2204 spin_lock(&log->l_grant_lock);
b53e675d
CH
2205 ASSERT(XFS_LSN_CMP(log->l_last_sync_lsn,
2206 be64_to_cpu(iclog->ic_header.h_lsn)) <= 0);
2207 log->l_last_sync_lsn =
2208 be64_to_cpu(iclog->ic_header.h_lsn);
c8b5ea28 2209 spin_unlock(&log->l_grant_lock);
1da177e4 2210
1da177e4 2211 } else {
114d23aa 2212 spin_unlock(&log->l_icloglock);
1da177e4
LT
2213 ioerrors++;
2214 }
1da177e4 2215
114d23aa
DC
2216 /*
2217 * Keep processing entries in the callback list until
2218 * we come around and it is empty. We need to
2219 * atomically see that the list is empty and change the
2220 * state to DIRTY so that we don't miss any more
2221 * callbacks being added.
2222 */
2223 spin_lock(&iclog->ic_callback_lock);
2224 cb = iclog->ic_callback;
4b80916b 2225 while (cb) {
1da177e4
LT
2226 iclog->ic_callback_tail = &(iclog->ic_callback);
2227 iclog->ic_callback = NULL;
114d23aa 2228 spin_unlock(&iclog->ic_callback_lock);
1da177e4
LT
2229
2230 /* perform callbacks in the order given */
4b80916b 2231 for (; cb; cb = cb_next) {
1da177e4
LT
2232 cb_next = cb->cb_next;
2233 cb->cb_func(cb->cb_arg, aborted);
2234 }
114d23aa 2235 spin_lock(&iclog->ic_callback_lock);
1da177e4
LT
2236 cb = iclog->ic_callback;
2237 }
2238
2239 loopdidcallbacks++;
2240 funcdidcallbacks++;
2241
114d23aa 2242 spin_lock(&log->l_icloglock);
4b80916b 2243 ASSERT(iclog->ic_callback == NULL);
114d23aa 2244 spin_unlock(&iclog->ic_callback_lock);
1da177e4
LT
2245 if (!(iclog->ic_state & XLOG_STATE_IOERROR))
2246 iclog->ic_state = XLOG_STATE_DIRTY;
2247
2248 /*
2249 * Transition from DIRTY to ACTIVE if applicable.
2250 * NOP if STATE_IOERROR.
2251 */
2252 xlog_state_clean_log(log);
2253
2254 /* wake up threads waiting in xfs_log_force() */
12017faf 2255 sv_broadcast(&iclog->ic_force_wait);
1da177e4
LT
2256
2257 iclog = iclog->ic_next;
2258 } while (first_iclog != iclog);
a3c6685e
NS
2259
2260 if (repeats > 5000) {
2261 flushcnt += repeats;
2262 repeats = 0;
1da177e4 2263 xfs_fs_cmn_err(CE_WARN, log->l_mp,
a3c6685e 2264 "%s: possible infinite loop (%d iterations)",
34a622b2 2265 __func__, flushcnt);
1da177e4
LT
2266 }
2267 } while (!ioerrors && loopdidcallbacks);
2268
2269 /*
2270 * make one last gasp attempt to see if iclogs are being left in
2271 * limbo..
2272 */
2273#ifdef DEBUG
2274 if (funcdidcallbacks) {
2275 first_iclog = iclog = log->l_iclog;
2276 do {
2277 ASSERT(iclog->ic_state != XLOG_STATE_DO_CALLBACK);
2278 /*
2279 * Terminate the loop if iclogs are found in states
2280 * which will cause other threads to clean up iclogs.
2281 *
2282 * SYNCING - i/o completion will go through logs
2283 * DONE_SYNC - interrupt thread should be waiting for
b22cd72c 2284 * l_icloglock
1da177e4
LT
2285 * IOERROR - give up hope all ye who enter here
2286 */
2287 if (iclog->ic_state == XLOG_STATE_WANT_SYNC ||
2288 iclog->ic_state == XLOG_STATE_SYNCING ||
2289 iclog->ic_state == XLOG_STATE_DONE_SYNC ||
2290 iclog->ic_state == XLOG_STATE_IOERROR )
2291 break;
2292 iclog = iclog->ic_next;
2293 } while (first_iclog != iclog);
2294 }
2295#endif
2296
d748c623
MW
2297 if (log->l_iclog->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_IOERROR))
2298 wake = 1;
b22cd72c 2299 spin_unlock(&log->l_icloglock);
d748c623
MW
2300
2301 if (wake)
2302 sv_broadcast(&log->l_flush_wait);
2303}
1da177e4
LT
2304
2305
2306/*
2307 * Finish transitioning this iclog to the dirty state.
2308 *
2309 * Make sure that we completely execute this routine only when this is
2310 * the last call to the iclog. There is a good chance that iclog flushes,
2311 * when we reach the end of the physical log, get turned into 2 separate
2312 * calls to bwrite. Hence, one iclog flush could generate two calls to this
2313 * routine. By using the reference count bwritecnt, we guarantee that only
2314 * the second completion goes through.
2315 *
2316 * Callbacks could take time, so they are done outside the scope of the
12017faf 2317 * global state machine log lock.
1da177e4 2318 */
a8272ce0 2319STATIC void
1da177e4
LT
2320xlog_state_done_syncing(
2321 xlog_in_core_t *iclog,
2322 int aborted)
2323{
2324 xlog_t *log = iclog->ic_log;
1da177e4 2325
b22cd72c 2326 spin_lock(&log->l_icloglock);
1da177e4
LT
2327
2328 ASSERT(iclog->ic_state == XLOG_STATE_SYNCING ||
2329 iclog->ic_state == XLOG_STATE_IOERROR);
155cc6b7 2330 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
1da177e4
LT
2331 ASSERT(iclog->ic_bwritecnt == 1 || iclog->ic_bwritecnt == 2);
2332
2333
2334 /*
2335 * If we got an error, either on the first buffer, or in the case of
2336 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2337 * and none should ever be attempted to be written to disk
2338 * again.
2339 */
2340 if (iclog->ic_state != XLOG_STATE_IOERROR) {
2341 if (--iclog->ic_bwritecnt == 1) {
b22cd72c 2342 spin_unlock(&log->l_icloglock);
1da177e4
LT
2343 return;
2344 }
2345 iclog->ic_state = XLOG_STATE_DONE_SYNC;
2346 }
2347
2348 /*
2349 * Someone could be sleeping prior to writing out the next
2350 * iclog buffer, we wake them all, one will get to do the
2351 * I/O, the others get to wait for the result.
2352 */
12017faf 2353 sv_broadcast(&iclog->ic_write_wait);
b22cd72c 2354 spin_unlock(&log->l_icloglock);
1da177e4
LT
2355 xlog_state_do_callback(log, aborted, iclog); /* also cleans log */
2356} /* xlog_state_done_syncing */
2357
2358
2359/*
2360 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
12017faf
DC
2361 * sleep. We wait on the flush queue on the head iclog as that should be
2362 * the first iclog to complete flushing. Hence if all iclogs are syncing,
2363 * we will wait here and all new writes will sleep until a sync completes.
1da177e4
LT
2364 *
2365 * The in-core logs are used in a circular fashion. They are not used
2366 * out-of-order even when an iclog past the head is free.
2367 *
2368 * return:
2369 * * log_offset where xlog_write() can start writing into the in-core
2370 * log's data space.
2371 * * in-core log pointer to which xlog_write() should write.
2372 * * boolean indicating this is a continued write to an in-core log.
2373 * If this is the last write, then the in-core log's offset field
2374 * needs to be incremented, depending on the amount of data which
2375 * is copied.
2376 */
a8272ce0 2377STATIC int
1da177e4
LT
2378xlog_state_get_iclog_space(xlog_t *log,
2379 int len,
2380 xlog_in_core_t **iclogp,
2381 xlog_ticket_t *ticket,
2382 int *continued_write,
2383 int *logoffsetp)
2384{
1da177e4
LT
2385 int log_offset;
2386 xlog_rec_header_t *head;
2387 xlog_in_core_t *iclog;
2388 int error;
2389
2390restart:
b22cd72c 2391 spin_lock(&log->l_icloglock);
1da177e4 2392 if (XLOG_FORCED_SHUTDOWN(log)) {
b22cd72c 2393 spin_unlock(&log->l_icloglock);
1da177e4
LT
2394 return XFS_ERROR(EIO);
2395 }
2396
2397 iclog = log->l_iclog;
d748c623 2398 if (iclog->ic_state != XLOG_STATE_ACTIVE) {
1da177e4 2399 XFS_STATS_INC(xs_log_noiclogs);
d748c623
MW
2400
2401 /* Wait for log writes to have flushed */
2402 sv_wait(&log->l_flush_wait, 0, &log->l_icloglock, 0);
1da177e4
LT
2403 goto restart;
2404 }
d748c623 2405
1da177e4
LT
2406 head = &iclog->ic_header;
2407
155cc6b7 2408 atomic_inc(&iclog->ic_refcnt); /* prevents sync */
1da177e4
LT
2409 log_offset = iclog->ic_offset;
2410
2411 /* On the 1st write to an iclog, figure out lsn. This works
2412 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2413 * committing to. If the offset is set, that's how many blocks
2414 * must be written.
2415 */
2416 if (log_offset == 0) {
2417 ticket->t_curr_res -= log->l_iclog_hsize;
0adba536 2418 xlog_tic_add_region(ticket,
7e9c6396
TS
2419 log->l_iclog_hsize,
2420 XLOG_REG_TYPE_LRHEADER);
b53e675d
CH
2421 head->h_cycle = cpu_to_be32(log->l_curr_cycle);
2422 head->h_lsn = cpu_to_be64(
03bea6fe 2423 xlog_assign_lsn(log->l_curr_cycle, log->l_curr_block));
1da177e4
LT
2424 ASSERT(log->l_curr_block >= 0);
2425 }
2426
2427 /* If there is enough room to write everything, then do it. Otherwise,
2428 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2429 * bit is on, so this will get flushed out. Don't update ic_offset
2430 * until you know exactly how many bytes get copied. Therefore, wait
2431 * until later to update ic_offset.
2432 *
2433 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2434 * can fit into remaining data section.
2435 */
2436 if (iclog->ic_size - iclog->ic_offset < 2*sizeof(xlog_op_header_t)) {
2437 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2438
49641f1a
DC
2439 /*
2440 * If I'm the only one writing to this iclog, sync it to disk.
2441 * We need to do an atomic compare and decrement here to avoid
2442 * racing with concurrent atomic_dec_and_lock() calls in
2443 * xlog_state_release_iclog() when there is more than one
2444 * reference to the iclog.
2445 */
2446 if (!atomic_add_unless(&iclog->ic_refcnt, -1, 1)) {
2447 /* we are the only one */
b22cd72c 2448 spin_unlock(&log->l_icloglock);
49641f1a
DC
2449 error = xlog_state_release_iclog(log, iclog);
2450 if (error)
014c2544 2451 return error;
1da177e4 2452 } else {
b22cd72c 2453 spin_unlock(&log->l_icloglock);
1da177e4
LT
2454 }
2455 goto restart;
2456 }
2457
2458 /* Do we have enough room to write the full amount in the remainder
2459 * of this iclog? Or must we continue a write on the next iclog and
2460 * mark this iclog as completely taken? In the case where we switch
2461 * iclogs (to mark it taken), this particular iclog will release/sync
2462 * to disk in xlog_write().
2463 */
2464 if (len <= iclog->ic_size - iclog->ic_offset) {
2465 *continued_write = 0;
2466 iclog->ic_offset += len;
2467 } else {
2468 *continued_write = 1;
2469 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2470 }
2471 *iclogp = iclog;
2472
2473 ASSERT(iclog->ic_offset <= iclog->ic_size);
b22cd72c 2474 spin_unlock(&log->l_icloglock);
1da177e4
LT
2475
2476 *logoffsetp = log_offset;
2477 return 0;
2478} /* xlog_state_get_iclog_space */
2479
2480/*
2481 * Atomically get the log space required for a log ticket.
2482 *
2483 * Once a ticket gets put onto the reserveq, it will only return after
2484 * the needed reservation is satisfied.
2485 */
2486STATIC int
2487xlog_grant_log_space(xlog_t *log,
2488 xlog_ticket_t *tic)
2489{
2490 int free_bytes;
2491 int need_bytes;
1da177e4
LT
2492
2493#ifdef DEBUG
2494 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2495 panic("grant Recovery problem");
2496#endif
2497
2498 /* Is there space or do we need to sleep? */
c8b5ea28 2499 spin_lock(&log->l_grant_lock);
0b1b213f
CH
2500
2501 trace_xfs_log_grant_enter(log, tic);
1da177e4
LT
2502
2503 /* something is already sleeping; insert new transaction at end */
10547941
DC
2504 if (!list_empty(&log->l_reserveq)) {
2505 list_add_tail(&tic->t_queue, &log->l_reserveq);
0b1b213f
CH
2506
2507 trace_xfs_log_grant_sleep1(log, tic);
2508
1da177e4
LT
2509 /*
2510 * Gotta check this before going to sleep, while we're
2511 * holding the grant lock.
2512 */
2513 if (XLOG_FORCED_SHUTDOWN(log))
2514 goto error_return;
2515
2516 XFS_STATS_INC(xs_sleep_logspace);
12017faf 2517 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
1da177e4
LT
2518 /*
2519 * If we got an error, and the filesystem is shutting down,
2520 * we'll catch it down below. So just continue...
2521 */
0b1b213f 2522 trace_xfs_log_grant_wake1(log, tic);
c8b5ea28 2523 spin_lock(&log->l_grant_lock);
1da177e4
LT
2524 }
2525 if (tic->t_flags & XFS_LOG_PERM_RESERV)
2526 need_bytes = tic->t_unit_res*tic->t_ocnt;
2527 else
2528 need_bytes = tic->t_unit_res;
2529
2530redo:
2531 if (XLOG_FORCED_SHUTDOWN(log))
2532 goto error_return;
2533
2534 free_bytes = xlog_space_left(log, log->l_grant_reserve_cycle,
2535 log->l_grant_reserve_bytes);
2536 if (free_bytes < need_bytes) {
10547941
DC
2537 if (list_empty(&tic->t_queue))
2538 list_add_tail(&tic->t_queue, &log->l_reserveq);
0b1b213f
CH
2539
2540 trace_xfs_log_grant_sleep2(log, tic);
2541
9d7fef74
DC
2542 spin_unlock(&log->l_grant_lock);
2543 xlog_grant_push_ail(log->l_mp, need_bytes);
2544 spin_lock(&log->l_grant_lock);
2545
1da177e4 2546 XFS_STATS_INC(xs_sleep_logspace);
12017faf 2547 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
1da177e4 2548
9d7fef74
DC
2549 spin_lock(&log->l_grant_lock);
2550 if (XLOG_FORCED_SHUTDOWN(log))
1da177e4 2551 goto error_return;
1da177e4 2552
0b1b213f
CH
2553 trace_xfs_log_grant_wake2(log, tic);
2554
1da177e4 2555 goto redo;
10547941
DC
2556 }
2557
2558 list_del_init(&tic->t_queue);
1da177e4
LT
2559
2560 /* we've got enough space */
663e496a
DC
2561 xlog_grant_add_space(log, &log->l_grant_reserve_cycle,
2562 &log->l_grant_reserve_bytes, need_bytes);
2563 xlog_grant_add_space(log, &log->l_grant_write_cycle,
2564 &log->l_grant_write_bytes, need_bytes);
0b1b213f 2565 trace_xfs_log_grant_exit(log, tic);
1da177e4 2566 xlog_verify_grant_head(log, 1);
3f336c6f 2567 xlog_verify_grant_tail(log);
c8b5ea28 2568 spin_unlock(&log->l_grant_lock);
1da177e4
LT
2569 return 0;
2570
2571 error_return:
10547941 2572 list_del_init(&tic->t_queue);
0b1b213f
CH
2573 trace_xfs_log_grant_error(log, tic);
2574
1da177e4
LT
2575 /*
2576 * If we are failing, make sure the ticket doesn't have any
2577 * current reservations. We don't want to add this back when
2578 * the ticket/transaction gets cancelled.
2579 */
2580 tic->t_curr_res = 0;
2581 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
c8b5ea28 2582 spin_unlock(&log->l_grant_lock);
1da177e4
LT
2583 return XFS_ERROR(EIO);
2584} /* xlog_grant_log_space */
2585
2586
2587/*
2588 * Replenish the byte reservation required by moving the grant write head.
2589 *
2590 *
2591 */
2592STATIC int
2593xlog_regrant_write_log_space(xlog_t *log,
2594 xlog_ticket_t *tic)
2595{
1da177e4 2596 int free_bytes, need_bytes;
1da177e4
LT
2597
2598 tic->t_curr_res = tic->t_unit_res;
0adba536 2599 xlog_tic_reset_res(tic);
1da177e4
LT
2600
2601 if (tic->t_cnt > 0)
014c2544 2602 return 0;
1da177e4
LT
2603
2604#ifdef DEBUG
2605 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2606 panic("regrant Recovery problem");
2607#endif
2608
c8b5ea28 2609 spin_lock(&log->l_grant_lock);
0b1b213f
CH
2610
2611 trace_xfs_log_regrant_write_enter(log, tic);
1da177e4
LT
2612
2613 if (XLOG_FORCED_SHUTDOWN(log))
2614 goto error_return;
2615
2616 /* If there are other waiters on the queue then give them a
2617 * chance at logspace before us. Wake up the first waiters,
2618 * if we do not wake up all the waiters then go to sleep waiting
2619 * for more free space, otherwise try to get some space for
2620 * this transaction.
2621 */
9d7fef74 2622 need_bytes = tic->t_unit_res;
10547941
DC
2623 if (!list_empty(&log->l_writeq)) {
2624 struct xlog_ticket *ntic;
1da177e4
LT
2625 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2626 log->l_grant_write_bytes);
10547941 2627 list_for_each_entry(ntic, &log->l_writeq, t_queue) {
1da177e4
LT
2628 ASSERT(ntic->t_flags & XLOG_TIC_PERM_RESERV);
2629
2630 if (free_bytes < ntic->t_unit_res)
2631 break;
2632 free_bytes -= ntic->t_unit_res;
12017faf 2633 sv_signal(&ntic->t_wait);
10547941 2634 }
1da177e4 2635
10547941
DC
2636 if (ntic != list_first_entry(&log->l_writeq,
2637 struct xlog_ticket, t_queue)) {
2638 if (list_empty(&tic->t_queue))
2639 list_add_tail(&tic->t_queue, &log->l_writeq);
1da177e4 2640
0b1b213f
CH
2641 trace_xfs_log_regrant_write_sleep1(log, tic);
2642
9d7fef74
DC
2643 spin_unlock(&log->l_grant_lock);
2644 xlog_grant_push_ail(log->l_mp, need_bytes);
2645 spin_lock(&log->l_grant_lock);
2646
1da177e4 2647 XFS_STATS_INC(xs_sleep_logspace);
12017faf 2648 sv_wait(&tic->t_wait, PINOD|PLTWAIT,
1da177e4
LT
2649 &log->l_grant_lock, s);
2650
2651 /* If we're shutting down, this tic is already
2652 * off the queue */
9d7fef74
DC
2653 spin_lock(&log->l_grant_lock);
2654 if (XLOG_FORCED_SHUTDOWN(log))
1da177e4 2655 goto error_return;
1da177e4 2656
0b1b213f 2657 trace_xfs_log_regrant_write_wake1(log, tic);
1da177e4
LT
2658 }
2659 }
2660
1da177e4
LT
2661redo:
2662 if (XLOG_FORCED_SHUTDOWN(log))
2663 goto error_return;
2664
2665 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2666 log->l_grant_write_bytes);
2667 if (free_bytes < need_bytes) {
10547941
DC
2668 if (list_empty(&tic->t_queue))
2669 list_add_tail(&tic->t_queue, &log->l_writeq);
9d7fef74
DC
2670 spin_unlock(&log->l_grant_lock);
2671 xlog_grant_push_ail(log->l_mp, need_bytes);
2672 spin_lock(&log->l_grant_lock);
2673
1da177e4 2674 XFS_STATS_INC(xs_sleep_logspace);
0b1b213f
CH
2675 trace_xfs_log_regrant_write_sleep2(log, tic);
2676
12017faf 2677 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
1da177e4
LT
2678
2679 /* If we're shutting down, this tic is already off the queue */
9d7fef74
DC
2680 spin_lock(&log->l_grant_lock);
2681 if (XLOG_FORCED_SHUTDOWN(log))
1da177e4 2682 goto error_return;
1da177e4 2683
0b1b213f 2684 trace_xfs_log_regrant_write_wake2(log, tic);
1da177e4 2685 goto redo;
10547941
DC
2686 }
2687
2688 list_del_init(&tic->t_queue);
1da177e4 2689
dd954c69 2690 /* we've got enough space */
663e496a
DC
2691 xlog_grant_add_space(log, &log->l_grant_write_cycle,
2692 &log->l_grant_write_bytes, need_bytes);
0b1b213f 2693 trace_xfs_log_regrant_write_exit(log, tic);
1da177e4 2694 xlog_verify_grant_head(log, 1);
3f336c6f 2695 xlog_verify_grant_tail(log);
c8b5ea28 2696 spin_unlock(&log->l_grant_lock);
014c2544 2697 return 0;
1da177e4
LT
2698
2699
2700 error_return:
10547941 2701 list_del_init(&tic->t_queue);
0b1b213f
CH
2702 trace_xfs_log_regrant_write_error(log, tic);
2703
1da177e4
LT
2704 /*
2705 * If we are failing, make sure the ticket doesn't have any
2706 * current reservations. We don't want to add this back when
2707 * the ticket/transaction gets cancelled.
2708 */
2709 tic->t_curr_res = 0;
2710 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
c8b5ea28 2711 spin_unlock(&log->l_grant_lock);
1da177e4
LT
2712 return XFS_ERROR(EIO);
2713} /* xlog_regrant_write_log_space */
2714
2715
2716/* The first cnt-1 times through here we don't need to
2717 * move the grant write head because the permanent
2718 * reservation has reserved cnt times the unit amount.
2719 * Release part of current permanent unit reservation and
2720 * reset current reservation to be one units worth. Also
2721 * move grant reservation head forward.
2722 */
2723STATIC void
2724xlog_regrant_reserve_log_space(xlog_t *log,
2725 xlog_ticket_t *ticket)
2726{
0b1b213f
CH
2727 trace_xfs_log_regrant_reserve_enter(log, ticket);
2728
1da177e4
LT
2729 if (ticket->t_cnt > 0)
2730 ticket->t_cnt--;
2731
c8b5ea28 2732 spin_lock(&log->l_grant_lock);
663e496a
DC
2733 xlog_grant_sub_space(log, &log->l_grant_reserve_cycle,
2734 &log->l_grant_reserve_bytes,
2735 ticket->t_curr_res);
2736 xlog_grant_sub_space(log, &log->l_grant_write_cycle,
2737 &log->l_grant_write_bytes,
2738 ticket->t_curr_res);
1da177e4 2739 ticket->t_curr_res = ticket->t_unit_res;
0adba536 2740 xlog_tic_reset_res(ticket);
0b1b213f
CH
2741
2742 trace_xfs_log_regrant_reserve_sub(log, ticket);
2743
1da177e4
LT
2744 xlog_verify_grant_head(log, 1);
2745
2746 /* just return if we still have some of the pre-reserved space */
2747 if (ticket->t_cnt > 0) {
c8b5ea28 2748 spin_unlock(&log->l_grant_lock);
1da177e4
LT
2749 return;
2750 }
2751
663e496a
DC
2752 xlog_grant_add_space(log, &log->l_grant_reserve_cycle,
2753 &log->l_grant_reserve_bytes,
2754 ticket->t_unit_res);
0b1b213f
CH
2755
2756 trace_xfs_log_regrant_reserve_exit(log, ticket);
2757
1da177e4 2758 xlog_verify_grant_head(log, 0);
c8b5ea28 2759 spin_unlock(&log->l_grant_lock);
1da177e4 2760 ticket->t_curr_res = ticket->t_unit_res;
0adba536 2761 xlog_tic_reset_res(ticket);
1da177e4
LT
2762} /* xlog_regrant_reserve_log_space */
2763
2764
2765/*
2766 * Give back the space left from a reservation.
2767 *
2768 * All the information we need to make a correct determination of space left
2769 * is present. For non-permanent reservations, things are quite easy. The
2770 * count should have been decremented to zero. We only need to deal with the
2771 * space remaining in the current reservation part of the ticket. If the
2772 * ticket contains a permanent reservation, there may be left over space which
2773 * needs to be released. A count of N means that N-1 refills of the current
2774 * reservation can be done before we need to ask for more space. The first
2775 * one goes to fill up the first current reservation. Once we run out of
2776 * space, the count will stay at zero and the only space remaining will be
2777 * in the current reservation field.
2778 */
2779STATIC void
2780xlog_ungrant_log_space(xlog_t *log,
2781 xlog_ticket_t *ticket)
2782{
663e496a
DC
2783 int bytes;
2784
1da177e4
LT
2785 if (ticket->t_cnt > 0)
2786 ticket->t_cnt--;
2787
c8b5ea28 2788 spin_lock(&log->l_grant_lock);
0b1b213f 2789 trace_xfs_log_ungrant_enter(log, ticket);
0b1b213f 2790 trace_xfs_log_ungrant_sub(log, ticket);
1da177e4 2791
663e496a
DC
2792 /*
2793 * If this is a permanent reservation ticket, we may be able to free
1da177e4
LT
2794 * up more space based on the remaining count.
2795 */
663e496a 2796 bytes = ticket->t_curr_res;
1da177e4
LT
2797 if (ticket->t_cnt > 0) {
2798 ASSERT(ticket->t_flags & XLOG_TIC_PERM_RESERV);
663e496a 2799 bytes += ticket->t_unit_res*ticket->t_cnt;
1da177e4
LT
2800 }
2801
663e496a
DC
2802 xlog_grant_sub_space(log, &log->l_grant_reserve_cycle,
2803 &log->l_grant_reserve_bytes, bytes);
2804 xlog_grant_sub_space(log, &log->l_grant_write_cycle,
2805 &log->l_grant_write_bytes, bytes);
2806
0b1b213f
CH
2807 trace_xfs_log_ungrant_exit(log, ticket);
2808
1da177e4 2809 xlog_verify_grant_head(log, 1);
c8b5ea28 2810 spin_unlock(&log->l_grant_lock);
1da177e4
LT
2811 xfs_log_move_tail(log->l_mp, 1);
2812} /* xlog_ungrant_log_space */
2813
2814
1da177e4
LT
2815/*
2816 * Flush iclog to disk if this is the last reference to the given iclog and
2817 * the WANT_SYNC bit is set.
2818 *
2819 * When this function is entered, the iclog is not necessarily in the
2820 * WANT_SYNC state. It may be sitting around waiting to get filled.
2821 *
2822 *
2823 */
a8272ce0 2824STATIC int
b589334c
DC
2825xlog_state_release_iclog(
2826 xlog_t *log,
2827 xlog_in_core_t *iclog)
1da177e4 2828{
1da177e4
LT
2829 int sync = 0; /* do we sync? */
2830
155cc6b7
DC
2831 if (iclog->ic_state & XLOG_STATE_IOERROR)
2832 return XFS_ERROR(EIO);
2833
2834 ASSERT(atomic_read(&iclog->ic_refcnt) > 0);
2835 if (!atomic_dec_and_lock(&iclog->ic_refcnt, &log->l_icloglock))
2836 return 0;
2837
1da177e4 2838 if (iclog->ic_state & XLOG_STATE_IOERROR) {
b22cd72c 2839 spin_unlock(&log->l_icloglock);
1da177e4
LT
2840 return XFS_ERROR(EIO);
2841 }
1da177e4
LT
2842 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE ||
2843 iclog->ic_state == XLOG_STATE_WANT_SYNC);
2844
155cc6b7 2845 if (iclog->ic_state == XLOG_STATE_WANT_SYNC) {
b589334c
DC
2846 /* update tail before writing to iclog */
2847 xlog_assign_tail_lsn(log->l_mp);
1da177e4
LT
2848 sync++;
2849 iclog->ic_state = XLOG_STATE_SYNCING;
b53e675d 2850 iclog->ic_header.h_tail_lsn = cpu_to_be64(log->l_tail_lsn);
1da177e4
LT
2851 xlog_verify_tail_lsn(log, iclog, log->l_tail_lsn);
2852 /* cycle incremented when incrementing curr_block */
2853 }
b22cd72c 2854 spin_unlock(&log->l_icloglock);
1da177e4
LT
2855
2856 /*
2857 * We let the log lock go, so it's possible that we hit a log I/O
c41564b5 2858 * error or some other SHUTDOWN condition that marks the iclog
1da177e4
LT
2859 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2860 * this iclog has consistent data, so we ignore IOERROR
2861 * flags after this point.
2862 */
b589334c 2863 if (sync)
1da177e4 2864 return xlog_sync(log, iclog);
014c2544 2865 return 0;
1da177e4
LT
2866} /* xlog_state_release_iclog */
2867
2868
2869/*
2870 * This routine will mark the current iclog in the ring as WANT_SYNC
2871 * and move the current iclog pointer to the next iclog in the ring.
2872 * When this routine is called from xlog_state_get_iclog_space(), the
2873 * exact size of the iclog has not yet been determined. All we know is
2874 * that every data block. We have run out of space in this log record.
2875 */
2876STATIC void
2877xlog_state_switch_iclogs(xlog_t *log,
2878 xlog_in_core_t *iclog,
2879 int eventual_size)
2880{
2881 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
2882 if (!eventual_size)
2883 eventual_size = iclog->ic_offset;
2884 iclog->ic_state = XLOG_STATE_WANT_SYNC;
b53e675d 2885 iclog->ic_header.h_prev_block = cpu_to_be32(log->l_prev_block);
1da177e4
LT
2886 log->l_prev_block = log->l_curr_block;
2887 log->l_prev_cycle = log->l_curr_cycle;
2888
2889 /* roll log?: ic_offset changed later */
2890 log->l_curr_block += BTOBB(eventual_size)+BTOBB(log->l_iclog_hsize);
2891
2892 /* Round up to next log-sunit */
62118709 2893 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
1da177e4
LT
2894 log->l_mp->m_sb.sb_logsunit > 1) {
2895 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
2896 log->l_curr_block = roundup(log->l_curr_block, sunit_bb);
2897 }
2898
2899 if (log->l_curr_block >= log->l_logBBsize) {
2900 log->l_curr_cycle++;
2901 if (log->l_curr_cycle == XLOG_HEADER_MAGIC_NUM)
2902 log->l_curr_cycle++;
2903 log->l_curr_block -= log->l_logBBsize;
2904 ASSERT(log->l_curr_block >= 0);
2905 }
2906 ASSERT(iclog == log->l_iclog);
2907 log->l_iclog = iclog->ic_next;
2908} /* xlog_state_switch_iclogs */
2909
1da177e4
LT
2910/*
2911 * Write out all data in the in-core log as of this exact moment in time.
2912 *
2913 * Data may be written to the in-core log during this call. However,
2914 * we don't guarantee this data will be written out. A change from past
2915 * implementation means this routine will *not* write out zero length LRs.
2916 *
2917 * Basically, we try and perform an intelligent scan of the in-core logs.
2918 * If we determine there is no flushable data, we just return. There is no
2919 * flushable data if:
2920 *
2921 * 1. the current iclog is active and has no data; the previous iclog
2922 * is in the active or dirty state.
2923 * 2. the current iclog is drity, and the previous iclog is in the
2924 * active or dirty state.
2925 *
12017faf 2926 * We may sleep if:
1da177e4
LT
2927 *
2928 * 1. the current iclog is not in the active nor dirty state.
2929 * 2. the current iclog dirty, and the previous iclog is not in the
2930 * active nor dirty state.
2931 * 3. the current iclog is active, and there is another thread writing
2932 * to this particular iclog.
2933 * 4. a) the current iclog is active and has no other writers
2934 * b) when we return from flushing out this iclog, it is still
2935 * not in the active nor dirty state.
2936 */
a14a348b
CH
2937int
2938_xfs_log_force(
2939 struct xfs_mount *mp,
2940 uint flags,
2941 int *log_flushed)
1da177e4 2942{
a14a348b
CH
2943 struct log *log = mp->m_log;
2944 struct xlog_in_core *iclog;
2945 xfs_lsn_t lsn;
2946
2947 XFS_STATS_INC(xs_log_force);
1da177e4 2948
a44f13ed
DC
2949 if (log->l_cilp)
2950 xlog_cil_force(log);
71e330b5 2951
b22cd72c 2952 spin_lock(&log->l_icloglock);
1da177e4
LT
2953
2954 iclog = log->l_iclog;
2955 if (iclog->ic_state & XLOG_STATE_IOERROR) {
b22cd72c 2956 spin_unlock(&log->l_icloglock);
1da177e4
LT
2957 return XFS_ERROR(EIO);
2958 }
2959
2960 /* If the head iclog is not active nor dirty, we just attach
2961 * ourselves to the head and go to sleep.
2962 */
2963 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2964 iclog->ic_state == XLOG_STATE_DIRTY) {
2965 /*
2966 * If the head is dirty or (active and empty), then
2967 * we need to look at the previous iclog. If the previous
2968 * iclog is active or dirty we are done. There is nothing
2969 * to sync out. Otherwise, we attach ourselves to the
2970 * previous iclog and go to sleep.
2971 */
2972 if (iclog->ic_state == XLOG_STATE_DIRTY ||
155cc6b7
DC
2973 (atomic_read(&iclog->ic_refcnt) == 0
2974 && iclog->ic_offset == 0)) {
1da177e4
LT
2975 iclog = iclog->ic_prev;
2976 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2977 iclog->ic_state == XLOG_STATE_DIRTY)
2978 goto no_sleep;
2979 else
2980 goto maybe_sleep;
2981 } else {
155cc6b7 2982 if (atomic_read(&iclog->ic_refcnt) == 0) {
1da177e4
LT
2983 /* We are the only one with access to this
2984 * iclog. Flush it out now. There should
2985 * be a roundoff of zero to show that someone
2986 * has already taken care of the roundoff from
2987 * the previous sync.
2988 */
155cc6b7 2989 atomic_inc(&iclog->ic_refcnt);
b53e675d 2990 lsn = be64_to_cpu(iclog->ic_header.h_lsn);
1da177e4 2991 xlog_state_switch_iclogs(log, iclog, 0);
b22cd72c 2992 spin_unlock(&log->l_icloglock);
1da177e4
LT
2993
2994 if (xlog_state_release_iclog(log, iclog))
2995 return XFS_ERROR(EIO);
a14a348b
CH
2996
2997 if (log_flushed)
2998 *log_flushed = 1;
b22cd72c 2999 spin_lock(&log->l_icloglock);
b53e675d 3000 if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn &&
1da177e4
LT
3001 iclog->ic_state != XLOG_STATE_DIRTY)
3002 goto maybe_sleep;
3003 else
3004 goto no_sleep;
3005 } else {
3006 /* Someone else is writing to this iclog.
3007 * Use its call to flush out the data. However,
3008 * the other thread may not force out this LR,
3009 * so we mark it WANT_SYNC.
3010 */
3011 xlog_state_switch_iclogs(log, iclog, 0);
3012 goto maybe_sleep;
3013 }
3014 }
3015 }
3016
3017 /* By the time we come around again, the iclog could've been filled
3018 * which would give it another lsn. If we have a new lsn, just
3019 * return because the relevant data has been flushed.
3020 */
3021maybe_sleep:
3022 if (flags & XFS_LOG_SYNC) {
3023 /*
3024 * We must check if we're shutting down here, before
b22cd72c 3025 * we wait, while we're holding the l_icloglock.
1da177e4
LT
3026 * Then we check again after waking up, in case our
3027 * sleep was disturbed by a bad news.
3028 */
3029 if (iclog->ic_state & XLOG_STATE_IOERROR) {
b22cd72c 3030 spin_unlock(&log->l_icloglock);
1da177e4
LT
3031 return XFS_ERROR(EIO);
3032 }
3033 XFS_STATS_INC(xs_log_force_sleep);
12017faf 3034 sv_wait(&iclog->ic_force_wait, PINOD, &log->l_icloglock, s);
1da177e4
LT
3035 /*
3036 * No need to grab the log lock here since we're
3037 * only deciding whether or not to return EIO
3038 * and the memory read should be atomic.
3039 */
3040 if (iclog->ic_state & XLOG_STATE_IOERROR)
3041 return XFS_ERROR(EIO);
a14a348b
CH
3042 if (log_flushed)
3043 *log_flushed = 1;
1da177e4
LT
3044 } else {
3045
3046no_sleep:
b22cd72c 3047 spin_unlock(&log->l_icloglock);
1da177e4
LT
3048 }
3049 return 0;
a14a348b 3050}
1da177e4 3051
a14a348b
CH
3052/*
3053 * Wrapper for _xfs_log_force(), to be used when caller doesn't care
3054 * about errors or whether the log was flushed or not. This is the normal
3055 * interface to use when trying to unpin items or move the log forward.
3056 */
3057void
3058xfs_log_force(
3059 xfs_mount_t *mp,
3060 uint flags)
3061{
3062 int error;
3063
3064 error = _xfs_log_force(mp, flags, NULL);
3065 if (error) {
3066 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3067 "error %d returned.", error);
3068 }
3069}
1da177e4
LT
3070
3071/*
a14a348b 3072 * Force the in-core log to disk for a specific LSN.
1da177e4
LT
3073 *
3074 * Find in-core log with lsn.
3075 * If it is in the DIRTY state, just return.
3076 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3077 * state and go to sleep or return.
3078 * If it is in any other state, go to sleep or return.
3079 *
a14a348b
CH
3080 * Synchronous forces are implemented with a signal variable. All callers
3081 * to force a given lsn to disk will wait on a the sv attached to the
3082 * specific in-core log. When given in-core log finally completes its
3083 * write to disk, that thread will wake up all threads waiting on the
3084 * sv.
1da177e4 3085 */
a14a348b
CH
3086int
3087_xfs_log_force_lsn(
3088 struct xfs_mount *mp,
3089 xfs_lsn_t lsn,
3090 uint flags,
3091 int *log_flushed)
1da177e4 3092{
a14a348b
CH
3093 struct log *log = mp->m_log;
3094 struct xlog_in_core *iclog;
3095 int already_slept = 0;
1da177e4 3096
a14a348b 3097 ASSERT(lsn != 0);
1da177e4 3098
a14a348b 3099 XFS_STATS_INC(xs_log_force);
1da177e4 3100
71e330b5 3101 if (log->l_cilp) {
a44f13ed 3102 lsn = xlog_cil_force_lsn(log, lsn);
71e330b5
DC
3103 if (lsn == NULLCOMMITLSN)
3104 return 0;
3105 }
3106
a14a348b
CH
3107try_again:
3108 spin_lock(&log->l_icloglock);
3109 iclog = log->l_iclog;
3110 if (iclog->ic_state & XLOG_STATE_IOERROR) {
b22cd72c 3111 spin_unlock(&log->l_icloglock);
a14a348b 3112 return XFS_ERROR(EIO);
1da177e4
LT
3113 }
3114
a14a348b
CH
3115 do {
3116 if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) {
3117 iclog = iclog->ic_next;
3118 continue;
3119 }
3120
3121 if (iclog->ic_state == XLOG_STATE_DIRTY) {
3122 spin_unlock(&log->l_icloglock);
3123 return 0;
3124 }
3125
3126 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3127 /*
3128 * We sleep here if we haven't already slept (e.g.
3129 * this is the first time we've looked at the correct
3130 * iclog buf) and the buffer before us is going to
3131 * be sync'ed. The reason for this is that if we
3132 * are doing sync transactions here, by waiting for
3133 * the previous I/O to complete, we can allow a few
3134 * more transactions into this iclog before we close
3135 * it down.
3136 *
3137 * Otherwise, we mark the buffer WANT_SYNC, and bump
3138 * up the refcnt so we can release the log (which
3139 * drops the ref count). The state switch keeps new
3140 * transaction commits from using this buffer. When
3141 * the current commits finish writing into the buffer,
3142 * the refcount will drop to zero and the buffer will
3143 * go out then.
3144 */
3145 if (!already_slept &&
3146 (iclog->ic_prev->ic_state &
3147 (XLOG_STATE_WANT_SYNC | XLOG_STATE_SYNCING))) {
3148 ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR));
3149
3150 XFS_STATS_INC(xs_log_force_sleep);
3151
3152 sv_wait(&iclog->ic_prev->ic_write_wait,
3153 PSWP, &log->l_icloglock, s);
3154 if (log_flushed)
3155 *log_flushed = 1;
3156 already_slept = 1;
3157 goto try_again;
3158 }
155cc6b7 3159 atomic_inc(&iclog->ic_refcnt);
1da177e4 3160 xlog_state_switch_iclogs(log, iclog, 0);
b22cd72c 3161 spin_unlock(&log->l_icloglock);
1da177e4
LT
3162 if (xlog_state_release_iclog(log, iclog))
3163 return XFS_ERROR(EIO);
a14a348b
CH
3164 if (log_flushed)
3165 *log_flushed = 1;
b22cd72c 3166 spin_lock(&log->l_icloglock);
1da177e4 3167 }
1da177e4 3168
a14a348b
CH
3169 if ((flags & XFS_LOG_SYNC) && /* sleep */
3170 !(iclog->ic_state &
3171 (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) {
3172 /*
3173 * Don't wait on completion if we know that we've
3174 * gotten a log write error.
3175 */
3176 if (iclog->ic_state & XLOG_STATE_IOERROR) {
3177 spin_unlock(&log->l_icloglock);
3178 return XFS_ERROR(EIO);
3179 }
3180 XFS_STATS_INC(xs_log_force_sleep);
3181 sv_wait(&iclog->ic_force_wait, PSWP, &log->l_icloglock, s);
3182 /*
3183 * No need to grab the log lock here since we're
3184 * only deciding whether or not to return EIO
3185 * and the memory read should be atomic.
3186 */
3187 if (iclog->ic_state & XLOG_STATE_IOERROR)
3188 return XFS_ERROR(EIO);
1da177e4 3189
a14a348b
CH
3190 if (log_flushed)
3191 *log_flushed = 1;
3192 } else { /* just return */
b22cd72c 3193 spin_unlock(&log->l_icloglock);
1da177e4 3194 }
1da177e4 3195
a14a348b
CH
3196 return 0;
3197 } while (iclog != log->l_iclog);
1da177e4 3198
a14a348b
CH
3199 spin_unlock(&log->l_icloglock);
3200 return 0;
3201}
3202
3203/*
3204 * Wrapper for _xfs_log_force_lsn(), to be used when caller doesn't care
3205 * about errors or whether the log was flushed or not. This is the normal
3206 * interface to use when trying to unpin items or move the log forward.
3207 */
3208void
3209xfs_log_force_lsn(
3210 xfs_mount_t *mp,
3211 xfs_lsn_t lsn,
3212 uint flags)
3213{
3214 int error;
1da177e4 3215
a14a348b
CH
3216 error = _xfs_log_force_lsn(mp, lsn, flags, NULL);
3217 if (error) {
3218 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3219 "error %d returned.", error);
3220 }
3221}
1da177e4
LT
3222
3223/*
3224 * Called when we want to mark the current iclog as being ready to sync to
3225 * disk.
3226 */
a8272ce0 3227STATIC void
1da177e4
LT
3228xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog)
3229{
a8914f3a 3230 assert_spin_locked(&log->l_icloglock);
1da177e4
LT
3231
3232 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3233 xlog_state_switch_iclogs(log, iclog, 0);
3234 } else {
3235 ASSERT(iclog->ic_state &
3236 (XLOG_STATE_WANT_SYNC|XLOG_STATE_IOERROR));
3237 }
39e2defe 3238}
1da177e4
LT
3239
3240
3241/*****************************************************************************
3242 *
3243 * TICKET functions
3244 *
3245 *****************************************************************************
3246 */
3247
3248/*
9da096fd 3249 * Free a used ticket when its refcount falls to zero.
1da177e4 3250 */
cc09c0dc
DC
3251void
3252xfs_log_ticket_put(
3253 xlog_ticket_t *ticket)
1da177e4 3254{
cc09c0dc
DC
3255 ASSERT(atomic_read(&ticket->t_ref) > 0);
3256 if (atomic_dec_and_test(&ticket->t_ref)) {
3257 sv_destroy(&ticket->t_wait);
3258 kmem_zone_free(xfs_log_ticket_zone, ticket);
3259 }
3260}
1da177e4 3261
cc09c0dc
DC
3262xlog_ticket_t *
3263xfs_log_ticket_get(
3264 xlog_ticket_t *ticket)
3265{
3266 ASSERT(atomic_read(&ticket->t_ref) > 0);
3267 atomic_inc(&ticket->t_ref);
3268 return ticket;
3269}
1da177e4 3270
955833cf
DC
3271xlog_tid_t
3272xfs_log_get_trans_ident(
3273 struct xfs_trans *tp)
3274{
3275 return tp->t_ticket->t_tid;
3276}
3277
1da177e4 3278/*
eb01c9cd 3279 * Allocate and initialise a new log ticket.
1da177e4 3280 */
71e330b5 3281xlog_ticket_t *
9b9fc2b7
DC
3282xlog_ticket_alloc(
3283 struct log *log,
3284 int unit_bytes,
3285 int cnt,
3286 char client,
3383ca57
DC
3287 uint xflags,
3288 int alloc_flags)
1da177e4 3289{
9b9fc2b7 3290 struct xlog_ticket *tic;
1da177e4 3291 uint num_headers;
9b9fc2b7 3292 int iclog_space;
1da177e4 3293
3383ca57 3294 tic = kmem_zone_zalloc(xfs_log_ticket_zone, alloc_flags);
eb01c9cd
DC
3295 if (!tic)
3296 return NULL;
1da177e4
LT
3297
3298 /*
3299 * Permanent reservations have up to 'cnt'-1 active log operations
3300 * in the log. A unit in this case is the amount of space for one
3301 * of these log operations. Normal reservations have a cnt of 1
3302 * and their unit amount is the total amount of space required.
3303 *
3304 * The following lines of code account for non-transaction data
32fb9b57
TS
3305 * which occupy space in the on-disk log.
3306 *
3307 * Normal form of a transaction is:
3308 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3309 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3310 *
3311 * We need to account for all the leadup data and trailer data
3312 * around the transaction data.
3313 * And then we need to account for the worst case in terms of using
3314 * more space.
3315 * The worst case will happen if:
3316 * - the placement of the transaction happens to be such that the
3317 * roundoff is at its maximum
3318 * - the transaction data is synced before the commit record is synced
3319 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3320 * Therefore the commit record is in its own Log Record.
3321 * This can happen as the commit record is called with its
3322 * own region to xlog_write().
3323 * This then means that in the worst case, roundoff can happen for
3324 * the commit-rec as well.
3325 * The commit-rec is smaller than padding in this scenario and so it is
3326 * not added separately.
1da177e4
LT
3327 */
3328
32fb9b57
TS
3329 /* for trans header */
3330 unit_bytes += sizeof(xlog_op_header_t);
3331 unit_bytes += sizeof(xfs_trans_header_t);
3332
1da177e4 3333 /* for start-rec */
32fb9b57
TS
3334 unit_bytes += sizeof(xlog_op_header_t);
3335
9b9fc2b7
DC
3336 /*
3337 * for LR headers - the space for data in an iclog is the size minus
3338 * the space used for the headers. If we use the iclog size, then we
3339 * undercalculate the number of headers required.
3340 *
3341 * Furthermore - the addition of op headers for split-recs might
3342 * increase the space required enough to require more log and op
3343 * headers, so take that into account too.
3344 *
3345 * IMPORTANT: This reservation makes the assumption that if this
3346 * transaction is the first in an iclog and hence has the LR headers
3347 * accounted to it, then the remaining space in the iclog is
3348 * exclusively for this transaction. i.e. if the transaction is larger
3349 * than the iclog, it will be the only thing in that iclog.
3350 * Fundamentally, this means we must pass the entire log vector to
3351 * xlog_write to guarantee this.
3352 */
3353 iclog_space = log->l_iclog_size - log->l_iclog_hsize;
3354 num_headers = howmany(unit_bytes, iclog_space);
3355
3356 /* for split-recs - ophdrs added when data split over LRs */
3357 unit_bytes += sizeof(xlog_op_header_t) * num_headers;
3358
3359 /* add extra header reservations if we overrun */
3360 while (!num_headers ||
3361 howmany(unit_bytes, iclog_space) > num_headers) {
3362 unit_bytes += sizeof(xlog_op_header_t);
3363 num_headers++;
3364 }
32fb9b57 3365 unit_bytes += log->l_iclog_hsize * num_headers;
1da177e4 3366
32fb9b57
TS
3367 /* for commit-rec LR header - note: padding will subsume the ophdr */
3368 unit_bytes += log->l_iclog_hsize;
3369
32fb9b57 3370 /* for roundoff padding for transaction data and one for commit record */
62118709 3371 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
32fb9b57 3372 log->l_mp->m_sb.sb_logsunit > 1) {
1da177e4 3373 /* log su roundoff */
32fb9b57 3374 unit_bytes += 2*log->l_mp->m_sb.sb_logsunit;
1da177e4
LT
3375 } else {
3376 /* BB roundoff */
32fb9b57 3377 unit_bytes += 2*BBSIZE;
1da177e4
LT
3378 }
3379
cc09c0dc 3380 atomic_set(&tic->t_ref, 1);
10547941 3381 INIT_LIST_HEAD(&tic->t_queue);
1da177e4
LT
3382 tic->t_unit_res = unit_bytes;
3383 tic->t_curr_res = unit_bytes;
3384 tic->t_cnt = cnt;
3385 tic->t_ocnt = cnt;
f9837107 3386 tic->t_tid = random32();
1da177e4
LT
3387 tic->t_clientid = client;
3388 tic->t_flags = XLOG_TIC_INITED;
7e9c6396 3389 tic->t_trans_type = 0;
1da177e4
LT
3390 if (xflags & XFS_LOG_PERM_RESERV)
3391 tic->t_flags |= XLOG_TIC_PERM_RESERV;
9b9fc2b7 3392 sv_init(&tic->t_wait, SV_DEFAULT, "logtick");
1da177e4 3393
0adba536 3394 xlog_tic_reset_res(tic);
7e9c6396 3395
1da177e4 3396 return tic;
cc09c0dc 3397}
1da177e4
LT
3398
3399
3400/******************************************************************************
3401 *
3402 * Log debug routines
3403 *
3404 ******************************************************************************
3405 */
cfcbbbd0 3406#if defined(DEBUG)
1da177e4
LT
3407/*
3408 * Make sure that the destination ptr is within the valid data region of
3409 * one of the iclogs. This uses backup pointers stored in a different
3410 * part of the log in case we trash the log structure.
3411 */
3412void
e6b1f273
CH
3413xlog_verify_dest_ptr(
3414 struct log *log,
3415 char *ptr)
1da177e4
LT
3416{
3417 int i;
3418 int good_ptr = 0;
3419
e6b1f273
CH
3420 for (i = 0; i < log->l_iclog_bufs; i++) {
3421 if (ptr >= log->l_iclog_bak[i] &&
3422 ptr <= log->l_iclog_bak[i] + log->l_iclog_size)
1da177e4
LT
3423 good_ptr++;
3424 }
e6b1f273
CH
3425
3426 if (!good_ptr)
1da177e4 3427 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
e6b1f273 3428}
1da177e4
LT
3429
3430STATIC void
3431xlog_verify_grant_head(xlog_t *log, int equals)
3432{
3433 if (log->l_grant_reserve_cycle == log->l_grant_write_cycle) {
3434 if (equals)
3435 ASSERT(log->l_grant_reserve_bytes >= log->l_grant_write_bytes);
3436 else
3437 ASSERT(log->l_grant_reserve_bytes > log->l_grant_write_bytes);
3438 } else {
3439 ASSERT(log->l_grant_reserve_cycle-1 == log->l_grant_write_cycle);
3440 ASSERT(log->l_grant_write_bytes >= log->l_grant_reserve_bytes);
3441 }
3442} /* xlog_verify_grant_head */
3443
3f336c6f
DC
3444STATIC void
3445xlog_verify_grant_tail(
3446 struct log *log)
3447{
3448 xfs_lsn_t tail_lsn = log->l_tail_lsn;
3449
3450 /*
3451 * Check to make sure the grant write head didn't just over lap the
3452 * tail. If the cycles are the same, we can't be overlapping.
3453 * Otherwise, make sure that the cycles differ by exactly one and
3454 * check the byte count.
3455 */
3456 if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
3457 ASSERT(log->l_grant_write_cycle - 1 == CYCLE_LSN(tail_lsn));
3458 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
3459 }
3460}
3461
1da177e4
LT
3462/* check if it will fit */
3463STATIC void
3464xlog_verify_tail_lsn(xlog_t *log,
3465 xlog_in_core_t *iclog,
3466 xfs_lsn_t tail_lsn)
3467{
3468 int blocks;
3469
3470 if (CYCLE_LSN(tail_lsn) == log->l_prev_cycle) {
3471 blocks =
3472 log->l_logBBsize - (log->l_prev_block - BLOCK_LSN(tail_lsn));
3473 if (blocks < BTOBB(iclog->ic_offset)+BTOBB(log->l_iclog_hsize))
3474 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3475 } else {
3476 ASSERT(CYCLE_LSN(tail_lsn)+1 == log->l_prev_cycle);
3477
3478 if (BLOCK_LSN(tail_lsn) == log->l_prev_block)
3479 xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3480
3481 blocks = BLOCK_LSN(tail_lsn) - log->l_prev_block;
3482 if (blocks < BTOBB(iclog->ic_offset) + 1)
3483 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3484 }
3485} /* xlog_verify_tail_lsn */
3486
3487/*
3488 * Perform a number of checks on the iclog before writing to disk.
3489 *
3490 * 1. Make sure the iclogs are still circular
3491 * 2. Make sure we have a good magic number
3492 * 3. Make sure we don't have magic numbers in the data
3493 * 4. Check fields of each log operation header for:
3494 * A. Valid client identifier
3495 * B. tid ptr value falls in valid ptr space (user space code)
3496 * C. Length in log record header is correct according to the
3497 * individual operation headers within record.
3498 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3499 * log, check the preceding blocks of the physical log to make sure all
3500 * the cycle numbers agree with the current cycle number.
3501 */
3502STATIC void
3503xlog_verify_iclog(xlog_t *log,
3504 xlog_in_core_t *iclog,
3505 int count,
3506 boolean_t syncing)
3507{
3508 xlog_op_header_t *ophead;
3509 xlog_in_core_t *icptr;
3510 xlog_in_core_2_t *xhdr;
3511 xfs_caddr_t ptr;
3512 xfs_caddr_t base_ptr;
3513 __psint_t field_offset;
3514 __uint8_t clientid;
3515 int len, i, j, k, op_len;
3516 int idx;
1da177e4
LT
3517
3518 /* check validity of iclog pointers */
b22cd72c 3519 spin_lock(&log->l_icloglock);
1da177e4
LT
3520 icptr = log->l_iclog;
3521 for (i=0; i < log->l_iclog_bufs; i++) {
4b80916b 3522 if (icptr == NULL)
1da177e4
LT
3523 xlog_panic("xlog_verify_iclog: invalid ptr");
3524 icptr = icptr->ic_next;
3525 }
3526 if (icptr != log->l_iclog)
3527 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
b22cd72c 3528 spin_unlock(&log->l_icloglock);
1da177e4
LT
3529
3530 /* check log magic numbers */
b53e675d 3531 if (be32_to_cpu(iclog->ic_header.h_magicno) != XLOG_HEADER_MAGIC_NUM)
1da177e4
LT
3532 xlog_panic("xlog_verify_iclog: invalid magic num");
3533
b53e675d
CH
3534 ptr = (xfs_caddr_t) &iclog->ic_header;
3535 for (ptr += BBSIZE; ptr < ((xfs_caddr_t)&iclog->ic_header) + count;
1da177e4 3536 ptr += BBSIZE) {
b53e675d 3537 if (be32_to_cpu(*(__be32 *)ptr) == XLOG_HEADER_MAGIC_NUM)
1da177e4
LT
3538 xlog_panic("xlog_verify_iclog: unexpected magic num");
3539 }
3540
3541 /* check fields */
b53e675d 3542 len = be32_to_cpu(iclog->ic_header.h_num_logops);
1da177e4
LT
3543 ptr = iclog->ic_datap;
3544 base_ptr = ptr;
3545 ophead = (xlog_op_header_t *)ptr;
b28708d6 3546 xhdr = iclog->ic_data;
1da177e4
LT
3547 for (i = 0; i < len; i++) {
3548 ophead = (xlog_op_header_t *)ptr;
3549
3550 /* clientid is only 1 byte */
3551 field_offset = (__psint_t)
3552 ((xfs_caddr_t)&(ophead->oh_clientid) - base_ptr);
3553 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3554 clientid = ophead->oh_clientid;
3555 } else {
3556 idx = BTOBBT((xfs_caddr_t)&(ophead->oh_clientid) - iclog->ic_datap);
3557 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3558 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3559 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
03bea6fe
CH
3560 clientid = xlog_get_client_id(
3561 xhdr[j].hic_xheader.xh_cycle_data[k]);
1da177e4 3562 } else {
03bea6fe
CH
3563 clientid = xlog_get_client_id(
3564 iclog->ic_header.h_cycle_data[idx]);
1da177e4
LT
3565 }
3566 }
3567 if (clientid != XFS_TRANSACTION && clientid != XFS_LOG)
da1650a5
CH
3568 cmn_err(CE_WARN, "xlog_verify_iclog: "
3569 "invalid clientid %d op 0x%p offset 0x%lx",
3570 clientid, ophead, (unsigned long)field_offset);
1da177e4
LT
3571
3572 /* check length */
3573 field_offset = (__psint_t)
3574 ((xfs_caddr_t)&(ophead->oh_len) - base_ptr);
3575 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
67fcb7bf 3576 op_len = be32_to_cpu(ophead->oh_len);
1da177e4
LT
3577 } else {
3578 idx = BTOBBT((__psint_t)&ophead->oh_len -
3579 (__psint_t)iclog->ic_datap);
3580 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3581 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3582 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
b53e675d 3583 op_len = be32_to_cpu(xhdr[j].hic_xheader.xh_cycle_data[k]);
1da177e4 3584 } else {
b53e675d 3585 op_len = be32_to_cpu(iclog->ic_header.h_cycle_data[idx]);
1da177e4
LT
3586 }
3587 }
3588 ptr += sizeof(xlog_op_header_t) + op_len;
3589 }
3590} /* xlog_verify_iclog */
cfcbbbd0 3591#endif
1da177e4
LT
3592
3593/*
b22cd72c 3594 * Mark all iclogs IOERROR. l_icloglock is held by the caller.
1da177e4
LT
3595 */
3596STATIC int
3597xlog_state_ioerror(
3598 xlog_t *log)
3599{
3600 xlog_in_core_t *iclog, *ic;
3601
3602 iclog = log->l_iclog;
3603 if (! (iclog->ic_state & XLOG_STATE_IOERROR)) {
3604 /*
3605 * Mark all the incore logs IOERROR.
3606 * From now on, no log flushes will result.
3607 */
3608 ic = iclog;
3609 do {
3610 ic->ic_state = XLOG_STATE_IOERROR;
3611 ic = ic->ic_next;
3612 } while (ic != iclog);
014c2544 3613 return 0;
1da177e4
LT
3614 }
3615 /*
3616 * Return non-zero, if state transition has already happened.
3617 */
014c2544 3618 return 1;
1da177e4
LT
3619}
3620
3621/*
3622 * This is called from xfs_force_shutdown, when we're forcibly
3623 * shutting down the filesystem, typically because of an IO error.
3624 * Our main objectives here are to make sure that:
3625 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3626 * parties to find out, 'atomically'.
3627 * b. those who're sleeping on log reservations, pinned objects and
3628 * other resources get woken up, and be told the bad news.
3629 * c. nothing new gets queued up after (a) and (b) are done.
3630 * d. if !logerror, flush the iclogs to disk, then seal them off
3631 * for business.
9da1ab18
DC
3632 *
3633 * Note: for delayed logging the !logerror case needs to flush the regions
3634 * held in memory out to the iclogs before flushing them to disk. This needs
3635 * to be done before the log is marked as shutdown, otherwise the flush to the
3636 * iclogs will fail.
1da177e4
LT
3637 */
3638int
3639xfs_log_force_umount(
3640 struct xfs_mount *mp,
3641 int logerror)
3642{
3643 xlog_ticket_t *tic;
3644 xlog_t *log;
3645 int retval;
1da177e4
LT
3646
3647 log = mp->m_log;
3648
3649 /*
3650 * If this happens during log recovery, don't worry about
3651 * locking; the log isn't open for business yet.
3652 */
3653 if (!log ||
3654 log->l_flags & XLOG_ACTIVE_RECOVERY) {
3655 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
bac8dca9
CH
3656 if (mp->m_sb_bp)
3657 XFS_BUF_DONE(mp->m_sb_bp);
014c2544 3658 return 0;
1da177e4
LT
3659 }
3660
3661 /*
3662 * Somebody could've already done the hard work for us.
3663 * No need to get locks for this.
3664 */
3665 if (logerror && log->l_iclog->ic_state & XLOG_STATE_IOERROR) {
3666 ASSERT(XLOG_FORCED_SHUTDOWN(log));
014c2544 3667 return 1;
1da177e4
LT
3668 }
3669 retval = 0;
9da1ab18
DC
3670
3671 /*
3672 * Flush the in memory commit item list before marking the log as
3673 * being shut down. We need to do it in this order to ensure all the
3674 * completed transactions are flushed to disk with the xfs_log_force()
3675 * call below.
3676 */
3677 if (!logerror && (mp->m_flags & XFS_MOUNT_DELAYLOG))
a44f13ed 3678 xlog_cil_force(log);
9da1ab18 3679
1da177e4
LT
3680 /*
3681 * We must hold both the GRANT lock and the LOG lock,
3682 * before we mark the filesystem SHUTDOWN and wake
3683 * everybody up to tell the bad news.
3684 */
b22cd72c 3685 spin_lock(&log->l_icloglock);
6b1d1a73 3686 spin_lock(&log->l_grant_lock);
1da177e4 3687 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
bac8dca9
CH
3688 if (mp->m_sb_bp)
3689 XFS_BUF_DONE(mp->m_sb_bp);
3690
1da177e4
LT
3691 /*
3692 * This flag is sort of redundant because of the mount flag, but
3693 * it's good to maintain the separation between the log and the rest
3694 * of XFS.
3695 */
3696 log->l_flags |= XLOG_IO_ERROR;
3697
3698 /*
3699 * If we hit a log error, we want to mark all the iclogs IOERROR
3700 * while we're still holding the loglock.
3701 */
3702 if (logerror)
3703 retval = xlog_state_ioerror(log);
b22cd72c 3704 spin_unlock(&log->l_icloglock);
1da177e4
LT
3705
3706 /*
10547941
DC
3707 * We don't want anybody waiting for log reservations after this. That
3708 * means we have to wake up everybody queued up on reserveq as well as
3709 * writeq. In addition, we make sure in xlog_{re}grant_log_space that
3710 * we don't enqueue anything once the SHUTDOWN flag is set, and this
3711 * action is protected by the GRANTLOCK.
1da177e4 3712 */
10547941
DC
3713 list_for_each_entry(tic, &log->l_reserveq, t_queue)
3714 sv_signal(&tic->t_wait);
1da177e4 3715
10547941
DC
3716 list_for_each_entry(tic, &log->l_writeq, t_queue)
3717 sv_signal(&tic->t_wait);
c8b5ea28 3718 spin_unlock(&log->l_grant_lock);
1da177e4 3719
a14a348b 3720 if (!(log->l_iclog->ic_state & XLOG_STATE_IOERROR)) {
1da177e4
LT
3721 ASSERT(!logerror);
3722 /*
3723 * Force the incore logs to disk before shutting the
3724 * log down completely.
3725 */
a14a348b
CH
3726 _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
3727
b22cd72c 3728 spin_lock(&log->l_icloglock);
1da177e4 3729 retval = xlog_state_ioerror(log);
b22cd72c 3730 spin_unlock(&log->l_icloglock);
1da177e4
LT
3731 }
3732 /*
3733 * Wake up everybody waiting on xfs_log_force.
3734 * Callback all log item committed functions as if the
3735 * log writes were completed.
3736 */
3737 xlog_state_do_callback(log, XFS_LI_ABORTED, NULL);
3738
3739#ifdef XFSERRORDEBUG
3740 {
3741 xlog_in_core_t *iclog;
3742
b22cd72c 3743 spin_lock(&log->l_icloglock);
1da177e4
LT
3744 iclog = log->l_iclog;
3745 do {
3746 ASSERT(iclog->ic_callback == 0);
3747 iclog = iclog->ic_next;
3748 } while (iclog != log->l_iclog);
b22cd72c 3749 spin_unlock(&log->l_icloglock);
1da177e4
LT
3750 }
3751#endif
3752 /* return non-zero if log IOERROR transition had already happened */
014c2544 3753 return retval;
1da177e4
LT
3754}
3755
ba0f32d4 3756STATIC int
1da177e4
LT
3757xlog_iclogs_empty(xlog_t *log)
3758{
3759 xlog_in_core_t *iclog;
3760
3761 iclog = log->l_iclog;
3762 do {
3763 /* endianness does not matter here, zero is zero in
3764 * any language.
3765 */
3766 if (iclog->ic_header.h_num_logops)
014c2544 3767 return 0;
1da177e4
LT
3768 iclog = iclog->ic_next;
3769 } while (iclog != log->l_iclog);
014c2544 3770 return 1;
1da177e4 3771}