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