blob: 91b00a5686cd5331c5ce1a9221f066c5b4cc4cd7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_sb.h"
26#include "xfs_ag.h"
Nathan Scotta844f452005-11-02 14:38:42 +110027#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#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"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_alloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_log_recover.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_trans_priv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
David Chinnereb01c9c2008-04-10 12:18:46 +100044kmem_zone_t *xfs_log_ticket_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
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);
Nathan Scottc41564b2006-03-29 08:55:14 +100061STATIC void xlog_dealloc_log(xlog_t *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062STATIC 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077STATIC 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);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +110082STATIC 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087STATIC 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103STATIC 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
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100110#if defined(DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111STATIC 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
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000124STATIC int xlog_iclogs_empty(xlog_t *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#if defined(XFS_LOG_TRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127void
128xlog_trace_loggrant(xlog_t *log, xlog_ticket_t *tic, xfs_caddr_t string)
129{
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000130 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return;
136 }
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000137 /* ticket counts are 1 byte each */
138 cnts = ((unsigned long)tic->t_ocnt) | ((unsigned long)tic->t_cnt) << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
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,
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000153 (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));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159void
160xlog_trace_iclog(xlog_in_core_t *iclog, uint state)
161{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (!iclog->ic_trace)
163 iclog->ic_trace = ktrace_alloc(256, KM_SLEEP);
164 ktrace_enter(iclog->ic_trace,
165 (void *)((unsigned long)state),
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100166 (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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172#else
173#define xlog_trace_loggrant(log,tic,string)
174#define xlog_trace_iclog(iclog,state)
175#endif /* XFS_LOG_TRACE */
176
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100177
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{
Michael Nishimotod729eae2008-05-19 16:34:20 +1000229 int tmp = log->l_logsize - log->l_grant_write_bytes;
230 if (tmp > bytes)
231 log->l_grant_write_bytes += bytes;
232 else {
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100233 log->l_grant_write_cycle++;
Michael Nishimotod729eae2008-05-19 16:34:20 +1000234 log->l_grant_write_bytes = bytes - tmp;
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100235 }
236}
237
238static void
239xlog_grant_add_space_reserve(struct log *log, int bytes)
240{
Michael Nishimotod729eae2008-05-19 16:34:20 +1000241 int tmp = log->l_logsize - log->l_grant_reserve_bytes;
242 if (tmp > bytes)
243 log->l_grant_reserve_bytes += bytes;
244 else {
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100245 log->l_grant_reserve_cycle++;
Michael Nishimotod729eae2008-05-19 16:34:20 +1000246 log->l_grant_reserve_bytes = bytes - tmp;
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100247 }
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
Christoph Hellwig0adba532007-08-30 17:21:46 +1000257static 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}
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 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 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000330 * Release ticket if not permanent reservation or a specific
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 * request has been made to release a permanent reservation.
332 */
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000333 xlog_trace_loggrant(log, ticket, "xfs_log_done: (non-permanent)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 xlog_ungrant_log_space(log, ticket);
David Chinnereb01c9c2008-04-10 12:18:46 +1000335 xlog_ticket_put(log, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 } else {
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000337 xlog_trace_loggrant(log, ticket, "xfs_log_done: (permanent)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 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 *
360 * Synchronous forces are implemented with a semaphore. All callers
361 * to force a given lsn to disk will wait on a semaphore attached to the
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
364 * semaphore.
365 */
366int
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100367_xfs_log_force(
368 xfs_mount_t *mp,
369 xfs_lsn_t lsn,
370 uint flags,
371 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100373 xlog_t *log = mp->m_log;
374 int dummy;
375
376 if (!log_flushed)
377 log_flushed = &dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 ASSERT(flags & XFS_LOG_FORCE);
380
381 XFS_STATS_INC(xs_log_force);
382
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100383 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);
David Chinnerb911ca02008-04-10 12:24:30 +1000389} /* _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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
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{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 xlog_in_core_t *iclog = (xlog_in_core_t *)iclog_hndl;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000423 int abortflg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
David Chinner114d23a2008-04-10 12:18:39 +1000425 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 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 }
David Chinner114d23a2008-04-10 12:18:39 +1000434 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 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)) {
Nathan Scott7d04a332006-06-09 14:58:38 +1000446 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +0100447 return EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
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,
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000469 uint flags,
470 uint t_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 xlog_t *log = mp->m_log;
473 xlog_ticket_t *internal_ticket;
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100474 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 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;
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000487 xlog_trace_loggrant(log, internal_ticket, "xfs_log_reserve: existing ticket (permanent trans)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 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);
David Chinnereb01c9c2008-04-10 12:18:46 +1000494 if (!internal_ticket)
495 return XFS_ERROR(ENOMEM);
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000496 internal_ticket->t_trans_type = t_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 *ticket = internal_ticket;
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000498 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");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 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
David Chinner249a8c12008-02-05 12:13:32 +1100523xfs_log_mount(
524 xfs_mount_t *mp,
525 xfs_buftarg_t *log_target,
526 xfs_daddr_t blk_offset,
527 int num_bblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
David Chinner249a8c12008-02-05 12:13:32 +1100529 int error;
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 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);
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000537 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
539
540 mp->m_log = xlog_alloc_log(mp, log_target, blk_offset, num_bblks);
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 /*
David Chinner249a8c12008-02-05 12:13:32 +1100543 * 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
552 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 * skip log recovery on a norecovery mount. pretend it all
554 * just worked.
555 */
556 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) {
David Chinner249a8c12008-02-05 12:13:32 +1100557 int readonly = (mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000560 mp->m_flags &= ~XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Eric Sandeen65be6052006-01-11 15:34:19 +1100562 error = xlog_recover(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000565 mp->m_flags |= XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (error) {
567 cmn_err(CE_WARN, "XFS: log mount/recovery failed: error %d", error);
David Chinner249a8c12008-02-05 12:13:32 +1100568 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
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;
David Chinner249a8c12008-02-05 12:13:32 +1100577error:
578 xfs_log_unmount_dealloc(mp);
579 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580} /* 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;
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000599 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
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);
Jesper Juhl014c2542006-01-15 02:37:08 +0100615 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 /*
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 */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000658 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return 0;
660
David Chinnerb911ca02008-04-10 12:24:30 +1000661 error = _xfs_log_force(mp, 0, XFS_LOG_FORCE|XFS_LOG_SYNC, NULL);
662 ASSERT(error || !(XLOG_FORCED_SHUTDOWN(log)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
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);
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000677 XLOG_VEC_SET_TYPE(&reg[0], XLOG_REG_TYPE_UNMOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Tim Shimmin955e47a2006-09-28 11:04:16 +1000679 error = xfs_log_reserve(mp, 600, 1, &tic,
680 XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 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
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000699 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100701 atomic_inc(&iclog->ic_refcnt);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000702 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 xlog_state_want_sync(log, iclog);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000704 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000706 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (!(iclog->ic_state == XLOG_STATE_ACTIVE ||
708 iclog->ic_state == XLOG_STATE_DIRTY)) {
709 if (!XLOG_FORCED_SHUTDOWN(log)) {
710 sv_wait(&iclog->ic_forcesema, PMEM,
711 &log->l_icloglock, s);
712 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000713 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000716 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
Tim Shimmin955e47a2006-09-28 11:04:16 +1000718 if (tic) {
719 xlog_trace_loggrant(log, tic, "unmount rec");
720 xlog_ungrant_log_space(log, tic);
David Chinnereb01c9c2008-04-10 12:18:46 +1000721 xlog_ticket_put(log, tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 } 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,
Nathan Scottc41564b2006-03-29 08:55:14 +1000730 * we need to wait for other log I/Os that may already
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 * 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 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000737 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100739 atomic_inc(&iclog->ic_refcnt);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000740 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 xlog_state_want_sync(log, iclog);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000743 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000745 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 if ( ! ( iclog->ic_state == XLOG_STATE_ACTIVE
748 || iclog->ic_state == XLOG_STATE_DIRTY
749 || iclog->ic_state == XLOG_STATE_IOERROR) ) {
750
751 sv_wait(&iclog->ic_forcesema, PMEM,
752 &log->l_icloglock, s);
753 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000754 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
756 }
757
David Chinner1bb7d6b2008-04-10 12:24:38 +1000758 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759} /* xfs_log_unmount_write */
760
761/*
762 * Deallocate log structures for unmount/relocation.
David Chinner249a8c12008-02-05 12:13:32 +1100763 *
764 * We need to stop the aild from running before we destroy
765 * and deallocate the log as the aild references the log.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 */
767void
768xfs_log_unmount_dealloc(xfs_mount_t *mp)
769{
David Chinner249a8c12008-02-05 12:13:32 +1100770 xfs_trans_ail_destroy(mp);
Nathan Scottc41564b2006-03-29 08:55:14 +1000771 xlog_dealloc_log(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (XLOG_FORCED_SHUTDOWN(log))
790 return XFS_ERROR(EIO);
791
792 if ((error = xlog_write(mp, reg, nentries, tic, start_lsn, NULL, 0))) {
Nathan Scott7d04a332006-06-09 14:58:38 +1000793 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
Jesper Juhl014c2542006-01-15 02:37:08 +0100795 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796} /* 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (XLOG_FORCED_SHUTDOWN(log))
808 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 if (tail_lsn == 0) {
811 /* needed since sync_lsn is 64 bits */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000812 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 tail_lsn = log->l_last_sync_lsn;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000814 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
816
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000817 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
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;
841 sv_signal(&tic->t_sema);
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;
862 sv_signal(&tic->t_sema);
863 tic = tic->t_next;
864 } while (tic != log->l_reserve_headq);
865 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000866 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867} /* 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{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 int needed = 0, gen;
879 xlog_t *log = mp->m_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
David Chinner92821e22007-05-24 15:26:31 +1000881 if (!xfs_fs_writable(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 return 0;
883
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000884 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 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 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000897 spin_unlock(&log->l_icloglock);
Jesper Juhl014c2542006-01-15 02:37:08 +0100898 return needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 xlog_t *log = mp->m_log;
923
924 tail_lsn = xfs_trans_tail_ail(mp);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000925 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 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 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000931 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
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 */
David Chinnera8272ce2007-11-23 16:28:09 +1100951STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952xlog_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
1010 /*
David Chinner0bfefc42007-05-14 18:24:23 +10001011 * 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
1023 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 * 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);
Nathan Scott7d04a332006-06-09 14:58:38 +10001030 xfs_force_shutdown(l->l_mp, SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 /*
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 }
David Chinner3db296f2007-05-14 18:24:16 +10001040
1041 /* log I/O is always issued ASYNC */
1042 ASSERT(XFS_BUF_ISASYNC(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 xlog_state_done_syncing(iclog, aborted);
David Chinner3db296f2007-05-14 18:24:16 +10001044 /*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050} /* 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);
Jesper Juhl014c2542006-01-15 02:37:08 +01001079 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081
1082}
1083
1084/*
1085 * Return size of each in-core log record buffer.
1086 *
Eric Sandeen1cb51252007-08-16 16:24:43 +10001087 * All machines get 8 x 32KB buffers by default, unless tuned otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 *
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
Eric Sandeen1cb51252007-08-16 16:24:43 +10001100 if (mp->m_logbufs <= 0)
1101 log->l_iclog_bufs = XLOG_MAX_ICLOGS;
1102 else
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001103 log->l_iclog_bufs = mp->m_logbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 /*
1106 * Buffer size passed in from mount system call.
1107 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001108 if (mp->m_logbsize > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 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
Eric Sandeen62118702008-03-06 13:44:28 +11001116 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 /* # 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 }
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001131 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 }
1133
Eric Sandeen1cb51252007-08-16 16:24:43 +10001134 /* 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
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;
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001149 if (mp->m_logbufs <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 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 }
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001166
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172} /* 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;
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10001205 log->l_tail_lsn = xlog_assign_lsn(1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 /* 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
Eric Sandeen62118702008-03-06 13:44:28 +11001212 if (xfs_sb_version_hassector(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 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 ||
Eric Sandeen62118702008-03-06 13:44:28 +11001218 xfs_sb_version_haslogv2(&mp->m_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 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
Eric Sandeen007c61c2007-10-11 17:43:56 +10001233 spin_lock_init(&log->l_icloglock);
1234 spin_lock_init(&log->l_grant_lock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10001235 sv_init(&log->l_flush_wait, 0, "flush_wait");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 iclog->ic_prev = prev_iclog;
1255 prev_iclog = iclog;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001256
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;
David Chinner4679b2d2008-04-10 12:18:54 +10001265#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 log->l_iclog_bak[i] = (xfs_caddr_t)&(iclog->ic_header);
David Chinner4679b2d2008-04-10 12:18:54 +10001267#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 head = &iclog->ic_header;
1269 memset(head, 0, sizeof(xlog_rec_header_t));
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001270 head->h_magicno = cpu_to_be32(XLOG_HEADER_MAGIC_NUM);
1271 head->h_version = cpu_to_be32(
Eric Sandeen62118702008-03-06 13:44:28 +11001272 xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? 2 : 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001273 head->h_size = cpu_to_be32(log->l_iclog_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 /* new fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001275 head->h_fmt = cpu_to_be32(XLOG_FMT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 memcpy(&head->h_fs_uuid, &mp->m_sb.sb_uuid, sizeof(uuid_t));
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 iclog->ic_size = XFS_BUF_SIZE(bp) - log->l_iclog_hsize;
1279 iclog->ic_state = XLOG_STATE_ACTIVE;
1280 iclog->ic_log = log;
David Chinner114d23a2008-04-10 12:18:39 +10001281 atomic_set(&iclog->ic_refcnt, 0);
1282 spin_lock_init(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 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);
1288 sv_init(&iclog->ic_forcesema, SV_DEFAULT, "iclog-force");
1289 sv_init(&iclog->ic_writesema, SV_DEFAULT, "iclog-write");
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;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001315 XLOG_VEC_SET_TYPE(&reg[0], XLOG_REG_TYPE_COMMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 ASSERT_ALWAYS(iclog);
1318 if ((error = xlog_write(mp, reg, 1, ticket, commitlsnp,
1319 iclog, XLOG_COMMIT_TRANS))) {
Nathan Scott7d04a332006-06-09 14:58:38 +10001320 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001322 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323} /* 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 */
David Chinnera8272ce2007-11-23 16:28:09 +11001333STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334xlog_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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 ASSERT(BTOBB(need_bytes) < log->l_logBBsize);
1347
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001348 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 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 }
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10001370 threshold_lsn = xlog_assign_lsn(threshold_cycle, threshold_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
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 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001378 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
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
David Chinnera8272ce2007-11-23 16:28:09 +11001416STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417xlog_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;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001422 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 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;
Eric Sandeen62118702008-03-06 13:44:28 +11001428 int v2 = xfs_sb_version_haslogv2(&log->l_mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 XFS_STATS_INC(xs_log_writes);
David Chinner155cc6b2008-03-06 13:44:14 +11001431 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
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 */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001452 spin_lock(&log->l_grant_lock);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11001453 xlog_grant_add_space(log, roundoff);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001454 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 /* put cycle number in every block */
1457 xlog_pack_data(log, iclog, roundoff);
1458
1459 /* real byte length */
1460 if (v2) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001461 iclog->ic_header.h_len =
1462 cpu_to_be32(iclog->ic_offset + roundoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001464 iclog->ic_header.h_len =
1465 cpu_to_be32(iclog->ic_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
1467
Nathan Scottf5faad72006-07-28 17:04:44 +10001468 bp = iclog->ic_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long)1);
1470 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001471 XFS_BUF_SET_ADDR(bp, BLOCK_LSN(be64_to_cpu(iclog->ic_header.h_lsn)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
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 }
David Chinner511105b2007-05-24 15:21:57 +10001483 XFS_BUF_SET_COUNT(bp, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 XFS_BUF_SET_FSPRIVATE(bp, iclog); /* save for later */
Nathan Scottf5faad72006-07-28 17:04:44 +10001485 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 XFS_BUF_BUSY(bp);
1487 XFS_BUF_ASYNC(bp);
1488 /*
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001489 * Do an ordered write for the log block.
Nathan Scottf5faad72006-07-28 17:04:44 +10001490 * Its unnecessary to flush the first split block in the log wrap case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 */
Nathan Scottf5faad72006-07-28 17:04:44 +10001492 if (!split && (log->l_mp->m_flags & XFS_MOUNT_BARRIER))
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001493 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
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));
Jesper Juhl014c2542006-01-15 02:37:08 +01001511 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 }
1513 if (split) {
Nathan Scottf5faad72006-07-28 17:04:44 +10001514 bp = iclog->ic_log->l_xbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 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);
Nathan Scottf5faad72006-07-28 17:04:44 +10001522 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 XFS_BUF_BUSY(bp);
1524 XFS_BUF_ASYNC(bp);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001525 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
1526 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 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 */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001534 for (i = 0; i < split; i += BBSIZE) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001535 be32_add_cpu((__be32 *)dptr, 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001536 if (be32_to_cpu(*(__be32 *)dptr) == XLOG_HEADER_MAGIC_NUM)
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001537 be32_add_cpu((__be32 *)dptr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 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
Nathan Scottc41564b2006-03-29 08:55:14 +10001544 /* account for internal log which doesn't start at block #0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 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));
Jesper Juhl014c2542006-01-15 02:37:08 +01001550 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 }
1552 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001553 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554} /* xlog_sync */
1555
1556
1557/*
Nathan Scottc41564b2006-03-29 08:55:14 +10001558 * Deallocate a log structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 */
David Chinnera8272ce2007-11-23 16:28:09 +11001560STATIC void
Nathan Scottc41564b2006-03-29 08:55:14 +10001561xlog_dealloc_log(xlog_t *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562{
1563 xlog_in_core_t *iclog, *next_iclog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 int i;
1565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 iclog = log->l_iclog;
1567 for (i=0; i<log->l_iclog_bufs; i++) {
1568 sv_destroy(&iclog->ic_forcesema);
1569 sv_destroy(&iclog->ic_writesema);
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;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001577 kmem_free(iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 iclog = next_iclog;
1579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 spinlock_destroy(&log->l_icloglock);
1581 spinlock_destroy(&log->l_grant_lock);
1582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 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;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001593 kmem_free(log);
Nathan Scottc41564b2006-03-29 08:55:14 +10001594} /* xlog_dealloc_log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
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{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001606 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001608 be32_add_cpu(&iclog->ic_header.h_num_logops, record_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 iclog->ic_offset += copy_bytes;
1610
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001611 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612} /* xlog_state_finish_copy */
1613
1614
1615
1616
1617/*
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001618 * print out info relating to regions written which consume
1619 * the reservation
1620 */
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001621STATIC 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 +
Tim Shimmin12598452006-01-11 21:02:47 +11001710 ticket->t_res_o_flow + ophdr_spc,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001711 ticket->t_res_num);
1712
1713 for (i = 0; i < ticket->t_res_num; i++) {
Tim Shimmin12598452006-01-11 21:02:47 +11001714 uint r_type = ticket->t_res_arr[i].r_type;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001715 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}
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001723
1724/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 * 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 */
David Chinnera8272ce2007-11-23 16:28:09 +11001764STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765xlog_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{
Nathan Scott5493a0f2006-06-28 11:17:28 +10001773 xlog_t *log = mp->m_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 xlog_ticket_t *ticket = (xlog_ticket_t *)tic;
Nathan Scott5493a0f2006-06-28 11:17:28 +10001775 xlog_in_core_t *iclog = NULL; /* ptr to current in-core log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 xlog_op_header_t *logop_head; /* ptr to log operation header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 __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;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001797 if (ticket->t_flags & XLOG_TIC_INITED) { /* acct for start rec of xact */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 len += sizeof(xlog_op_header_t);
Christoph Hellwig0adba532007-08-30 17:21:46 +10001799 ticket->t_res_num_ophdrs++;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 for (index = 0; index < nentries; index++) {
1803 len += sizeof(xlog_op_header_t); /* each region gets >= 1 */
Christoph Hellwig0adba532007-08-30 17:21:46 +10001804 ticket->t_res_num_ophdrs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 len += reg[index].i_len;
Christoph Hellwig0adba532007-08-30 17:21:46 +10001806 xlog_tic_add_region(ticket, reg[index].i_len, reg[index].i_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 }
1808 contwr = *start_lsn = 0;
1809
1810 if (ticket->t_curr_res < len) {
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001811 xlog_print_tic_res(mp, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812#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 */
Nathan Scott7d04a332006-06-09 14:58:38 +10001820 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821#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)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001828 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
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)
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001835 *start_lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
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;
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10001851 logop_head->oh_tid = cpu_to_be32(ticket->t_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 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;
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10001865 logop_head->oh_tid = cpu_to_be32(ticket->t_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 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 */
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10001900 copy_len = need_copy;
1901 logop_head->oh_len = cpu_to_be32(copy_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 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;
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10001907 logop_head->oh_len = cpu_to_be32(copy_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 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);
Christoph Hellwig0adba532007-08-30 17:21:46 +10001916 ticket->t_res_num_ophdrs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
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)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001934 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 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)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001948 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 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 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001965 return xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966} /* 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
1979 * a counting semaphore to hold off would be writers to the log when every
1980 * iclog is trying to sync to disk.
1981 *
1982 * State Change: DIRTY -> ACTIVE
1983 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001984STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985xlog_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;
David Chinner114d23a2008-04-10 12:18:39 +10001995 ASSERT(iclog->ic_callback == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 /*
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 &&
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002005 (be32_to_cpu(iclog->ic_header.h_num_logops) ==
2006 XLOG_COVER_OPS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 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))) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002074 lsn = be64_to_cpu(lsn_log->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 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);
Jesper Juhl014c2542006-01-15 02:37:08 +01002082 return lowest_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083}
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 */
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002103 int wake = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002105 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 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
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002150 * we are holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 */
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);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002176 if (lowest_lsn &&
2177 XFS_LSN_CMP(lowest_lsn,
2178 be64_to_cpu(iclog->ic_header.h_lsn)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 iclog = iclog->ic_next;
2180 continue; /* Leave this iclog for
2181 * another thread */
2182 }
2183
2184 iclog->ic_state = XLOG_STATE_CALLBACK;
2185
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002186 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
2188 /* l_last_sync_lsn field protected by
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002189 * l_grant_lock. Don't worry about iclog's lsn.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 * No one else can be here except us.
2191 */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002192 spin_lock(&log->l_grant_lock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002193 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);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002197 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 } else {
David Chinner114d23a2008-04-10 12:18:39 +10002200 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 ioerrors++;
2202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
David Chinner114d23a2008-04-10 12:18:39 +10002204 /*
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;
Christoph Hellwig4b809162007-08-16 15:37:36 +10002213 while (cb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 iclog->ic_callback_tail = &(iclog->ic_callback);
2215 iclog->ic_callback = NULL;
David Chinner114d23a2008-04-10 12:18:39 +10002216 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
2218 /* perform callbacks in the order given */
Christoph Hellwig4b809162007-08-16 15:37:36 +10002219 for (; cb; cb = cb_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 cb_next = cb->cb_next;
2221 cb->cb_func(cb->cb_arg, aborted);
2222 }
David Chinner114d23a2008-04-10 12:18:39 +10002223 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 cb = iclog->ic_callback;
2225 }
2226
2227 loopdidcallbacks++;
2228 funcdidcallbacks++;
2229
David Chinner114d23a2008-04-10 12:18:39 +10002230 spin_lock(&log->l_icloglock);
Christoph Hellwig4b809162007-08-16 15:37:36 +10002231 ASSERT(iclog->ic_callback == NULL);
David Chinner114d23a2008-04-10 12:18:39 +10002232 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 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() */
2243 sv_broadcast(&iclog->ic_forcesema);
2244
2245 iclog = iclog->ic_next;
2246 } while (first_iclog != iclog);
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002247
2248 if (repeats > 5000) {
2249 flushcnt += repeats;
2250 repeats = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 xfs_fs_cmn_err(CE_WARN, log->l_mp,
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002252 "%s: possible infinite loop (%d iterations)",
Harvey Harrison34a622b2008-04-10 12:19:21 +10002253 __func__, flushcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 }
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
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002272 * l_icloglock
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 * 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
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002285 if (log->l_iclog->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_IOERROR))
2286 wake = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002287 spin_unlock(&log->l_icloglock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002288
2289 if (wake)
2290 sv_broadcast(&log->l_flush_wait);
2291}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
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
2305 * global state machine log lock. Assume that the calls to cvsema won't
2306 * take a long time. At least we know it won't sleep.
2307 */
David Chinnera8272ce2007-11-23 16:28:09 +11002308STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309xlog_state_done_syncing(
2310 xlog_in_core_t *iclog,
2311 int aborted)
2312{
2313 xlog_t *log = iclog->ic_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002315 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
2317 ASSERT(iclog->ic_state == XLOG_STATE_SYNCING ||
2318 iclog->ic_state == XLOG_STATE_IOERROR);
David Chinner155cc6b2008-03-06 13:44:14 +11002319 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 ASSERT(iclog->ic_bwritecnt == 1 || iclog->ic_bwritecnt == 2);
2321
2322
2323 /*
2324 * If we got an error, either on the first buffer, or in the case of
2325 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2326 * and none should ever be attempted to be written to disk
2327 * again.
2328 */
2329 if (iclog->ic_state != XLOG_STATE_IOERROR) {
2330 if (--iclog->ic_bwritecnt == 1) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002331 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 return;
2333 }
2334 iclog->ic_state = XLOG_STATE_DONE_SYNC;
2335 }
2336
2337 /*
2338 * Someone could be sleeping prior to writing out the next
2339 * iclog buffer, we wake them all, one will get to do the
2340 * I/O, the others get to wait for the result.
2341 */
2342 sv_broadcast(&iclog->ic_writesema);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002343 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 xlog_state_do_callback(log, aborted, iclog); /* also cleans log */
2345} /* xlog_state_done_syncing */
2346
2347
2348/*
2349 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
2350 * sleep. The flush semaphore is set to the number of in-core buffers and
2351 * decremented around disk syncing. Therefore, if all buffers are syncing,
2352 * this semaphore will cause new writes to sleep until a sync completes.
2353 * Otherwise, this code just does p() followed by v(). This approximates
2354 * a sleep/wakeup except we can't race.
2355 *
2356 * The in-core logs are used in a circular fashion. They are not used
2357 * out-of-order even when an iclog past the head is free.
2358 *
2359 * return:
2360 * * log_offset where xlog_write() can start writing into the in-core
2361 * log's data space.
2362 * * in-core log pointer to which xlog_write() should write.
2363 * * boolean indicating this is a continued write to an in-core log.
2364 * If this is the last write, then the in-core log's offset field
2365 * needs to be incremented, depending on the amount of data which
2366 * is copied.
2367 */
David Chinnera8272ce2007-11-23 16:28:09 +11002368STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369xlog_state_get_iclog_space(xlog_t *log,
2370 int len,
2371 xlog_in_core_t **iclogp,
2372 xlog_ticket_t *ticket,
2373 int *continued_write,
2374 int *logoffsetp)
2375{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 int log_offset;
2377 xlog_rec_header_t *head;
2378 xlog_in_core_t *iclog;
2379 int error;
2380
2381restart:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002382 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002384 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 return XFS_ERROR(EIO);
2386 }
2387
2388 iclog = log->l_iclog;
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002389 if (iclog->ic_state != XLOG_STATE_ACTIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 xlog_trace_iclog(iclog, XLOG_TRACE_SLEEP_FLUSH);
2391 XFS_STATS_INC(xs_log_noiclogs);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002392
2393 /* Wait for log writes to have flushed */
2394 sv_wait(&log->l_flush_wait, 0, &log->l_icloglock, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 goto restart;
2396 }
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 head = &iclog->ic_header;
2399
David Chinner155cc6b2008-03-06 13:44:14 +11002400 atomic_inc(&iclog->ic_refcnt); /* prevents sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 log_offset = iclog->ic_offset;
2402
2403 /* On the 1st write to an iclog, figure out lsn. This works
2404 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2405 * committing to. If the offset is set, that's how many blocks
2406 * must be written.
2407 */
2408 if (log_offset == 0) {
2409 ticket->t_curr_res -= log->l_iclog_hsize;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002410 xlog_tic_add_region(ticket,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10002411 log->l_iclog_hsize,
2412 XLOG_REG_TYPE_LRHEADER);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002413 head->h_cycle = cpu_to_be32(log->l_curr_cycle);
2414 head->h_lsn = cpu_to_be64(
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10002415 xlog_assign_lsn(log->l_curr_cycle, log->l_curr_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 ASSERT(log->l_curr_block >= 0);
2417 }
2418
2419 /* If there is enough room to write everything, then do it. Otherwise,
2420 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2421 * bit is on, so this will get flushed out. Don't update ic_offset
2422 * until you know exactly how many bytes get copied. Therefore, wait
2423 * until later to update ic_offset.
2424 *
2425 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2426 * can fit into remaining data section.
2427 */
2428 if (iclog->ic_size - iclog->ic_offset < 2*sizeof(xlog_op_header_t)) {
2429 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2430
Dave Chinner49641f12008-07-11 17:43:55 +10002431 /*
2432 * If I'm the only one writing to this iclog, sync it to disk.
2433 * We need to do an atomic compare and decrement here to avoid
2434 * racing with concurrent atomic_dec_and_lock() calls in
2435 * xlog_state_release_iclog() when there is more than one
2436 * reference to the iclog.
2437 */
2438 if (!atomic_add_unless(&iclog->ic_refcnt, -1, 1)) {
2439 /* we are the only one */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002440 spin_unlock(&log->l_icloglock);
Dave Chinner49641f12008-07-11 17:43:55 +10002441 error = xlog_state_release_iclog(log, iclog);
2442 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002443 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002445 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 }
2447 goto restart;
2448 }
2449
2450 /* Do we have enough room to write the full amount in the remainder
2451 * of this iclog? Or must we continue a write on the next iclog and
2452 * mark this iclog as completely taken? In the case where we switch
2453 * iclogs (to mark it taken), this particular iclog will release/sync
2454 * to disk in xlog_write().
2455 */
2456 if (len <= iclog->ic_size - iclog->ic_offset) {
2457 *continued_write = 0;
2458 iclog->ic_offset += len;
2459 } else {
2460 *continued_write = 1;
2461 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2462 }
2463 *iclogp = iclog;
2464
2465 ASSERT(iclog->ic_offset <= iclog->ic_size);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002466 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
2468 *logoffsetp = log_offset;
2469 return 0;
2470} /* xlog_state_get_iclog_space */
2471
2472/*
2473 * Atomically get the log space required for a log ticket.
2474 *
2475 * Once a ticket gets put onto the reserveq, it will only return after
2476 * the needed reservation is satisfied.
2477 */
2478STATIC int
2479xlog_grant_log_space(xlog_t *log,
2480 xlog_ticket_t *tic)
2481{
2482 int free_bytes;
2483 int need_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484#ifdef DEBUG
2485 xfs_lsn_t tail_lsn;
2486#endif
2487
2488
2489#ifdef DEBUG
2490 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2491 panic("grant Recovery problem");
2492#endif
2493
2494 /* Is there space or do we need to sleep? */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002495 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 xlog_trace_loggrant(log, tic, "xlog_grant_log_space: enter");
2497
2498 /* something is already sleeping; insert new transaction at end */
2499 if (log->l_reserve_headq) {
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002500 xlog_ins_ticketq(&log->l_reserve_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 xlog_trace_loggrant(log, tic,
2502 "xlog_grant_log_space: sleep 1");
2503 /*
2504 * Gotta check this before going to sleep, while we're
2505 * holding the grant lock.
2506 */
2507 if (XLOG_FORCED_SHUTDOWN(log))
2508 goto error_return;
2509
2510 XFS_STATS_INC(xs_sleep_logspace);
2511 sv_wait(&tic->t_sema, PINOD|PLTWAIT, &log->l_grant_lock, s);
2512 /*
2513 * If we got an error, and the filesystem is shutting down,
2514 * we'll catch it down below. So just continue...
2515 */
2516 xlog_trace_loggrant(log, tic,
2517 "xlog_grant_log_space: wake 1");
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002518 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 }
2520 if (tic->t_flags & XFS_LOG_PERM_RESERV)
2521 need_bytes = tic->t_unit_res*tic->t_ocnt;
2522 else
2523 need_bytes = tic->t_unit_res;
2524
2525redo:
2526 if (XLOG_FORCED_SHUTDOWN(log))
2527 goto error_return;
2528
2529 free_bytes = xlog_space_left(log, log->l_grant_reserve_cycle,
2530 log->l_grant_reserve_bytes);
2531 if (free_bytes < need_bytes) {
2532 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002533 xlog_ins_ticketq(&log->l_reserve_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 xlog_trace_loggrant(log, tic,
2535 "xlog_grant_log_space: sleep 2");
2536 XFS_STATS_INC(xs_sleep_logspace);
2537 sv_wait(&tic->t_sema, PINOD|PLTWAIT, &log->l_grant_lock, s);
2538
2539 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002540 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 goto error_return;
2542 }
2543
2544 xlog_trace_loggrant(log, tic,
2545 "xlog_grant_log_space: wake 2");
2546 xlog_grant_push_ail(log->l_mp, need_bytes);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002547 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 goto redo;
2549 } else if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002550 xlog_del_ticketq(&log->l_reserve_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
2552 /* we've got enough space */
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002553 xlog_grant_add_space(log, need_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554#ifdef DEBUG
2555 tail_lsn = log->l_tail_lsn;
2556 /*
2557 * Check to make sure the grant write head didn't just over lap the
2558 * tail. If the cycles are the same, we can't be overlapping.
2559 * Otherwise, make sure that the cycles differ by exactly one and
2560 * check the byte count.
2561 */
2562 if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2563 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2564 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2565 }
2566#endif
2567 xlog_trace_loggrant(log, tic, "xlog_grant_log_space: exit");
2568 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002569 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 return 0;
2571
2572 error_return:
2573 if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002574 xlog_del_ticketq(&log->l_reserve_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 xlog_trace_loggrant(log, tic, "xlog_grant_log_space: err_ret");
2576 /*
2577 * If we are failing, make sure the ticket doesn't have any
2578 * current reservations. We don't want to add this back when
2579 * the ticket/transaction gets cancelled.
2580 */
2581 tic->t_curr_res = 0;
2582 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002583 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 return XFS_ERROR(EIO);
2585} /* xlog_grant_log_space */
2586
2587
2588/*
2589 * Replenish the byte reservation required by moving the grant write head.
2590 *
2591 *
2592 */
2593STATIC int
2594xlog_regrant_write_log_space(xlog_t *log,
2595 xlog_ticket_t *tic)
2596{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 int free_bytes, need_bytes;
2598 xlog_ticket_t *ntic;
2599#ifdef DEBUG
2600 xfs_lsn_t tail_lsn;
2601#endif
2602
2603 tic->t_curr_res = tic->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002604 xlog_tic_reset_res(tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
2606 if (tic->t_cnt > 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01002607 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608
2609#ifdef DEBUG
2610 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2611 panic("regrant Recovery problem");
2612#endif
2613
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002614 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 xlog_trace_loggrant(log, tic, "xlog_regrant_write_log_space: enter");
2616
2617 if (XLOG_FORCED_SHUTDOWN(log))
2618 goto error_return;
2619
2620 /* If there are other waiters on the queue then give them a
2621 * chance at logspace before us. Wake up the first waiters,
2622 * if we do not wake up all the waiters then go to sleep waiting
2623 * for more free space, otherwise try to get some space for
2624 * this transaction.
2625 */
2626
2627 if ((ntic = log->l_write_headq)) {
2628 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2629 log->l_grant_write_bytes);
2630 do {
2631 ASSERT(ntic->t_flags & XLOG_TIC_PERM_RESERV);
2632
2633 if (free_bytes < ntic->t_unit_res)
2634 break;
2635 free_bytes -= ntic->t_unit_res;
2636 sv_signal(&ntic->t_sema);
2637 ntic = ntic->t_next;
2638 } while (ntic != log->l_write_headq);
2639
2640 if (ntic != log->l_write_headq) {
2641 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002642 xlog_ins_ticketq(&log->l_write_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
2644 xlog_trace_loggrant(log, tic,
2645 "xlog_regrant_write_log_space: sleep 1");
2646 XFS_STATS_INC(xs_sleep_logspace);
2647 sv_wait(&tic->t_sema, PINOD|PLTWAIT,
2648 &log->l_grant_lock, s);
2649
2650 /* If we're shutting down, this tic is already
2651 * off the queue */
2652 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002653 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 goto error_return;
2655 }
2656
2657 xlog_trace_loggrant(log, tic,
2658 "xlog_regrant_write_log_space: wake 1");
2659 xlog_grant_push_ail(log->l_mp, tic->t_unit_res);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002660 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 }
2662 }
2663
2664 need_bytes = tic->t_unit_res;
2665
2666redo:
2667 if (XLOG_FORCED_SHUTDOWN(log))
2668 goto error_return;
2669
2670 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2671 log->l_grant_write_bytes);
2672 if (free_bytes < need_bytes) {
2673 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002674 xlog_ins_ticketq(&log->l_write_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 XFS_STATS_INC(xs_sleep_logspace);
2676 sv_wait(&tic->t_sema, PINOD|PLTWAIT, &log->l_grant_lock, s);
2677
2678 /* If we're shutting down, this tic is already off the queue */
2679 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002680 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 goto error_return;
2682 }
2683
2684 xlog_trace_loggrant(log, tic,
2685 "xlog_regrant_write_log_space: wake 2");
2686 xlog_grant_push_ail(log->l_mp, need_bytes);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002687 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 goto redo;
2689 } else if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002690 xlog_del_ticketq(&log->l_write_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002692 /* we've got enough space */
2693 xlog_grant_add_space_write(log, need_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694#ifdef DEBUG
2695 tail_lsn = log->l_tail_lsn;
2696 if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2697 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2698 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2699 }
2700#endif
2701
2702 xlog_trace_loggrant(log, tic, "xlog_regrant_write_log_space: exit");
2703 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002704 spin_unlock(&log->l_grant_lock);
Jesper Juhl014c2542006-01-15 02:37:08 +01002705 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
2707
2708 error_return:
2709 if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002710 xlog_del_ticketq(&log->l_reserve_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 xlog_trace_loggrant(log, tic, "xlog_regrant_write_log_space: err_ret");
2712 /*
2713 * If we are failing, make sure the ticket doesn't have any
2714 * current reservations. We don't want to add this back when
2715 * the ticket/transaction gets cancelled.
2716 */
2717 tic->t_curr_res = 0;
2718 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002719 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 return XFS_ERROR(EIO);
2721} /* xlog_regrant_write_log_space */
2722
2723
2724/* The first cnt-1 times through here we don't need to
2725 * move the grant write head because the permanent
2726 * reservation has reserved cnt times the unit amount.
2727 * Release part of current permanent unit reservation and
2728 * reset current reservation to be one units worth. Also
2729 * move grant reservation head forward.
2730 */
2731STATIC void
2732xlog_regrant_reserve_log_space(xlog_t *log,
2733 xlog_ticket_t *ticket)
2734{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 xlog_trace_loggrant(log, ticket,
2736 "xlog_regrant_reserve_log_space: enter");
2737 if (ticket->t_cnt > 0)
2738 ticket->t_cnt--;
2739
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002740 spin_lock(&log->l_grant_lock);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002741 xlog_grant_sub_space(log, ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002743 xlog_tic_reset_res(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 xlog_trace_loggrant(log, ticket,
2745 "xlog_regrant_reserve_log_space: sub current res");
2746 xlog_verify_grant_head(log, 1);
2747
2748 /* just return if we still have some of the pre-reserved space */
2749 if (ticket->t_cnt > 0) {
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002750 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 return;
2752 }
2753
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002754 xlog_grant_add_space_reserve(log, ticket->t_unit_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 xlog_trace_loggrant(log, ticket,
2756 "xlog_regrant_reserve_log_space: exit");
2757 xlog_verify_grant_head(log, 0);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002758 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002760 xlog_tic_reset_res(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761} /* xlog_regrant_reserve_log_space */
2762
2763
2764/*
2765 * Give back the space left from a reservation.
2766 *
2767 * All the information we need to make a correct determination of space left
2768 * is present. For non-permanent reservations, things are quite easy. The
2769 * count should have been decremented to zero. We only need to deal with the
2770 * space remaining in the current reservation part of the ticket. If the
2771 * ticket contains a permanent reservation, there may be left over space which
2772 * needs to be released. A count of N means that N-1 refills of the current
2773 * reservation can be done before we need to ask for more space. The first
2774 * one goes to fill up the first current reservation. Once we run out of
2775 * space, the count will stay at zero and the only space remaining will be
2776 * in the current reservation field.
2777 */
2778STATIC void
2779xlog_ungrant_log_space(xlog_t *log,
2780 xlog_ticket_t *ticket)
2781{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 if (ticket->t_cnt > 0)
2783 ticket->t_cnt--;
2784
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002785 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 xlog_trace_loggrant(log, ticket, "xlog_ungrant_log_space: enter");
2787
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002788 xlog_grant_sub_space(log, ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
2790 xlog_trace_loggrant(log, ticket, "xlog_ungrant_log_space: sub current");
2791
2792 /* If this is a permanent reservation ticket, we may be able to free
2793 * up more space based on the remaining count.
2794 */
2795 if (ticket->t_cnt > 0) {
2796 ASSERT(ticket->t_flags & XLOG_TIC_PERM_RESERV);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002797 xlog_grant_sub_space(log, ticket->t_unit_res*ticket->t_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 }
2799
2800 xlog_trace_loggrant(log, ticket, "xlog_ungrant_log_space: exit");
2801 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002802 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 xfs_log_move_tail(log->l_mp, 1);
2804} /* xlog_ungrant_log_space */
2805
2806
2807/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 * Flush iclog to disk if this is the last reference to the given iclog and
2809 * the WANT_SYNC bit is set.
2810 *
2811 * When this function is entered, the iclog is not necessarily in the
2812 * WANT_SYNC state. It may be sitting around waiting to get filled.
2813 *
2814 *
2815 */
David Chinnera8272ce2007-11-23 16:28:09 +11002816STATIC int
David Chinnerb5893342008-03-06 13:44:06 +11002817xlog_state_release_iclog(
2818 xlog_t *log,
2819 xlog_in_core_t *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 int sync = 0; /* do we sync? */
2822
David Chinner155cc6b2008-03-06 13:44:14 +11002823 if (iclog->ic_state & XLOG_STATE_IOERROR)
2824 return XFS_ERROR(EIO);
2825
2826 ASSERT(atomic_read(&iclog->ic_refcnt) > 0);
2827 if (!atomic_dec_and_lock(&iclog->ic_refcnt, &log->l_icloglock))
2828 return 0;
2829
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002831 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 return XFS_ERROR(EIO);
2833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE ||
2835 iclog->ic_state == XLOG_STATE_WANT_SYNC);
2836
David Chinner155cc6b2008-03-06 13:44:14 +11002837 if (iclog->ic_state == XLOG_STATE_WANT_SYNC) {
David Chinnerb5893342008-03-06 13:44:06 +11002838 /* update tail before writing to iclog */
2839 xlog_assign_tail_lsn(log->l_mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 sync++;
2841 iclog->ic_state = XLOG_STATE_SYNCING;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002842 iclog->ic_header.h_tail_lsn = cpu_to_be64(log->l_tail_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 xlog_verify_tail_lsn(log, iclog, log->l_tail_lsn);
2844 /* cycle incremented when incrementing curr_block */
2845 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002846 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
2848 /*
2849 * We let the log lock go, so it's possible that we hit a log I/O
Nathan Scottc41564b2006-03-29 08:55:14 +10002850 * error or some other SHUTDOWN condition that marks the iclog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2852 * this iclog has consistent data, so we ignore IOERROR
2853 * flags after this point.
2854 */
David Chinnerb5893342008-03-06 13:44:06 +11002855 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 return xlog_sync(log, iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002857 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858} /* xlog_state_release_iclog */
2859
2860
2861/*
2862 * This routine will mark the current iclog in the ring as WANT_SYNC
2863 * and move the current iclog pointer to the next iclog in the ring.
2864 * When this routine is called from xlog_state_get_iclog_space(), the
2865 * exact size of the iclog has not yet been determined. All we know is
2866 * that every data block. We have run out of space in this log record.
2867 */
2868STATIC void
2869xlog_state_switch_iclogs(xlog_t *log,
2870 xlog_in_core_t *iclog,
2871 int eventual_size)
2872{
2873 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
2874 if (!eventual_size)
2875 eventual_size = iclog->ic_offset;
2876 iclog->ic_state = XLOG_STATE_WANT_SYNC;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002877 iclog->ic_header.h_prev_block = cpu_to_be32(log->l_prev_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 log->l_prev_block = log->l_curr_block;
2879 log->l_prev_cycle = log->l_curr_cycle;
2880
2881 /* roll log?: ic_offset changed later */
2882 log->l_curr_block += BTOBB(eventual_size)+BTOBB(log->l_iclog_hsize);
2883
2884 /* Round up to next log-sunit */
Eric Sandeen62118702008-03-06 13:44:28 +11002885 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 log->l_mp->m_sb.sb_logsunit > 1) {
2887 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
2888 log->l_curr_block = roundup(log->l_curr_block, sunit_bb);
2889 }
2890
2891 if (log->l_curr_block >= log->l_logBBsize) {
2892 log->l_curr_cycle++;
2893 if (log->l_curr_cycle == XLOG_HEADER_MAGIC_NUM)
2894 log->l_curr_cycle++;
2895 log->l_curr_block -= log->l_logBBsize;
2896 ASSERT(log->l_curr_block >= 0);
2897 }
2898 ASSERT(iclog == log->l_iclog);
2899 log->l_iclog = iclog->ic_next;
2900} /* xlog_state_switch_iclogs */
2901
2902
2903/*
2904 * Write out all data in the in-core log as of this exact moment in time.
2905 *
2906 * Data may be written to the in-core log during this call. However,
2907 * we don't guarantee this data will be written out. A change from past
2908 * implementation means this routine will *not* write out zero length LRs.
2909 *
2910 * Basically, we try and perform an intelligent scan of the in-core logs.
2911 * If we determine there is no flushable data, we just return. There is no
2912 * flushable data if:
2913 *
2914 * 1. the current iclog is active and has no data; the previous iclog
2915 * is in the active or dirty state.
2916 * 2. the current iclog is drity, and the previous iclog is in the
2917 * active or dirty state.
2918 *
2919 * We may sleep (call psema) if:
2920 *
2921 * 1. the current iclog is not in the active nor dirty state.
2922 * 2. the current iclog dirty, and the previous iclog is not in the
2923 * active nor dirty state.
2924 * 3. the current iclog is active, and there is another thread writing
2925 * to this particular iclog.
2926 * 4. a) the current iclog is active and has no other writers
2927 * b) when we return from flushing out this iclog, it is still
2928 * not in the active nor dirty state.
2929 */
2930STATIC int
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11002931xlog_state_sync_all(xlog_t *log, uint flags, int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932{
2933 xlog_in_core_t *iclog;
2934 xfs_lsn_t lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002936 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
2938 iclog = log->l_iclog;
2939 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002940 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 return XFS_ERROR(EIO);
2942 }
2943
2944 /* If the head iclog is not active nor dirty, we just attach
2945 * ourselves to the head and go to sleep.
2946 */
2947 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2948 iclog->ic_state == XLOG_STATE_DIRTY) {
2949 /*
2950 * If the head is dirty or (active and empty), then
2951 * we need to look at the previous iclog. If the previous
2952 * iclog is active or dirty we are done. There is nothing
2953 * to sync out. Otherwise, we attach ourselves to the
2954 * previous iclog and go to sleep.
2955 */
2956 if (iclog->ic_state == XLOG_STATE_DIRTY ||
David Chinner155cc6b2008-03-06 13:44:14 +11002957 (atomic_read(&iclog->ic_refcnt) == 0
2958 && iclog->ic_offset == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 iclog = iclog->ic_prev;
2960 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2961 iclog->ic_state == XLOG_STATE_DIRTY)
2962 goto no_sleep;
2963 else
2964 goto maybe_sleep;
2965 } else {
David Chinner155cc6b2008-03-06 13:44:14 +11002966 if (atomic_read(&iclog->ic_refcnt) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 /* We are the only one with access to this
2968 * iclog. Flush it out now. There should
2969 * be a roundoff of zero to show that someone
2970 * has already taken care of the roundoff from
2971 * the previous sync.
2972 */
David Chinner155cc6b2008-03-06 13:44:14 +11002973 atomic_inc(&iclog->ic_refcnt);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002974 lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002976 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
2978 if (xlog_state_release_iclog(log, iclog))
2979 return XFS_ERROR(EIO);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11002980 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002981 spin_lock(&log->l_icloglock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002982 if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 iclog->ic_state != XLOG_STATE_DIRTY)
2984 goto maybe_sleep;
2985 else
2986 goto no_sleep;
2987 } else {
2988 /* Someone else is writing to this iclog.
2989 * Use its call to flush out the data. However,
2990 * the other thread may not force out this LR,
2991 * so we mark it WANT_SYNC.
2992 */
2993 xlog_state_switch_iclogs(log, iclog, 0);
2994 goto maybe_sleep;
2995 }
2996 }
2997 }
2998
2999 /* By the time we come around again, the iclog could've been filled
3000 * which would give it another lsn. If we have a new lsn, just
3001 * return because the relevant data has been flushed.
3002 */
3003maybe_sleep:
3004 if (flags & XFS_LOG_SYNC) {
3005 /*
3006 * We must check if we're shutting down here, before
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003007 * we wait, while we're holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 * Then we check again after waking up, in case our
3009 * sleep was disturbed by a bad news.
3010 */
3011 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003012 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 return XFS_ERROR(EIO);
3014 }
3015 XFS_STATS_INC(xs_log_force_sleep);
3016 sv_wait(&iclog->ic_forcesema, PINOD, &log->l_icloglock, s);
3017 /*
3018 * No need to grab the log lock here since we're
3019 * only deciding whether or not to return EIO
3020 * and the memory read should be atomic.
3021 */
3022 if (iclog->ic_state & XLOG_STATE_IOERROR)
3023 return XFS_ERROR(EIO);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11003024 *log_flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
3026 } else {
3027
3028no_sleep:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003029 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 }
3031 return 0;
3032} /* xlog_state_sync_all */
3033
3034
3035/*
3036 * Used by code which implements synchronous log forces.
3037 *
3038 * Find in-core log with lsn.
3039 * If it is in the DIRTY state, just return.
3040 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3041 * state and go to sleep or return.
3042 * If it is in any other state, go to sleep or return.
3043 *
3044 * If filesystem activity goes to zero, the iclog will get flushed only by
3045 * bdflush().
3046 */
David Chinnera8272ce2007-11-23 16:28:09 +11003047STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048xlog_state_sync(xlog_t *log,
3049 xfs_lsn_t lsn,
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11003050 uint flags,
3051 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052{
3053 xlog_in_core_t *iclog;
3054 int already_slept = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
3056try_again:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003057 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 iclog = log->l_iclog;
3059
3060 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003061 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 return XFS_ERROR(EIO);
3063 }
3064
3065 do {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003066 if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) {
3067 iclog = iclog->ic_next;
3068 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 }
3070
3071 if (iclog->ic_state == XLOG_STATE_DIRTY) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003072 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 return 0;
3074 }
3075
3076 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3077 /*
3078 * We sleep here if we haven't already slept (e.g.
3079 * this is the first time we've looked at the correct
3080 * iclog buf) and the buffer before us is going to
3081 * be sync'ed. The reason for this is that if we
3082 * are doing sync transactions here, by waiting for
3083 * the previous I/O to complete, we can allow a few
3084 * more transactions into this iclog before we close
3085 * it down.
3086 *
3087 * Otherwise, we mark the buffer WANT_SYNC, and bump
3088 * up the refcnt so we can release the log (which drops
3089 * the ref count). The state switch keeps new transaction
3090 * commits from using this buffer. When the current commits
3091 * finish writing into the buffer, the refcount will drop to
3092 * zero and the buffer will go out then.
3093 */
3094 if (!already_slept &&
3095 (iclog->ic_prev->ic_state & (XLOG_STATE_WANT_SYNC |
3096 XLOG_STATE_SYNCING))) {
3097 ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR));
3098 XFS_STATS_INC(xs_log_force_sleep);
3099 sv_wait(&iclog->ic_prev->ic_writesema, PSWP,
3100 &log->l_icloglock, s);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11003101 *log_flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 already_slept = 1;
3103 goto try_again;
3104 } else {
David Chinner155cc6b2008-03-06 13:44:14 +11003105 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003107 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 if (xlog_state_release_iclog(log, iclog))
3109 return XFS_ERROR(EIO);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11003110 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003111 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 }
3113 }
3114
3115 if ((flags & XFS_LOG_SYNC) && /* sleep */
3116 !(iclog->ic_state & (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) {
3117
3118 /*
3119 * Don't wait on the forcesema if we know that we've
3120 * gotten a log write error.
3121 */
3122 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003123 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 return XFS_ERROR(EIO);
3125 }
3126 XFS_STATS_INC(xs_log_force_sleep);
3127 sv_wait(&iclog->ic_forcesema, PSWP, &log->l_icloglock, s);
3128 /*
3129 * No need to grab the log lock here since we're
3130 * only deciding whether or not to return EIO
3131 * and the memory read should be atomic.
3132 */
3133 if (iclog->ic_state & XLOG_STATE_IOERROR)
3134 return XFS_ERROR(EIO);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11003135 *log_flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 } else { /* just return */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003137 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 }
3139 return 0;
3140
3141 } while (iclog != log->l_iclog);
3142
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003143 spin_unlock(&log->l_icloglock);
Jesper Juhl014c2542006-01-15 02:37:08 +01003144 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145} /* xlog_state_sync */
3146
3147
3148/*
3149 * Called when we want to mark the current iclog as being ready to sync to
3150 * disk.
3151 */
David Chinnera8272ce2007-11-23 16:28:09 +11003152STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog)
3154{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003155 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
3157 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3158 xlog_state_switch_iclogs(log, iclog, 0);
3159 } else {
3160 ASSERT(iclog->ic_state &
3161 (XLOG_STATE_WANT_SYNC|XLOG_STATE_IOERROR));
3162 }
3163
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003164 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165} /* xlog_state_want_sync */
3166
3167
3168
3169/*****************************************************************************
3170 *
3171 * TICKET functions
3172 *
3173 *****************************************************************************
3174 */
3175
3176/*
David Chinnereb01c9c2008-04-10 12:18:46 +10003177 * Free a used ticket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 */
3179STATIC void
3180xlog_ticket_put(xlog_t *log,
3181 xlog_ticket_t *ticket)
3182{
3183 sv_destroy(&ticket->t_sema);
David Chinnereb01c9c2008-04-10 12:18:46 +10003184 kmem_zone_free(xfs_log_ticket_zone, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185} /* xlog_ticket_put */
3186
3187
3188/*
David Chinnereb01c9c2008-04-10 12:18:46 +10003189 * Allocate and initialise a new log ticket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 */
David Chinnera8272ce2007-11-23 16:28:09 +11003191STATIC xlog_ticket_t *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192xlog_ticket_get(xlog_t *log,
3193 int unit_bytes,
3194 int cnt,
3195 char client,
3196 uint xflags)
3197{
3198 xlog_ticket_t *tic;
3199 uint num_headers;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
David Chinnereb01c9c2008-04-10 12:18:46 +10003201 tic = kmem_zone_zalloc(xfs_log_ticket_zone, KM_SLEEP|KM_MAYFAIL);
3202 if (!tic)
3203 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
3205 /*
3206 * Permanent reservations have up to 'cnt'-1 active log operations
3207 * in the log. A unit in this case is the amount of space for one
3208 * of these log operations. Normal reservations have a cnt of 1
3209 * and their unit amount is the total amount of space required.
3210 *
3211 * The following lines of code account for non-transaction data
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003212 * which occupy space in the on-disk log.
3213 *
3214 * Normal form of a transaction is:
3215 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3216 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3217 *
3218 * We need to account for all the leadup data and trailer data
3219 * around the transaction data.
3220 * And then we need to account for the worst case in terms of using
3221 * more space.
3222 * The worst case will happen if:
3223 * - the placement of the transaction happens to be such that the
3224 * roundoff is at its maximum
3225 * - the transaction data is synced before the commit record is synced
3226 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3227 * Therefore the commit record is in its own Log Record.
3228 * This can happen as the commit record is called with its
3229 * own region to xlog_write().
3230 * This then means that in the worst case, roundoff can happen for
3231 * the commit-rec as well.
3232 * The commit-rec is smaller than padding in this scenario and so it is
3233 * not added separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 */
3235
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003236 /* for trans header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 unit_bytes += sizeof(xlog_op_header_t);
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003238 unit_bytes += sizeof(xfs_trans_header_t);
3239
3240 /* for start-rec */
3241 unit_bytes += sizeof(xlog_op_header_t);
3242
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 /* for LR headers */
3244 num_headers = ((unit_bytes + log->l_iclog_size-1) >> log->l_iclog_size_log);
3245 unit_bytes += log->l_iclog_hsize * num_headers;
3246
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003247 /* for commit-rec LR header - note: padding will subsume the ophdr */
3248 unit_bytes += log->l_iclog_hsize;
3249
3250 /* for split-recs - ophdrs added when data split over LRs */
3251 unit_bytes += sizeof(xlog_op_header_t) * num_headers;
3252
3253 /* for roundoff padding for transaction data and one for commit record */
Eric Sandeen62118702008-03-06 13:44:28 +11003254 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003255 log->l_mp->m_sb.sb_logsunit > 1) {
3256 /* log su roundoff */
3257 unit_bytes += 2*log->l_mp->m_sb.sb_logsunit;
3258 } else {
3259 /* BB roundoff */
3260 unit_bytes += 2*BBSIZE;
3261 }
3262
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 tic->t_unit_res = unit_bytes;
3264 tic->t_curr_res = unit_bytes;
3265 tic->t_cnt = cnt;
3266 tic->t_ocnt = cnt;
3267 tic->t_tid = (xlog_tid_t)((__psint_t)tic & 0xffffffff);
3268 tic->t_clientid = client;
3269 tic->t_flags = XLOG_TIC_INITED;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003270 tic->t_trans_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 if (xflags & XFS_LOG_PERM_RESERV)
3272 tic->t_flags |= XLOG_TIC_PERM_RESERV;
3273 sv_init(&(tic->t_sema), SV_DEFAULT, "logtick");
3274
Christoph Hellwig0adba532007-08-30 17:21:46 +10003275 xlog_tic_reset_res(tic);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003276
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 return tic;
3278} /* xlog_ticket_get */
3279
3280
3281/******************************************************************************
3282 *
3283 * Log debug routines
3284 *
3285 ******************************************************************************
3286 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003287#if defined(DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288/*
3289 * Make sure that the destination ptr is within the valid data region of
3290 * one of the iclogs. This uses backup pointers stored in a different
3291 * part of the log in case we trash the log structure.
3292 */
3293void
3294xlog_verify_dest_ptr(xlog_t *log,
3295 __psint_t ptr)
3296{
3297 int i;
3298 int good_ptr = 0;
3299
3300 for (i=0; i < log->l_iclog_bufs; i++) {
3301 if (ptr >= (__psint_t)log->l_iclog_bak[i] &&
3302 ptr <= (__psint_t)log->l_iclog_bak[i]+log->l_iclog_size)
3303 good_ptr++;
3304 }
3305 if (! good_ptr)
3306 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
3307} /* xlog_verify_dest_ptr */
3308
3309STATIC void
3310xlog_verify_grant_head(xlog_t *log, int equals)
3311{
3312 if (log->l_grant_reserve_cycle == log->l_grant_write_cycle) {
3313 if (equals)
3314 ASSERT(log->l_grant_reserve_bytes >= log->l_grant_write_bytes);
3315 else
3316 ASSERT(log->l_grant_reserve_bytes > log->l_grant_write_bytes);
3317 } else {
3318 ASSERT(log->l_grant_reserve_cycle-1 == log->l_grant_write_cycle);
3319 ASSERT(log->l_grant_write_bytes >= log->l_grant_reserve_bytes);
3320 }
3321} /* xlog_verify_grant_head */
3322
3323/* check if it will fit */
3324STATIC void
3325xlog_verify_tail_lsn(xlog_t *log,
3326 xlog_in_core_t *iclog,
3327 xfs_lsn_t tail_lsn)
3328{
3329 int blocks;
3330
3331 if (CYCLE_LSN(tail_lsn) == log->l_prev_cycle) {
3332 blocks =
3333 log->l_logBBsize - (log->l_prev_block - BLOCK_LSN(tail_lsn));
3334 if (blocks < BTOBB(iclog->ic_offset)+BTOBB(log->l_iclog_hsize))
3335 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3336 } else {
3337 ASSERT(CYCLE_LSN(tail_lsn)+1 == log->l_prev_cycle);
3338
3339 if (BLOCK_LSN(tail_lsn) == log->l_prev_block)
3340 xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3341
3342 blocks = BLOCK_LSN(tail_lsn) - log->l_prev_block;
3343 if (blocks < BTOBB(iclog->ic_offset) + 1)
3344 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3345 }
3346} /* xlog_verify_tail_lsn */
3347
3348/*
3349 * Perform a number of checks on the iclog before writing to disk.
3350 *
3351 * 1. Make sure the iclogs are still circular
3352 * 2. Make sure we have a good magic number
3353 * 3. Make sure we don't have magic numbers in the data
3354 * 4. Check fields of each log operation header for:
3355 * A. Valid client identifier
3356 * B. tid ptr value falls in valid ptr space (user space code)
3357 * C. Length in log record header is correct according to the
3358 * individual operation headers within record.
3359 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3360 * log, check the preceding blocks of the physical log to make sure all
3361 * the cycle numbers agree with the current cycle number.
3362 */
3363STATIC void
3364xlog_verify_iclog(xlog_t *log,
3365 xlog_in_core_t *iclog,
3366 int count,
3367 boolean_t syncing)
3368{
3369 xlog_op_header_t *ophead;
3370 xlog_in_core_t *icptr;
3371 xlog_in_core_2_t *xhdr;
3372 xfs_caddr_t ptr;
3373 xfs_caddr_t base_ptr;
3374 __psint_t field_offset;
3375 __uint8_t clientid;
3376 int len, i, j, k, op_len;
3377 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378
3379 /* check validity of iclog pointers */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003380 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 icptr = log->l_iclog;
3382 for (i=0; i < log->l_iclog_bufs; i++) {
Christoph Hellwig4b809162007-08-16 15:37:36 +10003383 if (icptr == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 xlog_panic("xlog_verify_iclog: invalid ptr");
3385 icptr = icptr->ic_next;
3386 }
3387 if (icptr != log->l_iclog)
3388 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003389 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390
3391 /* check log magic numbers */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003392 if (be32_to_cpu(iclog->ic_header.h_magicno) != XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 xlog_panic("xlog_verify_iclog: invalid magic num");
3394
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003395 ptr = (xfs_caddr_t) &iclog->ic_header;
3396 for (ptr += BBSIZE; ptr < ((xfs_caddr_t)&iclog->ic_header) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 ptr += BBSIZE) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003398 if (be32_to_cpu(*(__be32 *)ptr) == XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 xlog_panic("xlog_verify_iclog: unexpected magic num");
3400 }
3401
3402 /* check fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003403 len = be32_to_cpu(iclog->ic_header.h_num_logops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 ptr = iclog->ic_datap;
3405 base_ptr = ptr;
3406 ophead = (xlog_op_header_t *)ptr;
3407 xhdr = (xlog_in_core_2_t *)&iclog->ic_header;
3408 for (i = 0; i < len; i++) {
3409 ophead = (xlog_op_header_t *)ptr;
3410
3411 /* clientid is only 1 byte */
3412 field_offset = (__psint_t)
3413 ((xfs_caddr_t)&(ophead->oh_clientid) - base_ptr);
3414 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3415 clientid = ophead->oh_clientid;
3416 } else {
3417 idx = BTOBBT((xfs_caddr_t)&(ophead->oh_clientid) - iclog->ic_datap);
3418 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3419 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3420 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003421 clientid = xlog_get_client_id(
3422 xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 } else {
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003424 clientid = xlog_get_client_id(
3425 iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 }
3427 }
3428 if (clientid != XFS_TRANSACTION && clientid != XFS_LOG)
Christoph Hellwigda1650a2005-11-02 10:21:35 +11003429 cmn_err(CE_WARN, "xlog_verify_iclog: "
3430 "invalid clientid %d op 0x%p offset 0x%lx",
3431 clientid, ophead, (unsigned long)field_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432
3433 /* check length */
3434 field_offset = (__psint_t)
3435 ((xfs_caddr_t)&(ophead->oh_len) - base_ptr);
3436 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10003437 op_len = be32_to_cpu(ophead->oh_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 } else {
3439 idx = BTOBBT((__psint_t)&ophead->oh_len -
3440 (__psint_t)iclog->ic_datap);
3441 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3442 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3443 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003444 op_len = be32_to_cpu(xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003446 op_len = be32_to_cpu(iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 }
3448 }
3449 ptr += sizeof(xlog_op_header_t) + op_len;
3450 }
3451} /* xlog_verify_iclog */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003452#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453
3454/*
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003455 * Mark all iclogs IOERROR. l_icloglock is held by the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 */
3457STATIC int
3458xlog_state_ioerror(
3459 xlog_t *log)
3460{
3461 xlog_in_core_t *iclog, *ic;
3462
3463 iclog = log->l_iclog;
3464 if (! (iclog->ic_state & XLOG_STATE_IOERROR)) {
3465 /*
3466 * Mark all the incore logs IOERROR.
3467 * From now on, no log flushes will result.
3468 */
3469 ic = iclog;
3470 do {
3471 ic->ic_state = XLOG_STATE_IOERROR;
3472 ic = ic->ic_next;
3473 } while (ic != iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003474 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 }
3476 /*
3477 * Return non-zero, if state transition has already happened.
3478 */
Jesper Juhl014c2542006-01-15 02:37:08 +01003479 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480}
3481
3482/*
3483 * This is called from xfs_force_shutdown, when we're forcibly
3484 * shutting down the filesystem, typically because of an IO error.
3485 * Our main objectives here are to make sure that:
3486 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3487 * parties to find out, 'atomically'.
3488 * b. those who're sleeping on log reservations, pinned objects and
3489 * other resources get woken up, and be told the bad news.
3490 * c. nothing new gets queued up after (a) and (b) are done.
3491 * d. if !logerror, flush the iclogs to disk, then seal them off
3492 * for business.
3493 */
3494int
3495xfs_log_force_umount(
3496 struct xfs_mount *mp,
3497 int logerror)
3498{
3499 xlog_ticket_t *tic;
3500 xlog_t *log;
3501 int retval;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11003502 int dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503
3504 log = mp->m_log;
3505
3506 /*
3507 * If this happens during log recovery, don't worry about
3508 * locking; the log isn't open for business yet.
3509 */
3510 if (!log ||
3511 log->l_flags & XLOG_ACTIVE_RECOVERY) {
3512 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
3513 XFS_BUF_DONE(mp->m_sb_bp);
Jesper Juhl014c2542006-01-15 02:37:08 +01003514 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 }
3516
3517 /*
3518 * Somebody could've already done the hard work for us.
3519 * No need to get locks for this.
3520 */
3521 if (logerror && log->l_iclog->ic_state & XLOG_STATE_IOERROR) {
3522 ASSERT(XLOG_FORCED_SHUTDOWN(log));
Jesper Juhl014c2542006-01-15 02:37:08 +01003523 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 }
3525 retval = 0;
3526 /*
3527 * We must hold both the GRANT lock and the LOG lock,
3528 * before we mark the filesystem SHUTDOWN and wake
3529 * everybody up to tell the bad news.
3530 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003531 spin_lock(&log->l_icloglock);
David Chinner6b1d1a72008-04-10 12:19:02 +10003532 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
3534 XFS_BUF_DONE(mp->m_sb_bp);
3535 /*
3536 * This flag is sort of redundant because of the mount flag, but
3537 * it's good to maintain the separation between the log and the rest
3538 * of XFS.
3539 */
3540 log->l_flags |= XLOG_IO_ERROR;
3541
3542 /*
3543 * If we hit a log error, we want to mark all the iclogs IOERROR
3544 * while we're still holding the loglock.
3545 */
3546 if (logerror)
3547 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003548 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549
3550 /*
3551 * We don't want anybody waiting for log reservations
3552 * after this. That means we have to wake up everybody
3553 * queued up on reserve_headq as well as write_headq.
3554 * In addition, we make sure in xlog_{re}grant_log_space
3555 * that we don't enqueue anything once the SHUTDOWN flag
3556 * is set, and this action is protected by the GRANTLOCK.
3557 */
3558 if ((tic = log->l_reserve_headq)) {
3559 do {
3560 sv_signal(&tic->t_sema);
3561 tic = tic->t_next;
3562 } while (tic != log->l_reserve_headq);
3563 }
3564
3565 if ((tic = log->l_write_headq)) {
3566 do {
3567 sv_signal(&tic->t_sema);
3568 tic = tic->t_next;
3569 } while (tic != log->l_write_headq);
3570 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10003571 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572
3573 if (! (log->l_iclog->ic_state & XLOG_STATE_IOERROR)) {
3574 ASSERT(!logerror);
3575 /*
3576 * Force the incore logs to disk before shutting the
3577 * log down completely.
3578 */
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11003579 xlog_state_sync_all(log, XFS_LOG_FORCE|XFS_LOG_SYNC, &dummy);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003580 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003582 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 }
3584 /*
3585 * Wake up everybody waiting on xfs_log_force.
3586 * Callback all log item committed functions as if the
3587 * log writes were completed.
3588 */
3589 xlog_state_do_callback(log, XFS_LI_ABORTED, NULL);
3590
3591#ifdef XFSERRORDEBUG
3592 {
3593 xlog_in_core_t *iclog;
3594
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003595 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 iclog = log->l_iclog;
3597 do {
3598 ASSERT(iclog->ic_callback == 0);
3599 iclog = iclog->ic_next;
3600 } while (iclog != log->l_iclog);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003601 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 }
3603#endif
3604 /* return non-zero if log IOERROR transition had already happened */
Jesper Juhl014c2542006-01-15 02:37:08 +01003605 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606}
3607
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003608STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609xlog_iclogs_empty(xlog_t *log)
3610{
3611 xlog_in_core_t *iclog;
3612
3613 iclog = log->l_iclog;
3614 do {
3615 /* endianness does not matter here, zero is zero in
3616 * any language.
3617 */
3618 if (iclog->ic_header.h_num_logops)
Jesper Juhl014c2542006-01-15 02:37:08 +01003619 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 iclog = iclog->ic_next;
3621 } while (iclog != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003622 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623}