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