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