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