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